diff --git a/assets/js/src/core/modules/select-option/components/detail/select-option-form.tsx b/assets/js/src/core/modules/select-option/components/detail/select-option-form.tsx index e6318e8de0..18d927ebef 100644 --- a/assets/js/src/core/modules/select-option/components/detail/select-option-form.tsx +++ b/assets/js/src/core/modules/select-option/components/detail/select-option-form.tsx @@ -83,9 +83,14 @@ export const SelectOptionForm = ({ selectOption }: SelectOptionFormProps): React { - form.resetFields() - form.setFieldsValue(initialValues) + onClick={ async () => { + const fresh = await getSelectOptionById(selectOption.id) + if (fresh !== undefined) { + setSelectOptions((prev) => + prev.map((s) => s.id === fresh.id ? fresh : s) + ) + form.setFieldsValue(fresh) + } } } title={ t('refresh') } /> diff --git a/assets/js/src/core/modules/select-option/components/tree/tree-container.tsx b/assets/js/src/core/modules/select-option/components/tree/tree-container.tsx index 49cda4cee5..370212bff3 100644 --- a/assets/js/src/core/modules/select-option/components/tree/tree-container.tsx +++ b/assets/js/src/core/modules/select-option/components/tree/tree-container.tsx @@ -23,7 +23,7 @@ interface ITreeContainerProps { treeData: TreeDataItem[] expandedKeys: React.Key[] isFetching: boolean - onReloadTree: () => Promise + onReloadTree: () => void onSetExpandedKeys: (keys: React.Key[]) => void } @@ -34,8 +34,8 @@ const TreeContainer = ({ expandedKeys, treeData, isFetching, onReloadTree, onSet const classNames = [styles.treeContainer] const handleAddItem = (): void => { - createSelectOption(async () => { - await onReloadTree() + createSelectOption(() => { + onReloadTree() }) } @@ -44,7 +44,7 @@ const TreeContainer = ({ expandedKeys, treeData, isFetching, onReloadTree, onSet renderToolbar={ { void onReloadTree() } } + onReload={ onReloadTree } /> } > @@ -66,7 +66,7 @@ const TreeContainer = ({ expandedKeys, treeData, isFetching, onReloadTree, onSet removeWithConfirmation(keyStr, async () => { closeSelectOption(keyStr) setSelectOptions((prev) => prev.filter((s) => s.id !== keyStr)) - await onReloadTree() + onReloadTree() }) } } } diff --git a/assets/js/src/core/modules/select-option/select-option-widget.tsx b/assets/js/src/core/modules/select-option/select-option-widget.tsx index 0699ebdabc..0e1bc2696a 100644 --- a/assets/js/src/core/modules/select-option/select-option-widget.tsx +++ b/assets/js/src/core/modules/select-option/select-option-widget.tsx @@ -11,8 +11,10 @@ import { ConfigLayout } from '@Pimcore/components/predefined-layouts/config/config-layout' import { Icon } from '@Pimcore/components/icon/icon' import type { TreeDataItem } from '@Pimcore/components/tree-element/tree-element' -import { useClassSelectOptionGetTreeQuery } from '@Pimcore/modules/class-definition/class-definition-slice-enhanced' +import { api, useClassSelectOptionGetTreeQuery } from '@Pimcore/modules/class-definition/class-definition-slice-enhanced' import type { SelectOptionTreeItem, SelectOptionTreeFolder } from '@Pimcore/modules/class-definition/class-definition-slice.gen' +import { invalidatingTags } from '@Pimcore/app/api/pimcore/tags' +import { useAppDispatch } from '@Pimcore/app/store' import React, { useCallback, useEffect, useState } from 'react' import { SelectOptionEditorProvider } from './context/select-option-editor-provider' import { SelectOptionDetailContainer } from './components/detail/select-option-detail-container' @@ -69,7 +71,8 @@ const createNodesByResponse = (items: TreeApiItem[]): TreeDataItem[] => { } const SelectOptionWidgetInner = (): React.JSX.Element => { - const { data, isFetching, refetch } = useClassSelectOptionGetTreeQuery({ withGroup: true }) + const { data, isFetching } = useClassSelectOptionGetTreeQuery({ withGroup: true }) + const dispatch = useAppDispatch() const [treeData, setTreeData] = useState([]) const [expandedKeys, setExpandedKeys] = useState([]) @@ -79,9 +82,9 @@ const SelectOptionWidgetInner = (): React.JSX.Element => { } }, [data]) - const handleReloadTree = useCallback(async (): Promise => { - await refetch() - }, [refetch]) + const handleReloadTree = useCallback((): void => { + dispatch(api.util.invalidateTags(invalidatingTags.SELECT_OPTION_COLLECTION())) + }, [dispatch]) const sidebar = { id: 'select-option-editor.sidebar', diff --git a/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/entrypoints.json b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/entrypoints.json new file mode 100644 index 0000000000..e7c9178403 --- /dev/null +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/entrypoints.json @@ -0,0 +1,23 @@ +{ + "entrypoints": { + "index": { + "js": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/7366.cc04fcb0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js" + ], + "css": [] + }, + "pimcore_studio_ui_bundle": { + "js": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js" + ], + "css": [] + }, + "exposeRemote": { + "js": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/exposeRemote.js" + ], + "css": [] + } + } +} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/exposeRemote.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/exposeRemote.js similarity index 53% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/exposeRemote.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/exposeRemote.js index 027c09b55e..326fd9b433 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/exposeRemote.js +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/exposeRemote.js @@ -1,3 +1,3 @@ - window.StudioUIBundleRemoteUrl = '/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js' + window.StudioUIBundleRemoteUrl = '/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js' \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/index.html b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/index.html similarity index 56% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/index.html rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/index.html index 56fded25ae..79f87bc45d 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/index.html +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/index.html @@ -1 +1 @@ -Rsbuild App
\ No newline at end of file +Rsbuild App
\ No newline at end of file diff --git a/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/manifest.json b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/manifest.json new file mode 100644 index 0000000000..f48c172e2b --- /dev/null +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/manifest.json @@ -0,0 +1,811 @@ +{ + "allFiles": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2775.0d98465a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8222.acb59083.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/582.4f5fd381.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6464.b6d25cb6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9204.8f0c9c3a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4083.82e017ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6272.f2f56a80.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6619.93b9f2c4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8473.25a53f08.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7463.e177b088.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/243.098f10af.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/854.95bad760.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5976.be3da2cf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/489.693d11de.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6579.cda7f334.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/254.7abe0c11.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/706.01d44a78.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1668.120c2fdd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3209.6722a080.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6815.80ba0d22.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3379.f0e413e5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2237.e23d4ce3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/749.7c748f48.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8658.55f9d53e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_default_export.1b3f6d28.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_app.9a31719b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api.fbe2c7c1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__asset.9dee10b3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__class_definition.6192771c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__data_object.160792b1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__dependencies.a9508cf9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__documents.8a5c66b8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__elements.5babca9f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__metadata.e9f2a028.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__perspectives.936945cf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__properties.314180ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__role.89b3367b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__schedule.9ccfa450.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__settings.2c556240.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__tags.f737e834.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__thumbnails.a167200d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__translations.7a8790cb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__user.0c42ebe1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__version.7220c1e1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__workflow.ad14d72f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__reports.50fc5ca0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__application_logger.fc080c19.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__asset.51999de9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__class_definitions.009acac4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__document.5167229e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__field_definitions.171d7545.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__auth.65d96793.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__icon_library.481bed67.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__reports.f35bbd3d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__translations.e3016a50.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__user.1df0f8e6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__notifications.212009d9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__perspectives.ea16786c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_utils.526f5bda.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5561.b76a78d2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7789.50873df9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2463.da2cfb76.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7597.42dde6f3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2272.b29c0e6c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5841.812278cf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9880.64c12943.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6823.dc627341.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7680.2cb113f6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6550.09a63ebf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/619.59f8e380.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9114.7d0c9ca9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2709.809fe258.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6484.2519155d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1750.19b70383.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9603.dcad1930.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5154.a94bb137.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3756.7a4c5e02.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7006.928d8671.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2841.e1a4734b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3240.f86bdd91.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8971.cb9861fc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5114.ebf1bfcb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9076.7a2b7e9a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4871.b42a8935.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/705.fad963d9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8231.0a773046.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4160.1311e5ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8850.1ef4da0e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1635.18d9dd0b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6572.510ff641.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/157.8615578d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1742.9207983d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6335.0ad9b174.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2168.3b00277e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3066.31b992e1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1003.469c1fdb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8372.d6f25582.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2117.da809f8e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8567.2e09cb4e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2016.2efa4d68.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8609.b6039081.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2162.e42c8ad6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3836.6a4b9fd9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7821.b1a2dc53.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3935.0990f5be.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6984.af4507e3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7440.04b86278.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9030.03e4d789.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2893.99328fa1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8707.80dfb17f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2290.68fd6bdf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3657.cf916f7e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4680.66eae797.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/446.2523c50a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8645.7a1aa6c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8932.e8090749.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2619.543b4f03.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5690.782c3ae6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1303.f89c138e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/380.0cdf7b27.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5731.15301fd9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3330.c830e580.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4329.4e8ef4cc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7960.9d4a54c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9471.3511726f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/141.a305e3e9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8574.8c240d77.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6255.2e48b884.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3941.9ceed713.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8779.bdcddd0a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4062.57e047db.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5804.1be86954.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3750.921e74ed.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3392.42b07d09.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/235.97e84a52.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6313.e76747fb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7053.63c4c0a6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3068.7b747a5f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7799.a37e9eaf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3686.6b54036a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8467.f7bd216d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3548.133939a2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3197.ebf93fd4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5431.0eb962a2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1265.d95e4129.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3396.4cc8f904.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1428.b3183de2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3528.60fd342c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/830.dda8066f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9052.67bd17cd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1019.2c88f074.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7161.f24a612f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4120.afd6653a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3839.800430ba.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3166.32d06e35.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/365.e655295f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2380.d6bc17ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3009.be7deeee.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7264.fc5a523f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7527.e64ccbd1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/261.0e13114e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7828.812c672f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9403.9f36612d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6458.b5282ed0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1065.5cc838a2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6472.df513d2d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3406.86351b7b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2492.cc8cd85c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8835.d50a0005.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/129.24017dc3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7334.be0321bf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4346.867849d4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2472.f40725db.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2073.0f14210c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8547.3355910d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5186.deb009c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9691.a7a34297.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2410.4b5baf39.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2597.969d51fc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3748.7adfb9d1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1270.4a7146b0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4241.f5777d74.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8272.64fe9f7a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4771.c5e9b1dd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1851.1528a0c7.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7939.af086f08.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8477.0c91210d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1102.01cefe38.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5412.53c2e3aa.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6186.9fa7f507.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1553.630acce1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5168.fdbd2cef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/172.cb77a99e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1875.048f7c1f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9801.09cd7cd0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2015.28b3f667.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1834.3ea07c1f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3584.4ad9a196.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/935.4dfccbd9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5545.cde240bd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/521.cb98200a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1472.e37f95af.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/206.0227085b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4799.a225248d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7041.230cf6a4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6695.087ae8ff.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4718.b15efaaf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2399.305db162.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2980.d885aa98.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/85.3d7bb7a3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4426.20bcaf42.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7073.fb6439a4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4154.2617dd8b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7396.da4c50f4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/687.ae382b4d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8910.7686ba2c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2121.8117f390.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3144.edcf7515.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7171.8731ac06.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1180.c2738508.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9607.214ebd42.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3846.e0ec9537.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7793.d6bce01b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5904.327a2f83.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2427.2406cc45.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4858.820711a5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8437.864e7b29.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4084.a80198a1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7935.ba8eb0b4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/334.67e5210f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2793.a25ad8de.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6424.ca220edd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4195.4fb2f2ba.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8146.e69de8bc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2845.d2c82bf6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5331.bbbb73f8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8557.e526282d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2503.1efd0e77.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8832.e1a7ddbf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1153.7cbdaf39.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8635.29404620.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2638.d949ec28.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6649.2b614ce3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2098.4b97bea3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1612.54f63d68.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6759.cf6c0abd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/660.5242d83f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8536.df877041.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9357.709b2aae.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/145.7d13ff5f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5990.3c9d8c23.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/103.3717b318.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6052.a270b069.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1643.b41a359d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8520.3f467428.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5177.a255dad2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1438.67cdf5fd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4034.ebc0a070.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6819.424ecfc4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5696.ab2274ca.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9767.926906cb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3653.7c1ffecd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3838.4b01fffb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2179.7408679f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6229.ec077e40.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4225.61de23fc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8403.58bbddc4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5277.97ce57aa.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2464.8deaa84f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6135.d371dcf8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1814.16619920.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2189.e296ffec.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1708.de5f09b0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1762.e6454223.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/281.d912a74e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9336.9a425d8d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7679.a6829c17.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6270.f9ff3abd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3125.ce787981.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/692.ac93e4e2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2267.ad4d61d8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9322.81e49a3d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6743.851be9cb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3062.323c4508.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3229.97f4b7e5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2739.84cc2ba2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/25.36d6a68b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4603.86da83a0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3055.b0f87225.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6967.4d971194.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5084.877dbf80.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/658.dc677028.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3.470a371d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1688.4626095c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5454.a8bca7d3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8031.b368b0bf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7524.73ba348d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/101.1b8f34f4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7210.9113a386.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7419.b1cfaeac.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/198.96c8f5d3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2204.875d7d36.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7250.364fbcad.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8051.9c74ecaf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6766.c76f91a5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8050.502aa521.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8800.1154e54c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4702.508d41d1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4028.d910fe41.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7994.c600e1ce.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1797.bc29fd89.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4715.3e1202d6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/741.734ea878.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4319.ca014781.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5753.371bde44.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/803.52d29752.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9536.9b33a533.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1567.debd0837.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8479.55f72fe0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4698.6d0eba4e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1010.af98507b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/35.d81ad3e5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6911.d02db343.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8195.c8bb6771.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2373.11c5538c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5712.ffe8bf9d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1207.ea0577c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4530.72904f19.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2103.0449b778.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/lib-axios.f458d745.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4693.552164ec.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/385.d9b4f6a1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2287.6a200c82.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/45.e217286d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1721.fdc19114.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/6411.a9ccafbf.css", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6411.ae78ff82.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9765.07ec2c12.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2202.bd928b8b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5123.9f567207.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9007.f28d0779.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/7366.cc04fcb0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2188.72e65c95.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3902.5873a27f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7442.636a9ffa.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/175.bd0ef661.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9454.03f9cbf9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4596.13ba10c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1693.48c272d7.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2843.e1d9c7bc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2545.dcb1e512.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/616.2ffecb95.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-stats.json", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-manifest.json", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Light.bec6f0ae.ttf", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Regular.4291f48c.ttf", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Bold.2c00c297.ttf", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/svg/spritesheet.ac8b36fa.svg", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/index.html" + ], + "entries": { + "index": { + "html": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/index.html" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/7366.cc04fcb0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js" + ] + }, + "async": { + "js": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9007.f28d0779.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5123.9f567207.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9765.07ec2c12.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/45.e217286d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2287.6a200c82.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4693.552164ec.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6550.09a63ebf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7680.2cb113f6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9880.64c12943.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2272.b29c0e6c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7597.42dde6f3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2463.da2cfb76.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7789.50873df9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5561.b76a78d2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8658.55f9d53e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/749.7c748f48.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2237.e23d4ce3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3379.f0e413e5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6815.80ba0d22.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3209.6722a080.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1668.120c2fdd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/706.01d44a78.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/254.7abe0c11.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6579.cda7f334.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/489.693d11de.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5976.be3da2cf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/854.95bad760.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/243.098f10af.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7463.e177b088.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8473.25a53f08.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6619.93b9f2c4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6272.f2f56a80.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4083.82e017ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9204.8f0c9c3a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6464.b6d25cb6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/582.4f5fd381.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8222.acb59083.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2775.0d98465a.js" + ] + } + }, + "pimcore_studio_ui_bundle": { + "assets": [ + "static/font/Lato-Light.bec6f0ae.ttf", + "static/font/Lato-Bold.2c00c297.ttf", + "static/font/Lato-Regular.4291f48c.ttf", + "static/svg/spritesheet.ac8b36fa.svg" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js" + ] + }, + "async": { + "js": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/616.2ffecb95.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2545.dcb1e512.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2843.e1d9c7bc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1693.48c272d7.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4596.13ba10c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9454.03f9cbf9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/175.bd0ef661.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7442.636a9ffa.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3902.5873a27f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2188.72e65c95.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9007.f28d0779.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5123.9f567207.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2202.bd928b8b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9765.07ec2c12.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6411.ae78ff82.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1721.fdc19114.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/45.e217286d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2287.6a200c82.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/385.d9b4f6a1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4693.552164ec.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/lib-axios.f458d745.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2103.0449b778.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4530.72904f19.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1207.ea0577c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5712.ffe8bf9d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2373.11c5538c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8195.c8bb6771.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6911.d02db343.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/35.d81ad3e5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1010.af98507b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4698.6d0eba4e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8479.55f72fe0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1567.debd0837.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9536.9b33a533.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/803.52d29752.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5753.371bde44.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4319.ca014781.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/741.734ea878.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4715.3e1202d6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1797.bc29fd89.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7994.c600e1ce.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4028.d910fe41.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4702.508d41d1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8800.1154e54c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8050.502aa521.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6766.c76f91a5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8051.9c74ecaf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7250.364fbcad.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2204.875d7d36.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/198.96c8f5d3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7419.b1cfaeac.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7210.9113a386.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/101.1b8f34f4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7524.73ba348d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8031.b368b0bf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5454.a8bca7d3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1688.4626095c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3.470a371d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/658.dc677028.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5084.877dbf80.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6967.4d971194.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3055.b0f87225.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4603.86da83a0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/25.36d6a68b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2739.84cc2ba2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3229.97f4b7e5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3062.323c4508.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6743.851be9cb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9322.81e49a3d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2267.ad4d61d8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/692.ac93e4e2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3125.ce787981.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6270.f9ff3abd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7679.a6829c17.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9336.9a425d8d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/281.d912a74e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1762.e6454223.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1708.de5f09b0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2189.e296ffec.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1814.16619920.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6135.d371dcf8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2464.8deaa84f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5277.97ce57aa.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8403.58bbddc4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4225.61de23fc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6229.ec077e40.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2179.7408679f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3838.4b01fffb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3653.7c1ffecd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9767.926906cb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5696.ab2274ca.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6819.424ecfc4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4034.ebc0a070.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1438.67cdf5fd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5177.a255dad2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8520.3f467428.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1643.b41a359d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6052.a270b069.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/103.3717b318.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5990.3c9d8c23.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/145.7d13ff5f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9357.709b2aae.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8536.df877041.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/660.5242d83f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6759.cf6c0abd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1612.54f63d68.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2098.4b97bea3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6649.2b614ce3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2638.d949ec28.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8635.29404620.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1153.7cbdaf39.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8832.e1a7ddbf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2503.1efd0e77.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8557.e526282d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5331.bbbb73f8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2845.d2c82bf6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8146.e69de8bc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4195.4fb2f2ba.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6424.ca220edd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2793.a25ad8de.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/334.67e5210f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7935.ba8eb0b4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4084.a80198a1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8437.864e7b29.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4858.820711a5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2427.2406cc45.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5904.327a2f83.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7793.d6bce01b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3846.e0ec9537.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9607.214ebd42.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1180.c2738508.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7171.8731ac06.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3144.edcf7515.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2121.8117f390.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8910.7686ba2c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/687.ae382b4d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7396.da4c50f4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4154.2617dd8b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7073.fb6439a4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4426.20bcaf42.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/85.3d7bb7a3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2980.d885aa98.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2399.305db162.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4718.b15efaaf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6695.087ae8ff.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7041.230cf6a4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4799.a225248d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/206.0227085b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1472.e37f95af.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/521.cb98200a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5545.cde240bd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/935.4dfccbd9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3584.4ad9a196.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1834.3ea07c1f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2015.28b3f667.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9801.09cd7cd0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1875.048f7c1f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/172.cb77a99e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5168.fdbd2cef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1553.630acce1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6186.9fa7f507.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5412.53c2e3aa.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1102.01cefe38.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8477.0c91210d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7939.af086f08.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1851.1528a0c7.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4771.c5e9b1dd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8272.64fe9f7a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4241.f5777d74.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1270.4a7146b0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3748.7adfb9d1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2597.969d51fc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2410.4b5baf39.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9691.a7a34297.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5186.deb009c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8547.3355910d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2073.0f14210c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2472.f40725db.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4346.867849d4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7334.be0321bf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/129.24017dc3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8835.d50a0005.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2492.cc8cd85c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3406.86351b7b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6472.df513d2d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1065.5cc838a2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6458.b5282ed0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9403.9f36612d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7828.812c672f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/261.0e13114e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7527.e64ccbd1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7264.fc5a523f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3009.be7deeee.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2380.d6bc17ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/365.e655295f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3166.32d06e35.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3839.800430ba.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4120.afd6653a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7161.f24a612f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1019.2c88f074.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9052.67bd17cd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/830.dda8066f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3528.60fd342c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1428.b3183de2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3396.4cc8f904.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1265.d95e4129.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5431.0eb962a2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3197.ebf93fd4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3548.133939a2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8467.f7bd216d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3686.6b54036a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7799.a37e9eaf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3068.7b747a5f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7053.63c4c0a6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6313.e76747fb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/235.97e84a52.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3392.42b07d09.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3750.921e74ed.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5804.1be86954.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4062.57e047db.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8779.bdcddd0a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3941.9ceed713.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6255.2e48b884.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8574.8c240d77.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/141.a305e3e9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9471.3511726f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7960.9d4a54c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4329.4e8ef4cc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3330.c830e580.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5731.15301fd9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/380.0cdf7b27.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1303.f89c138e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5690.782c3ae6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2619.543b4f03.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8932.e8090749.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8645.7a1aa6c0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/446.2523c50a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4680.66eae797.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3657.cf916f7e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2290.68fd6bdf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8707.80dfb17f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2893.99328fa1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9030.03e4d789.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7440.04b86278.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6984.af4507e3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3935.0990f5be.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7821.b1a2dc53.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3836.6a4b9fd9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2162.e42c8ad6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8609.b6039081.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2016.2efa4d68.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8567.2e09cb4e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2117.da809f8e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8372.d6f25582.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1003.469c1fdb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3066.31b992e1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2168.3b00277e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6335.0ad9b174.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1742.9207983d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/157.8615578d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6572.510ff641.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1635.18d9dd0b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8850.1ef4da0e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4160.1311e5ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8231.0a773046.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/705.fad963d9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4871.b42a8935.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9076.7a2b7e9a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5114.ebf1bfcb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8971.cb9861fc.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3240.f86bdd91.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2841.e1a4734b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7006.928d8671.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3756.7a4c5e02.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5154.a94bb137.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9603.dcad1930.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1750.19b70383.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6484.2519155d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2709.809fe258.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9114.7d0c9ca9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/619.59f8e380.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6550.09a63ebf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7680.2cb113f6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6823.dc627341.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9880.64c12943.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5841.812278cf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2272.b29c0e6c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7597.42dde6f3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2463.da2cfb76.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7789.50873df9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5561.b76a78d2.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_utils.526f5bda.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__perspectives.ea16786c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__notifications.212009d9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__user.1df0f8e6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__translations.e3016a50.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__reports.f35bbd3d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__icon_library.481bed67.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__auth.65d96793.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__field_definitions.171d7545.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__document.5167229e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__class_definitions.009acac4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__asset.51999de9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__application_logger.fc080c19.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__reports.50fc5ca0.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__workflow.ad14d72f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__version.7220c1e1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__user.0c42ebe1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__translations.7a8790cb.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__thumbnails.a167200d.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__tags.f737e834.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__settings.2c556240.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__schedule.9ccfa450.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__role.89b3367b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__properties.314180ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__perspectives.936945cf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__metadata.e9f2a028.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__elements.5babca9f.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__documents.8a5c66b8.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__dependencies.a9508cf9.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__data_object.160792b1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__class_definition.6192771c.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__asset.9dee10b3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api.fbe2c7c1.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_app.9a31719b.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_default_export.1b3f6d28.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8658.55f9d53e.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/749.7c748f48.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2237.e23d4ce3.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3379.f0e413e5.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6815.80ba0d22.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3209.6722a080.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1668.120c2fdd.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/706.01d44a78.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/254.7abe0c11.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6579.cda7f334.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/489.693d11de.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5976.be3da2cf.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/854.95bad760.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/243.098f10af.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7463.e177b088.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8473.25a53f08.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6619.93b9f2c4.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6272.f2f56a80.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4083.82e017ef.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9204.8f0c9c3a.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6464.b6d25cb6.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/582.4f5fd381.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8222.acb59083.js", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2775.0d98465a.js" + ], + "css": [ + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/6411.a9ccafbf.css", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css", + "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" + ] + } + } + }, + "integrity": {} +} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/mf-manifest.json b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-manifest.json similarity index 98% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/mf-manifest.json rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-manifest.json index 56eb88386d..b7e3460ad9 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/mf-manifest.json +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-manifest.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle", "pluginVersion": "2.2.3", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/" + "publicPath": "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/" }, "shared": [ { @@ -789,7 +789,7 @@ "css": { "async": [], "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ] } }, @@ -832,7 +832,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -840,7 +840,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js" ], @@ -1108,8 +1108,8 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ], "async": [] } @@ -1133,7 +1133,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1141,7 +1141,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" ], "async": [ @@ -1416,7 +1416,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1424,19 +1424,19 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } }, @@ -1474,7 +1474,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1482,7 +1482,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -1770,7 +1770,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1778,20 +1778,20 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } }, @@ -1814,7 +1814,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1822,7 +1822,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -1873,7 +1873,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1881,7 +1881,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -2159,14 +2159,14 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ] } }, @@ -2605,7 +2605,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/__federation_expose_modules__application_logger.fc080c19.js" ], @@ -2872,7 +2872,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -2895,7 +2895,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/2545.dcb1e512.js", "static/js/async/__federation_expose_modules__asset.51999de9.js" @@ -3163,7 +3163,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -3208,7 +3208,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -3216,7 +3216,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -3494,7 +3494,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -3502,20 +3502,20 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } }, @@ -3537,7 +3537,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/1693.48c272d7.js", @@ -3806,7 +3806,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -3845,7 +3845,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -3853,7 +3853,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" @@ -4130,7 +4130,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -4138,20 +4138,20 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } }, @@ -4173,7 +4173,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__auth.65d96793.js" ], "async": [ @@ -4439,7 +4439,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -4480,7 +4480,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/4596.13ba10c0.js", "static/js/async/__federation_expose_modules__reports.f35bbd3d.js" ], @@ -4748,7 +4748,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -4771,7 +4771,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js" ], "async": [ @@ -5037,7 +5037,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -5080,7 +5080,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__user.1df0f8e6.js" ], "async": [ @@ -5346,7 +5346,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -5369,7 +5369,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js" ], "async": [ @@ -5635,7 +5635,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -5688,7 +5688,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__notifications.212009d9.js" ], "async": [ @@ -5954,7 +5954,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -5977,7 +5977,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__perspectives.ea16786c.js" ], "async": [ @@ -6243,7 +6243,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -6284,7 +6284,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" ], "async": [ @@ -6550,7 +6550,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -6578,7 +6578,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -6586,7 +6586,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -6606,9 +6606,9 @@ "css": { "sync": [], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ] } }, diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/mf-stats.json b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-stats.json similarity index 98% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/mf-stats.json rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-stats.json index 29ec42beea..42bdaab67a 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/mf-stats.json +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/mf-stats.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle", "pluginVersion": "2.2.3", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/" + "publicPath": "/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/" }, "shared": [ { @@ -1004,7 +1004,7 @@ "css": { "async": [], "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ] } }, @@ -1054,7 +1054,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1062,7 +1062,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js" ], @@ -1330,8 +1330,8 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ], "async": [] } @@ -1357,7 +1357,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1365,7 +1365,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" ], "async": [ @@ -1640,7 +1640,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1648,19 +1648,19 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } } @@ -1711,7 +1711,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -1719,7 +1719,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -2007,7 +2007,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -2015,20 +2015,20 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } } @@ -2053,7 +2053,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -2061,7 +2061,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -2112,7 +2112,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -2120,7 +2120,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -2398,14 +2398,14 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ] } } @@ -2888,7 +2888,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/__federation_expose_modules__application_logger.fc080c19.js" ], @@ -3155,7 +3155,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -3180,7 +3180,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/2545.dcb1e512.js", "static/js/async/__federation_expose_modules__asset.51999de9.js" @@ -3448,7 +3448,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -3499,7 +3499,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -3507,7 +3507,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -3785,7 +3785,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -3793,20 +3793,20 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } } @@ -3833,7 +3833,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/1693.48c272d7.js", @@ -4102,7 +4102,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -4149,7 +4149,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -4157,7 +4157,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" @@ -4434,7 +4434,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -4442,20 +4442,20 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/2103.0449b778.js" ] }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css" ] } } @@ -4479,7 +4479,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__auth.65d96793.js" ], "async": [ @@ -4745,7 +4745,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -4790,7 +4790,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/4596.13ba10c0.js", "static/js/async/__federation_expose_modules__reports.f35bbd3d.js" ], @@ -5058,7 +5058,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -5093,7 +5093,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js" ], "async": [ @@ -5359,7 +5359,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -5406,7 +5406,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__user.1df0f8e6.js" ], "async": [ @@ -5672,7 +5672,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -5697,7 +5697,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js" ], "async": [ @@ -5963,7 +5963,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -6024,7 +6024,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__notifications.212009d9.js" ], "async": [ @@ -6290,7 +6290,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -6315,7 +6315,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__perspectives.ea16786c.js" ], "async": [ @@ -6581,7 +6581,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -6626,7 +6626,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" ], "async": [ @@ -6892,7 +6892,7 @@ }, "css": { "sync": [ - "static/css/async/6411.27bd1518.css" + "static/css/async/6411.a9ccafbf.css" ], "async": [] } @@ -6925,7 +6925,7 @@ "static/js/async/3902.5873a27f.js", "static/js/async/7442.636a9ffa.js", "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.0a64ee83.js", + "static/js/async/__federation_expose_app.9a31719b.js", "static/js/async/9454.03f9cbf9.js", "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", @@ -6933,7 +6933,7 @@ "static/js/async/1693.48c272d7.js", "static/js/async/2843.e1d9c7bc.js", "static/js/async/2545.dcb1e512.js", - "static/js/async/616.98e20c89.js", + "static/js/async/616.2ffecb95.js", "static/js/async/4530.72904f19.js", "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", @@ -6953,9 +6953,9 @@ "css": { "sync": [], "async": [ - "static/css/async/6411.27bd1518.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css" + "static/css/async/6411.a9ccafbf.css", + "static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css", + "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css" ] } } diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/6411.27bd1518.css b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/6411.a9ccafbf.css similarity index 98% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/6411.27bd1518.css rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/6411.a9ccafbf.css index e08192c214..447d5fd865 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/6411.27bd1518.css +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/6411.a9ccafbf.css @@ -11,4 +11,4 @@ * * / * */ -.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;top:0;left:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{-webkit-transform-origin:0 0;width:1600px;height:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{width:auto;padding:0;max-width:none!important;max-height:none!important}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:#33b5e566}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{box-sizing:border-box;z-index:800;width:0;height:0}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{z-index:800;pointer-events:visiblePainted;pointer-events:auto;position:relative}.leaflet-top,.leaflet-bottom{z-index:1000;pointer-events:none;position:absolute}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{outline-offset:1px;background:#ddd}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:#ffffff80;border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px #000000a6}.leaflet-bar a{text-align:center;color:#000;background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;text-decoration:none;display:block}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.leaflet-bar a.leaflet-disabled{cursor:default;color:#bbb;background-color:#f4f4f4}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{text-indent:1px;font:700 18px Lucida Console,Monaco,monospace}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px #0006}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{color:#333;background:#fff;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{padding-right:5px;overflow:hidden scroll}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{font-size:1.08333em;display:block}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;padding:0 5px;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{width:1em;height:.6669em;vertical-align:baseline!important;display:inline!important}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{white-space:nowrap;box-sizing:border-box;text-shadow:1px 1px #fff;background:#fffc;border:2px solid #777;border-top:none;padding:2px 5px 1px;line-height:1.1}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{background-clip:padding-box;border:2px solid #0003}.leaflet-popup{text-align:center;margin-bottom:20px;position:absolute}.leaflet-popup-content-wrapper{text-align:left;border-radius:12px;padding:1px}.leaflet-popup-content{min-height:1px;margin:13px 24px 13px 20px;font-size:1.08333em;line-height:1.3}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{pointer-events:none;width:40px;height:20px;margin-top:-1px;margin-left:-20px;position:absolute;left:50%;overflow:hidden}.leaflet-popup-tip{pointer-events:auto;width:17px;height:17px;margin:-10px auto 0;padding:1px;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{color:#333;background:#fff;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{text-align:center;color:#757575;background:0 0;border:none;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;text-decoration:none;position:absolute;top:0;right:0}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";width:24px;filter:progid:DXImageTransform.Microsoft.Matrix(M11=.707107,M12=.707107,M21=-.707107,M22=.707107);margin:0 auto}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{color:#222;white-space:nowrap;-webkit-user-select:none;user-select:none;pointer-events:none;background-color:#fff;border:1px solid #fff;border-radius:3px;padding:6px;position:absolute;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{pointer-events:none;content:"";background:0 0;border:6px solid #0000;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{margin-left:-6px;left:50%}.leaflet-tooltip-top:before{border-top-color:#fff;margin-bottom:-12px;bottom:0}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-top:-12px;margin-left:-6px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;margin-left:-12px;left:0}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/svg/spritesheet.ac8b36fa.svg);background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/svg/spritesheet.ac8b36fa.svg)}.leaflet-draw a{text-align:center;text-decoration:none;display:block}.leaflet-draw a .sr-only{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.leaflet-draw-actions{white-space:nowrap;margin:0;padding:0;list-style:none;display:none;position:absolute;top:0;left:26px}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{left:auto;right:26px}.leaflet-touch .leaflet-right .leaflet-draw-actions{left:auto;right:32px}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{border-radius:4px 0 0 4px}.leaflet-draw-actions a{color:#fff;background-color:#919187;border-left:1px solid #aaa;height:28px;padding-left:10px;padding-right:10px;font:11px/28px Helvetica Neue,Arial,Helvetica,sans-serif;text-decoration:none}.leaflet-touch .leaflet-draw-actions a{height:30px;font-size:12px;line-height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{cursor:crosshair;background-color:#fff}.leaflet-draw-tooltip{color:#fff;visibility:hidden;white-space:nowrap;z-index:6;background:#00000080;border:1px solid #0000;border-radius:4px;margin-top:-21px;margin-left:20px;padding:4px 8px;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;position:absolute}.leaflet-draw-tooltip:before{content:"";border-top:6px solid #0000;border-bottom:6px solid #0000;border-right:6px solid #00000080;position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{color:#b94a48;background-color:#f2dede;border:1px solid #e6b6bd}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{opacity:.6;width:5px;height:5px;font-size:1%;position:absolute}.leaflet-edit-marker-selected{box-sizing:content-box;background-color:#fe57a11a;border:4px dashed #fe57a199;border-radius:4px}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999} \ No newline at end of file +.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;top:0;left:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{-webkit-transform-origin:0 0;width:1600px;height:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{width:auto;padding:0;max-width:none!important;max-height:none!important}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:#33b5e566}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{box-sizing:border-box;z-index:800;width:0;height:0}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{z-index:800;pointer-events:visiblePainted;pointer-events:auto;position:relative}.leaflet-top,.leaflet-bottom{z-index:1000;pointer-events:none;position:absolute}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{outline-offset:1px;background:#ddd}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:#ffffff80;border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px #000000a6}.leaflet-bar a{text-align:center;color:#000;background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;text-decoration:none;display:block}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.leaflet-bar a.leaflet-disabled{cursor:default;color:#bbb;background-color:#f4f4f4}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{text-indent:1px;font:700 18px Lucida Console,Monaco,monospace}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px #0006}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{color:#333;background:#fff;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{padding-right:5px;overflow:hidden scroll}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{font-size:1.08333em;display:block}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;padding:0 5px;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{width:1em;height:.6669em;vertical-align:baseline!important;display:inline!important}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{white-space:nowrap;box-sizing:border-box;text-shadow:1px 1px #fff;background:#fffc;border:2px solid #777;border-top:none;padding:2px 5px 1px;line-height:1.1}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{background-clip:padding-box;border:2px solid #0003}.leaflet-popup{text-align:center;margin-bottom:20px;position:absolute}.leaflet-popup-content-wrapper{text-align:left;border-radius:12px;padding:1px}.leaflet-popup-content{min-height:1px;margin:13px 24px 13px 20px;font-size:1.08333em;line-height:1.3}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{pointer-events:none;width:40px;height:20px;margin-top:-1px;margin-left:-20px;position:absolute;left:50%;overflow:hidden}.leaflet-popup-tip{pointer-events:auto;width:17px;height:17px;margin:-10px auto 0;padding:1px;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{color:#333;background:#fff;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{text-align:center;color:#757575;background:0 0;border:none;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;text-decoration:none;position:absolute;top:0;right:0}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";width:24px;filter:progid:DXImageTransform.Microsoft.Matrix(M11=.707107,M12=.707107,M21=-.707107,M22=.707107);margin:0 auto}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{color:#222;white-space:nowrap;-webkit-user-select:none;user-select:none;pointer-events:none;background-color:#fff;border:1px solid #fff;border-radius:3px;padding:6px;position:absolute;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{pointer-events:none;content:"";background:0 0;border:6px solid #0000;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{margin-left:-6px;left:50%}.leaflet-tooltip-top:before{border-top-color:#fff;margin-bottom:-12px;bottom:0}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-top:-12px;margin-left:-6px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;margin-left:-12px;left:0}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/svg/spritesheet.ac8b36fa.svg);background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/svg/spritesheet.ac8b36fa.svg)}.leaflet-draw a{text-align:center;text-decoration:none;display:block}.leaflet-draw a .sr-only{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.leaflet-draw-actions{white-space:nowrap;margin:0;padding:0;list-style:none;display:none;position:absolute;top:0;left:26px}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{left:auto;right:26px}.leaflet-touch .leaflet-right .leaflet-draw-actions{left:auto;right:32px}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{border-radius:4px 0 0 4px}.leaflet-draw-actions a{color:#fff;background-color:#919187;border-left:1px solid #aaa;height:28px;padding-left:10px;padding-right:10px;font:11px/28px Helvetica Neue,Arial,Helvetica,sans-serif;text-decoration:none}.leaflet-touch .leaflet-draw-actions a{height:30px;font-size:12px;line-height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{cursor:crosshair;background-color:#fff}.leaflet-draw-tooltip{color:#fff;visibility:hidden;white-space:nowrap;z-index:6;background:#00000080;border:1px solid #0000;border-radius:4px;margin-top:-21px;margin-left:20px;padding:4px 8px;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;position:absolute}.leaflet-draw-tooltip:before{content:"";border-top:6px solid #0000;border-bottom:6px solid #0000;border-right:6px solid #00000080;position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{color:#b94a48;background-color:#f2dede;border:1px solid #e6b6bd}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{opacity:.6;width:5px;height:5px;font-size:1%;position:absolute}.leaflet-edit-marker-selected{box-sizing:content-box;background-color:#fe57a11a;border:4px dashed #fe57a199;border-radius:4px}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999} \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css similarity index 96% rename from public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css index f032de2b8e..157782526b 100644 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap.f20f4c6e.css @@ -11,4 +11,4 @@ * * / * */ -.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--color-1:#f7f7f7;--color-2:#f0f0f0;--color-3:#e9e9e9;--color-4:#e2e2e2;--color-5:#dbdbdb;--color-6:#d4d4d4;--color-drag1:#5f86c4;--color-drag2:#77a677;--color-drag1-background:#5f86c41a;--color-drag2-background:#77a67713;--font-size:medium;--font-family:Roboto,Arial,sans-serif;--color-overflow:gray;--color-icon:gray;--color-tabset-background:var(--color-background);--color-tabset-background-selected:var(--color-1);--color-tabset-background-maximized:var(--color-6);--color-tabset-divider-line:var(--color-4);--color-tabset-header-background:var(--color-background);--color-tabset-header:var(--color-text);--color-border-background:var(--color-background);--color-border-divider-line:var(--color-4);--color-tab-selected:var(--color-text);--color-tab-selected-background:var(--color-4);--color-tab-unselected:gray;--color-tab-unselected-background:transparent;--color-tab-textbox:var(--color-text);--color-tab-textbox-background:var(--color-3);--color-border-tab-selected:var(--color-text);--color-border-tab-selected-background:var(--color-4);--color-border-tab-unselected:gray;--color-border-tab-unselected-background:var(--color-2);--color-splitter:var(--color-1);--color-splitter-hover:var(--color-4);--color-splitter-drag:var(--color-4);--color-drag-rect-border:var(--color-6);--color-drag-rect-background:var(--color-4);--color-drag-rect:var(--color-text);--color-popup-border:var(--color-6);--color-popup-unselected:var(--color-text);--color-popup-unselected-background:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.flexlayout__splitter{background-color:var(--color-splitter)}@media (hover:hover){.flexlayout__splitter:hover{background-color:var(--color-splitter-hover);transition:background-color .1s ease-in 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);display:flex;overflow:hidden}.flexlayout__tabset_tabbar_outer_top{border-bottom:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_outer_bottom{border-top:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@media (hover:hover){.flexlayout__tab_button_stretch:hover{color:var(--color-tab-selected)}}.flexlayout__tab_button--selected{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}@media (hover:hover){.flexlayout__tab_button:hover{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}}.flexlayout__tab_button--unselected{background-color:var(--color-tab-unselected-background);color:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__tab_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__tab_button:hover .flexlayout__tab_button_trailing{visibility:visible}}.flexlayout__tab_button--selected .flexlayout__tab_button_trailing{visibility:visible}.flexlayout__tab_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.flexlayout__border_button--selected{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}@media (hover:hover){.flexlayout__border_button:hover{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}}.flexlayout__border_button--unselected{background-color:var(--color-border-tab-unselected-background);color:var(--color-border-tab-unselected)}.flexlayout__border_button_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__border_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__border_button:hover .flexlayout__border_button_trailing{visibility:visible}}.flexlayout__border_button--selected .flexlayout__border_button_trailing{visibility:visible}.flexlayout__border_toolbar{align-items:center;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file +.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--color-1:#f7f7f7;--color-2:#f0f0f0;--color-3:#e9e9e9;--color-4:#e2e2e2;--color-5:#dbdbdb;--color-6:#d4d4d4;--color-drag1:#5f86c4;--color-drag2:#77a677;--color-drag1-background:#5f86c41a;--color-drag2-background:#77a67713;--font-size:medium;--font-family:Roboto,Arial,sans-serif;--color-overflow:gray;--color-icon:gray;--color-tabset-background:var(--color-background);--color-tabset-background-selected:var(--color-1);--color-tabset-background-maximized:var(--color-6);--color-tabset-divider-line:var(--color-4);--color-tabset-header-background:var(--color-background);--color-tabset-header:var(--color-text);--color-border-background:var(--color-background);--color-border-divider-line:var(--color-4);--color-tab-selected:var(--color-text);--color-tab-selected-background:var(--color-4);--color-tab-unselected:gray;--color-tab-unselected-background:transparent;--color-tab-textbox:var(--color-text);--color-tab-textbox-background:var(--color-3);--color-border-tab-selected:var(--color-text);--color-border-tab-selected-background:var(--color-4);--color-border-tab-unselected:gray;--color-border-tab-unselected-background:var(--color-2);--color-splitter:var(--color-1);--color-splitter-hover:var(--color-4);--color-splitter-drag:var(--color-4);--color-drag-rect-border:var(--color-6);--color-drag-rect-background:var(--color-4);--color-drag-rect:var(--color-text);--color-popup-border:var(--color-6);--color-popup-unselected:var(--color-text);--color-popup-unselected-background:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.flexlayout__splitter{background-color:var(--color-splitter)}@media (hover:hover){.flexlayout__splitter:hover{background-color:var(--color-splitter-hover);transition:background-color .1s ease-in 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);display:flex;overflow:hidden}.flexlayout__tabset_tabbar_outer_top{border-bottom:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_outer_bottom{border-top:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@media (hover:hover){.flexlayout__tab_button_stretch:hover{color:var(--color-tab-selected)}}.flexlayout__tab_button--selected{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}@media (hover:hover){.flexlayout__tab_button:hover{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}}.flexlayout__tab_button--unselected{background-color:var(--color-tab-unselected-background);color:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__tab_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__tab_button:hover .flexlayout__tab_button_trailing{visibility:visible}}.flexlayout__tab_button--selected .flexlayout__tab_button_trailing{visibility:visible}.flexlayout__tab_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.flexlayout__border_button--selected{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}@media (hover:hover){.flexlayout__border_button:hover{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}}.flexlayout__border_button--unselected{background-color:var(--color-border-tab-unselected-background);color:var(--color-border-tab-unselected)}.flexlayout__border_button_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__border_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__border_button:hover .flexlayout__border_button_trailing{visibility:visible}}.flexlayout__border_button--selected .flexlayout__border_button_trailing{visibility:visible}.flexlayout__border_toolbar{align-items:center;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css similarity index 96% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css index 16e4bfadd8..157782526b 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f20f4c6e.css @@ -11,4 +11,4 @@ * * / * */ -.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--color-1:#f7f7f7;--color-2:#f0f0f0;--color-3:#e9e9e9;--color-4:#e2e2e2;--color-5:#dbdbdb;--color-6:#d4d4d4;--color-drag1:#5f86c4;--color-drag2:#77a677;--color-drag1-background:#5f86c41a;--color-drag2-background:#77a67713;--font-size:medium;--font-family:Roboto,Arial,sans-serif;--color-overflow:gray;--color-icon:gray;--color-tabset-background:var(--color-background);--color-tabset-background-selected:var(--color-1);--color-tabset-background-maximized:var(--color-6);--color-tabset-divider-line:var(--color-4);--color-tabset-header-background:var(--color-background);--color-tabset-header:var(--color-text);--color-border-background:var(--color-background);--color-border-divider-line:var(--color-4);--color-tab-selected:var(--color-text);--color-tab-selected-background:var(--color-4);--color-tab-unselected:gray;--color-tab-unselected-background:transparent;--color-tab-textbox:var(--color-text);--color-tab-textbox-background:var(--color-3);--color-border-tab-selected:var(--color-text);--color-border-tab-selected-background:var(--color-4);--color-border-tab-unselected:gray;--color-border-tab-unselected-background:var(--color-2);--color-splitter:var(--color-1);--color-splitter-hover:var(--color-4);--color-splitter-drag:var(--color-4);--color-drag-rect-border:var(--color-6);--color-drag-rect-background:var(--color-4);--color-drag-rect:var(--color-text);--color-popup-border:var(--color-6);--color-popup-unselected:var(--color-text);--color-popup-unselected-background:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.flexlayout__splitter{background-color:var(--color-splitter)}@media (hover:hover){.flexlayout__splitter:hover{background-color:var(--color-splitter-hover);transition:background-color .1s ease-in 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);display:flex;overflow:hidden}.flexlayout__tabset_tabbar_outer_top{border-bottom:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_outer_bottom{border-top:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@media (hover:hover){.flexlayout__tab_button_stretch:hover{color:var(--color-tab-selected)}}.flexlayout__tab_button--selected{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}@media (hover:hover){.flexlayout__tab_button:hover{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}}.flexlayout__tab_button--unselected{background-color:var(--color-tab-unselected-background);color:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__tab_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__tab_button:hover .flexlayout__tab_button_trailing{visibility:visible}}.flexlayout__tab_button--selected .flexlayout__tab_button_trailing{visibility:visible}.flexlayout__tab_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.flexlayout__border_button--selected{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}@media (hover:hover){.flexlayout__border_button:hover{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}}.flexlayout__border_button--unselected{background-color:var(--color-border-tab-unselected-background);color:var(--color-border-tab-unselected)}.flexlayout__border_button_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__border_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__border_button:hover .flexlayout__border_button_trailing{visibility:visible}}.flexlayout__border_button--selected .flexlayout__border_button_trailing{visibility:visible}.flexlayout__border_toolbar{align-items:center;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file +.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--color-1:#f7f7f7;--color-2:#f0f0f0;--color-3:#e9e9e9;--color-4:#e2e2e2;--color-5:#dbdbdb;--color-6:#d4d4d4;--color-drag1:#5f86c4;--color-drag2:#77a677;--color-drag1-background:#5f86c41a;--color-drag2-background:#77a67713;--font-size:medium;--font-family:Roboto,Arial,sans-serif;--color-overflow:gray;--color-icon:gray;--color-tabset-background:var(--color-background);--color-tabset-background-selected:var(--color-1);--color-tabset-background-maximized:var(--color-6);--color-tabset-divider-line:var(--color-4);--color-tabset-header-background:var(--color-background);--color-tabset-header:var(--color-text);--color-border-background:var(--color-background);--color-border-divider-line:var(--color-4);--color-tab-selected:var(--color-text);--color-tab-selected-background:var(--color-4);--color-tab-unselected:gray;--color-tab-unselected-background:transparent;--color-tab-textbox:var(--color-text);--color-tab-textbox-background:var(--color-3);--color-border-tab-selected:var(--color-text);--color-border-tab-selected-background:var(--color-4);--color-border-tab-unselected:gray;--color-border-tab-unselected-background:var(--color-2);--color-splitter:var(--color-1);--color-splitter-hover:var(--color-4);--color-splitter-drag:var(--color-4);--color-drag-rect-border:var(--color-6);--color-drag-rect-background:var(--color-4);--color-drag-rect:var(--color-text);--color-popup-border:var(--color-6);--color-popup-unselected:var(--color-text);--color-popup-unselected-background:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.flexlayout__splitter{background-color:var(--color-splitter)}@media (hover:hover){.flexlayout__splitter:hover{background-color:var(--color-splitter-hover);transition:background-color .1s ease-in 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);display:flex;overflow:hidden}.flexlayout__tabset_tabbar_outer_top{border-bottom:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_outer_bottom{border-top:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@media (hover:hover){.flexlayout__tab_button_stretch:hover{color:var(--color-tab-selected)}}.flexlayout__tab_button--selected{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}@media (hover:hover){.flexlayout__tab_button:hover{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}}.flexlayout__tab_button--unselected{background-color:var(--color-tab-unselected-background);color:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__tab_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__tab_button:hover .flexlayout__tab_button_trailing{visibility:visible}}.flexlayout__tab_button--selected .flexlayout__tab_button_trailing{visibility:visible}.flexlayout__tab_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.flexlayout__border_button--selected{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}@media (hover:hover){.flexlayout__border_button:hover{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}}.flexlayout__border_button--unselected{background-color:var(--color-border-tab-unselected-background);color:var(--color-border-tab-unselected)}.flexlayout__border_button_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__border_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__border_button:hover .flexlayout__border_button_trailing{visibility:visible}}.flexlayout__border_button--selected .flexlayout__border_button_trailing{visibility:visible}.flexlayout__border_toolbar{align-items:center;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Bold.2c00c297.ttf b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Bold.2c00c297.ttf similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Bold.2c00c297.ttf rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Bold.2c00c297.ttf diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Light.bec6f0ae.ttf b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Light.bec6f0ae.ttf similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Light.bec6f0ae.ttf rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Light.bec6f0ae.ttf diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Regular.4291f48c.ttf b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Regular.4291f48c.ttf similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Regular.4291f48c.ttf rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/font/Lato-Regular.4291f48c.ttf diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/7366.cc04fcb0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/7366.cc04fcb0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/7366.cc04fcb0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/7366.cc04fcb0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/7366.cc04fcb0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/7366.cc04fcb0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/7366.cc04fcb0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/7366.cc04fcb0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1003.469c1fdb.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1003.469c1fdb.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1003.469c1fdb.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1003.469c1fdb.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1003.469c1fdb.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1003.469c1fdb.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1003.469c1fdb.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1003.469c1fdb.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/101.1b8f34f4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/101.1b8f34f4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/101.1b8f34f4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/101.1b8f34f4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/101.1b8f34f4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/101.1b8f34f4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/101.1b8f34f4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/101.1b8f34f4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1010.af98507b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1010.af98507b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1010.af98507b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1010.af98507b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1010.af98507b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1010.af98507b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1010.af98507b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1010.af98507b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1019.2c88f074.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1019.2c88f074.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1019.2c88f074.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1019.2c88f074.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1019.2c88f074.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1019.2c88f074.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1019.2c88f074.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1019.2c88f074.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/103.3717b318.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/103.3717b318.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/103.3717b318.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/103.3717b318.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/103.3717b318.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/103.3717b318.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/103.3717b318.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/103.3717b318.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1065.5cc838a2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1065.5cc838a2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1065.5cc838a2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1065.5cc838a2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1065.5cc838a2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1065.5cc838a2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1065.5cc838a2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1065.5cc838a2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1102.01cefe38.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1102.01cefe38.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1102.01cefe38.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1102.01cefe38.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1102.01cefe38.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1102.01cefe38.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1102.01cefe38.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1102.01cefe38.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1153.7cbdaf39.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1153.7cbdaf39.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1153.7cbdaf39.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1153.7cbdaf39.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1153.7cbdaf39.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1153.7cbdaf39.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1153.7cbdaf39.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1153.7cbdaf39.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1180.c2738508.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1180.c2738508.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1180.c2738508.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1180.c2738508.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1180.c2738508.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1180.c2738508.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1180.c2738508.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1180.c2738508.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1207.ea0577c0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1207.ea0577c0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1207.ea0577c0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1207.ea0577c0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1207.ea0577c0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1207.ea0577c0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1207.ea0577c0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1207.ea0577c0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1265.d95e4129.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1265.d95e4129.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1265.d95e4129.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1265.d95e4129.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1265.d95e4129.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1265.d95e4129.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1265.d95e4129.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1265.d95e4129.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1270.4a7146b0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1270.4a7146b0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1270.4a7146b0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1270.4a7146b0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1270.4a7146b0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1270.4a7146b0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1270.4a7146b0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1270.4a7146b0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/129.24017dc3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/129.24017dc3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/129.24017dc3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/129.24017dc3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/129.24017dc3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/129.24017dc3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/129.24017dc3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/129.24017dc3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1303.f89c138e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1303.f89c138e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1303.f89c138e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1303.f89c138e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1303.f89c138e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1303.f89c138e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1303.f89c138e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1303.f89c138e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/141.a305e3e9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/141.a305e3e9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/141.a305e3e9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/141.a305e3e9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/141.a305e3e9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/141.a305e3e9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/141.a305e3e9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/141.a305e3e9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1428.b3183de2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1428.b3183de2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1428.b3183de2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1428.b3183de2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1428.b3183de2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1428.b3183de2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1428.b3183de2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1428.b3183de2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1438.67cdf5fd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1438.67cdf5fd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1438.67cdf5fd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1438.67cdf5fd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1438.67cdf5fd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1438.67cdf5fd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1438.67cdf5fd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1438.67cdf5fd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/145.7d13ff5f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/145.7d13ff5f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/145.7d13ff5f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/145.7d13ff5f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/145.7d13ff5f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/145.7d13ff5f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/145.7d13ff5f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/145.7d13ff5f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1472.e37f95af.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1472.e37f95af.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1472.e37f95af.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1472.e37f95af.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1472.e37f95af.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1472.e37f95af.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1472.e37f95af.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1472.e37f95af.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1553.630acce1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1553.630acce1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1553.630acce1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1553.630acce1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1553.630acce1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1553.630acce1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1553.630acce1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1553.630acce1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1567.debd0837.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1567.debd0837.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1567.debd0837.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1567.debd0837.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1567.debd0837.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1567.debd0837.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1567.debd0837.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1567.debd0837.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/157.8615578d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/157.8615578d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/157.8615578d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/157.8615578d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/157.8615578d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/157.8615578d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/157.8615578d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/157.8615578d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1612.54f63d68.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1612.54f63d68.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1612.54f63d68.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1612.54f63d68.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1612.54f63d68.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1612.54f63d68.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1612.54f63d68.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1612.54f63d68.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1635.18d9dd0b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1635.18d9dd0b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1635.18d9dd0b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1635.18d9dd0b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1635.18d9dd0b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1635.18d9dd0b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1635.18d9dd0b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1635.18d9dd0b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1643.b41a359d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1643.b41a359d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1643.b41a359d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1643.b41a359d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1643.b41a359d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1643.b41a359d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1643.b41a359d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1643.b41a359d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1668.120c2fdd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1668.120c2fdd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1668.120c2fdd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1668.120c2fdd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1668.120c2fdd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1668.120c2fdd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1668.120c2fdd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1668.120c2fdd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1688.4626095c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1688.4626095c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1688.4626095c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1688.4626095c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1688.4626095c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1688.4626095c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1688.4626095c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1688.4626095c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1693.48c272d7.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1693.48c272d7.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1693.48c272d7.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1693.48c272d7.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1693.48c272d7.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1693.48c272d7.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1693.48c272d7.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1693.48c272d7.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1708.de5f09b0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1708.de5f09b0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1708.de5f09b0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1708.de5f09b0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1708.de5f09b0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1708.de5f09b0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1708.de5f09b0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1708.de5f09b0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/172.cb77a99e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/172.cb77a99e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/172.cb77a99e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/172.cb77a99e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/172.cb77a99e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/172.cb77a99e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/172.cb77a99e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/172.cb77a99e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1721.fdc19114.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1721.fdc19114.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1721.fdc19114.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1721.fdc19114.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1721.fdc19114.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1721.fdc19114.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1721.fdc19114.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1721.fdc19114.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1742.9207983d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1742.9207983d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1742.9207983d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1742.9207983d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1742.9207983d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1742.9207983d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1742.9207983d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1742.9207983d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/175.bd0ef661.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/175.bd0ef661.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/175.bd0ef661.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/175.bd0ef661.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/175.bd0ef661.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/175.bd0ef661.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/175.bd0ef661.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/175.bd0ef661.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1750.19b70383.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1750.19b70383.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1750.19b70383.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1750.19b70383.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1750.19b70383.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1750.19b70383.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1750.19b70383.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1750.19b70383.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1762.e6454223.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1762.e6454223.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1762.e6454223.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1762.e6454223.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1762.e6454223.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1762.e6454223.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1762.e6454223.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1762.e6454223.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1797.bc29fd89.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1797.bc29fd89.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1797.bc29fd89.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1797.bc29fd89.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1797.bc29fd89.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1797.bc29fd89.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1797.bc29fd89.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1797.bc29fd89.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1814.16619920.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1814.16619920.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1814.16619920.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1814.16619920.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1814.16619920.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1814.16619920.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1814.16619920.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1814.16619920.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1834.3ea07c1f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1834.3ea07c1f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1834.3ea07c1f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1834.3ea07c1f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1834.3ea07c1f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1834.3ea07c1f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1834.3ea07c1f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1834.3ea07c1f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1851.1528a0c7.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1851.1528a0c7.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1851.1528a0c7.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1851.1528a0c7.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1851.1528a0c7.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1851.1528a0c7.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1851.1528a0c7.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1851.1528a0c7.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1875.048f7c1f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1875.048f7c1f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1875.048f7c1f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1875.048f7c1f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1875.048f7c1f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1875.048f7c1f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1875.048f7c1f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/1875.048f7c1f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/198.96c8f5d3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/198.96c8f5d3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/198.96c8f5d3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/198.96c8f5d3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/198.96c8f5d3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/198.96c8f5d3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/198.96c8f5d3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/198.96c8f5d3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2015.28b3f667.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2015.28b3f667.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2015.28b3f667.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2015.28b3f667.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2015.28b3f667.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2015.28b3f667.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2015.28b3f667.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2015.28b3f667.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2016.2efa4d68.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2016.2efa4d68.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2016.2efa4d68.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2016.2efa4d68.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2016.2efa4d68.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2016.2efa4d68.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2016.2efa4d68.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2016.2efa4d68.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/206.0227085b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/206.0227085b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/206.0227085b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/206.0227085b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/206.0227085b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/206.0227085b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/206.0227085b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/206.0227085b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2073.0f14210c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2073.0f14210c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2073.0f14210c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2073.0f14210c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2073.0f14210c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2073.0f14210c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2073.0f14210c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2073.0f14210c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2098.4b97bea3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2098.4b97bea3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2098.4b97bea3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2098.4b97bea3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2098.4b97bea3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2098.4b97bea3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2098.4b97bea3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2098.4b97bea3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2103.0449b778.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2103.0449b778.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2103.0449b778.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2103.0449b778.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2103.0449b778.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2103.0449b778.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2103.0449b778.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2103.0449b778.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2117.da809f8e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2117.da809f8e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2117.da809f8e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2117.da809f8e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2117.da809f8e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2117.da809f8e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2117.da809f8e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2117.da809f8e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2121.8117f390.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2121.8117f390.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2121.8117f390.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2121.8117f390.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2121.8117f390.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2121.8117f390.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2121.8117f390.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2121.8117f390.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2162.e42c8ad6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2162.e42c8ad6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2162.e42c8ad6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2162.e42c8ad6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2162.e42c8ad6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2162.e42c8ad6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2162.e42c8ad6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2162.e42c8ad6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2168.3b00277e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2168.3b00277e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2168.3b00277e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2168.3b00277e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2168.3b00277e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2168.3b00277e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2168.3b00277e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2168.3b00277e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2179.7408679f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2179.7408679f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2179.7408679f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2179.7408679f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2179.7408679f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2179.7408679f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2179.7408679f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2179.7408679f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2188.72e65c95.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2188.72e65c95.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2188.72e65c95.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2188.72e65c95.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2188.72e65c95.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2188.72e65c95.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2188.72e65c95.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2188.72e65c95.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2189.e296ffec.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2189.e296ffec.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2189.e296ffec.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2189.e296ffec.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2189.e296ffec.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2189.e296ffec.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2189.e296ffec.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2189.e296ffec.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2202.bd928b8b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2202.bd928b8b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2202.bd928b8b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2202.bd928b8b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2202.bd928b8b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2202.bd928b8b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2202.bd928b8b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2202.bd928b8b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2204.875d7d36.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2204.875d7d36.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2204.875d7d36.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2204.875d7d36.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2204.875d7d36.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2204.875d7d36.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2204.875d7d36.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2204.875d7d36.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2237.e23d4ce3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2237.e23d4ce3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2237.e23d4ce3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2237.e23d4ce3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2237.e23d4ce3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2237.e23d4ce3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2237.e23d4ce3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2237.e23d4ce3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2267.ad4d61d8.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2267.ad4d61d8.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2267.ad4d61d8.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2267.ad4d61d8.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2267.ad4d61d8.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2267.ad4d61d8.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2267.ad4d61d8.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2267.ad4d61d8.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2272.b29c0e6c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2272.b29c0e6c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2272.b29c0e6c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2272.b29c0e6c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2272.b29c0e6c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2272.b29c0e6c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2272.b29c0e6c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2272.b29c0e6c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2287.6a200c82.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2287.6a200c82.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2287.6a200c82.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2287.6a200c82.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2287.6a200c82.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2287.6a200c82.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2287.6a200c82.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2287.6a200c82.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2290.68fd6bdf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2290.68fd6bdf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2290.68fd6bdf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2290.68fd6bdf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2290.68fd6bdf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2290.68fd6bdf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2290.68fd6bdf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2290.68fd6bdf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/235.97e84a52.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/235.97e84a52.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/235.97e84a52.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/235.97e84a52.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/235.97e84a52.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/235.97e84a52.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/235.97e84a52.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/235.97e84a52.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2373.11c5538c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2373.11c5538c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2373.11c5538c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2373.11c5538c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2373.11c5538c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2373.11c5538c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2373.11c5538c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2373.11c5538c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2380.d6bc17ef.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2380.d6bc17ef.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2380.d6bc17ef.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2380.d6bc17ef.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2380.d6bc17ef.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2380.d6bc17ef.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2380.d6bc17ef.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2380.d6bc17ef.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2399.305db162.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2399.305db162.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2399.305db162.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2399.305db162.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2399.305db162.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2399.305db162.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2399.305db162.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2399.305db162.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2410.4b5baf39.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2410.4b5baf39.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2410.4b5baf39.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2410.4b5baf39.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2410.4b5baf39.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2410.4b5baf39.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2410.4b5baf39.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2410.4b5baf39.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2427.2406cc45.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2427.2406cc45.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2427.2406cc45.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2427.2406cc45.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2427.2406cc45.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2427.2406cc45.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2427.2406cc45.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2427.2406cc45.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/243.098f10af.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/243.098f10af.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/243.098f10af.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/243.098f10af.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/243.098f10af.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/243.098f10af.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/243.098f10af.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/243.098f10af.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2463.da2cfb76.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2463.da2cfb76.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2463.da2cfb76.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2463.da2cfb76.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2463.da2cfb76.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2463.da2cfb76.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2463.da2cfb76.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2463.da2cfb76.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2464.8deaa84f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2464.8deaa84f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2464.8deaa84f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2464.8deaa84f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2464.8deaa84f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2464.8deaa84f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2464.8deaa84f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2464.8deaa84f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2472.f40725db.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2472.f40725db.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2472.f40725db.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2472.f40725db.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2472.f40725db.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2472.f40725db.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2472.f40725db.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2472.f40725db.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2492.cc8cd85c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2492.cc8cd85c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2492.cc8cd85c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2492.cc8cd85c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2492.cc8cd85c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2492.cc8cd85c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2492.cc8cd85c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2492.cc8cd85c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/25.36d6a68b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/25.36d6a68b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/25.36d6a68b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/25.36d6a68b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/25.36d6a68b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/25.36d6a68b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/25.36d6a68b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/25.36d6a68b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2503.1efd0e77.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2503.1efd0e77.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2503.1efd0e77.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2503.1efd0e77.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2503.1efd0e77.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2503.1efd0e77.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2503.1efd0e77.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2503.1efd0e77.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/254.7abe0c11.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/254.7abe0c11.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/254.7abe0c11.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/254.7abe0c11.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/254.7abe0c11.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/254.7abe0c11.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/254.7abe0c11.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/254.7abe0c11.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2545.dcb1e512.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2545.dcb1e512.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2545.dcb1e512.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2545.dcb1e512.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2545.dcb1e512.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2545.dcb1e512.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2545.dcb1e512.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2545.dcb1e512.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2597.969d51fc.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2597.969d51fc.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2597.969d51fc.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2597.969d51fc.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2597.969d51fc.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2597.969d51fc.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2597.969d51fc.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2597.969d51fc.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/261.0e13114e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/261.0e13114e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/261.0e13114e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/261.0e13114e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/261.0e13114e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/261.0e13114e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/261.0e13114e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/261.0e13114e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2619.543b4f03.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2619.543b4f03.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2619.543b4f03.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2619.543b4f03.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2619.543b4f03.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2619.543b4f03.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2619.543b4f03.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2619.543b4f03.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2638.d949ec28.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2638.d949ec28.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2638.d949ec28.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2638.d949ec28.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2638.d949ec28.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2638.d949ec28.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2638.d949ec28.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2638.d949ec28.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2709.809fe258.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2709.809fe258.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2709.809fe258.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2709.809fe258.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2709.809fe258.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2709.809fe258.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2709.809fe258.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2709.809fe258.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2739.84cc2ba2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2739.84cc2ba2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2739.84cc2ba2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2739.84cc2ba2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2739.84cc2ba2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2739.84cc2ba2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2739.84cc2ba2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2739.84cc2ba2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2775.0d98465a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2775.0d98465a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2775.0d98465a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2775.0d98465a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2775.0d98465a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2775.0d98465a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2775.0d98465a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2775.0d98465a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2793.a25ad8de.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2793.a25ad8de.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2793.a25ad8de.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2793.a25ad8de.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2793.a25ad8de.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2793.a25ad8de.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2793.a25ad8de.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2793.a25ad8de.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/281.d912a74e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/281.d912a74e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/281.d912a74e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/281.d912a74e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/281.d912a74e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/281.d912a74e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/281.d912a74e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/281.d912a74e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2841.e1a4734b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2841.e1a4734b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2841.e1a4734b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2841.e1a4734b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2841.e1a4734b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2841.e1a4734b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2841.e1a4734b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2841.e1a4734b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2843.e1d9c7bc.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2843.e1d9c7bc.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2843.e1d9c7bc.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2843.e1d9c7bc.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2843.e1d9c7bc.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2843.e1d9c7bc.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2843.e1d9c7bc.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2843.e1d9c7bc.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2845.d2c82bf6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2845.d2c82bf6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2845.d2c82bf6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2845.d2c82bf6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2845.d2c82bf6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2845.d2c82bf6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2845.d2c82bf6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2845.d2c82bf6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2893.99328fa1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2893.99328fa1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2893.99328fa1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2893.99328fa1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2893.99328fa1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2893.99328fa1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2893.99328fa1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2893.99328fa1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2980.d885aa98.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2980.d885aa98.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2980.d885aa98.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2980.d885aa98.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2980.d885aa98.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2980.d885aa98.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2980.d885aa98.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/2980.d885aa98.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3.470a371d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3.470a371d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3.470a371d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3.470a371d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3.470a371d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3.470a371d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3.470a371d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3.470a371d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3009.be7deeee.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3009.be7deeee.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3009.be7deeee.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3009.be7deeee.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3009.be7deeee.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3009.be7deeee.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3009.be7deeee.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3009.be7deeee.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3055.b0f87225.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3055.b0f87225.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3055.b0f87225.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3055.b0f87225.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3055.b0f87225.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3055.b0f87225.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3055.b0f87225.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3055.b0f87225.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3062.323c4508.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3062.323c4508.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3062.323c4508.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3062.323c4508.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3062.323c4508.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3062.323c4508.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3062.323c4508.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3062.323c4508.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3066.31b992e1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3066.31b992e1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3066.31b992e1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3066.31b992e1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3066.31b992e1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3066.31b992e1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3066.31b992e1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3066.31b992e1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3068.7b747a5f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3068.7b747a5f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3068.7b747a5f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3068.7b747a5f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3068.7b747a5f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3068.7b747a5f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3068.7b747a5f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3068.7b747a5f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3125.ce787981.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3125.ce787981.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3125.ce787981.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3125.ce787981.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3125.ce787981.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3125.ce787981.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3125.ce787981.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3125.ce787981.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3144.edcf7515.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3144.edcf7515.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3144.edcf7515.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3144.edcf7515.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3144.edcf7515.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3144.edcf7515.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3144.edcf7515.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3144.edcf7515.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3166.32d06e35.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3166.32d06e35.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3166.32d06e35.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3166.32d06e35.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3166.32d06e35.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3166.32d06e35.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3166.32d06e35.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3166.32d06e35.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3197.ebf93fd4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3197.ebf93fd4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3197.ebf93fd4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3197.ebf93fd4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3197.ebf93fd4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3197.ebf93fd4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3197.ebf93fd4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3197.ebf93fd4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3209.6722a080.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3209.6722a080.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3209.6722a080.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3209.6722a080.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3209.6722a080.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3209.6722a080.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3209.6722a080.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3209.6722a080.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3229.97f4b7e5.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3229.97f4b7e5.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3229.97f4b7e5.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3229.97f4b7e5.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3229.97f4b7e5.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3229.97f4b7e5.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3229.97f4b7e5.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3229.97f4b7e5.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3240.f86bdd91.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3240.f86bdd91.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3240.f86bdd91.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3240.f86bdd91.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3240.f86bdd91.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3240.f86bdd91.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3240.f86bdd91.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3240.f86bdd91.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3330.c830e580.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3330.c830e580.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3330.c830e580.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3330.c830e580.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3330.c830e580.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3330.c830e580.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3330.c830e580.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3330.c830e580.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/334.67e5210f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/334.67e5210f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/334.67e5210f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/334.67e5210f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/334.67e5210f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/334.67e5210f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/334.67e5210f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/334.67e5210f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3379.f0e413e5.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3379.f0e413e5.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3379.f0e413e5.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3379.f0e413e5.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3379.f0e413e5.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3379.f0e413e5.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3379.f0e413e5.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3379.f0e413e5.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3392.42b07d09.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3392.42b07d09.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3392.42b07d09.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3392.42b07d09.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3392.42b07d09.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3392.42b07d09.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3392.42b07d09.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3392.42b07d09.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3396.4cc8f904.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3396.4cc8f904.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3396.4cc8f904.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3396.4cc8f904.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3396.4cc8f904.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3396.4cc8f904.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3396.4cc8f904.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3396.4cc8f904.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3406.86351b7b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3406.86351b7b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3406.86351b7b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3406.86351b7b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3406.86351b7b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3406.86351b7b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3406.86351b7b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3406.86351b7b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/35.d81ad3e5.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/35.d81ad3e5.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/35.d81ad3e5.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/35.d81ad3e5.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/35.d81ad3e5.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/35.d81ad3e5.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/35.d81ad3e5.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/35.d81ad3e5.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3528.60fd342c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3528.60fd342c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3528.60fd342c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3528.60fd342c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3528.60fd342c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3528.60fd342c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3528.60fd342c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3528.60fd342c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3548.133939a2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3548.133939a2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3548.133939a2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3548.133939a2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3548.133939a2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3548.133939a2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3548.133939a2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3548.133939a2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3584.4ad9a196.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3584.4ad9a196.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3584.4ad9a196.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3584.4ad9a196.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3584.4ad9a196.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3584.4ad9a196.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3584.4ad9a196.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3584.4ad9a196.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/365.e655295f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/365.e655295f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/365.e655295f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/365.e655295f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/365.e655295f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/365.e655295f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/365.e655295f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/365.e655295f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3653.7c1ffecd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3653.7c1ffecd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3653.7c1ffecd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3653.7c1ffecd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3653.7c1ffecd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3653.7c1ffecd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3653.7c1ffecd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3653.7c1ffecd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3657.cf916f7e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3657.cf916f7e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3657.cf916f7e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3657.cf916f7e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3657.cf916f7e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3657.cf916f7e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3657.cf916f7e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3657.cf916f7e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3686.6b54036a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3686.6b54036a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3686.6b54036a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3686.6b54036a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3686.6b54036a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3686.6b54036a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3686.6b54036a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3686.6b54036a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3748.7adfb9d1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3748.7adfb9d1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3748.7adfb9d1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3748.7adfb9d1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3748.7adfb9d1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3748.7adfb9d1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3748.7adfb9d1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3748.7adfb9d1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3750.921e74ed.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3750.921e74ed.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3750.921e74ed.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3750.921e74ed.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3750.921e74ed.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3750.921e74ed.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3750.921e74ed.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3750.921e74ed.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3756.7a4c5e02.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3756.7a4c5e02.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3756.7a4c5e02.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3756.7a4c5e02.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3756.7a4c5e02.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3756.7a4c5e02.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3756.7a4c5e02.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3756.7a4c5e02.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/380.0cdf7b27.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/380.0cdf7b27.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/380.0cdf7b27.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/380.0cdf7b27.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/380.0cdf7b27.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/380.0cdf7b27.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/380.0cdf7b27.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/380.0cdf7b27.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3836.6a4b9fd9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3836.6a4b9fd9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3836.6a4b9fd9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3836.6a4b9fd9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3836.6a4b9fd9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3836.6a4b9fd9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3836.6a4b9fd9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3836.6a4b9fd9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3838.4b01fffb.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3838.4b01fffb.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3838.4b01fffb.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3838.4b01fffb.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3838.4b01fffb.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3838.4b01fffb.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3838.4b01fffb.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3838.4b01fffb.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3839.800430ba.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3839.800430ba.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3839.800430ba.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3839.800430ba.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3839.800430ba.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3839.800430ba.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3839.800430ba.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3839.800430ba.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3846.e0ec9537.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3846.e0ec9537.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3846.e0ec9537.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3846.e0ec9537.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3846.e0ec9537.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3846.e0ec9537.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3846.e0ec9537.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3846.e0ec9537.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/385.d9b4f6a1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/385.d9b4f6a1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/385.d9b4f6a1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/385.d9b4f6a1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/385.d9b4f6a1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/385.d9b4f6a1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/385.d9b4f6a1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/385.d9b4f6a1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3902.5873a27f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3902.5873a27f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3902.5873a27f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3902.5873a27f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3902.5873a27f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3902.5873a27f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3902.5873a27f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3902.5873a27f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3935.0990f5be.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3935.0990f5be.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3935.0990f5be.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3935.0990f5be.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3935.0990f5be.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3935.0990f5be.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3935.0990f5be.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3935.0990f5be.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3941.9ceed713.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3941.9ceed713.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3941.9ceed713.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3941.9ceed713.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3941.9ceed713.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3941.9ceed713.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3941.9ceed713.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/3941.9ceed713.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4028.d910fe41.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4028.d910fe41.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4028.d910fe41.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4028.d910fe41.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4028.d910fe41.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4028.d910fe41.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4028.d910fe41.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4028.d910fe41.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4034.ebc0a070.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4034.ebc0a070.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4034.ebc0a070.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4034.ebc0a070.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4034.ebc0a070.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4034.ebc0a070.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4034.ebc0a070.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4034.ebc0a070.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4062.57e047db.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4062.57e047db.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4062.57e047db.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4062.57e047db.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4062.57e047db.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4062.57e047db.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4062.57e047db.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4062.57e047db.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4083.82e017ef.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4083.82e017ef.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4083.82e017ef.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4083.82e017ef.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4083.82e017ef.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4083.82e017ef.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4083.82e017ef.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4083.82e017ef.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4084.a80198a1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4084.a80198a1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4084.a80198a1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4084.a80198a1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4084.a80198a1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4084.a80198a1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4084.a80198a1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4084.a80198a1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4120.afd6653a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4120.afd6653a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4120.afd6653a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4120.afd6653a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4120.afd6653a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4120.afd6653a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4120.afd6653a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4120.afd6653a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4154.2617dd8b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4154.2617dd8b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4154.2617dd8b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4154.2617dd8b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4154.2617dd8b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4154.2617dd8b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4154.2617dd8b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4154.2617dd8b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4160.1311e5ef.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4160.1311e5ef.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4160.1311e5ef.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4160.1311e5ef.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4160.1311e5ef.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4160.1311e5ef.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4160.1311e5ef.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4160.1311e5ef.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4195.4fb2f2ba.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4195.4fb2f2ba.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4195.4fb2f2ba.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4195.4fb2f2ba.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4195.4fb2f2ba.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4195.4fb2f2ba.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4195.4fb2f2ba.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4195.4fb2f2ba.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4225.61de23fc.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4225.61de23fc.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4225.61de23fc.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4225.61de23fc.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4225.61de23fc.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4225.61de23fc.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4225.61de23fc.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4225.61de23fc.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4241.f5777d74.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4241.f5777d74.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4241.f5777d74.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4241.f5777d74.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4241.f5777d74.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4241.f5777d74.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4241.f5777d74.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4241.f5777d74.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4319.ca014781.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4319.ca014781.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4319.ca014781.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4319.ca014781.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4319.ca014781.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4319.ca014781.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4319.ca014781.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4319.ca014781.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4329.4e8ef4cc.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4329.4e8ef4cc.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4329.4e8ef4cc.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4329.4e8ef4cc.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4329.4e8ef4cc.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4329.4e8ef4cc.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4329.4e8ef4cc.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4329.4e8ef4cc.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4346.867849d4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4346.867849d4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4346.867849d4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4346.867849d4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4346.867849d4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4346.867849d4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4346.867849d4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4346.867849d4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4426.20bcaf42.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4426.20bcaf42.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4426.20bcaf42.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4426.20bcaf42.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4426.20bcaf42.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4426.20bcaf42.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4426.20bcaf42.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4426.20bcaf42.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/446.2523c50a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/446.2523c50a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/446.2523c50a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/446.2523c50a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/446.2523c50a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/446.2523c50a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/446.2523c50a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/446.2523c50a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/45.e217286d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/45.e217286d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/45.e217286d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/45.e217286d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/45.e217286d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/45.e217286d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/45.e217286d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/45.e217286d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4530.72904f19.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4530.72904f19.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4530.72904f19.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4530.72904f19.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4530.72904f19.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4530.72904f19.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4530.72904f19.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4530.72904f19.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4596.13ba10c0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4596.13ba10c0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4596.13ba10c0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4596.13ba10c0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4596.13ba10c0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4596.13ba10c0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4596.13ba10c0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4596.13ba10c0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4603.86da83a0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4603.86da83a0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4603.86da83a0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4603.86da83a0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4603.86da83a0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4603.86da83a0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4603.86da83a0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4603.86da83a0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4680.66eae797.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4680.66eae797.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4680.66eae797.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4680.66eae797.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4680.66eae797.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4680.66eae797.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4680.66eae797.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4680.66eae797.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4693.552164ec.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4693.552164ec.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4693.552164ec.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4693.552164ec.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4693.552164ec.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4693.552164ec.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4693.552164ec.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4693.552164ec.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4698.6d0eba4e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4698.6d0eba4e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4698.6d0eba4e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4698.6d0eba4e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4698.6d0eba4e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4698.6d0eba4e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4698.6d0eba4e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4698.6d0eba4e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4702.508d41d1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4702.508d41d1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4702.508d41d1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4702.508d41d1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4702.508d41d1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4702.508d41d1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4702.508d41d1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4702.508d41d1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4715.3e1202d6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4715.3e1202d6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4715.3e1202d6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4715.3e1202d6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4715.3e1202d6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4715.3e1202d6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4715.3e1202d6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4715.3e1202d6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4718.b15efaaf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4718.b15efaaf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4718.b15efaaf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4718.b15efaaf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4718.b15efaaf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4718.b15efaaf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4718.b15efaaf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4718.b15efaaf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4771.c5e9b1dd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4771.c5e9b1dd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4771.c5e9b1dd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4771.c5e9b1dd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4771.c5e9b1dd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4771.c5e9b1dd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4771.c5e9b1dd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4771.c5e9b1dd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4799.a225248d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4799.a225248d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4799.a225248d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4799.a225248d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4799.a225248d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4799.a225248d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4799.a225248d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4799.a225248d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4858.820711a5.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4858.820711a5.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4858.820711a5.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4858.820711a5.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4858.820711a5.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4858.820711a5.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4858.820711a5.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4858.820711a5.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4871.b42a8935.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4871.b42a8935.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4871.b42a8935.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4871.b42a8935.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4871.b42a8935.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4871.b42a8935.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4871.b42a8935.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/4871.b42a8935.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/489.693d11de.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/489.693d11de.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/489.693d11de.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/489.693d11de.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/489.693d11de.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/489.693d11de.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/489.693d11de.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/489.693d11de.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5084.877dbf80.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5084.877dbf80.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5084.877dbf80.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5084.877dbf80.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5084.877dbf80.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5084.877dbf80.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5084.877dbf80.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5084.877dbf80.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5114.ebf1bfcb.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5114.ebf1bfcb.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5114.ebf1bfcb.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5114.ebf1bfcb.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5114.ebf1bfcb.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5114.ebf1bfcb.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5114.ebf1bfcb.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5114.ebf1bfcb.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5123.9f567207.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5123.9f567207.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5123.9f567207.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5123.9f567207.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5123.9f567207.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5123.9f567207.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5123.9f567207.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5123.9f567207.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5154.a94bb137.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5154.a94bb137.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5154.a94bb137.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5154.a94bb137.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5154.a94bb137.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5154.a94bb137.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5154.a94bb137.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5154.a94bb137.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5168.fdbd2cef.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5168.fdbd2cef.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5168.fdbd2cef.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5168.fdbd2cef.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5168.fdbd2cef.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5168.fdbd2cef.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5168.fdbd2cef.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5168.fdbd2cef.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5177.a255dad2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5177.a255dad2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5177.a255dad2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5177.a255dad2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5177.a255dad2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5177.a255dad2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5177.a255dad2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5177.a255dad2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5186.deb009c0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5186.deb009c0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5186.deb009c0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5186.deb009c0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5186.deb009c0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5186.deb009c0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5186.deb009c0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5186.deb009c0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/521.cb98200a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/521.cb98200a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/521.cb98200a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/521.cb98200a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/521.cb98200a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/521.cb98200a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/521.cb98200a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/521.cb98200a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5277.97ce57aa.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5277.97ce57aa.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5277.97ce57aa.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5277.97ce57aa.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5277.97ce57aa.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5277.97ce57aa.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5277.97ce57aa.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5277.97ce57aa.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5331.bbbb73f8.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5331.bbbb73f8.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5331.bbbb73f8.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5331.bbbb73f8.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5331.bbbb73f8.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5331.bbbb73f8.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5331.bbbb73f8.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5331.bbbb73f8.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5412.53c2e3aa.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5412.53c2e3aa.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5412.53c2e3aa.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5412.53c2e3aa.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5412.53c2e3aa.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5412.53c2e3aa.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5412.53c2e3aa.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5412.53c2e3aa.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5431.0eb962a2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5431.0eb962a2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5431.0eb962a2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5431.0eb962a2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5431.0eb962a2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5431.0eb962a2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5431.0eb962a2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5431.0eb962a2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5454.a8bca7d3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5454.a8bca7d3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5454.a8bca7d3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5454.a8bca7d3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5454.a8bca7d3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5454.a8bca7d3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5454.a8bca7d3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5454.a8bca7d3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5545.cde240bd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5545.cde240bd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5545.cde240bd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5545.cde240bd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5545.cde240bd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5545.cde240bd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5545.cde240bd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5545.cde240bd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5561.b76a78d2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5561.b76a78d2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5561.b76a78d2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5561.b76a78d2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5561.b76a78d2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5561.b76a78d2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5561.b76a78d2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5561.b76a78d2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5690.782c3ae6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5690.782c3ae6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5690.782c3ae6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5690.782c3ae6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5690.782c3ae6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5690.782c3ae6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5690.782c3ae6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5690.782c3ae6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5696.ab2274ca.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5696.ab2274ca.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5696.ab2274ca.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5696.ab2274ca.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5696.ab2274ca.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5696.ab2274ca.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5696.ab2274ca.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5696.ab2274ca.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5712.ffe8bf9d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5712.ffe8bf9d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5712.ffe8bf9d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5712.ffe8bf9d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5712.ffe8bf9d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5712.ffe8bf9d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5712.ffe8bf9d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5712.ffe8bf9d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5731.15301fd9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5731.15301fd9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5731.15301fd9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5731.15301fd9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5731.15301fd9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5731.15301fd9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5731.15301fd9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5731.15301fd9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5753.371bde44.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5753.371bde44.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5753.371bde44.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5753.371bde44.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5753.371bde44.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5753.371bde44.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5753.371bde44.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5753.371bde44.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5804.1be86954.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5804.1be86954.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5804.1be86954.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5804.1be86954.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5804.1be86954.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5804.1be86954.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5804.1be86954.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5804.1be86954.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/582.4f5fd381.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/582.4f5fd381.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/582.4f5fd381.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/582.4f5fd381.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/582.4f5fd381.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/582.4f5fd381.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/582.4f5fd381.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/582.4f5fd381.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5841.812278cf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5841.812278cf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5841.812278cf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5841.812278cf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5841.812278cf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5841.812278cf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5841.812278cf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5841.812278cf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5904.327a2f83.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5904.327a2f83.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5904.327a2f83.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5904.327a2f83.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5904.327a2f83.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5904.327a2f83.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5904.327a2f83.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5904.327a2f83.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5976.be3da2cf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5976.be3da2cf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5976.be3da2cf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5976.be3da2cf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5976.be3da2cf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5976.be3da2cf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5976.be3da2cf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5976.be3da2cf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5990.3c9d8c23.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5990.3c9d8c23.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5990.3c9d8c23.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5990.3c9d8c23.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5990.3c9d8c23.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5990.3c9d8c23.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5990.3c9d8c23.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/5990.3c9d8c23.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6052.a270b069.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6052.a270b069.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6052.a270b069.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6052.a270b069.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6052.a270b069.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6052.a270b069.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6052.a270b069.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6052.a270b069.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6135.d371dcf8.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6135.d371dcf8.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6135.d371dcf8.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6135.d371dcf8.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6135.d371dcf8.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6135.d371dcf8.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6135.d371dcf8.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6135.d371dcf8.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/616.2ffecb95.js similarity index 98% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/616.2ffecb95.js index d244455bdd..b2d780d843 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/616.2ffecb95.js @@ -1,4 +1,4 @@ -/*! For license information please see 616.98e20c89.js.LICENSE.txt */ +/*! For license information please see 616.2ffecb95.js.LICENSE.txt */ (self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["616"],{5338(e,t,i){"use strict";var n=i(25765);t.createRoot=n.createRoot,t.hydrateRoot=n.hydrateRoot},80323(e,t,i){"use strict";i.d(t,{f:()=>l});var n=i(63364),r=i(27755),a=i(71954);let l=new class{async loadPlugins(){var e;let t=[],i=window.pluginRemotes,n=window.alternativePluginExportPaths;if(void 0===i)return;let r=[];for(let[e,t]of Object.entries(i))void 0!==t&&r.push({name:e,entry:t,alias:e});for(let i of(null==(e=(0,a.getInstance)())||e.registerRemotes(r),r)){let e=(null==n?void 0:n[i.name])??"",r=""!==e?`${i.alias}${e}`:i.alias;t.push((0,a.loadRemote)(r))}for(let e of(await Promise.allSettled(t))){if("fulfilled"!==e.status){console.error("Error loading remote plugin",e);continue}for(let t of Object.values(e.value)){if("object"!=typeof t||void 0===t.name)continue;if(void 0!==this.registry[t.name]){console.error("Plugin already registered",t.name);continue}let e={priority:t.priority??0,...t};this.registerPlugin(e)}}}registerPlugin(e){this.registry[e.name]=e}getOrderedPlugins(){return Object.values(this.registry).sort((e,t)=>(e.priority??0)-(t.priority??0))}initPlugins(){this.getOrderedPlugins().forEach(e=>{void 0!==e.onInit&&e.onInit({container:n.kL})})}startupPlugins(){this.getOrderedPlugins().forEach(e=>{void 0!==e.onStartup&&e.onStartup({moduleSystem:r.s})})}constructor(){this.registry={}}}},5970(e,t,i){"use strict";let n;i(46680);var r,a,l,o,s,d,c,f,u,m,p,g,h,y,v,b,x,j,w,k,T,S,C,D,I,M,L,F,E,P,A,N,R,V,z,B,O,K,_,H,$,W,q,G,U,Q,J,Z,Y,X,ee,et,ei,en,er,ea,el,eo,es,ed,ec,ef,eu,em,ep,eg,eh,ey,ev,eb,ex,ej,ew,ek,eT,eS,eC,eD,eI,eM,eL,eF,eE,eP,eA,eN,eR,eV,ez,eB,eO,eK,e_,eH,e$,eW,eq,eG,eU,eQ,eJ,eZ,eY,eX,e0,e1,e2,e3,e6,e4,e5,e7,e8,e9,te,tt,ti,tn,tr,ta,tl,to=i(34231),ts=i(27755),td=i(10600),tc=i(63364),tf=i(26053),tu=i(77885),tm=i(57885),tp=i(58487),tg=i(86208),th=i(85296),ty=i(61476),tv=i(89446),tb=i(68220),tx=i(84956),tj=i(53152),tw=i(31635),tk=i(62446);class tT{registerComponent(e,t){this.components.set(e,t)}getComponentByType(e){return this.components.get(e)}constructor(){this.components=new Map}}tT=(0,tw.Cg)([(0,tk.injectable)()],tT);class tS{async runJob(e){this.globalProcess.isConnected()||this.globalProcess.start(),await e.run({messageBus:this.messageBus})}constructor(e,t){this.messageBus=e,this.globalProcess=t}}tS=(0,tw.Cg)([(0,tk.injectable)(),(0,tw.Qj)(0,(0,tk.inject)(td.K.globalMessageBus)),(0,tw.Qj)(1,(0,tk.inject)(td.K.globalMessageBusProcess)),(0,tw.Sn)("design:type",Function),(0,tw.Sn)("design:paramtypes",["u"{t in e&&!(0,tI.isNil)(e[t])&&(o[t]=e[t])}),l.set("config",JSON.stringify(o));let s=l.toString();return`${r}${a}?${s}`}generateCustomThumbnailUrl(e){let t,i,{assetId:n,assetType:r}=e,a=`${(0,tD.$)()}/assets/${n}`;"video"===r?(t="/video/stream/image-thumbnail",i=this.buildQueryParams(e,tF)):(t=`/${r}/stream/custom`,i=this.buildQueryParams(e,tL),(0,tI.isUndefined)(e.resizeMode)&&i.set("resizeMode","document"===r?"resize":"none"),(0,tI.isUndefined)(e.mimeType)&&i.set("mimeType","JPEG"));let l=i.toString();return`${a}${t}${!(0,tI.isEmpty)(l)?`?${l}`:""}`}buildQueryParams(e,t){let i=new URLSearchParams;return t.forEach(t=>{let n=e[t];!(0,tI.isNil)(n)&&((0,tI.isBoolean)(n)?n&&i.append(t,"true"):(0,tI.isNumber)(n)?i.append(t,Math.round(n).toString()):i.append(t,String(n)))}),i}}tE=(0,tw.Cg)([(0,tk.injectable)()],tE);var tP=i(23176),tA=i(69186);class tN extends tA.P{}tN=(0,tw.Cg)([(0,tk.injectable)()],tN);class tR{}tR=(0,tw.Cg)([(0,tk.injectable)()],tR);class tV extends tR{constructor(...e){super(...e),this.id="archive"}}tV=(0,tw.Cg)([(0,tk.injectable)()],tV);class tz extends tR{constructor(...e){super(...e),this.id="audio"}}tz=(0,tw.Cg)([(0,tk.injectable)()],tz);class tB extends tR{constructor(...e){super(...e),this.id="document"}}tB=(0,tw.Cg)([(0,tk.injectable)()],tB);class tO extends tR{constructor(...e){super(...e),this.id="folder"}}tO=(0,tw.Cg)([(0,tk.injectable)()],tO);class tK extends tR{constructor(...e){super(...e),this.id="image"}}tK=(0,tw.Cg)([(0,tk.injectable)()],tK);class t_ extends tR{constructor(...e){super(...e),this.id="text"}}t_=(0,tw.Cg)([(0,tk.injectable)()],t_);class tH extends tR{constructor(...e){super(...e),this.id="unknown"}}tH=(0,tw.Cg)([(0,tk.injectable)()],tH);class t$ extends tR{constructor(...e){super(...e),this.id="video"}}t$=(0,tw.Cg)([(0,tk.injectable)()],t$);var tW=i(57697),tq=i(74848),tG=i(47867),tU=i.n(tG),tQ=i(92428),tJ=i(57231);let tZ=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tq.jsx)(tJ.lV.Item,{initialValue:!1,name:i,valuePropName:"checked",children:(0,tq.jsx)(tQ.S,{})})},tY=(0,tk.injectable)()(j=class{getBatchEditComponent(e){return(0,tq.jsx)(tZ,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","checkbox")}})||j;var tX=i(81659),t0=i(81215),t1=i(11354);let t2=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tq.jsx)(tJ.lV.Item,{name:i,children:(0,tq.jsx)(t1.l,{outputType:"timestamp"})})},t3=(0,tk.injectable)()(w=class{getBatchEditComponent(e){return(0,tq.jsx)(t2,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","datetime")}})||w;var t6=i(74462),t4=i(50094);let t5=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tq.jsx)(t4._Y,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tq.jsx)(tJ.lV.Item,{name:i,children:(0,tq.jsx)(t6.P,{assetsAllowed:!0})})})},t7=(0,tk.injectable)()(k=class{getBatchEditComponent(e){return(0,tq.jsx)(t5,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","element_dropzone")}})||k;var t8=i(1993);let t9=e=>{var t,i;let{batchEdit:n}=e,{key:r,config:a}=n,l="definition"in a&&(0,tI.isArray)(null==a||null==(t=a.definition)?void 0:t.options),o=null==a||null==(i=a.options)?void 0:i.map(e=>({value:e,label:e}));return l&&(o=a.definition.options.map(e=>({value:e.value,label:e.key}))),(0,tq.jsx)(tJ.lV.Item,{name:r,children:(0,tq.jsx)(t8.l,{options:o})})},ie=(0,tk.injectable)()(T=class{getBatchEditComponent(e){return(0,tq.jsx)(t9,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","select")}})||T;var it=i(33473),ii=i(53031),ir=i(78785),ia=i(17044),il=i(16450);let io=e=>{switch(e){case -1:return!1;case 0:default:return null;case 1:return!0}},is=e=>!0===e?1:!1===e?-1:0,id=()=>{var e;let{setData:t,data:i,config:n}=(0,il.F)(),[r,a]=(0,tG.useState)([]),l=[];return l="fieldDefinition"in n&&Array.isArray(null==n||null==(e=n.fieldDefinition)?void 0:e.options)?n.fieldDefinition.options.map(e=>({label:e.key,value:e.value})):[{label:"True",value:1},{label:"False",value:-1},{label:"Empty",value:0}],(0,tG.useEffect)(()=>{a((i??[]).map(is))},[i]),(0,tq.jsx)(t8.l,{mode:"multiple",onChange:e=>{a(e),t(e.map(io))},options:l,style:{width:"100%"},value:r})},ic=(0,tk.injectable)()(S=class extends ia.C{getFieldFilterType(){return"system.boolean"}getFieldFilterComponent(){return(0,tq.jsx)(id,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","boolean-select")}})||S,iu=(0,tk.injectable)()(C=class extends ic{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","boolean")}})||C;var im=i(94652);let ip=(0,tk.injectable)()(D=class extends ia.C{getFieldFilterType(){return"crm.consent"}getFieldFilterComponent(e){return(0,tq.jsx)(im.m,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","consent")}})||D;var ig=i(86569),ih=i(72928);let iy=()=>{let{config:e}=(0,il.F)(),{getType:t,hasType:i,getComponentRenderer:n}=(0,ih.R)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:r}=e,a=(null==r?void 0:r.fieldType)??(null==r?void 0:r.fieldtype)??"unknown";if(!i({target:"FIELD_FILTER",dynamicTypeIds:[a]}))return(0,tq.jsx)(ig.Alert,{message:`Filter for ${r.fieldtype} is not supported`,type:"error"});let{ComponentRenderer:l}=n({target:"FIELD_FILTER",dynamicTypeIds:[a]}),o=t({target:"FIELD_FILTER",dynamicTypeIds:[a]});return null===l||null!==o&&"dynamicTypeFieldFilterType"in o&&"none"===o.dynamicTypeFieldFilterType.id?(0,tq.jsx)(ig.Alert,{message:`Filter for ${r.fieldtype} is not supported`,type:"error"}):(0,tq.jsx)(tq.Fragment,{children:l(r)})};var iv=i(46881);let ib=(0,tk.injectable)()(I=class extends ia.C{shouldOverrideFilterType(){return!0}isFilterAvailable(e){if(null===e)return!1;let t=iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]);return!!t.hasDynamicType(e)&&t.getDynamicType(e).dynamicTypeFieldFilterType.isFilterAvailable(null)}getFieldFilterComponent(e){return(0,tq.jsx)(iy,{...e})}transformFilterToApiRequest(e){return iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e.meta.fieldDefinition.fieldtype).dynamicTypeFieldFilterType.transformFilterToApiRequest(e)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.adapter")}})||I,ix=()=>{let{config:e}=(0,il.F)(),{hasType:t,getComponentRenderer:i}=(0,ih.R)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:n}=e,r=(null==n?void 0:n.fieldType)??(null==n?void 0:n.fieldtype)??"unknown";if(!t({target:"FIELD_FILTER",dynamicTypeIds:[r]}))return(0,tq.jsx)(ig.Alert,{message:`Unknown data type: ${r}`,type:"warning"});let{ComponentRenderer:a}=i({target:"FIELD_FILTER",dynamicTypeIds:[r]});return null===a?(0,tq.jsx)(tq.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tq.jsx)(tq.Fragment,{children:a(n)})},ij=(0,tk.injectable)()(M=class extends ia.C{shouldOverrideFilterType(){return!0}isFilterAvailable(e){return null!==e&&iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e).dynamicTypeFieldFilterType.isFilterAvailable(null)}getFieldFilterComponent(e){return(0,tq.jsx)(ix,{...e})}transformFilterToApiRequest(e){return iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e.meta.fieldDefinition.fieldtype).dynamicTypeFieldFilterType.transformFilterToApiRequest(e)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.objectbrick")}})||M;var iw=i(46383),ik=i(71916);let iT=(0,tk.injectable)()(L=class extends ia.C{getFieldFilterType(){return"system.number"}getFieldFilterComponent(e){return(0,tq.jsx)(ik.a,{...e})}constructor(...e){super(...e),function(e,t){var i;(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:"id",enumerable:!0,configurable:!0,writable:!0}):e[t]="id"}(this,"id")}})||L;var iS=i(13145),iC=i(95433),iD=i(14542);class iI extends ia.C{getFieldFilterComponent(e){return(0,tq.jsx)(iD.i,{...e})}}let iM=(0,tk.injectable)()(F=class extends iI{getFieldFilterType(){return"system.string"}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","string")}})||F;var iL=i(97536),iF=i(30595),iE=i(40917);let iP=(0,tk.injectable)()(E=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(iE.e,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dependency-type-icon")}})||E;var iA=i(31492),iN=i(7814),iR=i(44241);let iV=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{cell:i` .pimcore-icon { color: ${t.Colors.Neutral.Icon.colorIcon}; @@ -1024,7 +1024,7 @@ text-align: center; color: ${t.colorTextDisabled}; margin-top: 50px; - `}}),EF=()=>{let{t:e}=(0,iQ.useTranslation)(),{styles:t}=EL(),{openedThumbnails:i,activeTabKey:n,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}=(()=>{let[e,t]=(0,tG.useState)([]),[i,n]=(0,tG.useState)(void 0),r=(0,tG.useCallback)(i=>{if(!e.some(e=>e.thumbnail.id===i.id)){let e={thumbnail:i,isDirty:!1};t(t=>[...t,e])}n(i.id)},[e]),a=(0,tG.useCallback)(e=>{t(t=>{let r=t.findIndex(t=>t.thumbnail.id===e),a=t.filter(t=>t.thumbnail.id!==e);if(e===i){let e=t[r-1],i=t[r+1];n((null==e?void 0:e.thumbnail.id)??(null==i?void 0:i.thumbnail.id))}return a})},[i]),l=(0,tG.useCallback)(e=>{n(e)},[]),o=(0,tG.useCallback)((e,i)=>{t(t=>t.map(t=>t.thumbnail.id===e?{...t,isDirty:i}:t))},[]),s=(0,tG.useCallback)(()=>e.filter(e=>e.isDirty).map(e=>e.thumbnail.id),[e]);return{openedThumbnails:e,activeTabKey:i,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}})(),d=(0,tG.useMemo)(()=>s(),[s]);return(0,tq.jsx)(Ep,{children:(0,tq.jsx)(Lp.v,{leftItem:{size:25,minSize:200,children:(0,tq.jsx)(Eg,{activeTabKey:n,modifiedThumbnails:d,onThumbnailSelect:e=>{r(e)},openedThumbnails:i})},rightItem:{size:75,children:0===i.length?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)("div",{className:t.emptyState,children:e("video-thumbnails.editor.select-thumbnail")})}):(0,tq.jsx)(EM,{activeTabKey:n,onChangeTab:l,onCloseTab:a,onTabDirtyChange:o,openedThumbnails:i})}})})},EE={name:"Video Thumbnails",id:"video-thumbnails",component:"video-thumbnails",config:{translationKey:"widget.video-thumbnails",icon:{type:"name",value:"video-thumbnail"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"AssetManagement/Video Thumbnails",label:"navigation.video-thumbnails",className:"item-style-modifier",order:101,permission:pw.F.Thumbnails,perspectivePermission:pk.d.AssetThumbnails,widgetConfig:EE}),tc.kL.get(td.K.widgetManager).registerWidget({name:"video-thumbnails",component:EF});let e=tc.kL.get(td.K["DynamicTypes/VideoTransformationDynamicTypeRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Resize"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ScaleByWidth"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ScaleByHeight"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Cut"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/SetFramerate"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ColorChannelMixer"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Mute"]))}});let EP=()=>{let[e,{isLoading:t,error:i}]=(0,TD.k9)(),[n,{isLoading:r,error:a}]=(0,TD.RB)(),[l,{isLoading:o,error:s}]=(0,TD.Rq)();return(0,tG.useEffect)(()=>{void 0!==i&&"error_invalid_argument"!==(0,iX.ok)(i)&&(0,iX.Ay)(new iX.hD(i))},[i]),(0,tG.useEffect)(()=>{void 0!==a&&(0,iX.Ay)(new iX.hD(a))},[a]),(0,tG.useEffect)(()=>{void 0!==s&&"error_invalid_argument"!==(0,iX.ok)(s)&&(0,iX.Ay)(new iX.hD(s))},[s]),{createNewMetadata:async()=>{let{data:t,error:i}=await e({createPredefinedMetadata:{name:"",type:"input",description:null,targetSubType:null,data:null,config:null,language:null,group:null}});return void 0!==i?{success:!1,errorKey:(0,iX.ok)(i)}:void 0!==t?{success:!0,data:t}:{success:!1}},createLoading:t,deleteMetadataById:async e=>{let{error:t}=await n({id:e});return{success:void 0===t}},deleteLoading:r,updateMetadataById:async(e,t)=>{let{error:i}=await l({id:e,updatePredefinedMetadata:{name:t.name??"",description:t.description??null,type:t.type.includes("metadata.")?t.type.split(".")[1]??t.type:t.type,targetSubType:t.targetSubType??null,data:t.data??null,config:t.config??null,language:t.language??null,group:t.group??null}});return void 0!==i?{success:!1,errorKey:(0,iX.ok)(i)}:{success:!0}},updateLoading:o}},EA=e=>{let{info:t,setPredefinedAssetMetadataRows:i}=e,n=t.row.original.id,{deleteMetadataById:r,deleteLoading:a}=EP(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},EN=e=>{let{predefinedAssetMetadataRows:t,setPredefinedAssetMetadataRows:i}=e,{t:n}=(0,iQ.useTranslation)(),{updateMetadataById:r}=EP(),[a,l]=(0,tG.useState)([]),{showModal:o,closeModal:s,renderModal:d}=(0,TI.hS)({type:"error"}),c=(0,tG.useRef)({name:"",language:""}),f=(0,tc.Lt)(td.K["DynamicTypes/MetadataRegistry"]),u=(0,tc.Lt)(td.K["DynamicTypes/AssetRegistry"]),m=(0,tG.useMemo)(()=>f.getDynamicTypes().map(e=>({value:e.id,label:n("data-type."+e.id.split(".")[1])})),[n]),p=(0,tG.useMemo)(()=>u.getDynamicTypes().map(e=>({value:e.id,label:e.id})),[]),g=(0,tG.useMemo)(()=>t.map(e=>({...e,type:e.type.includes("metadata.")?e.type:`metadata.${e.type}`})),[t]),h=(0,cH.createColumnHelper)(),y=[h.accessor("type",{header:n("predefined-asset-metadata.columns.icon"),meta:{type:"asset-custom-metadata-icon",editable:!1},size:40,enableSorting:!1}),h.accessor("name",{header:n("predefined-asset-metadata.columns.name"),meta:{editable:!0},size:200}),h.accessor("group",{header:n("predefined-asset-metadata.columns.group"),meta:{editable:!0},size:150}),h.accessor("description",{header:n("predefined-asset-metadata.columns.description"),meta:{editable:!0},size:200}),h.accessor("type",{id:"typeSelect",header:n("predefined-asset-metadata.columns.type"),meta:{type:"select",editable:!0,config:{options:m}},size:130}),h.accessor("data",{header:n("predefined-asset-metadata.columns.value"),meta:{type:"asset-custom-metadata-value",editable:!0,autoWidth:!0},size:300}),h.accessor("config",{header:n("predefined-asset-metadata.columns.config"),meta:{editable:!0},size:150}),h.accessor("language",{header:n("predefined-asset-metadata.columns.language"),meta:{type:"language-select",editable:!0,config:{allowClear:!0}},size:100}),h.accessor("targetSubType",{header:n("predefined-asset-metadata.columns.target-type"),meta:{type:"select",editable:!0,config:{options:p}},size:130}),h.accessor("actions",{header:n("predefined-asset-metadata.columns.actions"),size:80,enableSorting:!1,cell:e=>(0,tq.jsx)(EA,{info:e,setPredefinedAssetMetadataRows:i})})],v=async e=>{let{columnId:n,value:a,rowData:s}=e,d=s.rowId,f="typeSelect"===n?"type":n,u={...s,..."type"===f?{data:null}:{},[f]:a};if(("name"===f||"language"===f)&&t.some(e=>e.rowId!==d&&e.name===u.name&&(e.language??null)===(u.language??null))){c.current={name:u.name,language:u.language??""},o();return}i(e=>e.map(e=>e.rowId===d?u:e)),l([{columnId:n,rowIndex:d}]);let{success:m,errorKey:p}=await r(u.id,u);m?l([]):("error_invalid_argument"===p&&(c.current={name:u.name,language:u.language??""},o()),i(e=>e.map(e=>e.rowId===d?s:e)))};return(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ul.x,{autoWidth:!0,columns:y,data:g,enableSorting:!0,modifiedCells:a,onUpdateCellData:v,resizable:!0,setRowId:e=>e.rowId}),(0,tq.jsxs)(d,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(ig.Button,{onClick:s,type:"primary",children:n("button.ok")})}),title:n("predefined-asset-metadata.duplicate-entry.title"),children:[(0,tq.jsx)("p",{children:n("predefined-asset-metadata.duplicate-entry.error")}),(0,tq.jsxs)("div",{style:{marginTop:8},children:[(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[n("predefined-asset-metadata.columns.name"),":"]})," ",c.current.name]}),(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[n("predefined-asset-metadata.columns.language"),":"]})," ",""!==c.current.language?c.current.language:"—"]})]})]})]})},ER=()=>{let{createNewMetadata:e,createLoading:t}=EP(),{showModal:i,closeModal:n,renderModal:r}=(0,TI.hS)({type:"error"}),[a,l]=(0,tG.useState)([]),[o,s]=(0,tG.useState)(!0),d=(0,tG.useRef)(null),[c,{error:f}]=(0,TD.Hw)(),u=async e=>{s(!0);let{data:t}=await c({body:{searchTerm:e??null}});l((null==t?void 0:t.items)===void 0||null===t.items?[]:(Array.isArray(t.items)?t.items:Object.values(t.items)).map(e=>({...e,rowId:e.id}))),s(!1)};(0,tG.useEffect)(()=>{(0,tI.isUndefined)(f)||(0,iX.Ay)(new iX.hD(f))},[f]),(0,tG.useEffect)(()=>{u()},[]);let m=e=>{u(e.length>0?e:void 0)},p=[...a].sort((e,t)=>t.creationDate-e.creationDate),g=!o&&0===a.length,h=async()=>{if(a.some(e=>"New Definition"===e.name&&(e.language??null)===null&&(e.targetSubType??null)===null))return void i();let{success:t,data:n,errorKey:r}=await e();t&&void 0!==n?l(e=>[{...n,rowId:(0,af.uuid)()},...e]):"error_invalid_argument"===r&&i()};return(0,tq.jsxs)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsx)(lp.K,{disabled:o,icon:{value:"refresh"},onClick:()=>{var e;let t=null==(e=d.current)?void 0:e.input;(0,tI.isNil)(t)||(t.value=""),u()}}),(0,tq.jsx)(ni.IconTextButton,{disabled:o||t,icon:{value:"new"},loading:t,onClick:h,children:(0,i6.t)("predefined-asset-metadata.new")})]}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.predefined-asset-metadata")}),(0,tq.jsx)(ni.SearchInput,{loading:o,onClear:()=>{m("")},onSearch:m,placeholder:"Search",ref:d,withPrefix:!1,withoutAddon:!1})]}),children:[(0,tq.jsx)(uE.U,{loading:o,margin:{x:"extra-small",y:"none"},none:g,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(EN,{predefinedAssetMetadataRows:p,setPredefinedAssetMetadataRows:l})})}),(0,tq.jsxs)(r,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(ig.Button,{onClick:n,type:"primary",children:(0,i6.t)("button.ok")})}),title:(0,i6.t)("predefined-asset-metadata.duplicate-entry.title"),children:[(0,tq.jsx)("p",{children:(0,i6.t)("predefined-asset-metadata.duplicate-entry.error")}),(0,tq.jsxs)("div",{style:{marginTop:8},children:[(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[(0,i6.t)("predefined-asset-metadata.columns.name"),":"]})," New Definition"]}),(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[(0,i6.t)("predefined-asset-metadata.columns.language"),":"]})," —"]})]})]})]})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"AssetManagement/Predefined Asset Metadata",label:"navigation.predefined-asset-metadata",order:102,className:"item-style-modifier",permission:pw.F.AssetMetadata,perspectivePermission:pk.d.PredefinedAssetMetadata,widgetConfig:{name:"Predefined Asset Metadata",id:"predefined-asset-metadata",component:"predefined-asset-metadata",config:{translationKey:"widget.predefined-asset-metadata",icon:{type:"name",value:"custom-metadata"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"predefined-asset-metadata",component:ER})}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DynamicTypes/IconSetRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/IconSet/PimcoreDefault"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/IconSet/Twemoji"]))}});var EV=i(75401);ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"System/About",label:"navigation.about",className:"item-style-modifier",order:9999,perspectivePermission:pk.d.About,useCustomMainNavItem:()=>{let{open:e}=(0,EV.c)();return{name:"SystemAbout",onClick:e}}})}});let Ez=e=>{let{hideCredentialsForm:t=!1}=e,{t:i}=(0,iQ.useTranslation)(),n=(0,CC.e)().getSlotComponents(yl.e.form.login.name).length>1;return t||!n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(m1.c,{plain:!0,children:i("login-form-additional-logins.or")})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]).registerToSlot(tu.eb.form.login.name,{name:"loginFormDivider",priority:0,component:Ez})}});var EB=i(24184),EO=i(35235),EK=i(86970);let E_=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),{data:r,isLoading:a,error:l}=(0,cV.useClassDefinitionGetIdentifierDataQuery)(),[o]=(0,cV.useClassDefinitionCreateMutation)(),{openConfiguration:s}=(0,EO.wB)();return(0,tG.useEffect)(()=>{void 0!==l&&(0,uj.trackError)(new uj.ApiError(l))},[l]),(0,tG.useEffect)(()=>{(null==r?void 0:r.suggestedId)!==void 0&&t.setFieldValue("uniqueIdentifier",r.suggestedId)},[null==r?void 0:r.suggestedId]),(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("class-definition.create-new"),children:(0,tq.jsx)(ni.Content,{loading:a,children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{void 0!==r&&o({createClassDefinition:{name:e.className,uid:e.uniqueIdentifier}}).then(e=>{t.resetFields(),i(),s({id:e.data.id,name:e.data.name,group:e.data.group,icon:e.data.icon})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("class-definition.class-name"),name:"className",rules:[{required:!0,message:e("class-definition.validation.enter-class-name")},{pattern:/^[A-Za-z][A-Za-z0-9_]*$/,message:e("class-definition.validation.class-name-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)(ni.Form.Item,{initialValue:null==r?void 0:r.suggestedId,label:e("class-definition.unique-identifier"),name:"uniqueIdentifier",rules:[{required:!0,message:e("class-definition.validation.enter-unique-identifier")},{validator:async(t,i)=>{if((null==r?void 0:r.existingIds.includes(i.toLowerCase()))===!0)return await Promise.reject(Error(e("class-definition.validation.unique-identifier-in-use")));await Promise.resolve()}},{pattern:/^[a-zA-Z0-9_]{0,63}$/,message:e("class-definition.validation.unique-identifier-format")}],children:(0,tq.jsx)(ni.Input,{maxLength:64})}),(0,tq.jsx)(n5.E,{type:"secondary",children:e("class-definition.unique-identifier-warning")}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})})},EH=(0,cH.createColumnHelper)(),E$=e=>{let{classId:t}=e,{data:i,isLoading:n}=(0,fk.hp)({id:t}),r=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[EH.accessor("key",{header:e("object-brick-key"),size:200}),EH.accessor("fieldName",{header:e("field-name"),size:200})],[e])})();return n?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:r,data:(null==i?void 0:i.items)??[],enableMultipleRowSelection:!1,resizable:!1})};var EW=i(89966),Eq=i(59438);let EG=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,EW.g)(),i=(0,tG.useMemo)(()=>(0,tI.isNil)(null==t?void 0:t.fieldDefinitions)?[]:Object.values(t.fieldDefinitions).filter(e=>"data"===e.datatype&&(0,tI.isString)(e.name)&&e.name.trim().length>0).map(e=>({label:e.title??e.name,value:e.name})).sort((e,t)=>e.label.localeCompare(t.label)),[null==t?void 0:t.fieldDefinitions]);return(0,tq.jsx)(tJ.lV.Item,{name:"compositeIndices",children:(0,tq.jsxs)(Eq.e,{getItemTitle:(t,i)=>(null==t?void 0:t.index_key)??`${e("class-definition.composite-indices.index-label")} ${i+1}`,title:e("class-definition.composite-indices.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.index-name"),name:"index_key",children:(0,tq.jsx)(aR.p,{placeholder:e("class-definition.composite-indices.enter-index-name")})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.type"),name:"index_type",children:(0,tq.jsx)(t8.l,{options:[{label:e("class-definition.composite-indices.type-query"),value:"query"},{label:e("class-definition.composite-indices.type-localized-query"),value:"localized_query"},{label:e("class-definition.composite-indices.type-store"),value:"store"},{label:e("class-definition.composite-indices.type-localized-store"),value:"localized_store"}],placeholder:e("class-definition.composite-indices.select-index-type")})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.columns"),name:"index_columns",children:(0,tq.jsx)(t8.l,{mode:"tags",options:i,placeholder:e("class-definition.composite-indices.select-column-names")})})]})})},EU=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance(),i=tJ.lV.useWatch("name",t),n=t.getFieldValue("id");return(0,tG.useEffect)(()=>{if((0,tI.isString)(i)){let e="Pimcore\\Model\\DataObject\\"+(0,tI.upperFirst)(i);t.getFieldValue("phpClassName")!==e&&t.setFieldValue("phpClassName",e,{triggerChange:!0})}},[i]),(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("class-definition.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("name"),name:"name",rules:[{required:!0,message:e("class-definition.general-settings.enter-name")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.description"),name:"description",children:(0,tq.jsx)(n4.f,{rows:3})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.id"),name:"id",children:(0,tq.jsx)(aR.p,{disabled:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.php-class-name"),name:"phpClassName",children:(0,tq.jsx)(aR.p,{disabled:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.icon"),name:"icon",children:(0,tq.jsx)(Lv.N,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.listing-parent-class"),name:"listingParentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.use-traits"),name:"useTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.listing-use-traits"),name:"listingUseTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.link-generator-reference"),name:"linkGeneratorReference",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.preview-generator-reference"),name:"previewGeneratorReference",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{name:"allowInherit",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.allow-inherit")})}),(0,tq.jsx)(tJ.lV.Item,{name:"allowVariants",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.allow-variants")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showVariants",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-variants")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showAppLoggerTab",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-app-logger-tab")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showFieldLookup",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-field-lookup")})}),(0,tq.jsx)(tJ.lV.Item,{name:"enableGridLocking",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.enable-grid-locking")})}),(0,tq.jsx)(tJ.lV.Item,{name:"encryption",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.encrypt-data")})})]}),(0,tq.jsxs)(ni.FormKit.Panel,{title:e("class-definition.property-visibility.title"),children:[(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","id"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.id-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","id"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.id-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","key"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.key-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","key"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.key-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","path"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.path-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","path"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.path-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","modificationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.modification-date-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","modificationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.modification-date-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","creationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.creation-date-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","creationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.creation-date-search")})})]}),(0,tq.jsx)(EG,{}),!(0,tI.isNil)(n)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("class-definition.object-bricks.title"),children:(0,tq.jsx)(E$,{classId:n})})]}),[])};var EQ=i(23004);let EJ=e=>{let[t,i]=(0,EQ.lr)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>{var e;return t({id:r.id,classDefinitionUpdate:{configuration:{children:n().children??[]},values:{...r,icon:(null==(e=r.icon)?void 0:e.value)??""}}})},i]};var EZ=i(54436);let EY=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),{configuration:r}=(0,EZ.R6)(),{data:a,isLoading:l,error:o}=(0,cV.useClassCustomLayoutGetIdentifierDataQuery)({classDefinitionId:r.id}),[s]=(0,cV.useClassCustomLayoutCreateMutation)(),{openConfiguration:d}=(0,EO.wB)();return(0,tG.useEffect)(()=>{void 0!==o&&(0,uj.trackError)(new uj.ApiError(o))},[o]),(0,tG.useEffect)(()=>{(null==a?void 0:a.suggestedId)!==void 0&&t.setFieldValue("uniqueIdentifier",a.suggestedId)},[null==a?void 0:a.suggestedId]),(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("field-definitions.create-new-class-definition"),children:(0,tq.jsx)(ni.Content,{loading:l,children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{void 0!==a&&s({customLayoutId:e.uniqueIdentifier,customLayoutNew:{classId:r.id,name:e.name}}).then(e=>{t.resetFields(),i(),d({id:e.data.id,name:e.data.name,group:e.data.group,icon:e.data.icon})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("name"),name:"name",rules:[{required:!0,message:e("field-definitions.validation.enter-class-name")},{pattern:/^[-A-Za-z0-9_]*$/,message:e("field-definitions.validation.class-name-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)(ni.Form.Item,{initialValue:null==a?void 0:a.suggestedId,label:e("field-definitions.validation.unique-identifier"),name:"uniqueIdentifier",rules:[{required:!0,message:e("field-definitions.validation.enter-unique-identifier")},{validator:async(t,i)=>{if((null==a?void 0:a.existingIds.includes(i.toLowerCase()))===!0)return await Promise.reject(Error(e("field-definitions.validation.unique-identifier-in-use")));await Promise.resolve()}},{pattern:/^[-a-zA-Z0-9_]{0,63}$/,message:e("field-definitions.validation.unique-identifier-format")}],children:(0,tq.jsx)(ni.Input,{maxLength:64})}),(0,tq.jsx)(n5.E,{type:"secondary",children:e("class-definition.unique-identifier-warning")}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})})},EX=()=>{let{generalSettings:e}=(0,f$.dq)(),{t}=(0,iQ.useTranslation)();return(0,tI.isNil)(e)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(ni.FormKit.Panel,{title:t("general"),children:[(0,tq.jsx)(ig.Form.Item,{label:t("name"),name:"name",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("class-definition.custom-layouts.default-layout"),name:"default_layout",valuePropName:"checked",children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("description"),name:"description",children:(0,tq.jsx)(ni.TextArea,{rows:3})})]})},E0=()=>({accessor:e=>e.layoutDefinition??void 0}),E1=()=>{let{configuration:e}=(0,EZ.R6)();return(0,cV.useClassCustomLayoutCollectionQuery)({classIds:e.id})},E2=e=>(0,cV.useClassCustomLayoutGetQuery)({customLayoutId:e.id});var E3=i(13604),E6=i(25277);let{LayoutProvider:E4,useLayout:E5}=(0,E6.v)(),E7=e=>{let{fieldDefinitionRegistry:t}=(0,E3.t0)();return(0,tq.jsx)(E4,{...e,fieldDefinitionRegistry:t})},E8=e=>{let[t,i]=(0,EQ.Zz)(e),{getLayout:n}=E5(),{generalSettings:r}=(0,f$.dq)();return[()=>t({customLayoutId:String(r.id),customLayoutUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},E9=e=>{let[t,i]=(0,EQ.Zq)(e);return[e=>t({customLayoutId:String(e.id)}),i]};var Pe=i(11182),Pt=i(38939);let Pi=()=>{var e,t,i,n;let{configuration:r}=(0,EZ.R6)(),a=(0,E3.t0)(),l=null==(t=a.customLayouts)||null==(e=t.parent)?void 0:e.area,o=null==(n=a.customLayouts)||null==(i=n.parent)?void 0:i.useLayout,{fieldDefinitionRegistry:s}=a;if(void 0===o)throw Error("Custom Layout Parent: useLayout is not defined in editor settings");if(void 0===l)throw Error("Custom Layout Parent: area is not defined in editor settings");let{structure:d,fieldDefinitions:c,getLayout:f}=o(),u=(0,tG.useMemo)(()=>(e,t)=>{var i;let n=c[e.key];if(void 0===n)return t;let r={type:"field-definition",icon:n.icon??{value:"folder"},title:n.title??n.name??e.title,data:{area:l,internal:{id:e.key,fieldDefinition:n,path:(null==(i=e.meta)?void 0:i.currentPath)??[]},external:f({startNode:e.key.toString()})}};return(0,tq.jsx)(ni.Draggable,{info:r,children:t})},[c,l,f]),m=tU().useMemo(()=>void 0===d?[]:[(0,Pt.buildTree)({structure:d,fieldDefinitions:c,registry:s,itemCallback:e=>{let{fieldDefinition:t,initialTreeItem:i}=e;return{...i,className:"ant-tree-node--has-drag-and-drop"}}}).children].flat(),[d,c]);return(0,tq.jsxs)(ni.Content,{padded:!0,padding:{y:"small",x:"mini"},children:[(0,tq.jsx)(ni.Header,{style:{flexShrink:0},title:r.name}),(0,tq.jsx)(ni.Content,{overflow:{x:"hidden",y:"auto"},style:{minHeight:0,flex:1},children:(0,tq.jsx)(ni.TreeElement,{defaultExpandAll:!0,titleRender:u,treeData:m})})]})};var Pn=i(28587),Pr=i(4839);let Pa=e=>"application/json"===e.type||e.name.endsWith(".json"),Pl=()=>{let{t:e}=(0,iQ.useTranslation)(),{useDetailLayoutQuery:t,useDetailGeneralSettingsQuery:i,importExportConfig:n,useItemsDeleteMutation:r}=(0,E3.t0)(),{activeConfiguration:a,closeConfiguration:l}=(0,EO.wB)(),o=(0,ni.useMessage)(),s=(0,ni.useFormModal)(),[d,c]=(0,tG.useState)(!1),f=void 0!==r,[u,m]=(r??(()=>[async()=>{},{}]))(),p=!!f&&!0===m.isLoading,g=null==a?void 0:a.id,h=null==t?void 0:t({id:g??""}),y=i({id:g??""});if((0,tI.isNil)(n))return(0,tq.jsx)(tq.Fragment,{});let{getExportUrl:v,getImportUrl:b,validateFile:x=Pa,acceptFileTypes:j=".json,application/json",acceptMimeTypes:w=["application/json"],successMessageKey:k="class-definition.import-success"}=n,T=(0,tI.isNil)(g)?"":b(g);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.ButtonGroup,{items:[(0,tq.jsx)(ni.IconButton,{icon:{value:"export"},onClick:()=>{if((0,tI.isNil)(g))return;let e=document.createElement("a");e.href=v(g),e.style.display="none",document.body.appendChild(e),e.click(),document.body.removeChild(e)},title:e("export"),type:"link"},"export"),(0,tq.jsx)(ni.IconButton,{icon:{value:"upload-import"},onClick:()=>{c(!0)},title:e("import"),type:"link"},"import"),...f?[(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:p,onClick:()=>{(0,tI.isNil)(g)||(0,tI.isNil)(a)||s.confirm({title:e("delete"),content:e("custom-layout.delete.confirmation"),okText:e("delete"),onOk:async()=>{try{await u({id:g}),l(a),o.success(e("custom-layout.delete.success"))}catch(e){(0,iX.Ay)(new iX.hD(e))}}})},title:e("delete"),type:"link"},"delete")]:[]]}),(0,tq.jsx)(Pr.z,{accept:j,acceptMimeTypes:w,action:T,onOpenChange:c,onUploadSuccess:()=>{o.success(e(k)),c(!1),null==h||h.refetch(),null==y||y.refetch()},open:d,title:e("class-definition.import"),uploadButtonLabel:e("import"),validateFile:x})]})};var Po=i(33627),Ps=i(11498);let Pd=()=>{let{activeConfiguration:e,setDetailView:t}=(0,EO.wB)(),{useDetailGeneralSettingsQuery:i,useDetailLayoutQuery:n,useDetailLayoutAccessor:r,customLayouts:a,LayoutProvider:l}=(0,E3.t0)(),o=null==n?void 0:n({id:e.id}),s=null==o?void 0:o.error,d=(0,tG.useMemo)(()=>null==r?void 0:r(),[r]),c=i({id:e.id}),{isLoading:f,isFetching:u,refetch:m,data:p}=c,g=c.error,[h,y]=(0,tG.useState)(null==o?void 0:o.data),[v,b]=(0,tG.useState)(0);return(0,tG.useEffect)(()=>{y(null==o?void 0:o.data)},[null==o?void 0:o.data]),(0,tG.useEffect)(()=>{if(void 0!==d&&void 0!==p){let e=d.accessor(p);if(void 0===e)return void y({name:"pimcore_root",children:[],fieldtype:"panel",bodyStyle:"",border:!1,collapsible:!1,title:"",datatype:"layout",collapsed:!1,height:0,width:0,icon:{type:"name",value:"none"},labelAlign:"left",labelWidth:100,layout:null,locked:!1,region:"",type:"layout",additionalAttributes:{}});y(e)}},[p,d]),(0,tG.useEffect)(()=>{void 0!==s&&"status"in s&&404===s.status?y({name:"pimcore_root",children:[],fieldtype:"panel",bodyStyle:"",border:!1,collapsible:!1,title:"",datatype:"layout",collapsed:!1,height:0,width:0,icon:{type:"name",value:"none"},labelAlign:"left",labelWidth:100,layout:null,locked:!1,region:"",type:"layout",additionalAttributes:{}}):void 0!==s&&(0,uj.trackError)(new uj.ApiError(s))},[s]),(0,tG.useEffect)(()=>{void 0!==g&&(0,uj.trackError)(new uj.ApiError(g))},[g]),(0,tq.jsx)(f$.Ts,{generalSettings:p,children:(0,tq.jsx)(l,{layout:h,children:(0,tq.jsx)(ni.ContentLayout,{className:"absolute-stretch",renderToolbar:(0,tq.jsxs)(ni.Toolbar,{justify:"space-between",padding:{x:"none"},theme:"secondary",children:[(0,tq.jsx)(Pl,{}),(0,tq.jsxs)(ni.Flex,{gap:"mini",children:[(0,tq.jsxs)(ni.Flex,{gap:"mini",children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"refresh"},onClick:()=>{null==o||o.refetch(),m(),b(e=>e+1),t("general")}}),(null==a?void 0:a.ModalContent)!==void 0&&(0,tq.jsx)(Pe.q,{})]}),(0,tq.jsx)(Po.x,{})]})]}),children:(0,tq.jsx)(ni.Content,{loading:(null==o?void 0:o.isLoading)===!0||f||(null==o?void 0:o.isFetching)===!0||u,children:(0,tq.jsx)(ni.ConfigLayout,{leftItem:{minSize:250,maxSize:350,size:250,children:(0,tq.jsx)(Pi,{})},resizeAble:!0,rightItem:{children:(0,tq.jsx)(ni.ConfigLayout,{leftItem:{minSize:250,maxSize:350,size:250,children:(0,tq.jsx)(Ps.C,{allowExternalDrop:!0})},resizeAble:!0,rightItem:{children:(0,tq.jsx)(Pn.R,{})}})}})})})},v)})},Pc=()=>{let{activeConfiguration:e}=(0,EO.wB)();return void 0===e?(0,tq.jsx)(ni.Content,{centered:!0,children:"Create a new Custom Layout or edit an existing one"}):(0,tq.jsx)(Pd,{},String(e.id))},Pf=()=>{let{openModal:e}=(0,EK.Ux)(),{AddModal:t}=(0,E3.t0)();return void 0===t?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.IconTextButton,{icon:{value:"new-something"},onClick:e,children:"New layout"})},Pu=()=>{var e;let{t}=(0,iQ.useTranslation)(),{useItemsQuery:i}=(0,E3.t0)(),{isLoading:n,data:r}=i(),{setActiveConfiguration:a,activeConfiguration:l}=(0,EO.wB)(),o=tU().useMemo(()=>void 0===r?[]:r.items.map(e=>({key:e.id,label:e.name,onClick:()=>{a(e)}})),[r,a]);return(0,tq.jsx)(tq.Fragment,{children:n||void 0===r||(null==r||null==(e=r.items)?void 0:e.length)===0?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.Dropdown,{menu:{items:o},children:(0,tq.jsx)(ni.IconTextButton,{icon:{value:"edit"},children:void 0!==l?l.name:t("field-definitions.select-item-configuration")})})})},Pm=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsx)(ni.Toolbar,{padding:{x:"none"},position:"content",theme:"secondary",children:(0,tq.jsx)(ni.Header,{title:e("field-definitions.custom-layout-title"),children:(0,tq.jsxs)(ni.Split,{children:[(0,tq.jsx)(Pf,{}),(0,tq.jsx)(Pu,{})]})})})};var Pp=i(69933);let Pg=()=>(0,tq.jsx)(EK.e,{children:(0,tq.jsx)(ni.ContentLayout,{renderTopBar:(0,tq.jsx)(Pm,{}),children:(0,tq.jsxs)(ni.Content,{style:{height:"60vh"},children:[(0,tq.jsx)(Pp.A,{}),(0,tq.jsx)(Pc,{})]})})}),Ph={getExportUrl:e=>`${(0,tD.$)()}/class/custom-layout/export/${e}`,getImportUrl:e=>`${(0,tD.$)()}/class/custom-layout/import/${e}`,successMessageKey:"custom-layout.import-success"},Py=()=>(0,tq.jsx)(EB.K,{AddModal:EY,GeneralSettingsFormFields:EX,LayoutProvider:E7,area:["class","custom-layout"],customLayouts:{parent:{area:["class"],useLayout:EW.g}},importExportConfig:Ph,useDetailGeneralSettingsQuery:E2,useDetailLayoutAccessor:E0,useDetailUpdateMutation:E8,useItemsDeleteMutation:E9,useItemsQuery:E1,useLayout:E5,view:(0,tq.jsx)(Pg,{})}),Pv={getExportUrl:e=>`${(0,tD.$)()}/class/definition/configuration-view/detail/${e}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/definition/configuration-view/detail/${e}/import`},Pb=()=>(0,tq.jsx)(EB.K,{AddModal:E_,GeneralSettingsFormFields:EU,area:["class"],customLayouts:{ModalContent:(0,tq.jsx)(Py,{})},importExportConfig:Pv,useDetailGeneralSettingsQuery:fk.tc,useDetailLayoutQuery:fk.PA,useDetailUpdateMutation:EJ,useItemsDeleteMutation:fk.zB,useItemsQuery:fk.HE});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/ClassDefinitions",label:"navigation.class-definitions",className:"class",order:100,permission:pw.F.Classes,perspectivePermission:pk.d.ClassDefinitions,widgetConfig:{name:"classes",id:"class-definitions",component:"class-definitions",config:{translationKey:"widget.class-definitions",icon:{type:"name",value:"class"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"class-definitions",component:Pb})}});var Px=i(97264);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/BulkExport",label:"navigation.bulk-export",order:700,permission:MX.UserPermission.Classes,perspectivePermission:I8.NavPermission.BulkExport,useCustomMainNavItem:()=>{let{open:e}=(0,Px.$)();return{name:"DataModelDefinitionsBulkExport",onClick:e}}})}});var Pj=i(18087);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/BulkImport",label:"navigation.bulk-import",order:800,permission:MX.UserPermission.Classes,perspectivePermission:I8.NavPermission.BulkImport,useCustomMainNavItem:()=>{let{open:e}=(0,Pj.G)();return{name:"DataModelDefinitionsBulkImport",onClick:e}}})}});let Pw=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),[r]=(0,fk.XA)(),{openConfiguration:a}=(0,EO.wB)();return(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("field-collection.create-new"),children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{t.resetFields(),r({createFieldCollection:{key:e.key}}).then(e=>{i(),a({id:e.data.key,name:e.data.title??e.data.key})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("field-collection.key"),name:"key",rules:[{required:!0,message:e("field-collection.validation.enter-key")},{pattern:/^[A-Za-z][A-Za-z0-9_]*$/,message:e("field-collection.validation.key-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})},Pk=(0,cH.createColumnHelper)(),PT=e=>{let{collectionKey:t}=e,{data:i,isLoading:n}=(0,fk.sD)({key:t}),r=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[Pk.accessor("class",{header:e("field-collection.general-settings.usages.class"),size:200}),Pk.accessor("field",{header:e("field-collection.general-settings.usages.field"),size:200})],[e])})();return n?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:r,data:(null==i?void 0:i.items)??[],enableMultipleRowSelection:!1,resizable:!1})},PS=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance().getFieldValue("id");return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("field-collection.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.title-label"),name:"title",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})})]}),!(0,tI.isNil)(t)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("field-collection.general-settings.usages.title"),children:(0,tq.jsx)(PT,{collectionKey:t})})]}),[t])},PC=e=>{let[t,i]=(0,fk.M0)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>t({key:null==r?void 0:r.id,fieldCollectionUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},PD=e=>{let t=String(e.id),i=(0,fk.cj)({key:t});return void 0!==i.data?{...i,data:{...i.data,id:i.data.key}}:i},PI=e=>{let t=String(e.id);return(0,fk.AY)({key:t})},PM=()=>{let e=(0,fk.kJ)({}),t=(0,tG.useMemo)(()=>{if(void 0===e.data||!("items"in e.data))return;let t=[];for(let r of e.data.items){var i,n;if("children"in r)for(let e of r.children)t.push({id:e.key,name:e.name,group:e.group??void 0,icon:{value:(null==(i=e.icon)?void 0:i.value)!==void 0&&""!==e.icon.value?e.icon.value:"field-collection-field"}});else t.push({id:r.key,name:r.name,group:r.group??void 0,icon:{value:(null==(n=r.icon)?void 0:n.value)!==void 0&&""!==r.icon.value?r.icon.value:"field-collection-field"}})}return{...e.data,items:t}},[e.data]);return void 0!==t?{...e,data:t}:e},PL=function(){for(var e=arguments.length,t=Array(e),i=0;in({key:String(e.id)}),r]},PF={getExportUrl:e=>`${(0,tD.$)()}/class/field-collection/${String(e)}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/field-collection/${String(e)}/import`},PE=()=>(0,tq.jsx)(EB.K,{AddModal:Pw,GeneralSettingsFormFields:PS,area:["fieldcollection"],importExportConfig:PF,useDetailGeneralSettingsQuery:PD,useDetailLayoutQuery:PI,useDetailUpdateMutation:PC,useItemsDeleteMutation:PL,useItemsQuery:PM});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/FieldCollections",label:"navigation.field-collections",className:"fieldcollection",order:200,permission:pw.F.FieldCollections,perspectivePermission:pk.d.FieldCollections,widgetConfig:{name:"field-collections",id:"field-collections",component:"field-collections",config:{translationKey:"widget.field-collections",icon:{type:"name",value:"field-collection-field"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"field-collections",component:PE})}});let PP=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),[r]=(0,fk.ll)(),{openConfiguration:a}=(0,EO.wB)();return(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("object-brick.create-new"),children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{t.resetFields(),r({createObjectBrick:{key:e.key}}).then(e=>{i(),a({id:e.data.key,name:e.data.title??e.data.key})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("object-brick.key"),name:"key",rules:[{required:!0,message:e("object-brick.validation.enter-key")},{pattern:/^[a-zA-Z]\w*$/,message:e("object-brick.validation.key-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})};var PA=i(8320);let PN=e=>{let{blockIndex:t,value:i,onChange:n}=e,{t:r}=(0,iQ.useTranslation)(),{operations:a}=(0,PA.S)(),l=a.getValue(["classDefinitions",t,"classname"]),o=(0,tG.useRef)(l);(0,tG.useEffect)(()=>{void 0!==o.current&&o.current!==l&&(null==n||n(null)),o.current=l},[l]);let{data:s,isFetching:d}=(0,fk.hp)({id:l},{skip:void 0===l||""===l}),c=(0,tG.useMemo)(()=>{if((null==s?void 0:s.items)===void 0)return[];let e=new Set;return s.items.reduce((t,i)=>(e.has(i.fieldName)||(e.add(i.fieldName),t.push({label:i.fieldName,value:i.fieldName})),t),[])},[s]);return(0,tq.jsx)(t8.l,{disabled:void 0===l||""===l,loadingSkeleton:d,onChange:n,options:c,placeholder:r("object-brick.class-definitions-block.select-fieldname"),value:i})},PR=()=>{let{t:e}=(0,iQ.useTranslation)(),{data:t,isFetching:i}=(0,fk.qA)(),n=(0,tG.useMemo)(()=>(null==t?void 0:t.items)===void 0?[]:t.items.map(e=>({label:e.name,value:e.id})),[t]),r=(0,tG.useMemo)(()=>{var e;let i={};return null==t||null==(e=t.items)||e.forEach(e=>{i[e.id]=e.name}),i},[t]);return(0,tq.jsx)(tJ.lV.Item,{name:"classDefinitions",children:(0,tq.jsx)(Eq.e,{getItemTitle:t=>(null==t?void 0:t.classname)!==void 0?r[t.classname]??t.classname:e("object-brick.class-definitions-block.new-entry"),title:e("object-brick.class-definitions-block.title"),children:t=>{let{blockIndex:r}=t;return(0,tq.jsxs)(ni.FormKit.Panel,{children:[(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.class-definitions-block.classname"),name:"classname",children:(0,tq.jsx)(t8.l,{loadingSkeleton:i,options:n,placeholder:e("object-brick.class-definitions-block.select-classname"),showSearch:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.class-definitions-block.fieldname"),name:"fieldname",children:(0,tq.jsx)(PN,{blockIndex:r})})]})}})})},PV=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("object-brick.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.title-label"),name:"title",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})})]}),(0,tq.jsx)(PR,{})]}),[])},Pz=e=>{let[t,i]=(0,fk.q9)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>t({key:null==r?void 0:r.id,objectBrickUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},PB=()=>{let{generalSettings:e}=(0,f$.dq)(),{t}=(0,iQ.useTranslation)();return(0,tI.isNil)(e)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(ni.FormKit.Panel,{title:t("general"),children:[(0,tq.jsx)(ig.Form.Item,{label:t("name"),name:"name",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("class-definition.custom-layouts.default-layout"),name:"default",valuePropName:"checked",children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("description"),name:"description",children:(0,tq.jsx)(ni.TextArea,{rows:3})})]})},PO=()=>({accessor:e=>e.layoutDefinition??void 0}),PK=()=>{let{data:e}=(0,cV.useClassObjectBrickClassesQuery)(),t=null==e?void 0:e.items.map(e=>e.id).join(",");return(0,cV.useClassCustomLayoutCollectionQuery)({classIds:t},{skip:void 0===t})},P_=e=>{let{configuration:t}=(0,EZ.R6)(),i=String((null==t?void 0:t.id)??""),n=String((null==e?void 0:e.id)??""),r=(0,cV.useClassObjectBrickCustomLayoutGetQuery)({key:i,customLayoutId:n},{skip:""===i||""===n});return void 0!==r.error&&"status"in r.error&&404===r.error.status?{...r,error:void 0,isError:!1,data:{id:n,name:"",description:"",creationDate:0,modificationDate:0,userOwner:0,classId:"",default:!1,layoutDefinition:null}}:r},{LayoutProvider:PH,useLayout:P$}=(0,E6.v)(),PW=e=>{let{fieldDefinitionRegistry:t}=(0,E3.t0)();return(0,tq.jsx)(PH,{...e,fieldDefinitionRegistry:t})},Pq=e=>{let[t,i]=(0,cV.useClassObjectBrickCustomLayoutUpdateMutation)(e),{getLayout:n}=P$(),{generalSettings:r}=(0,f$.dq)(),{configuration:a}=(0,EZ.R6)(),{activeConfiguration:l}=(0,EO.wB)(),o=String((null==a?void 0:a.id)??""),s=String((null==l?void 0:l.id)??"");return[()=>t({key:o,customLayoutId:s,customLayoutUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},{LayoutProvider:PG,useLayout:PU}=(0,E6.v)(),PQ=()=>{let{configuration:e}=(0,EZ.R6)(),t=String((null==e?void 0:e.id)??""),i=(0,tG.useMemo)(()=>({getExportUrl:e=>`${(0,tD.$)()}/class/object-brick/${t}/custom-layout/${e}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/object-brick/${t}/custom-layout/${e}/import`,successMessageKey:"custom-layout.import-success"}),[t]);return(0,tq.jsx)(EB.K,{GeneralSettingsFormFields:PB,LayoutProvider:PW,area:["objectbrick","custom-layout"],customLayouts:{parent:{area:["objectbrick"],useLayout:PU}},importExportConfig:i,useDetailGeneralSettingsQuery:P_,useDetailLayoutAccessor:PO,useDetailUpdateMutation:Pq,useItemsQuery:PK,useLayout:P$,view:(0,tq.jsx)(Pg,{})})},PJ=e=>{let t=String(e.id),i=(0,fk.Ss)({key:t});return void 0!==i.data?{...i,data:{...i.data,id:i.data.key}}:i},PZ=e=>{let t=String(e.id);return(0,fk.Io)({key:t})},PY=()=>{let e=(0,fk.eK)(),t=(0,tG.useMemo)(()=>{if(void 0===e.data||!("items"in e.data))return;let t=[];for(let r of e.data.items){var i,n;if("children"in r)for(let e of r.children)t.push({id:e.key,name:e.name,group:e.group??void 0,icon:{value:(null==(i=e.icon)?void 0:i.value)!==void 0&&""!==e.icon.value?e.icon.value:"object-bricks"}});else t.push({id:r.key,name:r.name,group:r.group??void 0,icon:{value:(null==(n=r.icon)?void 0:n.value)!==void 0&&""!==r.icon.value?r.icon.value:"object-bricks"}})}return{...e.data,items:t}},[e.data]);return void 0!==t?{...e,data:t}:e},PX=function(){for(var e=arguments.length,t=Array(e),i=0;in({key:String(e.id)}),r]},P0={getExportUrl:e=>`${(0,tD.$)()}/class/object-brick/${String(e)}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/object-brick/${String(e)}/import`},P1=e=>{let{children:t,...i}=e,{fieldDefinitionRegistry:n}=(0,E3.t0)();return(0,tq.jsx)(EW.U,{...i,children:(0,tq.jsx)(PG,{...i,fieldDefinitionRegistry:n,children:t})})},P2=()=>(0,tq.jsx)(EB.K,{AddModal:PP,GeneralSettingsFormFields:PV,LayoutProvider:P1,area:["objectbrick"],customLayouts:{ModalContent:(0,tq.jsx)(PQ,{})},importExportConfig:P0,useDetailGeneralSettingsQuery:PJ,useDetailLayoutQuery:PZ,useDetailUpdateMutation:Pz,useItemsDeleteMutation:PX,useItemsQuery:PY});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/ObjectBricks",label:"navigation.object-bricks",className:"objectbrick",order:300,permission:pw.F.ObjectBricks,perspectivePermission:pk.d.ObjectBricks,widgetConfig:{name:"object-bricks",id:"object-bricks",component:"object-bricks",config:{translationKey:"widget.object-bricks",icon:{type:"name",value:"object-bricks"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"object-bricks",component:P2})}});let P3=()=>{let e=(0,uk.jL)(),t=(0,aB.Vl)(),{t:i}=(0,iQ.useTranslation)(),{success:n}=(0,uI.J)(),[r,{isLoading:a}]=(0,fk.KB)(),[l,{isLoading:o}]=(0,fk.v2)(),[s,{isLoading:d}]=(0,fk.Lv)(),c=async(e,t)=>{let a=r({createSelectOption:{id:e}});try{let r=await a;void 0!==r.error&&(0,iX.Ay)(new iX.hD(r.error)),null==t||t(e),n(i("select-option.create.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to create new select option."))}},f=async(t,r)=>{let a=s({id:t});try{let t=await a;if(!(0,tI.isUndefined)(t.error))return void(0,iX.Ay)(new iX.hD(t.error));e(fk.FH.util.invalidateTags(uT.qN.SELECT_OPTION_COLLECTION())),null==r||r(),n(i("select-option.delete.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to delete select option"))}};return{createSelectOption:e=>{t.input({title:i("select-option.create-new"),label:i("select-option.enter-name-new-item"),rule:{required:!0,pattern:/^[A-Z][a-zA-Z0-9]*$/,message:i("select-option.validation.id-format")},onOk:async t=>{await c(t,()=>{null==e||e(t)})}})},getSelectOptionById:async t=>{try{let{data:i,isError:n,error:r}=await e(fk.FH.endpoints.classSelectOptionGet.initiate({id:t},{forceRefetch:!0}));if(!(0,tI.isUndefined)(i)&&n)return void(0,iX.Ay)(new iX.hD(r));return i}catch{(0,iX.Ay)(new iX.$g('Failed to load select option data of "'+t+'".'))}},updateSelectOption:async(e,t,r)=>{let a=l({id:e,updateSelectOption:t});try{let e=await a;if(void 0!==e.error)return void(0,iX.Ay)(new iX.hD(e.error));null==r||r(),n(i("select-option.update.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to update select option."))}},removeWithConfirmation:(e,n)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,tq.jsx)("span",{children:i("element.delete.confirmation.text")}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await f(e,()=>{null==n||n()})}})},isLoading:a||o||d}},P6=(0,tG.createContext)(void 0),P4=e=>{let{children:t}=e,[i,n]=(0,tG.useState)(void 0),[r,a]=(0,tG.useState)([]),{getSelectOptionById:l}=P3(),o=async e=>{let t=await l(e);(0,tI.isNil)(t)||a(e=>e.findIndex(e=>e.id===t.id)>=0?(n(t.id),e):(n(t.id),[...e,t]))},s=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},d=(0,tG.useMemo)(()=>({activeTabId:i,setActiveTabId:n,selectOptions:r,setSelectOptions:a,openSelectOption:o,closeSelectOption:s}),[i,r]);return(0,tq.jsx)(P6.Provider,{value:d,children:t})},P5=()=>{let e=(0,tG.useContext)(P6);if(void 0===e)throw Error("useSelectOptionEditorContext must be used within a SelectOptionEditorProvider");return e},P7=e=>{let{selectOptionId:t}=e,{t:i}=(0,iQ.useTranslation)(),{data:n,isLoading:r}=(0,fk.P1)({id:t}),a=(0,cH.createColumnHelper)(),l=[a.accessor("class",{header:i("select-option.general-settings.usages.class"),size:200}),a.accessor("field",{header:i("select-option.general-settings.usages.field"),size:200})];return r?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:l,data:(null==n?void 0:n.items)??[],enableMultipleRowSelection:!1,resizable:!1})},P8=(0,cH.createColumnHelper)(),P9=e=>{let{value:t=[],onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),r=((e,t)=>{let{t:i}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[P8.accessor("label",{header:i("select-option.entries.display-name"),meta:{editable:!0}}),P8.accessor("value",{header:i("select-option.entries.value"),meta:{editable:!0}}),P8.accessor("name",{header:i("select-option.entries.name"),meta:{editable:!0}}),P8.display({header:i("select-option.entries.action"),cell:n=>(0,tq.jsx)(ni.Box,{padding:"mini",children:(0,tq.jsx)(ni.ButtonGroup,{items:[(0,tq.jsx)(ni.IconButton,{disabled:0===n.row.index,icon:{value:"chevron-up"},onClick:()=>{let i=n.row.index;if(i>0){let n=[...e],r=n[i-1];n[i-1]=n[i],n[i]=r,null==t||t(n)}},size:"small",tooltip:{title:i("select-option.entries.move-up")},type:"link"},"move-up"),(0,tq.jsx)(ni.IconButton,{disabled:n.row.index===e.length-1,icon:{value:"chevron-down"},onClick:()=>{let i=n.row.index;if(i{let i=[...e];i.splice(n.row.index,1),null==t||t(i)},size:"small",tooltip:{title:i("delete")},type:"link"},"delete")],noSpacing:!0})}),id:"actions",size:120})],[e,t])})(t,i);return(0,tq.jsx)(ni.OperationalGrid,{columns:r,enableSorting:!1,onChange:i,setRowId:(e,t)=>`row-${e.value}-${t}`,value:t,children:(0,tq.jsxs)(ni.Space,{direction:"vertical",size:"small",style:{width:"100%"},children:[(0,tq.jsx)(ni.OperationalGrid.Grid,{}),(0,tq.jsx)(ni.OperationalGrid.Operations,{children:e=>(0,tq.jsx)(ni.Space,{children:(0,tq.jsx)(ni.IconButton,{icon:{value:"new-something"},onClick:()=>{e.addRow({label:"",value:"",name:""})},tooltip:{title:n("add")},type:"default"})})})]})})},Ae=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance().getFieldValue("id");return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("select-option.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.enum-name"),name:"enumName",children:(0,tq.jsx)(aR.p,{readOnly:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.use-traits"),name:"useTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.admin-only"),name:"adminOnly",valuePropName:"checked",children:(0,tq.jsx)(ig.Switch,{})})]}),(0,tq.jsx)(ni.FormKit.Panel,{title:e("select-option.entries.title"),children:(0,tq.jsx)(tJ.lV.Item,{name:"selectOptions",children:(0,tq.jsx)(P9,{})})}),!(0,tI.isNil)(t)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("select-option.general-settings.usages.title"),children:(0,tq.jsx)(P7,{selectOptionId:t})})]}),[t])},At=e=>{let{selectOption:t}=e,{t:i}=(0,iQ.useTranslation)(),{updateSelectOption:n,getSelectOptionById:r,removeWithConfirmation:a,isLoading:l}=P3(),{setSelectOptions:o,closeSelectOption:s}=P5(),[d]=tJ.lV.useForm(),c={...t},f=t.isWriteable;return(0,tq.jsx)(n6.L,{formProps:{form:d,initialValues:c,onFinish:async e=>{let i={group:e.group??null,adminOnly:e.adminOnly??!1,useTraits:e.useTraits??"",implementsInterfaces:e.implementsInterfaces??"",selectOptions:e.selectOptions??[]};await n(t.id,i,async()=>{let e=await r(t.id);void 0!==e&&(o(t=>t.map(t=>t.id===e.id?e:t)),d.setFieldsValue(e))})}},children:(0,tq.jsxs)(ap.s,{className:"absolute-stretch",justify:"space-between",vertical:!0,children:[(0,tq.jsx)(uE.U,{padded:!0,padding:{x:"small",y:"none"},children:(0,tq.jsx)(Ae,{})}),(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)(lp.K,{disabled:l,icon:{value:"refresh"},onClick:()=>{d.resetFields(),d.setFieldsValue(c)},title:i("refresh")}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(lp.K,{disabled:l||!f,icon:{value:"trash"},onClick:()=>{a(t.id,()=>{s(t.id),o(e=>e.filter(e=>e.id!==t.id))})},title:i("delete")})})]}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(az.$,{disabled:!f,htmlType:"submit",loading:l,type:"primary",children:i("save")})})]})]})})},Ai=e=>{let{id:t}=e,{selectOptions:i}=P5(),n=i.find(e=>e.id===t);return void 0===n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(At,{selectOption:n})},An=()=>{let{selectOptions:e,activeTabId:t,setActiveTabId:i,closeSelectOption:n}=P5();return(0,tq.jsx)(ni.Tabs,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.id,children:(0,tq.jsx)(Ai,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},Ar=e=>{let{onReload:t,onAddItem:i}=e,{t:n}=(0,iQ.useTranslation)();return(0,tq.jsxs)(pc.M,{children:[(0,tq.jsx)(lp.K,{icon:{value:"refresh"},onClick:t,children:n("toolbar.reload")}),(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:i,children:n("toolbar.new")})]})},Aa=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{treeContainer:i` + `}}),EF=()=>{let{t:e}=(0,iQ.useTranslation)(),{styles:t}=EL(),{openedThumbnails:i,activeTabKey:n,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}=(()=>{let[e,t]=(0,tG.useState)([]),[i,n]=(0,tG.useState)(void 0),r=(0,tG.useCallback)(i=>{if(!e.some(e=>e.thumbnail.id===i.id)){let e={thumbnail:i,isDirty:!1};t(t=>[...t,e])}n(i.id)},[e]),a=(0,tG.useCallback)(e=>{t(t=>{let r=t.findIndex(t=>t.thumbnail.id===e),a=t.filter(t=>t.thumbnail.id!==e);if(e===i){let e=t[r-1],i=t[r+1];n((null==e?void 0:e.thumbnail.id)??(null==i?void 0:i.thumbnail.id))}return a})},[i]),l=(0,tG.useCallback)(e=>{n(e)},[]),o=(0,tG.useCallback)((e,i)=>{t(t=>t.map(t=>t.thumbnail.id===e?{...t,isDirty:i}:t))},[]),s=(0,tG.useCallback)(()=>e.filter(e=>e.isDirty).map(e=>e.thumbnail.id),[e]);return{openedThumbnails:e,activeTabKey:i,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}})(),d=(0,tG.useMemo)(()=>s(),[s]);return(0,tq.jsx)(Ep,{children:(0,tq.jsx)(Lp.v,{leftItem:{size:25,minSize:200,children:(0,tq.jsx)(Eg,{activeTabKey:n,modifiedThumbnails:d,onThumbnailSelect:e=>{r(e)},openedThumbnails:i})},rightItem:{size:75,children:0===i.length?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)("div",{className:t.emptyState,children:e("video-thumbnails.editor.select-thumbnail")})}):(0,tq.jsx)(EM,{activeTabKey:n,onChangeTab:l,onCloseTab:a,onTabDirtyChange:o,openedThumbnails:i})}})})},EE={name:"Video Thumbnails",id:"video-thumbnails",component:"video-thumbnails",config:{translationKey:"widget.video-thumbnails",icon:{type:"name",value:"video-thumbnail"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"AssetManagement/Video Thumbnails",label:"navigation.video-thumbnails",className:"item-style-modifier",order:101,permission:pw.F.Thumbnails,perspectivePermission:pk.d.AssetThumbnails,widgetConfig:EE}),tc.kL.get(td.K.widgetManager).registerWidget({name:"video-thumbnails",component:EF});let e=tc.kL.get(td.K["DynamicTypes/VideoTransformationDynamicTypeRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Resize"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ScaleByWidth"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ScaleByHeight"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Cut"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/SetFramerate"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ColorChannelMixer"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Mute"]))}});let EP=()=>{let[e,{isLoading:t,error:i}]=(0,TD.k9)(),[n,{isLoading:r,error:a}]=(0,TD.RB)(),[l,{isLoading:o,error:s}]=(0,TD.Rq)();return(0,tG.useEffect)(()=>{void 0!==i&&"error_invalid_argument"!==(0,iX.ok)(i)&&(0,iX.Ay)(new iX.hD(i))},[i]),(0,tG.useEffect)(()=>{void 0!==a&&(0,iX.Ay)(new iX.hD(a))},[a]),(0,tG.useEffect)(()=>{void 0!==s&&"error_invalid_argument"!==(0,iX.ok)(s)&&(0,iX.Ay)(new iX.hD(s))},[s]),{createNewMetadata:async()=>{let{data:t,error:i}=await e({createPredefinedMetadata:{name:"",type:"input",description:null,targetSubType:null,data:null,config:null,language:null,group:null}});return void 0!==i?{success:!1,errorKey:(0,iX.ok)(i)}:void 0!==t?{success:!0,data:t}:{success:!1}},createLoading:t,deleteMetadataById:async e=>{let{error:t}=await n({id:e});return{success:void 0===t}},deleteLoading:r,updateMetadataById:async(e,t)=>{let{error:i}=await l({id:e,updatePredefinedMetadata:{name:t.name??"",description:t.description??null,type:t.type.includes("metadata.")?t.type.split(".")[1]??t.type:t.type,targetSubType:t.targetSubType??null,data:t.data??null,config:t.config??null,language:t.language??null,group:t.group??null}});return void 0!==i?{success:!1,errorKey:(0,iX.ok)(i)}:{success:!0}},updateLoading:o}},EA=e=>{let{info:t,setPredefinedAssetMetadataRows:i}=e,n=t.row.original.id,{deleteMetadataById:r,deleteLoading:a}=EP(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},EN=e=>{let{predefinedAssetMetadataRows:t,setPredefinedAssetMetadataRows:i}=e,{t:n}=(0,iQ.useTranslation)(),{updateMetadataById:r}=EP(),[a,l]=(0,tG.useState)([]),{showModal:o,closeModal:s,renderModal:d}=(0,TI.hS)({type:"error"}),c=(0,tG.useRef)({name:"",language:""}),f=(0,tc.Lt)(td.K["DynamicTypes/MetadataRegistry"]),u=(0,tc.Lt)(td.K["DynamicTypes/AssetRegistry"]),m=(0,tG.useMemo)(()=>f.getDynamicTypes().map(e=>({value:e.id,label:n("data-type."+e.id.split(".")[1])})),[n]),p=(0,tG.useMemo)(()=>u.getDynamicTypes().map(e=>({value:e.id,label:e.id})),[]),g=(0,tG.useMemo)(()=>t.map(e=>({...e,type:e.type.includes("metadata.")?e.type:`metadata.${e.type}`})),[t]),h=(0,cH.createColumnHelper)(),y=[h.accessor("type",{header:n("predefined-asset-metadata.columns.icon"),meta:{type:"asset-custom-metadata-icon",editable:!1},size:40,enableSorting:!1}),h.accessor("name",{header:n("predefined-asset-metadata.columns.name"),meta:{editable:!0},size:200}),h.accessor("group",{header:n("predefined-asset-metadata.columns.group"),meta:{editable:!0},size:150}),h.accessor("description",{header:n("predefined-asset-metadata.columns.description"),meta:{editable:!0},size:200}),h.accessor("type",{id:"typeSelect",header:n("predefined-asset-metadata.columns.type"),meta:{type:"select",editable:!0,config:{options:m}},size:130}),h.accessor("data",{header:n("predefined-asset-metadata.columns.value"),meta:{type:"asset-custom-metadata-value",editable:!0,autoWidth:!0},size:300}),h.accessor("config",{header:n("predefined-asset-metadata.columns.config"),meta:{editable:!0},size:150}),h.accessor("language",{header:n("predefined-asset-metadata.columns.language"),meta:{type:"language-select",editable:!0,config:{allowClear:!0}},size:100}),h.accessor("targetSubType",{header:n("predefined-asset-metadata.columns.target-type"),meta:{type:"select",editable:!0,config:{options:p}},size:130}),h.accessor("actions",{header:n("predefined-asset-metadata.columns.actions"),size:80,enableSorting:!1,cell:e=>(0,tq.jsx)(EA,{info:e,setPredefinedAssetMetadataRows:i})})],v=async e=>{let{columnId:n,value:a,rowData:s}=e,d=s.rowId,f="typeSelect"===n?"type":n,u={...s,..."type"===f?{data:null}:{},[f]:a};if(("name"===f||"language"===f)&&t.some(e=>e.rowId!==d&&e.name===u.name&&(e.language??null)===(u.language??null))){c.current={name:u.name,language:u.language??""},o();return}i(e=>e.map(e=>e.rowId===d?u:e)),l([{columnId:n,rowIndex:d}]);let{success:m,errorKey:p}=await r(u.id,u);m?l([]):("error_invalid_argument"===p&&(c.current={name:u.name,language:u.language??""},o()),i(e=>e.map(e=>e.rowId===d?s:e)))};return(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ul.x,{autoWidth:!0,columns:y,data:g,enableSorting:!0,modifiedCells:a,onUpdateCellData:v,resizable:!0,setRowId:e=>e.rowId}),(0,tq.jsxs)(d,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(ig.Button,{onClick:s,type:"primary",children:n("button.ok")})}),title:n("predefined-asset-metadata.duplicate-entry.title"),children:[(0,tq.jsx)("p",{children:n("predefined-asset-metadata.duplicate-entry.error")}),(0,tq.jsxs)("div",{style:{marginTop:8},children:[(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[n("predefined-asset-metadata.columns.name"),":"]})," ",c.current.name]}),(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[n("predefined-asset-metadata.columns.language"),":"]})," ",""!==c.current.language?c.current.language:"—"]})]})]})]})},ER=()=>{let{createNewMetadata:e,createLoading:t}=EP(),{showModal:i,closeModal:n,renderModal:r}=(0,TI.hS)({type:"error"}),[a,l]=(0,tG.useState)([]),[o,s]=(0,tG.useState)(!0),d=(0,tG.useRef)(null),[c,{error:f}]=(0,TD.Hw)(),u=async e=>{s(!0);let{data:t}=await c({body:{searchTerm:e??null}});l((null==t?void 0:t.items)===void 0||null===t.items?[]:(Array.isArray(t.items)?t.items:Object.values(t.items)).map(e=>({...e,rowId:e.id}))),s(!1)};(0,tG.useEffect)(()=>{(0,tI.isUndefined)(f)||(0,iX.Ay)(new iX.hD(f))},[f]),(0,tG.useEffect)(()=>{u()},[]);let m=e=>{u(e.length>0?e:void 0)},p=[...a].sort((e,t)=>t.creationDate-e.creationDate),g=!o&&0===a.length,h=async()=>{if(a.some(e=>"New Definition"===e.name&&(e.language??null)===null&&(e.targetSubType??null)===null))return void i();let{success:t,data:n,errorKey:r}=await e();t&&void 0!==n?l(e=>[{...n,rowId:(0,af.uuid)()},...e]):"error_invalid_argument"===r&&i()};return(0,tq.jsxs)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsx)(lp.K,{disabled:o,icon:{value:"refresh"},onClick:()=>{var e;let t=null==(e=d.current)?void 0:e.input;(0,tI.isNil)(t)||(t.value=""),u()}}),(0,tq.jsx)(ni.IconTextButton,{disabled:o||t,icon:{value:"new"},loading:t,onClick:h,children:(0,i6.t)("predefined-asset-metadata.new")})]}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.predefined-asset-metadata")}),(0,tq.jsx)(ni.SearchInput,{loading:o,onClear:()=>{m("")},onSearch:m,placeholder:"Search",ref:d,withPrefix:!1,withoutAddon:!1})]}),children:[(0,tq.jsx)(uE.U,{loading:o,margin:{x:"extra-small",y:"none"},none:g,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(EN,{predefinedAssetMetadataRows:p,setPredefinedAssetMetadataRows:l})})}),(0,tq.jsxs)(r,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(ig.Button,{onClick:n,type:"primary",children:(0,i6.t)("button.ok")})}),title:(0,i6.t)("predefined-asset-metadata.duplicate-entry.title"),children:[(0,tq.jsx)("p",{children:(0,i6.t)("predefined-asset-metadata.duplicate-entry.error")}),(0,tq.jsxs)("div",{style:{marginTop:8},children:[(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[(0,i6.t)("predefined-asset-metadata.columns.name"),":"]})," New Definition"]}),(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[(0,i6.t)("predefined-asset-metadata.columns.language"),":"]})," —"]})]})]})]})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"AssetManagement/Predefined Asset Metadata",label:"navigation.predefined-asset-metadata",order:102,className:"item-style-modifier",permission:pw.F.AssetMetadata,perspectivePermission:pk.d.PredefinedAssetMetadata,widgetConfig:{name:"Predefined Asset Metadata",id:"predefined-asset-metadata",component:"predefined-asset-metadata",config:{translationKey:"widget.predefined-asset-metadata",icon:{type:"name",value:"custom-metadata"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"predefined-asset-metadata",component:ER})}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DynamicTypes/IconSetRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/IconSet/PimcoreDefault"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/IconSet/Twemoji"]))}});var EV=i(75401);ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"System/About",label:"navigation.about",className:"item-style-modifier",order:9999,perspectivePermission:pk.d.About,useCustomMainNavItem:()=>{let{open:e}=(0,EV.c)();return{name:"SystemAbout",onClick:e}}})}});let Ez=e=>{let{hideCredentialsForm:t=!1}=e,{t:i}=(0,iQ.useTranslation)(),n=(0,CC.e)().getSlotComponents(yl.e.form.login.name).length>1;return t||!n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(m1.c,{plain:!0,children:i("login-form-additional-logins.or")})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]).registerToSlot(tu.eb.form.login.name,{name:"loginFormDivider",priority:0,component:Ez})}});var EB=i(24184),EO=i(35235),EK=i(86970);let E_=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),{data:r,isLoading:a,error:l}=(0,cV.useClassDefinitionGetIdentifierDataQuery)(),[o]=(0,cV.useClassDefinitionCreateMutation)(),{openConfiguration:s}=(0,EO.wB)();return(0,tG.useEffect)(()=>{void 0!==l&&(0,uj.trackError)(new uj.ApiError(l))},[l]),(0,tG.useEffect)(()=>{(null==r?void 0:r.suggestedId)!==void 0&&t.setFieldValue("uniqueIdentifier",r.suggestedId)},[null==r?void 0:r.suggestedId]),(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("class-definition.create-new"),children:(0,tq.jsx)(ni.Content,{loading:a,children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{void 0!==r&&o({createClassDefinition:{name:e.className,uid:e.uniqueIdentifier}}).then(e=>{t.resetFields(),i(),s({id:e.data.id,name:e.data.name,group:e.data.group,icon:e.data.icon})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("class-definition.class-name"),name:"className",rules:[{required:!0,message:e("class-definition.validation.enter-class-name")},{pattern:/^[A-Za-z][A-Za-z0-9_]*$/,message:e("class-definition.validation.class-name-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)(ni.Form.Item,{initialValue:null==r?void 0:r.suggestedId,label:e("class-definition.unique-identifier"),name:"uniqueIdentifier",rules:[{required:!0,message:e("class-definition.validation.enter-unique-identifier")},{validator:async(t,i)=>{if((null==r?void 0:r.existingIds.includes(i.toLowerCase()))===!0)return await Promise.reject(Error(e("class-definition.validation.unique-identifier-in-use")));await Promise.resolve()}},{pattern:/^[a-zA-Z0-9_]{0,63}$/,message:e("class-definition.validation.unique-identifier-format")}],children:(0,tq.jsx)(ni.Input,{maxLength:64})}),(0,tq.jsx)(n5.E,{type:"secondary",children:e("class-definition.unique-identifier-warning")}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})})},EH=(0,cH.createColumnHelper)(),E$=e=>{let{classId:t}=e,{data:i,isLoading:n}=(0,fk.hp)({id:t}),r=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[EH.accessor("key",{header:e("object-brick-key"),size:200}),EH.accessor("fieldName",{header:e("field-name"),size:200})],[e])})();return n?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:r,data:(null==i?void 0:i.items)??[],enableMultipleRowSelection:!1,resizable:!1})};var EW=i(89966),Eq=i(59438);let EG=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,EW.g)(),i=(0,tG.useMemo)(()=>(0,tI.isNil)(null==t?void 0:t.fieldDefinitions)?[]:Object.values(t.fieldDefinitions).filter(e=>"data"===e.datatype&&(0,tI.isString)(e.name)&&e.name.trim().length>0).map(e=>({label:e.title??e.name,value:e.name})).sort((e,t)=>e.label.localeCompare(t.label)),[null==t?void 0:t.fieldDefinitions]);return(0,tq.jsx)(tJ.lV.Item,{name:"compositeIndices",children:(0,tq.jsxs)(Eq.e,{getItemTitle:(t,i)=>(null==t?void 0:t.index_key)??`${e("class-definition.composite-indices.index-label")} ${i+1}`,title:e("class-definition.composite-indices.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.index-name"),name:"index_key",children:(0,tq.jsx)(aR.p,{placeholder:e("class-definition.composite-indices.enter-index-name")})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.type"),name:"index_type",children:(0,tq.jsx)(t8.l,{options:[{label:e("class-definition.composite-indices.type-query"),value:"query"},{label:e("class-definition.composite-indices.type-localized-query"),value:"localized_query"},{label:e("class-definition.composite-indices.type-store"),value:"store"},{label:e("class-definition.composite-indices.type-localized-store"),value:"localized_store"}],placeholder:e("class-definition.composite-indices.select-index-type")})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.columns"),name:"index_columns",children:(0,tq.jsx)(t8.l,{mode:"tags",options:i,placeholder:e("class-definition.composite-indices.select-column-names")})})]})})},EU=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance(),i=tJ.lV.useWatch("name",t),n=t.getFieldValue("id");return(0,tG.useEffect)(()=>{if((0,tI.isString)(i)){let e="Pimcore\\Model\\DataObject\\"+(0,tI.upperFirst)(i);t.getFieldValue("phpClassName")!==e&&t.setFieldValue("phpClassName",e,{triggerChange:!0})}},[i]),(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("class-definition.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("name"),name:"name",rules:[{required:!0,message:e("class-definition.general-settings.enter-name")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.description"),name:"description",children:(0,tq.jsx)(n4.f,{rows:3})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.id"),name:"id",children:(0,tq.jsx)(aR.p,{disabled:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.php-class-name"),name:"phpClassName",children:(0,tq.jsx)(aR.p,{disabled:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.icon"),name:"icon",children:(0,tq.jsx)(Lv.N,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.listing-parent-class"),name:"listingParentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.use-traits"),name:"useTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.listing-use-traits"),name:"listingUseTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.link-generator-reference"),name:"linkGeneratorReference",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.preview-generator-reference"),name:"previewGeneratorReference",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{name:"allowInherit",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.allow-inherit")})}),(0,tq.jsx)(tJ.lV.Item,{name:"allowVariants",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.allow-variants")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showVariants",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-variants")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showAppLoggerTab",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-app-logger-tab")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showFieldLookup",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-field-lookup")})}),(0,tq.jsx)(tJ.lV.Item,{name:"enableGridLocking",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.enable-grid-locking")})}),(0,tq.jsx)(tJ.lV.Item,{name:"encryption",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.encrypt-data")})})]}),(0,tq.jsxs)(ni.FormKit.Panel,{title:e("class-definition.property-visibility.title"),children:[(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","id"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.id-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","id"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.id-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","key"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.key-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","key"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.key-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","path"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.path-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","path"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.path-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","modificationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.modification-date-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","modificationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.modification-date-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","creationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.creation-date-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","creationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.creation-date-search")})})]}),(0,tq.jsx)(EG,{}),!(0,tI.isNil)(n)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("class-definition.object-bricks.title"),children:(0,tq.jsx)(E$,{classId:n})})]}),[])};var EQ=i(23004);let EJ=e=>{let[t,i]=(0,EQ.lr)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>{var e;return t({id:r.id,classDefinitionUpdate:{configuration:{children:n().children??[]},values:{...r,icon:(null==(e=r.icon)?void 0:e.value)??""}}})},i]};var EZ=i(54436);let EY=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),{configuration:r}=(0,EZ.R6)(),{data:a,isLoading:l,error:o}=(0,cV.useClassCustomLayoutGetIdentifierDataQuery)({classDefinitionId:r.id}),[s]=(0,cV.useClassCustomLayoutCreateMutation)(),{openConfiguration:d}=(0,EO.wB)();return(0,tG.useEffect)(()=>{void 0!==o&&(0,uj.trackError)(new uj.ApiError(o))},[o]),(0,tG.useEffect)(()=>{(null==a?void 0:a.suggestedId)!==void 0&&t.setFieldValue("uniqueIdentifier",a.suggestedId)},[null==a?void 0:a.suggestedId]),(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("field-definitions.create-new-class-definition"),children:(0,tq.jsx)(ni.Content,{loading:l,children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{void 0!==a&&s({customLayoutId:e.uniqueIdentifier,customLayoutNew:{classId:r.id,name:e.name}}).then(e=>{t.resetFields(),i(),d({id:e.data.id,name:e.data.name,group:e.data.group,icon:e.data.icon})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("name"),name:"name",rules:[{required:!0,message:e("field-definitions.validation.enter-class-name")},{pattern:/^[-A-Za-z0-9_]*$/,message:e("field-definitions.validation.class-name-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)(ni.Form.Item,{initialValue:null==a?void 0:a.suggestedId,label:e("field-definitions.validation.unique-identifier"),name:"uniqueIdentifier",rules:[{required:!0,message:e("field-definitions.validation.enter-unique-identifier")},{validator:async(t,i)=>{if((null==a?void 0:a.existingIds.includes(i.toLowerCase()))===!0)return await Promise.reject(Error(e("field-definitions.validation.unique-identifier-in-use")));await Promise.resolve()}},{pattern:/^[-a-zA-Z0-9_]{0,63}$/,message:e("field-definitions.validation.unique-identifier-format")}],children:(0,tq.jsx)(ni.Input,{maxLength:64})}),(0,tq.jsx)(n5.E,{type:"secondary",children:e("class-definition.unique-identifier-warning")}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})})},EX=()=>{let{generalSettings:e}=(0,f$.dq)(),{t}=(0,iQ.useTranslation)();return(0,tI.isNil)(e)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(ni.FormKit.Panel,{title:t("general"),children:[(0,tq.jsx)(ig.Form.Item,{label:t("name"),name:"name",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("class-definition.custom-layouts.default-layout"),name:"default_layout",valuePropName:"checked",children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("description"),name:"description",children:(0,tq.jsx)(ni.TextArea,{rows:3})})]})},E0=()=>({accessor:e=>e.layoutDefinition??void 0}),E1=()=>{let{configuration:e}=(0,EZ.R6)();return(0,cV.useClassCustomLayoutCollectionQuery)({classIds:e.id})},E2=e=>(0,cV.useClassCustomLayoutGetQuery)({customLayoutId:e.id});var E3=i(13604),E6=i(25277);let{LayoutProvider:E4,useLayout:E5}=(0,E6.v)(),E7=e=>{let{fieldDefinitionRegistry:t}=(0,E3.t0)();return(0,tq.jsx)(E4,{...e,fieldDefinitionRegistry:t})},E8=e=>{let[t,i]=(0,EQ.Zz)(e),{getLayout:n}=E5(),{generalSettings:r}=(0,f$.dq)();return[()=>t({customLayoutId:String(r.id),customLayoutUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},E9=e=>{let[t,i]=(0,EQ.Zq)(e);return[e=>t({customLayoutId:String(e.id)}),i]};var Pe=i(11182),Pt=i(38939);let Pi=()=>{var e,t,i,n;let{configuration:r}=(0,EZ.R6)(),a=(0,E3.t0)(),l=null==(t=a.customLayouts)||null==(e=t.parent)?void 0:e.area,o=null==(n=a.customLayouts)||null==(i=n.parent)?void 0:i.useLayout,{fieldDefinitionRegistry:s}=a;if(void 0===o)throw Error("Custom Layout Parent: useLayout is not defined in editor settings");if(void 0===l)throw Error("Custom Layout Parent: area is not defined in editor settings");let{structure:d,fieldDefinitions:c,getLayout:f}=o(),u=(0,tG.useMemo)(()=>(e,t)=>{var i;let n=c[e.key];if(void 0===n)return t;let r={type:"field-definition",icon:n.icon??{value:"folder"},title:n.title??n.name??e.title,data:{area:l,internal:{id:e.key,fieldDefinition:n,path:(null==(i=e.meta)?void 0:i.currentPath)??[]},external:f({startNode:e.key.toString()})}};return(0,tq.jsx)(ni.Draggable,{info:r,children:t})},[c,l,f]),m=tU().useMemo(()=>void 0===d?[]:[(0,Pt.buildTree)({structure:d,fieldDefinitions:c,registry:s,itemCallback:e=>{let{fieldDefinition:t,initialTreeItem:i}=e;return{...i,className:"ant-tree-node--has-drag-and-drop"}}}).children].flat(),[d,c]);return(0,tq.jsxs)(ni.Content,{padded:!0,padding:{y:"small",x:"mini"},children:[(0,tq.jsx)(ni.Header,{style:{flexShrink:0},title:r.name}),(0,tq.jsx)(ni.Content,{overflow:{x:"hidden",y:"auto"},style:{minHeight:0,flex:1},children:(0,tq.jsx)(ni.TreeElement,{defaultExpandAll:!0,titleRender:u,treeData:m})})]})};var Pn=i(28587),Pr=i(4839);let Pa=e=>"application/json"===e.type||e.name.endsWith(".json"),Pl=()=>{let{t:e}=(0,iQ.useTranslation)(),{useDetailLayoutQuery:t,useDetailGeneralSettingsQuery:i,importExportConfig:n,useItemsDeleteMutation:r}=(0,E3.t0)(),{activeConfiguration:a,closeConfiguration:l}=(0,EO.wB)(),o=(0,ni.useMessage)(),s=(0,ni.useFormModal)(),[d,c]=(0,tG.useState)(!1),f=void 0!==r,[u,m]=(r??(()=>[async()=>{},{}]))(),p=!!f&&!0===m.isLoading,g=null==a?void 0:a.id,h=null==t?void 0:t({id:g??""}),y=i({id:g??""});if((0,tI.isNil)(n))return(0,tq.jsx)(tq.Fragment,{});let{getExportUrl:v,getImportUrl:b,validateFile:x=Pa,acceptFileTypes:j=".json,application/json",acceptMimeTypes:w=["application/json"],successMessageKey:k="class-definition.import-success"}=n,T=(0,tI.isNil)(g)?"":b(g);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.ButtonGroup,{items:[(0,tq.jsx)(ni.IconButton,{icon:{value:"export"},onClick:()=>{if((0,tI.isNil)(g))return;let e=document.createElement("a");e.href=v(g),e.style.display="none",document.body.appendChild(e),e.click(),document.body.removeChild(e)},title:e("export"),type:"link"},"export"),(0,tq.jsx)(ni.IconButton,{icon:{value:"upload-import"},onClick:()=>{c(!0)},title:e("import"),type:"link"},"import"),...f?[(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:p,onClick:()=>{(0,tI.isNil)(g)||(0,tI.isNil)(a)||s.confirm({title:e("delete"),content:e("custom-layout.delete.confirmation"),okText:e("delete"),onOk:async()=>{try{await u({id:g}),l(a),o.success(e("custom-layout.delete.success"))}catch(e){(0,iX.Ay)(new iX.hD(e))}}})},title:e("delete"),type:"link"},"delete")]:[]]}),(0,tq.jsx)(Pr.z,{accept:j,acceptMimeTypes:w,action:T,onOpenChange:c,onUploadSuccess:()=>{o.success(e(k)),c(!1),null==h||h.refetch(),null==y||y.refetch()},open:d,title:e("class-definition.import"),uploadButtonLabel:e("import"),validateFile:x})]})};var Po=i(33627),Ps=i(11498);let Pd=()=>{let{activeConfiguration:e,setDetailView:t}=(0,EO.wB)(),{useDetailGeneralSettingsQuery:i,useDetailLayoutQuery:n,useDetailLayoutAccessor:r,customLayouts:a,LayoutProvider:l}=(0,E3.t0)(),o=null==n?void 0:n({id:e.id}),s=null==o?void 0:o.error,d=(0,tG.useMemo)(()=>null==r?void 0:r(),[r]),c=i({id:e.id}),{isLoading:f,isFetching:u,refetch:m,data:p}=c,g=c.error,[h,y]=(0,tG.useState)(null==o?void 0:o.data),[v,b]=(0,tG.useState)(0);return(0,tG.useEffect)(()=>{y(null==o?void 0:o.data)},[null==o?void 0:o.data]),(0,tG.useEffect)(()=>{if(void 0!==d&&void 0!==p){let e=d.accessor(p);if(void 0===e)return void y({name:"pimcore_root",children:[],fieldtype:"panel",bodyStyle:"",border:!1,collapsible:!1,title:"",datatype:"layout",collapsed:!1,height:0,width:0,icon:{type:"name",value:"none"},labelAlign:"left",labelWidth:100,layout:null,locked:!1,region:"",type:"layout",additionalAttributes:{}});y(e)}},[p,d]),(0,tG.useEffect)(()=>{void 0!==s&&"status"in s&&404===s.status?y({name:"pimcore_root",children:[],fieldtype:"panel",bodyStyle:"",border:!1,collapsible:!1,title:"",datatype:"layout",collapsed:!1,height:0,width:0,icon:{type:"name",value:"none"},labelAlign:"left",labelWidth:100,layout:null,locked:!1,region:"",type:"layout",additionalAttributes:{}}):void 0!==s&&(0,uj.trackError)(new uj.ApiError(s))},[s]),(0,tG.useEffect)(()=>{void 0!==g&&(0,uj.trackError)(new uj.ApiError(g))},[g]),(0,tq.jsx)(f$.Ts,{generalSettings:p,children:(0,tq.jsx)(l,{layout:h,children:(0,tq.jsx)(ni.ContentLayout,{className:"absolute-stretch",renderToolbar:(0,tq.jsxs)(ni.Toolbar,{justify:"space-between",padding:{x:"none"},theme:"secondary",children:[(0,tq.jsx)(Pl,{}),(0,tq.jsxs)(ni.Flex,{gap:"mini",children:[(0,tq.jsxs)(ni.Flex,{gap:"mini",children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"refresh"},onClick:()=>{null==o||o.refetch(),m(),b(e=>e+1),t("general")}}),(null==a?void 0:a.ModalContent)!==void 0&&(0,tq.jsx)(Pe.q,{})]}),(0,tq.jsx)(Po.x,{})]})]}),children:(0,tq.jsx)(ni.Content,{loading:(null==o?void 0:o.isLoading)===!0||f||(null==o?void 0:o.isFetching)===!0||u,children:(0,tq.jsx)(ni.ConfigLayout,{leftItem:{minSize:250,maxSize:350,size:250,children:(0,tq.jsx)(Pi,{})},resizeAble:!0,rightItem:{children:(0,tq.jsx)(ni.ConfigLayout,{leftItem:{minSize:250,maxSize:350,size:250,children:(0,tq.jsx)(Ps.C,{allowExternalDrop:!0})},resizeAble:!0,rightItem:{children:(0,tq.jsx)(Pn.R,{})}})}})})})},v)})},Pc=()=>{let{activeConfiguration:e}=(0,EO.wB)();return void 0===e?(0,tq.jsx)(ni.Content,{centered:!0,children:"Create a new Custom Layout or edit an existing one"}):(0,tq.jsx)(Pd,{},String(e.id))},Pf=()=>{let{openModal:e}=(0,EK.Ux)(),{AddModal:t}=(0,E3.t0)();return void 0===t?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.IconTextButton,{icon:{value:"new-something"},onClick:e,children:"New layout"})},Pu=()=>{var e;let{t}=(0,iQ.useTranslation)(),{useItemsQuery:i}=(0,E3.t0)(),{isLoading:n,data:r}=i(),{setActiveConfiguration:a,activeConfiguration:l}=(0,EO.wB)(),o=tU().useMemo(()=>void 0===r?[]:r.items.map(e=>({key:e.id,label:e.name,onClick:()=>{a(e)}})),[r,a]);return(0,tq.jsx)(tq.Fragment,{children:n||void 0===r||(null==r||null==(e=r.items)?void 0:e.length)===0?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.Dropdown,{menu:{items:o},children:(0,tq.jsx)(ni.IconTextButton,{icon:{value:"edit"},children:void 0!==l?l.name:t("field-definitions.select-item-configuration")})})})},Pm=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsx)(ni.Toolbar,{padding:{x:"none"},position:"content",theme:"secondary",children:(0,tq.jsx)(ni.Header,{title:e("field-definitions.custom-layout-title"),children:(0,tq.jsxs)(ni.Split,{children:[(0,tq.jsx)(Pf,{}),(0,tq.jsx)(Pu,{})]})})})};var Pp=i(69933);let Pg=()=>(0,tq.jsx)(EK.e,{children:(0,tq.jsx)(ni.ContentLayout,{renderTopBar:(0,tq.jsx)(Pm,{}),children:(0,tq.jsxs)(ni.Content,{style:{height:"60vh"},children:[(0,tq.jsx)(Pp.A,{}),(0,tq.jsx)(Pc,{})]})})}),Ph={getExportUrl:e=>`${(0,tD.$)()}/class/custom-layout/export/${e}`,getImportUrl:e=>`${(0,tD.$)()}/class/custom-layout/import/${e}`,successMessageKey:"custom-layout.import-success"},Py=()=>(0,tq.jsx)(EB.K,{AddModal:EY,GeneralSettingsFormFields:EX,LayoutProvider:E7,area:["class","custom-layout"],customLayouts:{parent:{area:["class"],useLayout:EW.g}},importExportConfig:Ph,useDetailGeneralSettingsQuery:E2,useDetailLayoutAccessor:E0,useDetailUpdateMutation:E8,useItemsDeleteMutation:E9,useItemsQuery:E1,useLayout:E5,view:(0,tq.jsx)(Pg,{})}),Pv={getExportUrl:e=>`${(0,tD.$)()}/class/definition/configuration-view/detail/${e}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/definition/configuration-view/detail/${e}/import`},Pb=()=>(0,tq.jsx)(EB.K,{AddModal:E_,GeneralSettingsFormFields:EU,area:["class"],customLayouts:{ModalContent:(0,tq.jsx)(Py,{})},importExportConfig:Pv,useDetailGeneralSettingsQuery:fk.tc,useDetailLayoutQuery:fk.PA,useDetailUpdateMutation:EJ,useItemsDeleteMutation:fk.zB,useItemsQuery:fk.HE});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/ClassDefinitions",label:"navigation.class-definitions",className:"class",order:100,permission:pw.F.Classes,perspectivePermission:pk.d.ClassDefinitions,widgetConfig:{name:"classes",id:"class-definitions",component:"class-definitions",config:{translationKey:"widget.class-definitions",icon:{type:"name",value:"class"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"class-definitions",component:Pb})}});var Px=i(97264);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/BulkExport",label:"navigation.bulk-export",order:700,permission:MX.UserPermission.Classes,perspectivePermission:I8.NavPermission.BulkExport,useCustomMainNavItem:()=>{let{open:e}=(0,Px.$)();return{name:"DataModelDefinitionsBulkExport",onClick:e}}})}});var Pj=i(18087);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/BulkImport",label:"navigation.bulk-import",order:800,permission:MX.UserPermission.Classes,perspectivePermission:I8.NavPermission.BulkImport,useCustomMainNavItem:()=>{let{open:e}=(0,Pj.G)();return{name:"DataModelDefinitionsBulkImport",onClick:e}}})}});let Pw=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),[r]=(0,fk.XA)(),{openConfiguration:a}=(0,EO.wB)();return(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("field-collection.create-new"),children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{t.resetFields(),r({createFieldCollection:{key:e.key}}).then(e=>{i(),a({id:e.data.key,name:e.data.title??e.data.key})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("field-collection.key"),name:"key",rules:[{required:!0,message:e("field-collection.validation.enter-key")},{pattern:/^[A-Za-z][A-Za-z0-9_]*$/,message:e("field-collection.validation.key-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})},Pk=(0,cH.createColumnHelper)(),PT=e=>{let{collectionKey:t}=e,{data:i,isLoading:n}=(0,fk.sD)({key:t}),r=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[Pk.accessor("class",{header:e("field-collection.general-settings.usages.class"),size:200}),Pk.accessor("field",{header:e("field-collection.general-settings.usages.field"),size:200})],[e])})();return n?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:r,data:(null==i?void 0:i.items)??[],enableMultipleRowSelection:!1,resizable:!1})},PS=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance().getFieldValue("id");return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("field-collection.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.title-label"),name:"title",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})})]}),!(0,tI.isNil)(t)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("field-collection.general-settings.usages.title"),children:(0,tq.jsx)(PT,{collectionKey:t})})]}),[t])},PC=e=>{let[t,i]=(0,fk.M0)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>t({key:null==r?void 0:r.id,fieldCollectionUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},PD=e=>{let t=String(e.id),i=(0,fk.cj)({key:t});return void 0!==i.data?{...i,data:{...i.data,id:i.data.key}}:i},PI=e=>{let t=String(e.id);return(0,fk.AY)({key:t})},PM=()=>{let e=(0,fk.kJ)({}),t=(0,tG.useMemo)(()=>{if(void 0===e.data||!("items"in e.data))return;let t=[];for(let r of e.data.items){var i,n;if("children"in r)for(let e of r.children)t.push({id:e.key,name:e.name,group:e.group??void 0,icon:{value:(null==(i=e.icon)?void 0:i.value)!==void 0&&""!==e.icon.value?e.icon.value:"field-collection-field"}});else t.push({id:r.key,name:r.name,group:r.group??void 0,icon:{value:(null==(n=r.icon)?void 0:n.value)!==void 0&&""!==r.icon.value?r.icon.value:"field-collection-field"}})}return{...e.data,items:t}},[e.data]);return void 0!==t?{...e,data:t}:e},PL=function(){for(var e=arguments.length,t=Array(e),i=0;in({key:String(e.id)}),r]},PF={getExportUrl:e=>`${(0,tD.$)()}/class/field-collection/${String(e)}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/field-collection/${String(e)}/import`},PE=()=>(0,tq.jsx)(EB.K,{AddModal:Pw,GeneralSettingsFormFields:PS,area:["fieldcollection"],importExportConfig:PF,useDetailGeneralSettingsQuery:PD,useDetailLayoutQuery:PI,useDetailUpdateMutation:PC,useItemsDeleteMutation:PL,useItemsQuery:PM});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/FieldCollections",label:"navigation.field-collections",className:"fieldcollection",order:200,permission:pw.F.FieldCollections,perspectivePermission:pk.d.FieldCollections,widgetConfig:{name:"field-collections",id:"field-collections",component:"field-collections",config:{translationKey:"widget.field-collections",icon:{type:"name",value:"field-collection-field"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"field-collections",component:PE})}});let PP=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),[r]=(0,fk.ll)(),{openConfiguration:a}=(0,EO.wB)();return(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("object-brick.create-new"),children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{t.resetFields(),r({createObjectBrick:{key:e.key}}).then(e=>{i(),a({id:e.data.key,name:e.data.title??e.data.key})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("object-brick.key"),name:"key",rules:[{required:!0,message:e("object-brick.validation.enter-key")},{pattern:/^[a-zA-Z]\w*$/,message:e("object-brick.validation.key-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})};var PA=i(8320);let PN=e=>{let{blockIndex:t,value:i,onChange:n}=e,{t:r}=(0,iQ.useTranslation)(),{operations:a}=(0,PA.S)(),l=a.getValue(["classDefinitions",t,"classname"]),o=(0,tG.useRef)(l);(0,tG.useEffect)(()=>{void 0!==o.current&&o.current!==l&&(null==n||n(null)),o.current=l},[l]);let{data:s,isFetching:d}=(0,fk.hp)({id:l},{skip:void 0===l||""===l}),c=(0,tG.useMemo)(()=>{if((null==s?void 0:s.items)===void 0)return[];let e=new Set;return s.items.reduce((t,i)=>(e.has(i.fieldName)||(e.add(i.fieldName),t.push({label:i.fieldName,value:i.fieldName})),t),[])},[s]);return(0,tq.jsx)(t8.l,{disabled:void 0===l||""===l,loadingSkeleton:d,onChange:n,options:c,placeholder:r("object-brick.class-definitions-block.select-fieldname"),value:i})},PR=()=>{let{t:e}=(0,iQ.useTranslation)(),{data:t,isFetching:i}=(0,fk.qA)(),n=(0,tG.useMemo)(()=>(null==t?void 0:t.items)===void 0?[]:t.items.map(e=>({label:e.name,value:e.id})),[t]),r=(0,tG.useMemo)(()=>{var e;let i={};return null==t||null==(e=t.items)||e.forEach(e=>{i[e.id]=e.name}),i},[t]);return(0,tq.jsx)(tJ.lV.Item,{name:"classDefinitions",children:(0,tq.jsx)(Eq.e,{getItemTitle:t=>(null==t?void 0:t.classname)!==void 0?r[t.classname]??t.classname:e("object-brick.class-definitions-block.new-entry"),title:e("object-brick.class-definitions-block.title"),children:t=>{let{blockIndex:r}=t;return(0,tq.jsxs)(ni.FormKit.Panel,{children:[(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.class-definitions-block.classname"),name:"classname",children:(0,tq.jsx)(t8.l,{loadingSkeleton:i,options:n,placeholder:e("object-brick.class-definitions-block.select-classname"),showSearch:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.class-definitions-block.fieldname"),name:"fieldname",children:(0,tq.jsx)(PN,{blockIndex:r})})]})}})})},PV=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("object-brick.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.title-label"),name:"title",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})})]}),(0,tq.jsx)(PR,{})]}),[])},Pz=e=>{let[t,i]=(0,fk.q9)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>t({key:null==r?void 0:r.id,objectBrickUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},PB=()=>{let{generalSettings:e}=(0,f$.dq)(),{t}=(0,iQ.useTranslation)();return(0,tI.isNil)(e)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(ni.FormKit.Panel,{title:t("general"),children:[(0,tq.jsx)(ig.Form.Item,{label:t("name"),name:"name",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("class-definition.custom-layouts.default-layout"),name:"default",valuePropName:"checked",children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("description"),name:"description",children:(0,tq.jsx)(ni.TextArea,{rows:3})})]})},PO=()=>({accessor:e=>e.layoutDefinition??void 0}),PK=()=>{let{data:e}=(0,cV.useClassObjectBrickClassesQuery)(),t=null==e?void 0:e.items.map(e=>e.id).join(",");return(0,cV.useClassCustomLayoutCollectionQuery)({classIds:t},{skip:void 0===t})},P_=e=>{let{configuration:t}=(0,EZ.R6)(),i=String((null==t?void 0:t.id)??""),n=String((null==e?void 0:e.id)??""),r=(0,cV.useClassObjectBrickCustomLayoutGetQuery)({key:i,customLayoutId:n},{skip:""===i||""===n});return void 0!==r.error&&"status"in r.error&&404===r.error.status?{...r,error:void 0,isError:!1,data:{id:n,name:"",description:"",creationDate:0,modificationDate:0,userOwner:0,classId:"",default:!1,layoutDefinition:null}}:r},{LayoutProvider:PH,useLayout:P$}=(0,E6.v)(),PW=e=>{let{fieldDefinitionRegistry:t}=(0,E3.t0)();return(0,tq.jsx)(PH,{...e,fieldDefinitionRegistry:t})},Pq=e=>{let[t,i]=(0,cV.useClassObjectBrickCustomLayoutUpdateMutation)(e),{getLayout:n}=P$(),{generalSettings:r}=(0,f$.dq)(),{configuration:a}=(0,EZ.R6)(),{activeConfiguration:l}=(0,EO.wB)(),o=String((null==a?void 0:a.id)??""),s=String((null==l?void 0:l.id)??"");return[()=>t({key:o,customLayoutId:s,customLayoutUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},{LayoutProvider:PG,useLayout:PU}=(0,E6.v)(),PQ=()=>{let{configuration:e}=(0,EZ.R6)(),t=String((null==e?void 0:e.id)??""),i=(0,tG.useMemo)(()=>({getExportUrl:e=>`${(0,tD.$)()}/class/object-brick/${t}/custom-layout/${e}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/object-brick/${t}/custom-layout/${e}/import`,successMessageKey:"custom-layout.import-success"}),[t]);return(0,tq.jsx)(EB.K,{GeneralSettingsFormFields:PB,LayoutProvider:PW,area:["objectbrick","custom-layout"],customLayouts:{parent:{area:["objectbrick"],useLayout:PU}},importExportConfig:i,useDetailGeneralSettingsQuery:P_,useDetailLayoutAccessor:PO,useDetailUpdateMutation:Pq,useItemsQuery:PK,useLayout:P$,view:(0,tq.jsx)(Pg,{})})},PJ=e=>{let t=String(e.id),i=(0,fk.Ss)({key:t});return void 0!==i.data?{...i,data:{...i.data,id:i.data.key}}:i},PZ=e=>{let t=String(e.id);return(0,fk.Io)({key:t})},PY=()=>{let e=(0,fk.eK)(),t=(0,tG.useMemo)(()=>{if(void 0===e.data||!("items"in e.data))return;let t=[];for(let r of e.data.items){var i,n;if("children"in r)for(let e of r.children)t.push({id:e.key,name:e.name,group:e.group??void 0,icon:{value:(null==(i=e.icon)?void 0:i.value)!==void 0&&""!==e.icon.value?e.icon.value:"object-bricks"}});else t.push({id:r.key,name:r.name,group:r.group??void 0,icon:{value:(null==(n=r.icon)?void 0:n.value)!==void 0&&""!==r.icon.value?r.icon.value:"object-bricks"}})}return{...e.data,items:t}},[e.data]);return void 0!==t?{...e,data:t}:e},PX=function(){for(var e=arguments.length,t=Array(e),i=0;in({key:String(e.id)}),r]},P0={getExportUrl:e=>`${(0,tD.$)()}/class/object-brick/${String(e)}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/object-brick/${String(e)}/import`},P1=e=>{let{children:t,...i}=e,{fieldDefinitionRegistry:n}=(0,E3.t0)();return(0,tq.jsx)(EW.U,{...i,children:(0,tq.jsx)(PG,{...i,fieldDefinitionRegistry:n,children:t})})},P2=()=>(0,tq.jsx)(EB.K,{AddModal:PP,GeneralSettingsFormFields:PV,LayoutProvider:P1,area:["objectbrick"],customLayouts:{ModalContent:(0,tq.jsx)(PQ,{})},importExportConfig:P0,useDetailGeneralSettingsQuery:PJ,useDetailLayoutQuery:PZ,useDetailUpdateMutation:Pz,useItemsDeleteMutation:PX,useItemsQuery:PY});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/ObjectBricks",label:"navigation.object-bricks",className:"objectbrick",order:300,permission:pw.F.ObjectBricks,perspectivePermission:pk.d.ObjectBricks,widgetConfig:{name:"object-bricks",id:"object-bricks",component:"object-bricks",config:{translationKey:"widget.object-bricks",icon:{type:"name",value:"object-bricks"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"object-bricks",component:P2})}});let P3=()=>{let e=(0,uk.jL)(),t=(0,aB.Vl)(),{t:i}=(0,iQ.useTranslation)(),{success:n}=(0,uI.J)(),[r,{isLoading:a}]=(0,fk.KB)(),[l,{isLoading:o}]=(0,fk.v2)(),[s,{isLoading:d}]=(0,fk.Lv)(),c=async(e,t)=>{let a=r({createSelectOption:{id:e}});try{let r=await a;void 0!==r.error&&(0,iX.Ay)(new iX.hD(r.error)),null==t||t(e),n(i("select-option.create.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to create new select option."))}},f=async(t,r)=>{let a=s({id:t});try{let t=await a;if(!(0,tI.isUndefined)(t.error))return void(0,iX.Ay)(new iX.hD(t.error));e(fk.FH.util.invalidateTags(uT.qN.SELECT_OPTION_COLLECTION())),null==r||r(),n(i("select-option.delete.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to delete select option"))}};return{createSelectOption:e=>{t.input({title:i("select-option.create-new"),label:i("select-option.enter-name-new-item"),rule:{required:!0,pattern:/^[A-Z][a-zA-Z0-9]*$/,message:i("select-option.validation.id-format")},onOk:async t=>{await c(t,()=>{null==e||e(t)})}})},getSelectOptionById:async t=>{try{let{data:i,isError:n,error:r}=await e(fk.FH.endpoints.classSelectOptionGet.initiate({id:t},{forceRefetch:!0}));if(!(0,tI.isUndefined)(i)&&n)return void(0,iX.Ay)(new iX.hD(r));return i}catch{(0,iX.Ay)(new iX.$g('Failed to load select option data of "'+t+'".'))}},updateSelectOption:async(e,t,r)=>{let a=l({id:e,updateSelectOption:t});try{let e=await a;if(void 0!==e.error)return void(0,iX.Ay)(new iX.hD(e.error));null==r||r(),n(i("select-option.update.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to update select option."))}},removeWithConfirmation:(e,n)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,tq.jsx)("span",{children:i("element.delete.confirmation.text")}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await f(e,()=>{null==n||n()})}})},isLoading:a||o||d}},P6=(0,tG.createContext)(void 0),P4=e=>{let{children:t}=e,[i,n]=(0,tG.useState)(void 0),[r,a]=(0,tG.useState)([]),{getSelectOptionById:l}=P3(),o=async e=>{let t=await l(e);(0,tI.isNil)(t)||a(e=>e.findIndex(e=>e.id===t.id)>=0?(n(t.id),e):(n(t.id),[...e,t]))},s=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},d=(0,tG.useMemo)(()=>({activeTabId:i,setActiveTabId:n,selectOptions:r,setSelectOptions:a,openSelectOption:o,closeSelectOption:s}),[i,r]);return(0,tq.jsx)(P6.Provider,{value:d,children:t})},P5=()=>{let e=(0,tG.useContext)(P6);if(void 0===e)throw Error("useSelectOptionEditorContext must be used within a SelectOptionEditorProvider");return e},P7=e=>{let{selectOptionId:t}=e,{t:i}=(0,iQ.useTranslation)(),{data:n,isLoading:r}=(0,fk.P1)({id:t}),a=(0,cH.createColumnHelper)(),l=[a.accessor("class",{header:i("select-option.general-settings.usages.class"),size:200}),a.accessor("field",{header:i("select-option.general-settings.usages.field"),size:200})];return r?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:l,data:(null==n?void 0:n.items)??[],enableMultipleRowSelection:!1,resizable:!1})},P8=(0,cH.createColumnHelper)(),P9=e=>{let{value:t=[],onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),r=((e,t)=>{let{t:i}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[P8.accessor("label",{header:i("select-option.entries.display-name"),meta:{editable:!0}}),P8.accessor("value",{header:i("select-option.entries.value"),meta:{editable:!0}}),P8.accessor("name",{header:i("select-option.entries.name"),meta:{editable:!0}}),P8.display({header:i("select-option.entries.action"),cell:n=>(0,tq.jsx)(ni.Box,{padding:"mini",children:(0,tq.jsx)(ni.ButtonGroup,{items:[(0,tq.jsx)(ni.IconButton,{disabled:0===n.row.index,icon:{value:"chevron-up"},onClick:()=>{let i=n.row.index;if(i>0){let n=[...e],r=n[i-1];n[i-1]=n[i],n[i]=r,null==t||t(n)}},size:"small",tooltip:{title:i("select-option.entries.move-up")},type:"link"},"move-up"),(0,tq.jsx)(ni.IconButton,{disabled:n.row.index===e.length-1,icon:{value:"chevron-down"},onClick:()=>{let i=n.row.index;if(i{let i=[...e];i.splice(n.row.index,1),null==t||t(i)},size:"small",tooltip:{title:i("delete")},type:"link"},"delete")],noSpacing:!0})}),id:"actions",size:120})],[e,t])})(t,i);return(0,tq.jsx)(ni.OperationalGrid,{columns:r,enableSorting:!1,onChange:i,setRowId:(e,t)=>`row-${e.value}-${t}`,value:t,children:(0,tq.jsxs)(ni.Space,{direction:"vertical",size:"small",style:{width:"100%"},children:[(0,tq.jsx)(ni.OperationalGrid.Grid,{}),(0,tq.jsx)(ni.OperationalGrid.Operations,{children:e=>(0,tq.jsx)(ni.Space,{children:(0,tq.jsx)(ni.IconButton,{icon:{value:"new-something"},onClick:()=>{e.addRow({label:"",value:"",name:""})},tooltip:{title:n("add")},type:"default"})})})]})})},Ae=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance().getFieldValue("id");return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("select-option.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.enum-name"),name:"enumName",children:(0,tq.jsx)(aR.p,{readOnly:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.use-traits"),name:"useTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.admin-only"),name:"adminOnly",valuePropName:"checked",children:(0,tq.jsx)(ig.Switch,{})})]}),(0,tq.jsx)(ni.FormKit.Panel,{title:e("select-option.entries.title"),children:(0,tq.jsx)(tJ.lV.Item,{name:"selectOptions",children:(0,tq.jsx)(P9,{})})}),!(0,tI.isNil)(t)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("select-option.general-settings.usages.title"),children:(0,tq.jsx)(P7,{selectOptionId:t})})]}),[t])},At=e=>{let{selectOption:t}=e,{t:i}=(0,iQ.useTranslation)(),{updateSelectOption:n,getSelectOptionById:r,removeWithConfirmation:a,isLoading:l}=P3(),{setSelectOptions:o,closeSelectOption:s}=P5(),[d]=tJ.lV.useForm(),c={...t},f=t.isWriteable;return(0,tq.jsx)(n6.L,{formProps:{form:d,initialValues:c,onFinish:async e=>{let i={group:e.group??null,adminOnly:e.adminOnly??!1,useTraits:e.useTraits??"",implementsInterfaces:e.implementsInterfaces??"",selectOptions:e.selectOptions??[]};await n(t.id,i,async()=>{let e=await r(t.id);void 0!==e&&(o(t=>t.map(t=>t.id===e.id?e:t)),d.setFieldsValue(e))})}},children:(0,tq.jsxs)(ap.s,{className:"absolute-stretch",justify:"space-between",vertical:!0,children:[(0,tq.jsx)(uE.U,{padded:!0,padding:{x:"small",y:"none"},children:(0,tq.jsx)(Ae,{})}),(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)(lp.K,{disabled:l,icon:{value:"refresh"},onClick:async()=>{let e=await r(t.id);void 0!==e&&(o(t=>t.map(t=>t.id===e.id?e:t)),d.setFieldsValue(e))},title:i("refresh")}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(lp.K,{disabled:l||!f,icon:{value:"trash"},onClick:()=>{a(t.id,()=>{s(t.id),o(e=>e.filter(e=>e.id!==t.id))})},title:i("delete")})})]}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(az.$,{disabled:!f,htmlType:"submit",loading:l,type:"primary",children:i("save")})})]})]})})},Ai=e=>{let{id:t}=e,{selectOptions:i}=P5(),n=i.find(e=>e.id===t);return void 0===n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(At,{selectOption:n})},An=()=>{let{selectOptions:e,activeTabId:t,setActiveTabId:i,closeSelectOption:n}=P5();return(0,tq.jsx)(ni.Tabs,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.id,children:(0,tq.jsx)(Ai,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},Ar=e=>{let{onReload:t,onAddItem:i}=e,{t:n}=(0,iQ.useTranslation)();return(0,tq.jsxs)(pc.M,{children:[(0,tq.jsx)(lp.K,{icon:{value:"refresh"},onClick:t,children:n("toolbar.reload")}),(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:i,children:n("toolbar.new")})]})},Aa=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{treeContainer:i` margin-top: ${t.paddingSM}px; .tree--search { @@ -1034,7 +1034,7 @@ :has(.tree--search) { margin-top: 0; } - `}},{hashPriority:"low"});var Al=i(60924);let Ao=(e,t)=>{for(let i of e){if(String(i.key)===String(t))return i;if(void 0!==i.children&&null!==i.children){let e=Ao(i.children,t);if(void 0!==e)return e}}},As=e=>{let t=[];for(let i of e)!0===i.isLeaf&&t.push({key:String(i.key),title:String(i.title??"")}),void 0!==i.children&&null!==i.children&&t.push(...As(i.children));return t},Ad=e=>{let{treeData:t,onSelect:i}=e,{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)(""),{styles:l}=(0,Al.I)(),o=(0,tG.useMemo)(()=>As(t),[t]),s=(0,tG.useMemo)(()=>{if(""===r)return[];let e=r.toLowerCase();return o.filter(t=>t.title.toLowerCase().includes(e)).map(e=>({value:e.key,label:(0,tq.jsxs)("div",{children:[(0,tq.jsx)(r9.I,{options:{width:14,height:14},value:"select-type"})," ",e.title]})}))},[r,o]);return(0,tq.jsx)(ig.AutoComplete,{className:"tree--search",onSearch:e=>{a(e)},onSelect:e=>{void 0!==Ao(t,e)&&i(String(e)),a("")},options:s,value:r,children:(0,tq.jsx)(ig.Input.Search,{allowClear:{clearIcon:(0,tq.jsx)(r9.I,{className:l.closeIcon,value:"close"})},className:l.searchWithoutAddon,placeholder:n("select-option.tree.search"),prefix:(0,tq.jsx)(r9.I,{className:l.searchIcon,options:{width:12,height:12},value:"search"})})})},Ac=e=>{let{expandedKeys:t,treeData:i,isFetching:n,onReloadTree:r,onSetExpandedKeys:a}=e,{openSelectOption:l,closeSelectOption:o,setSelectOptions:s}=P5(),{createSelectOption:d,removeWithConfirmation:c}=P3(),{styles:f}=Aa(),u=[f.treeContainer];return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(Ar,{onAddItem:()=>{d(async()=>{await r()})},onReload:()=>{r()}}),children:(0,tq.jsxs)(uE.U,{className:u.join(", "),children:[(0,tq.jsx)(Ad,{onSelect:e=>{l(e)},treeData:i}),(0,tq.jsx)(gQ.l,{defaultExpandedKeys:t,expandedKeys:t,onActionsClick:(e,t)=>{let i=String(e);"delete"===t&&c(i,async()=>{o(i),s(e=>e.filter(e=>e.id!==i)),await r()})},onExpand:e=>{a(e)},onSelected:e=>{var t;(null==(t=Ao(i,e))?void 0:t.selectable)!==!1&&l(String(e))},treeData:i})]})})},Af=()=>{let{data:e,isFetching:t,refetch:i}=(0,fk.xs)({withGroup:!0}),[n,r]=(0,tG.useState)([]),[a,l]=(0,tG.useState)([]);(0,tG.useEffect)(()=>{(null==e?void 0:e.items)!==void 0&&r([...e.items].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>"children"in e&&Array.isArray(e.children)?{title:e.name,key:e.id,selectable:!1,icon:(0,tq.jsx)(r9.I,{type:e.icon.type,value:void 0!==e.icon.value&&""!==e.icon.value?e.icon.value:"folder"}),isLeaf:!1,children:[...e.children].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>({title:e.name,key:e.id,icon:(0,tq.jsx)(r9.I,{value:"select-type"}),isLeaf:!0,actions:[{key:"delete",icon:"trash"}]}))}:{title:e.name,key:e.id,icon:(0,tq.jsx)(r9.I,{value:"select-type"}),isLeaf:!0,actions:[{key:"delete",icon:"trash"}]}))},[e]);let o=(0,tG.useCallback)(async()=>{await i()},[i]),s={id:"select-option-editor.sidebar",minSize:170,children:[(0,tq.jsx)(Ac,{expandedKeys:a,isFetching:t,onReloadTree:o,onSetExpandedKeys:l,treeData:n},"select-option-editor.sidebar")]},d={id:"select-option-editor.main",minSize:600,children:[(0,tq.jsx)(An,{},"select-option-editor.main.detailTab")]};return(0,tq.jsx)(Lp.v,{leftItem:s,rightItem:d})},Au=()=>(0,tq.jsx)(P4,{children:(0,tq.jsx)(Af,{})});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/SelectOptions",label:"navigation.select-options",className:"selectoption",order:500,permission:pw.F.SelectOptions,perspectivePermission:pk.d.SelectOptions,widgetConfig:{name:"select-options",id:"select-options",component:"select-options",config:{translationKey:"widget.select-options",icon:{type:"name",value:"select-type"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"select-options",component:Au})}});var Am=i(42811),Ap=i(26234);let{useUnitQuantityValueUnitsCollectionQuery:Ag,useUnitQuantityValueConvertAllQuery:Ah,useUnitQuantityValueConvertQuery:Ay,useUnitQuantityValueUnitsCreateMutation:Av,useUnitQuantityValueUnitsUpdateMutation:Ab,useUnitQuantityValueUnitsDeleteMutation:Ax,useUnitQuantityValueUnitsExportQuery:Aj,useLazyUnitQuantityValueUnitsExportQuery:Aw,useUnitQuantityValueUnitsImportMutation:Ak,useUnitQuantityValueListQuery:AT}=i(2208).FH.enhanceEndpoints({addTagTypes:[uT.nP.QUANTITY_VALUE_UNITS],endpoints:{unitQuantityValueUnitsCollection:{providesTags:(e,t,i)=>uT.yc.QUANTITY_VALUE_UNITS()},unitQuantityValueUnitsUpdate:{invalidatesTags:()=>[]},unitQuantityValueUnitsDelete:{invalidatesTags:()=>[]},unitQuantityValueUnitsCreate:{invalidatesTags:()=>[uT.nP.QUANTITY_VALUE_UNITS]},unitQuantityValueList:{providesTags:()=>[]},unitQuantityValueUnitsExport:{query:()=>({url:"/pimcore-studio/api/unit/quantity-value/units/export",responseHandler:async e=>await e.blob()})}}}),AS=()=>{let[e,{isLoading:t}]=Av(),[i,{isLoading:n}]=Ax(),[r,{isLoading:a}]=Ab();return{createUnit:async t=>{try{let i=await e({createUnitParameters:{id:t}});if("data"in i)return{success:!0,data:i.data}}catch{(0,iX.Ay)(new iX.$g("Was not able to create Unit"))}return{success:!1}},createLoading:t,deleteUnitById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch{return(0,iX.Ay)(new iX.$g("Was not able to delete Unit")),{success:!1}}},deleteLoading:n,updateUnitById:async(e,t)=>{try{let i=await r({id:e,updateUnitParameters:{abbreviation:t.abbreviation??null,longname:t.longName??null,baseunit:t.baseUnit??null,factor:t.factor??null,conversionOffset:t.conversionOffset??null,converter:t.converter??null,reference:t.reference??null}});return{success:"data"in i}}catch{return(0,iX.Ay)(new iX.$g("Was not able to update Unit")),{success:!1}}},updateLoading:a}},AC=e=>{let{info:t,setQuantityValueUnitRows:i}=e,n=t.row.original.id,{deleteUnitById:r,deleteLoading:a}=AS(),l=async()=>{if(null===n)return;let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},AD=e=>{let{quantityValueUnitRows:t,setQuantityValueUnitRows:i}=e,{t:n}=(0,iQ.useTranslation)(),{updateUnitById:r}=AS(),[a,l]=(0,tG.useState)([]),o=(0,cH.createColumnHelper)(),s=(0,tG.useMemo)(()=>[o.accessor("id",{header:n("quantity-values.columns.id"),meta:{editable:!1},size:100}),o.accessor("abbreviation",{header:n("quantity-values.columns.abbreviation"),meta:{editable:!0},size:150}),o.accessor("longName",{header:n("quantity-values.columns.long-name"),meta:{editable:!0},size:200}),o.accessor("baseUnit",{header:n("quantity-values.columns.base-unit"),meta:{type:"select",editable:!0,config:{useOptionsHook:()=>(()=>{let{data:e,isLoading:t,isFetching:i}=AT();return{isLoading:t||i,options:(0,tG.useMemo)(()=>{var t;return(null==e||null==(t=e.items)?void 0:t.filter(e=>null!==e.id).map(e=>({value:e.id,label:e.abbreviation??e.id??""})))??[]},[e])}})(),allowClear:!0}},size:120}),o.accessor("factor",{header:n("quantity-values.columns.factor"),meta:{type:"number",editable:!0},size:120}),o.accessor("conversionOffset",{header:n("quantity-values.columns.conversion-offset"),meta:{type:"number",editable:!0},size:150}),o.accessor("converter",{header:n("quantity-values.columns.converter"),meta:{editable:!0},size:150}),o.accessor("actions",{header:n("quantity-values.columns.actions"),size:80,cell:e=>(0,tq.jsx)(AC,{info:e,setQuantityValueUnitRows:i})})],[]),d=async e=>{let{columnId:t,value:n,rowData:a}=e,o=a.rowId,s={...a,[t]:n};if(i(e=>e.map(e=>e.rowId===o?s:e)),l([{columnId:t,rowIndex:o}]),null===s.id)return;let{success:d}=await r(s.id,s);d?l([]):i(e=>e.map(e=>e.rowId===o?a:e))};return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:s,data:t,enableSorting:!0,modifiedCells:a,onUpdateCellData:d,resizable:!0,setRowId:e=>e.rowId})},AI=()=>{let{t:e}=(0,iQ.useTranslation)(),{createUnit:t,createLoading:i}=AS(),n=(0,aB.Vl)(),[r,a]=(0,tG.useState)(1),[l,o]=(0,tG.useState)(20),{data:s,isLoading:d,isFetching:c,error:f,refetch:u}=Ag({body:{filters:{page:r,pageSize:l}}}),m=()=>{u().catch(()=>{(0,iX.Ay)(new iX.$g("Error while reloading"))})},[p,{isLoading:g}]=Aw(),h=async()=>{try{let e=await p().unwrap();(0,Ap.P)("quantityvalue_unit_export.json",e)}catch{(0,iX.Ay)(new iX.$g("Error while exporting"))}},[y,v]=(0,tG.useState)([]),[b,x]=(0,tG.useState)(!1),j=null==s?void 0:s.items,w=(null==s?void 0:s.totalItems)??0;(0,tG.useEffect)(()=>{(0,tI.isUndefined)(j)||v(j.map(e=>({...e,rowId:(0,af.uuid)()})))},[j]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(f)||(0,iX.Ay)(new iX.hD(f))},[f]);let k=async e=>{let{success:i,data:n}=await t(e);return i&&void 0!==n&&v(e=>[{...n,rowId:(0,af.uuid)()},...e]),{success:i}};return(0,tq.jsxs)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(ap.s,{align:"center",justify:"start",children:(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ni.IconTextButton,{disabled:c||g||y.length<1,icon:{value:"download"},loading:g,onClick:h,type:"link",children:e("quantity-values.export")}),(0,tq.jsx)(ni.IconTextButton,{disabled:c,icon:{value:"upload-import"},onClick:()=>{x(!0)},type:"link",children:e("quantity-values.import")})]})}),w>0?(0,tq.jsxs)(ni.Split,{children:[(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:c,icon:{value:"refresh"},onClick:m,variant:"minimal"})}),(0,tq.jsx)(ni.Pagination,{current:r,onChange:(e,t)=>{a(e),o(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:w})]}):(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:c,icon:{value:"refresh"},onClick:m})})]}),renderTopBar:(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:e("widget.quantity-values")}),(0,tq.jsx)(ni.IconTextButton,{disabled:d||i,icon:{value:"new"},loading:i,onClick:()=>{n.input({title:(0,tq.jsx)(p8.w,{iconName:"new",children:e("quantity-values.create-modal.title")}),label:e("quantity-values.create-modal.id-label"),rule:{required:!0,message:e("quantity-values.create-modal.id-required")},onOk:async e=>{let{success:t}=await k(e);if(!t)throw new iX.$g("Failed to create unit")}})},children:e("quantity-values.new")})]})}),children:[(0,tq.jsx)(uE.U,{loading:d||c,margin:{x:"extra-small",y:"none"},none:(0,tI.isUndefined)(j)||0===j.length,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(AD,{quantityValueUnitRows:y,setQuantityValueUnitRows:v})})}),(0,tq.jsx)(Am.z,{accept:".json,application/json",acceptMimeTypes:["application/json"],action:`${(0,tD.$)()}/unit/quantity-value/units/import`,onOpenChange:x,onUploadSuccess:()=>{x(!1),m()},open:b,title:e("quantity-values.import-modal.title")})]})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/QuantityValues",label:"navigation.quantity-values",className:"item-style-modifier",order:600,permission:pw.F.QuantityValues,perspectivePermission:pk.d.QuantityValues,widgetConfig:{name:"quantity-values",id:"quantity-values",component:"quantity-values",config:{translationKey:"widget.quantity-values",icon:{type:"name",value:"quantity-value"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"quantity-values",component:AI})}}),ts.s.registerModule({onInit:()=>{let e=iv.container.get("DynamicTypes/FieldDefinitionRegistry");e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Block")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Input")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Textarea")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Wysiwyg")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Password")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/InputQuantityValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Number")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/NumericRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Slider")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/QuantityValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/QuantityValueRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Date")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/DateTime")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/DateRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Time")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Image")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ExternalImage")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ImageGallery")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Video")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/HotspotImage")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopoint")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geobounds")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopolygon")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopolyline")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Select")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/BooleanSelect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Multiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/User")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Country")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Language")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/CountryMultiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/LanguageMultiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/RgbaColor")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/EncryptedField")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/UrlSlug")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Checkbox")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Link")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/CalculatedValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToOne")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToMany")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToManyObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/AdvancedManyToMany")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/AdvancedManyToManyObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ReverseObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Panel")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Accordion")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/FieldContainer")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Fieldset")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Iframe")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Region")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Tabpanel")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Text")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Table")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/StructuredTable")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Fieldcollections")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Objectbricks")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Classificationstore")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Localizedfields")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Consent")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Firstname")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Lastname")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Email")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Gender"))}});let AM=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{form:i` + `}},{hashPriority:"low"});var Al=i(60924);let Ao=(e,t)=>{for(let i of e){if(String(i.key)===String(t))return i;if(void 0!==i.children&&null!==i.children){let e=Ao(i.children,t);if(void 0!==e)return e}}},As=e=>{let t=[];for(let i of e)!0===i.isLeaf&&t.push({key:String(i.key),title:String(i.title??"")}),void 0!==i.children&&null!==i.children&&t.push(...As(i.children));return t},Ad=e=>{let{treeData:t,onSelect:i}=e,{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)(""),{styles:l}=(0,Al.I)(),o=(0,tG.useMemo)(()=>As(t),[t]),s=(0,tG.useMemo)(()=>{if(""===r)return[];let e=r.toLowerCase();return o.filter(t=>t.title.toLowerCase().includes(e)).map(e=>({value:e.key,label:(0,tq.jsxs)("div",{children:[(0,tq.jsx)(r9.I,{options:{width:14,height:14},value:"select-type"})," ",e.title]})}))},[r,o]);return(0,tq.jsx)(ig.AutoComplete,{className:"tree--search",onSearch:e=>{a(e)},onSelect:e=>{void 0!==Ao(t,e)&&i(String(e)),a("")},options:s,value:r,children:(0,tq.jsx)(ig.Input.Search,{allowClear:{clearIcon:(0,tq.jsx)(r9.I,{className:l.closeIcon,value:"close"})},className:l.searchWithoutAddon,placeholder:n("select-option.tree.search"),prefix:(0,tq.jsx)(r9.I,{className:l.searchIcon,options:{width:12,height:12},value:"search"})})})},Ac=e=>{let{expandedKeys:t,treeData:i,isFetching:n,onReloadTree:r,onSetExpandedKeys:a}=e,{openSelectOption:l,closeSelectOption:o,setSelectOptions:s}=P5(),{createSelectOption:d,removeWithConfirmation:c}=P3(),{styles:f}=Aa(),u=[f.treeContainer];return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(Ar,{onAddItem:()=>{d(()=>{r()})},onReload:r}),children:(0,tq.jsxs)(uE.U,{className:u.join(", "),children:[(0,tq.jsx)(Ad,{onSelect:e=>{l(e)},treeData:i}),(0,tq.jsx)(gQ.l,{defaultExpandedKeys:t,expandedKeys:t,onActionsClick:(e,t)=>{let i=String(e);"delete"===t&&c(i,async()=>{o(i),s(e=>e.filter(e=>e.id!==i)),r()})},onExpand:e=>{a(e)},onSelected:e=>{var t;(null==(t=Ao(i,e))?void 0:t.selectable)!==!1&&l(String(e))},treeData:i})]})})},Af=()=>{let{data:e,isFetching:t}=(0,fk.xs)({withGroup:!0}),i=(0,uk.jL)(),[n,r]=(0,tG.useState)([]),[a,l]=(0,tG.useState)([]);(0,tG.useEffect)(()=>{(null==e?void 0:e.items)!==void 0&&r([...e.items].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>"children"in e&&Array.isArray(e.children)?{title:e.name,key:e.id,selectable:!1,icon:(0,tq.jsx)(r9.I,{type:e.icon.type,value:void 0!==e.icon.value&&""!==e.icon.value?e.icon.value:"folder"}),isLeaf:!1,children:[...e.children].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>({title:e.name,key:e.id,icon:(0,tq.jsx)(r9.I,{value:"select-type"}),isLeaf:!0,actions:[{key:"delete",icon:"trash"}]}))}:{title:e.name,key:e.id,icon:(0,tq.jsx)(r9.I,{value:"select-type"}),isLeaf:!0,actions:[{key:"delete",icon:"trash"}]}))},[e]);let o=(0,tG.useCallback)(()=>{i(fk.FH.util.invalidateTags(uT.qN.SELECT_OPTION_COLLECTION()))},[i]),s={id:"select-option-editor.sidebar",minSize:170,children:[(0,tq.jsx)(Ac,{expandedKeys:a,isFetching:t,onReloadTree:o,onSetExpandedKeys:l,treeData:n},"select-option-editor.sidebar")]},d={id:"select-option-editor.main",minSize:600,children:[(0,tq.jsx)(An,{},"select-option-editor.main.detailTab")]};return(0,tq.jsx)(Lp.v,{leftItem:s,rightItem:d})},Au=()=>(0,tq.jsx)(P4,{children:(0,tq.jsx)(Af,{})});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/SelectOptions",label:"navigation.select-options",className:"selectoption",order:500,permission:pw.F.SelectOptions,perspectivePermission:pk.d.SelectOptions,widgetConfig:{name:"select-options",id:"select-options",component:"select-options",config:{translationKey:"widget.select-options",icon:{type:"name",value:"select-type"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"select-options",component:Au})}});var Am=i(42811),Ap=i(26234);let{useUnitQuantityValueUnitsCollectionQuery:Ag,useUnitQuantityValueConvertAllQuery:Ah,useUnitQuantityValueConvertQuery:Ay,useUnitQuantityValueUnitsCreateMutation:Av,useUnitQuantityValueUnitsUpdateMutation:Ab,useUnitQuantityValueUnitsDeleteMutation:Ax,useUnitQuantityValueUnitsExportQuery:Aj,useLazyUnitQuantityValueUnitsExportQuery:Aw,useUnitQuantityValueUnitsImportMutation:Ak,useUnitQuantityValueListQuery:AT}=i(2208).FH.enhanceEndpoints({addTagTypes:[uT.nP.QUANTITY_VALUE_UNITS],endpoints:{unitQuantityValueUnitsCollection:{providesTags:(e,t,i)=>uT.yc.QUANTITY_VALUE_UNITS()},unitQuantityValueUnitsUpdate:{invalidatesTags:()=>[]},unitQuantityValueUnitsDelete:{invalidatesTags:()=>[]},unitQuantityValueUnitsCreate:{invalidatesTags:()=>[uT.nP.QUANTITY_VALUE_UNITS]},unitQuantityValueList:{providesTags:()=>[]},unitQuantityValueUnitsExport:{query:()=>({url:"/pimcore-studio/api/unit/quantity-value/units/export",responseHandler:async e=>await e.blob()})}}}),AS=()=>{let[e,{isLoading:t}]=Av(),[i,{isLoading:n}]=Ax(),[r,{isLoading:a}]=Ab();return{createUnit:async t=>{try{let i=await e({createUnitParameters:{id:t}});if("data"in i)return{success:!0,data:i.data}}catch{(0,iX.Ay)(new iX.$g("Was not able to create Unit"))}return{success:!1}},createLoading:t,deleteUnitById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch{return(0,iX.Ay)(new iX.$g("Was not able to delete Unit")),{success:!1}}},deleteLoading:n,updateUnitById:async(e,t)=>{try{let i=await r({id:e,updateUnitParameters:{abbreviation:t.abbreviation??null,longname:t.longName??null,baseunit:t.baseUnit??null,factor:t.factor??null,conversionOffset:t.conversionOffset??null,converter:t.converter??null,reference:t.reference??null}});return{success:"data"in i}}catch{return(0,iX.Ay)(new iX.$g("Was not able to update Unit")),{success:!1}}},updateLoading:a}},AC=e=>{let{info:t,setQuantityValueUnitRows:i}=e,n=t.row.original.id,{deleteUnitById:r,deleteLoading:a}=AS(),l=async()=>{if(null===n)return;let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},AD=e=>{let{quantityValueUnitRows:t,setQuantityValueUnitRows:i}=e,{t:n}=(0,iQ.useTranslation)(),{updateUnitById:r}=AS(),[a,l]=(0,tG.useState)([]),o=(0,cH.createColumnHelper)(),s=(0,tG.useMemo)(()=>[o.accessor("id",{header:n("quantity-values.columns.id"),meta:{editable:!1},size:100}),o.accessor("abbreviation",{header:n("quantity-values.columns.abbreviation"),meta:{editable:!0},size:150}),o.accessor("longName",{header:n("quantity-values.columns.long-name"),meta:{editable:!0},size:200}),o.accessor("baseUnit",{header:n("quantity-values.columns.base-unit"),meta:{type:"select",editable:!0,config:{useOptionsHook:()=>(()=>{let{data:e,isLoading:t,isFetching:i}=AT();return{isLoading:t||i,options:(0,tG.useMemo)(()=>{var t;return(null==e||null==(t=e.items)?void 0:t.filter(e=>null!==e.id).map(e=>({value:e.id,label:e.abbreviation??e.id??""})))??[]},[e])}})(),allowClear:!0}},size:120}),o.accessor("factor",{header:n("quantity-values.columns.factor"),meta:{type:"number",editable:!0},size:120}),o.accessor("conversionOffset",{header:n("quantity-values.columns.conversion-offset"),meta:{type:"number",editable:!0},size:150}),o.accessor("converter",{header:n("quantity-values.columns.converter"),meta:{editable:!0},size:150}),o.accessor("actions",{header:n("quantity-values.columns.actions"),size:80,cell:e=>(0,tq.jsx)(AC,{info:e,setQuantityValueUnitRows:i})})],[]),d=async e=>{let{columnId:t,value:n,rowData:a}=e,o=a.rowId,s={...a,[t]:n};if(i(e=>e.map(e=>e.rowId===o?s:e)),l([{columnId:t,rowIndex:o}]),null===s.id)return;let{success:d}=await r(s.id,s);d?l([]):i(e=>e.map(e=>e.rowId===o?a:e))};return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:s,data:t,enableSorting:!0,modifiedCells:a,onUpdateCellData:d,resizable:!0,setRowId:e=>e.rowId})},AI=()=>{let{t:e}=(0,iQ.useTranslation)(),{createUnit:t,createLoading:i}=AS(),n=(0,aB.Vl)(),[r,a]=(0,tG.useState)(1),[l,o]=(0,tG.useState)(20),{data:s,isLoading:d,isFetching:c,error:f,refetch:u}=Ag({body:{filters:{page:r,pageSize:l}}}),m=()=>{u().catch(()=>{(0,iX.Ay)(new iX.$g("Error while reloading"))})},[p,{isLoading:g}]=Aw(),h=async()=>{try{let e=await p().unwrap();(0,Ap.P)("quantityvalue_unit_export.json",e)}catch{(0,iX.Ay)(new iX.$g("Error while exporting"))}},[y,v]=(0,tG.useState)([]),[b,x]=(0,tG.useState)(!1),j=null==s?void 0:s.items,w=(null==s?void 0:s.totalItems)??0;(0,tG.useEffect)(()=>{(0,tI.isUndefined)(j)||v(j.map(e=>({...e,rowId:(0,af.uuid)()})))},[j]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(f)||(0,iX.Ay)(new iX.hD(f))},[f]);let k=async e=>{let{success:i,data:n}=await t(e);return i&&void 0!==n&&v(e=>[{...n,rowId:(0,af.uuid)()},...e]),{success:i}};return(0,tq.jsxs)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(ap.s,{align:"center",justify:"start",children:(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ni.IconTextButton,{disabled:c||g||y.length<1,icon:{value:"download"},loading:g,onClick:h,type:"link",children:e("quantity-values.export")}),(0,tq.jsx)(ni.IconTextButton,{disabled:c,icon:{value:"upload-import"},onClick:()=>{x(!0)},type:"link",children:e("quantity-values.import")})]})}),w>0?(0,tq.jsxs)(ni.Split,{children:[(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:c,icon:{value:"refresh"},onClick:m,variant:"minimal"})}),(0,tq.jsx)(ni.Pagination,{current:r,onChange:(e,t)=>{a(e),o(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:w})]}):(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:c,icon:{value:"refresh"},onClick:m})})]}),renderTopBar:(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:e("widget.quantity-values")}),(0,tq.jsx)(ni.IconTextButton,{disabled:d||i,icon:{value:"new"},loading:i,onClick:()=>{n.input({title:(0,tq.jsx)(p8.w,{iconName:"new",children:e("quantity-values.create-modal.title")}),label:e("quantity-values.create-modal.id-label"),rule:{required:!0,message:e("quantity-values.create-modal.id-required")},onOk:async e=>{let{success:t}=await k(e);if(!t)throw new iX.$g("Failed to create unit")}})},children:e("quantity-values.new")})]})}),children:[(0,tq.jsx)(uE.U,{loading:d||c,margin:{x:"extra-small",y:"none"},none:(0,tI.isUndefined)(j)||0===j.length,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(AD,{quantityValueUnitRows:y,setQuantityValueUnitRows:v})})}),(0,tq.jsx)(Am.z,{accept:".json,application/json",acceptMimeTypes:["application/json"],action:`${(0,tD.$)()}/unit/quantity-value/units/import`,onOpenChange:x,onUploadSuccess:()=>{x(!1),m()},open:b,title:e("quantity-values.import-modal.title")})]})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/QuantityValues",label:"navigation.quantity-values",className:"item-style-modifier",order:600,permission:pw.F.QuantityValues,perspectivePermission:pk.d.QuantityValues,widgetConfig:{name:"quantity-values",id:"quantity-values",component:"quantity-values",config:{translationKey:"widget.quantity-values",icon:{type:"name",value:"quantity-value"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"quantity-values",component:AI})}}),ts.s.registerModule({onInit:()=>{let e=iv.container.get("DynamicTypes/FieldDefinitionRegistry");e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Block")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Input")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Textarea")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Wysiwyg")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Password")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/InputQuantityValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Number")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/NumericRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Slider")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/QuantityValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/QuantityValueRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Date")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/DateTime")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/DateRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Time")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Image")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ExternalImage")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ImageGallery")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Video")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/HotspotImage")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopoint")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geobounds")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopolygon")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopolyline")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Select")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/BooleanSelect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Multiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/User")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Country")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Language")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/CountryMultiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/LanguageMultiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/RgbaColor")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/EncryptedField")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/UrlSlug")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Checkbox")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Link")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/CalculatedValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToOne")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToMany")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToManyObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/AdvancedManyToMany")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/AdvancedManyToManyObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ReverseObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Panel")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Accordion")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/FieldContainer")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Fieldset")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Iframe")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Region")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Tabpanel")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Text")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Table")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/StructuredTable")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Fieldcollections")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Objectbricks")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Classificationstore")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Localizedfields")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Consent")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Firstname")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Lastname")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Email")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Gender"))}});let AM=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{form:i` label { min-width: 90px; } diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/616.2ffecb95.js.LICENSE.txt similarity index 100% rename from public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/616.2ffecb95.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6186.9fa7f507.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6186.9fa7f507.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6186.9fa7f507.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6186.9fa7f507.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6186.9fa7f507.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6186.9fa7f507.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6186.9fa7f507.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6186.9fa7f507.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/619.59f8e380.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/619.59f8e380.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/619.59f8e380.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/619.59f8e380.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/619.59f8e380.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/619.59f8e380.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/619.59f8e380.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/619.59f8e380.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6229.ec077e40.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6229.ec077e40.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6229.ec077e40.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6229.ec077e40.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6229.ec077e40.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6229.ec077e40.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6229.ec077e40.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6229.ec077e40.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6255.2e48b884.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6255.2e48b884.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6255.2e48b884.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6255.2e48b884.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6255.2e48b884.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6255.2e48b884.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6255.2e48b884.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6255.2e48b884.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6270.f9ff3abd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6270.f9ff3abd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6270.f9ff3abd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6270.f9ff3abd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6270.f9ff3abd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6270.f9ff3abd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6270.f9ff3abd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6270.f9ff3abd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6272.f2f56a80.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6272.f2f56a80.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6272.f2f56a80.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6272.f2f56a80.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6272.f2f56a80.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6272.f2f56a80.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6272.f2f56a80.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6272.f2f56a80.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6313.e76747fb.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6313.e76747fb.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6313.e76747fb.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6313.e76747fb.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6313.e76747fb.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6313.e76747fb.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6313.e76747fb.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6313.e76747fb.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6335.0ad9b174.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6335.0ad9b174.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6335.0ad9b174.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6335.0ad9b174.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6335.0ad9b174.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6335.0ad9b174.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6335.0ad9b174.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6335.0ad9b174.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6411.ae78ff82.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6411.ae78ff82.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6411.ae78ff82.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6411.ae78ff82.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6411.ae78ff82.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6411.ae78ff82.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6411.ae78ff82.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6411.ae78ff82.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6424.ca220edd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6424.ca220edd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6424.ca220edd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6424.ca220edd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6424.ca220edd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6424.ca220edd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6424.ca220edd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6424.ca220edd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6458.b5282ed0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6458.b5282ed0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6458.b5282ed0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6458.b5282ed0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6458.b5282ed0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6458.b5282ed0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6458.b5282ed0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6458.b5282ed0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6464.b6d25cb6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6464.b6d25cb6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6464.b6d25cb6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6464.b6d25cb6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6464.b6d25cb6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6464.b6d25cb6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6464.b6d25cb6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6464.b6d25cb6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6472.df513d2d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6472.df513d2d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6472.df513d2d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6472.df513d2d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6472.df513d2d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6472.df513d2d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6472.df513d2d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6472.df513d2d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6484.2519155d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6484.2519155d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6484.2519155d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6484.2519155d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6484.2519155d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6484.2519155d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6484.2519155d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6484.2519155d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6550.09a63ebf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6550.09a63ebf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6550.09a63ebf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6550.09a63ebf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6550.09a63ebf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6550.09a63ebf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6550.09a63ebf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6550.09a63ebf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6572.510ff641.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6572.510ff641.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6572.510ff641.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6572.510ff641.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6572.510ff641.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6572.510ff641.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6572.510ff641.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6572.510ff641.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6579.cda7f334.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6579.cda7f334.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6579.cda7f334.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6579.cda7f334.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6579.cda7f334.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6579.cda7f334.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6579.cda7f334.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6579.cda7f334.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/658.dc677028.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/658.dc677028.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/658.dc677028.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/658.dc677028.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/658.dc677028.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/658.dc677028.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/658.dc677028.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/658.dc677028.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/660.5242d83f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/660.5242d83f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/660.5242d83f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/660.5242d83f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/660.5242d83f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/660.5242d83f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/660.5242d83f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/660.5242d83f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6619.93b9f2c4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6619.93b9f2c4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6619.93b9f2c4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6619.93b9f2c4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6619.93b9f2c4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6619.93b9f2c4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6619.93b9f2c4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6619.93b9f2c4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6649.2b614ce3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6649.2b614ce3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6649.2b614ce3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6649.2b614ce3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6649.2b614ce3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6649.2b614ce3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6649.2b614ce3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6649.2b614ce3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6695.087ae8ff.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6695.087ae8ff.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6695.087ae8ff.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6695.087ae8ff.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6695.087ae8ff.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6695.087ae8ff.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6695.087ae8ff.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6695.087ae8ff.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6743.851be9cb.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6743.851be9cb.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6743.851be9cb.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6743.851be9cb.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6743.851be9cb.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6743.851be9cb.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6743.851be9cb.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6743.851be9cb.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6759.cf6c0abd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6759.cf6c0abd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6759.cf6c0abd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6759.cf6c0abd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6759.cf6c0abd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6759.cf6c0abd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6759.cf6c0abd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6759.cf6c0abd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6766.c76f91a5.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6766.c76f91a5.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6766.c76f91a5.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6766.c76f91a5.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6766.c76f91a5.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6766.c76f91a5.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6766.c76f91a5.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6766.c76f91a5.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6815.80ba0d22.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6815.80ba0d22.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6815.80ba0d22.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6815.80ba0d22.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6815.80ba0d22.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6815.80ba0d22.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6815.80ba0d22.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6815.80ba0d22.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6819.424ecfc4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6819.424ecfc4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6819.424ecfc4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6819.424ecfc4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6819.424ecfc4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6819.424ecfc4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6819.424ecfc4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6819.424ecfc4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6823.dc627341.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6823.dc627341.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6823.dc627341.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6823.dc627341.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6823.dc627341.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6823.dc627341.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6823.dc627341.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6823.dc627341.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/687.ae382b4d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/687.ae382b4d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/687.ae382b4d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/687.ae382b4d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/687.ae382b4d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/687.ae382b4d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/687.ae382b4d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/687.ae382b4d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6911.d02db343.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6911.d02db343.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6911.d02db343.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6911.d02db343.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6911.d02db343.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6911.d02db343.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6911.d02db343.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6911.d02db343.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/692.ac93e4e2.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/692.ac93e4e2.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/692.ac93e4e2.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/692.ac93e4e2.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/692.ac93e4e2.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/692.ac93e4e2.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/692.ac93e4e2.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/692.ac93e4e2.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6967.4d971194.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6967.4d971194.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6967.4d971194.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6967.4d971194.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6967.4d971194.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6967.4d971194.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6967.4d971194.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6967.4d971194.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6984.af4507e3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6984.af4507e3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6984.af4507e3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6984.af4507e3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6984.af4507e3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6984.af4507e3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6984.af4507e3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/6984.af4507e3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7006.928d8671.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7006.928d8671.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7006.928d8671.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7006.928d8671.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7006.928d8671.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7006.928d8671.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7006.928d8671.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7006.928d8671.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7041.230cf6a4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7041.230cf6a4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7041.230cf6a4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7041.230cf6a4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7041.230cf6a4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7041.230cf6a4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7041.230cf6a4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7041.230cf6a4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/705.fad963d9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/705.fad963d9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/705.fad963d9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/705.fad963d9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/705.fad963d9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/705.fad963d9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/705.fad963d9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/705.fad963d9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7053.63c4c0a6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7053.63c4c0a6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7053.63c4c0a6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7053.63c4c0a6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7053.63c4c0a6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7053.63c4c0a6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7053.63c4c0a6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7053.63c4c0a6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/706.01d44a78.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/706.01d44a78.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/706.01d44a78.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/706.01d44a78.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/706.01d44a78.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/706.01d44a78.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/706.01d44a78.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/706.01d44a78.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7073.fb6439a4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7073.fb6439a4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7073.fb6439a4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7073.fb6439a4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7073.fb6439a4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7073.fb6439a4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7073.fb6439a4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7073.fb6439a4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7161.f24a612f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7161.f24a612f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7161.f24a612f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7161.f24a612f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7161.f24a612f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7161.f24a612f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7161.f24a612f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7161.f24a612f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7171.8731ac06.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7171.8731ac06.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7171.8731ac06.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7171.8731ac06.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7171.8731ac06.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7171.8731ac06.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7171.8731ac06.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7171.8731ac06.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7210.9113a386.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7210.9113a386.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7210.9113a386.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7210.9113a386.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7210.9113a386.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7210.9113a386.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7210.9113a386.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7210.9113a386.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7250.364fbcad.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7250.364fbcad.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7250.364fbcad.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7250.364fbcad.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7250.364fbcad.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7250.364fbcad.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7250.364fbcad.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7250.364fbcad.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7264.fc5a523f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7264.fc5a523f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7264.fc5a523f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7264.fc5a523f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7264.fc5a523f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7264.fc5a523f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7264.fc5a523f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7264.fc5a523f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7334.be0321bf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7334.be0321bf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7334.be0321bf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7334.be0321bf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7334.be0321bf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7334.be0321bf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7334.be0321bf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7334.be0321bf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7396.da4c50f4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7396.da4c50f4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7396.da4c50f4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7396.da4c50f4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7396.da4c50f4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7396.da4c50f4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7396.da4c50f4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7396.da4c50f4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/741.734ea878.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/741.734ea878.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/741.734ea878.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/741.734ea878.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/741.734ea878.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/741.734ea878.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/741.734ea878.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/741.734ea878.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7419.b1cfaeac.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7419.b1cfaeac.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7419.b1cfaeac.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7419.b1cfaeac.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7419.b1cfaeac.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7419.b1cfaeac.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7419.b1cfaeac.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7419.b1cfaeac.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7440.04b86278.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7440.04b86278.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7440.04b86278.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7440.04b86278.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7440.04b86278.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7440.04b86278.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7440.04b86278.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7440.04b86278.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7442.636a9ffa.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7442.636a9ffa.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7442.636a9ffa.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7442.636a9ffa.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7442.636a9ffa.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7442.636a9ffa.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7442.636a9ffa.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7442.636a9ffa.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7463.e177b088.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7463.e177b088.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7463.e177b088.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7463.e177b088.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7463.e177b088.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7463.e177b088.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7463.e177b088.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7463.e177b088.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/749.7c748f48.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/749.7c748f48.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/749.7c748f48.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/749.7c748f48.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/749.7c748f48.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/749.7c748f48.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/749.7c748f48.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/749.7c748f48.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7524.73ba348d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7524.73ba348d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7524.73ba348d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7524.73ba348d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7524.73ba348d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7524.73ba348d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7524.73ba348d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7524.73ba348d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7527.e64ccbd1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7527.e64ccbd1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7527.e64ccbd1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7527.e64ccbd1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7527.e64ccbd1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7527.e64ccbd1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7527.e64ccbd1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7527.e64ccbd1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7597.42dde6f3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7597.42dde6f3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7597.42dde6f3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7597.42dde6f3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7597.42dde6f3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7597.42dde6f3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7597.42dde6f3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7597.42dde6f3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7679.a6829c17.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7679.a6829c17.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7679.a6829c17.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7679.a6829c17.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7679.a6829c17.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7679.a6829c17.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7679.a6829c17.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7679.a6829c17.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7680.2cb113f6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7680.2cb113f6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7680.2cb113f6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7680.2cb113f6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7680.2cb113f6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7680.2cb113f6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7680.2cb113f6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7680.2cb113f6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7789.50873df9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7789.50873df9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7789.50873df9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7789.50873df9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7789.50873df9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7789.50873df9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7789.50873df9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7789.50873df9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7793.d6bce01b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7793.d6bce01b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7793.d6bce01b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7793.d6bce01b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7793.d6bce01b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7793.d6bce01b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7793.d6bce01b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7793.d6bce01b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7799.a37e9eaf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7799.a37e9eaf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7799.a37e9eaf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7799.a37e9eaf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7799.a37e9eaf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7799.a37e9eaf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7799.a37e9eaf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7799.a37e9eaf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7821.b1a2dc53.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7821.b1a2dc53.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7821.b1a2dc53.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7821.b1a2dc53.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7821.b1a2dc53.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7821.b1a2dc53.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7821.b1a2dc53.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7821.b1a2dc53.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7828.812c672f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7828.812c672f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7828.812c672f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7828.812c672f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7828.812c672f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7828.812c672f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7828.812c672f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7828.812c672f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7935.ba8eb0b4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7935.ba8eb0b4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7935.ba8eb0b4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7935.ba8eb0b4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7935.ba8eb0b4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7935.ba8eb0b4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7935.ba8eb0b4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7935.ba8eb0b4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7939.af086f08.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7939.af086f08.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7939.af086f08.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7939.af086f08.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7939.af086f08.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7939.af086f08.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7939.af086f08.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7939.af086f08.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7960.9d4a54c0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7960.9d4a54c0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7960.9d4a54c0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7960.9d4a54c0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7960.9d4a54c0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7960.9d4a54c0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7960.9d4a54c0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7960.9d4a54c0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7994.c600e1ce.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7994.c600e1ce.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7994.c600e1ce.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7994.c600e1ce.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7994.c600e1ce.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7994.c600e1ce.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7994.c600e1ce.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/7994.c600e1ce.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/803.52d29752.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/803.52d29752.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/803.52d29752.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/803.52d29752.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/803.52d29752.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/803.52d29752.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/803.52d29752.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/803.52d29752.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8031.b368b0bf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8031.b368b0bf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8031.b368b0bf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8031.b368b0bf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8031.b368b0bf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8031.b368b0bf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8031.b368b0bf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8031.b368b0bf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8050.502aa521.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8050.502aa521.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8050.502aa521.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8050.502aa521.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8050.502aa521.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8050.502aa521.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8050.502aa521.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8050.502aa521.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8051.9c74ecaf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8051.9c74ecaf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8051.9c74ecaf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8051.9c74ecaf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8051.9c74ecaf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8051.9c74ecaf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8051.9c74ecaf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8051.9c74ecaf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8146.e69de8bc.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8146.e69de8bc.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8146.e69de8bc.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8146.e69de8bc.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8146.e69de8bc.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8146.e69de8bc.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8146.e69de8bc.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8146.e69de8bc.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8195.c8bb6771.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8195.c8bb6771.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8195.c8bb6771.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8195.c8bb6771.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8195.c8bb6771.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8195.c8bb6771.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8195.c8bb6771.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8195.c8bb6771.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8222.acb59083.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8222.acb59083.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8222.acb59083.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8222.acb59083.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8222.acb59083.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8222.acb59083.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8222.acb59083.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8222.acb59083.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8231.0a773046.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8231.0a773046.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8231.0a773046.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8231.0a773046.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8231.0a773046.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8231.0a773046.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8231.0a773046.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8231.0a773046.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8272.64fe9f7a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8272.64fe9f7a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8272.64fe9f7a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8272.64fe9f7a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8272.64fe9f7a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8272.64fe9f7a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8272.64fe9f7a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8272.64fe9f7a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/830.dda8066f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/830.dda8066f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/830.dda8066f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/830.dda8066f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/830.dda8066f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/830.dda8066f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/830.dda8066f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/830.dda8066f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8372.d6f25582.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8372.d6f25582.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8372.d6f25582.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8372.d6f25582.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8372.d6f25582.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8372.d6f25582.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8372.d6f25582.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8372.d6f25582.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8403.58bbddc4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8403.58bbddc4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8403.58bbddc4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8403.58bbddc4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8403.58bbddc4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8403.58bbddc4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8403.58bbddc4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8403.58bbddc4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8437.864e7b29.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8437.864e7b29.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8437.864e7b29.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8437.864e7b29.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8437.864e7b29.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8437.864e7b29.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8437.864e7b29.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8437.864e7b29.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8467.f7bd216d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8467.f7bd216d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8467.f7bd216d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8467.f7bd216d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8467.f7bd216d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8467.f7bd216d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8467.f7bd216d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8467.f7bd216d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8473.25a53f08.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8473.25a53f08.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8473.25a53f08.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8473.25a53f08.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8473.25a53f08.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8473.25a53f08.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8473.25a53f08.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8473.25a53f08.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8477.0c91210d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8477.0c91210d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8477.0c91210d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8477.0c91210d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8477.0c91210d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8477.0c91210d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8477.0c91210d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8477.0c91210d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8479.55f72fe0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8479.55f72fe0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8479.55f72fe0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8479.55f72fe0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8479.55f72fe0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8479.55f72fe0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8479.55f72fe0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8479.55f72fe0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/85.3d7bb7a3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/85.3d7bb7a3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/85.3d7bb7a3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/85.3d7bb7a3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/85.3d7bb7a3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/85.3d7bb7a3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/85.3d7bb7a3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/85.3d7bb7a3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8520.3f467428.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8520.3f467428.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8520.3f467428.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8520.3f467428.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8520.3f467428.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8520.3f467428.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8520.3f467428.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8520.3f467428.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8536.df877041.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8536.df877041.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8536.df877041.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8536.df877041.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8536.df877041.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8536.df877041.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8536.df877041.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8536.df877041.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/854.95bad760.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/854.95bad760.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/854.95bad760.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/854.95bad760.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/854.95bad760.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/854.95bad760.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/854.95bad760.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/854.95bad760.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8547.3355910d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8547.3355910d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8547.3355910d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8547.3355910d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8547.3355910d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8547.3355910d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8547.3355910d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8547.3355910d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8557.e526282d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8557.e526282d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8557.e526282d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8557.e526282d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8557.e526282d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8557.e526282d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8557.e526282d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8557.e526282d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8567.2e09cb4e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8567.2e09cb4e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8567.2e09cb4e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8567.2e09cb4e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8567.2e09cb4e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8567.2e09cb4e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8567.2e09cb4e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8567.2e09cb4e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8574.8c240d77.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8574.8c240d77.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8574.8c240d77.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8574.8c240d77.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8574.8c240d77.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8574.8c240d77.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8574.8c240d77.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8574.8c240d77.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8609.b6039081.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8609.b6039081.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8609.b6039081.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8609.b6039081.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8609.b6039081.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8609.b6039081.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8609.b6039081.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8609.b6039081.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8635.29404620.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8635.29404620.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8635.29404620.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8635.29404620.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8635.29404620.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8635.29404620.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8635.29404620.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8635.29404620.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8645.7a1aa6c0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8645.7a1aa6c0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8645.7a1aa6c0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8645.7a1aa6c0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8645.7a1aa6c0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8645.7a1aa6c0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8645.7a1aa6c0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8645.7a1aa6c0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8658.55f9d53e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8658.55f9d53e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8658.55f9d53e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8658.55f9d53e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8658.55f9d53e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8658.55f9d53e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8658.55f9d53e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8658.55f9d53e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8707.80dfb17f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8707.80dfb17f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8707.80dfb17f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8707.80dfb17f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8707.80dfb17f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8707.80dfb17f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8707.80dfb17f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8707.80dfb17f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8779.bdcddd0a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8779.bdcddd0a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8779.bdcddd0a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8779.bdcddd0a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8779.bdcddd0a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8779.bdcddd0a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8779.bdcddd0a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8779.bdcddd0a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8800.1154e54c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8800.1154e54c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8800.1154e54c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8800.1154e54c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8800.1154e54c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8800.1154e54c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8800.1154e54c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8800.1154e54c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8832.e1a7ddbf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8832.e1a7ddbf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8832.e1a7ddbf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8832.e1a7ddbf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8832.e1a7ddbf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8832.e1a7ddbf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8832.e1a7ddbf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8832.e1a7ddbf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8835.d50a0005.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8835.d50a0005.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8835.d50a0005.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8835.d50a0005.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8835.d50a0005.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8835.d50a0005.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8835.d50a0005.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8835.d50a0005.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8850.1ef4da0e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8850.1ef4da0e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8850.1ef4da0e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8850.1ef4da0e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8850.1ef4da0e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8850.1ef4da0e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8850.1ef4da0e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8850.1ef4da0e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8910.7686ba2c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8910.7686ba2c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8910.7686ba2c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8910.7686ba2c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8910.7686ba2c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8910.7686ba2c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8910.7686ba2c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8910.7686ba2c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8932.e8090749.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8932.e8090749.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8932.e8090749.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8932.e8090749.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8932.e8090749.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8932.e8090749.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8932.e8090749.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8932.e8090749.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8971.cb9861fc.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8971.cb9861fc.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8971.cb9861fc.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8971.cb9861fc.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8971.cb9861fc.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8971.cb9861fc.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8971.cb9861fc.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/8971.cb9861fc.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9007.f28d0779.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9007.f28d0779.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9007.f28d0779.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9007.f28d0779.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9007.f28d0779.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9007.f28d0779.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9007.f28d0779.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9007.f28d0779.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9030.03e4d789.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9030.03e4d789.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9030.03e4d789.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9030.03e4d789.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9030.03e4d789.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9030.03e4d789.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9030.03e4d789.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9030.03e4d789.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9052.67bd17cd.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9052.67bd17cd.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9052.67bd17cd.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9052.67bd17cd.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9052.67bd17cd.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9052.67bd17cd.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9052.67bd17cd.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9052.67bd17cd.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9076.7a2b7e9a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9076.7a2b7e9a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9076.7a2b7e9a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9076.7a2b7e9a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9076.7a2b7e9a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9076.7a2b7e9a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9076.7a2b7e9a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9076.7a2b7e9a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9114.7d0c9ca9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9114.7d0c9ca9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9114.7d0c9ca9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9114.7d0c9ca9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9114.7d0c9ca9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9114.7d0c9ca9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9114.7d0c9ca9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9114.7d0c9ca9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9204.8f0c9c3a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9204.8f0c9c3a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9204.8f0c9c3a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9204.8f0c9c3a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9204.8f0c9c3a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9204.8f0c9c3a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9204.8f0c9c3a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9204.8f0c9c3a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9322.81e49a3d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9322.81e49a3d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9322.81e49a3d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9322.81e49a3d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9322.81e49a3d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9322.81e49a3d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9322.81e49a3d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9322.81e49a3d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9336.9a425d8d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9336.9a425d8d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9336.9a425d8d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9336.9a425d8d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9336.9a425d8d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9336.9a425d8d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9336.9a425d8d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9336.9a425d8d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/935.4dfccbd9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/935.4dfccbd9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/935.4dfccbd9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/935.4dfccbd9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/935.4dfccbd9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/935.4dfccbd9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/935.4dfccbd9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/935.4dfccbd9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9357.709b2aae.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9357.709b2aae.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9357.709b2aae.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9357.709b2aae.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9357.709b2aae.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9357.709b2aae.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9357.709b2aae.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9357.709b2aae.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9403.9f36612d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9403.9f36612d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9403.9f36612d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9403.9f36612d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9403.9f36612d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9403.9f36612d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9403.9f36612d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9403.9f36612d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9454.03f9cbf9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9454.03f9cbf9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9454.03f9cbf9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9454.03f9cbf9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9454.03f9cbf9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9454.03f9cbf9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9454.03f9cbf9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9454.03f9cbf9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9471.3511726f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9471.3511726f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9471.3511726f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9471.3511726f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9471.3511726f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9471.3511726f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9471.3511726f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9471.3511726f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9536.9b33a533.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9536.9b33a533.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9536.9b33a533.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9536.9b33a533.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9536.9b33a533.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9536.9b33a533.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9536.9b33a533.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9536.9b33a533.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9603.dcad1930.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9603.dcad1930.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9603.dcad1930.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9603.dcad1930.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9603.dcad1930.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9603.dcad1930.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9603.dcad1930.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9603.dcad1930.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9607.214ebd42.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9607.214ebd42.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9607.214ebd42.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9607.214ebd42.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9607.214ebd42.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9607.214ebd42.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9607.214ebd42.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9607.214ebd42.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9691.a7a34297.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9691.a7a34297.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9691.a7a34297.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9691.a7a34297.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9691.a7a34297.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9691.a7a34297.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9691.a7a34297.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9691.a7a34297.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9765.07ec2c12.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9765.07ec2c12.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9765.07ec2c12.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9765.07ec2c12.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9765.07ec2c12.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9765.07ec2c12.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9765.07ec2c12.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9765.07ec2c12.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9767.926906cb.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9767.926906cb.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9767.926906cb.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9767.926906cb.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9767.926906cb.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9767.926906cb.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9767.926906cb.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9767.926906cb.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9801.09cd7cd0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9801.09cd7cd0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9801.09cd7cd0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9801.09cd7cd0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9801.09cd7cd0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9801.09cd7cd0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9801.09cd7cd0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9801.09cd7cd0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9880.64c12943.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9880.64c12943.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9880.64c12943.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9880.64c12943.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9880.64c12943.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9880.64c12943.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9880.64c12943.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/9880.64c12943.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api.fbe2c7c1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api.fbe2c7c1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api.fbe2c7c1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api.fbe2c7c1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api.fbe2c7c1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api.fbe2c7c1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api.fbe2c7c1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api.fbe2c7c1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__asset.9dee10b3.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__asset.9dee10b3.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__asset.9dee10b3.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__asset.9dee10b3.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__asset.9dee10b3.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__class_definition.6192771c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__class_definition.6192771c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__class_definition.6192771c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__class_definition.6192771c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__class_definition.6192771c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__class_definition.6192771c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__class_definition.6192771c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__class_definition.6192771c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__data_object.160792b1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__data_object.160792b1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__data_object.160792b1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__data_object.160792b1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__data_object.160792b1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__data_object.160792b1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__data_object.160792b1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__data_object.160792b1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__dependencies.a9508cf9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__dependencies.a9508cf9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__dependencies.a9508cf9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__dependencies.a9508cf9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__dependencies.a9508cf9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__documents.8a5c66b8.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__documents.8a5c66b8.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__documents.8a5c66b8.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__documents.8a5c66b8.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__documents.8a5c66b8.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__documents.8a5c66b8.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__documents.8a5c66b8.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__documents.8a5c66b8.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__elements.5babca9f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__elements.5babca9f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__elements.5babca9f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__elements.5babca9f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__elements.5babca9f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__elements.5babca9f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__elements.5babca9f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__elements.5babca9f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__metadata.e9f2a028.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__metadata.e9f2a028.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__metadata.e9f2a028.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__metadata.e9f2a028.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__metadata.e9f2a028.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__perspectives.936945cf.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__perspectives.936945cf.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__perspectives.936945cf.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__perspectives.936945cf.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__perspectives.936945cf.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__properties.314180ef.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__properties.314180ef.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__properties.314180ef.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__properties.314180ef.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__properties.314180ef.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__reports.50fc5ca0.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__reports.50fc5ca0.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__reports.50fc5ca0.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__reports.50fc5ca0.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__reports.50fc5ca0.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__reports.50fc5ca0.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__reports.50fc5ca0.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__reports.50fc5ca0.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__role.89b3367b.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__role.89b3367b.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__role.89b3367b.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__role.89b3367b.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__role.89b3367b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__schedule.9ccfa450.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__schedule.9ccfa450.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__schedule.9ccfa450.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__schedule.9ccfa450.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__schedule.9ccfa450.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__settings.2c556240.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__settings.2c556240.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__settings.2c556240.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__settings.2c556240.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__settings.2c556240.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__tags.f737e834.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__tags.f737e834.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__tags.f737e834.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__tags.f737e834.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__tags.f737e834.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__thumbnails.a167200d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__thumbnails.a167200d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__thumbnails.a167200d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__thumbnails.a167200d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__thumbnails.a167200d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__translations.7a8790cb.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__translations.7a8790cb.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__translations.7a8790cb.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__translations.7a8790cb.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__translations.7a8790cb.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__user.0c42ebe1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__user.0c42ebe1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__user.0c42ebe1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__user.0c42ebe1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__user.0c42ebe1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__version.7220c1e1.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__version.7220c1e1.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__version.7220c1e1.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__version.7220c1e1.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__version.7220c1e1.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__workflow.ad14d72f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__workflow.ad14d72f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__workflow.ad14d72f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__workflow.ad14d72f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_api__workflow.ad14d72f.js.LICENSE.txt diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_app.ee859643.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_app.9a31719b.js similarity index 99% rename from public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_app.ee859643.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_app.9a31719b.js index a421c48b07..fc7e22f041 100644 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_app.ee859643.js +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_app.9a31719b.js @@ -1,4 +1,4 @@ -/*! For license information please see __federation_expose_app.ee859643.js.LICENSE.txt */ +/*! For license information please see __federation_expose_app.9a31719b.js.LICENSE.txt */ (self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["8234"],{66894(e,t,i){var r={"./ar.inline.svg":["36592","521"],"./ca.inline.svg":["91363","1472"]};function n(e){if(!i.o(r,e))return Promise.resolve().then(function(){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t});var t=r[e],n=t[0];return i.e(t[1]).then(function(){return i(n)})}n.keys=()=>Object.keys(r),n.id=66894,e.exports=n},90670(e,t,i){var r={"./co.inline.svg":["46497","5690"],"./mo.inline.svg":["51075","5904"],"./cv.inline.svg":["47870","5731"],"./do.inline.svg":["60550","8779"],"./lv.inline.svg":["80225","4426"],"./il.inline.svg":["63750","9691"],"./az.inline.svg":["35787","705"],"./lb.inline.svg":["33421","206"],"./st.inline.svg":["36316","3229"],"./ao.inline.svg":["18599","3756"],"./kg.inline.svg":["39441","6186"],"./tj.inline.svg":["50669","5454"],"./tw.inline.svg":["15950","8051"],"./mq.inline.svg":["657","4858"],"./bm.inline.svg":["85750","1003"],"./is.inline.svg":["78771","8272"],"./qa.inline.svg":["70797","3838"],"./bi.inline.svg":["47042","6335"],"./tf.inline.svg":["54457","658"],"./au.inline.svg":["79025","5114"],"./ae.inline.svg":["81057","9114"],"./ck.inline.svg":["43037","446"],"./fm.inline.svg":["8074","5431"],"./sa.inline.svg":["60851","2464"],"./bl.inline.svg":["32273","3066"],"./tm.inline.svg":["84260","101"],"./bh.inline.svg":["21581","1742"],"./um.inline.svg":["59965","4702"],"./nl.inline.svg":["10957","2638"],"./languages/ar.inline.svg":["36592","521"],"./bn.inline.svg":["43311","8372"],"./dm.inline.svg":["52116","3941"],"./lk.inline.svg":["54890","6695"],"./br.inline.svg":["6115","2016"],"./ga.inline.svg":["93631","1428"],"./gb-eng.inline.svg":["12699","3528"],"./km.inline.svg":["48151","172"],"./si.inline.svg":["74315","9336"],"./lu.inline.svg":["86388","85"],"./ml.inline.svg":["91949","9607"],"./as.inline.svg":["77451","3240"],"./vi.inline.svg":["84718","803"],"./mx.inline.svg":["59710","4195"],"./ne.inline.svg":["24458","2503"],"./en.inline.svg":["39632","6313"],"./ky.inline.svg":["6211","3584"],"./bg.inline.svg":["53420","157"],"./gd.inline.svg":["3840","7161"],"./gn.inline.svg":["50138","7527"],"./tg.inline.svg":["6193","3"],"./va.inline.svg":["32454","4715"],"./py.inline.svg":["42628","3653"],"./cz.inline.svg":["11842","9471"],"./my.inline.svg":["92217","8146"],"./ag.inline.svg":["46143","6484"],"./bo.inline.svg":["38116","2117"],"./cc.inline.svg":["60101","9030"],"./hu.inline.svg":["20528","2073"],"./pa.inline.svg":["33052","9357"],"./gm.inline.svg":["94403","7264"],"./sx.inline.svg":["30784","25"],"./gw.inline.svg":["5037","3406"],"./gb-wls.inline.svg":["88263","9052"],"./tc.inline.svg":["12586","6967"],"./cy.inline.svg":["65899","7960"],"./mm.inline.svg":["55589","3846"],"./mr.inline.svg":["5220","8437"],"./ms.inline.svg":["55023","4084"],"./zm.inline.svg":["84830","8195"],"./ls.inline.svg":["36178","2399"],"./np.inline.svg":["48873","2098"],"./ki.inline.svg":["8787","5168"],"./sv.inline.svg":["56910","2739"],"./na.inline.svg":["57886","5331"],"./aq.inline.svg":["1453","7006"],"./gl.inline.svg":["80456","3009"],"./pk.inline.svg":["87494","1643"],"./pg.inline.svg":["42810","103"],"./dk.inline.svg":["85554","6255"],"./fo.inline.svg":["86520","1265"],"./lr.inline.svg":["79677","4718"],"./jm.inline.svg":["57774","7939"],"./kp.inline.svg":["11968","9801"],"./sl.inline.svg":["14948","3125"],"./tt.inline.svg":["51463","2204"],"./sc.inline.svg":["48885","1814"],"./ht.inline.svg":["83371","2472"],"./se.inline.svg":["73367","1708"],"./to.inline.svg":["68150","7419"],"./by.inline.svg":["24338","3935"],"./id.inline.svg":["91182","8547"],"./gr.inline.svg":["37846","9403"],"./mg.inline.svg":["85435","3144"],"./ly.inline.svg":["21288","7073"],"./bd.inline.svg":["85561","8850"],"./ni.inline.svg":["43766","8635"],"./ph.inline.svg":["71295","6052"],"./pl.inline.svg":["41307","8520"],"./ss.inline.svg":["15557","3062"],"./li.inline.svg":["66616","7041"],"./tn.inline.svg":["28241","7210"],"./pe.inline.svg":["97608","145"],"./mc.inline.svg":["17503","7396"],"./ie.inline.svg":["4169","5186"],"./mk.inline.svg":["65543","1180"],"./sd.inline.svg":["81420","2189"],"./nr.inline.svg":["45671","1612"],"./ee.inline.svg":["83221","3750"],"./wf.inline.svg":["89410","8479"],"./gg.inline.svg":["71805","3166"],"./sj.inline.svg":["87714","7679"],"./languages/ca.inline.svg":["91363","1472"],"./no.inline.svg":["16976","6649"],"./cw.inline.svg":["80377","3330"],"./cr.inline.svg":["60266","1303"],"./bz.inline.svg":["53147","6984"],"./pr.inline.svg":["90073","4034"],"./gp.inline.svg":["71652","261"],"./cx.inline.svg":["92656","4329"],"./ye.inline.svg":["19161","1010"],"./vc.inline.svg":["98004","741"],"./hr.inline.svg":["84945","4346"],"./mh.inline.svg":["63694","7171"],"./gb-sct.inline.svg":["89453","830"],"./et.inline.svg":["60570","7799"],"./tv.inline.svg":["96105","7250"],"./md.inline.svg":["92690","687"],"./uy.inline.svg":["79409","7994"],"./us.inline.svg":["18231","4028"],"./nz.inline.svg":["99551","660"],"./ke.inline.svg":["93807","5412"],"./mf.inline.svg":["56832","2121"],"./mv.inline.svg":["88144","2793"],"./hk.inline.svg":["89006","8835"],"./_unknown.inline.svg":["99502"],"./at.inline.svg":["35286","8971"],"./lc.inline.svg":["58882","4799"],"./er.inline.svg":["34460","7053"],"./gu.inline.svg":["47371","6472"],"./ax.inline.svg":["79722","4871"],"./ba.inline.svg":["43050","8231"],"./bb.inline.svg":["77043","4160"],"./kw.inline.svg":["97121","1834"],"./dj.inline.svg":["29053","8574"],"./pf.inline.svg":["31045","5990"],"./kh.inline.svg":["92120","1553"],"./mz.inline.svg":["67180","2845"],"./ng.inline.svg":["64139","1153"],"./ro.inline.svg":["13044","6229"],"./sk.inline.svg":["70714","6270"],"./zw.inline.svg":["63668","2373"],"./in.inline.svg":["75668","2597"],"./iq.inline.svg":["83157","1270"],"./rw.inline.svg":["36716","5277"],"./so.inline.svg":["18193","9322"],"./re.inline.svg":["12206","2179"],"./tl.inline.svg":["52847","7524"],"./pt.inline.svg":["81555","5696"],"./eg.inline.svg":["82963","3392"],"./tk.inline.svg":["26978","8031"],"./ru.inline.svg":["34206","8403"],"./al.inline.svg":["83086","9603"],"./gy.inline.svg":["30071","2492"],"./jp.inline.svg":["75181","1102"],"./mw.inline.svg":["77739","6424"],"./hn.inline.svg":["55461","7334"],"./jo.inline.svg":["24636","8477"],"./cu.inline.svg":["97527","380"],"./ca.inline.svg":["55587","7440"],"./lt.inline.svg":["78623","2980"],"./cm.inline.svg":["5663","8932"],"./tr.inline.svg":["82405","198"],"./am.inline.svg":["46889","5154"],"./ar.inline.svg":["14608","2841"],"./ug.inline.svg":["82563","8800"],"./pw.inline.svg":["31210","9767"],"./fr.inline.svg":["90847","3396"],"./uz.inline.svg":["59812","1797"],"./es.inline.svg":["90919","3068"],"./pn.inline.svg":["72349","1438"],"./be.inline.svg":["49278","1635"],"./eu.inline.svg":["32453","3686"],"./td.inline.svg":["18455","5084"],"./mt.inline.svg":["7330","7935"],"./fi.inline.svg":["40414","8467"],"./pm.inline.svg":["81280","5177"],"./rs.inline.svg":["62840","4225"],"./aw.inline.svg":["3631","9076"],"./cg.inline.svg":["84841","2290"],"./fk.inline.svg":["47372","3197"],"./gi.inline.svg":["39751","2380"],"./gt.inline.svg":["11056","1065"],"./ma.inline.svg":["58337","4154"],"./za.inline.svg":["93634","6911"],"./ps.inline.svg":["53790","6819"],"./cl.inline.svg":["48788","8645"],"./sn.inline.svg":["64790","2267"],"./bq.inline.svg":["54650","8567"],"./nf.inline.svg":["23475","8832"],"./bf.inline.svg":["83383","6572"],"./me.inline.svg":["38525","8910"],"./ir.inline.svg":["41816","4241"],"./ec.inline.svg":["89303","5804"],"./af.inline.svg":["72308","2709"],"./ad.inline.svg":["83654","619"],"./je.inline.svg":["5510","1851"],"./bt.inline.svg":["56009","2162"],"./yt.inline.svg":["90638","35"],"./kn.inline.svg":["98494","1875"],"./mu.inline.svg":["81101","334"],"./om.inline.svg":["20283","8536"],"./zz.inline.svg":["27267","5712"],"./gb.inline.svg":["2534","1019"],"./ge.inline.svg":["60283","4120"],"./sy.inline.svg":["87227","4603"],"./vg.inline.svg":["94208","5753"],"./vn.inline.svg":["88451","9536"],"./sr.inline.svg":["77082","6743"],"./ws.inline.svg":["40417","4698"],"./io.inline.svg":["54847","3748"],"./sh.inline.svg":["54352","281"],"./cf.inline.svg":["51854","8707"],"./cn.inline.svg":["99590","2619"],"./sm.inline.svg":["71503","692"],"./bv.inline.svg":["84999","3836"],"./gh.inline.svg":["9372","365"],"./ua.inline.svg":["31113","8050"],"./sb.inline.svg":["61834","6135"],"./sg.inline.svg":["52857","1762"],"./bs.inline.svg":["9448","8609"],"./vu.inline.svg":["44706","1567"],"./im.inline.svg":["3214","2410"],"./gq.inline.svg":["28207","7828"],"./eh.inline.svg":["75318","235"],"./ve.inline.svg":["30066","4319"],"./gf.inline.svg":["51890","3839"],"./ci.inline.svg":["73595","4680"],"./nu.inline.svg":["56058","6759"],"./hm.inline.svg":["38696","129"],"./it.inline.svg":["13182","4771"],"./nc.inline.svg":["60396","8557"],"./gs.inline.svg":["74897","6458"],"./bw.inline.svg":["28540","7821"],"./mp.inline.svg":["50166","2427"],"./kz.inline.svg":["69466","935"],"./cd.inline.svg":["18716","2893"],"./bj.inline.svg":["42603","2168"],"./tz.inline.svg":["60029","6766"],"./sz.inline.svg":["78834","3055"],"./mn.inline.svg":["99528","7793"],"./la.inline.svg":["45552","5545"],"./ai.inline.svg":["49541","1750"],"./dz.inline.svg":["82797","4062"],"./fj.inline.svg":["30295","3548"],"./kr.inline.svg":["31474","2015"],"./ch.inline.svg":["61344","3657"],"./de.inline.svg":["89756","141"],"./th.inline.svg":["10315","1688"]};function n(e){if(!i.o(r,e))return Promise.resolve().then(function(){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t});var t=r[e],n=t[0];return Promise.all(t.slice(1).map(i.e)).then(function(){return i(n)})}n.keys=()=>Object.keys(r),n.id=90670,e.exports=n},99502(e,t,i){"use strict";i.r(t),i.d(t,{default:()=>n});var r=i(74848);i(47867);let n=e=>(0,r.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",viewBox:"0 0 640 480",width:"1em",height:"1em",...e,children:[(0,r.jsx)("path",{d:"M0 0h640v480H0z",style:{fill:"#f2f2f2",stroke:"#000",strokeMiterlimit:10}}),(0,r.jsx)("path",{d:"M295 316.4c-.1-4.6-.2-8.1-.2-10.4 0-13.6 1.9-25.4 5.8-35.3 2.8-7.5 7.4-15 13.7-22.6 4.6-5.5 13-13.6 25-24.2s19.8-19.1 23.4-25.4 5.4-13.2 5.4-20.6c0-13.5-5.3-25.4-15.8-35.6S328.8 127 313.5 127c-14.8 0-27.1 4.6-37 13.9s-16.4 23.7-19.5 43.4l-35.7-4.2c3.2-26.4 12.8-46.5 28.6-60.6q23.85-21 63-21c27.6 0 49.7 7.5 66.2 22.6 16.5 15 24.7 33.2 24.7 54.6 0 12.3-2.9 23.7-8.7 34.1s-17.1 23.1-33.9 38q-16.95 15-22.2 22.2c-3.5 4.8-6 10.2-7.7 16.4s-2.6 16.2-2.9 30.1H295zm-2.1 69.6v-39.5h39.5V386z",style:{fill:"#4f4f4f"}})]})},88358(e,t,i){"use strict";i.d(t,{g:()=>x,A:()=>j});var r=i(60142),n=i.n(r),l=i(21429),a=i(55638),o=i(46881),s=i(88605),d=i(35864),c=i(41630),u=i(74365);let p=async e=>{let t=e.map(e=>({key:e,type:"simple"}));await c.M_.dispatch(u.FH.endpoints.translationCreate.initiate({createTranslation:{translationData:t}}))},m=(0,s.createSlice)({name:"missingTranslations",initialState:[],reducers:{addMissingTranslation:(e,t)=>{let{payload:i}=t;e.push(i)},removeMissingTranslations:(e,t)=>{let{payload:i}=t,r=Array.isArray(i)?i:[i];return e.filter(e=>!r.includes(e))}}}),{addMissingTranslation:g,removeMissingTranslations:h}=m.actions;m.name,(0,o.injectSliceWithState)(m);let v=(0,d.debounce)(async e=>{var t;let i=e.getState();if((null==(t=i.authentication)?void 0:t.isAuthenticated)!==!0)return;let r=i.missingTranslations;e.dispatch(h(r)),p(r)},3e3),f=(0,s.createListenerMiddleware)();f.startListening({actionCreator:g,effect:async(e,t)=>{v.cancel(),v(t)}}),(0,o.addAppMiddleware)(f.middleware);var y=i(11207),b=i(25085);let x="en";n().use(l.initReactI18next).init({fallbackLng:x,ns:["translation"],resources:{},keySeparator:!1,saveMissing:!0,postProcess:["returnKeyIfEmpty"]}).catch(()=>{(0,a.Ay)(new a.$g("Could not load translations"))}),n().use(y.K),n().on("missingKey",(e,t,i,r)=>{(0,b.isNonEmptyString)(i)&&(c.M_.dispatch(g(i)),n().addResource(x,t,i,i))});let j=n()},11207(e,t,i){"use strict";i.d(t,{K:()=>r});let r={type:"postProcessor",name:"returnKeyIfEmpty",process(e,t,i,r){let n=e;if(""===e&&(n=t,Array.isArray(t)&&(n=t[0])),"string"!=typeof n)try{n=JSON.stringify(n)}catch(r){let i=Array.isArray(t)?t[0]:t;return console.warn(`Translation key '${i}' with value '${e}' is not translatable`),Array.isArray(t)?t[0]:t}return n}}},27755(e,t,i){"use strict";i.d(t,{s:()=>r});let r=new class{registerModule(e){this.registry.push(e)}initModules(){this.registry.forEach(e=>{e.onInit()})}constructor(){this.registry=[]}}},42817(e,t,i){"use strict";i.d(t,{g:()=>a});var r=i(63364),n=i(10600),l=i(35864);let a=new class{getValues(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(!e)return{...this.values};try{let e={};for(let[t,i]of Object.entries(this.values)){let r=this.transformEditableValue(t,i);e[t]=r}return e}catch(e){return console.warn("Could not apply transformValueForApi transformations:",e),{...this.values}}}getValue(e){return this.values[e]}updateValue(e,t){this.values[e]=t}initializeValues(e){Object.assign(this.values,e)}removeValues(e){for(let t of e)delete this.values[t]}getInheritanceState(e){return this.inheritanceState[e]??!1}setInheritanceState(e,t){this.inheritanceState[e]=t}initializeInheritanceState(e){Object.assign(this.inheritanceState,e)}registerDynamicEditables(e){for(let t of e)this.dynamicEditables[t.id]=t}unregisterDynamicEditables(e){for(let t of e)delete this.dynamicEditables[t]}getEditableDefinitions(){let e=(()=>{try{return window.editableDefinitions??[]}catch(e){return console.warn("Could not get editable definitions from iframe window:",e),[]}})();return[...e,...Object.values(this.dynamicEditables).filter(t=>!e.some(e=>e.id===t.id))].filter(e=>e.name in this.values)}transformEditableValue(e,t){let i=this.getEditableDefinitions().find(t=>t.name===e);if((0,l.isNil)(i))return t;let r=this.getDynamicTypeForEditable(i.type);if((0,l.isNil)(r))return t;let n=r.transformValueForApi(t.data,i);return{type:t.type,data:n}}getDynamicTypeForEditable(e){try{let t=r.kL.get(n.K["DynamicTypes/DocumentEditableRegistry"]);if(!t.hasDynamicType(e))return null;return t.getDynamicType(e)}catch(t){return console.warn(`Could not get dynamic type for editable type "${e}":`,t),null}}constructor(){this.values={},this.inheritanceState={},this.dynamicEditables={}}}},46096(e,t,i){"use strict";i.d(t,{BB:()=>o,P3:()=>l,c4:()=>n,qH:()=>a});var r=i(35864);class n extends Error{constructor(e="PimcoreStudio API is not available"){super(e),this.name="PimcoreStudioApiNotAvailableError"}}class l extends Error{constructor(e="Cross-origin access to PimcoreStudio API denied"){super(e),this.name="CrossOriginApiAccessError"}}function a(){try{let e=window.parent;if(!(0,r.isNil)(null==e?void 0:e.PimcoreStudio))return e.PimcoreStudio}catch(e){console.debug("Cannot access parent window PimcoreStudio API due to cross-origin restrictions")}try{let e=window;if(!(0,r.isNil)(null==e?void 0:e.PimcoreStudio))return e.PimcoreStudio}catch(e){throw new l("Cannot access current window PimcoreStudio API")}throw new n("PimcoreStudio API is not available in parent or current window")}function o(){try{return a(),!0}catch(e){if(e instanceof n||e instanceof l)return!1;throw e}}},41630(e,t,i){"use strict";i.d(t,{d$:()=>m,GV:()=>f,jL:()=>v,hb:()=>y,M_:()=>g,eg:()=>b,fu:()=>h});var r=i(88605),n=i(62284),l=i(53073);let a={id:0,username:"",email:"",firstname:"",lastname:"",permissions:[],isAdmin:!1,classes:[],docTypes:[],language:"en",activePerspective:"0",perspectives:[],dateTimeLocale:"",welcomeScreen:!1,memorizeTabs:!1,hasImage:!1,contentLanguages:[],keyBindings:[],allowedLanguagesForEditingWebsiteTranslations:[],allowedLanguagesForViewingWebsiteTranslations:[],allowDirtyClose:!1,twoFactorAuthentication:{enabled:!1,required:!1,type:"",active:!1}},o=e=>t=>i=>{if((0,r.isRejectedWithValue)(i)){var n;let r=i.payload,l=null==(n=i.meta)?void 0:n.arg;if((null==r?void 0:r.status)===401)return"endpointName"in l&&"userGetCurrentInformation"===l.endpointName?t(i):(e.dispatch({type:"auth/setUser",payload:a}),void e.dispatch({type:"authentication/setAuthState",payload:!1}))}return t(i)},s=[l.api],d=()=>(0,r.combineSlices)({},...s).withLazyLoadedSlices(),c=(0,r.createDynamicMiddleware)(),{addMiddleware:u,withMiddleware:p}=c,m=d(),g=(0,r.configureStore)({reducer:m,middleware:e=>e({serializableCheck:{ignoredActions:["execution-engine/jobReceived"],ignoredActionPaths:["execution-engine","meta"],ignoredPaths:["execution-engine","meta"]}}).concat(l.api.middleware,o,c.middleware)}),h=e=>{s.push(e);let t=d();return g.replaceReducer(t),t},v=n.useDispatch,f=n.useSelector,y=u.withTypes(),b=p.withTypes()},66828(e,t,i){"use strict";i.d(t,{G8:()=>o,Rc:()=>l,qj:()=>a});var r=i(74353),n=i.n(r);let l=(e,t)=>n().isDayjs(e)?e:"number"==typeof e?n().unix(e):"string"==typeof e?n()(e,t):null,a=(e,t,i)=>{if(null===e)return null;if("timestamp"===t){let t=e.startOf("day");return new Date(t.year(),t.month(),t.date()).getTime()/1e3}return"dateString"===t?void 0!==i?e.format(i):e.format():e},o=e=>null==e?"":n().isDayjs(e)?"[dayjs object]: "+e.toString():e.toString()},16450(e,t,i){"use strict";i.d(t,{F:()=>l});var r=i(47867),n=i(62784);let l=()=>{let e=(0,r.useContext)(n.Z);if(void 0===e)throw Error("useDynamicFilter must be used within a DynamicFilterProvider");return e}},8674(e,t,i){"use strict";i.d(t,{b:()=>r.b});var r=i(8561)},41417(e,t,i){"use strict";i.d(t,{s:()=>h});var r=i(74848);i(47867);var n=i(94788),l=i(86569),a=i(25085),o=i(81898),s=i(13755),d=i(22014),c=i(7814),u=i(8651),p=i.n(u);let m=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{editableHtmlDropContent:i` position: relative; border: 1px solid ${t.colorBorder}; @@ -1859,7 +1859,7 @@ overflow: hidden; color: ${t.colorTextTreeElement}; } - `}},{hashPriority:"low"});var o=i(41989),s=i(68494),d=i(27839),c=i(23050),u=i(35864),p=i(73077),m=i(32396),g=i(81031),h=i(8651),v=i.n(h);let f={id:Math.random().toString(16).slice(2),internalKey:"",icon:{type:"name",value:"folder"},label:"",labelAddon:void 0,children:[],permissions:{list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1},level:0,locked:null,isLocked:!1,isRoot:!1},{useToken:y}=n.theme,b=(0,l.forwardRef)(function(e,t){let i,{id:h=f.id,internalKey:b=f.internalKey,icon:x=f.icon,label:j=f.label,level:w=f.level,isRoot:C=f.isRoot,isLoading:S=!1,danger:T=!1,wrapNode:I=e=>e,...k}=e,{token:E}=y(),{styles:D}=a(),{renderNodeContent:N,onSelect:P,onRightClick:A,nodesRefs:F,nodeOrder:$,tooltipSlotName:M}=(0,l.useContext)(o.Uz),{isExpanded:O,setExpanded:_,isSelected:L,isScrollTo:R,setScrollTo:B,setSelectedIds:z}=(0,c.W)(h),V={id:h,icon:x,label:j,internalKey:b,level:w,isLoading:S,isRoot:C,danger:T,...k};function G(){z([h]),void 0!==P&&P(V)}(0,l.useEffect)(()=>()=>{void 0!==F&&delete F.current[b]},[]),(0,l.useEffect)(()=>{if(R){var e;let t=null==F||null==(e=F.current[b])?void 0:e.el;(0,u.isNil)(t)||(!function(e){let t=e.closest("."+p.kn);if(!(0,u.isNil)(t)){let i=t.getBoundingClientRect(),r=e.getBoundingClientRect(),n=r.top-i.top+t.scrollTop,l=t.scrollTop;if(0===i.height)return;let a=t.offsetHeight-t.clientHeight;nl+i.height-a&&t.scrollTo({top:n-i.height+r.height+a,behavior:"smooth"})}}(t),B(!1))}},[R,F,b,B]);let U=(0,r.jsx)(n.Flex,{align:"center",className:v()("tree-node__content-inner"),gap:"small",justify:"center",onClick:function(e){G()},onContextMenu:function(e){void 0!==A&&A(e,V)},onKeyDown:function(e){let t,i;"Enter"===e.key&&G(),"ArrowRight"===e.key&&_(!0),"ArrowLeft"===e.key&&_(!1),"ArrowDown"===e.key&&(e.preventDefault(),(t=$().indexOf(b))<$().length-1&&F.current[$()[t+1]].el.focus()),"ArrowUp"===e.key&&(e.preventDefault(),(i=$().indexOf(b))>0&&F.current[$()[i-1]].el.focus())},ref:function(e){var t;t=e,F.current[b]={el:t,node:V}},role:"button",style:{paddingLeft:E.paddingMD*w,minWidth:`${20*w+200}px`},tabIndex:-1,children:(0,r.jsxs)(n.Flex,{align:"center",className:"tree-node__content-wrapper-outer w-full",justify:"center",children:[!0!==C&&(0,r.jsx)(d.K,{node:V,state:[O,_]}),(0,r.jsx)("div",{className:"tree-node__content-wrapper",children:(0,r.jsx)(N,{node:V})})]})});return(0,r.jsxs)("div",{className:(i=["tree-node",D.treeNode],T&&i.push("tree-node--danger"),!0===C&&i.push("tree-node--is-root"),i.join(" ")),"data-testid":(0,m.yu)(h,k.elementType),ref:t,children:[(0,u.isNil)(M)?(0,r.jsx)("div",{className:v()("tree-node__content",{"tree-node__content--selected":L}),children:I(U)}):(0,r.jsx)(g.b,{component:M,props:{node:V,children:(0,r.jsx)("div",{className:v()("tree-node__content",{"tree-node__content--selected":L}),children:I(U)})}}),O&&(0,r.jsx)(s.Z,{node:V})]})})},56292(e,t,i){"use strict";i.d(t,{l:()=>o});var r=i(74848),n=i(23050),l=i(75525);i(47867);var a=i(78254);let o=e=>{let{page:t,setPage:i}=(0,n.W)(e.node.id),{pageSize:o}=(0,a._)(),s=e.total;return(0,r.jsx)(l.d,{current:t,defaultPageSize:o,hideOnSinglePage:!0,onChange:function(e){t!==e&&i(e)},total:s})}},54604(e,t,i){"use strict";i.d(t,{X:()=>a,j:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{nodeApiHook:t,children:i}=e,a=(0,n.useMemo)(()=>({nodeApiHook:t}),[t]);return(0,r.jsx)(l.Provider,{value:a,children:i})}},10716(e,t,i){"use strict";i.d(t,{S:()=>a,g:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)({pageSize:30}),a=e=>{let{children:t,classIds:i,pqlQuery:a,pageSize:o}=e,s=(0,n.useMemo)(()=>({classIds:i,pqlQuery:a,pageSize:o}),[i,a,o]);return(0,r.jsx)(l.Provider,{value:s,children:t})}},81194(e,t,i){"use strict";i.d(t,{b:()=>a,n:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,treeId:i}=e,a=(0,n.useMemo)(()=>({treeId:i}),[i]);return(0,r.jsx)(l.Provider,{value:a,children:t})}},86218(e,t,i){"use strict";i.d(t,{$:()=>l,P:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,permissions:i}=e,a=(0,n.useMemo)(()=>({permissions:i}),[i]);return(0,r.jsx)(l.Provider,{value:a,children:t})}},63186(e,t,i){"use strict";i.d(t,{s:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(35864),a=i(23050),o=i(78254);let{Search:s}=n.Input,d=e=>{let{searchTerm:t,setSearchTerm:i,setPage:n}=(0,a.W)(e.node.id),{total:d}=e,{pageSize:c}=(0,o._)();return!(0,l.isEmpty)(t)||d>c?(0,r.jsx)(s,{"aria-label":e.label,defaultValue:t,loading:e.isLoading,onSearch:function(e){i(""===e?void 0:e),n(1)},placeholder:e.label,size:"small"}):(0,r.jsx)(r.Fragment,{})}},27202(e,t,i){"use strict";i.d(t,{E:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(78535),a=i(64756),o=i(2338);let s=e=>(0,r.jsx)(l.motion.div,{animate:{opacity:1},initial:{opacity:0},...e,children:(0,r.jsx)(a.a,{padding:{top:"extra-small",bottom:"extra-small",right:"extra-small"},children:(0,r.jsx)(o.$,{className:"w-full",direction:"vertical",size:"extra-small",children:Array.from({length:5}).map((e,t)=>(0,r.jsx)(n.Skeleton.Input,{active:!0,block:!0,style:{height:16}},t))})})})},56974(e,t,i){"use strict";i.d(t,{w:()=>p});var r=i(74848),n=i(47867),l=i(32773),a=i(47972),o=i(29740),s=i(41423),d=i(25750),c=i(7814),u=i(40703);let p=e=>{let{data:t,onChange:i}=e,[p,m]=(0,n.useState)(t),g=e=>{m(e),void 0!==i&&i(e)};(0,n.useEffect)(()=>{m(t)},[t]);let h=p.map(e=>{let t=e.id,i="dataobject.classificationstore"===e.type;if(i){var n;t=`${e.id}-${JSON.stringify({keyId:e.config.keyId,groupId:null==(n=e.config)?void 0:n.groupId})}`}return{id:e.id,key:t,title:e.id,children:(0,r.jsx)(c.m,{title:e.nameTooltip,children:(0,r.jsx)(s.v,{children:e.translationKey})}),body:(0,r.jsx)(a.C,{...e,onChange:t=>{let i,r;i=p.findIndex(t=>t.id===e.id),"dataobject.classificationstore"===e.type&&(i=p.findIndex(t=>{var i,r,n,l;return t.id===e.id&&(null==(i=t.config)?void 0:i.keyId)===(null==(r=e.config)?void 0:r.keyId)&&(null==(n=t.config)?void 0:n.groupId)===(null==(l=e.config)?void 0:l.groupId)})),(r=[...p])[i]={...r[i],data:t},g(r)}}),renderRightToolbar:(0,r.jsxs)(d.s,{gap:"mini",children:[!0===e.localizable&&(0,r.jsx)(u.k,{customKeys:i?["default"]:[],isNullable:!0,onChange:t=>{let i,r;i=p.findIndex(t=>t.id===e.id),"dataobject.classificationstore"===e.type&&(i=p.findIndex(t=>{var i,r,n,l;return t.id===e.id&&(null==(i=t.config)?void 0:i.keyId)===(null==(r=e.config)?void 0:r.keyId)&&(null==(n=t.config)?void 0:n.groupId)===(null==(l=e.config)?void 0:l.groupId)})),(r=[...p])[i]={...r[i],locale:t},g(r)},value:void 0===e.locale?null:e.locale},"language"),(0,r.jsx)(o.K,{icon:{value:"close"},onClick:()=>{"dataobject.classificationstore"===e.type?g(p.filter(t=>{var i,r,n,l;return t.id!==e.id||(null==(i=t.config)?void 0:i.keyId)!==(null==(r=e.config)?void 0:r.keyId)||(null==(n=t.config)?void 0:n.groupId)!==(null==(l=e.config)?void 0:l.groupId)})):g(p.filter(t=>t.id!==e.id))}},"remove")]})}});return(0,n.useMemo)(()=>(0,r.jsx)(l.N,{items:h}),[h])}},68194(e,t,i){"use strict";i.d(t,{C:()=>a});var r=i(74848);i(47867);var n=i(22014),l=i(25750);let a=e=>{let{value:t,ellipsis:i,...a}=e;if(t.includes(".")&&!0===i){let e=t.split("."),o=e.pop(),s=e.join(".");return(0,r.jsxs)(l.s,{...a,children:[(0,r.jsx)(n.E,{ellipsis:!!i&&{tooltip:{title:t,overlayStyle:{maxWidth:"min(100%, 500px)"},mouseEnterDelay:.3}},style:{color:"inherit"},children:s}),".",(0,r.jsx)(n.E,{style:{whiteSpace:"nowrap",color:"inherit"},children:o})]})}return(0,r.jsx)(n.E,{ellipsis:i,...a,children:t})}},32930(e,t,i){"use strict";i.d(t,{i:()=>f});var r=i(74848),n=i(47867),l=i.n(n),a=i(99502),o=i(18613);let s={aa:"er",af:"za",am:"et",as:"in",ast:"es",asa:"tz",az:"az",bas:"cm",eu:"es",be:"by",bem:"zm",bez:"tz",bg:"bg",bm:"ml",bn:"bd",br:"fr",brx:"in",bs:"ba",cs:"cz",da:"dk",de:"de",dz:"bt",el:"gr",en:"gb",es:"es",et:"ee",fi:"fi",fo:"fo",fr:"fr",ga:"ie",gv:"im",he:"il",hi:"in",hr:"hr",hu:"hu",hy:"am",id:"id",ig:"ng",is:"is",it:"it",ja:"jp",ka:"ge",os:"ge",kea:"cv",kk:"kz",kl:"gl",km:"kh",ko:"kr",lg:"ug",lo:"la",lt:"lt",mg:"mg",mk:"mk",mn:"mn",ms:"my",mt:"mt",my:"mm",nb:"no",ne:"np",nl:"nl",nn:"no",pl:"pl",pt:"pt",ro:"ro",ru:"ru",sg:"cf",sk:"sk",sl:"si",sq:"al",sr:"rs",sv:"se",swc:"cd",th:"th",to:"to",tr:"tr",tzm:"ma",uk:"ua",uz:"uz",vi:"vn",zh:"cn",gd:"gb-sct","gd-gb":"gb-sct",cy:"gb-wls","cy-gb":"gb-wls",fy:"nl",xh:"za",yo:"bj",zu:"za",ta:"lk",te:"in",ss:"za",sw:"ke",so:"so",si:"lk",ii:"cn","zh-hans":"cn","zh-hant":"cn",sn:"zw",rm:"ch",pa:"in",fa:"ir",lv:"lv",gl:"es",fil:"ph"},d=async e=>{try{let t=await i(90670)(`./${e}.inline.svg`);return void 0!==t.default?t.default:t}catch{return null}},c=async e=>{try{let t=await i(66894)(`./${e}.inline.svg`);return void 0!==t.default?t.default:t}catch{return null}},u={},p={},m=async e=>{if(void 0!==u[e])return u[e];let t=await d(e)!==null;return u[e]=t,t},g=async e=>{if(void 0!==p[e])return p[e];let t=await c(e)!==null;return p[e]=t,t},h=async e=>{let t=e.toLowerCase().replace("_","-"),i=t.split("-"),r=i[0],n=i.length>1?i[i.length-1]:null;return void 0!==s[t]?{flagCode:s[t],isLanguageFlag:!1}:await g(t)?{flagCode:t,isLanguageFlag:!0}:null!==n&&n!==r&&await m(n)?{flagCode:n,isLanguageFlag:!1}:r!==t&&await g(r)?{flagCode:r,isLanguageFlag:!0}:await m(t)?{flagCode:t,isLanguageFlag:!1}:{flagCode:"_unknown",isLanguageFlag:!1}},v={},f=e=>{let{value:t,width:i=21,height:n=15}=e,[s,u]=l().useState(null),[p,m]=l().useState(!0);return(l().useEffect(()=>{if(null===t||""===t){u(null),m(!1);return}if(void 0!==v[t]){u(v[t]),m(!1);return}(async()=>{try{let{flagCode:e,isLanguageFlag:i}=await h(t),r=i?await c(e):await d(e);v[t]=r,u(r)}catch(e){(0,o.trackError)(new o.GeneralError(`Failed to resolve flag for language ${t}: ${e}`)),v[t]=null,u(null)}finally{m(!1)}})()},[t]),p)?(0,r.jsx)("div",{style:{width:i,height:n,background:"#f0f0f0"}}):null!==s&&l().isValidElement(s)?l().cloneElement(s,{style:{width:i,height:n},width:i.toString(),height:n.toString()}):(0,r.jsx)(a.default,{style:{width:i,height:n}})}},25750(e,t,i){"use strict";i.d(t,{s:()=>u});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(35864);let d=(0,i(44241).createStyles)((e,t)=>{let{css:i}=e;return{rowColGap:i` + `}},{hashPriority:"low"});var o=i(41989),s=i(68494),d=i(27839),c=i(23050),u=i(35864),p=i(73077),m=i(32396),g=i(81031),h=i(8651),v=i.n(h);let f={id:Math.random().toString(16).slice(2),internalKey:"",icon:{type:"name",value:"folder"},label:"",labelAddon:void 0,children:[],permissions:{list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1},level:0,locked:null,isLocked:!1,isRoot:!1},{useToken:y}=n.theme,b=(0,l.forwardRef)(function(e,t){let i,{id:h=f.id,internalKey:b=f.internalKey,icon:x=f.icon,label:j=f.label,level:w=f.level,isRoot:C=f.isRoot,isLoading:S=!1,danger:T=!1,wrapNode:I=e=>e,...k}=e,{token:E}=y(),{styles:D}=a(),{renderNodeContent:N,onSelect:P,onRightClick:A,nodesRefs:F,nodeOrder:$,tooltipSlotName:M}=(0,l.useContext)(o.Uz),{isExpanded:O,setExpanded:_,isSelected:L,isScrollTo:R,setScrollTo:B,setSelectedIds:z}=(0,c.W)(h),V={id:h,icon:x,label:j,internalKey:b,level:w,isLoading:S,isRoot:C,danger:T,...k};function G(){z([h]),void 0!==P&&P(V)}(0,l.useEffect)(()=>()=>{void 0!==F&&delete F.current[b]},[]),(0,l.useEffect)(()=>{if(R){var e;let t=null==F||null==(e=F.current[b])?void 0:e.el;(0,u.isNil)(t)||(!function(e){let t=e.closest("."+p.kn);if(!(0,u.isNil)(t)){let i=t.getBoundingClientRect(),r=e.getBoundingClientRect(),n=r.top-i.top+t.scrollTop,l=t.scrollTop;if(0===i.height)return;let a=t.offsetHeight-t.clientHeight;nl+i.height-a&&t.scrollTo({top:n-i.height+r.height+a,behavior:"smooth"})}}(t),B(!1))}},[R,F,b,B]);let U=(0,r.jsx)(n.Flex,{align:"center",className:v()("tree-node__content-inner"),gap:"small",justify:"center",onClick:function(e){G()},onContextMenu:function(e){void 0!==A&&A(e,V)},onKeyDown:function(e){let t,i;"Enter"===e.key&&G(),"ArrowRight"===e.key&&_(!0),"ArrowLeft"===e.key&&_(!1),"ArrowDown"===e.key&&(e.preventDefault(),(t=$().indexOf(b))<$().length-1&&F.current[$()[t+1]].el.focus()),"ArrowUp"===e.key&&(e.preventDefault(),(i=$().indexOf(b))>0&&F.current[$()[i-1]].el.focus())},ref:function(e){var t;t=e,F.current[b]={el:t,node:V}},role:"button",style:{paddingLeft:E.paddingMD*w,minWidth:`${20*w+200}px`},tabIndex:-1,children:(0,r.jsxs)(n.Flex,{align:"center",className:"tree-node__content-wrapper-outer w-full",justify:"center",children:[!0!==C&&(0,r.jsx)(d.K,{node:V,state:[O,_]}),(0,r.jsx)("div",{className:"tree-node__content-wrapper",children:(0,r.jsx)(N,{node:V})})]})});return(0,r.jsxs)("div",{className:(i=["tree-node",D.treeNode],T&&i.push("tree-node--danger"),!0===C&&i.push("tree-node--is-root"),i.join(" ")),"data-testid":(0,m.yu)(h,k.elementType),ref:t,children:[(0,u.isNil)(M)?(0,r.jsx)("div",{className:v()("tree-node__content",{"tree-node__content--selected":L}),children:I(U)}):(0,r.jsx)(g.b,{component:M,props:{node:V,children:(0,r.jsx)("div",{className:v()("tree-node__content",{"tree-node__content--selected":L}),children:I(U)})}}),O&&(0,r.jsx)(s.Z,{node:V})]})})},56292(e,t,i){"use strict";i.d(t,{l:()=>o});var r=i(74848),n=i(23050),l=i(75525);i(47867);var a=i(78254);let o=e=>{let{page:t,setPage:i}=(0,n.W)(e.node.id),{pageSize:o}=(0,a._)(),s=e.total;return(0,r.jsx)(l.d,{current:t,defaultPageSize:o,hideOnSinglePage:!0,onChange:function(e){t!==e&&i(e)},total:s})}},54604(e,t,i){"use strict";i.d(t,{X:()=>a,j:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{nodeApiHook:t,children:i}=e,a=(0,n.useMemo)(()=>({nodeApiHook:t}),[t]);return(0,r.jsx)(l.Provider,{value:a,children:i})}},10716(e,t,i){"use strict";i.d(t,{S:()=>a,g:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)({pageSize:30}),a=e=>{let{children:t,classIds:i,pqlQuery:a,pageSize:o}=e,s=(0,n.useMemo)(()=>({classIds:i,pqlQuery:a,pageSize:o}),[i,a,o]);return(0,r.jsx)(l.Provider,{value:s,children:t})}},81194(e,t,i){"use strict";i.d(t,{b:()=>a,n:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,treeId:i}=e,a=(0,n.useMemo)(()=>({treeId:i}),[i]);return(0,r.jsx)(l.Provider,{value:a,children:t})}},86218(e,t,i){"use strict";i.d(t,{$:()=>l,P:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,permissions:i}=e,a=(0,n.useMemo)(()=>({permissions:i}),[i]);return(0,r.jsx)(l.Provider,{value:a,children:t})}},63186(e,t,i){"use strict";i.d(t,{s:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(35864),a=i(23050),o=i(78254);let{Search:s}=n.Input,d=e=>{let{searchTerm:t,setSearchTerm:i,setPage:n}=(0,a.W)(e.node.id),{total:d}=e,{pageSize:c}=(0,o._)();return!(0,l.isEmpty)(t)||d>c?(0,r.jsx)(s,{"aria-label":e.label,defaultValue:t,loading:e.isLoading,onSearch:function(e){i(""===e?void 0:e),n(1)},placeholder:e.label,size:"small"}):(0,r.jsx)(r.Fragment,{})}},27202(e,t,i){"use strict";i.d(t,{E:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(78535),a=i(64756),o=i(2338);let s=e=>(0,r.jsx)(l.motion.div,{animate:{opacity:1},initial:{opacity:0},...e,children:(0,r.jsx)(a.a,{padding:{top:"extra-small",bottom:"extra-small",right:"extra-small"},children:(0,r.jsx)(o.$,{className:"w-full",direction:"vertical",size:"extra-small",children:Array.from({length:5}).map((e,t)=>(0,r.jsx)(n.Skeleton.Input,{active:!0,block:!0,style:{height:16}},t))})})})},56974(e,t,i){"use strict";i.d(t,{w:()=>p});var r=i(74848),n=i(47867),l=i(32773),a=i(47972),o=i(29740),s=i(41423),d=i(25750),c=i(7814),u=i(40703);let p=e=>{let{data:t,onChange:i}=e,[p,m]=(0,n.useState)(t),g=e=>{m(e),void 0!==i&&i(e)};(0,n.useEffect)(()=>{m(t)},[t]);let h=p.map(e=>{let t=e.id,i="dataobject.classificationstore"===e.type;if(i){var n;t=`${e.id}-${JSON.stringify({keyId:e.config.keyId,groupId:null==(n=e.config)?void 0:n.groupId})}`}return{id:e.id,key:t,title:e.id,children:(0,r.jsx)(c.m,{title:e.nameTooltip,children:(0,r.jsx)(s.v,{children:e.translationKey})}),body:(0,r.jsx)(a.C,{...e,onChange:t=>{let i,r;i=p.findIndex(t=>t.id===e.id),"dataobject.classificationstore"===e.type&&(i=p.findIndex(t=>{var i,r,n,l;return t.id===e.id&&(null==(i=t.config)?void 0:i.keyId)===(null==(r=e.config)?void 0:r.keyId)&&(null==(n=t.config)?void 0:n.groupId)===(null==(l=e.config)?void 0:l.groupId)})),(r=[...p])[i]={...r[i],data:t},g(r)}}),renderRightToolbar:(0,r.jsxs)(d.s,{gap:"mini",children:[!0===e.localizable&&(0,r.jsx)(u.k,{customKeys:i?["default"]:[],isNullable:!0,onChange:t=>{let i,r;i=p.findIndex(t=>t.id===e.id),"dataobject.classificationstore"===e.type&&(i=p.findIndex(t=>{var i,r,n,l;return t.id===e.id&&(null==(i=t.config)?void 0:i.keyId)===(null==(r=e.config)?void 0:r.keyId)&&(null==(n=t.config)?void 0:n.groupId)===(null==(l=e.config)?void 0:l.groupId)})),(r=[...p])[i]={...r[i],locale:t},g(r)},value:void 0===e.locale?null:e.locale},"language"),(0,r.jsx)(o.K,{icon:{value:"close"},onClick:()=>{"dataobject.classificationstore"===e.type?g(p.filter(t=>{var i,r,n,l;return t.id!==e.id||(null==(i=t.config)?void 0:i.keyId)!==(null==(r=e.config)?void 0:r.keyId)||(null==(n=t.config)?void 0:n.groupId)!==(null==(l=e.config)?void 0:l.groupId)})):g(p.filter(t=>t.id!==e.id))}},"remove")]})}});return(0,n.useMemo)(()=>(0,r.jsx)(l.N,{items:h}),[h])}},68194(e,t,i){"use strict";i.d(t,{C:()=>a});var r=i(74848);i(47867);var n=i(22014),l=i(25750);let a=e=>{let{value:t,ellipsis:i,...a}=e;if(t.includes(".")&&!0===i){let e=t.split("."),o=e.pop(),s=e.join(".");return(0,r.jsxs)(l.s,{...a,children:[(0,r.jsx)(n.E,{ellipsis:!!i&&{tooltip:{title:t,overlayStyle:{maxWidth:"min(100%, 500px)"},mouseEnterDelay:.3}},style:{color:"inherit"},children:s}),".",(0,r.jsx)(n.E,{style:{whiteSpace:"nowrap",color:"inherit"},children:o})]})}return(0,r.jsx)(n.E,{ellipsis:i,...a,children:t})}},32930(e,t,i){"use strict";i.d(t,{i:()=>f});var r=i(74848),n=i(47867),l=i.n(n),a=i(99502),o=i(18613);let s={aa:"er",af:"za",am:"et",as:"in",ast:"es",asa:"tz",az:"az",bas:"cm",eu:"es",be:"by",bem:"zm",bez:"tz",bg:"bg",bm:"ml",bn:"bd",br:"fr",brx:"in",bs:"ba",cs:"cz",da:"dk",de:"de",dz:"bt",el:"gr",en:"gb",es:"es",et:"ee",fi:"fi",fo:"fo",fr:"fr",ga:"ie",gv:"im",he:"il",hi:"in",hr:"hr",hu:"hu",hy:"am",id:"id",ig:"ng",is:"is",it:"it",ja:"jp",ka:"ge",os:"ge",kea:"cv",kk:"kz",kl:"gl",km:"kh",ko:"kr",lg:"ug",lo:"la",lt:"lt",mg:"mg",mk:"mk",mn:"mn",ms:"my",mt:"mt",my:"mm",nb:"no",ne:"np",nl:"nl",nn:"no",pl:"pl",pt:"pt",ro:"ro",ru:"ru",sg:"cf",sk:"sk",sl:"si",sq:"al",sr:"rs",sv:"se",swc:"cd",th:"th",to:"to",tr:"tr",tzm:"ma",uk:"ua",uz:"uz",vi:"vn",zh:"cn",gd:"gb-sct","gd-gb":"gb-sct",cy:"gb-wls","cy-gb":"gb-wls",fy:"nl",xh:"za",yo:"bj",zu:"za",ta:"lk",te:"in",ss:"za",sw:"ke",so:"so",si:"lk",ii:"cn","zh-hans":"cn","zh-hant":"cn",sn:"zw",rm:"ch",pa:"in",fa:"ir",lv:"lv",gl:"es",fil:"ph"},d=async e=>{try{let t=await i(90670)(`./${e}.inline.svg`);return void 0!==t.default?t.default:t}catch{return null}},c=async e=>{try{let t=await i(66894)(`./${e}.inline.svg`);return void 0!==t.default?t.default:t}catch{return null}},u={},p={},m=async e=>{if(void 0!==u[e])return u[e];let t=await d(e)!==null;return u[e]=t,t},g=async e=>{if(void 0!==p[e])return p[e];let t=await c(e)!==null;return p[e]=t,t},h=async e=>{let t=e.toLowerCase().replace("_","-"),i=t.split("-"),r=i[0],n=i.length>1?i[i.length-1]:null;return void 0!==s[t]?{flagCode:s[t],isLanguageFlag:!1}:await g(t)?{flagCode:t,isLanguageFlag:!0}:null!==n&&await m(n)?{flagCode:n,isLanguageFlag:!1}:r!==t&&await g(r)?{flagCode:r,isLanguageFlag:!0}:await m(t)?{flagCode:t,isLanguageFlag:!1}:{flagCode:"_unknown",isLanguageFlag:!1}},v={},f=e=>{let{value:t,width:i=21,height:n=15}=e,[s,u]=l().useState(null),[p,m]=l().useState(!0);return(l().useEffect(()=>{if(null===t||""===t){u(null),m(!1);return}if(void 0!==v[t]){u(v[t]),m(!1);return}(async()=>{try{let{flagCode:e,isLanguageFlag:i}=await h(t),r=i?await c(e):await d(e);v[t]=r,u(r)}catch(e){(0,o.trackError)(new o.GeneralError(`Failed to resolve flag for language ${t}: ${e}`)),v[t]=null,u(null)}finally{m(!1)}})()},[t]),p)?(0,r.jsx)("div",{style:{width:i,height:n,background:"#f0f0f0"}}):null!==s&&l().isValidElement(s)?l().cloneElement(s,{style:{width:i,height:n},width:i.toString(),height:n.toString()}):(0,r.jsx)(a.default,{style:{width:i,height:n}})}},25750(e,t,i){"use strict";i.d(t,{s:()=>u});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(35864);let d=(0,i(44241).createStyles)((e,t)=>{let{css:i}=e;return{rowColGap:i` column-gap: ${t.x}px; row-gap: ${t.y}px; `}}),{useToken:c}=l.theme,u=(0,n.forwardRef)((e,t)=>{var i;let n,{gap:a=0,className:u,rootClassName:p,children:m,...g}=e,{token:h}=c(),{x:v,y:f}=(i=a,n=e=>(0,s.isNumber)(e)?e:function(e){let{token:t,gap:i}=e;switch(i){case"mini":return t.sizeXXS;case"extra-small":return t.sizeXS;case"small":return t.sizeSM;case"normal":return t.size;case"medium":return t.sizeMD;case"large":return t.sizeLG;case"extra-large":return t.sizeXL;case"maxi":return t.sizeXXL;default:return 0}}({token:h,gap:e}),(0,s.isString)(i)?{x:n(i),y:n(i)}:(0,s.isNumber)(i)?{x:i,y:i}:(0,s.isObject)(i)?{x:n(i.x),y:n(i.y)}:{x:0,y:0}),{styles:y}=d({x:v,y:f}),b=o()(y.rowColGap,u,p);return(0,r.jsx)(l.Flex,{className:b,...g,ref:t,children:m})});u.displayName="Flex"},71504(e,t,i){"use strict";i.d(t,{S:()=>m});var r=i(74848),n=i(47867),l=i(35864),a=i(89354),o=i(39857),s=i(78744),d=i(55638),c=i(29740),u=i(72346);let p=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{container:i` diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_app.9a31719b.js.LICENSE.txt similarity index 100% rename from public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_app.9a31719b.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_default_export.1b3f6d28.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_default_export.1b3f6d28.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_default_export.1b3f6d28.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_default_export.1b3f6d28.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_default_export.1b3f6d28.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_default_export.1b3f6d28.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_default_export.1b3f6d28.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_default_export.1b3f6d28.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__application_logger.fc080c19.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__application_logger.fc080c19.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__application_logger.fc080c19.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__application_logger.fc080c19.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__application_logger.fc080c19.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__application_logger.fc080c19.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__application_logger.fc080c19.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__application_logger.fc080c19.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__asset.51999de9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__asset.51999de9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__asset.51999de9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__asset.51999de9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__asset.51999de9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__asset.51999de9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__asset.51999de9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__asset.51999de9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__auth.65d96793.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__auth.65d96793.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__auth.65d96793.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__auth.65d96793.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__auth.65d96793.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__class_definitions.009acac4.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__class_definitions.009acac4.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__class_definitions.009acac4.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__class_definitions.009acac4.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__class_definitions.009acac4.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__class_definitions.009acac4.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__class_definitions.009acac4.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__class_definitions.009acac4.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__document.5167229e.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__document.5167229e.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__document.5167229e.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__document.5167229e.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__document.5167229e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__document.5167229e.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__document.5167229e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__document.5167229e.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__field_definitions.171d7545.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__field_definitions.171d7545.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__field_definitions.171d7545.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__field_definitions.171d7545.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__field_definitions.171d7545.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__field_definitions.171d7545.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__field_definitions.171d7545.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__field_definitions.171d7545.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__icon_library.481bed67.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__icon_library.481bed67.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__icon_library.481bed67.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__icon_library.481bed67.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__icon_library.481bed67.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__icon_library.481bed67.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__icon_library.481bed67.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__icon_library.481bed67.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__notifications.212009d9.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__notifications.212009d9.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__notifications.212009d9.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__notifications.212009d9.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__notifications.212009d9.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__perspectives.ea16786c.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__perspectives.ea16786c.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__perspectives.ea16786c.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__perspectives.ea16786c.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__perspectives.ea16786c.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__perspectives.ea16786c.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__perspectives.ea16786c.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__perspectives.ea16786c.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__reports.f35bbd3d.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__reports.f35bbd3d.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__reports.f35bbd3d.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__reports.f35bbd3d.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__reports.f35bbd3d.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__reports.f35bbd3d.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__reports.f35bbd3d.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__reports.f35bbd3d.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__translations.e3016a50.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__translations.e3016a50.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__translations.e3016a50.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__translations.e3016a50.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__translations.e3016a50.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__translations.e3016a50.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__translations.e3016a50.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__translations.e3016a50.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__user.1df0f8e6.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__user.1df0f8e6.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__user.1df0f8e6.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__user.1df0f8e6.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__user.1df0f8e6.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_utils.526f5bda.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_utils.526f5bda.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_utils.526f5bda.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_utils.526f5bda.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_utils.526f5bda.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_utils.526f5bda.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_utils.526f5bda.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/__federation_expose_utils.526f5bda.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/lib-axios.f458d745.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/lib-axios.f458d745.js similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/lib-axios.f458d745.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/lib-axios.f458d745.js diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/lib-axios.f458d745.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/lib-axios.f458d745.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/lib-axios.f458d745.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/async/lib-axios.f458d745.js.LICENSE.txt diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/index.26b934bc.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js similarity index 99% rename from public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/index.26b934bc.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js index 58b7c85443..ba73af41a5 100644 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/index.26b934bc.js +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js @@ -1,7 +1,7 @@ -/*! For license information please see index.26b934bc.js.LICENSE.txt */ +/*! For license information please see index.f8206b20.js.LICENSE.txt */ (()=>{var __webpack_modules__={70115(){},6619(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(78130);t.logAndReport=function(e,t,r,n,a,i){return n(o.getShortErrorMsg(e,t,r,a))}},99810(e,t,r){let o=r(90924),n={[o.RUNTIME_001]:"Failed to get remoteEntry exports.",[o.RUNTIME_002]:'The remote entry interface does not contain "init"',[o.RUNTIME_003]:"Failed to get manifest.",[o.RUNTIME_004]:"Failed to locate remote.",[o.RUNTIME_005]:"Invalid loadShareSync function call from bundler runtime",[o.RUNTIME_006]:"Invalid loadShareSync function call from runtime",[o.RUNTIME_007]:"Failed to get remote snapshot.",[o.RUNTIME_008]:"Failed to load script resources.",[o.RUNTIME_009]:"Please call createInstance first.",[o.RUNTIME_010]:'The name option cannot be changed after initialization. If you want to create a new instance with a different name, please use "createInstance" api.',[o.RUNTIME_011]:"The remoteEntry URL is missing from the remote snapshot."},a={[o.TYPE_001]:"Failed to generate type declaration. Execute the below cmd to reproduce and fix the error."},i={[o.BUILD_001]:"Failed to find expose module.",[o.BUILD_002]:"PublicPath is required in prod mode."},s={...n,...a,...i};t.buildDescMap=i,t.errorDescMap=s,t.runtimeDescMap=n,t.typeDescMap=a},90924(e,t){let r="RUNTIME-001",o="RUNTIME-002",n="RUNTIME-003",a="RUNTIME-004",i="RUNTIME-005",s="RUNTIME-006",l="RUNTIME-007",u="RUNTIME-008",c="RUNTIME-009",d="RUNTIME-010",f="RUNTIME-011",m="TYPE-001",p="BUILD-002";t.BUILD_001="BUILD-001",t.BUILD_002=p,t.RUNTIME_001=r,t.RUNTIME_002=o,t.RUNTIME_003=n,t.RUNTIME_004=a,t.RUNTIME_005=i,t.RUNTIME_006=s,t.RUNTIME_007=l,t.RUNTIME_008=u,t.RUNTIME_009=c,t.RUNTIME_010=d,t.RUNTIME_011=f,t.TYPE_001=m},78130(e,t){let r=e=>`View the docs to see how to solve: https://module-federation.io/guide/troubleshooting/${e.split("-")[0].toLowerCase()}#${e.toLowerCase()}`;t.getShortErrorMsg=(e,t,o,n)=>{let a=[`${[t[e]]} #${e}`];return o&&a.push(`args: ${JSON.stringify(o)}`),a.push(r(e)),n&&a.push(`Original Error Message: ${n}`),a.join("\n")}},84363(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(90924),n=r(78130),a=r(99810);t.BUILD_001=o.BUILD_001,t.BUILD_002=o.BUILD_002,t.RUNTIME_001=o.RUNTIME_001,t.RUNTIME_002=o.RUNTIME_002,t.RUNTIME_003=o.RUNTIME_003,t.RUNTIME_004=o.RUNTIME_004,t.RUNTIME_005=o.RUNTIME_005,t.RUNTIME_006=o.RUNTIME_006,t.RUNTIME_007=o.RUNTIME_007,t.RUNTIME_008=o.RUNTIME_008,t.RUNTIME_009=o.RUNTIME_009,t.RUNTIME_010=o.RUNTIME_010,t.RUNTIME_011=o.RUNTIME_011,t.TYPE_001=o.TYPE_001,t.buildDescMap=a.buildDescMap,t.errorDescMap=a.errorDescMap,t.getShortErrorMsg=n.getShortErrorMsg,t.runtimeDescMap=a.runtimeDescMap,t.typeDescMap=a.typeDescMap},31748(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},92926(e,t){let r="default";t.DEFAULT_REMOTE_TYPE="global",t.DEFAULT_SCOPE=r},45871(e,t,r){let o=r(48628),n=r(92926),a=r(8369),i=r(17829),s=r(28457),l=r(556);r(21132);let u=r(12003),c=r(26227),d=r(62964),f=r(82593),m=r(92299),p=r(60317);r(94317);let h=r(14260),g=r(64710),y=r(29152),E=r(17300),b=r(71777),_=r(50630),S=r(84363);t.ModuleFederation=class{initOptions(e){e.name&&e.name!==this.options.name&&o.error((0,S.getShortErrorMsg)(S.RUNTIME_010,S.runtimeDescMap)),this.registerPlugins(e.plugins);let t=this.formatOptions(this.options,e);return this.options=t,t}async loadShare(e,t){return this.sharedHandler.loadShare(e,t)}loadShareSync(e,t){return this.sharedHandler.loadShareSync(e,t)}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0;return this.sharedHandler.initializeSharing(e,t)}initRawContainer(e,t,r){let o=l.getRemoteInfo({name:e,entry:t}),n=new u.Module({host:this,remoteInfo:o});return n.remoteEntryExports=r,this.moduleCache.set(e,n),n}async loadRemote(e,t){return this.remoteHandler.loadRemote(e,t)}async preloadRemote(e){return this.remoteHandler.preloadRemote(e)}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.sharedHandler.initShareScopeMap(e,t,r)}formatOptions(e,t){let{allShareInfos:r}=a.formatShareConfigs(e,t),{userOptions:o,options:n}=this.hooks.lifecycle.beforeInit.emit({origin:this,userOptions:t,options:e,shareInfo:r}),i=this.remoteHandler.formatAndRegisterRemote(n,o),{allShareInfos:s}=this.sharedHandler.registerShared(n,o),l=[...n.plugins];o.plugins&&o.plugins.forEach(e=>{l.includes(e)||l.push(e)});let u={...e,...t,plugins:l,remotes:i,shared:s};return this.hooks.lifecycle.init.emit({origin:this,options:u}),u}registerPlugins(e){let t=s.registerPlugins(e,this);this.options.plugins=this.options.plugins.reduce((e,t)=>(t&&e&&!e.find(e=>e.name===t.name)&&e.push(t),e),t||[])}registerRemotes(e,t){return this.remoteHandler.registerRemotes(e,t)}registerShared(e){this.sharedHandler.registerShared(this.options,{...this.options,shared:e})}constructor(e){this.hooks=new p.PluginSystem({beforeInit:new f.SyncWaterfallHook("beforeInit"),init:new c.SyncHook,beforeInitContainer:new m.AsyncWaterfallHook("beforeInitContainer"),initContainer:new m.AsyncWaterfallHook("initContainer")}),this.version="2.2.3",this.moduleCache=new Map,this.loaderHook=new p.PluginSystem({getModuleInfo:new c.SyncHook,createScript:new c.SyncHook,createLink:new c.SyncHook,fetch:new d.AsyncHook,loadEntryError:new d.AsyncHook,getModuleFactory:new d.AsyncHook}),this.bridgeHook=new p.PluginSystem({beforeBridgeRender:new c.SyncHook,afterBridgeRender:new c.SyncHook,beforeBridgeDestroy:new c.SyncHook,afterBridgeDestroy:new c.SyncHook});const t=[h.snapshotPlugin(),g.generatePreloadAssetsPlugin()],r={id:i.getBuilderId(),name:e.name,plugins:t,remotes:[],shared:{},inBrowser:_.isBrowserEnvValue};this.name=e.name,this.options=r,this.snapshotHandler=new y.SnapshotHandler(this),this.sharedHandler=new E.SharedHandler(this),this.remoteHandler=new b.RemoteHandler(this),this.shareScopeMap=this.sharedHandler.shareScopeMap,this.registerPlugins([...r.plugins,...e.plugins||[]]),this.options=this.formatOptions(r,e)}}},44391(e,t,r){let o=r(48628),n=r(9350),a=r(50630),i="object"==typeof globalThis?globalThis:window,s=(()=>{try{return document.defaultView}catch{return i}})(),l=s;function u(e,t,r){Object.defineProperty(e,t,{value:r,configurable:!1,writable:!0})}function c(e,t){return Object.hasOwnProperty.call(e,t)}c(i,"__GLOBAL_LOADING_REMOTE_ENTRY__")||u(i,"__GLOBAL_LOADING_REMOTE_ENTRY__",{});let d=i.__GLOBAL_LOADING_REMOTE_ENTRY__;function f(e){var t,r,o,n,a,i;c(e,"__VMOK__")&&!c(e,"__FEDERATION__")&&u(e,"__FEDERATION__",e.__VMOK__),c(e,"__FEDERATION__")||(u(e,"__FEDERATION__",{__GLOBAL_PLUGIN__:[],__INSTANCES__:[],moduleInfo:{},__SHARE__:{},__MANIFEST_LOADING__:{},__PRELOADED_MAP__:new Map}),u(e,"__VMOK__",e.__FEDERATION__)),(t=e.__FEDERATION__).__GLOBAL_PLUGIN__??(t.__GLOBAL_PLUGIN__=[]),(r=e.__FEDERATION__).__INSTANCES__??(r.__INSTANCES__=[]),(o=e.__FEDERATION__).moduleInfo??(o.moduleInfo={}),(n=e.__FEDERATION__).__SHARE__??(n.__SHARE__={}),(a=e.__FEDERATION__).__MANIFEST_LOADING__??(a.__MANIFEST_LOADING__={}),(i=e.__FEDERATION__).__PRELOADED_MAP__??(i.__PRELOADED_MAP__=new Map)}function m(){i.__FEDERATION__.__GLOBAL_PLUGIN__=[],i.__FEDERATION__.__INSTANCES__=[],i.__FEDERATION__.moduleInfo={},i.__FEDERATION__.__SHARE__={},i.__FEDERATION__.__MANIFEST_LOADING__={},Object.keys(d).forEach(e=>{delete d[e]})}function p(e){i.__FEDERATION__.__INSTANCES__.push(e)}function h(){return i.__FEDERATION__.__DEBUG_CONSTRUCTOR__}function g(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,a.isDebugMode)();t&&(i.__FEDERATION__.__DEBUG_CONSTRUCTOR__=e,i.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__="2.2.3")}function y(e,t){if("string"==typeof t)if(e[t])return{value:e[t],key:t};else{for(let r of Object.keys(e)){let[o,n]=r.split(":"),a=`${o}:${t}`,i=e[a];if(i)return{value:i,key:a}}return{value:void 0,key:t}}o.error(`getInfoWithoutType: "key" must be a string, got ${typeof t} (${JSON.stringify(t)}).`)}f(i),f(s);let E=()=>s.__FEDERATION__.moduleInfo,b=(e,t)=>{let r=y(t,n.getFMId(e)).value;if(r&&!r.version&&"version"in e&&e.version&&(r.version=e.version),r)return r;if("version"in e&&e.version){let{version:t,...r}=e,o=n.getFMId(r),a=y(s.__FEDERATION__.moduleInfo,o).value;if((null==a?void 0:a.version)===t)return a}},_=e=>b(e,s.__FEDERATION__.moduleInfo),S=(e,t)=>{let r=n.getFMId(e);return s.__FEDERATION__.moduleInfo[r]=t,s.__FEDERATION__.moduleInfo},v=e=>(s.__FEDERATION__.moduleInfo={...s.__FEDERATION__.moduleInfo,...e},()=>{for(let t of Object.keys(e))delete s.__FEDERATION__.moduleInfo[t]}),R=(e,t)=>{let r=t||`__FEDERATION_${e}:custom__`;return{remoteEntryKey:r,entryExports:i[r]}},I=e=>{let{__GLOBAL_PLUGIN__:t}=s.__FEDERATION__;e.forEach(e=>{-1===t.findIndex(t=>t.name===e.name)?t.push(e):o.warn(`The plugin ${e.name} has been registered.`)})},T=()=>s.__FEDERATION__.__GLOBAL_PLUGIN__,M=e=>i.__FEDERATION__.__PRELOADED_MAP__.get(e),N=e=>i.__FEDERATION__.__PRELOADED_MAP__.set(e,!0);t.CurrentGlobal=i,t.Global=l,t.addGlobalSnapshot=v,t.getGlobalFederationConstructor=h,t.getGlobalHostPlugins=T,t.getGlobalSnapshot=E,t.getGlobalSnapshotInfoByModuleInfo=_,t.getInfoWithoutType=y,t.getPreloaded=M,t.getRemoteEntryExports=R,t.getTargetSnapshotInfoByModuleInfo=b,t.globalLoading=d,t.nativeGlobal=s,t.registerGlobalPlugins=I,t.resetFederationGlobalInfo=m,t.setGlobalFederationConstructor=g,t.setGlobalFederationInstance=p,t.setGlobalSnapshotInfoByModuleInfo=S,t.setPreloaded=N},3509(e,t,r){let o=r(44391),n=r(8369),a=r(6079),i=r(556);r(21132);let s=r(19599),l={getRegisteredShare:n.getRegisteredShare,getGlobalShareScope:n.getGlobalShareScope};t.default={global:{Global:o.Global,nativeGlobal:o.nativeGlobal,resetFederationGlobalInfo:o.resetFederationGlobalInfo,setGlobalFederationInstance:o.setGlobalFederationInstance,getGlobalFederationConstructor:o.getGlobalFederationConstructor,setGlobalFederationConstructor:o.setGlobalFederationConstructor,getInfoWithoutType:o.getInfoWithoutType,getGlobalSnapshot:o.getGlobalSnapshot,getTargetSnapshotInfoByModuleInfo:o.getTargetSnapshotInfoByModuleInfo,getGlobalSnapshotInfoByModuleInfo:o.getGlobalSnapshotInfoByModuleInfo,setGlobalSnapshotInfoByModuleInfo:o.setGlobalSnapshotInfoByModuleInfo,addGlobalSnapshot:o.addGlobalSnapshot,getRemoteEntryExports:o.getRemoteEntryExports,registerGlobalPlugins:o.registerGlobalPlugins,getGlobalHostPlugins:o.getGlobalHostPlugins,getPreloaded:o.getPreloaded,setPreloaded:o.setPreloaded},share:l,utils:{matchRemoteWithNameAndExpose:a.matchRemoteWithNameAndExpose,preloadAssets:s.preloadAssets,getRemoteInfo:i.getRemoteInfo}}},45922(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(48628),n=r(9350),a=r(44391),i=r(63957),s=r(8369),l=r(6079),u=r(556);r(21132);let c=r(3509),d=r(12003),f=r(45871),m=r(87703),p=r(50630),h=c.default;t.CurrentGlobal=a.CurrentGlobal,t.Global=a.Global,t.Module=d.Module,t.ModuleFederation=f.ModuleFederation,t.addGlobalSnapshot=a.addGlobalSnapshot,t.assert=o.assert,t.error=o.error,t.getGlobalFederationConstructor=a.getGlobalFederationConstructor,t.getGlobalSnapshot=a.getGlobalSnapshot,t.getInfoWithoutType=a.getInfoWithoutType,t.getRegisteredShare=s.getRegisteredShare,t.getRemoteEntry=u.getRemoteEntry,t.getRemoteInfo=u.getRemoteInfo,t.helpers=h,t.isStaticResourcesEqual=n.isStaticResourcesEqual,Object.defineProperty(t,"loadScript",{enumerable:!0,get:function(){return p.loadScript}}),Object.defineProperty(t,"loadScriptNode",{enumerable:!0,get:function(){return p.loadScriptNode}}),t.matchRemoteWithNameAndExpose=l.matchRemoteWithNameAndExpose,t.registerGlobalPlugins=a.registerGlobalPlugins,t.resetFederationGlobalInfo=a.resetFederationGlobalInfo,t.safeWrapper=n.safeWrapper,t.satisfy=i.satisfy,t.setGlobalFederationConstructor=a.setGlobalFederationConstructor,t.setGlobalFederationInstance=a.setGlobalFederationInstance,Object.defineProperty(t,"types",{enumerable:!0,get:function(){return m.type_exports}})},12003(e,t,r){let o=r(48628),n=r(9350),a=r(556),i=r(48393);r(21132);let s=r(50630),l=r(84363);function u(e,t,r){let o=t,n=Array.isArray(e.shareScope)?e.shareScope:[e.shareScope];n.length||n.push("default"),n.forEach(e=>{o[e]||(o[e]={})});let a={version:e.version||"",shareScopeKeys:Array.isArray(e.shareScope)?n:e.shareScope||"default"};return Object.defineProperty(a,"shareScopeMap",{value:o,enumerable:!1}),{remoteEntryInitOptions:a,shareScope:o[n[0]],initScope:r??[]}}t.Module=class{async getEntry(){if(this.remoteEntryExports)return this.remoteEntryExports;let e=await a.getRemoteEntry({origin:this.host,remoteInfo:this.remoteInfo,remoteEntryExports:this.remoteEntryExports});return o.assert(e,`remoteEntryExports is undefined ${(0,s.safeToString)(this.remoteInfo)}`),this.remoteEntryExports=e,this.remoteEntryExports}async init(e,t,r){let n=await this.getEntry();if(this.inited)return n;if(this.initPromise)return await this.initPromise,n;this.initing=!0,this.initPromise=(async()=>{let{remoteEntryInitOptions:a,shareScope:s,initScope:c}=u(this.remoteInfo,this.host.shareScopeMap,r),d=await this.host.hooks.lifecycle.beforeInitContainer.emit({shareScope:s,remoteEntryInitOptions:a,initScope:c,remoteInfo:this.remoteInfo,origin:this.host});void 0===(null==n?void 0:n.init)&&o.error(l.RUNTIME_002,l.runtimeDescMap,{hostName:this.host.name,remoteName:this.remoteInfo.name,remoteEntryUrl:this.remoteInfo.entry,remoteEntryKey:this.remoteInfo.entryGlobalName},void 0,i.optionsToMFContext(this.host.options)),await n.init(d.shareScope,d.initScope,d.remoteEntryInitOptions),await this.host.hooks.lifecycle.initContainer.emit({...d,id:e,remoteSnapshot:t,remoteEntryExports:n}),this.inited=!0})();try{await this.initPromise}finally{this.initing=!1,this.initPromise=void 0}return n}async get(e,t,r,a){let i,{loadFactory:s=!0}=r||{loadFactory:!0},l=await this.init(e,a);this.lib=l,(i=await this.host.loaderHook.lifecycle.getModuleFactory.emit({remoteEntryExports:l,expose:t,moduleInfo:this.remoteInfo}))||(i=await l.get(t)),o.assert(i,`${n.getFMId(this.remoteInfo)} remote don't export ${t}.`);let u=n.processModuleAlias(this.remoteInfo.name,t),c=this.wraperFactory(i,u);return s?await c():c}wraperFactory(e,t){function r(e,t){e&&"object"==typeof e&&Object.isExtensible(e)&&!Object.getOwnPropertyDescriptor(e,Symbol.for("mf_module_id"))&&Object.defineProperty(e,Symbol.for("mf_module_id"),{value:t,enumerable:!1})}return e instanceof Promise?async()=>{let o=await e();return r(o,t),o}:()=>{let o=e();return r(o,t),o}}constructor({remoteInfo:e,host:t}){this.inited=!1,this.initing=!1,this.lib=void 0,this.remoteInfo=e,this.host=t}}},64710(e,t,r){let o=r(9350),n=r(44391),a=r(8369);r(21132);let i=r(19599),s=r(14260),l=r(50630);function u(e){let t=e.split(":");return 1===t.length?{name:t[0],version:void 0}:2===t.length?{name:t[0],version:t[1]}:{name:t[1],version:t[2]}}function c(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},s=arguments.length>5?arguments[5]:void 0,{value:d}=n.getInfoWithoutType(e,o.getFMId(t)),f=s||d;if(f&&!(0,l.isManifestProvider)(f)&&(r(f,t,a),f.remotesInfo))for(let t of Object.keys(f.remotesInfo)){if(i[t])continue;i[t]=!0;let o=u(t),n=f.remotesInfo[t];c(e,{name:o.name,version:n.matchedVersion},r,!1,i,void 0)}}let d=(e,t)=>document.querySelector(`${e}[${"link"===e?"href":"src"}="${t}"]`);function f(e,t,r,s,u){let f=[],m=[],p=[],h=new Set,g=new Set,{options:y}=e,{preloadConfig:E}=t,{depsRemote:b}=E;if(c(s,r,(t,r,a)=>{var s;let u;if(a)u=E;else if(Array.isArray(b)){let e=b.find(e=>e.nameOrAlias===r.name||e.nameOrAlias===r.alias);if(!e)return;u=i.defaultPreloadArgs(e)}else{if(!0!==b)return;u=E}let c=(0,l.getResourceUrl)(t,o.getRemoteEntryInfoFromSnapshot(t).url);c&&p.push({name:r.name,moduleInfo:{name:r.name,entry:c,type:"remoteEntryType"in t?t.remoteEntryType:"global",entryGlobalName:"globalName"in t?t.globalName:r.name,shareScope:"",version:"version"in t?t.version:void 0},url:c});let d="modules"in t?t.modules:[],h=i.normalizePreloadExposes(u.exposes);function g(e){let r=e.map(e=>(0,l.getResourceUrl)(t,e));return u.filter?r.filter(u.filter):r}if(h.length&&"modules"in t&&(d=null==t||null==(s=t.modules)?void 0:s.reduce((e,t)=>((null==h?void 0:h.indexOf(t.moduleName))!==-1&&e.push(t),e),[])),d){let o=d.length;for(let a=0;a0){let t=(t,r)=>{let{shared:o}=a.getRegisteredShare(e.shareScopeMap,r.sharedName,t,e.sharedHandler.hooks.lifecycle.resolveShare)||{};o&&"function"==typeof o.lib&&(r.assets.js.sync.forEach(e=>{h.add(e)}),r.assets.css.sync.forEach(e=>{g.add(e)}))};u.shared.forEach(e=>{var r;let n=null==(r=y.shared)?void 0:r[e.sharedName];if(!n)return;let a=e.version?n.find(t=>t.version===e.version):n;a&&o.arrayOptions(a).forEach(r=>{t(r,e)})})}let _=m.filter(e=>!h.has(e)&&!d("script",e));return{cssAssets:f.filter(e=>!g.has(e)&&!d("link",e)),jsAssetsWithoutEntry:_,entryAssets:p.filter(e=>!d("script",e.url))}}t.generatePreloadAssetsPlugin=function(){return{name:"generate-preload-assets-plugin",async generatePreloadAssets(e){let{origin:t,preloadOptions:r,remoteInfo:n,remote:a,globalSnapshot:i,remoteSnapshot:u}=e;return l.isBrowserEnvValue?o.isRemoteInfoWithEntry(a)&&o.isPureRemoteEntry(a)?{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[{name:a.name,url:a.entry,moduleInfo:{name:n.name,entry:a.entry,type:n.type||"global",entryGlobalName:"",shareScope:""}}]}:(s.assignRemoteInfo(n,u),f(t,r,n,i,u)):{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[]}}}}},29152(e,t,r){let o=r(48628),n=r(9350),a=r(44391),i=r(48393);r(21132);let s=r(62964),l=r(92299),u=r(60317);r(94317);let c=r(50630),d=r(84363);function f(e,t){let r=a.getGlobalSnapshotInfoByModuleInfo({name:t.name,version:t.options.version}),o=r&&"remotesInfo"in r&&r.remotesInfo&&a.getInfoWithoutType(r.remotesInfo,e.name).value;return o&&o.matchedVersion?{hostGlobalSnapshot:r,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:o.matchedVersion})}:{hostGlobalSnapshot:void 0,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:"version"in e?e.version:void 0})}}t.SnapshotHandler=class{async loadRemoteSnapshotInfo(e){let t,r,{moduleInfo:s,id:l,expose:u}=e,{options:f}=this.HostInstance;await this.hooks.lifecycle.beforeLoadRemoteSnapshot.emit({options:f,moduleInfo:s});let m=a.getGlobalSnapshotInfoByModuleInfo({name:this.HostInstance.options.name,version:this.HostInstance.options.version});m||(m={version:this.HostInstance.options.version||"",remoteEntry:"",remotesInfo:{}},a.addGlobalSnapshot({[this.HostInstance.options.name]:m})),m&&"remotesInfo"in m&&!a.getInfoWithoutType(m.remotesInfo,s.name).value&&("version"in s||"entry"in s)&&(m.remotesInfo={...null==m?void 0:m.remotesInfo,[s.name]:{matchedVersion:"version"in s?s.version:s.entry}});let{hostGlobalSnapshot:p,remoteSnapshot:h,globalSnapshot:g}=this.getGlobalRemoteInfo(s),{remoteSnapshot:y,globalSnapshot:E}=await this.hooks.lifecycle.loadSnapshot.emit({options:f,moduleInfo:s,hostGlobalSnapshot:p,remoteSnapshot:h,globalSnapshot:g});if(y)if((0,c.isManifestProvider)(y)){let e=c.isBrowserEnvValue?y.remoteEntry:y.ssrRemoteEntry||y.remoteEntry||"",o=await this.getManifestJson(e,s,{}),n=a.setGlobalSnapshotInfoByModuleInfo({...s,entry:e},o);t=o,r=n}else{let{remoteSnapshot:e}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:y,from:"global"});t=e,r=E}else if(n.isRemoteInfoWithEntry(s)){let e=await this.getManifestJson(s.entry,s,{}),o=a.setGlobalSnapshotInfoByModuleInfo(s,e),{remoteSnapshot:n}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:e,from:"global"});t=n,r=o}else o.error(d.RUNTIME_007,d.runtimeDescMap,{remoteName:s.name,remoteVersion:s.version,hostName:this.HostInstance.options.name,globalSnapshot:JSON.stringify(E)},void 0,i.optionsToMFContext(this.HostInstance.options));return await this.hooks.lifecycle.afterLoadSnapshot.emit({id:l,host:this.HostInstance,options:f,moduleInfo:s,remoteSnapshot:t}),{remoteSnapshot:t,globalSnapshot:r}}getGlobalRemoteInfo(e){return f(e,this.HostInstance)}async getManifestJson(e,t,r){let n=async()=>{let r=this.manifestCache.get(e);if(r)return r;try{let t=await this.loaderHook.lifecycle.fetch.emit(e,{});t&&t instanceof Response||(t=await fetch(e,{})),r=await t.json()}catch(n){(r=await this.HostInstance.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:n,from:"runtime",lifecycle:"afterResolve",origin:this.HostInstance}))||(delete this.manifestLoading[e],o.error(d.RUNTIME_003,d.runtimeDescMap,{manifestUrl:e,moduleName:t.name,hostName:this.HostInstance.options.name},`${n}`,i.optionsToMFContext(this.HostInstance.options)))}return o.assert(r.metaData&&r.exposes&&r.shared,`"${e}" is not a valid federation manifest for remote "${t.name}". Missing required fields: ${[!r.metaData&&"metaData",!r.exposes&&"exposes",!r.shared&&"shared"].filter(Boolean).join(", ")}.`),this.manifestCache.set(e,r),r},a=async()=>{let r=await n(),o=(0,c.generateSnapshotFromManifest)(r,{version:e}),{remoteSnapshot:a}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:t,manifestJson:r,remoteSnapshot:o,manifestUrl:e,from:"manifest"});return a};return this.manifestLoading[e]||(this.manifestLoading[e]=a().then(e=>e)),this.manifestLoading[e]}constructor(e){this.loadingHostSnapshot=null,this.manifestCache=new Map,this.hooks=new u.PluginSystem({beforeLoadRemoteSnapshot:new s.AsyncHook("beforeLoadRemoteSnapshot"),loadSnapshot:new l.AsyncWaterfallHook("loadGlobalSnapshot"),loadRemoteSnapshot:new l.AsyncWaterfallHook("loadRemoteSnapshot"),afterLoadSnapshot:new l.AsyncWaterfallHook("afterLoadSnapshot")}),this.manifestLoading=a.Global.__FEDERATION__.__MANIFEST_LOADING__,this.HostInstance=e,this.loaderHook=e.loaderHook}},t.getGlobalRemoteInfo=f},14260(e,t,r){let o=r(48628),n=r(9350);r(21132);let a=r(19599),i=r(50630),s=r(84363);function l(e,t){let r=n.getRemoteEntryInfoFromSnapshot(t);r.url||o.error(s.RUNTIME_011,s.runtimeDescMap,{remoteName:e.name});let a=(0,i.getResourceUrl)(t,r.url);i.isBrowserEnvValue||a.startsWith("http")||(a=`https:${a}`),e.type=r.type,e.entryGlobalName=r.globalName,e.entry=a,e.version=t.version,e.buildVersion=t.buildVersion}function u(){return{name:"snapshot-plugin",async afterResolve(e){let{remote:t,pkgNameOrAlias:r,expose:o,origin:i,remoteInfo:s,id:u}=e;if(!n.isRemoteInfoWithEntry(t)||!n.isPureRemoteEntry(t)){let{remoteSnapshot:n,globalSnapshot:c}=await i.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:t,id:u});l(s,n);let d={remote:t,preloadConfig:{nameOrAlias:r,exposes:[o],resourceCategory:"sync",share:!1,depsRemote:!1}},f=await i.remoteHandler.hooks.lifecycle.generatePreloadAssets.emit({origin:i,preloadOptions:d,remoteInfo:s,remote:t,remoteSnapshot:n,globalSnapshot:c});return f&&a.preloadAssets(s,i,f,!1),{...e,remoteSnapshot:n}}return e}}}t.assignRemoteInfo=l,t.snapshotPlugin=u},71777(e,t,r){let o=r(48628),n=r(44391),a=r(92926),i=r(8369),s=r(6079),l=r(556),u=r(48393);r(21132);let c=r(19599),d=r(12003),f=r(26227),m=r(62964),p=r(82593),h=r(92299),g=r(60317);r(94317);let y=r(29152),E=r(50630),b=r(84363);t.RemoteHandler=class{formatAndRegisterRemote(e,t){return(t.remotes||[]).reduce((e,t)=>(this.registerRemote(t,e,{force:!1}),e),e.remotes)}setIdToRemoteMap(e,t){let{remote:r,expose:o}=t,{name:n,alias:a}=r;if(this.idToRemoteMap[e]={name:r.name,expose:o},a&&e.startsWith(n)){let t=e.replace(n,a);this.idToRemoteMap[t]={name:r.name,expose:o};return}if(a&&e.startsWith(a)){let t=e.replace(a,n);this.idToRemoteMap[t]={name:r.name,expose:o}}}async loadRemote(e,t){let{host:r}=this;try{let{loadFactory:o=!0}=t||{loadFactory:!0},{module:n,moduleOptions:a,remoteMatchInfo:i}=await this.getRemoteModuleAndOptions({id:e}),{pkgNameOrAlias:s,remote:l,expose:u,id:c,remoteSnapshot:d}=i,f=await n.get(c,u,t,d),m=await this.hooks.lifecycle.onLoad.emit({id:c,pkgNameOrAlias:s,expose:u,exposeModule:o?f:void 0,exposeModuleFactory:o?void 0:f,remote:l,options:a,moduleInstance:n,origin:r});if(this.setIdToRemoteMap(e,i),"function"==typeof m)return m;return f}catch(a){let{from:o="runtime"}=t||{from:"runtime"},n=await this.hooks.lifecycle.errorLoadRemote.emit({id:e,error:a,from:o,lifecycle:"onLoad",origin:r});if(!n)throw a;return n}}async preloadRemote(e){let{host:t}=this;await this.hooks.lifecycle.beforePreloadRemote.emit({preloadOps:e,options:t.options,origin:t});let r=c.formatPreloadArgs(t.options.remotes,e);await Promise.all(r.map(async e=>{let{remote:r}=e,o=l.getRemoteInfo(r),{globalSnapshot:n,remoteSnapshot:a}=await t.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:r}),i=await this.hooks.lifecycle.generatePreloadAssets.emit({origin:t,preloadOptions:e,remote:r,remoteInfo:o,globalSnapshot:n,remoteSnapshot:a});i&&c.preloadAssets(o,t,i)}))}registerRemotes(e,t){let{host:r}=this;e.forEach(e=>{this.registerRemote(e,r.options.remotes,{force:null==t?void 0:t.force})})}async getRemoteModuleAndOptions(e){let t,{host:r}=this,{id:n}=e;try{t=await this.hooks.lifecycle.beforeRequest.emit({id:n,options:r.options,origin:r})}catch(e){if(!(t=await this.hooks.lifecycle.errorLoadRemote.emit({id:n,options:r.options,origin:r,from:"runtime",error:e,lifecycle:"beforeRequest"})))throw e}let{id:a}=t,i=s.matchRemoteWithNameAndExpose(r.options.remotes,a);i||o.error(b.RUNTIME_004,b.runtimeDescMap,{hostName:r.options.name,requestId:a},void 0,u.optionsToMFContext(r.options));let{remote:c}=i,f=l.getRemoteInfo(c),m=await r.sharedHandler.hooks.lifecycle.afterResolve.emit({id:a,...i,options:r.options,origin:r,remoteInfo:f}),{remote:p,expose:h}=m;o.assert(p&&h,`The 'beforeRequest' hook was executed, but it failed to return the correct 'remote' and 'expose' values while loading ${a}.`);let g=r.moduleCache.get(p.name),y={host:r,remoteInfo:f};return g||(g=new d.Module(y),r.moduleCache.set(p.name,g)),{module:g,moduleOptions:y,remoteMatchInfo:m}}registerRemote(e,t,r){let{host:n}=this,i=()=>{if(e.alias){let r=t.find(t=>{var r;return e.alias&&(t.name.startsWith(e.alias)||(null==(r=t.alias)?void 0:r.startsWith(e.alias)))});o.assert(!r,`The alias ${e.alias} of remote ${e.name} is not allowed to be the prefix of ${r&&r.name} name or alias`)}"entry"in e&&E.isBrowserEnvValue&&"u">typeof window&&!e.entry.startsWith("http")&&(e.entry=new URL(e.entry,window.location.origin).href),e.shareScope||(e.shareScope=a.DEFAULT_SCOPE),e.type||(e.type=a.DEFAULT_REMOTE_TYPE)};this.hooks.lifecycle.beforeRegisterRemote.emit({remote:e,origin:n});let s=t.find(t=>t.name===e.name);if(s){let o=[`The remote "${e.name}" is already registered.`,"Please note that overriding it may cause unexpected errors."];(null==r?void 0:r.force)&&(this.removeRemote(s),i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n}),(0,E.warn)(o.join(" ")))}else i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n})}removeRemote(e){try{let{host:r}=this,{name:o}=e,a=r.options.remotes.findIndex(e=>e.name===o);-1!==a&&r.options.remotes.splice(a,1);let s=r.moduleCache.get(e.name);if(s){var t;let o=s.remoteInfo,a=o.entryGlobalName;n.CurrentGlobal[a]&&((null==(t=Object.getOwnPropertyDescriptor(n.CurrentGlobal,a))?void 0:t.configurable)?delete n.CurrentGlobal[a]:n.CurrentGlobal[a]=void 0);let u=l.getRemoteEntryUniqueKey(s.remoteInfo);n.globalLoading[u]&&delete n.globalLoading[u],r.snapshotHandler.manifestCache.delete(o.entry);let c=o.buildVersion?(0,E.composeKeyWithSeparator)(o.name,o.buildVersion):o.name,d=n.CurrentGlobal.__FEDERATION__.__INSTANCES__.findIndex(e=>o.buildVersion?e.options.id===c:e.name===c);if(-1!==d){let e=n.CurrentGlobal.__FEDERATION__.__INSTANCES__[d];c=e.options.id||c;let t=i.getGlobalShareScope(),r=!0,a=[];Object.keys(t).forEach(e=>{let n=t[e];n&&Object.keys(n).forEach(t=>{let i=n[t];i&&Object.keys(i).forEach(n=>{let s=i[n];s&&Object.keys(s).forEach(i=>{let l=s[i];l&&"object"==typeof l&&l.from===o.name&&(l.loaded||l.loading?(l.useIn=l.useIn.filter(e=>e!==o.name),l.useIn.length?r=!1:a.push([e,t,n,i])):a.push([e,t,n,i]))})})})}),r&&(e.shareScopeMap={},delete t[c]),a.forEach(e=>{var r,o,n;let[a,i,s,l]=e;null==(n=t[a])||null==(o=n[i])||null==(r=o[s])||delete r[l]}),n.CurrentGlobal.__FEDERATION__.__INSTANCES__.splice(d,1)}let{hostGlobalSnapshot:f}=y.getGlobalRemoteInfo(e,r);if(f){let t=f&&"remotesInfo"in f&&f.remotesInfo&&n.getInfoWithoutType(f.remotesInfo,e.name).key;t&&(delete f.remotesInfo[t],n.Global.__FEDERATION__.__MANIFEST_LOADING__[t]&&delete n.Global.__FEDERATION__.__MANIFEST_LOADING__[t])}r.moduleCache.delete(e.name)}}catch(e){o.logger.error(`removeRemote failed: ${e instanceof Error?e.message:String(e)}`)}}constructor(e){this.hooks=new g.PluginSystem({beforeRegisterRemote:new p.SyncWaterfallHook("beforeRegisterRemote"),registerRemote:new p.SyncWaterfallHook("registerRemote"),beforeRequest:new h.AsyncWaterfallHook("beforeRequest"),onLoad:new m.AsyncHook("onLoad"),handlePreloadModule:new f.SyncHook("handlePreloadModule"),errorLoadRemote:new m.AsyncHook("errorLoadRemote"),beforePreloadRemote:new m.AsyncHook("beforePreloadRemote"),generatePreloadAssets:new m.AsyncHook("generatePreloadAssets"),afterPreloadRemote:new m.AsyncHook,loadEntry:new m.AsyncHook}),this.host=e,this.idToRemoteMap={}}}},17300(e,t,r){let o=r(48628),n=r(92926),a=r(8369),i=r(48393);r(21132);let s=r(62964),l=r(82593),u=r(92299),c=r(60317);r(94317);let d=r(84363);t.SharedHandler=class{registerShared(e,t){let{newShareInfos:r,allShareInfos:o}=a.formatShareConfigs(e,t);return Object.keys(r).forEach(e=>{r[e].forEach(r=>{r.scope.forEach(o=>{var n;this.hooks.lifecycle.beforeRegisterShare.emit({origin:this.host,pkgName:e,shared:r}),(null==(n=this.shareScopeMap[o])?void 0:n[e])||this.setShared({pkgName:e,lib:r.lib,get:r.get,loaded:r.loaded||!!r.lib,shared:r,from:t.name})})})}),{newShareInfos:r,allShareInfos:o}}async loadShare(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&await Promise.all(n.scope.map(async e=>{await Promise.all(this.initializeSharing(e,{strategy:n.strategy}))}));let{shareInfo:i}=await this.hooks.lifecycle.beforeLoadShare.emit({pkgName:e,shareInfo:n,shared:r.options.shared,origin:r});o.assert(i,`Cannot find shared "${e}" in host "${r.options.name}". Ensure the shared config for "${e}" is declared in the federation plugin options and the host has been initialized before loading shares.`);let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(s){let t=a.directShare(s,l);if(t.lib)return a.addUseIn(t,r.options.name),t.lib;if(t.loading&&!t.loaded){let e=await t.loading;return t.loaded=!0,t.lib||(t.lib=e),a.addUseIn(t,r.options.name),e}{let o=(async()=>{let e=await t.get();return a.addUseIn(t,r.options.name),t.loaded=!0,t.lib=e,e})();return this.setShared({pkgName:e,loaded:!1,shared:s,from:r.options.name,lib:null,loading:o,treeShaking:l?t:void 0}),o}}{if(null==t?void 0:t.customShareInfo)return!1;let o=a.shouldUseTreeShaking(i.treeShaking),n=a.directShare(i,o),s=(async()=>{let t=await n.get();n.lib=t,n.loaded=!0,a.addUseIn(n,r.options.name);let{shared:o,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(o){let e=a.directShare(o,s);e.lib=t,e.loaded=!0,o.from=i.from}return t})();return this.setShared({pkgName:e,loaded:!1,shared:i,from:r.options.name,lib:null,loading:s,treeShaking:o?n:void 0}),s}}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0,{host:r}=this,o=null==t?void 0:t.from,i=null==t?void 0:t.strategy,s=null==t?void 0:t.initScope,l=[];if("build"!==o){let{initTokens:t}=this;s||(s=[]);let r=t[e];if(r||(r=t[e]={from:this.host.name}),s.indexOf(r)>=0)return l;s.push(r)}let u=this.shareScopeMap,c=r.options.name;u[e]||(u[e]={});let d=u[e],f=(e,t)=>{var r;let{version:o,eager:n}=t;d[e]=d[e]||{};let i=d[e],s=i[o]&&a.directShare(i[o]),l=!!(s&&("eager"in s&&s.eager||"shareConfig"in s&&(null==(r=s.shareConfig)?void 0:r.eager)));(!s||"loaded-first"!==s.strategy&&!s.loaded&&(!n!=!l?n:c>i[o].from))&&(i[o]=t)},m=async e=>{let t,{module:o}=await r.remoteHandler.getRemoteModuleAndOptions({id:e});try{t=await o.getEntry()}catch(o){if(!(t=await r.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:o,from:"runtime",lifecycle:"beforeLoadShare",origin:r})))return}finally{(null==t?void 0:t.init)&&!o.initing&&(o.remoteEntryExports=t,await o.init(void 0,void 0,s))}};return Object.keys(r.options.shared).forEach(t=>{r.options.shared[t].forEach(r=>{r.scope.includes(e)&&f(t,r)})}),("version-first"===r.options.shareStrategy||"version-first"===i)&&r.options.remotes.forEach(t=>{t.shareScope===e&&l.push(m(t.name))}),l}loadShareSync(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&n.scope.forEach(e=>{this.initializeSharing(e,{strategy:n.strategy})});let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,n,this.hooks.lifecycle.resolveShare)||{};if(s){if("function"==typeof s.lib)return a.addUseIn(s,r.options.name),s.loaded||(s.loaded=!0,s.from===r.options.name&&(n.loaded=!0)),s.lib;if("function"==typeof s.get){let t=s.get();if(!(t instanceof Promise))return a.addUseIn(s,r.options.name),this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:t,shared:s}),t}}if(n.lib)return n.loaded||(n.loaded=!0),n.lib;if(n.get){let a=n.get();return a instanceof Promise&&o.error((null==t?void 0:t.from)==="build"?d.RUNTIME_005:d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options)),n.lib=a,this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:n.lib,shared:n}),n.lib}o.error(d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options))}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{host:o}=this;this.shareScopeMap[e]=t,this.hooks.lifecycle.initContainerShareScopeMap.emit({shareScope:t,options:o.options,origin:o,scopeName:e,hostShareScopeMap:r.hostShareScopeMap})}setShared(e){let{pkgName:t,shared:r,from:o,lib:n,loading:a,loaded:i,get:s,treeShaking:l}=e,{version:u,scope:c="default",...d}=r,f=Array.isArray(c)?c:[c],m=e=>{let t=(e,t,r)=>{r&&!e[t]&&(e[t]=r)},r=l?e.treeShaking:e;t(r,"loaded",i),t(r,"loading",a),t(r,"get",s)};f.forEach(e=>{this.shareScopeMap[e]||(this.shareScopeMap[e]={}),this.shareScopeMap[e][t]||(this.shareScopeMap[e][t]={}),this.shareScopeMap[e][t][u]||(this.shareScopeMap[e][t][u]={version:u,scope:[e],...d,lib:n});let r=this.shareScopeMap[e][t][u];m(r),o&&r.from!==o&&(r.from=o)})}_setGlobalShareScopeMap(e){let t=a.getGlobalShareScope(),r=e.id||e.name;r&&!t[r]&&(t[r]=this.shareScopeMap)}constructor(e){this.hooks=new c.PluginSystem({beforeRegisterShare:new l.SyncWaterfallHook("beforeRegisterShare"),afterResolve:new u.AsyncWaterfallHook("afterResolve"),beforeLoadShare:new u.AsyncWaterfallHook("beforeLoadShare"),loadShare:new s.AsyncHook,resolveShare:new l.SyncWaterfallHook("resolveShare"),initContainerShareScopeMap:new l.SyncWaterfallHook("initContainerShareScopeMap")}),this.host=e,this.shareScopeMap={},this.initTokens={},this._setGlobalShareScopeMap(e.options)}}},87703(e,t,r){var o=r(31748).__exportAll({});Object.defineProperty(t,"type_exports",{enumerable:!0,get:function(){return o}})},48393(e,t){function r(e){return{name:e.name,alias:e.alias,entry:"entry"in e?e.entry:void 0,version:"version"in e?e.version:void 0,type:e.type,entryGlobalName:e.entryGlobalName,shareScope:e.shareScope}}t.optionsToMFContext=function(e){var t,o,n,a,i,s;let l={};for(let[t,r]of Object.entries(e.shared)){let e=r[0];e&&(l[t]={version:e.version,singleton:null==(n=e.shareConfig)?void 0:n.singleton,requiredVersion:(null==(a=e.shareConfig)?void 0:a.requiredVersion)!==!1&&(null==(i=e.shareConfig)?void 0:i.requiredVersion),eager:e.eager,strictVersion:null==(s=e.shareConfig)?void 0:s.strictVersion})}return{project:{name:e.name,mfRole:(null==(t=e.remotes)?void 0:t.length)>0?"host":"unknown"},mfConfig:{name:e.name,remotes:(null==(o=e.remotes)?void 0:o.map(r))??[],shared:l}}}},17829(e,t,r){r(50630),t.getBuilderId=function(){return"pimcore_studio_ui_bundle:0.0.1"}},62964(e,t,r){let o=r(26227);t.AsyncHook=class extends o.SyncHook{emit(){let e;for(var t=arguments.length,r=Array(t),o=0;o0){let t=0,o=e=>!1!==e&&(t0){let r=0,n=t=>(o.warn(t),this.onerror(t),e),a=o=>{if(i.checkReturnData(e,o)){if(e=o,r{let r=e[t];r&&this.lifecycle[t].on(r)})}}removePlugin(e){o.assert(e,"A name is required.");let t=this.registerPlugins[e];o.assert(t,`The plugin "${e}" is not registered.`),Object.keys(t).forEach(e=>{"name"!==e&&this.lifecycle[e].remove(t[e])})}constructor(e){this.registerPlugins={},this.lifecycle=e,this.lifecycleKeys=Object.keys(e)}}},26227(e,t){t.SyncHook=class{on(e){"function"==typeof e&&this.listeners.add(e)}once(e){let t=this;this.on(function r(){for(var o=arguments.length,n=Array(o),a=0;a0&&this.listeners.forEach(t=>{e=t(...r)}),e}remove(e){this.listeners.delete(e)}removeAll(){this.listeners.clear()}constructor(e){this.type="",this.listeners=new Set,e&&(this.type=e)}}},82593(e,t,r){let o=r(48628),n=r(9350),a=r(26227);function i(e,t){if(!n.isObject(t))return!1;if(e!==t){for(let r in e)if(!(r in t))return!1}return!0}t.SyncWaterfallHook=class extends a.SyncHook{emit(e){for(let t of(n.isObject(e)||o.error(`The data for the "${this.type}" hook should be an object.`),this.listeners))try{let r=t(e);if(i(e,r))e=r;else{this.onerror(`A plugin returned an unacceptable value for the "${this.type}" type.`);break}}catch(e){o.warn(e),this.onerror(e)}return e}constructor(e){super(),this.onerror=o.error,this.type=e}},t.checkReturnData=i},21132(e,t,r){r(48628),r(9350),r(17829),r(6079),r(28457),r(556),r(48393),r(50630)},556(e,t,r){let o=r(48628),n=r(44391),a=r(92926),i=r(50630),s=r(84363),l=".then(callbacks[0]).catch(callbacks[1])";async function u(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):"u">typeof FEDERATION_ALLOW_NEW_FUNCTION?Function("callbacks",`import("${t}")${l}`)([e,n]):import(t).then(e).catch(n)}catch(e){o.error(`Failed to load ESM entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}async function c(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):Function("callbacks",`System.import("${t}")${l}`)([e,n])}catch(e){o.error(`Failed to load SystemJS entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}function d(e,t,r){let{remoteEntryKey:a,entryExports:i}=n.getRemoteEntryExports(e,t);return i||o.error(s.RUNTIME_001,s.runtimeDescMap,{remoteName:e,remoteEntryUrl:r,remoteEntryKey:a}),i}async function f(e){let{name:t,globalName:r,entry:a,loaderHook:l,getEntryUrl:u}=e,{entryExports:c}=n.getRemoteEntryExports(t,r);if(c)return c;let f=u?u(a):a;return(0,i.loadScript)(f,{attrs:{},createScriptHook:(e,t)=>{let r=l.lifecycle.createScript.emit({url:e,attrs:t});if(r&&(r instanceof HTMLScriptElement||"script"in r||"timeout"in r))return r}}).then(()=>d(t,r,a),e=>{let r=e instanceof Error?e.message:String(e);o.error(s.RUNTIME_008,s.runtimeDescMap,{remoteName:t,resourceUrl:f},r)})}async function m(e){let{remoteInfo:t,remoteEntryExports:r,loaderHook:o,getEntryUrl:n}=e,{entry:a,entryGlobalName:i,name:s,type:l}=t;switch(l){case"esm":case"module":return u({entry:a,remoteEntryExports:r});case"system":return c({entry:a,remoteEntryExports:r});default:return f({entry:a,globalName:i,name:s,loaderHook:o,getEntryUrl:n})}}async function p(e){let{remoteInfo:t,loaderHook:r}=e,{entry:a,entryGlobalName:s,name:l,type:u}=t,{entryExports:c}=n.getRemoteEntryExports(l,s);return c||(0,i.loadScriptNode)(a,{attrs:{name:l,globalName:s,type:u},loaderHook:{createScriptHook:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.lifecycle.createScript.emit({url:e,attrs:t});if(o&&"url"in o)return o}}}).then(()=>d(l,s,a)).catch(e=>{o.error(`Failed to load Node.js entry for remote "${l}" from "${a}". ${e instanceof Error?e.message:String(e)}`)})}function h(e){let{entry:t,name:r}=e;return(0,i.composeKeyWithSeparator)(r,t)}async function g(e){let{origin:t,remoteEntryExports:r,remoteInfo:o,getEntryUrl:a,_inErrorHandling:l=!1}=e,u=h(o);if(r)return r;if(!n.globalLoading[u]){let e=t.remoteHandler.hooks.lifecycle.loadEntry,c=t.loaderHook;n.globalLoading[u]=e.emit({loaderHook:c,remoteInfo:o,remoteEntryExports:r}).then(e=>e||(("u">typeof ENV_TARGET?"web"===ENV_TARGET:i.isBrowserEnvValue)?m({remoteInfo:o,remoteEntryExports:r,loaderHook:c,getEntryUrl:a}):p({remoteInfo:o,loaderHook:c}))).catch(async e=>{let a=h(o),i=e instanceof Error&&e.message.includes("ScriptExecutionError");if(e instanceof Error&&e.message.includes(s.RUNTIME_008)&&!i&&!l){let e=e=>g({...e,_inErrorHandling:!0}),i=await t.loaderHook.lifecycle.loadEntryError.emit({getRemoteEntry:e,origin:t,remoteInfo:o,remoteEntryExports:r,globalLoading:n.globalLoading,uniqueKey:a});if(i)return i}throw e})}return n.globalLoading[u]}function y(e){return{...e,entry:"entry"in e?e.entry:"",type:e.type||a.DEFAULT_REMOTE_TYPE,entryGlobalName:e.entryGlobalName||e.name,shareScope:e.shareScope||a.DEFAULT_SCOPE}}t.getRemoteEntry=g,t.getRemoteEntryUniqueKey=h,t.getRemoteInfo=y},48628(e,t,r){let o=r(50630),n=r(6619),a="[ Federation Runtime ]",i=(0,o.createLogger)(a);function s(e,t,r,o,i){if(void 0!==t)return(0,n.logAndReport)(e,t,r??{},e=>{throw Error(`${a}: ${e}`)},o,i);let s=e;if(s instanceof Error)throw s.message.startsWith(a)||(s.message=`${a}: ${s.message}`),s;throw Error(`${a}: ${s}`)}function l(e){e instanceof Error&&(e.message.startsWith(a)||(e.message=`${a}: ${e.message}`)),i.warn(e)}t.assert=function(e,t,r,o,n){e||(void 0!==r?s(t,r,o,void 0,n):s(t))},t.error=s,t.logger=i,t.warn=l},6079(e,t){function r(e,t){for(let r of e){let e=t.startsWith(r.name),o=t.replace(r.name,"");if(e){if(o.startsWith("/"))return{pkgNameOrAlias:r.name,expose:o=`.${o}`,remote:r};else if(""===o)return{pkgNameOrAlias:r.name,expose:".",remote:r}}let n=r.alias&&t.startsWith(r.alias),a=r.alias&&t.replace(r.alias,"");if(r.alias&&n){if(a&&a.startsWith("/"))return{pkgNameOrAlias:r.alias,expose:a=`.${a}`,remote:r};else if(""===a)return{pkgNameOrAlias:r.alias,expose:".",remote:r}}}}t.matchRemote=function(e,t){for(let r of e)if(t===r.name||r.alias&&t===r.alias)return r},t.matchRemoteWithNameAndExpose=r},28457(e,t,r){let o=r(44391);t.registerPlugins=function(e,t){let r=o.getGlobalHostPlugins(),n=[t.hooks,t.remoteHandler.hooks,t.sharedHandler.hooks,t.snapshotHandler.hooks,t.loaderHook,t.bridgeHook];return r.length>0&&r.forEach(t=>{(null==e?void 0:e.find(e=>e.name!==t.name))&&e.push(t)}),e&&e.length>0&&e.forEach(e=>{n.forEach(r=>{r.applyPlugin(e,t)})}),e}},19599(e,t,r){let o=r(48628),n=r(6079),a=r(556),i=r(50630);function s(e){return{resourceCategory:"sync",share:!0,depsRemote:!0,prefetchInterface:!1,...e}}function l(e,t){return t.map(t=>{let r=n.matchRemote(e,t.nameOrAlias);return o.assert(r,`Unable to preload ${t.nameOrAlias} as it is not included in ${!r&&(0,i.safeToString)({remoteInfo:r,remotes:e})}`),{remote:r,preloadConfig:s(t)}})}function u(e){return e?e.map(e=>"."===e?e:e.startsWith("./")?e.replace("./",""):e):[]}function c(e,t,r){let o=!(arguments.length>3)||void 0===arguments[3]||arguments[3],{cssAssets:n,jsAssetsWithoutEntry:s,entryAssets:l}=r;if(t.options.inBrowser){if(l.forEach(r=>{let{moduleInfo:o}=r,n=t.moduleCache.get(e.name);n?a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:n.remoteEntryExports}):a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:void 0})}),o){let e={rel:"preload",as:"style"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let e={rel:"stylesheet",type:"text/css"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o},needDeleteLink:!1});n&&document.head.appendChild(o)})}if(o){let e={rel:"preload",as:"script"};s.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let r={fetchpriority:"high",type:(null==e?void 0:e.type)==="module"?"module":"text/javascript"};s.forEach(e=>{let{script:o,needAttach:n}=(0,i.createScript)({url:e,cb:()=>{},attrs:r,createScriptHook:(e,r)=>{let o=t.loaderHook.lifecycle.createScript.emit({url:e,attrs:r});if(o instanceof HTMLScriptElement)return o},needDeleteScript:!0});n&&document.head.appendChild(o)})}}}t.defaultPreloadArgs=s,t.formatPreloadArgs=l,t.normalizePreloadExposes=u,t.preloadAssets=c},60632(e,t){function r(e,t){return(e=Number(e)||e)>(t=Number(t)||t)?1:e===t?0:-1}function o(e,t){let{preRelease:o}=e,{preRelease:n}=t;if(void 0===o&&n)return 1;if(o&&void 0===n)return -1;if(void 0===o&&void 0===n)return 0;for(let e=0,t=o.length;e<=t;e++){let t=o[e],a=n[e];if(t!==a){if(void 0===t&&void 0===a)return 0;if(!t)return 1;if(!a)return -1;return r(t,a)}}return 0}function n(e,t){return r(e.major,t.major)||r(e.minor,t.minor)||r(e.patch,t.patch)||o(e,t)}function a(e,t){return e.version===t.version}t.compare=function(e,t){switch(e.operator){case"":case"=":return a(e,t);case">":return 0>n(e,t);case">=":return a(e,t)||0>n(e,t);case"<":return n(e,t)>0;case"<=":return a(e,t)||n(e,t)>0;case void 0:return!0;default:return!1}}},59570(e,t){let r="[0-9A-Za-z-]+",o=`(?:\\+(${r}(?:\\.${r})*))`,n="0|[1-9]\\d*",a="[0-9]+",i="\\d*[a-zA-Z-][a-zA-Z0-9-]*",s=`(?:${a}|${i})`,l=`(?:-?(${s}(?:\\.${s})*))`,u=`(?:${n}|${i})`,c=`(?:-(${u}(?:\\.${u})*))`,d=`${n}|x|X|\\*`,f=`[v=\\s]*(${d})(?:\\.(${d})(?:\\.(${d})(?:${c})?${o}?)?)?`,m=`^\\s*(${f})\\s+-\\s+(${f})\\s*$`,p=`[v=\\s]*${`(${a})\\.(${a})\\.(${a})`}${l}?${o}?`,h="((?:<|>)?=?)",g=`(\\s*)${h}\\s*(${p}|${f})`,y="(?:~>?)",E=`(\\s*)${y}\\s+`,b="(?:\\^)",_=`(\\s*)${b}\\s+`,S="(<|>)?=?\\s*\\*",v=`^${b}${f}$`,R=`v?${`(${n})\\.(${n})\\.(${n})`}${c}?${o}?`,I=`^${y}${f}$`,T=`^${h}\\s*${f}$`,M=`^${h}\\s*(${R})$|^$`,N="^\\s*>=\\s*0.0.0\\s*$";t.caret=v,t.caretTrim=_,t.comparator=M,t.comparatorTrim=g,t.gte0=N,t.hyphenRange=m,t.star=S,t.tilde=I,t.tildeTrim=E,t.xRange=T},63957(e,t,r){let o=r(10078),n=r(83810),a=r(60632);function i(e){return o.pipe(n.parseCarets,n.parseTildes,n.parseXRanges,n.parseStar)(e)}function s(e){return o.pipe(n.parseHyphen,n.parseComparatorTrim,n.parseTildeTrim,n.parseCaretTrim)(e.trim()).split(/\s+/).join(" ")}t.satisfy=function(e,t){if(!e)return!1;let r=o.extractComparator(e);if(!r)return!1;let[,l,,u,c,d,f]=r,m={operator:l,version:o.combineVersion(u,c,d,f),major:u,minor:c,patch:d,preRelease:null==f?void 0:f.split(".")};for(let e of t.split("||")){let t=e.trim();if(!t||"*"===t||"x"===t)return!0;try{let e=s(t);if(!e.trim())return!0;let r=e.split(" ").map(e=>i(e)).join(" ");if(!r.trim())return!0;let l=r.split(/\s+/).map(e=>n.parseGTE0(e)).filter(Boolean);if(0===l.length)continue;let u=!0;for(let e of l){let t=o.extractComparator(e);if(!t){u=!1;break}let[,r,,n,i,s,l]=t;if(!a.compare({operator:r,version:o.combineVersion(n,i,s,l),major:n,minor:i,patch:s,preRelease:null==l?void 0:l.split(".")},m)){u=!1;break}}if(u)return!0}catch(e){console.error(`[semver] Error processing range part "${t}":`,e);continue}}return!1}},83810(e,t,r){let o=r(59570),n=r(10078);function a(e){return e.replace(n.parseRegex(o.hyphenRange),(e,t,r,o,a,i,s,l,u,c,d,f)=>(t=n.isXVersion(r)?"":n.isXVersion(o)?`>=${r}.0.0`:n.isXVersion(a)?`>=${r}.${o}.0`:`>=${t}`,l=n.isXVersion(u)?"":n.isXVersion(c)?`<${Number(u)+1}.0.0-0`:n.isXVersion(d)?`<${u}.${Number(c)+1}.0-0`:f?`<=${u}.${c}.${d}-${f}`:`<=${l}`,`${t} ${l}`.trim()))}function i(e){return e.replace(n.parseRegex(o.comparatorTrim),"$1$2$3")}function s(e){return e.replace(n.parseRegex(o.tildeTrim),"$1~")}function l(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.caret),(e,t,r,o,a)=>{if(n.isXVersion(t))return"";if(n.isXVersion(r))return`>=${t}.0.0 <${Number(t)+1}.0.0-0`;if(n.isXVersion(o))if("0"===t)return`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`;else return`>=${t}.${r}.0 <${Number(t)+1}.0.0-0`;if(a)if("0"!==t)return`>=${t}.${r}.${o}-${a} <${Number(t)+1}.0.0-0`;else if("0"===r)return`>=${t}.${r}.${o}-${a} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`;if("0"===t)if("0"===r)return`>=${t}.${r}.${o} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`;return`>=${t}.${r}.${o} <${Number(t)+1}.0.0-0`})).join(" ")}function u(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.tilde),(e,t,r,o,a)=>n.isXVersion(t)?"":n.isXVersion(r)?`>=${t}.0.0 <${Number(t)+1}.0.0-0`:n.isXVersion(o)?`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`:a?`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`:`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`)).join(" ")}function c(e){return e.split(/\s+/).map(e=>e.trim().replace(n.parseRegex(o.xRange),(e,t,r,o,a,i)=>{let s=n.isXVersion(r),l=s||n.isXVersion(o),u=l||n.isXVersion(a);if("="===t&&u&&(t=""),i="",s)if(">"===t||"<"===t)return"<0.0.0-0";else return"*";return t&&u?(l&&(o=0),a=0,">"===t?(t=">=",l?(r=Number(r)+1,o=0):o=Number(o)+1,a=0):"<="===t&&(t="<",l?r=Number(r)+1:o=Number(o)+1),"<"===t&&(i="-0"),`${t+r}.${o}.${a}${i}`):l?`>=${r}.0.0${i} <${Number(r)+1}.0.0-0`:u?`>=${r}.${o}.0${i} <${r}.${Number(o)+1}.0-0`:e})).join(" ")}function d(e){return e.trim().replace(n.parseRegex(o.star),"")}function f(e){return e.trim().replace(n.parseRegex(o.gte0),"")}t.parseCaretTrim=function(e){return e.replace(n.parseRegex(o.caretTrim),"$1^")},t.parseCarets=l,t.parseComparatorTrim=i,t.parseGTE0=f,t.parseHyphen=a,t.parseStar=d,t.parseTildeTrim=s,t.parseTildes=u,t.parseXRanges=c},10078(e,t,r){let o=r(59570);function n(e){return new RegExp(e)}function a(e){return!e||"x"===e.toLowerCase()||"*"===e}function i(){for(var e=arguments.length,t=Array(e),r=0;rt.reduce((e,t)=>t(e),e)}function s(e){return e.match(n(o.comparator))}t.combineVersion=function(e,t,r,o){let n=`${e}.${t}.${r}`;return o?`${n}-${o}`:n},t.extractComparator=s,t.isXVersion=a,t.parseRegex=n,t.pipe=i},8369(e,t,r){let o=r(48628),n=r(9350),a=r(44391),i=r(92926),s=r(63957),l=r(50630);function u(e,t,r,n){var a,i;let s;return s="get"in e?e.get:"lib"in e?()=>Promise.resolve(e.lib):()=>Promise.resolve(()=>{o.error(`Cannot get shared "${r}" from "${t}": neither "get" nor "lib" is provided in the share config.`)}),(null==(a=e.shareConfig)?void 0:a.eager)&&(null==(i=e.treeShaking)?void 0:i.mode)&&o.error(`Invalid shared config for "${r}" from "${t}": cannot use both "eager: true" and "treeShaking.mode" simultaneously. Choose one strategy.`),{deps:[],useIn:[],from:t,loading:null,...e,shareConfig:{requiredVersion:`^${e.version}`,singleton:!1,eager:!1,strictVersion:!1,...e.shareConfig},get:s,loaded:null!=e&&!!e.loaded||"lib"in e||void 0,version:e.version??"0",scope:Array.isArray(e.scope)?e.scope:[e.scope??"default"],strategy:(e.strategy??n)||"version-first",treeShaking:e.treeShaking?{...e.treeShaking,mode:e.treeShaking.mode??"server-calc",status:e.treeShaking.status??l.TreeShakingStatus.UNKNOWN,useIn:[]}:void 0}}function c(e,t){let r=t.shared||{},o=t.name,a=Object.keys(r).reduce((e,a)=>{let i=n.arrayOptions(r[a]);return e[a]=e[a]||[],i.forEach(r=>{e[a].push(u(r,o,a,t.shareStrategy))}),e},{}),i={...e.shared};return Object.keys(a).forEach(e=>{i[e]?a[e].forEach(t=>{i[e].find(e=>e.version===t.version)||i[e].push(t)}):i[e]=a[e]}),{allShareInfos:i,newShareInfos:a}}function d(e,t){if(!e)return!1;let{status:r,mode:o}=e;return r!==l.TreeShakingStatus.NO_USE&&(r===l.TreeShakingStatus.CALCULATED||"runtime-infer"===o&&(!t||g(e,t)))}function f(e,t){let r=e=>{if(!Number.isNaN(Number(e))){let t=e.split("."),r=e;for(let e=0;e<3-t.length;e++)r+=".0";return r}return e};return!!s.satisfy(r(e),`<=${r(t)}`)}let m=(e,t)=>{let r=t||function(e,t){return f(e,t)};return Object.keys(e).reduce((e,t)=>!e||r(e,t)||"0"===e?t:e,0)},p=e=>!!e.loaded||"function"==typeof e.lib,h=e=>!!e.loading,g=(e,t)=>{if(!e||!t)return!1;let{usedExports:r}=e;return!!r&&!!t.every(e=>r.includes(e))};function y(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){return i?!n[e].treeShaking||!!n[t].treeShaking&&!p(n[e].treeShaking)&&f(e,t):!p(n[e])&&f(e,t)};if(i){if(a=m(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:m(e[t][r],s),useTreesShaking:i}}let E=e=>p(e)||h(e);function b(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){if(i){if(!n[e].treeShaking)return!0;if(!n[t].treeShaking)return!1;if(E(n[t].treeShaking))if(E(n[e].treeShaking))return!!f(e,t);else return!0;if(E(n[e].treeShaking))return!1}if(E(n[t]))if(E(n[e]))return!!f(e,t);else return!0;return!E(n[e])&&f(e,t)};if(i){if(a=m(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:m(e[t][r],s),useTreesShaking:i}}function _(e){return"loaded-first"===e?b:y}function S(e,t,r,n){if(!e)return;let{shareConfig:l,scope:u=i.DEFAULT_SCOPE,strategy:c,treeShaking:f}=r;for(let i of Array.isArray(u)?u:[u])if(l&&e[i]&&e[i][t]){let{requiredVersion:u}=l,{version:m,useTreesShaking:p}=_(c)(e,i,t,f),h=()=>{let n=e[i][t][m];if(l.singleton){if("string"==typeof u&&!s.satisfy(m,u)){let e=`Version ${m} from ${m&&n.from} of shared singleton module ${t} does not satisfy the requirement of ${r.from} which needs ${u})`;l.strictVersion?o.error(e):o.warn(e)}return{shared:n,useTreesShaking:p}}{if(!1===u||"*"===u||s.satisfy(m,u))return{shared:n,useTreesShaking:p};let r=d(f);if(r){for(let[o,n]of Object.entries(e[i][t]))if(d(n.treeShaking,null==f?void 0:f.usedExports)&&s.satisfy(o,u))return{shared:n,useTreesShaking:r}}for(let[r,o]of Object.entries(e[i][t]))if(s.satisfy(r,u))return{shared:o,useTreesShaking:!1}}},g={shareScopeMap:e,scope:i,pkgName:t,version:m,GlobalFederation:a.Global.__FEDERATION__,shareInfo:r,resolver:h};return(n.emit(g)||g).resolver()}}function v(){return a.Global.__FEDERATION__.__SHARE__}function R(e){let{pkgName:t,extraOptions:r,shareInfos:o}=e,n=e=>{if(!e)return;let t={};e.forEach(e=>{t[e.version]=e});let r=function(e,r){return!p(t[e])&&f(e,r)};return t[m(t,r)]},a=(null==r?void 0:r.resolver)??n,i=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),s=function(){for(var e=arguments.length,t=Array(e),r=0;r{e.useIn||(e.useIn=[]),n.addUniqueItem(e.useIn,t)},t.directShare=I,t.formatShareConfigs=c,t.getGlobalShareScope=v,t.getRegisteredShare=S,t.getTargetSharedOptions=R,t.shouldUseTreeShaking=d},9350(e,t,r){let o=r(48628),n=r(50630);function a(e,t){return -1===e.findIndex(e=>e===t)&&e.push(t),e}function i(e){return"version"in e&&e.version?`${e.name}:${e.version}`:"entry"in e&&e.entry?`${e.name}:${e.entry}`:`${e.name}`}function s(e){return void 0!==e.entry}function l(e){return!e.entry.includes(".json")}async function u(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function c(e){return e&&"object"==typeof e}let d=Object.prototype.toString;function f(e){return"[object Object]"===d.call(e)}function m(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function p(e){return Array.isArray(e)?e:[e]}function h(e){let t={url:"",type:"global",globalName:""};return n.isBrowserEnvValue||(0,n.isReactNativeEnv)()||!("ssrRemoteEntry"in e)?"remoteEntry"in e?{url:e.remoteEntry,type:e.remoteEntryType,globalName:e.globalName}:t:"ssrRemoteEntry"in e?{url:e.ssrRemoteEntry||t.url,type:e.ssrRemoteEntryType||t.type,globalName:e.globalName}:t}let g=(e,t)=>{let r;return r=e.endsWith("/")?e.slice(0,-1):e,t.startsWith(".")&&(t=t.slice(1)),r+=t};t.addUniqueItem=a,t.arrayOptions=p,t.getFMId=i,t.getRemoteEntryInfoFromSnapshot=h,t.isObject=c,t.isPlainObject=f,t.isPureRemoteEntry=l,t.isRemoteInfoWithEntry=s,t.isStaticResourcesEqual=m,t.objectToString=d,t.processModuleAlias=g,t.safeWrapper=u},93544(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},13129(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),r(93544);let o=r(19577),n=r(45922),a={...n.helpers.global,getGlobalFederationInstance:o.getGlobalFederationInstance},i=n.helpers.share,s=n.helpers.utils;t.default={global:a,share:i,utils:s},t.global=a,t.share=i,t.utils=s},99782(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),r(93544);let o=r(19577),n=r(45922),a=r(84363);function i(e){let t=new((0,n.getGlobalFederationConstructor)()||n.ModuleFederation)(e);return(0,n.setGlobalFederationInstance)(t),t}let s=null;function l(e){let t=o.getGlobalFederationInstance(e.name,e.version);return t?(t.initOptions(e),s||(s=t),t):s=i(e)}function u(){for(var e=arguments.length,t=Array(e),r=0;r!!r&&o.options.id===r||o.options.name===e&&!o.options.version&&!t||o.options.name===e&&!!t&&o.options.version===t)}},67688(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},40586(e,t){let r="federation-manifest.json",o=".json",n="FEDERATION_DEBUG",a={AT:"@",HYPHEN:"-",SLASH:"/"},i={[a.AT]:"scope_",[a.HYPHEN]:"_",[a.SLASH]:"__"},s={[i[a.AT]]:a.AT,[i[a.HYPHEN]]:a.HYPHEN,[i[a.SLASH]]:a.SLASH},l=":",u="mf-manifest.json",c="mf-stats.json",d={NPM:"npm",APP:"app"},f="__MF_DEVTOOLS_MODULE_INFO__",m="ENCODE_NAME_PREFIX",p=".federation",h={identifier:"MFDataPrefetch",globalKey:"__PREFETCH__",library:"mf-data-prefetch",exportsKey:"__PREFETCH_EXPORTS__",fileName:"bootstrap.js"},g=function(e){return e[e.UNKNOWN=1]="UNKNOWN",e[e.CALCULATED=2]="CALCULATED",e[e.NO_USE=0]="NO_USE",e}({});t.BROWSER_LOG_KEY=n,t.ENCODE_NAME_PREFIX=m,t.EncodedNameTransformMap=s,t.FederationModuleManifest=r,t.MANIFEST_EXT=o,t.MFModuleType=d,t.MFPrefetchCommon=h,t.MODULE_DEVTOOL_IDENTIFIER=f,t.ManifestFileName=u,t.NameTransformMap=i,t.NameTransformSymbol=a,t.SEPARATOR=l,t.StatsFileName=c,t.TEMP_DIR=p,t.TreeShakingStatus=g},31483(e,t){t.createModuleFederationConfig=e=>e},6302(e,t,r){let o=r(43417);async function n(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function a(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function i(e){let t,r=null,o=!0,i=2e4,s=document.getElementsByTagName("script");for(let t=0;t{r&&("async"===e||"defer"===e?r[e]=o[e]:r.getAttribute(e)||r.setAttribute(e,o[e]))})}let l=null,u="u">typeof window?t=>{if(t.filename&&a(t.filename,e.url)){let r=Error(`ScriptExecutionError: Script "${e.url}" loaded but threw a runtime error during execution: ${t.message} (${t.filename}:${t.lineno}:${t.colno})`);r.name="ScriptExecutionError",l=r}}:null;u&&window.addEventListener("error",u);let c=async(o,a)=>{clearTimeout(t),u&&window.removeEventListener("error",u);let i=()=>{if((null==a?void 0:a.type)==="error"){let t=Error(`ScriptNetworkError: Failed to load script "${e.url}" - the script URL is unreachable or the server returned an error (network failure, 404, CORS, etc.)`);t.name="ScriptNetworkError",(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(t))}else l?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(l)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(r&&(r.onerror=null,r.onload=null,n(()=>{let{needDeleteScript:t=!0}=e;t&&(null==r?void 0:r.parentNode)&&r.parentNode.removeChild(r)}),o&&"function"==typeof o)){let e=o(a);if(e instanceof Promise){let t=await e;return i(),t}return i(),e}i()};return r.onerror=c.bind(null,r.onerror),r.onload=c.bind(null,r.onload),t=setTimeout(()=>{c(null,Error(`Remote script "${e.url}" time-outed.`))},i),{script:r,needAttach:o}}function s(e,t){let{attrs:r={},createScriptHook:o}=t;return new Promise((t,n)=>{let{script:a,needAttach:s}=i({url:e,cb:t,onErrorCallback:n,attrs:{fetchpriority:"high",...r},createScriptHook:o,needDeleteScript:!0});s&&document.head.appendChild(a)})}t.createLink=function(e){let t=null,r=!0,o=document.getElementsByTagName("link");for(let n=0;n{t&&!t.getAttribute(e)&&t.setAttribute(e,o[e])})}let i=(r,o)=>{let a=()=>{(null==o?void 0:o.type)==="error"?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(o)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(t&&(t.onerror=null,t.onload=null,n(()=>{let{needDeleteLink:r=!0}=e;r&&(null==t?void 0:t.parentNode)&&t.parentNode.removeChild(t)}),r)){let e=r(o);return a(),e}a()};return t.onerror=i.bind(null,t.onerror),t.onload=i.bind(null,t.onload),{link:t,needAttach:r}},t.createScript=i,t.isStaticResourcesEqual=a,t.loadScript=s,t.safeWrapper=n},56883(e,t,r){let o=r(40586),n="u">typeof ENV_TARGET?"web"===ENV_TARGET:"u">typeof window&&void 0!==window.document;function a(){return n}function i(){var e;return"u">typeof navigator&&(null==(e=navigator)?void 0:e.product)==="ReactNative"}function s(){try{if(a()&&window.localStorage)return!!localStorage.getItem(o.BROWSER_LOG_KEY)}catch(e){}return!1}function l(){return"u">typeof process&&process.env&&process.env.FEDERATION_DEBUG?!!process.env.FEDERATION_DEBUG:!!("u">typeof FEDERATION_DEBUG&&FEDERATION_DEBUG)||s()}t.getProcessEnv=function(){return"u">typeof process&&process.env?process.env:{}},t.isBrowserEnv=a,t.isBrowserEnvValue=n,t.isDebugMode=l,t.isReactNativeEnv=i},27016(e,t,r){let o=r(40586),n=(e,t)=>{if(!e)return t;let r=(e=>{if("."===e)return"";if(e.startsWith("./"))return e.replace("./","");if(e.startsWith("/")){let t=e.slice(1);return t.endsWith("/")?t.slice(0,-1):t}return e})(e);return r?r.endsWith("/")?`${r}${t}`:`${r}/${t}`:t};function a(e){return e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/")}function i(e){return!!("remoteEntry"in e&&e.remoteEntry.includes(o.MANIFEST_EXT))}function s(e){if(!e)return{statsFileName:o.StatsFileName,manifestFileName:o.ManifestFileName};let t="boolean"==typeof e?"":e.filePath||"",r="boolean"==typeof e?"":e.fileName||"",a=".json",i=e=>e.endsWith(a)?e:`${e}${a}`,s=(e,t)=>e.replace(a,`${t}${a}`),l=r?i(r):o.ManifestFileName;return{statsFileName:n(t,r?s(l,"-stats"):o.StatsFileName),manifestFileName:n(t,l)}}t.generateSnapshotFromManifest=function(e){var t,r,o;let i,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{remotes:l={},overrides:u={},version:c}=s,d=()=>"publicPath"in e.metaData?("auto"===e.metaData.publicPath||""===e.metaData.publicPath)&&c?a(c):e.metaData.publicPath:e.metaData.getPublicPath,f=Object.keys(u),m={};Object.keys(l).length||(m=(null==(t=e.remotes)?void 0:t.reduce((e,t)=>{let r,o=t.federationContainerName;return r=f.includes(o)?u[o]:"version"in t?t.version:t.entry,e[o]={matchedVersion:r},e},{}))||{}),Object.keys(l).forEach(e=>m[e]={matchedVersion:f.includes(e)?u[e]:l[e]});let{remoteEntry:{path:p,name:h,type:g},types:y={path:"",name:"",zip:"",api:""},buildInfo:{buildVersion:E},globalName:b,ssrRemoteEntry:_}=e.metaData,{exposes:S}=e,v={version:c||"",buildVersion:E,globalName:b,remoteEntry:n(p,h),remoteEntryType:g,remoteTypes:n(y.path,y.name),remoteTypesZip:y.zip||"",remoteTypesAPI:y.api||"",remotesInfo:m,shared:null==e?void 0:e.shared.map(e=>({assets:e.assets,sharedName:e.name,version:e.version,usedExports:e.referenceExports||[]})),modules:null==S?void 0:S.map(e=>({moduleName:e.name,modulePath:e.path,assets:e.assets}))};if(null==(r=e.metaData)?void 0:r.prefetchInterface){let t=e.metaData.prefetchInterface;v={...v,prefetchInterface:t}}if(null==(o=e.metaData)?void 0:o.prefetchEntry){let{path:t,name:r,type:o}=e.metaData.prefetchEntry;v={...v,prefetchEntry:n(t,r),prefetchEntryType:o}}if("publicPath"in e.metaData?(i={...v,publicPath:d()},"string"==typeof e.metaData.ssrPublicPath&&(i.ssrPublicPath=e.metaData.ssrPublicPath)):i={...v,getPublicPath:d()},_){let e=n(_.path,_.name);i.ssrRemoteEntry=e,i.ssrRemoteEntryType=_.type||"commonjs-module"}return i},t.getManifestFileName=s,t.inferAutoPublicPath=a,t.isManifestProvider=i,t.simpleJoinRemoteEntry=n},50630(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(40586),n=r(8841),a=r(88798),i=r(87765),s=r(71993),l=r(7345),u=r(95448),c=r(56883),d=r(43417),f=r(27016),m=r(43910),p=r(6302),h=r(638),g=r(76967),y=r(31483);t.BROWSER_LOG_KEY=o.BROWSER_LOG_KEY,t.ENCODE_NAME_PREFIX=o.ENCODE_NAME_PREFIX,t.EncodedNameTransformMap=o.EncodedNameTransformMap,t.FederationModuleManifest=o.FederationModuleManifest,t.MANIFEST_EXT=o.MANIFEST_EXT,t.MFModuleType=o.MFModuleType,t.MFPrefetchCommon=o.MFPrefetchCommon,t.MODULE_DEVTOOL_IDENTIFIER=o.MODULE_DEVTOOL_IDENTIFIER,t.ManifestFileName=o.ManifestFileName,t.NameTransformMap=o.NameTransformMap,t.NameTransformSymbol=o.NameTransformSymbol,t.SEPARATOR=o.SEPARATOR,t.StatsFileName=o.StatsFileName,t.TEMP_DIR=o.TEMP_DIR,t.TreeShakingStatus=o.TreeShakingStatus,t.assert=d.assert,t.bindLoggerToCompiler=m.bindLoggerToCompiler,t.composeKeyWithSeparator=d.composeKeyWithSeparator,Object.defineProperty(t,"consumeSharedPlugin",{enumerable:!0,get:function(){return l.ConsumeSharedPlugin_exports}}),Object.defineProperty(t,"containerPlugin",{enumerable:!0,get:function(){return n.ContainerPlugin_exports}}),Object.defineProperty(t,"containerReferencePlugin",{enumerable:!0,get:function(){return a.ContainerReferencePlugin_exports}}),t.createInfrastructureLogger=m.createInfrastructureLogger,t.createLink=p.createLink,t.createLogger=m.createLogger,t.createModuleFederationConfig=y.createModuleFederationConfig,t.createScript=p.createScript,t.createScriptNode=h.createScriptNode,t.decodeName=d.decodeName,t.encodeName=d.encodeName,t.error=d.error,t.generateExposeFilename=d.generateExposeFilename,t.generateShareFilename=d.generateShareFilename,t.generateSnapshotFromManifest=f.generateSnapshotFromManifest,t.getManifestFileName=f.getManifestFileName,t.getProcessEnv=c.getProcessEnv,t.getResourceUrl=d.getResourceUrl,t.inferAutoPublicPath=f.inferAutoPublicPath,t.infrastructureLogger=m.infrastructureLogger,t.isBrowserEnv=c.isBrowserEnv,t.isBrowserEnvValue=c.isBrowserEnvValue,t.isDebugMode=c.isDebugMode,t.isManifestProvider=f.isManifestProvider,t.isReactNativeEnv=c.isReactNativeEnv,t.isRequiredVersion=d.isRequiredVersion,t.isStaticResourcesEqual=p.isStaticResourcesEqual,t.loadScript=p.loadScript,t.loadScriptNode=h.loadScriptNode,t.logger=m.logger,Object.defineProperty(t,"moduleFederationPlugin",{enumerable:!0,get:function(){return i.ModuleFederationPlugin_exports}}),t.normalizeOptions=g.normalizeOptions,t.parseEntry=d.parseEntry,Object.defineProperty(t,"provideSharedPlugin",{enumerable:!0,get:function(){return u.ProvideSharedPlugin_exports}}),t.safeToString=d.safeToString,t.safeWrapper=p.safeWrapper,Object.defineProperty(t,"sharePlugin",{enumerable:!0,get:function(){return s.SharePlugin_exports}}),t.simpleJoinRemoteEntry=f.simpleJoinRemoteEntry,t.warn=d.warn},43910(e,t,r){let o=r(56883),n="[ Module Federation ]",a=console,i=["logger.ts","logger.js","captureStackTrace","Logger.emit","Logger.log","Logger.info","Logger.warn","Logger.error","Logger.debug"];function s(){try{let e=Error().stack;if(!e)return;let[,...t]=e.split("\n"),r=t.filter(e=>!i.some(t=>e.includes(t)));if(!r.length)return;return`Stack trace: ${r.slice(0,5).join("\n")}`}catch{return}}var l=class{setPrefix(e){this.prefix=e}setDelegate(e){this.delegate=e??a}emit(e,t){let r=this.delegate,n=o.isDebugMode()?s():void 0,i=n?[...t,n]:t,l=(()=>{switch(e){case"log":return["log","info"];case"info":return["info","log"];case"warn":return["warn","info","log"];case"error":return["error","warn","log"];default:return["debug","log"]}})();for(let e of l){let t=r[e];if("function"==typeof t)return void t.call(r,this.prefix,...i)}for(let e of l){let t=a[e];if("function"==typeof t)return void t.call(a,this.prefix,...i)}}log(){for(var e=arguments.length,t=Array(e),r=0;re).catch(t=>{throw console.error(`Error importing module ${e}:`,t),sdkImportCache.delete(e),t});return sdkImportCache.set(e,t),t}let loadNodeFetch=async()=>{let e=await importNodeModule("node-fetch");return e.default||e},lazyLoaderHookFetch=async(e,t,r)=>{let o=(e,t)=>r.lifecycle.fetch.emit(e,t),n=await o(e,t||{});return n&&n instanceof Response?n:("u"{let urlObj;if(null==loaderHook?void 0:loaderHook.createScriptHook){let hookResult=loaderHook.createScriptHook(url);hookResult&&"object"==typeof hookResult&&"url"in hookResult&&(url=hookResult.url)}try{urlObj=new URL(url)}catch(e){console.error("Error constructing URL:",e),cb(Error(`Invalid URL: ${e}`));return}let getFetch=async()=>(null==loaderHook?void 0:loaderHook.fetch)?(e,t)=>lazyLoaderHookFetch(e,t,loaderHook):"u"{try{var _vm_constants;let requireFn,res=await f(urlObj.href),data=await res.text(),[path,vm]=await Promise.all([importNodeModule("path"),importNodeModule("vm")]),scriptContext={exports:{},module:{exports:{}}},urlDirname=urlObj.pathname.split("/").slice(0,-1).join("/"),filename=path.basename(urlObj.pathname),script=new vm.Script(`(function(exports, module, require, __dirname, __filename) {${data} })`,{filename,importModuleDynamically:(null==(_vm_constants=vm.constants)?void 0:_vm_constants.USE_MAIN_CONTEXT_DEFAULT_LOADER)??importNodeModule});requireFn=eval("require"),script.runInThisContext()(scriptContext.exports,scriptContext.module,requireFn,urlDirname,filename);let exportedInterface=scriptContext.module.exports||scriptContext.exports;if(attrs&&exportedInterface&&attrs.globalName)return void cb(void 0,exportedInterface[attrs.globalName]||exportedInterface);cb(void 0,exportedInterface)}catch(e){cb(e instanceof Error?e:Error(`Script execution error: ${e}`))}};getFetch().then(async e=>{if((null==attrs?void 0:attrs.type)==="esm"||(null==attrs?void 0:attrs.type)==="module")return loadModule(urlObj.href,{fetch:e,vm:await importNodeModule("vm")}).then(async e=>{await e.evaluate(),cb(void 0,e.namespace)}).catch(e=>{cb(e instanceof Error?e:Error(`Script execution error: ${e}`))});handleScriptFetch(e,urlObj)}).catch(e=>{cb(e)})}:(e,t,r,o)=>{t(Error("createScriptNode is disabled in non-Node.js environment"))},loadScriptNode="u"new Promise((r,o)=>{createScriptNode(e,(e,n)=>{if(e)o(e);else{var a,i;let e=(null==t||null==(a=t.attrs)?void 0:a.globalName)||`__FEDERATION_${null==t||null==(i=t.attrs)?void 0:i.name}:custom__`;r(globalThis[e]=n)}},t.attrs,t.loaderHook)}):(e,t)=>{throw Error("loadScriptNode is disabled in non-Node.js environment")},esmModuleCache=new Map;async function loadModule(e,t){if(esmModuleCache.has(e))return esmModuleCache.get(e);let{fetch:r,vm:o}=t,n=await (await r(e)).text(),a=new o.SourceTextModule(n,{importModuleDynamically:async(r,o)=>loadModule(new URL(r,e).href,t)});return esmModuleCache.set(e,a),await a.link(async r=>{let o=new URL(r,e).href;return await loadModule(o,t)}),a}exports.createScriptNode=createScriptNode,exports.loadScriptNode=loadScriptNode},76967(e,t){t.normalizeOptions=function(e,t,r){return function(o){if(!1===o)return!1;if(void 0===o)if(e)return t;else return!1;if(!0===o)return t;if(o&&"object"==typeof o)return{...t,...o};throw Error(`Unexpected type for \`${r}\`, expect boolean/undefined/object, got: ${typeof o}`)}}},7345(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ConsumeSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},8841(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ContainerPlugin_exports",{enumerable:!0,get:function(){return o}})},88798(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ContainerReferencePlugin_exports",{enumerable:!0,get:function(){return o}})},87765(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ModuleFederationPlugin_exports",{enumerable:!0,get:function(){return o}})},95448(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ProvideSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},71993(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"SharePlugin_exports",{enumerable:!0,get:function(){return o}})},43417(e,t,r){let o=r(40586),n=r(56883),a="[ Federation Runtime ]",i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:o.SEPARATOR,a=e.split(r),i="development"===n.getProcessEnv().NODE_ENV&&t,s="*",l=e=>e.startsWith("http")||e.includes(o.MANIFEST_EXT);if(a.length>=2){let[t,...o]=a;e.startsWith(r)&&(t=a.slice(0,2).join(r),o=[i||a.slice(2).join(r)]);let n=i||o.join(r);return l(n)?{name:t,entry:n}:{name:t,version:n||s}}if(1===a.length){let[e]=a;return i&&l(i)?{name:e,entry:i}:{name:e,version:i||s}}throw`Invalid entry value: ${e}`},s=function(){for(var e=arguments.length,t=Array(e),r=0;rt?e?`${e}${o.SEPARATOR}${t}`:t:e,""):""},l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];try{let n=r?".js":"";return`${t}${e.replace(RegExp(`${o.NameTransformSymbol.AT}`,"g"),o.NameTransformMap[o.NameTransformSymbol.AT]).replace(RegExp(`${o.NameTransformSymbol.HYPHEN}`,"g"),o.NameTransformMap[o.NameTransformSymbol.HYPHEN]).replace(RegExp(`${o.NameTransformSymbol.SLASH}`,"g"),o.NameTransformMap[o.NameTransformSymbol.SLASH])}${n}`}catch(e){throw e}},u=function(e,t,r){try{let n=e;if(t){if(!n.startsWith(t))return n;n=n.replace(RegExp(t,"g"),"")}return n=n.replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.AT]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.AT]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.SLASH]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.SLASH]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.HYPHEN]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.HYPHEN]]),r&&(n=n.replace(".js","")),n}catch(e){throw e}},c=(e,t)=>{if(!e)return"";let r=e;return"."===r&&(r="default_export"),r.startsWith("./")&&(r=r.replace("./","")),l(r,"__federation_expose_",t)},d=(e,t)=>e?l(e,"__federation_shared_",t):"",f=(e,t)=>{if("getPublicPath"in e){let r;return r=e.getPublicPath.startsWith("function")?Function("return "+e.getPublicPath)()():Function(e.getPublicPath)(),`${r}${t}`}return"publicPath"in e?!n.isBrowserEnv()&&!n.isReactNativeEnv()&&"ssrPublicPath"in e&&"string"==typeof e.ssrPublicPath?`${e.ssrPublicPath}${t}`:`${e.publicPath}${t}`:(console.warn("Cannot get resource URL. If in debug mode, please ignore.",e,t),"")},m=e=>{throw Error(`${a}: ${e}`)},p=e=>{console.warn(`${a}: ${e}`)};function h(e){try{return JSON.stringify(e,null,2)}catch(e){return""}}let g=/^([\d^=v<>~]|[*xX]$)/;function y(e){return g.test(e)}t.assert=(e,t)=>{e||m(t)},t.composeKeyWithSeparator=s,t.decodeName=u,t.encodeName=l,t.error=m,t.generateExposeFilename=c,t.generateShareFilename=d,t.getResourceUrl=f,t.isRequiredVersion=y,t.parseEntry=i,t.safeToString=h,t.warn=p},37363(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},22069(e,t){t.attachShareScopeMap=function(e){e.S&&!e.federation.hasAttachShareScopeMap&&e.federation.instance&&e.federation.instance.shareScopeMap&&(e.S=e.federation.instance.shareScopeMap,e.federation.hasAttachShareScopeMap=!0)}},36897(e,t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),t.FEDERATION_SUPPORTED_TYPES=["script"]},80916(e,t,r){let o=r(22069),n=r(55216),a=r(57617);t.consumes=function(e){n.updateConsumeOptions(e);let{chunkId:t,promises:r,installedModules:i,webpackRequire:s,chunkMapping:l,moduleToHandlerMapping:u}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{if(s.o(i,e))return r.push(i[e]);let t=t=>{i[e]=0,s.m[e]=r=>{var o;delete s.c[e];let n=t(),{shareInfo:a}=u[e];if((null==a||null==(o=a.shareConfig)?void 0:o.layer)&&n&&"object"==typeof n)try{n.hasOwnProperty("layer")&&void 0!==n.layer||(n.layer=a.shareConfig.layer)}catch(e){}r.exports=n}},o=t=>{delete i[e],s.m[e]=r=>{throw delete s.c[e],t}};try{let n=s.federation.instance;if(!n)throw Error("Federation instance not found!");let{shareKey:l,getter:c,shareInfo:d,treeShakingGetter:f}=u[e],m=a.getUsedExports(s,l),p={...d};Array.isArray(p.scope)&&Array.isArray(p.scope[0])&&(p.scope=p.scope[0]),m&&(p.treeShaking={usedExports:m,useIn:[n.options.name]});let h=n.loadShare(l,{customShareInfo:p}).then(e=>!1===e?(null==f?void 0:f())||c():e);h.then?r.push(i[e]=h.then(t).catch(o)):t(h)}catch(e){o(e)}})}},48167(e,t){t.getSharedFallbackGetter=e=>{let{shareKey:t,factory:r,version:o,webpackRequire:n,libraryType:a="global"}=e,{runtime:i,instance:s,bundlerRuntime:l,sharedFallback:u}=n.federation;if(!u)return r;let c=u[t];if(!c)return r;let d=o?c.find(e=>e[1]===o):c[0];if(!d)throw Error(`No fallback item found for shareKey: ${t} and version: ${o}`);return()=>i.getRemoteEntry({origin:n.federation.instance,remoteInfo:{name:d[2],entry:`${n.p}${d[0]}`,type:a,entryGlobalName:d[2],shareScope:"default"}}).then(e=>{if(!e)throw Error(`Failed to load fallback entry for shareKey: ${t} and version: ${o}`);return e.init(n.federation.instance,l).then(()=>e.get())})}},57617(e,t){t.getUsedExports=function(e,t){let r=e.federation.usedExports;if(r)return r[t]}},66927(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});let o=r(37363),n=r(22069),a=r(96310),i=r(80916),s=r(36777),l=r(71735),u=r(87440),c=r(8531),d=r(48167),f=r(99782),m={runtime:f=o.__toESM(f),instance:void 0,initOptions:void 0,bundlerRuntime:{remotes:a.remotes,consumes:i.consumes,I:s.initializeSharing,S:{},installInitialConsumes:l.installInitialConsumes,initContainerEntry:u.initContainerEntry,init:c.init,getSharedFallbackGetter:d.getSharedFallbackGetter},attachShareScopeMap:n.attachShareScopeMap,bundlerRuntimeOptions:{}},p=m.instance,h=m.initOptions,g=m.bundlerRuntime,y=m.bundlerRuntimeOptions;t.attachShareScopeMap=n.attachShareScopeMap,t.bundlerRuntime=g,t.bundlerRuntimeOptions=y,t.default=m,t.initOptions=h,t.instance=p,Object.defineProperty(t,"runtime",{enumerable:!0,get:function(){return f}})},8531(e,t,r){let o=r(37363),n=r(99782),a=r(13129);a=o.__toESM(a),t.init=function(e){var t;let{webpackRequire:o}=e,{initOptions:i,runtime:s,sharedFallback:l,bundlerRuntime:u,libraryType:c}=o.federation;if(!i)throw Error("initOptions is required!");let d=function(){return{name:"tree-shake-plugin",beforeInit(e){let{userOptions:t,origin:i,options:s}=e,d=t.version||s.version;if(!l)return e;let f=t.shared||{},m=[];Object.keys(f).forEach(e=>{(Array.isArray(f[e])?f[e]:[f[e]]).forEach(t=>{if(m.push([e,t]),"get"in t){var r;(r=t).treeShaking||(r.treeShaking={}),t.treeShaking.get=t.get,t.get=u.getSharedFallbackGetter({shareKey:e,factory:t.get,webpackRequire:o,libraryType:c,version:t.version})}})});let p=a.default.global.getGlobalSnapshotInfoByModuleInfo({name:i.name,version:d});if(!p||!("shared"in p))return e;Object.keys(s.shared||{}).forEach(e=>{s.shared[e].forEach(t=>{m.push([e,t])})});let h=(e,t)=>{let o=p.shared.find(t=>t.sharedName===e);if(!o)return;let{treeShaking:a}=t;if(!a)return;let{secondarySharedTreeShakingName:s,secondarySharedTreeShakingEntry:l,treeShakingStatus:u}=o;a.status!==u&&(a.status=u,l&&c&&s&&(a.get=async()=>{let e=await (0,n.getRemoteEntry)({origin:i,remoteInfo:{name:s,entry:l,type:c,entryGlobalName:s,shareScope:"default"}});return await e.init(i,r.federation.bundlerRuntime),e.get()}))};return m.forEach(e=>{let[t,r]=e;h(t,r)}),e}}};return(t=i).plugins||(t.plugins=[]),i.plugins.push(d()),s.init(i)}},87440(e,t){t.initContainerEntry=function(e){let{webpackRequire:t,shareScope:r,initScope:o,shareScopeKey:n,remoteEntryInitOptions:a}=e;if(!t.S||!t.federation||!t.federation.instance||!t.federation.initOptions)return;let i=t.federation.instance;i.initOptions({name:t.federation.initOptions.name,remotes:[],...a});let s=null==a?void 0:a.shareScopeKeys,l=null==a?void 0:a.shareScopeMap;if(n&&"string"!=typeof n)n.forEach(e=>{if(!s||!l)return void i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}});l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})});else{let e=n||"default";Array.isArray(s)?s.forEach(e=>{l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}):i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}return(t.federation.attachShareScopeMap&&t.federation.attachShareScopeMap(t),"function"==typeof t.federation.prefetch&&t.federation.prefetch(),Array.isArray(n))?t.federation.initOptions.shared?t.I(n,o):Promise.all(n.map(e=>t.I(e,o))).then(()=>!0):t.I(n||"default",o)}},36777(e,t,r){let o=r(22069),n=r(36897);t.initializeSharing=function(e){let{shareScopeName:t,webpackRequire:r,initPromises:a,initTokens:i,initScope:s}=e,l=Array.isArray(t)?t:[t];var u=[],c=function(e){s||(s=[]);let l=r.federation.instance;var u=i[e];if(u||(u=i[e]={from:l.name}),s.indexOf(u)>=0)return;s.push(u);let c=a[e];if(c)return c;var d=e=>"u">typeof console&&console.warn&&console.warn(e),f=o=>{var n=e=>d("Initialization of sharing external failed: "+e);try{var a=r(o);if(!a)return;var i=o=>o&&o.init&&o.init(r.S[e],s,{shareScopeMap:r.S||{},shareScopeKeys:t});if(a.then)return m.push(a.then(i,n));var l=i(a);if(l&&"boolean"!=typeof l&&l.then)return m.push(l.catch(n))}catch(e){n(e)}};let m=l.initializeSharing(e,{strategy:l.options.shareStrategy,initScope:s,from:"build"});o.attachShareScopeMap(r);let p=r.federation.bundlerRuntimeOptions.remotes;return(p&&Object.keys(p.idToRemoteMap).forEach(e=>{let t=p.idToRemoteMap[e],r=p.idToExternalAndNameMapping[e][2];if(t.length>1)f(r);else if(1===t.length){let e=t[0];n.FEDERATION_SUPPORTED_TYPES.includes(e.externalType)||f(r)}}),m.length)?a[e]=Promise.all(m).then(()=>a[e]=!0):a[e]=!0};return l.forEach(e=>{u.push(c(e))}),Promise.all(u).then(()=>!0)}},71735(e,t,r){let o=r(55216),n=r(57617);function a(e){let{moduleId:t,moduleToHandlerMapping:r,webpackRequire:o,asyncLoad:a}=e,i=o.federation.instance;if(!i)throw Error("Federation instance not found!");let{shareKey:s,shareInfo:l}=r[t];try{let e=n.getUsedExports(o,s),t={...l};if(e&&(t.treeShaking={usedExports:e,useIn:[i.options.name]}),a)return i.loadShare(s,{customShareInfo:t});return i.loadShareSync(s,{customShareInfo:t})}catch(e){throw console.error('loadShareSync failed! The function should not be called unless you set "eager:true". If you do not set it, and encounter this issue, you can check whether an async boundary is implemented.'),console.error("The original error message is as follows: "),e}}t.installInitialConsumes=function(e){o.updateConsumeOptions(e);let{moduleToHandlerMapping:t,webpackRequire:r,installedModules:n,initialConsumes:i,asyncLoad:s}=e,l=[];i.forEach(e=>{let o=()=>a({moduleId:e,moduleToHandlerMapping:t,webpackRequire:r,asyncLoad:s});l.push([e,o])});let u=(e,o)=>{r.m[e]=a=>{var i;n[e]=0,delete r.c[e];let s=o();if("function"!=typeof s)throw Error(`Shared module is not available for eager consumption: ${e}`);let l=s(),{shareInfo:u}=t[e];if((null==u||null==(i=u.shareConfig)?void 0:i.layer)&&l&&"object"==typeof l)try{l.hasOwnProperty("layer")&&void 0!==l.layer||(l.layer=u.shareConfig.layer)}catch(e){}a.exports=l}};if(s)return Promise.all(l.map(async e=>{let[t,r]=e,o=await r();u(t,()=>o)}));l.forEach(e=>{let[t,r]=e;u(t,r)})}},96310(e,t,r){r(37363);let o=r(22069),n=r(36897),a=r(55216),i=r(50630);t.remotes=function(e){a.updateRemoteOptions(e);let{chunkId:t,promises:r,webpackRequire:s,chunkMapping:l,idToExternalAndNameMapping:u,idToRemoteMap:c}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{let t=s.R;t||(t=[]);let o=u[e],a=c[e]||[];if(t.indexOf(o)>=0)return;if(t.push(o),o.p)return r.push(o.p);let l=t=>{t||(t=Error("Container missing")),"string"==typeof t.message&&(t.message+=` -while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,m,r):l();var m=(e,r,n)=>d(r.get,o[1],t,0,p,n),p=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let h=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(h,o[2],0,0,p,1):d(s,o[2],0,0,f,1)})}},55216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:m}=c;if(f&&m){for(let[e,t]of Object.entries(m))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},56491(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,m,p,h=r(66927),g=r.n(h);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={},b="pimcore_studio_ui_bundle",_="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},h=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},S=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},T=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},M={},N=[],O={},A=null==(m=r.initializeExposesData)?void 0:m.shareScope;for(let e in g())r.federation[e]=g()[e];h(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(T))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),h(r.federation,"initOptions",()=>({})),h(r.federation.initOptions,"name",()=>b),h(r.federation.initOptions,"shareStrategy",()=>_),h(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),h(r.federation,"bundlerRuntimeOptions",()=>({})),h(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),h(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>S),h(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),h(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),h(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:S,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:M,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:N,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(p=r.consumesLoadingData)?void 0:p.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:M,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(r.exports,r,r.exports,__webpack_require__),r.loaded=!0,r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>{var e=__webpack_require__.O(void 0,["7366"],()=>__webpack_require__(70115));return __webpack_require__.O(e)},(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return!/^(1609|3367|5314|6375|9872)$/.test(e)},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>"static/js/async/"+e+"."+({1668:"120c2fdd",2237:"e23d4ce3",2272:"b29c0e6c",2287:"6a200c82",243:"098f10af",2463:"da2cfb76",254:"7abe0c11",2775:"0d98465a",3209:"6722a080",3379:"f0e413e5",4083:"82e017ef",45:"e217286d",4693:"552164ec",489:"693d11de",5123:"9f567207",5561:"b76a78d2",582:"4f5fd381",5976:"be3da2cf",6272:"f2f56a80",6464:"b6d25cb6",6550:"09a63ebf",6579:"cda7f334",6619:"93b9f2c4",6815:"80ba0d22",706:"01d44a78",7463:"e177b088",749:"7c748f48",7597:"42dde6f3",7680:"2cb113f6",7789:"50873df9",8222:"acb59083",8473:"25a53f08",854:"95bad760",8658:"55f9d53e",9007:"f28d0779",9204:"8f0c9c3a",9765:"07ec2c12",9880:"64c12943"})[e]+".js"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})()})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e)})(),(()=>{var e=[];__webpack_require__.O=(t,r,o,n)=>{if(r){n=n||0;for(var a=e.length;a>0&&e[a-1][2]>n;a--)e[a]=e[a-1];e[a]=[r,o,n];return}for(var i=1/0,a=0;a=n)&&Object.keys(__webpack_require__.O).every(e=>__webpack_require__.O[e](r[l]))?r.splice(l--,1):(s=!1,n{__webpack_require__.p="/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[{name:"@ant-design/colors",version:"7.2.1",factory:()=>()=>__webpack_require__(81463),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.11",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.5",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("8222")]).then(()=>()=>__webpack_require__(88477)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.5.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("6550"),__webpack_require__.e("1609")]).then(()=>()=>__webpack_require__(32053)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.10.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("7680")]).then(()=>()=>__webpack_require__(49075)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("582")]).then(()=>()=>__webpack_require__(95973)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.3",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("2272")]).then(()=>()=>__webpack_require__(39027)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("7789"),__webpack_require__.e("6464")]).then(()=>()=>__webpack_require__(98668)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>__webpack_require__.e("9204").then(()=>()=>__webpack_require__(18831)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([__webpack_require__.e("9880"),__webpack_require__.e("6375"),__webpack_require__.e("4083")]).then(()=>()=>__webpack_require__(43627)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.11.2",factory:()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("7597"),__webpack_require__.e("9872")]).then(()=>()=>__webpack_require__(62348)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>__webpack_require__.e("6272").then(()=>()=>__webpack_require__(28755)),eager:0,requiredVersion:"^8.20.5"},{name:"@tanstack/react-virtual",version:"3.13.23",factory:()=>__webpack_require__.e("6619").then(()=>()=>__webpack_require__(28166)),eager:0,requiredVersion:"^3.13.12"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([__webpack_require__.e("5123"),__webpack_require__.e("5314"),__webpack_require__.e("8473")]).then(()=>()=>__webpack_require__(6286)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>__webpack_require__(64530),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>__webpack_require__(46942),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.3.3",factory:()=>__webpack_require__.e("7463").then(()=>()=>__webpack_require__(99418)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>__webpack_require__.e("243").then(()=>()=>__webpack_require__(99310)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>Promise.all([__webpack_require__.e("2463"),__webpack_require__.e("854")]).then(()=>()=>__webpack_require__(12306)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>__webpack_require__.e("5976").then(()=>()=>__webpack_require__(72635)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"11.1.4",factory:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064)),eager:0,requiredVersion:"^10.1.1"},{name:"js-yaml",version:"4.1.1",factory:()=>__webpack_require__.e("6579").then(()=>()=>__webpack_require__(20382)),eager:0,requiredVersion:"^4.1.1"},{name:"leaflet-draw",version:"1.0.4",factory:()=>__webpack_require__.e("254").then(()=>()=>__webpack_require__(56269)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>__webpack_require__.e("706").then(()=>()=>__webpack_require__(53481)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.23",factory:()=>__webpack_require__.e("1668").then(()=>()=>__webpack_require__(2543)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.3",factory:()=>__webpack_require__.e("3209").then(()=>()=>__webpack_require__(21728)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>__webpack_require__(40961),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>__webpack_require__.e("6815").then(()=>()=>__webpack_require__(55794)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>__webpack_require__.e("3379").then(()=>()=>__webpack_require__(53054)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>__webpack_require__.e("2237").then(()=>()=>__webpack_require__(71468)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.3",factory:()=>__webpack_require__.e("749").then(()=>()=>__webpack_require__(76204)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>__webpack_require__(96540),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>__webpack_require__(38630),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>__webpack_require__.e("8658").then(()=>()=>__webpack_require__(81513)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{5314:["86569"],8410:["8651","25765","47867","16124"],3367:["23080","3319"],1609:["11264"],9872:["91251"],6375:["41834"]},moduleIdToConsumeDataMapping:{16124:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(81463)},8651:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(46942)},25765:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(40961)},23080:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168))},3319:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442))},11264:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618))},41834:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7789").then(()=>()=>__webpack_require__(98668))},86569:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(64530)},47867:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(96540)},91251:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064))}},initialConsumes:["8651","25765","47867","16124"]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={8410:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(/^(1609|3367|5314|6375|9872)$/.test(t))e[t]=0;else{var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}},__webpack_require__.O.j=t=>0===e[t];var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);if(s)var u=s(__webpack_require__)}for(t&&t(r);l{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(56491)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file +while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,m,r):l();var m=(e,r,n)=>d(r.get,o[1],t,0,p,n),p=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let h=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(h,o[2],0,0,p,1):d(s,o[2],0,0,f,1)})}},55216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:m}=c;if(f&&m){for(let[e,t]of Object.entries(m))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},56491(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,m,p,h=r(66927),g=r.n(h);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={},b="pimcore_studio_ui_bundle",_="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},h=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},S=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},T=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},M={},N=[],O={},A=null==(m=r.initializeExposesData)?void 0:m.shareScope;for(let e in g())r.federation[e]=g()[e];h(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(T))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),h(r.federation,"initOptions",()=>({})),h(r.federation.initOptions,"name",()=>b),h(r.federation.initOptions,"shareStrategy",()=>_),h(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),h(r.federation,"bundlerRuntimeOptions",()=>({})),h(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),h(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>S),h(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),h(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),h(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:S,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:M,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:N,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(p=r.consumesLoadingData)?void 0:p.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:M,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(r.exports,r,r.exports,__webpack_require__),r.loaded=!0,r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>{var e=__webpack_require__.O(void 0,["7366"],()=>__webpack_require__(70115));return __webpack_require__.O(e)},(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return!/^(1609|3367|5314|6375|9872)$/.test(e)},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>"static/js/async/"+e+"."+({1668:"120c2fdd",2237:"e23d4ce3",2272:"b29c0e6c",2287:"6a200c82",243:"098f10af",2463:"da2cfb76",254:"7abe0c11",2775:"0d98465a",3209:"6722a080",3379:"f0e413e5",4083:"82e017ef",45:"e217286d",4693:"552164ec",489:"693d11de",5123:"9f567207",5561:"b76a78d2",582:"4f5fd381",5976:"be3da2cf",6272:"f2f56a80",6464:"b6d25cb6",6550:"09a63ebf",6579:"cda7f334",6619:"93b9f2c4",6815:"80ba0d22",706:"01d44a78",7463:"e177b088",749:"7c748f48",7597:"42dde6f3",7680:"2cb113f6",7789:"50873df9",8222:"acb59083",8473:"25a53f08",854:"95bad760",8658:"55f9d53e",9007:"f28d0779",9204:"8f0c9c3a",9765:"07ec2c12",9880:"64c12943"})[e]+".js"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})()})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e)})(),(()=>{var e=[];__webpack_require__.O=(t,r,o,n)=>{if(r){n=n||0;for(var a=e.length;a>0&&e[a-1][2]>n;a--)e[a]=e[a-1];e[a]=[r,o,n];return}for(var i=1/0,a=0;a=n)&&Object.keys(__webpack_require__.O).every(e=>__webpack_require__.O[e](r[l]))?r.splice(l--,1):(s=!1,n{__webpack_require__.p="/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[{name:"@ant-design/colors",version:"7.2.1",factory:()=>()=>__webpack_require__(81463),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.11",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.5",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("8222")]).then(()=>()=>__webpack_require__(88477)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.5.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("6550"),__webpack_require__.e("1609")]).then(()=>()=>__webpack_require__(32053)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.10.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("7680")]).then(()=>()=>__webpack_require__(49075)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("582")]).then(()=>()=>__webpack_require__(95973)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.3",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("2272")]).then(()=>()=>__webpack_require__(39027)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("7789"),__webpack_require__.e("6464")]).then(()=>()=>__webpack_require__(98668)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>__webpack_require__.e("9204").then(()=>()=>__webpack_require__(18831)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([__webpack_require__.e("9880"),__webpack_require__.e("6375"),__webpack_require__.e("4083")]).then(()=>()=>__webpack_require__(43627)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.11.2",factory:()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("7597"),__webpack_require__.e("9872")]).then(()=>()=>__webpack_require__(62348)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>__webpack_require__.e("6272").then(()=>()=>__webpack_require__(28755)),eager:0,requiredVersion:"^8.20.5"},{name:"@tanstack/react-virtual",version:"3.13.23",factory:()=>__webpack_require__.e("6619").then(()=>()=>__webpack_require__(28166)),eager:0,requiredVersion:"^3.13.12"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([__webpack_require__.e("5123"),__webpack_require__.e("5314"),__webpack_require__.e("8473")]).then(()=>()=>__webpack_require__(6286)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>__webpack_require__(64530),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>__webpack_require__(46942),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.3.3",factory:()=>__webpack_require__.e("7463").then(()=>()=>__webpack_require__(99418)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>__webpack_require__.e("243").then(()=>()=>__webpack_require__(99310)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>Promise.all([__webpack_require__.e("2463"),__webpack_require__.e("854")]).then(()=>()=>__webpack_require__(12306)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>__webpack_require__.e("5976").then(()=>()=>__webpack_require__(72635)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"11.1.4",factory:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064)),eager:0,requiredVersion:"^10.1.1"},{name:"js-yaml",version:"4.1.1",factory:()=>__webpack_require__.e("6579").then(()=>()=>__webpack_require__(20382)),eager:0,requiredVersion:"^4.1.1"},{name:"leaflet-draw",version:"1.0.4",factory:()=>__webpack_require__.e("254").then(()=>()=>__webpack_require__(56269)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>__webpack_require__.e("706").then(()=>()=>__webpack_require__(53481)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.23",factory:()=>__webpack_require__.e("1668").then(()=>()=>__webpack_require__(2543)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.3",factory:()=>__webpack_require__.e("3209").then(()=>()=>__webpack_require__(21728)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>__webpack_require__(40961),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>__webpack_require__.e("6815").then(()=>()=>__webpack_require__(55794)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>__webpack_require__.e("3379").then(()=>()=>__webpack_require__(53054)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>__webpack_require__.e("2237").then(()=>()=>__webpack_require__(71468)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.3",factory:()=>__webpack_require__.e("749").then(()=>()=>__webpack_require__(76204)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>__webpack_require__(96540),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>__webpack_require__(38630),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>__webpack_require__.e("8658").then(()=>()=>__webpack_require__(81513)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{5314:["86569"],8410:["8651","25765","47867","16124"],3367:["23080","3319"],1609:["11264"],9872:["91251"],6375:["41834"]},moduleIdToConsumeDataMapping:{16124:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(81463)},8651:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(46942)},25765:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(40961)},23080:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168))},3319:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442))},11264:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618))},41834:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7789").then(()=>()=>__webpack_require__(98668))},86569:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(64530)},47867:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(96540)},91251:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064))}},initialConsumes:["8651","25765","47867","16124"]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={8410:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(/^(1609|3367|5314|6375|9872)$/.test(t))e[t]=0;else{var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}},__webpack_require__.O.j=t=>0===e[t];var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);if(s)var u=s(__webpack_require__)}for(t&&t(r);l{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(56491)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/index.f8206b20.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js similarity index 99% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js index 3008d343a4..ee8709dfcd 100644 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js +++ b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js @@ -452,4 +452,4 @@ var pimcore_studio_ui_bundle;(()=>{var __webpack_modules__={81463(e,t,n){"use st ${(0,l.safeToString)(this.remoteInfo)}`),this.remoteEntryExports=e,this.remoteEntryExports}async init(e,t,n){let o=await this.getEntry();if(this.inited)return o;if(this.initPromise)return await this.initPromise,o;this.initing=!0,this.initPromise=(async()=>{let{remoteEntryInitOptions:a,shareScope:l,initScope:u}=c(this.remoteInfo,this.host.shareScopeMap,n),d=await this.host.hooks.lifecycle.beforeInitContainer.emit({shareScope:l,remoteEntryInitOptions:a,initScope:u,remoteInfo:this.remoteInfo,origin:this.host});void 0===(null==o?void 0:o.init)&&r.error(s.RUNTIME_002,s.runtimeDescMap,{hostName:this.host.name,remoteName:this.remoteInfo.name,remoteEntryUrl:this.remoteInfo.entry,remoteEntryKey:this.remoteInfo.entryGlobalName},void 0,i.optionsToMFContext(this.host.options)),await o.init(d.shareScope,d.initScope,d.remoteEntryInitOptions),await this.host.hooks.lifecycle.initContainer.emit({...d,id:e,remoteSnapshot:t,remoteEntryExports:o}),this.inited=!0})();try{await this.initPromise}finally{this.initing=!1,this.initPromise=void 0}return o}async get(e,t,n,a){let i,{loadFactory:l=!0}=n||{loadFactory:!0},s=await this.init(e,a);this.lib=s,(i=await this.host.loaderHook.lifecycle.getModuleFactory.emit({remoteEntryExports:s,expose:t,moduleInfo:this.remoteInfo}))||(i=await s.get(t)),r.assert(i,`${o.getFMId(this.remoteInfo)} remote don't export ${t}.`);let c=o.processModuleAlias(this.remoteInfo.name,t),u=this.wraperFactory(i,c);return l?await u():u}wraperFactory(e,t){function n(e,t){e&&"object"==typeof e&&Object.isExtensible(e)&&!Object.getOwnPropertyDescriptor(e,Symbol.for("mf_module_id"))&&Object.defineProperty(e,Symbol.for("mf_module_id"),{value:t,enumerable:!1})}return e instanceof Promise?async()=>{let r=await e();return n(r,t),r}:()=>{let r=e();return n(r,t),r}}constructor({remoteInfo:e,host:t}){this.inited=!1,this.initing=!1,this.lib=void 0,this.remoteInfo=e,this.host=t}}},64710(e,t,n){let r=n(9350),o=n(44391),a=n(8369);n(21132);let i=n(19599),l=n(14260),s=n(50630);function c(e){let t=e.split(":");return 1===t.length?{name:t[0],version:void 0}:2===t.length?{name:t[0],version:t[1]}:{name:t[1],version:t[2]}}function u(e,t,n,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},l=arguments.length>5?arguments[5]:void 0,{value:d}=o.getInfoWithoutType(e,r.getFMId(t)),f=l||d;if(f&&!(0,s.isManifestProvider)(f)&&(n(f,t,a),f.remotesInfo))for(let t of Object.keys(f.remotesInfo)){if(i[t])continue;i[t]=!0;let r=c(t),o=f.remotesInfo[t];u(e,{name:r.name,version:o.matchedVersion},n,!1,i,void 0)}}let d=(e,t)=>document.querySelector(`${e}[${"link"===e?"href":"src"}="${t}"]`);function f(e,t,n,l,c){let f=[],p=[],m=[],g=new Set,h=new Set,{options:v}=e,{preloadConfig:b}=t,{depsRemote:y}=b;if(u(l,n,(t,n,a)=>{var l;let c;if(a)c=b;else if(Array.isArray(y)){let e=y.find(e=>e.nameOrAlias===n.name||e.nameOrAlias===n.alias);if(!e)return;c=i.defaultPreloadArgs(e)}else{if(!0!==y)return;c=b}let u=(0,s.getResourceUrl)(t,r.getRemoteEntryInfoFromSnapshot(t).url);u&&m.push({name:n.name,moduleInfo:{name:n.name,entry:u,type:"remoteEntryType"in t?t.remoteEntryType:"global",entryGlobalName:"globalName"in t?t.globalName:n.name,shareScope:"",version:"version"in t?t.version:void 0},url:u});let d="modules"in t?t.modules:[],g=i.normalizePreloadExposes(c.exposes);function h(e){let n=e.map(e=>(0,s.getResourceUrl)(t,e));return c.filter?n.filter(c.filter):n}if(g.length&&"modules"in t&&(d=null==t||null==(l=t.modules)?void 0:l.reduce((e,t)=>((null==g?void 0:g.indexOf(t.moduleName))!==-1&&e.push(t),e),[])),d){let r=d.length;for(let a=0;a0){let t=(t,n)=>{let{shared:r}=a.getRegisteredShare(e.shareScopeMap,n.sharedName,t,e.sharedHandler.hooks.lifecycle.resolveShare)||{};r&&"function"==typeof r.lib&&(n.assets.js.sync.forEach(e=>{g.add(e)}),n.assets.css.sync.forEach(e=>{h.add(e)}))};c.shared.forEach(e=>{var n;let o=null==(n=v.shared)?void 0:n[e.sharedName];if(!o)return;let a=e.version?o.find(t=>t.version===e.version):o;a&&r.arrayOptions(a).forEach(n=>{t(n,e)})})}let x=p.filter(e=>!g.has(e)&&!d("script",e));return{cssAssets:f.filter(e=>!h.has(e)&&!d("link",e)),jsAssetsWithoutEntry:x,entryAssets:m.filter(e=>!d("script",e.url))}}t.generatePreloadAssetsPlugin=function(){return{name:"generate-preload-assets-plugin",async generatePreloadAssets(e){let{origin:t,preloadOptions:n,remoteInfo:o,remote:a,globalSnapshot:i,remoteSnapshot:c}=e;return s.isBrowserEnvValue?r.isRemoteInfoWithEntry(a)&&r.isPureRemoteEntry(a)?{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[{name:a.name,url:a.entry,moduleInfo:{name:o.name,entry:a.entry,type:o.type||"global",entryGlobalName:"",shareScope:""}}]}:(l.assignRemoteInfo(o,c),f(t,n,o,i,c)):{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[]}}}}},29152(e,t,n){let r=n(48628),o=n(9350),a=n(44391),i=n(48393);n(21132);let l=n(62964),s=n(92299),c=n(60317);n(94317);let u=n(50630),d=n(84363);function f(e,t){let n=a.getGlobalSnapshotInfoByModuleInfo({name:t.name,version:t.options.version}),r=n&&"remotesInfo"in n&&n.remotesInfo&&a.getInfoWithoutType(n.remotesInfo,e.name).value;return r&&r.matchedVersion?{hostGlobalSnapshot:n,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:r.matchedVersion})}:{hostGlobalSnapshot:void 0,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:"version"in e?e.version:void 0})}}t.SnapshotHandler=class{async loadRemoteSnapshotInfo(e){let t,n,{moduleInfo:l,id:s,expose:c}=e,{options:f}=this.HostInstance;await this.hooks.lifecycle.beforeLoadRemoteSnapshot.emit({options:f,moduleInfo:l});let p=a.getGlobalSnapshotInfoByModuleInfo({name:this.HostInstance.options.name,version:this.HostInstance.options.version});p||(p={version:this.HostInstance.options.version||"",remoteEntry:"",remotesInfo:{}},a.addGlobalSnapshot({[this.HostInstance.options.name]:p})),p&&"remotesInfo"in p&&!a.getInfoWithoutType(p.remotesInfo,l.name).value&&("version"in l||"entry"in l)&&(p.remotesInfo={...null==p?void 0:p.remotesInfo,[l.name]:{matchedVersion:"version"in l?l.version:l.entry}});let{hostGlobalSnapshot:m,remoteSnapshot:g,globalSnapshot:h}=this.getGlobalRemoteInfo(l),{remoteSnapshot:v,globalSnapshot:b}=await this.hooks.lifecycle.loadSnapshot.emit({options:f,moduleInfo:l,hostGlobalSnapshot:m,remoteSnapshot:g,globalSnapshot:h});if(v)if((0,u.isManifestProvider)(v)){let e=u.isBrowserEnvValue?v.remoteEntry:v.ssrRemoteEntry||v.remoteEntry||"",r=await this.getManifestJson(e,l,{}),o=a.setGlobalSnapshotInfoByModuleInfo({...l,entry:e},r);t=r,n=o}else{let{remoteSnapshot:e}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:l,remoteSnapshot:v,from:"global"});t=e,n=b}else if(o.isRemoteInfoWithEntry(l)){let e=await this.getManifestJson(l.entry,l,{}),r=a.setGlobalSnapshotInfoByModuleInfo(l,e),{remoteSnapshot:o}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:l,remoteSnapshot:e,from:"global"});t=o,n=r}else r.error(d.RUNTIME_007,d.runtimeDescMap,{remoteName:l.name,remoteVersion:l.version,hostName:this.HostInstance.options.name,globalSnapshot:JSON.stringify(b)},void 0,i.optionsToMFContext(this.HostInstance.options));return await this.hooks.lifecycle.afterLoadSnapshot.emit({id:s,host:this.HostInstance,options:f,moduleInfo:l,remoteSnapshot:t}),{remoteSnapshot:t,globalSnapshot:n}}getGlobalRemoteInfo(e){return f(e,this.HostInstance)}async getManifestJson(e,t,n){let o=async()=>{let n=this.manifestCache.get(e);if(n)return n;try{let t=await this.loaderHook.lifecycle.fetch.emit(e,{});t&&t instanceof Response||(t=await fetch(e,{})),n=await t.json()}catch(o){(n=await this.HostInstance.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:o,from:"runtime",lifecycle:"afterResolve",origin:this.HostInstance}))||(delete this.manifestLoading[e],r.error(d.RUNTIME_003,d.runtimeDescMap,{manifestUrl:e,moduleName:t.name,hostName:this.HostInstance.options.name},`${o}`,i.optionsToMFContext(this.HostInstance.options)))}return r.assert(n.metaData&&n.exposes&&n.shared,`"${e}" is not a valid federation manifest for remote "${t.name}". Missing required fields: ${[!n.metaData&&"metaData",!n.exposes&&"exposes",!n.shared&&"shared"].filter(Boolean).join(", ")}.`),this.manifestCache.set(e,n),n},a=async()=>{let n=await o(),r=(0,u.generateSnapshotFromManifest)(n,{version:e}),{remoteSnapshot:a}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:t,manifestJson:n,remoteSnapshot:r,manifestUrl:e,from:"manifest"});return a};return this.manifestLoading[e]||(this.manifestLoading[e]=a().then(e=>e)),this.manifestLoading[e]}constructor(e){this.loadingHostSnapshot=null,this.manifestCache=new Map,this.hooks=new c.PluginSystem({beforeLoadRemoteSnapshot:new l.AsyncHook("beforeLoadRemoteSnapshot"),loadSnapshot:new s.AsyncWaterfallHook("loadGlobalSnapshot"),loadRemoteSnapshot:new s.AsyncWaterfallHook("loadRemoteSnapshot"),afterLoadSnapshot:new s.AsyncWaterfallHook("afterLoadSnapshot")}),this.manifestLoading=a.Global.__FEDERATION__.__MANIFEST_LOADING__,this.HostInstance=e,this.loaderHook=e.loaderHook}},t.getGlobalRemoteInfo=f},14260(e,t,n){let r=n(48628),o=n(9350);n(21132);let a=n(19599),i=n(50630),l=n(84363);function s(e,t){let n=o.getRemoteEntryInfoFromSnapshot(t);n.url||r.error(l.RUNTIME_011,l.runtimeDescMap,{remoteName:e.name});let a=(0,i.getResourceUrl)(t,n.url);i.isBrowserEnvValue||a.startsWith("http")||(a=`https:${a}`),e.type=n.type,e.entryGlobalName=n.globalName,e.entry=a,e.version=t.version,e.buildVersion=t.buildVersion}function c(){return{name:"snapshot-plugin",async afterResolve(e){let{remote:t,pkgNameOrAlias:n,expose:r,origin:i,remoteInfo:l,id:c}=e;if(!o.isRemoteInfoWithEntry(t)||!o.isPureRemoteEntry(t)){let{remoteSnapshot:o,globalSnapshot:u}=await i.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:t,id:c});s(l,o);let d={remote:t,preloadConfig:{nameOrAlias:n,exposes:[r],resourceCategory:"sync",share:!1,depsRemote:!1}},f=await i.remoteHandler.hooks.lifecycle.generatePreloadAssets.emit({origin:i,preloadOptions:d,remoteInfo:l,remote:t,remoteSnapshot:o,globalSnapshot:u});return f&&a.preloadAssets(l,i,f,!1),{...e,remoteSnapshot:o}}return e}}}t.assignRemoteInfo=s,t.snapshotPlugin=c},71777(e,t,n){let r=n(48628),o=n(44391),a=n(92926),i=n(8369),l=n(6079),s=n(556),c=n(48393);n(21132);let u=n(19599),d=n(12003),f=n(26227),p=n(62964),m=n(82593),g=n(92299),h=n(60317);n(94317);let v=n(29152),b=n(50630),y=n(84363);t.RemoteHandler=class{formatAndRegisterRemote(e,t){return(t.remotes||[]).reduce((e,t)=>(this.registerRemote(t,e,{force:!1}),e),e.remotes)}setIdToRemoteMap(e,t){let{remote:n,expose:r}=t,{name:o,alias:a}=n;if(this.idToRemoteMap[e]={name:n.name,expose:r},a&&e.startsWith(o)){let t=e.replace(o,a);this.idToRemoteMap[t]={name:n.name,expose:r};return}if(a&&e.startsWith(a)){let t=e.replace(a,o);this.idToRemoteMap[t]={name:n.name,expose:r}}}async loadRemote(e,t){let{host:n}=this;try{let{loadFactory:r=!0}=t||{loadFactory:!0},{module:o,moduleOptions:a,remoteMatchInfo:i}=await this.getRemoteModuleAndOptions({id:e}),{pkgNameOrAlias:l,remote:s,expose:c,id:u,remoteSnapshot:d}=i,f=await o.get(u,c,t,d),p=await this.hooks.lifecycle.onLoad.emit({id:u,pkgNameOrAlias:l,expose:c,exposeModule:r?f:void 0,exposeModuleFactory:r?void 0:f,remote:s,options:a,moduleInstance:o,origin:n});if(this.setIdToRemoteMap(e,i),"function"==typeof p)return p;return f}catch(a){let{from:r="runtime"}=t||{from:"runtime"},o=await this.hooks.lifecycle.errorLoadRemote.emit({id:e,error:a,from:r,lifecycle:"onLoad",origin:n});if(!o)throw a;return o}}async preloadRemote(e){let{host:t}=this;await this.hooks.lifecycle.beforePreloadRemote.emit({preloadOps:e,options:t.options,origin:t});let n=u.formatPreloadArgs(t.options.remotes,e);await Promise.all(n.map(async e=>{let{remote:n}=e,r=s.getRemoteInfo(n),{globalSnapshot:o,remoteSnapshot:a}=await t.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:n}),i=await this.hooks.lifecycle.generatePreloadAssets.emit({origin:t,preloadOptions:e,remote:n,remoteInfo:r,globalSnapshot:o,remoteSnapshot:a});i&&u.preloadAssets(r,t,i)}))}registerRemotes(e,t){let{host:n}=this;e.forEach(e=>{this.registerRemote(e,n.options.remotes,{force:null==t?void 0:t.force})})}async getRemoteModuleAndOptions(e){let t,{host:n}=this,{id:o}=e;try{t=await this.hooks.lifecycle.beforeRequest.emit({id:o,options:n.options,origin:n})}catch(e){if(!(t=await this.hooks.lifecycle.errorLoadRemote.emit({id:o,options:n.options,origin:n,from:"runtime",error:e,lifecycle:"beforeRequest"})))throw e}let{id:a}=t,i=l.matchRemoteWithNameAndExpose(n.options.remotes,a);i||r.error(y.RUNTIME_004,y.runtimeDescMap,{hostName:n.options.name,requestId:a},void 0,c.optionsToMFContext(n.options));let{remote:u}=i,f=s.getRemoteInfo(u),p=await n.sharedHandler.hooks.lifecycle.afterResolve.emit({id:a,...i,options:n.options,origin:n,remoteInfo:f}),{remote:m,expose:g}=p;r.assert(m&&g,`The 'beforeRequest' hook was executed, but it failed to return the correct 'remote' and 'expose' values while loading ${a}.`);let h=n.moduleCache.get(m.name),v={host:n,remoteInfo:f};return h||(h=new d.Module(v),n.moduleCache.set(m.name,h)),{module:h,moduleOptions:v,remoteMatchInfo:p}}registerRemote(e,t,n){let{host:o}=this,i=()=>{if(e.alias){let n=t.find(t=>{var n;return e.alias&&(t.name.startsWith(e.alias)||(null==(n=t.alias)?void 0:n.startsWith(e.alias)))});r.assert(!n,`The alias ${e.alias} of remote ${e.name} is not allowed to be the prefix of ${n&&n.name} name or alias`)}"entry"in e&&b.isBrowserEnvValue&&"u">typeof window&&!e.entry.startsWith("http")&&(e.entry=new URL(e.entry,window.location.origin).href),e.shareScope||(e.shareScope=a.DEFAULT_SCOPE),e.type||(e.type=a.DEFAULT_REMOTE_TYPE)};this.hooks.lifecycle.beforeRegisterRemote.emit({remote:e,origin:o});let l=t.find(t=>t.name===e.name);if(l){let r=[`The remote "${e.name}" is already registered.`,"Please note that overriding it may cause unexpected errors."];(null==n?void 0:n.force)&&(this.removeRemote(l),i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:o}),(0,b.warn)(r.join(" ")))}else i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:o})}removeRemote(e){try{let{host:n}=this,{name:r}=e,a=n.options.remotes.findIndex(e=>e.name===r);-1!==a&&n.options.remotes.splice(a,1);let l=n.moduleCache.get(e.name);if(l){var t;let r=l.remoteInfo,a=r.entryGlobalName;o.CurrentGlobal[a]&&((null==(t=Object.getOwnPropertyDescriptor(o.CurrentGlobal,a))?void 0:t.configurable)?delete o.CurrentGlobal[a]:o.CurrentGlobal[a]=void 0);let c=s.getRemoteEntryUniqueKey(l.remoteInfo);o.globalLoading[c]&&delete o.globalLoading[c],n.snapshotHandler.manifestCache.delete(r.entry);let u=r.buildVersion?(0,b.composeKeyWithSeparator)(r.name,r.buildVersion):r.name,d=o.CurrentGlobal.__FEDERATION__.__INSTANCES__.findIndex(e=>r.buildVersion?e.options.id===u:e.name===u);if(-1!==d){let e=o.CurrentGlobal.__FEDERATION__.__INSTANCES__[d];u=e.options.id||u;let t=i.getGlobalShareScope(),n=!0,a=[];Object.keys(t).forEach(e=>{let o=t[e];o&&Object.keys(o).forEach(t=>{let i=o[t];i&&Object.keys(i).forEach(o=>{let l=i[o];l&&Object.keys(l).forEach(i=>{let s=l[i];s&&"object"==typeof s&&s.from===r.name&&(s.loaded||s.loading?(s.useIn=s.useIn.filter(e=>e!==r.name),s.useIn.length?n=!1:a.push([e,t,o,i])):a.push([e,t,o,i]))})})})}),n&&(e.shareScopeMap={},delete t[u]),a.forEach(e=>{var n,r,o;let[a,i,l,s]=e;null==(o=t[a])||null==(r=o[i])||null==(n=r[l])||delete n[s]}),o.CurrentGlobal.__FEDERATION__.__INSTANCES__.splice(d,1)}let{hostGlobalSnapshot:f}=v.getGlobalRemoteInfo(e,n);if(f){let t=f&&"remotesInfo"in f&&f.remotesInfo&&o.getInfoWithoutType(f.remotesInfo,e.name).key;t&&(delete f.remotesInfo[t],o.Global.__FEDERATION__.__MANIFEST_LOADING__[t]&&delete o.Global.__FEDERATION__.__MANIFEST_LOADING__[t])}n.moduleCache.delete(e.name)}}catch(e){r.logger.error(`removeRemote failed: ${e instanceof Error?e.message:String(e)}`)}}constructor(e){this.hooks=new h.PluginSystem({beforeRegisterRemote:new m.SyncWaterfallHook("beforeRegisterRemote"),registerRemote:new m.SyncWaterfallHook("registerRemote"),beforeRequest:new g.AsyncWaterfallHook("beforeRequest"),onLoad:new p.AsyncHook("onLoad"),handlePreloadModule:new f.SyncHook("handlePreloadModule"),errorLoadRemote:new p.AsyncHook("errorLoadRemote"),beforePreloadRemote:new p.AsyncHook("beforePreloadRemote"),generatePreloadAssets:new p.AsyncHook("generatePreloadAssets"),afterPreloadRemote:new p.AsyncHook,loadEntry:new p.AsyncHook}),this.host=e,this.idToRemoteMap={}}}},17300(e,t,n){let r=n(48628),o=n(92926),a=n(8369),i=n(48393);n(21132);let l=n(62964),s=n(82593),c=n(92299),u=n(60317);n(94317);let d=n(84363);t.SharedHandler=class{registerShared(e,t){let{newShareInfos:n,allShareInfos:r}=a.formatShareConfigs(e,t);return Object.keys(n).forEach(e=>{n[e].forEach(n=>{n.scope.forEach(r=>{var o;this.hooks.lifecycle.beforeRegisterShare.emit({origin:this.host,pkgName:e,shared:n}),(null==(o=this.shareScopeMap[r])?void 0:o[e])||this.setShared({pkgName:e,lib:n.lib,get:n.get,loaded:n.loaded||!!n.lib,shared:n,from:t.name})})})}),{newShareInfos:n,allShareInfos:r}}async loadShare(e,t){let{host:n}=this,o=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:n.options.shared});(null==o?void 0:o.scope)&&await Promise.all(o.scope.map(async e=>{await Promise.all(this.initializeSharing(e,{strategy:o.strategy}))}));let{shareInfo:i}=await this.hooks.lifecycle.beforeLoadShare.emit({pkgName:e,shareInfo:o,shared:n.options.shared,origin:n});r.assert(i,`Cannot find shared "${e}" in host "${n.options.name}". Ensure the shared config for "${e}" is declared in the federation plugin options and the host has been initialized before loading shares.`);let{shared:l,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(l){let t=a.directShare(l,s);if(t.lib)return a.addUseIn(t,n.options.name),t.lib;if(t.loading&&!t.loaded){let e=await t.loading;return t.loaded=!0,t.lib||(t.lib=e),a.addUseIn(t,n.options.name),e}{let r=(async()=>{let e=await t.get();return a.addUseIn(t,n.options.name),t.loaded=!0,t.lib=e,e})();return this.setShared({pkgName:e,loaded:!1,shared:l,from:n.options.name,lib:null,loading:r,treeShaking:s?t:void 0}),r}}{if(null==t?void 0:t.customShareInfo)return!1;let r=a.shouldUseTreeShaking(i.treeShaking),o=a.directShare(i,r),l=(async()=>{let t=await o.get();o.lib=t,o.loaded=!0,a.addUseIn(o,n.options.name);let{shared:r,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(r){let e=a.directShare(r,l);e.lib=t,e.loaded=!0,r.from=i.from}return t})();return this.setShared({pkgName:e,loaded:!1,shared:i,from:n.options.name,lib:null,loading:l,treeShaking:r?o:void 0}),l}}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:o.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0,{host:n}=this,r=null==t?void 0:t.from,i=null==t?void 0:t.strategy,l=null==t?void 0:t.initScope,s=[];if("build"!==r){let{initTokens:t}=this;l||(l=[]);let n=t[e];if(n||(n=t[e]={from:this.host.name}),l.indexOf(n)>=0)return s;l.push(n)}let c=this.shareScopeMap,u=n.options.name;c[e]||(c[e]={});let d=c[e],f=(e,t)=>{var n;let{version:r,eager:o}=t;d[e]=d[e]||{};let i=d[e],l=i[r]&&a.directShare(i[r]),s=!!(l&&("eager"in l&&l.eager||"shareConfig"in l&&(null==(n=l.shareConfig)?void 0:n.eager)));(!l||"loaded-first"!==l.strategy&&!l.loaded&&(!o!=!s?o:u>i[r].from))&&(i[r]=t)},p=async e=>{let t,{module:r}=await n.remoteHandler.getRemoteModuleAndOptions({id:e});try{t=await r.getEntry()}catch(r){if(!(t=await n.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:r,from:"runtime",lifecycle:"beforeLoadShare",origin:n})))return}finally{(null==t?void 0:t.init)&&!r.initing&&(r.remoteEntryExports=t,await r.init(void 0,void 0,l))}};return Object.keys(n.options.shared).forEach(t=>{n.options.shared[t].forEach(n=>{n.scope.includes(e)&&f(t,n)})}),("version-first"===n.options.shareStrategy||"version-first"===i)&&n.options.remotes.forEach(t=>{t.shareScope===e&&s.push(p(t.name))}),s}loadShareSync(e,t){let{host:n}=this,o=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:n.options.shared});(null==o?void 0:o.scope)&&o.scope.forEach(e=>{this.initializeSharing(e,{strategy:o.strategy})});let{shared:l,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,o,this.hooks.lifecycle.resolveShare)||{};if(l){if("function"==typeof l.lib)return a.addUseIn(l,n.options.name),l.loaded||(l.loaded=!0,l.from===n.options.name&&(o.loaded=!0)),l.lib;if("function"==typeof l.get){let t=l.get();if(!(t instanceof Promise))return a.addUseIn(l,n.options.name),this.setShared({pkgName:e,loaded:!0,from:n.options.name,lib:t,shared:l}),t}}if(o.lib)return o.loaded||(o.loaded=!0),o.lib;if(o.get){let a=o.get();return a instanceof Promise&&r.error((null==t?void 0:t.from)==="build"?d.RUNTIME_005:d.RUNTIME_006,d.runtimeDescMap,{hostName:n.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(n.options)),o.lib=a,this.setShared({pkgName:e,loaded:!0,from:n.options.name,lib:o.lib,shared:o}),o.lib}r.error(d.RUNTIME_006,d.runtimeDescMap,{hostName:n.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(n.options))}initShareScopeMap(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{host:r}=this;this.shareScopeMap[e]=t,this.hooks.lifecycle.initContainerShareScopeMap.emit({shareScope:t,options:r.options,origin:r,scopeName:e,hostShareScopeMap:n.hostShareScopeMap})}setShared(e){let{pkgName:t,shared:n,from:r,lib:o,loading:a,loaded:i,get:l,treeShaking:s}=e,{version:c,scope:u="default",...d}=n,f=Array.isArray(u)?u:[u],p=e=>{let t=(e,t,n)=>{n&&!e[t]&&(e[t]=n)},n=s?e.treeShaking:e;t(n,"loaded",i),t(n,"loading",a),t(n,"get",l)};f.forEach(e=>{this.shareScopeMap[e]||(this.shareScopeMap[e]={}),this.shareScopeMap[e][t]||(this.shareScopeMap[e][t]={}),this.shareScopeMap[e][t][c]||(this.shareScopeMap[e][t][c]={version:c,scope:[e],...d,lib:o});let n=this.shareScopeMap[e][t][c];p(n),r&&n.from!==r&&(n.from=r)})}_setGlobalShareScopeMap(e){let t=a.getGlobalShareScope(),n=e.id||e.name;n&&!t[n]&&(t[n]=this.shareScopeMap)}constructor(e){this.hooks=new u.PluginSystem({beforeRegisterShare:new s.SyncWaterfallHook("beforeRegisterShare"),afterResolve:new c.AsyncWaterfallHook("afterResolve"),beforeLoadShare:new c.AsyncWaterfallHook("beforeLoadShare"),loadShare:new l.AsyncHook,resolveShare:new s.SyncWaterfallHook("resolveShare"),initContainerShareScopeMap:new s.SyncWaterfallHook("initContainerShareScopeMap")}),this.host=e,this.shareScopeMap={},this.initTokens={},this._setGlobalShareScopeMap(e.options)}}},87703(e,t,n){var r=n(31748).__exportAll({});Object.defineProperty(t,"type_exports",{enumerable:!0,get:function(){return r}})},48393(e,t){function n(e){return{name:e.name,alias:e.alias,entry:"entry"in e?e.entry:void 0,version:"version"in e?e.version:void 0,type:e.type,entryGlobalName:e.entryGlobalName,shareScope:e.shareScope}}t.optionsToMFContext=function(e){var t,r,o,a,i,l;let s={};for(let[t,n]of Object.entries(e.shared)){let e=n[0];e&&(s[t]={version:e.version,singleton:null==(o=e.shareConfig)?void 0:o.singleton,requiredVersion:(null==(a=e.shareConfig)?void 0:a.requiredVersion)!==!1&&(null==(i=e.shareConfig)?void 0:i.requiredVersion),eager:e.eager,strictVersion:null==(l=e.shareConfig)?void 0:l.strictVersion})}return{project:{name:e.name,mfRole:(null==(t=e.remotes)?void 0:t.length)>0?"host":"unknown"},mfConfig:{name:e.name,remotes:(null==(r=e.remotes)?void 0:r.map(n))??[],shared:s}}}},17829(e,t,n){n(50630),t.getBuilderId=function(){return"pimcore_studio_ui_bundle:0.0.1"}},62964(e,t,n){let r=n(26227);t.AsyncHook=class extends r.SyncHook{emit(){let e;for(var t=arguments.length,n=Array(t),r=0;r0){let t=0,r=e=>!1!==e&&(t0){let n=0,o=t=>(r.warn(t),this.onerror(t),e),a=r=>{if(i.checkReturnData(e,r)){if(e=r,n{let n=e[t];n&&this.lifecycle[t].on(n)})}}removePlugin(e){r.assert(e,"A name is required.");let t=this.registerPlugins[e];r.assert(t,`The plugin "${e}" is not registered.`),Object.keys(t).forEach(e=>{"name"!==e&&this.lifecycle[e].remove(t[e])})}constructor(e){this.registerPlugins={},this.lifecycle=e,this.lifecycleKeys=Object.keys(e)}}},26227(e,t){t.SyncHook=class{on(e){"function"==typeof e&&this.listeners.add(e)}once(e){let t=this;this.on(function n(){for(var r=arguments.length,o=Array(r),a=0;a0&&this.listeners.forEach(t=>{e=t(...n)}),e}remove(e){this.listeners.delete(e)}removeAll(){this.listeners.clear()}constructor(e){this.type="",this.listeners=new Set,e&&(this.type=e)}}},82593(e,t,n){let r=n(48628),o=n(9350),a=n(26227);function i(e,t){if(!o.isObject(t))return!1;if(e!==t){for(let n in e)if(!(n in t))return!1}return!0}t.SyncWaterfallHook=class extends a.SyncHook{emit(e){for(let t of(o.isObject(e)||r.error(`The data for the "${this.type}" hook should be an object.`),this.listeners))try{let n=t(e);if(i(e,n))e=n;else{this.onerror(`A plugin returned an unacceptable value for the "${this.type}" type.`);break}}catch(e){r.warn(e),this.onerror(e)}return e}constructor(e){super(),this.onerror=r.error,this.type=e}},t.checkReturnData=i},21132(e,t,n){n(48628),n(9350),n(17829),n(6079),n(28457),n(556),n(48393),n(50630)},556(e,t,n){let r=n(48628),o=n(44391),a=n(92926),i=n(50630),l=n(84363),s=".then(callbacks[0]).catch(callbacks[1])";async function c(e){let{entry:t,remoteEntryExports:n}=e;return new Promise((e,o)=>{try{n?e(n):"u">typeof FEDERATION_ALLOW_NEW_FUNCTION?Function("callbacks",`import("${t}")${s}`)([e,o]):import(t).then(e).catch(o)}catch(e){r.error(`Failed to load ESM entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}async function u(e){let{entry:t,remoteEntryExports:n}=e;return new Promise((e,o)=>{try{n?e(n):Function("callbacks",`System.import("${t}")${s}`)([e,o])}catch(e){r.error(`Failed to load SystemJS entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}function d(e,t,n){let{remoteEntryKey:a,entryExports:i}=o.getRemoteEntryExports(e,t);return i||r.error(l.RUNTIME_001,l.runtimeDescMap,{remoteName:e,remoteEntryUrl:n,remoteEntryKey:a}),i}async function f(e){let{name:t,globalName:n,entry:a,loaderHook:s,getEntryUrl:c}=e,{entryExports:u}=o.getRemoteEntryExports(t,n);if(u)return u;let f=c?c(a):a;return(0,i.loadScript)(f,{attrs:{},createScriptHook:(e,t)=>{let n=s.lifecycle.createScript.emit({url:e,attrs:t});if(n&&(n instanceof HTMLScriptElement||"script"in n||"timeout"in n))return n}}).then(()=>d(t,n,a),e=>{let n=e instanceof Error?e.message:String(e);r.error(l.RUNTIME_008,l.runtimeDescMap,{remoteName:t,resourceUrl:f},n)})}async function p(e){let{remoteInfo:t,remoteEntryExports:n,loaderHook:r,getEntryUrl:o}=e,{entry:a,entryGlobalName:i,name:l,type:s}=t;switch(s){case"esm":case"module":return c({entry:a,remoteEntryExports:n});case"system":return u({entry:a,remoteEntryExports:n});default:return f({entry:a,globalName:i,name:l,loaderHook:r,getEntryUrl:o})}}async function m(e){let{remoteInfo:t,loaderHook:n}=e,{entry:a,entryGlobalName:l,name:s,type:c}=t,{entryExports:u}=o.getRemoteEntryExports(s,l);return u||(0,i.loadScriptNode)(a,{attrs:{name:s,globalName:l,type:c},loaderHook:{createScriptHook:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=n.lifecycle.createScript.emit({url:e,attrs:t});if(r&&"url"in r)return r}}}).then(()=>d(s,l,a)).catch(e=>{r.error(`Failed to load Node.js entry for remote "${s}" from "${a}". ${e instanceof Error?e.message:String(e)}`)})}function g(e){let{entry:t,name:n}=e;return(0,i.composeKeyWithSeparator)(n,t)}async function h(e){let{origin:t,remoteEntryExports:n,remoteInfo:r,getEntryUrl:a,_inErrorHandling:s=!1}=e,c=g(r);if(n)return n;if(!o.globalLoading[c]){let e=t.remoteHandler.hooks.lifecycle.loadEntry,u=t.loaderHook;o.globalLoading[c]=e.emit({loaderHook:u,remoteInfo:r,remoteEntryExports:n}).then(e=>e||(("u">typeof ENV_TARGET?"web"===ENV_TARGET:i.isBrowserEnvValue)?p({remoteInfo:r,remoteEntryExports:n,loaderHook:u,getEntryUrl:a}):m({remoteInfo:r,loaderHook:u}))).catch(async e=>{let a=g(r),i=e instanceof Error&&e.message.includes("ScriptExecutionError");if(e instanceof Error&&e.message.includes(l.RUNTIME_008)&&!i&&!s){let e=e=>h({...e,_inErrorHandling:!0}),i=await t.loaderHook.lifecycle.loadEntryError.emit({getRemoteEntry:e,origin:t,remoteInfo:r,remoteEntryExports:n,globalLoading:o.globalLoading,uniqueKey:a});if(i)return i}throw e})}return o.globalLoading[c]}function v(e){return{...e,entry:"entry"in e?e.entry:"",type:e.type||a.DEFAULT_REMOTE_TYPE,entryGlobalName:e.entryGlobalName||e.name,shareScope:e.shareScope||a.DEFAULT_SCOPE}}t.getRemoteEntry=h,t.getRemoteEntryUniqueKey=g,t.getRemoteInfo=v},48628(e,t,n){let r=n(50630),o=n(6619),a="[ Federation Runtime ]",i=(0,r.createLogger)(a);function l(e,t,n,r,i){if(void 0!==t)return(0,o.logAndReport)(e,t,n??{},e=>{throw Error(`${a}: ${e}`)},r,i);let l=e;if(l instanceof Error)throw l.message.startsWith(a)||(l.message=`${a}: ${l.message}`),l;throw Error(`${a}: ${l}`)}function s(e){e instanceof Error&&(e.message.startsWith(a)||(e.message=`${a}: ${e.message}`)),i.warn(e)}t.assert=function(e,t,n,r,o){e||(void 0!==n?l(t,n,r,void 0,o):l(t))},t.error=l,t.logger=i,t.warn=s},6079(e,t){function n(e,t){for(let n of e){let e=t.startsWith(n.name),r=t.replace(n.name,"");if(e){if(r.startsWith("/"))return{pkgNameOrAlias:n.name,expose:r=`.${r}`,remote:n};else if(""===r)return{pkgNameOrAlias:n.name,expose:".",remote:n}}let o=n.alias&&t.startsWith(n.alias),a=n.alias&&t.replace(n.alias,"");if(n.alias&&o){if(a&&a.startsWith("/"))return{pkgNameOrAlias:n.alias,expose:a=`.${a}`,remote:n};else if(""===a)return{pkgNameOrAlias:n.alias,expose:".",remote:n}}}}t.matchRemote=function(e,t){for(let n of e)if(t===n.name||n.alias&&t===n.alias)return n},t.matchRemoteWithNameAndExpose=n},28457(e,t,n){let r=n(44391);t.registerPlugins=function(e,t){let n=r.getGlobalHostPlugins(),o=[t.hooks,t.remoteHandler.hooks,t.sharedHandler.hooks,t.snapshotHandler.hooks,t.loaderHook,t.bridgeHook];return n.length>0&&n.forEach(t=>{(null==e?void 0:e.find(e=>e.name!==t.name))&&e.push(t)}),e&&e.length>0&&e.forEach(e=>{o.forEach(n=>{n.applyPlugin(e,t)})}),e}},19599(e,t,n){let r=n(48628),o=n(6079),a=n(556),i=n(50630);function l(e){return{resourceCategory:"sync",share:!0,depsRemote:!0,prefetchInterface:!1,...e}}function s(e,t){return t.map(t=>{let n=o.matchRemote(e,t.nameOrAlias);return r.assert(n,`Unable to preload ${t.nameOrAlias} as it is not included in ${!n&&(0,i.safeToString)({remoteInfo:n,remotes:e})}`),{remote:n,preloadConfig:l(t)}})}function c(e){return e?e.map(e=>"."===e?e:e.startsWith("./")?e.replace("./",""):e):[]}function u(e,t,n){let r=!(arguments.length>3)||void 0===arguments[3]||arguments[3],{cssAssets:o,jsAssetsWithoutEntry:l,entryAssets:s}=n;if(t.options.inBrowser){if(s.forEach(n=>{let{moduleInfo:r}=n,o=t.moduleCache.get(e.name);o?a.getRemoteEntry({origin:t,remoteInfo:r,remoteEntryExports:o.remoteEntryExports}):a.getRemoteEntry({origin:t,remoteInfo:r,remoteEntryExports:void 0})}),r){let e={rel:"preload",as:"style"};o.forEach(n=>{let{link:r,needAttach:o}=(0,i.createLink)({url:n,cb:()=>{},attrs:e,createLinkHook:(e,n)=>{let r=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:n});if(r instanceof HTMLLinkElement)return r}});o&&document.head.appendChild(r)})}else{let e={rel:"stylesheet",type:"text/css"};o.forEach(n=>{let{link:r,needAttach:o}=(0,i.createLink)({url:n,cb:()=>{},attrs:e,createLinkHook:(e,n)=>{let r=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:n});if(r instanceof HTMLLinkElement)return r},needDeleteLink:!1});o&&document.head.appendChild(r)})}if(r){let e={rel:"preload",as:"script"};l.forEach(n=>{let{link:r,needAttach:o}=(0,i.createLink)({url:n,cb:()=>{},attrs:e,createLinkHook:(e,n)=>{let r=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:n});if(r instanceof HTMLLinkElement)return r}});o&&document.head.appendChild(r)})}else{let n={fetchpriority:"high",type:(null==e?void 0:e.type)==="module"?"module":"text/javascript"};l.forEach(e=>{let{script:r,needAttach:o}=(0,i.createScript)({url:e,cb:()=>{},attrs:n,createScriptHook:(e,n)=>{let r=t.loaderHook.lifecycle.createScript.emit({url:e,attrs:n});if(r instanceof HTMLScriptElement)return r},needDeleteScript:!0});o&&document.head.appendChild(r)})}}}t.defaultPreloadArgs=l,t.formatPreloadArgs=s,t.normalizePreloadExposes=c,t.preloadAssets=u},60632(e,t){function n(e,t){return(e=Number(e)||e)>(t=Number(t)||t)?1:e===t?0:-1}function r(e,t){let{preRelease:r}=e,{preRelease:o}=t;if(void 0===r&&o)return 1;if(r&&void 0===o)return -1;if(void 0===r&&void 0===o)return 0;for(let e=0,t=r.length;e<=t;e++){let t=r[e],a=o[e];if(t!==a){if(void 0===t&&void 0===a)return 0;if(!t)return 1;if(!a)return -1;return n(t,a)}}return 0}function o(e,t){return n(e.major,t.major)||n(e.minor,t.minor)||n(e.patch,t.patch)||r(e,t)}function a(e,t){return e.version===t.version}t.compare=function(e,t){switch(e.operator){case"":case"=":return a(e,t);case">":return 0>o(e,t);case">=":return a(e,t)||0>o(e,t);case"<":return o(e,t)>0;case"<=":return a(e,t)||o(e,t)>0;case void 0:return!0;default:return!1}}},59570(e,t){let n="[0-9A-Za-z-]+",r=`(?:\\+(${n}(?:\\.${n})*))`,o="0|[1-9]\\d*",a="[0-9]+",i="\\d*[a-zA-Z-][a-zA-Z0-9-]*",l=`(?:${a}|${i})`,s=`(?:-?(${l}(?:\\.${l})*))`,c=`(?:${o}|${i})`,u=`(?:-(${c}(?:\\.${c})*))`,d=`${o}|x|X|\\*`,f=`[v=\\s]*(${d})(?:\\.(${d})(?:\\.(${d})(?:${u})?${r}?)?)?`,p=`^\\s*(${f})\\s+-\\s+(${f})\\s*$`,m=`[v=\\s]*${`(${a})\\.(${a})\\.(${a})`}${s}?${r}?`,g="((?:<|>)?=?)",h=`(\\s*)${g}\\s*(${m}|${f})`,v="(?:~>?)",b=`(\\s*)${v}\\s+`,y="(?:\\^)",x=`(\\s*)${y}\\s+`,A="(<|>)?=?\\s*\\*",$=`^${y}${f}$`,w=`v?${`(${o})\\.(${o})\\.(${o})`}${u}?${r}?`,S=`^${v}${f}$`,E=`^${g}\\s*${f}$`,k=`^${g}\\s*(${w})$|^$`,C="^\\s*>=\\s*0.0.0\\s*$";t.caret=$,t.caretTrim=x,t.comparator=k,t.comparatorTrim=h,t.gte0=C,t.hyphenRange=p,t.star=A,t.tilde=S,t.tildeTrim=b,t.xRange=E},63957(e,t,n){let r=n(10078),o=n(83810),a=n(60632);function i(e){return r.pipe(o.parseCarets,o.parseTildes,o.parseXRanges,o.parseStar)(e)}function l(e){return r.pipe(o.parseHyphen,o.parseComparatorTrim,o.parseTildeTrim,o.parseCaretTrim)(e.trim()).split(/\s+/).join(" ")}t.satisfy=function(e,t){if(!e)return!1;let n=r.extractComparator(e);if(!n)return!1;let[,s,,c,u,d,f]=n,p={operator:s,version:r.combineVersion(c,u,d,f),major:c,minor:u,patch:d,preRelease:null==f?void 0:f.split(".")};for(let e of t.split("||")){let t=e.trim();if(!t||"*"===t||"x"===t)return!0;try{let e=l(t);if(!e.trim())return!0;let n=e.split(" ").map(e=>i(e)).join(" ");if(!n.trim())return!0;let s=n.split(/\s+/).map(e=>o.parseGTE0(e)).filter(Boolean);if(0===s.length)continue;let c=!0;for(let e of s){let t=r.extractComparator(e);if(!t){c=!1;break}let[,n,,o,i,l,s]=t;if(!a.compare({operator:n,version:r.combineVersion(o,i,l,s),major:o,minor:i,patch:l,preRelease:null==s?void 0:s.split(".")},p)){c=!1;break}}if(c)return!0}catch(e){console.error(`[semver] Error processing range part "${t}":`,e);continue}}return!1}},83810(e,t,n){let r=n(59570),o=n(10078);function a(e){return e.replace(o.parseRegex(r.hyphenRange),(e,t,n,r,a,i,l,s,c,u,d,f)=>(t=o.isXVersion(n)?"":o.isXVersion(r)?`>=${n}.0.0`:o.isXVersion(a)?`>=${n}.${r}.0`:`>=${t}`,s=o.isXVersion(c)?"":o.isXVersion(u)?`<${Number(c)+1}.0.0-0`:o.isXVersion(d)?`<${c}.${Number(u)+1}.0-0`:f?`<=${c}.${u}.${d}-${f}`:`<=${s}`,`${t} ${s}`.trim()))}function i(e){return e.replace(o.parseRegex(r.comparatorTrim),"$1$2$3")}function l(e){return e.replace(o.parseRegex(r.tildeTrim),"$1~")}function s(e){return e.trim().split(/\s+/).map(e=>e.replace(o.parseRegex(r.caret),(e,t,n,r,a)=>{if(o.isXVersion(t))return"";if(o.isXVersion(n))return`>=${t}.0.0 <${Number(t)+1}.0.0-0`;if(o.isXVersion(r))if("0"===t)return`>=${t}.${n}.0 <${t}.${Number(n)+1}.0-0`;else return`>=${t}.${n}.0 <${Number(t)+1}.0.0-0`;if(a)if("0"!==t)return`>=${t}.${n}.${r}-${a} <${Number(t)+1}.0.0-0`;else if("0"===n)return`>=${t}.${n}.${r}-${a} <${t}.${n}.${Number(r)+1}-0`;else return`>=${t}.${n}.${r}-${a} <${t}.${Number(n)+1}.0-0`;if("0"===t)if("0"===n)return`>=${t}.${n}.${r} <${t}.${n}.${Number(r)+1}-0`;else return`>=${t}.${n}.${r} <${t}.${Number(n)+1}.0-0`;return`>=${t}.${n}.${r} <${Number(t)+1}.0.0-0`})).join(" ")}function c(e){return e.trim().split(/\s+/).map(e=>e.replace(o.parseRegex(r.tilde),(e,t,n,r,a)=>o.isXVersion(t)?"":o.isXVersion(n)?`>=${t}.0.0 <${Number(t)+1}.0.0-0`:o.isXVersion(r)?`>=${t}.${n}.0 <${t}.${Number(n)+1}.0-0`:a?`>=${t}.${n}.${r}-${a} <${t}.${Number(n)+1}.0-0`:`>=${t}.${n}.${r} <${t}.${Number(n)+1}.0-0`)).join(" ")}function u(e){return e.split(/\s+/).map(e=>e.trim().replace(o.parseRegex(r.xRange),(e,t,n,r,a,i)=>{let l=o.isXVersion(n),s=l||o.isXVersion(r),c=s||o.isXVersion(a);if("="===t&&c&&(t=""),i="",l)if(">"===t||"<"===t)return"<0.0.0-0";else return"*";return t&&c?(s&&(r=0),a=0,">"===t?(t=">=",s?(n=Number(n)+1,r=0):r=Number(r)+1,a=0):"<="===t&&(t="<",s?n=Number(n)+1:r=Number(r)+1),"<"===t&&(i="-0"),`${t+n}.${r}.${a}${i}`):s?`>=${n}.0.0${i} <${Number(n)+1}.0.0-0`:c?`>=${n}.${r}.0${i} <${n}.${Number(r)+1}.0-0`:e})).join(" ")}function d(e){return e.trim().replace(o.parseRegex(r.star),"")}function f(e){return e.trim().replace(o.parseRegex(r.gte0),"")}t.parseCaretTrim=function(e){return e.replace(o.parseRegex(r.caretTrim),"$1^")},t.parseCarets=s,t.parseComparatorTrim=i,t.parseGTE0=f,t.parseHyphen=a,t.parseStar=d,t.parseTildeTrim=l,t.parseTildes=c,t.parseXRanges=u},10078(e,t,n){let r=n(59570);function o(e){return new RegExp(e)}function a(e){return!e||"x"===e.toLowerCase()||"*"===e}function i(){for(var e=arguments.length,t=Array(e),n=0;nt.reduce((e,t)=>t(e),e)}function l(e){return e.match(o(r.comparator))}t.combineVersion=function(e,t,n,r){let o=`${e}.${t}.${n}`;return r?`${o}-${r}`:o},t.extractComparator=l,t.isXVersion=a,t.parseRegex=o,t.pipe=i},8369(e,t,n){let r=n(48628),o=n(9350),a=n(44391),i=n(92926),l=n(63957),s=n(50630);function c(e,t,n,o){var a,i;let l;return l="get"in e?e.get:"lib"in e?()=>Promise.resolve(e.lib):()=>Promise.resolve(()=>{r.error(`Cannot get shared "${n}" from "${t}": neither "get" nor "lib" is provided in the share config.`)}),(null==(a=e.shareConfig)?void 0:a.eager)&&(null==(i=e.treeShaking)?void 0:i.mode)&&r.error(`Invalid shared config for "${n}" from "${t}": cannot use both "eager: true" and "treeShaking.mode" simultaneously. Choose one strategy.`),{deps:[],useIn:[],from:t,loading:null,...e,shareConfig:{requiredVersion:`^${e.version}`,singleton:!1,eager:!1,strictVersion:!1,...e.shareConfig},get:l,loaded:null!=e&&!!e.loaded||"lib"in e||void 0,version:e.version??"0",scope:Array.isArray(e.scope)?e.scope:[e.scope??"default"],strategy:(e.strategy??o)||"version-first",treeShaking:e.treeShaking?{...e.treeShaking,mode:e.treeShaking.mode??"server-calc",status:e.treeShaking.status??s.TreeShakingStatus.UNKNOWN,useIn:[]}:void 0}}function u(e,t){let n=t.shared||{},r=t.name,a=Object.keys(n).reduce((e,a)=>{let i=o.arrayOptions(n[a]);return e[a]=e[a]||[],i.forEach(n=>{e[a].push(c(n,r,a,t.shareStrategy))}),e},{}),i={...e.shared};return Object.keys(a).forEach(e=>{i[e]?a[e].forEach(t=>{i[e].find(e=>e.version===t.version)||i[e].push(t)}):i[e]=a[e]}),{allShareInfos:i,newShareInfos:a}}function d(e,t){if(!e)return!1;let{status:n,mode:r}=e;return n!==s.TreeShakingStatus.NO_USE&&(n===s.TreeShakingStatus.CALCULATED||"runtime-infer"===r&&(!t||h(e,t)))}function f(e,t){let n=e=>{if(!Number.isNaN(Number(e))){let t=e.split("."),n=e;for(let e=0;e<3-t.length;e++)n+=".0";return n}return e};return!!l.satisfy(n(e),`<=${n(t)}`)}let p=(e,t)=>{let n=t||function(e,t){return f(e,t)};return Object.keys(e).reduce((e,t)=>!e||n(e,t)||"0"===e?t:e,0)},m=e=>!!e.loaded||"function"==typeof e.lib,g=e=>!!e.loading,h=(e,t)=>{if(!e||!t)return!1;let{usedExports:n}=e;return!!n&&!!t.every(e=>n.includes(e))};function v(e,t,n,r){let o=e[t][n],a="",i=d(r),l=function(e,t){return i?!o[e].treeShaking||!!o[t].treeShaking&&!m(o[e].treeShaking)&&f(e,t):!m(o[e])&&f(e,t)};if(i){if(a=p(e[t][n],l))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][n],l),useTreesShaking:i}}let b=e=>m(e)||g(e);function y(e,t,n,r){let o=e[t][n],a="",i=d(r),l=function(e,t){if(i){if(!o[e].treeShaking)return!0;if(!o[t].treeShaking)return!1;if(b(o[t].treeShaking))if(b(o[e].treeShaking))return!!f(e,t);else return!0;if(b(o[e].treeShaking))return!1}if(b(o[t]))if(b(o[e]))return!!f(e,t);else return!0;return!b(o[e])&&f(e,t)};if(i){if(a=p(e[t][n],l))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][n],l),useTreesShaking:i}}function x(e){return"loaded-first"===e?y:v}function A(e,t,n,o){if(!e)return;let{shareConfig:s,scope:c=i.DEFAULT_SCOPE,strategy:u,treeShaking:f}=n;for(let i of Array.isArray(c)?c:[c])if(s&&e[i]&&e[i][t]){let{requiredVersion:c}=s,{version:p,useTreesShaking:m}=x(u)(e,i,t,f),g=()=>{let o=e[i][t][p];if(s.singleton){if("string"==typeof c&&!l.satisfy(p,c)){let e=`Version ${p} from ${p&&o.from} of shared singleton module ${t} does not satisfy the requirement of ${n.from} which needs ${c})`;s.strictVersion?r.error(e):r.warn(e)}return{shared:o,useTreesShaking:m}}{if(!1===c||"*"===c||l.satisfy(p,c))return{shared:o,useTreesShaking:m};let n=d(f);if(n){for(let[r,o]of Object.entries(e[i][t]))if(d(o.treeShaking,null==f?void 0:f.usedExports)&&l.satisfy(r,c))return{shared:o,useTreesShaking:n}}for(let[n,r]of Object.entries(e[i][t]))if(l.satisfy(n,c))return{shared:r,useTreesShaking:!1}}},h={shareScopeMap:e,scope:i,pkgName:t,version:p,GlobalFederation:a.Global.__FEDERATION__,shareInfo:n,resolver:g};return(o.emit(h)||h).resolver()}}function $(){return a.Global.__FEDERATION__.__SHARE__}function w(e){let{pkgName:t,extraOptions:n,shareInfos:r}=e,o=e=>{if(!e)return;let t={};e.forEach(e=>{t[e.version]=e});let n=function(e,n){return!m(t[e])&&f(e,n)};return t[p(t,n)]},a=(null==n?void 0:n.resolver)??o,i=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),l=function(){for(var e=arguments.length,t=Array(e),n=0;n{e.useIn||(e.useIn=[]),o.addUniqueItem(e.useIn,t)},t.directShare=S,t.formatShareConfigs=u,t.getGlobalShareScope=$,t.getRegisteredShare=A,t.getTargetSharedOptions=w,t.shouldUseTreeShaking=d},9350(e,t,n){let r=n(48628),o=n(50630);function a(e,t){return -1===e.findIndex(e=>e===t)&&e.push(t),e}function i(e){return"version"in e&&e.version?`${e.name}:${e.version}`:"entry"in e&&e.entry?`${e.name}:${e.entry}`:`${e.name}`}function l(e){return void 0!==e.entry}function s(e){return!e.entry.includes(".json")}async function c(e,t){try{return await e()}catch(e){t||r.warn(e);return}}function u(e){return e&&"object"==typeof e}let d=Object.prototype.toString;function f(e){return"[object Object]"===d.call(e)}function p(e,t){let n=/^(https?:)?\/\//i;return e.replace(n,"").replace(/\/$/,"")===t.replace(n,"").replace(/\/$/,"")}function m(e){return Array.isArray(e)?e:[e]}function g(e){let t={url:"",type:"global",globalName:""};return o.isBrowserEnvValue||(0,o.isReactNativeEnv)()||!("ssrRemoteEntry"in e)?"remoteEntry"in e?{url:e.remoteEntry,type:e.remoteEntryType,globalName:e.globalName}:t:"ssrRemoteEntry"in e?{url:e.ssrRemoteEntry||t.url,type:e.ssrRemoteEntryType||t.type,globalName:e.globalName}:t}let h=(e,t)=>{let n;return n=e.endsWith("/")?e.slice(0,-1):e,t.startsWith(".")&&(t=t.slice(1)),n+=t};t.addUniqueItem=a,t.arrayOptions=m,t.getFMId=i,t.getRemoteEntryInfoFromSnapshot=g,t.isObject=u,t.isPlainObject=f,t.isPureRemoteEntry=s,t.isRemoteInfoWithEntry=l,t.isStaticResourcesEqual=p,t.objectToString=d,t.processModuleAlias=h,t.safeWrapper=c},93544(e,t){var n=Object.create,r=Object.defineProperty,o=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,s=(e,t,n,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var s,c=a(t),u=0,d=c.length;ut[e]).bind(null,s),enumerable:!(i=o(t,s))||i.enumerable});return e};t.__toESM=(e,t,o)=>(o=null!=e?n(i(e)):{},s(!t&&e&&e.__esModule?o:r(o,"default",{value:e,enumerable:!0}),e))},13129(e,t,n){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),n(93544);let r=n(19577),o=n(45922),a={...o.helpers.global,getGlobalFederationInstance:r.getGlobalFederationInstance},i=o.helpers.share,l=o.helpers.utils;t.default={global:a,share:i,utils:l},t.global=a,t.share=i,t.utils=l},99782(e,t,n){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),n(93544);let r=n(19577),o=n(45922),a=n(84363);function i(e){let t=new((0,o.getGlobalFederationConstructor)()||o.ModuleFederation)(e);return(0,o.setGlobalFederationInstance)(t),t}let l=null;function s(e){let t=r.getGlobalFederationInstance(e.name,e.version);return t?(t.initOptions(e),l||(l=t),t):l=i(e)}function c(){for(var e=arguments.length,t=Array(e),n=0;n!!n&&r.options.id===n||r.options.name===e&&!r.options.version&&!t||r.options.name===e&&!!t&&r.options.version===t)}},67688(e,t){var n=Object.defineProperty;t.__exportAll=(e,t)=>{let r={};for(var o in e)n(r,o,{get:e[o],enumerable:!0});return t||n(r,Symbol.toStringTag,{value:"Module"}),r}},40586(e,t){let n="federation-manifest.json",r=".json",o="FEDERATION_DEBUG",a={AT:"@",HYPHEN:"-",SLASH:"/"},i={[a.AT]:"scope_",[a.HYPHEN]:"_",[a.SLASH]:"__"},l={[i[a.AT]]:a.AT,[i[a.HYPHEN]]:a.HYPHEN,[i[a.SLASH]]:a.SLASH},s=":",c="mf-manifest.json",u="mf-stats.json",d={NPM:"npm",APP:"app"},f="__MF_DEVTOOLS_MODULE_INFO__",p="ENCODE_NAME_PREFIX",m=".federation",g={identifier:"MFDataPrefetch",globalKey:"__PREFETCH__",library:"mf-data-prefetch",exportsKey:"__PREFETCH_EXPORTS__",fileName:"bootstrap.js"},h=function(e){return e[e.UNKNOWN=1]="UNKNOWN",e[e.CALCULATED=2]="CALCULATED",e[e.NO_USE=0]="NO_USE",e}({});t.BROWSER_LOG_KEY=o,t.ENCODE_NAME_PREFIX=p,t.EncodedNameTransformMap=l,t.FederationModuleManifest=n,t.MANIFEST_EXT=r,t.MFModuleType=d,t.MFPrefetchCommon=g,t.MODULE_DEVTOOL_IDENTIFIER=f,t.ManifestFileName=c,t.NameTransformMap=i,t.NameTransformSymbol=a,t.SEPARATOR=s,t.StatsFileName=u,t.TEMP_DIR=m,t.TreeShakingStatus=h},31483(e,t){t.createModuleFederationConfig=e=>e},6302(e,t,n){let r=n(43417);async function o(e,t){try{return await e()}catch(e){t||r.warn(e);return}}function a(e,t){let n=/^(https?:)?\/\//i;return e.replace(n,"").replace(/\/$/,"")===t.replace(n,"").replace(/\/$/,"")}function i(e){let t,n=null,r=!0,i=2e4,l=document.getElementsByTagName("script");for(let t=0;t{n&&("async"===e||"defer"===e?n[e]=r[e]:n.getAttribute(e)||n.setAttribute(e,r[e]))})}let s=null,c="u">typeof window?t=>{if(t.filename&&a(t.filename,e.url)){let n=Error(`ScriptExecutionError: Script "${e.url}" loaded but threw a runtime error during execution: ${t.message} (${t.filename}:${t.lineno}:${t.colno})`);n.name="ScriptExecutionError",s=n}}:null;c&&window.addEventListener("error",c);let u=async(r,a)=>{clearTimeout(t),c&&window.removeEventListener("error",c);let i=()=>{if((null==a?void 0:a.type)==="error"){let t=Error(`ScriptNetworkError: Failed to load script "${e.url}" - the script URL is unreachable or the server returned an error (network failure, 404, CORS, etc.)`);t.name="ScriptNetworkError",(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(t))}else s?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(s)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(n&&(n.onerror=null,n.onload=null,o(()=>{let{needDeleteScript:t=!0}=e;t&&(null==n?void 0:n.parentNode)&&n.parentNode.removeChild(n)}),r&&"function"==typeof r)){let e=r(a);if(e instanceof Promise){let t=await e;return i(),t}return i(),e}i()};return n.onerror=u.bind(null,n.onerror),n.onload=u.bind(null,n.onload),t=setTimeout(()=>{u(null,Error(`Remote script "${e.url}" time-outed.`))},i),{script:n,needAttach:r}}function l(e,t){let{attrs:n={},createScriptHook:r}=t;return new Promise((t,o)=>{let{script:a,needAttach:l}=i({url:e,cb:t,onErrorCallback:o,attrs:{fetchpriority:"high",...n},createScriptHook:r,needDeleteScript:!0});l&&document.head.appendChild(a)})}t.createLink=function(e){let t=null,n=!0,r=document.getElementsByTagName("link");for(let o=0;o{t&&!t.getAttribute(e)&&t.setAttribute(e,r[e])})}let i=(n,r)=>{let a=()=>{(null==r?void 0:r.type)==="error"?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(r)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(t&&(t.onerror=null,t.onload=null,o(()=>{let{needDeleteLink:n=!0}=e;n&&(null==t?void 0:t.parentNode)&&t.parentNode.removeChild(t)}),n)){let e=n(r);return a(),e}a()};return t.onerror=i.bind(null,t.onerror),t.onload=i.bind(null,t.onload),{link:t,needAttach:n}},t.createScript=i,t.isStaticResourcesEqual=a,t.loadScript=l,t.safeWrapper=o},56883(e,t,n){let r=n(40586),o="u">typeof ENV_TARGET?"web"===ENV_TARGET:"u">typeof window&&void 0!==window.document;function a(){return o}function i(){var e;return"u">typeof navigator&&(null==(e=navigator)?void 0:e.product)==="ReactNative"}function l(){try{if(a()&&window.localStorage)return!!localStorage.getItem(r.BROWSER_LOG_KEY)}catch(e){}return!1}function s(){return"u">typeof process&&process.env&&process.env.FEDERATION_DEBUG?!!process.env.FEDERATION_DEBUG:!!("u">typeof FEDERATION_DEBUG&&FEDERATION_DEBUG)||l()}t.getProcessEnv=function(){return"u">typeof process&&process.env?process.env:{}},t.isBrowserEnv=a,t.isBrowserEnvValue=o,t.isDebugMode=s,t.isReactNativeEnv=i},27016(e,t,n){let r=n(40586),o=(e,t)=>{if(!e)return t;let n=(e=>{if("."===e)return"";if(e.startsWith("./"))return e.replace("./","");if(e.startsWith("/")){let t=e.slice(1);return t.endsWith("/")?t.slice(0,-1):t}return e})(e);return n?n.endsWith("/")?`${n}${t}`:`${n}/${t}`:t};function a(e){return e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/")}function i(e){return!!("remoteEntry"in e&&e.remoteEntry.includes(r.MANIFEST_EXT))}function l(e){if(!e)return{statsFileName:r.StatsFileName,manifestFileName:r.ManifestFileName};let t="boolean"==typeof e?"":e.filePath||"",n="boolean"==typeof e?"":e.fileName||"",a=".json",i=e=>e.endsWith(a)?e:`${e}${a}`,l=(e,t)=>e.replace(a,`${t}${a}`),s=n?i(n):r.ManifestFileName;return{statsFileName:o(t,n?l(s,"-stats"):r.StatsFileName),manifestFileName:o(t,s)}}t.generateSnapshotFromManifest=function(e){var t,n,r;let i,l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{remotes:s={},overrides:c={},version:u}=l,d=()=>"publicPath"in e.metaData?("auto"===e.metaData.publicPath||""===e.metaData.publicPath)&&u?a(u):e.metaData.publicPath:e.metaData.getPublicPath,f=Object.keys(c),p={};Object.keys(s).length||(p=(null==(t=e.remotes)?void 0:t.reduce((e,t)=>{let n,r=t.federationContainerName;return n=f.includes(r)?c[r]:"version"in t?t.version:t.entry,e[r]={matchedVersion:n},e},{}))||{}),Object.keys(s).forEach(e=>p[e]={matchedVersion:f.includes(e)?c[e]:s[e]});let{remoteEntry:{path:m,name:g,type:h},types:v={path:"",name:"",zip:"",api:""},buildInfo:{buildVersion:b},globalName:y,ssrRemoteEntry:x}=e.metaData,{exposes:A}=e,$={version:u||"",buildVersion:b,globalName:y,remoteEntry:o(m,g),remoteEntryType:h,remoteTypes:o(v.path,v.name),remoteTypesZip:v.zip||"",remoteTypesAPI:v.api||"",remotesInfo:p,shared:null==e?void 0:e.shared.map(e=>({assets:e.assets,sharedName:e.name,version:e.version,usedExports:e.referenceExports||[]})),modules:null==A?void 0:A.map(e=>({moduleName:e.name,modulePath:e.path,assets:e.assets}))};if(null==(n=e.metaData)?void 0:n.prefetchInterface){let t=e.metaData.prefetchInterface;$={...$,prefetchInterface:t}}if(null==(r=e.metaData)?void 0:r.prefetchEntry){let{path:t,name:n,type:r}=e.metaData.prefetchEntry;$={...$,prefetchEntry:o(t,n),prefetchEntryType:r}}if("publicPath"in e.metaData?(i={...$,publicPath:d()},"string"==typeof e.metaData.ssrPublicPath&&(i.ssrPublicPath=e.metaData.ssrPublicPath)):i={...$,getPublicPath:d()},x){let e=o(x.path,x.name);i.ssrRemoteEntry=e,i.ssrRemoteEntryType=x.type||"commonjs-module"}return i},t.getManifestFileName=l,t.inferAutoPublicPath=a,t.isManifestProvider=i,t.simpleJoinRemoteEntry=o},50630(e,t,n){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let r=n(40586),o=n(8841),a=n(88798),i=n(87765),l=n(71993),s=n(7345),c=n(95448),u=n(56883),d=n(43417),f=n(27016),p=n(43910),m=n(6302),g=n(638),h=n(76967),v=n(31483);t.BROWSER_LOG_KEY=r.BROWSER_LOG_KEY,t.ENCODE_NAME_PREFIX=r.ENCODE_NAME_PREFIX,t.EncodedNameTransformMap=r.EncodedNameTransformMap,t.FederationModuleManifest=r.FederationModuleManifest,t.MANIFEST_EXT=r.MANIFEST_EXT,t.MFModuleType=r.MFModuleType,t.MFPrefetchCommon=r.MFPrefetchCommon,t.MODULE_DEVTOOL_IDENTIFIER=r.MODULE_DEVTOOL_IDENTIFIER,t.ManifestFileName=r.ManifestFileName,t.NameTransformMap=r.NameTransformMap,t.NameTransformSymbol=r.NameTransformSymbol,t.SEPARATOR=r.SEPARATOR,t.StatsFileName=r.StatsFileName,t.TEMP_DIR=r.TEMP_DIR,t.TreeShakingStatus=r.TreeShakingStatus,t.assert=d.assert,t.bindLoggerToCompiler=p.bindLoggerToCompiler,t.composeKeyWithSeparator=d.composeKeyWithSeparator,Object.defineProperty(t,"consumeSharedPlugin",{enumerable:!0,get:function(){return s.ConsumeSharedPlugin_exports}}),Object.defineProperty(t,"containerPlugin",{enumerable:!0,get:function(){return o.ContainerPlugin_exports}}),Object.defineProperty(t,"containerReferencePlugin",{enumerable:!0,get:function(){return a.ContainerReferencePlugin_exports}}),t.createInfrastructureLogger=p.createInfrastructureLogger,t.createLink=m.createLink,t.createLogger=p.createLogger,t.createModuleFederationConfig=v.createModuleFederationConfig,t.createScript=m.createScript,t.createScriptNode=g.createScriptNode,t.decodeName=d.decodeName,t.encodeName=d.encodeName,t.error=d.error,t.generateExposeFilename=d.generateExposeFilename,t.generateShareFilename=d.generateShareFilename,t.generateSnapshotFromManifest=f.generateSnapshotFromManifest,t.getManifestFileName=f.getManifestFileName,t.getProcessEnv=u.getProcessEnv,t.getResourceUrl=d.getResourceUrl,t.inferAutoPublicPath=f.inferAutoPublicPath,t.infrastructureLogger=p.infrastructureLogger,t.isBrowserEnv=u.isBrowserEnv,t.isBrowserEnvValue=u.isBrowserEnvValue,t.isDebugMode=u.isDebugMode,t.isManifestProvider=f.isManifestProvider,t.isReactNativeEnv=u.isReactNativeEnv,t.isRequiredVersion=d.isRequiredVersion,t.isStaticResourcesEqual=m.isStaticResourcesEqual,t.loadScript=m.loadScript,t.loadScriptNode=g.loadScriptNode,t.logger=p.logger,Object.defineProperty(t,"moduleFederationPlugin",{enumerable:!0,get:function(){return i.ModuleFederationPlugin_exports}}),t.normalizeOptions=h.normalizeOptions,t.parseEntry=d.parseEntry,Object.defineProperty(t,"provideSharedPlugin",{enumerable:!0,get:function(){return c.ProvideSharedPlugin_exports}}),t.safeToString=d.safeToString,t.safeWrapper=m.safeWrapper,Object.defineProperty(t,"sharePlugin",{enumerable:!0,get:function(){return l.SharePlugin_exports}}),t.simpleJoinRemoteEntry=f.simpleJoinRemoteEntry,t.warn=d.warn},43910(e,t,n){let r=n(56883),o="[ Module Federation ]",a=console,i=["logger.ts","logger.js","captureStackTrace","Logger.emit","Logger.log","Logger.info","Logger.warn","Logger.error","Logger.debug"];function l(){try{let e=Error().stack;if(!e)return;let[,...t]=e.split("\n"),n=t.filter(e=>!i.some(t=>e.includes(t)));if(!n.length)return;return`Stack trace: ${n.slice(0,5).join("\n")}`}catch{return}}var s=class{setPrefix(e){this.prefix=e}setDelegate(e){this.delegate=e??a}emit(e,t){let n=this.delegate,o=r.isDebugMode()?l():void 0,i=o?[...t,o]:t,s=(()=>{switch(e){case"log":return["log","info"];case"info":return["info","log"];case"warn":return["warn","info","log"];case"error":return["error","warn","log"];default:return["debug","log"]}})();for(let e of s){let t=n[e];if("function"==typeof t)return void t.call(n,this.prefix,...i)}for(let e of s){let t=a[e];if("function"==typeof t)return void t.call(a,this.prefix,...i)}}log(){for(var e=arguments.length,t=Array(e),n=0;ne).catch(t=>{throw console.error(`Error importing module ${e}:`,t),sdkImportCache.delete(e),t});return sdkImportCache.set(e,t),t}let loadNodeFetch=async()=>{let e=await importNodeModule("node-fetch");return e.default||e},lazyLoaderHookFetch=async(e,t,n)=>{let r=(e,t)=>n.lifecycle.fetch.emit(e,t),o=await r(e,t||{});return o&&o instanceof Response?o:("u"{let urlObj;if(null==loaderHook?void 0:loaderHook.createScriptHook){let hookResult=loaderHook.createScriptHook(url);hookResult&&"object"==typeof hookResult&&"url"in hookResult&&(url=hookResult.url)}try{urlObj=new URL(url)}catch(e){console.error("Error constructing URL:",e),cb(Error(`Invalid URL: ${e}`));return}let getFetch=async()=>(null==loaderHook?void 0:loaderHook.fetch)?(e,t)=>lazyLoaderHookFetch(e,t,loaderHook):"u"{try{var _vm_constants;let requireFn,res=await f(urlObj.href),data=await res.text(),[path,vm]=await Promise.all([importNodeModule("path"),importNodeModule("vm")]),scriptContext={exports:{},module:{exports:{}}},urlDirname=urlObj.pathname.split("/").slice(0,-1).join("/"),filename=path.basename(urlObj.pathname),script=new vm.Script(`(function(exports, module, require, __dirname, __filename) {${data} })`,{filename,importModuleDynamically:(null==(_vm_constants=vm.constants)?void 0:_vm_constants.USE_MAIN_CONTEXT_DEFAULT_LOADER)??importNodeModule});requireFn=eval("require"),script.runInThisContext()(scriptContext.exports,scriptContext.module,requireFn,urlDirname,filename);let exportedInterface=scriptContext.module.exports||scriptContext.exports;if(attrs&&exportedInterface&&attrs.globalName)return void cb(void 0,exportedInterface[attrs.globalName]||exportedInterface);cb(void 0,exportedInterface)}catch(e){cb(e instanceof Error?e:Error(`Script execution error: ${e}`))}};getFetch().then(async e=>{if((null==attrs?void 0:attrs.type)==="esm"||(null==attrs?void 0:attrs.type)==="module")return loadModule(urlObj.href,{fetch:e,vm:await importNodeModule("vm")}).then(async e=>{await e.evaluate(),cb(void 0,e.namespace)}).catch(e=>{cb(e instanceof Error?e:Error(`Script execution error: ${e}`))});handleScriptFetch(e,urlObj)}).catch(e=>{cb(e)})}:(e,t,n,r)=>{t(Error("createScriptNode is disabled in non-Node.js environment"))},loadScriptNode="u"new Promise((n,r)=>{createScriptNode(e,(e,o)=>{if(e)r(e);else{var a,i;let e=(null==t||null==(a=t.attrs)?void 0:a.globalName)||`__FEDERATION_${null==t||null==(i=t.attrs)?void 0:i.name}:custom__`;n(globalThis[e]=o)}},t.attrs,t.loaderHook)}):(e,t)=>{throw Error("loadScriptNode is disabled in non-Node.js environment")},esmModuleCache=new Map;async function loadModule(e,t){if(esmModuleCache.has(e))return esmModuleCache.get(e);let{fetch:n,vm:r}=t,o=await (await n(e)).text(),a=new r.SourceTextModule(o,{importModuleDynamically:async(n,r)=>loadModule(new URL(n,e).href,t)});return esmModuleCache.set(e,a),await a.link(async n=>{let r=new URL(n,e).href;return await loadModule(r,t)}),a}exports.createScriptNode=createScriptNode,exports.loadScriptNode=loadScriptNode},76967(e,t){t.normalizeOptions=function(e,t,n){return function(r){if(!1===r)return!1;if(void 0===r)if(e)return t;else return!1;if(!0===r)return t;if(r&&"object"==typeof r)return{...t,...r};throw Error(`Unexpected type for \`${n}\`, expect boolean/undefined/object, got: ${typeof r}`)}}},7345(e,t,n){var r=n(67688).__exportAll({});Object.defineProperty(t,"ConsumeSharedPlugin_exports",{enumerable:!0,get:function(){return r}})},8841(e,t,n){var r=n(67688).__exportAll({});Object.defineProperty(t,"ContainerPlugin_exports",{enumerable:!0,get:function(){return r}})},88798(e,t,n){var r=n(67688).__exportAll({});Object.defineProperty(t,"ContainerReferencePlugin_exports",{enumerable:!0,get:function(){return r}})},87765(e,t,n){var r=n(67688).__exportAll({});Object.defineProperty(t,"ModuleFederationPlugin_exports",{enumerable:!0,get:function(){return r}})},95448(e,t,n){var r=n(67688).__exportAll({});Object.defineProperty(t,"ProvideSharedPlugin_exports",{enumerable:!0,get:function(){return r}})},71993(e,t,n){var r=n(67688).__exportAll({});Object.defineProperty(t,"SharePlugin_exports",{enumerable:!0,get:function(){return r}})},43417(e,t,n){let r=n(40586),o=n(56883),a="[ Federation Runtime ]",i=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:r.SEPARATOR,a=e.split(n),i="development"===o.getProcessEnv().NODE_ENV&&t,l="*",s=e=>e.startsWith("http")||e.includes(r.MANIFEST_EXT);if(a.length>=2){let[t,...r]=a;e.startsWith(n)&&(t=a.slice(0,2).join(n),r=[i||a.slice(2).join(n)]);let o=i||r.join(n);return s(o)?{name:t,entry:o}:{name:t,version:o||l}}if(1===a.length){let[e]=a;return i&&s(i)?{name:e,entry:i}:{name:e,version:i||l}}throw`Invalid entry value: ${e}`},l=function(){for(var e=arguments.length,t=Array(e),n=0;nt?e?`${e}${r.SEPARATOR}${t}`:t:e,""):""},s=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];try{let o=n?".js":"";return`${t}${e.replace(RegExp(`${r.NameTransformSymbol.AT}`,"g"),r.NameTransformMap[r.NameTransformSymbol.AT]).replace(RegExp(`${r.NameTransformSymbol.HYPHEN}`,"g"),r.NameTransformMap[r.NameTransformSymbol.HYPHEN]).replace(RegExp(`${r.NameTransformSymbol.SLASH}`,"g"),r.NameTransformMap[r.NameTransformSymbol.SLASH])}${o}`}catch(e){throw e}},c=function(e,t,n){try{let o=e;if(t){if(!o.startsWith(t))return o;o=o.replace(RegExp(t,"g"),"")}return o=o.replace(RegExp(`${r.NameTransformMap[r.NameTransformSymbol.AT]}`,"g"),r.EncodedNameTransformMap[r.NameTransformMap[r.NameTransformSymbol.AT]]).replace(RegExp(`${r.NameTransformMap[r.NameTransformSymbol.SLASH]}`,"g"),r.EncodedNameTransformMap[r.NameTransformMap[r.NameTransformSymbol.SLASH]]).replace(RegExp(`${r.NameTransformMap[r.NameTransformSymbol.HYPHEN]}`,"g"),r.EncodedNameTransformMap[r.NameTransformMap[r.NameTransformSymbol.HYPHEN]]),n&&(o=o.replace(".js","")),o}catch(e){throw e}},u=(e,t)=>{if(!e)return"";let n=e;return"."===n&&(n="default_export"),n.startsWith("./")&&(n=n.replace("./","")),s(n,"__federation_expose_",t)},d=(e,t)=>e?s(e,"__federation_shared_",t):"",f=(e,t)=>{if("getPublicPath"in e){let n;return n=e.getPublicPath.startsWith("function")?Function("return "+e.getPublicPath)()():Function(e.getPublicPath)(),`${n}${t}`}return"publicPath"in e?!o.isBrowserEnv()&&!o.isReactNativeEnv()&&"ssrPublicPath"in e&&"string"==typeof e.ssrPublicPath?`${e.ssrPublicPath}${t}`:`${e.publicPath}${t}`:(console.warn("Cannot get resource URL. If in debug mode, please ignore.",e,t),"")},p=e=>{throw Error(`${a}: ${e}`)},m=e=>{console.warn(`${a}: ${e}`)};function g(e){try{return JSON.stringify(e,null,2)}catch(e){return""}}let h=/^([\d^=v<>~]|[*xX]$)/;function v(e){return h.test(e)}t.assert=(e,t)=>{e||p(t)},t.composeKeyWithSeparator=l,t.decodeName=c,t.encodeName=s,t.error=p,t.generateExposeFilename=u,t.generateShareFilename=d,t.getResourceUrl=f,t.isRequiredVersion=v,t.parseEntry=i,t.safeToString=g,t.warn=m},37363(e,t){var n=Object.create,r=Object.defineProperty,o=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,s=(e,t,n,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var s,c=a(t),u=0,d=c.length;ut[e]).bind(null,s),enumerable:!(i=o(t,s))||i.enumerable});return e};t.__toESM=(e,t,o)=>(o=null!=e?n(i(e)):{},s(!t&&e&&e.__esModule?o:r(o,"default",{value:e,enumerable:!0}),e))},22069(e,t){t.attachShareScopeMap=function(e){e.S&&!e.federation.hasAttachShareScopeMap&&e.federation.instance&&e.federation.instance.shareScopeMap&&(e.S=e.federation.instance.shareScopeMap,e.federation.hasAttachShareScopeMap=!0)}},36897(e,t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),t.FEDERATION_SUPPORTED_TYPES=["script"]},80916(e,t,n){let r=n(22069),o=n(55216),a=n(57617);t.consumes=function(e){o.updateConsumeOptions(e);let{chunkId:t,promises:n,installedModules:i,webpackRequire:l,chunkMapping:s,moduleToHandlerMapping:c}=e;r.attachShareScopeMap(l),l.o(s,t)&&s[t].forEach(e=>{if(l.o(i,e))return n.push(i[e]);let t=t=>{i[e]=0,l.m[e]=n=>{var r;delete l.c[e];let o=t(),{shareInfo:a}=c[e];if((null==a||null==(r=a.shareConfig)?void 0:r.layer)&&o&&"object"==typeof o)try{o.hasOwnProperty("layer")&&void 0!==o.layer||(o.layer=a.shareConfig.layer)}catch(e){}n.exports=o}},r=t=>{delete i[e],l.m[e]=n=>{throw delete l.c[e],t}};try{let o=l.federation.instance;if(!o)throw Error("Federation instance not found!");let{shareKey:s,getter:u,shareInfo:d,treeShakingGetter:f}=c[e],p=a.getUsedExports(l,s),m={...d};Array.isArray(m.scope)&&Array.isArray(m.scope[0])&&(m.scope=m.scope[0]),p&&(m.treeShaking={usedExports:p,useIn:[o.options.name]});let g=o.loadShare(s,{customShareInfo:m}).then(e=>!1===e?(null==f?void 0:f())||u():e);g.then?n.push(i[e]=g.then(t).catch(r)):t(g)}catch(e){r(e)}})}},48167(e,t){t.getSharedFallbackGetter=e=>{let{shareKey:t,factory:n,version:r,webpackRequire:o,libraryType:a="global"}=e,{runtime:i,instance:l,bundlerRuntime:s,sharedFallback:c}=o.federation;if(!c)return n;let u=c[t];if(!u)return n;let d=r?u.find(e=>e[1]===r):u[0];if(!d)throw Error(`No fallback item found for shareKey: ${t} and version: ${r}`);return()=>i.getRemoteEntry({origin:o.federation.instance,remoteInfo:{name:d[2],entry:`${o.p}${d[0]}`,type:a,entryGlobalName:d[2],shareScope:"default"}}).then(e=>{if(!e)throw Error(`Failed to load fallback entry for shareKey: ${t} and version: ${r}`);return e.init(o.federation.instance,s).then(()=>e.get())})}},57617(e,t){t.getUsedExports=function(e,t){let n=e.federation.usedExports;if(n)return n[t]}},66927(e,t,n){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});let r=n(37363),o=n(22069),a=n(96310),i=n(80916),l=n(36777),s=n(71735),c=n(87440),u=n(8531),d=n(48167),f=n(99782),p={runtime:f=r.__toESM(f),instance:void 0,initOptions:void 0,bundlerRuntime:{remotes:a.remotes,consumes:i.consumes,I:l.initializeSharing,S:{},installInitialConsumes:s.installInitialConsumes,initContainerEntry:c.initContainerEntry,init:u.init,getSharedFallbackGetter:d.getSharedFallbackGetter},attachShareScopeMap:o.attachShareScopeMap,bundlerRuntimeOptions:{}},m=p.instance,g=p.initOptions,h=p.bundlerRuntime,v=p.bundlerRuntimeOptions;t.attachShareScopeMap=o.attachShareScopeMap,t.bundlerRuntime=h,t.bundlerRuntimeOptions=v,t.default=p,t.initOptions=g,t.instance=m,Object.defineProperty(t,"runtime",{enumerable:!0,get:function(){return f}})},8531(e,t,n){let r=n(37363),o=n(99782),a=n(13129);a=r.__toESM(a),t.init=function(e){var t;let{webpackRequire:r}=e,{initOptions:i,runtime:l,sharedFallback:s,bundlerRuntime:c,libraryType:u}=r.federation;if(!i)throw Error("initOptions is required!");let d=function(){return{name:"tree-shake-plugin",beforeInit(e){let{userOptions:t,origin:i,options:l}=e,d=t.version||l.version;if(!s)return e;let f=t.shared||{},p=[];Object.keys(f).forEach(e=>{(Array.isArray(f[e])?f[e]:[f[e]]).forEach(t=>{if(p.push([e,t]),"get"in t){var n;(n=t).treeShaking||(n.treeShaking={}),t.treeShaking.get=t.get,t.get=c.getSharedFallbackGetter({shareKey:e,factory:t.get,webpackRequire:r,libraryType:u,version:t.version})}})});let m=a.default.global.getGlobalSnapshotInfoByModuleInfo({name:i.name,version:d});if(!m||!("shared"in m))return e;Object.keys(l.shared||{}).forEach(e=>{l.shared[e].forEach(t=>{p.push([e,t])})});let g=(e,t)=>{let r=m.shared.find(t=>t.sharedName===e);if(!r)return;let{treeShaking:a}=t;if(!a)return;let{secondarySharedTreeShakingName:l,secondarySharedTreeShakingEntry:s,treeShakingStatus:c}=r;a.status!==c&&(a.status=c,s&&u&&l&&(a.get=async()=>{let e=await (0,o.getRemoteEntry)({origin:i,remoteInfo:{name:l,entry:s,type:u,entryGlobalName:l,shareScope:"default"}});return await e.init(i,n.federation.bundlerRuntime),e.get()}))};return p.forEach(e=>{let[t,n]=e;g(t,n)}),e}}};return(t=i).plugins||(t.plugins=[]),i.plugins.push(d()),l.init(i)}},87440(e,t){t.initContainerEntry=function(e){let{webpackRequire:t,shareScope:n,initScope:r,shareScopeKey:o,remoteEntryInitOptions:a}=e;if(!t.S||!t.federation||!t.federation.instance||!t.federation.initOptions)return;let i=t.federation.instance;i.initOptions({name:t.federation.initOptions.name,remotes:[],...a});let l=null==a?void 0:a.shareScopeKeys,s=null==a?void 0:a.shareScopeMap;if(o&&"string"!=typeof o)o.forEach(e=>{if(!l||!s)return void i.initShareScopeMap(e,n,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}});s[e]||(s[e]={});let t=s[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})});else{let e=o||"default";Array.isArray(l)?l.forEach(e=>{s[e]||(s[e]={});let t=s[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}):i.initShareScopeMap(e,n,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}return(t.federation.attachShareScopeMap&&t.federation.attachShareScopeMap(t),"function"==typeof t.federation.prefetch&&t.federation.prefetch(),Array.isArray(o))?t.federation.initOptions.shared?t.I(o,r):Promise.all(o.map(e=>t.I(e,r))).then(()=>!0):t.I(o||"default",r)}},36777(e,t,n){let r=n(22069),o=n(36897);t.initializeSharing=function(e){let{shareScopeName:t,webpackRequire:n,initPromises:a,initTokens:i,initScope:l}=e,s=Array.isArray(t)?t:[t];var c=[],u=function(e){l||(l=[]);let s=n.federation.instance;var c=i[e];if(c||(c=i[e]={from:s.name}),l.indexOf(c)>=0)return;l.push(c);let u=a[e];if(u)return u;var d=e=>"u">typeof console&&console.warn&&console.warn(e),f=r=>{var o=e=>d("Initialization of sharing external failed: "+e);try{var a=n(r);if(!a)return;var i=r=>r&&r.init&&r.init(n.S[e],l,{shareScopeMap:n.S||{},shareScopeKeys:t});if(a.then)return p.push(a.then(i,o));var s=i(a);if(s&&"boolean"!=typeof s&&s.then)return p.push(s.catch(o))}catch(e){o(e)}};let p=s.initializeSharing(e,{strategy:s.options.shareStrategy,initScope:l,from:"build"});r.attachShareScopeMap(n);let m=n.federation.bundlerRuntimeOptions.remotes;return(m&&Object.keys(m.idToRemoteMap).forEach(e=>{let t=m.idToRemoteMap[e],n=m.idToExternalAndNameMapping[e][2];if(t.length>1)f(n);else if(1===t.length){let e=t[0];o.FEDERATION_SUPPORTED_TYPES.includes(e.externalType)||f(n)}}),p.length)?a[e]=Promise.all(p).then(()=>a[e]=!0):a[e]=!0};return s.forEach(e=>{c.push(u(e))}),Promise.all(c).then(()=>!0)}},71735(e,t,n){let r=n(55216),o=n(57617);function a(e){let{moduleId:t,moduleToHandlerMapping:n,webpackRequire:r,asyncLoad:a}=e,i=r.federation.instance;if(!i)throw Error("Federation instance not found!");let{shareKey:l,shareInfo:s}=n[t];try{let e=o.getUsedExports(r,l),t={...s};if(e&&(t.treeShaking={usedExports:e,useIn:[i.options.name]}),a)return i.loadShare(l,{customShareInfo:t});return i.loadShareSync(l,{customShareInfo:t})}catch(e){throw console.error('loadShareSync failed! The function should not be called unless you set "eager:true". If you do not set it, and encounter this issue, you can check whether an async boundary is implemented.'),console.error("The original error message is as follows: "),e}}t.installInitialConsumes=function(e){r.updateConsumeOptions(e);let{moduleToHandlerMapping:t,webpackRequire:n,installedModules:o,initialConsumes:i,asyncLoad:l}=e,s=[];i.forEach(e=>{let r=()=>a({moduleId:e,moduleToHandlerMapping:t,webpackRequire:n,asyncLoad:l});s.push([e,r])});let c=(e,r)=>{n.m[e]=a=>{var i;o[e]=0,delete n.c[e];let l=r();if("function"!=typeof l)throw Error(`Shared module is not available for eager consumption: ${e}`);let s=l(),{shareInfo:c}=t[e];if((null==c||null==(i=c.shareConfig)?void 0:i.layer)&&s&&"object"==typeof s)try{s.hasOwnProperty("layer")&&void 0!==s.layer||(s.layer=c.shareConfig.layer)}catch(e){}a.exports=s}};if(l)return Promise.all(s.map(async e=>{let[t,n]=e,r=await n();c(t,()=>r)}));s.forEach(e=>{let[t,n]=e;c(t,n)})}},96310(e,t,n){n(37363);let r=n(22069),o=n(36897),a=n(55216),i=n(50630);t.remotes=function(e){a.updateRemoteOptions(e);let{chunkId:t,promises:n,webpackRequire:l,chunkMapping:s,idToExternalAndNameMapping:c,idToRemoteMap:u}=e;r.attachShareScopeMap(l),l.o(s,t)&&s[t].forEach(e=>{let t=l.R;t||(t=[]);let r=c[e],a=u[e]||[];if(t.indexOf(r)>=0)return;if(t.push(r),r.p)return n.push(r.p);let s=t=>{t||(t=Error("Container missing")),"string"==typeof t.message&&(t.message+=` -while loading "${r[1]}" from ${r[2]}`),l.m[e]=()=>{throw t},r.p=0},d=(e,t,o,a,i,l)=>{try{let c=e(t,o);if(!c||!c.then)return i(c,a,l);{let e=c.then(e=>i(e,a),s);if(!l)return e;n.push(r.p=e)}}catch(e){s(e)}},f=(e,t,n)=>e?d(l.I,r[0],0,e,p,n):s();var p=(e,n,o)=>d(n.get,r[1],t,0,m,o),m=t=>{r.p=1,l.m[e]=e=>{e.exports=t()}};let g=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+r[1].slice(1),t=l.federation.instance,n=()=>l.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(r[0])?r[0]:[r[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>n())}return n()}catch(e){s(e)}};1===a.length&&o.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(g,r[2],0,0,m,1):d(l,r[2],0,0,f,1)})}},55216(e,t){function n(e){var t,n,r,o,a;let{webpackRequire:i,idToExternalAndNameMapping:l={},idToRemoteMap:s={},chunkMapping:c={}}=e,{remotesLoadingData:u}=i,d=null==(r=i.federation)||null==(n=r.bundlerRuntimeOptions)||null==(t=n.remotes)?void 0:t.remoteInfos;if(!u||u._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=u;if(f&&p){for(let[e,t]of Object.entries(p))if(l[e]||(l[e]=[t.shareScope,t.name,t.externalModuleId]),!s[e]&&d[t.remoteName]){let n=d[t.remoteName];(o=s)[a=e]||(o[a]=[]),n.forEach(t=>{s[e].includes(t)||s[e].push(t)})}c&&Object.entries(f).forEach(e=>{let[t,n]=e;c[t]||(c[t]=[]),n.forEach(e=>{c[t].includes(e)||c[t].push(e)})}),u._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:n}=e,{consumesLoadingData:r,initializeSharingData:o}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:l}=t.federation;if(r&&!r._updated){let{moduleIdToConsumeDataMapping:o={},initialConsumes:s=[],chunkMapping:c={}}=r;if(Object.entries(o).forEach(e=>{let[r,o]=e;n[r]||(n[r]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:o.shareKey,factory:o.fallback,webpackRequire:t,libraryType:l}):o.fallback,treeShakingGetter:a?o.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:o.requiredVersion,strictVersion:o.strictVersion,singleton:o.singleton,eager:o.eager,layer:o.layer},scope:Array.isArray(o.shareScope)?o.shareScope:[o.shareScope||"default"],treeShaking:a?{get:o.fallback,mode:o.treeShakingMode}:void 0},shareKey:o.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;s.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(c).forEach(e=>{let[n,r]=e;t[n]||(t[n]=[]),r.forEach(e=>{t[n].includes(e)||t[n].push(e)})})}r._updated=1}if(o&&!o._updated){let{federation:e}=t;if(!e.instance||!o.scopeToSharingDataMapping)return;let n={};for(let[e,t]of Object.entries(o.scopeToSharingDataMapping))for(let r of t)if("object"==typeof r&&null!==r){let{name:t,version:o,factory:a,eager:i,singleton:l,requiredVersion:s,strictVersion:c}=r,u={requiredVersion:`^${o}`},d=function(e){return void 0!==e};d(l)&&(u.singleton=l),d(s)&&(u.requiredVersion=s),d(i)&&(u.eager=i),d(c)&&(u.strictVersion=c);let f={version:o,scope:[e],shareConfig:u,get:a};n[t]?n[t].push(f):n[t]=[f]}e.instance.registerShared(n),o._updated=1}},t.updateRemoteOptions=n},56491(e,t,n){"use strict";var r,o,a,i,l,s,c,u,d,f,p,m,g=n(66927),h=n.n(g);let v=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:n}=e;return t(n)}),b={},y="pimcore_studio_ui_bundle",x="version-first";if((n.initializeSharingData||n.initializeExposesData)&&n.federation){let e=(e,t,n)=>{e&&e[t]&&(e[t]=n)},t=(e,t,n)=>{var r,o,a,i,l,s;let c=n();Array.isArray(c)?(null!=(a=(r=e)[o=t])||(r[o]=[]),e[t].push(...c)):"object"==typeof c&&null!==c&&(null!=(s=(i=e)[l=t])||(i[l]={}),Object.assign(e[t],c))},g=(e,t,n)=>{var r,o,a;null!=(a=(r=e)[o=t])||(r[o]=n())},A=null!=(r=null==(s=n.remotesLoadingData)?void 0:s.chunkMapping)?r:{},$=null!=(o=null==(c=n.remotesLoadingData)?void 0:c.moduleIdToRemoteDataMapping)?o:{},w=null!=(a=null==(u=n.initializeSharingData)?void 0:u.scopeToSharingDataMapping)?a:{},S=null!=(i=null==(d=n.consumesLoadingData)?void 0:d.chunkMapping)?i:{},E=null!=(l=null==(f=n.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?l:{},k={},C=[],O={},M=null==(p=n.initializeExposesData)?void 0:p.shareScope;for(let e in h())n.federation[e]=h()[e];g(n.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,n]of Object.entries(E))e[t]={getter:n.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager},scope:[n.shareScope]},shareKey:n.shareKey};return e}),g(n.federation,"initOptions",()=>({})),g(n.federation.initOptions,"name",()=>y),g(n.federation.initOptions,"shareStrategy",()=>x),g(n.federation.initOptions,"shared",()=>{let e={};for(let[t,n]of Object.entries(w))for(let r of n)if("object"==typeof r&&null!==r){let{name:n,version:o,factory:a,eager:i,singleton:l,requiredVersion:s,strictVersion:c}=r,u={},d=function(e){return void 0!==e};d(l)&&(u.singleton=l),d(s)&&(u.requiredVersion=s),d(i)&&(u.eager=i),d(c)&&(u.strictVersion=c);let f={version:o,scope:[t],shareConfig:u,get:a};e[n]?e[n].push(f):e[n]=[f]}return e}),t(n.federation.initOptions,"remotes",()=>Object.values(b).flat().filter(e=>"script"===e.externalType)),t(n.federation.initOptions,"plugins",()=>v),g(n.federation,"bundlerRuntimeOptions",()=>({})),g(n.federation.bundlerRuntimeOptions,"remotes",()=>({})),g(n.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>A),g(n.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>b),g(n.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,n]of Object.entries($))e[t]=[n.shareScope,n.name,n.externalModuleId,n.remoteName];return e}),g(n.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>n),t(n.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,n]of Object.entries($)){let r=b[n.remoteName];r&&(e[t]=r)}return e}),e(n,"S",n.federation.bundlerRuntime.S),n.federation.attachShareScopeMap&&n.federation.attachShareScopeMap(n),e(n.f,"remotes",(e,t)=>n.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:A,idToExternalAndNameMapping:n.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:n.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:n})),e(n.f,"consumes",(e,t)=>n.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:S,moduleToHandlerMapping:n.federation.consumesLoadingModuleToHandlerMapping,installedModules:k,webpackRequire:n})),e(n,"I",(e,t)=>n.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:C,initTokens:O,webpackRequire:n})),e(n,"initContainer",(e,t,r)=>n.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:r,shareScopeKey:M,webpackRequire:n})),e(n,"getContainer",(e,t)=>{var r=n.initializeExposesData.moduleMap;return n.R=t,t=Object.prototype.hasOwnProperty.call(r,e)?r[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),n.R=void 0,t}),n.federation.instance=n.federation.runtime.init(n.federation.initOptions),(null==(m=n.consumesLoadingData)?void 0:m.initialConsumes)&&n.federation.bundlerRuntime.installInitialConsumes({webpackRequire:n,installedModules:k,initialConsumes:n.consumesLoadingData.initialConsumes,moduleToHandlerMapping:n.federation.consumesLoadingModuleToHandlerMapping})}},39139(e,t,n){"use strict";n.d(t,{get:()=>n.getContainer,init:()=>n.initContainer})},46942(e){!function(){"use strict";var t={}.hasOwnProperty;function n(){for(var e="",t=0;t=0;--n){var r=(0,e[n])(t);if(!C(r)&&!O(r)){if(!D(r))throw TypeError();t=r}}return t}function b(e,t,n,r){for(var o=e.length-1;o>=0;--o){var a=(0,e[o])(t,n,r);if(!C(a)&&!O(a)){if(!N(a))throw TypeError();r=a}}return r}function y(e,t,n){if(x(e,t,n))return!0;var r=K(t);return!O(r)&&y(e,r,n)}function x(e,t,n){var r=Q(t,n,!1);return!C(r)&&j(r.OrdinaryHasOwnMetadata(e,t,n))}function A(e,t,n){if(x(e,t,n))return $(e,t,n);var r=K(t);if(!O(r))return A(e,r,n)}function $(e,t,n){var r=Q(t,n,!1);if(!C(r))return r.OrdinaryGetOwnMetadata(e,t,n)}function w(e,t,n,r){Q(n,r,!0).OrdinaryDefineOwnMetadata(e,t,n,r)}function S(e,t){var n=E(e,t),r=K(e);if(null===r)return n;var o=S(r,t);if(o.length<=0)return n;if(n.length<=0)return o;for(var a=new f,i=[],l=0,s=n;l=0&&e=this._keys.length?(this._index=-1,this._keys=t,this._values=t):this._index++,{value:n,done:!1}}return{value:void 0,done:!0}},e.prototype.throw=function(e){throw this._index>=0&&(this._index=-1,this._keys=t,this._values=t),e},e.prototype.return=function(e){return this._index>=0&&(this._index=-1,this._keys=t,this._values=t),{value:e,done:!0}},e}();return function(){function t(){this._keys=[],this._values=[],this._cacheKey=e,this._cacheIndex=-2}return Object.defineProperty(t.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),t.prototype.has=function(e){return this._find(e,!1)>=0},t.prototype.get=function(e){var t=this._find(e,!1);return t>=0?this._values[t]:void 0},t.prototype.set=function(e,t){var n=this._find(e,!0);return this._values[n]=t,this},t.prototype.delete=function(t){var n=this._find(t,!1);if(n>=0){for(var r=this._keys.length,o=n+1;otypeof crypto?crypto.getRandomValues(t):"u">typeof msCrypto?msCrypto.getRandomValues(t):i(t,e),t}return i(Array(e),e)}function s(){var t=l(e);t[6]=79&t[6]|64,t[8]=191&t[8]|128;for(var n="",r=0;re.length)&&(t=e.length);for(var n=0,r=Array(t);nr})},96369(e,t,n){"use strict";function r(e){if(Array.isArray(e))return e}n.d(t,{A:()=>r})},9417(e,t,n){"use strict";function r(e){if(void 0===e)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n.d(t,{A:()=>r})},10467(e,t,n){"use strict";function r(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,o)}function o(e){return function(){var t=this,n=arguments;return new Promise(function(o,a){var i=e.apply(t,n);function l(e){r(i,o,a,l,s,"next",e)}function s(e){r(i,o,a,l,s,"throw",e)}l(void 0)})}}n.d(t,{A:()=>o})},39874(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(53954),o=n(52176),a=n(56822);function i(e,t,n){return t=(0,r.A)(t),(0,a.A)(e,(0,o.A)()?Reflect.construct(t,n||[],(0,r.A)(e).constructor):t.apply(e,n))}},23029(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}n.d(t,{A:()=>r})},92901(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(96192);function o(e,t){for(var n=0;no});var r=n(27800);function o(e,t){var n="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=(0,r.A)(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var o=0,a=function(){};return{s:a,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:a}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,l=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return l=e.done,e},e:function(e){s=!0,i=e},f:function(){try{l||null==n.return||n.return()}finally{if(s)throw i}}}}},29426(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(53954),o=n(52176),a=n(56822);function i(e){var t=(0,o.A)();return function(){var n,o=(0,r.A)(e);return n=t?Reflect.construct(o,arguments,(0,r.A)(this).constructor):o.apply(this,arguments),(0,a.A)(this,n)}}},64467(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(96192);function o(e,t,n){return(t=(0,r.A)(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},58168(e,t,n){"use strict";function r(){return(r=Object.assign?Object.assign.bind():function(e){for(var t=1;tr})},53954(e,t,n){"use strict";function r(e){return(r=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,{A:()=>r})},85501(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(63662);function o(e,t){if("function"!=typeof t&&null!==t)throw TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&(0,r.A)(e,t)}},52176(e,t,n){"use strict";function r(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(r=function(){return!!e})()}n.d(t,{A:()=>r})},73893(e,t,n){"use strict";function r(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}n.d(t,{A:()=>r})},76562(e,t,n){"use strict";function r(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}n.d(t,{A:()=>r})},89379(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(64467);function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function a(e){for(var t=1;to});var r=n(98587);function o(e,t){if(null==e)return{};var n,o,a=(0,r.A)(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;or})},56822(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(82284),o=n(9417);function a(e,t){if(t&&("object"==(0,r.A)(t)||"function"==typeof t))return t;if(void 0!==t)throw TypeError("Derived constructors may only return object or undefined");return(0,o.A)(e)}},1079(e,t,n){"use strict";function r(e,t){this.v=e,this.k=t}function o(e,t,n,r){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(o=function(e,t,n,r){function i(t,n){o(e,t,function(e){return this._invoke(t,n,e)})}t?a?a(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(i("next",0),i("throw",1),i("return",2))})(e,t,n,r)}function a(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function l(n,r,a,i){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return o(l,"_invoke",function(n,r,o){var a,i,l,c=0,u=o||[],d=!1,f={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return a=t,i=0,l=e,f.n=n,s}};function p(n,r){for(i=n,l=r,t=0;!d&&c&&!o&&t3?(o=m===r)&&(l=a[(i=a[4])?5:(i=3,3)],a[4]=a[5]=e):a[0]<=p&&((o=n<2&&pr||r>m)&&(a[4]=n,a[5]=r,f.n=m,i=0))}if(o||n>1)return s;throw d=!0,r}return function(o,u,m){if(c>1)throw TypeError("Generator is already running");for(d&&1===u&&p(u,m),i=u,l=m;(t=i<2?e:l)||!d;){a||(i?i<3?(i>1&&(f.n=-1),p(i,l)):f.n=l:f.v=l);try{if(c=2,a){if(i||(o="next"),t=a[o]){if(!(t=t.call(a,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,i<2&&(i=0)}else 1===i&&(t=a.return)&&t.call(a),i<2&&(l=TypeError("The iterator does not provide a '"+o+"' method"),i=1);a=e}else if((t=(d=f.n<0)?l:n.call(r,f))!==s)break}catch(t){a=e,i=1,l=t}finally{c=1}}return{value:t,done:d}}}(n,a,i),!0),l}var s={};function c(){}function u(){}function d(){}t=Object.getPrototypeOf;var f=d.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(o(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,o(e,i,"GeneratorFunction")),e.prototype=Object.create(f),e}return u.prototype=d,o(f,"constructor",d),o(d,"constructor",u),u.displayName="GeneratorFunction",o(d,i,"GeneratorFunction"),o(f),o(f,i,"Generator"),o(f,r,function(){return this}),o(f,"toString",function(){return"[object Generator]"}),(a=function(){return{w:l,m:p}})()}function i(e,t){var n;function a(n,o,i,l){try{var s=e[n](o),c=s.value;return c instanceof r?t.resolve(c.v).then(function(e){a("next",e,i,l)},function(e){a("throw",e,i,l)}):t.resolve(c).then(function(e){s.value=e,i(s)},function(e){return a("throw",e,i,l)})}catch(e){l(e)}}this.next||(o(i.prototype),o(i.prototype,"function"==typeof Symbol&&Symbol.asyncIterator||"@asyncIterator",function(){return this})),o(this,"_invoke",function(e,r,o){function i(){return new t(function(t,n){a(e,o,t,n)})}return n=n?n.then(i,i):i()},!0)}function l(e,t,n,r,o){return new i(a().w(e,t,n,r),o||Promise)}function s(e,t,n,r,o){var a=l(e,t,n,r,o);return a.next().then(function(e){return e.done?e.value:a.next()})}function c(e){var t=Object(e),n=[];for(var r in t)n.unshift(r);return function e(){for(;n.length;)if((r=n.pop())in t)return e.value=r,e.done=!1,e;return e.done=!0,e}}n.d(t,{A:()=>f});var u=n(82284);function d(e){if(null!=e){var t=e["function"==typeof Symbol&&Symbol.iterator||"@@iterator"],n=0;if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length))return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}}}throw TypeError((0,u.A)(e)+" is not iterable")}function f(){var e=a(),t=e.m(f),n=(Object.getPrototypeOf?Object.getPrototypeOf(t):t.__proto__).constructor;function o(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===n||"GeneratorFunction"===(t.displayName||t.name))}var u={throw:1,return:2,break:3,continue:3};function p(e){var t,n;return function(r){t||(t={stop:function(){return n(r.a,2)},catch:function(){return r.v},abrupt:function(e,t){return n(r.a,u[e],t)},delegateYield:function(e,o,a){return t.resultName=o,n(r.d,d(e),a)},finish:function(e){return n(r.f,e)}},n=function(e,n,o){r.p=t.prev,r.n=t.next;try{return e(n,o)}finally{t.next=r.n}}),t.resultName&&(t[t.resultName]=r.v,t.resultName=void 0),t.sent=r.v,t.next=r.n;try{return e.call(this,t)}finally{r.p=t.prev,r.n=t.next}}}return(f=function(){return{wrap:function(t,n,r,o){return e.w(p(t),n,r,o&&o.reverse())},isGeneratorFunction:o,mark:e.m,awrap:function(e,t){return new r(e,t)},AsyncIterator:i,async:function(e,t,n,r,a){return(o(t)?l:s)(p(e),t,n,r,a)},keys:c,values:d}})()}},63662(e,t,n){"use strict";function r(e,t){return(r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}n.d(t,{A:()=>r})},57046(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(96369);function o(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a,i,l=[],s=!0,c=!1;try{if(a=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=a.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=n.return&&(i=n.return(),Object(i)!==i))return}finally{if(c)throw o}}return l}}var a=n(27800),i=n(76562);function l(e,t){return(0,r.A)(e)||o(e,t)||(0,a.A)(e,t)||(0,i.A)()}},87695(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(96369),o=n(73893),a=n(27800),i=n(76562);function l(e){return(0,r.A)(e)||(0,o.A)(e)||(0,a.A)(e)||(0,i.A)()}},83098(e,t,n){"use strict";n.d(t,{A:()=>s});var r=n(43145);function o(e){if(Array.isArray(e))return(0,r.A)(e)}var a=n(73893),i=n(27800);function l(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(e){return o(e)||(0,a.A)(e)||(0,i.A)(e)||l()}},96192(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(82284);function o(e,t){if("object"!=(0,r.A)(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var o=n.call(e,t||"default");if("object"!=(0,r.A)(o))return o;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}function a(e){var t=o(e,"string");return"symbol"==(0,r.A)(t)?t:t+""}},82284(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}n.d(t,{A:()=>r})},27800(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(43145);function o(e,t){if(e){if("string"==typeof e)return(0,r.A)(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?(0,r.A)(e,t):void 0}}}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__webpack_require__),n.loaded=!0,n.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(39139),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return!/^(1609|2625|3367|4420|5314|6375|9872)$/.test(e)},rootOutputDir:"../../"})})(),(()=>{var e="function"==typeof Symbol,t=e?Symbol("rspack queues"):"__rspack_queues",n=__webpack_require__.aE=e?Symbol("rspack exports"):"__webpack_exports__",r=e?Symbol("rspack error"):"__rspack_error",o=e?Symbol("rspack done"):"__rspack_done",a=__webpack_require__.zS=e?Symbol("rspack defer"):"__rspack_defer",i=e=>{e&&e.d<1&&(e.d=1,e.forEach(e=>e.r--),e.forEach(e=>e.r--?e.r++:e()))},l=e=>e.map(e=>{if(null!==e&&"object"==typeof e){if(!e[t]&&e[a]){var l=e[a];if(!l.some(e=>{var t=__webpack_module_cache__[e];return!t||!1===t[o]}))return e;var s=e;e={then(e){Promise.all(l.map(__webpack_require__)).then(()=>e(s))}}}if(e[t])return e;if(e.then){var c=[];c.d=0,e.then(e=>{u[n]=e,i(c)},e=>{u[r]=e,i(c)});var u={};return u[a]=!1,u[t]=e=>e(c),u}}var d={};return d[t]=()=>{},d[n]=e,d});__webpack_require__.a=(e,s,c)=>{c&&((u=[]).d=-1);var u,d,f,p,m=new Set,g=e.exports,h=new Promise((e,t)=>{p=t,f=e});h[n]=g,h[t]=e=>{u&&e(u),m.forEach(e),h.catch(()=>{})},e.exports=h,s(e=>{d=l(e);var o,i=()=>d.map(e=>{if(e[a])return e;if(e[r])throw e[r];return e[n]}),s=new Promise(e=>{(o=()=>e(i)).r=0;var n=e=>e!==u&&!m.has(e)&&(m.add(e),e&&!e.d&&(o.r++,e.push(o)));d.map(e=>e[a]||e[t](n))});return o.r?s:i()},e=>(e?p(h[r]=e):f(g),i(u),h[o]=!0)),u&&u.d<0&&(u.d=0)}})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(n,r){if(1&r&&(n=this(n)),8&r||"object"==typeof n&&n&&(4&r&&n.__esModule||16&r&&"function"==typeof n.then))return n;var o=Object.create(null);__webpack_require__.r(o);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&r&&n;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>n[e]});return a.default=()=>n,__webpack_require__.d(o,a),o}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,n)=>(__webpack_require__.f[n](e,t),t),[]))})(),(()=>{__webpack_require__.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e)})(),(()=>{__webpack_require__.u=e=>"static/js/async/"+(({1064:"__federation_expose_modules__auth",1090:"__federation_expose_api__settings",1143:"__federation_expose_api__role",1209:"__federation_expose_modules__perspectives",1225:"__federation_expose_modules__gdpr_data_extractor",1327:"__federation_expose_modules__reports",1367:"__federation_expose_api__reports",1525:"__federation_expose_default_export",1579:"__federation_expose_api__asset",1590:"__federation_expose_api__thumbnails",1600:"__federation_expose_modules__widget_editor",1933:"__federation_expose_api__translations",1996:"__federation_expose_utils",2049:"__federation_expose_api__documents",2108:"__federation_expose__internal___mf_bootstrap",2421:"__federation_expose_modules__user",2489:"__federation_expose_api__data_object",2932:"__federation_expose_api__perspectives",3128:"__federation_expose_api__user",354:"lib-axios",3730:"__federation_expose_api__schedule",3939:"__federation_expose_api__version",3971:"__federation_expose_modules__document",4462:"__federation_expose_modules__translations",4878:"__federation_expose_api__tags",5579:"__federation_expose_modules__notifications",5992:"__federation_expose_modules__global_message_bus",6185:"__federation_expose_api",6193:"__federation_expose_modules__field_definitions",6530:"__federation_expose_api__dependencies",6706:"__federation_expose_api__metadata",6735:"__federation_expose_modules__icon_library",70:"__federation_expose_api__workflow",7058:"__federation_expose_api__custom_metadata",7890:"__federation_expose_api__properties",7951:"__federation_expose_api__class_definition",8234:"__federation_expose_app",8311:"__federation_expose_modules__rule_builder",8430:"__federation_expose_modules__data_object",8438:"__federation_expose_api__elements",9615:"__federation_expose__internal___mf_bootstrap_document_editor_iframe",9749:"__federation_expose_modules__application_logger",9800:"__federation_expose_modules__asset",9969:"__federation_expose_modules__class_definitions"})[e]||e)+"."+({1003:"469c1fdb",101:"1b8f34f4",1010:"af98507b",1019:"2c88f074",103:"3717b318",1064:"65d96793",1065:"5cc838a2",1090:"2c556240",1102:"01cefe38",1143:"89b3367b",1153:"7cbdaf39",1180:"c2738508",1207:"ea0577c0",1209:"ea16786c",1225:"48b05d8a",1265:"d95e4129",1270:"4a7146b0",129:"24017dc3",1303:"f89c138e",1327:"f35bbd3d",1367:"50fc5ca0",141:"a305e3e9",1428:"b3183de2",1438:"67cdf5fd",145:"7d13ff5f",1472:"e37f95af",1525:"1b3f6d28",1553:"630acce1",1567:"debd0837",157:"8615578d",1579:"9dee10b3",1590:"a167200d",1600:"4cd4867f",1612:"54f63d68",1635:"18d9dd0b",1643:"b41a359d",1668:"120c2fdd",1688:"4626095c",1693:"48c272d7",1708:"de5f09b0",172:"cb77a99e",1721:"fdc19114",1742:"9207983d",175:"bd0ef661",1750:"19b70383",1762:"e6454223",1797:"bc29fd89",1814:"16619920",1834:"3ea07c1f",1851:"1528a0c7",1875:"048f7c1f",1933:"7a8790cb",198:"96c8f5d3",1996:"526f5bda",2015:"28b3f667",2016:"2efa4d68",2049:"8a5c66b8",206:"0227085b",2073:"0f14210c",2098:"4b97bea3",2103:"0449b778",2108:"7441f43a",2117:"da809f8e",2121:"8117f390",2162:"e42c8ad6",2168:"3b00277e",2179:"7408679f",2188:"72e65c95",2189:"e296ffec",2202:"bd928b8b",2204:"875d7d36",2237:"e23d4ce3",2267:"ad4d61d8",2272:"b29c0e6c",2287:"6a200c82",2290:"68fd6bdf",235:"97e84a52",2373:"11c5538c",2380:"d6bc17ef",2399:"305db162",2410:"4b5baf39",2421:"1df0f8e6",2427:"2406cc45",243:"098f10af",2463:"da2cfb76",2464:"8deaa84f",2472:"f40725db",2489:"160792b1",2492:"cc8cd85c",25:"36d6a68b",2503:"1efd0e77",254:"7abe0c11",2545:"dcb1e512",2597:"969d51fc",261:"0e13114e",2619:"543b4f03",2638:"d949ec28",2709:"809fe258",2739:"84cc2ba2",2775:"0d98465a",2793:"a25ad8de",281:"d912a74e",2841:"e1a4734b",2843:"e1d9c7bc",2845:"d2c82bf6",2893:"99328fa1",2932:"936945cf",2980:"d885aa98",3:"470a371d",3009:"be7deeee",3055:"b0f87225",3062:"323c4508",3066:"31b992e1",3068:"7b747a5f",3125:"ce787981",3128:"0c42ebe1",3144:"edcf7515",3166:"32d06e35",3197:"ebf93fd4",3209:"6722a080",3229:"97f4b7e5",3240:"f86bdd91",3330:"c830e580",334:"67e5210f",3379:"f0e413e5",3392:"42b07d09",3396:"4cc8f904",3406:"86351b7b",35:"d81ad3e5",3528:"60fd342c",354:"f458d745",3548:"133939a2",3584:"4ad9a196",365:"e655295f",3653:"7c1ffecd",3657:"cf916f7e",3686:"6b54036a",3730:"9ccfa450",3748:"7adfb9d1",3750:"921e74ed",3756:"7a4c5e02",380:"0cdf7b27",3836:"6a4b9fd9",3838:"4b01fffb",3839:"800430ba",3846:"e0ec9537",385:"d9b4f6a1",3902:"5873a27f",3935:"0990f5be",3939:"7220c1e1",3941:"9ceed713",3971:"5167229e",4028:"d910fe41",4034:"ebc0a070",4062:"57e047db",4083:"82e017ef",4084:"a80198a1",4120:"afd6653a",4154:"2617dd8b",4160:"1311e5ef",4195:"4fb2f2ba",4225:"61de23fc",4241:"f5777d74",4319:"ca014781",4329:"4e8ef4cc",4346:"867849d4",4426:"20bcaf42",446:"2523c50a",4462:"e3016a50",45:"e217286d",4530:"72904f19",4596:"13ba10c0",4603:"86da83a0",4680:"66eae797",4693:"552164ec",4698:"6d0eba4e",4702:"508d41d1",4715:"3e1202d6",4718:"b15efaaf",4771:"c5e9b1dd",4799:"a225248d",4858:"820711a5",4871:"b42a8935",4878:"f737e834",489:"693d11de",5084:"877dbf80",5114:"ebf1bfcb",5123:"9f567207",5154:"a94bb137",5168:"fdbd2cef",5177:"a255dad2",5186:"deb009c0",521:"cb98200a",5277:"97ce57aa",5331:"bbbb73f8",5412:"53c2e3aa",5431:"0eb962a2",5454:"a8bca7d3",5545:"cde240bd",5561:"b76a78d2",5579:"212009d9",5690:"782c3ae6",5696:"ab2274ca",5712:"ffe8bf9d",5731:"15301fd9",5753:"371bde44",5804:"1be86954",582:"4f5fd381",5841:"812278cf",5904:"327a2f83",5976:"be3da2cf",5990:"3c9d8c23",5992:"bfbd3798",6052:"a270b069",6135:"d371dcf8",616:"98e20c89",6185:"fbe2c7c1",6186:"9fa7f507",619:"59f8e380",6193:"171d7545",6229:"ec077e40",6255:"2e48b884",6270:"f9ff3abd",6272:"f2f56a80",6313:"e76747fb",6335:"0ad9b174",6411:"ae78ff82",6424:"ca220edd",6458:"b5282ed0",6464:"b6d25cb6",6472:"df513d2d",6484:"2519155d",6530:"a9508cf9",6550:"09a63ebf",6572:"510ff641",6579:"cda7f334",658:"dc677028",660:"5242d83f",6619:"93b9f2c4",6649:"2b614ce3",6695:"087ae8ff",6706:"e9f2a028",6735:"481bed67",6743:"851be9cb",6759:"cf6c0abd",6766:"c76f91a5",6815:"80ba0d22",6819:"424ecfc4",6823:"dc627341",687:"ae382b4d",6911:"d02db343",692:"ac93e4e2",6967:"4d971194",6984:"af4507e3",70:"ad14d72f",7006:"928d8671",7041:"230cf6a4",705:"fad963d9",7053:"63c4c0a6",7058:"10d73b97",706:"01d44a78",7073:"fb6439a4",7161:"f24a612f",7171:"8731ac06",7210:"9113a386",7250:"364fbcad",7264:"fc5a523f",7334:"be0321bf",7396:"da4c50f4",741:"734ea878",7419:"b1cfaeac",7440:"04b86278",7442:"636a9ffa",7463:"e177b088",749:"7c748f48",7524:"73ba348d",7527:"e64ccbd1",7597:"42dde6f3",7679:"a6829c17",7680:"2cb113f6",7789:"50873df9",7793:"d6bce01b",7799:"a37e9eaf",7821:"b1a2dc53",7828:"812c672f",7890:"314180ef",7935:"ba8eb0b4",7939:"af086f08",7951:"6192771c",7960:"9d4a54c0",7994:"c600e1ce",803:"52d29752",8031:"b368b0bf",8050:"502aa521",8051:"9c74ecaf",8146:"e69de8bc",8195:"c8bb6771",8222:"acb59083",8231:"0a773046",8234:"0a64ee83",8272:"64fe9f7a",830:"dda8066f",8311:"f77a657a",8372:"d6f25582",8403:"58bbddc4",8430:"8f1ebdf8",8437:"864e7b29",8438:"5babca9f",8467:"f7bd216d",8473:"25a53f08",8477:"0c91210d",8479:"55f72fe0",85:"3d7bb7a3",8520:"3f467428",8536:"df877041",854:"95bad760",8547:"3355910d",8557:"e526282d",8567:"2e09cb4e",8574:"8c240d77",8609:"b6039081",8635:"29404620",8645:"7a1aa6c0",8658:"55f9d53e",8707:"80dfb17f",8779:"bdcddd0a",8800:"1154e54c",8832:"e1a7ddbf",8835:"d50a0005",8850:"1ef4da0e",8910:"7686ba2c",8932:"e8090749",8971:"cb9861fc",9007:"f28d0779",9030:"03e4d789",9052:"67bd17cd",9076:"7a2b7e9a",9114:"7d0c9ca9",9204:"8f0c9c3a",9322:"81e49a3d",9336:"9a425d8d",935:"4dfccbd9",9357:"709b2aae",9403:"9f36612d",9454:"03f9cbf9",9471:"3511726f",9536:"9b33a533",9603:"dcad1930",9607:"214ebd42",9615:"ce47134e",9691:"a7a34297",9749:"fc080c19",9765:"07ec2c12",9767:"926906cb",9800:"51999de9",9801:"09cd7cd0",9880:"64c12943",9969:"009acac4"})[e]+".js"})(),(()=>{__webpack_require__.miniCssF=e=>"static/css/async/"+(({2108:"__federation_expose__internal___mf_bootstrap",9615:"__federation_expose__internal___mf_bootstrap_document_editor_iframe"})[e]||e)+"."+({2108:"f35a8364",6411:"27bd1518",9615:"f35a8364"})[e]+".css"})(),(()=>{__webpack_require__.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})()})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle:";__webpack_require__.l=function(n,r,o,a){if(e[n])return void e[n].push(r);if(void 0!==o)for(var i,l,s=document.getElementsByTagName("script"),c=0;c{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e)})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[{name:"@ant-design/colors",version:"7.2.1",factory:()=>()=>__webpack_require__(81463),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.11",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.5",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("8222")]).then(()=>()=>__webpack_require__(88477)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.5.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("6550"),__webpack_require__.e("1609")]).then(()=>()=>__webpack_require__(32053)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.10.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("7680")]).then(()=>()=>__webpack_require__(49075)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("582")]).then(()=>()=>__webpack_require__(95973)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.3",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("2272")]).then(()=>()=>__webpack_require__(39027)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("7789"),__webpack_require__.e("6464")]).then(()=>()=>__webpack_require__(98668)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>__webpack_require__.e("9204").then(()=>()=>__webpack_require__(18831)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([__webpack_require__.e("9880"),__webpack_require__.e("6375"),__webpack_require__.e("4083")]).then(()=>()=>__webpack_require__(43627)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.11.2",factory:()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("7597"),__webpack_require__.e("9872")]).then(()=>()=>__webpack_require__(62348)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>__webpack_require__.e("6272").then(()=>()=>__webpack_require__(28755)),eager:0,requiredVersion:"^8.20.5"},{name:"@tanstack/react-virtual",version:"3.13.23",factory:()=>__webpack_require__.e("6619").then(()=>()=>__webpack_require__(28166)),eager:0,requiredVersion:"^3.13.12"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([__webpack_require__.e("5123"),__webpack_require__.e("5314"),__webpack_require__.e("8473")]).then(()=>()=>__webpack_require__(6286)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>__webpack_require__(64530),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>__webpack_require__(46942),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.3.3",factory:()=>__webpack_require__.e("7463").then(()=>()=>__webpack_require__(99418)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>__webpack_require__.e("243").then(()=>()=>__webpack_require__(99310)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>Promise.all([__webpack_require__.e("2463"),__webpack_require__.e("854")]).then(()=>()=>__webpack_require__(12306)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>__webpack_require__.e("5976").then(()=>()=>__webpack_require__(72635)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"11.1.4",factory:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064)),eager:0,requiredVersion:"^10.1.1"},{name:"js-yaml",version:"4.1.1",factory:()=>__webpack_require__.e("6579").then(()=>()=>__webpack_require__(20382)),eager:0,requiredVersion:"^4.1.1"},{name:"leaflet-draw",version:"1.0.4",factory:()=>__webpack_require__.e("254").then(()=>()=>__webpack_require__(56269)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>__webpack_require__.e("706").then(()=>()=>__webpack_require__(53481)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.23",factory:()=>__webpack_require__.e("1668").then(()=>()=>__webpack_require__(2543)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.3",factory:()=>__webpack_require__.e("3209").then(()=>()=>__webpack_require__(21728)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>__webpack_require__(40961),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>__webpack_require__.e("6815").then(()=>()=>__webpack_require__(55794)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>__webpack_require__.e("3379").then(()=>()=>__webpack_require__(53054)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>__webpack_require__.e("2237").then(()=>()=>__webpack_require__(71468)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.3",factory:()=>__webpack_require__.e("749").then(()=>()=>__webpack_require__(76204)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>__webpack_require__(96540),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>__webpack_require__(38630),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>__webpack_require__.e("8658").then(()=>()=>__webpack_require__(81513)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{1609:["11264"],2625:["35864"],9872:["91251"],6185:["88605","62284"],6375:["41834"],3902:["81427","60142","44241","21429","13815"],5314:["86569"],8234:["30922","37821","40119","94709","53797","6492","52725","70982","5339","30831","50484","76394","78535","83015","53763","89507","96314","88754"],6240:["8651","25765","47867","16124"],3367:["23080","3319"],4420:["62446","46680"]},moduleIdToConsumeDataMapping:{16124:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(81463)},8651:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(46942)},60142:{shareScope:"default",shareKey:"i18next",import:"i18next",requiredVersion:"^23.16.8",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("5976").then(()=>()=>__webpack_require__(72635))},86569:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(64530)},5339:{shareScope:"default",shareKey:"@tanstack/react-virtual",import:"@tanstack/react-virtual",requiredVersion:"^3.13.12",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6619").then(()=>()=>__webpack_require__(28166))},83015:{shareScope:"default",shareKey:"flexlayout-react",import:"flexlayout-react",requiredVersion:"^0.7.15",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("243").then(()=>()=>__webpack_require__(99310))},96314:{shareScope:"default",shareKey:"@codemirror/lang-yaml",import:"@codemirror/lang-yaml",requiredVersion:"^6.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("2272")]).then(()=>()=>__webpack_require__(39027))},62284:{shareScope:"default",shareKey:"react-redux",import:"react-redux",requiredVersion:"^9.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("2237").then(()=>()=>__webpack_require__(71468))},44241:{shareScope:"default",shareKey:"antd-style",import:"antd-style",requiredVersion:"3.7.x",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("5123"),__webpack_require__.e("5314")]).then(()=>()=>__webpack_require__(6286))},47867:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(96540)},81427:{shareScope:"default",shareKey:"dompurify",import:"dompurify",requiredVersion:"^3.2.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7463").then(()=>()=>__webpack_require__(99418))},50484:{shareScope:"default",shareKey:"react-compiler-runtime",import:"react-compiler-runtime",requiredVersion:"^19.1.0-rc.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3209").then(()=>()=>__webpack_require__(21728))},30922:{shareScope:"default",shareKey:"@codemirror/lang-xml",import:"@codemirror/lang-xml",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("582")]).then(()=>()=>__webpack_require__(95973))},23080:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168))},41834:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7789").then(()=>()=>__webpack_require__(98668))},37821:{shareScope:"default",shareKey:"leaflet-draw",import:"leaflet-draw",requiredVersion:"^1.0.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("254").then(()=>()=>__webpack_require__(56269))},6492:{shareScope:"default",shareKey:"@uiw/react-codemirror",import:"@uiw/react-codemirror",requiredVersion:"^4.23.6",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(65846)},3319:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442))},11264:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618))},76394:{shareScope:"default",shareKey:"@codemirror/lang-json",import:"@codemirror/lang-json",requiredVersion:"^6.0.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("5841")]).then(()=>()=>__webpack_require__(88477))},89507:{shareScope:"default",shareKey:"@tanstack/react-table",import:"@tanstack/react-table",requiredVersion:"^8.20.5",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6272").then(()=>()=>__webpack_require__(28755))},94709:{shareScope:"default",shareKey:"@codemirror/lang-markdown",import:"@codemirror/lang-markdown",requiredVersion:"^6.3.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6550").then(()=>()=>__webpack_require__(32053))},53763:{shareScope:"default",shareKey:"leaflet",import:"leaflet",requiredVersion:"^1.9.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("706").then(()=>()=>__webpack_require__(53481))},88754:{shareScope:"default",shareKey:"@dnd-kit/sortable",import:"@dnd-kit/sortable",requiredVersion:"^8.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("9880").then(()=>()=>__webpack_require__(43627))},25765:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(40961)},78535:{shareScope:"default",shareKey:"framer-motion",import:"framer-motion",requiredVersion:"^11.11.17",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("2463").then(()=>()=>__webpack_require__(12306))},62446:{shareScope:"default",shareKey:"inversify",import:"inversify",requiredVersion:"6.1.x",strictVersion:!0,singleton:!1,eager:!0,fallback:()=>()=>__webpack_require__(67502)},70982:{shareScope:"default",shareKey:"react-draggable",import:"react-draggable",requiredVersion:"^4.4.6",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6815").then(()=>()=>__webpack_require__(55794))},53797:{shareScope:"default",shareKey:"js-yaml",import:"js-yaml",requiredVersion:"^4.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6579").then(()=>()=>__webpack_require__(20382))},46680:{shareScope:"default",shareKey:"reflect-metadata",import:"reflect-metadata",requiredVersion:"*",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(38630)},21429:{shareScope:"default",shareKey:"react-i18next",import:"react-i18next",requiredVersion:"^14.1.3",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3379").then(()=>()=>__webpack_require__(53054))},13815:{shareScope:"default",shareKey:"uuid",import:"uuid",requiredVersion:"^10.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("8658").then(()=>()=>__webpack_require__(81513))},30831:{shareScope:"default",shareKey:"@codemirror/lang-sql",import:"@codemirror/lang-sql",requiredVersion:"^6.8.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("7680")]).then(()=>()=>__webpack_require__(49075))},35864:{shareScope:"default",shareKey:"lodash",import:"lodash",requiredVersion:"^4.17.21",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1668").then(()=>()=>__webpack_require__(2543))},88605:{shareScope:"default",shareKey:"@reduxjs/toolkit",import:"@reduxjs/toolkit",requiredVersion:"^2.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7597").then(()=>()=>__webpack_require__(62348))},40119:{shareScope:"default",shareKey:"@dnd-kit/modifiers",import:"@dnd-kit/modifiers",requiredVersion:"^7.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6823").then(()=>()=>__webpack_require__(18831))},52725:{shareScope:"default",shareKey:"react-router-dom",import:"react-router-dom",requiredVersion:"^6.28.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("749").then(()=>()=>__webpack_require__(76204))},91251:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064))}},initialConsumes:["8651","25765","47867","16124"]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{if("u">typeof document){var e=function(e,t,n,r,o){var a=document.createElement("link");a.rel="stylesheet",a.type="text/css",__webpack_require__.nc&&(a.nonce=__webpack_require__.nc),a.href=t;var i=function(n){if(a.onerror=a.onload=null,"load"===n.type)r();else{var i=n&&("load"===n.type?"missing":n.type),l=n&&n.target&&n.target.href||t,s=Error("Loading CSS chunk "+e+" failed.\\n("+l+")");s.code="CSS_CHUNK_LOAD_FAILED",s.type=i,s.request=l,a.parentNode&&a.parentNode.removeChild(a),o(s)}};return a.onerror=a.onload=i,n?n.parentNode.insertBefore(a,n.nextSibling):document.head.appendChild(a),a},t=function(e,t){for(var n=document.getElementsByTagName("link"),r=0;r{__webpack_require__.initializeExposesData={moduleMap:{".":()=>Promise.all([__webpack_require__.e("1721"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("1525")]).then(()=>()=>__webpack_require__(63516)),"./_internal_/mf-bootstrap":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("2202"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430"),__webpack_require__.e("6193"),__webpack_require__.e("4596"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("616"),__webpack_require__.e("4530"),__webpack_require__.e("2108")]).then(()=>()=>__webpack_require__(55831)),"./_internal_/mf-bootstrap-document-editor-iframe":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("2202"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430"),__webpack_require__.e("6193"),__webpack_require__.e("4596"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("616"),__webpack_require__.e("9615")]).then(()=>()=>__webpack_require__(96232)),"./components":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(43588)),"./app":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(46881)),"./api":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185")]).then(()=>()=>__webpack_require__(53073)),"./api/asset":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("175"),__webpack_require__.e("1579")]).then(()=>()=>__webpack_require__(35449)),"./api/class-definition":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2188"),__webpack_require__.e("7951")]).then(()=>()=>__webpack_require__(30045)),"./api/custom-metadata":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("7058")]).then(()=>()=>__webpack_require__(99574)),"./api/data-object":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2489")]).then(()=>()=>__webpack_require__(58077)),"./api/dependencies":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("6530")]).then(()=>()=>__webpack_require__(33594)),"./api/documents":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("2049")]).then(()=>()=>__webpack_require__(25435)),"./api/elements":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("8438")]).then(()=>()=>__webpack_require__(85766)),"./api/metadata":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("6706")]).then(()=>()=>__webpack_require__(57338)),"./api/perspectives":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2932")]).then(()=>()=>__webpack_require__(72324)),"./api/properties":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("7890")]).then(()=>()=>__webpack_require__(22710)),"./api/role":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1143")]).then(()=>()=>__webpack_require__(65791)),"./api/schedule":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("3730")]).then(()=>()=>__webpack_require__(57382)),"./api/settings":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1090")]).then(()=>()=>__webpack_require__(20498)),"./api/tags":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4878")]).then(()=>()=>__webpack_require__(47149)),"./api/thumbnails":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1590")]).then(()=>()=>__webpack_require__(43126)),"./api/translations":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1933")]).then(()=>()=>__webpack_require__(47123)),"./api/user":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("3128")]).then(()=>()=>__webpack_require__(99076)),"./api/version":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("3939")]).then(()=>()=>__webpack_require__(437)),"./api/workflow":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("70")]).then(()=>()=>__webpack_require__(38962)),"./api/reports":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1367")]).then(()=>()=>__webpack_require__(39314)),"./modules/app":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(18613)),"./modules/application-logger":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("2843"),__webpack_require__.e("9749")]).then(()=>()=>__webpack_require__(54997)),"./modules/asset":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("2545"),__webpack_require__.e("9800")]).then(()=>()=>__webpack_require__(36344)),"./modules/class-definitions":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2188"),__webpack_require__.e("9969")]).then(()=>()=>__webpack_require__(2647)),"./modules/data-object":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430")]).then(()=>()=>__webpack_require__(33487)),"./modules/document":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430"),__webpack_require__.e("1693"),__webpack_require__.e("3971")]).then(()=>()=>__webpack_require__(59368)),"./modules/element":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(23945)),"./modules/field-definitions":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("6193")]).then(()=>()=>__webpack_require__(38939)),"./modules/auth":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1064")]).then(()=>()=>__webpack_require__(69676)),"./modules/icon-library":()=>Promise.all([__webpack_require__.e("1721"),__webpack_require__.e("4420"),__webpack_require__.e("6735")]).then(()=>()=>__webpack_require__(61311)),"./modules/reports":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("2202"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("4596"),__webpack_require__.e("1327")]).then(()=>()=>__webpack_require__(30727)),"./modules/rule-builder":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("8311")]).then(()=>()=>__webpack_require__(75149)),"./modules/translations":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4462")]).then(()=>()=>__webpack_require__(27964)),"./modules/user":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("2421")]).then(()=>()=>__webpack_require__(95451)),"./modules/widget-editor":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1600")]).then(()=>()=>__webpack_require__(85286)),"./modules/widget-manager":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(26542)),"./modules/wysiwyg":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(90801)),"./modules/notifications":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("5579")]).then(()=>()=>__webpack_require__(21064)),"./modules/perspectives":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1209")]).then(()=>()=>__webpack_require__(40271)),"./modules/global-message-bus":()=>Promise.all([__webpack_require__.e("1721"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("7442"),__webpack_require__.e("5992")]).then(()=>()=>__webpack_require__(8026)),"./modules/gdpr-data-extractor":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1225")]).then(()=>()=>__webpack_require__(1953)),"./utils":()=>Promise.all([__webpack_require__.e("2625"),__webpack_require__.e("3902"),__webpack_require__.e("1996")]).then(()=>()=>__webpack_require__(25085))},shareScope:"default"},__webpack_require__.getContainer=__webpack_require__.getContainer||function(){throw Error("should have __webpack_require__.getContainer")},__webpack_require__.initContainer=__webpack_require__.initContainer||function(){throw Error("should have __webpack_require__.initContainer")}})(),(()=>{var e={6240:0};__webpack_require__.f.j=function(t,n){var r=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else if(/^(1609|2625|3367|4420|5314|6375|9872)$/.test(t))e[t]=0;else{var o=new Promise((n,o)=>r=e[t]=[n,o]);n.push(r[2]=o);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),l=function(n){if(__webpack_require__.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),a=n&&n.target&&n.target.src;i.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",i.name="ChunkLoadError",i.type=o,i.request=a,r[1](i)}};__webpack_require__.l(a,l,"chunk-"+t,t)}};var t=(t,n)=>{var r,o,[a,i,l]=n,s=0;if(a.some(t=>0!==e[t])){for(r in i)__webpack_require__.o(i,r)&&(__webpack_require__.m[r]=i[r]);l&&l(__webpack_require__)}for(t&&t(n);s{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(56491)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x();pimcore_studio_ui_bundle=__webpack_exports__})(); \ No newline at end of file +while loading "${r[1]}" from ${r[2]}`),l.m[e]=()=>{throw t},r.p=0},d=(e,t,o,a,i,l)=>{try{let c=e(t,o);if(!c||!c.then)return i(c,a,l);{let e=c.then(e=>i(e,a),s);if(!l)return e;n.push(r.p=e)}}catch(e){s(e)}},f=(e,t,n)=>e?d(l.I,r[0],0,e,p,n):s();var p=(e,n,o)=>d(n.get,r[1],t,0,m,o),m=t=>{r.p=1,l.m[e]=e=>{e.exports=t()}};let g=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+r[1].slice(1),t=l.federation.instance,n=()=>l.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(r[0])?r[0]:[r[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>n())}return n()}catch(e){s(e)}};1===a.length&&o.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(g,r[2],0,0,m,1):d(l,r[2],0,0,f,1)})}},55216(e,t){function n(e){var t,n,r,o,a;let{webpackRequire:i,idToExternalAndNameMapping:l={},idToRemoteMap:s={},chunkMapping:c={}}=e,{remotesLoadingData:u}=i,d=null==(r=i.federation)||null==(n=r.bundlerRuntimeOptions)||null==(t=n.remotes)?void 0:t.remoteInfos;if(!u||u._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=u;if(f&&p){for(let[e,t]of Object.entries(p))if(l[e]||(l[e]=[t.shareScope,t.name,t.externalModuleId]),!s[e]&&d[t.remoteName]){let n=d[t.remoteName];(o=s)[a=e]||(o[a]=[]),n.forEach(t=>{s[e].includes(t)||s[e].push(t)})}c&&Object.entries(f).forEach(e=>{let[t,n]=e;c[t]||(c[t]=[]),n.forEach(e=>{c[t].includes(e)||c[t].push(e)})}),u._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:n}=e,{consumesLoadingData:r,initializeSharingData:o}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:l}=t.federation;if(r&&!r._updated){let{moduleIdToConsumeDataMapping:o={},initialConsumes:s=[],chunkMapping:c={}}=r;if(Object.entries(o).forEach(e=>{let[r,o]=e;n[r]||(n[r]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:o.shareKey,factory:o.fallback,webpackRequire:t,libraryType:l}):o.fallback,treeShakingGetter:a?o.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:o.requiredVersion,strictVersion:o.strictVersion,singleton:o.singleton,eager:o.eager,layer:o.layer},scope:Array.isArray(o.shareScope)?o.shareScope:[o.shareScope||"default"],treeShaking:a?{get:o.fallback,mode:o.treeShakingMode}:void 0},shareKey:o.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;s.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(c).forEach(e=>{let[n,r]=e;t[n]||(t[n]=[]),r.forEach(e=>{t[n].includes(e)||t[n].push(e)})})}r._updated=1}if(o&&!o._updated){let{federation:e}=t;if(!e.instance||!o.scopeToSharingDataMapping)return;let n={};for(let[e,t]of Object.entries(o.scopeToSharingDataMapping))for(let r of t)if("object"==typeof r&&null!==r){let{name:t,version:o,factory:a,eager:i,singleton:l,requiredVersion:s,strictVersion:c}=r,u={requiredVersion:`^${o}`},d=function(e){return void 0!==e};d(l)&&(u.singleton=l),d(s)&&(u.requiredVersion=s),d(i)&&(u.eager=i),d(c)&&(u.strictVersion=c);let f={version:o,scope:[e],shareConfig:u,get:a};n[t]?n[t].push(f):n[t]=[f]}e.instance.registerShared(n),o._updated=1}},t.updateRemoteOptions=n},56491(e,t,n){"use strict";var r,o,a,i,l,s,c,u,d,f,p,m,g=n(66927),h=n.n(g);let v=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:n}=e;return t(n)}),b={},y="pimcore_studio_ui_bundle",x="version-first";if((n.initializeSharingData||n.initializeExposesData)&&n.federation){let e=(e,t,n)=>{e&&e[t]&&(e[t]=n)},t=(e,t,n)=>{var r,o,a,i,l,s;let c=n();Array.isArray(c)?(null!=(a=(r=e)[o=t])||(r[o]=[]),e[t].push(...c)):"object"==typeof c&&null!==c&&(null!=(s=(i=e)[l=t])||(i[l]={}),Object.assign(e[t],c))},g=(e,t,n)=>{var r,o,a;null!=(a=(r=e)[o=t])||(r[o]=n())},A=null!=(r=null==(s=n.remotesLoadingData)?void 0:s.chunkMapping)?r:{},$=null!=(o=null==(c=n.remotesLoadingData)?void 0:c.moduleIdToRemoteDataMapping)?o:{},w=null!=(a=null==(u=n.initializeSharingData)?void 0:u.scopeToSharingDataMapping)?a:{},S=null!=(i=null==(d=n.consumesLoadingData)?void 0:d.chunkMapping)?i:{},E=null!=(l=null==(f=n.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?l:{},k={},C=[],O={},M=null==(p=n.initializeExposesData)?void 0:p.shareScope;for(let e in h())n.federation[e]=h()[e];g(n.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,n]of Object.entries(E))e[t]={getter:n.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager},scope:[n.shareScope]},shareKey:n.shareKey};return e}),g(n.federation,"initOptions",()=>({})),g(n.federation.initOptions,"name",()=>y),g(n.federation.initOptions,"shareStrategy",()=>x),g(n.federation.initOptions,"shared",()=>{let e={};for(let[t,n]of Object.entries(w))for(let r of n)if("object"==typeof r&&null!==r){let{name:n,version:o,factory:a,eager:i,singleton:l,requiredVersion:s,strictVersion:c}=r,u={},d=function(e){return void 0!==e};d(l)&&(u.singleton=l),d(s)&&(u.requiredVersion=s),d(i)&&(u.eager=i),d(c)&&(u.strictVersion=c);let f={version:o,scope:[t],shareConfig:u,get:a};e[n]?e[n].push(f):e[n]=[f]}return e}),t(n.federation.initOptions,"remotes",()=>Object.values(b).flat().filter(e=>"script"===e.externalType)),t(n.federation.initOptions,"plugins",()=>v),g(n.federation,"bundlerRuntimeOptions",()=>({})),g(n.federation.bundlerRuntimeOptions,"remotes",()=>({})),g(n.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>A),g(n.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>b),g(n.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,n]of Object.entries($))e[t]=[n.shareScope,n.name,n.externalModuleId,n.remoteName];return e}),g(n.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>n),t(n.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,n]of Object.entries($)){let r=b[n.remoteName];r&&(e[t]=r)}return e}),e(n,"S",n.federation.bundlerRuntime.S),n.federation.attachShareScopeMap&&n.federation.attachShareScopeMap(n),e(n.f,"remotes",(e,t)=>n.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:A,idToExternalAndNameMapping:n.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:n.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:n})),e(n.f,"consumes",(e,t)=>n.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:S,moduleToHandlerMapping:n.federation.consumesLoadingModuleToHandlerMapping,installedModules:k,webpackRequire:n})),e(n,"I",(e,t)=>n.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:C,initTokens:O,webpackRequire:n})),e(n,"initContainer",(e,t,r)=>n.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:r,shareScopeKey:M,webpackRequire:n})),e(n,"getContainer",(e,t)=>{var r=n.initializeExposesData.moduleMap;return n.R=t,t=Object.prototype.hasOwnProperty.call(r,e)?r[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),n.R=void 0,t}),n.federation.instance=n.federation.runtime.init(n.federation.initOptions),(null==(m=n.consumesLoadingData)?void 0:m.initialConsumes)&&n.federation.bundlerRuntime.installInitialConsumes({webpackRequire:n,installedModules:k,initialConsumes:n.consumesLoadingData.initialConsumes,moduleToHandlerMapping:n.federation.consumesLoadingModuleToHandlerMapping})}},39139(e,t,n){"use strict";n.d(t,{get:()=>n.getContainer,init:()=>n.initContainer})},46942(e){!function(){"use strict";var t={}.hasOwnProperty;function n(){for(var e="",t=0;t=0;--n){var r=(0,e[n])(t);if(!C(r)&&!O(r)){if(!D(r))throw TypeError();t=r}}return t}function b(e,t,n,r){for(var o=e.length-1;o>=0;--o){var a=(0,e[o])(t,n,r);if(!C(a)&&!O(a)){if(!N(a))throw TypeError();r=a}}return r}function y(e,t,n){if(x(e,t,n))return!0;var r=K(t);return!O(r)&&y(e,r,n)}function x(e,t,n){var r=Q(t,n,!1);return!C(r)&&j(r.OrdinaryHasOwnMetadata(e,t,n))}function A(e,t,n){if(x(e,t,n))return $(e,t,n);var r=K(t);if(!O(r))return A(e,r,n)}function $(e,t,n){var r=Q(t,n,!1);if(!C(r))return r.OrdinaryGetOwnMetadata(e,t,n)}function w(e,t,n,r){Q(n,r,!0).OrdinaryDefineOwnMetadata(e,t,n,r)}function S(e,t){var n=E(e,t),r=K(e);if(null===r)return n;var o=S(r,t);if(o.length<=0)return n;if(n.length<=0)return o;for(var a=new f,i=[],l=0,s=n;l=0&&e=this._keys.length?(this._index=-1,this._keys=t,this._values=t):this._index++,{value:n,done:!1}}return{value:void 0,done:!0}},e.prototype.throw=function(e){throw this._index>=0&&(this._index=-1,this._keys=t,this._values=t),e},e.prototype.return=function(e){return this._index>=0&&(this._index=-1,this._keys=t,this._values=t),{value:e,done:!0}},e}();return function(){function t(){this._keys=[],this._values=[],this._cacheKey=e,this._cacheIndex=-2}return Object.defineProperty(t.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),t.prototype.has=function(e){return this._find(e,!1)>=0},t.prototype.get=function(e){var t=this._find(e,!1);return t>=0?this._values[t]:void 0},t.prototype.set=function(e,t){var n=this._find(e,!0);return this._values[n]=t,this},t.prototype.delete=function(t){var n=this._find(t,!1);if(n>=0){for(var r=this._keys.length,o=n+1;otypeof crypto?crypto.getRandomValues(t):"u">typeof msCrypto?msCrypto.getRandomValues(t):i(t,e),t}return i(Array(e),e)}function s(){var t=l(e);t[6]=79&t[6]|64,t[8]=191&t[8]|128;for(var n="",r=0;re.length)&&(t=e.length);for(var n=0,r=Array(t);nr})},96369(e,t,n){"use strict";function r(e){if(Array.isArray(e))return e}n.d(t,{A:()=>r})},9417(e,t,n){"use strict";function r(e){if(void 0===e)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n.d(t,{A:()=>r})},10467(e,t,n){"use strict";function r(e,t,n,r,o,a,i){try{var l=e[a](i),s=l.value}catch(e){return void n(e)}l.done?t(s):Promise.resolve(s).then(r,o)}function o(e){return function(){var t=this,n=arguments;return new Promise(function(o,a){var i=e.apply(t,n);function l(e){r(i,o,a,l,s,"next",e)}function s(e){r(i,o,a,l,s,"throw",e)}l(void 0)})}}n.d(t,{A:()=>o})},39874(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(53954),o=n(52176),a=n(56822);function i(e,t,n){return t=(0,r.A)(t),(0,a.A)(e,(0,o.A)()?Reflect.construct(t,n||[],(0,r.A)(e).constructor):t.apply(e,n))}},23029(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}n.d(t,{A:()=>r})},92901(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(96192);function o(e,t){for(var n=0;no});var r=n(27800);function o(e,t){var n="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=(0,r.A)(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var o=0,a=function(){};return{s:a,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:a}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,l=!0,s=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return l=e.done,e},e:function(e){s=!0,i=e},f:function(){try{l||null==n.return||n.return()}finally{if(s)throw i}}}}},29426(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(53954),o=n(52176),a=n(56822);function i(e){var t=(0,o.A)();return function(){var n,o=(0,r.A)(e);return n=t?Reflect.construct(o,arguments,(0,r.A)(this).constructor):o.apply(this,arguments),(0,a.A)(this,n)}}},64467(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(96192);function o(e,t,n){return(t=(0,r.A)(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},58168(e,t,n){"use strict";function r(){return(r=Object.assign?Object.assign.bind():function(e){for(var t=1;tr})},53954(e,t,n){"use strict";function r(e){return(r=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,{A:()=>r})},85501(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(63662);function o(e,t){if("function"!=typeof t&&null!==t)throw TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&(0,r.A)(e,t)}},52176(e,t,n){"use strict";function r(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(r=function(){return!!e})()}n.d(t,{A:()=>r})},73893(e,t,n){"use strict";function r(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}n.d(t,{A:()=>r})},76562(e,t,n){"use strict";function r(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}n.d(t,{A:()=>r})},89379(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(64467);function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function a(e){for(var t=1;to});var r=n(98587);function o(e,t){if(null==e)return{};var n,o,a=(0,r.A)(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;or})},56822(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(82284),o=n(9417);function a(e,t){if(t&&("object"==(0,r.A)(t)||"function"==typeof t))return t;if(void 0!==t)throw TypeError("Derived constructors may only return object or undefined");return(0,o.A)(e)}},1079(e,t,n){"use strict";function r(e,t){this.v=e,this.k=t}function o(e,t,n,r){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(o=function(e,t,n,r){function i(t,n){o(e,t,function(e){return this._invoke(t,n,e)})}t?a?a(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(i("next",0),i("throw",1),i("return",2))})(e,t,n,r)}function a(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function l(n,r,a,i){var l=Object.create((r&&r.prototype instanceof c?r:c).prototype);return o(l,"_invoke",function(n,r,o){var a,i,l,c=0,u=o||[],d=!1,f={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return a=t,i=0,l=e,f.n=n,s}};function p(n,r){for(i=n,l=r,t=0;!d&&c&&!o&&t3?(o=m===r)&&(l=a[(i=a[4])?5:(i=3,3)],a[4]=a[5]=e):a[0]<=p&&((o=n<2&&pr||r>m)&&(a[4]=n,a[5]=r,f.n=m,i=0))}if(o||n>1)return s;throw d=!0,r}return function(o,u,m){if(c>1)throw TypeError("Generator is already running");for(d&&1===u&&p(u,m),i=u,l=m;(t=i<2?e:l)||!d;){a||(i?i<3?(i>1&&(f.n=-1),p(i,l)):f.n=l:f.v=l);try{if(c=2,a){if(i||(o="next"),t=a[o]){if(!(t=t.call(a,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,i<2&&(i=0)}else 1===i&&(t=a.return)&&t.call(a),i<2&&(l=TypeError("The iterator does not provide a '"+o+"' method"),i=1);a=e}else if((t=(d=f.n<0)?l:n.call(r,f))!==s)break}catch(t){a=e,i=1,l=t}finally{c=1}}return{value:t,done:d}}}(n,a,i),!0),l}var s={};function c(){}function u(){}function d(){}t=Object.getPrototypeOf;var f=d.prototype=c.prototype=Object.create([][r]?t(t([][r]())):(o(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,o(e,i,"GeneratorFunction")),e.prototype=Object.create(f),e}return u.prototype=d,o(f,"constructor",d),o(d,"constructor",u),u.displayName="GeneratorFunction",o(d,i,"GeneratorFunction"),o(f),o(f,i,"Generator"),o(f,r,function(){return this}),o(f,"toString",function(){return"[object Generator]"}),(a=function(){return{w:l,m:p}})()}function i(e,t){var n;function a(n,o,i,l){try{var s=e[n](o),c=s.value;return c instanceof r?t.resolve(c.v).then(function(e){a("next",e,i,l)},function(e){a("throw",e,i,l)}):t.resolve(c).then(function(e){s.value=e,i(s)},function(e){return a("throw",e,i,l)})}catch(e){l(e)}}this.next||(o(i.prototype),o(i.prototype,"function"==typeof Symbol&&Symbol.asyncIterator||"@asyncIterator",function(){return this})),o(this,"_invoke",function(e,r,o){function i(){return new t(function(t,n){a(e,o,t,n)})}return n=n?n.then(i,i):i()},!0)}function l(e,t,n,r,o){return new i(a().w(e,t,n,r),o||Promise)}function s(e,t,n,r,o){var a=l(e,t,n,r,o);return a.next().then(function(e){return e.done?e.value:a.next()})}function c(e){var t=Object(e),n=[];for(var r in t)n.unshift(r);return function e(){for(;n.length;)if((r=n.pop())in t)return e.value=r,e.done=!1,e;return e.done=!0,e}}n.d(t,{A:()=>f});var u=n(82284);function d(e){if(null!=e){var t=e["function"==typeof Symbol&&Symbol.iterator||"@@iterator"],n=0;if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length))return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}}}throw TypeError((0,u.A)(e)+" is not iterable")}function f(){var e=a(),t=e.m(f),n=(Object.getPrototypeOf?Object.getPrototypeOf(t):t.__proto__).constructor;function o(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===n||"GeneratorFunction"===(t.displayName||t.name))}var u={throw:1,return:2,break:3,continue:3};function p(e){var t,n;return function(r){t||(t={stop:function(){return n(r.a,2)},catch:function(){return r.v},abrupt:function(e,t){return n(r.a,u[e],t)},delegateYield:function(e,o,a){return t.resultName=o,n(r.d,d(e),a)},finish:function(e){return n(r.f,e)}},n=function(e,n,o){r.p=t.prev,r.n=t.next;try{return e(n,o)}finally{t.next=r.n}}),t.resultName&&(t[t.resultName]=r.v,t.resultName=void 0),t.sent=r.v,t.next=r.n;try{return e.call(this,t)}finally{r.p=t.prev,r.n=t.next}}}return(f=function(){return{wrap:function(t,n,r,o){return e.w(p(t),n,r,o&&o.reverse())},isGeneratorFunction:o,mark:e.m,awrap:function(e,t){return new r(e,t)},AsyncIterator:i,async:function(e,t,n,r,a){return(o(t)?l:s)(p(e),t,n,r,a)},keys:c,values:d}})()}},63662(e,t,n){"use strict";function r(e,t){return(r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}n.d(t,{A:()=>r})},57046(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(96369);function o(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a,i,l=[],s=!0,c=!1;try{if(a=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;s=!1}else for(;!(s=(r=a.call(n)).done)&&(l.push(r.value),l.length!==t);s=!0);}catch(e){c=!0,o=e}finally{try{if(!s&&null!=n.return&&(i=n.return(),Object(i)!==i))return}finally{if(c)throw o}}return l}}var a=n(27800),i=n(76562);function l(e,t){return(0,r.A)(e)||o(e,t)||(0,a.A)(e,t)||(0,i.A)()}},87695(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(96369),o=n(73893),a=n(27800),i=n(76562);function l(e){return(0,r.A)(e)||(0,o.A)(e)||(0,a.A)(e)||(0,i.A)()}},83098(e,t,n){"use strict";n.d(t,{A:()=>s});var r=n(43145);function o(e){if(Array.isArray(e))return(0,r.A)(e)}var a=n(73893),i=n(27800);function l(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function s(e){return o(e)||(0,a.A)(e)||(0,i.A)(e)||l()}},96192(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(82284);function o(e,t){if("object"!=(0,r.A)(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var o=n.call(e,t||"default");if("object"!=(0,r.A)(o))return o;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}function a(e){var t=o(e,"string");return"symbol"==(0,r.A)(t)?t:t+""}},82284(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}n.d(t,{A:()=>r})},27800(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(43145);function o(e,t){if(e){if("string"==typeof e)return(0,r.A)(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?(0,r.A)(e,t):void 0}}}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var n=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(n.exports,n,n.exports,__webpack_require__),n.loaded=!0,n.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(39139),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return!/^(1609|2625|3367|4420|5314|6375|9872)$/.test(e)},rootOutputDir:"../../"})})(),(()=>{var e="function"==typeof Symbol,t=e?Symbol("rspack queues"):"__rspack_queues",n=__webpack_require__.aE=e?Symbol("rspack exports"):"__webpack_exports__",r=e?Symbol("rspack error"):"__rspack_error",o=e?Symbol("rspack done"):"__rspack_done",a=__webpack_require__.zS=e?Symbol("rspack defer"):"__rspack_defer",i=e=>{e&&e.d<1&&(e.d=1,e.forEach(e=>e.r--),e.forEach(e=>e.r--?e.r++:e()))},l=e=>e.map(e=>{if(null!==e&&"object"==typeof e){if(!e[t]&&e[a]){var l=e[a];if(!l.some(e=>{var t=__webpack_module_cache__[e];return!t||!1===t[o]}))return e;var s=e;e={then(e){Promise.all(l.map(__webpack_require__)).then(()=>e(s))}}}if(e[t])return e;if(e.then){var c=[];c.d=0,e.then(e=>{u[n]=e,i(c)},e=>{u[r]=e,i(c)});var u={};return u[a]=!1,u[t]=e=>e(c),u}}var d={};return d[t]=()=>{},d[n]=e,d});__webpack_require__.a=(e,s,c)=>{c&&((u=[]).d=-1);var u,d,f,p,m=new Set,g=e.exports,h=new Promise((e,t)=>{p=t,f=e});h[n]=g,h[t]=e=>{u&&e(u),m.forEach(e),h.catch(()=>{})},e.exports=h,s(e=>{d=l(e);var o,i=()=>d.map(e=>{if(e[a])return e;if(e[r])throw e[r];return e[n]}),s=new Promise(e=>{(o=()=>e(i)).r=0;var n=e=>e!==u&&!m.has(e)&&(m.add(e),e&&!e.d&&(o.r++,e.push(o)));d.map(e=>e[a]||e[t](n))});return o.r?s:i()},e=>(e?p(h[r]=e):f(g),i(u),h[o]=!0)),u&&u.d<0&&(u.d=0)}})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(n,r){if(1&r&&(n=this(n)),8&r||"object"==typeof n&&n&&(4&r&&n.__esModule||16&r&&"function"==typeof n.then))return n;var o=Object.create(null);__webpack_require__.r(o);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&r&&n;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>n[e]});return a.default=()=>n,__webpack_require__.d(o,a),o}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var n in t)__webpack_require__.o(t,n)&&!__webpack_require__.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,n)=>(__webpack_require__.f[n](e,t),t),[]))})(),(()=>{__webpack_require__.hmd=e=>((e=Object.create(e)).children||(e.children=[]),Object.defineProperty(e,"exports",{enumerable:!0,set:()=>{throw Error("ES Modules may not assign module.exports or exports.*, Use ESM export syntax, instead: "+e.id)}}),e)})(),(()=>{__webpack_require__.u=e=>"static/js/async/"+(({1064:"__federation_expose_modules__auth",1090:"__federation_expose_api__settings",1143:"__federation_expose_api__role",1209:"__federation_expose_modules__perspectives",1225:"__federation_expose_modules__gdpr_data_extractor",1327:"__federation_expose_modules__reports",1367:"__federation_expose_api__reports",1525:"__federation_expose_default_export",1579:"__federation_expose_api__asset",1590:"__federation_expose_api__thumbnails",1600:"__federation_expose_modules__widget_editor",1933:"__federation_expose_api__translations",1996:"__federation_expose_utils",2049:"__federation_expose_api__documents",2108:"__federation_expose__internal___mf_bootstrap",2421:"__federation_expose_modules__user",2489:"__federation_expose_api__data_object",2932:"__federation_expose_api__perspectives",3128:"__federation_expose_api__user",354:"lib-axios",3730:"__federation_expose_api__schedule",3939:"__federation_expose_api__version",3971:"__federation_expose_modules__document",4462:"__federation_expose_modules__translations",4878:"__federation_expose_api__tags",5579:"__federation_expose_modules__notifications",5992:"__federation_expose_modules__global_message_bus",6185:"__federation_expose_api",6193:"__federation_expose_modules__field_definitions",6530:"__federation_expose_api__dependencies",6706:"__federation_expose_api__metadata",6735:"__federation_expose_modules__icon_library",70:"__federation_expose_api__workflow",7058:"__federation_expose_api__custom_metadata",7890:"__federation_expose_api__properties",7951:"__federation_expose_api__class_definition",8234:"__federation_expose_app",8311:"__federation_expose_modules__rule_builder",8430:"__federation_expose_modules__data_object",8438:"__federation_expose_api__elements",9615:"__federation_expose__internal___mf_bootstrap_document_editor_iframe",9749:"__federation_expose_modules__application_logger",9800:"__federation_expose_modules__asset",9969:"__federation_expose_modules__class_definitions"})[e]||e)+"."+({1003:"469c1fdb",101:"1b8f34f4",1010:"af98507b",1019:"2c88f074",103:"3717b318",1064:"65d96793",1065:"5cc838a2",1090:"2c556240",1102:"01cefe38",1143:"89b3367b",1153:"7cbdaf39",1180:"c2738508",1207:"ea0577c0",1209:"ea16786c",1225:"48b05d8a",1265:"d95e4129",1270:"4a7146b0",129:"24017dc3",1303:"f89c138e",1327:"f35bbd3d",1367:"50fc5ca0",141:"a305e3e9",1428:"b3183de2",1438:"67cdf5fd",145:"7d13ff5f",1472:"e37f95af",1525:"1b3f6d28",1553:"630acce1",1567:"debd0837",157:"8615578d",1579:"9dee10b3",1590:"a167200d",1600:"4cd4867f",1612:"54f63d68",1635:"18d9dd0b",1643:"b41a359d",1668:"120c2fdd",1688:"4626095c",1693:"48c272d7",1708:"de5f09b0",172:"cb77a99e",1721:"fdc19114",1742:"9207983d",175:"bd0ef661",1750:"19b70383",1762:"e6454223",1797:"bc29fd89",1814:"16619920",1834:"3ea07c1f",1851:"1528a0c7",1875:"048f7c1f",1933:"7a8790cb",198:"96c8f5d3",1996:"526f5bda",2015:"28b3f667",2016:"2efa4d68",2049:"8a5c66b8",206:"0227085b",2073:"0f14210c",2098:"4b97bea3",2103:"0449b778",2108:"7441f43a",2117:"da809f8e",2121:"8117f390",2162:"e42c8ad6",2168:"3b00277e",2179:"7408679f",2188:"72e65c95",2189:"e296ffec",2202:"bd928b8b",2204:"875d7d36",2237:"e23d4ce3",2267:"ad4d61d8",2272:"b29c0e6c",2287:"6a200c82",2290:"68fd6bdf",235:"97e84a52",2373:"11c5538c",2380:"d6bc17ef",2399:"305db162",2410:"4b5baf39",2421:"1df0f8e6",2427:"2406cc45",243:"098f10af",2463:"da2cfb76",2464:"8deaa84f",2472:"f40725db",2489:"160792b1",2492:"cc8cd85c",25:"36d6a68b",2503:"1efd0e77",254:"7abe0c11",2545:"dcb1e512",2597:"969d51fc",261:"0e13114e",2619:"543b4f03",2638:"d949ec28",2709:"809fe258",2739:"84cc2ba2",2775:"0d98465a",2793:"a25ad8de",281:"d912a74e",2841:"e1a4734b",2843:"e1d9c7bc",2845:"d2c82bf6",2893:"99328fa1",2932:"936945cf",2980:"d885aa98",3:"470a371d",3009:"be7deeee",3055:"b0f87225",3062:"323c4508",3066:"31b992e1",3068:"7b747a5f",3125:"ce787981",3128:"0c42ebe1",3144:"edcf7515",3166:"32d06e35",3197:"ebf93fd4",3209:"6722a080",3229:"97f4b7e5",3240:"f86bdd91",3330:"c830e580",334:"67e5210f",3379:"f0e413e5",3392:"42b07d09",3396:"4cc8f904",3406:"86351b7b",35:"d81ad3e5",3528:"60fd342c",354:"f458d745",3548:"133939a2",3584:"4ad9a196",365:"e655295f",3653:"7c1ffecd",3657:"cf916f7e",3686:"6b54036a",3730:"9ccfa450",3748:"7adfb9d1",3750:"921e74ed",3756:"7a4c5e02",380:"0cdf7b27",3836:"6a4b9fd9",3838:"4b01fffb",3839:"800430ba",3846:"e0ec9537",385:"d9b4f6a1",3902:"5873a27f",3935:"0990f5be",3939:"7220c1e1",3941:"9ceed713",3971:"5167229e",4028:"d910fe41",4034:"ebc0a070",4062:"57e047db",4083:"82e017ef",4084:"a80198a1",4120:"afd6653a",4154:"2617dd8b",4160:"1311e5ef",4195:"4fb2f2ba",4225:"61de23fc",4241:"f5777d74",4319:"ca014781",4329:"4e8ef4cc",4346:"867849d4",4426:"20bcaf42",446:"2523c50a",4462:"e3016a50",45:"e217286d",4530:"72904f19",4596:"13ba10c0",4603:"86da83a0",4680:"66eae797",4693:"552164ec",4698:"6d0eba4e",4702:"508d41d1",4715:"3e1202d6",4718:"b15efaaf",4771:"c5e9b1dd",4799:"a225248d",4858:"820711a5",4871:"b42a8935",4878:"f737e834",489:"693d11de",5084:"877dbf80",5114:"ebf1bfcb",5123:"9f567207",5154:"a94bb137",5168:"fdbd2cef",5177:"a255dad2",5186:"deb009c0",521:"cb98200a",5277:"97ce57aa",5331:"bbbb73f8",5412:"53c2e3aa",5431:"0eb962a2",5454:"a8bca7d3",5545:"cde240bd",5561:"b76a78d2",5579:"212009d9",5690:"782c3ae6",5696:"ab2274ca",5712:"ffe8bf9d",5731:"15301fd9",5753:"371bde44",5804:"1be86954",582:"4f5fd381",5841:"812278cf",5904:"327a2f83",5976:"be3da2cf",5990:"3c9d8c23",5992:"bfbd3798",6052:"a270b069",6135:"d371dcf8",616:"2ffecb95",6185:"fbe2c7c1",6186:"9fa7f507",619:"59f8e380",6193:"171d7545",6229:"ec077e40",6255:"2e48b884",6270:"f9ff3abd",6272:"f2f56a80",6313:"e76747fb",6335:"0ad9b174",6411:"ae78ff82",6424:"ca220edd",6458:"b5282ed0",6464:"b6d25cb6",6472:"df513d2d",6484:"2519155d",6530:"a9508cf9",6550:"09a63ebf",6572:"510ff641",6579:"cda7f334",658:"dc677028",660:"5242d83f",6619:"93b9f2c4",6649:"2b614ce3",6695:"087ae8ff",6706:"e9f2a028",6735:"481bed67",6743:"851be9cb",6759:"cf6c0abd",6766:"c76f91a5",6815:"80ba0d22",6819:"424ecfc4",6823:"dc627341",687:"ae382b4d",6911:"d02db343",692:"ac93e4e2",6967:"4d971194",6984:"af4507e3",70:"ad14d72f",7006:"928d8671",7041:"230cf6a4",705:"fad963d9",7053:"63c4c0a6",7058:"10d73b97",706:"01d44a78",7073:"fb6439a4",7161:"f24a612f",7171:"8731ac06",7210:"9113a386",7250:"364fbcad",7264:"fc5a523f",7334:"be0321bf",7396:"da4c50f4",741:"734ea878",7419:"b1cfaeac",7440:"04b86278",7442:"636a9ffa",7463:"e177b088",749:"7c748f48",7524:"73ba348d",7527:"e64ccbd1",7597:"42dde6f3",7679:"a6829c17",7680:"2cb113f6",7789:"50873df9",7793:"d6bce01b",7799:"a37e9eaf",7821:"b1a2dc53",7828:"812c672f",7890:"314180ef",7935:"ba8eb0b4",7939:"af086f08",7951:"6192771c",7960:"9d4a54c0",7994:"c600e1ce",803:"52d29752",8031:"b368b0bf",8050:"502aa521",8051:"9c74ecaf",8146:"e69de8bc",8195:"c8bb6771",8222:"acb59083",8231:"0a773046",8234:"9a31719b",8272:"64fe9f7a",830:"dda8066f",8311:"f77a657a",8372:"d6f25582",8403:"58bbddc4",8430:"8f1ebdf8",8437:"864e7b29",8438:"5babca9f",8467:"f7bd216d",8473:"25a53f08",8477:"0c91210d",8479:"55f72fe0",85:"3d7bb7a3",8520:"3f467428",8536:"df877041",854:"95bad760",8547:"3355910d",8557:"e526282d",8567:"2e09cb4e",8574:"8c240d77",8609:"b6039081",8635:"29404620",8645:"7a1aa6c0",8658:"55f9d53e",8707:"80dfb17f",8779:"bdcddd0a",8800:"1154e54c",8832:"e1a7ddbf",8835:"d50a0005",8850:"1ef4da0e",8910:"7686ba2c",8932:"e8090749",8971:"cb9861fc",9007:"f28d0779",9030:"03e4d789",9052:"67bd17cd",9076:"7a2b7e9a",9114:"7d0c9ca9",9204:"8f0c9c3a",9322:"81e49a3d",9336:"9a425d8d",935:"4dfccbd9",9357:"709b2aae",9403:"9f36612d",9454:"03f9cbf9",9471:"3511726f",9536:"9b33a533",9603:"dcad1930",9607:"214ebd42",9615:"ce47134e",9691:"a7a34297",9749:"fc080c19",9765:"07ec2c12",9767:"926906cb",9800:"51999de9",9801:"09cd7cd0",9880:"64c12943",9969:"009acac4"})[e]+".js"})(),(()=>{__webpack_require__.miniCssF=e=>"static/css/async/"+(({2108:"__federation_expose__internal___mf_bootstrap",9615:"__federation_expose__internal___mf_bootstrap_document_editor_iframe"})[e]||e)+"."+({2108:"f20f4c6e",6411:"a9ccafbf",9615:"f20f4c6e"})[e]+".css"})(),(()=>{__webpack_require__.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})()})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle:";__webpack_require__.l=function(n,r,o,a){if(e[n])return void e[n].push(r);if(void 0!==o)for(var i,l,s=document.getElementsByTagName("script"),c=0;c{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e)})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[{name:"@ant-design/colors",version:"7.2.1",factory:()=>()=>__webpack_require__(81463),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.11",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.5",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("8222")]).then(()=>()=>__webpack_require__(88477)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.5.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("6550"),__webpack_require__.e("1609")]).then(()=>()=>__webpack_require__(32053)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.10.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("7680")]).then(()=>()=>__webpack_require__(49075)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("582")]).then(()=>()=>__webpack_require__(95973)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.3",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("2272")]).then(()=>()=>__webpack_require__(39027)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("7789"),__webpack_require__.e("6464")]).then(()=>()=>__webpack_require__(98668)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>__webpack_require__.e("9204").then(()=>()=>__webpack_require__(18831)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([__webpack_require__.e("9880"),__webpack_require__.e("6375"),__webpack_require__.e("4083")]).then(()=>()=>__webpack_require__(43627)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.11.2",factory:()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("7597"),__webpack_require__.e("9872")]).then(()=>()=>__webpack_require__(62348)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>__webpack_require__.e("6272").then(()=>()=>__webpack_require__(28755)),eager:0,requiredVersion:"^8.20.5"},{name:"@tanstack/react-virtual",version:"3.13.23",factory:()=>__webpack_require__.e("6619").then(()=>()=>__webpack_require__(28166)),eager:0,requiredVersion:"^3.13.12"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([__webpack_require__.e("5123"),__webpack_require__.e("5314"),__webpack_require__.e("8473")]).then(()=>()=>__webpack_require__(6286)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>__webpack_require__(64530),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>__webpack_require__(46942),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.3.3",factory:()=>__webpack_require__.e("7463").then(()=>()=>__webpack_require__(99418)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>__webpack_require__.e("243").then(()=>()=>__webpack_require__(99310)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>Promise.all([__webpack_require__.e("2463"),__webpack_require__.e("854")]).then(()=>()=>__webpack_require__(12306)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>__webpack_require__.e("5976").then(()=>()=>__webpack_require__(72635)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"11.1.4",factory:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064)),eager:0,requiredVersion:"^10.1.1"},{name:"js-yaml",version:"4.1.1",factory:()=>__webpack_require__.e("6579").then(()=>()=>__webpack_require__(20382)),eager:0,requiredVersion:"^4.1.1"},{name:"leaflet-draw",version:"1.0.4",factory:()=>__webpack_require__.e("254").then(()=>()=>__webpack_require__(56269)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>__webpack_require__.e("706").then(()=>()=>__webpack_require__(53481)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.23",factory:()=>__webpack_require__.e("1668").then(()=>()=>__webpack_require__(2543)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.3",factory:()=>__webpack_require__.e("3209").then(()=>()=>__webpack_require__(21728)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>__webpack_require__(40961),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>__webpack_require__.e("6815").then(()=>()=>__webpack_require__(55794)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>__webpack_require__.e("3379").then(()=>()=>__webpack_require__(53054)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>__webpack_require__.e("2237").then(()=>()=>__webpack_require__(71468)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.3",factory:()=>__webpack_require__.e("749").then(()=>()=>__webpack_require__(76204)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>__webpack_require__(96540),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>__webpack_require__(38630),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>__webpack_require__.e("8658").then(()=>()=>__webpack_require__(81513)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{1609:["11264"],2625:["35864"],9872:["91251"],6185:["88605","62284"],6375:["41834"],3902:["81427","60142","44241","13815","21429"],5314:["86569"],8234:["30922","37821","40119","94709","53797","6492","52725","70982","5339","30831","50484","76394","78535","83015","53763","89507","96314","88754"],6240:["8651","25765","47867","16124"],3367:["23080","3319"],4420:["62446","46680"]},moduleIdToConsumeDataMapping:{16124:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(81463)},8651:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(46942)},60142:{shareScope:"default",shareKey:"i18next",import:"i18next",requiredVersion:"^23.16.8",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("5976").then(()=>()=>__webpack_require__(72635))},86569:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(64530)},5339:{shareScope:"default",shareKey:"@tanstack/react-virtual",import:"@tanstack/react-virtual",requiredVersion:"^3.13.12",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6619").then(()=>()=>__webpack_require__(28166))},83015:{shareScope:"default",shareKey:"flexlayout-react",import:"flexlayout-react",requiredVersion:"^0.7.15",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("243").then(()=>()=>__webpack_require__(99310))},96314:{shareScope:"default",shareKey:"@codemirror/lang-yaml",import:"@codemirror/lang-yaml",requiredVersion:"^6.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("2272")]).then(()=>()=>__webpack_require__(39027))},62284:{shareScope:"default",shareKey:"react-redux",import:"react-redux",requiredVersion:"^9.1.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("2237").then(()=>()=>__webpack_require__(71468))},44241:{shareScope:"default",shareKey:"antd-style",import:"antd-style",requiredVersion:"3.7.x",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("5123"),__webpack_require__.e("5314")]).then(()=>()=>__webpack_require__(6286))},47867:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(96540)},81427:{shareScope:"default",shareKey:"dompurify",import:"dompurify",requiredVersion:"^3.2.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7463").then(()=>()=>__webpack_require__(99418))},50484:{shareScope:"default",shareKey:"react-compiler-runtime",import:"react-compiler-runtime",requiredVersion:"^19.1.0-rc.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3209").then(()=>()=>__webpack_require__(21728))},30922:{shareScope:"default",shareKey:"@codemirror/lang-xml",import:"@codemirror/lang-xml",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("582")]).then(()=>()=>__webpack_require__(95973))},23080:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168))},41834:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7789").then(()=>()=>__webpack_require__(98668))},37821:{shareScope:"default",shareKey:"leaflet-draw",import:"leaflet-draw",requiredVersion:"^1.0.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("254").then(()=>()=>__webpack_require__(56269))},6492:{shareScope:"default",shareKey:"@uiw/react-codemirror",import:"@uiw/react-codemirror",requiredVersion:"^4.23.6",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(65846)},3319:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442))},11264:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618))},76394:{shareScope:"default",shareKey:"@codemirror/lang-json",import:"@codemirror/lang-json",requiredVersion:"^6.0.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("5841")]).then(()=>()=>__webpack_require__(88477))},89507:{shareScope:"default",shareKey:"@tanstack/react-table",import:"@tanstack/react-table",requiredVersion:"^8.20.5",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6272").then(()=>()=>__webpack_require__(28755))},94709:{shareScope:"default",shareKey:"@codemirror/lang-markdown",import:"@codemirror/lang-markdown",requiredVersion:"^6.3.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6550").then(()=>()=>__webpack_require__(32053))},53763:{shareScope:"default",shareKey:"leaflet",import:"leaflet",requiredVersion:"^1.9.4",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("706").then(()=>()=>__webpack_require__(53481))},88754:{shareScope:"default",shareKey:"@dnd-kit/sortable",import:"@dnd-kit/sortable",requiredVersion:"^8.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("9880").then(()=>()=>__webpack_require__(43627))},25765:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(40961)},78535:{shareScope:"default",shareKey:"framer-motion",import:"framer-motion",requiredVersion:"^11.11.17",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("2463").then(()=>()=>__webpack_require__(12306))},62446:{shareScope:"default",shareKey:"inversify",import:"inversify",requiredVersion:"6.1.x",strictVersion:!0,singleton:!1,eager:!0,fallback:()=>()=>__webpack_require__(67502)},70982:{shareScope:"default",shareKey:"react-draggable",import:"react-draggable",requiredVersion:"^4.4.6",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6815").then(()=>()=>__webpack_require__(55794))},53797:{shareScope:"default",shareKey:"js-yaml",import:"js-yaml",requiredVersion:"^4.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6579").then(()=>()=>__webpack_require__(20382))},46680:{shareScope:"default",shareKey:"reflect-metadata",import:"reflect-metadata",requiredVersion:"*",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(38630)},21429:{shareScope:"default",shareKey:"react-i18next",import:"react-i18next",requiredVersion:"^14.1.3",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("3379").then(()=>()=>__webpack_require__(53054))},13815:{shareScope:"default",shareKey:"uuid",import:"uuid",requiredVersion:"^10.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("8658").then(()=>()=>__webpack_require__(81513))},30831:{shareScope:"default",shareKey:"@codemirror/lang-sql",import:"@codemirror/lang-sql",requiredVersion:"^6.8.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("7680")]).then(()=>()=>__webpack_require__(49075))},35864:{shareScope:"default",shareKey:"lodash",import:"lodash",requiredVersion:"^4.17.21",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("1668").then(()=>()=>__webpack_require__(2543))},88605:{shareScope:"default",shareKey:"@reduxjs/toolkit",import:"@reduxjs/toolkit",requiredVersion:"^2.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7597").then(()=>()=>__webpack_require__(62348))},40119:{shareScope:"default",shareKey:"@dnd-kit/modifiers",import:"@dnd-kit/modifiers",requiredVersion:"^7.0.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("6823").then(()=>()=>__webpack_require__(18831))},52725:{shareScope:"default",shareKey:"react-router-dom",import:"react-router-dom",requiredVersion:"^6.28.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("749").then(()=>()=>__webpack_require__(76204))},91251:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064))}},initialConsumes:["8651","25765","47867","16124"]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{if("u">typeof document){var e=function(e,t,n,r,o){var a=document.createElement("link");a.rel="stylesheet",a.type="text/css",__webpack_require__.nc&&(a.nonce=__webpack_require__.nc),a.href=t;var i=function(n){if(a.onerror=a.onload=null,"load"===n.type)r();else{var i=n&&("load"===n.type?"missing":n.type),l=n&&n.target&&n.target.href||t,s=Error("Loading CSS chunk "+e+" failed.\\n("+l+")");s.code="CSS_CHUNK_LOAD_FAILED",s.type=i,s.request=l,a.parentNode&&a.parentNode.removeChild(a),o(s)}};return a.onerror=a.onload=i,n?n.parentNode.insertBefore(a,n.nextSibling):document.head.appendChild(a),a},t=function(e,t){for(var n=document.getElementsByTagName("link"),r=0;r{__webpack_require__.initializeExposesData={moduleMap:{".":()=>Promise.all([__webpack_require__.e("1721"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("1525")]).then(()=>()=>__webpack_require__(63516)),"./_internal_/mf-bootstrap":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("2202"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430"),__webpack_require__.e("6193"),__webpack_require__.e("4596"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("616"),__webpack_require__.e("4530"),__webpack_require__.e("2108")]).then(()=>()=>__webpack_require__(55831)),"./_internal_/mf-bootstrap-document-editor-iframe":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("2202"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430"),__webpack_require__.e("6193"),__webpack_require__.e("4596"),__webpack_require__.e("1693"),__webpack_require__.e("2843"),__webpack_require__.e("2545"),__webpack_require__.e("616"),__webpack_require__.e("9615")]).then(()=>()=>__webpack_require__(96232)),"./components":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(43588)),"./app":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(46881)),"./api":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185")]).then(()=>()=>__webpack_require__(53073)),"./api/asset":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("175"),__webpack_require__.e("1579")]).then(()=>()=>__webpack_require__(35449)),"./api/class-definition":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2188"),__webpack_require__.e("7951")]).then(()=>()=>__webpack_require__(30045)),"./api/custom-metadata":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("7058")]).then(()=>()=>__webpack_require__(99574)),"./api/data-object":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2489")]).then(()=>()=>__webpack_require__(58077)),"./api/dependencies":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("6530")]).then(()=>()=>__webpack_require__(33594)),"./api/documents":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("2049")]).then(()=>()=>__webpack_require__(25435)),"./api/elements":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("8438")]).then(()=>()=>__webpack_require__(85766)),"./api/metadata":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("6706")]).then(()=>()=>__webpack_require__(57338)),"./api/perspectives":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2932")]).then(()=>()=>__webpack_require__(72324)),"./api/properties":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("7890")]).then(()=>()=>__webpack_require__(22710)),"./api/role":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1143")]).then(()=>()=>__webpack_require__(65791)),"./api/schedule":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("3730")]).then(()=>()=>__webpack_require__(57382)),"./api/settings":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1090")]).then(()=>()=>__webpack_require__(20498)),"./api/tags":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("4878")]).then(()=>()=>__webpack_require__(47149)),"./api/thumbnails":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1590")]).then(()=>()=>__webpack_require__(43126)),"./api/translations":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1933")]).then(()=>()=>__webpack_require__(47123)),"./api/user":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("3128")]).then(()=>()=>__webpack_require__(99076)),"./api/version":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("3939")]).then(()=>()=>__webpack_require__(437)),"./api/workflow":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("70")]).then(()=>()=>__webpack_require__(38962)),"./api/reports":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("1367")]).then(()=>()=>__webpack_require__(39314)),"./modules/app":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(18613)),"./modules/application-logger":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("2843"),__webpack_require__.e("9749")]).then(()=>()=>__webpack_require__(54997)),"./modules/asset":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("2545"),__webpack_require__.e("9800")]).then(()=>()=>__webpack_require__(36344)),"./modules/class-definitions":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2188"),__webpack_require__.e("9969")]).then(()=>()=>__webpack_require__(2647)),"./modules/data-object":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430")]).then(()=>()=>__webpack_require__(33487)),"./modules/document":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("9454"),__webpack_require__.e("8430"),__webpack_require__.e("1693"),__webpack_require__.e("3971")]).then(()=>()=>__webpack_require__(59368)),"./modules/element":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(23945)),"./modules/field-definitions":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("6193")]).then(()=>()=>__webpack_require__(38939)),"./modules/auth":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1064")]).then(()=>()=>__webpack_require__(69676)),"./modules/icon-library":()=>Promise.all([__webpack_require__.e("1721"),__webpack_require__.e("4420"),__webpack_require__.e("6735")]).then(()=>()=>__webpack_require__(61311)),"./modules/reports":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("2202"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("4596"),__webpack_require__.e("1327")]).then(()=>()=>__webpack_require__(30727)),"./modules/rule-builder":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("8311")]).then(()=>()=>__webpack_require__(75149)),"./modules/translations":()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4462")]).then(()=>()=>__webpack_require__(27964)),"./modules/user":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("2421")]).then(()=>()=>__webpack_require__(95451)),"./modules/widget-editor":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1600")]).then(()=>()=>__webpack_require__(85286)),"./modules/widget-manager":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(26542)),"./modules/wysiwyg":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234")]).then(()=>()=>__webpack_require__(90801)),"./modules/notifications":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("5579")]).then(()=>()=>__webpack_require__(21064)),"./modules/perspectives":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1209")]).then(()=>()=>__webpack_require__(40271)),"./modules/global-message-bus":()=>Promise.all([__webpack_require__.e("1721"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("7442"),__webpack_require__.e("5992")]).then(()=>()=>__webpack_require__(8026)),"./modules/gdpr-data-extractor":()=>Promise.all([__webpack_require__.e("354"),__webpack_require__.e("4693"),__webpack_require__.e("385"),__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("1721"),__webpack_require__.e("6411"),__webpack_require__.e("9872"),__webpack_require__.e("6185"),__webpack_require__.e("2625"),__webpack_require__.e("4420"),__webpack_require__.e("2188"),__webpack_require__.e("3367"),__webpack_require__.e("5314"),__webpack_require__.e("3902"),__webpack_require__.e("7442"),__webpack_require__.e("175"),__webpack_require__.e("6375"),__webpack_require__.e("1609"),__webpack_require__.e("8234"),__webpack_require__.e("1225")]).then(()=>()=>__webpack_require__(1953)),"./utils":()=>Promise.all([__webpack_require__.e("2625"),__webpack_require__.e("3902"),__webpack_require__.e("1996")]).then(()=>()=>__webpack_require__(25085))},shareScope:"default"},__webpack_require__.getContainer=__webpack_require__.getContainer||function(){throw Error("should have __webpack_require__.getContainer")},__webpack_require__.initContainer=__webpack_require__.initContainer||function(){throw Error("should have __webpack_require__.initContainer")}})(),(()=>{var e={6240:0};__webpack_require__.f.j=function(t,n){var r=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==r)if(r)n.push(r[2]);else if(/^(1609|2625|3367|4420|5314|6375|9872)$/.test(t))e[t]=0;else{var o=new Promise((n,o)=>r=e[t]=[n,o]);n.push(r[2]=o);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),l=function(n){if(__webpack_require__.o(e,t)&&(0!==(r=e[t])&&(e[t]=void 0),r)){var o=n&&("load"===n.type?"missing":n.type),a=n&&n.target&&n.target.src;i.message="Loading chunk "+t+" failed.\n("+o+": "+a+")",i.name="ChunkLoadError",i.type=o,i.request=a,r[1](i)}};__webpack_require__.l(a,l,"chunk-"+t,t)}};var t=(t,n)=>{var r,o,[a,i,l]=n,s=0;if(a.some(t=>0!==e[t])){for(r in i)__webpack_require__.o(i,r)&&(__webpack_require__.m[r]=i[r]);l&&l(__webpack_require__)}for(t&&t(n);s{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(56491)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x();pimcore_studio_ui_bundle=__webpack_exports__})(); \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js.LICENSE.txt b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js.LICENSE.txt similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js.LICENSE.txt rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/js/remoteEntry.js.LICENSE.txt diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/svg/spritesheet.ac8b36fa.svg b/public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/svg/spritesheet.ac8b36fa.svg similarity index 100% rename from public/build/9c444380-1446-4576-a90f-625ff01d8587/static/svg/spritesheet.ac8b36fa.svg rename to public/build/248f2fe2-8d88-49d0-b296-15a61b521c0b/static/svg/spritesheet.ac8b36fa.svg diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/entrypoints.json b/public/build/843902c1-cb44-424c-899b-a3e57eebc643/entrypoints.json deleted file mode 100644 index 2d985538a4..0000000000 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/entrypoints.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "entrypoints": { - "main": { - "js": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js" - ], - "css": [] - }, - "documentEditorIframe": { - "js": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js" - ], - "css": [] - }, - "exposeRemote": { - "js": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/exposeRemote.js" - ], - "css": [] - } - } -} \ No newline at end of file diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/manifest.json b/public/build/843902c1-cb44-424c-899b-a3e57eebc643/manifest.json deleted file mode 100644 index 58b055c4f7..0000000000 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/manifest.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "allFiles": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js", - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js", - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-stats.json", - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-manifest.json", - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/documentEditorIframe.html", - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/main.html" - ], - "entries": { - "main": { - "html": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/main.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js" - ] - } - }, - "documentEditorIframe": { - "html": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/documentEditorIframe.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js" - ] - } - } - }, - "integrity": {} -} \ No newline at end of file diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js b/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js deleted file mode 100644 index e5e4603e77..0000000000 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/documentEditorIframe.00e3c168.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! For license information please see documentEditorIframe.00e3c168.js.LICENSE.txt */ -(()=>{var __webpack_modules__={7570(e,t,r){r.e("742").then(r.t.bind(r,9005,23))},6619(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8130);t.logAndReport=function(e,t,r,n,a,i){return n(o.getShortErrorMsg(e,t,r,a))}},9810(e,t,r){let o=r(924),n={[o.RUNTIME_001]:"Failed to get remoteEntry exports.",[o.RUNTIME_002]:'The remote entry interface does not contain "init"',[o.RUNTIME_003]:"Failed to get manifest.",[o.RUNTIME_004]:"Failed to locate remote.",[o.RUNTIME_005]:"Invalid loadShareSync function call from bundler runtime",[o.RUNTIME_006]:"Invalid loadShareSync function call from runtime",[o.RUNTIME_007]:"Failed to get remote snapshot.",[o.RUNTIME_008]:"Failed to load script resources.",[o.RUNTIME_009]:"Please call createInstance first.",[o.RUNTIME_010]:'The name option cannot be changed after initialization. If you want to create a new instance with a different name, please use "createInstance" api.',[o.RUNTIME_011]:"The remoteEntry URL is missing from the remote snapshot."},a={[o.TYPE_001]:"Failed to generate type declaration. Execute the below cmd to reproduce and fix the error."},i={[o.BUILD_001]:"Failed to find expose module.",[o.BUILD_002]:"PublicPath is required in prod mode."},s={...n,...a,...i};t.buildDescMap=i,t.errorDescMap=s,t.runtimeDescMap=n,t.typeDescMap=a},924(e,t){let r="RUNTIME-001",o="RUNTIME-002",n="RUNTIME-003",a="RUNTIME-004",i="RUNTIME-005",s="RUNTIME-006",l="RUNTIME-007",u="RUNTIME-008",c="RUNTIME-009",d="RUNTIME-010",f="RUNTIME-011",p="TYPE-001",h="BUILD-002";t.BUILD_001="BUILD-001",t.BUILD_002=h,t.RUNTIME_001=r,t.RUNTIME_002=o,t.RUNTIME_003=n,t.RUNTIME_004=a,t.RUNTIME_005=i,t.RUNTIME_006=s,t.RUNTIME_007=l,t.RUNTIME_008=u,t.RUNTIME_009=c,t.RUNTIME_010=d,t.RUNTIME_011=f,t.TYPE_001=p},8130(e,t){let r=e=>`View the docs to see how to solve: https://module-federation.io/guide/troubleshooting/${e.split("-")[0].toLowerCase()}#${e.toLowerCase()}`;t.getShortErrorMsg=(e,t,o,n)=>{let a=[`${[t[e]]} #${e}`];return o&&a.push(`args: ${JSON.stringify(o)}`),a.push(r(e)),n&&a.push(`Original Error Message: - ${n}`),a.join("\n")}},4363(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(924),n=r(8130),a=r(9810);t.BUILD_001=o.BUILD_001,t.BUILD_002=o.BUILD_002,t.RUNTIME_001=o.RUNTIME_001,t.RUNTIME_002=o.RUNTIME_002,t.RUNTIME_003=o.RUNTIME_003,t.RUNTIME_004=o.RUNTIME_004,t.RUNTIME_005=o.RUNTIME_005,t.RUNTIME_006=o.RUNTIME_006,t.RUNTIME_007=o.RUNTIME_007,t.RUNTIME_008=o.RUNTIME_008,t.RUNTIME_009=o.RUNTIME_009,t.RUNTIME_010=o.RUNTIME_010,t.RUNTIME_011=o.RUNTIME_011,t.TYPE_001=o.TYPE_001,t.buildDescMap=a.buildDescMap,t.errorDescMap=a.errorDescMap,t.getShortErrorMsg=n.getShortErrorMsg,t.runtimeDescMap=a.runtimeDescMap,t.typeDescMap=a.typeDescMap},1748(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},2926(e,t){let r="default";t.DEFAULT_REMOTE_TYPE="global",t.DEFAULT_SCOPE=r},5871(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(7829),s=r(8457),l=r(556);r(1132);let u=r(2003),c=r(6227),d=r(2964),f=r(2593),p=r(2299),h=r(317);r(4317);let m=r(4260),g=r(4710),y=r(9152),E=r(7300),_=r(1777),b=r(630),S=r(4363);t.ModuleFederation=class{initOptions(e){e.name&&e.name!==this.options.name&&o.error((0,S.getShortErrorMsg)(S.RUNTIME_010,S.runtimeDescMap)),this.registerPlugins(e.plugins);let t=this.formatOptions(this.options,e);return this.options=t,t}async loadShare(e,t){return this.sharedHandler.loadShare(e,t)}loadShareSync(e,t){return this.sharedHandler.loadShareSync(e,t)}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0;return this.sharedHandler.initializeSharing(e,t)}initRawContainer(e,t,r){let o=l.getRemoteInfo({name:e,entry:t}),n=new u.Module({host:this,remoteInfo:o});return n.remoteEntryExports=r,this.moduleCache.set(e,n),n}async loadRemote(e,t){return this.remoteHandler.loadRemote(e,t)}async preloadRemote(e){return this.remoteHandler.preloadRemote(e)}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.sharedHandler.initShareScopeMap(e,t,r)}formatOptions(e,t){let{allShareInfos:r}=a.formatShareConfigs(e,t),{userOptions:o,options:n}=this.hooks.lifecycle.beforeInit.emit({origin:this,userOptions:t,options:e,shareInfo:r}),i=this.remoteHandler.formatAndRegisterRemote(n,o),{allShareInfos:s}=this.sharedHandler.registerShared(n,o),l=[...n.plugins];o.plugins&&o.plugins.forEach(e=>{l.includes(e)||l.push(e)});let u={...e,...t,plugins:l,remotes:i,shared:s};return this.hooks.lifecycle.init.emit({origin:this,options:u}),u}registerPlugins(e){let t=s.registerPlugins(e,this);this.options.plugins=this.options.plugins.reduce((e,t)=>(t&&e&&!e.find(e=>e.name===t.name)&&e.push(t),e),t||[])}registerRemotes(e,t){return this.remoteHandler.registerRemotes(e,t)}registerShared(e){this.sharedHandler.registerShared(this.options,{...this.options,shared:e})}constructor(e){this.hooks=new h.PluginSystem({beforeInit:new f.SyncWaterfallHook("beforeInit"),init:new c.SyncHook,beforeInitContainer:new p.AsyncWaterfallHook("beforeInitContainer"),initContainer:new p.AsyncWaterfallHook("initContainer")}),this.version="2.2.3",this.moduleCache=new Map,this.loaderHook=new h.PluginSystem({getModuleInfo:new c.SyncHook,createScript:new c.SyncHook,createLink:new c.SyncHook,fetch:new d.AsyncHook,loadEntryError:new d.AsyncHook,getModuleFactory:new d.AsyncHook}),this.bridgeHook=new h.PluginSystem({beforeBridgeRender:new c.SyncHook,afterBridgeRender:new c.SyncHook,beforeBridgeDestroy:new c.SyncHook,afterBridgeDestroy:new c.SyncHook});const t=[m.snapshotPlugin(),g.generatePreloadAssetsPlugin()],r={id:i.getBuilderId(),name:e.name,plugins:t,remotes:[],shared:{},inBrowser:b.isBrowserEnvValue};this.name=e.name,this.options=r,this.snapshotHandler=new y.SnapshotHandler(this),this.sharedHandler=new E.SharedHandler(this),this.remoteHandler=new _.RemoteHandler(this),this.shareScopeMap=this.sharedHandler.shareScopeMap,this.registerPlugins([...r.plugins,...e.plugins||[]]),this.options=this.formatOptions(r,e)}}},4391(e,t,r){let o=r(8628),n=r(9350),a=r(630),i="object"==typeof globalThis?globalThis:window,s=(()=>{try{return document.defaultView}catch{return i}})(),l=s;function u(e,t,r){Object.defineProperty(e,t,{value:r,configurable:!1,writable:!0})}function c(e,t){return Object.hasOwnProperty.call(e,t)}c(i,"__GLOBAL_LOADING_REMOTE_ENTRY__")||u(i,"__GLOBAL_LOADING_REMOTE_ENTRY__",{});let d=i.__GLOBAL_LOADING_REMOTE_ENTRY__;function f(e){var t,r,o,n,a,i;c(e,"__VMOK__")&&!c(e,"__FEDERATION__")&&u(e,"__FEDERATION__",e.__VMOK__),c(e,"__FEDERATION__")||(u(e,"__FEDERATION__",{__GLOBAL_PLUGIN__:[],__INSTANCES__:[],moduleInfo:{},__SHARE__:{},__MANIFEST_LOADING__:{},__PRELOADED_MAP__:new Map}),u(e,"__VMOK__",e.__FEDERATION__)),(t=e.__FEDERATION__).__GLOBAL_PLUGIN__??(t.__GLOBAL_PLUGIN__=[]),(r=e.__FEDERATION__).__INSTANCES__??(r.__INSTANCES__=[]),(o=e.__FEDERATION__).moduleInfo??(o.moduleInfo={}),(n=e.__FEDERATION__).__SHARE__??(n.__SHARE__={}),(a=e.__FEDERATION__).__MANIFEST_LOADING__??(a.__MANIFEST_LOADING__={}),(i=e.__FEDERATION__).__PRELOADED_MAP__??(i.__PRELOADED_MAP__=new Map)}function p(){i.__FEDERATION__.__GLOBAL_PLUGIN__=[],i.__FEDERATION__.__INSTANCES__=[],i.__FEDERATION__.moduleInfo={},i.__FEDERATION__.__SHARE__={},i.__FEDERATION__.__MANIFEST_LOADING__={},Object.keys(d).forEach(e=>{delete d[e]})}function h(e){i.__FEDERATION__.__INSTANCES__.push(e)}function m(){return i.__FEDERATION__.__DEBUG_CONSTRUCTOR__}function g(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,a.isDebugMode)();t&&(i.__FEDERATION__.__DEBUG_CONSTRUCTOR__=e,i.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__="2.2.3")}function y(e,t){if("string"==typeof t)if(e[t])return{value:e[t],key:t};else{for(let r of Object.keys(e)){let[o,n]=r.split(":"),a=`${o}:${t}`,i=e[a];if(i)return{value:i,key:a}}return{value:void 0,key:t}}o.error(`getInfoWithoutType: "key" must be a string, got ${typeof t} (${JSON.stringify(t)}).`)}f(i),f(s);let E=()=>s.__FEDERATION__.moduleInfo,_=(e,t)=>{let r=y(t,n.getFMId(e)).value;if(r&&!r.version&&"version"in e&&e.version&&(r.version=e.version),r)return r;if("version"in e&&e.version){let{version:t,...r}=e,o=n.getFMId(r),a=y(s.__FEDERATION__.moduleInfo,o).value;if((null==a?void 0:a.version)===t)return a}},b=e=>_(e,s.__FEDERATION__.moduleInfo),S=(e,t)=>{let r=n.getFMId(e);return s.__FEDERATION__.moduleInfo[r]=t,s.__FEDERATION__.moduleInfo},v=e=>(s.__FEDERATION__.moduleInfo={...s.__FEDERATION__.moduleInfo,...e},()=>{for(let t of Object.keys(e))delete s.__FEDERATION__.moduleInfo[t]}),R=(e,t)=>{let r=t||`__FEDERATION_${e}:custom__`;return{remoteEntryKey:r,entryExports:i[r]}},I=e=>{let{__GLOBAL_PLUGIN__:t}=s.__FEDERATION__;e.forEach(e=>{-1===t.findIndex(t=>t.name===e.name)?t.push(e):o.warn(`The plugin ${e.name} has been registered.`)})},M=()=>s.__FEDERATION__.__GLOBAL_PLUGIN__,N=e=>i.__FEDERATION__.__PRELOADED_MAP__.get(e),T=e=>i.__FEDERATION__.__PRELOADED_MAP__.set(e,!0);t.CurrentGlobal=i,t.Global=l,t.addGlobalSnapshot=v,t.getGlobalFederationConstructor=m,t.getGlobalHostPlugins=M,t.getGlobalSnapshot=E,t.getGlobalSnapshotInfoByModuleInfo=b,t.getInfoWithoutType=y,t.getPreloaded=N,t.getRemoteEntryExports=R,t.getTargetSnapshotInfoByModuleInfo=_,t.globalLoading=d,t.nativeGlobal=s,t.registerGlobalPlugins=I,t.resetFederationGlobalInfo=p,t.setGlobalFederationConstructor=g,t.setGlobalFederationInstance=h,t.setGlobalSnapshotInfoByModuleInfo=S,t.setPreloaded=T},3509(e,t,r){let o=r(4391),n=r(8369),a=r(6079),i=r(556);r(1132);let s=r(9599),l={getRegisteredShare:n.getRegisteredShare,getGlobalShareScope:n.getGlobalShareScope};t.default={global:{Global:o.Global,nativeGlobal:o.nativeGlobal,resetFederationGlobalInfo:o.resetFederationGlobalInfo,setGlobalFederationInstance:o.setGlobalFederationInstance,getGlobalFederationConstructor:o.getGlobalFederationConstructor,setGlobalFederationConstructor:o.setGlobalFederationConstructor,getInfoWithoutType:o.getInfoWithoutType,getGlobalSnapshot:o.getGlobalSnapshot,getTargetSnapshotInfoByModuleInfo:o.getTargetSnapshotInfoByModuleInfo,getGlobalSnapshotInfoByModuleInfo:o.getGlobalSnapshotInfoByModuleInfo,setGlobalSnapshotInfoByModuleInfo:o.setGlobalSnapshotInfoByModuleInfo,addGlobalSnapshot:o.addGlobalSnapshot,getRemoteEntryExports:o.getRemoteEntryExports,registerGlobalPlugins:o.registerGlobalPlugins,getGlobalHostPlugins:o.getGlobalHostPlugins,getPreloaded:o.getPreloaded,setPreloaded:o.setPreloaded},share:l,utils:{matchRemoteWithNameAndExpose:a.matchRemoteWithNameAndExpose,preloadAssets:s.preloadAssets,getRemoteInfo:i.getRemoteInfo}}},5922(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8628),n=r(9350),a=r(4391),i=r(3957),s=r(8369),l=r(6079),u=r(556);r(1132);let c=r(3509),d=r(2003),f=r(5871),p=r(7703),h=r(630),m=c.default;t.CurrentGlobal=a.CurrentGlobal,t.Global=a.Global,t.Module=d.Module,t.ModuleFederation=f.ModuleFederation,t.addGlobalSnapshot=a.addGlobalSnapshot,t.assert=o.assert,t.error=o.error,t.getGlobalFederationConstructor=a.getGlobalFederationConstructor,t.getGlobalSnapshot=a.getGlobalSnapshot,t.getInfoWithoutType=a.getInfoWithoutType,t.getRegisteredShare=s.getRegisteredShare,t.getRemoteEntry=u.getRemoteEntry,t.getRemoteInfo=u.getRemoteInfo,t.helpers=m,t.isStaticResourcesEqual=n.isStaticResourcesEqual,Object.defineProperty(t,"loadScript",{enumerable:!0,get:function(){return h.loadScript}}),Object.defineProperty(t,"loadScriptNode",{enumerable:!0,get:function(){return h.loadScriptNode}}),t.matchRemoteWithNameAndExpose=l.matchRemoteWithNameAndExpose,t.registerGlobalPlugins=a.registerGlobalPlugins,t.resetFederationGlobalInfo=a.resetFederationGlobalInfo,t.safeWrapper=n.safeWrapper,t.satisfy=i.satisfy,t.setGlobalFederationConstructor=a.setGlobalFederationConstructor,t.setGlobalFederationInstance=a.setGlobalFederationInstance,Object.defineProperty(t,"types",{enumerable:!0,get:function(){return p.type_exports}})},2003(e,t,r){let o=r(8628),n=r(9350),a=r(556),i=r(8393);r(1132);let s=r(630),l=r(4363);function u(e,t,r){let o=t,n=Array.isArray(e.shareScope)?e.shareScope:[e.shareScope];n.length||n.push("default"),n.forEach(e=>{o[e]||(o[e]={})});let a={version:e.version||"",shareScopeKeys:Array.isArray(e.shareScope)?n:e.shareScope||"default"};return Object.defineProperty(a,"shareScopeMap",{value:o,enumerable:!1}),{remoteEntryInitOptions:a,shareScope:o[n[0]],initScope:r??[]}}t.Module=class{async getEntry(){if(this.remoteEntryExports)return this.remoteEntryExports;let e=await a.getRemoteEntry({origin:this.host,remoteInfo:this.remoteInfo,remoteEntryExports:this.remoteEntryExports});return o.assert(e,`remoteEntryExports is undefined - ${(0,s.safeToString)(this.remoteInfo)}`),this.remoteEntryExports=e,this.remoteEntryExports}async init(e,t,r){let n=await this.getEntry();if(this.inited)return n;if(this.initPromise)return await this.initPromise,n;this.initing=!0,this.initPromise=(async()=>{let{remoteEntryInitOptions:a,shareScope:s,initScope:c}=u(this.remoteInfo,this.host.shareScopeMap,r),d=await this.host.hooks.lifecycle.beforeInitContainer.emit({shareScope:s,remoteEntryInitOptions:a,initScope:c,remoteInfo:this.remoteInfo,origin:this.host});void 0===(null==n?void 0:n.init)&&o.error(l.RUNTIME_002,l.runtimeDescMap,{hostName:this.host.name,remoteName:this.remoteInfo.name,remoteEntryUrl:this.remoteInfo.entry,remoteEntryKey:this.remoteInfo.entryGlobalName},void 0,i.optionsToMFContext(this.host.options)),await n.init(d.shareScope,d.initScope,d.remoteEntryInitOptions),await this.host.hooks.lifecycle.initContainer.emit({...d,id:e,remoteSnapshot:t,remoteEntryExports:n}),this.inited=!0})();try{await this.initPromise}finally{this.initing=!1,this.initPromise=void 0}return n}async get(e,t,r,a){let i,{loadFactory:s=!0}=r||{loadFactory:!0},l=await this.init(e,a);this.lib=l,(i=await this.host.loaderHook.lifecycle.getModuleFactory.emit({remoteEntryExports:l,expose:t,moduleInfo:this.remoteInfo}))||(i=await l.get(t)),o.assert(i,`${n.getFMId(this.remoteInfo)} remote don't export ${t}.`);let u=n.processModuleAlias(this.remoteInfo.name,t),c=this.wraperFactory(i,u);return s?await c():c}wraperFactory(e,t){function r(e,t){e&&"object"==typeof e&&Object.isExtensible(e)&&!Object.getOwnPropertyDescriptor(e,Symbol.for("mf_module_id"))&&Object.defineProperty(e,Symbol.for("mf_module_id"),{value:t,enumerable:!1})}return e instanceof Promise?async()=>{let o=await e();return r(o,t),o}:()=>{let o=e();return r(o,t),o}}constructor({remoteInfo:e,host:t}){this.inited=!1,this.initing=!1,this.lib=void 0,this.remoteInfo=e,this.host=t}}},4710(e,t,r){let o=r(9350),n=r(4391),a=r(8369);r(1132);let i=r(9599),s=r(4260),l=r(630);function u(e){let t=e.split(":");return 1===t.length?{name:t[0],version:void 0}:2===t.length?{name:t[0],version:t[1]}:{name:t[1],version:t[2]}}function c(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},s=arguments.length>5?arguments[5]:void 0,{value:d}=n.getInfoWithoutType(e,o.getFMId(t)),f=s||d;if(f&&!(0,l.isManifestProvider)(f)&&(r(f,t,a),f.remotesInfo))for(let t of Object.keys(f.remotesInfo)){if(i[t])continue;i[t]=!0;let o=u(t),n=f.remotesInfo[t];c(e,{name:o.name,version:n.matchedVersion},r,!1,i,void 0)}}let d=(e,t)=>document.querySelector(`${e}[${"link"===e?"href":"src"}="${t}"]`);function f(e,t,r,s,u){let f=[],p=[],h=[],m=new Set,g=new Set,{options:y}=e,{preloadConfig:E}=t,{depsRemote:_}=E;if(c(s,r,(t,r,a)=>{var s;let u;if(a)u=E;else if(Array.isArray(_)){let e=_.find(e=>e.nameOrAlias===r.name||e.nameOrAlias===r.alias);if(!e)return;u=i.defaultPreloadArgs(e)}else{if(!0!==_)return;u=E}let c=(0,l.getResourceUrl)(t,o.getRemoteEntryInfoFromSnapshot(t).url);c&&h.push({name:r.name,moduleInfo:{name:r.name,entry:c,type:"remoteEntryType"in t?t.remoteEntryType:"global",entryGlobalName:"globalName"in t?t.globalName:r.name,shareScope:"",version:"version"in t?t.version:void 0},url:c});let d="modules"in t?t.modules:[],m=i.normalizePreloadExposes(u.exposes);function g(e){let r=e.map(e=>(0,l.getResourceUrl)(t,e));return u.filter?r.filter(u.filter):r}if(m.length&&"modules"in t&&(d=null==t||null==(s=t.modules)?void 0:s.reduce((e,t)=>((null==m?void 0:m.indexOf(t.moduleName))!==-1&&e.push(t),e),[])),d){let o=d.length;for(let a=0;a0){let t=(t,r)=>{let{shared:o}=a.getRegisteredShare(e.shareScopeMap,r.sharedName,t,e.sharedHandler.hooks.lifecycle.resolveShare)||{};o&&"function"==typeof o.lib&&(r.assets.js.sync.forEach(e=>{m.add(e)}),r.assets.css.sync.forEach(e=>{g.add(e)}))};u.shared.forEach(e=>{var r;let n=null==(r=y.shared)?void 0:r[e.sharedName];if(!n)return;let a=e.version?n.find(t=>t.version===e.version):n;a&&o.arrayOptions(a).forEach(r=>{t(r,e)})})}let b=p.filter(e=>!m.has(e)&&!d("script",e));return{cssAssets:f.filter(e=>!g.has(e)&&!d("link",e)),jsAssetsWithoutEntry:b,entryAssets:h.filter(e=>!d("script",e.url))}}t.generatePreloadAssetsPlugin=function(){return{name:"generate-preload-assets-plugin",async generatePreloadAssets(e){let{origin:t,preloadOptions:r,remoteInfo:n,remote:a,globalSnapshot:i,remoteSnapshot:u}=e;return l.isBrowserEnvValue?o.isRemoteInfoWithEntry(a)&&o.isPureRemoteEntry(a)?{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[{name:a.name,url:a.entry,moduleInfo:{name:n.name,entry:a.entry,type:n.type||"global",entryGlobalName:"",shareScope:""}}]}:(s.assignRemoteInfo(n,u),f(t,r,n,i,u)):{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[]}}}}},9152(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(8393);r(1132);let s=r(2964),l=r(2299),u=r(317);r(4317);let c=r(630),d=r(4363);function f(e,t){let r=a.getGlobalSnapshotInfoByModuleInfo({name:t.name,version:t.options.version}),o=r&&"remotesInfo"in r&&r.remotesInfo&&a.getInfoWithoutType(r.remotesInfo,e.name).value;return o&&o.matchedVersion?{hostGlobalSnapshot:r,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:o.matchedVersion})}:{hostGlobalSnapshot:void 0,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:"version"in e?e.version:void 0})}}t.SnapshotHandler=class{async loadRemoteSnapshotInfo(e){let t,r,{moduleInfo:s,id:l,expose:u}=e,{options:f}=this.HostInstance;await this.hooks.lifecycle.beforeLoadRemoteSnapshot.emit({options:f,moduleInfo:s});let p=a.getGlobalSnapshotInfoByModuleInfo({name:this.HostInstance.options.name,version:this.HostInstance.options.version});p||(p={version:this.HostInstance.options.version||"",remoteEntry:"",remotesInfo:{}},a.addGlobalSnapshot({[this.HostInstance.options.name]:p})),p&&"remotesInfo"in p&&!a.getInfoWithoutType(p.remotesInfo,s.name).value&&("version"in s||"entry"in s)&&(p.remotesInfo={...null==p?void 0:p.remotesInfo,[s.name]:{matchedVersion:"version"in s?s.version:s.entry}});let{hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g}=this.getGlobalRemoteInfo(s),{remoteSnapshot:y,globalSnapshot:E}=await this.hooks.lifecycle.loadSnapshot.emit({options:f,moduleInfo:s,hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g});if(y)if((0,c.isManifestProvider)(y)){let e=c.isBrowserEnvValue?y.remoteEntry:y.ssrRemoteEntry||y.remoteEntry||"",o=await this.getManifestJson(e,s,{}),n=a.setGlobalSnapshotInfoByModuleInfo({...s,entry:e},o);t=o,r=n}else{let{remoteSnapshot:e}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:y,from:"global"});t=e,r=E}else if(n.isRemoteInfoWithEntry(s)){let e=await this.getManifestJson(s.entry,s,{}),o=a.setGlobalSnapshotInfoByModuleInfo(s,e),{remoteSnapshot:n}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:e,from:"global"});t=n,r=o}else o.error(d.RUNTIME_007,d.runtimeDescMap,{remoteName:s.name,remoteVersion:s.version,hostName:this.HostInstance.options.name,globalSnapshot:JSON.stringify(E)},void 0,i.optionsToMFContext(this.HostInstance.options));return await this.hooks.lifecycle.afterLoadSnapshot.emit({id:l,host:this.HostInstance,options:f,moduleInfo:s,remoteSnapshot:t}),{remoteSnapshot:t,globalSnapshot:r}}getGlobalRemoteInfo(e){return f(e,this.HostInstance)}async getManifestJson(e,t,r){let n=async()=>{let r=this.manifestCache.get(e);if(r)return r;try{let t=await this.loaderHook.lifecycle.fetch.emit(e,{});t&&t instanceof Response||(t=await fetch(e,{})),r=await t.json()}catch(n){(r=await this.HostInstance.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:n,from:"runtime",lifecycle:"afterResolve",origin:this.HostInstance}))||(delete this.manifestLoading[e],o.error(d.RUNTIME_003,d.runtimeDescMap,{manifestUrl:e,moduleName:t.name,hostName:this.HostInstance.options.name},`${n}`,i.optionsToMFContext(this.HostInstance.options)))}return o.assert(r.metaData&&r.exposes&&r.shared,`"${e}" is not a valid federation manifest for remote "${t.name}". Missing required fields: ${[!r.metaData&&"metaData",!r.exposes&&"exposes",!r.shared&&"shared"].filter(Boolean).join(", ")}.`),this.manifestCache.set(e,r),r},a=async()=>{let r=await n(),o=(0,c.generateSnapshotFromManifest)(r,{version:e}),{remoteSnapshot:a}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:t,manifestJson:r,remoteSnapshot:o,manifestUrl:e,from:"manifest"});return a};return this.manifestLoading[e]||(this.manifestLoading[e]=a().then(e=>e)),this.manifestLoading[e]}constructor(e){this.loadingHostSnapshot=null,this.manifestCache=new Map,this.hooks=new u.PluginSystem({beforeLoadRemoteSnapshot:new s.AsyncHook("beforeLoadRemoteSnapshot"),loadSnapshot:new l.AsyncWaterfallHook("loadGlobalSnapshot"),loadRemoteSnapshot:new l.AsyncWaterfallHook("loadRemoteSnapshot"),afterLoadSnapshot:new l.AsyncWaterfallHook("afterLoadSnapshot")}),this.manifestLoading=a.Global.__FEDERATION__.__MANIFEST_LOADING__,this.HostInstance=e,this.loaderHook=e.loaderHook}},t.getGlobalRemoteInfo=f},4260(e,t,r){let o=r(8628),n=r(9350);r(1132);let a=r(9599),i=r(630),s=r(4363);function l(e,t){let r=n.getRemoteEntryInfoFromSnapshot(t);r.url||o.error(s.RUNTIME_011,s.runtimeDescMap,{remoteName:e.name});let a=(0,i.getResourceUrl)(t,r.url);i.isBrowserEnvValue||a.startsWith("http")||(a=`https:${a}`),e.type=r.type,e.entryGlobalName=r.globalName,e.entry=a,e.version=t.version,e.buildVersion=t.buildVersion}function u(){return{name:"snapshot-plugin",async afterResolve(e){let{remote:t,pkgNameOrAlias:r,expose:o,origin:i,remoteInfo:s,id:u}=e;if(!n.isRemoteInfoWithEntry(t)||!n.isPureRemoteEntry(t)){let{remoteSnapshot:n,globalSnapshot:c}=await i.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:t,id:u});l(s,n);let d={remote:t,preloadConfig:{nameOrAlias:r,exposes:[o],resourceCategory:"sync",share:!1,depsRemote:!1}},f=await i.remoteHandler.hooks.lifecycle.generatePreloadAssets.emit({origin:i,preloadOptions:d,remoteInfo:s,remote:t,remoteSnapshot:n,globalSnapshot:c});return f&&a.preloadAssets(s,i,f,!1),{...e,remoteSnapshot:n}}return e}}}t.assignRemoteInfo=l,t.snapshotPlugin=u},1777(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(8369),s=r(6079),l=r(556),u=r(8393);r(1132);let c=r(9599),d=r(2003),f=r(6227),p=r(2964),h=r(2593),m=r(2299),g=r(317);r(4317);let y=r(9152),E=r(630),_=r(4363);t.RemoteHandler=class{formatAndRegisterRemote(e,t){return(t.remotes||[]).reduce((e,t)=>(this.registerRemote(t,e,{force:!1}),e),e.remotes)}setIdToRemoteMap(e,t){let{remote:r,expose:o}=t,{name:n,alias:a}=r;if(this.idToRemoteMap[e]={name:r.name,expose:o},a&&e.startsWith(n)){let t=e.replace(n,a);this.idToRemoteMap[t]={name:r.name,expose:o};return}if(a&&e.startsWith(a)){let t=e.replace(a,n);this.idToRemoteMap[t]={name:r.name,expose:o}}}async loadRemote(e,t){let{host:r}=this;try{let{loadFactory:o=!0}=t||{loadFactory:!0},{module:n,moduleOptions:a,remoteMatchInfo:i}=await this.getRemoteModuleAndOptions({id:e}),{pkgNameOrAlias:s,remote:l,expose:u,id:c,remoteSnapshot:d}=i,f=await n.get(c,u,t,d),p=await this.hooks.lifecycle.onLoad.emit({id:c,pkgNameOrAlias:s,expose:u,exposeModule:o?f:void 0,exposeModuleFactory:o?void 0:f,remote:l,options:a,moduleInstance:n,origin:r});if(this.setIdToRemoteMap(e,i),"function"==typeof p)return p;return f}catch(a){let{from:o="runtime"}=t||{from:"runtime"},n=await this.hooks.lifecycle.errorLoadRemote.emit({id:e,error:a,from:o,lifecycle:"onLoad",origin:r});if(!n)throw a;return n}}async preloadRemote(e){let{host:t}=this;await this.hooks.lifecycle.beforePreloadRemote.emit({preloadOps:e,options:t.options,origin:t});let r=c.formatPreloadArgs(t.options.remotes,e);await Promise.all(r.map(async e=>{let{remote:r}=e,o=l.getRemoteInfo(r),{globalSnapshot:n,remoteSnapshot:a}=await t.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:r}),i=await this.hooks.lifecycle.generatePreloadAssets.emit({origin:t,preloadOptions:e,remote:r,remoteInfo:o,globalSnapshot:n,remoteSnapshot:a});i&&c.preloadAssets(o,t,i)}))}registerRemotes(e,t){let{host:r}=this;e.forEach(e=>{this.registerRemote(e,r.options.remotes,{force:null==t?void 0:t.force})})}async getRemoteModuleAndOptions(e){let t,{host:r}=this,{id:n}=e;try{t=await this.hooks.lifecycle.beforeRequest.emit({id:n,options:r.options,origin:r})}catch(e){if(!(t=await this.hooks.lifecycle.errorLoadRemote.emit({id:n,options:r.options,origin:r,from:"runtime",error:e,lifecycle:"beforeRequest"})))throw e}let{id:a}=t,i=s.matchRemoteWithNameAndExpose(r.options.remotes,a);i||o.error(_.RUNTIME_004,_.runtimeDescMap,{hostName:r.options.name,requestId:a},void 0,u.optionsToMFContext(r.options));let{remote:c}=i,f=l.getRemoteInfo(c),p=await r.sharedHandler.hooks.lifecycle.afterResolve.emit({id:a,...i,options:r.options,origin:r,remoteInfo:f}),{remote:h,expose:m}=p;o.assert(h&&m,`The 'beforeRequest' hook was executed, but it failed to return the correct 'remote' and 'expose' values while loading ${a}.`);let g=r.moduleCache.get(h.name),y={host:r,remoteInfo:f};return g||(g=new d.Module(y),r.moduleCache.set(h.name,g)),{module:g,moduleOptions:y,remoteMatchInfo:p}}registerRemote(e,t,r){let{host:n}=this,i=()=>{if(e.alias){let r=t.find(t=>{var r;return e.alias&&(t.name.startsWith(e.alias)||(null==(r=t.alias)?void 0:r.startsWith(e.alias)))});o.assert(!r,`The alias ${e.alias} of remote ${e.name} is not allowed to be the prefix of ${r&&r.name} name or alias`)}"entry"in e&&E.isBrowserEnvValue&&"u">typeof window&&!e.entry.startsWith("http")&&(e.entry=new URL(e.entry,window.location.origin).href),e.shareScope||(e.shareScope=a.DEFAULT_SCOPE),e.type||(e.type=a.DEFAULT_REMOTE_TYPE)};this.hooks.lifecycle.beforeRegisterRemote.emit({remote:e,origin:n});let s=t.find(t=>t.name===e.name);if(s){let o=[`The remote "${e.name}" is already registered.`,"Please note that overriding it may cause unexpected errors."];(null==r?void 0:r.force)&&(this.removeRemote(s),i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n}),(0,E.warn)(o.join(" ")))}else i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n})}removeRemote(e){try{let{host:r}=this,{name:o}=e,a=r.options.remotes.findIndex(e=>e.name===o);-1!==a&&r.options.remotes.splice(a,1);let s=r.moduleCache.get(e.name);if(s){var t;let o=s.remoteInfo,a=o.entryGlobalName;n.CurrentGlobal[a]&&((null==(t=Object.getOwnPropertyDescriptor(n.CurrentGlobal,a))?void 0:t.configurable)?delete n.CurrentGlobal[a]:n.CurrentGlobal[a]=void 0);let u=l.getRemoteEntryUniqueKey(s.remoteInfo);n.globalLoading[u]&&delete n.globalLoading[u],r.snapshotHandler.manifestCache.delete(o.entry);let c=o.buildVersion?(0,E.composeKeyWithSeparator)(o.name,o.buildVersion):o.name,d=n.CurrentGlobal.__FEDERATION__.__INSTANCES__.findIndex(e=>o.buildVersion?e.options.id===c:e.name===c);if(-1!==d){let e=n.CurrentGlobal.__FEDERATION__.__INSTANCES__[d];c=e.options.id||c;let t=i.getGlobalShareScope(),r=!0,a=[];Object.keys(t).forEach(e=>{let n=t[e];n&&Object.keys(n).forEach(t=>{let i=n[t];i&&Object.keys(i).forEach(n=>{let s=i[n];s&&Object.keys(s).forEach(i=>{let l=s[i];l&&"object"==typeof l&&l.from===o.name&&(l.loaded||l.loading?(l.useIn=l.useIn.filter(e=>e!==o.name),l.useIn.length?r=!1:a.push([e,t,n,i])):a.push([e,t,n,i]))})})})}),r&&(e.shareScopeMap={},delete t[c]),a.forEach(e=>{var r,o,n;let[a,i,s,l]=e;null==(n=t[a])||null==(o=n[i])||null==(r=o[s])||delete r[l]}),n.CurrentGlobal.__FEDERATION__.__INSTANCES__.splice(d,1)}let{hostGlobalSnapshot:f}=y.getGlobalRemoteInfo(e,r);if(f){let t=f&&"remotesInfo"in f&&f.remotesInfo&&n.getInfoWithoutType(f.remotesInfo,e.name).key;t&&(delete f.remotesInfo[t],n.Global.__FEDERATION__.__MANIFEST_LOADING__[t]&&delete n.Global.__FEDERATION__.__MANIFEST_LOADING__[t])}r.moduleCache.delete(e.name)}}catch(e){o.logger.error(`removeRemote failed: ${e instanceof Error?e.message:String(e)}`)}}constructor(e){this.hooks=new g.PluginSystem({beforeRegisterRemote:new h.SyncWaterfallHook("beforeRegisterRemote"),registerRemote:new h.SyncWaterfallHook("registerRemote"),beforeRequest:new m.AsyncWaterfallHook("beforeRequest"),onLoad:new p.AsyncHook("onLoad"),handlePreloadModule:new f.SyncHook("handlePreloadModule"),errorLoadRemote:new p.AsyncHook("errorLoadRemote"),beforePreloadRemote:new p.AsyncHook("beforePreloadRemote"),generatePreloadAssets:new p.AsyncHook("generatePreloadAssets"),afterPreloadRemote:new p.AsyncHook,loadEntry:new p.AsyncHook}),this.host=e,this.idToRemoteMap={}}}},7300(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(8393);r(1132);let s=r(2964),l=r(2593),u=r(2299),c=r(317);r(4317);let d=r(4363);t.SharedHandler=class{registerShared(e,t){let{newShareInfos:r,allShareInfos:o}=a.formatShareConfigs(e,t);return Object.keys(r).forEach(e=>{r[e].forEach(r=>{r.scope.forEach(o=>{var n;this.hooks.lifecycle.beforeRegisterShare.emit({origin:this.host,pkgName:e,shared:r}),(null==(n=this.shareScopeMap[o])?void 0:n[e])||this.setShared({pkgName:e,lib:r.lib,get:r.get,loaded:r.loaded||!!r.lib,shared:r,from:t.name})})})}),{newShareInfos:r,allShareInfos:o}}async loadShare(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&await Promise.all(n.scope.map(async e=>{await Promise.all(this.initializeSharing(e,{strategy:n.strategy}))}));let{shareInfo:i}=await this.hooks.lifecycle.beforeLoadShare.emit({pkgName:e,shareInfo:n,shared:r.options.shared,origin:r});o.assert(i,`Cannot find shared "${e}" in host "${r.options.name}". Ensure the shared config for "${e}" is declared in the federation plugin options and the host has been initialized before loading shares.`);let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(s){let t=a.directShare(s,l);if(t.lib)return a.addUseIn(t,r.options.name),t.lib;if(t.loading&&!t.loaded){let e=await t.loading;return t.loaded=!0,t.lib||(t.lib=e),a.addUseIn(t,r.options.name),e}{let o=(async()=>{let e=await t.get();return a.addUseIn(t,r.options.name),t.loaded=!0,t.lib=e,e})();return this.setShared({pkgName:e,loaded:!1,shared:s,from:r.options.name,lib:null,loading:o,treeShaking:l?t:void 0}),o}}{if(null==t?void 0:t.customShareInfo)return!1;let o=a.shouldUseTreeShaking(i.treeShaking),n=a.directShare(i,o),s=(async()=>{let t=await n.get();n.lib=t,n.loaded=!0,a.addUseIn(n,r.options.name);let{shared:o,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(o){let e=a.directShare(o,s);e.lib=t,e.loaded=!0,o.from=i.from}return t})();return this.setShared({pkgName:e,loaded:!1,shared:i,from:r.options.name,lib:null,loading:s,treeShaking:o?n:void 0}),s}}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0,{host:r}=this,o=null==t?void 0:t.from,i=null==t?void 0:t.strategy,s=null==t?void 0:t.initScope,l=[];if("build"!==o){let{initTokens:t}=this;s||(s=[]);let r=t[e];if(r||(r=t[e]={from:this.host.name}),s.indexOf(r)>=0)return l;s.push(r)}let u=this.shareScopeMap,c=r.options.name;u[e]||(u[e]={});let d=u[e],f=(e,t)=>{var r;let{version:o,eager:n}=t;d[e]=d[e]||{};let i=d[e],s=i[o]&&a.directShare(i[o]),l=!!(s&&("eager"in s&&s.eager||"shareConfig"in s&&(null==(r=s.shareConfig)?void 0:r.eager)));(!s||"loaded-first"!==s.strategy&&!s.loaded&&(!n!=!l?n:c>i[o].from))&&(i[o]=t)},p=async e=>{let t,{module:o}=await r.remoteHandler.getRemoteModuleAndOptions({id:e});try{t=await o.getEntry()}catch(o){if(!(t=await r.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:o,from:"runtime",lifecycle:"beforeLoadShare",origin:r})))return}finally{(null==t?void 0:t.init)&&!o.initing&&(o.remoteEntryExports=t,await o.init(void 0,void 0,s))}};return Object.keys(r.options.shared).forEach(t=>{r.options.shared[t].forEach(r=>{r.scope.includes(e)&&f(t,r)})}),("version-first"===r.options.shareStrategy||"version-first"===i)&&r.options.remotes.forEach(t=>{t.shareScope===e&&l.push(p(t.name))}),l}loadShareSync(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&n.scope.forEach(e=>{this.initializeSharing(e,{strategy:n.strategy})});let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,n,this.hooks.lifecycle.resolveShare)||{};if(s){if("function"==typeof s.lib)return a.addUseIn(s,r.options.name),s.loaded||(s.loaded=!0,s.from===r.options.name&&(n.loaded=!0)),s.lib;if("function"==typeof s.get){let t=s.get();if(!(t instanceof Promise))return a.addUseIn(s,r.options.name),this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:t,shared:s}),t}}if(n.lib)return n.loaded||(n.loaded=!0),n.lib;if(n.get){let a=n.get();return a instanceof Promise&&o.error((null==t?void 0:t.from)==="build"?d.RUNTIME_005:d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options)),n.lib=a,this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:n.lib,shared:n}),n.lib}o.error(d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options))}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{host:o}=this;this.shareScopeMap[e]=t,this.hooks.lifecycle.initContainerShareScopeMap.emit({shareScope:t,options:o.options,origin:o,scopeName:e,hostShareScopeMap:r.hostShareScopeMap})}setShared(e){let{pkgName:t,shared:r,from:o,lib:n,loading:a,loaded:i,get:s,treeShaking:l}=e,{version:u,scope:c="default",...d}=r,f=Array.isArray(c)?c:[c],p=e=>{let t=(e,t,r)=>{r&&!e[t]&&(e[t]=r)},r=l?e.treeShaking:e;t(r,"loaded",i),t(r,"loading",a),t(r,"get",s)};f.forEach(e=>{this.shareScopeMap[e]||(this.shareScopeMap[e]={}),this.shareScopeMap[e][t]||(this.shareScopeMap[e][t]={}),this.shareScopeMap[e][t][u]||(this.shareScopeMap[e][t][u]={version:u,scope:[e],...d,lib:n});let r=this.shareScopeMap[e][t][u];p(r),o&&r.from!==o&&(r.from=o)})}_setGlobalShareScopeMap(e){let t=a.getGlobalShareScope(),r=e.id||e.name;r&&!t[r]&&(t[r]=this.shareScopeMap)}constructor(e){this.hooks=new c.PluginSystem({beforeRegisterShare:new l.SyncWaterfallHook("beforeRegisterShare"),afterResolve:new u.AsyncWaterfallHook("afterResolve"),beforeLoadShare:new u.AsyncWaterfallHook("beforeLoadShare"),loadShare:new s.AsyncHook,resolveShare:new l.SyncWaterfallHook("resolveShare"),initContainerShareScopeMap:new l.SyncWaterfallHook("initContainerShareScopeMap")}),this.host=e,this.shareScopeMap={},this.initTokens={},this._setGlobalShareScopeMap(e.options)}}},7703(e,t,r){var o=r(1748).__exportAll({});Object.defineProperty(t,"type_exports",{enumerable:!0,get:function(){return o}})},8393(e,t){function r(e){return{name:e.name,alias:e.alias,entry:"entry"in e?e.entry:void 0,version:"version"in e?e.version:void 0,type:e.type,entryGlobalName:e.entryGlobalName,shareScope:e.shareScope}}t.optionsToMFContext=function(e){var t,o,n,a,i,s;let l={};for(let[t,r]of Object.entries(e.shared)){let e=r[0];e&&(l[t]={version:e.version,singleton:null==(n=e.shareConfig)?void 0:n.singleton,requiredVersion:(null==(a=e.shareConfig)?void 0:a.requiredVersion)!==!1&&(null==(i=e.shareConfig)?void 0:i.requiredVersion),eager:e.eager,strictVersion:null==(s=e.shareConfig)?void 0:s.strictVersion})}return{project:{name:e.name,mfRole:(null==(t=e.remotes)?void 0:t.length)>0?"host":"unknown"},mfConfig:{name:e.name,remotes:(null==(o=e.remotes)?void 0:o.map(r))??[],shared:l}}}},7829(e,t,r){r(630),t.getBuilderId=function(){return"pimcore_studio_ui_bundle_core:0.0.1"}},2964(e,t,r){let o=r(6227);t.AsyncHook=class extends o.SyncHook{emit(){let e;for(var t=arguments.length,r=Array(t),o=0;o0){let t=0,o=e=>!1!==e&&(t0){let r=0,n=t=>(o.warn(t),this.onerror(t),e),a=o=>{if(i.checkReturnData(e,o)){if(e=o,r{let r=e[t];r&&this.lifecycle[t].on(r)})}}removePlugin(e){o.assert(e,"A name is required.");let t=this.registerPlugins[e];o.assert(t,`The plugin "${e}" is not registered.`),Object.keys(t).forEach(e=>{"name"!==e&&this.lifecycle[e].remove(t[e])})}constructor(e){this.registerPlugins={},this.lifecycle=e,this.lifecycleKeys=Object.keys(e)}}},6227(e,t){t.SyncHook=class{on(e){"function"==typeof e&&this.listeners.add(e)}once(e){let t=this;this.on(function r(){for(var o=arguments.length,n=Array(o),a=0;a0&&this.listeners.forEach(t=>{e=t(...r)}),e}remove(e){this.listeners.delete(e)}removeAll(){this.listeners.clear()}constructor(e){this.type="",this.listeners=new Set,e&&(this.type=e)}}},2593(e,t,r){let o=r(8628),n=r(9350),a=r(6227);function i(e,t){if(!n.isObject(t))return!1;if(e!==t){for(let r in e)if(!(r in t))return!1}return!0}t.SyncWaterfallHook=class extends a.SyncHook{emit(e){for(let t of(n.isObject(e)||o.error(`The data for the "${this.type}" hook should be an object.`),this.listeners))try{let r=t(e);if(i(e,r))e=r;else{this.onerror(`A plugin returned an unacceptable value for the "${this.type}" type.`);break}}catch(e){o.warn(e),this.onerror(e)}return e}constructor(e){super(),this.onerror=o.error,this.type=e}},t.checkReturnData=i},1132(e,t,r){r(8628),r(9350),r(7829),r(6079),r(8457),r(556),r(8393),r(630)},556(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(630),s=r(4363),l=".then(callbacks[0]).catch(callbacks[1])";async function u(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):"u">typeof FEDERATION_ALLOW_NEW_FUNCTION?Function("callbacks",`import("${t}")${l}`)([e,n]):import(t).then(e).catch(n)}catch(e){o.error(`Failed to load ESM entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}async function c(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):Function("callbacks",`System.import("${t}")${l}`)([e,n])}catch(e){o.error(`Failed to load SystemJS entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}function d(e,t,r){let{remoteEntryKey:a,entryExports:i}=n.getRemoteEntryExports(e,t);return i||o.error(s.RUNTIME_001,s.runtimeDescMap,{remoteName:e,remoteEntryUrl:r,remoteEntryKey:a}),i}async function f(e){let{name:t,globalName:r,entry:a,loaderHook:l,getEntryUrl:u}=e,{entryExports:c}=n.getRemoteEntryExports(t,r);if(c)return c;let f=u?u(a):a;return(0,i.loadScript)(f,{attrs:{},createScriptHook:(e,t)=>{let r=l.lifecycle.createScript.emit({url:e,attrs:t});if(r&&(r instanceof HTMLScriptElement||"script"in r||"timeout"in r))return r}}).then(()=>d(t,r,a),e=>{let r=e instanceof Error?e.message:String(e);o.error(s.RUNTIME_008,s.runtimeDescMap,{remoteName:t,resourceUrl:f},r)})}async function p(e){let{remoteInfo:t,remoteEntryExports:r,loaderHook:o,getEntryUrl:n}=e,{entry:a,entryGlobalName:i,name:s,type:l}=t;switch(l){case"esm":case"module":return u({entry:a,remoteEntryExports:r});case"system":return c({entry:a,remoteEntryExports:r});default:return f({entry:a,globalName:i,name:s,loaderHook:o,getEntryUrl:n})}}async function h(e){let{remoteInfo:t,loaderHook:r}=e,{entry:a,entryGlobalName:s,name:l,type:u}=t,{entryExports:c}=n.getRemoteEntryExports(l,s);return c||(0,i.loadScriptNode)(a,{attrs:{name:l,globalName:s,type:u},loaderHook:{createScriptHook:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.lifecycle.createScript.emit({url:e,attrs:t});if(o&&"url"in o)return o}}}).then(()=>d(l,s,a)).catch(e=>{o.error(`Failed to load Node.js entry for remote "${l}" from "${a}". ${e instanceof Error?e.message:String(e)}`)})}function m(e){let{entry:t,name:r}=e;return(0,i.composeKeyWithSeparator)(r,t)}async function g(e){let{origin:t,remoteEntryExports:r,remoteInfo:o,getEntryUrl:a,_inErrorHandling:l=!1}=e,u=m(o);if(r)return r;if(!n.globalLoading[u]){let e=t.remoteHandler.hooks.lifecycle.loadEntry,c=t.loaderHook;n.globalLoading[u]=e.emit({loaderHook:c,remoteInfo:o,remoteEntryExports:r}).then(e=>e||(("u">typeof ENV_TARGET?"web"===ENV_TARGET:i.isBrowserEnvValue)?p({remoteInfo:o,remoteEntryExports:r,loaderHook:c,getEntryUrl:a}):h({remoteInfo:o,loaderHook:c}))).catch(async e=>{let a=m(o),i=e instanceof Error&&e.message.includes("ScriptExecutionError");if(e instanceof Error&&e.message.includes(s.RUNTIME_008)&&!i&&!l){let e=e=>g({...e,_inErrorHandling:!0}),i=await t.loaderHook.lifecycle.loadEntryError.emit({getRemoteEntry:e,origin:t,remoteInfo:o,remoteEntryExports:r,globalLoading:n.globalLoading,uniqueKey:a});if(i)return i}throw e})}return n.globalLoading[u]}function y(e){return{...e,entry:"entry"in e?e.entry:"",type:e.type||a.DEFAULT_REMOTE_TYPE,entryGlobalName:e.entryGlobalName||e.name,shareScope:e.shareScope||a.DEFAULT_SCOPE}}t.getRemoteEntry=g,t.getRemoteEntryUniqueKey=m,t.getRemoteInfo=y},8628(e,t,r){let o=r(630),n=r(6619),a="[ Federation Runtime ]",i=(0,o.createLogger)(a);function s(e,t,r,o,i){if(void 0!==t)return(0,n.logAndReport)(e,t,r??{},e=>{throw Error(`${a}: ${e}`)},o,i);let s=e;if(s instanceof Error)throw s.message.startsWith(a)||(s.message=`${a}: ${s.message}`),s;throw Error(`${a}: ${s}`)}function l(e){e instanceof Error&&(e.message.startsWith(a)||(e.message=`${a}: ${e.message}`)),i.warn(e)}t.assert=function(e,t,r,o,n){e||(void 0!==r?s(t,r,o,void 0,n):s(t))},t.error=s,t.logger=i,t.warn=l},6079(e,t){function r(e,t){for(let r of e){let e=t.startsWith(r.name),o=t.replace(r.name,"");if(e){if(o.startsWith("/"))return{pkgNameOrAlias:r.name,expose:o=`.${o}`,remote:r};else if(""===o)return{pkgNameOrAlias:r.name,expose:".",remote:r}}let n=r.alias&&t.startsWith(r.alias),a=r.alias&&t.replace(r.alias,"");if(r.alias&&n){if(a&&a.startsWith("/"))return{pkgNameOrAlias:r.alias,expose:a=`.${a}`,remote:r};else if(""===a)return{pkgNameOrAlias:r.alias,expose:".",remote:r}}}}t.matchRemote=function(e,t){for(let r of e)if(t===r.name||r.alias&&t===r.alias)return r},t.matchRemoteWithNameAndExpose=r},8457(e,t,r){let o=r(4391);t.registerPlugins=function(e,t){let r=o.getGlobalHostPlugins(),n=[t.hooks,t.remoteHandler.hooks,t.sharedHandler.hooks,t.snapshotHandler.hooks,t.loaderHook,t.bridgeHook];return r.length>0&&r.forEach(t=>{(null==e?void 0:e.find(e=>e.name!==t.name))&&e.push(t)}),e&&e.length>0&&e.forEach(e=>{n.forEach(r=>{r.applyPlugin(e,t)})}),e}},9599(e,t,r){let o=r(8628),n=r(6079),a=r(556),i=r(630);function s(e){return{resourceCategory:"sync",share:!0,depsRemote:!0,prefetchInterface:!1,...e}}function l(e,t){return t.map(t=>{let r=n.matchRemote(e,t.nameOrAlias);return o.assert(r,`Unable to preload ${t.nameOrAlias} as it is not included in ${!r&&(0,i.safeToString)({remoteInfo:r,remotes:e})}`),{remote:r,preloadConfig:s(t)}})}function u(e){return e?e.map(e=>"."===e?e:e.startsWith("./")?e.replace("./",""):e):[]}function c(e,t,r){let o=!(arguments.length>3)||void 0===arguments[3]||arguments[3],{cssAssets:n,jsAssetsWithoutEntry:s,entryAssets:l}=r;if(t.options.inBrowser){if(l.forEach(r=>{let{moduleInfo:o}=r,n=t.moduleCache.get(e.name);n?a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:n.remoteEntryExports}):a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:void 0})}),o){let e={rel:"preload",as:"style"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let e={rel:"stylesheet",type:"text/css"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o},needDeleteLink:!1});n&&document.head.appendChild(o)})}if(o){let e={rel:"preload",as:"script"};s.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let r={fetchpriority:"high",type:(null==e?void 0:e.type)==="module"?"module":"text/javascript"};s.forEach(e=>{let{script:o,needAttach:n}=(0,i.createScript)({url:e,cb:()=>{},attrs:r,createScriptHook:(e,r)=>{let o=t.loaderHook.lifecycle.createScript.emit({url:e,attrs:r});if(o instanceof HTMLScriptElement)return o},needDeleteScript:!0});n&&document.head.appendChild(o)})}}}t.defaultPreloadArgs=s,t.formatPreloadArgs=l,t.normalizePreloadExposes=u,t.preloadAssets=c},632(e,t){function r(e,t){return(e=Number(e)||e)>(t=Number(t)||t)?1:e===t?0:-1}function o(e,t){let{preRelease:o}=e,{preRelease:n}=t;if(void 0===o&&n)return 1;if(o&&void 0===n)return -1;if(void 0===o&&void 0===n)return 0;for(let e=0,t=o.length;e<=t;e++){let t=o[e],a=n[e];if(t!==a){if(void 0===t&&void 0===a)return 0;if(!t)return 1;if(!a)return -1;return r(t,a)}}return 0}function n(e,t){return r(e.major,t.major)||r(e.minor,t.minor)||r(e.patch,t.patch)||o(e,t)}function a(e,t){return e.version===t.version}t.compare=function(e,t){switch(e.operator){case"":case"=":return a(e,t);case">":return 0>n(e,t);case">=":return a(e,t)||0>n(e,t);case"<":return n(e,t)>0;case"<=":return a(e,t)||n(e,t)>0;case void 0:return!0;default:return!1}}},9570(e,t){let r="[0-9A-Za-z-]+",o=`(?:\\+(${r}(?:\\.${r})*))`,n="0|[1-9]\\d*",a="[0-9]+",i="\\d*[a-zA-Z-][a-zA-Z0-9-]*",s=`(?:${a}|${i})`,l=`(?:-?(${s}(?:\\.${s})*))`,u=`(?:${n}|${i})`,c=`(?:-(${u}(?:\\.${u})*))`,d=`${n}|x|X|\\*`,f=`[v=\\s]*(${d})(?:\\.(${d})(?:\\.(${d})(?:${c})?${o}?)?)?`,p=`^\\s*(${f})\\s+-\\s+(${f})\\s*$`,h=`[v=\\s]*${`(${a})\\.(${a})\\.(${a})`}${l}?${o}?`,m="((?:<|>)?=?)",g=`(\\s*)${m}\\s*(${h}|${f})`,y="(?:~>?)",E=`(\\s*)${y}\\s+`,_="(?:\\^)",b=`(\\s*)${_}\\s+`,S="(<|>)?=?\\s*\\*",v=`^${_}${f}$`,R=`v?${`(${n})\\.(${n})\\.(${n})`}${c}?${o}?`,I=`^${y}${f}$`,M=`^${m}\\s*${f}$`,N=`^${m}\\s*(${R})$|^$`,T="^\\s*>=\\s*0.0.0\\s*$";t.caret=v,t.caretTrim=b,t.comparator=N,t.comparatorTrim=g,t.gte0=T,t.hyphenRange=p,t.star=S,t.tilde=I,t.tildeTrim=E,t.xRange=M},3957(e,t,r){let o=r(78),n=r(3810),a=r(632);function i(e){return o.pipe(n.parseCarets,n.parseTildes,n.parseXRanges,n.parseStar)(e)}function s(e){return o.pipe(n.parseHyphen,n.parseComparatorTrim,n.parseTildeTrim,n.parseCaretTrim)(e.trim()).split(/\s+/).join(" ")}t.satisfy=function(e,t){if(!e)return!1;let r=o.extractComparator(e);if(!r)return!1;let[,l,,u,c,d,f]=r,p={operator:l,version:o.combineVersion(u,c,d,f),major:u,minor:c,patch:d,preRelease:null==f?void 0:f.split(".")};for(let e of t.split("||")){let t=e.trim();if(!t||"*"===t||"x"===t)return!0;try{let e=s(t);if(!e.trim())return!0;let r=e.split(" ").map(e=>i(e)).join(" ");if(!r.trim())return!0;let l=r.split(/\s+/).map(e=>n.parseGTE0(e)).filter(Boolean);if(0===l.length)continue;let u=!0;for(let e of l){let t=o.extractComparator(e);if(!t){u=!1;break}let[,r,,n,i,s,l]=t;if(!a.compare({operator:r,version:o.combineVersion(n,i,s,l),major:n,minor:i,patch:s,preRelease:null==l?void 0:l.split(".")},p)){u=!1;break}}if(u)return!0}catch(e){console.error(`[semver] Error processing range part "${t}":`,e);continue}}return!1}},3810(e,t,r){let o=r(9570),n=r(78);function a(e){return e.replace(n.parseRegex(o.hyphenRange),(e,t,r,o,a,i,s,l,u,c,d,f)=>(t=n.isXVersion(r)?"":n.isXVersion(o)?`>=${r}.0.0`:n.isXVersion(a)?`>=${r}.${o}.0`:`>=${t}`,l=n.isXVersion(u)?"":n.isXVersion(c)?`<${Number(u)+1}.0.0-0`:n.isXVersion(d)?`<${u}.${Number(c)+1}.0-0`:f?`<=${u}.${c}.${d}-${f}`:`<=${l}`,`${t} ${l}`.trim()))}function i(e){return e.replace(n.parseRegex(o.comparatorTrim),"$1$2$3")}function s(e){return e.replace(n.parseRegex(o.tildeTrim),"$1~")}function l(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.caret),(e,t,r,o,a)=>{if(n.isXVersion(t))return"";if(n.isXVersion(r))return`>=${t}.0.0 <${Number(t)+1}.0.0-0`;if(n.isXVersion(o))if("0"===t)return`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`;else return`>=${t}.${r}.0 <${Number(t)+1}.0.0-0`;if(a)if("0"!==t)return`>=${t}.${r}.${o}-${a} <${Number(t)+1}.0.0-0`;else if("0"===r)return`>=${t}.${r}.${o}-${a} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`;if("0"===t)if("0"===r)return`>=${t}.${r}.${o} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`;return`>=${t}.${r}.${o} <${Number(t)+1}.0.0-0`})).join(" ")}function u(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.tilde),(e,t,r,o,a)=>n.isXVersion(t)?"":n.isXVersion(r)?`>=${t}.0.0 <${Number(t)+1}.0.0-0`:n.isXVersion(o)?`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`:a?`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`:`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`)).join(" ")}function c(e){return e.split(/\s+/).map(e=>e.trim().replace(n.parseRegex(o.xRange),(e,t,r,o,a,i)=>{let s=n.isXVersion(r),l=s||n.isXVersion(o),u=l||n.isXVersion(a);if("="===t&&u&&(t=""),i="",s)if(">"===t||"<"===t)return"<0.0.0-0";else return"*";return t&&u?(l&&(o=0),a=0,">"===t?(t=">=",l?(r=Number(r)+1,o=0):o=Number(o)+1,a=0):"<="===t&&(t="<",l?r=Number(r)+1:o=Number(o)+1),"<"===t&&(i="-0"),`${t+r}.${o}.${a}${i}`):l?`>=${r}.0.0${i} <${Number(r)+1}.0.0-0`:u?`>=${r}.${o}.0${i} <${r}.${Number(o)+1}.0-0`:e})).join(" ")}function d(e){return e.trim().replace(n.parseRegex(o.star),"")}function f(e){return e.trim().replace(n.parseRegex(o.gte0),"")}t.parseCaretTrim=function(e){return e.replace(n.parseRegex(o.caretTrim),"$1^")},t.parseCarets=l,t.parseComparatorTrim=i,t.parseGTE0=f,t.parseHyphen=a,t.parseStar=d,t.parseTildeTrim=s,t.parseTildes=u,t.parseXRanges=c},78(e,t,r){let o=r(9570);function n(e){return new RegExp(e)}function a(e){return!e||"x"===e.toLowerCase()||"*"===e}function i(){for(var e=arguments.length,t=Array(e),r=0;rt.reduce((e,t)=>t(e),e)}function s(e){return e.match(n(o.comparator))}t.combineVersion=function(e,t,r,o){let n=`${e}.${t}.${r}`;return o?`${n}-${o}`:n},t.extractComparator=s,t.isXVersion=a,t.parseRegex=n,t.pipe=i},8369(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(2926),s=r(3957),l=r(630);function u(e,t,r,n){var a,i;let s;return s="get"in e?e.get:"lib"in e?()=>Promise.resolve(e.lib):()=>Promise.resolve(()=>{o.error(`Cannot get shared "${r}" from "${t}": neither "get" nor "lib" is provided in the share config.`)}),(null==(a=e.shareConfig)?void 0:a.eager)&&(null==(i=e.treeShaking)?void 0:i.mode)&&o.error(`Invalid shared config for "${r}" from "${t}": cannot use both "eager: true" and "treeShaking.mode" simultaneously. Choose one strategy.`),{deps:[],useIn:[],from:t,loading:null,...e,shareConfig:{requiredVersion:`^${e.version}`,singleton:!1,eager:!1,strictVersion:!1,...e.shareConfig},get:s,loaded:null!=e&&!!e.loaded||"lib"in e||void 0,version:e.version??"0",scope:Array.isArray(e.scope)?e.scope:[e.scope??"default"],strategy:(e.strategy??n)||"version-first",treeShaking:e.treeShaking?{...e.treeShaking,mode:e.treeShaking.mode??"server-calc",status:e.treeShaking.status??l.TreeShakingStatus.UNKNOWN,useIn:[]}:void 0}}function c(e,t){let r=t.shared||{},o=t.name,a=Object.keys(r).reduce((e,a)=>{let i=n.arrayOptions(r[a]);return e[a]=e[a]||[],i.forEach(r=>{e[a].push(u(r,o,a,t.shareStrategy))}),e},{}),i={...e.shared};return Object.keys(a).forEach(e=>{i[e]?a[e].forEach(t=>{i[e].find(e=>e.version===t.version)||i[e].push(t)}):i[e]=a[e]}),{allShareInfos:i,newShareInfos:a}}function d(e,t){if(!e)return!1;let{status:r,mode:o}=e;return r!==l.TreeShakingStatus.NO_USE&&(r===l.TreeShakingStatus.CALCULATED||"runtime-infer"===o&&(!t||g(e,t)))}function f(e,t){let r=e=>{if(!Number.isNaN(Number(e))){let t=e.split("."),r=e;for(let e=0;e<3-t.length;e++)r+=".0";return r}return e};return!!s.satisfy(r(e),`<=${r(t)}`)}let p=(e,t)=>{let r=t||function(e,t){return f(e,t)};return Object.keys(e).reduce((e,t)=>!e||r(e,t)||"0"===e?t:e,0)},h=e=>!!e.loaded||"function"==typeof e.lib,m=e=>!!e.loading,g=(e,t)=>{if(!e||!t)return!1;let{usedExports:r}=e;return!!r&&!!t.every(e=>r.includes(e))};function y(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){return i?!n[e].treeShaking||!!n[t].treeShaking&&!h(n[e].treeShaking)&&f(e,t):!h(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}let E=e=>h(e)||m(e);function _(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){if(i){if(!n[e].treeShaking)return!0;if(!n[t].treeShaking)return!1;if(E(n[t].treeShaking))if(E(n[e].treeShaking))return!!f(e,t);else return!0;if(E(n[e].treeShaking))return!1}if(E(n[t]))if(E(n[e]))return!!f(e,t);else return!0;return!E(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}function b(e){return"loaded-first"===e?_:y}function S(e,t,r,n){if(!e)return;let{shareConfig:l,scope:u=i.DEFAULT_SCOPE,strategy:c,treeShaking:f}=r;for(let i of Array.isArray(u)?u:[u])if(l&&e[i]&&e[i][t]){let{requiredVersion:u}=l,{version:p,useTreesShaking:h}=b(c)(e,i,t,f),m=()=>{let n=e[i][t][p];if(l.singleton){if("string"==typeof u&&!s.satisfy(p,u)){let e=`Version ${p} from ${p&&n.from} of shared singleton module ${t} does not satisfy the requirement of ${r.from} which needs ${u})`;l.strictVersion?o.error(e):o.warn(e)}return{shared:n,useTreesShaking:h}}{if(!1===u||"*"===u||s.satisfy(p,u))return{shared:n,useTreesShaking:h};let r=d(f);if(r){for(let[o,n]of Object.entries(e[i][t]))if(d(n.treeShaking,null==f?void 0:f.usedExports)&&s.satisfy(o,u))return{shared:n,useTreesShaking:r}}for(let[r,o]of Object.entries(e[i][t]))if(s.satisfy(r,u))return{shared:o,useTreesShaking:!1}}},g={shareScopeMap:e,scope:i,pkgName:t,version:p,GlobalFederation:a.Global.__FEDERATION__,shareInfo:r,resolver:m};return(n.emit(g)||g).resolver()}}function v(){return a.Global.__FEDERATION__.__SHARE__}function R(e){let{pkgName:t,extraOptions:r,shareInfos:o}=e,n=e=>{if(!e)return;let t={};e.forEach(e=>{t[e.version]=e});let r=function(e,r){return!h(t[e])&&f(e,r)};return t[p(t,r)]},a=(null==r?void 0:r.resolver)??n,i=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),s=function(){for(var e=arguments.length,t=Array(e),r=0;r{e.useIn||(e.useIn=[]),n.addUniqueItem(e.useIn,t)},t.directShare=I,t.formatShareConfigs=c,t.getGlobalShareScope=v,t.getRegisteredShare=S,t.getTargetSharedOptions=R,t.shouldUseTreeShaking=d},9350(e,t,r){let o=r(8628),n=r(630);function a(e,t){return -1===e.findIndex(e=>e===t)&&e.push(t),e}function i(e){return"version"in e&&e.version?`${e.name}:${e.version}`:"entry"in e&&e.entry?`${e.name}:${e.entry}`:`${e.name}`}function s(e){return void 0!==e.entry}function l(e){return!e.entry.includes(".json")}async function u(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function c(e){return e&&"object"==typeof e}let d=Object.prototype.toString;function f(e){return"[object Object]"===d.call(e)}function p(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function h(e){return Array.isArray(e)?e:[e]}function m(e){let t={url:"",type:"global",globalName:""};return n.isBrowserEnvValue||(0,n.isReactNativeEnv)()||!("ssrRemoteEntry"in e)?"remoteEntry"in e?{url:e.remoteEntry,type:e.remoteEntryType,globalName:e.globalName}:t:"ssrRemoteEntry"in e?{url:e.ssrRemoteEntry||t.url,type:e.ssrRemoteEntryType||t.type,globalName:e.globalName}:t}let g=(e,t)=>{let r;return r=e.endsWith("/")?e.slice(0,-1):e,t.startsWith(".")&&(t=t.slice(1)),r+=t};t.addUniqueItem=a,t.arrayOptions=h,t.getFMId=i,t.getRemoteEntryInfoFromSnapshot=m,t.isObject=c,t.isPlainObject=f,t.isPureRemoteEntry=l,t.isRemoteInfoWithEntry=s,t.isStaticResourcesEqual=p,t.objectToString=d,t.processModuleAlias=g,t.safeWrapper=u},3544(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},3129(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),r(3544);let o=r(9577),n=r(5922),a={...n.helpers.global,getGlobalFederationInstance:o.getGlobalFederationInstance},i=n.helpers.share,s=n.helpers.utils;t.default={global:a,share:i,utils:s},t.global=a,t.share=i,t.utils=s},9782(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),r(3544);let o=r(9577),n=r(5922),a=r(4363);function i(e){let t=new((0,n.getGlobalFederationConstructor)()||n.ModuleFederation)(e);return(0,n.setGlobalFederationInstance)(t),t}let s=null;function l(e){let t=o.getGlobalFederationInstance(e.name,e.version);return t?(t.initOptions(e),s||(s=t),t):s=i(e)}function u(){for(var e=arguments.length,t=Array(e),r=0;r!!r&&o.options.id===r||o.options.name===e&&!o.options.version&&!t||o.options.name===e&&!!t&&o.options.version===t)}},7688(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},586(e,t){let r="federation-manifest.json",o=".json",n="FEDERATION_DEBUG",a={AT:"@",HYPHEN:"-",SLASH:"/"},i={[a.AT]:"scope_",[a.HYPHEN]:"_",[a.SLASH]:"__"},s={[i[a.AT]]:a.AT,[i[a.HYPHEN]]:a.HYPHEN,[i[a.SLASH]]:a.SLASH},l=":",u="mf-manifest.json",c="mf-stats.json",d={NPM:"npm",APP:"app"},f="__MF_DEVTOOLS_MODULE_INFO__",p="ENCODE_NAME_PREFIX",h=".federation",m={identifier:"MFDataPrefetch",globalKey:"__PREFETCH__",library:"mf-data-prefetch",exportsKey:"__PREFETCH_EXPORTS__",fileName:"bootstrap.js"},g=function(e){return e[e.UNKNOWN=1]="UNKNOWN",e[e.CALCULATED=2]="CALCULATED",e[e.NO_USE=0]="NO_USE",e}({});t.BROWSER_LOG_KEY=n,t.ENCODE_NAME_PREFIX=p,t.EncodedNameTransformMap=s,t.FederationModuleManifest=r,t.MANIFEST_EXT=o,t.MFModuleType=d,t.MFPrefetchCommon=m,t.MODULE_DEVTOOL_IDENTIFIER=f,t.ManifestFileName=u,t.NameTransformMap=i,t.NameTransformSymbol=a,t.SEPARATOR=l,t.StatsFileName=c,t.TEMP_DIR=h,t.TreeShakingStatus=g},1483(e,t){t.createModuleFederationConfig=e=>e},6302(e,t,r){let o=r(3417);async function n(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function a(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function i(e){let t,r=null,o=!0,i=2e4,s=document.getElementsByTagName("script");for(let t=0;t{r&&("async"===e||"defer"===e?r[e]=o[e]:r.getAttribute(e)||r.setAttribute(e,o[e]))})}let l=null,u="u">typeof window?t=>{if(t.filename&&a(t.filename,e.url)){let r=Error(`ScriptExecutionError: Script "${e.url}" loaded but threw a runtime error during execution: ${t.message} (${t.filename}:${t.lineno}:${t.colno})`);r.name="ScriptExecutionError",l=r}}:null;u&&window.addEventListener("error",u);let c=async(o,a)=>{clearTimeout(t),u&&window.removeEventListener("error",u);let i=()=>{if((null==a?void 0:a.type)==="error"){let t=Error(`ScriptNetworkError: Failed to load script "${e.url}" - the script URL is unreachable or the server returned an error (network failure, 404, CORS, etc.)`);t.name="ScriptNetworkError",(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(t))}else l?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(l)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(r&&(r.onerror=null,r.onload=null,n(()=>{let{needDeleteScript:t=!0}=e;t&&(null==r?void 0:r.parentNode)&&r.parentNode.removeChild(r)}),o&&"function"==typeof o)){let e=o(a);if(e instanceof Promise){let t=await e;return i(),t}return i(),e}i()};return r.onerror=c.bind(null,r.onerror),r.onload=c.bind(null,r.onload),t=setTimeout(()=>{c(null,Error(`Remote script "${e.url}" time-outed.`))},i),{script:r,needAttach:o}}function s(e,t){let{attrs:r={},createScriptHook:o}=t;return new Promise((t,n)=>{let{script:a,needAttach:s}=i({url:e,cb:t,onErrorCallback:n,attrs:{fetchpriority:"high",...r},createScriptHook:o,needDeleteScript:!0});s&&document.head.appendChild(a)})}t.createLink=function(e){let t=null,r=!0,o=document.getElementsByTagName("link");for(let n=0;n{t&&!t.getAttribute(e)&&t.setAttribute(e,o[e])})}let i=(r,o)=>{let a=()=>{(null==o?void 0:o.type)==="error"?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(o)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(t&&(t.onerror=null,t.onload=null,n(()=>{let{needDeleteLink:r=!0}=e;r&&(null==t?void 0:t.parentNode)&&t.parentNode.removeChild(t)}),r)){let e=r(o);return a(),e}a()};return t.onerror=i.bind(null,t.onerror),t.onload=i.bind(null,t.onload),{link:t,needAttach:r}},t.createScript=i,t.isStaticResourcesEqual=a,t.loadScript=s,t.safeWrapper=n},6883(e,t,r){let o=r(586),n="u">typeof ENV_TARGET?"web"===ENV_TARGET:"u">typeof window&&void 0!==window.document;function a(){return n}function i(){var e;return"u">typeof navigator&&(null==(e=navigator)?void 0:e.product)==="ReactNative"}function s(){try{if(a()&&window.localStorage)return!!localStorage.getItem(o.BROWSER_LOG_KEY)}catch(e){}return!1}function l(){return"u">typeof process&&process.env&&process.env.FEDERATION_DEBUG?!!process.env.FEDERATION_DEBUG:!!("u">typeof FEDERATION_DEBUG&&FEDERATION_DEBUG)||s()}t.getProcessEnv=function(){return"u">typeof process&&process.env?process.env:{}},t.isBrowserEnv=a,t.isBrowserEnvValue=n,t.isDebugMode=l,t.isReactNativeEnv=i},7016(e,t,r){let o=r(586),n=(e,t)=>{if(!e)return t;let r=(e=>{if("."===e)return"";if(e.startsWith("./"))return e.replace("./","");if(e.startsWith("/")){let t=e.slice(1);return t.endsWith("/")?t.slice(0,-1):t}return e})(e);return r?r.endsWith("/")?`${r}${t}`:`${r}/${t}`:t};function a(e){return e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/")}function i(e){return!!("remoteEntry"in e&&e.remoteEntry.includes(o.MANIFEST_EXT))}function s(e){if(!e)return{statsFileName:o.StatsFileName,manifestFileName:o.ManifestFileName};let t="boolean"==typeof e?"":e.filePath||"",r="boolean"==typeof e?"":e.fileName||"",a=".json",i=e=>e.endsWith(a)?e:`${e}${a}`,s=(e,t)=>e.replace(a,`${t}${a}`),l=r?i(r):o.ManifestFileName;return{statsFileName:n(t,r?s(l,"-stats"):o.StatsFileName),manifestFileName:n(t,l)}}t.generateSnapshotFromManifest=function(e){var t,r,o;let i,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{remotes:l={},overrides:u={},version:c}=s,d=()=>"publicPath"in e.metaData?("auto"===e.metaData.publicPath||""===e.metaData.publicPath)&&c?a(c):e.metaData.publicPath:e.metaData.getPublicPath,f=Object.keys(u),p={};Object.keys(l).length||(p=(null==(t=e.remotes)?void 0:t.reduce((e,t)=>{let r,o=t.federationContainerName;return r=f.includes(o)?u[o]:"version"in t?t.version:t.entry,e[o]={matchedVersion:r},e},{}))||{}),Object.keys(l).forEach(e=>p[e]={matchedVersion:f.includes(e)?u[e]:l[e]});let{remoteEntry:{path:h,name:m,type:g},types:y={path:"",name:"",zip:"",api:""},buildInfo:{buildVersion:E},globalName:_,ssrRemoteEntry:b}=e.metaData,{exposes:S}=e,v={version:c||"",buildVersion:E,globalName:_,remoteEntry:n(h,m),remoteEntryType:g,remoteTypes:n(y.path,y.name),remoteTypesZip:y.zip||"",remoteTypesAPI:y.api||"",remotesInfo:p,shared:null==e?void 0:e.shared.map(e=>({assets:e.assets,sharedName:e.name,version:e.version,usedExports:e.referenceExports||[]})),modules:null==S?void 0:S.map(e=>({moduleName:e.name,modulePath:e.path,assets:e.assets}))};if(null==(r=e.metaData)?void 0:r.prefetchInterface){let t=e.metaData.prefetchInterface;v={...v,prefetchInterface:t}}if(null==(o=e.metaData)?void 0:o.prefetchEntry){let{path:t,name:r,type:o}=e.metaData.prefetchEntry;v={...v,prefetchEntry:n(t,r),prefetchEntryType:o}}if("publicPath"in e.metaData?(i={...v,publicPath:d()},"string"==typeof e.metaData.ssrPublicPath&&(i.ssrPublicPath=e.metaData.ssrPublicPath)):i={...v,getPublicPath:d()},b){let e=n(b.path,b.name);i.ssrRemoteEntry=e,i.ssrRemoteEntryType=b.type||"commonjs-module"}return i},t.getManifestFileName=s,t.inferAutoPublicPath=a,t.isManifestProvider=i,t.simpleJoinRemoteEntry=n},630(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(586),n=r(8841),a=r(8798),i=r(7765),s=r(1993),l=r(7345),u=r(5448),c=r(6883),d=r(3417),f=r(7016),p=r(3910),h=r(6302),m=r(638),g=r(6967),y=r(1483);t.BROWSER_LOG_KEY=o.BROWSER_LOG_KEY,t.ENCODE_NAME_PREFIX=o.ENCODE_NAME_PREFIX,t.EncodedNameTransformMap=o.EncodedNameTransformMap,t.FederationModuleManifest=o.FederationModuleManifest,t.MANIFEST_EXT=o.MANIFEST_EXT,t.MFModuleType=o.MFModuleType,t.MFPrefetchCommon=o.MFPrefetchCommon,t.MODULE_DEVTOOL_IDENTIFIER=o.MODULE_DEVTOOL_IDENTIFIER,t.ManifestFileName=o.ManifestFileName,t.NameTransformMap=o.NameTransformMap,t.NameTransformSymbol=o.NameTransformSymbol,t.SEPARATOR=o.SEPARATOR,t.StatsFileName=o.StatsFileName,t.TEMP_DIR=o.TEMP_DIR,t.TreeShakingStatus=o.TreeShakingStatus,t.assert=d.assert,t.bindLoggerToCompiler=p.bindLoggerToCompiler,t.composeKeyWithSeparator=d.composeKeyWithSeparator,Object.defineProperty(t,"consumeSharedPlugin",{enumerable:!0,get:function(){return l.ConsumeSharedPlugin_exports}}),Object.defineProperty(t,"containerPlugin",{enumerable:!0,get:function(){return n.ContainerPlugin_exports}}),Object.defineProperty(t,"containerReferencePlugin",{enumerable:!0,get:function(){return a.ContainerReferencePlugin_exports}}),t.createInfrastructureLogger=p.createInfrastructureLogger,t.createLink=h.createLink,t.createLogger=p.createLogger,t.createModuleFederationConfig=y.createModuleFederationConfig,t.createScript=h.createScript,t.createScriptNode=m.createScriptNode,t.decodeName=d.decodeName,t.encodeName=d.encodeName,t.error=d.error,t.generateExposeFilename=d.generateExposeFilename,t.generateShareFilename=d.generateShareFilename,t.generateSnapshotFromManifest=f.generateSnapshotFromManifest,t.getManifestFileName=f.getManifestFileName,t.getProcessEnv=c.getProcessEnv,t.getResourceUrl=d.getResourceUrl,t.inferAutoPublicPath=f.inferAutoPublicPath,t.infrastructureLogger=p.infrastructureLogger,t.isBrowserEnv=c.isBrowserEnv,t.isBrowserEnvValue=c.isBrowserEnvValue,t.isDebugMode=c.isDebugMode,t.isManifestProvider=f.isManifestProvider,t.isReactNativeEnv=c.isReactNativeEnv,t.isRequiredVersion=d.isRequiredVersion,t.isStaticResourcesEqual=h.isStaticResourcesEqual,t.loadScript=h.loadScript,t.loadScriptNode=m.loadScriptNode,t.logger=p.logger,Object.defineProperty(t,"moduleFederationPlugin",{enumerable:!0,get:function(){return i.ModuleFederationPlugin_exports}}),t.normalizeOptions=g.normalizeOptions,t.parseEntry=d.parseEntry,Object.defineProperty(t,"provideSharedPlugin",{enumerable:!0,get:function(){return u.ProvideSharedPlugin_exports}}),t.safeToString=d.safeToString,t.safeWrapper=h.safeWrapper,Object.defineProperty(t,"sharePlugin",{enumerable:!0,get:function(){return s.SharePlugin_exports}}),t.simpleJoinRemoteEntry=f.simpleJoinRemoteEntry,t.warn=d.warn},3910(e,t,r){let o=r(6883),n="[ Module Federation ]",a=console,i=["logger.ts","logger.js","captureStackTrace","Logger.emit","Logger.log","Logger.info","Logger.warn","Logger.error","Logger.debug"];function s(){try{let e=Error().stack;if(!e)return;let[,...t]=e.split("\n"),r=t.filter(e=>!i.some(t=>e.includes(t)));if(!r.length)return;return`Stack trace: -${r.slice(0,5).join("\n")}`}catch{return}}var l=class{setPrefix(e){this.prefix=e}setDelegate(e){this.delegate=e??a}emit(e,t){let r=this.delegate,n=o.isDebugMode()?s():void 0,i=n?[...t,n]:t,l=(()=>{switch(e){case"log":return["log","info"];case"info":return["info","log"];case"warn":return["warn","info","log"];case"error":return["error","warn","log"];default:return["debug","log"]}})();for(let e of l){let t=r[e];if("function"==typeof t)return void t.call(r,this.prefix,...i)}for(let e of l){let t=a[e];if("function"==typeof t)return void t.call(a,this.prefix,...i)}}log(){for(var e=arguments.length,t=Array(e),r=0;re).catch(t=>{throw console.error(`Error importing module ${e}:`,t),sdkImportCache.delete(e),t});return sdkImportCache.set(e,t),t}let loadNodeFetch=async()=>{let e=await importNodeModule("node-fetch");return e.default||e},lazyLoaderHookFetch=async(e,t,r)=>{let o=(e,t)=>r.lifecycle.fetch.emit(e,t),n=await o(e,t||{});return n&&n instanceof Response?n:("u"{let urlObj;if(null==loaderHook?void 0:loaderHook.createScriptHook){let hookResult=loaderHook.createScriptHook(url);hookResult&&"object"==typeof hookResult&&"url"in hookResult&&(url=hookResult.url)}try{urlObj=new URL(url)}catch(e){console.error("Error constructing URL:",e),cb(Error(`Invalid URL: ${e}`));return}let getFetch=async()=>(null==loaderHook?void 0:loaderHook.fetch)?(e,t)=>lazyLoaderHookFetch(e,t,loaderHook):"u"{try{var _vm_constants;let requireFn,res=await f(urlObj.href),data=await res.text(),[path,vm]=await Promise.all([importNodeModule("path"),importNodeModule("vm")]),scriptContext={exports:{},module:{exports:{}}},urlDirname=urlObj.pathname.split("/").slice(0,-1).join("/"),filename=path.basename(urlObj.pathname),script=new vm.Script(`(function(exports, module, require, __dirname, __filename) {${data} -})`,{filename,importModuleDynamically:(null==(_vm_constants=vm.constants)?void 0:_vm_constants.USE_MAIN_CONTEXT_DEFAULT_LOADER)??importNodeModule});requireFn=eval("require"),script.runInThisContext()(scriptContext.exports,scriptContext.module,requireFn,urlDirname,filename);let exportedInterface=scriptContext.module.exports||scriptContext.exports;if(attrs&&exportedInterface&&attrs.globalName)return void cb(void 0,exportedInterface[attrs.globalName]||exportedInterface);cb(void 0,exportedInterface)}catch(e){cb(e instanceof Error?e:Error(`Script execution error: ${e}`))}};getFetch().then(async e=>{if((null==attrs?void 0:attrs.type)==="esm"||(null==attrs?void 0:attrs.type)==="module")return loadModule(urlObj.href,{fetch:e,vm:await importNodeModule("vm")}).then(async e=>{await e.evaluate(),cb(void 0,e.namespace)}).catch(e=>{cb(e instanceof Error?e:Error(`Script execution error: ${e}`))});handleScriptFetch(e,urlObj)}).catch(e=>{cb(e)})}:(e,t,r,o)=>{t(Error("createScriptNode is disabled in non-Node.js environment"))},loadScriptNode="u"new Promise((r,o)=>{createScriptNode(e,(e,n)=>{if(e)o(e);else{var a,i;let e=(null==t||null==(a=t.attrs)?void 0:a.globalName)||`__FEDERATION_${null==t||null==(i=t.attrs)?void 0:i.name}:custom__`;r(globalThis[e]=n)}},t.attrs,t.loaderHook)}):(e,t)=>{throw Error("loadScriptNode is disabled in non-Node.js environment")},esmModuleCache=new Map;async function loadModule(e,t){if(esmModuleCache.has(e))return esmModuleCache.get(e);let{fetch:r,vm:o}=t,n=await (await r(e)).text(),a=new o.SourceTextModule(n,{importModuleDynamically:async(r,o)=>loadModule(new URL(r,e).href,t)});return esmModuleCache.set(e,a),await a.link(async r=>{let o=new URL(r,e).href;return await loadModule(o,t)}),a}exports.createScriptNode=createScriptNode,exports.loadScriptNode=loadScriptNode},6967(e,t){t.normalizeOptions=function(e,t,r){return function(o){if(!1===o)return!1;if(void 0===o)if(e)return t;else return!1;if(!0===o)return t;if(o&&"object"==typeof o)return{...t,...o};throw Error(`Unexpected type for \`${r}\`, expect boolean/undefined/object, got: ${typeof o}`)}}},7345(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ConsumeSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},8841(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerPlugin_exports",{enumerable:!0,get:function(){return o}})},8798(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerReferencePlugin_exports",{enumerable:!0,get:function(){return o}})},7765(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ModuleFederationPlugin_exports",{enumerable:!0,get:function(){return o}})},5448(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ProvideSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},1993(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"SharePlugin_exports",{enumerable:!0,get:function(){return o}})},3417(e,t,r){let o=r(586),n=r(6883),a="[ Federation Runtime ]",i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:o.SEPARATOR,a=e.split(r),i="development"===n.getProcessEnv().NODE_ENV&&t,s="*",l=e=>e.startsWith("http")||e.includes(o.MANIFEST_EXT);if(a.length>=2){let[t,...o]=a;e.startsWith(r)&&(t=a.slice(0,2).join(r),o=[i||a.slice(2).join(r)]);let n=i||o.join(r);return l(n)?{name:t,entry:n}:{name:t,version:n||s}}if(1===a.length){let[e]=a;return i&&l(i)?{name:e,entry:i}:{name:e,version:i||s}}throw`Invalid entry value: ${e}`},s=function(){for(var e=arguments.length,t=Array(e),r=0;rt?e?`${e}${o.SEPARATOR}${t}`:t:e,""):""},l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];try{let n=r?".js":"";return`${t}${e.replace(RegExp(`${o.NameTransformSymbol.AT}`,"g"),o.NameTransformMap[o.NameTransformSymbol.AT]).replace(RegExp(`${o.NameTransformSymbol.HYPHEN}`,"g"),o.NameTransformMap[o.NameTransformSymbol.HYPHEN]).replace(RegExp(`${o.NameTransformSymbol.SLASH}`,"g"),o.NameTransformMap[o.NameTransformSymbol.SLASH])}${n}`}catch(e){throw e}},u=function(e,t,r){try{let n=e;if(t){if(!n.startsWith(t))return n;n=n.replace(RegExp(t,"g"),"")}return n=n.replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.AT]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.AT]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.SLASH]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.SLASH]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.HYPHEN]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.HYPHEN]]),r&&(n=n.replace(".js","")),n}catch(e){throw e}},c=(e,t)=>{if(!e)return"";let r=e;return"."===r&&(r="default_export"),r.startsWith("./")&&(r=r.replace("./","")),l(r,"__federation_expose_",t)},d=(e,t)=>e?l(e,"__federation_shared_",t):"",f=(e,t)=>{if("getPublicPath"in e){let r;return r=e.getPublicPath.startsWith("function")?Function("return "+e.getPublicPath)()():Function(e.getPublicPath)(),`${r}${t}`}return"publicPath"in e?!n.isBrowserEnv()&&!n.isReactNativeEnv()&&"ssrPublicPath"in e&&"string"==typeof e.ssrPublicPath?`${e.ssrPublicPath}${t}`:`${e.publicPath}${t}`:(console.warn("Cannot get resource URL. If in debug mode, please ignore.",e,t),"")},p=e=>{throw Error(`${a}: ${e}`)},h=e=>{console.warn(`${a}: ${e}`)};function m(e){try{return JSON.stringify(e,null,2)}catch(e){return""}}let g=/^([\d^=v<>~]|[*xX]$)/;function y(e){return g.test(e)}t.assert=(e,t)=>{e||p(t)},t.composeKeyWithSeparator=s,t.decodeName=u,t.encodeName=l,t.error=p,t.generateExposeFilename=c,t.generateShareFilename=d,t.getResourceUrl=f,t.isRequiredVersion=y,t.parseEntry=i,t.safeToString=m,t.warn=h},7363(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},2069(e,t){t.attachShareScopeMap=function(e){e.S&&!e.federation.hasAttachShareScopeMap&&e.federation.instance&&e.federation.instance.shareScopeMap&&(e.S=e.federation.instance.shareScopeMap,e.federation.hasAttachShareScopeMap=!0)}},6897(e,t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),t.FEDERATION_SUPPORTED_TYPES=["script"]},916(e,t,r){let o=r(2069),n=r(5216),a=r(7617);t.consumes=function(e){n.updateConsumeOptions(e);let{chunkId:t,promises:r,installedModules:i,webpackRequire:s,chunkMapping:l,moduleToHandlerMapping:u}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{if(s.o(i,e))return r.push(i[e]);let t=t=>{i[e]=0,s.m[e]=r=>{var o;delete s.c[e];let n=t(),{shareInfo:a}=u[e];if((null==a||null==(o=a.shareConfig)?void 0:o.layer)&&n&&"object"==typeof n)try{n.hasOwnProperty("layer")&&void 0!==n.layer||(n.layer=a.shareConfig.layer)}catch(e){}r.exports=n}},o=t=>{delete i[e],s.m[e]=r=>{throw delete s.c[e],t}};try{let n=s.federation.instance;if(!n)throw Error("Federation instance not found!");let{shareKey:l,getter:c,shareInfo:d,treeShakingGetter:f}=u[e],p=a.getUsedExports(s,l),h={...d};Array.isArray(h.scope)&&Array.isArray(h.scope[0])&&(h.scope=h.scope[0]),p&&(h.treeShaking={usedExports:p,useIn:[n.options.name]});let m=n.loadShare(l,{customShareInfo:h}).then(e=>!1===e?(null==f?void 0:f())||c():e);m.then?r.push(i[e]=m.then(t).catch(o)):t(m)}catch(e){o(e)}})}},8167(e,t){t.getSharedFallbackGetter=e=>{let{shareKey:t,factory:r,version:o,webpackRequire:n,libraryType:a="global"}=e,{runtime:i,instance:s,bundlerRuntime:l,sharedFallback:u}=n.federation;if(!u)return r;let c=u[t];if(!c)return r;let d=o?c.find(e=>e[1]===o):c[0];if(!d)throw Error(`No fallback item found for shareKey: ${t} and version: ${o}`);return()=>i.getRemoteEntry({origin:n.federation.instance,remoteInfo:{name:d[2],entry:`${n.p}${d[0]}`,type:a,entryGlobalName:d[2],shareScope:"default"}}).then(e=>{if(!e)throw Error(`Failed to load fallback entry for shareKey: ${t} and version: ${o}`);return e.init(n.federation.instance,l).then(()=>e.get())})}},7617(e,t){t.getUsedExports=function(e,t){let r=e.federation.usedExports;if(r)return r[t]}},6927(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});let o=r(7363),n=r(2069),a=r(6310),i=r(916),s=r(6777),l=r(1735),u=r(7440),c=r(8531),d=r(8167),f=r(9782),p={runtime:f=o.__toESM(f),instance:void 0,initOptions:void 0,bundlerRuntime:{remotes:a.remotes,consumes:i.consumes,I:s.initializeSharing,S:{},installInitialConsumes:l.installInitialConsumes,initContainerEntry:u.initContainerEntry,init:c.init,getSharedFallbackGetter:d.getSharedFallbackGetter},attachShareScopeMap:n.attachShareScopeMap,bundlerRuntimeOptions:{}},h=p.instance,m=p.initOptions,g=p.bundlerRuntime,y=p.bundlerRuntimeOptions;t.attachShareScopeMap=n.attachShareScopeMap,t.bundlerRuntime=g,t.bundlerRuntimeOptions=y,t.default=p,t.initOptions=m,t.instance=h,Object.defineProperty(t,"runtime",{enumerable:!0,get:function(){return f}})},8531(e,t,r){let o=r(7363),n=r(9782),a=r(3129);a=o.__toESM(a),t.init=function(e){var t;let{webpackRequire:o}=e,{initOptions:i,runtime:s,sharedFallback:l,bundlerRuntime:u,libraryType:c}=o.federation;if(!i)throw Error("initOptions is required!");let d=function(){return{name:"tree-shake-plugin",beforeInit(e){let{userOptions:t,origin:i,options:s}=e,d=t.version||s.version;if(!l)return e;let f=t.shared||{},p=[];Object.keys(f).forEach(e=>{(Array.isArray(f[e])?f[e]:[f[e]]).forEach(t=>{if(p.push([e,t]),"get"in t){var r;(r=t).treeShaking||(r.treeShaking={}),t.treeShaking.get=t.get,t.get=u.getSharedFallbackGetter({shareKey:e,factory:t.get,webpackRequire:o,libraryType:c,version:t.version})}})});let h=a.default.global.getGlobalSnapshotInfoByModuleInfo({name:i.name,version:d});if(!h||!("shared"in h))return e;Object.keys(s.shared||{}).forEach(e=>{s.shared[e].forEach(t=>{p.push([e,t])})});let m=(e,t)=>{let o=h.shared.find(t=>t.sharedName===e);if(!o)return;let{treeShaking:a}=t;if(!a)return;let{secondarySharedTreeShakingName:s,secondarySharedTreeShakingEntry:l,treeShakingStatus:u}=o;a.status!==u&&(a.status=u,l&&c&&s&&(a.get=async()=>{let e=await (0,n.getRemoteEntry)({origin:i,remoteInfo:{name:s,entry:l,type:c,entryGlobalName:s,shareScope:"default"}});return await e.init(i,r.federation.bundlerRuntime),e.get()}))};return p.forEach(e=>{let[t,r]=e;m(t,r)}),e}}};return(t=i).plugins||(t.plugins=[]),i.plugins.push(d()),s.init(i)}},7440(e,t){t.initContainerEntry=function(e){let{webpackRequire:t,shareScope:r,initScope:o,shareScopeKey:n,remoteEntryInitOptions:a}=e;if(!t.S||!t.federation||!t.federation.instance||!t.federation.initOptions)return;let i=t.federation.instance;i.initOptions({name:t.federation.initOptions.name,remotes:[],...a});let s=null==a?void 0:a.shareScopeKeys,l=null==a?void 0:a.shareScopeMap;if(n&&"string"!=typeof n)n.forEach(e=>{if(!s||!l)return void i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}});l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})});else{let e=n||"default";Array.isArray(s)?s.forEach(e=>{l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}):i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}return(t.federation.attachShareScopeMap&&t.federation.attachShareScopeMap(t),"function"==typeof t.federation.prefetch&&t.federation.prefetch(),Array.isArray(n))?t.federation.initOptions.shared?t.I(n,o):Promise.all(n.map(e=>t.I(e,o))).then(()=>!0):t.I(n||"default",o)}},6777(e,t,r){let o=r(2069),n=r(6897);t.initializeSharing=function(e){let{shareScopeName:t,webpackRequire:r,initPromises:a,initTokens:i,initScope:s}=e,l=Array.isArray(t)?t:[t];var u=[],c=function(e){s||(s=[]);let l=r.federation.instance;var u=i[e];if(u||(u=i[e]={from:l.name}),s.indexOf(u)>=0)return;s.push(u);let c=a[e];if(c)return c;var d=e=>"u">typeof console&&console.warn&&console.warn(e),f=o=>{var n=e=>d("Initialization of sharing external failed: "+e);try{var a=r(o);if(!a)return;var i=o=>o&&o.init&&o.init(r.S[e],s,{shareScopeMap:r.S||{},shareScopeKeys:t});if(a.then)return p.push(a.then(i,n));var l=i(a);if(l&&"boolean"!=typeof l&&l.then)return p.push(l.catch(n))}catch(e){n(e)}};let p=l.initializeSharing(e,{strategy:l.options.shareStrategy,initScope:s,from:"build"});o.attachShareScopeMap(r);let h=r.federation.bundlerRuntimeOptions.remotes;return(h&&Object.keys(h.idToRemoteMap).forEach(e=>{let t=h.idToRemoteMap[e],r=h.idToExternalAndNameMapping[e][2];if(t.length>1)f(r);else if(1===t.length){let e=t[0];n.FEDERATION_SUPPORTED_TYPES.includes(e.externalType)||f(r)}}),p.length)?a[e]=Promise.all(p).then(()=>a[e]=!0):a[e]=!0};return l.forEach(e=>{u.push(c(e))}),Promise.all(u).then(()=>!0)}},1735(e,t,r){let o=r(5216),n=r(7617);function a(e){let{moduleId:t,moduleToHandlerMapping:r,webpackRequire:o,asyncLoad:a}=e,i=o.federation.instance;if(!i)throw Error("Federation instance not found!");let{shareKey:s,shareInfo:l}=r[t];try{let e=n.getUsedExports(o,s),t={...l};if(e&&(t.treeShaking={usedExports:e,useIn:[i.options.name]}),a)return i.loadShare(s,{customShareInfo:t});return i.loadShareSync(s,{customShareInfo:t})}catch(e){throw console.error('loadShareSync failed! The function should not be called unless you set "eager:true". If you do not set it, and encounter this issue, you can check whether an async boundary is implemented.'),console.error("The original error message is as follows: "),e}}t.installInitialConsumes=function(e){o.updateConsumeOptions(e);let{moduleToHandlerMapping:t,webpackRequire:r,installedModules:n,initialConsumes:i,asyncLoad:s}=e,l=[];i.forEach(e=>{let o=()=>a({moduleId:e,moduleToHandlerMapping:t,webpackRequire:r,asyncLoad:s});l.push([e,o])});let u=(e,o)=>{r.m[e]=a=>{var i;n[e]=0,delete r.c[e];let s=o();if("function"!=typeof s)throw Error(`Shared module is not available for eager consumption: ${e}`);let l=s(),{shareInfo:u}=t[e];if((null==u||null==(i=u.shareConfig)?void 0:i.layer)&&l&&"object"==typeof l)try{l.hasOwnProperty("layer")&&void 0!==l.layer||(l.layer=u.shareConfig.layer)}catch(e){}a.exports=l}};if(s)return Promise.all(l.map(async e=>{let[t,r]=e,o=await r();u(t,()=>o)}));l.forEach(e=>{let[t,r]=e;u(t,r)})}},6310(e,t,r){r(7363);let o=r(2069),n=r(6897),a=r(5216),i=r(630);t.remotes=function(e){a.updateRemoteOptions(e);let{chunkId:t,promises:r,webpackRequire:s,chunkMapping:l,idToExternalAndNameMapping:u,idToRemoteMap:c}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{let t=s.R;t||(t=[]);let o=u[e],a=c[e]||[];if(t.indexOf(o)>=0)return;if(t.push(o),o.p)return r.push(o.p);let l=t=>{t||(t=Error("Container missing")),"string"==typeof t.message&&(t.message+=` -while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,p,r):l();var p=(e,r,n)=>d(r.get,o[1],t,0,h,n),h=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let m=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(m,o[2],0,0,h,1):d(s,o[2],0,0,f,1)})}},5216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=c;if(f&&p){for(let[e,t]of Object.entries(p))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},4043(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,p,h,m=r(6927),g=r.n(m);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={"@sdk":[{alias:"@sdk",externalType:"promise",shareScope:"default"}]},_="pimcore_studio_ui_bundle_core",b="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},m=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},S=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},M=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},N={},T=[],O={},A=null==(p=r.initializeExposesData)?void 0:p.shareScope;for(let e in g())r.federation[e]=g()[e];m(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(M))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),m(r.federation,"initOptions",()=>({})),m(r.federation.initOptions,"name",()=>_),m(r.federation.initOptions,"shareStrategy",()=>b),m(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),m(r.federation,"bundlerRuntimeOptions",()=>({})),m(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),m(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>S),m(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),m(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),m(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:S,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:N,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:T,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(h=r.consumesLoadingData)?void 0:h.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:N,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}},8448(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](r,r.exports,__webpack_require__),r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(7570),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return 544==e},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(r,o){if(1&o&&(r=this(r)),8&o||"object"==typeof r&&r&&(4&o&&r.__esModule||16&o&&"function"==typeof r.then))return r;var n=Object.create(null);__webpack_require__.r(n);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&o&&r;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>r[e]});return a.default=()=>r,__webpack_require__.d(n,a),n}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>""+e+".javascript"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[8448]},uniqueName:"pimcore_studio_ui_bundle_core"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{},moduleIdToConsumeDataMapping:{},initialConsumes:[]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={544:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(544==t){var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}else e[t]=0};var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);s&&s(__webpack_require__)}for(t&&t(r);l{__webpack_require__.remotesLoadingData={chunkMapping:{742:["9005"]},moduleIdToRemoteDataMapping:{9005:{shareScope:"default",name:"./_internal_/mf-bootstrap-document-editor-iframe",externalModuleId:8448,remoteName:"@sdk"}}},__webpack_require__.f.remotes=__webpack_require__.f.remotes||function(){throw Error("should have __webpack_require__.f.remotes")}})(),(()=>{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(4043)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js b/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js deleted file mode 100644 index 294bba6d33..0000000000 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/static/js/main.a860ba0a.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! For license information please see main.a860ba0a.js.LICENSE.txt */ -(()=>{var __webpack_modules__={5095(e,t,r){r.e("517").then(r.t.bind(r,8476,23))},6619(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8130);t.logAndReport=function(e,t,r,n,a,i){return n(o.getShortErrorMsg(e,t,r,a))}},9810(e,t,r){let o=r(924),n={[o.RUNTIME_001]:"Failed to get remoteEntry exports.",[o.RUNTIME_002]:'The remote entry interface does not contain "init"',[o.RUNTIME_003]:"Failed to get manifest.",[o.RUNTIME_004]:"Failed to locate remote.",[o.RUNTIME_005]:"Invalid loadShareSync function call from bundler runtime",[o.RUNTIME_006]:"Invalid loadShareSync function call from runtime",[o.RUNTIME_007]:"Failed to get remote snapshot.",[o.RUNTIME_008]:"Failed to load script resources.",[o.RUNTIME_009]:"Please call createInstance first.",[o.RUNTIME_010]:'The name option cannot be changed after initialization. If you want to create a new instance with a different name, please use "createInstance" api.',[o.RUNTIME_011]:"The remoteEntry URL is missing from the remote snapshot."},a={[o.TYPE_001]:"Failed to generate type declaration. Execute the below cmd to reproduce and fix the error."},i={[o.BUILD_001]:"Failed to find expose module.",[o.BUILD_002]:"PublicPath is required in prod mode."},s={...n,...a,...i};t.buildDescMap=i,t.errorDescMap=s,t.runtimeDescMap=n,t.typeDescMap=a},924(e,t){let r="RUNTIME-001",o="RUNTIME-002",n="RUNTIME-003",a="RUNTIME-004",i="RUNTIME-005",s="RUNTIME-006",l="RUNTIME-007",u="RUNTIME-008",c="RUNTIME-009",d="RUNTIME-010",f="RUNTIME-011",p="TYPE-001",h="BUILD-002";t.BUILD_001="BUILD-001",t.BUILD_002=h,t.RUNTIME_001=r,t.RUNTIME_002=o,t.RUNTIME_003=n,t.RUNTIME_004=a,t.RUNTIME_005=i,t.RUNTIME_006=s,t.RUNTIME_007=l,t.RUNTIME_008=u,t.RUNTIME_009=c,t.RUNTIME_010=d,t.RUNTIME_011=f,t.TYPE_001=p},8130(e,t){let r=e=>`View the docs to see how to solve: https://module-federation.io/guide/troubleshooting/${e.split("-")[0].toLowerCase()}#${e.toLowerCase()}`;t.getShortErrorMsg=(e,t,o,n)=>{let a=[`${[t[e]]} #${e}`];return o&&a.push(`args: ${JSON.stringify(o)}`),a.push(r(e)),n&&a.push(`Original Error Message: - ${n}`),a.join("\n")}},4363(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(924),n=r(8130),a=r(9810);t.BUILD_001=o.BUILD_001,t.BUILD_002=o.BUILD_002,t.RUNTIME_001=o.RUNTIME_001,t.RUNTIME_002=o.RUNTIME_002,t.RUNTIME_003=o.RUNTIME_003,t.RUNTIME_004=o.RUNTIME_004,t.RUNTIME_005=o.RUNTIME_005,t.RUNTIME_006=o.RUNTIME_006,t.RUNTIME_007=o.RUNTIME_007,t.RUNTIME_008=o.RUNTIME_008,t.RUNTIME_009=o.RUNTIME_009,t.RUNTIME_010=o.RUNTIME_010,t.RUNTIME_011=o.RUNTIME_011,t.TYPE_001=o.TYPE_001,t.buildDescMap=a.buildDescMap,t.errorDescMap=a.errorDescMap,t.getShortErrorMsg=n.getShortErrorMsg,t.runtimeDescMap=a.runtimeDescMap,t.typeDescMap=a.typeDescMap},1748(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},2926(e,t){let r="default";t.DEFAULT_REMOTE_TYPE="global",t.DEFAULT_SCOPE=r},5871(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(7829),s=r(8457),l=r(556);r(1132);let u=r(2003),c=r(6227),d=r(2964),f=r(2593),p=r(2299),h=r(317);r(4317);let m=r(4260),g=r(4710),y=r(9152),E=r(7300),_=r(1777),b=r(630),S=r(4363);t.ModuleFederation=class{initOptions(e){e.name&&e.name!==this.options.name&&o.error((0,S.getShortErrorMsg)(S.RUNTIME_010,S.runtimeDescMap)),this.registerPlugins(e.plugins);let t=this.formatOptions(this.options,e);return this.options=t,t}async loadShare(e,t){return this.sharedHandler.loadShare(e,t)}loadShareSync(e,t){return this.sharedHandler.loadShareSync(e,t)}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0;return this.sharedHandler.initializeSharing(e,t)}initRawContainer(e,t,r){let o=l.getRemoteInfo({name:e,entry:t}),n=new u.Module({host:this,remoteInfo:o});return n.remoteEntryExports=r,this.moduleCache.set(e,n),n}async loadRemote(e,t){return this.remoteHandler.loadRemote(e,t)}async preloadRemote(e){return this.remoteHandler.preloadRemote(e)}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.sharedHandler.initShareScopeMap(e,t,r)}formatOptions(e,t){let{allShareInfos:r}=a.formatShareConfigs(e,t),{userOptions:o,options:n}=this.hooks.lifecycle.beforeInit.emit({origin:this,userOptions:t,options:e,shareInfo:r}),i=this.remoteHandler.formatAndRegisterRemote(n,o),{allShareInfos:s}=this.sharedHandler.registerShared(n,o),l=[...n.plugins];o.plugins&&o.plugins.forEach(e=>{l.includes(e)||l.push(e)});let u={...e,...t,plugins:l,remotes:i,shared:s};return this.hooks.lifecycle.init.emit({origin:this,options:u}),u}registerPlugins(e){let t=s.registerPlugins(e,this);this.options.plugins=this.options.plugins.reduce((e,t)=>(t&&e&&!e.find(e=>e.name===t.name)&&e.push(t),e),t||[])}registerRemotes(e,t){return this.remoteHandler.registerRemotes(e,t)}registerShared(e){this.sharedHandler.registerShared(this.options,{...this.options,shared:e})}constructor(e){this.hooks=new h.PluginSystem({beforeInit:new f.SyncWaterfallHook("beforeInit"),init:new c.SyncHook,beforeInitContainer:new p.AsyncWaterfallHook("beforeInitContainer"),initContainer:new p.AsyncWaterfallHook("initContainer")}),this.version="2.2.3",this.moduleCache=new Map,this.loaderHook=new h.PluginSystem({getModuleInfo:new c.SyncHook,createScript:new c.SyncHook,createLink:new c.SyncHook,fetch:new d.AsyncHook,loadEntryError:new d.AsyncHook,getModuleFactory:new d.AsyncHook}),this.bridgeHook=new h.PluginSystem({beforeBridgeRender:new c.SyncHook,afterBridgeRender:new c.SyncHook,beforeBridgeDestroy:new c.SyncHook,afterBridgeDestroy:new c.SyncHook});const t=[m.snapshotPlugin(),g.generatePreloadAssetsPlugin()],r={id:i.getBuilderId(),name:e.name,plugins:t,remotes:[],shared:{},inBrowser:b.isBrowserEnvValue};this.name=e.name,this.options=r,this.snapshotHandler=new y.SnapshotHandler(this),this.sharedHandler=new E.SharedHandler(this),this.remoteHandler=new _.RemoteHandler(this),this.shareScopeMap=this.sharedHandler.shareScopeMap,this.registerPlugins([...r.plugins,...e.plugins||[]]),this.options=this.formatOptions(r,e)}}},4391(e,t,r){let o=r(8628),n=r(9350),a=r(630),i="object"==typeof globalThis?globalThis:window,s=(()=>{try{return document.defaultView}catch{return i}})(),l=s;function u(e,t,r){Object.defineProperty(e,t,{value:r,configurable:!1,writable:!0})}function c(e,t){return Object.hasOwnProperty.call(e,t)}c(i,"__GLOBAL_LOADING_REMOTE_ENTRY__")||u(i,"__GLOBAL_LOADING_REMOTE_ENTRY__",{});let d=i.__GLOBAL_LOADING_REMOTE_ENTRY__;function f(e){var t,r,o,n,a,i;c(e,"__VMOK__")&&!c(e,"__FEDERATION__")&&u(e,"__FEDERATION__",e.__VMOK__),c(e,"__FEDERATION__")||(u(e,"__FEDERATION__",{__GLOBAL_PLUGIN__:[],__INSTANCES__:[],moduleInfo:{},__SHARE__:{},__MANIFEST_LOADING__:{},__PRELOADED_MAP__:new Map}),u(e,"__VMOK__",e.__FEDERATION__)),(t=e.__FEDERATION__).__GLOBAL_PLUGIN__??(t.__GLOBAL_PLUGIN__=[]),(r=e.__FEDERATION__).__INSTANCES__??(r.__INSTANCES__=[]),(o=e.__FEDERATION__).moduleInfo??(o.moduleInfo={}),(n=e.__FEDERATION__).__SHARE__??(n.__SHARE__={}),(a=e.__FEDERATION__).__MANIFEST_LOADING__??(a.__MANIFEST_LOADING__={}),(i=e.__FEDERATION__).__PRELOADED_MAP__??(i.__PRELOADED_MAP__=new Map)}function p(){i.__FEDERATION__.__GLOBAL_PLUGIN__=[],i.__FEDERATION__.__INSTANCES__=[],i.__FEDERATION__.moduleInfo={},i.__FEDERATION__.__SHARE__={},i.__FEDERATION__.__MANIFEST_LOADING__={},Object.keys(d).forEach(e=>{delete d[e]})}function h(e){i.__FEDERATION__.__INSTANCES__.push(e)}function m(){return i.__FEDERATION__.__DEBUG_CONSTRUCTOR__}function g(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,a.isDebugMode)();t&&(i.__FEDERATION__.__DEBUG_CONSTRUCTOR__=e,i.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__="2.2.3")}function y(e,t){if("string"==typeof t)if(e[t])return{value:e[t],key:t};else{for(let r of Object.keys(e)){let[o,n]=r.split(":"),a=`${o}:${t}`,i=e[a];if(i)return{value:i,key:a}}return{value:void 0,key:t}}o.error(`getInfoWithoutType: "key" must be a string, got ${typeof t} (${JSON.stringify(t)}).`)}f(i),f(s);let E=()=>s.__FEDERATION__.moduleInfo,_=(e,t)=>{let r=y(t,n.getFMId(e)).value;if(r&&!r.version&&"version"in e&&e.version&&(r.version=e.version),r)return r;if("version"in e&&e.version){let{version:t,...r}=e,o=n.getFMId(r),a=y(s.__FEDERATION__.moduleInfo,o).value;if((null==a?void 0:a.version)===t)return a}},b=e=>_(e,s.__FEDERATION__.moduleInfo),S=(e,t)=>{let r=n.getFMId(e);return s.__FEDERATION__.moduleInfo[r]=t,s.__FEDERATION__.moduleInfo},v=e=>(s.__FEDERATION__.moduleInfo={...s.__FEDERATION__.moduleInfo,...e},()=>{for(let t of Object.keys(e))delete s.__FEDERATION__.moduleInfo[t]}),R=(e,t)=>{let r=t||`__FEDERATION_${e}:custom__`;return{remoteEntryKey:r,entryExports:i[r]}},I=e=>{let{__GLOBAL_PLUGIN__:t}=s.__FEDERATION__;e.forEach(e=>{-1===t.findIndex(t=>t.name===e.name)?t.push(e):o.warn(`The plugin ${e.name} has been registered.`)})},M=()=>s.__FEDERATION__.__GLOBAL_PLUGIN__,N=e=>i.__FEDERATION__.__PRELOADED_MAP__.get(e),T=e=>i.__FEDERATION__.__PRELOADED_MAP__.set(e,!0);t.CurrentGlobal=i,t.Global=l,t.addGlobalSnapshot=v,t.getGlobalFederationConstructor=m,t.getGlobalHostPlugins=M,t.getGlobalSnapshot=E,t.getGlobalSnapshotInfoByModuleInfo=b,t.getInfoWithoutType=y,t.getPreloaded=N,t.getRemoteEntryExports=R,t.getTargetSnapshotInfoByModuleInfo=_,t.globalLoading=d,t.nativeGlobal=s,t.registerGlobalPlugins=I,t.resetFederationGlobalInfo=p,t.setGlobalFederationConstructor=g,t.setGlobalFederationInstance=h,t.setGlobalSnapshotInfoByModuleInfo=S,t.setPreloaded=T},3509(e,t,r){let o=r(4391),n=r(8369),a=r(6079),i=r(556);r(1132);let s=r(9599),l={getRegisteredShare:n.getRegisteredShare,getGlobalShareScope:n.getGlobalShareScope};t.default={global:{Global:o.Global,nativeGlobal:o.nativeGlobal,resetFederationGlobalInfo:o.resetFederationGlobalInfo,setGlobalFederationInstance:o.setGlobalFederationInstance,getGlobalFederationConstructor:o.getGlobalFederationConstructor,setGlobalFederationConstructor:o.setGlobalFederationConstructor,getInfoWithoutType:o.getInfoWithoutType,getGlobalSnapshot:o.getGlobalSnapshot,getTargetSnapshotInfoByModuleInfo:o.getTargetSnapshotInfoByModuleInfo,getGlobalSnapshotInfoByModuleInfo:o.getGlobalSnapshotInfoByModuleInfo,setGlobalSnapshotInfoByModuleInfo:o.setGlobalSnapshotInfoByModuleInfo,addGlobalSnapshot:o.addGlobalSnapshot,getRemoteEntryExports:o.getRemoteEntryExports,registerGlobalPlugins:o.registerGlobalPlugins,getGlobalHostPlugins:o.getGlobalHostPlugins,getPreloaded:o.getPreloaded,setPreloaded:o.setPreloaded},share:l,utils:{matchRemoteWithNameAndExpose:a.matchRemoteWithNameAndExpose,preloadAssets:s.preloadAssets,getRemoteInfo:i.getRemoteInfo}}},5922(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8628),n=r(9350),a=r(4391),i=r(3957),s=r(8369),l=r(6079),u=r(556);r(1132);let c=r(3509),d=r(2003),f=r(5871),p=r(7703),h=r(630),m=c.default;t.CurrentGlobal=a.CurrentGlobal,t.Global=a.Global,t.Module=d.Module,t.ModuleFederation=f.ModuleFederation,t.addGlobalSnapshot=a.addGlobalSnapshot,t.assert=o.assert,t.error=o.error,t.getGlobalFederationConstructor=a.getGlobalFederationConstructor,t.getGlobalSnapshot=a.getGlobalSnapshot,t.getInfoWithoutType=a.getInfoWithoutType,t.getRegisteredShare=s.getRegisteredShare,t.getRemoteEntry=u.getRemoteEntry,t.getRemoteInfo=u.getRemoteInfo,t.helpers=m,t.isStaticResourcesEqual=n.isStaticResourcesEqual,Object.defineProperty(t,"loadScript",{enumerable:!0,get:function(){return h.loadScript}}),Object.defineProperty(t,"loadScriptNode",{enumerable:!0,get:function(){return h.loadScriptNode}}),t.matchRemoteWithNameAndExpose=l.matchRemoteWithNameAndExpose,t.registerGlobalPlugins=a.registerGlobalPlugins,t.resetFederationGlobalInfo=a.resetFederationGlobalInfo,t.safeWrapper=n.safeWrapper,t.satisfy=i.satisfy,t.setGlobalFederationConstructor=a.setGlobalFederationConstructor,t.setGlobalFederationInstance=a.setGlobalFederationInstance,Object.defineProperty(t,"types",{enumerable:!0,get:function(){return p.type_exports}})},2003(e,t,r){let o=r(8628),n=r(9350),a=r(556),i=r(8393);r(1132);let s=r(630),l=r(4363);function u(e,t,r){let o=t,n=Array.isArray(e.shareScope)?e.shareScope:[e.shareScope];n.length||n.push("default"),n.forEach(e=>{o[e]||(o[e]={})});let a={version:e.version||"",shareScopeKeys:Array.isArray(e.shareScope)?n:e.shareScope||"default"};return Object.defineProperty(a,"shareScopeMap",{value:o,enumerable:!1}),{remoteEntryInitOptions:a,shareScope:o[n[0]],initScope:r??[]}}t.Module=class{async getEntry(){if(this.remoteEntryExports)return this.remoteEntryExports;let e=await a.getRemoteEntry({origin:this.host,remoteInfo:this.remoteInfo,remoteEntryExports:this.remoteEntryExports});return o.assert(e,`remoteEntryExports is undefined - ${(0,s.safeToString)(this.remoteInfo)}`),this.remoteEntryExports=e,this.remoteEntryExports}async init(e,t,r){let n=await this.getEntry();if(this.inited)return n;if(this.initPromise)return await this.initPromise,n;this.initing=!0,this.initPromise=(async()=>{let{remoteEntryInitOptions:a,shareScope:s,initScope:c}=u(this.remoteInfo,this.host.shareScopeMap,r),d=await this.host.hooks.lifecycle.beforeInitContainer.emit({shareScope:s,remoteEntryInitOptions:a,initScope:c,remoteInfo:this.remoteInfo,origin:this.host});void 0===(null==n?void 0:n.init)&&o.error(l.RUNTIME_002,l.runtimeDescMap,{hostName:this.host.name,remoteName:this.remoteInfo.name,remoteEntryUrl:this.remoteInfo.entry,remoteEntryKey:this.remoteInfo.entryGlobalName},void 0,i.optionsToMFContext(this.host.options)),await n.init(d.shareScope,d.initScope,d.remoteEntryInitOptions),await this.host.hooks.lifecycle.initContainer.emit({...d,id:e,remoteSnapshot:t,remoteEntryExports:n}),this.inited=!0})();try{await this.initPromise}finally{this.initing=!1,this.initPromise=void 0}return n}async get(e,t,r,a){let i,{loadFactory:s=!0}=r||{loadFactory:!0},l=await this.init(e,a);this.lib=l,(i=await this.host.loaderHook.lifecycle.getModuleFactory.emit({remoteEntryExports:l,expose:t,moduleInfo:this.remoteInfo}))||(i=await l.get(t)),o.assert(i,`${n.getFMId(this.remoteInfo)} remote don't export ${t}.`);let u=n.processModuleAlias(this.remoteInfo.name,t),c=this.wraperFactory(i,u);return s?await c():c}wraperFactory(e,t){function r(e,t){e&&"object"==typeof e&&Object.isExtensible(e)&&!Object.getOwnPropertyDescriptor(e,Symbol.for("mf_module_id"))&&Object.defineProperty(e,Symbol.for("mf_module_id"),{value:t,enumerable:!1})}return e instanceof Promise?async()=>{let o=await e();return r(o,t),o}:()=>{let o=e();return r(o,t),o}}constructor({remoteInfo:e,host:t}){this.inited=!1,this.initing=!1,this.lib=void 0,this.remoteInfo=e,this.host=t}}},4710(e,t,r){let o=r(9350),n=r(4391),a=r(8369);r(1132);let i=r(9599),s=r(4260),l=r(630);function u(e){let t=e.split(":");return 1===t.length?{name:t[0],version:void 0}:2===t.length?{name:t[0],version:t[1]}:{name:t[1],version:t[2]}}function c(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},s=arguments.length>5?arguments[5]:void 0,{value:d}=n.getInfoWithoutType(e,o.getFMId(t)),f=s||d;if(f&&!(0,l.isManifestProvider)(f)&&(r(f,t,a),f.remotesInfo))for(let t of Object.keys(f.remotesInfo)){if(i[t])continue;i[t]=!0;let o=u(t),n=f.remotesInfo[t];c(e,{name:o.name,version:n.matchedVersion},r,!1,i,void 0)}}let d=(e,t)=>document.querySelector(`${e}[${"link"===e?"href":"src"}="${t}"]`);function f(e,t,r,s,u){let f=[],p=[],h=[],m=new Set,g=new Set,{options:y}=e,{preloadConfig:E}=t,{depsRemote:_}=E;if(c(s,r,(t,r,a)=>{var s;let u;if(a)u=E;else if(Array.isArray(_)){let e=_.find(e=>e.nameOrAlias===r.name||e.nameOrAlias===r.alias);if(!e)return;u=i.defaultPreloadArgs(e)}else{if(!0!==_)return;u=E}let c=(0,l.getResourceUrl)(t,o.getRemoteEntryInfoFromSnapshot(t).url);c&&h.push({name:r.name,moduleInfo:{name:r.name,entry:c,type:"remoteEntryType"in t?t.remoteEntryType:"global",entryGlobalName:"globalName"in t?t.globalName:r.name,shareScope:"",version:"version"in t?t.version:void 0},url:c});let d="modules"in t?t.modules:[],m=i.normalizePreloadExposes(u.exposes);function g(e){let r=e.map(e=>(0,l.getResourceUrl)(t,e));return u.filter?r.filter(u.filter):r}if(m.length&&"modules"in t&&(d=null==t||null==(s=t.modules)?void 0:s.reduce((e,t)=>((null==m?void 0:m.indexOf(t.moduleName))!==-1&&e.push(t),e),[])),d){let o=d.length;for(let a=0;a0){let t=(t,r)=>{let{shared:o}=a.getRegisteredShare(e.shareScopeMap,r.sharedName,t,e.sharedHandler.hooks.lifecycle.resolveShare)||{};o&&"function"==typeof o.lib&&(r.assets.js.sync.forEach(e=>{m.add(e)}),r.assets.css.sync.forEach(e=>{g.add(e)}))};u.shared.forEach(e=>{var r;let n=null==(r=y.shared)?void 0:r[e.sharedName];if(!n)return;let a=e.version?n.find(t=>t.version===e.version):n;a&&o.arrayOptions(a).forEach(r=>{t(r,e)})})}let b=p.filter(e=>!m.has(e)&&!d("script",e));return{cssAssets:f.filter(e=>!g.has(e)&&!d("link",e)),jsAssetsWithoutEntry:b,entryAssets:h.filter(e=>!d("script",e.url))}}t.generatePreloadAssetsPlugin=function(){return{name:"generate-preload-assets-plugin",async generatePreloadAssets(e){let{origin:t,preloadOptions:r,remoteInfo:n,remote:a,globalSnapshot:i,remoteSnapshot:u}=e;return l.isBrowserEnvValue?o.isRemoteInfoWithEntry(a)&&o.isPureRemoteEntry(a)?{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[{name:a.name,url:a.entry,moduleInfo:{name:n.name,entry:a.entry,type:n.type||"global",entryGlobalName:"",shareScope:""}}]}:(s.assignRemoteInfo(n,u),f(t,r,n,i,u)):{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[]}}}}},9152(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(8393);r(1132);let s=r(2964),l=r(2299),u=r(317);r(4317);let c=r(630),d=r(4363);function f(e,t){let r=a.getGlobalSnapshotInfoByModuleInfo({name:t.name,version:t.options.version}),o=r&&"remotesInfo"in r&&r.remotesInfo&&a.getInfoWithoutType(r.remotesInfo,e.name).value;return o&&o.matchedVersion?{hostGlobalSnapshot:r,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:o.matchedVersion})}:{hostGlobalSnapshot:void 0,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:"version"in e?e.version:void 0})}}t.SnapshotHandler=class{async loadRemoteSnapshotInfo(e){let t,r,{moduleInfo:s,id:l,expose:u}=e,{options:f}=this.HostInstance;await this.hooks.lifecycle.beforeLoadRemoteSnapshot.emit({options:f,moduleInfo:s});let p=a.getGlobalSnapshotInfoByModuleInfo({name:this.HostInstance.options.name,version:this.HostInstance.options.version});p||(p={version:this.HostInstance.options.version||"",remoteEntry:"",remotesInfo:{}},a.addGlobalSnapshot({[this.HostInstance.options.name]:p})),p&&"remotesInfo"in p&&!a.getInfoWithoutType(p.remotesInfo,s.name).value&&("version"in s||"entry"in s)&&(p.remotesInfo={...null==p?void 0:p.remotesInfo,[s.name]:{matchedVersion:"version"in s?s.version:s.entry}});let{hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g}=this.getGlobalRemoteInfo(s),{remoteSnapshot:y,globalSnapshot:E}=await this.hooks.lifecycle.loadSnapshot.emit({options:f,moduleInfo:s,hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g});if(y)if((0,c.isManifestProvider)(y)){let e=c.isBrowserEnvValue?y.remoteEntry:y.ssrRemoteEntry||y.remoteEntry||"",o=await this.getManifestJson(e,s,{}),n=a.setGlobalSnapshotInfoByModuleInfo({...s,entry:e},o);t=o,r=n}else{let{remoteSnapshot:e}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:y,from:"global"});t=e,r=E}else if(n.isRemoteInfoWithEntry(s)){let e=await this.getManifestJson(s.entry,s,{}),o=a.setGlobalSnapshotInfoByModuleInfo(s,e),{remoteSnapshot:n}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:e,from:"global"});t=n,r=o}else o.error(d.RUNTIME_007,d.runtimeDescMap,{remoteName:s.name,remoteVersion:s.version,hostName:this.HostInstance.options.name,globalSnapshot:JSON.stringify(E)},void 0,i.optionsToMFContext(this.HostInstance.options));return await this.hooks.lifecycle.afterLoadSnapshot.emit({id:l,host:this.HostInstance,options:f,moduleInfo:s,remoteSnapshot:t}),{remoteSnapshot:t,globalSnapshot:r}}getGlobalRemoteInfo(e){return f(e,this.HostInstance)}async getManifestJson(e,t,r){let n=async()=>{let r=this.manifestCache.get(e);if(r)return r;try{let t=await this.loaderHook.lifecycle.fetch.emit(e,{});t&&t instanceof Response||(t=await fetch(e,{})),r=await t.json()}catch(n){(r=await this.HostInstance.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:n,from:"runtime",lifecycle:"afterResolve",origin:this.HostInstance}))||(delete this.manifestLoading[e],o.error(d.RUNTIME_003,d.runtimeDescMap,{manifestUrl:e,moduleName:t.name,hostName:this.HostInstance.options.name},`${n}`,i.optionsToMFContext(this.HostInstance.options)))}return o.assert(r.metaData&&r.exposes&&r.shared,`"${e}" is not a valid federation manifest for remote "${t.name}". Missing required fields: ${[!r.metaData&&"metaData",!r.exposes&&"exposes",!r.shared&&"shared"].filter(Boolean).join(", ")}.`),this.manifestCache.set(e,r),r},a=async()=>{let r=await n(),o=(0,c.generateSnapshotFromManifest)(r,{version:e}),{remoteSnapshot:a}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:t,manifestJson:r,remoteSnapshot:o,manifestUrl:e,from:"manifest"});return a};return this.manifestLoading[e]||(this.manifestLoading[e]=a().then(e=>e)),this.manifestLoading[e]}constructor(e){this.loadingHostSnapshot=null,this.manifestCache=new Map,this.hooks=new u.PluginSystem({beforeLoadRemoteSnapshot:new s.AsyncHook("beforeLoadRemoteSnapshot"),loadSnapshot:new l.AsyncWaterfallHook("loadGlobalSnapshot"),loadRemoteSnapshot:new l.AsyncWaterfallHook("loadRemoteSnapshot"),afterLoadSnapshot:new l.AsyncWaterfallHook("afterLoadSnapshot")}),this.manifestLoading=a.Global.__FEDERATION__.__MANIFEST_LOADING__,this.HostInstance=e,this.loaderHook=e.loaderHook}},t.getGlobalRemoteInfo=f},4260(e,t,r){let o=r(8628),n=r(9350);r(1132);let a=r(9599),i=r(630),s=r(4363);function l(e,t){let r=n.getRemoteEntryInfoFromSnapshot(t);r.url||o.error(s.RUNTIME_011,s.runtimeDescMap,{remoteName:e.name});let a=(0,i.getResourceUrl)(t,r.url);i.isBrowserEnvValue||a.startsWith("http")||(a=`https:${a}`),e.type=r.type,e.entryGlobalName=r.globalName,e.entry=a,e.version=t.version,e.buildVersion=t.buildVersion}function u(){return{name:"snapshot-plugin",async afterResolve(e){let{remote:t,pkgNameOrAlias:r,expose:o,origin:i,remoteInfo:s,id:u}=e;if(!n.isRemoteInfoWithEntry(t)||!n.isPureRemoteEntry(t)){let{remoteSnapshot:n,globalSnapshot:c}=await i.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:t,id:u});l(s,n);let d={remote:t,preloadConfig:{nameOrAlias:r,exposes:[o],resourceCategory:"sync",share:!1,depsRemote:!1}},f=await i.remoteHandler.hooks.lifecycle.generatePreloadAssets.emit({origin:i,preloadOptions:d,remoteInfo:s,remote:t,remoteSnapshot:n,globalSnapshot:c});return f&&a.preloadAssets(s,i,f,!1),{...e,remoteSnapshot:n}}return e}}}t.assignRemoteInfo=l,t.snapshotPlugin=u},1777(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(8369),s=r(6079),l=r(556),u=r(8393);r(1132);let c=r(9599),d=r(2003),f=r(6227),p=r(2964),h=r(2593),m=r(2299),g=r(317);r(4317);let y=r(9152),E=r(630),_=r(4363);t.RemoteHandler=class{formatAndRegisterRemote(e,t){return(t.remotes||[]).reduce((e,t)=>(this.registerRemote(t,e,{force:!1}),e),e.remotes)}setIdToRemoteMap(e,t){let{remote:r,expose:o}=t,{name:n,alias:a}=r;if(this.idToRemoteMap[e]={name:r.name,expose:o},a&&e.startsWith(n)){let t=e.replace(n,a);this.idToRemoteMap[t]={name:r.name,expose:o};return}if(a&&e.startsWith(a)){let t=e.replace(a,n);this.idToRemoteMap[t]={name:r.name,expose:o}}}async loadRemote(e,t){let{host:r}=this;try{let{loadFactory:o=!0}=t||{loadFactory:!0},{module:n,moduleOptions:a,remoteMatchInfo:i}=await this.getRemoteModuleAndOptions({id:e}),{pkgNameOrAlias:s,remote:l,expose:u,id:c,remoteSnapshot:d}=i,f=await n.get(c,u,t,d),p=await this.hooks.lifecycle.onLoad.emit({id:c,pkgNameOrAlias:s,expose:u,exposeModule:o?f:void 0,exposeModuleFactory:o?void 0:f,remote:l,options:a,moduleInstance:n,origin:r});if(this.setIdToRemoteMap(e,i),"function"==typeof p)return p;return f}catch(a){let{from:o="runtime"}=t||{from:"runtime"},n=await this.hooks.lifecycle.errorLoadRemote.emit({id:e,error:a,from:o,lifecycle:"onLoad",origin:r});if(!n)throw a;return n}}async preloadRemote(e){let{host:t}=this;await this.hooks.lifecycle.beforePreloadRemote.emit({preloadOps:e,options:t.options,origin:t});let r=c.formatPreloadArgs(t.options.remotes,e);await Promise.all(r.map(async e=>{let{remote:r}=e,o=l.getRemoteInfo(r),{globalSnapshot:n,remoteSnapshot:a}=await t.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:r}),i=await this.hooks.lifecycle.generatePreloadAssets.emit({origin:t,preloadOptions:e,remote:r,remoteInfo:o,globalSnapshot:n,remoteSnapshot:a});i&&c.preloadAssets(o,t,i)}))}registerRemotes(e,t){let{host:r}=this;e.forEach(e=>{this.registerRemote(e,r.options.remotes,{force:null==t?void 0:t.force})})}async getRemoteModuleAndOptions(e){let t,{host:r}=this,{id:n}=e;try{t=await this.hooks.lifecycle.beforeRequest.emit({id:n,options:r.options,origin:r})}catch(e){if(!(t=await this.hooks.lifecycle.errorLoadRemote.emit({id:n,options:r.options,origin:r,from:"runtime",error:e,lifecycle:"beforeRequest"})))throw e}let{id:a}=t,i=s.matchRemoteWithNameAndExpose(r.options.remotes,a);i||o.error(_.RUNTIME_004,_.runtimeDescMap,{hostName:r.options.name,requestId:a},void 0,u.optionsToMFContext(r.options));let{remote:c}=i,f=l.getRemoteInfo(c),p=await r.sharedHandler.hooks.lifecycle.afterResolve.emit({id:a,...i,options:r.options,origin:r,remoteInfo:f}),{remote:h,expose:m}=p;o.assert(h&&m,`The 'beforeRequest' hook was executed, but it failed to return the correct 'remote' and 'expose' values while loading ${a}.`);let g=r.moduleCache.get(h.name),y={host:r,remoteInfo:f};return g||(g=new d.Module(y),r.moduleCache.set(h.name,g)),{module:g,moduleOptions:y,remoteMatchInfo:p}}registerRemote(e,t,r){let{host:n}=this,i=()=>{if(e.alias){let r=t.find(t=>{var r;return e.alias&&(t.name.startsWith(e.alias)||(null==(r=t.alias)?void 0:r.startsWith(e.alias)))});o.assert(!r,`The alias ${e.alias} of remote ${e.name} is not allowed to be the prefix of ${r&&r.name} name or alias`)}"entry"in e&&E.isBrowserEnvValue&&"u">typeof window&&!e.entry.startsWith("http")&&(e.entry=new URL(e.entry,window.location.origin).href),e.shareScope||(e.shareScope=a.DEFAULT_SCOPE),e.type||(e.type=a.DEFAULT_REMOTE_TYPE)};this.hooks.lifecycle.beforeRegisterRemote.emit({remote:e,origin:n});let s=t.find(t=>t.name===e.name);if(s){let o=[`The remote "${e.name}" is already registered.`,"Please note that overriding it may cause unexpected errors."];(null==r?void 0:r.force)&&(this.removeRemote(s),i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n}),(0,E.warn)(o.join(" ")))}else i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n})}removeRemote(e){try{let{host:r}=this,{name:o}=e,a=r.options.remotes.findIndex(e=>e.name===o);-1!==a&&r.options.remotes.splice(a,1);let s=r.moduleCache.get(e.name);if(s){var t;let o=s.remoteInfo,a=o.entryGlobalName;n.CurrentGlobal[a]&&((null==(t=Object.getOwnPropertyDescriptor(n.CurrentGlobal,a))?void 0:t.configurable)?delete n.CurrentGlobal[a]:n.CurrentGlobal[a]=void 0);let u=l.getRemoteEntryUniqueKey(s.remoteInfo);n.globalLoading[u]&&delete n.globalLoading[u],r.snapshotHandler.manifestCache.delete(o.entry);let c=o.buildVersion?(0,E.composeKeyWithSeparator)(o.name,o.buildVersion):o.name,d=n.CurrentGlobal.__FEDERATION__.__INSTANCES__.findIndex(e=>o.buildVersion?e.options.id===c:e.name===c);if(-1!==d){let e=n.CurrentGlobal.__FEDERATION__.__INSTANCES__[d];c=e.options.id||c;let t=i.getGlobalShareScope(),r=!0,a=[];Object.keys(t).forEach(e=>{let n=t[e];n&&Object.keys(n).forEach(t=>{let i=n[t];i&&Object.keys(i).forEach(n=>{let s=i[n];s&&Object.keys(s).forEach(i=>{let l=s[i];l&&"object"==typeof l&&l.from===o.name&&(l.loaded||l.loading?(l.useIn=l.useIn.filter(e=>e!==o.name),l.useIn.length?r=!1:a.push([e,t,n,i])):a.push([e,t,n,i]))})})})}),r&&(e.shareScopeMap={},delete t[c]),a.forEach(e=>{var r,o,n;let[a,i,s,l]=e;null==(n=t[a])||null==(o=n[i])||null==(r=o[s])||delete r[l]}),n.CurrentGlobal.__FEDERATION__.__INSTANCES__.splice(d,1)}let{hostGlobalSnapshot:f}=y.getGlobalRemoteInfo(e,r);if(f){let t=f&&"remotesInfo"in f&&f.remotesInfo&&n.getInfoWithoutType(f.remotesInfo,e.name).key;t&&(delete f.remotesInfo[t],n.Global.__FEDERATION__.__MANIFEST_LOADING__[t]&&delete n.Global.__FEDERATION__.__MANIFEST_LOADING__[t])}r.moduleCache.delete(e.name)}}catch(e){o.logger.error(`removeRemote failed: ${e instanceof Error?e.message:String(e)}`)}}constructor(e){this.hooks=new g.PluginSystem({beforeRegisterRemote:new h.SyncWaterfallHook("beforeRegisterRemote"),registerRemote:new h.SyncWaterfallHook("registerRemote"),beforeRequest:new m.AsyncWaterfallHook("beforeRequest"),onLoad:new p.AsyncHook("onLoad"),handlePreloadModule:new f.SyncHook("handlePreloadModule"),errorLoadRemote:new p.AsyncHook("errorLoadRemote"),beforePreloadRemote:new p.AsyncHook("beforePreloadRemote"),generatePreloadAssets:new p.AsyncHook("generatePreloadAssets"),afterPreloadRemote:new p.AsyncHook,loadEntry:new p.AsyncHook}),this.host=e,this.idToRemoteMap={}}}},7300(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(8393);r(1132);let s=r(2964),l=r(2593),u=r(2299),c=r(317);r(4317);let d=r(4363);t.SharedHandler=class{registerShared(e,t){let{newShareInfos:r,allShareInfos:o}=a.formatShareConfigs(e,t);return Object.keys(r).forEach(e=>{r[e].forEach(r=>{r.scope.forEach(o=>{var n;this.hooks.lifecycle.beforeRegisterShare.emit({origin:this.host,pkgName:e,shared:r}),(null==(n=this.shareScopeMap[o])?void 0:n[e])||this.setShared({pkgName:e,lib:r.lib,get:r.get,loaded:r.loaded||!!r.lib,shared:r,from:t.name})})})}),{newShareInfos:r,allShareInfos:o}}async loadShare(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&await Promise.all(n.scope.map(async e=>{await Promise.all(this.initializeSharing(e,{strategy:n.strategy}))}));let{shareInfo:i}=await this.hooks.lifecycle.beforeLoadShare.emit({pkgName:e,shareInfo:n,shared:r.options.shared,origin:r});o.assert(i,`Cannot find shared "${e}" in host "${r.options.name}". Ensure the shared config for "${e}" is declared in the federation plugin options and the host has been initialized before loading shares.`);let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(s){let t=a.directShare(s,l);if(t.lib)return a.addUseIn(t,r.options.name),t.lib;if(t.loading&&!t.loaded){let e=await t.loading;return t.loaded=!0,t.lib||(t.lib=e),a.addUseIn(t,r.options.name),e}{let o=(async()=>{let e=await t.get();return a.addUseIn(t,r.options.name),t.loaded=!0,t.lib=e,e})();return this.setShared({pkgName:e,loaded:!1,shared:s,from:r.options.name,lib:null,loading:o,treeShaking:l?t:void 0}),o}}{if(null==t?void 0:t.customShareInfo)return!1;let o=a.shouldUseTreeShaking(i.treeShaking),n=a.directShare(i,o),s=(async()=>{let t=await n.get();n.lib=t,n.loaded=!0,a.addUseIn(n,r.options.name);let{shared:o,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(o){let e=a.directShare(o,s);e.lib=t,e.loaded=!0,o.from=i.from}return t})();return this.setShared({pkgName:e,loaded:!1,shared:i,from:r.options.name,lib:null,loading:s,treeShaking:o?n:void 0}),s}}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0,{host:r}=this,o=null==t?void 0:t.from,i=null==t?void 0:t.strategy,s=null==t?void 0:t.initScope,l=[];if("build"!==o){let{initTokens:t}=this;s||(s=[]);let r=t[e];if(r||(r=t[e]={from:this.host.name}),s.indexOf(r)>=0)return l;s.push(r)}let u=this.shareScopeMap,c=r.options.name;u[e]||(u[e]={});let d=u[e],f=(e,t)=>{var r;let{version:o,eager:n}=t;d[e]=d[e]||{};let i=d[e],s=i[o]&&a.directShare(i[o]),l=!!(s&&("eager"in s&&s.eager||"shareConfig"in s&&(null==(r=s.shareConfig)?void 0:r.eager)));(!s||"loaded-first"!==s.strategy&&!s.loaded&&(!n!=!l?n:c>i[o].from))&&(i[o]=t)},p=async e=>{let t,{module:o}=await r.remoteHandler.getRemoteModuleAndOptions({id:e});try{t=await o.getEntry()}catch(o){if(!(t=await r.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:o,from:"runtime",lifecycle:"beforeLoadShare",origin:r})))return}finally{(null==t?void 0:t.init)&&!o.initing&&(o.remoteEntryExports=t,await o.init(void 0,void 0,s))}};return Object.keys(r.options.shared).forEach(t=>{r.options.shared[t].forEach(r=>{r.scope.includes(e)&&f(t,r)})}),("version-first"===r.options.shareStrategy||"version-first"===i)&&r.options.remotes.forEach(t=>{t.shareScope===e&&l.push(p(t.name))}),l}loadShareSync(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&n.scope.forEach(e=>{this.initializeSharing(e,{strategy:n.strategy})});let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,n,this.hooks.lifecycle.resolveShare)||{};if(s){if("function"==typeof s.lib)return a.addUseIn(s,r.options.name),s.loaded||(s.loaded=!0,s.from===r.options.name&&(n.loaded=!0)),s.lib;if("function"==typeof s.get){let t=s.get();if(!(t instanceof Promise))return a.addUseIn(s,r.options.name),this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:t,shared:s}),t}}if(n.lib)return n.loaded||(n.loaded=!0),n.lib;if(n.get){let a=n.get();return a instanceof Promise&&o.error((null==t?void 0:t.from)==="build"?d.RUNTIME_005:d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options)),n.lib=a,this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:n.lib,shared:n}),n.lib}o.error(d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options))}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{host:o}=this;this.shareScopeMap[e]=t,this.hooks.lifecycle.initContainerShareScopeMap.emit({shareScope:t,options:o.options,origin:o,scopeName:e,hostShareScopeMap:r.hostShareScopeMap})}setShared(e){let{pkgName:t,shared:r,from:o,lib:n,loading:a,loaded:i,get:s,treeShaking:l}=e,{version:u,scope:c="default",...d}=r,f=Array.isArray(c)?c:[c],p=e=>{let t=(e,t,r)=>{r&&!e[t]&&(e[t]=r)},r=l?e.treeShaking:e;t(r,"loaded",i),t(r,"loading",a),t(r,"get",s)};f.forEach(e=>{this.shareScopeMap[e]||(this.shareScopeMap[e]={}),this.shareScopeMap[e][t]||(this.shareScopeMap[e][t]={}),this.shareScopeMap[e][t][u]||(this.shareScopeMap[e][t][u]={version:u,scope:[e],...d,lib:n});let r=this.shareScopeMap[e][t][u];p(r),o&&r.from!==o&&(r.from=o)})}_setGlobalShareScopeMap(e){let t=a.getGlobalShareScope(),r=e.id||e.name;r&&!t[r]&&(t[r]=this.shareScopeMap)}constructor(e){this.hooks=new c.PluginSystem({beforeRegisterShare:new l.SyncWaterfallHook("beforeRegisterShare"),afterResolve:new u.AsyncWaterfallHook("afterResolve"),beforeLoadShare:new u.AsyncWaterfallHook("beforeLoadShare"),loadShare:new s.AsyncHook,resolveShare:new l.SyncWaterfallHook("resolveShare"),initContainerShareScopeMap:new l.SyncWaterfallHook("initContainerShareScopeMap")}),this.host=e,this.shareScopeMap={},this.initTokens={},this._setGlobalShareScopeMap(e.options)}}},7703(e,t,r){var o=r(1748).__exportAll({});Object.defineProperty(t,"type_exports",{enumerable:!0,get:function(){return o}})},8393(e,t){function r(e){return{name:e.name,alias:e.alias,entry:"entry"in e?e.entry:void 0,version:"version"in e?e.version:void 0,type:e.type,entryGlobalName:e.entryGlobalName,shareScope:e.shareScope}}t.optionsToMFContext=function(e){var t,o,n,a,i,s;let l={};for(let[t,r]of Object.entries(e.shared)){let e=r[0];e&&(l[t]={version:e.version,singleton:null==(n=e.shareConfig)?void 0:n.singleton,requiredVersion:(null==(a=e.shareConfig)?void 0:a.requiredVersion)!==!1&&(null==(i=e.shareConfig)?void 0:i.requiredVersion),eager:e.eager,strictVersion:null==(s=e.shareConfig)?void 0:s.strictVersion})}return{project:{name:e.name,mfRole:(null==(t=e.remotes)?void 0:t.length)>0?"host":"unknown"},mfConfig:{name:e.name,remotes:(null==(o=e.remotes)?void 0:o.map(r))??[],shared:l}}}},7829(e,t,r){r(630),t.getBuilderId=function(){return"pimcore_studio_ui_bundle_core:0.0.1"}},2964(e,t,r){let o=r(6227);t.AsyncHook=class extends o.SyncHook{emit(){let e;for(var t=arguments.length,r=Array(t),o=0;o0){let t=0,o=e=>!1!==e&&(t0){let r=0,n=t=>(o.warn(t),this.onerror(t),e),a=o=>{if(i.checkReturnData(e,o)){if(e=o,r{let r=e[t];r&&this.lifecycle[t].on(r)})}}removePlugin(e){o.assert(e,"A name is required.");let t=this.registerPlugins[e];o.assert(t,`The plugin "${e}" is not registered.`),Object.keys(t).forEach(e=>{"name"!==e&&this.lifecycle[e].remove(t[e])})}constructor(e){this.registerPlugins={},this.lifecycle=e,this.lifecycleKeys=Object.keys(e)}}},6227(e,t){t.SyncHook=class{on(e){"function"==typeof e&&this.listeners.add(e)}once(e){let t=this;this.on(function r(){for(var o=arguments.length,n=Array(o),a=0;a0&&this.listeners.forEach(t=>{e=t(...r)}),e}remove(e){this.listeners.delete(e)}removeAll(){this.listeners.clear()}constructor(e){this.type="",this.listeners=new Set,e&&(this.type=e)}}},2593(e,t,r){let o=r(8628),n=r(9350),a=r(6227);function i(e,t){if(!n.isObject(t))return!1;if(e!==t){for(let r in e)if(!(r in t))return!1}return!0}t.SyncWaterfallHook=class extends a.SyncHook{emit(e){for(let t of(n.isObject(e)||o.error(`The data for the "${this.type}" hook should be an object.`),this.listeners))try{let r=t(e);if(i(e,r))e=r;else{this.onerror(`A plugin returned an unacceptable value for the "${this.type}" type.`);break}}catch(e){o.warn(e),this.onerror(e)}return e}constructor(e){super(),this.onerror=o.error,this.type=e}},t.checkReturnData=i},1132(e,t,r){r(8628),r(9350),r(7829),r(6079),r(8457),r(556),r(8393),r(630)},556(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(630),s=r(4363),l=".then(callbacks[0]).catch(callbacks[1])";async function u(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):"u">typeof FEDERATION_ALLOW_NEW_FUNCTION?Function("callbacks",`import("${t}")${l}`)([e,n]):import(t).then(e).catch(n)}catch(e){o.error(`Failed to load ESM entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}async function c(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):Function("callbacks",`System.import("${t}")${l}`)([e,n])}catch(e){o.error(`Failed to load SystemJS entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}function d(e,t,r){let{remoteEntryKey:a,entryExports:i}=n.getRemoteEntryExports(e,t);return i||o.error(s.RUNTIME_001,s.runtimeDescMap,{remoteName:e,remoteEntryUrl:r,remoteEntryKey:a}),i}async function f(e){let{name:t,globalName:r,entry:a,loaderHook:l,getEntryUrl:u}=e,{entryExports:c}=n.getRemoteEntryExports(t,r);if(c)return c;let f=u?u(a):a;return(0,i.loadScript)(f,{attrs:{},createScriptHook:(e,t)=>{let r=l.lifecycle.createScript.emit({url:e,attrs:t});if(r&&(r instanceof HTMLScriptElement||"script"in r||"timeout"in r))return r}}).then(()=>d(t,r,a),e=>{let r=e instanceof Error?e.message:String(e);o.error(s.RUNTIME_008,s.runtimeDescMap,{remoteName:t,resourceUrl:f},r)})}async function p(e){let{remoteInfo:t,remoteEntryExports:r,loaderHook:o,getEntryUrl:n}=e,{entry:a,entryGlobalName:i,name:s,type:l}=t;switch(l){case"esm":case"module":return u({entry:a,remoteEntryExports:r});case"system":return c({entry:a,remoteEntryExports:r});default:return f({entry:a,globalName:i,name:s,loaderHook:o,getEntryUrl:n})}}async function h(e){let{remoteInfo:t,loaderHook:r}=e,{entry:a,entryGlobalName:s,name:l,type:u}=t,{entryExports:c}=n.getRemoteEntryExports(l,s);return c||(0,i.loadScriptNode)(a,{attrs:{name:l,globalName:s,type:u},loaderHook:{createScriptHook:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.lifecycle.createScript.emit({url:e,attrs:t});if(o&&"url"in o)return o}}}).then(()=>d(l,s,a)).catch(e=>{o.error(`Failed to load Node.js entry for remote "${l}" from "${a}". ${e instanceof Error?e.message:String(e)}`)})}function m(e){let{entry:t,name:r}=e;return(0,i.composeKeyWithSeparator)(r,t)}async function g(e){let{origin:t,remoteEntryExports:r,remoteInfo:o,getEntryUrl:a,_inErrorHandling:l=!1}=e,u=m(o);if(r)return r;if(!n.globalLoading[u]){let e=t.remoteHandler.hooks.lifecycle.loadEntry,c=t.loaderHook;n.globalLoading[u]=e.emit({loaderHook:c,remoteInfo:o,remoteEntryExports:r}).then(e=>e||(("u">typeof ENV_TARGET?"web"===ENV_TARGET:i.isBrowserEnvValue)?p({remoteInfo:o,remoteEntryExports:r,loaderHook:c,getEntryUrl:a}):h({remoteInfo:o,loaderHook:c}))).catch(async e=>{let a=m(o),i=e instanceof Error&&e.message.includes("ScriptExecutionError");if(e instanceof Error&&e.message.includes(s.RUNTIME_008)&&!i&&!l){let e=e=>g({...e,_inErrorHandling:!0}),i=await t.loaderHook.lifecycle.loadEntryError.emit({getRemoteEntry:e,origin:t,remoteInfo:o,remoteEntryExports:r,globalLoading:n.globalLoading,uniqueKey:a});if(i)return i}throw e})}return n.globalLoading[u]}function y(e){return{...e,entry:"entry"in e?e.entry:"",type:e.type||a.DEFAULT_REMOTE_TYPE,entryGlobalName:e.entryGlobalName||e.name,shareScope:e.shareScope||a.DEFAULT_SCOPE}}t.getRemoteEntry=g,t.getRemoteEntryUniqueKey=m,t.getRemoteInfo=y},8628(e,t,r){let o=r(630),n=r(6619),a="[ Federation Runtime ]",i=(0,o.createLogger)(a);function s(e,t,r,o,i){if(void 0!==t)return(0,n.logAndReport)(e,t,r??{},e=>{throw Error(`${a}: ${e}`)},o,i);let s=e;if(s instanceof Error)throw s.message.startsWith(a)||(s.message=`${a}: ${s.message}`),s;throw Error(`${a}: ${s}`)}function l(e){e instanceof Error&&(e.message.startsWith(a)||(e.message=`${a}: ${e.message}`)),i.warn(e)}t.assert=function(e,t,r,o,n){e||(void 0!==r?s(t,r,o,void 0,n):s(t))},t.error=s,t.logger=i,t.warn=l},6079(e,t){function r(e,t){for(let r of e){let e=t.startsWith(r.name),o=t.replace(r.name,"");if(e){if(o.startsWith("/"))return{pkgNameOrAlias:r.name,expose:o=`.${o}`,remote:r};else if(""===o)return{pkgNameOrAlias:r.name,expose:".",remote:r}}let n=r.alias&&t.startsWith(r.alias),a=r.alias&&t.replace(r.alias,"");if(r.alias&&n){if(a&&a.startsWith("/"))return{pkgNameOrAlias:r.alias,expose:a=`.${a}`,remote:r};else if(""===a)return{pkgNameOrAlias:r.alias,expose:".",remote:r}}}}t.matchRemote=function(e,t){for(let r of e)if(t===r.name||r.alias&&t===r.alias)return r},t.matchRemoteWithNameAndExpose=r},8457(e,t,r){let o=r(4391);t.registerPlugins=function(e,t){let r=o.getGlobalHostPlugins(),n=[t.hooks,t.remoteHandler.hooks,t.sharedHandler.hooks,t.snapshotHandler.hooks,t.loaderHook,t.bridgeHook];return r.length>0&&r.forEach(t=>{(null==e?void 0:e.find(e=>e.name!==t.name))&&e.push(t)}),e&&e.length>0&&e.forEach(e=>{n.forEach(r=>{r.applyPlugin(e,t)})}),e}},9599(e,t,r){let o=r(8628),n=r(6079),a=r(556),i=r(630);function s(e){return{resourceCategory:"sync",share:!0,depsRemote:!0,prefetchInterface:!1,...e}}function l(e,t){return t.map(t=>{let r=n.matchRemote(e,t.nameOrAlias);return o.assert(r,`Unable to preload ${t.nameOrAlias} as it is not included in ${!r&&(0,i.safeToString)({remoteInfo:r,remotes:e})}`),{remote:r,preloadConfig:s(t)}})}function u(e){return e?e.map(e=>"."===e?e:e.startsWith("./")?e.replace("./",""):e):[]}function c(e,t,r){let o=!(arguments.length>3)||void 0===arguments[3]||arguments[3],{cssAssets:n,jsAssetsWithoutEntry:s,entryAssets:l}=r;if(t.options.inBrowser){if(l.forEach(r=>{let{moduleInfo:o}=r,n=t.moduleCache.get(e.name);n?a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:n.remoteEntryExports}):a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:void 0})}),o){let e={rel:"preload",as:"style"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let e={rel:"stylesheet",type:"text/css"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o},needDeleteLink:!1});n&&document.head.appendChild(o)})}if(o){let e={rel:"preload",as:"script"};s.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let r={fetchpriority:"high",type:(null==e?void 0:e.type)==="module"?"module":"text/javascript"};s.forEach(e=>{let{script:o,needAttach:n}=(0,i.createScript)({url:e,cb:()=>{},attrs:r,createScriptHook:(e,r)=>{let o=t.loaderHook.lifecycle.createScript.emit({url:e,attrs:r});if(o instanceof HTMLScriptElement)return o},needDeleteScript:!0});n&&document.head.appendChild(o)})}}}t.defaultPreloadArgs=s,t.formatPreloadArgs=l,t.normalizePreloadExposes=u,t.preloadAssets=c},632(e,t){function r(e,t){return(e=Number(e)||e)>(t=Number(t)||t)?1:e===t?0:-1}function o(e,t){let{preRelease:o}=e,{preRelease:n}=t;if(void 0===o&&n)return 1;if(o&&void 0===n)return -1;if(void 0===o&&void 0===n)return 0;for(let e=0,t=o.length;e<=t;e++){let t=o[e],a=n[e];if(t!==a){if(void 0===t&&void 0===a)return 0;if(!t)return 1;if(!a)return -1;return r(t,a)}}return 0}function n(e,t){return r(e.major,t.major)||r(e.minor,t.minor)||r(e.patch,t.patch)||o(e,t)}function a(e,t){return e.version===t.version}t.compare=function(e,t){switch(e.operator){case"":case"=":return a(e,t);case">":return 0>n(e,t);case">=":return a(e,t)||0>n(e,t);case"<":return n(e,t)>0;case"<=":return a(e,t)||n(e,t)>0;case void 0:return!0;default:return!1}}},9570(e,t){let r="[0-9A-Za-z-]+",o=`(?:\\+(${r}(?:\\.${r})*))`,n="0|[1-9]\\d*",a="[0-9]+",i="\\d*[a-zA-Z-][a-zA-Z0-9-]*",s=`(?:${a}|${i})`,l=`(?:-?(${s}(?:\\.${s})*))`,u=`(?:${n}|${i})`,c=`(?:-(${u}(?:\\.${u})*))`,d=`${n}|x|X|\\*`,f=`[v=\\s]*(${d})(?:\\.(${d})(?:\\.(${d})(?:${c})?${o}?)?)?`,p=`^\\s*(${f})\\s+-\\s+(${f})\\s*$`,h=`[v=\\s]*${`(${a})\\.(${a})\\.(${a})`}${l}?${o}?`,m="((?:<|>)?=?)",g=`(\\s*)${m}\\s*(${h}|${f})`,y="(?:~>?)",E=`(\\s*)${y}\\s+`,_="(?:\\^)",b=`(\\s*)${_}\\s+`,S="(<|>)?=?\\s*\\*",v=`^${_}${f}$`,R=`v?${`(${n})\\.(${n})\\.(${n})`}${c}?${o}?`,I=`^${y}${f}$`,M=`^${m}\\s*${f}$`,N=`^${m}\\s*(${R})$|^$`,T="^\\s*>=\\s*0.0.0\\s*$";t.caret=v,t.caretTrim=b,t.comparator=N,t.comparatorTrim=g,t.gte0=T,t.hyphenRange=p,t.star=S,t.tilde=I,t.tildeTrim=E,t.xRange=M},3957(e,t,r){let o=r(78),n=r(3810),a=r(632);function i(e){return o.pipe(n.parseCarets,n.parseTildes,n.parseXRanges,n.parseStar)(e)}function s(e){return o.pipe(n.parseHyphen,n.parseComparatorTrim,n.parseTildeTrim,n.parseCaretTrim)(e.trim()).split(/\s+/).join(" ")}t.satisfy=function(e,t){if(!e)return!1;let r=o.extractComparator(e);if(!r)return!1;let[,l,,u,c,d,f]=r,p={operator:l,version:o.combineVersion(u,c,d,f),major:u,minor:c,patch:d,preRelease:null==f?void 0:f.split(".")};for(let e of t.split("||")){let t=e.trim();if(!t||"*"===t||"x"===t)return!0;try{let e=s(t);if(!e.trim())return!0;let r=e.split(" ").map(e=>i(e)).join(" ");if(!r.trim())return!0;let l=r.split(/\s+/).map(e=>n.parseGTE0(e)).filter(Boolean);if(0===l.length)continue;let u=!0;for(let e of l){let t=o.extractComparator(e);if(!t){u=!1;break}let[,r,,n,i,s,l]=t;if(!a.compare({operator:r,version:o.combineVersion(n,i,s,l),major:n,minor:i,patch:s,preRelease:null==l?void 0:l.split(".")},p)){u=!1;break}}if(u)return!0}catch(e){console.error(`[semver] Error processing range part "${t}":`,e);continue}}return!1}},3810(e,t,r){let o=r(9570),n=r(78);function a(e){return e.replace(n.parseRegex(o.hyphenRange),(e,t,r,o,a,i,s,l,u,c,d,f)=>(t=n.isXVersion(r)?"":n.isXVersion(o)?`>=${r}.0.0`:n.isXVersion(a)?`>=${r}.${o}.0`:`>=${t}`,l=n.isXVersion(u)?"":n.isXVersion(c)?`<${Number(u)+1}.0.0-0`:n.isXVersion(d)?`<${u}.${Number(c)+1}.0-0`:f?`<=${u}.${c}.${d}-${f}`:`<=${l}`,`${t} ${l}`.trim()))}function i(e){return e.replace(n.parseRegex(o.comparatorTrim),"$1$2$3")}function s(e){return e.replace(n.parseRegex(o.tildeTrim),"$1~")}function l(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.caret),(e,t,r,o,a)=>{if(n.isXVersion(t))return"";if(n.isXVersion(r))return`>=${t}.0.0 <${Number(t)+1}.0.0-0`;if(n.isXVersion(o))if("0"===t)return`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`;else return`>=${t}.${r}.0 <${Number(t)+1}.0.0-0`;if(a)if("0"!==t)return`>=${t}.${r}.${o}-${a} <${Number(t)+1}.0.0-0`;else if("0"===r)return`>=${t}.${r}.${o}-${a} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`;if("0"===t)if("0"===r)return`>=${t}.${r}.${o} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`;return`>=${t}.${r}.${o} <${Number(t)+1}.0.0-0`})).join(" ")}function u(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.tilde),(e,t,r,o,a)=>n.isXVersion(t)?"":n.isXVersion(r)?`>=${t}.0.0 <${Number(t)+1}.0.0-0`:n.isXVersion(o)?`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`:a?`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`:`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`)).join(" ")}function c(e){return e.split(/\s+/).map(e=>e.trim().replace(n.parseRegex(o.xRange),(e,t,r,o,a,i)=>{let s=n.isXVersion(r),l=s||n.isXVersion(o),u=l||n.isXVersion(a);if("="===t&&u&&(t=""),i="",s)if(">"===t||"<"===t)return"<0.0.0-0";else return"*";return t&&u?(l&&(o=0),a=0,">"===t?(t=">=",l?(r=Number(r)+1,o=0):o=Number(o)+1,a=0):"<="===t&&(t="<",l?r=Number(r)+1:o=Number(o)+1),"<"===t&&(i="-0"),`${t+r}.${o}.${a}${i}`):l?`>=${r}.0.0${i} <${Number(r)+1}.0.0-0`:u?`>=${r}.${o}.0${i} <${r}.${Number(o)+1}.0-0`:e})).join(" ")}function d(e){return e.trim().replace(n.parseRegex(o.star),"")}function f(e){return e.trim().replace(n.parseRegex(o.gte0),"")}t.parseCaretTrim=function(e){return e.replace(n.parseRegex(o.caretTrim),"$1^")},t.parseCarets=l,t.parseComparatorTrim=i,t.parseGTE0=f,t.parseHyphen=a,t.parseStar=d,t.parseTildeTrim=s,t.parseTildes=u,t.parseXRanges=c},78(e,t,r){let o=r(9570);function n(e){return new RegExp(e)}function a(e){return!e||"x"===e.toLowerCase()||"*"===e}function i(){for(var e=arguments.length,t=Array(e),r=0;rt.reduce((e,t)=>t(e),e)}function s(e){return e.match(n(o.comparator))}t.combineVersion=function(e,t,r,o){let n=`${e}.${t}.${r}`;return o?`${n}-${o}`:n},t.extractComparator=s,t.isXVersion=a,t.parseRegex=n,t.pipe=i},8369(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(2926),s=r(3957),l=r(630);function u(e,t,r,n){var a,i;let s;return s="get"in e?e.get:"lib"in e?()=>Promise.resolve(e.lib):()=>Promise.resolve(()=>{o.error(`Cannot get shared "${r}" from "${t}": neither "get" nor "lib" is provided in the share config.`)}),(null==(a=e.shareConfig)?void 0:a.eager)&&(null==(i=e.treeShaking)?void 0:i.mode)&&o.error(`Invalid shared config for "${r}" from "${t}": cannot use both "eager: true" and "treeShaking.mode" simultaneously. Choose one strategy.`),{deps:[],useIn:[],from:t,loading:null,...e,shareConfig:{requiredVersion:`^${e.version}`,singleton:!1,eager:!1,strictVersion:!1,...e.shareConfig},get:s,loaded:null!=e&&!!e.loaded||"lib"in e||void 0,version:e.version??"0",scope:Array.isArray(e.scope)?e.scope:[e.scope??"default"],strategy:(e.strategy??n)||"version-first",treeShaking:e.treeShaking?{...e.treeShaking,mode:e.treeShaking.mode??"server-calc",status:e.treeShaking.status??l.TreeShakingStatus.UNKNOWN,useIn:[]}:void 0}}function c(e,t){let r=t.shared||{},o=t.name,a=Object.keys(r).reduce((e,a)=>{let i=n.arrayOptions(r[a]);return e[a]=e[a]||[],i.forEach(r=>{e[a].push(u(r,o,a,t.shareStrategy))}),e},{}),i={...e.shared};return Object.keys(a).forEach(e=>{i[e]?a[e].forEach(t=>{i[e].find(e=>e.version===t.version)||i[e].push(t)}):i[e]=a[e]}),{allShareInfos:i,newShareInfos:a}}function d(e,t){if(!e)return!1;let{status:r,mode:o}=e;return r!==l.TreeShakingStatus.NO_USE&&(r===l.TreeShakingStatus.CALCULATED||"runtime-infer"===o&&(!t||g(e,t)))}function f(e,t){let r=e=>{if(!Number.isNaN(Number(e))){let t=e.split("."),r=e;for(let e=0;e<3-t.length;e++)r+=".0";return r}return e};return!!s.satisfy(r(e),`<=${r(t)}`)}let p=(e,t)=>{let r=t||function(e,t){return f(e,t)};return Object.keys(e).reduce((e,t)=>!e||r(e,t)||"0"===e?t:e,0)},h=e=>!!e.loaded||"function"==typeof e.lib,m=e=>!!e.loading,g=(e,t)=>{if(!e||!t)return!1;let{usedExports:r}=e;return!!r&&!!t.every(e=>r.includes(e))};function y(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){return i?!n[e].treeShaking||!!n[t].treeShaking&&!h(n[e].treeShaking)&&f(e,t):!h(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}let E=e=>h(e)||m(e);function _(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){if(i){if(!n[e].treeShaking)return!0;if(!n[t].treeShaking)return!1;if(E(n[t].treeShaking))if(E(n[e].treeShaking))return!!f(e,t);else return!0;if(E(n[e].treeShaking))return!1}if(E(n[t]))if(E(n[e]))return!!f(e,t);else return!0;return!E(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}function b(e){return"loaded-first"===e?_:y}function S(e,t,r,n){if(!e)return;let{shareConfig:l,scope:u=i.DEFAULT_SCOPE,strategy:c,treeShaking:f}=r;for(let i of Array.isArray(u)?u:[u])if(l&&e[i]&&e[i][t]){let{requiredVersion:u}=l,{version:p,useTreesShaking:h}=b(c)(e,i,t,f),m=()=>{let n=e[i][t][p];if(l.singleton){if("string"==typeof u&&!s.satisfy(p,u)){let e=`Version ${p} from ${p&&n.from} of shared singleton module ${t} does not satisfy the requirement of ${r.from} which needs ${u})`;l.strictVersion?o.error(e):o.warn(e)}return{shared:n,useTreesShaking:h}}{if(!1===u||"*"===u||s.satisfy(p,u))return{shared:n,useTreesShaking:h};let r=d(f);if(r){for(let[o,n]of Object.entries(e[i][t]))if(d(n.treeShaking,null==f?void 0:f.usedExports)&&s.satisfy(o,u))return{shared:n,useTreesShaking:r}}for(let[r,o]of Object.entries(e[i][t]))if(s.satisfy(r,u))return{shared:o,useTreesShaking:!1}}},g={shareScopeMap:e,scope:i,pkgName:t,version:p,GlobalFederation:a.Global.__FEDERATION__,shareInfo:r,resolver:m};return(n.emit(g)||g).resolver()}}function v(){return a.Global.__FEDERATION__.__SHARE__}function R(e){let{pkgName:t,extraOptions:r,shareInfos:o}=e,n=e=>{if(!e)return;let t={};e.forEach(e=>{t[e.version]=e});let r=function(e,r){return!h(t[e])&&f(e,r)};return t[p(t,r)]},a=(null==r?void 0:r.resolver)??n,i=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),s=function(){for(var e=arguments.length,t=Array(e),r=0;r{e.useIn||(e.useIn=[]),n.addUniqueItem(e.useIn,t)},t.directShare=I,t.formatShareConfigs=c,t.getGlobalShareScope=v,t.getRegisteredShare=S,t.getTargetSharedOptions=R,t.shouldUseTreeShaking=d},9350(e,t,r){let o=r(8628),n=r(630);function a(e,t){return -1===e.findIndex(e=>e===t)&&e.push(t),e}function i(e){return"version"in e&&e.version?`${e.name}:${e.version}`:"entry"in e&&e.entry?`${e.name}:${e.entry}`:`${e.name}`}function s(e){return void 0!==e.entry}function l(e){return!e.entry.includes(".json")}async function u(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function c(e){return e&&"object"==typeof e}let d=Object.prototype.toString;function f(e){return"[object Object]"===d.call(e)}function p(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function h(e){return Array.isArray(e)?e:[e]}function m(e){let t={url:"",type:"global",globalName:""};return n.isBrowserEnvValue||(0,n.isReactNativeEnv)()||!("ssrRemoteEntry"in e)?"remoteEntry"in e?{url:e.remoteEntry,type:e.remoteEntryType,globalName:e.globalName}:t:"ssrRemoteEntry"in e?{url:e.ssrRemoteEntry||t.url,type:e.ssrRemoteEntryType||t.type,globalName:e.globalName}:t}let g=(e,t)=>{let r;return r=e.endsWith("/")?e.slice(0,-1):e,t.startsWith(".")&&(t=t.slice(1)),r+=t};t.addUniqueItem=a,t.arrayOptions=h,t.getFMId=i,t.getRemoteEntryInfoFromSnapshot=m,t.isObject=c,t.isPlainObject=f,t.isPureRemoteEntry=l,t.isRemoteInfoWithEntry=s,t.isStaticResourcesEqual=p,t.objectToString=d,t.processModuleAlias=g,t.safeWrapper=u},3544(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},3129(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),r(3544);let o=r(9577),n=r(5922),a={...n.helpers.global,getGlobalFederationInstance:o.getGlobalFederationInstance},i=n.helpers.share,s=n.helpers.utils;t.default={global:a,share:i,utils:s},t.global=a,t.share=i,t.utils=s},9782(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),r(3544);let o=r(9577),n=r(5922),a=r(4363);function i(e){let t=new((0,n.getGlobalFederationConstructor)()||n.ModuleFederation)(e);return(0,n.setGlobalFederationInstance)(t),t}let s=null;function l(e){let t=o.getGlobalFederationInstance(e.name,e.version);return t?(t.initOptions(e),s||(s=t),t):s=i(e)}function u(){for(var e=arguments.length,t=Array(e),r=0;r!!r&&o.options.id===r||o.options.name===e&&!o.options.version&&!t||o.options.name===e&&!!t&&o.options.version===t)}},7688(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},586(e,t){let r="federation-manifest.json",o=".json",n="FEDERATION_DEBUG",a={AT:"@",HYPHEN:"-",SLASH:"/"},i={[a.AT]:"scope_",[a.HYPHEN]:"_",[a.SLASH]:"__"},s={[i[a.AT]]:a.AT,[i[a.HYPHEN]]:a.HYPHEN,[i[a.SLASH]]:a.SLASH},l=":",u="mf-manifest.json",c="mf-stats.json",d={NPM:"npm",APP:"app"},f="__MF_DEVTOOLS_MODULE_INFO__",p="ENCODE_NAME_PREFIX",h=".federation",m={identifier:"MFDataPrefetch",globalKey:"__PREFETCH__",library:"mf-data-prefetch",exportsKey:"__PREFETCH_EXPORTS__",fileName:"bootstrap.js"},g=function(e){return e[e.UNKNOWN=1]="UNKNOWN",e[e.CALCULATED=2]="CALCULATED",e[e.NO_USE=0]="NO_USE",e}({});t.BROWSER_LOG_KEY=n,t.ENCODE_NAME_PREFIX=p,t.EncodedNameTransformMap=s,t.FederationModuleManifest=r,t.MANIFEST_EXT=o,t.MFModuleType=d,t.MFPrefetchCommon=m,t.MODULE_DEVTOOL_IDENTIFIER=f,t.ManifestFileName=u,t.NameTransformMap=i,t.NameTransformSymbol=a,t.SEPARATOR=l,t.StatsFileName=c,t.TEMP_DIR=h,t.TreeShakingStatus=g},1483(e,t){t.createModuleFederationConfig=e=>e},6302(e,t,r){let o=r(3417);async function n(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function a(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function i(e){let t,r=null,o=!0,i=2e4,s=document.getElementsByTagName("script");for(let t=0;t{r&&("async"===e||"defer"===e?r[e]=o[e]:r.getAttribute(e)||r.setAttribute(e,o[e]))})}let l=null,u="u">typeof window?t=>{if(t.filename&&a(t.filename,e.url)){let r=Error(`ScriptExecutionError: Script "${e.url}" loaded but threw a runtime error during execution: ${t.message} (${t.filename}:${t.lineno}:${t.colno})`);r.name="ScriptExecutionError",l=r}}:null;u&&window.addEventListener("error",u);let c=async(o,a)=>{clearTimeout(t),u&&window.removeEventListener("error",u);let i=()=>{if((null==a?void 0:a.type)==="error"){let t=Error(`ScriptNetworkError: Failed to load script "${e.url}" - the script URL is unreachable or the server returned an error (network failure, 404, CORS, etc.)`);t.name="ScriptNetworkError",(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(t))}else l?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(l)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(r&&(r.onerror=null,r.onload=null,n(()=>{let{needDeleteScript:t=!0}=e;t&&(null==r?void 0:r.parentNode)&&r.parentNode.removeChild(r)}),o&&"function"==typeof o)){let e=o(a);if(e instanceof Promise){let t=await e;return i(),t}return i(),e}i()};return r.onerror=c.bind(null,r.onerror),r.onload=c.bind(null,r.onload),t=setTimeout(()=>{c(null,Error(`Remote script "${e.url}" time-outed.`))},i),{script:r,needAttach:o}}function s(e,t){let{attrs:r={},createScriptHook:o}=t;return new Promise((t,n)=>{let{script:a,needAttach:s}=i({url:e,cb:t,onErrorCallback:n,attrs:{fetchpriority:"high",...r},createScriptHook:o,needDeleteScript:!0});s&&document.head.appendChild(a)})}t.createLink=function(e){let t=null,r=!0,o=document.getElementsByTagName("link");for(let n=0;n{t&&!t.getAttribute(e)&&t.setAttribute(e,o[e])})}let i=(r,o)=>{let a=()=>{(null==o?void 0:o.type)==="error"?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(o)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(t&&(t.onerror=null,t.onload=null,n(()=>{let{needDeleteLink:r=!0}=e;r&&(null==t?void 0:t.parentNode)&&t.parentNode.removeChild(t)}),r)){let e=r(o);return a(),e}a()};return t.onerror=i.bind(null,t.onerror),t.onload=i.bind(null,t.onload),{link:t,needAttach:r}},t.createScript=i,t.isStaticResourcesEqual=a,t.loadScript=s,t.safeWrapper=n},6883(e,t,r){let o=r(586),n="u">typeof ENV_TARGET?"web"===ENV_TARGET:"u">typeof window&&void 0!==window.document;function a(){return n}function i(){var e;return"u">typeof navigator&&(null==(e=navigator)?void 0:e.product)==="ReactNative"}function s(){try{if(a()&&window.localStorage)return!!localStorage.getItem(o.BROWSER_LOG_KEY)}catch(e){}return!1}function l(){return"u">typeof process&&process.env&&process.env.FEDERATION_DEBUG?!!process.env.FEDERATION_DEBUG:!!("u">typeof FEDERATION_DEBUG&&FEDERATION_DEBUG)||s()}t.getProcessEnv=function(){return"u">typeof process&&process.env?process.env:{}},t.isBrowserEnv=a,t.isBrowserEnvValue=n,t.isDebugMode=l,t.isReactNativeEnv=i},7016(e,t,r){let o=r(586),n=(e,t)=>{if(!e)return t;let r=(e=>{if("."===e)return"";if(e.startsWith("./"))return e.replace("./","");if(e.startsWith("/")){let t=e.slice(1);return t.endsWith("/")?t.slice(0,-1):t}return e})(e);return r?r.endsWith("/")?`${r}${t}`:`${r}/${t}`:t};function a(e){return e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/")}function i(e){return!!("remoteEntry"in e&&e.remoteEntry.includes(o.MANIFEST_EXT))}function s(e){if(!e)return{statsFileName:o.StatsFileName,manifestFileName:o.ManifestFileName};let t="boolean"==typeof e?"":e.filePath||"",r="boolean"==typeof e?"":e.fileName||"",a=".json",i=e=>e.endsWith(a)?e:`${e}${a}`,s=(e,t)=>e.replace(a,`${t}${a}`),l=r?i(r):o.ManifestFileName;return{statsFileName:n(t,r?s(l,"-stats"):o.StatsFileName),manifestFileName:n(t,l)}}t.generateSnapshotFromManifest=function(e){var t,r,o;let i,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{remotes:l={},overrides:u={},version:c}=s,d=()=>"publicPath"in e.metaData?("auto"===e.metaData.publicPath||""===e.metaData.publicPath)&&c?a(c):e.metaData.publicPath:e.metaData.getPublicPath,f=Object.keys(u),p={};Object.keys(l).length||(p=(null==(t=e.remotes)?void 0:t.reduce((e,t)=>{let r,o=t.federationContainerName;return r=f.includes(o)?u[o]:"version"in t?t.version:t.entry,e[o]={matchedVersion:r},e},{}))||{}),Object.keys(l).forEach(e=>p[e]={matchedVersion:f.includes(e)?u[e]:l[e]});let{remoteEntry:{path:h,name:m,type:g},types:y={path:"",name:"",zip:"",api:""},buildInfo:{buildVersion:E},globalName:_,ssrRemoteEntry:b}=e.metaData,{exposes:S}=e,v={version:c||"",buildVersion:E,globalName:_,remoteEntry:n(h,m),remoteEntryType:g,remoteTypes:n(y.path,y.name),remoteTypesZip:y.zip||"",remoteTypesAPI:y.api||"",remotesInfo:p,shared:null==e?void 0:e.shared.map(e=>({assets:e.assets,sharedName:e.name,version:e.version,usedExports:e.referenceExports||[]})),modules:null==S?void 0:S.map(e=>({moduleName:e.name,modulePath:e.path,assets:e.assets}))};if(null==(r=e.metaData)?void 0:r.prefetchInterface){let t=e.metaData.prefetchInterface;v={...v,prefetchInterface:t}}if(null==(o=e.metaData)?void 0:o.prefetchEntry){let{path:t,name:r,type:o}=e.metaData.prefetchEntry;v={...v,prefetchEntry:n(t,r),prefetchEntryType:o}}if("publicPath"in e.metaData?(i={...v,publicPath:d()},"string"==typeof e.metaData.ssrPublicPath&&(i.ssrPublicPath=e.metaData.ssrPublicPath)):i={...v,getPublicPath:d()},b){let e=n(b.path,b.name);i.ssrRemoteEntry=e,i.ssrRemoteEntryType=b.type||"commonjs-module"}return i},t.getManifestFileName=s,t.inferAutoPublicPath=a,t.isManifestProvider=i,t.simpleJoinRemoteEntry=n},630(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(586),n=r(8841),a=r(8798),i=r(7765),s=r(1993),l=r(7345),u=r(5448),c=r(6883),d=r(3417),f=r(7016),p=r(3910),h=r(6302),m=r(638),g=r(6967),y=r(1483);t.BROWSER_LOG_KEY=o.BROWSER_LOG_KEY,t.ENCODE_NAME_PREFIX=o.ENCODE_NAME_PREFIX,t.EncodedNameTransformMap=o.EncodedNameTransformMap,t.FederationModuleManifest=o.FederationModuleManifest,t.MANIFEST_EXT=o.MANIFEST_EXT,t.MFModuleType=o.MFModuleType,t.MFPrefetchCommon=o.MFPrefetchCommon,t.MODULE_DEVTOOL_IDENTIFIER=o.MODULE_DEVTOOL_IDENTIFIER,t.ManifestFileName=o.ManifestFileName,t.NameTransformMap=o.NameTransformMap,t.NameTransformSymbol=o.NameTransformSymbol,t.SEPARATOR=o.SEPARATOR,t.StatsFileName=o.StatsFileName,t.TEMP_DIR=o.TEMP_DIR,t.TreeShakingStatus=o.TreeShakingStatus,t.assert=d.assert,t.bindLoggerToCompiler=p.bindLoggerToCompiler,t.composeKeyWithSeparator=d.composeKeyWithSeparator,Object.defineProperty(t,"consumeSharedPlugin",{enumerable:!0,get:function(){return l.ConsumeSharedPlugin_exports}}),Object.defineProperty(t,"containerPlugin",{enumerable:!0,get:function(){return n.ContainerPlugin_exports}}),Object.defineProperty(t,"containerReferencePlugin",{enumerable:!0,get:function(){return a.ContainerReferencePlugin_exports}}),t.createInfrastructureLogger=p.createInfrastructureLogger,t.createLink=h.createLink,t.createLogger=p.createLogger,t.createModuleFederationConfig=y.createModuleFederationConfig,t.createScript=h.createScript,t.createScriptNode=m.createScriptNode,t.decodeName=d.decodeName,t.encodeName=d.encodeName,t.error=d.error,t.generateExposeFilename=d.generateExposeFilename,t.generateShareFilename=d.generateShareFilename,t.generateSnapshotFromManifest=f.generateSnapshotFromManifest,t.getManifestFileName=f.getManifestFileName,t.getProcessEnv=c.getProcessEnv,t.getResourceUrl=d.getResourceUrl,t.inferAutoPublicPath=f.inferAutoPublicPath,t.infrastructureLogger=p.infrastructureLogger,t.isBrowserEnv=c.isBrowserEnv,t.isBrowserEnvValue=c.isBrowserEnvValue,t.isDebugMode=c.isDebugMode,t.isManifestProvider=f.isManifestProvider,t.isReactNativeEnv=c.isReactNativeEnv,t.isRequiredVersion=d.isRequiredVersion,t.isStaticResourcesEqual=h.isStaticResourcesEqual,t.loadScript=h.loadScript,t.loadScriptNode=m.loadScriptNode,t.logger=p.logger,Object.defineProperty(t,"moduleFederationPlugin",{enumerable:!0,get:function(){return i.ModuleFederationPlugin_exports}}),t.normalizeOptions=g.normalizeOptions,t.parseEntry=d.parseEntry,Object.defineProperty(t,"provideSharedPlugin",{enumerable:!0,get:function(){return u.ProvideSharedPlugin_exports}}),t.safeToString=d.safeToString,t.safeWrapper=h.safeWrapper,Object.defineProperty(t,"sharePlugin",{enumerable:!0,get:function(){return s.SharePlugin_exports}}),t.simpleJoinRemoteEntry=f.simpleJoinRemoteEntry,t.warn=d.warn},3910(e,t,r){let o=r(6883),n="[ Module Federation ]",a=console,i=["logger.ts","logger.js","captureStackTrace","Logger.emit","Logger.log","Logger.info","Logger.warn","Logger.error","Logger.debug"];function s(){try{let e=Error().stack;if(!e)return;let[,...t]=e.split("\n"),r=t.filter(e=>!i.some(t=>e.includes(t)));if(!r.length)return;return`Stack trace: -${r.slice(0,5).join("\n")}`}catch{return}}var l=class{setPrefix(e){this.prefix=e}setDelegate(e){this.delegate=e??a}emit(e,t){let r=this.delegate,n=o.isDebugMode()?s():void 0,i=n?[...t,n]:t,l=(()=>{switch(e){case"log":return["log","info"];case"info":return["info","log"];case"warn":return["warn","info","log"];case"error":return["error","warn","log"];default:return["debug","log"]}})();for(let e of l){let t=r[e];if("function"==typeof t)return void t.call(r,this.prefix,...i)}for(let e of l){let t=a[e];if("function"==typeof t)return void t.call(a,this.prefix,...i)}}log(){for(var e=arguments.length,t=Array(e),r=0;re).catch(t=>{throw console.error(`Error importing module ${e}:`,t),sdkImportCache.delete(e),t});return sdkImportCache.set(e,t),t}let loadNodeFetch=async()=>{let e=await importNodeModule("node-fetch");return e.default||e},lazyLoaderHookFetch=async(e,t,r)=>{let o=(e,t)=>r.lifecycle.fetch.emit(e,t),n=await o(e,t||{});return n&&n instanceof Response?n:("u"{let urlObj;if(null==loaderHook?void 0:loaderHook.createScriptHook){let hookResult=loaderHook.createScriptHook(url);hookResult&&"object"==typeof hookResult&&"url"in hookResult&&(url=hookResult.url)}try{urlObj=new URL(url)}catch(e){console.error("Error constructing URL:",e),cb(Error(`Invalid URL: ${e}`));return}let getFetch=async()=>(null==loaderHook?void 0:loaderHook.fetch)?(e,t)=>lazyLoaderHookFetch(e,t,loaderHook):"u"{try{var _vm_constants;let requireFn,res=await f(urlObj.href),data=await res.text(),[path,vm]=await Promise.all([importNodeModule("path"),importNodeModule("vm")]),scriptContext={exports:{},module:{exports:{}}},urlDirname=urlObj.pathname.split("/").slice(0,-1).join("/"),filename=path.basename(urlObj.pathname),script=new vm.Script(`(function(exports, module, require, __dirname, __filename) {${data} -})`,{filename,importModuleDynamically:(null==(_vm_constants=vm.constants)?void 0:_vm_constants.USE_MAIN_CONTEXT_DEFAULT_LOADER)??importNodeModule});requireFn=eval("require"),script.runInThisContext()(scriptContext.exports,scriptContext.module,requireFn,urlDirname,filename);let exportedInterface=scriptContext.module.exports||scriptContext.exports;if(attrs&&exportedInterface&&attrs.globalName)return void cb(void 0,exportedInterface[attrs.globalName]||exportedInterface);cb(void 0,exportedInterface)}catch(e){cb(e instanceof Error?e:Error(`Script execution error: ${e}`))}};getFetch().then(async e=>{if((null==attrs?void 0:attrs.type)==="esm"||(null==attrs?void 0:attrs.type)==="module")return loadModule(urlObj.href,{fetch:e,vm:await importNodeModule("vm")}).then(async e=>{await e.evaluate(),cb(void 0,e.namespace)}).catch(e=>{cb(e instanceof Error?e:Error(`Script execution error: ${e}`))});handleScriptFetch(e,urlObj)}).catch(e=>{cb(e)})}:(e,t,r,o)=>{t(Error("createScriptNode is disabled in non-Node.js environment"))},loadScriptNode="u"new Promise((r,o)=>{createScriptNode(e,(e,n)=>{if(e)o(e);else{var a,i;let e=(null==t||null==(a=t.attrs)?void 0:a.globalName)||`__FEDERATION_${null==t||null==(i=t.attrs)?void 0:i.name}:custom__`;r(globalThis[e]=n)}},t.attrs,t.loaderHook)}):(e,t)=>{throw Error("loadScriptNode is disabled in non-Node.js environment")},esmModuleCache=new Map;async function loadModule(e,t){if(esmModuleCache.has(e))return esmModuleCache.get(e);let{fetch:r,vm:o}=t,n=await (await r(e)).text(),a=new o.SourceTextModule(n,{importModuleDynamically:async(r,o)=>loadModule(new URL(r,e).href,t)});return esmModuleCache.set(e,a),await a.link(async r=>{let o=new URL(r,e).href;return await loadModule(o,t)}),a}exports.createScriptNode=createScriptNode,exports.loadScriptNode=loadScriptNode},6967(e,t){t.normalizeOptions=function(e,t,r){return function(o){if(!1===o)return!1;if(void 0===o)if(e)return t;else return!1;if(!0===o)return t;if(o&&"object"==typeof o)return{...t,...o};throw Error(`Unexpected type for \`${r}\`, expect boolean/undefined/object, got: ${typeof o}`)}}},7345(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ConsumeSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},8841(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerPlugin_exports",{enumerable:!0,get:function(){return o}})},8798(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerReferencePlugin_exports",{enumerable:!0,get:function(){return o}})},7765(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ModuleFederationPlugin_exports",{enumerable:!0,get:function(){return o}})},5448(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ProvideSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},1993(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"SharePlugin_exports",{enumerable:!0,get:function(){return o}})},3417(e,t,r){let o=r(586),n=r(6883),a="[ Federation Runtime ]",i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:o.SEPARATOR,a=e.split(r),i="development"===n.getProcessEnv().NODE_ENV&&t,s="*",l=e=>e.startsWith("http")||e.includes(o.MANIFEST_EXT);if(a.length>=2){let[t,...o]=a;e.startsWith(r)&&(t=a.slice(0,2).join(r),o=[i||a.slice(2).join(r)]);let n=i||o.join(r);return l(n)?{name:t,entry:n}:{name:t,version:n||s}}if(1===a.length){let[e]=a;return i&&l(i)?{name:e,entry:i}:{name:e,version:i||s}}throw`Invalid entry value: ${e}`},s=function(){for(var e=arguments.length,t=Array(e),r=0;rt?e?`${e}${o.SEPARATOR}${t}`:t:e,""):""},l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];try{let n=r?".js":"";return`${t}${e.replace(RegExp(`${o.NameTransformSymbol.AT}`,"g"),o.NameTransformMap[o.NameTransformSymbol.AT]).replace(RegExp(`${o.NameTransformSymbol.HYPHEN}`,"g"),o.NameTransformMap[o.NameTransformSymbol.HYPHEN]).replace(RegExp(`${o.NameTransformSymbol.SLASH}`,"g"),o.NameTransformMap[o.NameTransformSymbol.SLASH])}${n}`}catch(e){throw e}},u=function(e,t,r){try{let n=e;if(t){if(!n.startsWith(t))return n;n=n.replace(RegExp(t,"g"),"")}return n=n.replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.AT]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.AT]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.SLASH]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.SLASH]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.HYPHEN]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.HYPHEN]]),r&&(n=n.replace(".js","")),n}catch(e){throw e}},c=(e,t)=>{if(!e)return"";let r=e;return"."===r&&(r="default_export"),r.startsWith("./")&&(r=r.replace("./","")),l(r,"__federation_expose_",t)},d=(e,t)=>e?l(e,"__federation_shared_",t):"",f=(e,t)=>{if("getPublicPath"in e){let r;return r=e.getPublicPath.startsWith("function")?Function("return "+e.getPublicPath)()():Function(e.getPublicPath)(),`${r}${t}`}return"publicPath"in e?!n.isBrowserEnv()&&!n.isReactNativeEnv()&&"ssrPublicPath"in e&&"string"==typeof e.ssrPublicPath?`${e.ssrPublicPath}${t}`:`${e.publicPath}${t}`:(console.warn("Cannot get resource URL. If in debug mode, please ignore.",e,t),"")},p=e=>{throw Error(`${a}: ${e}`)},h=e=>{console.warn(`${a}: ${e}`)};function m(e){try{return JSON.stringify(e,null,2)}catch(e){return""}}let g=/^([\d^=v<>~]|[*xX]$)/;function y(e){return g.test(e)}t.assert=(e,t)=>{e||p(t)},t.composeKeyWithSeparator=s,t.decodeName=u,t.encodeName=l,t.error=p,t.generateExposeFilename=c,t.generateShareFilename=d,t.getResourceUrl=f,t.isRequiredVersion=y,t.parseEntry=i,t.safeToString=m,t.warn=h},7363(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},2069(e,t){t.attachShareScopeMap=function(e){e.S&&!e.federation.hasAttachShareScopeMap&&e.federation.instance&&e.federation.instance.shareScopeMap&&(e.S=e.federation.instance.shareScopeMap,e.federation.hasAttachShareScopeMap=!0)}},6897(e,t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),t.FEDERATION_SUPPORTED_TYPES=["script"]},916(e,t,r){let o=r(2069),n=r(5216),a=r(7617);t.consumes=function(e){n.updateConsumeOptions(e);let{chunkId:t,promises:r,installedModules:i,webpackRequire:s,chunkMapping:l,moduleToHandlerMapping:u}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{if(s.o(i,e))return r.push(i[e]);let t=t=>{i[e]=0,s.m[e]=r=>{var o;delete s.c[e];let n=t(),{shareInfo:a}=u[e];if((null==a||null==(o=a.shareConfig)?void 0:o.layer)&&n&&"object"==typeof n)try{n.hasOwnProperty("layer")&&void 0!==n.layer||(n.layer=a.shareConfig.layer)}catch(e){}r.exports=n}},o=t=>{delete i[e],s.m[e]=r=>{throw delete s.c[e],t}};try{let n=s.federation.instance;if(!n)throw Error("Federation instance not found!");let{shareKey:l,getter:c,shareInfo:d,treeShakingGetter:f}=u[e],p=a.getUsedExports(s,l),h={...d};Array.isArray(h.scope)&&Array.isArray(h.scope[0])&&(h.scope=h.scope[0]),p&&(h.treeShaking={usedExports:p,useIn:[n.options.name]});let m=n.loadShare(l,{customShareInfo:h}).then(e=>!1===e?(null==f?void 0:f())||c():e);m.then?r.push(i[e]=m.then(t).catch(o)):t(m)}catch(e){o(e)}})}},8167(e,t){t.getSharedFallbackGetter=e=>{let{shareKey:t,factory:r,version:o,webpackRequire:n,libraryType:a="global"}=e,{runtime:i,instance:s,bundlerRuntime:l,sharedFallback:u}=n.federation;if(!u)return r;let c=u[t];if(!c)return r;let d=o?c.find(e=>e[1]===o):c[0];if(!d)throw Error(`No fallback item found for shareKey: ${t} and version: ${o}`);return()=>i.getRemoteEntry({origin:n.federation.instance,remoteInfo:{name:d[2],entry:`${n.p}${d[0]}`,type:a,entryGlobalName:d[2],shareScope:"default"}}).then(e=>{if(!e)throw Error(`Failed to load fallback entry for shareKey: ${t} and version: ${o}`);return e.init(n.federation.instance,l).then(()=>e.get())})}},7617(e,t){t.getUsedExports=function(e,t){let r=e.federation.usedExports;if(r)return r[t]}},6927(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});let o=r(7363),n=r(2069),a=r(6310),i=r(916),s=r(6777),l=r(1735),u=r(7440),c=r(8531),d=r(8167),f=r(9782),p={runtime:f=o.__toESM(f),instance:void 0,initOptions:void 0,bundlerRuntime:{remotes:a.remotes,consumes:i.consumes,I:s.initializeSharing,S:{},installInitialConsumes:l.installInitialConsumes,initContainerEntry:u.initContainerEntry,init:c.init,getSharedFallbackGetter:d.getSharedFallbackGetter},attachShareScopeMap:n.attachShareScopeMap,bundlerRuntimeOptions:{}},h=p.instance,m=p.initOptions,g=p.bundlerRuntime,y=p.bundlerRuntimeOptions;t.attachShareScopeMap=n.attachShareScopeMap,t.bundlerRuntime=g,t.bundlerRuntimeOptions=y,t.default=p,t.initOptions=m,t.instance=h,Object.defineProperty(t,"runtime",{enumerable:!0,get:function(){return f}})},8531(e,t,r){let o=r(7363),n=r(9782),a=r(3129);a=o.__toESM(a),t.init=function(e){var t;let{webpackRequire:o}=e,{initOptions:i,runtime:s,sharedFallback:l,bundlerRuntime:u,libraryType:c}=o.federation;if(!i)throw Error("initOptions is required!");let d=function(){return{name:"tree-shake-plugin",beforeInit(e){let{userOptions:t,origin:i,options:s}=e,d=t.version||s.version;if(!l)return e;let f=t.shared||{},p=[];Object.keys(f).forEach(e=>{(Array.isArray(f[e])?f[e]:[f[e]]).forEach(t=>{if(p.push([e,t]),"get"in t){var r;(r=t).treeShaking||(r.treeShaking={}),t.treeShaking.get=t.get,t.get=u.getSharedFallbackGetter({shareKey:e,factory:t.get,webpackRequire:o,libraryType:c,version:t.version})}})});let h=a.default.global.getGlobalSnapshotInfoByModuleInfo({name:i.name,version:d});if(!h||!("shared"in h))return e;Object.keys(s.shared||{}).forEach(e=>{s.shared[e].forEach(t=>{p.push([e,t])})});let m=(e,t)=>{let o=h.shared.find(t=>t.sharedName===e);if(!o)return;let{treeShaking:a}=t;if(!a)return;let{secondarySharedTreeShakingName:s,secondarySharedTreeShakingEntry:l,treeShakingStatus:u}=o;a.status!==u&&(a.status=u,l&&c&&s&&(a.get=async()=>{let e=await (0,n.getRemoteEntry)({origin:i,remoteInfo:{name:s,entry:l,type:c,entryGlobalName:s,shareScope:"default"}});return await e.init(i,r.federation.bundlerRuntime),e.get()}))};return p.forEach(e=>{let[t,r]=e;m(t,r)}),e}}};return(t=i).plugins||(t.plugins=[]),i.plugins.push(d()),s.init(i)}},7440(e,t){t.initContainerEntry=function(e){let{webpackRequire:t,shareScope:r,initScope:o,shareScopeKey:n,remoteEntryInitOptions:a}=e;if(!t.S||!t.federation||!t.federation.instance||!t.federation.initOptions)return;let i=t.federation.instance;i.initOptions({name:t.federation.initOptions.name,remotes:[],...a});let s=null==a?void 0:a.shareScopeKeys,l=null==a?void 0:a.shareScopeMap;if(n&&"string"!=typeof n)n.forEach(e=>{if(!s||!l)return void i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}});l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})});else{let e=n||"default";Array.isArray(s)?s.forEach(e=>{l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}):i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}return(t.federation.attachShareScopeMap&&t.federation.attachShareScopeMap(t),"function"==typeof t.federation.prefetch&&t.federation.prefetch(),Array.isArray(n))?t.federation.initOptions.shared?t.I(n,o):Promise.all(n.map(e=>t.I(e,o))).then(()=>!0):t.I(n||"default",o)}},6777(e,t,r){let o=r(2069),n=r(6897);t.initializeSharing=function(e){let{shareScopeName:t,webpackRequire:r,initPromises:a,initTokens:i,initScope:s}=e,l=Array.isArray(t)?t:[t];var u=[],c=function(e){s||(s=[]);let l=r.federation.instance;var u=i[e];if(u||(u=i[e]={from:l.name}),s.indexOf(u)>=0)return;s.push(u);let c=a[e];if(c)return c;var d=e=>"u">typeof console&&console.warn&&console.warn(e),f=o=>{var n=e=>d("Initialization of sharing external failed: "+e);try{var a=r(o);if(!a)return;var i=o=>o&&o.init&&o.init(r.S[e],s,{shareScopeMap:r.S||{},shareScopeKeys:t});if(a.then)return p.push(a.then(i,n));var l=i(a);if(l&&"boolean"!=typeof l&&l.then)return p.push(l.catch(n))}catch(e){n(e)}};let p=l.initializeSharing(e,{strategy:l.options.shareStrategy,initScope:s,from:"build"});o.attachShareScopeMap(r);let h=r.federation.bundlerRuntimeOptions.remotes;return(h&&Object.keys(h.idToRemoteMap).forEach(e=>{let t=h.idToRemoteMap[e],r=h.idToExternalAndNameMapping[e][2];if(t.length>1)f(r);else if(1===t.length){let e=t[0];n.FEDERATION_SUPPORTED_TYPES.includes(e.externalType)||f(r)}}),p.length)?a[e]=Promise.all(p).then(()=>a[e]=!0):a[e]=!0};return l.forEach(e=>{u.push(c(e))}),Promise.all(u).then(()=>!0)}},1735(e,t,r){let o=r(5216),n=r(7617);function a(e){let{moduleId:t,moduleToHandlerMapping:r,webpackRequire:o,asyncLoad:a}=e,i=o.federation.instance;if(!i)throw Error("Federation instance not found!");let{shareKey:s,shareInfo:l}=r[t];try{let e=n.getUsedExports(o,s),t={...l};if(e&&(t.treeShaking={usedExports:e,useIn:[i.options.name]}),a)return i.loadShare(s,{customShareInfo:t});return i.loadShareSync(s,{customShareInfo:t})}catch(e){throw console.error('loadShareSync failed! The function should not be called unless you set "eager:true". If you do not set it, and encounter this issue, you can check whether an async boundary is implemented.'),console.error("The original error message is as follows: "),e}}t.installInitialConsumes=function(e){o.updateConsumeOptions(e);let{moduleToHandlerMapping:t,webpackRequire:r,installedModules:n,initialConsumes:i,asyncLoad:s}=e,l=[];i.forEach(e=>{let o=()=>a({moduleId:e,moduleToHandlerMapping:t,webpackRequire:r,asyncLoad:s});l.push([e,o])});let u=(e,o)=>{r.m[e]=a=>{var i;n[e]=0,delete r.c[e];let s=o();if("function"!=typeof s)throw Error(`Shared module is not available for eager consumption: ${e}`);let l=s(),{shareInfo:u}=t[e];if((null==u||null==(i=u.shareConfig)?void 0:i.layer)&&l&&"object"==typeof l)try{l.hasOwnProperty("layer")&&void 0!==l.layer||(l.layer=u.shareConfig.layer)}catch(e){}a.exports=l}};if(s)return Promise.all(l.map(async e=>{let[t,r]=e,o=await r();u(t,()=>o)}));l.forEach(e=>{let[t,r]=e;u(t,r)})}},6310(e,t,r){r(7363);let o=r(2069),n=r(6897),a=r(5216),i=r(630);t.remotes=function(e){a.updateRemoteOptions(e);let{chunkId:t,promises:r,webpackRequire:s,chunkMapping:l,idToExternalAndNameMapping:u,idToRemoteMap:c}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{let t=s.R;t||(t=[]);let o=u[e],a=c[e]||[];if(t.indexOf(o)>=0)return;if(t.push(o),o.p)return r.push(o.p);let l=t=>{t||(t=Error("Container missing")),"string"==typeof t.message&&(t.message+=` -while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,p,r):l();var p=(e,r,n)=>d(r.get,o[1],t,0,h,n),h=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let m=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(m,o[2],0,0,h,1):d(s,o[2],0,0,f,1)})}},5216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=c;if(f&&p){for(let[e,t]of Object.entries(p))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},4043(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,p,h,m=r(6927),g=r.n(m);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={"@sdk":[{alias:"@sdk",externalType:"promise",shareScope:"default"}]},_="pimcore_studio_ui_bundle_core",b="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},m=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},S=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},M=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},N={},T=[],O={},A=null==(p=r.initializeExposesData)?void 0:p.shareScope;for(let e in g())r.federation[e]=g()[e];m(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(M))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),m(r.federation,"initOptions",()=>({})),m(r.federation.initOptions,"name",()=>_),m(r.federation.initOptions,"shareStrategy",()=>b),m(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),m(r.federation,"bundlerRuntimeOptions",()=>({})),m(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),m(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>S),m(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),m(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),m(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:S,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:N,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:T,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(h=r.consumesLoadingData)?void 0:h.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:N,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}},8448(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](r,r.exports,__webpack_require__),r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(5095),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return 889==e},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(r,o){if(1&o&&(r=this(r)),8&o||"object"==typeof r&&r&&(4&o&&r.__esModule||16&o&&"function"==typeof r.then))return r;var n=Object.create(null);__webpack_require__.r(n);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&o&&r;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>r[e]});return a.default=()=>r,__webpack_require__.d(n,a),n}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>""+e+".javascript"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[8448]},uniqueName:"pimcore_studio_ui_bundle_core"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{},moduleIdToConsumeDataMapping:{},initialConsumes:[]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={889:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(889==t){var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}else e[t]=0};var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);s&&s(__webpack_require__)}for(t&&t(r);l{__webpack_require__.remotesLoadingData={chunkMapping:{517:["8476"]},moduleIdToRemoteDataMapping:{8476:{shareScope:"default",name:"./_internal_/mf-bootstrap",externalModuleId:8448,remoteName:"@sdk"}}},__webpack_require__.f.remotes=__webpack_require__.f.remotes||function(){throw Error("should have __webpack_require__.f.remotes")}})(),(()=>{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(4043)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/documentEditorIframe.html b/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/documentEditorIframe.html deleted file mode 100644 index dfa1d22c79..0000000000 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/documentEditorIframe.html +++ /dev/null @@ -1 +0,0 @@ -Rsbuild App
\ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/entrypoints.json b/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/entrypoints.json deleted file mode 100644 index 525926756f..0000000000 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/entrypoints.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "entrypoints": { - "main": { - "js": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js" - ], - "css": [] - }, - "documentEditorIframe": { - "js": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js" - ], - "css": [] - }, - "exposeRemote": { - "js": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/exposeRemote.js" - ], - "css": [] - } - } -} \ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/exposeRemote.js b/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/exposeRemote.js deleted file mode 100644 index 9d7f6f5613..0000000000 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/exposeRemote.js +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/main.html b/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/main.html deleted file mode 100644 index 9ac658c5c8..0000000000 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/main.html +++ /dev/null @@ -1 +0,0 @@ -Rsbuild App
\ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/manifest.json b/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/manifest.json deleted file mode 100644 index 0c70d75b7e..0000000000 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/manifest.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "allFiles": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js", - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js", - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-stats.json", - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-manifest.json", - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/documentEditorIframe.html", - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/main.html" - ], - "entries": { - "main": { - "html": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/main.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js" - ] - } - }, - "documentEditorIframe": { - "html": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/documentEditorIframe.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js" - ] - } - } - }, - "integrity": {} -} \ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-manifest.json b/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-manifest.json deleted file mode 100644 index d600d2a2d7..0000000000 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-manifest.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "id": "pimcore_studio_ui_bundle_core", - "name": "pimcore_studio_ui_bundle_core", - "metaData": { - "name": "pimcore_studio_ui_bundle_core", - "type": "app", - "buildInfo": { - "buildVersion": "0.0.1", - "buildName": "@pimcore/studio-ui-bundle" - }, - "remoteEntry": { - "name": "", - "path": "", - "type": "global" - }, - "types": { - "path": "", - "name": "", - "zip": "", - "api": "" - }, - "globalName": "pimcore_studio_ui_bundle_core", - "pluginVersion": "2.2.3", - "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/" - }, - "shared": [], - "remotes": [ - { - "federationContainerName": "promise new Promise(resolve => {\n const studioUIBundleRemoteUrl = window.StudioUIBundleRemoteUrl\n const script = document.createElement('script')\n script.src = studioUIBundleRemoteUrl\n script.onload = () => {\n const proxy = {\n get: (request) => window['pimcore_studio_ui_bundle'].get(request),\n init: (...arg) => {\n try {\n return window['pimcore_studio_ui_bundle'].init(...arg)\n } catch(e) {\n console.log('remote container already initialized')\n }\n }\n }\n resolve(proxy)\n }\n document.head.appendChild(script);\n })\n ", - "moduleName": "_internal_/mf-bootstrap", - "alias": "@sdk", - "entry": "*" - }, - { - "federationContainerName": "promise new Promise(resolve => {\n const studioUIBundleRemoteUrl = window.StudioUIBundleRemoteUrl\n const script = document.createElement('script')\n script.src = studioUIBundleRemoteUrl\n script.onload = () => {\n const proxy = {\n get: (request) => window['pimcore_studio_ui_bundle'].get(request),\n init: (...arg) => {\n try {\n return window['pimcore_studio_ui_bundle'].init(...arg)\n } catch(e) {\n console.log('remote container already initialized')\n }\n }\n }\n resolve(proxy)\n }\n document.head.appendChild(script);\n })\n ", - "moduleName": "_internal_/mf-bootstrap-document-editor-iframe", - "alias": "@sdk", - "entry": "*" - } - ], - "exposes": [] -} \ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-stats.json b/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-stats.json deleted file mode 100644 index d193697e11..0000000000 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/mf-stats.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "id": "pimcore_studio_ui_bundle_core", - "name": "pimcore_studio_ui_bundle_core", - "metaData": { - "name": "pimcore_studio_ui_bundle_core", - "type": "app", - "buildInfo": { - "buildVersion": "0.0.1", - "buildName": "@pimcore/studio-ui-bundle" - }, - "remoteEntry": { - "name": "", - "path": "", - "type": "global" - }, - "types": { - "path": "", - "name": "", - "zip": "", - "api": "" - }, - "globalName": "pimcore_studio_ui_bundle_core", - "pluginVersion": "2.2.3", - "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/" - }, - "shared": [], - "remotes": [ - { - "alias": "@sdk", - "consumingFederationContainerName": "pimcore_studio_ui_bundle_core", - "federationContainerName": "promise new Promise(resolve => {\n const studioUIBundleRemoteUrl = window.StudioUIBundleRemoteUrl\n const script = document.createElement('script')\n script.src = studioUIBundleRemoteUrl\n script.onload = () => {\n const proxy = {\n get: (request) => window['pimcore_studio_ui_bundle'].get(request),\n init: (...arg) => {\n try {\n return window['pimcore_studio_ui_bundle'].init(...arg)\n } catch(e) {\n console.log('remote container already initialized')\n }\n }\n }\n resolve(proxy)\n }\n document.head.appendChild(script);\n })\n ", - "moduleName": "_internal_/mf-bootstrap", - "usedIn": [ - "js/src/core/main.ts" - ], - "version": "*" - }, - { - "alias": "@sdk", - "consumingFederationContainerName": "pimcore_studio_ui_bundle_core", - "federationContainerName": "promise new Promise(resolve => {\n const studioUIBundleRemoteUrl = window.StudioUIBundleRemoteUrl\n const script = document.createElement('script')\n script.src = studioUIBundleRemoteUrl\n script.onload = () => {\n const proxy = {\n get: (request) => window['pimcore_studio_ui_bundle'].get(request),\n init: (...arg) => {\n try {\n return window['pimcore_studio_ui_bundle'].init(...arg)\n } catch(e) {\n console.log('remote container already initialized')\n }\n }\n }\n resolve(proxy)\n }\n document.head.appendChild(script);\n })\n ", - "moduleName": "_internal_/mf-bootstrap-document-editor-iframe", - "usedIn": [ - "js/src/core/modules/document/editor/shared-tab-manager/tabs/edit/iframe-app/main.ts" - ], - "version": "*" - } - ], - "exposes": [] -} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/entrypoints.json b/public/build/9c444380-1446-4576-a90f-625ff01d8587/entrypoints.json deleted file mode 100644 index 90b32ff8ee..0000000000 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/entrypoints.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "entrypoints": { - "index": { - "js": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/7366.cc04fcb0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js" - ], - "css": [] - }, - "pimcore_studio_ui_bundle": { - "js": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js" - ], - "css": [] - }, - "exposeRemote": { - "js": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/exposeRemote.js" - ], - "css": [] - } - } -} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/manifest.json b/public/build/9c444380-1446-4576-a90f-625ff01d8587/manifest.json deleted file mode 100644 index e8e9402bb5..0000000000 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/manifest.json +++ /dev/null @@ -1,811 +0,0 @@ -{ - "allFiles": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2775.0d98465a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8222.acb59083.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/582.4f5fd381.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6464.b6d25cb6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9204.8f0c9c3a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4083.82e017ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6272.f2f56a80.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6619.93b9f2c4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8473.25a53f08.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7463.e177b088.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/243.098f10af.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/854.95bad760.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5976.be3da2cf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/489.693d11de.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6579.cda7f334.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/254.7abe0c11.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/706.01d44a78.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1668.120c2fdd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3209.6722a080.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6815.80ba0d22.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3379.f0e413e5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2237.e23d4ce3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/749.7c748f48.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8658.55f9d53e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_default_export.1b3f6d28.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api.fbe2c7c1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__asset.9dee10b3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__class_definition.6192771c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__data_object.160792b1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__dependencies.a9508cf9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__documents.8a5c66b8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__elements.5babca9f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__metadata.e9f2a028.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__perspectives.936945cf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__properties.314180ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__role.89b3367b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__schedule.9ccfa450.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__settings.2c556240.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__tags.f737e834.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__thumbnails.a167200d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__translations.7a8790cb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__user.0c42ebe1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__version.7220c1e1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__workflow.ad14d72f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__reports.50fc5ca0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__asset.51999de9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__class_definitions.009acac4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__document.5167229e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__auth.65d96793.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__icon_library.481bed67.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__translations.e3016a50.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__notifications.212009d9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_utils.526f5bda.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5561.b76a78d2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7789.50873df9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2463.da2cfb76.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7597.42dde6f3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2272.b29c0e6c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5841.812278cf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9880.64c12943.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6823.dc627341.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7680.2cb113f6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6550.09a63ebf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/619.59f8e380.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9114.7d0c9ca9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2709.809fe258.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6484.2519155d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1750.19b70383.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9603.dcad1930.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5154.a94bb137.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3756.7a4c5e02.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7006.928d8671.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2841.e1a4734b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3240.f86bdd91.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8971.cb9861fc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5114.ebf1bfcb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9076.7a2b7e9a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4871.b42a8935.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/705.fad963d9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8231.0a773046.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4160.1311e5ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8850.1ef4da0e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1635.18d9dd0b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6572.510ff641.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/157.8615578d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1742.9207983d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6335.0ad9b174.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2168.3b00277e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3066.31b992e1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1003.469c1fdb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8372.d6f25582.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2117.da809f8e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8567.2e09cb4e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2016.2efa4d68.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8609.b6039081.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2162.e42c8ad6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3836.6a4b9fd9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7821.b1a2dc53.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3935.0990f5be.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6984.af4507e3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7440.04b86278.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9030.03e4d789.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2893.99328fa1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8707.80dfb17f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2290.68fd6bdf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3657.cf916f7e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4680.66eae797.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/446.2523c50a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8645.7a1aa6c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8932.e8090749.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2619.543b4f03.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5690.782c3ae6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1303.f89c138e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/380.0cdf7b27.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5731.15301fd9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3330.c830e580.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4329.4e8ef4cc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7960.9d4a54c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9471.3511726f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/141.a305e3e9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8574.8c240d77.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6255.2e48b884.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3941.9ceed713.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8779.bdcddd0a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4062.57e047db.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5804.1be86954.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3750.921e74ed.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3392.42b07d09.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/235.97e84a52.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6313.e76747fb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7053.63c4c0a6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3068.7b747a5f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7799.a37e9eaf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3686.6b54036a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8467.f7bd216d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3548.133939a2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3197.ebf93fd4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5431.0eb962a2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1265.d95e4129.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3396.4cc8f904.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1428.b3183de2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3528.60fd342c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/830.dda8066f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9052.67bd17cd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1019.2c88f074.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7161.f24a612f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4120.afd6653a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3839.800430ba.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3166.32d06e35.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/365.e655295f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2380.d6bc17ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3009.be7deeee.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7264.fc5a523f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7527.e64ccbd1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/261.0e13114e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7828.812c672f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9403.9f36612d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6458.b5282ed0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1065.5cc838a2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6472.df513d2d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3406.86351b7b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2492.cc8cd85c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8835.d50a0005.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/129.24017dc3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7334.be0321bf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4346.867849d4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2472.f40725db.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2073.0f14210c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8547.3355910d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5186.deb009c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9691.a7a34297.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2410.4b5baf39.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2597.969d51fc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3748.7adfb9d1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1270.4a7146b0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4241.f5777d74.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8272.64fe9f7a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4771.c5e9b1dd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1851.1528a0c7.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7939.af086f08.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8477.0c91210d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1102.01cefe38.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5412.53c2e3aa.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6186.9fa7f507.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1553.630acce1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5168.fdbd2cef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/172.cb77a99e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1875.048f7c1f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9801.09cd7cd0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2015.28b3f667.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1834.3ea07c1f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3584.4ad9a196.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/935.4dfccbd9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5545.cde240bd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/521.cb98200a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1472.e37f95af.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/206.0227085b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4799.a225248d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7041.230cf6a4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6695.087ae8ff.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4718.b15efaaf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2399.305db162.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2980.d885aa98.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/85.3d7bb7a3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4426.20bcaf42.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7073.fb6439a4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4154.2617dd8b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7396.da4c50f4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/687.ae382b4d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8910.7686ba2c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2121.8117f390.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3144.edcf7515.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7171.8731ac06.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1180.c2738508.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9607.214ebd42.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3846.e0ec9537.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7793.d6bce01b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5904.327a2f83.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2427.2406cc45.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4858.820711a5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8437.864e7b29.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4084.a80198a1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7935.ba8eb0b4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/334.67e5210f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2793.a25ad8de.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6424.ca220edd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4195.4fb2f2ba.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8146.e69de8bc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2845.d2c82bf6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5331.bbbb73f8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8557.e526282d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2503.1efd0e77.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8832.e1a7ddbf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1153.7cbdaf39.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8635.29404620.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2638.d949ec28.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6649.2b614ce3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2098.4b97bea3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1612.54f63d68.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6759.cf6c0abd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/660.5242d83f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8536.df877041.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9357.709b2aae.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/145.7d13ff5f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5990.3c9d8c23.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/103.3717b318.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6052.a270b069.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1643.b41a359d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8520.3f467428.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5177.a255dad2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1438.67cdf5fd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4034.ebc0a070.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6819.424ecfc4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5696.ab2274ca.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9767.926906cb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3653.7c1ffecd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3838.4b01fffb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2179.7408679f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6229.ec077e40.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4225.61de23fc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8403.58bbddc4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5277.97ce57aa.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2464.8deaa84f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6135.d371dcf8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1814.16619920.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2189.e296ffec.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1708.de5f09b0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1762.e6454223.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/281.d912a74e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9336.9a425d8d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7679.a6829c17.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6270.f9ff3abd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3125.ce787981.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/692.ac93e4e2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2267.ad4d61d8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9322.81e49a3d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6743.851be9cb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3062.323c4508.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3229.97f4b7e5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2739.84cc2ba2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/25.36d6a68b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4603.86da83a0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3055.b0f87225.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6967.4d971194.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5084.877dbf80.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/658.dc677028.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3.470a371d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1688.4626095c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5454.a8bca7d3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8031.b368b0bf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7524.73ba348d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/101.1b8f34f4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7210.9113a386.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7419.b1cfaeac.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/198.96c8f5d3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2204.875d7d36.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7250.364fbcad.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8051.9c74ecaf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6766.c76f91a5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8050.502aa521.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8800.1154e54c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4702.508d41d1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4028.d910fe41.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7994.c600e1ce.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1797.bc29fd89.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4715.3e1202d6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/741.734ea878.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4319.ca014781.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5753.371bde44.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/803.52d29752.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9536.9b33a533.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1567.debd0837.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8479.55f72fe0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4698.6d0eba4e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1010.af98507b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/35.d81ad3e5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6911.d02db343.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8195.c8bb6771.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2373.11c5538c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5712.ffe8bf9d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1207.ea0577c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4530.72904f19.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2103.0449b778.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/lib-axios.f458d745.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4693.552164ec.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/385.d9b4f6a1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2287.6a200c82.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/45.e217286d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1721.fdc19114.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/6411.27bd1518.css", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6411.ae78ff82.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9765.07ec2c12.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2202.bd928b8b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5123.9f567207.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9007.f28d0779.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/7366.cc04fcb0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2188.72e65c95.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3902.5873a27f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7442.636a9ffa.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/175.bd0ef661.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9454.03f9cbf9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4596.13ba10c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1693.48c272d7.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2843.e1d9c7bc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2545.dcb1e512.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/mf-stats.json", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/mf-manifest.json", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Light.bec6f0ae.ttf", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Regular.4291f48c.ttf", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Bold.2c00c297.ttf", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/svg/spritesheet.ac8b36fa.svg", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/index.html" - ], - "entries": { - "index": { - "html": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/index.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/7366.cc04fcb0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js" - ] - }, - "async": { - "js": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9007.f28d0779.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5123.9f567207.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9765.07ec2c12.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/45.e217286d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2287.6a200c82.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4693.552164ec.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6550.09a63ebf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7680.2cb113f6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9880.64c12943.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2272.b29c0e6c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7597.42dde6f3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2463.da2cfb76.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7789.50873df9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5561.b76a78d2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8658.55f9d53e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/749.7c748f48.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2237.e23d4ce3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3379.f0e413e5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6815.80ba0d22.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3209.6722a080.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1668.120c2fdd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/706.01d44a78.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/254.7abe0c11.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6579.cda7f334.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/489.693d11de.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5976.be3da2cf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/854.95bad760.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/243.098f10af.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7463.e177b088.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8473.25a53f08.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6619.93b9f2c4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6272.f2f56a80.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4083.82e017ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9204.8f0c9c3a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6464.b6d25cb6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/582.4f5fd381.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8222.acb59083.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2775.0d98465a.js" - ] - } - }, - "pimcore_studio_ui_bundle": { - "assets": [ - "static/font/Lato-Light.bec6f0ae.ttf", - "static/font/Lato-Bold.2c00c297.ttf", - "static/font/Lato-Regular.4291f48c.ttf", - "static/svg/spritesheet.ac8b36fa.svg" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/remoteEntry.js" - ] - }, - "async": { - "js": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2545.dcb1e512.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2843.e1d9c7bc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1693.48c272d7.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4596.13ba10c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9454.03f9cbf9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/175.bd0ef661.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7442.636a9ffa.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3902.5873a27f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2188.72e65c95.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9007.f28d0779.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5123.9f567207.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2202.bd928b8b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9765.07ec2c12.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6411.ae78ff82.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1721.fdc19114.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/45.e217286d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2287.6a200c82.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/385.d9b4f6a1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4693.552164ec.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/lib-axios.f458d745.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2103.0449b778.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4530.72904f19.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1207.ea0577c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5712.ffe8bf9d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2373.11c5538c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8195.c8bb6771.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6911.d02db343.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/35.d81ad3e5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1010.af98507b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4698.6d0eba4e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8479.55f72fe0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1567.debd0837.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9536.9b33a533.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/803.52d29752.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5753.371bde44.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4319.ca014781.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/741.734ea878.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4715.3e1202d6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1797.bc29fd89.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7994.c600e1ce.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4028.d910fe41.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4702.508d41d1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8800.1154e54c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8050.502aa521.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6766.c76f91a5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8051.9c74ecaf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7250.364fbcad.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2204.875d7d36.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/198.96c8f5d3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7419.b1cfaeac.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7210.9113a386.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/101.1b8f34f4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7524.73ba348d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8031.b368b0bf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5454.a8bca7d3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1688.4626095c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3.470a371d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/658.dc677028.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5084.877dbf80.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6967.4d971194.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3055.b0f87225.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4603.86da83a0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/25.36d6a68b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2739.84cc2ba2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3229.97f4b7e5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3062.323c4508.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6743.851be9cb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9322.81e49a3d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2267.ad4d61d8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/692.ac93e4e2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3125.ce787981.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6270.f9ff3abd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7679.a6829c17.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9336.9a425d8d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/281.d912a74e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1762.e6454223.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1708.de5f09b0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2189.e296ffec.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1814.16619920.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6135.d371dcf8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2464.8deaa84f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5277.97ce57aa.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8403.58bbddc4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4225.61de23fc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6229.ec077e40.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2179.7408679f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3838.4b01fffb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3653.7c1ffecd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9767.926906cb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5696.ab2274ca.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6819.424ecfc4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4034.ebc0a070.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1438.67cdf5fd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5177.a255dad2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8520.3f467428.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1643.b41a359d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6052.a270b069.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/103.3717b318.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5990.3c9d8c23.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/145.7d13ff5f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9357.709b2aae.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8536.df877041.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/660.5242d83f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6759.cf6c0abd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1612.54f63d68.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2098.4b97bea3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6649.2b614ce3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2638.d949ec28.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8635.29404620.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1153.7cbdaf39.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8832.e1a7ddbf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2503.1efd0e77.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8557.e526282d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5331.bbbb73f8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2845.d2c82bf6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8146.e69de8bc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4195.4fb2f2ba.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6424.ca220edd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2793.a25ad8de.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/334.67e5210f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7935.ba8eb0b4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4084.a80198a1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8437.864e7b29.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4858.820711a5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2427.2406cc45.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5904.327a2f83.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7793.d6bce01b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3846.e0ec9537.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9607.214ebd42.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1180.c2738508.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7171.8731ac06.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3144.edcf7515.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2121.8117f390.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8910.7686ba2c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/687.ae382b4d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7396.da4c50f4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4154.2617dd8b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7073.fb6439a4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4426.20bcaf42.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/85.3d7bb7a3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2980.d885aa98.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2399.305db162.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4718.b15efaaf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6695.087ae8ff.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7041.230cf6a4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4799.a225248d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/206.0227085b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1472.e37f95af.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/521.cb98200a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5545.cde240bd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/935.4dfccbd9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3584.4ad9a196.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1834.3ea07c1f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2015.28b3f667.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9801.09cd7cd0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1875.048f7c1f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/172.cb77a99e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5168.fdbd2cef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1553.630acce1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6186.9fa7f507.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5412.53c2e3aa.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1102.01cefe38.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8477.0c91210d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7939.af086f08.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1851.1528a0c7.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4771.c5e9b1dd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8272.64fe9f7a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4241.f5777d74.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1270.4a7146b0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3748.7adfb9d1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2597.969d51fc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2410.4b5baf39.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9691.a7a34297.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5186.deb009c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8547.3355910d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2073.0f14210c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2472.f40725db.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4346.867849d4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7334.be0321bf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/129.24017dc3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8835.d50a0005.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2492.cc8cd85c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3406.86351b7b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6472.df513d2d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1065.5cc838a2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6458.b5282ed0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9403.9f36612d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7828.812c672f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/261.0e13114e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7527.e64ccbd1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7264.fc5a523f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3009.be7deeee.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2380.d6bc17ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/365.e655295f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3166.32d06e35.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3839.800430ba.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4120.afd6653a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7161.f24a612f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1019.2c88f074.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9052.67bd17cd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/830.dda8066f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3528.60fd342c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1428.b3183de2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3396.4cc8f904.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1265.d95e4129.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5431.0eb962a2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3197.ebf93fd4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3548.133939a2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8467.f7bd216d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3686.6b54036a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7799.a37e9eaf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3068.7b747a5f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7053.63c4c0a6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6313.e76747fb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/235.97e84a52.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3392.42b07d09.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3750.921e74ed.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5804.1be86954.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4062.57e047db.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8779.bdcddd0a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3941.9ceed713.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6255.2e48b884.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8574.8c240d77.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/141.a305e3e9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9471.3511726f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7960.9d4a54c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4329.4e8ef4cc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3330.c830e580.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5731.15301fd9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/380.0cdf7b27.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1303.f89c138e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5690.782c3ae6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2619.543b4f03.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8932.e8090749.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8645.7a1aa6c0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/446.2523c50a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4680.66eae797.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3657.cf916f7e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2290.68fd6bdf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8707.80dfb17f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2893.99328fa1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9030.03e4d789.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7440.04b86278.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6984.af4507e3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3935.0990f5be.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7821.b1a2dc53.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3836.6a4b9fd9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2162.e42c8ad6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8609.b6039081.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2016.2efa4d68.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8567.2e09cb4e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2117.da809f8e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8372.d6f25582.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1003.469c1fdb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3066.31b992e1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2168.3b00277e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6335.0ad9b174.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1742.9207983d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/157.8615578d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6572.510ff641.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1635.18d9dd0b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8850.1ef4da0e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4160.1311e5ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8231.0a773046.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/705.fad963d9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4871.b42a8935.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9076.7a2b7e9a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5114.ebf1bfcb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8971.cb9861fc.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3240.f86bdd91.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2841.e1a4734b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7006.928d8671.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3756.7a4c5e02.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5154.a94bb137.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9603.dcad1930.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1750.19b70383.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6484.2519155d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2709.809fe258.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9114.7d0c9ca9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/619.59f8e380.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6550.09a63ebf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7680.2cb113f6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6823.dc627341.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9880.64c12943.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5841.812278cf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2272.b29c0e6c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7597.42dde6f3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2463.da2cfb76.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7789.50873df9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5561.b76a78d2.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_utils.526f5bda.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__notifications.212009d9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__translations.e3016a50.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__icon_library.481bed67.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__auth.65d96793.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__document.5167229e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__class_definitions.009acac4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__asset.51999de9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__reports.50fc5ca0.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__workflow.ad14d72f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__version.7220c1e1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__user.0c42ebe1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__translations.7a8790cb.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__thumbnails.a167200d.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__tags.f737e834.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__settings.2c556240.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__schedule.9ccfa450.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__role.89b3367b.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__properties.314180ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__perspectives.936945cf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__metadata.e9f2a028.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__elements.5babca9f.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__documents.8a5c66b8.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__dependencies.a9508cf9.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__data_object.160792b1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__class_definition.6192771c.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api__asset.9dee10b3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_api.fbe2c7c1.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_default_export.1b3f6d28.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8658.55f9d53e.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/749.7c748f48.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2237.e23d4ce3.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3379.f0e413e5.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6815.80ba0d22.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/3209.6722a080.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/1668.120c2fdd.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/706.01d44a78.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/254.7abe0c11.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6579.cda7f334.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/489.693d11de.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/5976.be3da2cf.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/854.95bad760.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/243.098f10af.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/7463.e177b088.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8473.25a53f08.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6619.93b9f2c4.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6272.f2f56a80.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/4083.82e017ef.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/9204.8f0c9c3a.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/6464.b6d25cb6.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/582.4f5fd381.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/8222.acb59083.js", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/2775.0d98465a.js" - ], - "css": [ - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/6411.27bd1518.css", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css", - "/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap.f35a8364.css" - ] - } - } - }, - "integrity": {} -} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css b/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css deleted file mode 100644 index 16e4bfadd8..0000000000 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.f35a8364.css +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ -.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--color-1:#f7f7f7;--color-2:#f0f0f0;--color-3:#e9e9e9;--color-4:#e2e2e2;--color-5:#dbdbdb;--color-6:#d4d4d4;--color-drag1:#5f86c4;--color-drag2:#77a677;--color-drag1-background:#5f86c41a;--color-drag2-background:#77a67713;--font-size:medium;--font-family:Roboto,Arial,sans-serif;--color-overflow:gray;--color-icon:gray;--color-tabset-background:var(--color-background);--color-tabset-background-selected:var(--color-1);--color-tabset-background-maximized:var(--color-6);--color-tabset-divider-line:var(--color-4);--color-tabset-header-background:var(--color-background);--color-tabset-header:var(--color-text);--color-border-background:var(--color-background);--color-border-divider-line:var(--color-4);--color-tab-selected:var(--color-text);--color-tab-selected-background:var(--color-4);--color-tab-unselected:gray;--color-tab-unselected-background:transparent;--color-tab-textbox:var(--color-text);--color-tab-textbox-background:var(--color-3);--color-border-tab-selected:var(--color-text);--color-border-tab-selected-background:var(--color-4);--color-border-tab-unselected:gray;--color-border-tab-unselected-background:var(--color-2);--color-splitter:var(--color-1);--color-splitter-hover:var(--color-4);--color-splitter-drag:var(--color-4);--color-drag-rect-border:var(--color-6);--color-drag-rect-background:var(--color-4);--color-drag-rect:var(--color-text);--color-popup-border:var(--color-6);--color-popup-unselected:var(--color-text);--color-popup-unselected-background:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.flexlayout__splitter{background-color:var(--color-splitter)}@media (hover:hover){.flexlayout__splitter:hover{background-color:var(--color-splitter-hover);transition:background-color .1s ease-in 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);display:flex;overflow:hidden}.flexlayout__tabset_tabbar_outer_top{border-bottom:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_outer_bottom{border-top:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@media (hover:hover){.flexlayout__tab_button_stretch:hover{color:var(--color-tab-selected)}}.flexlayout__tab_button--selected{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}@media (hover:hover){.flexlayout__tab_button:hover{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}}.flexlayout__tab_button--unselected{background-color:var(--color-tab-unselected-background);color:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__tab_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__tab_button:hover .flexlayout__tab_button_trailing{visibility:visible}}.flexlayout__tab_button--selected .flexlayout__tab_button_trailing{visibility:visible}.flexlayout__tab_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.flexlayout__border_button--selected{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}@media (hover:hover){.flexlayout__border_button:hover{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}}.flexlayout__border_button--unselected{background-color:var(--color-border-tab-unselected-background);color:var(--color-border-tab-unselected)}.flexlayout__border_button_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__border_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__border_button:hover .flexlayout__border_button_trailing{visibility:visible}}.flexlayout__border_button--selected .flexlayout__border_button_trailing{visibility:visible}.flexlayout__border_toolbar{align-items:center;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js.LICENSE.txt b/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/616.98e20c89.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js b/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js deleted file mode 100644 index 031eb93458..0000000000 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js +++ /dev/null @@ -1,5297 +0,0 @@ -/*! For license information please see __federation_expose_app.0a64ee83.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["8234"],{66894(e,t,i){var r={"./ar.inline.svg":["36592","521"],"./ca.inline.svg":["91363","1472"]};function n(e){if(!i.o(r,e))return Promise.resolve().then(function(){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t});var t=r[e],n=t[0];return i.e(t[1]).then(function(){return i(n)})}n.keys=()=>Object.keys(r),n.id=66894,e.exports=n},90670(e,t,i){var r={"./co.inline.svg":["46497","5690"],"./mo.inline.svg":["51075","5904"],"./cv.inline.svg":["47870","5731"],"./do.inline.svg":["60550","8779"],"./lv.inline.svg":["80225","4426"],"./il.inline.svg":["63750","9691"],"./az.inline.svg":["35787","705"],"./lb.inline.svg":["33421","206"],"./st.inline.svg":["36316","3229"],"./ao.inline.svg":["18599","3756"],"./kg.inline.svg":["39441","6186"],"./tj.inline.svg":["50669","5454"],"./tw.inline.svg":["15950","8051"],"./mq.inline.svg":["657","4858"],"./bm.inline.svg":["85750","1003"],"./is.inline.svg":["78771","8272"],"./qa.inline.svg":["70797","3838"],"./bi.inline.svg":["47042","6335"],"./tf.inline.svg":["54457","658"],"./au.inline.svg":["79025","5114"],"./ae.inline.svg":["81057","9114"],"./ck.inline.svg":["43037","446"],"./fm.inline.svg":["8074","5431"],"./sa.inline.svg":["60851","2464"],"./bl.inline.svg":["32273","3066"],"./tm.inline.svg":["84260","101"],"./bh.inline.svg":["21581","1742"],"./um.inline.svg":["59965","4702"],"./nl.inline.svg":["10957","2638"],"./languages/ar.inline.svg":["36592","521"],"./bn.inline.svg":["43311","8372"],"./dm.inline.svg":["52116","3941"],"./lk.inline.svg":["54890","6695"],"./br.inline.svg":["6115","2016"],"./ga.inline.svg":["93631","1428"],"./gb-eng.inline.svg":["12699","3528"],"./km.inline.svg":["48151","172"],"./si.inline.svg":["74315","9336"],"./lu.inline.svg":["86388","85"],"./ml.inline.svg":["91949","9607"],"./as.inline.svg":["77451","3240"],"./vi.inline.svg":["84718","803"],"./mx.inline.svg":["59710","4195"],"./ne.inline.svg":["24458","2503"],"./en.inline.svg":["39632","6313"],"./ky.inline.svg":["6211","3584"],"./bg.inline.svg":["53420","157"],"./gd.inline.svg":["3840","7161"],"./gn.inline.svg":["50138","7527"],"./tg.inline.svg":["6193","3"],"./va.inline.svg":["32454","4715"],"./py.inline.svg":["42628","3653"],"./cz.inline.svg":["11842","9471"],"./my.inline.svg":["92217","8146"],"./ag.inline.svg":["46143","6484"],"./bo.inline.svg":["38116","2117"],"./cc.inline.svg":["60101","9030"],"./hu.inline.svg":["20528","2073"],"./pa.inline.svg":["33052","9357"],"./gm.inline.svg":["94403","7264"],"./sx.inline.svg":["30784","25"],"./gw.inline.svg":["5037","3406"],"./gb-wls.inline.svg":["88263","9052"],"./tc.inline.svg":["12586","6967"],"./cy.inline.svg":["65899","7960"],"./mm.inline.svg":["55589","3846"],"./mr.inline.svg":["5220","8437"],"./ms.inline.svg":["55023","4084"],"./zm.inline.svg":["84830","8195"],"./ls.inline.svg":["36178","2399"],"./np.inline.svg":["48873","2098"],"./ki.inline.svg":["8787","5168"],"./sv.inline.svg":["56910","2739"],"./na.inline.svg":["57886","5331"],"./aq.inline.svg":["1453","7006"],"./gl.inline.svg":["80456","3009"],"./pk.inline.svg":["87494","1643"],"./pg.inline.svg":["42810","103"],"./dk.inline.svg":["85554","6255"],"./fo.inline.svg":["86520","1265"],"./lr.inline.svg":["79677","4718"],"./jm.inline.svg":["57774","7939"],"./kp.inline.svg":["11968","9801"],"./sl.inline.svg":["14948","3125"],"./tt.inline.svg":["51463","2204"],"./sc.inline.svg":["48885","1814"],"./ht.inline.svg":["83371","2472"],"./se.inline.svg":["73367","1708"],"./to.inline.svg":["68150","7419"],"./by.inline.svg":["24338","3935"],"./id.inline.svg":["91182","8547"],"./gr.inline.svg":["37846","9403"],"./mg.inline.svg":["85435","3144"],"./ly.inline.svg":["21288","7073"],"./bd.inline.svg":["85561","8850"],"./ni.inline.svg":["43766","8635"],"./ph.inline.svg":["71295","6052"],"./pl.inline.svg":["41307","8520"],"./ss.inline.svg":["15557","3062"],"./li.inline.svg":["66616","7041"],"./tn.inline.svg":["28241","7210"],"./pe.inline.svg":["97608","145"],"./mc.inline.svg":["17503","7396"],"./ie.inline.svg":["4169","5186"],"./mk.inline.svg":["65543","1180"],"./sd.inline.svg":["81420","2189"],"./nr.inline.svg":["45671","1612"],"./ee.inline.svg":["83221","3750"],"./wf.inline.svg":["89410","8479"],"./gg.inline.svg":["71805","3166"],"./sj.inline.svg":["87714","7679"],"./languages/ca.inline.svg":["91363","1472"],"./no.inline.svg":["16976","6649"],"./cw.inline.svg":["80377","3330"],"./cr.inline.svg":["60266","1303"],"./bz.inline.svg":["53147","6984"],"./pr.inline.svg":["90073","4034"],"./gp.inline.svg":["71652","261"],"./cx.inline.svg":["92656","4329"],"./ye.inline.svg":["19161","1010"],"./vc.inline.svg":["98004","741"],"./hr.inline.svg":["84945","4346"],"./mh.inline.svg":["63694","7171"],"./gb-sct.inline.svg":["89453","830"],"./et.inline.svg":["60570","7799"],"./tv.inline.svg":["96105","7250"],"./md.inline.svg":["92690","687"],"./uy.inline.svg":["79409","7994"],"./us.inline.svg":["18231","4028"],"./nz.inline.svg":["99551","660"],"./ke.inline.svg":["93807","5412"],"./mf.inline.svg":["56832","2121"],"./mv.inline.svg":["88144","2793"],"./hk.inline.svg":["89006","8835"],"./_unknown.inline.svg":["99502"],"./at.inline.svg":["35286","8971"],"./lc.inline.svg":["58882","4799"],"./er.inline.svg":["34460","7053"],"./gu.inline.svg":["47371","6472"],"./ax.inline.svg":["79722","4871"],"./ba.inline.svg":["43050","8231"],"./bb.inline.svg":["77043","4160"],"./kw.inline.svg":["97121","1834"],"./dj.inline.svg":["29053","8574"],"./pf.inline.svg":["31045","5990"],"./kh.inline.svg":["92120","1553"],"./mz.inline.svg":["67180","2845"],"./ng.inline.svg":["64139","1153"],"./ro.inline.svg":["13044","6229"],"./sk.inline.svg":["70714","6270"],"./zw.inline.svg":["63668","2373"],"./in.inline.svg":["75668","2597"],"./iq.inline.svg":["83157","1270"],"./rw.inline.svg":["36716","5277"],"./so.inline.svg":["18193","9322"],"./re.inline.svg":["12206","2179"],"./tl.inline.svg":["52847","7524"],"./pt.inline.svg":["81555","5696"],"./eg.inline.svg":["82963","3392"],"./tk.inline.svg":["26978","8031"],"./ru.inline.svg":["34206","8403"],"./al.inline.svg":["83086","9603"],"./gy.inline.svg":["30071","2492"],"./jp.inline.svg":["75181","1102"],"./mw.inline.svg":["77739","6424"],"./hn.inline.svg":["55461","7334"],"./jo.inline.svg":["24636","8477"],"./cu.inline.svg":["97527","380"],"./ca.inline.svg":["55587","7440"],"./lt.inline.svg":["78623","2980"],"./cm.inline.svg":["5663","8932"],"./tr.inline.svg":["82405","198"],"./am.inline.svg":["46889","5154"],"./ar.inline.svg":["14608","2841"],"./ug.inline.svg":["82563","8800"],"./pw.inline.svg":["31210","9767"],"./fr.inline.svg":["90847","3396"],"./uz.inline.svg":["59812","1797"],"./es.inline.svg":["90919","3068"],"./pn.inline.svg":["72349","1438"],"./be.inline.svg":["49278","1635"],"./eu.inline.svg":["32453","3686"],"./td.inline.svg":["18455","5084"],"./mt.inline.svg":["7330","7935"],"./fi.inline.svg":["40414","8467"],"./pm.inline.svg":["81280","5177"],"./rs.inline.svg":["62840","4225"],"./aw.inline.svg":["3631","9076"],"./cg.inline.svg":["84841","2290"],"./fk.inline.svg":["47372","3197"],"./gi.inline.svg":["39751","2380"],"./gt.inline.svg":["11056","1065"],"./ma.inline.svg":["58337","4154"],"./za.inline.svg":["93634","6911"],"./ps.inline.svg":["53790","6819"],"./cl.inline.svg":["48788","8645"],"./sn.inline.svg":["64790","2267"],"./bq.inline.svg":["54650","8567"],"./nf.inline.svg":["23475","8832"],"./bf.inline.svg":["83383","6572"],"./me.inline.svg":["38525","8910"],"./ir.inline.svg":["41816","4241"],"./ec.inline.svg":["89303","5804"],"./af.inline.svg":["72308","2709"],"./ad.inline.svg":["83654","619"],"./je.inline.svg":["5510","1851"],"./bt.inline.svg":["56009","2162"],"./yt.inline.svg":["90638","35"],"./kn.inline.svg":["98494","1875"],"./mu.inline.svg":["81101","334"],"./om.inline.svg":["20283","8536"],"./zz.inline.svg":["27267","5712"],"./gb.inline.svg":["2534","1019"],"./ge.inline.svg":["60283","4120"],"./sy.inline.svg":["87227","4603"],"./vg.inline.svg":["94208","5753"],"./vn.inline.svg":["88451","9536"],"./sr.inline.svg":["77082","6743"],"./ws.inline.svg":["40417","4698"],"./io.inline.svg":["54847","3748"],"./sh.inline.svg":["54352","281"],"./cf.inline.svg":["51854","8707"],"./cn.inline.svg":["99590","2619"],"./sm.inline.svg":["71503","692"],"./bv.inline.svg":["84999","3836"],"./gh.inline.svg":["9372","365"],"./ua.inline.svg":["31113","8050"],"./sb.inline.svg":["61834","6135"],"./sg.inline.svg":["52857","1762"],"./bs.inline.svg":["9448","8609"],"./vu.inline.svg":["44706","1567"],"./im.inline.svg":["3214","2410"],"./gq.inline.svg":["28207","7828"],"./eh.inline.svg":["75318","235"],"./ve.inline.svg":["30066","4319"],"./gf.inline.svg":["51890","3839"],"./ci.inline.svg":["73595","4680"],"./nu.inline.svg":["56058","6759"],"./hm.inline.svg":["38696","129"],"./it.inline.svg":["13182","4771"],"./nc.inline.svg":["60396","8557"],"./gs.inline.svg":["74897","6458"],"./bw.inline.svg":["28540","7821"],"./mp.inline.svg":["50166","2427"],"./kz.inline.svg":["69466","935"],"./cd.inline.svg":["18716","2893"],"./bj.inline.svg":["42603","2168"],"./tz.inline.svg":["60029","6766"],"./sz.inline.svg":["78834","3055"],"./mn.inline.svg":["99528","7793"],"./la.inline.svg":["45552","5545"],"./ai.inline.svg":["49541","1750"],"./dz.inline.svg":["82797","4062"],"./fj.inline.svg":["30295","3548"],"./kr.inline.svg":["31474","2015"],"./ch.inline.svg":["61344","3657"],"./de.inline.svg":["89756","141"],"./th.inline.svg":["10315","1688"]};function n(e){if(!i.o(r,e))return Promise.resolve().then(function(){var t=Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t});var t=r[e],n=t[0];return Promise.all(t.slice(1).map(i.e)).then(function(){return i(n)})}n.keys=()=>Object.keys(r),n.id=90670,e.exports=n},99502(e,t,i){"use strict";i.r(t),i.d(t,{default:()=>n});var r=i(74848);i(47867);let n=e=>(0,r.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlSpace:"preserve",viewBox:"0 0 640 480",width:"1em",height:"1em",...e,children:[(0,r.jsx)("path",{d:"M0 0h640v480H0z",style:{fill:"#f2f2f2",stroke:"#000",strokeMiterlimit:10}}),(0,r.jsx)("path",{d:"M295 316.4c-.1-4.6-.2-8.1-.2-10.4 0-13.6 1.9-25.4 5.8-35.3 2.8-7.5 7.4-15 13.7-22.6 4.6-5.5 13-13.6 25-24.2s19.8-19.1 23.4-25.4 5.4-13.2 5.4-20.6c0-13.5-5.3-25.4-15.8-35.6S328.8 127 313.5 127c-14.8 0-27.1 4.6-37 13.9s-16.4 23.7-19.5 43.4l-35.7-4.2c3.2-26.4 12.8-46.5 28.6-60.6q23.85-21 63-21c27.6 0 49.7 7.5 66.2 22.6 16.5 15 24.7 33.2 24.7 54.6 0 12.3-2.9 23.7-8.7 34.1s-17.1 23.1-33.9 38q-16.95 15-22.2 22.2c-3.5 4.8-6 10.2-7.7 16.4s-2.6 16.2-2.9 30.1H295zm-2.1 69.6v-39.5h39.5V386z",style:{fill:"#4f4f4f"}})]})},88358(e,t,i){"use strict";i.d(t,{g:()=>x,A:()=>j});var r=i(60142),n=i.n(r),l=i(21429),a=i(55638),o=i(46881),s=i(88605),d=i(35864),c=i(41630),u=i(74365);let p=async e=>{let t=e.map(e=>({key:e,type:"simple"}));await c.M_.dispatch(u.FH.endpoints.translationCreate.initiate({createTranslation:{translationData:t}}))},m=(0,s.createSlice)({name:"missingTranslations",initialState:[],reducers:{addMissingTranslation:(e,t)=>{let{payload:i}=t;e.push(i)},removeMissingTranslations:(e,t)=>{let{payload:i}=t,r=Array.isArray(i)?i:[i];return e.filter(e=>!r.includes(e))}}}),{addMissingTranslation:g,removeMissingTranslations:h}=m.actions;m.name,(0,o.injectSliceWithState)(m);let v=(0,d.debounce)(async e=>{var t;let i=e.getState();if((null==(t=i.authentication)?void 0:t.isAuthenticated)!==!0)return;let r=i.missingTranslations;e.dispatch(h(r)),p(r)},3e3),f=(0,s.createListenerMiddleware)();f.startListening({actionCreator:g,effect:async(e,t)=>{v.cancel(),v(t)}}),(0,o.addAppMiddleware)(f.middleware);var y=i(11207),b=i(25085);let x="en";n().use(l.initReactI18next).init({fallbackLng:x,ns:["translation"],resources:{},keySeparator:!1,saveMissing:!0,postProcess:["returnKeyIfEmpty"]}).catch(()=>{(0,a.Ay)(new a.$g("Could not load translations"))}),n().use(y.K),n().on("missingKey",(e,t,i,r)=>{(0,b.isNonEmptyString)(i)&&(c.M_.dispatch(g(i)),n().addResource(x,t,i,i))});let j=n()},11207(e,t,i){"use strict";i.d(t,{K:()=>r});let r={type:"postProcessor",name:"returnKeyIfEmpty",process(e,t,i,r){let n=e;if(""===e&&(n=t,Array.isArray(t)&&(n=t[0])),"string"!=typeof n)try{n=JSON.stringify(n)}catch(r){let i=Array.isArray(t)?t[0]:t;return console.warn(`Translation key '${i}' with value '${e}' is not translatable`),Array.isArray(t)?t[0]:t}return n}}},27755(e,t,i){"use strict";i.d(t,{s:()=>r});let r=new class{registerModule(e){this.registry.push(e)}initModules(){this.registry.forEach(e=>{e.onInit()})}constructor(){this.registry=[]}}},42817(e,t,i){"use strict";i.d(t,{g:()=>a});var r=i(63364),n=i(10600),l=i(35864);let a=new class{getValues(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];if(!e)return{...this.values};try{let e={};for(let[t,i]of Object.entries(this.values)){let r=this.transformEditableValue(t,i);e[t]=r}return e}catch(e){return console.warn("Could not apply transformValueForApi transformations:",e),{...this.values}}}getValue(e){return this.values[e]}updateValue(e,t){this.values[e]=t}initializeValues(e){Object.assign(this.values,e)}removeValues(e){for(let t of e)delete this.values[t]}getInheritanceState(e){return this.inheritanceState[e]??!1}setInheritanceState(e,t){this.inheritanceState[e]=t}initializeInheritanceState(e){Object.assign(this.inheritanceState,e)}registerDynamicEditables(e){for(let t of e)this.dynamicEditables[t.id]=t}unregisterDynamicEditables(e){for(let t of e)delete this.dynamicEditables[t]}getEditableDefinitions(){let e=(()=>{try{return window.editableDefinitions??[]}catch(e){return console.warn("Could not get editable definitions from iframe window:",e),[]}})();return[...e,...Object.values(this.dynamicEditables).filter(t=>!e.some(e=>e.id===t.id))].filter(e=>e.name in this.values)}transformEditableValue(e,t){let i=this.getEditableDefinitions().find(t=>t.name===e);if((0,l.isNil)(i))return t;let r=this.getDynamicTypeForEditable(i.type);if((0,l.isNil)(r))return t;let n=r.transformValueForApi(t.data,i);return{type:t.type,data:n}}getDynamicTypeForEditable(e){try{let t=r.kL.get(n.K["DynamicTypes/DocumentEditableRegistry"]);if(!t.hasDynamicType(e))return null;return t.getDynamicType(e)}catch(t){return console.warn(`Could not get dynamic type for editable type "${e}":`,t),null}}constructor(){this.values={},this.inheritanceState={},this.dynamicEditables={}}}},46096(e,t,i){"use strict";i.d(t,{BB:()=>o,P3:()=>l,c4:()=>n,qH:()=>a});var r=i(35864);class n extends Error{constructor(e="PimcoreStudio API is not available"){super(e),this.name="PimcoreStudioApiNotAvailableError"}}class l extends Error{constructor(e="Cross-origin access to PimcoreStudio API denied"){super(e),this.name="CrossOriginApiAccessError"}}function a(){try{let e=window.parent;if(!(0,r.isNil)(null==e?void 0:e.PimcoreStudio))return e.PimcoreStudio}catch(e){console.debug("Cannot access parent window PimcoreStudio API due to cross-origin restrictions")}try{let e=window;if(!(0,r.isNil)(null==e?void 0:e.PimcoreStudio))return e.PimcoreStudio}catch(e){throw new l("Cannot access current window PimcoreStudio API")}throw new n("PimcoreStudio API is not available in parent or current window")}function o(){try{return a(),!0}catch(e){if(e instanceof n||e instanceof l)return!1;throw e}}},41630(e,t,i){"use strict";i.d(t,{d$:()=>m,GV:()=>f,jL:()=>v,hb:()=>y,M_:()=>g,eg:()=>b,fu:()=>h});var r=i(88605),n=i(62284),l=i(53073);let a={id:0,username:"",email:"",firstname:"",lastname:"",permissions:[],isAdmin:!1,classes:[],docTypes:[],language:"en",activePerspective:"0",perspectives:[],dateTimeLocale:"",welcomeScreen:!1,memorizeTabs:!1,hasImage:!1,contentLanguages:[],keyBindings:[],allowedLanguagesForEditingWebsiteTranslations:[],allowedLanguagesForViewingWebsiteTranslations:[],allowDirtyClose:!1,twoFactorAuthentication:{enabled:!1,required:!1,type:"",active:!1}},o=e=>t=>i=>{if((0,r.isRejectedWithValue)(i)){var n;let r=i.payload,l=null==(n=i.meta)?void 0:n.arg;if((null==r?void 0:r.status)===401)return"endpointName"in l&&"userGetCurrentInformation"===l.endpointName?t(i):(e.dispatch({type:"auth/setUser",payload:a}),void e.dispatch({type:"authentication/setAuthState",payload:!1}))}return t(i)},s=[l.api],d=()=>(0,r.combineSlices)({},...s).withLazyLoadedSlices(),c=(0,r.createDynamicMiddleware)(),{addMiddleware:u,withMiddleware:p}=c,m=d(),g=(0,r.configureStore)({reducer:m,middleware:e=>e({serializableCheck:{ignoredActions:["execution-engine/jobReceived"],ignoredActionPaths:["execution-engine","meta"],ignoredPaths:["execution-engine","meta"]}}).concat(l.api.middleware,o,c.middleware)}),h=e=>{s.push(e);let t=d();return g.replaceReducer(t),t},v=n.useDispatch,f=n.useSelector,y=u.withTypes(),b=p.withTypes()},66828(e,t,i){"use strict";i.d(t,{G8:()=>o,Rc:()=>l,qj:()=>a});var r=i(74353),n=i.n(r);let l=(e,t)=>n().isDayjs(e)?e:"number"==typeof e?n().unix(e):"string"==typeof e?n()(e,t):null,a=(e,t,i)=>{if(null===e)return null;if("timestamp"===t){let t=e.startOf("day");return new Date(t.year(),t.month(),t.date()).getTime()/1e3}return"dateString"===t?void 0!==i?e.format(i):e.format():e},o=e=>null==e?"":n().isDayjs(e)?"[dayjs object]: "+e.toString():e.toString()},16450(e,t,i){"use strict";i.d(t,{F:()=>l});var r=i(47867),n=i(62784);let l=()=>{let e=(0,r.useContext)(n.Z);if(void 0===e)throw Error("useDynamicFilter must be used within a DynamicFilterProvider");return e}},8674(e,t,i){"use strict";i.d(t,{b:()=>r.b});var r=i(8561)},41417(e,t,i){"use strict";i.d(t,{s:()=>h});var r=i(74848);i(47867);var n=i(94788),l=i(86569),a=i(25085),o=i(81898),s=i(13755),d=i(22014),c=i(7814),u=i(8651),p=i.n(u);let m=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{editableHtmlDropContent:i` - position: relative; - border: 1px solid ${t.colorBorder}; - border-radius: ${t.borderRadius}px; - background: ${t.colorBgContainer}; - padding: ${t.paddingSM}px; - min-height: 40px; - color: ${t.colorTextTertiary}; - `,editableHtmlDropContentFlex:i` - display: flex; - align-items: center; - justify-content: center; - `,hasContent:i` - position: relative; - background: ${t.colorBgContainer}; - &:hover { - outline: 2px dashed ${t.colorBorder}; - outline-offset: 5px; - } - `,dndValidOutline:i` - outline: 1px dashed ${t.colorPrimary} !important; - outline-radius: 0 !important; - `,dndErrorOutline:i` - outline: 1px dashed ${t.colorError} !important; - outline-radius: 0 !important; - `,dndValidBorder:i` - border: 1px dashed ${t.colorPrimary} !important; - `,dndErrorBorder:i` - border: 1px dashed ${t.colorError} !important; - `,droppableOverlay:i` - position: absolute; - top: ${t.marginXS}px; - right: ${t.marginXS}px; - z-index: 10; - opacity: 0.5; - pointer-events: none; - color: ${t.colorTextInverse}; - `,droppableOverlayBox:i` - display: flex; - align-items: center; - justify-content: center; - background: ${t.colorFillInverse}; - border-radius: ${t.borderRadiusSM}px; - padding: ${t.paddingXXS}px ${t.paddingXS}px; - box-shadow: 0 1px 4px rgba(0,0,0,0.04); - `,dropZone:i` - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - gap: ${t.marginXS}px; - height: 100%; - `,renderedContent:i` - /* Remove all padding/margin to show raw HTML exactly as-is */ - padding: 0; - margin: 0; - overflow: auto; - /* Ensure the container fits content exactly */ - display: block; - line-height: normal; - - > *:first-child { - margin-top: 0; - } - - > *:last-child { - margin-bottom: 0; - } - `,loadingInner:i` - display: flex; - align-items: center; - justify-content: center; - width: 100%; - height: 100%; - `}});var g=i(35864);let h=e=>{let{hasContent:t,isLoading:i,error:u,dropZoneText:h,renderedContent:v,contextMenuItems:f,containerStyle:y,className:b,width:x,height:j,defaultHeight:w=100}=e,{styles:C}=m(),{getStateClasses:S}=(0,n.z)(),T=()=>(0,r.jsx)("div",{className:p()(C.droppableOverlay,"pimcore_editable_droppable_overlay"),children:(0,r.jsx)("span",{className:C.droppableOverlayBox,children:(0,r.jsx)(o.I,{options:{height:24,width:24},value:"drop-target"})})}),I={width:(0,a.toCssDimension)(x),height:t&&(0,g.isNil)(u)?(0,a.toCssDimension)(j)??"auto":(0,a.toCssDimension)(j??w),minHeight:t&&(0,g.isNil)(u)?(0,a.toCssDimension)(j)??"auto":(0,a.toCssDimension)(w),overflow:t&&(0,g.isNil)(u)?"auto":void 0,...y},k=S(),E=k.includes("dnd--drag-valid"),D=k.includes("dnd--drag-error"),N=t&&!i&&(0,g.isNil)(u),P=p()({[C.editableHtmlDropContent]:!N,[C.editableHtmlDropContentFlex]:!N||!(0,g.isNil)(u),[C.hasContent]:N,[C.dndValidOutline]:E&&N,[C.dndValidBorder]:E&&!N,[C.dndErrorOutline]:D&&N,[C.dndErrorBorder]:D&&!N},b);return(0,r.jsx)(l.Dropdown,{disabled:(0,g.isNil)(f)||(0,g.isEmpty)(f),menu:{items:f},trigger:["contextMenu"],children:(0,r.jsxs)("div",{className:P,style:I,children:[i&&(0,r.jsx)("div",{className:C.loadingInner,children:(0,r.jsx)(s.t,{})}),!(0,g.isNil)(u)&&!i&&(0,r.jsxs)(r.Fragment,{children:[u,T()]}),t&&!i&&(0,g.isNil)(u)&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(c.m,{title:h,children:(0,r.jsx)("div",{className:C.renderedContent,children:v})}),T()]}),!t&&!i&&(0,g.isNil)(u)&&(0,r.jsxs)("div",{className:C.dropZone,children:[(0,r.jsx)(o.I,{options:{height:30,width:30},value:"drop-target"}),(0,r.jsx)(d.E,{children:h})]})]})})}},59385(e,t,i){"use strict";i.r(t),i.d(t,{initialNodeState:()=>d,locateInTree:()=>E,markNodeDeleting:()=>O,markNodeDeletingForTree:()=>A,refreshNodeChildren:()=>F,refreshSourceNode:()=>M,refreshTargetNode:()=>$,refreshTreeByElementType:()=>U,renameNode:()=>_,selectNodeState:()=>W,setDocumentNodeNavigationExclude:()=>q,setDocumentNodeSiteStatus:()=>V,setFetchTriggered:()=>D,setNodeAdditionalAttributes:()=>B,setNodeExpanded:()=>j,setNodeFetching:()=>P,setNodeHasChildren:()=>w,setNodeLoading:()=>b,setNodeLoadingInAllTree:()=>x,setNodeLocked:()=>G,setNodePage:()=>C,setNodePublished:()=>R,setNodeScrollTo:()=>I,setNodeSearchTerm:()=>S,setRootFetchTriggered:()=>N,setRootNode:()=>z,setSelectedNodeIds:()=>T,treeSliceName:()=>y,updateNodeType:()=>L,updateNodesByParentId:()=>k});var r=i(11480),n=i(24755),l=i(88605),a=i(46881),o=i(35864),s=i(25508);let d={isExpanded:!1,isFetching:!1,page:1,isSelected:!1,isScrollTo:!1,isFetchTriggered:!1,isDeleting:!1,childrenIds:[]},c={nodes:{}},u=(e,t,i)=>((0,o.isUndefined)(e[t])&&(e[t]={...c}),(0,o.isUndefined)(e[t].nodes[i])&&(e[t]={...e[t],nodes:{...e[t].nodes,[i]:{...d}}}),e[t].nodes[i]),p=(e,t,i,r)=>{let n=u(e,t,i),l=r(n);(0,o.isEqual)(n,l)||(e[t].nodes[i]=l)},m=(e,t)=>{let i=[];Object.keys(e).forEach(r=>{if(r===t){var n,l;(null==(n=e[r].treeNodeProps)?void 0:n.parentId)!==void 0&&i.push(null==(l=e[r].treeNodeProps)?void 0:l.parentId)}});let r=[...i];return i.forEach(t=>{r=[...r,...m(e,t)]}),r},g=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=Object.keys(e).filter(i=>{var r;return(null==(r=e[i].treeNodeProps)?void 0:r.parentId)===t}),n=[...r];return i&&r.forEach(t=>{n=[...n,...g(e,t,!0)]}),n},h=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=g(e,t,!i),n={};return Object.keys(e).forEach(t=>{r.includes(t)?i&&(n[t]={...e[t],treeNodeProps:void 0}):n[t]=e[t]}),n},v=(e,t,i)=>{(0,o.isUndefined)(e[t])&&(e[t]={...c}),Object.keys(e[t].nodes).forEach(r=>{p(e,t,r,e=>({...e,isSelected:i.includes(r)}))}),i.forEach(i=>{p(e,t,i,e=>({...e,isSelected:!0}))})},f=(0,l.createSlice)({name:"trees",initialState:{},reducers:{setNodeLoading:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,isLoading:i.loading}))},setNodeLoadingInAllTree:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>({...e,isLoading:i.loading}))})},setFetchTriggered:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,isFetchTriggered:i.fetchTriggered}))},setRootFetchTriggered:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,isRootFetchTriggered:i.rootFetchTriggered}))},setNodeExpanded:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,isExpanded:i.expanded}))},setNodeHasChildren:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,hasChildren:i.hasChildren}}))},setNodePage:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>{let t=e.page===i.page&&e.isFetchTriggered,r=e.page!==i.page?void 0:e.isLoading;return{...e,page:i.page,isFetchTriggered:t,isLoading:r}})},setNodeSearchTerm:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>{let t=e.searchTerm===i.searchTerm&&e.isFetchTriggered,r=e.searchTerm!==i.searchTerm?void 0:e.isLoading;return{...e,searchTerm:i.searchTerm,isFetchTriggered:t,isLoading:r}})},setSelectedNodeIds:(e,t)=>{let{payload:i}=t;v(e,i.treeId,i.selectedNodeIds)},setNodeScrollTo:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,isScrollTo:i.scrollTo}))},updateNodesByParentId:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.parentId,e=>({...e,total:i.total,childrenIds:i.nodes.map(e=>String(e.id))}));let r=h(e[i.treeId].nodes,i.parentId,!0),n=0;i.nodes.forEach(t=>{let l=String(t.id);r[l]=u(e,i.treeId,l),r[l]={...r[l],isDeleting:!1,treeNodeProps:t,order:n++}}),e[i.treeId].nodes=r},locateInTree:(e,t)=>{let{payload:i}=t;(0,o.isUndefined)(e[i.treeId])&&(e[i.treeId]={...c});let r=!1;i.treeLevelData.forEach(t=>{var n,l,a;let{parentId:s,elementId:d,pageNumber:c}=t;if((0,o.isUndefined)(s)||s===d)return;let u=(null==(a=e[i.treeId])||null==(l=a.nodes[String(d)])||null==(n=l.treeNodeProps)?void 0:n.parentId)===String(s);(r||!u)&&(r=!0,p(e,i.treeId,String(d),e=>({...e,treeNodeProps:void 0}))),p(e,i.treeId,String(s),e=>{let t=e.page===c&&(0,o.isUndefined)(e.searchTerm)&&u;return{...e,isLoading:t?e.isLoading:void 0,isFetchTriggered:!!t&&e.isFetchTriggered,isExpanded:!0,page:c,searchTerm:void 0}})}),p(e,i.treeId,i.nodeId,e=>({...e,isSelected:!0,isScrollTo:!0})),v(e,i.treeId,[i.nodeId])},setNodeFetching:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,isFetching:i.isFetching}))},markNodeDeletingForTree:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,isDeleting:i.isDeleting}))},refreshNodeChildren:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&(p(e,t,i.nodeId,e=>({...e,isLoading:void 0,isExpanded:!0,isFetchTriggered:!1})),e[t].nodes=h(e[t].nodes,i.nodeId))})},renameNode:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>({...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,label:i.newLabel}}))})},updateNodeType:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>({...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,type:i.newType,icon:i.newIcon}}))})},refreshTargetNode:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>({...e,isExpanded:!0,isFetchTriggered:!1,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,hasChildren:!0}}))})},refreshSourceNode:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>({...e,isFetchTriggered:!1}))})},refreshTreeByElementType:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{if(Object.keys(e[t].nodes).length>0){var r;let n=Object.values(e[t].nodes)[0];(null==(r=n.treeNodeProps)?void 0:r.elementType)!==void 0&&i.elementTypes.includes(n.treeNodeProps.elementType)&&(e[t].nodes={})}})},markNodeDeleting:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>({...e,isDeleting:i.isDeleting}))})},setNodePublished:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>({...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,isPublished:i.isPublished}}))})},setNodeAdditionalAttributes:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,n;(null==(n=e[t].nodes[i.nodeId])||null==(r=n.treeNodeProps)?void 0:r.elementType)===i.elementType&&p(e,t,i.nodeId,e=>{var t,r,n;let l=(0,o.camelCase)(i.elementType);return{...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,metaData:{...e.treeNodeProps.metaData,[l]:{...null==(t=e.treeNodeProps.metaData)?void 0:t[l],additionalAttributes:(0,o.merge)({},null==(n=e.treeNodeProps.metaData)||null==(r=n[l])?void 0:r.additionalAttributes,i.additionalAttributes)}}}}})})},setRootNode:(e,t)=>{let{payload:i}=t;p(e,i.treeId,i.nodeId,e=>({...e,treeNodeProps:i.rootNode,isExpanded:!0,isRoot:!0}))},setDocumentNodeSiteStatus:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,l;(null==(l=e[t].nodes[i.nodeId])||null==(r=l.treeNodeProps)?void 0:r.elementType)===n.W.document&&p(e,t,i.nodeId,e=>({...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,isSite:i.isSite,icon:i.isSite?{type:"name",value:"home-root-folder"}:{type:"name",value:"document"}}}))})},setNodeLocked:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var n,l,a,s,d,c,u,v;if((null==(l=e[t].nodes[i.nodeId])||null==(n=l.treeNodeProps)?void 0:n.elementType)===i.elementType){let n=i.lockType===r.y.Self||i.lockType===r.y.Unlock;if(p(e,t,i.nodeId,e=>({...e,isLoading:n?void 0:e.isLoading,isFetchTriggered:!n&&e.isFetchTriggered,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,locked:i.lockType===r.y.Self?"self":i.lockType===r.y.Propagate?"propagate":null,isLocked:i.isLocked}})),n&&(e[t].nodes=h(e[t].nodes,i.nodeId)),i.lockType===r.y.Self||i.lockType===r.y.Propagate||i.lockType===r.y.Unlock||i.lockType===r.y.UnlockPropagate){let n=i.lockType===r.y.Unlock||i.lockType===r.y.UnlockPropagate;a=e[t].nodes,s=i.nodeId,d=i.elementType,m(a,s).reverse().forEach(t=>{Object.keys(e).forEach(r=>{var l,a;(null==(a=e[r].nodes[t])||null==(l=a.treeNodeProps)?void 0:l.elementType)===d&&p(e,r,t,e=>(e=>{var t;return n||(null==(t=e.treeNodeProps)?void 0:t.id)!=="1"?{...e,isFetchTriggered:!n&&e.isFetchTriggered,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,isLocked:n?e.treeNodeProps.isLocked:i.isLocked}}:e})(e))})})}(i.lockType===r.y.Propagate||i.lockType===r.y.UnlockPropagate)&&(c=e[t].nodes,u=i.nodeId,v=i.elementType,g(c,u,!0).forEach(t=>{Object.keys(e).forEach(r=>{var n,l;(null==(l=e[r].nodes[t])||null==(n=l.treeNodeProps)?void 0:n.elementType)===v&&p(e,r,t,e=>(e=>({...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,isLocked:i.isLocked}}))(e))})}))}})},setDocumentNodeNavigationExclude:(e,t)=>{let{payload:i}=t;Object.keys(e).forEach(t=>{var r,l;(null==(l=e[t].nodes[i.nodeId])||null==(r=l.treeNodeProps)?void 0:r.elementType)===n.W.document&&p(e,t,i.nodeId,e=>{var t;return{...e,treeNodeProps:(0,o.isUndefined)(e.treeNodeProps)?void 0:{...e.treeNodeProps,metaData:{...e.treeNodeProps.metaData,document:{...null==(t=e.treeNodeProps.metaData)?void 0:t.document,navigationExclude:i.navigationExclude}}}}})})}}}),y=f.name;(0,a.injectSliceWithState)(f);let{setNodeLoading:b,setNodeLoadingInAllTree:x,setNodeExpanded:j,setNodeHasChildren:w,setNodePage:C,setNodeSearchTerm:S,setSelectedNodeIds:T,setNodeScrollTo:I,updateNodesByParentId:k,locateInTree:E,setFetchTriggered:D,setRootFetchTriggered:N,setNodeFetching:P,markNodeDeletingForTree:A,refreshNodeChildren:F,refreshTargetNode:$,refreshSourceNode:M,markNodeDeleting:O,renameNode:_,updateNodeType:L,setNodePublished:R,setNodeAdditionalAttributes:B,setRootNode:z,setDocumentNodeSiteStatus:V,setNodeLocked:G,refreshTreeByElementType:U,setDocumentNodeNavigationExclude:q}=f.actions,W=(0,s.Mz)(e=>e.trees,(e,t)=>t,(e,t,i)=>i,(e,t,i)=>{var r;return null==(r=e[t])?void 0:r.nodes[i]})},23050(e,t,i){"use strict";i.d(t,{W:()=>s});var r=i(46881),n=i(59385),l=i(62284),a=i(70916),o=i(21981);let s=e=>{let t=(0,r.useAppDispatch)(),{treeId:i}=(0,a.z)(),{refreshChildren:s,setLoading:d,setFetching:c,setExpanded:u,setPage:p,setSearchTerm:m,setSelectedIds:g,setScrollTo:h}=(0,o.W)(),v=(0,l.useSelector)(t=>(0,n.selectNodeState)(t,i,e))??{isFetching:!1,page:1,isSelected:!1,isScrollTo:!1,isExpanded:!1,isFetchTriggered:!1},f={...v,isExpanded:v.isExpanded,page:v.page??1};return{...f,setLoading:t=>{d(e,t)},setFetching:t=>{c(e,t)},setExpanded:t=>{u(e,t)},setPage:t=>{p(e,t)},setSearchTerm:t=>{m(e,t)},setSelectedIds:e=>{g(e)},setScrollTo:t=>{h(e,t)},getChildren:()=>(!f.isFetchTriggered&&f.isExpanded&&(t((0,n.setFetchTriggered)({treeId:i,nodeId:e,fetchTriggered:!0})),s(e,!1)),f.childrenIds??[])}}},39803(e,t,i){"use strict";i.d(t,{m:()=>p});var r=i(62284),n=i(21429),l=i(59385),a=i(35864),o=i(70916),s=i(55638),d=i(23050),c=i(23218),u=i(47867);let p=(e,t)=>{let i=(0,r.useDispatch)(),{t:p}=(0,n.useTranslation)(),{treeId:m}=(0,o.z)(),{treeNodeProps:g,isRootFetchTriggered:h}=(0,d.W)(String(e)),[v,f]=(0,u.useState)(!1),{nodeApiHook:y}=(0,c.B)(),{fetchRoot:b}=y();!0!==h&&(i((0,l.setRootFetchTriggered)({treeId:m,nodeId:String(e),rootFetchTriggered:!0})),v||(f(!0),b(e).then(t=>{if((0,a.isNil)(t)||(0,a.isNil)(t.nodes[0]))(0,s.Ay)(new s.$g("Root node not found: "+e));else{var r;r=t.nodes[0],i((0,l.setRootNode)({treeId:m,nodeId:String(e),rootNode:r}))}f(!1)}).catch(e=>{console.error(e)})));let x={icon:{type:"name",value:"home-root-folder"},level:-1,isRoot:!0},j=(0,a.isNil)(g)?void 0:{...x,...g,icon:1===e?{type:"name",value:"home-root-folder"}:g.icon,label:1===e?p("home"):g.label,permissions:{...g.permissions,delete:!1,rename:!1}};return{rootNode:void 0===j?void 0:{...x,...j},isLoading:t&&v}}},21981(e,t,i){"use strict";i.d(t,{W:()=>s});var r=i(41630),n=i(59385),l=i(35864),a=i(23218),o=i(70916);let s=()=>{let e=(0,r.jL)(),{nodeApiHook:t}=(0,a.B)(),{fetchChildren:i}=t(),{treeId:s}=(0,o.z)(),d=e=>{let t=(0,n.selectNodeState)(r.M_.getState(),s,e)??{isFetching:!1,page:1,isSelected:!1,isScrollTo:!1,isExpanded:!1,isFetchTriggered:!1};return{...t,isExpanded:t.isExpanded,page:t.page??1}},c=async(t,r)=>{let a=d(t);return r&&e((0,n.updateNodesByParentId)({treeId:s,parentId:t,nodes:[],total:0})),((0,l.isUndefined)(null==a?void 0:a.isLoading)||r)&&u(t,!0),p(t,!0),await i({id:t,internalKey:t},a)},u=(t,i)=>{e((0,n.setNodeLoading)({treeId:s,nodeId:t,loading:i}))},p=(t,i)=>{e((0,n.setNodeFetching)({treeId:s,nodeId:t,isFetching:i}))},m=(t,i)=>{e((0,n.setNodePage)({treeId:s,nodeId:t,page:i}))};return{setLoading:u,setFetching:p,setExpanded:(t,i)=>{e((0,n.setNodeExpanded)({treeId:s,nodeId:t,expanded:i}))},setPage:m,setSearchTerm:(t,i)=>{e((0,n.setNodeSearchTerm)({treeId:s,nodeId:t,searchTerm:i}))},setSelectedIds:t=>{e((0,n.setSelectedNodeIds)({treeId:s,selectedNodeIds:t}))},setScrollTo:(t,i)=>{e((0,n.setNodeScrollTo)({treeId:s,nodeId:t,scrollTo:i}))},refreshChildren:(t,i)=>{c(t,i).then(i=>{var r,a,o;(0,l.isUndefined)(i)||(e((0,n.updateNodesByParentId)({treeId:s,parentId:t,nodes:i.nodes,total:i.total})),d(t).page>1&&0===i.nodes.length&&m(t,1),1===d(t).page&&(r=t,a=i.nodes.length>0,(null==(o=d(r).treeNodeProps)?void 0:o.hasChildren)!==a&&e((0,n.setNodeHasChildren)({treeId:s,nodeId:r,hasChildren:a})))),u(t,!1),p(t,!1)}).catch(e=>{console.error(e)})}}}},53463(e,t,i){"use strict";i.d(t,{I:()=>r});let r=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - width: 100%; - overflow: hidden; - `,containerChild:i` - // minWidth is now set dynamically via inline styles - `,unpublishedIcon:i` - .pimcore-icon__svg { - opacity: 0.4 - } - `,unpublishedIconPath:i` - .pimcore-icon__image { - opacity: 0.4 - } - `,indirectLockedIcon:i` - opacity: 0.5; - `}})},23218(e,t,i){"use strict";i.d(t,{B:()=>l});var r=i(47867),n=i(54604);let l=()=>{let e=(0,r.useContext)(n.j);if(void 0===e)throw Error("useNodeApiHook must be used within a NodeApiHookProvider");return e}},78254(e,t,i){"use strict";i.d(t,{_:()=>l});var r=i(47867),n=i(10716);let l=()=>{let e=(0,r.useContext)(n.g);return void 0===e&&(e={pageSize:30}),{...e,treeFilterArgs:{classIds:void 0===e.classIds||0===e.classIds.length?void 0:JSON.stringify(e.classIds),pqlQuery:e.pqlQuery}}}},70916(e,t,i){"use strict";i.d(t,{z:()=>l});var r=i(47867),n=i(81194);let l=function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=(0,r.useContext)(n.n);if(void 0===t){if(e)return{treeId:""};throw Error("useTreeId must be used within a TreeIdProvider")}return t}},17388(e,t,i){"use strict";i.d(t,{H:()=>a});var r=i(47867),n=i(86218),l=i(35864);let a=()=>{let e=(0,r.useContext)(n.$);return{permissions:(null==e?void 0:e.permissions)??{},isTreeActionAllowed:t=>!!((0,l.isNil)(t)||(0,l.isNil)(e))||(e.permissions[t]??!1)}}},78744(e,t,i){"use strict";i.d(t,{X:()=>n});var r=i(47867);let n=i.n(r)().createContext(void 0)},57930(e,t,i){"use strict";i.d(t,{y:()=>l});var r=i(47867),n=i(21928);let l=()=>{let e=(0,r.useContext)(n.u);if(void 0===e)throw Error("useKeyedList must be used within a KeyedListProvider");return{...e,getValueByKey:t=>e.values[t]}}},8320(e,t,i){"use strict";i.d(t,{S:()=>l});var r=i(47867),n=i(69530);let l=()=>{let e=(0,r.useContext)(n.q);if(void 0===e)throw Error("useNumberedList must be used within a NumberedListProvider");return{...e,getValueByKey:t=>e.values[t]}}},3205(e,t,i){"use strict";i.d(t,{v:()=>l});var r=i(47867),n=i(93658);let l=()=>(0,r.useContext)(n.L)},91611(e,t,i){"use strict";i.d(t,{H:()=>l,h:()=>a});var r=i(47867),n=i(3109);let l=()=>{let e=(0,r.useContext)(n.X);if(void 0===e)throw Error("useItem must be used within a ItemProvider");return e},a=()=>(0,r.useContext)(n.X)},58487(e,t,i){"use strict";i.d(t,{F:()=>a});var r=i(31635),n=i(62446),l=i(35864);class a{register(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"default";this.flushFunctions.set(e,{flushFunction:t,tag:i}),this.tagIndex.has(i)||this.tagIndex.set(i,new Set),this.tagIndex.get(i).add(e)}unregister(e){let t=this.flushFunctions.get(e);if(this.flushFunctions.delete(e),!(0,l.isNil)(t)){let i=this.tagIndex.get(t.tag);(0,l.isNil)(i)||(i.delete(e),0===i.size&&this.tagIndex.delete(t.tag))}}flushByTag(e){let t=this.tagIndex.get(e);(0,l.isNil)(t)||0===t.size||t.forEach(t=>{let i=this.flushFunctions.get(t);if(!(0,l.isNil)(i))try{i.flushFunction()}catch(i){console.error(`Failed to flush pending changes for ${t} with tag ${e}:`,i)}})}getTags(){return Array.from(this.tagIndex.keys())}constructor(){this.flushFunctions=new Map,this.tagIndex=new Map}}a=(0,r.Cg)([(0,n.injectable)()],a)},28574(e,t,i){"use strict";i.d(t,{Bl:()=>r,Rt:()=>l,hj:()=>n});let r="address_not_found",n=async(e,t)=>{let i=t.replace("{q}",encodeURIComponent(e)),n=await fetch(i);if(!n.ok)throw Error(`Failed to fetch reverse geocoding data: ${n.statusText}`);let l=await n.json();if(!Array.isArray(l)||0===l.length)throw Error(r);return{latitude:parseFloat(l[0].lat),longitude:parseFloat(l[0].lon)}},l=async(e,t)=>{let i=t.replace("{lat}",e.getLatLng().lat.toString()).replace("{lon}",e.getLatLng().lng.toString());await fetch(i).then(async t=>{if(null==t)throw Error("Failed to fetch reverse geocoding data.");if(!t.ok)throw Error(`Failed to fetch reverse geocoding data: ${t.statusText}`);let i=await t.json();if("string"==typeof i.display_name){let t=i.display_name;e.bindTooltip(t),e.openTooltip()}})}},75915(e,t,i){"use strict";i.d(t,{K:()=>r,f:()=>n});let r=(e,t)=>n(e,{config:t}),n=(e,t)=>({...e,column:{...e.column,columnDef:{...e.column.columnDef,meta:{...e.column.columnDef.meta,...t}}}})},14120(e,t,i){"use strict";i.d(t,{K:()=>o});var r=i(47867),n=i(46881),l=i(16327),a=i(35864);let o=e=>{let{targetFolderId:t,targetFolderPath:i}=e,[o,s]=(0,r.useState)(t),[d,c]=(0,r.useState)(!1),[u,p]=(0,r.useState)(null),m=(0,n.useAppDispatch)();return(0,r.useEffect)(()=>{if(p(null),!(0,a.isNil)(t)){s(t),c(!1);return}(0,a.isNil)(i)||(0,a.isEmpty)(i)||"/"===i?(s(1),c(!1)):(c(!0),m(l.FH.endpoints.elementGetIdByPath.initiate({elementType:"asset",elementPath:i})).unwrap().then(e=>{if((0,a.isNil)(null==e?void 0:e.id)){let e=`Could not resolve upload path: ${i}`;console.warn(e),p(e),s(1)}else s(e.id)}).catch(e=>{let t=`Error resolving upload path "${i}": ${e.message??"Unknown error"}`;console.error(t,e),p(t),s(1)}).finally(()=>{c(!1)}))},[t,i,m]),{targetFolderId:o,isResolving:d,error:u}}},60589(e,t,i){"use strict";i.d(t,{b:()=>o});var r=i(31635),n=i(62446);let l={element:{image:"colorCodingGreen4",video:"colorCodingMagenta2","xlsx-csv":"colorCodingGreen3",presentation:"colorCodingRed6","txt-docs":"colorCodingBlue2",unknown:"colorCodingViolet3",audio:"colorCodingGold1",json:"colorCodingViolet1",pdf:"colorCodingRed1",zip:"colorCodingGold3",email:"colorCodingBeige3",document:"colorCodingPurple4",snippet:"colorCodingViolet1","document-link":"colorCodingOrange3",hardlink:"colorCodingRed3",printpage:"colorCodingMint2",catalog:"colorCodingMagenta3","data-object-variant":"colorCodingBlue1","home-root-folder":"colorIconTree",folder:"colorIconTree",asset:"colorCodingGreen1","data-object":"colorCodingMint3","bookmark-list-document-folder":"colorCodingGreen1","bookmark-list-asset-folder":"colorCodingPurple4","bookmark-list-object-folder":"colorCodingMint3"},fieldDefinition:{accordion:"colorCodingRed5",fieldset:"colorCodingRed5","field-container":"colorCodingRed5",panel:"colorCodingRed5",region:"colorCodingRed5","tab-panel":"colorCodingRed5",preview:"colorCodingRed5","text-field":"colorCodingRed5","text-input":"colorCodingMint2",content:"colorCodingMint2","wysiwyg-field":"colorCodingMint2",password:"colorCodingMint2","number-type":"colorCodingViolet5","input-quantity-value":"colorCodingViolet5","number-range":"colorCodingViolet5",slider:"colorCodingViolet5","quantity-value-range":"colorCodingViolet5","quantity-value":"colorCodingViolet5",date:"colorCodingMagenta4","date-range":"colorCodingMagenta4","date-time-field":"colorCodingMagenta4",calendar:"colorCodingMagenta4",time:"colorCodingMagenta4","select-type":"colorCodingBlue3","boolean-select":"colorCodingBlue3","countries-multiple":"colorCodingBlue3","chevron-down":"colorCodingBlue3",user:"colorCodingBlue3","country-select":"colorCodingBlue3","language-select":"colorCodingBlue3","multi-select":"colorCodingBlue3","language-overview":"colorCodingBlue3",media:"colorCodingGreen4","image-external":"colorCodingGreen4","image-advanced":"colorCodingGreen4","image-gallery":"colorCodingGreen4",image:"colorCodingGreen4",video:"colorCodingGreen4",relation:"colorCodingOrange1","many-to-many-relation":"colorCodingOrange1","many-to-one-relation":"colorCodingOrange1","many-to-many-object-relation":"colorCodingOrange1","advanced-many-to-many-relation":"colorCodingOrange1","advanced-many-to-many-object-relation":"colorCodingOrange1","reverse-object-relation":"colorCodingOrange1","location-marker":"colorCodingGreen5","geographical-bounds":"colorCodingGreen5","geographical-polygon":"colorCodingGreen5","geographical-polyline":"colorCodingGreen5",crm:"colorCodingBeige3","gdpr-extractor":"colorCodingBeige3",name:"colorCodingBeige3",email:"colorCodingBeige3",gender:"colorCodingBeige3","target-group":"colorCodingBeige3","target-groups-configuration":"colorCodingBeige3","newsletter-active":"colorCodingBeige3","newsletter-confirmed":"colorCodingBeige3","batch-selection":"colorCodingPurple1",block:"colorCodingPurple1",table:"colorCodingPurple1","structured-table":"colorCodingPurple1","classification-store":"colorCodingPurple1","field-collection-field":"colorCodingPurple1","object-bricks":"colorCodingPurple1",translations:"colorCodingPurple1",cms:"colorCodingOrange2","multiple-field":"colorCodingOrange2","combobox-field":"colorCodingOrange2","index-field":"colorCodingOrange2",shield:"colorCodingBlue4","permission-resource":"colorCodingBlue4","permission-object":"colorCodingBlue4","permission-many-to-one":"colorCodingBlue4","dynamic-permission":"colorCodingBlue4",other:"colorCodingRed3",color:"colorCodingRed3",encrypted:"colorCodingRed3","url-slug":"colorCodingRed3",checkbox:"colorCodingRed3",hardlink:"colorCodingRed3","data-quality":"colorCodingRed3",calculator:"colorCodingRed3"},fieldDefinition_inputQuantityValue:{"quantity-value":"colorCodingMint2"}};var a=i(35864);class o{registerGroup(e,t){this.groups.set(e,t)}addToGroup(e,t,i){let r=this.groups.get(e);(0,a.isUndefined)(r)?this.groups.set(e,{[t]:i}):r[t]=i}getGroup(e){return this.groups.get(e)}hasGroup(e){return this.groups.has(e)}getIconColor(e,t){let i=this.getGroup(e);if(!(0,a.isUndefined)(i))return i[t]}getIconColorValue(e,t,i){if((0,a.isArray)(e)){for(let r of e){let e=this.getIconColor(r,t);if(!(0,a.isUndefined)(e))return i[e]}return}let r=this.getIconColor(e,t);if(!(0,a.isUndefined)(r))return i[r]}getAllGroups(){return Object.fromEntries(this.groups)}constructor(){this.groups=new Map(Object.entries(l))}}o=(0,r.Cg)([(0,n.injectable)()],o)},70880(e,t,i){"use strict";i.d(t,{n:()=>n});var r=i(78354);let n=(e,t)=>(0,r.s)({assetId:e,assetType:"image",resizeMode:t.resizeMode??"none",...t})??""},85458(e,t,i){"use strict";i.d(t,{n:()=>n});let r=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e,r=i` - content: ''; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background-color: ${t.colorBgContainerDisabled}; - backdrop-filter: grayscale(70%); - pointer-events: none; - opacity: 1; - `;return{inheritedFormItemContainer:i` - .ant-form-item-control-input-content > * { - filter: opacity(0.5); - } - .ant-form-item-control-input-content:after { - ${r}; - } - `,inheritedFormElement:i` - .ant-form-item-control-input-content > * > * { - opacity: 0.7; - } - - .ant-form-item-control-input-content > *:after { - ${r}; - } - `,inheritedManual:i` - .studio-inherited-overlay { - position: relative; - } - .studio-inherited-overlay > * { - filter: opacity(0.5); - } - .studio-inherited-overlay:after { - ${r}; - } - `,inheritedWrapper:i` - & { - position: relative; - } - & > * { - filter: opacity(0.5); - } - &:after { - ${r}; - } - `,inheritedGridCell:i` - padding-right: 20px; - - & > * { - filter: opacity(0.5); - } - &:after { - ${r}; - backdrop-filter: none; - } - `}}),n=e=>{let{styles:t}=r();return"form-item-container"===e.type&&!0===e.inherited?t.inheritedFormItemContainer:"form-element"===e.type&&!0===e.inherited?t.inheritedFormElement:"manual"===e.type&&!0===e.inherited?t.inheritedManual:"wrapper"===e.type&&!0===e.inherited?t.inheritedWrapper:"grid-cell"===e.type&&!0===e.inherited?t.inheritedGridCell:void 0}},25886(e,t,i){"use strict";i.d(t,{V:()=>v});var r=i(74848),n=i(47867),l=i(86569),a=i(46881),o=i(73362),s=i(58200),d=i(59446),c=i(35864);let u=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - .ant-upload-select { - display: contents !important; - } - `,containerFullWidth:i` - .ant-upload-select { - display: block; - } - `,uploadArea:i` - position: relative; - width: 100%; - height: 100%; - `,progressOverlay:i` - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(255, 255, 255, 0.9); - display: flex; - align-items: center; - justify-content: center; - z-index: 10; - border-radius: ${t.borderRadius}; - `}});var p=i(14120),m=i(21429),g=i(8651),h=i.n(g);let v=e=>{let{styles:t}=u(),[i,g]=(0,n.useState)(!1),[v,f]=(0,n.useState)(0),y=(0,a.useAppDispatch)(),b=(0,d.t)(),{t:x}=(0,m.useTranslation)(),{targetFolderId:j}=(0,p.K)({targetFolderId:e.targetFolderId,targetFolderPath:e.targetFolderPath}),w=(0,n.useCallback)(e=>!(e.size>(b.upload_max_filesize??0))||(l.message.error(x("upload.error.file-too-large")),!1),[b.upload_max_filesize,x]),C={};(0,c.isNil)(e.assetType)||(C.assetType=e.assetType);let S={name:"file",action:`${(0,s.$)()}/assets/add/${j??1}`,data:C,beforeUpload:w,accept:e.accept,multiple:!1,showUploadList:!1,disabled:(e.disabled??!1)||i,openFileDialogOnClick:!1,onChange:async t=>{var i,r,n;if("uploading"===t.file.status)g(!0),f(t.file.percent??0);else if("done"===t.file.status){f(100);try{let r=t.file.response,{data:n}=await y(o.api.endpoints.assetGetById.initiate({id:r.id}));(0,c.isNil)(n)||await (null==(i=e.onSuccess)?void 0:i.call(e,n)),g(!1),f(0)}catch(t){console.error("Failed to fetch uploaded asset:",t),g(!1),f(0),null==(r=e.onError)||r.call(e,t),l.message.error(x("upload.error.failed-to-fetch-asset-details"))}}else"error"===t.file.status&&(g(!1),f(0),l.message.error(x("upload.error.upload-failed")),null==(n=e.onError)||n.call(e,Error("Upload failed")))}};return(0,r.jsx)("div",{className:h()(t.container,{[t.containerFullWidth]:e.fullWidth}),children:(0,r.jsx)(l.Upload,{...S,children:(0,r.jsxs)("div",{className:t.uploadArea,children:[e.children,i&&(0,r.jsx)("div",{className:t.progressOverlay,children:(0,r.jsx)(l.Progress,{percent:v,size:60,type:"circle"})})]})})})}},85775(e,t,i){"use strict";i.d(t,{Sk:()=>r.S}),i(68901),i(34323),i(34210);var r=i(10014)},9735(e,t,i){"use strict";i.d(t,{g5:()=>B,fo:()=>S});var r=i(74848),n=i(47867),l=i(35864),a=i(20597),o=i(8651),s=i.n(o),d=i(88754),c=i(94788),u=i(14013),p=i(56789),m=i(83499),g=i(39808),h=i(21429),v=i(89507),f=i(86569),y=i(29740),b=i(64756),x=i(95112),j=i(89114),w=i(43565),C=i(87632);let S=e=>({allowedTypes:[],getElementInfo:t=>{let i=t.row.original;return{elementType:(0,C.sv)(i.type)??void 0,id:i.id,fullPath:i.fullPath,published:i.isPublished??void 0,disabled:e}}}),T=e=>(0,l.isNil)(e)?[]:(0,l.isString)(e)||(0,l.isNumber)(e)?[String(e)]:(0,l.isArray)(e)?(0,l.flatMap)(e,e=>(0,l.isString)(e)?[e]:(0,l.isArray)(e)||(0,l.isObject)(e)?T(e):[]):(0,l.isObject)(e)?(0,l.values)(e).filter(l.isString):[];var I=i(18196);let k=e=>void 0!==e&&(0,I.uI)(e.class)&&(0,I.uI)(e.name);var E=i(80578);let D=(0,n.forwardRef)(function(e,t){let{getStateClasses:i}=(0,c.z)(),{mapToLegacyElementType:a}=(0,p.K)(),{columns:o}=(e=>{let{confirm:t}=(0,w.Vl)(),{openElement:i,mapToElementType:n}=(0,p.K)(),{t:a}=(0,h.useTranslation)(),{download:o}=(0,j.m)(),s=(0,v.createColumnHelper)(),d=[s.accessor("id",{header:a("relations.id"),size:80}),s.accessor("fullPath",{header:a("relations.reference"),meta:{type:"element",autoWidth:!0,editable:!1,config:S(!0===e.inherited||!0===e.disabled)},size:200,...k(e.pathFormatterConfig)?{cell:E.v}:{}}),s.accessor("type",{header:a("relations.type"),meta:{type:"translate"},size:150}),s.accessor("subtype",{header:a("relations.subtype"),meta:{type:"translate"},size:150})],c=(0,l.isUndefined)(e.columnDefinition)?d:[...e.columnDefinition];return c.push(s.accessor("actions",{header:a("actions"),size:110,cell:s=>{let d=s.row.index,c=s.row.original,u=[];return u.push((0,r.jsx)(f.Tooltip,{title:a("open"),children:(0,r.jsx)(y.K,{icon:{value:"open-folder"},onClick:async()=>{let e=n(c.type);(0,l.isUndefined)(e)||await i({type:e,id:c.id})},type:"link"})},"open")),e.assetInlineDownloadAllowed&&"asset"===c.type&&u.push((0,r.jsx)(f.Tooltip,{title:a("download"),children:(0,r.jsx)(y.K,{"aria-label":a("aria.asset.image-sidebar.tab.details.download-thumbnail"),icon:{value:"download"},onClick:()=>{o(c.id.toString())},type:"link"})},"download")),!0!==e.disabled&&u.push((0,r.jsx)(f.Tooltip,{title:a("remove"),children:(0,r.jsx)(y.K,{icon:{value:"trash"},onClick:()=>{t({title:a("remove"),content:a("delete-confirmation-advanced",{type:a("relation"),value:c.originalPath??c.fullPath,interpolation:{escapeValue:!1}}),onOk:()=>{e.deleteItem(d)}})},type:"link"})},"remove")),(0,r.jsx)(b.a,{padding:"mini",children:(0,r.jsx)(x.e,{items:u,noSpacing:!0})})}})),{columns:c}})(e),[C,T]=(0,n.useState)(I());function I(){return(e.value??[]).map(t=>{let i=a(t.type),r={...t,type:i??""};return void 0!==e.enrichRowData?e.enrichRowData(r):r})}(0,n.useEffect)(()=>{T(I())},[e.value]);let D=t=>{let{active:i,over:r}=t;(0,l.isNil)(i)||(0,l.isNil)(r)||(0,l.isEqual)(i.id,r.id)||T(t=>{let n=t.findIndex(e=>e.id===i.id),l=t.findIndex(e=>e.id===r.id);if(-1===n||-1===l)return t;let a=(0,d.arrayMove)(t,n,l);return e.handleOrderChange(a),a})},N=(0,n.useMemo)(()=>(0,r.jsx)(g.U,{style:{width:(0,m.x)(e.width),height:(0,m.x)(e.height)},children:(0,r.jsxs)("div",{style:{maxWidth:"calc(100% - 2px)"},children:[(0,r.jsx)(u.x,{autoWidth:!0,className:e.className,columns:o,data:C,disabled:!0===e.disabled||!0===e.inherited,enableRowDrag:e.enableRowDrag,handleDragEnd:D,onUpdateCellData:e.onUpdateCellData,resizable:!0,setRowId:e=>e.id}),e.hint]})}),[e,C]);return(0,r.jsx)("div",{className:s()(...i()),ref:t,children:N})});var N=i(92203),P=i(20761),A=i(64724),F=i(25750),$=i(89705),M=i(60583),O=i(72636),_=i(30856),L=i(67914);let R=e=>{let{confirm:t}=(0,w.Vl)(),{t:i}=(0,h.useTranslation)(),a=[];!0!==e.disabled&&a.push((0,r.jsx)(M.Q,{elementSelectorConfig:{selectionType:O.hO.Multiple,areas:(0,_.M3)(e),config:(0,_.gF)(e),onFinish:t=>{let i=t.items.map(e=>({id:e.data.id,type:(0,C.FA)(e.elementType),subtype:"data-object"===e.elementType?e.data.classname??"folder":e.data.type??null,fullPath:e.data.fullpath,isPublished:e.data.published??null}));i.length>0&&e.addItems(i)}},type:"default"})),e.allowClear&&a.push((0,r.jsx)(f.Tooltip,{title:i("empty"),children:(0,r.jsx)(y.K,{icon:{value:"trash"},onClick:()=>{t({title:i("remove"),content:i("relations.remove-all.confirm"),onOk:e.empty})},type:"default"})})),e.enableUpload&&a.push((0,r.jsx)($.x,{maxItems:e.uploadMaxItems,onSuccess:e.addAssets,showMaxItemsError:e.uploadShowMaxItemsError,targetFolderPath:e.assetUploadPath??void 0}));let o=(0,n.useCallback)((0,l.debounce)(t=>{e.onSearch(t)},200),[e.onSearch]),s=a.length>0;return(0,r.jsx)(b.a,{padding:{top:"extra-small",left:s?"extra-small":"none",bottom:"extra-small",right:s?"extra-small":"none"},children:(0,r.jsxs)(F.s,{align:"center",gap:s?"extra-small":void 0,justify:s?"space-between":"start",children:[s?(0,r.jsx)(x.e,{items:a}):(0,r.jsx)("div",{}),(0,r.jsx)("div",{children:(0,r.jsx)(L.D,{onClear:()=>{e.onSearch("")},onInput:e=>{o(e.target.value)},placeholder:i("search"),withoutAddon:!0})})]})})},B=e=>{let{enableRowDrag:t=!0,...i}=e,[o,s]=(0,n.useState)(i.value??null),[d,c]=(0,n.useState)(i.value??null),{onDrop:u,deleteItem:p,onSearch:v,onOrderChange:f,addAssets:y,addItems:b,updateDisplayValue:x,maxRemainingItems:j,getOriginalIndex:w,hasActiveSearch:S}=((e,t,i,r,a,o,s,d)=>{let{id:c}=(0,A.n)(),{formatPath:u,hasUncachedItems:p}=(0,P.G)(),m=(0,N.Z)(),g=(0,n.useRef)(""),{t:v}=(0,h.useTranslation)(),f=(e,t)=>!!k(t)&&null!==e&&void 0!==c&&{value:e,config:t,dataObjectId:c},y=async e=>{var t,i,n,a,o,d;let c=f(e,s);if(!1===c)return void r(null===e?null:j(e,g.current));let m=await u(c.value,c.config.name,c.dataObjectId,!0);if(r(j((t=c.value,i=m,t.map(e=>{let t=`${e.type}_${e.id}`,r=null==i?void 0:i.items.find(e=>String(e.objectReference)===t);return{...e,originalPath:e.fullPath,fullPath:String((null==r?void 0:r.formatedPath)??e.fullPath),loading:(0,l.isNil)(r)}})),g.current)),p(c.value,c.config.name,c.dataObjectId)){let e=await u(c.value,c.config.name,c.dataObjectId,!1);void 0!==e&&r(j((o=c.value,d=(n=c.value,a=e,n.map(e=>{var t;return{...e,originalPath:e.fullPath,fullPath:String((null==(t=a.items.find(t=>String(t.objectReference)===`${e.type}_${e.id}`))?void 0:t.formatedPath)??e.fullPath)}})),null===o?[]:o.map(e=>{let t=d.find(t=>t.id===e.id);return{...e,originalPath:e.fullPath,fullPath:(null==t?void 0:t.fullPath)??e.fullPath,loading:!1}})),g.current))}},b=e=>{y(e).catch(e=>{console.error("Error formatting path:",e)})};(0,n.useEffect)(()=>{!1!==f(i,s)&&b(i)},[]);let x=(t,i)=>(null==e?void 0:e.some(e=>e.id===t&&e.type===i))??!1;function j(e,t){if(""===t)return e;let i=t.toLowerCase(),r=!(0,l.isNil)(d);return e.map((e,t)=>({...e,originalIndex:t})).filter(e=>{let n=!1;if(r){let t=(0,l.find)(d,t=>(null==t?void 0:t.id)===e.id);(0,l.isUndefined)(t)||(n=Object.values(t).some(e=>T(e).some(e=>e.toLowerCase().includes(i))))}if(!n){var a;n=e.fullPath.toLowerCase().includes(i)||e.id.toString().includes(t)||e.type.toLowerCase().includes(i)||(null==(a=e.subtype)?void 0:a.toLowerCase().includes(i))}return n})}let w=i=>{let r=[...e??[],...!0!==o?i.filter(e=>!x(e.id,e.type)):i];t(r),b(r)},S=async e=>{w(e.map(e=>({id:e.id,type:"asset",subtype:e.type??null,isPublished:null,fullPath:e.fullPath??""})))},I=e=>{let t=null==i?void 0:i[e];return(null==t?void 0:t.originalIndex)??e};return{onDrop:t=>{let i;if(!x(t.data.id,t.type)){if(null!==a&&null!==e&&e.length>=a)return void m.warn({content:v("items-limit-reached",{maxItems:a})});"data-object"===t.type?i={id:t.data.id,type:(0,C.FA)(t.type),subtype:t.data.className??t.data.type,isPublished:t.data.published,fullPath:t.data.fullPath}:"asset"===t.type?i={id:t.data.id,type:t.type,subtype:t.data.type,isPublished:null,fullPath:t.data.fullPath}:"document"===t.type&&(i={id:t.data.id,type:t.type,subtype:t.data.type,isPublished:t.data.published,fullPath:t.data.fullPath}),void 0!==i&&w([i])}},deleteItem:i=>{let r=I(i),n=(e,t)=>t!==r;t(null===e?null:e.filter(n)),b(null===e?null:e.filter(n))},onSearch:t=>{g.current=t,b(e)},onOrderChange:e=>{t(e),b(e)},addItems:w,addAssets:S,updateDisplayValue:b,getOriginalIndex:I,maxRemainingItems:null===a?void 0:Math.max(a-((null==e?void 0:e.length)??0),0),hasActiveSearch:((null==e?void 0:e.length)??0)!==((null==i?void 0:i.length)??0)}})(o,s,d,c,i.maxItems,i.allowMultipleAssignments,{name:i.combinedFieldName,class:i.pathFormatterClass??void 0},null==i?void 0:i.visibleFieldsValue),I=!(0,l.isNil)(d)&&(null==d?void 0:d.length)>1&&!S;return((0,n.useEffect)(()=>{if(!(0,l.isEqual)(o,i.value??null)){var e;null==(e=i.onChange)||e.call(i,o)}},[o]),(0,n.useEffect)(()=>{(0,l.isEqual)(o,i.value)||(s(i.value??null),x(i.value??null))},[i.value]),!0===i.isLoading)?(0,r.jsx)(g.U,{loading:!0,style:{width:(0,m.x)(i.width),height:(0,m.x)(i.height)}}):(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(a.g,{disableDndActiveIndicator:!0,isValidContext:e=>!0!==i.disabled&&(0,C.Hy)(e.type),isValidData:e=>(0,_.hu)(e,i),onDrop:u,variant:"outline",children:(0,r.jsx)(D,{assetInlineDownloadAllowed:i.assetInlineDownloadAllowed??!1,className:i.className,columnDefinition:i.columnDefinition,deleteItem:p,disabled:i.disabled,enableRowDrag:t&&I,enrichRowData:i.enrichRowData,handleOrderChange:f,height:i.height,hint:i.hint,inherited:i.inherited,onUpdateCellData:e=>{if(void 0===i.onUpdateCellData)return;let t=w(e.rowIndex),r={...e,rowIndex:t};i.onUpdateCellData(r)},pathFormatterConfig:{name:i.combinedFieldName,class:i.pathFormatterClass??void 0},value:d,width:i.width})}),(0,r.jsx)(g.U,{style:{width:(0,m.x)(i.width)},children:(0,r.jsx)(R,{...i,addAssets:y,addItems:b,allowClear:i.allowToClearRelation&&!0!==i.disabled,assetUploadPath:i.assetUploadPath,disabled:i.disabled,empty:()=>{x(null),s(null)},enableUpload:!0===i.assetsAllowed&&!0!==i.disabled&&!0!==i.disableInlineUpload,onSearch:v,uploadMaxItems:void 0!==j&&j>0?j:i.maxItems??void 0,uploadShowMaxItemsError:void 0!==j&&j<=0})})]})}},572(e,t,i){"use strict";i.d(t,{Pp:()=>r.P,xD:()=>d.x,q9:()=>s,h1:()=>n.h});var r=i(16014),n=i(98053),l=i(74848),a=i(47867),o=i(18196);let s=e=>{let{value:t,onChange:i,allowPathTextInput:n,...s}=e,d=(0,a.useMemo)(()=>(0,o.uI)(t)?!0===n?{textInput:!0,fullPath:t}:{type:"",id:0,fullPath:t}:null,[t,n]),c=(0,a.useCallback)(e=>{null==i||i(null===e?null:e.fullPath??null)},[i]);return(0,l.jsx)(r.P,{...s,allowPathTextInput:n,hideOpenButton:!0,onChange:c,value:d})};var d=i(62142)},7420(e,t,i){"use strict";i.d(t,{Z:()=>r.Z});var r=i(68258)},9677(e,t,i){"use strict";i.d(t,{e:()=>l});var r=i(47867),n=i(75419);let l=()=>{let e=(0,r.useContext)(n.T);if(void 0===e)throw Error("usePipelineConfig must be used within a PipelineConfigProvider");return{config:e.config}}},37836(e,t,i){"use strict";i.d(t,{Z:()=>l});var r=i(25765),n=i(35864);let l=e=>{let{children:t,targetId:i}=e,l=document.getElementById(i);return(0,n.isNull)(l)?(console.error(`Portal target "${i}" not found in DOM`),null):(0,r.createPortal)(t,l)}},60924(e,t,i){"use strict";i.d(t,{I:()=>r});let r=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{search:t` - .ant-input-prefix { - margin-inline-end: ${i.marginXS}px; - } - - &.ant-input-search > .ant-input-group > .ant-input-group-addon:last-child .ant-input-search-button { - width: 30px; - background: ${i.colorBgContainer}; - } - - .ant-input-search-button:not(:hover):not(:active) { - border-color: ${i.Button.defaultGhostBorderColor}; - color: ${i.colorPrimary}; - } - - .ant-input-search-button:hover { - border-color: ${i.colorPrimary}; - color: ${i.colorPrimary} !important; - background: ${i.colorBgTextHover}; - } - - .ant-input-search-button:active { - border-color: ${i.colorPrimary}; - color: ${i.colorPrimary}; - background: ${i.colorBgTextActive}; - } - - .ant-input-clear-icon { - display: flex; - } - `,fullWidth:t` - max-width: 100%; - `,searchWithoutAddon:t` - .ant-input-group-addon { - display: none; - } - - .ant-input-affix-wrapper, - .ant-input { - border-radius: ${i.borderRadius}px !important; - } - - .ant-input { - padding: 0 1px !important; - } - `,searchIcon:t` - color: ${i.colorTextPlaceholder}; - `,closeIcon:t` - color: ${i.colorIcon}; - `}})},53405(e,t,i){"use strict";i.d(t,{F:()=>s});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(74325);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - padding: ${t.paddingSM}px; - margin-left: 1px; - `,containerWithBorder:i` - padding: ${t.paddingSM}px; - border-bottom: 1px solid ${t.colorBorderSecondary}; - `,title:i` - margin: 0 !important; - line-height: 20px !important; - `}}),s=e=>{let{children:t,withBorder:i=!1,className:n}=e,{styles:s}=o(),d=l()(i?s.containerWithBorder:s.container,n);return(0,r.jsx)("div",{className:d,children:(0,r.jsx)(a.h,{titleClass:s.title,children:t})})}},3416(e,t,i){"use strict";i.d(t,{m:()=>r});let r={"widget-manager:inner:widget-closed":"widget-manager:inner:widget-closed","widget-manager:outer:widget-closed":"widget-manager:outer:widget-closed","data-object:editor:post-update":"data-object:editor:post-update","document:editor:post-update":"document:editor:post-update","asset:editor:post-update":"asset:editor:post-update"}},60124(e,t,i){"use strict";i.d(t,{B:()=>l,m:()=>n.m});var r=i(35864),n=i(3416);let l=new class{subscribe(e,t){let i={identifier:e,callback:t};return this.subscribers.push(i),i}unsubscribe(e){this.subscribers=this.subscribers.filter(t=>t!==e)}publish(e){this.subscribers.forEach(t=>{let i=t.identifier.type===e.identifier.type,n=(0,r.isUndefined)(t.identifier.id)||t.identifier.id===e.identifier.id;i&&n&&t.callback(e)})}constructor(){this.subscribers=[]}}},47732(e,t,i){"use strict";i.d(t,{s:()=>r});class r{registerLoader(e){if(this.loaders.has(e.name))throw Error(`Loader with name "${e.name}" already exists`);this.loaders.set(e.name,e)}getLoader(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1],i=this.loaders.get(e);if(void 0===i&&t)throw Error(`Loader with name "${e}" not found`);return i}getLoaders(){return Array.from(this.loaders.values())}async loadAll(){for(let e of this.loaders.values())try{await e.onLoad()}catch(t){console.warn(`Loader ${e.name} failed:`,t)}}hasLoader(e){return this.loaders.has(e)}overrideLoader(e){if(!this.loaders.has(e.name))throw Error(`Loader with name "${e.name}" not found`);this.loaders.set(e.name,e)}constructor(){this.loaders=new Map}}},30515(e,t,i){"use strict";i.d(t,{A:()=>p});var r=i(63364),n=i(47867),l=i(62284),a=i(35864),o=i(10600),s=i(61549),d=i(44499),c=i(96403),u=i(2700);let p=()=>{let e=r.kL.get(o.K.mainNavRegistry),t=(0,s.J)(),i=(0,l.useSelector)(u.JT),[p,m]=(0,n.useState)(0);(0,n.useEffect)(()=>e.subscribe(()=>{m(e=>e+1)}),[e]);let g=e=>e.filter(e=>{if(!(0,a.isNil)(e.hidden)&&e.hidden()||!(0,a.isNil)(e.permission)&&!(0,d.J)(e.permission)||!(0,a.isNil)(e.perspectivePermissionHide)&&(0,c.a)(e.perspectivePermissionHide)||!(0,a.isNil)(e.perspectivePermission)&&!(0,c.a)(e.perspectivePermission))return!1;if(!(0,a.isNil)(e.children)){e.children=g(e.children);let t=!(0,a.isNil)(e.useCustomMainNavItem)||!(0,a.isNil)(e.widgetConfig);if(0===e.children.length&&!t)return!1}return!0});return{navItems:(0,n.useMemo)(()=>(0,a.isNil)(t)||(0,a.isNil)(i)?[]:g(e.getMainNavTree()),[t,i,p])}}},26053(e,t,i){"use strict";i.d(t,{c:()=>a});var r=i(31635),n=i(62446),l=i(35864);class a{registerMainNavItem(e){(0,l.isNil)(e.widgetConfig)||((0,l.isNil)(e.widgetConfig.config)&&(e.widgetConfig.config={}),e.widgetConfig.config.mainNavPath=e.path);let t=this.items.findIndex(t=>t.path===e.path);-1!==t?this.items[t]=e:this.items.push(e),this.notifyListeners()}unregisterMainNavItem(e){let t=this.items.findIndex(t=>t.path===e);-1!==t&&(this.items.splice(t,1),this.notifyListeners())}subscribe(e){return this.listeners.push(e),()=>{let t=this.listeners.indexOf(e);-1!==t&&this.listeners.splice(t,1)}}notifyListeners(){this.listeners.forEach(e=>{e()})}getMainNavItem(e){return this.items.find(t=>t.path===e)}getMainNavItems(){return this.items}getMainNavTree(){let e=[];return this.items.forEach(t=>{this.addNavItemToItemList(e,t)}),this.sortTree(e),e}addNavItemToItemList(e,t){let i=t.path.split("/");if(i.length>4)return void console.warn("MainNav: Maximum depth of 4 levels is allowed, Item will be ignored",t);let r=e;i.forEach((e,n)=>{let a=r.find(t=>t.id===e),o=n===i.length-1;if((0,l.isUndefined)(a)){let s=e;o||(0,l.isUndefined)(t.group)||e!==t.group?o&&(s=t.label??e):s=t.group,a={order:o?t.order:1e3,id:e,label:s,path:i.slice(0,n+1).join("/"),children:[],...o&&{dividerTop:t.dividerTop,dividerBottom:t.dividerBottom,icon:t.icon,groupIcon:t.groupIcon,widgetConfig:t.widgetConfig,useCustomMainNavItem:t.useCustomMainNavItem,className:t.className,permission:t.permission,perspectivePermission:t.perspectivePermission,perspectivePermissionHide:t.perspectivePermissionHide,hidden:t.hidden}},r.push(a)}else n===i.length-1&&Object.assign(a,{icon:t.icon,groupIcon:t.groupIcon,order:t.order??1e3,className:t.className,permission:t.permission,perspectivePermission:t.perspectivePermission,perspectivePermissionHide:t.perspectivePermissionHide,hidden:t.hidden,widgetConfig:t.widgetConfig,useCustomMainNavItem:t.useCustomMainNavItem,dividerBottom:t.dividerBottom,dividerTop:t.dividerTop,label:t.label??a.label});r=a.children??[]})}sortTree(e){e.sort((e,t)=>(e.order??1e3)-(t.order??1e3)),e.forEach(e=>{(0,l.isNil)(e.children)||this.sortTree(e.children)})}constructor(){this.items=[],this.listeners=[]}}a=(0,r.Cg)([(0,n.injectable)()],a)},25330(e,t,i){"use strict";i.d(t,{Y:()=>l});var r=i(62284),n=i(72098);let l=()=>{let e=(0,r.useSelector)(n.yP);return{logoUrl:(null==e?void 0:e.customLogo)??"/bundles/pimcorestudioui/img/logo-purple.svg",customLogoSmall:(null==e?void 0:e.customLogoSmall)??"/bundles/pimcorestudioui/img/logo-purple.svg",loginScreenCustomBackgroundImage:(null==e?void 0:e.loginScreenCustomBackgroundImage)??"/bundles/pimcorestudioui/img/login-bg.png"}}},77885(e,t,i){"use strict";i.d(t,{I5:()=>s.I,Yw:()=>c.Y,Zt:()=>m,bU:()=>d.b,eC:()=>u.e,eb:()=>a.e});var r=i(31635),n=i(62446),l=i(55638),a=i(74152),o=i(35864),s=i(62649),d=i(81031),c=i(69634),u=i(5743);let p=e=>{let t={},i=e=>{for(let r in e){let n=e[r];(0,o.isObject)(n)&&"type"in n?t[n.name]=n:(0,o.isObject)(n)&&i(n)}};return i(e),t};class m{register(e){this.getComponentConfig(e.name).type!==s.I.SINGLE&&(0,l.Ay)(new l.$g(`Component "${e.name}" is not configured as a single component. Use registerToSlot instead.`)),this.has(e.name)&&(0,l.Ay)(new l.$g(`Component with the name "${e.name}" already exists. Use the override method to override it`)),this.registry[e.name]=e}getAll(){return this.registry}get(e){return this.has(e)||(0,l.Ay)(new l.$g(`No component with the name "${e}" found`)),this.registry[e].component}has(e){return e in this.registry}override(e){this.has(e.name)||(0,l.Ay)(new l.$g(`No component named "${e.name}" found to override`)),this.registry[e.name]=e}overrideSlotComponent(e,t){let i=this.getSlotComponents(e),r=i.findIndex(e=>e.name===t.name);-1===r&&(0,l.Ay)(new l.$g(`No component named "${t.name}" found in slot "${e}" to override`)),i[r]=t}registerToSlot(e,t){this.getComponentConfig(e).type!==s.I.SLOT&&(0,l.Ay)(new l.$g(`Slot "${e}" is not configured as a slot component.`)),(0,o.isUndefined)(this.slots[e])&&(this.slots[e]=[]),void 0!==this.slots[e].find(e=>e.name===t.name)&&(0,l.Ay)(new l.$g(`Component with the name "${t.name}" already exists in slot "${e}". Use the overrideSlotComponent method to override it`)),this.slots[e].push(t),this.slots[e].sort((e,t)=>(e.priority??0)-(t.priority??0))}getSlotComponents(e){return this.slots[e]??[]}registerConfig(e){let t=p(e);Object.assign(this.configs,t)}getComponentConfig(e){if((0,o.isUndefined)(this.configs[e]))throw Error(`Component configuration for "${e}" not found.`);return this.configs[e]}constructor(){this.registry={},this.slots={},this.configs=p(a.e)}}m=(0,r.Cg)([(0,n.injectable)()],m)},62649(e,t,i){"use strict";i.d(t,{I:()=>n});var r,n=((r={}).SINGLE="single",r.SLOT="slot",r)},5743(e,t,i){"use strict";i.d(t,{e:()=>l});var r=i(63364),n=i(10600);function l(){return(0,r.Lt)(n.K["App/ComponentRegistry/ComponentRegistry"])}},47920(e,t,i){"use strict";i.d(t,{r:()=>r});let r={documentTree:{name:"document.tree",priority:{addFolder:100,addPage:110,addSnippet:120,addLink:130,addEmail:140,addHardlink:150,rename:200,copy:300,paste:400,pasteInheritance:410,cut:500,pasteCut:510,publish:600,unpublish:700,delete:800,openInNewWindow:850,advanced:870,refreshTree:900}},documentTreeAdvanced:{name:"document.tree.advanced",priority:{convertTo:100,lock:200,useAsSite:300,editSite:310,removeSite:320}},documentEditorToolbar:{name:"document.editor.toolbar",priority:{unpublish:100,delete:200,rename:300,translations:400,openInNewWindow:500,openPreviewInNewWindow:550}},dataObjectEditorToolbar:{name:"data-object.editor.toolbar",priority:{unpublish:100,delete:200,rename:300}},assetEditorToolbar:{name:"asset.editor.toolbar",priority:{rename:100,delete:200,uploadNewVersion:250,download:300,zipDownload:400,clearImageThumbnail:500,clearVideoThumbnail:600,clearPdfThumbnail:700}},assetTree:{name:"asset.tree",priority:{newAssets:100,addFolder:120,rename:200,copy:300,paste:400,cut:500,pasteCut:510,delete:800,createZipDownload:850,uploadNewVersion:860,download:870,advanced:880,refreshTree:900}},dataObjectTree:{name:"data-object.tree",priority:{addObject:100,addVariant:110,addFolder:120,rename:200,copy:300,paste:400,cut:500,pasteCut:510,publish:600,unpublish:700,delete:800,advanced:870,refreshTree:900}},dataObjectTreeAdvanced:{name:"data-object.tree.advanced",priority:{lock:100,lockAndPropagate:110,unlock:120,unlockAndPropagate:130}},dataObjectListGrid:{name:"data-object.list-grid",priority:{open:100,rename:200,locateInTree:300,publish:400,unpublish:500,delete:600}},assetListGrid:{name:"asset.list-grid",priority:{open:100,rename:200,locateInTree:300,delete:400,download:500}},assetPreviewCard:{name:"asset.preview-card",priority:{open:100,info:200,rename:300,locateInTree:400,uploadNewVersion:500,download:600,delete:700}}}},57885(e,t,i){"use strict";i.d(t,{g:()=>a});var r=i(31635),n=i(62446),l=i(55638);class a{registerToSlot(e,t){this.slots[e]=this.slots[e]??[],void 0!==this.slots[e].find(e=>e.name===t.name)&&(0,l.Ay)(new l.$g(`Provider with the name "${t.name}" already exists in slot "${e}". Use the overrideSlotProvider method to override it`)),this.slots[e].push(t)}overrideSlotProvider(e,t){let{slotProviders:i,index:r}=this.getSlotItem(e,t.name);i[r]=t}updateSlotProvider(e,t,i){let{slotProviders:r,index:n}=this.getSlotItem(e,t);r[n]=i(r[n])}getSlotProviders(e){return this.slots[e]=this.slots[e]??[],this.slots[e].sort((e,t)=>(e.priority??999)-(t.priority??999))}getSlotItem(e,t){let i=this.getSlotProviders(e),r=i.findIndex(e=>e.name===t);return -1===r&&(0,l.Ay)(new l.$g(`No provider named "${t}" found in slot "${e}"`)),{slotProviders:i,index:r}}constructor(){this.slots={}}}a=(0,r.Cg)([(0,n.injectable)()],a)},47904(e,t,i){"use strict";i.d(t,{W:()=>l});var r=i(10600),n=i(63364);function l(e,t){return n.kL.get(r.K["App/ContextMenuRegistry/ContextMenuRegistry"]).getSlotProviders(e).map(e=>e.useMenuItem(t)).filter(e=>null!==e)}},84210(e,t,i){"use strict";i.d(t,{$1:()=>a,My:()=>l,W2:()=>o,xo:()=>s});var r=i(46881);let n=(0,i(88605).createSlice)({name:"global-context",initialState:null,reducers:{addGlobalContext:(e,t)=>t.payload,removeGlobalContext:(e,t)=>null,setGlobalDefaultContext:(e,t)=>t.payload},selectors:{selectContextByType:(e,t)=>(null==e?void 0:e.type)===t?e:null}});(0,r.injectSliceWithState)(n);let{addGlobalContext:l,removeGlobalContext:a,setGlobalDefaultContext:o}=n.actions,{selectContextByType:s}=n.getSelectors(e=>e["global-context"])},31729(e,t,i){"use strict";i.d(t,{e:()=>p});var r=i(47867),n=i(18613),l=i(74353),a=i.n(l),o=i(83826),s=i.n(o),d=i(88569),c=i.n(d),u=i(18196);a().extend(s()),a().extend(c());let p=()=>{let{timezone:e}=(0,n.useSettings)();return{convertToTimestamp:(0,r.useCallback)(function(t){let i=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=!(arguments.length>2)||void 0===arguments[2]||arguments[2];if(!(0,u.uI)(t))return null;try{let n;return n=r&&(0,u.uI)(e)?a().tz(t,e):a()(t),i?n.valueOf():n.unix()}catch(e){return console.error("Failed to convert date string to timestamp:",e),null}},[e]),convertToDateString:(0,r.useCallback)(t=>{let{timestamp:i,asMilliseconds:r=!0,respectServerTimezone:n=!0,format:l=""}=t;try{let t,o=r?i:1e3*i;return t=n&&(0,u.uI)(e)?a().tz(o,e):a()(o),(0,u.uI)(l)?t.format(l):t.toISOString()}catch(e){return console.error("Failed to convert timestamp to date:",e),null}},[e])}}},69134(e,t,i){"use strict";i.d(t,{Z:()=>s});var r=i(47867),n=i(68119),l=i(11324),a=i(7566),o=i(44499);let s=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],s=arguments.length>3?arguments[3]:void 0,d=(0,l.P)(),{user:c}=(0,n.U)(),{mergedKeyBindings:u}=(0,a.F)(null==c?void 0:c.keyBindings),p=(0,r.useCallback)(i=>{if(i.target instanceof HTMLInputElement&&"true"===i.target.dataset.keybindingInput)return;let r=u.find(e=>e.action===t),{keyCode:n,ctrlKey:l,altKey:a,shiftKey:d}=i;if((null==r?void 0:r.key)!==void 0&&r.key===n&&r.ctrl===l&&r.shift===d&&r.alt===a){if(void 0!==s&&!(0,o.J)(s))return;i.preventDefault(),e(i)}},[e,t,s]);(0,r.useEffect)(()=>{if(document.removeEventListener("keydown",p),i||d)return document.addEventListener("keydown",p),()=>{document.removeEventListener("keydown",p)}},[i,d,p])}},8849(e,t,i){"use strict";i.d(t,{r:()=>a});var r=i(47867),n=i(80223),l=i(35864);let a=()=>{let e=(0,r.useContext)(n.V);if((0,l.isNil)(e))throw Error("useModalHolder must be used within a ModalHolderProvider");return e}},66112(e,t,i){"use strict";i.d(t,{s:()=>r});class r{setField(e,t){this.data[e]=t}getField(e){return this.data[e]}hasField(e){return e in this.data}getData(){return this.data}constructor(e){this.data=e}}},32234(e,t,i){"use strict";i.d(t,{k:()=>l});var r=i(31635),n=i(62446);class l{registerProcessor(e){this.processors=this.processors.filter(t=>t.id!==e.id),this.processors.push(e),this.processors.sort((e,t)=>t.priority-e.priority)}unregisterProcessor(e){this.processors=this.processors.filter(t=>t.id!==e)}executeProcessors(e){for(let t of this.processors)try{t.execute(e)}catch(e){console.warn(`Processor ${t.id} failed:`,e)}}getRegisteredProcessors(){return[...this.processors]}hasProcessor(e){return this.processors.some(t=>t.id===e)}constructor(){this.processors=[]}}l=(0,r.Cg)([(0,n.injectable)()],l)},59446(e,t,i){"use strict";i.d(t,{t:()=>s});var r=i(62284),n=i(72098),l=i(47867),a=i(46096),o=i(81624);let s=()=>{let e=(0,r.useSelector)(n.mt),[t]=(0,l.useState)(()=>(0,o.GZ)());return(0,l.useMemo)(()=>{if(t&&(0,a.BB)())try{let{settings:e}=(0,a.qH)(),t=e.getSettings();if(null!=t&&Object.keys(t).length>0)return t}catch(e){console.warn("[useSettings] Failed to get parent settings:",e)}return e},[t,e])??{}}},55745(e,t,i){"use strict";i.d(t,{Hk:()=>s,Vf:()=>p,sH:()=>u});var r=i(53996);let{useAdminSettingsGetQuery:n,useAdminSettingsUpdateMutation:l,useSettingAdminThumbnailQuery:a,useSystemSettingsGetQuery:o,useSettingsUpdateMutation:s,useActiveBundlesGetQuery:d,usePingActionQuery:c,useLazyPingActionQuery:u,useSettingsCountryCollectionQuery:p}=i(52626).FH.enhanceEndpoints({addTagTypes:[r.nP.SETTINGS_ADMIN],endpoints:{adminSettingsGet:{providesTags:(e,t,i)=>r.yc.SETTINGS_ADMIN()},adminSettingsUpdate:{invalidatesTags:(e,t,i)=>r.qN.SETTINGS_ADMIN()},settingAdminThumbnail:{providesTags:(e,t,i)=>r.yc.SETTINGS_ADMIN()}}})},52626(e,t,i){"use strict";i.d(t,{Bo:()=>p,FH:()=>l,Gg:()=>o,Hk:()=>u,JD:()=>s,Md:()=>c,Vf:()=>d,cC:()=>a,c_:()=>g,fS:()=>m,rn:()=>n});var r=i(53073);let n=["Settings Admin","Settings"],l=r.api.enhanceEndpoints({addTagTypes:n}).injectEndpoints({endpoints:e=>({adminSettingsGet:e.query({query:()=>({url:"/pimcore-studio/api/settings/admin"}),providesTags:["Settings Admin"]}),adminSettingsUpdate:e.mutation({query:e=>({url:"/pimcore-studio/api/settings/admin/save",method:"POST",body:e.updateAdminSettings}),invalidatesTags:["Settings Admin"]}),settingAdminThumbnail:e.query({query:()=>({url:"/pimcore-studio/api/setting/admin/thumbnail"}),providesTags:["Settings Admin"]}),settingsCountryCollection:e.query({query:()=>({url:"/pimcore-studio/api/settings/available-countries"}),providesTags:["Settings"]}),systemSettingsGet:e.query({query:()=>({url:"/pimcore-studio/api/settings"}),providesTags:["Settings"]}),settingsUpdate:e.mutation({query:e=>({url:"/pimcore-studio/api/settings",method:"PUT",body:e.body}),invalidatesTags:["Settings"]}),settingsImageAdapterCheck:e.query({query:()=>({url:"/pimcore-studio/api/settings/adapter/image"}),providesTags:["Settings"]}),activeBundlesGet:e.query({query:()=>({url:"/pimcore-studio/api/settings/active-bundles"}),providesTags:["Settings"]}),pingAction:e.query({query:()=>({url:"/pimcore-studio/api/settings/ping"}),providesTags:["Settings"]})}),overrideExisting:!1}),{useAdminSettingsGetQuery:a,useAdminSettingsUpdateMutation:o,useSettingAdminThumbnailQuery:s,useSettingsCountryCollectionQuery:d,useSystemSettingsGetQuery:c,useSettingsUpdateMutation:u,useSettingsImageAdapterCheckQuery:p,useActiveBundlesGetQuery:m,usePingActionQuery:g}=l},72098(e,t,i){"use strict";i.d(t,{MM:()=>d,XE:()=>s,mt:()=>c,oc:()=>o,rC:()=>u,yP:()=>p});var r=i(88605),n=i(46881),l=i(52626);let a=(0,r.createSlice)({name:"settings",initialState:{},reducers:{setSettings:(e,t)=>{let{payload:i}=t;e.settings=i},setAdminSettings:(e,t)=>{let{payload:i}=t;e.adminSettings=i},setThumbnails:(e,t)=>{let{payload:i}=t;e.thumbnails=i}},extraReducers:e=>{e.addMatcher(l.FH.endpoints.settingAdminThumbnail.matchFulfilled,(e,t)=>{let{payload:i}=t;e.thumbnails=i})}});(0,n.injectSliceWithState)(a);let{setSettings:o,setAdminSettings:s,setThumbnails:d}=a.actions,c=e=>e.settings.settings,u=e=>e.settings.adminSettings,p=e=>e.settings.thumbnails},20260(e,t,i){"use strict";i.d(t,{u:()=>r});let r={light:"studio-default-light",dark:"studio-default-dark"}},63824(e,t,i){"use strict";i.d(t,{FH:()=>n,Xz:()=>d,d5:()=>s,e5:()=>o});var r=i(53996);let n=i(74365).FH.enhanceEndpoints({addTagTypes:[r.nP.DOMAIN_TRANSLATIONS,r.nP.LOCALES],endpoints:{translationGetList:{providesTags:(e,t,i)=>r.yc.DOMAIN_TRANSLATIONS()},translationGetAvailableLocales:{providesTags:(e,t,i)=>r.yc.LOCALES()},translationGetDomains:{providesTags:()=>[]},translationDeleteByKey:{invalidatesTags:()=>[]},translationCreate:{invalidatesTags:()=>[]},translationUpdate:{invalidatesTags:()=>[]}}}),{useTranslationCreateMutation:l,useTranslationDeleteByKeyMutation:a,useTranslationGetDomainsQuery:o,useTranslationGetListQuery:s,useTranslationGetAvailableLocalesQuery:d,useTranslationUpdateMutation:c}=n},74365(e,t,i){"use strict";i.d(t,{FH:()=>l,KT:()=>p,Ni:()=>v,Q8:()=>d,Xz:()=>a,Zn:()=>o,d5:()=>g,d_:()=>m,e5:()=>u,oG:()=>h,pr:()=>c,rn:()=>n,sp:()=>s});var r=i(53073);let n=["Translation"],l=r.api.enhanceEndpoints({addTagTypes:n}).injectEndpoints({endpoints:e=>({translationGetAvailableLocales:e.query({query:()=>({url:"/pimcore-studio/api/translations/available-locales"}),providesTags:["Translation"]}),translationCleanupByDomain:e.mutation({query:e=>({url:`/pimcore-studio/api/translations/${e.domain}/cleanup`,method:"DELETE"}),invalidatesTags:["Translation"]}),translationCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/translations/create",method:"POST",body:e.createTranslation}),invalidatesTags:["Translation"]}),translationDetermineCsvSettingsForImport:e.mutation({query:e=>({url:"/pimcore-studio/api/translations/csv-settings",method:"POST",body:e.body}),invalidatesTags:["Translation"]}),translationDeleteByKey:e.mutation({query:e=>({url:`/pimcore-studio/api/translations/${e.key}`,method:"DELETE",params:{domain:e.domain}}),invalidatesTags:["Translation"]}),translationGetDomains:e.query({query:()=>({url:"/pimcore-studio/api/translations/domains"}),providesTags:["Translation"]}),translationExportList:e.mutation({query:e=>({url:"/pimcore-studio/api/translations/export",method:"POST",body:e.body,params:{domain:e.domain}}),invalidatesTags:["Translation"]}),translationImportCsv:e.mutation({query:e=>({url:`/pimcore-studio/api/translations/${e.domain}/import`,method:"POST",body:e.body}),invalidatesTags:["Translation"]}),translationGetList:e.query({query:e=>({url:"/pimcore-studio/api/translations/list",method:"POST",body:e.body,params:{domain:e.domain}}),providesTags:["Translation"]}),translationGetCollection:e.mutation({query:e=>({url:"/pimcore-studio/api/translations",method:"POST",body:e.translation}),invalidatesTags:["Translation"]}),translationUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/translations/${e.domain}`,method:"PUT",body:e.body}),invalidatesTags:["Translation"]})}),overrideExisting:!1}),{useTranslationGetAvailableLocalesQuery:a,useTranslationCleanupByDomainMutation:o,useTranslationCreateMutation:s,useTranslationDetermineCsvSettingsForImportMutation:d,useTranslationDeleteByKeyMutation:c,useTranslationGetDomainsQuery:u,useTranslationExportListMutation:p,useTranslationImportCsvMutation:m,useTranslationGetListQuery:g,useTranslationGetCollectionMutation:h,useTranslationUpdateMutation:v}=l},26234(e,t,i){"use strict";function r(e,t){let i=URL.createObjectURL(t),r=document.createElement("a");r.href=i,r.download=e,document.body.appendChild(r),r.click(),r.remove(),URL.revokeObjectURL(i)}function n(e,t){r(e,new Blob([JSON.stringify(t,null,2)],{type:"application/json"}))}i.d(t,{P:()=>r,z:()=>n})},7843(e,t,i){"use strict";i.d(t,{Pf:()=>l,aP:()=>a,qD:()=>o});var r=i(46881);let n=(0,i(88605).createSlice)({name:"asset-draft-error",initialState:{failedDraftIds:[]},reducers:{addFailedDraftId:(e,t)=>{e.failedDraftIds.includes(t.payload)||e.failedDraftIds.push(t.payload)},removeFailedDraftId:(e,t)=>{e.failedDraftIds=e.failedDraftIds.filter(e=>e!==t.payload)}}}),{addFailedDraftId:l,removeFailedDraftId:a}=n.actions,o=(e,t)=>e["asset-draft-error"].failedDraftIds.includes(t);n.reducer,(0,r.injectSliceWithState)(n)},93063(e,t,i){"use strict";i.d(t,{F:()=>a,R:()=>l});var r=i(46881),n=i(55638);let l=e=>{let t=(e,t)=>{i(e,t.payload.id,e=>(e.customMetadata=[...e.customMetadata??[],t.payload.customMetadata],r(e),e))},i=(t,i,r)=>{let l=e.getSelectors().selectById(t,i);void 0===l&&(0,n.Ay)(new n.$g(`Item with id ${i} not found`)),t.entities[i]=r({...l})},r=e=>{e.modified=!0,e.changes={...e.changes,customMetadata:!0}};return{addCustomMetadata:t,removeCustomMetadata:(e,t)=>{i(e,t.payload.id,e=>(e.customMetadata=(e.customMetadata??[]).filter(e=>e.name!==t.payload.customMetadata.name||e.language!==t.payload.customMetadata.language),r(e),e))},updateCustomMetadata:(e,n)=>{let l=!1;i(e,n.payload.id,e=>(e.customMetadata=(e.customMetadata??[]).map((t,i)=>t.name===n.payload.customMetadata.name&&t.language===n.payload.customMetadata.language?(r(e),l=!0,n.payload.customMetadata):t),e)),l||t(e,n)},updateAllCustomMetadata:(e,t)=>{i(e,t.payload.id,e=>(e.customMetadata=t.payload.customMetadata,r(e),e))},setCustomMetadata:(e,t)=>{i(e,t.payload.id,e=>(e.customMetadata=t.payload.customMetadata,e))}}},a=(e,t,i,n,l,a,o)=>{let s=(0,r.useAppDispatch)();return{customMetadata:null==t?void 0:t.customMetadata,updateCustomMetadata:t=>{s(i({id:e,customMetadata:t}))},addCustomMetadata:t=>{s(n({id:e,customMetadata:t}))},removeCustomMetadata:t=>{s(l({id:e,customMetadata:t}))},updateAllCustomMetadata:t=>{s(o({id:e,customMetadata:t}))},setCustomMetadata:t=>{s(a({id:e,customMetadata:t}))}}}},50967(e,t,i){"use strict";i.d(t,{$:()=>l,V:()=>a});var r=i(46881),n=i(35864);let l=e=>{let t=(t,i,r)=>{let n=e.getSelectors().selectById(t,i);void 0===n?console.error(`Item with id ${i} not found`):t.entities[i]=r({...n})},i=e=>{e.modified=!0,e.changes={...e.changes,customSettings:!0}};return{setCustomSettings:(e,r)=>{t(e,r.payload.id,t=>{let{customSettings:l}=r.payload;if(!(0,n.isEmpty)(l)&&!(0,n.isUndefined)(l.key)){let a=e.entities[r.payload.id].customSettings??[],o=(0,n.findIndex)(a,{key:l.key});o>-1?a[o]={...a[o],value:l.value}:a.push(l),t.customSettings=a,i(t)}return t})},removeCustomSettings:(e,r)=>{t(e,r.payload.id,t=>{let{customSettings:l}=r.payload;if(!(0,n.isUndefined)(null==l?void 0:l.key)){let a=e.entities[r.payload.id].customSettings??[],o=(0,n.findIndex)(a,{key:l.key});o>-1&&(a.splice(o,1),t.customSettings=a,i(t))}return t})}}},a=e=>{let{id:t,draft:i,setCustomSettingsAction:n,removeCustomSettingsAction:l}=e,a=(0,r.useAppDispatch)();return{customSettings:null==i?void 0:i.customSettings,setCustomSettings:e=>{a(n({id:t,customSettings:e}))},removeCustomSettings:e=>{a(l({id:t,customSettings:e}))}}}},53119(e,t,i){"use strict";i.d(t,{J:()=>a,N:()=>l});var r=i(46881),n=i(55638);let l=e=>{let t=(t,i,r)=>{let l=e.getSelectors().selectById(t,i);void 0===l&&(0,n.Ay)(new n.$g(`Item with id ${i} not found`)),t.entities[i]=r({...l})},i=e=>{e.modified=!0,e.changes={...e.changes,imageSettings:!0}};return{addImageSettings:(e,r)=>{t(e,r.payload.id,e=>(e.imageSettings={...e.imageSettings,...r.payload.settings},i(e),e))},removeImageSetting:(e,r)=>{t(e,r.payload.id,e=>{let t=structuredClone(e.imageSettings);return delete t[r.payload.setting],e.imageSettings={...t},i(e),e})},updateImageSetting:(e,r)=>{t(e,r.payload.id,e=>(e.imageSettings[r.payload.setting]=r.payload.value,i(e),e))}}},a=(e,t,i,n,l)=>{let a=(0,r.useAppDispatch)();return{imageSettings:null==t?void 0:t.imageSettings,addImageSettings:t=>{a(i({id:e,settings:t}))},removeImageSetting:t=>{a(n({id:e,setting:t}))},updateImageSetting:(t,i)=>{a(l({id:e,setting:t,value:i}))}}}},84555(e,t,i){"use strict";i.d(t,{M:()=>l,y:()=>n});var r=i(46881);let n=e=>({updateTextData:(t,i)=>{var r;let n;r=i.payload.id,void 0===(n=e.getSelectors().selectById(t,r))?console.error(`Item with id ${r} not found`):t.entities[r]=(e=>(e.textData=i.payload.textData??"",e.modified=!0,e.changes={...e.changes,textData:!0},e))({...n})}}),l=e=>{let{id:t,draft:i,updateTextDataAction:n}=e,l=(0,r.useAppDispatch)();return{textData:null==i?void 0:i.textData,updateTextData:e=>{l(n({id:t,textData:e}))}}}},27330(e,t,i){"use strict";i.d(t,{FH:()=>l,Hw:()=>s,RB:()=>u,Rq:()=>c,hM:()=>o,k9:()=>d,mL:()=>a});var r=i(42507),n=i(53996);let l=r.api.enhanceEndpoints({addTagTypes:[n.nP.PREDEFINED_ASSET_METADATA],endpoints:{metadataGetCollection:{providesTags:(e,t,i)=>n.yc.PREDEFINED_ASSET_METADATA()},metadataPredefinedCreate:{invalidatesTags:()=>[]},metadataPredefinedUpdate:{invalidatesTags:()=>[]},metadataPredefinedDelete:{invalidatesTags:()=>[]}}}),{useAssetCustomMetadataGetByIdQuery:a,useMetadataGetCollectionQuery:o,useLazyMetadataGetCollectionQuery:s,useMetadataPredefinedCreateMutation:d,useMetadataPredefinedUpdateMutation:c,useMetadataPredefinedDeleteMutation:u}=l},42507(e,t,i){"use strict";i.r(t),i.d(t,{addTagTypes:()=>n,api:()=>l,useAssetCustomMetadataGetByIdQuery:()=>o,useMetadataAssetGetCollectionQuery:()=>a,useMetadataGetCollectionQuery:()=>s,useMetadataPredefinedCreateMutation:()=>d,useMetadataPredefinedDeleteMutation:()=>u,useMetadataPredefinedUpdateMutation:()=>c});var r=i(53073);let n=["Metadata"],l=r.api.enhanceEndpoints({addTagTypes:n}).injectEndpoints({endpoints:e=>({metadataAssetGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/metadata/asset",params:{subType:e.subType,group:e.group}}),providesTags:["Metadata"]}),assetCustomMetadataGetById:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/custom-metadata`}),providesTags:["Metadata"]}),metadataGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/metadata",method:"POST",body:e.body}),providesTags:["Metadata"]}),metadataPredefinedCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/metadata/predefined",method:"POST",body:e.createPredefinedMetadata}),invalidatesTags:["Metadata"]}),metadataPredefinedUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/metadata/predefined/${e.id}`,method:"PUT",body:e.updatePredefinedMetadata}),invalidatesTags:["Metadata"]}),metadataPredefinedDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/metadata/predefined/${e.id}`,method:"DELETE"}),invalidatesTags:["Metadata"]})}),overrideExisting:!1}),{useMetadataAssetGetCollectionQuery:a,useAssetCustomMetadataGetByIdQuery:o,useMetadataGetCollectionQuery:s,useMetadataPredefinedCreateMutation:d,useMetadataPredefinedUpdateMutation:c,useMetadataPredefinedDeleteMutation:u}=l},89354(e,t,i){"use strict";i.d(t,{l:()=>f});var r=i(46881),n=i(21724),l=i(47867),a=i(40331),o=i(93063),s=i(76359),d=i(53119),c=i(95674),u=i(63364),p=i(10600),m=i(92634),g=i(84555),h=i(50967),v=i(7843);let f=e=>{let t=(0,r.useAppSelector)(t=>(0,n.f_)(t,e)),[i,f]=(0,l.useState)(!0),y=(0,u.Lt)(p.K["Asset/Editor/TypeRegistry"]),b=(0,r.useAppSelector)(t=>(0,v.qD)(t,e));(0,l.useEffect)(()=>{void 0===t?f(!0):f(!1)},[t]);let x=(0,s.L)(e,n.O0,n.$B),j=(0,a.I)(e,t,n.uA,n.kV,n.iC,n.ro),w=(0,c.z)(e,t,n.gz,n.YH,n.a6,n.YI,n.KL),C=(0,o.F)(e,t,n.lB,n.vD,n.fP,n.aG,n.wH),S=(0,h.V)({id:e,draft:t,setCustomSettingsAction:n.Cc,removeCustomSettingsAction:n.Hh}),T=(0,d.J)(e,t,n.tn,n.EI,n.gA),I=(0,g.M)({id:e,draft:t,updateTextDataAction:n.we}),k=(0,m.JX)(e,t,n.pm),E=(null==t?void 0:t.type)===void 0?void 0:y.get(t.type)??y.get("unknown");return{isLoading:i,isError:b,asset:t,editorType:E,...x,...j,...w,...C,...S,...T,...I,...k}}},76497(e,t,i){"use strict";i.d(t,{G:()=>n});var r=i(46096);let n=()=>({openAsset:async e=>{let{config:t}=e,{element:i}=(0,r.qH)();await i.openAsset(t.id)}})},27918(e,t,i){"use strict";i.d(t,{k:()=>l});var r=i(46881),n=i(84210);let l=()=>{let e=(0,r.useAppDispatch)();return{context:(0,r.useAppSelector)(e=>(0,n.xo)(e,"asset")),setContext:function(t){e((0,n.My)({type:"asset",config:t}))},removeContext:function(){e((0,n.$1)("asset"))}}}},76468(e,t,i){"use strict";i.d(t,{t:()=>l});var r=i(47867),n=i(85670);let l=()=>{let e=(0,r.useContext)(n.l);if(void 0===e)throw Error("useSettings must be used within a SettingsProvider");return e}},25293(e,t,i){"use strict";i.d(t,{A:()=>I});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let[t,i]=(0,n.useState)([]),a=()=>{if(void 0!==t&&0!==t.length)return{type:"system.tag",filterValue:{considerChildTags:!0,tags:t}}};return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{tags:t,setTags:i,getDataQueryArg:a},children:e.children}),[t])},o=()=>{let e=(0,n.useContext)(l);if(void 0===e)throw Error("useTagFilter must be used within a TagFilterProvider");return e};var s=i(21429),d=i(81898),c=i(74325),u=i(27820),p=i(27994),m=i(91206),g=i(96940),h=i(39808),v=i(25750),f=i(93966),y=i(96317),b=i(14490);let x=e=>{let{checkedKeys:t,setCheckedKeys:i}=e,{data:n,isLoading:l}=(0,b.uQ)({page:1,pageSize:9999});if(l)return(0,r.jsx)(h.U,{loading:!0});if((null==n?void 0:n.items)===void 0)return(0,r.jsx)("div",{children:"Failed to load tags"});let a=(0,y.M)({tags:n.items,loadingNodes:new Set});return(0,r.jsx)(v.s,{"data-testid":"tag-filter-tree",gap:"small",vertical:!0,children:(0,r.jsx)(f.l,{checkStrictly:!0,checkedKeys:{checked:t,halfChecked:[]},onCheck:e=>{i(e.checked)},treeData:a,withCustomSwitcherIcon:!0})})},j=(0,n.createContext)({tags:[],setTags:()=>{}}),w=e=>{let{children:t}=e,{tags:i}=o(),[l,a]=(0,n.useState)(i);return(0,n.useEffect)(()=>{a(i)},[i]),(0,n.useMemo)(()=>(0,r.jsx)(j.Provider,{value:{tags:l,setTags:a},children:t}),[l])};var C=i(79963);let S=()=>{let{tags:e,setTags:t}=(0,n.useContext)(j),{setTags:i}=o(),{setPage:l}=(0,C.M)(),{t:a}=(0,s.useTranslation)(),d=e.map(e=>e.toString());return(0,r.jsx)(m.s,{renderToolbar:(0,r.jsxs)(g.M,{theme:"secondary",children:[(0,r.jsx)(u.J,{"data-testid":"listing-tag-filter-clear-button",icon:{value:"close"},onClick:()=>{t([])},type:"link",children:"Clear all filters"}),(0,r.jsx)(p.$,{"data-testid":"listing-tag-filter-apply-button",onClick:()=>{i(e),l(1)},type:"primary",children:"Apply"})]}),children:(0,r.jsxs)(h.U,{padded:!0,padding:"small",children:[(0,r.jsx)(c.h,{children:a("sidebar.tag_filters")}),(0,r.jsx)(x,{checkedKeys:d,setCheckedKeys:e=>{t(e.map(e=>parseInt(e)))}})]})})},T=()=>(0,r.jsx)(w,{children:(0,r.jsx)(S,{})}),I=e=>{let{ContextComponent:t,useDataQueryHelper:i,useSidebarOptions:n,...l}=e;return{ContextComponent:()=>(0,r.jsx)(a,{children:(0,r.jsx)(t,{})}),useDataQueryHelper:()=>{let{getArgs:e,...t}=i(),{getDataQueryArg:r,tags:n}=o();return{...t,getArgs:()=>{let t=e(),i=r(),l=[...(t.body.filters.columnFilters??[]).filter(e=>"system.tag"!==e.type)];return n.length>0&&l.push(i),{...t,body:{...t.body,filters:{...t.body.filters,columnFilters:l}}}}}},useSidebarOptions:()=>{let{getProps:e}=n(),{tags:t}=o(),{t:i}=(0,s.useTranslation)();return{getProps:()=>{let n=e(),l=n.highlights??[];return t.length>0?l.push("tag-filters"):l=l.filter(e=>"tag-filters"!==e),{...n,highlights:l,entries:[{component:(0,r.jsx)(T,{}),key:"tag-filters",icon:(0,r.jsx)(d.I,{value:"tag"}),tooltip:i("sidebar.tag_filters")},...n.entries]}}}},...l}}},92502(e,t,i){"use strict";i.d(t,{p:()=>r});let r=()=>({getId:()=>1})},78354(e,t,i){"use strict";i.d(t,{s:()=>a});var r=i(63364),n=i(10600),l=i(35864);let a=e=>(0,l.isNil)(e)?null:r.kL.get(n.K["Asset/ThumbnailService"]).getThumbnailUrl(e)},76228(e,t,i){"use strict";i.d(t,{Kc:()=>o,UA:()=>l});var r=i(46881);let n=(0,i(88605).createSlice)({name:"authentication",initialState:{isAuthenticated:void 0},reducers:{setAuthState(e,t){e.isAuthenticated=t.payload},resetAuthState(e){e.isAuthenticated=void 0}}});(0,r.injectSliceWithState)(n);let{setAuthState:l,resetAuthState:a}=n.actions,o=e=>e.authentication.isAuthenticated;n.reducer},11482(e,t,i){"use strict";i.d(t,{Ng:()=>n,_L:()=>r,z1:()=>l});let{useLoginMutation:r,useLogoutMutation:n,useLoginTokenMutation:l}=i(53073).api.enhanceEndpoints({addTagTypes:["Authorization"]}).injectEndpoints({endpoints:e=>({login:e.mutation({query:e=>({url:"/pimcore-studio/api/login",method:"POST",body:e.credentials}),invalidatesTags:["Authorization"]}),logout:e.mutation({query:()=>({url:"/pimcore-studio/api/logout",method:"POST"}),invalidatesTags:["Authorization"]}),loginToken:e.mutation({query:e=>({url:"/pimcore-studio/api/login/token",method:"POST",body:e.authenticationToken}),invalidatesTags:["Authorization"]})}),overrideExisting:!1})},9653(e,t,i){"use strict";i.d(t,{F:()=>n});var r,n=((r={}).NotesAndEvents="notes_events",r.Translations="translations",r.Appearance="system_appearance_settings",r.Documents="documents",r.DocumentTypes="document_types",r.Objects="objects",r.Assets="assets",r.Thumbnails="thumbnails",r.TagsConfiguration="tags_configuration",r.PredefinedProperties="predefined_properties",r.WebsiteSettings="website_settings",r.Users="users",r.Notifications="notifications",r.SendNotifications="notifications_send",r.Emails="emails",r.Reports="reports",r.ReportsConfig="reports_config",r.RecycleBin="recyclebin",r.Redirects="redirects",r.ApplicationLogger="application_logging",r.PerspectiveEditor="studio_perspective_editor",r.WidgetEditor="studio_perspective_widget_editor",r.GDPRDataExtractor="gdpr_data_extractor",r.SystemSettings="system_settings",r.Classes="classes",r.FieldCollections="fieldcollections",r.ObjectBricks="objectbricks",r.ClassificationStore="classificationstore",r.SelectOptions="selectoptions",r.QuantityValues="quantityValueUnits",r.AssetMetadata="asset_metadata",r)},39578(e,t,i){"use strict";i.d(t,{u:()=>s});var r=i(55638),n=i(29124),l=i(52725),a=i(46881),o=i(11482);let s=()=>{let[e]=(0,n.sz)(),[t]=(0,o.z1)();return{resetPassword:async(t,i,n)=>{let o,s=e({resetPassword:{username:t,resetPasswordUrl:(o=(0,l.generatePath)(a.routes.passwordReset),`${a.currentDomain}${o}`)}});try{let e=await s;if(void 0!==e.error){(0,r.Ay)(new r.hD(e.error)),null==i||i();return}null==i||i(),null==n||n()}catch{(0,r.Ay)(new r.$g("Error resetting password")),null==i||i()}},loginWithToken:async(e,i,n)=>{let l=t({authenticationToken:{token:e}});try{let e=await l;if(void 0!==e.error){(0,r.Ay)(new r.hD(e.error)),null==n||n();return}null==i||i()}catch(e){console.log("error",e),(0,r.Ay)(new r.$g("Error using token for authorization")),null==n||n()}}}}},19808(e,t,i){"use strict";i.d(t,{X:()=>o});var r=i(47867),n=i(95487),l=i(46881),a=i(76228);let o=()=>{let e=(0,l.useAppSelector)(a.Kc),t=(0,l.useAppDispatch)(),{isError:i,error:o,isSuccess:s,refetch:d}=(0,n.s)(void 0,{skip:void 0!==e});return(0,r.useEffect)(()=>{i&&t((0,a.UA)(!1)),s&&t((0,a.UA)(!0))},[i,s,o]),{isAuthenticated:e,recheck:()=>{d()}}}},19019(e,t,i){"use strict";i.d(t,{L:()=>l,P:()=>n});var r=i(46881);let n=()=>({resetChanges:e=>{e.changes={},e.modifiedCells={},e.modified=!1},setModifiedCells:(e,t)=>{e.modifiedCells={...e.modifiedCells,...t.payload.modifiedCells},e.modified=!0}}),l=(e,t)=>{let i=(0,r.useAppDispatch)();return{removeTrackedChanges:()=>{i(e())},setModifiedCells:e=>{i(t({modifiedCells:e}))}}}},68119(e,t,i){"use strict";i.d(t,{U:()=>o});var r=i(46881),n=i(73565),l=i(47867),a=i(19019);let o=()=>{let e=(0,r.useAppSelector)(e=>(0,n.xu)(e)),[t,i]=(0,l.useState)(!0);return(0,l.useEffect)(()=>{void 0===e?i(!0):i(!1)},[e]),{isLoading:t,user:e,...(0,a.L)(()=>(0,n.vD)(),e=>(0,n.$B)(e))}}},61549(e,t,i){"use strict";i.d(t,{J:()=>a});var r=i(47867),n=i(62284),l=i(73565);let a=()=>{let e=(0,n.useSelector)(l.xu);return(0,r.useMemo)(()=>e,[e])}},44499(e,t,i){"use strict";i.d(t,{J:()=>l});var r=i(41630),n=i(73565);let l=e=>{let t=r.M_.getState(),i=(0,n.xu)(t);return!!i.isAdmin||void 0!==e&&i.permissions.includes(e)}},95487(e,t,i){"use strict";i.d(t,{F:()=>n,s:()=>l});var r=i(53996);let n=i(29124).FH.enhanceEndpoints({addTagTypes:[r.nP.CURRENT_USER_INFORMATION],endpoints:{userGetCurrentInformation:{providesTags:(e,t,i)=>r.yc.CURRENT_USER_INFORMATION()},userGetImage:e=>{let t=e.query;void 0!==t&&(e.query=e=>{let i=t(e);return null===i||"object"!=typeof i?i:{...i,responseHandler:async e=>{let t=await e.blob();return{data:URL.createObjectURL(t)}}}})}}}),{useUserGetCurrentInformationQuery:l}=n},29124(e,t,i){"use strict";i.d(t,{FH:()=>r,lO:()=>j,rW:()=>c,sz:()=>y});let r=i(53073).api.enhanceEndpoints({addTagTypes:["User Management"]}).injectEndpoints({endpoints:e=>({userCloneById:e.mutation({query:e=>({url:`/pimcore-studio/api/user/clone/${e.id}`,method:"POST",body:e.body}),invalidatesTags:["User Management"]}),userCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/user/",method:"POST",body:e.body}),invalidatesTags:["User Management"]}),userFolderCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/user/folder",method:"POST",body:e.body}),invalidatesTags:["User Management"]}),userGetCurrentInformation:e.query({query:()=>({url:"/pimcore-studio/api/user/current-user-information"}),providesTags:["User Management"]}),userGetById:e.query({query:e=>({url:`/pimcore-studio/api/user/${e.id}`}),providesTags:["User Management"]}),userUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/user/${e.id}`,method:"PUT",body:e.updateUser}),invalidatesTags:["User Management"]}),userDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/user/${e.id}`,method:"DELETE"}),invalidatesTags:["User Management"]}),userFolderDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/user/folder/${e.id}`,method:"DELETE"}),invalidatesTags:["User Management"]}),userGetImage:e.query({query:e=>({url:`/pimcore-studio/api/user/image/${e.id}`}),providesTags:["User Management"]}),userImageDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/user/image/${e.id}`,method:"DELETE"}),invalidatesTags:["User Management"]}),userDefaultKeyBindings:e.query({query:()=>({url:"/pimcore-studio/api/users/default-key-bindings"}),providesTags:["User Management"]}),userGetAvailablePermissions:e.query({query:()=>({url:"/pimcore-studio/api/user/available-permissions"}),providesTags:["User Management"]}),userGetCollection:e.query({query:()=>({url:"/pimcore-studio/api/users"}),providesTags:["User Management"]}),userListWithPermission:e.query({query:e=>({url:"/pimcore-studio/api/users/with-permission",params:{permission:e.permission,includeCurrentUser:e.includeCurrentUser}}),providesTags:["User Management"]}),userResetPassword:e.mutation({query:e=>({url:"/pimcore-studio/api/user/reset-password",method:"POST",body:e.resetPassword}),invalidatesTags:["User Management"]}),pimcoreStudioApiUserSearch:e.query({query:e=>({url:"/pimcore-studio/api/user/search",params:{searchQuery:e.searchQuery}}),providesTags:["User Management"]}),userTokenLinkGet:e.query({query:e=>({url:`/pimcore-studio/api/user/token-link/${e.id}`,method:"POST",body:e.tokenLink}),providesTags:["User Management"]}),userUpdateActivePerspective:e.mutation({query:e=>({url:`/pimcore-studio/api/user/active-perspective/${e.perspectiveId}`,method:"PUT"}),invalidatesTags:["User Management"]}),userUpdatePasswordById:e.mutation({query:e=>({url:`/pimcore-studio/api/user/${e.id}/password`,method:"PUT",body:e.body}),invalidatesTags:["User Management"]}),userUpdateProfile:e.mutation({query:e=>({url:"/pimcore-studio/api/user/update-profile",method:"PUT",body:e.updateUserProfile}),invalidatesTags:["User Management"]}),userUploadImage:e.mutation({query:e=>({url:`/pimcore-studio/api/user/upload-image/${e.id}`,method:"POST",body:e.body}),invalidatesTags:["User Management"]}),userGetTree:e.query({query:e=>({url:"/pimcore-studio/api/users/tree",params:{parentId:e.parentId}}),providesTags:["User Management"]}),userGetShareCollection:e.query({query:()=>({url:"/pimcore-studio/api/users-share-list"}),providesTags:["User Management"]})}),overrideExisting:!1}),{useUserCloneByIdMutation:n,useUserCreateMutation:l,useUserFolderCreateMutation:a,useUserGetCurrentInformationQuery:o,useUserGetByIdQuery:s,useUserUpdateByIdMutation:d,useUserDeleteByIdMutation:c,useUserFolderDeleteByIdMutation:u,useUserGetImageQuery:p,useUserImageDeleteByIdMutation:m,useUserDefaultKeyBindingsQuery:g,useUserGetAvailablePermissionsQuery:h,useUserGetCollectionQuery:v,useUserListWithPermissionQuery:f,useUserResetPasswordMutation:y,usePimcoreStudioApiUserSearchQuery:b,useUserTokenLinkGetQuery:x,useUserUpdateActivePerspectiveMutation:j,useUserUpdatePasswordByIdMutation:w,useUserUpdateProfileMutation:C,useUserUploadImageMutation:S,useUserGetTreeQuery:T,useUserGetShareCollectionQuery:I}=r},73565(e,t,i){"use strict";i.d(t,{$B:()=>p,OA:()=>c,WF:()=>s,Zr:()=>d,gV:()=>o,vD:()=>u,xu:()=>m});var r=i(88605),n=i(46881),l=i(19019);let a=(0,r.createSlice)({name:"auth",initialState:{modified:!1,changes:{},modifiedCells:{},id:0,username:"",email:"",firstname:"",lastname:"",permissions:[],isAdmin:!1,classes:[],docTypes:[],language:"en",activePerspective:"0",perspectives:[],dateTimeLocale:"",welcomeScreen:!1,memorizeTabs:!1,hasImage:!1,image:void 0,contentLanguages:[],keyBindings:[],allowedLanguagesForEditingWebsiteTranslations:[],allowedLanguagesForViewingWebsiteTranslations:[],allowDirtyClose:!1,twoFactorAuthentication:{enabled:!1,required:!1,type:"",active:!1}},reducers:{setUser:(e,t)=>{let{payload:i}=t;return{...e,...i}},userProfileUpdated:(e,t)=>{let{payload:i}=t;return{...e,...i,modified:!1,modifiedCells:{},changes:{}}},userProfileImageUpdated:(e,t)=>{let{payload:i}=t;return{...e,image:i.data.image,hasImage:i.data.hasImage}},setPerspectives:(e,t)=>{let{payload:i}=t;return{...e,perspectives:i}},...(0,l.P)()}});a.name,(0,n.injectSliceWithState)(a);let{setUser:o,userProfileUpdated:s,userProfileImageUpdated:d,setPerspectives:c,resetChanges:u,setModifiedCells:p}=a.actions,m=e=>e.auth},45725(e,t,i){"use strict";i.d(t,{$v:()=>v,F7:()=>f,GC:()=>x,GV:()=>p,H8:()=>F,Hl:()=>d,I2:()=>g,KD:()=>w,Q:()=>y,T4:()=>j,TW:()=>M,U3:()=>b,Wm:()=>s,Zn:()=>u,_o:()=>m,d9:()=>c,dz:()=>h,eH:()=>P,hq:()=>C,pv:()=>a,wt:()=>o});var r=i(68710);function n(e,t,i){e((e,n)=>{var l;for(let[a,o]of Object.entries((null==(l=n().api)?void 0:l.queries)??{}))if(a.startsWith(`${t}(`))try{e(r.FH.util.updateQueryData(t,o.originalArgs,i))}catch{}})}function l(e,t,i){let n=[];return e((e,l)=>{var a;for(let[o,s]of Object.entries((null==(a=l().api)?void 0:a.queries)??{}))if(o.startsWith(`${t}(`))try{let l=e(r.FH.util.updateQueryData(t,s.originalArgs,i));n.push(l)}catch{}}),n}let{useClassificationStoreConfigurationCollectionCollectionQuery:a,useClassificationStoreConfigurationGroupCollectionQuery:o,useClassificationStoreConfigurationKeyCollectionQuery:s,useClassificationStoreConfigurationKeyGroupRelationCollectionQuery:d,useClassificationStoreConfigurationCollectionRelationCollectionQuery:c,useClassificationStoreConfigurationGroupCreateMutation:u,useClassificationStoreConfigurationGroupUpdateMutation:p,useClassificationStoreConfigurationGroupDeleteMutation:m,useClassificationStoreConfigurationCollectionCreateMutation:g,useClassificationStoreConfigurationCollectionUpdateMutation:h,useClassificationStoreConfigurationCollectionDeleteMutation:v,useClassificationStoreConfigurationKeyCreateMutation:f,useClassificationStoreConfigurationKeyUpdateMutation:y,useClassificationStoreConfigurationKeyDeleteMutation:b,useClassificationStoreConfigurationKeyGroupRelationCreateMutation:x,useClassificationStoreConfigurationKeyGroupRelationDeleteMutation:j,useClassificationStoreConfigurationCollectionRelationCreateMutation:w,useClassificationStoreConfigurationCollectionRelationDeleteMutation:C,useClassificationStoreConfigurationStoreTreeQuery:S,useClassificationStoreConfigurationStoreCreateMutation:T,useClassificationStoreConfigurationStoreUpdateMutation:I,useClassificationStoreGetCollectionsQuery:k,useClassificationStoreGetGroupsQuery:E,useClassificationStoreGetKeyGroupRelationsQuery:D,useClassificationStoreGetLayoutByCollectionQuery:N,useLazyClassificationStoreGetLayoutByCollectionQuery:P,useClassificationStoreGetLayoutByGroupQuery:A,useLazyClassificationStoreGetLayoutByGroupQuery:F,useClassificationStoreGetLayoutByKeyQuery:$,useLazyClassificationStoreGetLayoutByKeyQuery:M}=r.FH.enhanceEndpoints({endpoints:{classificationStoreConfigurationGroupCollection:{providesTags:["Classification Store"]},classificationStoreConfigurationGroupUpdate:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t,a=l(i,"classificationStoreConfigurationGroupCollection",t=>{let i=t.items.findIndex(t=>t.id===e.id);if(-1!==i){let r=e.classificationStoreConfigurationGroupUpdate;t.items[i]={...t.items[i],...r}}});try{let{data:e}=await r;n(i,"classificationStoreConfigurationGroupCollection",t=>{let i=t.items.findIndex(t=>t.id===e.id);-1!==i&&(t.items[i]=e)})}catch{a.forEach(e=>{e.undo()})}}},classificationStoreConfigurationGroupDelete:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t;try{await r,n(i,"classificationStoreConfigurationGroupCollection",t=>{t.items=t.items.filter(t=>t.id!==e.id),t.totalItems=Math.max(0,t.totalItems-1)})}catch{}}},classificationStoreConfigurationCollectionCollection:{providesTags:["Classification Store"]},classificationStoreConfigurationCollectionUpdate:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t,a=l(i,"classificationStoreConfigurationCollectionCollection",t=>{let i=t.items.findIndex(t=>t.id===e.id);if(-1!==i){let r=e.classificationStoreConfigurationCollectionUpdate;t.items[i]={...t.items[i],...r}}});try{let{data:e}=await r;n(i,"classificationStoreConfigurationCollectionCollection",t=>{let i=t.items.findIndex(t=>t.id===e.id);-1!==i&&(t.items[i]=e)})}catch{a.forEach(e=>{e.undo()})}}},classificationStoreConfigurationCollectionDelete:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t;try{await r,n(i,"classificationStoreConfigurationCollectionCollection",t=>{t.items=t.items.filter(t=>t.id!==e.id),t.totalItems=Math.max(0,t.totalItems-1)})}catch{}}},classificationStoreConfigurationKeyCollection:{providesTags:["Classification Store"]},classificationStoreConfigurationKeyUpdate:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t,a=l(i,"classificationStoreConfigurationKeyCollection",t=>{let i=t.items.findIndex(t=>t.id===e.id);if(-1!==i){let r=e.classificationStoreConfigurationKeyUpdate;t.items[i]={...t.items[i],name:r.name,...void 0!==r.type&&null!==r.type?{type:r.type}:{},description:r.description}}});try{let{data:e}=await r;n(i,"classificationStoreConfigurationKeyCollection",t=>{let i=t.items.findIndex(t=>t.id===e.id);-1!==i&&(t.items[i]=e)})}catch{a.forEach(e=>{e.undo()})}}},classificationStoreConfigurationKeyDelete:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t;try{await r,n(i,"classificationStoreConfigurationKeyCollection",t=>{t.items=t.items.filter(t=>t.id!==e.id),t.totalItems=Math.max(0,t.totalItems-1)})}catch{}}},classificationStoreConfigurationKeyGroupRelationCollection:{providesTags:["Classification Store"]},classificationStoreConfigurationKeyGroupRelationCreate:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t,{keyId:a,groupId:o,sorter:s,mandatory:d}=e.classificationStoreConfigurationKeyGroupRelationCreate,c=l(i,"classificationStoreConfigurationKeyGroupRelationCollection",e=>{let t=e.items.findIndex(e=>e.keyId===a&&e.groupId===o);-1!==t?e.items[t]={...e.items[t],sorter:s,mandatory:d}:(e.items.push({keyId:a,groupId:o,sorter:s,mandatory:d,keyName:null,keyDescription:null,groupName:null}),e.totalItems+=1)});try{let{data:e}=await r;n(i,"classificationStoreConfigurationKeyGroupRelationCollection",t=>{let i=t.items.findIndex(t=>t.keyId===e.keyId&&t.groupId===e.groupId);-1!==i&&(t.items[i]=e)})}catch{c.forEach(e=>{e.undo()})}}},classificationStoreConfigurationKeyGroupRelationDelete:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t,{keyId:n,groupId:a}=e.classificationStoreConfigurationKeyGroupRelationDelete,o=l(i,"classificationStoreConfigurationKeyGroupRelationCollection",e=>{let t=e.items.findIndex(e=>e.keyId===n&&e.groupId===a);-1!==t&&(e.items.splice(t,1),e.totalItems=Math.max(0,e.totalItems-1))});try{await r}catch{o.forEach(e=>{e.undo()})}}},classificationStoreConfigurationCollectionRelationCollection:{providesTags:["Classification Store"]},classificationStoreConfigurationCollectionRelationCreate:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t,{colId:a,groupId:o,sorter:s}=e.classificationStoreConfigurationCollectionRelationCreate,d=l(i,"classificationStoreConfigurationCollectionRelationCollection",e=>{let t=e.items.findIndex(e=>e.colId===a&&e.groupId===o);-1!==t?e.items[t]={...e.items[t],sorter:s}:(e.items.push({id:"",colId:a,groupId:o,sorter:s,groupName:null,groupDescription:null}),e.totalItems+=1)});try{let{data:e}=await r;n(i,"classificationStoreConfigurationCollectionRelationCollection",t=>{let i=t.items.findIndex(t=>t.colId===e.colId&&t.groupId===e.groupId);-1!==i&&(t.items[i]=e)})}catch{d.forEach(e=>{e.undo()})}}},classificationStoreConfigurationCollectionRelationDelete:{invalidatesTags:()=>[],async onQueryStarted(e,t){let{dispatch:i,queryFulfilled:r}=t,{colId:n,groupId:a}=e.classificationStoreConfigurationCollectionRelationDelete,o=l(i,"classificationStoreConfigurationCollectionRelationCollection",e=>{let t=e.items.findIndex(e=>e.colId===n&&e.groupId===a);-1!==t&&(e.items.splice(t,1),e.totalItems=Math.max(0,e.totalItems-1))});try{await r}catch{o.forEach(e=>{e.undo()})}}}}})},68710(e,t,i){"use strict";i.d(t,{FH:()=>r,IX:()=>I,Q:()=>f,SA:()=>S,WP:()=>C,Y0:()=>E,ZZ:()=>A,b5:()=>k,t6:()=>w});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Classification Store"]}).injectEndpoints({endpoints:e=>({classificationStoreConfigurationCollectionCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/stores/${e.storeId}/collections`,method:"POST",body:e.body}),providesTags:["Classification Store"]}),classificationStoreConfigurationCollectionCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/collections/add",method:"POST",body:e.classificationStoreConfigurationCollectionCreate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationCollectionUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/collections/${e.id}`,method:"PUT",body:e.classificationStoreConfigurationCollectionUpdate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationCollectionDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/collections/${e.id}`,method:"DELETE"}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationCollectionRelationCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/collections/${e.colId}/relations`,method:"POST",body:e.body}),providesTags:["Classification Store"]}),classificationStoreConfigurationCollectionRelationCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/collection-relations/add",method:"POST",body:e.classificationStoreConfigurationCollectionRelationCreate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationCollectionRelationDelete:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/collection-relations",method:"DELETE",body:e.classificationStoreConfigurationCollectionRelationDelete}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationGroupCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/stores/${e.storeId}/groups`,method:"POST",body:e.body}),providesTags:["Classification Store"]}),classificationStoreConfigurationGroupCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/groups/add",method:"POST",body:e.classificationStoreConfigurationGroupCreate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationGroupUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/groups/${e.id}`,method:"PUT",body:e.classificationStoreConfigurationGroupUpdate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationGroupDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/groups/${e.id}`,method:"DELETE"}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationKeyCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/stores/${e.storeId}/keys`,method:"POST",body:e.body}),providesTags:["Classification Store"]}),classificationStoreConfigurationKeyCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/keys/add",method:"POST",body:e.classificationStoreConfigurationKeyCreate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationKeyUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/keys/${e.id}`,method:"PUT",body:e.classificationStoreConfigurationKeyUpdate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationKeyDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/keys/${e.id}`,method:"DELETE"}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationKeyGroupRelationCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/groups/${e.groupId}/key-relations`,method:"POST",body:e.body}),providesTags:["Classification Store"]}),classificationStoreConfigurationKeyGroupRelationCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/key-group-relations/add",method:"POST",body:e.classificationStoreConfigurationKeyGroupRelationCreate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationKeyGroupRelationDelete:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/key-group-relations",method:"DELETE",body:e.classificationStoreConfigurationKeyGroupRelationDelete}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationStoreCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/stores",method:"POST",body:e.classificationStoreConfigurationStoreCreate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationStoreTree:e.query({query:()=>({url:"/pimcore-studio/api/classification-store/configuration/stores/tree"}),providesTags:["Classification Store"]}),classificationStoreConfigurationStoreUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/classification-store/configuration/stores/${e.id}`,method:"PUT",body:e.classificationStoreConfigurationStoreUpdate}),invalidatesTags:["Classification Store"]}),classificationStoreConfigurationGetPage:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/configuration/get-page",params:{table:e.table,id:e.id,storeId:e.storeId,pageSize:e.pageSize,sortKey:e.sortKey,sortDir:e.sortDir}}),providesTags:["Classification Store"]}),classificationStoreGetCollections:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/collections",params:{storeId:e.storeId,classId:e.classId,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName,searchTerm:e.searchTerm}}),providesTags:["Classification Store"]}),classificationStoreGetGroups:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/groups",params:{storeId:e.storeId,classId:e.classId,searchTerm:e.searchTerm,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetKeyGroupRelations:e.query({query:e=>({url:"/pimcore-studio/api/classification-store/key-group-relations",params:{storeId:e.storeId,classId:e.classId,searchTerm:e.searchTerm,page:e.page,pageSize:e.pageSize,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetLayoutByCollection:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/layout-by-collection/${e.collectionId}`,params:{objectId:e.objectId,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetLayoutByGroup:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/layout-by-group/${e.groupId}`,params:{objectId:e.objectId,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetLayoutByKey:e.query({query:e=>({url:`/pimcore-studio/api/classification-store/layout-by-key/${e.keyId}/${e.groupId}`,params:{objectId:e.objectId,fieldName:e.fieldName}}),providesTags:["Classification Store"]}),classificationStoreGetConfigCollection:e.query({query:()=>({url:"/pimcore-studio/api/classification-store/config/collection"}),providesTags:["Classification Store"]})}),overrideExisting:!1}),{useClassificationStoreConfigurationCollectionCollectionQuery:n,useClassificationStoreConfigurationCollectionCreateMutation:l,useClassificationStoreConfigurationCollectionUpdateMutation:a,useClassificationStoreConfigurationCollectionDeleteMutation:o,useClassificationStoreConfigurationCollectionRelationCollectionQuery:s,useClassificationStoreConfigurationCollectionRelationCreateMutation:d,useClassificationStoreConfigurationCollectionRelationDeleteMutation:c,useClassificationStoreConfigurationGroupCollectionQuery:u,useClassificationStoreConfigurationGroupCreateMutation:p,useClassificationStoreConfigurationGroupUpdateMutation:m,useClassificationStoreConfigurationGroupDeleteMutation:g,useClassificationStoreConfigurationKeyCollectionQuery:h,useClassificationStoreConfigurationKeyCreateMutation:v,useClassificationStoreConfigurationKeyUpdateMutation:f,useClassificationStoreConfigurationKeyDeleteMutation:y,useClassificationStoreConfigurationKeyGroupRelationCollectionQuery:b,useClassificationStoreConfigurationKeyGroupRelationCreateMutation:x,useClassificationStoreConfigurationKeyGroupRelationDeleteMutation:j,useClassificationStoreConfigurationStoreCreateMutation:w,useClassificationStoreConfigurationStoreTreeQuery:C,useClassificationStoreConfigurationStoreUpdateMutation:S,useClassificationStoreConfigurationGetPageQuery:T,useClassificationStoreGetCollectionsQuery:I,useClassificationStoreGetGroupsQuery:k,useClassificationStoreGetKeyGroupRelationsQuery:E,useClassificationStoreGetLayoutByCollectionQuery:D,useClassificationStoreGetLayoutByGroupQuery:N,useClassificationStoreGetLayoutByKeyQuery:P,useClassificationStoreGetConfigCollectionQuery:A}=r},91434(e,t,i){"use strict";i.d(t,{Ex:()=>c,FH:()=>n,M5:()=>d,ZE:()=>l,ft:()=>s,lJ:()=>o,nF:()=>p,pV:()=>u,rg:()=>a});var r=i(53996);let n=i(69187).FH.enhanceEndpoints({addTagTypes:[r.nP.DATA_OBJECT,r.nP.DATA_OBJECT_TREE,r.nP.DATA_OBJECT_DETAIL],endpoints:{dataObjectClone:{invalidatesTags:(e,t,i)=>r.qN.DATA_OBJECT_TREE_ID(i.parentId)},dataObjectGetById:{providesTags:(e,t,i)=>r.yc.DATA_OBJECT_DETAIL_ID(i.id)},dataObjectGetTree:{providesTags:(e,t,i)=>void 0!==i.parentId?r.yc.DATA_OBJECT_TREE_ID(i.parentId):r.yc.DATA_OBJECT_TREE()},dataObjectGetGrid:{keepUnusedDataFor:10,providesTags:(e,t,i)=>r.yc.DATA_OBJECT_GRID_ID(i.body.folderId)},dataObjectUpdateById:{invalidatesTags:(e,t,i)=>"autoSave"===i.body.data.task?[]:r.qN.DATA_OBJECT_DETAIL_ID(i.id)},dataObjectAdd:{invalidatesTags:(e,t,i)=>r.qN.DATA_OBJECT_TREE_ID(i.parentId)},dataObjectGetLayoutById:{providesTags:(e,t,i)=>r.yc.DATA_OBJECT_DETAIL_ID(i.id)},dataObjectFormatPath:{providesTags:(e,t,i)=>r.yc.DATA_OBJECT_DETAIL_ID(i.body.objectId)},dataObjectPatchById:{invalidatesTags:(e,t,i)=>{let n=[];for(let e of i.body.data)n.push(...r.qN.DATA_OBJECT_DETAIL_ID(e.id));return n}}}}),{useDataObjectAddMutation:l,useDataObjectCloneMutation:a,useDataObjectGetByIdQuery:o,useDataObjectUpdateByIdMutation:s,useDataObjectPatchByIdMutation:d,useDataObjectPatchFolderByIdMutation:c,useDataObjectGetTreeQuery:u,useDataObjectGetLayoutByIdQuery:p}=n},69187(e,t,i){"use strict";i.d(t,{FH:()=>r,Gq:()=>I,M5:()=>w,RX:()=>u,ZE:()=>n,dB:()=>b,ft:()=>s,je:()=>g,lw:()=>c,n5:()=>f,om:()=>y,rg:()=>a,t1:()=>p,v4:()=>v,vr:()=>d});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Data Objects","Data Object Grid"]}).injectEndpoints({endpoints:e=>({dataObjectAdd:e.mutation({query:e=>({url:`/pimcore-studio/api/data-objects/add/${e.parentId}`,method:"POST",body:e.dataObjectAddParameters}),invalidatesTags:["Data Objects"]}),dataObjectBatchDelete:e.mutation({query:e=>({url:"/pimcore-studio/api/data-objects/batch-delete",method:"DELETE",body:e.body}),invalidatesTags:["Data Objects"]}),dataObjectClone:e.mutation({query:e=>({url:`/pimcore-studio/api/data-objects/${e.id}/clone/${e.parentId}`,method:"POST",body:e.cloneParameters}),invalidatesTags:["Data Objects"]}),dataObjectGetById:e.query({query:e=>({url:`/pimcore-studio/api/data-objects/${e.id}`}),providesTags:["Data Objects"]}),dataObjectUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/data-objects/${e.id}`,method:"PUT",body:e.body}),invalidatesTags:["Data Objects"]}),dataObjectGetGridPreview:e.query({query:e=>({url:"/pimcore-studio/api/data-objects/grid/preview",method:"POST",body:e.body}),providesTags:["Data Object Grid"]}),dataObjectDeleteGridConfigurationByConfigurationId:e.mutation({query:e=>({url:`/pimcore-studio/api/data-object/grid/configuration/${e.configurationId}`,method:"DELETE"}),invalidatesTags:["Data Object Grid"]}),dataObjectGetGridConfiguration:e.query({query:e=>({url:`/pimcore-studio/api/data-object/grid/configuration/${e.folderId}/${e.classId}`,params:{configurationId:e.configurationId}}),providesTags:["Data Object Grid"]}),dataObjectListSavedGridConfigurations:e.query({query:e=>({url:`/pimcore-studio/api/data-object/grid/configurations/${e.classId}`}),providesTags:["Data Object Grid"]}),dataObjectRemoveGridConfigurationAsFavorite:e.mutation({query:e=>({url:`/pimcore-studio/api/data-object/grid/configuration/remove-favorite/${e.configurationId}/${e.folderId}`,method:"DELETE"}),invalidatesTags:["Data Object Grid"]}),dataObjectSaveGridConfiguration:e.mutation({query:e=>({url:`/pimcore-studio/api/data-object/grid/configuration/save/${e.classId}`,method:"POST",body:e.body}),invalidatesTags:["Data Object Grid"]}),dataObjectSetGridConfigurationAsFavorite:e.mutation({query:e=>({url:`/pimcore-studio/api/data-object/grid/configuration/set-as-favorite/${e.configurationId}/${e.folderId}`,method:"POST"}),invalidatesTags:["Data Object Grid"]}),dataObjectUpdateGridConfiguration:e.mutation({query:e=>({url:`/pimcore-studio/api/data-object/grid/configuration/update/${e.configurationId}`,method:"PUT",body:e.body}),invalidatesTags:["Data Object Grid"]}),dataObjectGetAvailableGridColumns:e.query({query:e=>({url:"/pimcore-studio/api/data-object/grid/available-columns",params:{classId:e.classId,folderId:e.folderId}}),providesTags:["Data Object Grid"]}),dataObjectGetAvailableGridColumnsForRelation:e.query({query:e=>({url:"/pimcore-studio/api/data-object/grid/available-columns-for-relation",params:{classId:e.classId,relationField:e.relationField}}),providesTags:["Data Object Grid"]}),dataObjectGetGrid:e.query({query:e=>({url:`/pimcore-studio/api/data-objects/grid/${e.classId}`,method:"POST",body:e.body}),providesTags:["Data Object Grid"]}),dataObjectGetPhpcodeTransformers:e.query({query:()=>({url:"/pimcore-studio/api/data-objects/grid/transformers/services/phpcode"}),providesTags:["Data Object Grid"]}),dataObjectGetLayoutById:e.query({query:e=>({url:`/pimcore-studio/api/data-objects/${e.id}/layout`,params:{layoutId:e.layoutId}}),providesTags:["Data Objects"]}),dataObjectPatchById:e.mutation({query:e=>({url:"/pimcore-studio/api/data-objects",method:"PATCH",body:e.body}),invalidatesTags:["Data Objects"]}),dataObjectPatchFolderById:e.mutation({query:e=>({url:"/pimcore-studio/api/data-objects/folder",method:"PATCH",body:e.body}),invalidatesTags:["Data Objects"]}),dataObjectFormatPath:e.query({query:e=>({url:"/pimcore-studio/api/data-objects/format-path",method:"POST",body:e.body}),providesTags:["Data Objects"]}),dataObjectPreviewById:e.query({query:e=>({url:`/pimcore-studio/api/data-objects/preview/${e.id}`,params:{site:e.site}}),providesTags:["Data Objects"]}),dataObjectReplaceContent:e.mutation({query:e=>({url:`/pimcore-studio/api/data-objects/${e.sourceId}/replace/${e.targetId}`,method:"POST"}),invalidatesTags:["Data Objects"]}),dataObjectGetSelectOptions:e.mutation({query:e=>({url:"/pimcore-studio/api/data-objects/select-options",method:"POST",body:e.body}),invalidatesTags:["Data Objects"]}),dataObjectGetTree:e.query({query:e=>({url:"/pimcore-studio/api/data-objects/tree",params:{page:e.page,pageSize:e.pageSize,parentId:e.parentId,idSearchTerm:e.idSearchTerm,pqlQuery:e.pqlQuery,excludeFolders:e.excludeFolders,path:e.path,pathIncludeParent:e.pathIncludeParent,pathIncludeDescendants:e.pathIncludeDescendants,className:e.className,classIds:e.classIds}}),providesTags:["Data Objects"]})}),overrideExisting:!1}),{useDataObjectAddMutation:n,useDataObjectBatchDeleteMutation:l,useDataObjectCloneMutation:a,useDataObjectGetByIdQuery:o,useDataObjectUpdateByIdMutation:s,useDataObjectGetGridPreviewQuery:d,useDataObjectDeleteGridConfigurationByConfigurationIdMutation:c,useDataObjectGetGridConfigurationQuery:u,useDataObjectListSavedGridConfigurationsQuery:p,useDataObjectRemoveGridConfigurationAsFavoriteMutation:m,useDataObjectSaveGridConfigurationMutation:g,useDataObjectSetGridConfigurationAsFavoriteMutation:h,useDataObjectUpdateGridConfigurationMutation:v,useDataObjectGetAvailableGridColumnsQuery:f,useDataObjectGetAvailableGridColumnsForRelationQuery:y,useDataObjectGetGridQuery:b,useDataObjectGetPhpcodeTransformersQuery:x,useDataObjectGetLayoutByIdQuery:j,useDataObjectPatchByIdMutation:w,useDataObjectPatchFolderByIdMutation:C,useDataObjectFormatPathQuery:S,useDataObjectPreviewByIdQuery:T,useDataObjectReplaceContentMutation:I,useDataObjectGetSelectOptionsMutation:k,useDataObjectGetTreeQuery:E}=r},22555(e,t,i){"use strict";i.d(t,{Pf:()=>l,aP:()=>a,qD:()=>o});var r=i(46881);let n=(0,i(88605).createSlice)({name:"data-object-draft-error",initialState:{failedDraftIds:[]},reducers:{addFailedDraftId:(e,t)=>{e.failedDraftIds.includes(t.payload)||e.failedDraftIds.push(t.payload)},removeFailedDraftId:(e,t)=>{e.failedDraftIds=e.failedDraftIds.filter(e=>e!==t.payload)}}}),{addFailedDraftId:l,removeFailedDraftId:a}=n.actions,o=(e,t)=>e["data-object-draft-error"].failedDraftIds.includes(t);n.reducer,(0,r.injectSliceWithState)(n)},31866(e,t,i){"use strict";i.d(t,{L:()=>a,p:()=>l});var r=i(46881),n=i(47867);let l=e=>({markObjectDataAsModified:(t,i)=>{var r,n,l;let a;r=t,n=i.payload,l=e=>{var t;return(t=e).modified=!0,t.changes={...t.changes,objectData:!0},e},void 0!==(a=e.getSelectors().selectById(r,n))&&(r.entities[n]=l({...a}))}}),a=(e,t,i)=>{let l=(0,r.useAppDispatch)(),[,a]=(0,n.useTransition)();return{markObjectDataAsModified:()=>{var r;null!=t&&null!=(r=t.changes)&&r.objectData||a(()=>{l(i(e))})}}}},93104(e,t,i){"use strict";i.d(t,{Yl:()=>o,ub:()=>d,xz:()=>u});var r=i(35864),n=i(276),l=i(44767),a=i(18196);let o=(e,t)=>[e,t].filter(Boolean).join("/"),s=[l.l.BLOCK],d=async e=>{let t,{objectId:i,layout:l,versionData:d,versionId:c,versionCount:u,objectDataRegistry:p,layoutsList:m,setLayoutsList:g}=e,h={fullPath:d.fullPath,creationDate:(0,n.r6)({timestamp:d.creationDate??null,dateStyle:"short",timeStyle:"medium"}),modificationDate:(0,n.r6)({timestamp:d.modificationDate??null,dateStyle:"short",timeStyle:"medium"})},v=async e=>{let{data:t,objectValuesData:n=null==d?void 0:d.objectData,fieldBreadcrumbTitle:l="",fieldPath:h=""}=e,f=t.map(async e=>{if("layout"===e.datatype){let t=o(l,e.title);return await v({data:e.children,fieldBreadcrumbTitle:t,objectValuesData:n,fieldPath:h})}if("data"===e.datatype){let t=e.name,d=(0,r.get)(n,t),f=e.fieldtype,y=(0,a.Po)(h)?t:`${h}.${t}`;if(!p.hasDynamicType(f))return[];let b=p.getDynamicType(f),x=await b.processVersionFieldData({objectId:i,item:e,fieldBreadcrumbTitle:l,fieldValueByName:d,versionId:c,versionCount:u,layoutsList:m,setLayoutsList:g,fieldPath:y}),j=null==x?void 0:x.map(async e=>{var t,i,a,d;if(n={},!(0,r.isEmpty)(null==e||null==(t=e.fieldData)?void 0:t.children)&&!s.includes(null==e||null==(i=e.fieldData)?void 0:i.fieldtype)){let t=o(l,(null==e||null==(a=e.fieldData)?void 0:a.title)??"");return await v({data:[null==e?void 0:e.fieldData],objectValuesData:{...n,[null==e||null==(d=e.fieldData)?void 0:d.name]:null==e?void 0:e.fieldValue},fieldBreadcrumbTitle:t,fieldPath:(null==e?void 0:e.fieldPath)??""})}return[e]});return(await Promise.all(j)).flatMap(e=>e)}return[]});return(await Promise.all(f)).flatMap(e=>e)},f=await v({data:l});return[...(t=[],Object.entries(h).forEach(e=>{let[i,r]=e;t.push({fieldBreadcrumbTitle:"systemData",fieldData:{title:i,name:i,fieldtype:"input"},fieldValue:r,versionId:c,versionCount:u,fieldPath:""})}),t),...f]},c=e=>{var t,i;let r=e.fieldBreadcrumbTitle??"",n=(null==(t=e.fieldData)?void 0:t.name)??"",l=(null==(i=e.fieldData)?void 0:i.locale)??"default";return`${r}-${n}-${l}`},u=e=>{let{data:t}=e,i=[],n=new Map((t[0]??[]).map(e=>[c(e),e])),a=t[1]??[],o=new Map(a.map(e=>[c(e),e])),s=!(0,r.isEmpty)(a);for(let e of new Set([...n.keys(),...o.keys()])){let t=n.get(e),a=o.get(e),c=!(0,r.isUndefined)(a),m={Field:{fieldBreadcrumbTitle:(null==t?void 0:t.fieldBreadcrumbTitle)??(null==a?void 0:a.fieldBreadcrumbTitle),...(null==t?void 0:t.fieldData)??(null==a?void 0:a.fieldData)}};if((0,r.isEmpty)(t)?c&&(m[`Version ${a.versionCount}`]=null):m[`Version ${t.versionCount}`]=t.fieldValue,c&&(m[`Version ${a.versionCount}`]=a.fieldValue??null),s&&!(0,r.isEqual)((null==t?void 0:t.fieldValue)??null,(null==a?void 0:a.fieldValue)??null)){var d,u,p;if(m.isModifiedValue=!0,(null==t||null==(d=t.fieldData)?void 0:d.fieldtype)===l.l.FIELD_COLLECTIONS){let e=null==t||null==(u=t.fieldValue)?void 0:u.length,i=null==a||null==(p=a.fieldValue)?void 0:p.length,n=i>e?a:t,l=e(null==e?void 0:e.type)===(null==t?void 0:t.type)&&(0,r.isEqual)(null==e?void 0:e.data,null==t?void 0:t.data)).map(e=>e.type)}}i.push(m)}return i}},66026(e,t,i){"use strict";i.d(t,{A:()=>v});var r=i(46881),n=i(54100),l=i(47867),a=i(40331),o=i(76359),s=i(95674),d=i(63364),c=i(10600),u=i(92634),p=i(31866),m=i(26280),g=i(50034),h=i(22555);let v=e=>{let t=(0,r.useAppSelector)(t=>(0,n.Sz)(t,e)),[i,v]=(0,l.useState)(!0),f=(0,d.Lt)(c.K["DataObject/Editor/TypeRegistry"]),y=(0,r.useAppSelector)(t=>(0,h.qD)(t,e));(0,l.useEffect)(()=>{void 0!==t||y?v(!1):v(!0)},[t]);let b=(0,o.L)(e,n.vD,n.$B),x=(0,a.I)(e,t,n.fS,n.ZD,n.zE,n.WZ),j=(0,s.z)(e,t,n.dr,n.NL,n.r0,n.f7,n.lq),w=(0,u.JX)(e,t,n.Ko),C=(0,p.L)(e,t,n.am),S=(0,m.cY)(e,n._5),T=(0,g.D)(e,n.T2,n.Up),I=(null==t?void 0:t.type)===void 0?void 0:f.get(t.type)??f.get("object");return{isLoading:i,isError:y,dataObject:t,editorType:I,...b,...x,...j,...w,...C,...S,...T}}},40721(e,t,i){"use strict";i.d(t,{H:()=>c});var r=i(41630),n=i(59385),l=i(74108),a=i(69187),o=i(54100),s=i(55638),d=i(46096);let c=()=>{let e=r.M_.dispatch,[t]=(0,a.ft)();return{openDataObject:async function(e){let{config:t}=e,{element:i}=(0,d.qH)();await i.openDataObject(t.id)},executeDataObjectTask:async(i,r,a)=>{let d=t({id:i,body:{data:{task:r}}});d.catch(e=>{(0,s.Ay)(new s.hD(e))});try{e((0,n.setNodeLoadingInAllTree)({nodeId:String(i),elementType:"data-object",loading:!0}));let t=await d;if(void 0!==t.error){e((0,n.setNodeLoadingInAllTree)({nodeId:String(i),elementType:"data-object",loading:!1})),(0,s.Ay)(new s.hD(t.error)),null==a||a();return}r===l.D.Unpublish&&e((0,o.Up)({id:i})),r===l.D.Publish&&e((0,o.T2)({id:i})),(r===l.D.Unpublish||r===l.D.Publish)&&e((0,n.setNodePublished)({nodeId:String(i),elementType:"data-object",isPublished:"publish"===r})),e((0,n.setNodeLoadingInAllTree)({nodeId:String(i),elementType:"data-object",loading:!1})),null==a||a()}catch(e){(0,s.Ay)(new s.$g(e.message))}}}}},64724(e,t,i){"use strict";i.d(t,{n:()=>l});var r=i(47867),n=i(20713);let l=()=>{let{id:e}=(0,r.useContext)(n.Z);return{id:e}}},20761(e,t,i){"use strict";i.d(t,{G:()=>s});var r=i(47867),n=i(41630),l=i(55638),a=i(91434),o=i(35864);let s=()=>{let e=(0,r.useRef)(new Map),t=(e,t,i,r)=>`${e}_${t}_${i}_${r}`,i=(e,i,r,n)=>{let l={},a=[];return e.forEach(e=>{let o=t(i,r,e.type,e.id),s=n.get(o);void 0!==s?l[`${e.type}_${e.id}`]=s:a.push(e)}),{cachedItems:l,itemsToRequest:a}};return{formatPath:async function(r,s,d){var c;let u,p=arguments.length>3&&void 0!==arguments[3]&&arguments[3],m=e.current,{cachedItems:g,itemsToRequest:h}=i(r,d,s,m);if(p||0===h.length){let e;return{totalItems:(e=Object.entries(g).map(e=>{let[t,i]=e;return{objectReference:t,formatedPath:i}})).length,items:e}}let v=h.reduce((e,t)=>(e[`${t.type}_${t.id}`]={id:t.id,type:t.type,label:t.fullPath,path:t.fullPath,nicePathKey:`${t.type}_${t.id}`},e),{});if(0===Object.keys(v).length)return;let{data:f,error:y}=await n.M_.dispatch(a.FH.endpoints.dataObjectFormatPath.initiate({body:{objectId:d,targets:v,fieldName:s}}));return void 0===f?void(0,l.Ay)(new l.hD(y)):(null==(c=f.items)||c.forEach(e=>{let i=h.find(t=>`${t.type}_${t.id}`===String(e.objectReference));if(!(0,o.isNil)(i)){let r=t(d,s,i.type,i.id);m.set(r,String(e.formatedPath))}}),{totalItems:(u=[...Object.entries(g).map(e=>{let[t,i]=e;return{objectReference:t,formatedPath:i}}),...f.items??[]]).length,items:u})},hasUncachedItems:(t,r,n)=>{let{itemsToRequest:l}=i(t,n,r,e.current);return l.length>0}}}},85566(e,t,i){"use strict";i.d(t,{L:()=>l});var r=i(46881),n=i(84210);let l=()=>{let e=(0,r.useAppDispatch)();return{context:(0,r.useAppSelector)(e=>(0,n.xo)(e,"data-object")),setContext:function(t){e((0,n.My)({type:"data-object",config:t}))},removeContext:function(){e((0,n.$1)("data-object"))}}}},51289(e,t,i){"use strict";i.d(t,{R:()=>s});var r=i(21429),n=i(35864),l=i.n(n),a=i(2208),o=i(46881);let s=()=>{let{data:e}=(0,a.cJ)(),t=(0,o.useAppDispatch)(),{t:i}=(0,r.useTranslation)();return{getSelectOptions:t=>(null==e?void 0:e.items)===void 0?[]:e.items.filter(e=>void 0===t||null!==e.id&&t.includes(String(e.id))).map(e=>({label:null===e.abbreviation?e.id:i(String(e.abbreviation)),value:e.id})),convertValue:async(i,r,n)=>{if((null==e?void 0:e.items)===void 0)return null;let l=e.items.find(e=>e.id===i),o=e.items.find(e=>e.id===r);if(void 0===l||void 0===o||null===l.baseUnit||l.baseUnit!==o.baseUnit)return null;let{data:s}=await t(a.FH.endpoints.unitQuantityValueConvert.initiate({fromUnitId:i,toUnitId:r,value:n}));return(null==s?void 0:s.data)??null},getAbbreviation:t=>{if((null==e?void 0:e.items)===void 0)return"";let r=e.items.find(e=>e.id===t);return"string"!=typeof(null==r?void 0:r.abbreviation)||l().isEmpty(r.abbreviation)?t:i(r.abbreviation)}}}},68528(e,t,i){"use strict";i.d(t,{F1:()=>l,Y$:()=>n,vK:()=>a});var r,n=((r={}).Add="add",r.Remove="remove",r.Replace="replace",r);let l="supportsBatchAppendMode",a=(e,t)=>({action:t,data:e})},64688(e,t,i){"use strict";i.d(t,{C:()=>o,g:()=>s});var r=i(31635),n=i(62446),l=i(32234),a=i(66112);class o extends a.s{constructor(e,t,i){super(i),this.dataObjectId=e,this.saveTask=t,this.updateData=i}}class s extends l.k{}s=(0,r.Cg)([(0,n.injectable)()],s)},2208(e,t,i){"use strict";i.d(t,{FH:()=>r,cJ:()=>p,mj:()=>l});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Units"]}).injectEndpoints({endpoints:e=>({unitQuantityValueUnitsCollection:e.query({query:e=>({url:"/pimcore-studio/api/unit/quantity-value/units/collection",method:"POST",body:e.body}),providesTags:["Units"]}),unitQuantityValueConvertAll:e.query({query:e=>({url:"/pimcore-studio/api/unit/quantity-value/convert-all",params:{fromUnitId:e.fromUnitId,value:e.value}}),providesTags:["Units"]}),unitQuantityValueConvert:e.query({query:e=>({url:"/pimcore-studio/api/unit/quantity-value/convert",params:{fromUnitId:e.fromUnitId,toUnitId:e.toUnitId,value:e.value}}),providesTags:["Units"]}),unitQuantityValueUnitsCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/unit/quantity-value/units",method:"POST",body:e.createUnitParameters}),invalidatesTags:["Units"]}),unitQuantityValueUnitsUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/unit/quantity-value/units/${e.id}`,method:"PUT",body:e.updateUnitParameters}),invalidatesTags:["Units"]}),unitQuantityValueUnitsDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/unit/quantity-value/units/${e.id}`,method:"DELETE"}),invalidatesTags:["Units"]}),unitQuantityValueUnitsExport:e.query({query:()=>({url:"/pimcore-studio/api/unit/quantity-value/units/export"}),providesTags:["Units"]}),unitQuantityValueUnitsImport:e.mutation({query:e=>({url:"/pimcore-studio/api/unit/quantity-value/units/import",method:"POST",body:e.body}),invalidatesTags:["Units"]}),unitQuantityValueList:e.query({query:()=>({url:"/pimcore-studio/api/unit/quantity-value/unit-list"}),providesTags:["Units"]})}),overrideExisting:!1}),{useUnitQuantityValueUnitsCollectionQuery:n,useUnitQuantityValueConvertAllQuery:l,useUnitQuantityValueConvertQuery:a,useUnitQuantityValueUnitsCreateMutation:o,useUnitQuantityValueUnitsUpdateMutation:s,useUnitQuantityValueUnitsDeleteMutation:d,useUnitQuantityValueUnitsExportQuery:c,useUnitQuantityValueUnitsImportMutation:u,useUnitQuantityValueListQuery:p}=r},46766(e,t,i){"use strict";i.d(t,{$P:()=>m,BZ:()=>g,FH:()=>o,K4:()=>P,L0:()=>F,MO:()=>A,P5:()=>c,Pp:()=>b,Rc:()=>D,T9:()=>j,Tw:()=>s,Ui:()=>C,XE:()=>h,XS:()=>v,Xb:()=>S,em:()=>x,eq:()=>k,gJ:()=>T,hM:()=>p,ix:()=>E,nr:()=>d,pJ:()=>w,v2:()=>y,vA:()=>u,wS:()=>I,xt:()=>N,zO:()=>f});var r=i(53996),n=i(75023),l=i(53073),a=i(35864);let o=n.FH.enhanceEndpoints({addTagTypes:[r.nP.DOCUMENT,r.nP.DOCUMENT_TREE,r.nP.DOCUMENT_DETAIL,r.nP.DOCUMENT_TYPES,r.nP.DOCUMENT_SITE],endpoints:{documentClone:{invalidatesTags:(e,t,i)=>r.qN.DOCUMENT_TREE_ID(i.parentId)},documentGetById:{providesTags:(e,t,i)=>r.yc.DOCUMENT_DETAIL_ID(i.id)},documentGetTree:{providesTags:(e,t,i)=>void 0!==i.parentId?r.yc.DOCUMENT_TREE_ID(i.parentId):r.yc.DOCUMENT_TREE()},documentDocTypeList:{providesTags:(e,t,i)=>r.yc.DOCUMENT_TYPES()},documentDocTypeDelete:{invalidatesTags:()=>[]},documentDocTypeUpdateById:{invalidatesTags:()=>[]},documentDocTypeAdd:{invalidatesTags:()=>[]},documentUpdateById:{invalidatesTags:(e,t,i)=>"autoSave"===i.body.data.task?[]:r.qN.DOCUMENT_DETAIL_ID(i.id)},documentAdd:{invalidatesTags:(e,t,i)=>r.qN.DOCUMENT_TREE_ID(i.parentId)},documentGetSite:{providesTags:()=>[]},documentUpdateSite:{invalidatesTags:()=>r.qN.DOCUMENT_SITE()},documentDeleteSite:{invalidatesTags:()=>r.qN.DOCUMENT_SITE()},documentsListAvailableSites:{providesTags:()=>r.yc.DOCUMENT_SITE()},documentGetTranslations:{providesTags:(e,t,i)=>r.yc.DOCUMENT_DETAIL_ID(i.id)},documentAddTranslation:{invalidatesTags:(e,t,i)=>r.qN.DOCUMENT_DETAIL_ID(i.id)},documentDeleteTranslation:{invalidatesTags:(e,t,i)=>r.qN.DOCUMENT_DETAIL_ID(i.id)}}}).injectEndpoints({endpoints:e=>({documentRenderletRender:e.query({queryFn:async(e,t,i,r)=>{let n=await r({url:`${(0,l.getPrefix)()}/documents/renderlet/render`,params:{id:e.id,type:e.type,controller:e.controller,parentDocumentId:e.parentDocumentId,template:e.template},responseHandler:async e=>await e.blob()});if(!(0,a.isNil)(n.error)){if(n.error.data instanceof Blob)try{let e=await n.error.data.text(),t=JSON.parse(e);return{error:{...n.error,data:t}}}catch{}return{error:n.error}}return{data:n.data}},providesTags:["Documents"]})}),overrideExisting:!0}),{useDocumentAddMutation:s,useDocumentCloneMutation:d,useDocumentGetByIdQuery:c,useDocumentUpdateByIdMutation:u,useDocumentGetTreeQuery:p,useDocumentAvailableTemplatesListQuery:m,useDocumentDocTypeListQuery:g,useDocumentDocTypeTypeListQuery:h,useDocumentAvailableControllersListQuery:v,useDocumentDocTypeAddMutation:f,useDocumentDocTypeUpdateByIdMutation:y,useDocumentDocTypeDeleteMutation:b,useDocumentPageSnippetChangeMainDocumentMutation:x,useDocumentPageSnippetAreaBlockRenderQuery:j,useLazyDocumentPageSnippetAreaBlockRenderQuery:w,useDocumentRenderletRenderQuery:C,useDocumentsListAvailableSitesQuery:S,useDocumentGetSiteQuery:T,useLazyDocumentGetSiteQuery:I,useDocumentUpdateSiteMutation:k,useDocumentDeleteSiteMutation:E,useDocumentGetTranslationsQuery:D,useLazyDocumentGetTranslationsQuery:N,useDocumentAddTranslationMutation:P,useDocumentDeleteTranslationMutation:A,useDocumentGetTranslationParentByLanguageQuery:F}=o},75023(e,t,i){"use strict";i.d(t,{BZ:()=>u,FH:()=>r,LS:()=>a,Pp:()=>d,Tw:()=>n,kj:()=>p,v2:()=>s,vA:()=>g,zO:()=>o});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Documents"]}).injectEndpoints({endpoints:e=>({documentAdd:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/add/${e.parentId}`,method:"POST",body:e.documentAddParameters}),invalidatesTags:["Documents"]}),documentClone:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/${e.id}/clone/${e.parentId}`,method:"POST",body:e.documentCloneParameters}),invalidatesTags:["Documents"]}),documentConvert:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/${e.id}/convert/${e.type}`,method:"POST"}),invalidatesTags:["Documents"]}),documentDocTypeAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/documents/doc-types/add",method:"POST",body:e.docTypeAddParameters}),invalidatesTags:["Documents"]}),documentDocTypeUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/doc-types/${e.id}`,method:"PUT",body:e.docTypeUpdateParameters}),invalidatesTags:["Documents"]}),documentDocTypeDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/doc-types/${e.id}`,method:"DELETE"}),invalidatesTags:["Documents"]}),documentDocTypeTypeList:e.query({query:()=>({url:"/pimcore-studio/api/documents/doc-types/types"}),providesTags:["Documents"]}),documentDocTypeList:e.query({query:e=>({url:"/pimcore-studio/api/documents/doc-types",params:{type:e.type}}),providesTags:["Documents"]}),documentGetTypes:e.query({query:()=>({url:"/pimcore-studio/api/documents/types"}),providesTags:["Documents"]}),documentGetById:e.query({query:e=>({url:`/pimcore-studio/api/documents/${e.id}`}),providesTags:["Documents"]}),documentUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/${e.id}`,method:"PUT",body:e.body}),invalidatesTags:["Documents"]}),documentPageCheckPrettyUrl:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/${e.id}/page/check-pretty-url`,method:"POST",body:e.checkPrettyUrl}),invalidatesTags:["Documents"]}),documentPageStreamPreview:e.query({query:e=>({url:`/pimcore-studio/api/documents/${e.id}/page/stream/preview`}),providesTags:["Documents"]}),documentAvailableControllersList:e.query({query:()=>({url:"/pimcore-studio/api/documents/get-available-controllers"}),providesTags:["Documents"]}),documentAvailableTemplatesList:e.query({query:()=>({url:"/pimcore-studio/api/documents/get-available-templates"}),providesTags:["Documents"]}),documentPageSnippetChangeMainDocument:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/${e.id}/page-snippet/change-main-document`,method:"PUT",body:e.changeMainDocument}),invalidatesTags:["Documents"]}),documentPageSnippetAreaBlockRender:e.query({query:e=>({url:`/pimcore-studio/api/documents/page-snippet/${e.id}/area-block/render`,method:"POST",body:e.body}),providesTags:["Documents"]}),documentRenderletRender:e.query({query:e=>({url:"/pimcore-studio/api/documents/renderlet/render",params:{id:e.id,type:e.type,controller:e.controller,parentDocumentId:e.parentDocumentId,template:e.template}}),providesTags:["Documents"]}),documentReplaceContent:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/${e.sourceId}/replace/${e.targetId}`,method:"POST"}),invalidatesTags:["Documents"]}),documentsListAvailableSites:e.query({query:e=>({url:"/pimcore-studio/api/documents/sites/list-available",params:{excludeMainSite:e.excludeMainSite}}),providesTags:["Documents"]}),documentUpdateSite:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/site/${e.id}`,method:"POST",body:e.updateSite}),invalidatesTags:["Documents"]}),documentDeleteSite:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/site/${e.id}`,method:"DELETE"}),invalidatesTags:["Documents"]}),documentGetSite:e.query({query:e=>({url:`/pimcore-studio/api/documents/site/${e.documentId}`}),providesTags:["Documents"]}),documentAddTranslation:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/translations/${e.id}/add/${e.translationId}`,method:"POST"}),invalidatesTags:["Documents"]}),documentDeleteTranslation:e.mutation({query:e=>({url:`/pimcore-studio/api/documents/translations/${e.id}/delete/${e.translationId}`,method:"DELETE"}),invalidatesTags:["Documents"]}),documentGetTranslations:e.query({query:e=>({url:`/pimcore-studio/api/documents/translations/${e.id}`}),providesTags:["Documents"]}),documentGetTranslationParentByLanguage:e.query({query:e=>({url:`/pimcore-studio/api/documents/translations/${e.id}/get-parent/${e.language}`}),providesTags:["Documents"]}),documentGetTree:e.query({query:e=>({url:"/pimcore-studio/api/documents/tree",params:{page:e.page,pageSize:e.pageSize,parentId:e.parentId,idSearchTerm:e.idSearchTerm,pqlQuery:e.pqlQuery,excludeFolders:e.excludeFolders,path:e.path,pathIncludeParent:e.pathIncludeParent,pathIncludeDescendants:e.pathIncludeDescendants}}),providesTags:["Documents"]})}),overrideExisting:!1}),{useDocumentAddMutation:n,useDocumentCloneMutation:l,useDocumentConvertMutation:a,useDocumentDocTypeAddMutation:o,useDocumentDocTypeUpdateByIdMutation:s,useDocumentDocTypeDeleteMutation:d,useDocumentDocTypeTypeListQuery:c,useDocumentDocTypeListQuery:u,useDocumentGetTypesQuery:p,useDocumentGetByIdQuery:m,useDocumentUpdateByIdMutation:g,useDocumentPageCheckPrettyUrlMutation:h,useDocumentPageStreamPreviewQuery:v,useDocumentAvailableControllersListQuery:f,useDocumentAvailableTemplatesListQuery:y,useDocumentPageSnippetChangeMainDocumentMutation:b,useDocumentPageSnippetAreaBlockRenderQuery:x,useDocumentRenderletRenderQuery:j,useDocumentReplaceContentMutation:w,useDocumentsListAvailableSitesQuery:C,useDocumentUpdateSiteMutation:S,useDocumentDeleteSiteMutation:T,useDocumentGetSiteQuery:I,useDocumentAddTranslationMutation:k,useDocumentDeleteTranslationMutation:E,useDocumentGetTranslationsQuery:D,useDocumentGetTranslationParentByLanguageQuery:N,useDocumentGetTreeQuery:P}=r},98247(e,t,i){"use strict";i.d(t,{Pf:()=>l,aP:()=>a,qD:()=>o});var r=i(46881);let n=(0,i(88605).createSlice)({name:"document-draft-error",initialState:{failedDraftIds:[]},reducers:{addFailedDraftId:(e,t)=>{e.failedDraftIds.includes(t.payload)||e.failedDraftIds.push(t.payload)},removeFailedDraftId:(e,t)=>{e.failedDraftIds=e.failedDraftIds.filter(e=>e!==t.payload)}}}),{addFailedDraftId:l,removeFailedDraftId:a}=n.actions,o=(e,t)=>e["document-draft-error"].failedDraftIds.includes(t);n.reducer,(0,r.injectSliceWithState)(n)},23898(e,t,i){"use strict";i.d(t,{i:()=>a,o:()=>l});var r=i(46881),n=i(47867);let l=e=>({markDocumentEditablesAsModified:(t,i)=>{var r,n,l;let a;r=t,n=i.payload,l=e=>{var t;return(t=e).modified=!0,t.changes={...t.changes,documentEditable:!0},e},void 0!==(a=e.getSelectors().selectById(r,n))&&(r.entities[n]=l({...a}))}}),a=(e,t,i)=>{let l=(0,r.useAppDispatch)(),[,a]=(0,n.useTransition)();return{markDocumentEditablesAsModified:()=>{var r;null!=t&&null!=(r=t.changes)&&r.documentEditable||a(()=>{l(i(e))})}}}},65115(e,t,i){"use strict";i.d(t,{Q:()=>a,Y:()=>l});var r=i(46881),n=i(35864);let l=e=>{let t=(t,i,r)=>{let n=e.getSelectors().selectById(t,i);void 0===n?console.error(`Item with id ${i} not found`):t.entities[i]=r({...n})},i=e=>{e.modified=!0,e.changes={...e.changes,settingsData:!0}};return{setSettingsData:(e,r)=>{t(e,r.payload.id,e=>{let{settingsData:t}=r.payload;return(0,n.isUndefined)(t)||(e.settingsData={...t},i(e)),e})},updateSettingsData:(e,r)=>{t(e,r.payload.id,e=>{let{settingsData:t}=r.payload;return(0,n.isUndefined)(t)||(e.settingsData={...e.settingsData,...t},i(e)),e})}}},a=e=>{let{id:t,draft:i,setSettingsDataAction:n,updateSettingsDataAction:l}=e,a=(0,r.useAppDispatch)();return{settingsData:null==i?void 0:i.settingsData,setSettingsData:e=>{a(n({id:t,settingsData:e}))},updateSettingsData:e=>{a(l({id:t,settingsData:e}))}}}},15156(e,t,i){"use strict";i.d(t,{S:()=>f});var r=i(46881),n=i(29376),l=i(47867),a=i(40331),o=i(76359),s=i(95674),d=i(63364),c=i(10600),u=i(92634),p=i(50034),m=i(98247),g=i(23898),h=i(26280),v=i(65115);let f=e=>{let t=(0,r.useAppSelector)(t=>(0,n.ei)(t,e)),[i,f]=(0,l.useState)(!0),y=(0,d.Lt)(c.K["Document/Editor/TypeRegistry"]),b=(0,r.useAppSelector)(t=>(0,m.qD)(t,e));(0,l.useEffect)(()=>{void 0!==t||b?f(!1):f(!0)},[t]);let x=(0,o.L)(e,n.vD,n.$B),j=(0,a.I)(e,t,n.vb,n.HL,n.hw,n.Kk),w=(0,s.z)(e,t,n.Vu,n.B8,n.x,n.VN,n.zE),C=(0,u.JX)(e,t,n.K5),S=(0,h.cY)(e,n._5),T=(0,p.D)(e,n.T2,n.Up),I=(0,g.i)(e,t,n.D3),k=(0,v.Q)({id:e,draft:t,setSettingsDataAction:n.C4,updateSettingsDataAction:n.lY}),E=(null==t?void 0:t.type)===void 0?void 0:y.get(t.type)??y.get("document");return{isLoading:i,isError:b,document:t,editorType:E,...x,...j,...w,...C,...I,...S,...T,...k}}},75091(e,t,i){"use strict";i.d(t,{$:()=>d});var r=i(41630),n=i(55638),l=i(59385),a=i(29376);i(58042);var o=i(75023),s=i(46096);let d=()=>{let e=r.M_.dispatch,[t]=(0,o.vA)();return{openDocument:async function(e){let{config:t}=e,{element:i}=(0,s.qH)();await i.openDocument(t.id)},executeDocumentTask:async(i,r,o)=>{let s=t({id:i,body:{data:{task:r}}});s.catch(e=>{(0,n.Ay)(new n.hD(e))});try{e((0,l.setNodeLoadingInAllTree)({nodeId:String(i),elementType:"document",loading:!0}));let t=await s;if(void 0!==t.error){e((0,l.setNodeLoadingInAllTree)({nodeId:String(i),elementType:"document",loading:!1})),(0,n.Ay)(new n.hD(t.error)),null==o||o();return}"unpublish"===r&&e((0,a.Up)({id:i})),"publish"===r&&e((0,a.T2)({id:i})),("unpublish"===r||"publish"===r)&&e((0,l.setNodePublished)({nodeId:String(i),elementType:"document",isPublished:"publish"===r})),e((0,l.setNodeLoadingInAllTree)({nodeId:String(i),elementType:"document",loading:!1})),null==o||o()}catch(e){(0,n.Ay)(new n.$g(e.message))}}}}},79246(e,t,i){"use strict";i.d(t,{v:()=>l});var r=i(46881),n=i(84210);let l=()=>{let e=(0,r.useAppDispatch)();return{context:(0,r.useAppSelector)(e=>(0,n.xo)(e,"document")),setContext:function(t){e((0,n.My)({type:"document",config:t}))},removeContext:function(){e((0,n.$1)("document"))}}}},90583(e,t,i){"use strict";i.d(t,{u:()=>n});var r=i(46766);let n=e=>{let{data:t}=(0,r.Xb)({excludeMainSite:(null==e?void 0:e.excludeMainSite)??!1}),i=e=>{var i;return(null==t||null==(i=t.items)?void 0:i.filter(t=>e.includes(t.id)))??[]};return{getSiteById:e=>{var i;return null==t||null==(i=t.items)?void 0:i.find(t=>t.id===e)},getAllSites:()=>(null==t?void 0:t.items)??[],getSitesByIds:i,getRemainingSites:(e,r)=>{let n=void 0!==r&&r.length>0?i(r):null==t?void 0:t.items;return(null==n?void 0:n.filter(t=>!e.includes(t.id)))??[]}}}},13366(e,t,i){"use strict";i.d(t,{U:()=>d});var r=i(31635),n=i(62446),l=i(10600),a=i(46096),o=i(35864),s=i(38921);class d{validateRequiredFields(e){try{let{document:i}=(0,a.qH)();if(!i.isIframeAvailable(e))return{isValid:!0,requiredFields:[]};let r=i.getIframeApi(e),n=i.getIframeDocument(e),l=r.documentEditable.getEditableDefinitions(),d=[];for(let e of l)(0,s.k8)(e.name,n);for(let e of l){var t;let i=this.documentEditableRegistry.getDynamicType(e.type);if((0,o.isNil)(i)||!i.hasRequiredConfig(e))continue;let l=null==(t=r.documentEditable.getValue(e.name))?void 0:t.data;if(!i.validateRequired(l,e)){let t=(0,o.isEmpty)(e.name)?e.realName:e.name;d.push(t),(0,s.sZ)(e.name,n)}}return{isValid:0===d.length,requiredFields:d}}catch(t){return console.warn(`Error validating required fields for document ${e}:`,t),{isValid:!0,requiredFields:[]}}}constructor(e){this.documentEditableRegistry=e}}d=(0,r.Cg)([(0,n.injectable)(),(0,r.Qj)(0,(0,n.inject)(l.K["DynamicTypes/DocumentEditableRegistry"])),(0,r.Sn)("design:type",Function),(0,r.Sn)("design:paramtypes",["u"y,D7:()=>f,Gy:()=>b});var r,n=i(41630),l=i(75023),a=i(29376),o=i(59385),s=i(46096),d=i(79472),c=i(35864),u=i(63364),p=i(10600),m=i(26962),g=i(68622),h=i(60124),v=i(3416),f=((r={}).Version="version",r.AutoSave="autoSave",r.Publish="publish",r.Save="save",r.Unpublish="unpublish",r);class y{static getInstance(e){return this.instances.has(e)||this.instances.set(e,new y(e)),this.instances.get(e)}static cleanup(e){this.instances.delete(e)}onRunningTaskChange(e){return this.taskCallbacks.add(e),()=>this.taskCallbacks.delete(e)}onErrorChange(e){return this.errorCallbacks.add(e),()=>this.errorCallbacks.delete(e)}getRunningTask(){return this.runningTask}async executeSave(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2];if("autoSave"===e){let e=n.M_.getState(),t=(0,a.ei)(e,this.documentId);if(!(0,d.o)(null==t?void 0:t.permissions,"save"))return}if(null!=this.runningTask){if("autoSave"===e||"autoSave"!==this.runningTask)return;this.queuedTask={task:e,onFinish:t};return}await this.performSave(e,t,i)}async performSave(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2];u.kL.get(p.K.debouncedFormRegistry).flushByTag((0,m.n)(this.documentId)),this.setRunningTask(e);try{let l=await this.saveDocument(e,i);if(l.success){var r;n.M_.dispatch((0,a._5)({id:this.documentId,draftData:(null==(r=l.data)?void 0:r.draftData)??null})),"publish"===e&&n.M_.dispatch((0,o.setNodePublished)({nodeId:String(this.documentId),elementType:"document",isPublished:!0}));let i={identifier:{type:v.m["document:editor:post-update"],id:String(this.documentId)},payload:{id:this.documentId,task:e,updatedData:l.data,responseData:l.data}};h.B.publish(i),null==t||t()}else throw l.error}catch(t){throw console.error(`Save failed for document ${this.documentId}:`,t),this.errorCallbacks.forEach(i=>{i(t,e)}),t}finally{this.setRunningTask(void 0),await this.executeQueuedTask()}}async executeQueuedTask(){if(!(0,c.isUndefined)(this.queuedTask)){let{task:e,onFinish:t}=this.queuedTask;this.queuedTask=void 0,await this.performSave(e,t)}}setRunningTask(e){this.runningTask=e,this.taskCallbacks.forEach(t=>{t(e)})}getEditableData(){try{let{document:e}=(0,s.qH)();if(!e.isIframeAvailable(this.documentId))return{};let t=e.getIframeApi(this.documentId),i=t.documentEditable.getValues(!0);return Object.fromEntries(Object.entries(i).filter(e=>{let[i]=e;return!t.documentEditable.getInheritanceState(i)}))}catch(e){return console.warn(`Could not get editable data for document ${this.documentId}:`,e),{}}}buildUpdateData(){var e,t,i;let r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"autoSave",l=!(arguments.length>1)||void 0===arguments[1]||arguments[1],o=n.M_.getState(),s=(0,a.ei)(o,this.documentId);if((0,c.isNil)(s))throw Error(`Document ${this.documentId} not found in state`);let d={};if(null==(e=s.changes)?void 0:e.properties){let e=null==(i=s.properties)?void 0:i.map(e=>{let{rowId:t,...i}=e;if("object"==typeof i.data){var r;return{...i,data:(null==i||null==(r=i.data)?void 0:r.id)??null}}return i});d.properties=null==e?void 0:e.filter(e=>!e.inherited)}(0,c.isNil)(null==(t=s.changes)?void 0:t.settingsData)||(0,c.isNil)(s.settingsData)||(d.settingsData=s.settingsData);let m=this.getEditableData();Object.keys(m).length>0&&(d.editableData=m),d.task=r,d.useDraftData=l;let h=u.kL.get(p.K["Document/ProcessorRegistry/SaveDataProcessor"]),v=new g.S(this.documentId,r,d);return h.executeProcessors(v),v.updateData}async saveDocument(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"autoSave",t=!(arguments.length>1)||void 0===arguments[1]||arguments[1],i=this.buildUpdateData(e,t),r=await n.M_.dispatch(l.FH.endpoints.documentUpdateById.initiate({id:this.documentId,body:{data:i}}));return(0,c.isNil)(r.error)?{success:!0,data:r.data}:(console.error(`Failed to save document ${this.documentId}:`,r.error),{success:!1,error:r.error})}constructor(e){this.documentId=e,this.taskCallbacks=new Set,this.errorCallbacks=new Set}}y.instances=new Map;let b=new class{async saveDocument(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"autoSave",i=y.getInstance(e);await i.executeSave(t)}};i(13366)},68622(e,t,i){"use strict";i.d(t,{S:()=>o,c:()=>s});var r=i(31635),n=i(62446),l=i(32234),a=i(66112);class o extends a.s{constructor(e,t,i){super(i),this.documentId=e,this.saveTask=t,this.updateData=i}}class s extends l.k{}s=(0,r.Cg)([(0,n.injectable)()],s)},26962(e,t,i){"use strict";i.d(t,{n:()=>r});let r=e=>`document-${e}`},42669(e,t,i){"use strict";i.d(t,{n:()=>o});var r=i(68153),n=i(79472),l=i(63993),a=i(17388);let o=e=>{let{getStoredNode:t,getNodeTask:i}=(0,l.x)(e),{isTreeActionAllowed:o}=(0,a.H)();return{isPasteHidden:(l,a)=>{let s=t(),d=i();return!(o(r.o.Paste)&&void 0!==s&&void 0!==d&&(void 0===l||(0,n.o)(l.permissions,"create")))||void 0!==a&&d!==a||"asset"===e&&(null==l?void 0:l.type)!=="folder"||"cut"===d&&void 0!==l&&String(l.id)===String(s.id)}}}},63155(e,t,i){"use strict";i.d(t,{I:()=>l});var r=i(47867),n=i(64165);let l=()=>{let e=(0,r.useContext)(n.u);if(void 0===e)throw Error("useTypeSelect must be used within a TypeSelectProvider");return e}},26280(e,t,i){"use strict";i.d(t,{Yu:()=>o,cY:()=>s,u0:()=>a});var r=i(46881),n=i(47867),l=i(35864);let a="isAutoSaveDraftCreated",o=e=>({setDraftData:(t,i)=>{var r,n,o;let s;r=t,n=i.payload.id,o=e=>{var t;return(0,l.isNil)(e.draftData)&&(null==(t=i.payload.draftData)?void 0:t.isAutoSave)===!0&&(e.changes={...e.changes,[a]:!0}),e.draftData=i.payload.draftData,e},void 0!==(s=e.getSelectors().selectById(r,n))&&(r.entities[n]=o({...s}))}}),s=(e,t)=>{let i=(0,r.useAppDispatch)(),[,l]=(0,n.useTransition)();return{setDraftData:r=>{l(()=>{i(t({id:e,draftData:r}))})}}}},40331(e,t,i){"use strict";i.d(t,{I:()=>a,u:()=>l});var r=i(46881),n=i(55638);let l=e=>{let t=(t,i,r)=>{let l=e.getSelectors().selectById(t,i);void 0===l?(0,n.Ay)(new n.$g(`Item with id ${i} not found`)):t.entities[i]=r({...l})},i=e=>{e.modified=!0,e.changes={...e.changes,properties:!0}};return{addProperty:(e,r)=>{t(e,r.payload.id,e=>(e.properties=[...e.properties??[],r.payload.property],i(e),e))},removeProperty:(e,r)=>{t(e,r.payload.id,e=>(e.properties=(e.properties??[]).filter(e=>e.key!==r.payload.property.key),i(e),e))},updateProperty:(e,r)=>{t(e,r.payload.id,e=>(e.properties=(e.properties??[]).map((t,n)=>t.key===r.payload.key&&t.inherited===r.payload.property.inherited?(i(e),r.payload.property):t),e))},setProperties:(e,i)=>{t(e,i.payload.id,e=>(e.properties=i.payload.properties,e))}}},a=(e,t,i,n,l,a)=>{let o=(0,r.useAppDispatch)();return{properties:null==t?void 0:t.properties,updateProperty:(t,r)=>{o(i({id:e,key:t,property:r}))},addProperty:t=>{o(n({id:e,property:t}))},removeProperty:t=>{o(l({id:e,property:t}))},setProperties:t=>{o(a({id:e,properties:t}))}}}},50034(e,t,i){"use strict";i.d(t,{D:()=>a,b:()=>l});var r=i(46881),n=i(47867);let l=e=>{let t=(t,i,r)=>{let n=e.getSelectors().selectById(t,i);void 0!==n&&(t.entities[i]=r({...n}))};return{publishDraft:(e,i)=>{t(e,i.payload.id,e=>(e.published=!0,e))},unpublishDraft:(e,i)=>{t(e,i.payload.id,e=>(e.published=!1,e))}}},a=(e,t,i)=>{let l=(0,r.useAppDispatch)(),[,a]=(0,n.useTransition)();return{publishDraft:()=>{a(()=>{l(t({id:e}))})},unpublishDraft:()=>{a(()=>{l(i({id:e}))})}}}},95674(e,t,i){"use strict";i.d(t,{H:()=>l,z:()=>a});var r=i(46881),n=i(55638);let l=e=>{let t=(t,i,r)=>{let l=e.getSelectors().selectById(t,i);void 0===l?(0,n.Ay)(new n.$g(`Item with id ${i} not found`)):t.entities[i]=r({...l})},i=e=>{e.modified=!0,e.changes={...e.changes,schedules:!0}};return{addSchedule:(e,r)=>{t(e,r.payload.id,e=>(e.schedules=[...e.schedules??[],r.payload.schedule],i(e),e))},removeSchedule:(e,r)=>{t(e,r.payload.id,e=>(e.schedules=(e.schedules??[]).filter(e=>e.id!==r.payload.schedule.id),i(e),e))},updateSchedule:(e,r)=>{t(e,r.payload.id,e=>(e.schedules=(e.schedules??[]).map((t,n)=>t.id===r.payload.schedule.id?(i(e),r.payload.schedule):t),e))},setSchedules:(e,i)=>{t(e,i.payload.id,e=>(e.schedules=i.payload.schedules,e))},resetSchedulesChanges:(e,i)=>{t(e,i.payload,e=>{if(void 0===e.changes.schedules)return e;let{schedules:t,...i}=e.changes;return e.changes=i,e.modified=Object.keys(e.changes).length>0,e})}}},a=(e,t,i,n,l,a,o)=>{let s=(0,r.useAppDispatch)();return{schedules:null==t?void 0:t.schedules,updateSchedule:t=>{s(i({id:e,schedule:t}))},addSchedule:t=>{s(n({id:e,schedule:t}))},removeSchedule:t=>{s(l({id:e,schedule:t}))},setSchedules:t=>{s(a({id:e,schedules:t}))},resetSchedulesChanges:()=>{s(o(e))}}}},92634(e,t,i){"use strict";i.d(t,{JX:()=>a,Ne:()=>l,nd:()=>n});var r=i(46881);let n={activeTab:null},l=e=>({setActiveTab:(t,i)=>{var r,n,l;let a,{id:o,activeTab:s}=i.payload;r=t,n=o,l=e=>(e.activeTab=s,e),void 0===(a=e.getSelectors().selectById(r,n))?console.error(`Item with id ${n} not found`):r.entities[n]=l({...a})}}),a=(e,t,i)=>{let n=(0,r.useAppDispatch)();return{...t,setActiveTab:t=>n(i({id:e,activeTab:t}))}}},76359(e,t,i){"use strict";i.d(t,{L:()=>a,P:()=>l});var r=i(46881),n=i(55638);let l=e=>{let t=(t,i,r)=>{let l=e.getSelectors().selectById(t,i);void 0===l?(0,n.Ay)(new n.$g(`Item with id ${i} not found`)):t.entities[i]=r({...l})};return{resetChanges:(e,i)=>{t(e,i.payload,e=>(e.changes={},e.modifiedCells={},e.modified=!1,e))},setModifiedCells:(e,i)=>{t(e,i.payload.id,e=>(e.modifiedCells={...e.modifiedCells,[i.payload.type]:i.payload.modifiedCells},e))}}},a=(e,t,i)=>{let n=(0,r.useAppDispatch)();return{removeTrackedChanges:()=>{n(t(e))},setModifiedCells:(t,r)=>{n(i({id:e,type:t,modifiedCells:r}))}}}},34992(e,t,i){"use strict";function r(e,t,i){if(e[i]=t,void 0!==e.fullPath){let i=e.fullPath.split("/");i[i.length-1]=t,e.fullPath=i.join("/")}if(void 0!==e.path){let i=e.path.split("/");i[i.length-1]=t,e.path=i.join("/")}}i.d(t,{$:()=>r})},57697(e,t,i){"use strict";i.d(t,{f:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{getComponent(e,t){return this.getDynamicType(e).getBatchEditComponent(t)}}a=(0,r.Cg)([(0,n.injectable)()],a)},67574(e,t,i){"use strict";i.d(t,{I:()=>n});var r=i(22414);class n extends r.H{getEditableType(){return"areablock"}getElementSelector(){return`.pimcore_area_entry[data-name="${this.editableName}"]`}getElementType(e){return e.getAttribute("type")}setElementType(e,t){e.setAttribute("type",t)}getAreablockValue(){return this.ensureAllElementKeys().map(e=>({key:this.getElementKey(e)??"",type:this.getElementType(e)??"",hidden:this.isElementHidden(e)}))}isElementHidden(e){return"true"===e.getAttribute("data-hidden")}setElementHidden(e,t){t?e.setAttribute("data-hidden","true"):e.removeAttribute("data-hidden")}toggleElementHidden(e){let t=this.isElementHidden(e);return this.setElementHidden(e,!t),!t}applyStylestoAreaEntries(e){this.queryElements().forEach(t=>{t.classList.add(e)})}}},97844(e,t,i){"use strict";i.d(t,{So:()=>s,ZV:()=>n,th:()=>o,uk:()=>a,w9:()=>l});var r=i(35864);let n="Available Areas",l="Uncategorized";function a(e){let t=e.filter(e=>"areablock"===e.type);if(0===t.length)return{};let i={},a=(e,t,n)=>{(0,r.isNil)(i[e])&&(i[e]=[]),t.forEach(t=>{i[e].push({areablockName:n.name,type:t.type,name:t.name,description:t.description,icon:t.icon})})},o=t.some(e=>{let t=s.getGroupedAreaTypes(e.config);return!(0,r.isArray)(t)});return t.forEach(e=>{let t=s.getGroupedAreaTypes(e.config);(0,r.isArray)(t)?a(o?l:n,t,e):Object.entries(t).forEach(t=>{let[i,r]=t;a(i,r,e)})}),i}let o={filterEditableNames(e,t,i){let r=`${t}:${i}.`;return e.filter(e=>e.startsWith(r))},elementsToAreablockValue:e=>e.map(e=>{let t=e.getAttribute("key")??"";return{key:t,type:e.getAttribute("type")??"",hidden:"true"===e.getAttribute("data-hidden")}}),swapElements(e,t,i){let r=[...e],n=r[t];return r[t]=r[i],r[i]=n,r}},s={getEffectiveLimit:e=>(null==e?void 0:e.limit)??1e6,isReloadMode:e=>!!(null==e?void 0:e.reload),isLimitReached:(e,t)=>!((0,r.isNil)(t)||(0,r.isUndefined)(t))&&e>=t,canMoveUp:e=>e>0,canMoveDown:(e,t)=>e(null==e?void 0:e.types)??[],isTypeAllowed:(e,t)=>!!(0,r.isNil)(null==e?void 0:e.allowed)||0===e.allowed.length||e.allowed.includes(t),getGroupedAreaTypes(e){let t=(null==e?void 0:e.types)??[],i=null==e?void 0:e.group;if((0,r.isNil)(i)||0===Object.keys(i).length)return t;let n={};return Object.entries(i).forEach(e=>{let[i,l]=e,a=[...new Set(l)].map(e=>t.find(t=>t.type===e)).filter(e=>!(0,r.isNil)(e));a.length>0&&(n[i]=a)}),n}}},96524(e,t,i){"use strict";i.d(t,{M:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{notifyDocumentReady(e,t){this.getDynamicTypes().forEach(i=>{i.onDocumentReady(e,t)})}}a=(0,r.Cg)([(0,n.injectable)()],a)},54719(e,t,i){"use strict";i.d(t,{P:()=>l});var r=i(44241),n=i(83678);let l=(0,r.createStyles)(e=>{let{token:t}=e;return{dropzone:{height:n.lk.HEIGHT,borderRadius:t.borderRadius,backgroundColor:t.colorPrimary,opacity:0,'&[data-pimcore-drag-state="dragging"]':{opacity:.1},'&[data-pimcore-drag-state="active"]':{opacity:.6}},dropzoneDragActive:{opacity:.1},dropzoneHover:{opacity:.6},dropzoneRejected:{opacity:.6,backgroundColor:t.colorError},dragActive:{opacity:"0.3 !important",backgroundColor:`${t.colorPrimaryBg} !important`,"& [data-pimcore-editable-dropzone]":{visibility:"hidden"}}}})},83678(e,t,i){"use strict";i.d(t,{Le:()=>n,Sh:()=>l,Ze:()=>a,lA:()=>r,lk:()=>o});let r={DROPZONE:"pimcore-editable-dropzone",DROPZONE_CONTAINER:"pimcore-editable-dropzone-container"},n={DROPZONE:`.${r.DROPZONE}`,DROPZONE_CONTAINER:`.${r.DROPZONE_CONTAINER}`},l={DATA_NAME:"data-name",DATA_EDITABLE_DROPZONE:"data-pimcore-editable-dropzone",DATA_DROPZONE_ID:"data-pimcore-dropzone-id",DATA_DROPZONE_INDEX:"data-pimcore-dropzone-index",DATA_DRAG_STATE:"data-pimcore-drag-state",DATA_FIRST_DROPZONE:"data-pimcore-first-dropzone"},a={ACTIVE:"active",DRAGGING:"dragging"},o={ID_PREFIX:"pimcore-dropzone-",HEIGHT:"16px"}},36249(e,t,i){"use strict";i.d(t,{D_:()=>o,Ne:()=>c,T5:()=>l,h5:()=>a,qR:()=>s,z_:()=>d});var r=i(35864),n=i(83678);let l=(e,t)=>{let i=document.createElement("div");return i.className=n.lA.DROPZONE_CONTAINER,i.setAttribute(n.Sh.DATA_EDITABLE_DROPZONE,e??""),!0===t&&i.setAttribute(n.Sh.DATA_FIRST_DROPZONE,"true"),i.style.height=n.lk.HEIGHT,i},a=(e,t)=>{document.querySelectorAll(n.Le.DROPZONE_CONTAINER).forEach(i=>{let l=i.getAttribute(n.Sh.DATA_EDITABLE_DROPZONE);t?l===e?i.style.visibility="":!(0,r.isNull)(l)&&!(0,r.isNull)(e)&&l.startsWith(e+":")&&(i.style.visibility="hidden"):i.style.visibility=""})},o=(e,t,i)=>{(0,r.isNull)(e)||e.querySelectorAll(n.Le.DROPZONE).forEach(e=>{let r=e.getAttribute(n.Sh.DATA_DROPZONE_ID);i?r===t?e.setAttribute(n.Sh.DATA_DRAG_STATE,n.Ze.ACTIVE):e.setAttribute(n.Sh.DATA_DRAG_STATE,n.Ze.DRAGGING):e.removeAttribute(n.Sh.DATA_DRAG_STATE)})},s=(e,t)=>{(0,r.isNull)(e)||e.querySelectorAll(`[${n.Sh.DATA_EDITABLE_DROPZONE}="${t}"]`).forEach(e=>{e.remove()})},d=(e,t)=>{var i;let a;if(0===e.length){let e=document.querySelector(`[data-name="${t}"]`);if(!(0,r.isNil)(e)&&(0,r.isNil)(e.querySelector(`[${n.Sh.DATA_EDITABLE_DROPZONE}="${t}"]`))){let i=l(t);e.appendChild(i)}return}let o=e[0];if((null==(a=o.previousElementSibling)?void 0:a.getAttribute(n.Sh.DATA_EDITABLE_DROPZONE))!==t){let e=l(t,!0);null==(i=o.parentNode)||i.insertBefore(e,o)}e.forEach(e=>{if(null===e.querySelector(`[${n.Sh.DATA_EDITABLE_DROPZONE}="${t}"]`)){let i=l(t);e.appendChild(i)}})},c=(e,t)=>{if((0,r.isNull)(e)||(0,r.isNull)(t))return;let i=e.querySelector(`[${n.Sh.DATA_EDITABLE_DROPZONE}="${t}"][${n.Sh.DATA_FIRST_DROPZONE}="true"]`);null!==i&&i.remove()}},80399(e,t,i){"use strict";i.d(t,{Z:()=>l});var r=i(47867),n=i(11587);let l=()=>{let e=(0,r.useRef)(null),t=(0,r.useRef)(null),i=(0,r.useRef)(null),l=(0,r.useRef)(void 0),a=(0,r.useRef)(!1),o=(0,r.useRef)(!0),s=e=>({width:Math.max(e.width,n.Yh),height:Math.max(e.height,n.fw)});return{getSmartDimensions:(0,r.useCallback)(r=>{if(l.current!==r&&(l.current=r,i.current=null),void 0===r)return o.current||(o.current=!0),a.current?t.current:null;if(null!==i.current)return i.current;let n=a.current||o.current?o.current?t.current:e.current:null;return a.current=!0,o.current=!1,i.current=n,n},[]),handlePreviewResize:i=>{let r=s(i);e.current=r,t.current=r},handleAssetTargetResize:e=>{let i=s(e);o.current&&(t.current=i)}}}},11587(e,t,i){"use strict";i.d(t,{Yh:()=>n,fw:()=>l,ui:()=>a,vX:()=>o});var r=i(35864);let n=150,l=100,a=100,o=(e,t)=>e?{width:void 0,height:void 0}:{width:(0,r.isNil)(null==t?void 0:t.width)?n:Math.max(t.width,n),height:(0,r.isNil)(null==t?void 0:t.height)?l:Math.max(t.height,l)}},22414(e,t,i){"use strict";i.d(t,{H:()=>n});var r=i(35864);class n{findContainer(e){return(0,r.isNil)(null==e?void 0:e.current)?document.querySelector(`[data-name="${this.editableName}"][data-type="${this.getEditableType()}"]`):e.current}getContainer(){return this.container}getEditableName(){return this.editableName}getRealEditableName(){var e;return(null==(e=this.container)?void 0:e.getAttribute("data-real-name"))??this.editableName}queryElements(){return(0,r.isNil)(this.container)?[]:Array.from(this.container.querySelectorAll(this.getElementSelector()))}findElementIndex(e){return this.queryElements().indexOf(e)}findElementByKey(e){return this.queryElements().find(t=>this.getElementKey(t)===e)??null}getElementKey(e){return e.getAttribute("key")}setElementKey(e,t){e.setAttribute("key",t)}parseElementKey(e){return parseInt(this.getElementKey(e)??"0",10)}calculateNextKey(){let e=this.queryElements();if(0===e.length)return 1;let t=0;for(let i of e){let e=this.parseElementKey(i);e>t&&(t=e)}return t+1}ensureAllElementKeys(){let e=this.queryElements();return e.forEach(e=>{let t=this.getElementKey(e);((0,r.isNil)(t)||""===t)&&this.setElementKey(e,this.calculateNextKey().toString())}),e}constructor(e,t){this.editableName=e,this.container=this.findContainer(t)}}},2586(e,t,i){"use strict";i.d(t,{i:()=>a});var r=i(63364),n=i(10600),l=i(35864);let a=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"JPEG";return o({...e,assetType:t,defaultMimeType:i})},o=e=>{let{assetId:t,width:i,height:a,containerWidth:o,thumbnailSettings:s,thumbnailConfig:d,assetType:c,defaultMimeType:u="JPEG"}=e,p=r.kL.get(n.K["Asset/ThumbnailService"]);if((0,l.isString)(d))return p.getThumbnailUrl({assetId:t,assetType:c,thumbnailName:d,...s});if((0,l.isObject)(d)){let e={assetId:t,assetType:c,dynamicConfig:d,...s};return p.getThumbnailUrl(e)}if((0,l.isNil)(i)&&(0,l.isNil)(a)&&o<=0)return;let{thumbnailWidth:m,thumbnailHeight:g,resizeMode:h}=(e=>{let{width:t,height:i,containerWidth:r}=e;return void 0===t&&void 0===i?{thumbnailWidth:r,resizeMode:"scaleByWidth"}:void 0!==t?{thumbnailWidth:"string"==typeof t?parseInt(t):t,resizeMode:"scaleByWidth"}:void 0!==i?{thumbnailHeight:"string"==typeof i?parseInt(i):i,resizeMode:"scaleByHeight"}:{resizeMode:"none"}})({width:i,height:a,containerWidth:o});if(void 0===m&&void 0===g)return;let v={frame:!1,resizeMode:h,mimeType:u,...s};return void 0!==m?p.getThumbnailUrl({assetId:t,assetType:c,width:m,height:g,...v}):void 0!==g?p.getThumbnailUrl({assetId:t,assetType:c,width:0,height:g,...v}):void 0}},40701(e,t,i){"use strict";i.d(t,{b:()=>r});let r=e=>Object.fromEntries(e.map(e=>[e.name,{type:e.type,data:e.data??null}]))},78785(e,t,i){"use strict";i.d(t,{r:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{getComponent(e,t){return this.getDynamicType(e).getFieldFilterComponent(t)}}a=(0,r.Cg)([(0,n.injectable)()],a)},97536(e,t,i){"use strict";i.d(t,{H:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{getGridCellComponent(e,t){return this.getDynamicType(e).getGridCellComponent(t)}}a=(0,r.Cg)([(0,n.injectable)()],a)},61379(e,t,i){"use strict";i.d(t,{a:()=>o});var r=i(31635),n=i(63364),l=i(10600),a=i(62446);class o{getGridCellComponent(e){return n.kL.get(l.K["DynamicTypes/GridCellRegistry"]).getGridCellComponent(this.dynamicTypeGridCellType.id,e)}getFieldFilterComponent(e){return n.kL.get(l.K["DynamicTypes/FieldFilterRegistry"]).getComponent(this.dynamicTypeFieldFilterType.id,e)}}o=(0,r.Cg)([(0,a.injectable)()],o)},40810(e,t,i){"use strict";i.d(t,{f:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{}a=(0,r.Cg)([(0,n.injectable)()],a)},7402(e,t,i){"use strict";i.d(t,{J:()=>o});var r=i(31635),n=i(63364),l=i(10600),a=i(62446);class o{getGridCellComponent(e){return n.kL.get(l.K["DynamicTypes/GridCellRegistry"]).getGridCellComponent(this.dynamicTypeGridCellType.id,e)}getFieldFilterComponent(e){return n.kL.get(l.K["DynamicTypes/FieldFilterRegistry"]).getComponent(this.dynamicTypeFieldFilterType.id,e)}constructor(){this.iconName=void 0}}o=(0,r.Cg)([(0,a.injectable)()],o)},20103(e,t,i){"use strict";i.d(t,{i:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{getTypeSelectionTypes(){let e=new Map;return this.dynamicTypes.forEach((t,i)=>{t.visibleInTypeSelection&&e.set(i,t)}),e}}a=(0,r.Cg)([(0,n.injectable)()],a)},49546(e,t,i){"use strict";i.d(t,{B:()=>n.A,H:()=>r.A});var r=i(61908),n=i(73994)},73994(e,t,i){"use strict";i.d(t,{A:()=>l});var r=i(47867),n=i(61908);let l=()=>{let e=(0,r.useContext)(n.F);if(void 0===e)throw Error("useClassificationStore must be used within a ClassificationStoreProvider");return{isOpenModal:e.isOpen,openModal:e.open,closeModal:e.close,setSearchValue:e.setSearchValue,getSearchValue:e.getSearchValue,currentLayoutData:e.currentLayoutData,updateCurrentLayoutData:e.setCurrentLayoutData}}},96511(e,t,i){"use strict";i.d(t,{X:()=>n});var r,n=((r={}).Collection="collection",r.Group="group",r.GroupByKey="group-by-key",r)},44475(e,t,i){"use strict";i.d(t,{_:()=>v});var r=i(47867),n=i(21429),l=i(29740),a=i(7814),o=i(35864),s=i(56789),d=i(31091),c=i(86608),u=i(46096),p=i(81624);let m=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=(0,c.q)();return{openModal:(0,r.useCallback)(i=>{if((0,p.GZ)()&&(0,u.BB)()){let{element:t}=(0,u.qH)();t.openLinkModal({value:i,options:e});return}t.openModal(i,e)},[t,e]),closeModal:(0,r.useCallback)(()=>{t.closeModal()},[t]),isOpen:t.isOpen}};var g=i(8651),h=i.n(g);let v=e=>{let{t}=(0,n.useTranslation)(),{openElement:i}=(0,s.K)(),{PreviewComponent:c}=e,u=e.value??null,{openModal:p}=m({disabled:e.disabled,allowedTypes:e.allowedTypes,allowedTargets:e.allowedTargets,disabledFields:e.disabledFields,onSave:e.onChange}),g=()=>{if(null===u)return;"direct"!==u.linktype||null===u.direct||(0,o.isEmpty)(u.direct)||window.open(u.direct,"_blank");let e=(0,d.Az)(u.internalType??null),t=u.internal??null;"internal"===u.linktype&&null!==e&&null!==t&&i({type:e,id:t}).catch(e=>{console.error("Error while opening element:",e)})},v=()=>{p(u)};return{renderPreview:()=>{if((0,o.isNil)(c))throw Error("PreviewComponent is required");return(0,r.createElement)(c,{className:h()("studio-inherited-overlay",e.className),inherited:e.inherited,textPrefix:e.textPrefix,textSuffix:e.textSuffix,value:u})},renderActions:()=>{let i=[];return null===u||(0,o.isEmpty)(u.fullPath)||i.push((0,r.createElement)(a.m,{key:"open",title:t("open")},(0,r.createElement)(l.K,{icon:{value:"open-folder"},onClick:g,type:"default"}))),!0!==e.disabled?i.push((0,r.createElement)(a.m,{key:"edit",title:t("edit")},(0,r.createElement)(l.K,{icon:{value:"edit"},onClick:v,type:"default"}))):i.push((0,r.createElement)(a.m,{key:"details",title:t("details")},(0,r.createElement)(l.K,{icon:{value:"info-circle"},onClick:v,type:"default"}))),i},openLink:g,showModal:v,value:u}}},31091(e,t,i){"use strict";i.d(t,{Az:()=>o,Cx:()=>l,vZ:()=>n});var r=i(87632);let n=e=>({text:e.text,path:a(e),target:e.target??void 0,parameters:e.parameters,anchor:e.anchor,title:e.title,accesskey:e.accesskey,rel:e.rel,tabindex:e.tabindex,class:e.class}),l=e=>{var t,i,n,l,a,o,d;return{text:e.text??"",linktype:(null==(t=e.path)?void 0:t.textInput)===!0?"direct":"internal",direct:(null==(i=e.path)?void 0:i.textInput)===!0?e.path.fullPath:null,internal:(null==(n=e.path)?void 0:n.textInput)===!0?null:null==(l=e.path)?void 0:l.id,internalType:(null==(a=e.path)?void 0:a.textInput)===!0?null:s((0,r.sv)(String(null==(o=e.path)?void 0:o.type))),fullPath:null==(d=e.path)?void 0:d.fullPath,target:e.target??null,parameters:e.parameters??"",anchor:e.anchor??"",title:e.title??"",accesskey:e.accesskey??"",rel:e.rel??"",tabindex:e.tabindex??"",class:e.class??""}},a=e=>{if("internal"!==e.linktype)return{textInput:!0,fullPath:e.direct??""};{let t=o(e.internalType);return null===t?null:{type:t,id:e.internal??0,fullPath:e.fullPath,subtype:e.internalType??void 0}}},o=e=>"string"==typeof e?(0,r.sv)(e):null,s=e=>"data-object"===e?"object":e??null},44767(e,t,i){"use strict";i.d(t,{l:()=>n});var r,n=((r={}).LOCALIZED_FIELDS="localizedfields",r.OBJECT_BRICKS="objectbricks",r.FIELD_COLLECTIONS="fieldcollections",r.BLOCK="block",r.CLASSIFICATION_STORE="classificationstore",r)},31429(e,t,i){"use strict";i.d(t,{C:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{}a=(0,r.Cg)([(0,n.injectable)()],a)},94902(e,t,i){"use strict";i.d(t,{N:()=>n,s:()=>l});var r=i(19249);let n=(e,t)=>{let i=[];e.forEach(e=>{i.push({id:i.length+1,x:e.left,y:e.top,width:e.width,height:e.height,type:"hotspot",data:e.data,name:e.name})});let n=r.X.marker;return t.forEach(e=>{i.push({id:i.length+1,x:e.left,y:e.top,width:n.width,height:n.height,type:"marker",data:e.data,name:e.name})}),i},l=e=>{let t=[],i=[];return e.forEach(e=>{"hotspot"===e.type?t.push({left:e.x,top:e.y,width:e.width,height:e.height,data:e.data,name:e.name}):"marker"===e.type&&i.push({left:e.x,top:e.y,data:e.data,name:e.name})}),{hotspots:t,marker:i}}},30856(e,t,i){"use strict";i.d(t,{M3:()=>s,gF:()=>d,hu:()=>o,zd:()=>l});var r=i(35864),n=i(87632);let l=e=>{var t,i,r;let n=[],l=[];return null==(t=e.classes)||t.forEach(e=>{"folder"===e.classes?n.push("folder"):l.push(e.classes)}),l.length>0&&n.push("object","variant"),{allowedAssetTypes:(null==(i=e.assetTypes)?void 0:i.map(e=>e.assetTypes))??[],allowedDocumentTypes:(null==(r=e.documentTypes)?void 0:r.map(e=>e.documentTypes))??[],allowedClasses:l.length>0?l:void 0,allowedDataObjectTypes:n.length>0?n:void 0,assetsAllowed:e.assetsAllowed,documentsAllowed:e.documentsAllowed,dataObjectsAllowed:e.objectsAllowed}},a=(e,t)=>!!(0,r.isNil)(e)||0===e.length||e.includes(t),o=(e,t)=>{var i,l,o;if(null===e.data)return!1;let s=(0,n.sv)(e.type);if(null===s)return!1;let d=e.data.type;return("data-object"!==s||"folder"===d||(i=s,l=String(e.data.className),o=t,!!("data-object"!==i||(0,r.isNil)(o.allowedClasses)||0===o.allowedClasses.length||o.allowedClasses.includes(l))))&&("asset"===s?!!t.assetsAllowed:"document"===s?!!t.documentsAllowed:"data-object"===s&&!!t.dataObjectsAllowed)&&("asset"===s?a(t.allowedAssetTypes,d):"data-object"===s?a(t.allowedDataObjectTypes,d):"document"===s&&a(t.allowedDocumentTypes,d))},s=e=>({asset:e.assetsAllowed??!1,document:e.documentsAllowed??!1,object:e.dataObjectsAllowed??!1}),d=e=>({assets:{allowedTypes:e.allowedAssetTypes},documents:{allowedTypes:e.allowedDocumentTypes},objects:{allowedTypes:e.allowedDataObjectTypes,allowedClasses:e.allowedClasses}})},64910(e,t,i){"use strict";i.d(t,{k:()=>c});var r=i(47867),n=i(89507),l=i(35864),a=i.n(l),o=i(21429);let s="edit::",d=(e,t)=>"bool"===e||"columnbool"===e?{type:"checkbox",editable:!0}:"number"===e?{type:"number",editable:!0}:"select"===e?{type:"select",editable:!0,config:{options:(null==t?void 0:t.split(";"))??[]}}:"multiselect"===e?{type:"multi-select",editable:!0,config:{options:(null==t?void 0:t.split(";"))??[]}}:{type:"input",editable:!0},c=(e,t,i,l)=>{let{t:c}=(0,o.useTranslation)(),u=e.map(e=>e.key),p=(0,r.useMemo)(()=>{let t=(0,n.createColumnHelper)(),i=[];for(let r of e)i.push(t.accessor(s+r.key,{header:a().isEmpty(r.label)?void 0:c(String(r.label)),size:r.width??150,meta:d(r.type??"text",r.value)}));return i},[e,c]),m=e=>void 0===e?null:Array.isArray(e)?a().compact(e).join(","):e;return{columnDefinition:p,onUpdateCellData:e=>{let t=[...i??[]];t=t.map((t,i)=>i===e.rowIndex?{...t,data:{...t.data,[e.columnId.replace(s,"")]:m(e.value)}}:t),null==l||l(t)},convertToManyToManyRelationValue:t=>null==t?null:t.map(t=>(t=>{let i={};if(void 0!==t.data)for(let r in t.data){let n=e.find(e=>e.key===r);(null==n?void 0:n.type)==="multiselect"?i[s+r]=a().isEmpty(t.data[r])?[]:a().compact(String(t.data[r]).split(",")):i[s+r]=t.data[r]}return{id:t.element.id,type:t.element.type,subtype:t.element.subtype,isPublished:t.element.isPublished,fullPath:t.element.fullPath,...i}})(t)),convertToAdvancedManyToManyRelationValue:e=>null==e?null:e.map(e=>(e=>{let i={};for(let t of u){let r=s+t;void 0!==e[r]?i[t]=m(e[r]):i[t]=null}return{element:{id:e.id,type:e.type,subtype:e.subtype,isPublished:e.isPublished,fullPath:e.fullPath},data:i,fieldName:t,columns:u}})(e))}}},27653(e,t,i){"use strict";i.d(t,{I:()=>l,x:()=>n});var r=i(18196);let n=e=>(0,r.Po)(e)?"500px":e,l=e=>(0,r.Po)(e)?"250px":e},81276(e,t,i){"use strict";i.d(t,{V:()=>l});var r=i(31635),n=i(62446);class l{}l=(0,r.Cg)([(0,n.injectable)()],l)},25593(e,t,i){"use strict";i.d(t,{o:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{}a=(0,r.Cg)([(0,n.injectable)()],a)},87638(e,t,i){"use strict";i.d(t,{M:()=>l});var r=i(31635),n=i(62446);class l{isAvailableForSelection(e){return!0}constructor(){this.group=null}}l=(0,r.Cg)([(0,n.injectable)()],l)},11387(e,t,i){"use strict";i.d(t,{v:()=>a});var r=i(31635),n=i(62446),l=i(69186);class a extends l.P{}a=(0,r.Cg)([(0,n.injectable)()],a)},61363(e,t,i){"use strict";i.d(t,{C9:()=>l,PD:()=>n,kt:()=>a});var r=i(55638);let n={GRID_CELL:"GRID_CELL",FIELD_FILTER:"FIELD_FILTER",BATCH_EDIT:"BATCH_EDIT"},l={[n.GRID_CELL]:"getGridCellComponent",[n.FIELD_FILTER]:"getFieldFilterComponent",[n.BATCH_EDIT]:"getBatchEditComponent"};class a{resolve(e){let{target:t,dynamicType:i}=e;return this.hasCallable(t,i)||(0,r.Ay)(new r.$g(`DynamicTypeResolver: ${i.id} does not have a callable ${l[t]}`)),e=>i[l[t]].bind(i)(e)}hasCallable(e,t){return void 0!==t[l[e]]&&"function"==typeof t[l[e]]}}},72928(e,t,i){"use strict";i.d(t,{R:()=>s});var r=i(47867),n=i(61363),l=i(87669),a=i(63364),o=i(55638);let s=()=>{let e=(0,r.useContext)(l.i);null==e&&(0,o.Ay)(new o.$g("useDynamicTypeResolver must be used within a DynamicTypeRegistryProvider"));let{serviceIds:t}=e,i=t.map(e=>a.kL.get(e));return{getComponentRenderer:function(e){let{target:t,dynamicTypeIds:r}=e,l=new n.kt;for(let e of r)for(let r of i)if(r.hasDynamicType(e)){let i=r.getDynamicType(e);if(l.hasCallable(t,i))return{ComponentRenderer:l.resolve({target:t,dynamicType:i})}}return{ComponentRenderer:null}},hasType:function(e){let{target:t,dynamicTypeIds:r}=e,l=new n.kt;for(let e of r)for(let r of i)if(r.hasDynamicType(e)){let i=r.getDynamicType(e);if(l.hasCallable(t,i))return!0}return!1},getType:function(e){let{target:t,dynamicTypeIds:r}=e,l=new n.kt;for(let e of r)for(let r of i)if(r.hasDynamicType(e)){let i=r.getDynamicType(e);if(l.hasCallable(t,i))return i}return null}}}},48832(e,t,i){"use strict";i.d(t,{Cy:()=>c,L:()=>s,mv:()=>o,vV:()=>d});var r=i(10600),n=i(63364),l=i(35864),a=i(50094);let o=150,s=e=>{let t=[];return e.forEach(e=>{if((0,l.isNumber)(e.width))return void t.push(e);let i=c(e.type);void 0!==i?t.push({...e,width:i}):t.push({...e,width:o})}),t},d=e=>{var t;let i=null==e||null==(t=e.config)?void 0:t.dataObjectConfig.fieldDefinition,r=(null==e?void 0:e.columns)??null,n=350;return null!==r&&r.forEach(e=>{if((0,l.isNumber)(e.width)){n+=e.width;return}let t={...i,defaultFieldWidth:a.wT},r=c(e.type,t);if(void 0!==r){n+=r;return}n+=o}),n},c=(e,t)=>{let i=(0,n.Lt)(r.K["DynamicTypes/ObjectDataRegistry"]);if(void 0!==e){let r=i.getDynamicType(e,!1);if((null==r?void 0:r.getDefaultGridColumnWidth)!==void 0)return r.getDefaultGridColumnWidth(t)}}},3832(e,t,i){"use strict";i.d(t,{O:()=>a});var r=i(31635),n=i(62446),l=i(55638);class a{register(e){this.has(e.name)&&(0,l.Ay)(new l.$g(`Type with the name "${e.name}" already exists.`)),this.registry[e.name]=e}get(e){return this.has(e)||(0,l.Ay)(new l.$g(`No type with the name "${e}" found`)),this.registry[e]}has(e){return e in this.registry}getAll(){return Object.values(this.registry)}constructor(){this.registry={}}}a=(0,r.Cg)([(0,n.injectable)()],a)},67625(e,t,i){"use strict";i.d(t,{M:()=>o});var r=i(87286),n=i(47867),l=i(35864),a=i.n(l);let o=()=>{let e=(0,n.useContext)(r.K);if(a().isEmpty(e))throw Error("useTabManager must be used within TabManagerProvider");return e.tabManager}},14490(e,t,i){"use strict";i.d(t,{A:()=>o,ET:()=>u,FH:()=>n,ei:()=>a,jM:()=>p,uQ:()=>s,vX:()=>c,xX:()=>l,zC:()=>d});var r=i(53996);let n=i(6387).FH.enhanceEndpoints({addTagTypes:[r.nP.AVAILABLE_TAGS,r.nP.ASSET_DETAIL,r.nP.DATA_OBJECT_DETAIL],endpoints:{tagUpdateById:{invalidatesTags:(e,t,i)=>r.qN.AVAILABLE_TAGS()},tagDeleteById:{invalidatesTags:(e,t,i)=>r.qN.AVAILABLE_TAGS()},tagCreate:{invalidatesTags:(e,t,i)=>r.qN.AVAILABLE_TAGS()},tagGetById:{providesTags:(e,t,i)=>r.yc.AVAILABLE_TAGS()},tagGetCollection:{providesTags:(e,t,i)=>r.yc.AVAILABLE_TAGS()},tagAssignToElement:{invalidatesTags:(e,t,i)=>[]},tagUnassignFromElement:{invalidatesTags:(e,t,i)=>[]},tagBatchOperationToElementsByTypeAndId:{invalidatesTags:(e,t,i)=>r.qN.ELEMENT_TAGS(i.elementType,i.id)},tagGetCollectionForElementByTypeAndId:{providesTags:(e,t,i)=>r.yc.ELEMENT_TAGS(i.elementType,i.id).filter(e=>void 0!==e)}}}),{useTagCreateMutation:l,useTagDeleteByIdMutation:a,useTagUpdateByIdMutation:o,useTagGetCollectionQuery:s,useTagAssignToElementMutation:d,useTagUnassignFromElementMutation:c,useTagGetCollectionForElementByTypeAndIdQuery:u,useTagBatchOperationToElementsByTypeAndIdMutation:p}=n},6387(e,t,i){"use strict";i.d(t,{FH:()=>r,uQ:()=>n});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Tags","Tags for Element"]}).injectEndpoints({endpoints:e=>({tagGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/tags",params:{page:e.page,pageSize:e.pageSize,elementType:e.elementType,filter:e.filter,parentId:e.parentId}}),providesTags:["Tags"]}),tagCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/tag",method:"POST",body:e.createTagParameters}),invalidatesTags:["Tags"]}),tagGetById:e.query({query:e=>({url:`/pimcore-studio/api/tags/${e.id}`}),providesTags:["Tags"]}),tagUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/tags/${e.id}`,method:"PUT",body:e.updateTagParameters}),invalidatesTags:["Tags"]}),tagDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/tags/${e.id}`,method:"DELETE"}),invalidatesTags:["Tags"]}),tagAssignToElement:e.mutation({query:e=>({url:`/pimcore-studio/api/tags/assign/${e.elementType}/${e.id}/${e.tagId}`,method:"POST"}),invalidatesTags:["Tags for Element"]}),tagBatchOperationToElementsByTypeAndId:e.mutation({query:e=>({url:`/pimcore-studio/api/tags/batch/${e.operation}/${e.elementType}/${e.id}`,method:"POST"}),invalidatesTags:["Tags for Element"]}),tagGetCollectionForElementByTypeAndId:e.query({query:e=>({url:`/pimcore-studio/api/tags/${e.elementType}/${e.id}`}),providesTags:["Tags for Element"]}),tagUnassignFromElement:e.mutation({query:e=>({url:`/pimcore-studio/api/tags/${e.elementType}/${e.id}/${e.tagId}`,method:"DELETE"}),invalidatesTags:["Tags for Element"]})}),overrideExisting:!1}),{useTagGetCollectionQuery:n,useTagCreateMutation:l,useTagGetByIdQuery:a,useTagUpdateByIdMutation:o,useTagDeleteByIdMutation:s,useTagAssignToElementMutation:d,useTagBatchOperationToElementsByTypeAndIdMutation:c,useTagGetCollectionForElementByTypeAndIdQuery:u,useTagUnassignFromElementMutation:p}=r},26268(e,t,i){"use strict";i.d(t,{I:()=>r});let r=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{sectionTitle:i` - position: relative; - display: block; - padding: ${t.paddingSM}px ${t.paddingXS}px ${t.paddingXS}px ${t.paddingXS}px; - font-size: 14px; - font-weight: 900; - `,subSectionTitle:i` - margin-left: 5px; - - &::before { - content: ''; - display: block; - position: absolute; - left: 2px; - width: 2px; - height: 22px; - background-color: ${t.Colors.Neutral.Fill.colorFill}; - } - `,subSectionText:i` - font-weight: 400; - `,sectionFields:i` - padding: ${t.paddingXS}px; - border: 1px solid ${t.colorBorderContainer}; - border-radius: ${t.borderRadius}px; - `,sectionFieldsWithoutBorder:i` - border-width: 0; - `,fieldTitle:i` - display: block; - margin-bottom: 4px; - `,sectionFieldItem:i` - flex: 1 1 50%; - min-width: 50%; - width: 100%; - padding: ${t.paddingXS}px; - background-color: ${t.colorBgContainerDisabled}; - border-radius: ${t.borderRadius}px; - - &:only-child { - flex: 1 1 100%; - } - `,sectionFieldItemHighlight:i` - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - `,objectSectionFieldItemWrapper:i` - flex: 1 1 50%; - min-width: 50%; - max-width: 900px; - width: 100%; - `,objectSectionFieldItem:i` - justify-content: flex-start; - width: 100% !important; - max-width: 100% !important; - border-radius: ${t.borderRadius}px !important; - border-color: transparent !important; - color: ${t.colorText} !important; - `,objectSectionFieldItemHighlight:i` - &.versionFieldItem { - border-color: ${t.colorBorder} !important; - } - `,objectSectionEmptyState:i` - justify-content: center !important; - width: 100%; - min-width: 100px; - height: 100%; - border: 1px solid transparent !important; - `,objectSectionEmptyStateDisabled:i` - background-color: ${t.colorBgContainerDisabled} !important; - `,objectSectionEmptyStateHighlight:i` - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${t.colorBorder} !important; - `}})},94316(e,t,i){"use strict";i.d(t,{KY:()=>x,CI:()=>b,Nn:()=>v,FH:()=>g,e7:()=>j,MF:()=>f,KC:()=>h,Yv:()=>y});var r=i(53996);let n=i(53073).api.enhanceEndpoints({addTagTypes:["Versions"]}).injectEndpoints({endpoints:e=>({versionAssetDownloadById:e.query({query:e=>({url:`/pimcore-studio/api/versions/${e.id}/asset/download`}),providesTags:["Versions"]}),versionImageStreamById:e.query({query:e=>({url:`/pimcore-studio/api/versions/${e.id}/image/stream`}),providesTags:["Versions"]}),versionPdfStreamById:e.query({query:e=>({url:`/pimcore-studio/api/versions/${e.id}/pdf/stream`}),providesTags:["Versions"]}),versionGetById:e.query({query:e=>({url:`/pimcore-studio/api/versions/${e.id}`}),providesTags:["Versions"]}),versionUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/versions/${e.id}`,method:"PUT",body:e.updateVersion}),invalidatesTags:["Versions"]}),versionPublishById:e.mutation({query:e=>({url:`/pimcore-studio/api/versions/${e.id}`,method:"POST"}),invalidatesTags:["Versions"]}),versionDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/versions/${e.id}`,method:"DELETE"}),invalidatesTags:["Versions"]}),versionGetCollectionForElementByTypeAndId:e.query({query:e=>({url:`/pimcore-studio/api/versions/${e.elementType}/${e.id}`,params:{page:e.page,pageSize:e.pageSize}}),providesTags:["Versions"]}),versionCleanupForElementByTypeAndId:e.mutation({query:e=>({url:`/pimcore-studio/api/versions/${e.elementType}/${e.id}`,method:"DELETE"}),invalidatesTags:["Versions"]})}),overrideExisting:!1}),{useVersionAssetDownloadByIdQuery:l,useVersionImageStreamByIdQuery:a,useVersionPdfStreamByIdQuery:o,useVersionGetByIdQuery:s,useVersionUpdateByIdMutation:d,useVersionPublishByIdMutation:c,useVersionDeleteByIdMutation:u,useVersionGetCollectionForElementByTypeAndIdQuery:p,useVersionCleanupForElementByTypeAndIdMutation:m}=n,g=n.enhanceEndpoints({addTagTypes:[r.nP.ASSET_DETAIL],endpoints:{versionGetById:{providesTags:(e,t,i)=>r.yc.VERSIONS_DETAIL(i.id)},versionGetCollectionForElementByTypeAndId:{providesTags:(e,t,i)=>{let n=[];return null==e||e.items.forEach(e=>{n.push(...r.yc.VERSIONS_DETAIL(e.id))}),[...n,...r.yc.ELEMENT_VERSIONS(i.elementType,i.id)]}},versionCleanupForElementByTypeAndId:{invalidatesTags:(e,t,i)=>r.qN.ELEMENT_VERSIONS(i.elementType,i.id)},versionUpdateById:{invalidatesTags:(e,t,i)=>r.qN.VERSIONS_DETAIL(i.id)},versionPublishById:{invalidatesTags:(e,t,i)=>r.qN.VERSIONS_DETAIL(i.id)},versionDeleteById:{invalidatesTags:(e,t,i)=>r.qN.VERSIONS_DETAIL(i.id)}}}),{useVersionAssetDownloadByIdQuery:h,useVersionCleanupForElementByTypeAndIdMutation:v,useVersionDeleteByIdMutation:f,useVersionGetByIdQuery:y,useVersionGetCollectionForElementByTypeAndIdQuery:b,useVersionPublishByIdMutation:x,useVersionUpdateByIdMutation:j}=g},57064(e,t,i){"use strict";i.d(t,{F:()=>l});var r=i(31635),n=i(62446);class l{getTabs(){return this.tabs}getTab(e){return this.tabs.find(t=>t.key===e)}register(e){void 0!==this.getTab(e.key)?this.tabs.splice(this.tabs.findIndex(t=>t.key===e.key),1,e):this.tabs.push(e)}constructor(){this.type="",this.tabs=[]}}l=(0,r.Cg)([(0,n.injectable)()],l)},79606(e,t,i){"use strict";i.d(t,{M6:()=>u,RX:()=>s,lA:()=>a,lK:()=>d,lu:()=>p,mG:()=>l,tX:()=>o,vK:()=>c,zq:()=>m});var r=i(16327),n=i(53996);let{useElementDeleteMutation:l,useElementGetDeleteInfoQuery:a,useElementFolderCreateMutation:o,useElementGetContextPermissionsQuery:s,useElementGetIdByPathQuery:d,useLazyElementGetIdByPathQuery:c,useElementGetSubtypeQuery:u,useElementResolveBySearchTermQuery:p,useLazyElementResolveBySearchTermQuery:m}=r.FH.enhanceEndpoints({addTagTypes:[n.nP.DATA_OBJECT_DETAIL,n.nP.ASSET_DETAIL],endpoints:{elementDelete:{invalidatesTags:(e,t,i)=>n.qN.ELEMENT_DETAIL(i.elementType,i.id)}}})},16327(e,t,i){"use strict";i.d(t,{FH:()=>r,mG:()=>n,tX:()=>a});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Elements"]}).injectEndpoints({endpoints:e=>({elementDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/delete/${e.id}`,method:"DELETE"}),invalidatesTags:["Elements"]}),elementGetDeleteInfo:e.query({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/delete-info/${e.id}`}),providesTags:["Elements"]}),elementFolderCreate:e.mutation({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/folder/${e.parentId}`,method:"POST",body:e.folderData}),invalidatesTags:["Elements"]}),elementGetContextPermissions:e.query({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/context-permissions/`}),providesTags:["Elements"]}),elementGetTreeLocation:e.query({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/location/${e.id}/${e.perspectiveId}`}),providesTags:["Elements"]}),elementGetIdByPath:e.query({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/path`,params:{elementPath:e.elementPath}}),providesTags:["Elements"]}),elementGetSubtype:e.query({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/subtype/${e.id}`}),providesTags:["Elements"]}),elementGetUsage:e.query({query:e=>({url:`/pimcore-studio/api/elements/usage/${e.elementType}/${e.id}`,params:{page:e.page,pageSize:e.pageSize,sortOrder:e.sortOrder,sortBy:e.sortBy}}),providesTags:["Elements"]}),elementUsageReplace:e.mutation({query:e=>({url:`/pimcore-studio/api/elements/usage/replace/${e.elementType}/${e.id}`,method:"POST",body:e.body}),invalidatesTags:["Elements"]}),elementResolveBySearchTerm:e.query({query:e=>({url:`/pimcore-studio/api/elements/${e.elementType}/resolve`,params:{searchTerm:e.searchTerm}}),providesTags:["Elements"]})}),overrideExisting:!1}),{useElementDeleteMutation:n,useElementGetDeleteInfoQuery:l,useElementFolderCreateMutation:a,useElementGetContextPermissionsQuery:o,useElementGetTreeLocationQuery:s,useElementGetIdByPathQuery:d,useElementGetSubtypeQuery:c,useElementGetUsageQuery:u,useElementUsageReplaceMutation:p,useElementResolveBySearchTermQuery:m}=r},81674(e,t,i){"use strict";i.d(t,{Cr:()=>p,Ed:()=>u,Ip:()=>d,ME:()=>g,U9:()=>m,Vn:()=>h});var r=i(35864),n=i(40595),l=i(63364),a=i(10600),o=i(87632),s=i(47351);let d=(e,t)=>{let i=c(e,t),r=new s.V(e,t,i);return l.kL.get(a.K["Element/ProcessorRegistry/IconProcessor"]).executeProcessors(r),r.getIcon()??t},c=(e,t)=>{var i,r;return(null==(i=e.customAttributes)?void 0:i.icon)!==void 0&&(null==(r=e.customAttributes)?void 0:r.icon)!==null?e.customAttributes.icon:"isSite"in e&&e.isSite?{type:"name",value:"home-root-folder"}:void 0!==e.icon&&null!==e.icon?e.icon:t},u=(e,t)=>"asset"===t?e.filename??"":"data-object"===t||"document"===t?e.key??"":"",p=(e,t,i)=>{let r=`${e}_ACTION_${t}`;return void 0!==i&&(r+=`_ID_${i}`),r.toUpperCase()},m=e=>(0,r.isPlainObject)(e)&&(0,r.has)(e,"id")&&(0,r.has)(e,"type")&&(0,r.has)(e,"fullPath"),g=function(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1],i=e.data,n="published"in i?i.published:null;return{id:i.id,type:(0,o.FA)(e.type),fullPath:String(i.fullPath),isPublished:t&&(0,r.isBoolean)(n)?n:null,subtype:"data-object"===e.type?e.data.classname??"folder":e.data.type??void 0}},h=(e,t)=>`${window.location.origin}${n.pc}${e}/${t}`},80546(e,t,i){"use strict";i.d(t,{F:()=>o});var r=i(41630),n=i(73362),l=i(91434),a=i(46766);let o=(e,t)=>{var i;let o=(0,r.jL)(),s=function(){if("asset"===e)return n.api;if("data-object"===e)return l.FH;if("document"===e)return a.FH;throw Error("Unknown element type")}(),d=(i=t,s.util.selectInvalidatedBy(r.M_.getState(),i)),c=e=>{let{updateFn:t}=e;d.forEach(e=>{o(s.util.updateQueryData(e.endpointName,e.originalArgs,t))})};return{update:c,updateFieldValue:(e,t,i)=>{c({updateFn:r=>{if("items"in r&&"object"==typeof r.items){let n=r.items.findIndex(t=>t.id===e);-1!==n&&t in r.items[n]&&(r.items[n][t]=i)}}})}}}},13397(e,t,i){"use strict";i.d(t,{M:()=>p});var r=i(73362),n=i(91434),l=i(80546),a=i(46881),o=i(62843),s=i(69187),d=i(35864),c=i(55638),u=i(75023);let p=(e,t)=>{let i=(0,a.useAppDispatch)(),[p]=(0,r.useAssetPatchByIdMutation)({fixedCacheKey:t}),[m]=(0,n.M5)({fixedCacheKey:t}),[g]=(0,u.vA)({fixedCacheKey:t}),[h]=(0,o.OR)(),[v]=(0,s.rg)(),{updateFieldValue:f}=(0,l.F)("asset",["ASSET_TREE"]),{updateFieldValue:y}=(0,l.F)("data-object",["DATA_OBJECT_TREE"]),{updateFieldValue:b}=(0,l.F)("document",["DOCUMENT_TREE"]);return{elementPatch:async t=>{try{if("asset"===e){let e=await p(t);return(0,d.isUndefined)(e.error)||(0,c.Ay)(new c.hD(e.error)),f(t.body.data[0].id,"filename",t.body.data[0].key),(0,d.isUndefined)(e.error)}if("data-object"===e){let e=await m(t);return(0,d.isUndefined)(e.error)||(0,c.Ay)(new c.hD(e.error)),y(t.body.data[0].id,"key",t.body.data[0].key),(0,d.isUndefined)(e.error)}if("document"===e){1!==t.body.data.length&&(0,c.Ay)(new c.$g("Document patching only supports a single element"));let e=await g({id:t.body.data[0].id,body:{data:{parentId:t.body.data[0].parentId,key:t.body.data[0].key,locked:t.body.data[0].locked,index:t.body.data[0].index}}});return(0,d.isUndefined)(e.error)||(0,c.Ay)(new c.hD(e.error)),b(t.body.data[0].id,"key",t.body.data[0].key),(0,d.isUndefined)(e.error)}}catch{(0,c.Ay)(new c.$g("Error while patching element"))}return!1},getElementById:async t=>{if("asset"===e){let{data:e}=await i(o.FH.endpoints.assetGetById.initiate({id:t}));return void 0!==e?("error"in e&&(0,c.Ay)(new c.$g("Could not get Asset by Id")),e):{}}if("data-object"===e){let{data:e}=await i(s.FH.endpoints.dataObjectGetById.initiate({id:t}));return void 0!==e?("error"in e&&(0,c.Ay)(new c.$g("Could not get Object by Id")),e):{}}},elementClone:async t=>{try{var i,r;if("asset"===e){let e=await h(t);if(!(0,d.isUndefined)(e.error))return(0,c.Ay)(new c.hD(e.error)),{success:!1};return{success:!0,jobRunId:null==(i=e.data)?void 0:i.jobRunId}}if("data-object"===e){let e=await v(t);if(!(0,d.isUndefined)(e.error))return(0,c.Ay)(new c.hD(e.error)),{success:!1};return{success:!0,jobRunId:(null==(r=e.data)?void 0:r.jobRunId)??void 0}}}catch(e){console.error(e)}return{success:!1}}}}},7334(e,t,i){"use strict";i.d(t,{J:()=>s,L:()=>d});var r=i(47867),n=i(39857),l=i(20713),a=i(15789),o=i(55638);let s=()=>{let e=d();if(null!==e)return e;let t="No element context found";throw(0,o.Ay)(new o.$g(t)),Error(t)},d=()=>{let{id:e}=(0,r.useContext)(n.m),{id:t}=(0,r.useContext)(l.Z),{id:i}=(0,r.useContext)(a.T);return 0!==e?{id:e,elementType:"asset"}:0!==t?{id:t,elementType:"data-object"}:0!==i?{id:i,elementType:"document"}:null}},33142(e,t,i){"use strict";i.d(t,{D:()=>o});var r=i(89354),n=i(66026),l=i(55638),a=i(15156);let o=(e,t)=>{if("asset"===t){let t=(0,r.l)(e);return{...t,element:t.asset}}if("data-object"===t){let t=(0,n.A)(e);return{...t,element:t.dataObject}}if("document"===t){let t=(0,a.S)(e);return{...t,element:t.document}}throw(0,l.Ay)(new l.$g("Element type not supported")),Error("Element type not supported")}},56789(e,t,i){"use strict";i.d(t,{K:()=>s});var r=i(55638),n=i(40721),l=i(75091),a=i(87632),o=i(46096);let s=()=>{let{executeDataObjectTask:e}=(0,n.H)(),{executeDocumentTask:t}=(0,l.$)();return{openElement:async function e(e){let{element:t}=(0,o.qH)();await t.openElement(e.id,e.type)},mapToElementType:function(e,t){let i=(0,a.sv)(e);return null===i&&!0!==t?void(0,r.Ay)(new r.$g(`Unknown element type: ${e}`)):i??void 0},mapToLegacyElementType:e=>{let t=(0,a.sv)(e);return null!==t?(0,a.FA)(t):e},executeElementTask:(i,r,n,l)=>{"data-object"===i?e(r,n,l):"document"===i?t(r,n,l):console.log("not implemented for elementType: "+i)}}}},55490(e,t,i){"use strict";i.d(t,{Q:()=>o});var r=i(27918),n=i(85566),l=i(79246),a=i(83196);let o=()=>{var e;let{getOpenedMainWidget:t}=(0,a.J)(),{context:i}=(0,r.k)(),{context:o}=(0,n.L)(),{context:s}=(0,l.v)(),d=null==(e=t())?void 0:e.getComponent();return"asset-editor"===d?{context:i}:"data-object-editor"===d?{context:o}:"document-editor"===d?{context:s}:{context:void 0}}},8412(e,t,i){"use strict";i.d(t,{t:()=>l});var r=i(47867),n=i(99582);let l=()=>{let e=(0,r.useContext)(n.l);if(null==e)throw Error("useSettings must be used within a SettingsProvider");return e}},74525(e,t,i){"use strict";i.d(t,{p:()=>y});var r=i(74848);i(47867);var n=i(46533),l=i(2807),a=i(3201),o=i(53209),s=i(75591),d=i(85185),c=i(96197),u=i(9273),p=i(61067),m=i(66634),g=i(72928),h=i(17044),v=i(85775),f=i(7789);let y=(e,t)=>{let{ContextComponent:i,useDataQueryHelper:y,useSidebarOptions:b,...x}=e;return{ContextComponent:()=>(0,r.jsx)(s.fr,{config:t,children:(0,r.jsx)(n.y,{children:(0,r.jsx)(o.WI,{children:(0,r.jsx)(a.VY,{children:(0,r.jsx)(l.v,{children:(0,r.jsx)(i,{})})})})})}),useDataQueryHelper:()=>{let{getArgs:e,...t}=y(),{getDataQueryFilterArg:i}=(0,d.U)(),{getDataQueryFilterArg:r}=(0,u.Z)(),{onlyDirectChildren:n}=(0,c.e)(),{fieldFilters:l}=(0,p.F)(),{availableColumns:s}=(0,m.m)(),{getType:f}=(0,g.R)(),{currentLanguage:b}=(0,v.Sk)();return{...t,getArgs:()=>{let t,d=e(),c=i(),u=r(),p=s.map(e=>e.key);p.push(a.SG,o.vh);let m=[...(d.body.filters.columnFilters??[]).filter(e=>!p.includes(e.type))];return void 0!==c&&m.push(c),void 0!==u&&m.push(u),l.length>0&&m.push(...(t=[],l.forEach(e=>{let i=s.find(t=>t.key===e.key);if(void 0===i)return;let r=f({target:"FIELD_FILTER",dynamicTypeIds:[i.type,i.frontendType]});if(null===r)return;if(!(r instanceof h.C))if(!("dynamicTypeFieldFilterType"in r))return;else r=r.dynamicTypeFieldFilterType;let n=r;n.shouldApply(e)&&t.push(n.transformFilterToApiRequest(e))}),t)),{...d,body:{...d.body,filters:{...d.body.filters,includeDescendants:!n,columnFilters:m.map(t=>{var i,r;let n,l,{...a}=t;return{...a,locale:(i=a.key,r=a.locale,n=s.find(e=>e.key===i),l="classId"in e(),"default"===r?null:(null==n?void 0:n.localizable)===!0?r??(l?b:null):null)}})}}}}}},useSidebarOptions:(0,f.h)(b),...x}}},79963(e,t,i){"use strict";i.d(t,{M:()=>l});var r=i(47867),n=i(78921);let l=()=>{let e=(0,r.useContext)(n.E);if(void 0===e)throw Error("usePaging must be used within a PagingProvider");return e}},59991(e,t,i){"use strict";i.d(t,{S:()=>a});var r=i(74848);i(47867);var n=i(78921),l=i(79963);let a=e=>{let{useDataQueryHelper:t,ContextComponent:i,...a}=e;return{...a,ContextComponent:()=>(0,r.jsx)(n.Q,{children:(0,r.jsx)(i,{})}),useDataQueryHelper:()=>{let{getArgs:e,hasRequiredArgs:i,...r}=t(),n=(0,l.M)();return{...r,hasRequiredArgs:i,getArgs:()=>{let t=e();return{...t,body:{...t.body??{},filters:{...t.body.filters??{},...{page:(null==n?void 0:n.page)??1,pageSize:(null==n?void 0:n.pageSize)??10}}}}}}}}}},56177(e,t,i){"use strict";i.d(t,{Y:()=>c});var r=i(74848),n=i(47867),l=i(81916),a=i(53894),o=i(20351),s=i(66634),d=i(92277);let c=(e,t)=>{let{useGridOptions:i,useSidebarOptions:c,ContextComponent:u,...p}=e;return{...p,ContextComponent:()=>(0,r.jsx)(l.G,{children:(0,r.jsx)(u,{})}),useGridOptions:()=>{let{getGridProps:e,...r}=i(),{data:l}=(0,o.E)(),{selectedRows:d,setSelectedRows:c,selectedRowsData:u,setSelectedRowsData:p}=(0,a.U)(),{availableColumns:m}=(0,s.m)();return(0,n.useEffect)(()=>{let e={},t=m.filter(e=>Array.isArray(e.group)&&e.group.includes("system")).map(e=>e.key);for(let i in d){let r=parseInt(i);for(let i of l.items){let n=i.columns.find(e=>"id"===e.key);if(void 0!==n&&n.value===r)for(let n of i.columns)t.includes(n.key)&&(e[r]={...e[r],[n.key]:n.value})}}p({...u,...e})},[d]),{...r,getGridProps:()=>({...e(),enableRowSelection:"single"===t.rowSelectionMode,enableMultipleRowSelection:"multiple"===t.rowSelectionMode,selectedRows:d,onSelectedRowsChange:c})}},useSidebarOptions:"multiple"===t.rowSelectionMode?(0,d.l)(c):c}}},55059(e,t,i){"use strict";i.d(t,{Y:()=>c});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let[t,i]=(0,n.useState)([]);return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{sorting:t,setSorting:i},children:e.children}),[t,e.children])},o=()=>{let e=(0,n.useContext)(l);if(void 0===e)throw Error("useSorting must be used within a SortingProvider");return e};var s=i(66707),d=i(10014);let c=e=>{let{useGridOptions:t,ContextComponent:i,useDataQueryHelper:n,...l}=e;return{...l,ContextComponent:()=>(0,r.jsx)(a,{children:(0,r.jsx)(i,{})}),useGridOptions:()=>{let{getGridProps:e,transformGridColumn:i,...r}=t(),{sorting:n,setSorting:l}=o(),a=e=>{l(e)};return{...r,transformGridColumn:e=>({...i(e),enableSorting:e.sortable}),getGridProps:()=>({...e(),sorting:n,onSortingChange:a,enableSorting:!0,manualSorting:!0})}},useDataQueryHelper:()=>{let{getArgs:e,...t}=n(),{sorting:i}=o(),{decodeColumnIdentifier:r}=(0,s.K)(),{currentLanguage:l}=(0,d.S)();return{...t,getArgs:()=>{let t=e(),n="classId"in t,a=[];for(let e of i??[]){var o,s;let t=r(e.id);void 0!==t&&a.push({key:(null==t||null==(s=t.config)||null==(o=s.filters)?void 0:o.key)??t.key,locale:t.localizable?t.locale??(n?l:void 0):void 0,direction:e.desc?"desc":"asc"})}return{...t,body:{...t.body,filters:{...t.body.filters,...a.length>0?{sortFilter:a[0]}:{}}}}}}}}}},94614(e,t,i){"use strict";i.d(t,{m:()=>l});var r=i(47867),n=i(9356);let l=()=>{let e=(0,r.useContext)(n.W);if(void 0===e)throw Error("useGridConfig must be used within a GridConfigProvider");return e}},40910(e,t,i){"use strict";i.d(t,{u:()=>l});var r=i(47867),n=i(32436);let l=()=>{let e=(0,r.useContext)(n.g);if(void 0===e)throw Error("useSelectedGridConfigId must be used within a SelectedGridConfigIdProvider");return e}},79472(e,t,i){"use strict";i.d(t,{o:()=>n});var r=i(35864);let n=(e,t)=>!(0,r.isUndefined)(e)&&!0===e[t]},47351(e,t,i){"use strict";i.d(t,{V:()=>a,n:()=>o});var r=i(31635),n=i(62446),l=i(32234);class a{setIcon(e){this.icon=e}getIcon(){return this.icon}hasIcon(){return null!==this.icon}constructor(e,t,i=null){this.element=e,this.defaultIcon=t,this.icon=i}}class o extends l.k{}o=(0,r.Cg)([(0,n.injectable)()],o)},87632(e,t,i){"use strict";i.d(t,{FA:()=>o,Hy:()=>r,b9:()=>n,sv:()=>a,wy:()=>l});let r=e=>n.includes(e),n=["asset","document","data-object"],l=["asset","document","object"],a=e=>{switch(e){case"asset":return"asset";case"document":return"document";case"data-object":case"object":case"dataObject":return"data-object";default:return null}},o=e=>"data-object"===e?"object":e},44511(e,t,i){"use strict";i.d(t,{a:()=>l});var r=i(46096),n=i(35864);let l=(e,t)=>{if(!(0,n.isNil)(t)&&!(0,n.isNil)(e))try{(0,r.qH)().element.locateInTree(t,e)}catch(e){console.error("Failed to locate element in tree:",e)}}},11940(e,t,i){"use strict";i.d(t,{X1:()=>o,FH:()=>r});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Execution Engine"]}).injectEndpoints({endpoints:e=>({executionEngineAbortJobRunById:e.mutation({query:e=>({url:`/pimcore-studio/api/execution-engine/abort/${e.jobRunId}`,method:"POST"}),invalidatesTags:["Execution Engine"]}),executionEngineHideJobRuns:e.mutation({query:e=>({url:"/pimcore-studio/api/execution-engine/hide",method:"POST",body:e.body}),invalidatesTags:["Execution Engine"]}),executionEngineListJobs:e.query({query:e=>({url:"/pimcore-studio/api/execution-engine/running-jobs",method:"POST",body:e.body}),providesTags:["Execution Engine"]})}),overrideExisting:!1}),{useExecutionEngineAbortJobRunByIdMutation:n,useExecutionEngineHideJobRunsMutation:l,useExecutionEngineListJobsQuery:a}=r;r.enhanceEndpoints({endpoints:{executionEngineAbortJobRunById:{invalidatesTags:[]},executionEngineHideJobRuns:{invalidatesTags:[]},executionEngineListJobs:{providesTags:[]}}});let{useExecutionEngineAbortJobRunByIdMutation:o,useExecutionEngineHideJobRunsMutation:s,useExecutionEngineListJobsQuery:d}=r},26642(e,t,i){"use strict";i.d(t,{Ub:()=>c,VI:()=>d,fS:()=>o,tD:()=>s});var r=i(46881),n=i(88605);let l=(0,n.createEntityAdapter)({}),a=(0,n.createSlice)({name:"execution-engine",initialState:l.getInitialState(),reducers:{jobReceived:l.addOne,jobUpdated:l.updateOne,jobDeleted:l.removeOne}});(0,r.injectSliceWithState)(a);let{jobReceived:o,jobUpdated:s,jobDeleted:d}=a.actions,{selectAll:c,selectById:u}=l.getSelectors(e=>e["execution-engine"])},2662(e,t,i){"use strict";i.d(t,{O:()=>l});var r=i(63364),n=i(10600);let l=()=>r.kL.get(n.K.executionEngine)},30652(e,t,i){"use strict";i.d(t,{O:()=>l});var r=i(46881),n=i(26642);let l=()=>{let e=(0,r.useAppDispatch)();return{jobs:(0,r.useAppSelector)(n.Ub),updateJob:function(t,i){e((0,n.tD)({id:t,changes:{...i}}))},removeJob:function(t){e((0,n.VI)(t))},addJob:function(t){e((0,n.fS)(t))}}}},83295(e,t,i){"use strict";i.d(t,{f:()=>d});var r=i(35864),n=i(41630),l=i(59385),a=i(55638),o=i(82763),s=i(60142);class d{async run(e){let{messageBus:t}=e;(0,r.isString)(this.treeId)&&(0,r.isString)(this.nodeId)&&n.M_.dispatch((0,l.setNodeFetching)({treeId:this.treeId,nodeId:this.nodeId,isFetching:!0}));try{let e=await this.executeCloneRequest();if((0,r.isNil)(e))return void await this.handleCompletion();let i=new o.j({jobRunId:e,title:e=>"running"===e.status&&2===e.currentStep?(0,s.t)("jobs.clone-job.step2.title"):this.title,onJobCompletion:async e=>{try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}}});t.registerHandler(i)}catch(e){await this.handleJobFailure(e),(0,a.Ay)(new a.$g(e.message))}}async handleCompletion(){(0,r.isString)(this.treeId)&&(0,r.isString)(this.nodeId)&&n.M_.dispatch((0,l.setNodeFetching)({treeId:this.treeId,nodeId:this.nodeId,isFetching:!1})),n.M_.dispatch((0,l.refreshNodeChildren)({elementType:this.elementType,nodeId:this.targetId.toString()}))}async handleJobFailure(e){(0,r.isString)(this.treeId)&&(0,r.isString)(this.nodeId)&&n.M_.dispatch((0,l.setNodeFetching)({treeId:this.treeId,nodeId:this.nodeId,isFetching:!1})),console.error("Clone job failed:",e)}constructor(e){this.sourceId=e.sourceId,this.targetId=e.targetId,this.title=e.title,this.elementType=e.elementType,this.treeId=e.treeId,this.nodeId=e.nodeId}}},82763(e,t,i){"use strict";i.d(t,{j:()=>g});var r=i(57248),n=i(41630),l=i(26642);let a=0;var o=i(35864),s=i(63364),d=i(10600),c=i(11940),u=i(22164);let p=["finished","finished_with_errors","failed"];class m{notifyUpdate(){this.isDestroyed||(this.stopPolling(),this.schedulePolling())}destroy(){this.isDestroyed=!0,this.stopPolling()}schedulePolling(){this.pollingBackoff.schedule(()=>{this.startPolling()})}startPolling(){this.isPolling||this.isDestroyed||(this.isPolling=!0,this.lastJobSnapshot=null,this.pollJobStatus())}scheduleNextPoll(){this.pollingBackoff.schedule(()=>{this.pollJobStatus()})}hasJobChanged(e){return(0,o.isNil)(this.lastJobSnapshot)||this.lastJobSnapshot.state!==e.state||this.lastJobSnapshot.currentStep!==e.currentStep||this.lastJobSnapshot.totalSteps!==e.totalSteps||this.lastJobSnapshot.currentMessage!==e.currentMessage||this.lastJobSnapshot.modificationDate!==e.modificationDate}stopPolling(){this.pollingBackoff.clear(),this.isPolling=!1,this.lastJobSnapshot=null}createSnapshot(e){return{state:e.state,currentStep:e.currentStep??null,totalSteps:e.totalSteps??null,currentMessage:e.currentMessage,modificationDate:e.modificationDate}}async pollJobStatus(){if(this.isDestroyed)return void this.stopPolling();try{let{data:e}=await n.M_.dispatch(c.FH.endpoints.executionEngineListJobs.initiate({body:{filters:{page:1,pageSize:1,columnFilters:[{type:"id",filterValue:Number(this.jobRunId)}]}}},{forceRefetch:!0}));if((0,o.isNil)(e))this.pollingBackoff.increase(),this.scheduleNextPoll();else{let t=e.items[0];if((0,o.isNil)(t))this.stopPolling();else{let e=this.createSnapshot(t);this.hasJobChanged(e)?this.pollingBackoff.reset():"queued"!==t.state&&this.pollingBackoff.increase(),this.lastJobSnapshot=e;let i=0===t.currentStep?"queued":t.state;if(await this.callbacks.onStatusUpdate({status:i,currentStep:t.currentStep,totalSteps:t.totalSteps,currentMessage:t.currentMessage,jobRun:t}),p.includes(t.state))return void this.stopPolling();this.scheduleNextPoll()}}}catch(i){var e,t;(null==(e=(t=this.callbacks).onError)?void 0:e.call(t,i))??console.error("Error polling job run status:",i),this.scheduleNextPoll()}}constructor(e,t){this.isPolling=!1,this.isDestroyed=!1,this.lastJobSnapshot=null,this.jobRunId=e,this.callbacks=t,this.pollingBackoff=new u._({initialDelay:1e4,maxDelay:3e5,multiplier:1.25}),this.schedulePolling()}}class g extends r.k{shouldHandle(e){var t;let i=null==(t=e.payload)?void 0:t.jobRunId;return!(0,o.isNil)(i)&&String(i)===String(this.jobRunId)}getId(){return this.jobRunId}onRegister(){n.M_.dispatch((0,l.fS)(this.getJob()))}async handleMessage(e){try{if("update"===e.type){let t=e.payload;if((0,o.isNil)(t))return;this.polling.notifyUpdate(),await this.processUpdate(t)}}catch(e){console.error("Error in message handling: ",e)}}onUnregister(){this.throttledProgressUpdate.cancel(),this.polling.destroy()}getTitle(e){return(0,o.isFunction)(this.title)?this.title(e):this.title}calculateProgress(e){return(0,o.isNil)(null==e?void 0:e.currentStep)||(0,o.isNil)(null==e?void 0:e.totalSteps)||!(e.totalSteps>1)?(0,o.isNil)(null==e?void 0:e.progress)?null:Math.max(0,Math.min(100,e.progress)):Math.max(0,Math.round((e.currentStep-1)/e.totalSteps*100))}async handleJobCompletion(e){(0,o.isNil)(this.onJobCompletion)||await this.onJobCompletion(e)}getJob(){return this.job=this.job??this.createJob(),this.job}createJob(){let e={id:a++,type:"default-message-bus",title:"",status:"queued",progress:0,currentStep:this.currentStep,totalSteps:this.totalSteps,onRetry:this.onRetry,onCustomizeButtons:this.onCustomizeButtons,jobRunId:this.jobRunId};return e.title=this.getTitle(e),e}updateJob(e){let t=this.getJob(),i={...t,...e},r=this.getTitle(i);r!==i.title&&(i.title=r,e.title=r),this.job=i,n.M_.dispatch((0,l.tD)({id:t.id,changes:e}))}transitionToChildJob(e){let t=this.jobRunId;this.jobRunId=e,((0,o.isNil)(this.totalSteps)||this.currentStepMath.abs(e-this.lastProgressValue)&&100!==e||this.throttledProgressUpdate(e,t)}performProgressUpdate(e,t){(0,o.isNil)(null==t?void 0:t.status)&&this.updateJob({status:"running"}),this.updateJob({progress:e})}async handlePolledStatusUpdate(e){let t={status:e.status,currentStep:e.currentStep,totalSteps:e.totalSteps,messages:(0,o.isNil)(e.currentMessage)?void 0:[e.currentMessage]};await this.processUpdate(t)}async processUpdate(e){(0,o.isNil)(null==e?void 0:e.status)||await this.handleStatusUpdate(e);let t=this.calculateProgress(e);(0,o.isNil)(t)||this.handleProgressUpdate(t,e)}constructor(e){super(),this.job=null,this.currentStep=1,this.lastProgressValue=-1,this.throttledProgressUpdate=(0,o.throttle)((e,t)=>{this.performProgressUpdate(e,t),this.lastProgressValue=e},250,{leading:!0,trailing:!0}),this.jobRunId=e.jobRunId,this.totalSteps=e.totalSteps,this.title=e.title,this.onJobCompletion=e.onJobCompletion,this.onRetry=e.onRetry,this.onCustomizeButtons=e.onCustomizeButtons,this.polling=new m(this.jobRunId,{onStatusUpdate:async e=>{await this.handlePolledStatusUpdate(e)},onError:e=>{console.error("Job run polling error:",e)}})}}},66410(e,t,i){"use strict";i.d(t,{v:()=>r});let r={"studio-backend-default":"studio-backend-default"}},4793(e,t,i){"use strict";i.r(t),i.d(t,{api:()=>n,useNotificationDeleteAllMutation:()=>a,useNotificationDeleteByIdMutation:()=>l,useNotificationGetByIdQuery:()=>s,useNotificationGetCollectionQuery:()=>o});var r=i(53996);let n=i(21914).FH.enhanceEndpoints({addTagTypes:[r.nP.NOTIFICATION_DETAILS,r.nP.NOTIFICATIONS],endpoints:{notificationGetCollection:{providesTags:(e,t,i)=>{let n=[];return null==e||e.items.forEach(e=>{n.push(...r.yc.NOTIFICATION_DETAIL(e.id))}),n.push(...r.yc.NOTIFICATIONS()),n}},notificationGetById:{providesTags:(e,t,i)=>r.yc.NOTIFICATION_DETAIL(i.id)},notificationDeleteAll:{invalidatesTags:(e,t,i)=>r.qN.NOTIFICATIONS()}}}),{useNotificationDeleteByIdMutation:l,useNotificationDeleteAllMutation:a,useNotificationGetCollectionQuery:o,useNotificationGetByIdQuery:s}=n},21914(e,t,i){"use strict";i.d(t,{BN:()=>c,FH:()=>r,bQ:()=>d,sQ:()=>u});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Notifications"]}).injectEndpoints({endpoints:e=>({notificationGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/notifications",method:"POST",body:e.body}),providesTags:["Notifications"]}),notificationDeleteAll:e.mutation({query:()=>({url:"/pimcore-studio/api/notifications",method:"DELETE"}),invalidatesTags:["Notifications"]}),notificationGetById:e.query({query:e=>({url:`/pimcore-studio/api/notifications/${e.id}`}),providesTags:["Notifications"]}),notificationReadById:e.mutation({query:e=>({url:`/pimcore-studio/api/notifications/${e.id}`,method:"POST"}),invalidatesTags:["Notifications"]}),notificationDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/notifications/${e.id}`,method:"DELETE"}),invalidatesTags:["Notifications"]}),notificationGetUnreadCount:e.query({query:()=>({url:"/pimcore-studio/api/notifications/unread-count"}),providesTags:["Notifications"]}),notificationGetRecipients:e.query({query:()=>({url:"/pimcore-studio/api/notifications/recipients"}),providesTags:["Notifications"]}),notificationSend:e.mutation({query:e=>({url:"/pimcore-studio/api/notifications/send",method:"POST",body:e.sendNotificationParameters}),invalidatesTags:["Notifications"]})}),overrideExisting:!1}),{useNotificationGetCollectionQuery:n,useNotificationDeleteAllMutation:l,useNotificationGetByIdQuery:a,useNotificationReadByIdMutation:o,useNotificationDeleteByIdMutation:s,useNotificationGetUnreadCountQuery:d,useNotificationGetRecipientsQuery:c,useNotificationSendMutation:u}=r},2700(e,t,i){"use strict";i.d(t,{JT:()=>o,lc:()=>a});var r=i(88605),n=i(46881);let l=(0,r.createSlice)({name:"activePerspective",initialState:null,reducers:{setActivePerspective:(e,t)=>{let{payload:i}=t;return i}}});l.name,(0,n.injectSliceWithState)(l);let{setActivePerspective:a}=l.actions,o=e=>e.activePerspective},68153(e,t,i){"use strict";i.d(t,{o:()=>n});var r,n=((r={}).AddFolder="addFolder",r.Copy="copy",r.Cut="cut",r.Delete="delete",r.Lock="lock",r.LockAndPropagate="lockAndPropagate",r.Paste="paste",r.Publish="publish",r.Refresh="refresh",r.Rename="rename",r.SearchAndMove="searchAndMove",r.Unlock="unlock",r.UnlockAndPropagate="unlockAndPropagate",r.Unpublish="unpublish",r.AddUpload="addUpload",r.AddUploadZip="addUploadZip",r.Download="download",r.DownloadZip="downloadZip",r.UploadNewVersion="uploadNewVersion",r.AddObject="addObject",r.AddVariant="addVariant",r.ChangeChildrenSortBy="changeChildrenSortBy",r.AddPage="addPage",r.AddSnippet="addSnippet",r.AddLink="addLink",r.AddEmail="addEmail",r.AddHardlink="addHardlink",r.Convert="convert",r.EditSite="editSite",r.Open="open",r.PasteCut="pasteCut",r.RemoveSite="removeSite",r.UseAsSite="useAsSite",r)},96403(e,t,i){"use strict";i.d(t,{a:()=>a});var r=i(41630),n=i(2700),l=i(35864);let a=e=>{let t=(0,n.JT)(r.M_.getState());return!(0,l.isNil)(t)&&o(t.contextPermissions,e)},o=(e,t)=>{if((0,l.isNil)(e))return!1;let i=t.split("."),r=e;for(let e of i)if("object"!=typeof r||!(e in r))return!1;else r=r[e];return!0===r}},33461(e,t,i){"use strict";i.r(t),i.d(t,{usePerspectiveCreateMutation:()=>f,usePerspectiveWidgetCreateMutation:()=>w,usePerspectiveWidgetGetTypeCollectionQuery:()=>k,api:()=>v,usePerspectiveWidgetUpdateConfigByIdMutation:()=>T,usePerspectiveWidgetDeleteMutation:()=>I,usePerspectiveGetConfigByIdQuery:()=>b,usePerspectiveWidgetGetConfigCollectionQuery:()=>C,usePerspectiveGetConfigCollectionQuery:()=>y,usePerspectiveWidgetGetConfigByIdQuery:()=>S,usePerspectiveUpdateConfigByIdMutation:()=>x,usePerspectiveDeleteMutation:()=>j});var r=i(53996);let n=i(53073).api.enhanceEndpoints({addTagTypes:["Perspectives"]}).injectEndpoints({endpoints:e=>({perspectiveCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/perspectives/configuration",method:"POST",body:e.addPerspectiveConfig}),invalidatesTags:["Perspectives"]}),perspectiveGetConfigCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/configurations"}),providesTags:["Perspectives"]}),perspectiveGetConfigById:e.query({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`}),providesTags:["Perspectives"]}),perspectiveUpdateConfigById:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`,method:"PUT",body:e.savePerspectiveConfig}),invalidatesTags:["Perspectives"]}),perspectiveDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/configuration/${e.perspectiveId}`,method:"DELETE"}),invalidatesTags:["Perspectives"]}),perspectiveWidgetCreate:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration`,method:"POST",body:e.body}),invalidatesTags:["Perspectives"]}),perspectiveWidgetGetConfigCollection:e.query({query:e=>({url:"/pimcore-studio/api/perspectives/widgets/configurations",params:{skipWrapperWidgets:e.skipWrapperWidgets}}),providesTags:["Perspectives"]}),perspectiveWidgetGetConfigById:e.query({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`}),providesTags:["Perspectives"]}),perspectiveWidgetUpdateConfigById:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`,method:"PUT",body:e.body}),invalidatesTags:["Perspectives"]}),perspectiveWidgetDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/perspectives/widgets/${e.widgetType}/configuration/${e.widgetId}`,method:"DELETE"}),invalidatesTags:["Perspectives"]}),perspectiveWidgetGetTypeCollection:e.query({query:()=>({url:"/pimcore-studio/api/perspectives/widgets/types"}),providesTags:["Perspectives"]})}),overrideExisting:!1}),{usePerspectiveCreateMutation:l,usePerspectiveGetConfigCollectionQuery:a,usePerspectiveGetConfigByIdQuery:o,usePerspectiveUpdateConfigByIdMutation:s,usePerspectiveDeleteMutation:d,usePerspectiveWidgetCreateMutation:c,usePerspectiveWidgetGetConfigCollectionQuery:u,usePerspectiveWidgetGetConfigByIdQuery:p,usePerspectiveWidgetUpdateConfigByIdMutation:m,usePerspectiveWidgetDeleteMutation:g,usePerspectiveWidgetGetTypeCollectionQuery:h}=n,v=n.enhanceEndpoints({addTagTypes:[r.nP.PERSPECTIVES,r.nP.PERSPECTIVE_DETAIL,r.nP.WIDGETS,r.nP.WIDGET_DETAIL],endpoints:{perspectiveGetConfigCollection:{providesTags:e=>r.yc.PERSPECTIVES()},perspectiveGetConfigById:{providesTags:(e,t,i)=>r.yc.PERSPECTIVE_DETAIL(i.perspectiveId)},perspectiveUpdateConfigById:{invalidatesTags:()=>r.qN.PERSPECTIVES()},perspectiveDelete:{invalidatesTags:()=>r.qN.PERSPECTIVES()},perspectiveCreate:{invalidatesTags:()=>r.qN.PERSPECTIVES()},perspectiveWidgetGetConfigCollection:{providesTags:(e,t,i)=>r.yc.WIDGETS()},perspectiveWidgetGetConfigById:{providesTags:(e,t,i)=>r.yc.WIDGET_DETAIL(i.widgetId,i.widgetType)},perspectiveWidgetUpdateConfigById:{invalidatesTags:()=>r.qN.WIDGETS()},perspectiveWidgetCreate:{invalidatesTags:()=>r.qN.WIDGETS()},perspectiveWidgetDelete:{invalidatesTags:()=>r.qN.WIDGETS()}}}),{usePerspectiveCreateMutation:f,usePerspectiveGetConfigCollectionQuery:y,usePerspectiveGetConfigByIdQuery:b,usePerspectiveUpdateConfigByIdMutation:x,usePerspectiveDeleteMutation:j,usePerspectiveWidgetCreateMutation:w,usePerspectiveWidgetGetConfigCollectionQuery:C,usePerspectiveWidgetGetConfigByIdQuery:S,usePerspectiveWidgetUpdateConfigByIdMutation:T,usePerspectiveWidgetDeleteMutation:I,usePerspectiveWidgetGetTypeCollectionQuery:k}=v},14138(e,t,i){"use strict";i.d(t,{y:()=>b});var r=i(53996),n=i(41630),l=i(62930),a=i(86818),o=i(28792),s=i(87632),d=i(63364),c=i(10600),u=i(35864),p=i(55638),m=i(82763),g=i(57330);class h{async run(e){let{messageBus:t}=e;try{let e=await this.executeDeleteRequest();if((0,u.isNil)(e))return void await this.handleCompletion();let i=new m.j({jobRunId:e,title:this.title,onJobCompletion:async e=>{try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}}});t.registerHandler(i)}catch(e){await this.handleJobFailure(e),(0,p.Ay)(new p.$g(e.message))}}async executeDeleteRequest(){var e;let t=await n.M_.dispatch(g.FH.endpoints.recycleBinDeleteItems.initiate({body:{items:this.itemIds}}));return(0,u.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,p.Ay)(new p.hD(t.error)),null)}async handleCompletion(){var e;n.M_.dispatch(g.FH.util.invalidateTags(r.qN.RECYCLING_BIN())),null==(e=this.onFinish)||e.call(this)}async handleJobFailure(e){console.error("Recycle bin delete job failed:",e)}constructor(e){this.itemIds=e.itemIds,this.elementTypes=e.elementTypes,this.title=e.title,this.onFinish=e.onFinish}}var v=i(59385);class f{async run(e){let{messageBus:t}=e;try{let e=await this.executeRestoreRequest();if((0,u.isNil)(e))return void await this.handleCompletion();let i=new m.j({jobRunId:e,title:this.title,onJobCompletion:async e=>{try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}}});t.registerHandler(i)}catch(e){await this.handleJobFailure(e),(0,p.Ay)(new p.$g(e.message))}}async executeRestoreRequest(){var e;let t=await n.M_.dispatch(g.FH.endpoints.recycleBinRestoreItems.initiate({body:{items:this.itemIds}}));return(0,u.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,p.Ay)(new p.hD(t.error)),null)}async handleCompletion(){var e;n.M_.dispatch((0,v.refreshTreeByElementType)({elementTypes:this.elementTypes})),n.M_.dispatch(g.FH.util.invalidateTags(r.qN.RECYCLING_BIN())),null==(e=this.onFinish)||e.call(this)}async handleJobFailure(e){console.error("Recycle bin restore job failed:",e)}constructor(e){this.itemIds=e.itemIds,this.elementTypes=e.elementTypes,this.title=e.title,this.onFinish=e.onFinish}}var y=i(21429);let b=()=>{let e=(0,n.jL)(),{t}=(0,y.useTranslation)(),[i]=(0,g.$w)(),u=d.kL.get(c.K.executionEngine);return{restoreItems:async(e,i)=>{try{let r=new f({itemIds:e.map(e=>e.id),elementTypes:e.map(e=>(0,s.sv)(e.type)),title:t("recycle-bin.actions.restore.title"),onFinish:i});await u.runJob(r)}catch(e){(0,o.A)(new a.A("Failed to restore item(s) from recycle bin")),null==i||i()}},removeItems:async(e,i)=>{try{let r=new h({itemIds:e.map(e=>e.id),elementTypes:e.map(e=>(0,s.sv)(e.type)),title:t("recycle-bin.actions.delete.title"),onFinish:i});await u.runJob(r)}catch(e){(0,o.A)(new a.A("Failed to remove item(s) from recycle bin")),null==i||i()}},flush:async e=>{let t=i();try{let i=await t;void 0!==i.error&&(0,o.A)(new l.Ay(i.error)),null==e||e()}catch(e){(0,o.A)(new a.A("Failed to flush recycle bin"))}},refreshRecycleBin:()=>{e(g.FH.util.invalidateTags(r.qN.RECYCLING_BIN()))}}}},57330(e,t,i){"use strict";i.d(t,{$w:()=>o,FH:()=>n});var r=i(53073);let n=i(1371).FH.enhanceEndpoints({addTagTypes:[r.tagNames.RECYCLE_BIN],endpoints:{recycleBinGetCollection:{providesTags:(e,t,i)=>{var n;let l=[];return null==e||null==(n=e.items)||n.forEach(e=>{l.push(...r.providingTags.RECYCLING_BIN_DETAIL(e.id))}),[...l,...r.providingTags.RECYCLING_BIN()]}},recycleBinDeleteItems:{invalidatesTags:(e,t,i)=>r.invalidatingTags.RECYCLING_BIN()},recycleBinFlush:{invalidatesTags:()=>r.invalidatingTags.RECYCLING_BIN()},recycleBinRestoreItems:{invalidatesTags:(e,t,i)=>r.invalidatingTags.RECYCLING_BIN()}}}),{useRecycleBinGetCollectionQuery:l,useRecycleBinDeleteItemsMutation:a,useRecycleBinFlushMutation:o,useRecycleBinRestoreItemsMutation:s}=n},1371(e,t,i){"use strict";i.d(t,{FH:()=>r,aP:()=>n});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Recycle Bin"]}).injectEndpoints({endpoints:e=>({recycleBinGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/recycle-bin/items",method:"POST",body:e.body}),providesTags:["Recycle Bin"]}),recycleBinDeleteItems:e.mutation({query:e=>({url:"/pimcore-studio/api/recycle-bin/delete",method:"DELETE",body:e.body}),invalidatesTags:["Recycle Bin"]}),recycleBinFlush:e.mutation({query:()=>({url:"/pimcore-studio/api/recycle-bin/flush",method:"DELETE"}),invalidatesTags:["Recycle Bin"]}),recycleBinRestoreItems:e.mutation({query:e=>({url:"/pimcore-studio/api/recycle-bin/restore",method:"POST",body:e.body}),invalidatesTags:["Recycle Bin"]})}),overrideExisting:!1}),{useRecycleBinGetCollectionQuery:n,useRecycleBinDeleteItemsMutation:l,useRecycleBinFlushMutation:a,useRecycleBinRestoreItemsMutation:o}=r},74234(e,t,i){"use strict";i.d(t,{w:()=>a});var r=i(41834),n=i(88754),l=i(40119);function a(){return{sensors:(0,r.useSensors)((0,r.useSensor)(r.PointerSensor,{activationConstraint:{distance:8}}),(0,r.useSensor)(r.KeyboardSensor,{coordinateGetter:n.sortableKeyboardCoordinates})),modifiers:[l.restrictToVerticalAxis],collisionDetection:r.closestCenter,strategy:n.verticalListSortingStrategy}}},73761(e,t,i){"use strict";i.d(t,{f:()=>l});var r=i(88754),n=i(74979);function l(e,t){let{attributes:i,listeners:l,setNodeRef:a,transform:o,transition:s,isDragging:d}=(0,r.useSortable)({id:e,disabled:null==t?void 0:t.disabled});return{attributes:i,listeners:l,setNodeRef:a,style:{transform:n.Ks.Transform.toString(o),transition:s,opacity:d?.5:1,cursor:(null==t?void 0:t.disabled)===!0?"default":"grab"}}}},10840(e,t,i){"use strict";i.d(t,{g:()=>u});var r=i(68788),n=i(30698),l=i(74848),a=i(47867),o=i(66707),s=i(8412),d=i(66634);let c=[{config:[],key:"preview",group:["system"],sortable:!1,editable:!1,exportable:!1,localizable:!1,locale:null,type:"system.preview",frontendType:"asset-preview",filterable:!1},{config:[],key:"id",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.id",frontendType:"id",filterable:!0},{config:[],key:"type",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!1},{config:[],key:"filename",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!0},{config:[],key:"fullpath",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"asset-link",filterable:!0}],u=e=>{let{ConfigurationComponent:t,ContextComponent:i,useSidebarOptions:u,...p}=e;return{...p,ContextComponent:(0,r._)(i),ConfigurationComponent:()=>{let{useDataQueryHelper:e}=(0,s.t)(),{setSelectedColumns:i}=(0,o.K)(),{setAvailableColumns:r}=(0,d.m)(),{setDataLoadingState:n}=e();return(0,a.useEffect)(()=>{let e=[],t=["type","fullpath","preview"];for(let i of c)t.includes(i.key)&&e.push({key:i.key,locale:i.locale,type:i.type,config:i.config,sortable:i.sortable,editable:i.editable,localizable:i.localizable,exportable:i.exportable,frontendType:i.frontendType,originalApiDefinition:i,group:i.group});i(e),r(c),n("config-changed")},[]),(0,l.jsx)(t,{})},useSidebarOptions:(0,n.f)(u,{saveEnabled:!1})}}},20168(e,t,i){"use strict";i.d(t,{g:()=>u});var r=i(68788),n=i(30698),l=i(74848),a=i(47867),o=i(66707),s=i(8412),d=i(66634);let c=[{config:[],key:"id",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.id",frontendType:"id",filterable:!0},{config:[],key:"type",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!1},{config:[],key:"filename",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!0},{config:[],key:"description",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!0},{config:[],key:"fullpath",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"document-link",filterable:!0},{config:[],key:"title",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!1},{config:[],key:"published",group:["system"],sortable:!0,editable:!0,exportable:!0,localizable:!1,locale:null,type:"system.boolean",frontendType:"boolean",filterable:!0}],u=e=>{let{ConfigurationComponent:t,ContextComponent:i,useSidebarOptions:u,...p}=e;return{...p,ContextComponent:(0,r._)(i),ConfigurationComponent:()=>{let{useDataQueryHelper:e}=(0,s.t)(),{setSelectedColumns:i}=(0,o.K)(),{setAvailableColumns:r}=(0,d.m)(),{setDataLoadingState:n}=e();return(0,a.useEffect)(()=>{let e=[],t=["type","fullpath","title"];for(let i of c)t.includes(i.key)&&e.push({key:i.key,locale:i.locale,type:i.type,config:i.config,sortable:i.sortable,editable:i.editable,localizable:i.localizable,exportable:i.exportable,frontendType:i.frontendType,originalApiDefinition:i,group:i.group});i(e),r(c),n("config-changed")},[]),(0,l.jsx)(t,{})},useSidebarOptions:(0,n.f)(u,{saveEnabled:!1})}}},68366(e,t,i){"use strict";i.d(t,{Q:()=>c});var r=i(66707),n=i(20351),l=i(35747),a=i(63155),o=i(63364),s=i(10600),d=i(66634);let c=()=>{let{selectedColumns:e}=(0,r.K)(),{availableColumns:t}=(0,d.m)(),{selectedClassDefinition:i}=(0,l.p)(),{dataLoadingState:c,setDataLoadingState:u}=(0,n.E)(),{value:p}=(0,a.I)(),m=(0,o.Lt)(s.K["DynamicTypes/ObjectRegistry"]),g=!1;"string"==typeof p&&m.hasDynamicType(p)&&(g=m.getDynamicType(p).allowClassSelectionInSearch&&(null==i?void 0:i.id)!==void 0);let h=e.map(e=>({key:e.key,type:e.type,locale:e.locale,config:e.config}));return t.filter(e=>Array.isArray(e.group)&&e.group.includes("system")).forEach(e=>{h.some(t=>t.key===e.key)||h.push({key:e.key,type:e.type,locale:e.locale,config:[]})}),{getArgs:()=>({classId:g?null==i?void 0:i.id:void 0,body:{columns:h,filters:{includeDescendants:!0,page:1,pageSize:20}}}),hasRequiredArgs:()=>!0,dataLoadingState:c,setDataLoadingState:u}}},38965(e,t,i){"use strict";i.d(t,{FH:()=>r,KQ:()=>l,PE:()=>o,Qw:()=>d,fd:()=>s,pF:()=>a});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Search"]}).injectEndpoints({endpoints:e=>({assetGetSearchConfiguration:e.query({query:()=>({url:"/pimcore-studio/api/search/configuration/assets"}),providesTags:["Search"]}),assetGetSearch:e.query({query:e=>({url:"/pimcore-studio/api/search/assets",method:"POST",body:e.body}),providesTags:["Search"]}),dataObjectGetSearchConfiguration:e.query({query:e=>({url:"/pimcore-studio/api/search/configuration/data-objects",params:{classId:e.classId}}),providesTags:["Search"]}),dataObjectGetSearch:e.query({query:e=>({url:"/pimcore-studio/api/search/data-objects",method:"POST",body:e.body,params:{classId:e.classId}}),providesTags:["Search"]}),documentGetSearch:e.query({query:e=>({url:"/pimcore-studio/api/search/documents",method:"POST",body:e.body}),providesTags:["Search"]}),simpleSearchPreviewGet:e.query({query:e=>({url:`/pimcore-studio/api/search/preview/${e.elementType}/${e.id}`}),providesTags:["Search"]}),simpleSearchGet:e.query({query:e=>({url:"/pimcore-studio/api/search",params:{page:e.page,pageSize:e.pageSize,searchTerm:e.searchTerm}}),providesTags:["Search"]})}),overrideExisting:!1}),{useAssetGetSearchConfigurationQuery:n,useAssetGetSearchQuery:l,useDataObjectGetSearchConfigurationQuery:a,useDataObjectGetSearchQuery:o,useDocumentGetSearchQuery:s,useSimpleSearchPreviewGetQuery:d,useSimpleSearchGetQuery:c}=r},18037(e,t,i){"use strict";i.d(t,{W:()=>a});var r=i(63824),n=i(35864),l=i(47867);let a=()=>{let{data:e,isLoading:t}=(0,r.Xz)(),i=(0,l.useMemo)(()=>{let t={};return null!=e&&e.forEach(e=>{let i=null==e?void 0:e.locale;null!=i&&""!==i&&(null==e?void 0:e.displayName)!==null&&(null==e?void 0:e.displayName)!==void 0&&""!==e.displayName&&(t[i]=e.displayName)}),t},[e]);return{lookupMap:i,isLoading:t,getDisplayName:e=>(0,n.isNil)(e)||!(0,n.isString)(e)?"Unknown":i[e]??e.toUpperCase()}}},7566(e,t,i){"use strict";i.d(t,{F:()=>o});var r=i(47867),n=i(46423),l=i(19808),a=i(35864);let o=e=>{let[t,i]=(0,r.useState)([]),[o,s]=(0,r.useState)(!0),{getDefaultKeyBindings:d}=(0,n.o)(),{isAuthenticated:c}=(0,l.X)();return(0,r.useEffect)(()=>{(async()=>{if(!(0,a.isNil)(c)&&c)try{s(!0);let t=await d(),r=new Map((e??[]).map(e=>[e.action,e])),n=t.items.map(e=>r.get(e.action)??e);i(n)}catch(t){console.error("error loading default key bindings",t),i(e??[])}finally{s(!1)}})()},[e,c]),{mergedKeyBindings:t,isLoading:o}}},15973(e,t,i){"use strict";i.d(t,{$:()=>n,b:()=>r});let r=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:20,t="abcdefghijklmnopqrstuvwxyz0123456789",i="",r=new Uint32Array(e);window.crypto.getRandomValues(r);for(let n=0;n{let t={default:[],bundles:[]};return e.forEach(e=>{null!==e.category&&0!==e.category.length?t.bundles.push(e):t.default.push(e)}),t}},73612(e,t,i){"use strict";i.d(t,{FH:()=>n,Pd:()=>a,S2:()=>l});var r=i(53996);let n=i(74385).FH.enhanceEndpoints({addTagTypes:[r.nP.ROLE],endpoints:{roleGetCollection:{providesTags:()=>r.yc.ROLE()}}}),{useRoleGetCollectionQuery:l,useRoleGetShareCollectionQuery:a}=n},74385(e,t,i){"use strict";i.d(t,{FH:()=>r});let r=i(53073).api.enhanceEndpoints({addTagTypes:["Role Management"]}).injectEndpoints({endpoints:e=>({roleCloneById:e.mutation({query:e=>({url:`/pimcore-studio/api/role/clone/${e.id}`,method:"POST",body:e.body}),invalidatesTags:["Role Management"]}),roleFolderCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/role/folder",method:"POST",body:e.body}),invalidatesTags:["Role Management"]}),roleCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/role",method:"POST",body:e.body}),invalidatesTags:["Role Management"]}),roleFolderDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/role/folder/${e.id}`,method:"DELETE"}),invalidatesTags:["Role Management"]}),roleGetById:e.query({query:e=>({url:`/pimcore-studio/api/role/${e.id}`}),providesTags:["Role Management"]}),roleUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/role/${e.id}`,method:"PUT",body:e.updateRole}),invalidatesTags:["Role Management"]}),roleDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/role/${e.id}`,method:"DELETE"}),invalidatesTags:["Role Management"]}),roleGetCollection:e.query({query:()=>({url:"/pimcore-studio/api/roles"}),providesTags:["Role Management"]}),roleListWithPermission:e.query({query:e=>({url:"/pimcore-studio/api/roles/with-permission",params:{permission:e.permission}}),providesTags:["Role Management"]}),roleGetTree:e.query({query:e=>({url:"/pimcore-studio/api/roles/tree",params:{parentId:e.parentId}}),providesTags:["Role Management"]}),roleGetShareCollection:e.query({query:()=>({url:"/pimcore-studio/api/roles-share-list"}),providesTags:["Role Management"]}),roleSearch:e.query({query:e=>({url:"/pimcore-studio/api/role/search",params:{searchQuery:e.searchQuery}}),providesTags:["Role Management"]})}),overrideExisting:!1}),{useRoleCloneByIdMutation:n,useRoleFolderCreateMutation:l,useRoleCreateMutation:a,useRoleFolderDeleteByIdMutation:o,useRoleGetByIdQuery:s,useRoleUpdateByIdMutation:d,useRoleDeleteByIdMutation:c,useRoleGetCollectionQuery:u,useRoleListWithPermissionQuery:p,useRoleGetTreeQuery:m,useRoleGetShareCollectionQuery:g,useRoleSearchQuery:h}=r},52178(e,t,i){"use strict";i.d(t,{DA:()=>h,Dg:()=>l,FH:()=>n,Fl:()=>d,Fv:()=>j,QT:()=>y,SC:()=>w,Xs:()=>p,a6:()=>g,a_:()=>S,cR:()=>b,ct:()=>a,eP:()=>f,gA:()=>C,kj:()=>o,rW:()=>u,sp:()=>s,sz:()=>v,v9:()=>c,wm:()=>x,xr:()=>m});var r=i(53996);let n=i(29124).FH.enhanceEndpoints({addTagTypes:[r.nP.USERS,r.nP.USER_DETAIL,r.nP.USER_TREE],endpoints:{userUploadImage:e=>{let t=e.query;void 0!==t&&(e.query=e=>{let i=t(e),r=new FormData;return(r.append("userImage",e.body.userImage),null===i||"object"!=typeof i)?i:{...i,body:r}})},userGetCollection:{providesTags:(e,t,i)=>{let n=[];return void 0!==e&&(n=null==e?void 0:e.items.flatMap(e=>r.yc.USER_DETAIL(e.id))),[...n,...r.yc.USERS()]}},userGetById:{providesTags:(e,t,i)=>r.yc.USER_DETAIL(i.id)},userDeleteById:{invalidatesTags:(e,t,i)=>r.qN.USER_DETAIL(i.id)},userUpdateById:{invalidatesTags:(e,t,i)=>r.qN.USER_DETAIL(i.id)},userGetTree:{providesTags:(e,t,i)=>{let n=[];return void 0!==e&&(n=null==e?void 0:e.items.flatMap(e=>r.yc.USER_DETAIL(e.id))),[...n,...r.yc.USER_TREE(),...r.yc.USERS()]}}}}),{useUserCloneByIdMutation:l,useUserCreateMutation:a,useUserFolderCreateMutation:o,useUserGetCurrentInformationQuery:s,useUserGetByIdQuery:d,useUserUpdateByIdMutation:c,useUserDeleteByIdMutation:u,useUserFolderDeleteByIdMutation:p,useUserDefaultKeyBindingsQuery:m,useUserGetAvailablePermissionsQuery:g,useUserGetCollectionQuery:h,useUserResetPasswordMutation:v,usePimcoreStudioApiUserSearchQuery:f,useUserUpdatePasswordByIdMutation:y,useUserUploadImageMutation:b,useUserGetImageQuery:x,useUserGetTreeQuery:j,useUserTokenLinkGetQuery:w,useLazyUserTokenLinkGetQuery:C,useUserGetShareCollectionQuery:S}=n},11324(e,t,i){"use strict";i.d(t,{P:()=>o});var r=i(46881),n=i(20120),l=i(47867),a=i(61062);let o=()=>{let e=(0,r.useAppSelector)(n.T),t=(0,l.useContext)(a.a);return null!==e&&e.nodeId===t.nodeId}},83196(e,t,i){"use strict";i.d(t,{J:()=>d});var r=i(41630),n=i(20120),l=i(83015),a=i(60124),o=i(3416),s=i(35864);let d=()=>{let e=(0,r.jL)();function t(){let e=r.M_.getState(),t=(0,n.y6)(e);return l.Model.fromJson(t)}function i(){let e=r.M_.getState(),t=(0,n.D9)(e);return l.Model.fromJson(t)}return{openMainWidget:function(t){e((0,n.OS)(t))},updateWidget:function(t){e((0,n.WK)(t))},openBottomWidget:function(t){e((0,n.mB)(t))},openLeftWidget:function(t){e((0,n.wd)(t))},openRightWidget:function(t){e((0,n.Xx)(t))},switchToWidget:function(t){e((0,n.pg)(t))},closeWidget:function(r){let d=function(e){try{let i=t().getNodeById(e);if(!(0,s.isUndefined)(i)&&i instanceof l.TabNode)return{widgetId:e,node:i}}catch(e){console.warn("Could not retrieve inner widget data for event:",e)}return null}(r),c=function(e){try{let t=i().getNodeById(e);if(!(0,s.isUndefined)(t)&&t instanceof l.TabNode)return{widgetId:e,node:t}}catch(e){console.warn("Could not retrieve outer widget data for event:",e)}return null}(r);if(e((0,n.Jj)(r)),!(0,s.isNull)(d)){let e={identifier:{type:o.m["widget-manager:inner:widget-closed"],id:r},payload:d};a.B.publish(e)}if(!(0,s.isNull)(c)){let e={identifier:{type:o.m["widget-manager:outer:widget-closed"],id:r},payload:c};a.B.publish(e)}},isMainWidgetOpen:function(e){return void 0!==t().getNodeById(e)},hasOuterWidget:function(e){return void 0!==i().getNodeById(e)},getOpenedMainWidget:function(){var e;return null==(e=t().getActiveTabset())?void 0:e.getSelectedNode()}}}},72913(e,t,i){"use strict";i.d(t,{U:()=>l});var r=i(21429),n=i(18196);let l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{t:i}=(0,r.useTranslation)(),l=e.getConfig(),{titleOverride:a,iconOverride:o}=t;return{title:(0,n.uI)(a)?a:(0,n.uI)(l.translationKey)?i(l.translationKey):(0,n.uI)(l.label)?l.label:e.getName(),icon:o??l.icon??{value:"widget-default",type:"name"}}}},57193(e,t,i){"use strict";i.d(t,{I:()=>c,Q:()=>d});var r=i(31635),n=i(62446),l=i(32234),a=i(62059),o=i(35864),s=i(10600);class d{getWidgets(e){return this.widgets[e]??[]}getAllWidgets(){return{...this.widgets}}addWidget(e,t,i){var r;let n=this.widgetRegistry.getWidget(e.widgetType);if(!(0,o.isUndefined)(null==n?void 0:n.isVisible)&&!n.isVisible(e))return null;let l=e.id;for(;this.usedIds.has(l);)l=`${(0,a.u)()}_${e.id}`;this.usedIds.add(l);let s={...e,id:l},d={id:l,type:"tab",name:e.name,component:e.widgetType,enableClose:!!(null==(r=e.additionalAttributes)?void 0:r.enableClose),config:s},c={widget:s,position:t,tabNode:d};return(0,o.isUndefined)(this.widgets[t])&&(this.widgets[t]=[]),void 0!==i&&i>=0?this.widgets[t].splice(i,0,c):this.widgets[t].push(c),l}removeWidget(e){for(let{widgets:t}of this.iterateWidgets()){let i=t.findIndex(t=>t.widget.id===e);if(-1!==i)return t.splice(i,1),!0}return!1}moveWidget(e,t,i){for(let{widgets:r}of this.iterateWidgets()){let n=r.findIndex(t=>t.widget.id===e);if(-1!==n){let[e]=r.splice(n,1);return e.position=t,(0,o.isUndefined)(this.widgets[t])&&(this.widgets[t]=[]),void 0!==i&&i>=0?this.widgets[t].splice(i,0,e):this.widgets[t].push(e),!0}}return!1}updateWidgetConfig(e,t){for(let{widgets:i}of this.iterateWidgets()){let r=i.find(t=>t.widget.id===e);if(!(0,o.isNil)(r))return r.widget={...r.widget,...t},r.tabNode.config={...r.tabNode.config,...t},(0,o.isNil)(t.name)||(r.tabNode.name=t.name),!0}return!1}getWidgetPosition(e){for(let{position:t,widgets:i}of this.iterateWidgets()){let r=i.findIndex(t=>t.widget.id===e);if(-1!==r)return{position:t,index:r}}return null}setExpandedLeft(e){this.expandedLeft=e}setExpandedRight(e){this.expandedRight=e}getExpandedLeft(){return this.expandedLeft??null}getExpandedRight(){return this.expandedRight??null}iterateWidgets(){return Object.entries(this.widgets).map(e=>{let[t,i]=e;return{position:t,widgets:i}})}constructor(e,t,i,r,n,l){this.widgets=e,this.usedIds=t,this.widgetRegistry=i,this.activePerspective=r,this.expandedLeft=n,this.expandedRight=l}}class c extends l.k{createContext(e,t,i){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,n=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null;return new d(e,t,this.widgetRegistry,i,r,n)}constructor(e){super(),this.widgetRegistry=e}}c=(0,r.Cg)([(0,n.injectable)(),(0,r.Qj)(0,(0,n.inject)(s.K.widgetManager)),(0,r.Sn)("design:type",Function),(0,r.Sn)("design:paramtypes",["u"a});var r=i(20120),n=i(35864),l=i(44499);let a=new class{registerStaticWidget(e){!(0,n.isNil)(e.id)&&(0,n.isNil)(this.getStaticWidget(e.id))&&this.widgets.push(e)}getStaticWidget(e){return this.widgets.find(t=>t.id===e)}supports(e){return!(0,n.isNil)(e.id)&&!(0,n.isNil)(this.getStaticWidget(e.id))}cleanConfig(e){return{id:e.id,type:"tab",config:{}}}restore(e,t){if((0,n.isNil)(e.id))return!1;let i=this.getStaticWidget(e.id);if(!(0,n.isNil)(i)){if(!(0,n.isNil)(i.permission)&&!(0,l.J)(i.permission))return!1;let a=(0,n.merge)({},e,i);return t((0,r.WK)(a)),!0}return!1}constructor(){this.widgets=[]}}},83942(e,t,i){"use strict";i.d(t,{Y:()=>a});var r=i(31635),n=i(62446),l=i(47867);class a{registerWidget(e){let t={...e,component:(0,l.memo)(e.component),defaultGlobalContext:e.defaultGlobalContext??!0};this.widgets.push(t)}getWidget(e){return this.widgets.find(t=>t.name===e)}constructor(){this.widgets=[]}}a=(0,r.Cg)([(0,n.injectable)()],a)},86049(e,t,i){"use strict";i.d(t,{$:()=>p,Q_:()=>u});var r=i(17530),n=i(46881),l=i(73565),a=i(63364),o=i(10600),s=i(83015),d=i(35864);let c="widget_manager_inner_model",u=e=>(0,d.isNil)(e)||0===e?c:`${c}_${e}`,p=e=>(0,r.U)(e,()=>{let e=n.store.getState(),t=(0,l.xu)(e);return u(null==t?void 0:t.id)},e=>{let t=a.kL.get(o.K.widgetRestorerRegistry),i=s.Model.fromJson(e.innerModel),r=[],n=[];return i.visitNodes(e=>{if("tab"===e.getType()){let i=e.toJson();t.supports(i)?n.push({id:e.getId(),config:t.cleanConfig(i)}):r.push(e.getId())}}),r.forEach(e=>{i.doAction(s.Actions.deleteTab(e))}),n.forEach(e=>{let{id:t,config:r}=e;i.doAction(s.Actions.updateNodeAttributes(t,r))}),i.toJson()})},20120(e,t,i){"use strict";i.d(t,{D9:()=>C,y6:()=>w,T:()=>S,C_:()=>m,wd:()=>y,mB:()=>f,ue:()=>s,WK:()=>v,XB:()=>g,pg:()=>x,Jj:()=>j,OS:()=>h,Xx:()=>b,I7:()=>p,ZI:()=>c});var r=i(46881),n=i(88605),l=i(83015),a=i(48333),o=i(86049);let s={outerModel:(0,a.k)(),innerModel:{global:{tabEnableRename:!1,tabSetEnableMaximize:!1,enableUseVisibility:!0},layout:{id:"main",type:"row",children:[{type:"tabset",id:"main_tabset",enableDeleteWhenEmpty:!1,weight:50,selected:0,children:[]}]}},mainWidgetContext:null},d=(0,n.createSlice)({name:"widget-manager",initialState:s,reducers:{updateOuterModel:(e,t)=>{e.outerModel={...t.payload}},updateInnerModel:(e,t)=>{e.innerModel={...t.payload}},updateMainWidgetContext:(e,t)=>{e.mainWidgetContext=t.payload},setActiveWidgetById:(e,t)=>{let i=l.Model.fromJson(e.outerModel),r=l.Model.fromJson(e.innerModel),n=i.getNodeById(t.payload),a=i,o=!0;if(void 0===n&&(n=r.getNodeById(t.payload),a=r,o=!1),void 0!==n){let e=n.getParent();void 0!==e&&(e instanceof l.BorderNode&&e.getSelectedNode()!==n||!(e instanceof l.BorderNode))&&a.doAction(l.Actions.selectTab(n.getId()))}o?e.outerModel={...a.toJson()}:e.innerModel={...a.toJson()}},openMainWidget:(e,t)=>{let i,r=l.Model.fromJson(e.innerModel);void 0!==t.payload.id&&(i=r.getNodeById(t.payload.id)),void 0!==i?r.doAction(l.Actions.selectTab(i.getId())):r.doAction(l.Actions.addNode(t.payload,"main_tabset",l.DockLocation.CENTER,-1,!0)),e.innerModel={...r.toJson()}},updateWidget:(e,t)=>{let i,r=l.Model.fromJson(e.innerModel);void 0!==t.payload.id&&(i=r.getNodeById(t.payload.id)),void 0!==i&&(r.doAction(l.Actions.updateNodeAttributes(i.getId(),t.payload)),e.innerModel={...r.toJson()})},openBottomWidget:(e,t)=>{let i,r=l.Model.fromJson(e.outerModel);void 0!==t.payload.id&&(i=r.getNodeById(t.payload.id)),void 0!==i?r.doAction(l.Actions.selectTab(i.getId())):r.doAction(l.Actions.addNode(t.payload,"bottom_tabset",l.DockLocation.CENTER,-1,!0)),e.outerModel={...r.toJson()}},openLeftWidget:(e,t)=>{let i,r=l.Model.fromJson(e.outerModel);void 0!==t.payload.id&&(i=r.getNodeById(t.payload.id)),void 0!==i?r.doAction(l.Actions.selectTab(i.getId())):r.doAction(l.Actions.addNode(t.payload,"border_left",l.DockLocation.CENTER,-1,!0)),e.outerModel={...r.toJson()}},openRightWidget:(e,t)=>{let i,r=l.Model.fromJson(e.outerModel);void 0!==t.payload.id&&(i=r.getNodeById(t.payload.id)),void 0!==i?r.doAction(l.Actions.selectTab(i.getId())):r.doAction(l.Actions.addNode(t.payload,"border_right",l.DockLocation.CENTER,-1,!0)),e.outerModel={...r.toJson()}},closeWidget:(e,t)=>{let i=l.Model.fromJson(e.outerModel),r=l.Model.fromJson(e.innerModel),n=i.getNodeById(t.payload),a=i,o=!0;if(void 0===n&&(n=r.getNodeById(t.payload),a=r,o=!1),void 0!==n&&a.doAction(l.Actions.deleteTab(n.getId())),o)e.outerModel={...a.toJson()};else{let t=a.getActiveTabset(),i=!1;if(void 0!==t){var s;let e=null==(s=t.getChildren())?void 0:s[0];void 0!==e&&(a.doAction(l.Actions.selectTab(e.getId())),i=!0)}if(!i){let e;for(let t of a.getFirstTabSet().getParent().getChildren()){let i=t.getChildren();if(i.length>0){e=i[0];break}}void 0!==e&&a.doAction(l.Actions.selectTab(e.getId()))}e.innerModel={...a.toJson()}}}},selectors:{selectOuterModel:e=>e.outerModel,selectInnerModel:e=>e.innerModel,selectMainWidgetContext:e=>e.mainWidgetContext}}),c=d.name,u=(0,o.$)(d.reducer);(0,r.injectSliceWithState)({...d,reducer:u});let{updateOuterModel:p,updateMainWidgetContext:m,updateInnerModel:g,openMainWidget:h,updateWidget:v,openBottomWidget:f,openLeftWidget:y,openRightWidget:b,setActiveWidgetById:x,closeWidget:j}=d.actions,{selectInnerModel:w,selectOuterModel:C,selectMainWidgetContext:S}=d.selectors},32981(e,t,i){"use strict";i.d(t,{f:()=>n});var r,n=((r={}).DOCUMENT="document",r.DATA_OBJECT="dataObject",r.ASSET="asset",r.TRANSLATION="translation",r.CLASS_EDITOR="classEditor",r)},92493(e,t,i){"use strict";i.d(t,{P:()=>l});var r=i(47867),n=i(35864);function l(e,t){let[i,l]=(0,r.useState)(e),a=(0,r.useRef)(e);return(0,r.useEffect)(()=>{(0,n.isEqual)(e,a.current)||(0,n.isEqual)(e,i)||(l(e),a.current=e)},[e,i]),{value:i,handleChange:(0,r.useCallback)(e=>{a.current=e,l(e),null==t||t(e)},[t])}}},17530(e,t,i){"use strict";i.d(t,{U:()=>a,c:()=>l});var r=i(35864),n=i(86833);let l=e=>{try{let t=(0,n._S)(e);if((0,r.isNil)(t))return;return JSON.parse(t)}catch(t){console.warn(`Could not load state for key "${e}"`,t);return}},a=function(e,t){let i,l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:e=>e,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:()=>!0,o=(0,r.debounce)(e=>{try{let a=l(e),o=(0,r.isFunction)(t)?t(e):t;if(!(0,r.isEqual)(a,i)){let e=JSON.stringify(a);(0,n.AP)(o,e),i=a}}catch(e){console.warn("Could not save state",e)}},200);return(t,i)=>{let n=e(t,i);return t!==n&&!(0,r.isUndefined)(n)&&a(n)&&o(n),n}}},9094(e,t,i){"use strict";i.d(t,{N8:()=>l,WV:()=>s,ZP:()=>o,_W:()=>d});var r=i(35864);let n=["none","mini","extra-small","small","normal","medium","large","extra-large","maxi"],l=(e,t,i)=>{let r={margin:{none:0,mini:e.marginXXS,"extra-small":e.marginXS,small:e.marginSM,normal:e.margin,medium:e.marginMD,large:e.marginLG,"extra-large":e.marginXL,maxi:e.marginXXL},padding:{none:0,mini:e.paddingXXS,"extra-small":e.paddingXS,small:e.paddingSM,normal:e.padding,medium:e.paddingMD,large:e.paddingLG,"extra-large":e.paddingXL,maxi:e.sizeXXL}};return r[i][t]??r[i].normal},a=(e,t,i)=>{if((0,r.isUndefined)(t))return{};if("string"==typeof t){let r=l(e,t,i);return{[i]:`${r}px`}}let n={};for(let[a,o]of Object.entries({x:["Left","Right"],y:["Top","Bottom"],top:["Top"],bottom:["Bottom"],left:["Left"],right:["Right"]}))if(!0===Object.prototype.hasOwnProperty.call(t,a)){let s=t[a];if(!(0,r.isUndefined)(s)){let t=l(e,s,i);for(let e of o)n[`${i}${e}`]=`${t}px`}}return n},o=(e,t)=>a(e,t,"margin"),s=(e,t)=>a(e,t,"padding"),d=(e,t,i,a)=>n.map(n=>((e,t,i,n,a,o)=>{let s=l(o,i,a),d=[];for(let l of n){let n={x:["left","right"],y:["top","bottom"],top:["top"],bottom:["bottom"],left:["left"],right:["right"]}[l];if(!(0,r.isUndefined)(n)){let r=n.map(e=>`${a}-${e}: ${s}px;`).join(" ");d.push(` - &.${e}--${t}-${i} { - ${r} - } - `)}}return d.join("\n")})(e,t,n,a,"margin",i)).join("\n")},32396(e,t,i){"use strict";i.d(t,{$e:()=>d,Bv:()=>f,Gc:()=>r,Jk:()=>v,Kl:()=>g,M9:()=>u,SI:()=>s,Sl:()=>n,b0:()=>h,eX:()=>p,mM:()=>m,o7:()=>c,wc:()=>o,yu:()=>a});let r=e=>String(e).toLowerCase().replace(/[^a-z0-9]/g,"-").replace(/-+/g,"-").replace(/(^-|-$)/g,""),n=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"-";return e.filter(e=>null!=e&&""!==e).map(r).join(t).replace(RegExp(`${t}+`,"g"),t).replace(RegExp(`^${t}|${t}$`,"g"),"")},l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{prefix:i,suffix:r,elementType:l,separator:a="-"}=t;return n([i,l,e,r],a)},a=(e,t)=>l(e,{prefix:"tree-node",elementType:t}),o=(e,t,i)=>null!=e&&""!==e?n(["border-button",e]):null!=t&&""!==t&&null!=i&&""!==i?n(["border-button",i,t]):null!=t&&""!==t?n(["border-button",t]):"border-button",s=e=>null!=e&&""!==e?n(["element-tree",e.replace(/_/g,"-")]):"element-tree",d=(e,t,i)=>null!=i&&""!==i&&null!=t&&""!==t?l(t,{prefix:"tab-title",elementType:i}):l(e,{prefix:"tab-title"}),c=(e,t)=>l(e,{prefix:"tree-node",elementType:t}),u=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{prefix:i="tab",tabKey:r}=t;return void 0!==r?n([i,"content",r,e]):n([i,"content",e])},p=e=>n(["table",e]),m=e=>n(["row",e]),g=(e,t)=>n(["cell",e,t]),h=(e,t)=>n(["context-menu",e,String(t)]),v=e=>n(["context-menu-item",e]),f=(e,t)=>void 0!==t&&""!==t?n([t,"modal",e,"button"]):n(["modal",e,"button"])},46881(e,t,i){"use strict";i.r(t),i.d(t,{ContainerContext:()=>o.Bz,ContainerProvider:()=>o.ts,CrossOriginApiAccessError:()=>c.P3,DEEP_LINK_URL:()=>s.mb,DateTimeConfig:()=>l.M,FALLBACK_LANGUAGE:()=>d.g,LOGIN_URL:()=>s.aW,PASSWORD_RESET_URL:()=>s.UU,PimcoreStudioApiNotAvailableError:()=>c.c4,Trans:()=>u.Trans,addAppMiddleware:()=>r.hb,appConfig:()=>n.U,baseUrl:()=>s.pc,container:()=>o.kL,currentDomain:()=>n.W,dynamicTypeRegistriesServiceIds:()=>a.Y,getPimcoreStudioApi:()=>c.qH,inject:()=>p.inject,injectSliceWithState:()=>r.fu,injectable:()=>p.injectable,isPimcoreStudioApiAvailable:()=>c.BB,rootReducer:()=>r.d$,router:()=>s.QB,routes:()=>s.JZ,serviceIds:()=>a.K,store:()=>r.M_,useAppDispatch:()=>r.jL,useAppSelector:()=>r.GV,useInjection:()=>o.Lt,useMultiInjection:()=>o.EA,useOptionalInjection:()=>o.jx,useTranslation:()=>u.useTranslation,withAppMiddleware:()=>r.eg});var r=i(41630),n=i(34231),l=i(37327),a=i(10600),o=i(63364),s=i(40595),d=i(88358),c=i(46096),u=i(21429),p=i(62446);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},43588(e,t,i){"use strict";i.r(t),i.d(t,{useFormModal:()=>tr.Vl,InheritanceOverlay:()=>e0.x,FormattedDate:()=>eI.X,PimcoreAudio:()=>ig.I,PipelineConfigProviderContext:()=>tJ.T,ElementTreeSearchContainer:()=>ec.s,SortDirections:()=>tB.v,PipelineDynamicGroup:()=>tX.b,Skeleton:()=>tM,elementTreeSlice:()=>W,Toolbar:()=>it.M,Text:()=>t5.E,AssetTarget:()=>s.C,useNodeApiHook:()=>et.B,ManyToOneRelationInput:()=>e5.h1,ReloadPopconfirm:()=>tT.j,GridButton:()=>eR.N,Steps:()=>t0,InputPassword:()=>e8.c,SidebarProvider:()=>tA.G,TextArea:()=>t9.f,ModalTitle:()=>tl.w,TreeElement:()=>ia.l,Divider:()=>E.c,TimePicker:()=>I.A,getLanguageExtensions:()=>t3.R,ModalUpload:()=>to.v,useFieldCollectionItem:()=>eN.ze,useCloseContextMenu:()=>C.U5,IconColorGroupsRegistryService:()=>eU.b,useElementTreeNode:()=>H.W,DataObjectPreview:()=>iC.s,TagList:()=>t7.L,IconButton:()=>eq.K,Slider:()=>tR.A,Form:()=>ey.lV,ImageZoom:()=>eY.P,withError:()=>ib.jT,PathTarget:()=>e5.xD,TreePermissionProvider:()=>ea.P,Compact:()=>x.a,Select:()=>tN.l,DropdownButton:()=>z.g,useTreePermission:()=>eo.H,PipelineConfigProvider:()=>tJ.U,Grid:()=>eO.x,SkeletonAvatar:()=>tO,Block:()=>u.e,validateSecondValueGreater:()=>th.uD,withSuccess:()=>ib.Ej,useNotification:()=>tg.h,ElementTree:()=>q.ng,HotspotDroppable:()=>_.T,FormattedDateTime:()=>ek.Q,Input:()=>e4.p,defaultStyleOptions:()=>eG.X,DebouncedFormRegistry:()=>ew.F,toDayJs:()=>k.Rc,withInfo:()=>ib.$D,Panel:()=>g.Z,Region:()=>tS.T,Split:()=>tG.B,DragOverlay:()=>$,useDynamicFilter:()=>ik.F,Switch:()=>t4.d,Sidebar:()=>tP.B,Tag:()=>t8.v,TextEditor:()=>t2.t,Logo:()=>e7.g,Icon:()=>P.I,ItemSpacer:()=>ex.W,useDebouncedFormContext:()=>ej.s,Tabs:()=>t1.t,Header:()=>ez.Y,useElementTree:()=>K.W,CollapseItem:()=>y.XP,Background:()=>d.V,UploadModal:()=>td.n,ElementTag:()=>U.F,withWarn:()=>ib.fp,NumericRange:()=>th.ls,useFormInstance:()=>ey.hq,useMessage:()=>e9.J,useBreadcrumbSize:()=>p.w,useElementTreeRootNode:()=>X.m,LoginFormContainer:()=>iw.b,FocalPoint:()=>ev.S,PimcoreVideo:()=>iy.$,TagInput:()=>t6.F,TreeNodeContent:()=>Q.A,HotspotImage:()=>eG.d,Button:()=>n.$,SidebarContext:()=>tA.I,useStudioModal:()=>tn.H,Content:()=>j.U,ImportModal:()=>eQ.z,LanguageSelection:()=>e6.v,Tabpanel:()=>ic.k,transformLanguage:()=>e6.z,SplitLayoutDivider:()=>tq.c,Alert:()=>o.F,FocalPointProvider:()=>ef.L,Accordion:()=>r.n,ToolStripBox:()=>ir.k,useEditMode:()=>eO.B,RuleCondition:()=>tI.u,DatePicker:()=>S.l,CodeEditor:()=>f.B,SortButton:()=>tB.n,DefaultCell:()=>e_.A,TreeIdContext:()=>en.n,GridContentRenderer:()=>eB.F,DroppableContextProvider:()=>L.a,SkeletonInput:()=>tL,Pipeline:()=>tK.$,FieldCollectionItemProvider:()=>eN.JE,ContentLayout:()=>w.s,UploadModalProvider:()=>tc.c,PimcoreImage:()=>iv.R,IframeContent:()=>eX.C,VerticalTimeline:()=>is.G,Box:()=>m.a,ConfigLayout:()=>id.v,EditableEmptyPlaceholder:()=>G.b,usePipelineConfig:()=>tZ.e,TreePermissionContext:()=>ea.$,ModalUploadButton:()=>ts.x,SidebarHeadline:()=>t$.j,FieldCollection:()=>eD.Z,PreviewCard:()=>tj.N,sizeOptions:()=>tN.G,DateRangePicker:()=>T.U,Pagination:()=>tv.d,addColumnMeta:()=>eL.f,useDroppable:()=>R.z,TreeContext:()=>q.Uz,SizeTypes:()=>tj.b,TreeExpander:()=>J.K,DebouncedFormProvider:()=>ej.v,useContextMenu:()=>C.EF,withConfirm:()=>tr.lr,createImageThumbnailUrl:()=>eZ.n,FileList:()=>ij,defaultTreeProps:()=>q.Yb,ContextMenuWrapper:()=>C.y9,withTextarea:()=>tr.Ff,Title:()=>ie.h,GeoMap:()=>eF.e,ImagePreview:()=>eZ.k,Paragraph:()=>tf.f,Flex:()=>eh.s,GeoBoundsDrawer:()=>eA.A,GeoPointPicker:()=>e$.g,Draggable:()=>M.s,ElementTreePagerContainer:()=>ed.l,Card:()=>h.Z,MenuItem:()=>e3.D,useDebouncedFormFlush:()=>eT,HorizontalScroll:()=>eV.o,Image:()=>eJ._,PipelineItemCustom:()=>tH.d,ColorPicker:()=>b.s,Segmented:()=>tD.$,useTreeFilter:()=>er._,FormKit:()=>eb.L,withUpload:()=>tr.s1,Spin:()=>tV.t,Droppable:()=>O.g,UsersRolesDropdown:()=>io.p,useTreeId:()=>el.z,Checkbox:()=>v.S,NodeApiHookContext:()=>ee.j,GeoPolyDrawer:()=>eM.B,Popconfirm:()=>ta.i,Progressbar:()=>tC.d,SkeletonButton:()=>t_,ButtonGroup:()=>l.e,WindowModal:()=>tp.m,detectLanguageFromFilename:()=>t3.r,SplitLayout:()=>tU.n,addColumnConfig:()=>eL.K,Space:()=>tz.$,useAlertModal:()=>tt.Z,ModalFooter:()=>ti.j,Portal:()=>ty.Z,Tooltip:()=>il.m,SidebarTitle:()=>tF.F,useUploadModalContext:()=>tu.d,CreatableSelect:()=>iI,NoContent:()=>tm.R,OperationalGrid:()=>iu.H,PQLQueryInput:()=>tx.K,PortalSlot:()=>tb.J,UploadModalButton:()=>ts.Q,useForm:()=>ey.mN,IconTextButton:()=>eW.J,withInput:()=>tr.zE,DragInfoChangeEvent:()=>M.r,Filename:()=>eg.C,Badge:()=>c.E,StackList:()=>tY.N,fromDayJs:()=>k.qj,validateOneFieldEmpty:()=>th.Ab,Modal:()=>te.a,FieldCollectionItemContext:()=>eN.fo,TreeFilterProvider:()=>ei.S,Menu:()=>e2.W,TreeNode:()=>Y.n,droppableContext:()=>L.H,PimcoreDocument:()=>ih.l,FormattedTime:()=>eE.i,ElementTreeSkeleton:()=>es.E,SplitLayoutItem:()=>tW.i,Collapse:()=>y.SD,useModal:()=>ib.hS,Progress:()=>tw.k,IconSelector:()=>eK.N,Empty:()=>ep,treeNodeDefaultProps:()=>Y.G,formatDatePickerDate:()=>k.G8,FieldFilters:()=>em.w,ManyToOneRelation:()=>e5.Pp,AccordionTimeline:()=>a.o,useOperations:()=>ip.U,FieldCollectionRegistry:()=>eP.u,Iframe:()=>eH.v,InputNumber:()=>e1.Y,TreeFilterContext:()=>ei.g,TreeIdProvider:()=>en.b,DynamicFilter:()=>V.C,TreeList:()=>Z.Z,Dropdown:()=>B.m,Breadcrumb:()=>p.Q,UrlLink:()=>im,SanitizeHtml:()=>tk.h,ToolStrip:()=>ii.Z,ManyToOneRelationPath:()=>e5.q9,CollapseHeader:()=>y.$0,SearchInput:()=>tE.D,UploadContext:()=>tc.t,NodeApiHookProvider:()=>ee.X});var r=i(68516),n=i(27994),l=i(95112),a=i(83120),o=i(75240),s=i(94313),d=i(74351),c=i(63558),u=i(59438),p=i(30037),m=i(64756),g=i(68258),h=i(86052),v=i(92428),f=i(28453),y=i(2046),b=i(43748),x=i(23610),j=i(39808),w=i(91206),C=i(67950),S=i(11354),T=i(6546),I=i(26807),k=i(66828),E=i(84567),D=i(74848),N=i(47867),P=i(81898),A=i(44241);let F=(0,A.createStyles)(e=>{let{css:t,token:i}=e;return{dragOverlay:t` - margin-top: 15px; - margin-left: 15px; - display: flex; - gap: 5px; - align-items: center; - justify-content: center; - padding: 5px; - width: max-content; - background: white; - box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05); - box-sizing: border-box; - - .dnd--invalid & { - background: ${i.colorErrorBg}; - color: ${i.colorErrorActive}; - } - - - .dnd__overlay--icon-valid { - color: ${i.colorSuccessActive}; - display: none; - } - - .dnd__overlay--icon-invalid { - color: ${i.colorErrorActive}; - display: none; - } - - .dnd__overlay--icon-dragging { - display: flex - } - - .dnd__overlay--icon-valid, .dnd--has-valid-drop & .dnd__overlay--icon-dragging, .dnd--invalid & .dnd__overlay--icon-dragging { - display: none; - } - - .dnd--has-valid-drop & .dnd__overlay--icon-valid { - display: flex; - } - .dnd--invalid & .dnd__overlay--icon-invalid { - display: flex; - } - - `}}),$=e=>{let{styles:t}=F();return(0,D.jsxs)("div",{className:["dnd__overlay",t.dragOverlay].join(" "),children:[(0,D.jsx)(P.I,{className:"dnd__overlay--icon-dragging",value:"drag-option"}),(0,D.jsx)(P.I,{className:"dnd__overlay--icon-valid",value:"checkmark"}),(0,D.jsx)(P.I,{className:"dnd__overlay--icon-invalid",value:"cancel"}),(0,D.jsx)(P.I,{...e.info.icon})," ",e.info.title]})};var M=i(16907),O=i(20597),_=i(9298),L=i(81147),R=i(94788),B=i(99154),z=i(73789),V=i(47972),G=i(8561),U=i(67104),q=i(41989),W=i(59385),K=i(21981),H=i(23050),X=i(39803),J=i(27839),Z=i(68494),Y=i(93121),Q=i(41241),ee=i(54604),et=i(23218),ei=i(10716),er=i(78254),en=i(81194),el=i(70916),ea=i(86218),eo=i(17388),es=i(27202),ed=i(56292),ec=i(63186),eu=i(86569);let ep=e=>(0,D.jsx)(eu.Empty,{...e});var em=i(56974),eg=i(68194),eh=i(25750),ev=i(71504),ef=i(27886),ey=i(57231),eb=i(8255),ex=i(1185),ej=i(15155),ew=i(58487),eC=i(63364),eS=i(10600);function eT(e){let t=(0,ej.s)(e);if(void 0===t)throw Error("useDebouncedFormFlush: No tag provided. Either pass a tag as argument or render inside a DebouncedFormProvider.");let i=(0,eC.Lt)(eS.K.debouncedFormRegistry);return(0,N.useCallback)(()=>{i.flushByTag(t)},[i,t])}var eI=i(8830),ek=i(57489),eE=i(32756),eD=i(44317),eN=i(85210),eP=i(17094),eA=i(33073),eF=i(81623),e$=i(14073),eM=i(20160),eO=i(14013),e_=i(43425),eL=i(75915),eR=i(78120),eB=i(65943),ez=i(29150),eV=i(27628),eG=i(19249),eU=i(60589),eq=i(29740),eW=i(27820),eK=i(27794),eH=i(7391),eX=i(70620),eJ=i(82226),eZ=i(9199),eY=i(94447),eQ=i(4839),e0=i(76066),e4=i(80632),e1=i(71141),e8=i(84834),e6=i(68901),e7=i(59451),e5=i(572),e2=i(42382),e3=i(75512),e9=i(50174),te=i(30492),tt=i(92203),ti=i(10733),tr=i(43565),tn=i(48614),tl=i(96316),ta=i(78352),to=i(99050),ts=i(89705),td=i(43133),tc=i(99242),tu=i(83986),tp=i(23558),tm=i(47449),tg=i(24058),th=i(46549),tv=i(75525),tf=i(40926),ty=i(37836),tb=i(76103),tx=i(54786),tj=i(97668),tw=i(93086),tC=i(33411),tS=i(55822),tT=i(88054),tI=i(99731),tk=i(73062),tE=i(67914),tD=i(8236),tN=i(1993),tP=i(10883),tA=i(34366),tF=i(53405),t$=i(86646);let tM=e=>(0,D.jsx)(eu.Skeleton,{...e}),tO=e=>(0,D.jsx)(eu.Skeleton.Avatar,{...e}),t_=e=>(0,D.jsx)(eu.Skeleton.Button,{...e}),tL=e=>(0,D.jsx)(eu.Skeleton.Input,{...e});var tR=i(44922),tB=i(7909),tz=i(2338),tV=i(13755),tG=i(62461),tU=i(85274),tq=i(67693),tW=i(56176),tK=i(44456),tH=i(28493),tX=i(24518),tJ=i(75419),tZ=i(9677),tY=i(32773);let tQ=(0,A.createStyles)(e=>{let{token:t,css:i}=e;return{steps:i` - /* Bottom border on the nav bar + remove Ant Design's built-in - padding-top so all items sit flush at the top — no offset needed. */ - &.ant-steps-navigation { - border-bottom: ${t.lineWidth}px solid ${t.colorSplit}; - padding-top: 0; - } - - /* Finish icon: always white, including on hover. - Ant Design's hover rule (wrapped in :where() — zero specificity) sets - .ant-steps-icon color to colorPrimary for non-active/non-process items, - making the white checkmark invisible. !important is required because the - rule is injected after ours in source order, so specificity alone loses. */ - &.ant-steps-navigation .ant-steps-item-finish .ant-steps-item-icon .ant-steps-icon { - color: ${t.colorTextLightSolid} !important; - } - - /* WAIT: title color override (default is colorTextDescription) */ - .ant-steps-item-wait .ant-steps-item-title { - color: ${t.colorText}; - } - - /* All items: uniform margin-right (paddingXL gap for the ::after arrow), - uniform height, and flex centering so the container is always - vertically and horizontally centered — identical for every state. */ - &.ant-steps-navigation .ant-steps-item { - margin-right: ${t.paddingXL}px; - height: calc(${t.paddingSM}px + 36px); - display: flex; - align-items: center; - justify-content: center; - } - - /* Reset the inner container so it sizes to its content and lets the - parent flex centering do the positioning work. */ - &.ant-steps-navigation .ant-steps-item .ant-steps-item-container { - margin: 0; - padding: 0; - height: auto; - } - - /* PROCESS (active): background highlight only — no margin/padding changes. */ - &.ant-steps-navigation .ant-steps-item-process { - background-color: ${t.colorFillAlter}; - } - - /* Arrow (::after) centering: vertically centered via top: 50%. - Horizontally centered in the uniform paddingXL gap via inset-inline-start: - gap = paddingXL (32px), arrow = 10px wide, so offset from item right edge - = (32 - 10) / 2 = 11px = paddingXL/2 - 5px. - This applies to ALL arrows uniformly — active, finish, and wait. */ - &.ant-steps-navigation .ant-steps-item::after { - top: 50%; - inset-inline-start: calc(100% + ${t.paddingXL/2-5}px); - } - - /* The finish-step arrow sits exactly at the left edge of the next item. - When the next item is active its colored background covers the default - gray arrow (rgb(217,217,217)), making it nearly invisible. - Two fixes: raise z-index so the arrow paints above the next item's - background, and use colorPrimary for the arrow border to ensure it - contrasts with any background color (matching the finish icon color). */ - &.ant-steps-navigation .ant-steps-item-finish { - z-index: 1; - } - - &.ant-steps-navigation .ant-steps-item-finish::after { - border-color: ${t.colorPrimary}; - } - - /* All icons: use flex for true center alignment of the number/icon */ - .ant-steps-item-icon { - display: inline-flex; - align-items: center; - justify-content: center; - } - - /* Process icon: purple fill + white number — internal tokens only */ - .ant-steps-item-process .ant-steps-item-icon { - background-color: ${t.colorPrimary}; - border-color: ${t.colorPrimary}; - } - - .ant-steps-item-process .ant-steps-item-icon .ant-steps-icon { - color: ${t.colorTextLightSolid}; - } - - /* Process title: dark color (default is colorText, but re-state for clarity) */ - .ant-steps-item-process .ant-steps-item-title { - color: ${t.colorText}; - } - - /* Finish icon: purple fill + white checkmark */ - .ant-steps-item-finish .ant-steps-item-icon { - background-color: ${t.colorPrimary}; - border-color: ${t.colorPrimary}; - } - - /* Finish title: dark */ - .ant-steps-item-finish .ant-steps-item-title { - color: ${t.colorText}; - } - `}}),t0=e=>{let{current:t,onChange:i,items:r,direction:n="horizontal",size:l="default",type:a="default",status:o,className:s}=e,{styles:d,cx:c}=tQ(),{token:u}=eu.theme.useToken(),p=r.map(e=>({title:e.title,description:e.description,icon:e.icon,disabled:e.disabled,status:e.status}));return(0,D.jsx)(eu.ConfigProvider,{theme:{components:{Steps:{navArrowColor:u.colorBorder,iconSizeSM:24}}},children:(0,D.jsx)(eu.Steps,{className:c(d.steps,s),current:t,direction:n,items:p,onChange:i,size:l,status:o,type:a})})};var t4=i(18848),t1=i(88286),t8=i(41423),t6=i(62268),t7=i(57502),t5=i(22014),t2=i(95884),t3=i(91883),t9=i(28083),ie=i(74325),it=i(96940),ii=i(54872),ir=i(88929),il=i(7814),ia=i(93966),io=i(91191),is=i(30302),id=i(154),ic=i(93294),iu=i(16126),ip=i(45696);let im=e=>{let{value:t,text:i}=e;return void 0===t||""===t?null:(0,D.jsx)(m.a,{padding:{x:"mini"},children:(0,D.jsx)("a",{href:t,rel:"noopener noreferrer",target:"_blank",children:i??t})})};var ig=i(98186),ih=i(52981),iv=i(72346),iy=i(51038),ib=i(6820);let ix=(0,A.createStyles)(e=>{let{token:t,css:i}=e;return{filesList:i` - list-style: none; - padding: 0; - margin: 10px 0 0; - - li { - font-size: 12px; - font-weight: 400; - line-height: 22px; - color: ${t.colorTextTertiary} - } - `}},{hashPriority:"low"}),ij=e=>{let{styles:t}=ix();return(0,D.jsx)("ul",{className:t.filesList,children:e.files.map((e,t)=>(0,D.jsx)("li",{children:e},`${e}-${t}`))})};var iw=i(73468),iC=i(3394),iS=i(35864),iT=i(21429);let iI=e=>{let{options:t,onCreateOption:i,creatable:r=!0,createOptionLabel:l,allowDuplicates:a=!1,value:o,onChange:s,inputType:d="string",validate:c,numberInputProps:u={},...p}=e,{t:g}=(0,iT.useTranslation)(),[h,v]=(0,N.useState)([]),[f,y]=(0,N.useState)(""),[b,x]=(0,N.useState)(null),j=[...t,...h];(0,N.useEffect)(()=>{let e=o??p.defaultValue;if(null!=e&&"string"==typeof e&&""!==e.trim()&&!j.some(t=>t.value===e)){let t=null==i?void 0:i(e);(0,iS.isNil)(t)&&(t={value:e,label:e}),v(i=>i.some(t=>t.value===e)?i:[...i,t])}},[o,p.defaultValue,j,i]),(0,N.useEffect)(()=>{null!==b&&void 0!==s&&(s(b.value,b),x(null))},[h,b,s]);let w=(0,N.useCallback)(()=>{let e,t=f.trim();if(""===t)return;if(j.some(e=>e.value===t)&&!a)return void y("");if(void 0!==c&&!c(t))return;let r=(e=null==i?void 0:i(t),(0,iS.isNil)(e)&&(e={value:t,label:t}),e);v(e=>[...e,r]),y(""),x(r)},[f,j,a,i,c]),C=(0,N.useCallback)(e=>{"Enter"===e.key&&(e.preventDefault(),w())},[w]);return(0,D.jsx)(tN.l,{...p,dropdownRender:e=>r?(0,D.jsxs)(D.Fragment,{children:[e,(0,D.jsx)(E.c,{size:"normal"}),(0,D.jsx)(m.a,{padding:{x:"small",top:"extra-small",bottom:"small"},children:(0,D.jsxs)(eh.s,{gap:"extra-small",vertical:!0,children:[(0,D.jsxs)(eh.s,{gap:"small",children:["number"===d?(0,D.jsx)(e1.Y,{...u,onChange:e=>{(0,iS.isNil)(e)||y(e.toString())},onKeyDown:C,placeholder:g(l??"creatable-select.add-custom-option"),size:"small",style:{flex:1},value:f}):(0,D.jsx)(e4.p,{onChange:e=>{y(e.target.value)},onKeyDown:C,placeholder:g(l??"creatable-select.add-custom-option"),size:"small",style:{flex:1},value:f}),(0,D.jsx)(n.$,{disabled:""===f.trim()||void 0!==c&&!c(f.trim())||!a&&j.some(e=>e.value===f.trim()),onClick:w,size:"small",type:"primary",children:g("creatable-select.add")})]}),!a&&""!==f.trim()&&j.some(e=>e.value===f.trim())&&(0,D.jsx)(t5.E,{type:"danger",children:g("creatable-select.option-already-exists")}),""!==f.trim()&&void 0!==c&&!c(f.trim())&&(0,D.jsx)(t5.E,{type:"danger",children:g("creatable-select.invalid-option")})]})})]}):e,onChange:s,options:j,value:o})};var ik=i(16450);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},18613(e,t,i){"use strict";i.r(t),i.d(t,{downloadFile:()=>y.P,ComponentType:()=>r.I5,ContextMenuRegistry:()=>n.g,isApiErrorData:()=>o.jg,useHandleKeyBindings:()=>d.Z,useMainNav:()=>g.A,useModalHolder:()=>u.r,GeneralError:()=>o.$g,SlotRenderer:()=>r.Yw,downloadJsonFile:()=>y.z,trackError:()=>o.Ay,SubscriptionDetails:()=>h.Q,ComponentRenderer:()=>r.bU,AppLoaderRegistry:()=>v.s,AutoHideEmptyContent:()=>f.K,ThemeProvider:()=>s.N,ComponentRegistry:()=>r.Zt,useComponentRegistry:()=>r.eC,useDateConverter:()=>c.e,useSettings:()=>p.t,componentConfig:()=>r.eb,contextMenuConfig:()=>a.r,ApiError:()=>o.hD,MainNavRegistry:()=>m.c,useContextMenuSlot:()=>l.W});var r=i(77885),n=i(57885),l=i(47904),a=i(47920);i(13947);var o=i(55638),s=i(93960),d=i(69134),c=i(31729),u=i(8849),p=i(59446),m=i(26053),g=i(30515),h=i(93869),v=i(47732),f=i(62668),y=i(26234);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},23945(e,t,i){"use strict";i.r(t),i.d(t,{DynamicTypeObjectDataTable:()=>iJ.v,DynamicTypeDocumentEditableRelations:()=>tJ.O,UNCATEGORIZED_AREABLOCK_GROUP:()=>tz.w9,DataObjectAdapterCell:()=>el.H,DependenciesTypeIconCell:()=>G.e,DynamicTypeObjectDataCheckbox:()=>io.C,DynamicTypeBatchEditAbstract:()=>E,DynamicTypeDocumentEditableCheckbox:()=>tV.C,DynamicTypeDocumentEditableRelation:()=>tX.v,DynamicTypeBatchEditText:()=>A.P,DynamicTypeFieldFilterNumber:()=>z.R,Numeric:()=>i8.e,SettingsContext:()=>rv.l,Video:()=>tP.C,convertDragAndDropInfoToElementReference:()=>rr.ME,useLocalizedFields:()=>ty.W,DynamicTypeObjectDataObjectBrick:()=>iz.D,useOptionalElementContext:()=>rd.L,DynamicTypeObjectDataAdvancedManyToManyRelation:()=>ii._,useDeleteDraft:()=>o.K,useFieldWidth:()=>tO.C,Consent:()=>to.N,DynamicTypeListingRegistry:()=>eD.f,useGlobalElementContext:()=>rp.Q,LocalizedFieldsProvider:()=>th.K,useRefreshGrid:()=>g.X,NumberFilterSettingValue:()=>O.L,useTabManager:()=>rt.M,isElementReference:()=>rr.U9,ManyToManyRelationLabel:()=>tw.Q,DynamicTypeMetaDataAsset:()=>ex.r,ElementIconProcessorRegistry:()=>f.n,TAB_WORKFLOW:()=>re.MD,DynamicTypeListingAbstract:()=>eE.a,DynamicTypeFieldFilterAbstract:()=>L.C,mapToLegacyElementType:()=>rg.FA,DateCell:()=>ea.d,ElementIconContext:()=>f.V,DynamicTypeBatchEditDataObjectAdapter:()=>N.y,DynamicTypeDocumentEditableSelect:()=>tZ.f,DynamicTypeBatchEditDataObjectAdapterComponent:()=>S.V,DynamicTypeObjectDataTextarea:()=>iZ.L,DynamicTypeRegistryAbstract:()=>i7.P,DynamicTypeDocumentEditableInput:()=>tq.Z,DynamicTypeObjectDataDatetime:()=>im.Y,ManyToManyObjectRelation:()=>tx.D,PathTarget:()=>tC.x,DEFAULT_AREABLOCK_GROUP:()=>tz.ZV,BooleanSelect:()=>eJ.x,DynamicTypeObjectDataManyToManyRelation:()=>iO.g,useDraftDataDraft:()=>y.cY,MetaDataValueCell:()=>q.I,useElementContext:()=>rd.J,useElementHelper:()=>ru.K,DynamicTypeObjectDataEncryptedField:()=>ih.N,DynamicTypeObjectDataUrlSlug:()=>iQ.Z,DynamicTypePipelineGridTransformersTwigOperator:()=>eW.H,PreviewFieldLabelCell:()=>ee.N,useSelectedColumns:()=>rS.K,useTrackableChangesReducers:()=>C.P,Collection:()=>ta,PqlFilterProvider:()=>rN.VY,DynamicTypeObjectDataLocalizedFields:()=>i$.J,PropertiesValueCell:()=>H.I,DynamicTypeObjectDataGeoPoint:()=>iw._,Block:()=>eX.e,CheckboxCell:()=>er.A,DynamicTypePipelineGridTransformersChangeCase:()=>eO.K,DynamicTypeRegistryContext:()=>i5.i,DynamicTypeObjectDataFirstname:()=>ib.Q,DataObjectActionsCell:()=>en.D,Link:()=>tg.N,usePqlFilter:()=>rD.Z,DynamicTypeObjectDataLink:()=>iF.T,ElementSelectorButton:()=>rn.Q,InputQuantityValue:()=>tm.z,getElementIcon:()=>rr.Ip,DynamicTypePipelineAbstract:()=>eP.M,useElementSelector:()=>rl.L,DynamicTypeObjectDataCountry:()=>id.$,DynamicTypeMetaDataObject:()=>eT.e,useOpen:()=>c.i,useTreeCopyPasteContext:()=>l.x,DynamicTypeObjectDataInput:()=>iE.l,FieldCollectionContext:()=>tA.o,useDynamicTypeResolver:()=>i3.R,Sidebar:()=>rI.B,AreablockEditable:()=>tR.X,MultiSelectCell:()=>ed.y,useElementDraft:()=>rc.D,TAB_PROPERTIES:()=>re.Aj,usePublishedReducers:()=>x.b,DynamicTypeObjectDataImage:()=>iI.a,useRefreshTree:()=>h.h,ExternalImage:()=>ts.$,DynamicTypeBatchEditTextAreaComponent:()=>I.B,PropertiesTypeIconCell:()=>K.e,DynamicTypeAbstract:()=>i7.Q,DynamicTypeObjectDataSlider:()=>iH.O,DynamicTypeObjectDataEmail:()=>ig.B,DynamicTypeObjectDataNumeric:()=>iR.G,LanguageCell:()=>es.B,DynamicTypeDocumentEditableImage:()=>tU.Y,DynamicTypeDocumentEditableAreablock:()=>tz.Dc,DynamicTypeObjectDataLastname:()=>iA.i,DynamicTypeObjectDataGender:()=>ix.y,DynamicTypeObjectDataBooleanSelect:()=>il.r,AdvancedManyToManyObjectRelation:()=>eK.f,DynamicTypeBatchEditTextComponent:()=>k.s,DynamicTypeObjectDataLanguage:()=>iN.x,DynamicTypePipelineGridTransformersAnonymizer:()=>eF.S,RowSelectionProvider:()=>rx.G,pqlFilterType:()=>rN.SG,CalculatedValue:()=>eZ.g,usePaging:()=>rb.M,DynamicTypeObjectDataConsent:()=>is.z,ClassificationStoreModalProvider:()=>tF.K7,TranslateCell:()=>ef.T,DynamicTypeObjectDataDate:()=>iu.X,DynamicTypeDocumentEditableMultiSelect:()=>tK.A,HotspotImage:()=>tc.d,AdvancedManyToManyRelation:()=>eH.e,DynamicTypeObjectDataInputQuantityValue:()=>iD.B,MetadataTypeIconCell:()=>U.e,classificationStoreModalContext:()=>tF.E,SelectCell:()=>Z.N,useLocateInTree:()=>s.H,withSelectionOverviewTab:()=>rP.l,ElementSelectorContext:()=>ra.XN,SelectionType:()=>ra.hO,useRowSelectionOptional:()=>rw.S,DynamicTypeDocumentEditableLink:()=>tW.l,DynamicTypeObjectDataBlock:()=>ir.a,DynamicTypeObjectDataTime:()=>iY.E,DynamicTypeObjectDataDateRange:()=>ip.C,DynamicTypeObjectDataMultiSelect:()=>iL.O,GridContainer:()=>rT.E,defaultFieldWidthValues:()=>tM.wT,withGeneralFiltersTab:()=>rA.h,DynamicTypeFieldFilterTextComponent:()=>_.i,DynamicTypeObjectDataLanguageMultiSelect:()=>iP.W,DynamicTypeObjectDataNumericRange:()=>iB.Z,DynamicTypesList:()=>t8.l,QuantityValue:()=>tT.F,defaultElementSelectorConfig:()=>ra.FU,DynamicTypeDocumentEditableAbstract:()=>t_.Z,DynamicTypeFieldFilterNumberComponent:()=>O.a,useFieldWidthOptional:()=>tO.q,useRowSelection:()=>rj.U,DynamicTypeObjectDataSelect:()=>iK.$,ElementSelectorProvider:()=>ra.ry,GridCellPreviewWrapper:()=>i1.O,SettingsProvider:()=>rv.Z,ImageGallery:()=>tp.i,DynamicTypeObjectDataManyToOneRelation:()=>i_.h,useRename:()=>v.M,usePropertiesReducers:()=>b.u,DynamicTypeGridCellRegistry:()=>eh.H,DynamicTypeMetaDataInput:()=>eS.p,DynamicTypeObjectDataAbstractNumeric:()=>t9.w,FieldCollection:()=>td.Z,DynamicTypePipelineRegistry:()=>eA.v,PropertiesValueSelectCell:()=>Q,DynamicTypeObjectDataGeoBounds:()=>ij.P,DynamicTypePipelineGridTransformersTrim:()=>eq.c,useData:()=>rC.E,DynamicTypeObjectDataGeoPolygon:()=>iC.q,mapToElementType:()=>rg.sv,DynamicTypeMetaDataCheckbox:()=>ej.c,NumberCell:()=>ec.y,DatePickerSettingValue:()=>M.q,DynamicTypeObjectDataGeoPolyLine:()=>iS.y,FieldWidthProvider:()=>tM._Y,DynamicTypeObjectDataImageGallery:()=>ik.y,AssetActionsCell:()=>et.q,generalFiltersTabKey:()=>rA.G,DynamicTypeDocumentEditableDate:()=>tG.h,useSchedulesReducers:()=>j.H,usePropertiesDraft:()=>b.I,useClassificationStoreModalOptional:()=>tF.G3,useAddFolder:()=>r.N,useElementRefresh:()=>m.d,useSchedulesDraft:()=>j.z,DynamicTypeObjectLayoutRegistry:()=>r$.o,ReverseObjectRelation:()=>tk.i,DynamicTypeMetaDataTextarea:()=>ek.b,DynamicTypeResolver:()=>i2.kt,FieldCollectionProvider:()=>tA.Q,useDelete:()=>a.z,DynamicTypePipelineGridTransformersPhpCode:()=>ez.x,Image:()=>tu._,TabManager:()=>ri.F,useSettings:()=>rE.t,DynamicTypeListingAssetLink:()=>eN.U,DynamicTypeObjectDataHotspotImage:()=>iT.p,TreeCopyPasteProvider:()=>l._,useClassificationStoreModal:()=>tF._P,RowSelectionContext:()=>rx.k,AssetPreviewCell:()=>ei.F,DynamicTypeObjectDataRegistry:()=>t7.C,DynamicTypePipelineGridTransformersExplode:()=>eB.j,DynamicTypeBatchEditRegistry:()=>D.f,DynamicTypeObjectDataCountryMultiSelect:()=>ic.c,useTrackableChangesDraft:()=>C.L,DynamicTypeBatchEditDataObjectObjectBrickComponent:()=>T.I,DynamicTypeFieldFilterRegistry:()=>R.r,DynamicTypeDocumentEditableSnippet:()=>tY.G,useCacheUpdate:()=>ro.F,Checkbox:()=>eQ.S,DynamicTypeObjectDataAbstractDate:()=>t5.X,DynamicTypeDocumentEditableTable:()=>tQ.r,DynamicTypeFieldFilterMultiselect:()=>V.b,DynamicTypeMetaDataRegistry:()=>eb.i,DynamicTypePipelineGridTransformersDateFormatter:()=>eL.G,TextCell:()=>ep.m,initialTabsStateValue:()=>w.nd,isValidElementType:()=>rg.Hy,useLock:()=>d.V,DynamicTypeObjectDataVideo:()=>i4.q,DynamicTypeMetaDataDocument:()=>eC.u,LocalizedFieldsContext:()=>th.c,TAB_TAGS:()=>re.OM,DynamicTypeDocumentEditableRegistry:()=>tL.M,PqlFilterContext:()=>rN.t$,targetCallbackNameMap:()=>i2.C9,TAB_NOTES_AND_EVENTS:()=>re.MV,DynamicTypeDocumentEditableWysiwyg:()=>t1.q,ClassificationStoreModal:()=>eY.j,DynamicTypeGridCellAbstract:()=>ev.E,DynamicTypeObjectDataQuantityValue:()=>iG.R,DynamicTypeFieldFilterDateComponent:()=>M.H,TimeCell:()=>eg.M,DynamicTypesResolverTargets:()=>i2.PD,FieldWidthContext:()=>tM.Cw,ObjectBrick:()=>tS.B,usePublish:()=>u.Z,DynamicTypeObjectDataRgbaColor:()=>iW.i,DynamicTypeObjectDataFieldCollection:()=>iy.P,ListingBuilder:()=>rf,DynamicTypeBatchEditDataObjectObjectBrick:()=>P.h,DynamicTypePipelineGridTransformersSubstring:()=>eG.V,DynamicTypeObjectDataPassword:()=>iV.E,DynamicTypeMetaDataSelect:()=>eI.h,ElementCell:()=>eo.R,DynamicTypeObjectDataAdvancedManyToManyObjectRelation:()=>it.D,StructuredTable:()=>tE.a,allElementTypes:()=>rg.b9,getElementDeeplink:()=>rr.Vn,useCopyPaste:()=>n.e,ManyToManyRelation:()=>tj.g,useElementApi:()=>rs.M,DynamicTypeFieldFilterCheckboxComponent:()=>$.m,DynamicTypeBatchEditTextArea:()=>F.M,DynamicTypeFieldFilterDate:()=>B.y,DynamicTypePipelineGridTransformersElementCounter:()=>eR._,IS_AUTO_SAVE_DRAFT_CREATED:()=>y.u0,useListingBuilder:()=>ry,Table:()=>tD.X,DynamicTypeObjectDataAbstractInput:()=>t2.l,DynamicTypeDocumentEditableTextarea:()=>t0.r,TypeRegistry:()=>i9.O,DynamicTypeMetaDataDate:()=>ew.b,DynamicTypeDocumentEditableNumeric:()=>tH.g,QuantityValueRange:()=>tI.q,DynamicTypePipelineGridTransformersTranslate:()=>eU.U,useSidebarOptions:()=>rk.c,DynamicTypeObjectDataAbstract:()=>t6.h,DynamicTypeRegistryProvider:()=>i5.U,TabId:()=>t$.X,DynamicTypeObjectDataUser:()=>i0.Q,UrlSlug:()=>tN.b,DynamicTypeMetadataAbstract:()=>ey.J,DynamicTypePipelineGridTransformersBlur:()=>e$.N,getElementActionCacheKey:()=>rr.Cr,DynamicTypeDocumentEditableVideo:()=>t4.e,DynamicTypePipelineGridTransformersCombine:()=>e_.f,OpenElementCell:()=>eu.f,TextareaCell:()=>em.d,DynamicTypeObjectDataAbstractMultiSelect:()=>t3._,LockType:()=>d.y,TAB_SCHEDULE:()=>re.mI,DynamicTypeObjectDataStructuredTable:()=>iX.e,MetaDataValueSelectCell:()=>W.w,DynamicTypeObjectDataCalculatedValue:()=>ia.e,ManyToOneRelation:()=>tC.P,useTabsDraft:()=>w.JX,DynamicTypeObjectDataManyToManyObjectRelation:()=>iM.F,TAB_DEPENDENCIES:()=>re.QZ,getElementKey:()=>rr.Ed,DynamicTypeObjectDataAbstractSelect:()=>ie.n,DynamicTypeObjectDataReverseObjectRelation:()=>iq.M,RelationList:()=>i6.v,DynamicTypePipelineGridTransformersStringReplace:()=>eV.v,DynamicTypeObjectLayoutAbstract:()=>rF.V,usePublishedDraft:()=>x.D,DynamicTypeDocumentEditableArea:()=>tB.q,checkElementPermission:()=>rm.o,DynamicTypeObjectDataExternalImage:()=>iv.x,DynamicTypeObjectDataQuantityValueRange:()=>iU.Y,DynamicTypePipelineGridTransformersBooleanFormatter:()=>eM.Y,LocalizedFields:()=>tb,useDraftDataReducers:()=>y.Yu,allLegacyElementTypes:()=>rg.wy,useTabsReducers:()=>w.Ne,useUnpublish:()=>p.M,withDroppableStyling:()=>rh.Y});var r=i(50458),n=i(42992),l=i(63993),a=i(3671),o=i(7652),s=i(71012),d=i(11480),c=i(34148),u=i(72744),p=i(68360),m=i(40036),g=i(62786),h=i(38990),v=i(55014),f=i(47351),y=i(26280),b=i(40331),x=i(50034),j=i(95674),w=i(92634),C=i(76359),S=i(76238),T=i(45086),I=i(73004),k=i(45704);class E{constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id",void 0)}}var D=i(57697),N=i(81659),P=i(81215),A=i(33473),F=i(53031),$=i(94652),M=i(67967),O=i(71916),_=i(14542),L=i(17044),R=i(78785),B=i(46383),z=i(13145),V=i(95433),G=i(40917),U=i(17868),q=i(73746),W=i(37761),K=i(66873),H=i(61443),X=i(74848),J=i(47867),Z=i(24183),Y=i(75915);let Q=e=>{let t=(e.row.original.config??"").split(",").map(e=>({value:e,label:e}));return(0,X.jsx)(Z.N,{...(0,Y.K)(e,{options:t})})};var ee=i(32617),et=i(93836),ei=i(37532),er=i(36255),en=i(11316),el=i(63746),ea=i(18177),eo=i(6879),es=i(28680),ed=i(30513),ec=i(67191),eu=i(28023),ep=i(74191),em=i(21797),eg=i(44795),eh=i(97536),ev=i(30595),ef=i(79155),ey=i(7402),eb=i(20103),ex=i(80833),ej=i(99006),ew=i(59921),eC=i(49254),eS=i(71705),eT=i(17332),eI=i(52391),ek=i(22847),eE=i(61379),eD=i(40810),eN=i(77240),eP=i(87638),eA=i(11387),eF=i(86620),e$=i(38481),eM=i(97552),eO=i(7319),e_=i(19580),eL=i(5662),eR=i(17639),eB=i(31756),ez=i(3782),eV=i(79691),eG=i(6002),eU=i(97190),eq=i(15547),eW=i(52057),eK=i(96494),eH=i(42139),eX=i(92449),eJ=i(32438),eZ=i(34188),eY=i(80754),eQ=i(93470),e0=i(57231),e4=i(2338),e1=i(22014),e8=i(64756),e6=i(18196),e7=i(21429);let e5=e=>{let{addButtonComponent:t,title:i,...r}=e,[n,l]=t,{t:a}=(0,e7.useTranslation)(),o={...r,...l};return(0,X.jsxs)(e4.$,{className:"w-full",direction:"vertical",children:[(0,X.jsx)(e8.a,{children:(0,X.jsxs)(e4.$,{children:[!(0,e6.Po)(i)&&(0,X.jsx)(e1.E,{strong:!0,children:i}),(0,X.jsx)(n,{...o})]})}),(0,X.jsx)(e8.a,{children:(0,X.jsx)(e1.E,{type:"secondary",children:a("collection.empty")})})]})};var e2=i(88286),e3=i(83391);let e9=e=>{let{itemComponent:t,...i}=e,[r,n]=t,l=e0.lV.useFormInstance(),a={...i,...n},o=e.fields.map(t=>{let i=l.getFieldValue([e.name,t.name]);return{key:i.type,label:i.type,children:(0,X.jsx)(r,{field:t,...a},t.name)}});return(0,X.jsx)(e3.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,contentPadding:"none",extra:e.extra,extraPosition:e.extraPosition,theme:"default",title:e.title,children:(0,X.jsx)(e2.t,{items:o,onClose:function(t){void 0!==e.onTabClose&&e.onTabClose({tabName:t,fields:e.fields,operation:e.operation})}})})};var te=i(29722),tt=i(8651),ti=i.n(tt),tr=i(85458);let tn=e=>{let{itemComponent:t,...i}=e,[r,n]=t,{fields:l}=e,a=l.length>0,o=(0,te.Z)(e.fields),s=!((null==o?void 0:o.length)!==void 0&&0===o.length&&a)&&e.collapsed,d=(0,tr.n)({inherited:e.inherited,type:"wrapper"}),c={...i,...n,collapsed:s};return a?(0,X.jsx)(e3.P,{border:e.border,collapsed:s,collapsible:e.collapsible,contentPadding:!0===e.border?{x:"none",top:"small",bottom:"none"}:"small",extra:e.extra,extraPosition:e.extraPosition,theme:"default",title:e.title,children:(0,X.jsx)(e4.$,{className:ti()("w-full",d),direction:"vertical",size:"small",children:e.fields.map(e=>(0,X.jsx)(r,{field:e,...c},e.name))})}):(0,X.jsx)(e5,{...e})},tl=e=>{let{fields:t}=e;if(!(t.length>0))return(0,X.jsx)(e5,{...e});let i="tabs"===e.type?e9:tn;return(0,X.jsx)(i,{...e})},ta=e=>{let{border:t=!1,collapsed:i=!1,collapsible:r=!1,disallowAdd:n=!1,disallowDelete:l=!1,disallowReorder:a=!1,type:o="list",...s}=e;return(0,X.jsx)(e0.lV.List,{name:s.name,children:(e,d)=>(0,X.jsx)(tl,{border:t,collapsed:i,collapsible:r,disallowAdd:n,disallowDelete:l,disallowReorder:a,type:o,...s,fields:e,operation:d})})};var to=i(25491),ts=i(2034),td=i(28472),tc=i(56264),tu=i(54106),tp=i(30285),tm=i(54080),tg=i(59258),th=i(80630),tv=i(10014),tf=i(62451),ty=i(74976);let tb=e=>{let{children:t}=e,{currentLanguage:i,hasLocalizedFields:r,setHasLocalizedFields:n}=(0,tv.S)();return(0,J.useEffect)(()=>{r||n(!0)},[]),(0,X.jsx)(th.K,{locales:[i],children:(0,X.jsx)(tf.e,{combinedFieldNameParent:["localizedfields"],children:(0,X.jsx)(e0.lV.Group,{name:"localizedfields",children:(0,X.jsx)(e4.$,{className:"w-full",direction:"vertical",size:"small",children:t})})})})};var tx=i(6469),tj=i(38798),tw=i(33774),tC=i(74462),tS=i(48199),tT=i(546),tI=i(58705),tk=i(7810),tE=i(62916),tD=i(60939),tN=i(60269),tP=i(11493),tA=i(15925),tF=i(74003),t$=i(96511),tM=i(50094),tO=i(52112),t_=i(80655),tL=i(96524),tR=i(81628),tB=i(93824),tz=i(33099),tV=i(75208),tG=i(56198),tU=i(85938),tq=i(12539),tW=i(51818),tK=i(43611),tH=i(2370),tX=i(97805),tJ=i(14248),tZ=i(89653),tY=i(85514),tQ=i(62834),t0=i(70005),t4=i(51684),t1=i(50929),t8=i(44767),t6=i(47864),t7=i(31429),t5=i(18754),t2=i(69040),t3=i(77871),t9=i(12557),ie=i(79782),it=i(7871),ii=i(35021),ir=i(92395),il=i(21857),ia=i(58751),io=i(31159),is=i(46381),id=i(58412),ic=i(51788),iu=i(63540),ip=i(87116),im=i(75167),ig=i(95830),ih=i(23257),iv=i(41261),iy=i(8780),ib=i(71125),ix=i(54599),ij=i(60026),iw=i(97371),iC=i(41643),iS=i(58177),iT=i(80900),iI=i(70229),ik=i(54165),iE=i(70482),iD=i(14266),iN=i(39218),iP=i(59026),iA=i(26453),iF=i(59292),i$=i(40909),iM=i(6462),iO=i(1642),i_=i(34263),iL=i(30029),iR=i(3871),iB=i(64662),iz=i(40709),iV=i(98719),iG=i(57235),iU=i(43608),iq=i(27129),iW=i(82430),iK=i(97352),iH=i(97355),iX=i(76371),iJ=i(20126),iZ=i(6066),iY=i(95715),iQ=i(71084),i0=i(7997),i4=i(63995),i1=i(49006),i8=i(71437),i6=i(84405),i7=i(69186),i5=i(87669),i2=i(61363),i3=i(72928),i9=i(3832),re=i(49583),rt=i(67625),ri=i(57064),rr=i(81674),rn=i(60583),rl=i(94685),ra=i(72636),ro=i(80546),rs=i(13397),rd=i(7334),rc=i(33142),ru=i(56789),rp=i(55490),rm=i(79472),rg=i(87632),rh=i(7433),rv=i(99582);class rf{constructor(){this.decorators=[],this.addDecorator=e=>{let t={priority:0,...e};return this.decorators.push(t),this.decorators.sort((e,t)=>e.priority-t.priority),this},this.overrideDecorator=e=>{let t=this.decorators.findIndex(t=>t.name===e.name);if(-1===t)throw Error(`Decorator with name "${e.name}" not found.`);return this.decorators[t]={...this.decorators[t],...e},void 0!==e.priority&&(this.decorators[t].priority=e.priority,this.decorators.sort((e,t)=>e.priority-t.priority)),this},this.removeDecorator=e=>(this.decorators=this.decorators.filter(t=>t.name!==e),this),this.getDecorator=e=>this.decorators.find(t=>t.name===e),this.getDecorators=()=>this.decorators,this.build=e=>{let{props:t,config:i}=e,r=this.decorators.filter(e=>{let t=null==i?void 0:i[e.name];return(null==t?void 0:t.enabled)!==!1}),n=t;for(let e of r){let t=null==i?void 0:i[e.name],r={...e.config,...null==t?void 0:t.config};n=e.decorator(n,Object.keys(r).length>0?r:void 0)}return n},this.copy=()=>{let e=new rf;return this.decorators.forEach(t=>{e.addDecorator({...t})}),e}}}let ry=e=>{let{listingBuilder:t}=e,[i,r]=(0,J.useState)(t.copy());return(0,J.useEffect)(()=>{r(t.copy())},[t]),{listingBuilder:i,addDecorator:i.addDecorator.bind(i),overrideDecorator:i.overrideDecorator.bind(i),removeDecorator:i.removeDecorator.bind(i),getDecorator:i.getDecorator.bind(i),build:i.build.bind(i)}};var rb=i(79963),rx=i(81916),rj=i(53894),rw=i(52185),rC=i(20351),rS=i(66707),rT=i(38933),rI=i(63589),rk=i(48039),rE=i(8412),rD=i(9273),rN=i(3201),rP=i(92277),rA=i(7789),rF=i(81276),r$=i(25593);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},26542(e,t,i){"use strict";i.r(t),i.d(t,{PerspectiveProcessorContext:()=>a.Q,TabTitleView:()=>d.h,selectOuterModel:()=>l.D9,updateWidget:()=>l.WK,widgetManagerSliceName:()=>l.ZI,BorderTitleView:()=>s.A,openRightWidget:()=>l.Xx,updateOuterModel:()=>l.I7,PerspectiveProcessorRegistry:()=>a.I,openMainWidget:()=>l.OS,WidgetContentTitleView:()=>p,updateInnerModel:()=>l.XB,selectInnerModel:()=>l.y6,WidgetRegistry:()=>n.Y,openLeftWidget:()=>l.wd,openBottomWidget:()=>l.mB,TabTitleContainer:()=>o.v,closeWidget:()=>l.Jj,initialState:()=>l.ue,updateMainWidgetContext:()=>l.C_,selectMainWidgetContext:()=>l.T,setActiveWidgetById:()=>l.pg,useWidgetManager:()=>r.J});var r=i(83196),n=i(83942),l=i(20120),a=i(57193),o=i(726),s=i(92087),d=i(28789),c=i(74848);i(47867);var u=i(15783);let p=e=>{let{icon:t,title:i}=e;return(0,c.jsx)(u.O,{className:"widget__title",icon:t,title:i})};void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},90801(e,t,i){"use strict";i.r(t),i.d(t,{Wysiwyg:()=>n.q,WysiwygContext:()=>r.f});var r=i(32981),n=i(89098);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},37327(e,t,i){"use strict";i.d(t,{M:()=>w});var r=i(74848);i(47867);var n=i(74353),l=i.n(n),a=i(90445),o=i.n(a),s=i(97375),d=i.n(s),c=i(46986),u=i.n(c),p=i(21840),m=i.n(p),g=i(8134),h=i.n(g),v=i(28623),f=i.n(v),y=i(83826),b=i.n(y),x=i(88569),j=i.n(x);let w=e=>(l().extend(o()),l().extend(d()),l().extend(u()),l().extend(m()),l().extend(h()),l().extend(f()),l().extend(b()),l().extend(j()),(0,r.jsx)(r.Fragment,{children:e.children}))},40595(e,t,i){"use strict";i.d(t,{UU:()=>eG,pc:()=>eB,QB:()=>eW,JZ:()=>eU,aW:()=>ez,mb:()=>eV});var r=i(74848),n=i(47867),l=i(52725),a=i(74351),o=i(44241);let s=(0,o.createStyles)(e=>{let{token:t,css:i}=e;return{leftSidebar:i` - position: absolute; - top: 0; - left: 0; - bottom: 0; - z-index: 1000; - pointer-events: none; - width: 56px; - - .left-sidebar__avatar { - margin: 8px 15px 0 15px; - pointer-events: auto; - cursor: pointer; - } - - .ant-avatar { - background-color: var(--pimcore-brand-color, ${t.colorPrimary}); - - .anticon { - vertical-align: 0; - } - } - - .left-sidebar__nav { - list-style: none; - padding: ${t.paddingXXS}px 0; - margin: ${t.marginSM}px 0; - position: relative; - pointer-events: auto; - text-align: center; - - &:before { - content: ''; - position: absolute; - top: 0; - left: ${t.paddingSM}px; - right: ${t.paddingSM}px; - height: 1px; - background: ${t.Divider.colorSplit}; - } - } - `}},{hashPriority:"low"});var d=i(74152),c=i(69634),u=i(63558),p=i(27994),m=i(99154),g=i(81898),h=i(55638),v=i(11482),f=i(44499),y=i(38380),b=i(57231),x=i(23558),j=i(50094),w=i(43588),C=i(18613),S=i(21429),T=i(21914),I=i(1993);let k=e=>{let{...t}=e,{data:i,isLoading:n}=(0,T.BN)(),l=(null==i?void 0:i.items.map(e=>({label:e.recipientName,value:e.id})))??[];return(0,r.jsx)(I.l,{loading:n,options:l,...t})};var E=i(572);let D=e=>{let{form:t}=e,{t:i}=(0,S.useTranslation)();return(0,r.jsxs)(w.FormKit,{formProps:{form:t},children:[(0,r.jsx)(w.Form.Item,{label:i("user-menu.notification.modal.to"),name:"to",rules:[{required:!0,message:i("user-menu.notification.modal.form.validation.provide-recipient")}],children:(0,r.jsx)(k,{onChange:e=>{t.setFieldValue("to",e)},optionFilterProp:"label",placeholder:i("user-menu.notification.modal.select"),showSearch:!0})}),(0,r.jsx)(w.Form.Item,{label:i("user-menu.notification.modal.title"),name:"title",rules:[{required:!0,message:i("user-menu.notification.modal.form.validation.provide-title")}],children:(0,r.jsx)(w.Input,{})}),(0,r.jsx)(w.Form.Item,{label:i("user-menu.notification.modal.message"),name:"message",rules:[{required:!0,message:i("user-menu.notification.modal.form.validation.provide-message")}],children:(0,r.jsx)(w.TextArea,{})}),(0,r.jsx)(w.Form.Item,{label:i("user-menu.notification.modal.add-an-attachment"),name:"attachment",children:(0,r.jsx)(E.Pp,{allowToClearRelation:!0,assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0})})]})},N=e=>{let{open:t,...i}=e,{t:n}=(0,S.useTranslation)(),[l]=b.lV.useForm(),{sendNotification:a,isLoading:o}=(()=>{let[e,{isLoading:t}]=(0,T.sQ)();return{sendNotification:async(t,i)=>{let r=e({sendNotificationParameters:t});try{let e=await r;if(void 0!==e.error)return void(0,h.Ay)(new h.hD(e.error));void 0!==i&&i()}catch(e){(0,h.Ay)(new h.$g(e.message))}},isLoading:t}})(),{success:s}=(0,w.useMessage)(),d=()=>{l.resetFields(),i.onClose()};return(0,r.jsx)(x.m,{footer:(0,r.jsxs)(w.ModalFooter,{children:[(0,r.jsx)(w.Button,{onClick:d,type:"default",children:n("user-menu.notification.cancel")}),(0,r.jsx)(w.Button,{loading:o,onClick:()=>{l.validateFields().then(()=>{var e,t;let i=l.getFieldsValue();a({recipientId:i.to,title:i.title,message:i.message,attachmentType:null==(e=i.attachment)?void 0:e.type,attachmentId:null==(t=i.attachment)?void 0:t.id},async()=>{d(),await s(n("user-menu.notification.modal.success-notification-has-been-sent"))})}).catch(()=>{(0,C.trackError)(new C.GeneralError("Validation of notification form failed"))})},type:"primary",children:n("user-menu.notification.send")})]}),onCancel:d,open:t,size:"M",title:(0,r.jsxs)(w.Flex,{align:"center",gap:"extra-small",children:[(0,r.jsx)(w.Icon,{value:"notes-events"}),(0,r.jsx)(r.Fragment,{children:n("user-menu.notification.modal.send-a-notification")})]}),zIndex:1e3,children:(0,r.jsx)(j._Y,{children:(0,r.jsx)(D,{form:l})})})};var P=i(26542);let A=(0,o.createStyles)(e=>{let{token:t,css:i}=e;return{userMenu:i` - .user-menu__title { - text-transform: uppercase; - } - .user-menu__title-username { - text-transform: none; - } - - .user-menu__item-extra { - margin-left: auto; - } - - .ant-dropdown-menu-title-content.ant-dropdown-menu-title-content { - gap: ${t.marginXXS}px; - width: 100%; - } - - .user-menu__item-icon { - width: 20px; - line-height: 1; - } - - .ant-badge .ant-badge-count { - background: ${t.colorPrimary}; - width: 20px; - height: 20px; - border-radius: 100%; - font-size: 8px; - font-weight: ${t.fontWeightStrong}; - display: flex; - align-items: center; - justify-content: center; - } - `}});var F=i(9653),$=i(11757),M=i(61549),O=i(86569),_=i(38034);let L=e=>{let{className:t}=e,{t:i}=(0,S.useTranslation)(),{styles:l}=A(),[a,o]=(0,n.useState)(!1),[s]=(0,v.Ng)(),{openMainWidget:d}=(0,P.useWidgetManager)(),c=(0,M.J)(),{getUserImageById:b,updateUserImageInState:x}=(0,_.N)(),{data:j}=(0,T.bQ)(void 0,{skip:!(0,f.J)(F.F.Notifications)});(0,n.useEffect)(()=>{c.hasImage&&b(c.id).then(e=>{void 0!==e&&x(e,!0)}).catch(e=>{console.error("Error fetching user image:",e)})},[]);let w=[{key:"title",label:(0,r.jsxs)("div",{className:"user-menu__title",children:[i("user-menu.title"),(0,r.jsxs)("span",{className:"user-menu__title-username",children:["(",c.username,")"]})]}),type:"group"},{key:"notifications",label:i("user-menu.notifications"),icon:(0,r.jsx)("div",{className:"user-menu__item-icon",children:(0,r.jsx)(u.E,{count:(null==j?void 0:j.unreadNotificationsCount)??0,showZero:!0})}),onClick:()=>{d(y.L)},hidden:!(0,f.J)(F.F.Notifications),extra:(0,f.J)(F.F.SendNotifications)?(0,r.jsx)(p.$,{className:"user-menu__item-extra",onClick:e=>{e.stopPropagation(),o(!0)},size:"small",children:i("user-menu.notification.send")}):null},{key:"myprofile",label:i("user-menu.my-profile"),icon:(0,r.jsx)("div",{className:"user-menu__item-icon",children:(0,r.jsx)(g.I,{value:"user"})}),onClick:()=>{d($.d)}},{key:"logout",label:i("user-menu.log-out"),icon:(0,r.jsx)("div",{className:"user-menu__item-icon",children:(0,r.jsx)(g.I,{value:"log-out"})}),onClick:()=>{s().then(()=>{window.location.reload()}).catch(e=>{(0,h.Ay)(new h.hD(e))})}}];return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(m.m,{className:t,menu:{items:w},overlayClassName:[l.userMenu].join(" "),overlayStyle:{minWidth:275},trigger:["click"],children:(0,r.jsx)(O.Avatar,{"data-testid":"user-menu-avatar",icon:(0,r.jsx)(g.I,{value:"user"}),size:26,src:(null==c?void 0:c.hasImage)&&(null==c?void 0:c.image)!=null?null==c?void 0:c.image:void 0})}),(0,r.jsx)(N,{onClose:()=>{o(!1)},open:a})]})},R=e=>{let{Component:t,context:i}=e;return(0,r.jsx)("li",{children:t},i.name)},B=()=>{let{styles:e}=s();return(0,r.jsxs)("div",{className:e.leftSidebar,children:[(0,r.jsx)(L,{className:"left-sidebar__avatar"}),(0,r.jsx)("ul",{className:"left-sidebar__nav",children:(0,r.jsx)(c.Y,{onRenderComponent:(e,t)=>(0,r.jsx)(R,{Component:e,context:t}),slot:d.e.leftSidebar.slot.name})})]})};var z=i(8651),V=i.n(z),G=i(83015);let U=(0,o.createStyles)(e=>{let t,{token:i,css:r}=e,n=t={...t={zIndexPopup:i.zIndexPopupBase+50,cardBg:i.colorFillAlter,cardHeight:i.controlHeightLG,cardPadding:"",cardPaddingSM:`${1.5*i.paddingXXS}px ${i.padding}px`,cardPaddingLG:`${i.paddingXS}px ${i.padding}px ${1.5*i.paddingXXS}px`,titleFontSize:`${i.fontSize}px`,titleFontSizeLG:`${i.fontSizeLG}px`,titleFontSizeSM:`${i.fontSize}px`,inkBarColor:i.colorPrimary,horizontalMargin:`0 0 ${i.margin}px 0`,horizontalItemGutter:32,horizontalItemMargin:"",horizontalItemMarginRTL:"",horizontalItemPadding:`${i.paddingSM}px 0`,horizontalItemPaddingSM:`${i.paddingXS}px 0`,horizontalItemPaddingLG:`${i.padding}px 0`,verticalItemPadding:`${i.paddingXS}px ${i.paddingLG}px`,verticalItemMargin:`${i.margin}px 0 0 0`,itemSelectedColor:i.colorPrimary,itemHoverColor:i.colorPrimaryHover,itemActiveColor:i.colorPrimaryActive,cardGutter:i.marginXXS/2,...(null==i?void 0:i.Tabs)??{}},tabsCardPadding:i.cardPadding??`${(t.cardHeight-Math.round(i.fontSize*i.lineHeight))/2-i.lineWidth}px ${i.paddingSM}px`,dropdownEdgeChildVerticalPadding:i.paddingXXS,tabsActiveTextShadow:"0 0 0.25px currentcolor",tabsDropdownHeight:200,tabsDropdownWidth:120,tabsHorizontalItemMargin:`0 0 0 ${i.horizontalItemGutter}px`,tabsHorizontalItemMarginRTL:`0 0 0 ${i.horizontalItemGutter}px`};return{widgetManager:r` - position: absolute; - inset: 8px 6px 12px 6px; - - .flexlayout__layout { - overflow: visible; - } - - &.widget-manager--inner { - inset: 0; - } - - .flexlayout__tab_button_leading, - .flexlayout__border_button_leading { - display: none; - } - - .flexlayout__tab_button { - margin: 0; - padding: ${i.paddingSM}px ${i.paddingSM}px; - background: ${i.colorFillAlter}; - transition: all ${i.motionDurationSlow} ${i.motionEaseInOut}; - font-size: ${i.fontSize}px; - color: ${n.itemColor}; - outline: none; - gap: ${i.marginXXS}px; - - &:hover { - background: ${i.Tabs.colorBgHoverUnselectedTab}; - } - - &_trailing { - display: none; - } - - &--selected { - font-weight: ${i.fontWeightStrong}; - color: ${n.itemActiveColor}; - background: ${i.colorBgContainer}; - border-top: 2px solid ${i.Tabs.colorBorderActiveTab}; - - .widget-manager__tab-title-close-button { - display: block; - } - - .widget-manager-tab-title { - margin-top: -2px; - } - - &:hover { - background: ${i.colorBgContainer}; - } - } - - .flexlayout__tab_button_trailing { - margin-top: -2px; - display: none; - } - - &:focus:not(:focus-visible), &:active { - color: ${n.itemActiveColor}; - } - - &:first-child { - border-left: 1px solid ${i.Tabs.colorBorderContainer}66; - } - } - - .flexlayout__tabset_tab_divider { - width: ${n.cardGutter}px; - } - - .flexlayout__tab_button_top { - border-radius: ${i.borderRadiusLG}px ${i.borderRadiusLG}px 0 0; - border-bottom: 0; - } - - .flexlayout__border_inner_tab_container { - width: calc(100svh - 12px); - justify-content: flex-end; - gap: 2px; - } - - .flexlayout__border_inner_tab_container_left, .flexlayout__border_inner_tab_container_right { - .flexlayout__border_tab_divider { - width: 0; - } - } - - .flexlayout__splitter, - .flexlayout__border, - .flexlayout__tabset_tabbar_outer { - background: transparent; - } - - .flexlayout__tab { - position: relative; - overflow: visible; - background: ${i.colorBgContainer}; - box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.07), 2px 2px 0px 0px rgba(79, 78, 183, 0.05); - border-bottom: 1px solid ${i.Tabs.colorBorderContainer}66; - border-left: 1px solid ${i.Tabs.colorBorderContainer}66; - border-radius: 0 8px 8px 8px; - z-index: 1; - } - - .flexlayout__tab[style*='visibility: hidden'] { - z-index: -1; - } - - .flexlayout__tab:not(.widget-manager-inner-container) { - overflow: hidden; - } - - .flexlayout__tab_border { - box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.07), 2px 2px 0px 0px rgba(79, 78, 183, 0.05); - border-top: 1px solid ${i.Tabs.colorBorderContainer}66; - border-right: 1px solid ${i.Tabs.colorBorderContainer}66; - border-bottom: 1px solid ${i.Tabs.colorBorderContainer}66; - border-left: 1px solid ${i.Tabs.colorBorderContainer}66; - border-radius: 8px; - } - - .widget-manager-inner-container { - background: transparent; - box-shadow: none; - border: 0; - } - - .flexlayout__tabset { - overflow: visible; - border-radius: ${i.borderRadius}px; - font-family: ${i.fontFamily}; - - &, &-selected { - background: transparent; - } - } - - .flexlayout__border { - font-family: ${i.fontFamily}; - } - - .flexlayout__border_button { - margin: 0 0 6px 0; - background: transparent; - width: 40px; - justify-content: center; - border-radius: ${i.borderRadius}px; - transition: all ${i.motionDurationSlow} ${i.motionEaseInOut}, border-top-width 0.1s ease; - - &--selected { - color: ${n.itemActiveColor}; - border-top: 2px solid ${i.colorBorderActive}; - background: ${i.controlItemBgHover}; - } - } - - @media (hover: hover) { - .flexlayout__border_button--unselected:hover { - color: ${i.colorTextSecondary}; - background: ${i.controlItemBgActiveHover}; - } - - .flexlayout__tab_button--selected:hover { - color: ${n.itemActiveColor}; - background: ${i.colorBgContainer}; - } - } - - .flexlayout__border_button_trailing { - display: none; - } - - .flexlayout__border_left { - border-right: 0; - - .flexlayout__border_button_content { - transform: rotate(90deg); - } - } - - .flexlayout__border_right { - border-left: 0; - - .flexlayout__border_button_content { - transform: rotate(-90deg); - } - } - - .flexlayout__tabset_tabbar_outer_top { - border: 0; - } - - .flexlayout__tabset_tabbar_inner_tab_container { - padding-left: 0; - } - - .flexlayout__border_toolbar { - display: none; - } - - .widget-manager__tab-title-close-button { - display: none; - width: 12px; - height: 12px; - padding: 4px; - line-height: 0; - margin-top: -8px; - color: ${i.colorIcon}; - } - `}},{hashPriority:"low"});var q=i(35864),W=i(83196),K=i(59814),H=i(69134);let X=e=>{let{className:t,createContextMenuItems:i,...l}=e,{styles:a}=U(),{showContextMenu:o,dropdown:s}=((e,t)=>{let[i,l]=(0,n.useState)(null),a=(0,n.useRef)(null),{closeWidget:o}=(0,W.J)(),s=()=>{l(null)};(0,K.L)(a,s);let d=(0,n.useMemo)(()=>null===i||(0,q.isUndefined)(t)?[]:t({contextMenuState:i,closeContextMenu:s,model:e,closeWidget:o}),[i,t,e,o]),c=null===i||(0,q.isUndefined)(t)?null:(0,r.jsx)(m.m,{menu:{items:d},menuRef:a,open:!0,overlayStyle:{position:"absolute",left:i.x,top:i.y},children:(0,r.jsx)("span",{})});return void 0===t?{}:{showContextMenu:(e,t)=>{e instanceof G.TabNode&&(t.preventDefault(),l({x:t.clientX,y:t.clientY,tabNode:e}),e.getExtraData())},dropdown:c}})(l.model,i),{closeWidget:d}=(0,W.J)();return(0,H.Z)(()=>{var e;null==(e=l.model.getActiveTabset())||e.getChildren().forEach(e=>{d(e.getId())})},"closeAllTabs",!0),(0,r.jsxs)("div",{className:V()("widget-manager",t,a.widgetManager),children:[(0,r.jsx)(G.Layout,{...l,onContextMenu:o}),s]})};var J=i(61062),Z=i(46881),Y=i(20120),Q=i(63364),ee=i(726),et=i(10600);let ei=e=>{let{node:t}=e,i=t.getComponent(),n=(0,Q.Lt)(et.K.widgetManager).getWidget(i),l=(0,r.jsx)(ee.v,{modified:!1,node:t});return(null==n?void 0:n.titleComponent)!==void 0&&(l=(0,r.jsx)(n.titleComponent,{node:t})),(0,r.jsxs)(r.Fragment,{children:[" ",l," "]})};var er=i(60142);let en=e=>{let{contextMenuState:t,closeContextMenu:i,model:r,closeWidget:n}=e;return[{key:"close-tab",label:(0,er.t)("close-tab"),onClick:()=>{null!==t&&(n(t.tabNode.getId()),i())}},{key:"close-others",label:(0,er.t)("close-others"),onClick:()=>{if(null!==t){var e;null==(e=r.getActiveTabset())||e.getChildren().forEach(e=>{e.getId()!==t.tabNode.getId()&&n(e.getId())}),i()}}},{key:"close-unmodified",label:(0,er.t)("close-unmodified"),onClick:()=>{if(null!==t){var e;let t=Q.kL.get(et.K.widgetManager);null==(e=r.getActiveTabset())||e.getChildren().forEach(e=>{let i=t.getWidget(e.getComponent()??""),r=null==i?void 0:i.isModified;void 0!==r&&r(e)||n(e.getId())}),i()}}},{key:"close-all",label:(0,er.t)("close-all"),onClick:()=>{if(null!==t){var e,r;null==t||null==(r=t.tabNode)||null==(e=r.getParent())||e.getChildren().forEach(e=>{n(e.getId())}),i()}}}]},el=(0,n.memo)(()=>{var e;let t=(0,Z.useAppSelector)(Y.y6),i=(0,Z.useAppDispatch)(),l=G.Model.fromJson(t),a=(null==(e=l.getActiveTabset())?void 0:e.getChildren().length)??0;return(0,n.useEffect)(()=>{l.doAction(G.Actions.updateModelAttributes({tabSetTabStripHeight:34,tabSetTabHeaderHeight:34,borderBarSize:50}))},[]),(0,n.useEffect)(()=>{var e;let t=null==(e=l.getActiveTabset())?void 0:e.getSelectedNode();void 0!==t?i((0,Y.C_)({nodeId:t.getId()})):i((0,Y.C_)(null))},[l]),(0,r.jsx)(X,{className:"widget-manager--inner",createContextMenuItems:en,factory:ea,model:l,onModelChange:function(e){i((0,Y.XB)(e.toJson()))},onRenderTab:function(e,t){t.content=(0,r.jsx)(ei,{node:e}),t.leading=(0,r.jsx)(r.Fragment,{})}},0===a?"empty":"tabs")}),ea=e=>{if("inner-widget-manager"===e.getComponent())return(0,r.jsx)(el,{});let t=Q.kL.get(et.K.widgetManager),i=e.getComponent();if(void 0===i)return;let n=t.getWidget(i);if(void 0===n)return void(0,h.Ay)(new h.$g(`Widget ${i} not found`));let{component:l,contentTitleComponent:a}=n;return(0,r.jsx)(J.u,{component:l,contentTitleComponent:a,defaultGlobalContext:n.defaultGlobalContext??!0,node:e})},eo=()=>{let e=(0,Z.useAppSelector)(Y.D9),t=(0,Z.useAppDispatch)(),i=G.Model.fromJson(e),n=i.getNodeById("bottom_tabset");return i.doAction(G.Actions.updateModelAttributes({tabSetTabStripHeight:34,tabSetTabHeaderHeight:34,borderBarSize:50})),0===n.getChildren().length?i.doAction(G.Actions.updateNodeAttributes(n.getId(),{height:-8})):-8===n.getHeight()&&i.doAction(G.Actions.updateNodeAttributes(n.getId(),{height:34})),(0,r.jsx)(X,{factory:ea,model:i,onModelChange:function(e){t((0,Y.I7)(e.toJson()))},onRenderTab:function(e,t){t.content=(0,r.jsx)(ei,{node:e}),t.leading=(0,r.jsx)(r.Fragment,{})}})},es=(0,o.createStyles)(e=>{let{token:t,css:i}=e;return{rightSidebar:i` - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 2; - pointer-events: none; - width: 56px; - - .right-sidebar__nav { - list-style: none; - padding: ${t.paddingXXS}px 0; - margin: ${t.marginXS}px 0; - position: relative; - pointer-events: auto; - text-align: center; - } - `}},{hashPriority:"low"});var ed=i(77885);let ec=e=>{let{Component:t,context:i}=e;return(0,r.jsx)("li",{children:t},i.name)},eu=()=>{let{styles:e}=es();return(0,r.jsx)("div",{className:e.rightSidebar,children:(0,r.jsx)("ul",{className:"right-sidebar__nav",children:(0,r.jsx)(c.Y,{onRenderComponent:(e,t)=>(0,r.jsx)(ec,{Component:e,context:t}),slot:ed.eb.rightSidebar.slot.name})})})},ep=(0,o.createStyles)(e=>{let{token:t,css:i}=e;return{baseLayout:i` - position: absolute; - overflow: hidden; - inset: 0; - `}},{hashPriority:"low"});var em=i(30652),eg=i(24058),eh=i(99224);let ev=()=>{let{jobs:e}=(0,em.O)(),t=e.length>0,[i]=(0,eg.h)(),{t:l}=(0,S.useTranslation)();return(0,n.useEffect)(()=>{t&&i.open({key:"jobs-notification",message:l("jobs.notification.title"),description:(0,r.jsx)(eh.y,{})}),t||i.destroy("jobs-notification")},[e.length]),(0,r.jsx)(r.Fragment,{})};var ef=i(62284),ey=i(72098);let eb=()=>{let{styles:e}=ep(),t=(0,ef.useSelector)(ey.rC);return(0,n.useEffect)(()=>{let e=document.documentElement;if((0,q.isUndefined)(t))return;let i=t.branding.brandColor,r=t.branding.backgroundShade;e.style.setProperty("--pimcore-brand-color",i),e.style.setProperty("--pimcore-brand-background-color",r)},[t]),(0,r.jsxs)("div",{className:["base-layout",e.baseLayout].join(" "),children:[(0,r.jsx)(B,{}),(0,r.jsx)(eo,{}),(0,r.jsx)(ev,{}),(0,r.jsx)(eu,{})]})};var ex=i(71173),ej=i(23945),ew=i(56789),eC=i(59446),eS=i(55745);let eT=()=>((()=>{let{session_gc_maxlifetime:e}=(0,eC.t)(),[t]=(0,eS.sH)();(0,n.useEffect)(()=>{if((0,q.isNil)(e))return;let i=setInterval(()=>{t()},(Number(e)-60)*1e3);return()=>{clearInterval(i)}},[e,t])})(),null);var eI=i(17530),ek=i(86049),eE=i(39808);let eD=e=>{let{children:t}=e,i=(0,Z.useAppDispatch)(),l=(0,M.J)(),[a,o]=(0,n.useState)(!0);return((0,n.useEffect)(()=>{(async()=>{let e=Q.kL.get(et.K.widgetRestorerRegistry),t=l.id,r=(0,eI.c)((0,ek.Q_)(t));if(!(0,q.isNil)(r))try{let t=G.Model.fromJson(r);i((0,Y.XB)(r));let n=[];t.visitNodes(t=>{if("tab"===t.getType()){let r=t.toJson();n.push((async()=>{await e.restore(r,i)||(0,q.isNil)(r.id)||i((0,Y.Jj)(r.id))})())}}),await Promise.all(n)}catch(e){console.warn("Failed to restore widget layout",e)}o(!1)})()},[l.id]),a)?(0,r.jsx)(eE.U,{loading:!0}):(0,r.jsx)(r.Fragment,{children:t})};var eN=i(19808),eP=i(73468),eA=i(34231);let eF=`${eA.W}/pimcore-statistics`,e$=async e=>{try{let t=await fetch(eF,{method:"GET",headers:{"X-Requested-With":"XMLHttpRequest"}});if(t.ok){let i=await t.json();e&&await fetch("https://license.pimcore.com/statistics",{method:"POST",body:new URLSearchParams({data:encodeURIComponent(JSON.stringify(i))})})}}catch(e){console.error("Error while sending statistics: ",e)}},eM=(0,o.createStyles)((e,t)=>{let{token:i,css:r}=e,{backgroundImageUrl:n}=t;return{loginPage:r` - display: flex; - align-items: center; - background: url(${n}) lightgray 50% / cover no-repeat; - position: absolute; - inset: 0; - overflow-y: auto; - padding: 40px 0; - `,loginWidget:r` - display: flex; - flex-direction: column; - width: 503px; - min-height: 608px; - flex-shrink: 0; - border-radius: 8px; - background: linear-gradient(335deg, rgba(255, 255, 255, 0.86) 1.72%, rgba(236, 232, 241, 0.86) 158.36%); - padding: 85px 100px 85px 100px; - margin-left: 80px; - - /* Component/Button/primaryShadow */ - box-shadow: 0px 2px 0px 0px rgba(114, 46, 209, 0.10); - - img { - max-height: 200px; - max-width: 100%; - object-fit: contain; - margin-bottom: 70px; - } - `}});var eO=i(39578),e_=i(41630),eL=i(76228),eR=i(25330);let eB=eA.U.baseUrl.endsWith("/")?eA.U.baseUrl.slice(0,-1)+"/":eA.U.baseUrl,ez=`${eB}login/`,eV=`${eB}:elementType/:id`,eG=`${eB}reset-password/`,eU={root:eB,login:ez,deeplinkAsset:eV,passwordReset:eG},eq=e=>{let{children:t}=e,{isAuthenticated:i}=(0,eN.X)(),n=(0,l.useLocation)();return(0,r.jsxs)(r.Fragment,{children:[!0===i&&t,!1===i&&(0,r.jsx)(l.Navigate,{state:{from:n},to:eU.login})]})},eW=(0,l.createBrowserRouter)([{path:eU.root,element:(0,r.jsx)(eq,{children:(0,r.jsx)(()=>{(()=>{var e,t,i,r;let n=(0,l.useLocation)(),{openElement:a}=(0,ew.K)(),o=(0,Z.useAppDispatch)();if((null==n||null==(e=n.state)?void 0:e.isDeeplink)===!0){let e=null==n||null==(i=n.state)?void 0:i.id,t=null==n||null==(r=n.state)?void 0:r.elementType;(async()=>{(0,q.isEmpty)(e)||(0,q.isEmpty)(t)||await a({id:Number(e),type:t})})().catch(()=>{(0,h.Ay)(new h.$g("An Error occured while opening the Element"))})}(null==n||null==(t=n.state)?void 0:t.resetPassword)===!0&&o((0,Y.OS)({...$.d,config:{...$.d.config,resetPassword:!0}}))})();let e=e=>{e.preventDefault()};return(0,r.jsx)("div",{onDragOver:e,onDrop:e,children:(0,r.jsxs)(eD,{children:[(0,r.jsx)(a.V,{}),(0,r.jsx)(ex.k,{children:(0,r.jsx)(ej.ElementSelectorProvider,{children:(0,r.jsx)(eb,{})})}),(0,r.jsx)(c.Y,{slot:"global.feedback"}),(0,r.jsx)("div",{id:"global-overlay-container"}),(0,r.jsx)(eT,{})]})})},{})})},{path:eU.login,element:(0,r.jsx)(()=>{let e=(0,l.useNavigate)(),t=(0,l.useLocation)(),[i]=(0,l.useSearchParams)(),a=i.get("token"),o=(0,e_.jL)(),s=(0,M.J)(),{isAuthenticated:d}=(0,eN.X)(),{loginWithToken:c}=(0,eO.u)(),{customLogoSmall:u,loginScreenCustomBackgroundImage:p}=(0,eR.Y)(),{styles:m}=eM({backgroundImageUrl:p});return(0,n.useEffect)(()=>{!0===d&&(async()=>{var i,r;e((null==t||null==(r=t.state)||null==(i=r.from)?void 0:i.pathname)??eU.root),await e$(s.isAdmin)})().catch(()=>{})},[d]),(0,n.useEffect)(()=>{(0,q.isNil)(a)||c(a,async()=>{e(eU.root),o((0,eL.UA)(!0))},()=>{e(eU.login)})},[a]),(0,r.jsx)("div",{className:m.loginPage,"data-testid":"login-page",children:(0,r.jsxs)("div",{className:m.loginWidget,children:[(0,r.jsx)("img",{alt:"Logo","data-testid":"login-page-logo",src:u}),(0,r.jsx)(eP.b,{})]})})},{})},{path:eU.deeplinkAsset,element:(0,r.jsx)(eq,{children:(0,r.jsx)(()=>{let{elementType:e,id:t}=(0,l.useParams)(),i=(0,l.useNavigate)();return(0,n.useEffect)(()=>{i(eU.root,{state:{isDeeplink:!0,id:t,elementType:e}})},[t,e]),(0,r.jsx)(r.Fragment,{})},{})})},{path:eU.passwordReset,element:(0,r.jsx)(()=>{let e=(0,l.useNavigate)(),[t]=(0,l.useSearchParams)(),i=t.get("token"),{loginWithToken:a}=(0,eO.u)(),o=(0,e_.jL)();return(0,n.useEffect)(()=>{(0,q.isNil)(i)||a(i,async()=>{e(eU.root,{state:{resetPassword:!0}}),o((0,eL.UA)(!0))},()=>{e(eU.login)})},[i]),(0,r.jsx)(r.Fragment,{})},{})}])},83120(e,t,i){"use strict";i.d(t,{o:()=>c});var r=i(74848);i(47867);var n=i(8651),l=i.n(n);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{card:i` - & .ant-collapse { - width: 352px; - background-color: white; - } - - & span, & div, div.anticon, button { - vertical-align: middle; - } - `}},{hashPriority:"low"});var o=i(30302),s=i(68516),d=i(35864);let c=e=>{let{items:t}=e,{styles:i}=a(),n=t.find(e=>e.selected),c=(0,d.isUndefined)(n)?void 0:n.key,u=t.map(e=>(0,r.jsx)("div",{className:l()(i.card,e.className),children:(0,r.jsx)(s.n,{accordion:!0===e.selected,activeKey:c,expandIconPosition:"after-title",items:[e]})},e.key));return(0,r.jsx)(o.G,{timeStamps:u})}},68516(e,t,i){"use strict";i.d(t,{n:()=>c});var r=i(74848),n=i(47867),l=i(86569);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e,r={highlightBackgroundColor:"#F6FFED",highlightBorderColor:"#B7EB8F",highlightColor:"#52C41A",...t};return{accordion:i` - border: none; - - &.ant-collapse-borderless.accordion--spaced { - > .ant-collapse-item:last-child { - > .ant-collapse-header[aria-expanded='false'] { - border-radius: ${r.borderRadiusLG}px; - } - - > .ant-collapse-header[aria-expanded='true'] { - border-top-left-radius: ${r.borderRadiusLG}px; - border-top-right-radius: ${r.borderRadiusLG}px; - } - } - } - - .ant-collapse-item.accordion__item--theme-success { - border: 1px solid ${r.highlightBorderColor}; - background-color: ${r.highlightBackgroundColor}; - border-radius: ${r.borderRadiusLG}px !important; - - > .ant-collapse-content { - border-top: 1px solid ${r.highlightBorderColor}; - background-color: transparent; - } - } - - .ant-collapse-item.accordion__item--theme-primary { - border: 1px solid ${r.colorPrimaryBorder}; - border-radius: ${r.borderRadiusLG}px !important; - background-color: ${r.colorFillAlter}; - - > .ant-collapse-content { - border-top: 1px solid ${r.colorBorder}; - background-color: transparent; - } - } - - .accordion__item { - + .accordion__item { - margin-top: ${t.marginXS}px; - } - - > .ant-collapse-header { - display: inline-flex; - width: 100%; - align-items: baseline; - - > .ant-collapse-header-text { - margin-inline-end: 0; - } - - > .ant-collapse-expand-icon { - display: none; - } - } - - .accordion__chevron-btn { - display: flex; - align-items: center; - justify-content: center; - margin: 0 ${t.marginXXS}px; - align-self: center; - } - - .accordion__chevron { - rotate: 180deg; - transition-duration: 0.6s; - transition-property: transform; - } - - .accordion__chevron--up { - transform: rotate(-180deg); - } - } - - .ant-collapse-extra { - order: 1; - margin-left: 5px; - } - - .ant-form-item:last-child { - margin-bottom: 0; - } - `,table:i` - width: min-content; - min-width: 100%; - - .ant-collapse-item .ant-collapse-content .ant-collapse-content-box { - padding: 0; - } - - .ant-table { - table { - border: 0; - border-radius: 0; - - th { - padding: ${t.paddingXXS}px ${t.paddingXS}px !important; - } - } - - .ant-table-thead { - th:first-child { - border-left: 0; - } - - tr:first-child th:first-child { - border-top-left-radius: 0; - } - - tr:first-child th:last-child { - border-top-right-radius: 0; - } - } - - .ant-table-tbody { - td:first-child { - border-left: 0; - } - - .ant-table-row:last-of-type { - .ant-table-cell:first-of-type { - border-bottom-left-radius: 0; - } - - .ant-table-cell:last-of-type { - border-bottom-right-radius: 0; - } - - .ant-table-cell { - border-bottom: 0; - } - } - } - } - `,bordered:i` - background: ${t.colorBgContainer}; - - &.accordion--bordered { - .ant-collapse-item { - background: ${t.colorBgContainer}; - border: 1px solid ${t.colorBorderSecondary}; - border-radius: ${t.borderRadiusLG}px; - } - - .ant-collapse-header { - font-weight: ${t.fontWeightStrong}; - } - - .accordion-item__header-info { - font-weight: 400; - color: ${t.colorTextSecondary}; - } - - .ant-collapse-content { - border-color: ${t.colorBorderSecondary}; - } - - &.ant-collapse-small { - .ant-collapse-header { - padding: ${t.paddingXS}px ${t.paddingSM}px; - } - } - } - `,spaced:i` - background: ${t.colorBgContainer}; - - .accordion__item { - margin-bottom: 24px; - border-bottom: none; - } - - .ant-collapse-header[aria-expanded='false'] { - background-color: ${t.colorBgSelectedTab}; - border: 1px solid ${t.colorBorder}; - border-radius: 5px; - } - - .ant-collapse-header[aria-expanded='true'] { - background-color: ${t.colorBgSelectedTab}; - border: 1px solid ${t.colorBorder}; - border-top-left-radius: 5px; - border-top-right-radius: 5px; - } - - .ant-collapse-content-box { - border: 1px solid ${t.colorBorder}; - border-top: none; - border-bottom-left-radius: 5px; - border-bottom-right-radius: 5px; - background-color: ${t.colorBgSelectedTab}; - } - `}});var o=i(60142),s=i.n(o),d=i(29740);let c=e=>{let{items:t,accordion:i=!1,spaced:o=!1,bordered:c=!1,table:u=!1,className:p,activeKey:m,expandIconPosition:g="after-title",...h}=e,{styles:v}=a(),[f,y]=(0,n.useState)([]);(0,n.useEffect)(()=>{Array.isArray(m)?y(m.map(String)):null!=m&&y([String(m)])},[m]);let b=(null==t?void 0:t.map(e=>{let t=["accordion__chevron",null!=e.key&&f.includes(String(e.key))?"accordion__chevron--up":""].join(" "),n=()=>(0,r.jsx)(d.K,{"aria-label":s().t("aria.notes-and-events.expand"),className:"accordion__chevron-btn",icon:{value:"chevron-up",className:t},onClick:()=>{var t;null!=e.id&&(t=e.id,i?y(e=>e.includes(t)?[]:[t]):y(e=>e.includes(t)?e.filter(e=>e!==t):[...e,t]))},role:"button",size:"small",type:"text",variant:"minimal"}),{disabled:a,...o}=e,c=[null==e?void 0:e.className,"accordion__item"].filter(Boolean);return void 0!==e.theme&&c.push(`accordion__item--${e.theme}`),{...o,className:c.join(" "),label:(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(l.Flex,{align:"center",children:["start"===g&&null!==e.children&&!0!==e.disabled&&n(),e.title,"after-title"===g&&null!==e.children&&!0!==e.disabled&&n(),(0,r.jsx)("span",{className:"accordion-item__header-info",children:null!==e.info&&e.info})]}),e.subtitle]}),title:"",subtitle:"",...e.disabled?{collapsible:"icon"}:{}}}))??[],x=["accordion",p,v.accordion];return o&&(x.push("accordion--spaced",v.spaced),x.push(v.spaced)),c&&(x.push("accordion--bordered",v.bordered),x.push(v.bordered)),u&&(x.push("accordion--table",v.table),x.push(v.table)),(0,r.jsx)(l.Collapse,{accordion:i,activeKey:f,bordered:!o,className:x.join(" "),items:b,onChange:e=>{y(Array.isArray(e)?e:[e])},...h})}},75240(e,t,i){"use strict";i.d(t,{F:()=>s});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(86569);let o=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{alert:t` - &.ant-alert-banner { - padding: ${i.paddingContentVerticalSM}px ${i.paddingSM}px; - } - `}}),s=e=>{let{className:t,rootClassName:i,...n}=e,{styles:s}=o();return(0,r.jsx)(a.Alert,{className:t,rootClassName:l()(s.alert,i),...n})}},94313(e,t,i){"use strict";i.d(t,{C:()=>y});var r=i(74848),n=i(47867),l=i(25750);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{assetTargetContainer:i` - border-radius: ${t.borderRadiusLG}px; - outline: 1px dashed ${t.colorBorder}; - background: ${t.controlItemBgHover}; - padding: ${t.paddingSM}px; - max-width: 100%; - min-width: 150px; - min-height: 100px; - position: relative; - - .image-target-title { - text-align: center; - } - - .icon-container { - color: ${t.colorIcon}; - } - `,closeButton:i` - position: absolute; - top: ${t.paddingXXS}px; - right: ${t.paddingXXS}px; - `}});var o=i(8651),s=i.n(o),d=i(83499),c=i(81898),u=i(94788),p=i(21429),m=i(44829),g=i(43588),h=i(99154),v=i(35864),f=i(53636);let y=e=>{let{title:t,className:i,width:o=200,height:y=200,dndIcon:b,uploadIcon:x,addIcon:j,onRemove:w,onSearch:C,onUpload:S,onResize:T,dropClass:I}=e,{getStateClasses:k}=(0,u.z)(),{styles:E}=a(),{t:D}=(0,p.useTranslation)(),N=(0,n.useRef)(null),P=(0,f.A)(N,(0,v.isUndefined)(T));(0,n.useEffect)(()=>{P.width>0&&P.height>0&&(null==T||T(P))},[P,T]);let A=[];return void 0!==w&&A.push({icon:(0,r.jsx)(c.I,{value:"trash"}),key:"remove",label:D("remove"),onClick:w}),void 0!==C&&A.push({icon:(0,r.jsx)(c.I,{value:"search"}),key:"search",label:D("search"),onClick:C}),void 0!==S&&A.push({icon:(0,r.jsx)(c.I,{value:"upload-cloud"}),key:"upload",label:D("upload"),onClick:S}),(0,r.jsx)(h.m,{disabled:(0,v.isNil)(A)||0===A.length,dropClass:I,menu:{items:A},trigger:["contextMenu"],children:(0,r.jsxs)("div",{className:s()(i,E.assetTargetContainer,...k()),ref:N,style:{height:(0,d.x)(y),width:(0,d.x)(o)},children:[(0,r.jsxs)(l.s,{align:"center",gap:"mini",justify:"center",style:{height:"100%"},vertical:!0,children:[(!0===b||!0===x||void 0!==S)&&(0,r.jsx)("div",{className:"icon-container",children:(0,r.jsxs)(l.s,{align:"center",gap:"mini",justify:"center",children:[!0===j&&(0,r.jsx)(c.I,{options:{height:20,width:20},value:"plus-circle"}),(!0===x||void 0!==S)&&(0,r.jsx)(c.I,{options:{height:17,width:17},value:"upload-import"}),!0===b&&(0,r.jsx)(c.I,{options:{height:20,width:21},value:"drop-target"})]})}),(0,r.jsx)("div",{className:"image-target-title",children:(0,r.jsx)(g.Text,{type:"secondary",children:t})})]}),(0,r.jsx)(m.n,{dropdownItems:A})]})})}},74351(e,t,i){"use strict";i.d(t,{V:()=>a});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{background:i` - position: absolute; - inset: 0; - background: #FFF; - overflow: hidden; - opacity: 0.4; - - .background-figure { - position: absolute; - - &--top-left { - top: -80%; - left: -30%; - width: 1324px; - height: 1324px; - transform: rotate(65.637deg); - flex-shrink: 0; - border-radius: var(--Components-Input-Component-paddingBlockSM, 1324px); - background: rgba(55, 217, 243, 0.20); - filter: blur(310px); - } - - - &--bottom-left { - width: 651.152px; - height: 1503.398px; - transform: rotate(28.303deg); - flex-shrink: 0; - border-radius: var(--Components-Input-Component-paddingBlockSM, 1503.398px); - background: #FDFFFF; - filter: blur(310px); - } - - &--bottom-right { - top: 55%; - left: 33%; - width: 1642px; - height: 686px; - transform: rotate(65.637deg); - flex-shrink: 0; - border-radius: var(--Components-Input-Component-paddingBlockSM, 1642px); - background: var(--pimcore-brand-background-color, rgba(122, 58, 212, 0.42)); - filter: blur(310px); - } - } - `,logoImage:i` - position: absolute; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - max-width: 586px; - max-height: 373px; - z-index: 1; - `}},{hashPriority:"low"});var l=i(25330);let a=()=>{let{styles:e}=n(),{logoUrl:t}=(0,l.Y)();return(0,r.jsxs)("div",{className:e.background,"data-testid":"studio-background",children:[(0,r.jsx)("div",{className:"background-figure background-figure--bottom-left"}),(0,r.jsx)("div",{className:"background-figure background-figure--bottom-right"}),(0,r.jsx)("div",{className:"background-figure background-figure--top-left"}),(0,r.jsx)("img",{alt:"Logo",className:e.logoImage,"data-testid":"studio-background-logo",src:t})]})}},63558(e,t,i){"use strict";i.d(t,{E:()=>l});var r=i(74848);i(47867);var n=i(86569);let l=e=>{let{color:t,size:i,...l}=e,a="large"===i;return(0,r.jsx)(n.Badge,{color:t,size:a?"default":i,styles:{indicator:{outline:`1px solid ${t}`,...a?{width:24,height:24,minWidth:24,lineHeight:"24px",borderRadius:12,fontSize:12}:{}},root:{marginRight:"5px"}},...l})}},5785(e,t,i){"use strict";i.d(t,{P:()=>d});var r=i(74848),n=i(47867),l=i(35864),a=i(86052),o=i(93464),s=i(64756);let d=e=>{let{theme:t="card-with-highlight",...i}=e,d=!0===i.border||!0===i.collapsible||!(0,l.isEmpty)(i.title),c={...i,bordered:i.border};return(0,n.useMemo)(()=>d?!0===c.collapsible?(0,r.jsx)(o.X,{active:c.active,bordered:c.bordered,contentPadding:c.contentPadding,defaultActive:!(c.collapsed??!0),extra:c.extra,extraPosition:c.extraPosition,forceRender:!0,hasContentSeparator:"fieldset"!==t,label:(0,r.jsx)(r.Fragment,{children:c.title}),onChange:c.onChange,size:"small",theme:t,children:c.children}):(0,r.jsx)(a.Z,{bordered:!0===c.bordered,contentPadding:c.contentPadding,extra:c.extra,extraPosition:c.extraPosition,theme:t,title:(0,l.isEmpty)(c.title)?void 0:c.title,children:c.children}):(0,r.jsx)(s.a,{padding:c.contentPadding,children:c.children}),[c,d,t])}},3171(e,t,i){"use strict";i.d(t,{X:()=>o});var r=i(74848),n=i(27820);i(47867);var l=i(21429),a=i(8320);let o=()=>{let{operations:e}=(0,a.S)(),{t}=(0,l.useTranslation)();return(0,r.jsx)(n.J,{icon:{value:"new"},onClick:t=>{t.stopPropagation(),e.add({})},children:t("add")})}},79870(e,t,i){"use strict";i.d(t,{k:()=>c});var r=i(74848),n=i(8320),l=i(29740),a=i(2338),o=i(62461),s=i(54872),d=i(57231);i(47867);let c=e=>{let{field:t,disallowAdd:i,disallowDelete:c,disallowReorder:u,itemValue:p,getItemTitle:m}=e,{operations:g}=(0,n.S)(),h=d.lV.useWatch([t]),v=null==m?void 0:m(h??p,t),f=null!=v?String(v):void 0;return(0,r.jsx)(s.Z,{title:f,children:(0,r.jsxs)(o.B,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,r.jsxs)(a.$,{size:"mini",children:[(0,r.jsx)(l.K,{"data-testid":`block-tool-strip-${t}-add`,disabled:i,icon:{value:"new"},onClick:()=>{g.add({},t+1)},size:"small"}),(0,r.jsx)(l.K,{disabled:u,icon:{value:"chevron-down"},onClick:()=>{g.move(t,t+1)},size:"small"}),(0,r.jsx)(l.K,{disabled:u,icon:{value:"chevron-up"},onClick:()=>{g.move(t,t-1)},size:"small"})]}),(0,r.jsx)(l.K,{disabled:c,icon:{value:"trash"},onClick:()=>{g.remove(t)},size:"small"})]})})}},59438(e,t,i){"use strict";i.d(t,{e:()=>h});var r=i(74848),n=i(47867),l=i(57231),a=i(35864),o=i(5785),s=i(8320),d=i(3171),c=i(88929),u=i(79870);let p=e=>{let{field:t,noteditable:i=!1,children:l}=e;return(0,n.useMemo)(()=>(0,r.jsx)(c.k,{docked:!1,renderToolStripStart:!i&&(0,r.jsx)(u.k,{disallowAdd:e.disallowAdd??!1,disallowDelete:e.disallowDelete??!1,disallowReorder:e.disallowReorder??!1,field:t,getItemTitle:e.getItemTitle,itemValue:e.itemValue}),children:l}),[t,i,l,e.disallowAdd,e.disallowDelete,e.disallowReorder,e.itemValue,e.getItemTitle])};var m=i(64756);let g=e=>{let{values:t}=(0,s.S)(),i=(null==e?void 0:e.maxItems)??0,c=Object.keys(t),u=!0===e.noteditable,g=!0===e.disallowAddRemove,h=i>0&&c.length===i,v=u||h||c.length>0||g;return(0,n.useMemo)(()=>(0,r.jsx)(o.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,contentPadding:"none",extra:!v&&(0,r.jsx)(d.X,{}),extraPosition:"start",theme:"default",title:e.title,children:(0,r.jsx)(m.a,{padding:{top:"extra-small"},children:t.map((t,i)=>(0,r.jsx)("div",{style:{marginBottom:"8px"},children:(0,r.jsx)(p,{disallowAdd:g||h||u,disallowDelete:g||u,disallowReorder:!0===e.disallowReorder||u,field:i,getItemTitle:e.getItemTitle,itemValue:t,children:(0,r.jsx)(l.lV.Group,{name:i,children:(0,a.isFunction)(e.children)?e.children({blockIndex:i}):e.children})})},`block-item-${i}`))})}),[t,e,u,g,h,v])},h=e=>(0,r.jsx)(l.lV.NumberedList,{onChange:e.onChange,value:e.value,children:(0,r.jsx)(g,{...e})})},64756(e,t,i){"use strict";i.d(t,{a:()=>s});var r=i(74848),n=i(47867);let l=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{box:t` - &.box--inline { - display: inline-block; - } - `}});var a=i(9094),o=i(86569);let s=e=>{let{children:t,padding:i,margin:s,className:d,component:c="div",inline:u,style:p,...m}=e,{styles:g}=l(),{useToken:h}=o.theme,{token:v}=h(),f=(0,n.useMemo)(()=>{let e=(0,a.WV)(v,i),t=(0,a.ZP)(v,s);return{...e,...t,...p}},[i,s,p,o.theme]);return(0,n.useMemo)(()=>(0,r.jsx)(c,{className:`box ${g.box} ${!0===u?"box--inline":""} ${d??""}`,style:f,...m,children:t}),[t,d,c,u,f])}},30037(e,t,i){"use strict";i.d(t,{Q:()=>h,w:()=>p});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(46881),d=i(16327),c=i(56789),u=i(22014);let p=(e,t)=>{let[i,r]=(0,n.useState)(!1),[l,a]=(0,n.useState)(0);return(0,n.useLayoutEffect)(()=>{if(null==e||null==t)return;let{isHide:i,width:n}=e<=375?{isHide:!0,width:50}:e<=450?{isHide:!0,width:70}:e<=550?{isHide:!0,width:85}:e<=700?{isHide:!0,width:100}:e<=800?{isHide:!0,width:150}:e<=900?{isHide:!0,width:200}:e<=1e3?{isHide:!0,width:300}:e<=1100?{isHide:!0,width:400}:e<=1200?{isHide:!0,width:500}:e<=1300?{isHide:!0,width:600}:{isHide:!1,width:t};r(i),a(n)},[e,t]),{isHideBreadcrumb:i,currentBreadcrumbWidth:l}},m=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{breadcrumb:i` - .ant-dropdown-trigger { - cursor: pointer; - - > span[role="img"] { - display: none - } - } - `,breadcrumbLink:i` - color: ${t.colorTextTertiary}; - `,breadcrumbLinkLast:i` - color: ${t.colorText}; - `,pathItem:i` - cursor: pointer; - - &:hover { - color: ${t.colorPrimaryHover}; - } - `,dropdownMenu:i` - max-width: 400px; - `}});var g=i(68194);let h=e=>{let{path:t,elementType:i,editorTabsWidth:a,pageSize:h}=e,v=(0,s.useAppDispatch)(),f="asset"===i,[y,b]=(0,n.useState)(0),x=(0,n.useRef)(null),{openElement:j}=(0,c.K)(),{styles:w}=m();(0,n.useEffect)(()=>{if(0===y){var e;b((null==x||null==(e=x.current)?void 0:e.offsetWidth)??0)}},[]);let{isHideBreadcrumb:C,currentBreadcrumbWidth:S}=p(a,y),T=[],I=e=>{v(d.FH.endpoints.elementGetIdByPath.initiate({elementType:i,elementPath:e})).then(e=>{let{data:t}=e;void 0!==t&&j({id:t.id,type:i}).catch(()=>{})}).catch(()=>{})};return(0,r.jsx)(l.Breadcrumb,{className:w.breadcrumb,items:function(e){let t=e.split("/"),i=t.length,n=e=>{let{content:t,style:i,className:n,hasFilename:l=!1}=e;return l?(0,r.jsx)(g.C,{className:o()(w.breadcrumbLink,n),ellipsis:!0,style:i,value:t}):(0,r.jsx)(u.E,{className:o()(w.breadcrumbLink,n),ellipsis:{tooltip:{title:t}},style:i,children:t})},l=e=>{let{dotsMenuItems:t,items:i}=e;return[{title:"...",menu:{items:t,className:w.dropdownMenu}},...i]};if(i>2&&"L"===h&&(T.push({title:n({content:t[i-2],style:{maxWidth:"100px"}}),className:w.pathItem,onClick:()=>{I(t.slice(0,i-1).join("/"))}}),i>3)){let e=[];for(let r=1;r{I(t.slice(0,r+1).join("/"))}});T=l({dotsMenuItems:e,items:T})}if(i>2&&"L"!==h){let e=[];for(let r=1;r{I(t.slice(0,r+1).join("/"))}});T=l({dotsMenuItems:e,items:T})}return T.push({title:(0,r.jsx)("span",{ref:x,children:n({content:t[i-1],style:{...C&&{maxWidth:`${S}px`}},className:w.breadcrumbLinkLast,hasFilename:f})})}),T}(t)})}},95112(e,t,i){"use strict";i.d(t,{e:()=>a});var r=i(74848);i(47867);var n=i(86569);let l=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{buttonGroup:t` - &.button-group--with-separator { - & > .button-group__item:not(:last-child) { - position: relative; - - &::after { - content: ''; - position: absolute; - right: -4px; - top: 3px; - bottom: 3px; - width: 1px; - background-color: ${i.Divider.colorSplit}; - } - } - } - `}}),a=e=>{let{items:t,noSpacing:i=!1,withSeparator:a=!1}=e,{styles:o}=l(),s=[o.buttonGroup,"button-group"];return a&&s.push("button-group--with-separator"),(0,r.jsxs)(r.Fragment,{children:[!i&&(0,r.jsx)(n.Flex,{align:"center",className:s.join(" "),gap:"small",children:t.map((e,t)=>(0,r.jsx)("div",{className:"button-group__item",children:e},t))}),i&&(0,r.jsx)(n.Button.Group,{children:t.map((e,t)=>(0,r.jsx)("span",{children:e},t))})]})}},27994(e,t,i){"use strict";i.d(t,{$:()=>p});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569),o=i(78535),s=i(8651),d=i.n(s),c=i(13755);let u=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{button:i` - position: relative; - - .button__loading-spinner, - .ant-spin-dot { - position: absolute; - top: 50%; - left: 0; - right: 0; - margin: auto; - color: inherit; - transform: translateY(-50%); - } - - .button__text { - transition: opacity 200ms ease-in-out; - - &:empty { - display: none; - } - } - - .button__loading-spinner + .button__text { - opacity: 0; - } - - &.button--type-action { - background-color: ${t.colorBgToolbar}; - border: none; - box-shadow: none; - border-radius: ${t.borderRadius}px ${t.borderRadius}px 0 0; - - &.ant-btn-variant-outlined:not(:disabled):not(.ant-btn-disabled):hover { - background-color: ${t.colorFillActive}; - } - } - - &.button--color-secondary { - border-color: ${t.colorBorderSecondary}; - box-shadow: none; - color: ${t.colorText}; - } - &.button--color-secondary:hover { - border-color: ${t.colorBorderSecondary} !important; - color: ${t.colorText} !important; - } - `}}),p=l().forwardRef((e,t)=>{let{loading:i,children:l,className:s,type:p,color:m,...g}=e,h=(0,n.useRef)(null),{styles:v}=u();(0,n.useImperativeHandle)(t,()=>h.current);let f=d()("button",`button--type-${p}`,`button--color-${m}`,v.button,{"ant-btn-loading":i},s);return(0,n.useLayoutEffect)(()=>(!0===i&&null!==h.current&&(h.current.style.width=h.current.getBoundingClientRect().width+"px",h.current.style.height=h.current.getBoundingClientRect().height+"px"),()=>{!0===i&&null!==h.current&&(h.current.style.width="",h.current.style.height="")}),[i]),(0,r.jsxs)(a.Button,{className:f,ref:h,type:"action"===p?void 0:p,...g,color:"secondary"===m?void 0:m,children:[!0===i?(0,r.jsx)(o.AnimatePresence,{children:(0,r.jsx)(o.motion.div,{animate:{opacity:1},className:"button__loading-spinner",exit:{opacity:0},initial:{opacity:0},children:(0,r.jsx)(c.t,{size:"small",spinning:!0})},"loading")}):null,(0,r.jsx)("span",{className:"button__text",children:l})]})})},86052(e,t,i){"use strict";i.d(t,{Z:()=>g});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{card:i` - .ant-card-head { - min-height: 38px; - padding: ${t.paddingXXS}px ${t.paddingSM}px; - - .button--type-action { - margin-bottom: -4px; - } - } - - &.ant-card:not(.ant-card-bordered) { - box-shadow: none; - border: 1px solid transparent; - } - - .ant-card-head-title { - display: flex; - align-items: center; - gap: ${t.marginXS}px; - font-size: ${t.fontSize}px; - } - - .ant-card-extra { - display: flex; - align-items: center; - gap: ${t.marginXXS}px; - color: ${t.colorTextSecondary}; - } - - .ant-card-head-wrapper { - gap: ${t.paddingXS}px; - - .ant-card-head-title { - min-width: fit-content; - } - - .ant-card-extra { - width: 100%; - } - } - - .ant-card-body { - padding: 0; - } - - &.card-with-footer { - .card-footer { - padding: ${t.paddingXXS}px ${t.paddingXS}px; - border-top: 1px solid ${t.colorBorderSecondary}; - } - } - - &.card-fit-content { - width: fit-content; - } - - .ant-card-actions { - padding: ${t.paddingXXS}px; - - li { - margin: 0; - max-width: fit-content; - } - - li:not(:last-child) { - border: none; - } - } - - &.card--theme-card-with-highlight { - .ant-card-head { - border-bottom: 1px solid ${t.colorPrimaryBorder}; - } - } - - &.card--theme-border-highlight { - &, &.ant-card:not(.ant-card-bordered) { - border-left: 3px solid #D5CFDA; - } - } - - &.card--theme-fieldset { - border-left: 3px solid #D5CFDA; - background: rgba(242, 240, 244, 0.52); - - &, &.ant-card:not(.ant-card-bordered) { - border-left: 3px solid #D5CFDA; - } - - .ant-card-head { - border-bottom: transparent; - } - - .ant-card-body { - padding-top: ${t.paddingXXS}px; - } - } - `}});var s=i(29740),d=i(81898),c=i(72346),u=i(21429),p=i(64756),m=i(25750);let g=l().forwardRef((e,t)=>{var i;let{loading:l,children:g,footer:h,fitContent:v,className:f,theme:y="default",contentPadding:b="small",...x}=e,{t:j}=(0,u.useTranslation)(),{styles:w}=o(),C=[w.card,f,void 0!==h?"card-with-footer":"",!0===v?"card-fit-content":"",`card--theme-${y}`].filter(Boolean);return(0,r.jsxs)(a.Card,{...x,actions:x.actions,className:C.join(" "),cover:null!==x.image&&(null==(i=x.image)?void 0:i.src)!==void 0?(0,r.jsx)(c.R,{alt:x.image.alt,src:x.image.src}):x.cover,extra:void 0!==x.extra&&null!==x.extra?(0,r.jsxs)(m.s,{className:"w-full",justify:x.extraPosition??"flex-end",children:[Array.isArray(x.extra)?(0,r.jsx)("div",{children:x.extra.map((e,t)=>"object"==typeof e&&void 0!==e.icon?(0,r.jsx)(s.K,{icon:{value:e.icon},onClick:e.onClick,role:"button",title:e.title,type:void 0!==e.type?e.type:"text"},`${e.icon}-${t}`):(0,r.jsx)(n.Fragment,{children:e},`${e.icon}-${t}`))}):x.extra,void 0!==x.onClose?(0,r.jsx)(s.K,{"aria-label":j("aria.card.close"),icon:{value:"close"},onClick:()=>{var e;return null==(e=x.onClose)?void 0:e.call(x)},role:"button",size:"small",type:"text"}):null]}):null,title:void 0!==x.title&&null!==x.title?(0,r.jsxs)(r.Fragment,{children:[void 0!==x.icon&&null!==x.icon?(0,r.jsx)(d.I,{value:x.icon}):null,x.title]}):null,children:[void 0!==g&&(0,r.jsx)(p.a,{padding:b,children:g}),void 0!==h&&(0,r.jsx)("div",{className:"card-footer",children:h})]})})},92428(e,t,i){"use strict";i.d(t,{S:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(8651),a=i.n(l);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{inherited:i` - .ant-checkbox-inner { - background-color: ${t.colorBgContainerDisabled} !important; - border-color: ${t.colorBorder} !important; - } - - .ant-checkbox-inner:after { - border-color: ${t.colorTextDisabled} !important; - } - `}}),s=e=>{let{inherited:t,className:i,...l}=e,{styles:s}=o();return(0,r.jsx)(n.Checkbox,{className:a()(i,{[s.inherited]:t}),...l})};s.Group=e=>(0,r.jsx)(n.Checkbox.Group,{...e})},28453(e,t,i){"use strict";i.d(t,{B:()=>f});var r=i(74848),n=i(47867),l=i.n(n),a=i(6492),o=i.n(a),s=i(51419),d=i(53797),c=i.n(d),u=i(35864),p=i(96314),m=i(11264),g=i(76394);let h=(0,s.bu)(e=>{let t=[],i=e.state.doc.toString();try{c().load(i)}catch(i){if(i instanceof Error){var r,n,l,a;let o=0,s=0;if((0,u.isEmpty)(null==i?void 0:i.mark))(0,u.isEmpty)(i.linePos)||(o=(null==(l=i.linePos[0])?void 0:l.start)??0,s=(null==(a=i.linePos[0])?void 0:a.end)??o+1);else{let t=null==i||null==(r=i.mark)?void 0:r.line,l=null==i||null==(n=i.mark)?void 0:n.column,a=e.state.doc.line(t+1);s=Math.min((o=(null==a?void 0:a.from)+l)+1,null==a?void 0:a.to)}t.push({from:o,to:s,severity:"error",message:null==i?void 0:i.message})}}return t}),v=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{editor:i` - .cm-editor { - border: 1px solid ${t.colorBorder}; - border-radius: ${t.borderRadius}px; - outline: none; - overflow: auto; - font-family: ${t.fontFamilyCode}; - font-size: ${t.fontSize}px; - line-height: 1.6; - - &.cm-focused { - border-color: ${t.colorPrimary}; - box-shadow: 0 0 0 2px ${t.colorPrimary}1A; - } - - .cm-content { - padding: ${t.paddingXS}px ${t.paddingSM}px; - min-height: 120px; - } - - .cm-gutters { - background-color: ${t.colorFillQuaternary}; - border-right: 1px solid ${t.colorBorderSecondary}; - } - - .cm-lineNumbers { - color: ${t.colorTextTertiary}; - } - - .cm-activeLine { - background-color: ${t.colorFillTertiary}; - } - - .cm-selectionMatch { - background-color: ${t.colorPrimaryBg}; - } - - &:has(.cm-content[aria-readonly="true"]) { - background-color: ${t.colorBgContainerDisabled}; - cursor: not-allowed; - - &.cm-focused { - border-color: ${t.colorBorder}; - box-shadow: none; - } - - .cm-scroller, - .cm-content, - .cm-line { - cursor: not-allowed; - } - - .cm-gutters { - background-color: ${t.colorBgContainerDisabled}; - } - - .cm-activeLine { - background-color: transparent; - } - } - } - `}}),f=e=>{let{preset:t,extensions:i,value:n,onChange:d,lineWrapping:c=!1,...u}=e,{styles:f}=v(),y=l().useMemo(()=>[...null!=t?(e=>{switch(e){case"yaml":return[(0,p.yaml)(),h,(0,s.pJ)()];case"html":return[(0,m.html)()];case"json":return[(0,g.json)(),(0,s.bu)((0,g.jsonParseLinter)()),(0,s.pJ)()];default:return[]}})(t):[],...i??[],...c?[a.EditorView.lineWrapping]:[]],[t,i,c]),b=l().useCallback(e=>{null==d||d(e)},[d]);return(0,r.jsx)(o(),{...u,className:f.editor,extensions:y,onChange:b,value:n??""})}},2046(e,t,i){"use strict";i.d(t,{$0:()=>d.$,SD:()=>c,XP:()=>l.X});var r=i(74848),n=i(47867),l=i(93464),a=i(2338),o=i(8651),s=i.n(o),d=i(65476);let c=e=>{let{className:t,items:i,accordion:o,space:d,activeKeys:c,defaultActiveKeys:u,onChange:p,...m}=e,[g,h]=(0,n.useState)(c??u??[]);(0,n.useEffect)(()=>{void 0!==c&&h(c)},[c]);let v=i.map((e,t)=>({...m,...e})),f=s()("collapse",t,"w-full");return(0,r.jsx)(a.$,{className:f,direction:"vertical",...d,children:v.map(e=>{let{key:t,...i}=e;return(0,r.jsx)(l.X,{...i,active:g.includes(e.key),onChange:t=>{let i,r;i=t.includes("0"),r=[],r=!0===o&&i?[e.key]:i?[...g,e.key]:g.filter(t=>t!==e.key),void 0===c&&h(r),void 0!==p&&p(r)}},t)})})}},93464(e,t,i){"use strict";i.d(t,{X:()=>m});var r=i(74848),n=i(47867),l=i(86569),a=i(65476),o=i(81898);let s=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e,r={highlightBackgroundColor:"#F6FFED",highlightBorderColor:"#B7EB8F",highlightColor:"#52C41A",headerBgColor:"rgba(0, 0, 0, 0.04)",...i};return{"collapse-item":t` - &.ant-collapse { - background: transparent; - border: none; - - .expand-icon { - color: ${i.colorIcon} - } - - &.ant-collapse-small >.ant-collapse-item >.ant-collapse-header { - display: flex; - min-height: 38px; - padding: ${i.paddingXXS}px ${i.paddingSM}px; - align-items: center; - } - - &.ant-collapse-small:not(.collapse-item--theme-card-with-highlight) .collapse-header__title { - font-weight: 400; - } - - &>.ant-collapse-item >.ant-collapse-header { - .button--type-action { - margin-bottom: -4px; - } - } - - .collapse-header__title-container { - flex-grow: 0; - } - .collapse-header__title { - font-weight: ${i.fontWeightStrong}; - } - - .collapse-header__extra { - flex-grow: 1; - } - - .ant-collapse-content { - border: none; - background-color: transparent; - padding: 0; - } - - .ant-collapse-content>.ant-collapse-content-box { - padding: 0; - } - - &.collapse-item--theme-card-with-highlight, - &.collapse-item--theme-default { - background-color: ${r.colorBgContainer}; - - &.collapse-item--bordered { - border: 1px solid ${i.colorBorderSecondary}; - } - - &.collapse-item--separator .ant-collapse-content { - border-top: 1px solid ${r.colorBorderSecondary}; - } - } - - .collapse-item--theme-border-highlight { - background-color: ${r.colorBgContainer}; - border-left: 3px solid #D5CFDA; - border-radius: 0; - - &.collapse-item--bordered { - border: 1px solid ${i.colorBorderSecondary}; - border-left: 3px solid #D5CFDA; - } - - &.collapse-item--separator .ant-collapse-content { - border-top: 1px solid ${r.colorBorderSecondary}; - } - } - - &.collapse-item--theme-card-with-highlight { - &.collapse-item--separator .ant-collapse-content { - border-top: 1px solid ${r.colorPrimaryBorder}; - } - } - - &.collapse-item--theme-success { - background-color: ${r.highlightBackgroundColor}; - - &.collapse-item--bordered { - border: 1px solid ${r.highlightBorderColor}; - } - - &.collapse-item--separator .ant-collapse-content { - border-top: 1px solid ${r.highlightBorderColor}; - } - } - - &.collapse-item--theme-error { - &.collapse-item--bordered { - border: 1px solid ${r.Tag.colorErrorBorder}; - } - } - - &.collapse-item--theme-primary { - background-color: ${r.colorFillAlter}; - - &.collapse-item--bordered { - border: 1px solid ${r.colorBorder}; - } - - &.collapse-item--separator .ant-collapse-content { - border-top: 1px solid ${r.colorBorder}; - } - } - - &.collapse-item--theme-simple { - background-color: ${r.headerBgColor}; - - &.collapse-item--bordered { - border: 1px solid ${r.headerBgColor}; - } - - .ant-collapse-content { - background-color: white; - } - } - - &.collapse-item--theme-fieldset { - // @todo check for tokens - background-color: rgba(242, 240, 244, 0.52); - border-left: 3px solid #D5CFDA; - } - } - `}});var d=i(8651),c=i.n(d),u=i(64756);let p=e=>{let{isActive:t}=e;return(0,r.jsx)(o.I,{className:"expand-icon",value:t?"chevron-up":"chevron-down"})},m=e=>{let{size:t="middle",active:i,defaultActive:o=!1,bordered:d=!0,expandIconPosition:m="end",expandIcon:g=p,subLabel:h,subLabelPosition:v,onChange:f,extraPosition:y="end",theme:b="default",hasContentSeparator:x=!0,...j}=e,[w,C]=(0,n.useState)(i??o),{styles:S}=s(),T=c()(S["collapse-item"],`collapse-item--theme-${b}`,{"collapse-item--bordered":d,"collapse-item--separator":x}),I=j.contentPadding;void 0===I&&(I={x:"small",y:"small"},x||(I={x:"small",y:"small",top:"none"})),(0,n.useEffect)(()=>{void 0!==i&&C(i)},[i]);let{label:k,extra:E,children:D,...N}=j,P={...N,showArrow:!1,label:(0,r.jsx)(a.$,{expandIcon:g({isActive:w}),expandIconPosition:m,extra:j.extra,extraPosition:y,label:j.label,subLabel:h,subLabelPosition:v}),children:(0,r.jsx)(u.a,{padding:I,children:D})};return(0,r.jsx)(l.Collapse,{activeKey:w?0:-1,className:T,items:[P],onChange:e=>{void 0===i&&C(e.includes("0")),void 0!==f&&f(e)},size:t})}},65476(e,t,i){"use strict";i.d(t,{$:()=>a});var r=i(74848);i(47867);var n=i(25750),l=i(22014);let a=e=>{let{label:t,subLabel:i,extra:a,extraPosition:o,expandIcon:s,expandIconPosition:d,subLabelPosition:c="block"}=e;return(0,r.jsxs)(n.s,{align:"center",gap:"extra-small",children:[(0,r.jsxs)(n.s,{className:"collapse-header__title-container",gap:4,vertical:"block"===c,children:[(0,r.jsxs)(n.s,{align:"center",gap:"mini",children:[("start"===d||"left"===d)&&s,(0,r.jsx)(l.E,{className:"collapse-header__title",children:t}),("end"===d||"right"===d)&&s]}),void 0!==i&&(0,r.jsx)(l.E,{className:"collapse-header__subtitle",type:"secondary",children:i})]}),void 0!==a&&(0,r.jsx)(n.s,{className:"collapse-header__extra",justify:"start"===o?"flex-start":"flex-end",children:a})]})}},43748(e,t,i){"use strict";i.d(t,{s:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(8651),a=i.n(l);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{colorPicker:i` - &.versionFieldItem { - .ant-color-picker-trigger-text { - color: ${t.colorText} !important; - } - } - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - } - `,inherited:i` - background: ${t.colorBgContainerDisabled}; - color: ${t.colorTextDisabled}; - &:focus-within, &:hover { - background: ${t.colorBgContainerDisabled}; - } - `}}),s=e=>{let{inherited:t,className:i,style:l,...s}=e,{styles:d}=o(),c={...l};return(0,r.jsx)(n.ColorPicker,{className:a()(d.colorPicker,i,{[d.inherited]:t}),style:c,...s})}},23610(e,t,i){"use strict";i.d(t,{a:()=>l});var r=i(74848),n=i(86569);i(47867);let l=e=>(0,r.jsx)(n.Space.Compact,{...e})},91206(e,t,i){"use strict";i.d(t,{s:()=>o});var r=i(74848),n=i(47867);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{ContentLayout:i` - &.content-toolbar-sidebar-layout { - position: relative; - display: grid; - grid-template-columns: 1fr auto; - grid-template-rows: auto 1fr auto; - height: 100%; - width: 100%; - overflow: hidden; - } - - .content-toolbar-sidebar-layout__top-bar { - grid-column: 1 / 2; - grid-row: 1 / 2; - position: sticky; - bottom: 0; - height: max-content; - overflow: hidden; - } - - .content-toolbar-sidebar-layout__content { - display: flex; - grid-column: 1 / 2; - grid-row: 2 / 3; - overflow: auto; - height: 100%; - width: 100%; - } - - .content-toolbar-sidebar-layout__toolbar { - grid-column: 1 / 2; - grid-row: 3 / 4; - position: sticky; - bottom: 0; - height: max-content; - overflow: hidden; - } - - .content-toolbar-sidebar-layout__sidebar { - grid-column: 2 / 3; - grid-row: 1 / 4; - } - `}},{hashPriority:"low"});var a=i(39808);let o=(0,n.memo)(e=>{let{styles:t}=l(),i=["content-toolbar-sidebar-layout",t.ContentLayout,e.className??""];return void 0!==e.renderToolbar&&i.push("content-toolbar-sidebar-layout--with-toolbar"),(0,r.jsxs)("div",{className:i.join(" "),children:[void 0!==e.renderTopBar&&(0,r.jsx)("div",{className:"content-toolbar-sidebar-layout__top-bar",children:e.renderTopBar}),(0,r.jsx)(a.U,{className:"content-toolbar-sidebar-layout__content relative",children:e.children}),void 0!==e.renderToolbar&&(0,r.jsx)("div",{className:"content-toolbar-sidebar-layout__toolbar",children:e.renderToolbar}),void 0!==e.renderSidebar&&(0,r.jsx)("div",{className:"content-toolbar-sidebar-layout__sidebar",children:e.renderSidebar})]})})},70361(e,t,i){"use strict";i.d(t,{F:()=>a,N:()=>o});var r=i(74848),n=i(47867);let l=(0,n.createContext)({}),a=e=>{let{children:t,gap:i}=e,a=(0,n.useMemo)(()=>({gap:i}),[i]);return(0,r.jsx)(l.Provider,{value:a,children:t})},o=()=>(0,n.useContext)(l)},39808(e,t,i){"use strict";i.d(t,{U:()=>m});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(44241),o=i(9094);let s=(0,a.createStyles)((e,t)=>{let{token:i,css:r}=e,{gap:n}=t,l=(0,o.N8)(i,n,"margin");return{content:r` - display: flex; - flex-direction: column; - width: 100%; - height: 100%; - overflow: auto; - gap: ${l}px; - - &.content--overflow-x-hidden { - overflow-x: hidden; - } - - &.content--overflow-y-hidden { - overflow-y: hidden; - } - - &.content--overflow-x-auto { - overflow-x: auto; - } - - &.content--overflow-y-auto { - overflow-y: auto; - } - - &.content--overflow-x-visible { - overflow-x: visible; - } - - &.content--overflow-y-visible { - overflow-y: visible; - } - - &.content--overflow-x-scroll { - overflow-x: scroll; - } - - &.content--overflow-y-scroll { - overflow-y: scroll; - } - - &.content--padded { - padding: ${i.paddingSM}px; - } - - &.content--centered { - justify-content: center; - align-items: center; - } - - &.content--is-default-padded .ant-table-thead, - &.content--padded .ant-table-thead, - &.p-t-small .ant-table-thead { - top: -${i.paddingSM}px; - } - `,contentFullPage:r` - position: absolute; - top: 0; - right: 0; - left: 0; - bottom: 0; - `}});var d=i(47449),c=i(13755),u=i(64756),p=i(70361);let m=e=>{let{children:t,padded:i=!1,padding:n={top:"small",x:"extra-small",bottom:"extra-small"},overflow:a={x:"auto",y:"auto"},margin:o="none",className:m,loading:g=!1,none:h=!1,centered:v=!1,noneOptions:f,fullPage:y,gap:b,...x}=e,{gap:j}=(0,p.N)(),{styles:w}=s({gap:b??j??"small"}),C=!g&&!h,S=l()(w.content,"content",m,`content--overflow-x-${a.x}`,`content--overflow-y-${a.y}`,{"content--centered":v||h||g,[w.contentFullPage]:y,"content--is-default-padded":i});return(0,r.jsxs)(u.a,{className:S,padding:i?n:"none",...x,children:[g&&(0,r.jsx)(c.t,{asContainer:!0,tip:"Loading"}),h&&!g&&(0,r.jsx)(d.R,{...f}),C&&t]})}},67950(e,t,i){"use strict";i.d(t,{EF:()=>s,U5:()=>d,y9:()=>c});var r=i(74848),n=i(47867),l=i(86569),a=i(70600);let o=(0,n.createContext)(void 0),s=()=>(0,n.useContext)(o),d=()=>{let e=s();return null==e?void 0:e.closeMenu},c=e=>{let{children:t,renderMenu:i,calculateAutoHeight:s=!0}=e,[d,c]=(0,n.useState)(!1),u={closeMenu:()=>{c(!1)}},p=(0,r.jsx)(l.Dropdown,{dropdownRender:()=>(0,r.jsx)(o.Provider,{value:u,children:i()}),onOpenChange:c,open:d,trigger:["contextMenu"],children:(0,r.jsx)("span",{onContextMenu:e=>{e.stopPropagation()},role:"none",children:t})});return s?(0,r.jsx)(a.YU,{children:p}):p}},3394(e,t,i){"use strict";i.d(t,{s:()=>u});var r=i(74848),n=i(58200),l=i(66026),a=i(82740),o=i(47867),s=i.n(o),d=i(21429),c=i(7391);let u=e=>{var t,i;let{id:u}=e,{t:p}=(0,d.useTranslation)(),[m,g]=(0,o.useState)(Date.now()),{dataObject:h}=(0,l.A)(u),v=s().useRef(null),f=(0,a.A)(null==(t=v.current)?void 0:t.getElementRef(),!0);return(0,o.useEffect)(()=>{f&&g(Date.now())},[null==h||null==(i=h.draftData)?void 0:i.modificationDate,f]),(0,r.jsx)(c.v,{ref:v,src:`${(0,n.$)()}/data-objects/preview/${u}?timestamp=${m}`,title:`${p("preview.label")}-${u}`})}},29468(e,t,i){"use strict";i.d(t,{I:()=>r});let r=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{datePicker:i` - width: 100%; - input { - color: ${t.colorText} !important; - } - - .ant-picker-suffix { - display: none; - } - - &.showSuffixIcon { - .ant-picker-suffix { - display: flex; - } - } - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - } - - .ant-picker-range-separator { - color: ${t.colorTextDisabled}; - } - `,datePickerDropdown:i` - width: inherit !important; - `,inherited:i` - background: ${t.colorBgContainerDisabled}; - color: ${t.colorTextDisabled}; - &:focus-within, &:hover { - background: ${t.colorBgContainerDisabled}; - } - `}})},11354(e,t,i){"use strict";i.d(t,{l:()=>p});var r=i(74848);i(47867);var n=i(86569),l=i(66828),a=i(6546),o=i(26807),s=i(29468),d=i(8651),c=i.n(d),u=i(52112);let p=Object.assign(e=>{let t=(0,l.Rc)(e.value),i=(0,u.q)(),{styles:a}=(0,s.I)(),o={maxWidth:null==i?void 0:i.small,...e.style};return(0,r.jsx)(n.DatePicker,{...e,format:e.outputFormat,onChange:t=>{var i;null==(i=e.onChange)||i.call(e,(0,l.qj)(t,e.outputType,e.outputFormat))},popupClassName:a.datePickerDropdown,rootClassName:c()(a.datePicker,e.className,{[a.inherited]:e.inherited,showSuffixIcon:e.showSuffixIcon}),showTime:e.showTime,style:o,value:t})},{RangePicker:a.U,TimePicker:o.A})},6546(e,t,i){"use strict";i.d(t,{U:()=>u});var r=i(74848);i(47867);var n=i(86569),l=i(66828),a=i(29468),o=i(8651),s=i.n(o),d=i(81898),c=i(52112);let u=e=>{var t;let i=Array.isArray(t=e.value)?[(0,l.Rc)(t[0]),(0,l.Rc)(t[1])]:null,o=(0,c.q)(),{styles:u}=(0,a.I)(),p={maxWidth:null==o?void 0:o.medium,...e.style};return(0,r.jsx)(n.DatePicker.RangePicker,{...e,onChange:t=>{var i,r,n;null==(i=e.onChange)||i.call(e,(r=e.outputType,n=e.outputFormat,null===t?null:[(0,l.qj)(t[0],r,n),(0,l.qj)(t[1],r,n)]))},popupClassName:u.datePickerDropdown,rootClassName:s()(u.datePicker,e.className,{[u.inherited]:e.inherited}),separator:(0,r.jsx)(d.I,{value:"arrow-narrow-right"}),style:p,value:i})}},26807(e,t,i){"use strict";i.d(t,{A:()=>c});var r=i(74848);i(47867);var n=i(66828),l=i(86569),a=i(8651),o=i.n(a),s=i(29468),d=i(52112);let c=e=>{let t=(null==e?void 0:e.outputFormat)??"HH:mm:ss",i=(0,n.Rc)(e.value,t),a=(0,d.q)(),{styles:c}=(0,s.I)(),u={maxWidth:null==a?void 0:a.small,...e.style};return(0,r.jsx)(l.TimePicker,{...e,onChange:i=>{var r;null==(r=e.onChange)||r.call(e,(0,n.qj)(i,e.outputType,t))},popupClassName:c.datePickerDropdown,rootClassName:o()(c.datePicker,e.className,{[c.inherited]:e.inherited}),style:u,value:i})}},84567(e,t,i){"use strict";i.d(t,{c:()=>p});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569),o=i(44241),s=i(9094);let d=(0,o.createStyles)((e,t)=>{let{css:i,token:r}=e;return{divider:i` - ${(0,s._W)(t,"size",r,["y"])} - - &.divider--theme-default {} - - &.divider--theme-primary { - border-color: ${r.colorPrimary}; - } - - &.divider--theme-secondary { - border-color: ${r.colorFillAdditional}; - } - `}});var c=i(8651),u=i.n(c);let p=e=>{let{size:t="normal",className:i,theme:n="default",...o}=e,{getPrefixCls:s}=l().useContext(a.ConfigProvider.ConfigContext),c=s("divider"),{styles:p}=d(c),m=u()(p.divider,`${c}--size-${t}`,`divider--theme-${n}`,i);return(0,r.jsx)(a.Divider,{className:m,...o})}},16907(e,t,i){"use strict";i.d(t,{r:()=>c,s:()=>p});var r=i(74848),n=i(47867),l=i.n(n),a=i(65848),o=i(43588),s=i(35864),d=i(25085);class c extends CustomEvent{constructor(e){super("studioui:draggable:change-drag-info",{detail:e})}}let u=e=>{window.dispatchEvent(new c(e))},p=l().memo(function(e){let{children:t,info:i}=e,l=(0,n.useCallback)(e=>{let t=document.getElementById("studio-dnd-overlay");if((0,s.isNull)(t))return;let{screenX:i,screenY:r,clientX:n,clientY:l}=e,a=(0,d.getIframeOffset)(e.view??window);t.style.display=0===i&&0===r?"none":"block",t.style.top=`${l+a.y}px`,t.style.left=`${n+a.x}px`},[]);return(0,r.jsx)("div",{draggable:!0,onDragEnd:e=>{e.stopPropagation(),window.removeEventListener("drag",l);let t=document.getElementById("studio-dnd-overlay");(0,s.isNull)(t)||(t.style.display="none"),document.body.classList.remove("dnd--dragging"),u(null)},onDragStart:e=>{let t;e.stopPropagation(),document.body.classList.add("dnd--dragging");let n=(t=document.getElementById("studio-dnd-ghost"),(0,s.isNull)(t)&&((t=document.createElement("div")).id="studio-dnd-ghost",t.style.width="1px",t.style.height="1px",t.style.position="absolute",t.style.top="-9999px",document.body.appendChild(t)),t);e.dataTransfer.setDragImage(n,0,0),(()=>{let e=document.getElementById("studio-dnd-overlay");if((0,s.isNull)(e)){var t;(e=document.createElement("div")).id="studio-dnd-overlay",e.style.position="fixed",e.style.pointerEvents="none",e.style.zIndex="9999",e.style.display="none",null==(t=document.getElementById("global-overlay-container"))||t.appendChild(e)}return e})().innerHTML=a.renderToString((0,r.jsx)(o.DragOverlay,{info:i})),window.addEventListener("drag",l),e.dataTransfer.effectAllowed="move",e.dataTransfer.dropEffect="none",e.dataTransfer.setData("application/json",JSON.stringify(i)),setTimeout(()=>{u(i)},50)},role:"none",children:t})})},81147(e,t,i){"use strict";i.d(t,{H:()=>r,a:()=>n});let r=(0,i(47867).createContext)({isOver:!1,isValid:!1,isDragActive:!1,hasValidDrop:!1}),n=r.Provider},20597(e,t,i){"use strict";i.d(t,{g:()=>p});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{default:i` - & .dnd--drag-active { - background: ${t.colorBgContainerDisabled}; - border: 1px dashed ${t.colorBorder}; - } - - & .dnd--drag-valid { - background: ${t.colorBgTextActive}; - border: 1px dashed ${t.colorInfoBorderHover}; - } - - & .dnd--drag-error { - background: ${t.colorErrorBg}; - border: 1px dashed ${t.colorErrorActive}; - } - `,outline:i` - & .dnd--drag-valid { - outline: 1px dashed ${t.colorInfoBorderHover} !important; - } - - & .dnd--drag-error { - outline: 1px dashed ${t.colorErrorActive} !important; - } - `,round:i` - & .dnd--drag-active, & .dnd--drag-valid, & .dnd--drag-error { - border-radius: ${t.borderRadius}px; - } - `}});var s=i(35864),d=i(81147),c=i(82740);let u=e=>{var t;let{children:i,className:l,variant:u,shape:p,isValidContext:m,isValidData:g,onDrop:h,disableDndActiveIndicator:v=!1,dropClass:f}=e,{styles:y}=o(),[b,x]=(0,n.useState)("inactive"),j=(0,n.useRef)(!1),w=(0,n.useRef)(!1),C=(0,n.useRef)(null),S=(0,n.useRef)(null),T=(null==(t=S.current)?void 0:t.ownerDocument)!==document,I=(0,c.A)(S,!0,v||T),k=()=>!(0,s.isNull)(C.current)&&j.current&&w.current,E=e=>{var t;let i=v&&"active"===e?"inactive":e;x(i),null==(t=document.getElementById("studio-dnd-overlay"))||t.classList.toggle("dnd--invalid","error"===i)},D=e=>{let t=e.detail;if(C.current=t,(0,s.isNull)(t)){j.current=!1,w.current=!1,E("inactive");return}j.current="function"==typeof m?m(t):m,w.current=j.current&&((null==g?void 0:g(t))??!0),j.current?E("active"):E("inactive")};(0,n.useEffect)(()=>{if(I){let e=window.parent;return e.addEventListener("studioui:draggable:change-drag-info",D),()=>{e.removeEventListener("studioui:draggable:change-drag-info",D)}}},[I,T]);let N=(0,n.useCallback)(e=>{(e.preventDefault(),(0,s.isNull)(C.current)||!j.current)?E("inactive"):(e.stopPropagation(),E(k()?"valid":"error"))},[]),P=(0,n.useCallback)(e=>{e.preventDefault(),j.current&&E((0,s.isNull)(C.current)?"inactive":"active")},[]),A=(0,n.useCallback)(e=>{e.preventDefault(),E("inactive"),k()&&h(C.current)},[h]);return(e=>{let{dropClass:t,enabled:i=!0,onDragOver:r,onDragLeave:l,onDrop:a}=e,o={preventDefault:()=>{},stopPropagation:()=>{}},d=(0,n.useCallback)(e=>{e.preventDefault(),e.stopPropagation(),r(o)},[r]),c=(0,n.useCallback)(e=>{e.preventDefault(),l(o)},[l]),u=(0,n.useCallback)(e=>{e.preventDefault(),a(o)},[a]);(0,n.useEffect)(()=>{if((0,s.isNil)(t)||!i)return;let e=Array.from(document.querySelectorAll(`.${t}`));return e.forEach(e=>{e.addEventListener("dragover",d),e.addEventListener("dragleave",c),e.addEventListener("drop",u)}),()=>{e.forEach(e=>{e.removeEventListener("dragover",d),e.removeEventListener("dragleave",c),e.removeEventListener("drop",u)})}},[t,i,d,c,u])})({dropClass:f,enabled:I,onDragOver:N,onDragLeave:P,onDrop:A}),(0,n.useMemo)(()=>(0,r.jsx)("div",{className:a()(l,y[u??"default"],"angular"!==p?y.round:void 0),onDragLeave:I?P:void 0,onDragOver:I?N:void 0,onDrop:I?A:void 0,ref:S,role:"none",children:(0,r.jsx)(d.a,{value:{isDragActive:"inactive"!==b,isOver:"inactive"!==b&&"active"!==b,isValid:"valid"===b,hasValidDrop:"valid"===b},children:i})}),[b,i,l,u,p,I])},p=e=>!0===e.disabled?(0,r.jsx)("div",{className:a()(e.className),children:(0,r.jsx)(d.a,{value:{isDragActive:!1,isOver:!1,isValid:!1,hasValidDrop:!1},children:e.children})}):(0,r.jsx)(u,{className:e.className,disableDndActiveIndicator:e.disableDndActiveIndicator,dropClass:e.dropClass,isValidContext:e.isValidContext,isValidData:e.isValidData,onDrop:e.onDrop,shape:e.shape,variant:e.variant,children:e.children})},94788(e,t,i){"use strict";i.d(t,{z:()=>l});var r=i(47867),n=i(43588);let l=()=>{let{isDragActive:e,isOver:t,isValid:i,hasValidDrop:l}=(0,r.useContext)(n.droppableContext);return{isDragActive:e,isOver:t,isValid:i,hasValidDrop:l,getStateClasses:function(){let r=[];return e&&r.push("dnd--drag-active"),t&&i&&r.push("dnd--drag-valid"),t&&!i&&r.push("dnd--drag-error"),!0===l&&r.push("dnd--has-valid-drop"),r}}}},9298(e,t,i){"use strict";i.d(t,{T:()=>p});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(35864),s=i(81147),d=i(82740);let c=e=>(0,o.isString)(e)?e:e<=100?`${e}%`:`${e}px`,u=e=>{var t;let{children:i,className:l,hotspots:u,disableDndActiveIndicator:p=!1}=e,[m,g]=(0,n.useState)(()=>u.reduce((e,t)=>({...e,[t.id]:{dragState:"inactive",isContextValid:!1,isDataValid:!1}}),{})),[h,v]=(0,n.useState)(!1),[f,y]=(0,n.useState)(!1),[b,x]=(0,n.useState)(!1),j=(0,n.useRef)(null),w=(0,n.useRef)(null),C=(null==(t=w.current)?void 0:t.ownerDocument)!==document,S=(0,d.A)(w,!0,p||C),T=(0,n.useCallback)(e=>{let t=m[e];return!(0,o.isNull)(j.current)&&(null==t?void 0:t.isContextValid)&&(null==t?void 0:t.isDataValid)},[m]),I=(0,n.useCallback)((e,t)=>{var i;let r=p&&"active"===t?"inactive":t;g(t=>({...t,[e]:{...t[e],dragState:r}})),null==(i=document.getElementById("studio-dnd-overlay"))||i.classList.toggle("dnd--invalid","error"===r)},[p]);(0,n.useEffect)(()=>{var e;let t=Object.values(m).some(e=>"valid"===e.dragState);v(t),x(t),null==(e=document.getElementById("studio-dnd-overlay"))||e.classList.toggle("dnd--has-valid-drop",t)},[m]);let k=(0,n.useCallback)(e=>{if((0,o.isNull)(e)){var t;y(!1),x(!1),g(e=>Object.keys(e).reduce((t,i)=>({...t,[i]:{...e[i],dragState:"inactive",isContextValid:!1,isDataValid:!1}}),{})),v(!1),null==(t=document.getElementById("studio-dnd-overlay"))||t.classList.remove("dnd--has-valid-drop");return}y(!0),g(t=>{let i={...t};return u.forEach(r=>{var n;let l="function"==typeof r.isValidContext?r.isValidContext(e):r.isValidContext,a=l&&((null==(n=r.isValidData)?void 0:n.call(r,e))??!0);i[r.id]={...t[r.id],isContextValid:l,isDataValid:a,dragState:l?"active":"inactive"}}),i})},[u]),E=(0,n.useCallback)(e=>{let t=e.detail;j.current=t,k(t)},[k]);(0,n.useEffect)(()=>{if(S){let e=window.parent;return e.addEventListener("studioui:draggable:change-drag-info",E),()=>{e.removeEventListener("studioui:draggable:change-drag-info",E)}}},[S,C]);let D=(0,n.useMemo)(()=>u.map(e=>({hotspot:e,handlers:{handleDragOver:t=>{var i;if(t.preventDefault(),(0,o.isNull)(j.current)||!(null==(i=m[e.id])?void 0:i.isContextValid))return void I(e.id,"inactive");t.stopPropagation();let r=T(e.id);I(e.id,r?"valid":"error")},handleDragLeave:t=>{var i;t.preventDefault(),(null==(i=m[e.id])?void 0:i.isContextValid)&&I(e.id,(0,o.isNull)(j.current)?"inactive":"active")},handleDrop:t=>{if(t.preventDefault(),I(e.id,"inactive"),T(e.id)){let t=j.current;setTimeout(()=>{e.onDrop(t)},0)}}}})),[u,m,I,T]);(0,n.useEffect)(()=>{if(!S)return;let e=[];return D.forEach(t=>{let{hotspot:i,handlers:r}=t;if((0,o.isNil)(i.dropClass))return;let n=Array.from(document.querySelectorAll(`.${i.dropClass}`)),l={preventDefault:()=>{},stopPropagation:()=>{}},a=e=>{e.preventDefault(),e.stopPropagation(),r.handleDragOver(l)},s=e=>{e.preventDefault(),r.handleDragLeave(l)},d=e=>{e.preventDefault(),r.handleDrop(l)};n.forEach(e=>{e.addEventListener("dragover",a),e.addEventListener("dragleave",s),e.addEventListener("drop",d)}),e.push(()=>{n.forEach(e=>{e.removeEventListener("dragover",a),e.removeEventListener("dragleave",s),e.removeEventListener("drop",d)})})}),()=>{e.forEach(e=>{e()})}},[D,S]);let{aggregateState:N,hotspotSpecificClasses:P}={aggregateState:(0,n.useMemo)(()=>{if(!f)return"inactive";let e=Object.values(m),t=e.some(e=>"valid"===e.dragState),i=e.some(e=>"active"===e.dragState),r=e.some(e=>"error"===e.dragState);return t?"valid":r?"error":i?"active":"inactive"},[f,m]),hotspotSpecificClasses:(0,n.useMemo)(()=>{let e=[];return Object.entries(m).forEach(t=>{let[i,r]=t;"inactive"!==r.dragState&&e.push(`dnd--hotspot-${i}-${r.dragState}`)}),e},[m])};return(0,n.useMemo)(()=>(0,r.jsxs)("div",{className:a()(l,"hotspot-droppable",{"hotspot-droppable--valid-over":b,"dnd--drag-active":"active"===N,"dnd--drag-valid":"valid"===N,"dnd--drag-error":"error"===N},P),ref:w,role:"none",style:{position:"relative"},children:[(0,r.jsx)(s.a,{value:{isDragActive:f,isOver:b,isValid:b,hasValidDrop:h},children:i}),D.map(e=>{let t,{hotspot:i,handlers:n}=e,l=m[i.id];return(0,r.jsx)("div",{className:a()(i.className),onDragLeave:S?n.handleDragLeave:void 0,onDragOver:S?n.handleDragOver:void 0,onDrop:S?n.handleDrop:void 0,role:"none",style:{...{position:"absolute",left:c((t=i.position).x),top:c(t.y),width:(0,o.isNil)(t.width)?"20px":c(t.width),height:(0,o.isNil)(t.height)?"20px":c(t.height)},display:f?"block":"none"},children:(0,r.jsx)("div",{className:a()({"dnd--drag-active":(null==l?void 0:l.dragState)==="active","dnd--drag-valid":(null==l?void 0:l.dragState)==="valid","dnd--drag-error":(null==l?void 0:l.dragState)==="error"}),style:{width:"100%",height:"100%"},children:(0,r.jsx)(s.a,{value:{isDragActive:(null==l?void 0:l.dragState)!=="inactive",isOver:(null==l?void 0:l.dragState)!=="inactive"&&(null==l?void 0:l.dragState)!=="active",isValid:(null==l?void 0:l.dragState)==="valid",hasValidDrop:h},children:i.children})})},i.id)})]}),[m,i,l,D,S,f,b,N,P])},p=e=>!0===e.disabled?(0,r.jsx)("div",{className:a()(e.className),children:(0,r.jsx)(s.a,{value:{isDragActive:!1,isOver:!1,isValid:!1,hasValidDrop:!1},children:e.children})}):(0,r.jsx)(u,{className:e.className,disableDndActiveIndicator:e.disableDndActiveIndicator,hotspots:e.hotspots,children:e.children})},73789(e,t,i){"use strict";i.d(t,{g:()=>a});var r=i(74848);i(47867);var n=i(27820);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{dropdownButton:i` - &.ant-dropdown-trigger.ant-dropdown-open .pimcore-icon.pimcore-icon-chevron-down { - transform: scaleY(-1); - } - `}}),a=e=>{let{icon:t,...i}=e,{styles:a}=l();return i.className=null!==i.className?`${i.className} ${a.dropdownButton}`:`${a.dropdownButton}`,(0,r.jsx)(n.J,{icon:{value:"chevron-down",...t},iconPlacement:"right",type:"link",...i})}},70600(e,t,i){"use strict";i.d(t,{AS:()=>s,YU:()=>o});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,n.createContext)(void 0),o=e=>{let{children:t}=e,[i,l]=(0,n.useState)(0),o=e=>{let t=window.innerHeight,i=e.clientY,r=t-i;i>t/2&&(r=i),l(r-16)};return(0,n.useMemo)(()=>(0,r.jsx)("div",{onContextMenuCapture:o,children:(0,r.jsx)(a.Provider,{value:{height:i},children:t})}),[i,t])},s=()=>l().useContext(a)},99154(e,t,i){"use strict";i.d(t,{m:()=>m});var r=i(74848),n=i(47867),l=i(86569),a=i(42382);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{dropdown:i` - .ant-dropdown-menu { - display: flex; - flex-direction: column; - } - - .ant-dropdown-menu-item-group-list { - display: flex; - flex-direction: column; - } - - .ant-dropdown-menu-submenu { - .ant-dropdown-menu-submenu-title { - display: flex; - align-items: center; - } - } - `,menu:i` - .ant-dropdown-menu-title-content { - display: flex; - align-items: center; - } - - .ant-dropdown-menu-title-content > span { - display: block; - width: 100%; - } - `}}),s=e=>{let{menu:t,onSelect:i,selectedKeys:n,menuRef:s,...d}=e,{styles:c}=o();return(0,r.jsx)(l.Dropdown,{...d,dropdownRender:()=>(0,r.jsx)(a.W,{ref:s,rootClassName:c.menu,...t}),children:d.children})};var d=i(35864);let c=e=>{let{dropClass:t,...i}=e,l=(0,n.useRef)(null),a=(0,n.useCallback)(e=>{l.current=e},[]),o=(0,n.useCallback)(e=>{if(e.preventDefault(),e.stopPropagation(),!(0,d.isNull)(l.current)){let t=l.current.firstElementChild;if(!(0,d.isNull)(t)){let i=new MouseEvent("contextmenu",{bubbles:!0,cancelable:!0,clientX:e.clientX,clientY:e.clientY,button:2});t.dispatchEvent(i)}}},[]);return(0,n.useEffect)(()=>{let e=Array.from(document.querySelectorAll(`.${t}`));return e.forEach(e=>{e.addEventListener("contextmenu",o)}),()=>{e.forEach(e=>{e.removeEventListener("contextmenu",o)})}},[t,o]),(0,r.jsx)("span",{ref:a,style:{display:"contents !important"},children:(0,r.jsx)(s,{...i})})};var u=i(8651),p=i.n(u);let m=e=>{let{menu:t,dropClass:i,...n}=e,{styles:l}=o(),a={...n,menu:t,overlayClassName:p()(n.overlayClassName,l.dropdown)};return(0,d.isNil)(i)?(0,r.jsx)(s,{...a}):(0,r.jsx)(c,{...a,dropClass:i})}},47972(e,t,i){"use strict";i.d(t,{C:()=>o});var r=i(74848),n=i(47867),l=i(62784),a=i(72928);let o=e=>{let{frontendType:t,type:i}=e,{getComponentRenderer:o}=(0,a.R)(),{ComponentRenderer:s}=o({target:"FIELD_FILTER",dynamicTypeIds:[i,t??""]});return null===s?(0,r.jsx)(r.Fragment,{children:"Dynamic Field Filter not supported"}):(0,n.useMemo)(()=>(0,r.jsx)(l.T,{...e,children:s({})}),[e])}},62784(e,t,i){"use strict";i.d(t,{T:()=>a,Z:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,id:i,type:a,translationKey:o,data:s,onChange:d,frontendType:c,config:u}=e,[p,m]=(0,n.useState)(s);(0,n.useEffect)(()=>{m(s)},[s]);let g=e=>{m(e),void 0!==d&&d(e)};return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{id:i,translationKey:o,type:a,data:p,setData:g,frontendType:c,config:u},children:t}),[i,a,p,c,u,t])}},8561(e,t,i){"use strict";i.d(t,{b:()=>u});var r=i(74848);i(47867);var n=i(29740),l=i(22014),a=i(25750);let o=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{placeholder:t` - width: 100%; - border: 2px dashed ${i.colorBorder}; - border-radius: ${i.borderRadius}px; - background-color: ${i.colorBgContainer}; - padding: ${i.paddingLG}px; - text-align: center; - `,placeholderFullHeight:t` - height: 100%; - `,placeholderText:t` - color: ${i.colorTextDescription}; - `}});var s=i(25085),d=i(8651),c=i.n(d);let u=e=>{let{text:t,buttonText:i,onClick:d,disabled:u=!1,icon:p={value:"edit"},fullHeight:m=!1,width:g,height:h}=e,{styles:v}=o(),f={cursor:u?"not-allowed":"pointer",maxWidth:(0,s.toCssDimension)(g),height:(0,s.toCssDimension)(h)};return(0,r.jsxs)(a.s,{align:"center",className:c()(v.placeholder,{[v.placeholderFullHeight]:m}),gap:"small",justify:"center",onClick:d,style:f,vertical:!0,children:[(0,r.jsx)(l.E,{className:v.placeholderText,children:t}),(0,r.jsx)(n.K,{disabled:u,icon:p,type:"default",children:i})]})}},67104(e,t,i){"use strict";i.d(t,{F:()=>m});var r=i(74848),n=i(47867),l=i(41423),a=i(56789);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e,r=i` - max-width: 100%; - - &.ant-tag { - display: flex; - align-items: center; - cursor: default; - - > .tag-content { - flex: 1; - min-width: 0; - overflow: hidden; - text-overflow: ellipsis; - } - - .ant-tag-close-icon { - flex: 0 0 auto; - margin-inline-start: 4px; - } - } - `;return{tag:i` - ${r} - `,tagInline:i` - ${r} - - &.ant-tag { - display: inline-flex; - } - `,tagClickable:i` - &.ant-tag { - cursor: pointer; - } - `,tagDisabled:i` - position: relative; - &::before { - content: ""; - position: absolute; - inset: 0; - background: rgba(0, 0, 0, 0.07); - pointer-events: none; - } - `}});var s=i(35864),d=i(8651),c=i.n(d),u=i(7814),p=i(18196);let m=e=>{let{path:t,elementType:i,id:d,published:m,disabled:g,onClose:h,inline:v=!1,...f}=e,{openElement:y}=(0,a.K)(),{styles:b}=o(),x=(0,n.useRef)(null),j=(e=>{let[t,i]=(0,n.useState)(!1);return(0,n.useEffect)(()=>{let t=()=>{if((0,s.isNull)(e.current))return;let t=e.current,r=document.createRange();r.selectNodeContents(t);let n=r.getBoundingClientRect().width,l=t.getBoundingClientRect().width,a=window.getComputedStyle(t);i(n>l-(parseFloat(a.paddingLeft)??0)-(parseFloat(a.paddingRight)??0))},r=new ResizeObserver(t);return(0,s.isNull)(e.current)||(r.observe(e.current),t()),()=>{r.disconnect()}},[e]),t})(x),w=!1===m,C=!(0,s.isUndefined)(i)&&!(0,s.isUndefined)(d)&&!(0,p.Po)(t),S=async()=>{C&&await y({type:i,id:d})};return(0,r.jsx)(u.m,{title:j?t:"",children:(0,r.jsx)(l.v,{bordered:!1,className:c()(v?b.tagInline:b.tag,{[b.tagClickable]:C,[b.tagDisabled]:g}),closeIcon:!0!==g&&!(0,s.isUndefined)(h),color:w?"gold":"geekblue",iconName:w?"eye-off":void 0,onClick:C?S:void 0,onClose:!0===g?void 0:h,ref:x,...f,children:(0,r.jsx)("span",{className:"tag-content",children:t})})})}},41989(e,t,i){"use strict";i.d(t,{Yb:()=>g,Uz:()=>h,ng:()=>v});var r=i(74848),n=i(47867),l=i(93121),a=i(41241);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{tree:i` - padding: ${t.paddingXXS}px 0 ${t.paddingXS}px 0; - color: ${t.colorTextTreeElement}; - - .hotspot-droppable .tree-node__content-wrapper-outer { - border-top: 2px solid transparent; - border-bottom: 2px solid transparent; - height: 24px; - } - - .dnd--hotspot-sorting-top-valid .tree-node__content-wrapper-outer { - border-top: 2px solid ${t.colorPrimary}; - - &::after { - content: ''; - position: absolute; - top: -4px; - left: -1px; - border-radius: 50%; - width: 7px; - height: 7px; - background-color: ${t.colorPrimary}; - } - } - - .dnd--hotspot-sorting-bottom-valid .tree-node__content-wrapper-outer { - border-bottom: 2px solid ${t.colorPrimary}; - - &::after { - content: ''; - position: absolute; - bottom: -4px; - left: -1px; - border-radius: 50%; - width: 7px; - height: 7px; - background-color: ${t.colorPrimary}; - } - } - - .dnd--hotspot-drop-middle-valid .tree-node__content-wrapper-outer { - background: ${t.colorBgContainerDisabled}; - border-radius: ${t.borderRadius}px; - outline: 1px dashed ${t.colorBorder}; - } - `}},{hashPriority:"low"});var s=i(27202),d=i(64756),c=i(23050),u=i(68494),p=i(70916),m=i(32396);let g={nodeId:1,renderNodeContent:a.A,renderNode:l.n,showRoot:!0},h=(0,n.createContext)({...g}),v=e=>{let{renderNode:t=g.renderNode,renderNodeContent:i=g.renderNodeContent,contextMenu:l,rootNode:a,...v}=e,{styles:f}=o(),{nodeId:y}=v,{treeId:b}=(0,p.z)(!0),x=void 0!==a&&parseInt(a.id)===y&&v.showRoot,{getChildren:j,isLoading:w}=(0,c.W)(String(y)),C=(0,n.useRef)({}),S=(0,n.useCallback)(()=>Object.keys(C.current).sort((e,t)=>{let i=C.current[e].node,r=C.current[t].node,n=i.internalKey.split("-"),l=r.internalKey.split("-");for(let e=0;e({...v,nodesRefs:C,nodeOrder:S,renderNode:t,renderNodeContent:i,onRightClick:T}),[v,C,S,t,i,T]),k=j(),E=(0,m.SI)(b),D=(0,r.jsx)("div",{className:["tree",f.tree].join(" "),"data-testid":E,children:(0,r.jsxs)(h.Provider,{value:I,children:[x&&(0,r.jsx)(t,{level:-1,...a},a.id),!x&&(0,r.jsx)(u.Z,{node:{...a,level:-1}})]})});return!0!==w||x?0!==k.length||x?D:(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(d.a,{padding:{left:"extra-small"},children:(0,r.jsx)(s.E,{})})}},27839(e,t,i){"use strict";i.d(t,{K:()=>d});var r=i(74848),n=i(47867),l=i(41989),a=i(81898),o=i(21429),s=i(13755);let d=e=>{let{node:t,state:i}=e,{hasChildren:d,children:c,isLoading:u}=t,{onLoad:p}=(0,n.useContext)(l.Uz),[m,g]=i,{t:h}=(0,o.useTranslation)();async function v(e){if(e.stopPropagation(),!0===d){let e=!m;e&&void 0!==p&&void 0!==c&&0===c.length&&await p(t),g(e)}}return(0,r.jsxs)("div",{className:"tree-expander","data-testid":`tree-node-expander-${t.id}`,style:{minWidth:16,width:16,height:16},children:[!0===u&&(0,r.jsx)(s.t,{type:"classic"}),!0===t.hasChildren&&(0,r.jsx)("span",{"aria-label":h("tree.aria.expand-and-collapse"),onClick:v,role:"button",tabIndex:-1,children:!0!==u&&(0,r.jsx)(r.Fragment,{children:m?(0,r.jsx)(a.I,{options:{width:16,height:16},value:"chevron-up"}):(0,r.jsx)(a.I,{options:{width:16,height:16},value:"chevron-down"})})})]})}},68494(e,t,i){"use strict";i.d(t,{Z:()=>m});var r=i(74848),n=i(47867),l=i(41989),a=i(86569);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{"tree-list__pager":i` - padding: ${t.paddingXXS}px 0; - - &:empty { - padding: 0; - } - `,"tree-list__search":i` - padding: ${t.paddingXXS}px ${t.paddingSM}px ${t.paddingXS}px 0; - - &:empty { - padding: 0; - } - - .ant-btn-default { - border-color: ${t.colorBorder} - } - `}},{hashPriority:"low"});var s=i(27202),d=i(23050),c=i(35864);let u=e=>{let{nodeId:t,level:i}=e,{renderNode:a}=(0,n.useContext)(l.Uz),o=(0,d.W)(t);return(0,c.isUndefined)(o.treeNodeProps)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(a,{...o.treeNodeProps,level:i})},{useToken:p}=a.theme,m=e=>{let{node:t}=e,{token:i}=p(),{styles:a}=o(),{renderFilter:c,renderPager:m}=(0,n.useContext)(l.Uz),{isLoading:g,isFetching:h,getChildren:v,total:f}=(0,d.W)(t.id);if(!0===g)return(0,r.jsx)(s.E,{style:{paddingLeft:i.paddingSM+(t.level+1.5)*24}});let y=v();return(0,r.jsxs)(r.Fragment,{children:[void 0!==c&&(0,r.jsx)("div",{className:["tree-list__search",a["tree-list__search"]].join(" "),"data-testid":`tree-list-search-level-${t.id}`,style:{paddingLeft:i.paddingSM+(t.level+1)*24},children:(0,r.jsx)(c,{isLoading:h,node:t,total:f??0})}),(0,r.jsx)("div",{className:"tree-list","data-testid":`tree-list-${t.id}`,children:y.map(e=>(0,r.jsx)(u,{level:t.level+1,nodeId:e},e))}),void 0!==m&&(0,r.jsx)("div",{className:["tree-list__pager",a["tree-list__pager"]].join(" "),"data-testid":`tree-list-pager-${t.id}`,style:{paddingLeft:i.paddingSM+(t.level+1)*24},children:(0,r.jsx)(m,{node:t,total:f??0})})]})}},41241(e,t,i){"use strict";i.d(t,{A:()=>h});var r=i(74848),n=i(47867),l=i(81898),a=i(53463),o=i(8651),s=i.n(o),d=i(25750),c=i(69634),u=i(74152),p=i(24755),m=i(43588),g=i(35864);let h=(0,n.forwardRef)(function(e,t){let{icon:i,label:o,labelAddon:h,isPublished:v,elementType:f}=e.node,{styles:y}=(0,a.I)(),b=(0,n.useRef)(null),[x,j]=(0,n.useState)(150);(0,n.useLayoutEffect)(()=>{null!==b.current&&j(Math.max(0,150-b.current.offsetWidth))},[]);let w=(()=>{switch(f){case p.W.asset:return u.e.asset.tree.node.meta.name;case p.W.document:return u.e.document.tree.node.meta.name;case p.W.dataObject:return u.e.dataObject.tree.node.meta.name}return null})();return(0,r.jsxs)(d.s,{className:y.container,"data-testid":`tree-node-content-${e.node.id}`,gap:"mini",justify:"space-between",children:[(0,r.jsxs)(d.s,{align:"center",className:y.containerChild,"data-testid":`tree-node-content-main-${e.node.id}`,gap:"mini",ref:t,style:{minWidth:`${x}px`},children:[(0,r.jsx)(l.I,{...i,className:s()({[y.unpublishedIcon]:!1===v&&"name"===i.type,[y.unpublishedIconPath]:!1===v&&"path"===i.type}),"data-testid":`tree-node-icon-${e.node.id}`,iconColorGroup:"element",options:{width:16,height:16},subIconName:!1===v?"eye-off":void 0}),(0,r.jsxs)("span",{className:"tree-node-content__label","data-testid":`tree-node-label-${e.node.id}`,children:[o,!(0,g.isUndefined)(h)&&(0,r.jsx)(m.Text,{type:"secondary",children:` ${h}`})]})]}),(0,r.jsx)(d.s,{align:"center","data-testid":`tree-node-content-meta-${e.node.id}`,ref:b,children:(0,g.isNull)(w)?null:(0,r.jsx)(c.Y,{props:{node:e.node},slot:w})})]})})},93121(e,t,i){"use strict";i.d(t,{n:()=>b,G:()=>f});var r=i(74848),n=i(86569),l=i(47867);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{treeNode:i` - user-select: none; - - &.tree-node--is-root { - .tree-node__content { - padding-left: ${t.paddingSM}px; - } - } - - &.tree-node--danger { - .tree-node__content .tree-node__content-wrapper { - color: ${t.colorError}; - text-decoration: line-through; - } - } - - .tree-node__content { - cursor: pointer; - width: 100%; - white-space: nowrap; - align-items: center; - - .tree-node__content-wrapper { - width: 100%; - overflow: hidden; - } - - @media (hover: hover) { - &:hover { - background-color: ${t.controlItemBgActiveHover}; - } - } - - &:focus { - outline: none; - background-color: ${t.controlItemBgActiveHover}; - } - } - - .tree-node__content-inner { - padding: 0 ${t.paddingSM}px 0 0; - - @media (hover: hover) { - &:hover { - background-color: ${t.controlItemBgActiveHover}; - } - } - - &:focus { - outline: none; - background-color: ${t.controlItemBgActiveHover}; - } - } - - .tree-node__content-wrapper-outer { - position: relative; - padding: 2px 0 2px 0; - gap: ${t.paddingXXS}px; - } - - .tree-node__content--selected { - background-color: ${t.controlItemBgActive}; - - &:hover, - & .tree-node__content-inner { - background-color: ${t.controlItemBgActive}; - } - } - - .tree-node-content__label { - display: inline-block; - text-overflow: ellipsis; - overflow: hidden; - color: ${t.colorTextTreeElement}; - } - `}},{hashPriority:"low"});var o=i(41989),s=i(68494),d=i(27839),c=i(23050),u=i(35864),p=i(73077),m=i(32396),g=i(81031),h=i(8651),v=i.n(h);let f={id:Math.random().toString(16).slice(2),internalKey:"",icon:{type:"name",value:"folder"},label:"",labelAddon:void 0,children:[],permissions:{list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1},level:0,locked:null,isLocked:!1,isRoot:!1},{useToken:y}=n.theme,b=(0,l.forwardRef)(function(e,t){let i,{id:h=f.id,internalKey:b=f.internalKey,icon:x=f.icon,label:j=f.label,level:w=f.level,isRoot:C=f.isRoot,isLoading:S=!1,danger:T=!1,wrapNode:I=e=>e,...k}=e,{token:E}=y(),{styles:D}=a(),{renderNodeContent:N,onSelect:P,onRightClick:A,nodesRefs:F,nodeOrder:$,tooltipSlotName:M}=(0,l.useContext)(o.Uz),{isExpanded:O,setExpanded:_,isSelected:L,isScrollTo:R,setScrollTo:B,setSelectedIds:z}=(0,c.W)(h),V={id:h,icon:x,label:j,internalKey:b,level:w,isLoading:S,isRoot:C,danger:T,...k};function G(){z([h]),void 0!==P&&P(V)}(0,l.useEffect)(()=>()=>{void 0!==F&&delete F.current[b]},[]),(0,l.useEffect)(()=>{if(R){var e;let t=null==F||null==(e=F.current[b])?void 0:e.el;(0,u.isNil)(t)||(!function(e){let t=e.closest("."+p.kn);if(!(0,u.isNil)(t)){let i=t.getBoundingClientRect(),r=e.getBoundingClientRect(),n=r.top-i.top+t.scrollTop,l=t.scrollTop;if(0===i.height)return;let a=t.offsetHeight-t.clientHeight;nl+i.height-a&&t.scrollTo({top:n-i.height+r.height+a,behavior:"smooth"})}}(t),B(!1))}},[R,F,b,B]);let U=(0,r.jsx)(n.Flex,{align:"center",className:v()("tree-node__content-inner"),gap:"small",justify:"center",onClick:function(e){G()},onContextMenu:function(e){void 0!==A&&A(e,V)},onKeyDown:function(e){let t,i;"Enter"===e.key&&G(),"ArrowRight"===e.key&&_(!0),"ArrowLeft"===e.key&&_(!1),"ArrowDown"===e.key&&(e.preventDefault(),(t=$().indexOf(b))<$().length-1&&F.current[$()[t+1]].el.focus()),"ArrowUp"===e.key&&(e.preventDefault(),(i=$().indexOf(b))>0&&F.current[$()[i-1]].el.focus())},ref:function(e){var t;t=e,F.current[b]={el:t,node:V}},role:"button",style:{paddingLeft:E.paddingMD*w,minWidth:`${20*w+200}px`},tabIndex:-1,children:(0,r.jsxs)(n.Flex,{align:"center",className:"tree-node__content-wrapper-outer w-full",justify:"center",children:[!0!==C&&(0,r.jsx)(d.K,{node:V,state:[O,_]}),(0,r.jsx)("div",{className:"tree-node__content-wrapper",children:(0,r.jsx)(N,{node:V})})]})});return(0,r.jsxs)("div",{className:(i=["tree-node",D.treeNode],T&&i.push("tree-node--danger"),!0===C&&i.push("tree-node--is-root"),i.join(" ")),"data-testid":(0,m.yu)(h,k.elementType),ref:t,children:[(0,u.isNil)(M)?(0,r.jsx)("div",{className:v()("tree-node__content",{"tree-node__content--selected":L}),children:I(U)}):(0,r.jsx)(g.b,{component:M,props:{node:V,children:(0,r.jsx)("div",{className:v()("tree-node__content",{"tree-node__content--selected":L}),children:I(U)})}}),O&&(0,r.jsx)(s.Z,{node:V})]})})},56292(e,t,i){"use strict";i.d(t,{l:()=>o});var r=i(74848),n=i(23050),l=i(75525);i(47867);var a=i(78254);let o=e=>{let{page:t,setPage:i}=(0,n.W)(e.node.id),{pageSize:o}=(0,a._)(),s=e.total;return(0,r.jsx)(l.d,{current:t,defaultPageSize:o,hideOnSinglePage:!0,onChange:function(e){t!==e&&i(e)},total:s})}},54604(e,t,i){"use strict";i.d(t,{X:()=>a,j:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{nodeApiHook:t,children:i}=e,a=(0,n.useMemo)(()=>({nodeApiHook:t}),[t]);return(0,r.jsx)(l.Provider,{value:a,children:i})}},10716(e,t,i){"use strict";i.d(t,{S:()=>a,g:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)({pageSize:30}),a=e=>{let{children:t,classIds:i,pqlQuery:a,pageSize:o}=e,s=(0,n.useMemo)(()=>({classIds:i,pqlQuery:a,pageSize:o}),[i,a,o]);return(0,r.jsx)(l.Provider,{value:s,children:t})}},81194(e,t,i){"use strict";i.d(t,{b:()=>a,n:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,treeId:i}=e,a=(0,n.useMemo)(()=>({treeId:i}),[i]);return(0,r.jsx)(l.Provider,{value:a,children:t})}},86218(e,t,i){"use strict";i.d(t,{$:()=>l,P:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,permissions:i}=e,a=(0,n.useMemo)(()=>({permissions:i}),[i]);return(0,r.jsx)(l.Provider,{value:a,children:t})}},63186(e,t,i){"use strict";i.d(t,{s:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(35864),a=i(23050),o=i(78254);let{Search:s}=n.Input,d=e=>{let{searchTerm:t,setSearchTerm:i,setPage:n}=(0,a.W)(e.node.id),{total:d}=e,{pageSize:c}=(0,o._)();return!(0,l.isEmpty)(t)||d>c?(0,r.jsx)(s,{"aria-label":e.label,defaultValue:t,loading:e.isLoading,onSearch:function(e){i(""===e?void 0:e),n(1)},placeholder:e.label,size:"small"}):(0,r.jsx)(r.Fragment,{})}},27202(e,t,i){"use strict";i.d(t,{E:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(78535),a=i(64756),o=i(2338);let s=e=>(0,r.jsx)(l.motion.div,{animate:{opacity:1},initial:{opacity:0},...e,children:(0,r.jsx)(a.a,{padding:{top:"extra-small",bottom:"extra-small",right:"extra-small"},children:(0,r.jsx)(o.$,{className:"w-full",direction:"vertical",size:"extra-small",children:Array.from({length:5}).map((e,t)=>(0,r.jsx)(n.Skeleton.Input,{active:!0,block:!0,style:{height:16}},t))})})})},56974(e,t,i){"use strict";i.d(t,{w:()=>p});var r=i(74848),n=i(47867),l=i(32773),a=i(47972),o=i(29740),s=i(41423),d=i(25750),c=i(7814),u=i(40703);let p=e=>{let{data:t,onChange:i}=e,[p,m]=(0,n.useState)(t),g=e=>{m(e),void 0!==i&&i(e)};(0,n.useEffect)(()=>{m(t)},[t]);let h=p.map(e=>{let t=e.id,i="dataobject.classificationstore"===e.type;if(i){var n;t=`${e.id}-${JSON.stringify({keyId:e.config.keyId,groupId:null==(n=e.config)?void 0:n.groupId})}`}return{id:e.id,key:t,title:e.id,children:(0,r.jsx)(c.m,{title:e.nameTooltip,children:(0,r.jsx)(s.v,{children:e.translationKey})}),body:(0,r.jsx)(a.C,{...e,onChange:t=>{let i,r;i=p.findIndex(t=>t.id===e.id),"dataobject.classificationstore"===e.type&&(i=p.findIndex(t=>{var i,r,n,l;return t.id===e.id&&(null==(i=t.config)?void 0:i.keyId)===(null==(r=e.config)?void 0:r.keyId)&&(null==(n=t.config)?void 0:n.groupId)===(null==(l=e.config)?void 0:l.groupId)})),(r=[...p])[i]={...r[i],data:t},g(r)}}),renderRightToolbar:(0,r.jsxs)(d.s,{gap:"mini",children:[!0===e.localizable&&(0,r.jsx)(u.k,{customKeys:i?["default"]:[],isNullable:!0,onChange:t=>{let i,r;i=p.findIndex(t=>t.id===e.id),"dataobject.classificationstore"===e.type&&(i=p.findIndex(t=>{var i,r,n,l;return t.id===e.id&&(null==(i=t.config)?void 0:i.keyId)===(null==(r=e.config)?void 0:r.keyId)&&(null==(n=t.config)?void 0:n.groupId)===(null==(l=e.config)?void 0:l.groupId)})),(r=[...p])[i]={...r[i],locale:t},g(r)},value:void 0===e.locale?null:e.locale},"language"),(0,r.jsx)(o.K,{icon:{value:"close"},onClick:()=>{"dataobject.classificationstore"===e.type?g(p.filter(t=>{var i,r,n,l;return t.id!==e.id||(null==(i=t.config)?void 0:i.keyId)!==(null==(r=e.config)?void 0:r.keyId)||(null==(n=t.config)?void 0:n.groupId)!==(null==(l=e.config)?void 0:l.groupId)})):g(p.filter(t=>t.id!==e.id))}},"remove")]})}});return(0,n.useMemo)(()=>(0,r.jsx)(l.N,{items:h}),[h])}},68194(e,t,i){"use strict";i.d(t,{C:()=>a});var r=i(74848);i(47867);var n=i(22014),l=i(25750);let a=e=>{let{value:t,ellipsis:i,...a}=e;if(t.includes(".")&&!0===i){let e=t.split("."),o=e.pop(),s=e.join(".");return(0,r.jsxs)(l.s,{...a,children:[(0,r.jsx)(n.E,{ellipsis:!!i&&{tooltip:{title:t,overlayStyle:{maxWidth:"min(100%, 500px)"},mouseEnterDelay:.3}},style:{color:"inherit"},children:s}),".",(0,r.jsx)(n.E,{style:{whiteSpace:"nowrap",color:"inherit"},children:o})]})}return(0,r.jsx)(n.E,{ellipsis:i,...a,children:t})}},32930(e,t,i){"use strict";i.d(t,{i:()=>f});var r=i(74848),n=i(47867),l=i.n(n),a=i(99502),o=i(18613);let s={aa:"er",af:"za",am:"et",as:"in",ast:"es",asa:"tz",az:"az",bas:"cm",eu:"es",be:"by",bem:"zm",bez:"tz",bg:"bg",bm:"ml",bn:"bd",br:"fr",brx:"in",bs:"ba",cs:"cz",da:"dk",de:"de",dz:"bt",el:"gr",en:"gb",es:"es",et:"ee",fi:"fi",fo:"fo",fr:"fr",ga:"ie",gv:"im",he:"il",hi:"in",hr:"hr",hu:"hu",hy:"am",id:"id",ig:"ng",is:"is",it:"it",ja:"jp",ka:"ge",os:"ge",kea:"cv",kk:"kz",kl:"gl",km:"kh",ko:"kr",lg:"ug",lo:"la",lt:"lt",mg:"mg",mk:"mk",mn:"mn",ms:"my",mt:"mt",my:"mm",nb:"no",ne:"np",nl:"nl",nn:"no",pl:"pl",pt:"pt",ro:"ro",ru:"ru",sg:"cf",sk:"sk",sl:"si",sq:"al",sr:"rs",sv:"se",swc:"cd",th:"th",to:"to",tr:"tr",tzm:"ma",uk:"ua",uz:"uz",vi:"vn",zh:"cn",gd:"gb-sct","gd-gb":"gb-sct",cy:"gb-wls","cy-gb":"gb-wls",fy:"nl",xh:"za",yo:"bj",zu:"za",ta:"lk",te:"in",ss:"za",sw:"ke",so:"so",si:"lk",ii:"cn","zh-hans":"cn","zh-hant":"cn",sn:"zw",rm:"ch",pa:"in",fa:"ir",lv:"lv",gl:"es",fil:"ph"},d=async e=>{try{let t=await i(90670)(`./${e}.inline.svg`);return void 0!==t.default?t.default:t}catch{return null}},c=async e=>{try{let t=await i(66894)(`./${e}.inline.svg`);return void 0!==t.default?t.default:t}catch{return null}},u={},p={},m=async e=>{if(void 0!==u[e])return u[e];let t=await d(e)!==null;return u[e]=t,t},g=async e=>{if(void 0!==p[e])return p[e];let t=await c(e)!==null;return p[e]=t,t},h=async e=>{let t=e.toLowerCase().replace("_","-"),i=t.split("-"),r=i[0],n=i.length>1?i[i.length-1]:null;return void 0!==s[t]?{flagCode:s[t],isLanguageFlag:!1}:await g(t)?{flagCode:t,isLanguageFlag:!0}:null!==n&&await m(n)?{flagCode:n,isLanguageFlag:!1}:r!==t&&await g(r)?{flagCode:r,isLanguageFlag:!0}:await m(t)?{flagCode:t,isLanguageFlag:!1}:{flagCode:"_unknown",isLanguageFlag:!1}},v={},f=e=>{let{value:t,width:i=21,height:n=15}=e,[s,u]=l().useState(null),[p,m]=l().useState(!0);return(l().useEffect(()=>{if(null===t||""===t){u(null),m(!1);return}if(void 0!==v[t]){u(v[t]),m(!1);return}(async()=>{try{let{flagCode:e,isLanguageFlag:i}=await h(t),r=i?await c(e):await d(e);v[t]=r,u(r)}catch(e){(0,o.trackError)(new o.GeneralError(`Failed to resolve flag for language ${t}: ${e}`)),v[t]=null,u(null)}finally{m(!1)}})()},[t]),p)?(0,r.jsx)("div",{style:{width:i,height:n,background:"#f0f0f0"}}):null!==s&&l().isValidElement(s)?l().cloneElement(s,{style:{width:i,height:n},width:i.toString(),height:n.toString()}):(0,r.jsx)(a.default,{style:{width:i,height:n}})}},25750(e,t,i){"use strict";i.d(t,{s:()=>u});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(35864);let d=(0,i(44241).createStyles)((e,t)=>{let{css:i}=e;return{rowColGap:i` - column-gap: ${t.x}px; - row-gap: ${t.y}px; - `}}),{useToken:c}=l.theme,u=(0,n.forwardRef)((e,t)=>{var i;let n,{gap:a=0,className:u,rootClassName:p,children:m,...g}=e,{token:h}=c(),{x:v,y:f}=(i=a,n=e=>(0,s.isNumber)(e)?e:function(e){let{token:t,gap:i}=e;switch(i){case"mini":return t.sizeXXS;case"extra-small":return t.sizeXS;case"small":return t.sizeSM;case"normal":return t.size;case"medium":return t.sizeMD;case"large":return t.sizeLG;case"extra-large":return t.sizeXL;case"maxi":return t.sizeXXL;default:return 0}}({token:h,gap:e}),(0,s.isString)(i)?{x:n(i),y:n(i)}:(0,s.isNumber)(i)?{x:i,y:i}:(0,s.isObject)(i)?{x:n(i.x),y:n(i.y)}:{x:0,y:0}),{styles:y}=d({x:v,y:f}),b=o()(y.rowColGap,u,p);return(0,r.jsx)(l.Flex,{className:b,...g,ref:t,children:m})});u.displayName="Flex"},71504(e,t,i){"use strict";i.d(t,{S:()=>m});var r=i(74848),n=i(47867),l=i(35864),a=i(89354),o=i(39857),s=i(78744),d=i(55638),c=i(29740),u=i(72346);let p=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - position: relative; - margin: auto; - user-select: none; - `,imageContainer:i` - width: 100%; - `,draggableElement:i` - position: absolute; - display: flex; - justify-content: center; - align-items: center; - color: ${t.colorPrimary}; - width: ${t.Button.controlHeightSM}px !important; - height: ${t.Button.controlHeightSM}px !important; - background: ${t.Colors.Neutral.Fill.colorFill}; - box-shadow: none; - border: 2px dashed; - transition: transform 0.05s linear !important; - transform: translate(-50%, -50%); - - - &:hover, &:active { - color: ${t.colorPrimary}; - background: ${t.Colors.Neutral.Fill.colorFill} !important; - } - `}}),m=e=>{let{zoom:t,imageSrc:i}=e,[m,g]=(0,n.useState)(!1),[h,v]=(0,n.useState)(0),f=(0,n.useRef)(m),y=(0,n.useRef)(null);(0,n.useEffect)(()=>{f.current=m},[m]);let{id:b}=(0,n.useContext)(o.m),x=(0,n.useContext)(s.X),{isLoading:j,imageSettings:w,addImageSettings:C,removeImageSetting:S}=(0,a.l)(b),{styles:T}=p();(0,l.isUndefined)(x)&&(0,d.Ay)(new d.$g("FocalPoint must be used within the FocalPointProvider"));let{coordinates:I,setCoordinates:k,isActive:E,setIsActive:D,disabled:N,containerRef:P}=x;(0,n.useEffect)(()=>{E||j||null===P.current||S("focalPoint")},[E]),(0,n.useEffect)(()=>{E&&!m&&C({focalPoint:{x:I.x,y:I.y}})},[m]);let A=e=>{if(!((0,l.isNull)(P.current)||(0,l.isNull)(y.current))&&!N&&f.current){let t=P.current.firstElementChild,i=y.current,r=t.getBoundingClientRect(),n=i.getBoundingClientRect(),l=n.width/2,a=n.height/2,o=t.clientWidth??0,s=t.clientHeight??0,d=r.left+l,c=r.left+r.width-l,u=r.top+a,p=r.top+r.height-a,m=Math.min(Math.max(d,e.clientX),c),g=Math.min(Math.max(u,e.clientY),p);k({x:(m-r.left)/o*100,y:(g-r.top)/s*100})}},F=()=>{g(!1)};return(0,n.useEffect)(()=>(window.addEventListener("mouseup",F),window.addEventListener("mousemove",A),()=>{window.removeEventListener("mouseup",F),window.removeEventListener("mousemove",A)}),[]),(0,r.jsxs)("div",{className:T.container,style:{width:`${t}%`,maxWidth:`${t/100*h}px`},children:[(0,r.jsx)(u.R,{alt:"car",onLoad:()=>{var e;let t=null==(e=P.current)?void 0:e.querySelector("img");if(!(0,l.isNull)(P.current)&&!(0,l.isNull)(t)){let e=P.current,i=e.clientWidth,r=e.clientHeight,n=t.naturalWidth;if(v(Math.min(i,r*(n/t.naturalHeight),n)),!(0,l.isUndefined)(null==w?void 0:w.focalPoint)){let e=w.focalPoint;k({x:e.x,y:e.y}),D(!0)}}},src:i,wrapperClassName:T.imageContainer}),E&&!(0,l.isNull)(P.current)&&(0,r.jsx)(c.K,{"aria-label":"Draggable",className:T.draggableElement,"data-cypress":"draggable-item",hidden:!E,icon:{value:"focal-point"},onMouseDown:()=>{g(!0)},ref:y,style:{left:`${I.x}%`,top:`${I.y}%`},type:"dashed"})]})}},27886(e,t,i){"use strict";i.d(t,{L:()=>a});var r=i(74848),n=i(47867),l=i(78744);let a=e=>{let{children:t}=e,[i,a]=(0,n.useState)({x:0,y:0}),[o,s]=(0,n.useState)(!1),[d,c]=(0,n.useState)(!1),u=(0,n.useRef)(null);return(0,n.useMemo)(()=>(0,r.jsx)(l.X.Provider,{value:{isActive:o,setIsActive:s,coordinates:i,setCoordinates:a,disabled:d,setDisabled:c,containerRef:u},children:t}),[o,i,d,t])}},91669(e,t,i){"use strict";i.d(t,{b:()=>d});var r=i(74848),n=i(35864),l=i(47867),a=i(57231);let o=e=>{let{condition:t,children:i,watchFields:n}=e,o=a.lV.useFormInstance(),s=(0,l.useCallback)(e=>n.map(t=>e[t]),[n]),d=a.lV.useWatch(s,o);return(0,l.useMemo)(()=>t(o.getFieldsValue(!0)),[t,d])?(0,r.jsx)(r.Fragment,{children:i}):(0,r.jsx)(r.Fragment,{})},s=e=>{let{condition:t,children:i}=e,n=a.lV.useFormInstance().getFieldsValue(!0),o=a.lV.useWatch(e=>e)??n;return(0,l.useMemo)(()=>t(o),[t,o])?(0,r.jsx)(r.Fragment,{children:i}):(0,r.jsx)(r.Fragment,{})},d=e=>{let{condition:t,children:i,watchFields:l}=e;return(0,n.isUndefined)(l)?(0,r.jsx)(s,{condition:t,children:i}):(0,r.jsx)(o,{condition:t,watchFields:l,children:i})}},85210(e,t,i){"use strict";i.d(t,{JE:()=>s,fo:()=>o,ze:()=>d});var r=i(74848),n=i(47867),l=i.n(n),a=i(35864);let o=(0,n.createContext)(void 0),s=e=>{let{children:t,field:i,value:l}=e,a=(0,n.useMemo)(()=>({field:i,value:l}),[i,l]);return(0,r.jsx)(o.Provider,{value:a,children:t})},d=()=>{let e=l().useContext(o);if((0,a.isNil)(e))throw Error("useFieldCollectionItem must be used within a FieldCollectionItemProvider");return e}},17094(e,t,i){"use strict";i.d(t,{u:()=>r});class r{register(e){this.items.push(e)}getItems(){return this.items}getItemByType(e){return this.items.find(t=>t.type===e)}constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"items",[])}}},44317(e,t,i){"use strict";i.d(t,{Z:()=>I});var r=i(74848),n=i(47867),l=i.n(n),a=i(57231),o=i(8320);let s=(0,n.createContext)(void 0),d=e=>{let{children:t,registry:i,title:l,collapsed:a,addLabel:o,maxItems:d,disallowAddRemove:c,disallowReorder:u,value:p,onChange:m}=e,g=(0,n.useMemo)(()=>({registry:i,title:l,collapsed:a,addLabel:o,maxItems:d,disallowAddRemove:c,disallowReorder:u,value:p,onChange:m}),[i,l,a,o,d,c,u,p,m]);return(0,r.jsx)(s.Provider,{value:g,children:t})},c=()=>{let e=l().useContext(s);if(null==e)throw Error("useFieldCollection must be used within a FieldCollectionProvider");return e};var u=i(85210),p=i(86569),m=i(88929),g=i(54872),h=i(21429),v=i(29740),f=i(2338),y=i(1993);let b=e=>{let{size:t="small"}=e,{registry:i}=c(),{operations:n}=(0,o.S)(),{t:l}=(0,h.useTranslation)(),a=i.getItems().map(e=>({label:l(e.translationKey),value:e.type}));return(0,r.jsx)(y.l,{disabled:e.disabled,dropdownStyle:{width:200},onSelect:t=>{n.add({type:t,data:{}},void 0!==e.field?e.field+1:void 0)},options:a,placeholder:e.addLabel??l("field-collection.add.default"),showSearch:!0,size:t,style:{width:150},value:null})},x=l().memo(e=>{let{field:t}=e,{values:i,getValueByKey:l,operations:a}=(0,o.S)(),s=l(t.toString()),d=null==s?void 0:s.type,{registry:u,maxItems:p,disallowAddRemove:m,disallowReorder:y,addLabel:x}=c(),j=u.getItemByType(d),{t:w}=(0,h.useTranslation)(),C=void 0!==p&&i.length>=p,S=(0,n.useCallback)(()=>{a.move(t,t+1)},[a,t]),T=(0,n.useCallback)(()=>{a.move(t,t-1)},[a,t]),I=(0,n.useCallback)(()=>{a.remove(t)},[a,t]);if(void 0===j)throw Error(`No registry item found for type "${d}"`);return(0,r.jsxs)(g.Z,{title:w(j.translationKey),children:[(0,r.jsx)(b,{addLabel:x,disabled:C||m,field:t}),(0,r.jsxs)(f.$,{size:"mini",children:[(0,r.jsx)(v.K,{disabled:y,icon:{value:"chevron-down"},onClick:S,size:"small"}),(0,r.jsx)(v.K,{disabled:y,icon:{value:"chevron-up"},onClick:T,size:"small"})]}),(0,r.jsx)(v.K,{disabled:m,icon:{value:"trash"},onClick:I,size:"small"})]})});x.displayName="FieldCollectionItemToolStrip";let j=l().memo(e=>{let{field:t}=e,{values:i}=(0,o.S)(),n=i[t],l=null==n?void 0:n.type,{registry:s}=c(),d=s.getItemByType(l);if(void 0===d)throw Error(`No registry item found for type "${l}"`);return(0,r.jsx)(u.JE,{field:t,value:n,children:(0,r.jsxs)(m.k,{renderToolStripStart:(0,r.jsx)(x,{field:t}),children:[(0,r.jsx)(a.lV.Item,{hidden:!0,name:"type",children:(0,r.jsx)(p.Input,{})}),(0,r.jsx)(a.lV.Group,{name:"data",children:d.component})]})})});j.displayName="FieldCollectionItem";var w=i(7420),C=i(22014),S=i(25750);let T=()=>{let{values:e}=(0,o.S)(),{title:t,collapsed:i,addLabel:n}=c();return(0,r.jsxs)(r.Fragment,{children:[0===e.length&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(S.s,{align:"center",gap:"extra-small",children:[(0,r.jsx)(C.E,{strong:!0,children:t}),(0,r.jsx)(b,{addLabel:n,size:"middle"})]}),(0,r.jsx)("div",{children:(0,r.jsx)(C.E,{type:"secondary",children:"No items added yet."})})]}),e.length>0&&(0,r.jsx)(w.Z,{border:!1,collapsed:i,collapsible:!0,theme:"default",title:t,children:(0,r.jsx)(f.$,{className:"w-full",direction:"vertical",size:"small",children:e.map((e,t)=>(0,r.jsx)(a.lV.Group,{name:t,children:(0,r.jsx)(j,{field:t})},t))})})]})},I=e=>{let{value:t,onChange:i}=e,n={collapsed:!1,...e};return(0,r.jsx)(d,{...n,children:(0,r.jsx)(a.lV.NumberedList,{onChange:i,value:t,children:(0,r.jsx)(T,{})})})}},21928(e,t,i){"use strict";i.d(t,{a:()=>o,u:()=>a});var r=i(74848),n=i(69530),l=i(47867);let a=(0,l.createContext)(void 0),o=e=>{let{children:t,values:i,operations:o,getAdditionalComponentProps:s}=e,d=(0,l.useMemo)(()=>({values:i,operations:o,getAdditionalComponentProps:s}),[i,o,s]);return(0,r.jsx)(n.q.Provider,{value:void 0,children:(0,r.jsx)(a.Provider,{value:d,children:t})})}},69530(e,t,i){"use strict";i.d(t,{K:()=>s,q:()=>o});var r=i(74848),n=i(21928),l=i(80630),a=i(47867);let o=(0,a.createContext)(void 0),s=e=>{let{children:t,values:i,operations:s,onChange:d,getAdditionalComponentProps:c}=e,u=(0,a.useMemo)(()=>({values:i,operations:s,onChange:d,getAdditionalComponentProps:c}),[i,s,d,c]);return(0,r.jsx)(n.u.Provider,{value:void 0,children:(0,r.jsx)(l.c.Provider,{value:void 0,children:(0,r.jsx)(o.Provider,{value:u,children:t})})})}},8255(e,t,i){"use strict";i.d(t,{L:()=>u});var r=i(74848);i(47867);var n=i(57231),l=i(7420),a=i(86569),o=i(93294),s=i(55822),d=i(50094),c=i(1185);let u=e=>{let t={...e,formProps:{layout:"vertical",...e.formProps}};return(0,r.jsx)(d._Y,{fieldWidthValues:{small:200,medium:300,large:900},children:(0,r.jsx)(a.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}},children:(0,r.jsx)(n.lV,{...t.formProps,children:!1!==e.wrapInPanel?(0,r.jsx)(l.Z,{children:e.children}):e.children})})})};u.Panel=l.Z,u.TabPanel=o.k,u.Region=s.T,u.ItemSpacer=c.W},57231(e,t,i){"use strict";i.d(t,{mN:()=>D,hq:()=>A,lV:()=>et});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569),o=i(2338),s=i(3205),d=i(35864),c=i(93658),u=i(21928),p=i(57930);let m=(0,n.memo)(e=>{let{itemKey:t,children:i}=e;return(0,r.jsx)(et.Group,{name:t,children:i},t)});var g=i(91611),h=i(82528);let v=l().memo(e=>{let{children:t,value:i,onChange:l,onFieldChange:a,getAdditionalComponentProps:o}=e,s=(0,n.useMemo)(()=>(0,d.isArray)(i)?{}:i??{},[i]),[c,p]=(0,n.useState)((0,d.cloneDeep)(s)),{name:m}=(0,g.H)(),v=(0,n.useMemo)(()=>(0,d.isArray)(m)?m:[m],[m]),f=(0,n.useMemo)(()=>v[v.length-1],[v]),y=(0,h.d)(c,10),b=(0,n.useCallback)(e=>{void 0!==l&&(p(()=>e),l(e))},[l]);(0,n.useEffect)(()=>{(0,d.isEqual)(c,s)||p(()=>s)},[s]);let x=(0,n.useCallback)(function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};p(i=>{if((0,d.isObject)(i)&&void 0!==i[e])return i;let r=(0,d.cloneDeep)(i);return r[e]=t,r})},[]),j=(0,n.useCallback)(e=>{p(t=>{let i=(0,d.cloneDeep)(t);return delete i[e],i})},[]),w=(0,n.useCallback)((e,t,i)=>{let r=(0,d.isArray)(v)?v:[v],n=(0,d.isArray)(e)?e:[e],l=[];for(let e=0;e(0,d.isUndefined)(e)?{}:e;p(e=>{let i=(0,d.cloneDeep)(e);return(0,d.setWith)(i,l,t,o),i})},[v,a]);(0,n.useEffect)(()=>{(0,d.isEqual)(c,s)||(0,d.isEmpty)(c)||b(c)},[y]);let C=(0,n.useCallback)(e=>{let t=(0,d.isArray)(v)?v:[v],i=[];for(let r=0;r({add:x,remove:j,update:w,getValue:C}),[x,j,w,C]);return(0,r.jsx)(u.a,{getAdditionalComponentProps:o,operations:S,values:c??{},children:(0,r.jsx)(et.Group,{name:f,children:t})})});v.Iterator=e=>{let{children:t}=e,{values:i}=(0,p.y)(),l=(0,n.useMemo)(()=>Object.keys(i).map(e=>({key:e,value:i[e]})),[i]);return(0,r.jsx)(r.Fragment,{children:l.map(e=>{let{key:i}=e;return(0,r.jsx)(m,{itemKey:i,children:t},i)})})};var f=i(3109),y=i(29722);let b=e=>{let{children:t,onChange:i,value:l,...a}=e,{getValueFromEvent:o}=a,{operations:s,getAdditionalComponentProps:c}=(0,p.y)(),{name:u,initialValue:m,validationState:h,onValidate:v,onUpdateCurrentValue:f}=(0,g.H)(),b=(0,n.useMemo)(()=>n.Children.only(t),[t]),x=s.getValue(u),j=(0,y.Z)(x),w=(0,n.useMemo)(()=>(0,d.isEqual)(x,j)?j:x,[x]);(0,n.useEffect)(()=>{void 0===x&&s.update(u,m??null,!0)},[x]);let C=(0,n.useCallback)(e=>{var t;let i=(0,d.isUndefined)(o)?(null==e||null==(t=e.target)?void 0:t.value)??e:o(e);s.update(u,i,!1),void 0!==f&&f(i),void 0!==v&&v(i)},[u,v,f]);if(!(0,n.isValidElement)(b))throw Error("KeyedFormItemControl only accepts a single child");let S=b.type,T=null==h?void 0:h.validateStatus;return(0,n.useMemo)(()=>(0,r.jsx)(S,{...b.props,...a,...null==c?void 0:c(u),onChange:C,status:"error"===T||"warning"===T?T:void 0,value:w}),[b,a,w,C,c,u,T])};var x=i(44241);let j=(0,x.createStyles)(e=>{let{css:t,token:i}=e;return{virtualItem:t` - .virtual-item__label { - display: flex; - padding: ${i.Form.verticalLabelPadding}px; - } - - .virtual-item__tooltip { - opacity: 0.6; - } - - .virtual-item__explain { - min-height: ${i.controlHeightSM}px; - padding-top: ${i.paddingXXS}px; - font-size: ${i.fontSizeSM}px; - line-height: ${i.lineHeight}; - } - - .virtual-item__explain--error { - color: ${i.colorError}; - } - - .virtual-item__explain--warning { - color: ${i.colorWarning}; - } - - &.virtual-item--error { - .virtual-item__label label { - color: ${i.colorError}; - } - } - - &.virtual-item--warning { - .virtual-item__label label { - color: ${i.colorWarning}; - } - } - `}});var w=i(7814),C=i(81898),S=i(58154);let T={validateStatus:"",errors:[],warnings:[]};async function I(e,t,i){return"validator"in i&&"function"==typeof i.validator?await k(i,t):await E(e,t,i)}async function k(e,t){return await new Promise(i=>{if(!("validator"in e)||"function"!=typeof e.validator)return void i([]);try{let r=e.validator(e,t,e=>{null!=e&&""!==e?i([e instanceof Error?e.message:String(e)]):i([])});null!=r&&"function"==typeof r.then&&"function"==typeof r.catch&&r.then(()=>{i([])}).catch(e=>{null!=e&&""!==e?i([e instanceof Error?e.message:String(e)]):i([])})}catch(e){i([e instanceof Error?e.message:String(e)])}})}async function E(e,t,i){S.A.warning=()=>void 0;let r=new S.A({[e]:[i]});try{return await r.validate({[e]:t}),[]}catch(e){if((null==e?void 0:e.errors)!==void 0&&Array.isArray(e.errors))return e.errors.map(e=>"string"==typeof e.message?e.message:String(e)).filter(Boolean);return[]}}let D=e=>{let[t]=a.Form.useForm(e),i=(0,n.useCallback)(e=>{t._onValuesChangeHandler=e},[t]),r=(0,n.useCallback)((e,i,r)=>{let{triggerChange:n=!1}=r??{};if(t.setFieldValue(e,i),n&&void 0!==t._onValuesChangeHandler){let r={};(0,d.set)(r,e,i),t._onValuesChangeHandler(r,t.getFieldsValue())}},[t]),l=(0,n.useCallback)((e,i)=>{let{triggerChange:r=!1}=i??{};t.setFieldsValue(e),r&&void 0!==t._onValuesChangeHandler&&t._onValuesChangeHandler(e,t.getFieldsValue())},[t]);return[(0,n.useMemo)(()=>({...t,setOnValuesChangeHandler:i,setFieldValue:r,setFieldsValue:l}),[t,i,r,l])]},N=(0,n.createContext)(null),P=e=>{let{formInstance:t,children:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(N.Provider,{value:t,children:i}),[t,i])},A=()=>l().useContext(N),F=(0,n.createContext)(null);function $(e){return null==e?[]:Array.isArray(e)?e:[e]}let M=e=>{let{children:t,...i}=e,{label:l,className:a,hidden:s,id:d,rules:c,validateTrigger:u,name:p}=i,{styles:m}=j(),g=A(),h=(0,n.useContext)(F),v=(0,n.useId)(),y=(0,n.useMemo)(()=>null==p?"":Array.isArray(p)?p.join("."):String(p),[p]),{validationState:b,validate:x}=function(e,t,i,r){let[l,a]=(0,n.useState)(T),o=(0,n.useRef)(0),s=null==t||!1===t?["onChange"]:Array.isArray(t)?t:[t];return{validationState:l,validate:(0,n.useCallback)(async t=>{if(null==e||0===e.length)return a(T),T;let n=++o.current;a(e=>({...e,validateStatus:"validating"}));let l=[],s=[],d=[];for(let t of e){var c,u;let e=(c=t,u=r,"function"==typeof c?null===u?null:c(u):c);null!==e&&d.push({ruleObj:e,warningOnly:!0===e.warningOnly})}if(await Promise.all(d.map(async e=>{let{ruleObj:r,warningOnly:n}=e,a=await I(i,t,r);n?s.push(...a):l.push(...a)})),n!==o.current)return T;let p={validateStatus:l.length>0?"error":s.length>0?"warning":"success",errors:l,warnings:s};return a(p),p},[e,s,i,r])}}(c,u,y,g),S=(0,n.useRef)(x);S.current=x;let k=(0,n.useRef)(null!==g?g.getFieldValue($(p)):void 0),E=(0,n.useCallback)(e=>{k.current=e},[]);(0,n.useEffect)(()=>{if(null===h||null==c||0===c.length)return;let e=`${y}::${v}`;return h.register(e,$(p),async()=>await S.current(k.current)),()=>{h.unregister(e)}},[h,y,v,c]);let D=(0,n.useMemo)(()=>!!(void 0!==c&&Array.isArray(c))&&c.some(e=>"required"in e&&e.required),[c]),N=[a,m.virtualItem,""!==b.validateStatus?`virtual-item--${b.validateStatus}`:""].filter(Boolean).join(" "),P=(0,n.useMemo)(()=>({...i,validationState:b,onValidate:x,onUpdateCurrentValue:E}),[i,b,x,E]);return(0,r.jsx)(f.p,{item:P,children:(0,r.jsxs)("div",{className:N,style:{display:!0===s?"none":"block"},children:[void 0!==l&&(0,r.jsx)("div",{className:"virtual-item__label",children:(0,r.jsxs)(o.$,{size:"mini",children:[(0,r.jsx)("label",{htmlFor:d,children:(0,r.jsxs)(o.$,{size:"extra-small",children:[l,void 0!==i.tooltip&&null!==i.tooltip&&(0,r.jsx)(w.m,{className:"virtual-item__tooltip",title:"object"==typeof i.tooltip&&"title"in i.tooltip?i.tooltip.title:void 0,children:"object"==typeof i.tooltip&&"icon"in i.tooltip?i.tooltip.icon:(0,r.jsx)(C.I,{options:{width:14,height:14},value:"info-circle"})})]})}),D&&(0,r.jsx)("span",{className:"required-indicator",children:"*"})]})}),(0,r.jsx)("div",{children:t}),b.errors.length>0&&(0,r.jsx)("div",{className:"virtual-item__explain virtual-item__explain--error",children:b.errors.map((e,t)=>(0,r.jsx)("div",{className:"virtual-item__explain-item",children:e},t))}),0===b.errors.length&&b.warnings.length>0&&(0,r.jsx)("div",{className:"virtual-item__explain virtual-item__explain--warning",children:b.warnings.map((e,t)=>(0,r.jsx)("div",{className:"virtual-item__explain-item",children:e},t))})]})})},O=l().memo(e=>{let{Component:t,componentProps:i}=e,{children:l,...a}=i;return(0,n.useMemo)(()=>(0,r.jsx)(M,{...a,children:(0,r.jsx)(b,{getValueFromEvent:a.getValueFromEvent,children:l})}),[a.name,a.rules])});var _=i(74976),L=i(22014),R=i(7334),B=i(85775),z=i(33142),V=i(61549);let G=e=>{let{children:t,...i}=e,l=(0,n.useMemo)(()=>n.Children.only(t),[t]),a=!1,o=(0,V.J)(),s=(0,R.J)(),d=(0,z.D)(s.id,s.elementType),c=(0,B.Sk)();if("permissions"in d){var u;let e=d.permissions,t=(null==e||null==(u=e.localizedEdit)?void 0:u.split(","))??[];(1===t.length&&"default"===t[0]||0===t.length)&&(t=Array.isArray(o.contentLanguages)?o.contentLanguages:[]),a=!t.includes(c.currentLanguage)}if(!(0,n.isValidElement)(l))throw Error("KeyedFormItemControl only accepts a single child");let p=l.type;return(0,n.useMemo)(()=>(0,r.jsx)(p,{...l.props,...i,disabled:!0!==i.disabled&&a}),[l,i])},U=e=>{let{children:t,...i}=e,l=(0,n.useMemo)(()=>n.Children.only(t),[t]);if(!(0,n.isValidElement)(l))throw Error("KeyedFormItemControl only accepts a single child");let a=l.type;return(0,n.useMemo)(()=>(0,r.jsx)(a,{...l.props,...i}),[l,i])},q=e=>{let{...t}=e;return null!==(0,R.L)()?(0,r.jsx)(G,{...t}):(0,r.jsx)(U,{...t})};var W=i(88605),K=i(69530),H=i(8320);let X=(0,n.memo)(e=>{let{itemKey:t,children:i}=e;return(0,r.jsx)(et.Group,{name:t,children:i},t)}),J=l().memo(e=>{let{children:t,value:i,onChange:l,onFieldChange:a,getAdditionalComponentProps:o}=e,c=i??[],[u,p]=(0,n.useState)((0,d.cloneDeep)(c)),{name:m}=(0,g.H)(),v=(0,h.d)(u,10),f=(0,n.useMemo)(()=>(0,d.isArray)(m)?m:[m],[m]),y=(0,s.v)(),b=(0,n.useMemo)(()=>{let e=(0,d.isUndefined)(y)?0:(0,d.isArray)(y.name)?y.name.length:1,t=f.slice(e);return 1===t.length?t[0]:t},[f,y]),x=(0,n.useCallback)(e=>{p(()=>e),void 0!==l&&l(e)},[l]);(0,n.useEffect)(()=>{(0,d.isEqual)(u,c)||p(()=>c)},[i]);let j=(0,n.useCallback)((e,t)=>{let i=t;i??(i=u.length),p(t=>{let r=(0,d.cloneDeep)(t);return r.splice(i,0,e),r})},[u.length]),w=(0,n.useCallback)(e=>{p(t=>{let i=(0,d.cloneDeep)(t);return i.splice(e,1),i})},[]),C=(0,n.useCallback)((e,t,i)=>{let r=[];for(let t=0;t{let i=(0,d.cloneDeep)(e);return(0,d.set)(i,r,t),i})},[f,a]),S=(0,n.useCallback)((e,t)=>{p(i=>{let r=(0,d.cloneDeep)(i),[n]=r.splice(e,1);return r.splice(t,0,n),r})},[]);(0,n.useEffect)(()=>{(0,d.isEqual)(u,c)||(0,d.isUndefined)(u)||x(u)},[v]);let T=(0,n.useCallback)(e=>{let t=[];for(let i=0;i({add:j,remove:w,update:C,move:S,getValue:T}),[j,w,C,S,T]);return(0,r.jsx)(K.K,{getAdditionalComponentProps:o,onChange:x,operations:I,values:u??{},children:(0,r.jsx)(et.Group,{name:b,children:t})})});J.Iterator=e=>{let{children:t}=e,{values:i}=(0,H.S)(),l=(0,n.useMemo)(()=>Object.keys(i).map(e=>({key:e,value:i[e]})),[i]);return(0,r.jsx)(r.Fragment,{children:l.map(e=>{let{key:i}=e;return(0,r.jsx)(X,{itemKey:i,children:t},i)})})};let Z=e=>{let{children:t,onChange:i,value:l,...a}=e,{getValueFromEvent:o}=a,{operations:s,getAdditionalComponentProps:c}=(0,H.S)(),{name:u,initialValue:p,validationState:m,onValidate:h,onUpdateCurrentValue:v}=(0,g.H)(),f=(0,n.useMemo)(()=>n.Children.only(t),[t]),b=s.getValue(u),x=(0,y.Z)(b),j=(0,n.useMemo)(()=>(0,d.isEqual)(b,x)?x:b,[b]);(0,n.useEffect)(()=>{void 0===b&&s.update(u,p??null,!0)},[b]);let w=(0,n.useCallback)(e=>{var t;let i=(0,d.isUndefined)(o)?(null==e||null==(t=e.target)?void 0:t.value)??e:o(e);s.update(u,i,!1),void 0!==v&&v(i),void 0!==h&&h(i)},[u,h,v]);if(!(0,n.isValidElement)(f))throw Error("NumberedFormItemControl only accepts a single child");let C=f.type,S=null==m?void 0:m.validateStatus;return(0,n.useMemo)(()=>(0,r.jsx)(C,{...f.props,...a,...null==c?void 0:c(u),onChange:w,status:"error"===S||"warning"===S?S:void 0,value:j}),[f,a,j,w,c,u,S])},Y=l().memo(e=>{let{Component:t,componentProps:i}=e,{children:n,...l}=i;return(0,r.jsx)(M,{...l,children:(0,r.jsx)(Z,{getValueFromEvent:l.getValueFromEvent,children:n})})}),Q=(0,x.createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - .ant-form-item-label + .ant-form-item-control:has( .ant-checkbox-wrapper) { - padding-left: ${t.paddingXXS}px; - } - .ant-form-item-additional { - margin-top: ${t.marginXXS}px; - } - `}});var ee=i(91669);let et=e=>{let t,{...i}=e,{styles:l}=Q(),{form:s,children:d,onFinish:c,onFinishFailed:u,...p}=i,[m]=D(s),g=s??m,h=(0,n.useRef)((t=new Map,{register(e,i,r){t.set(e,{namePath:i,fn:r})},unregister(e){t.delete(e)},async validateAll(){let e=Array.from(t.entries()),i=await Promise.all(e.map(async e=>{let[,{namePath:t,fn:i}]=e;return{namePath:t,state:await i()}})),r=i.filter(e=>"error"===e.state.validateStatus||e.state.warnings.length>0).map(e=>({name:e.namePath,errors:e.state.errors,warnings:e.state.warnings}));return{hasErrors:i.some(e=>"error"===e.state.validateStatus),hasWarnings:i.some(e=>"warning"===e.state.validateStatus),errorFields:r}}})).current;g._virtualValidatorRegistry=h,(0,n.useEffect)(()=>{g.setOnValuesChangeHandler(i.onValuesChange)},[g]);let v=(0,n.useCallback)((e,t)=>{let{required:i}=t;return(0,r.jsxs)(o.$,{size:"mini",children:[e,!0===i&&"*"]})},[]),f=(0,n.useMemo)(()=>`${i.className??""} ${l.container}`,[i.className,l.container]),y=(0,n.useCallback)(async e=>{let{hasErrors:t,errorFields:i}=await h.validateAll();if(t){null==u||u({values:e,errorFields:i,outOfDate:!1});return}null==c||c(e)},[h,c,u]),b=(0,n.useCallback)(async e=>{let{errorFields:t}=await h.validateAll();null==u||u({...e,errorFields:[...e.errorFields,...t]})},[h,u]);return(0,r.jsx)(F.Provider,{value:h,children:(0,r.jsx)(a.Form,{requiredMark:v,...p,className:f,form:g,onFinish:y,onFinishFailed:b,children:(0,r.jsx)(P,{formInstance:g,children:d})})})};et.Item=(0,W.compose)(e=>{let t=t=>{let i=(0,s.v)(),{name:l,...a}=t,o=l;if(void 0!==i){let{name:e}=i;o=[...(0,d.isArray)(e)?e:[e],...(0,d.isArray)(l)?l:[l]]}return(0,n.useMemo)(()=>(0,r.jsx)(e,{...a,name:o}),[t])};return t.useStatus=e.useStatus,t},e=>{let t=t=>{let i=(0,_.W)();return(0,n.useMemo)(()=>{if(void 0===i)return(0,r.jsx)(e,{...t});let{locales:n}=i,{name:l,label:a,children:o,...s}=t,c=[...(0,d.isArray)(l)?l:[l],n[0]],u=(0,r.jsxs)(r.Fragment,{children:[a," ",(0,r.jsxs)(L.E,{type:"secondary",children:["(",n[0].toUpperCase(),")"]})]});return(0,r.jsx)(e,{...s,label:u,name:c,children:(0,r.jsx)(q,{...i,children:o})})},[i,t])};return t.useStatus=e.useStatus,t},e=>{let t=t=>void 0===(0,n.useContext)(u.u)?(0,r.jsx)(e,{...t}):(0,r.jsx)(O,{Component:e,componentProps:t});return t.useStatus=e.useStatus,t},e=>{let t=t=>void 0===(0,n.useContext)(K.q)?(0,r.jsx)(e,{...t}):(0,r.jsx)(Y,{Component:e,componentProps:t});return t.useStatus=e.useStatus,t},e=>{let t=t=>(0,n.useMemo)(()=>(0,r.jsx)(f.p,{item:t,children:(0,r.jsx)(e,{...t})}),[t]);return t.useStatus=e.useStatus,t})(a.Form.Item),et.List=a.Form.List,et.Provider=a.Form.Provider,et.Group=e=>{let{children:t,name:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(c.T,{name:i,children:t}),[i,t])},et.KeyedList=v,et.NumberedList=J,et.Conditional=ee.b,et.useForm=D,et.useFormInstance=A,et.useWatch=a.Form.useWatch,et.ErrorList=a.Form.ErrorList},93658(e,t,i){"use strict";i.d(t,{L:()=>o,T:()=>s});var r=i(74848),n=i(47867),l=i(3205),a=i(35864);let o=(0,n.createContext)(void 0),s=e=>{let{name:t,children:i}=e,s=(0,l.v)(),d=(0,n.useMemo)(()=>{if(void 0!==s){let{name:e}=s;return[...(0,a.isArray)(e)?e:[e],...(0,a.isArray)(t)?t:[t]]}return t},[s,t]),c=(0,n.useMemo)(()=>({name:d}),[d]);return(0,r.jsx)(o.Provider,{value:c,children:i})}},3109(e,t,i){"use strict";i.d(t,{X:()=>l,p:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{item:t,children:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:t,children:i}),[t,i])}},1185(e,t,i){"use strict";i.d(t,{W:()=>l});var r=i(74848);i(47867);var n=i(25750);let l=e=>{let{children:t,direction:i="vertical",size:l="extra-small",className:a}=e,o=["w-full",a].filter(Boolean).join(" ");return(0,r.jsx)(n.s,{className:o,gap:"none"===l?0:l,vertical:"vertical"===i,children:t})}},80630(e,t,i){"use strict";i.d(t,{K:()=>a,c:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{locales:t,children:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{locales:t},children:i}),[t,i])}},74976(e,t,i){"use strict";i.d(t,{W:()=>l});var r=i(47867),n=i(80630);let l=()=>(0,r.useContext)(n.c)},15155(e,t,i){"use strict";i.d(t,{s:()=>s,v:()=>o});var r=i(74848),n=i(47867),l=i(62059);let a=(0,n.createContext)(null);function o(e){let{tag:t,children:i}=e,o=(0,n.useMemo)(()=>t??`debounced-form-${(0,l.u)()}`,[t]),s=(0,n.useMemo)(()=>({tag:o}),[o]);return(0,r.jsx)(a.Provider,{value:s,children:i})}function s(e){let t=(0,n.useContext)(a);return e??(null==t?void 0:t.tag)}},57489(e,t,i){"use strict";i.d(t,{Q:()=>l});var r=i(74848);i(47867);var n=i(276);let l=e=>(0,r.jsx)(r.Fragment,{children:(0,n.r6)({timestamp:e.timestamp,dateStyle:"short",timeStyle:"short"})})},8830(e,t,i){"use strict";i.d(t,{X:()=>l});var r=i(74848);i(47867);var n=i(276);let l=e=>(0,r.jsx)(r.Fragment,{children:!0===e.showTime?(0,n.r6)({timestamp:e.timestamp,dateStyle:"short",timeStyle:"short"}):(0,n.Yq)(e.timestamp)})},32756(e,t,i){"use strict";i.d(t,{i:()=>l});var r=i(74848);i(47867);var n=i(276);let l=e=>(0,r.jsx)(r.Fragment,{children:(0,n.fU)(e.timestamp)})},33073(e,t,i){"use strict";i.d(t,{A:()=>d});var r=i(74848),n=i(47867),l=i(94359);let a=e=>(0,r.jsx)(l.z,{emptyValue:()=>{void 0!==e.onChange&&e.onChange(void 0)},onSearch:e.onSearch,removeButtonDisabled:void 0===e.value});var o=i(87498),s=i(35864);let d=e=>{let{...t}=e,[i,l]=(0,n.useState)(t.value??void 0),d=(0,n.useRef)(null);return(0,n.useEffect)(()=>{(0,s.isEqual)(i,t.value)||l(t.value??void 0)},[t.value]),(0,r.jsx)(o.c,{className:null==t?void 0:t.className,disabled:t.disabled,footer:!0===t.disabled?void 0:(0,r.jsx)(a,{onChange:e=>{var i;l(e),null==(i=t.onChange)||i.call(t,e);let r=d.current;null==r||r.reset(),null==r||r.forceRerender()},onSearch:e=>{var i;l(void 0);let r=d.current;null==r||r.setValue(void 0),void 0===e?null==r||r.reset():(null==r||r.setLat(e.latitude),null==r||r.setLng(e.longitude),null==r||r.setZoom(15)),null==r||r.forceRerender(),null==(i=t.onChange)||i.call(t,void 0)},value:i}),height:t.height,lat:t.lat,lng:t.lng,mapMode:"geoBounds",mapValue:i,onChangeMap:e=>{var i;l(e),null==(i=t.onChange)||i.call(t,e)},ref:d,width:t.width,zoom:t.zoom})}},94359(e,t,i){"use strict";i.d(t,{z:()=>g});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{footer:i` - .address-search-field { - max-width: 300px; - } - .remove-button-wrapper { - margin-left: auto; - } - `}},{hashPriority:"low"});var l=i(64756),a=i(25750),o=i(86569),s=i(21429),d=i(28574),c=i(92203),u=i(59446);let p=e=>{let{t}=(0,s.useTranslation)(),i=(0,c.Z)(),n=(0,u.t)(),l=async l=>{""===l?e.onSearch(void 0):await (0,d.hj)(l,n.maps.geocoding_url_template).then(e.onSearch).catch(e=>{if(e.message===d.Bl){let e=(0,r.jsxs)("span",{children:[(0,r.jsx)("p",{children:t("geocode.address-not-found")}),(0,r.jsxs)("strong",{children:[t("geocode.possible-causes"),":"]}),(0,r.jsx)("p",{children:t("geocode.postal-code-format-error")})]});i.error({content:e})}else i.error({content:e.message})})};return(0,r.jsx)(o.Input.Search,{className:"address-search-field",disabled:e.disabled,onSearch:l,placeholder:t("search-address")})};var m=i(29740);let g=e=>{let{styles:t}=n(),{t:i}=(0,s.useTranslation)();return(0,r.jsx)(l.a,{className:t.footer,padding:{y:"mini"},children:(0,r.jsxs)(a.s,{className:"w-full",gap:"mini",children:[!0!==e.disabled&&(0,r.jsx)(p,{onSearch:e.onSearch}),e.dropdown,!0!==e.disabled&&(0,r.jsx)("div",{className:"remove-button-wrapper",children:(0,r.jsx)(o.Tooltip,{title:i("set-to-null"),children:(0,r.jsx)(m.K,{disabled:e.removeButtonDisabled,icon:{value:"trash"},onClick:e.emptyValue})})})]})})}},87498(e,t,i){"use strict";i.d(t,{c:()=>c});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(81623),s=i(86052);let d=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - max-width: 100%; - min-width: 270px; - - .ant-card-cover { - .leaflet-container { - border-radius: ${t.borderRadiusLG}px ${t.borderRadiusLG}px 0 0; - min-height: 120px; - } - } - - &.versionFieldItemHighlight { - border: none !important; - } - - &.ant-card { - &.versionFieldItem { - .ant-card-cover { - .leaflet-container { - width: 100% !important; - border: 1px solid transparent !important; - } - } - } - - &.versionFieldItemHighlight { - .ant-card-cover { - .leaflet-container { - border: 1px solid ${t.Colors.Brand.Warning.colorWarningBorder} !important; - } - } - } - } - `}},{hashPriority:"low"}),c=(0,n.forwardRef)((e,t)=>{let{styles:i}=d();return(0,r.jsx)(s.Z,{className:a()(i.container,null==e?void 0:e.className),cover:(0,r.jsx)(o.e,{disabled:e.disabled,height:e.height,lat:e.lat,lng:e.lng,mode:e.mapMode,onChange:e.onChangeMap,ref:t,value:e.mapValue,width:e.width,zoom:e.zoom}),fitContent:!0,footer:e.footer,style:{width:e.width}})});c.displayName="GeoMapCard"},81623(e,t,i){"use strict";i.d(t,{e:()=>b});var r=i(74848),n=i(47867),l=i(35864),a=i(53763),o=i.n(a);i(42591),i(37821),i(80130);var s=i(28574);let d=e=>{let t=e.lng;for(;t>180;)t-=360;for(;t<-180;)t+=360;return{latitude:Math.max(-90,Math.min(90,e.lat)),longitude:t}},c=e=>new(o()).LatLng(e.latitude,e.longitude),u=e=>e.map(d),p=e=>({northEast:d(e.getNorthEast()),southWest:d(e.getSouthWest())});var m=i(8651),g=i.n(m);let h=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{mapContainer:i` - max-width: 100%; - width: 100% !important; - - .leaflet-tooltip{ - width: 100px; - white-space: normal; - } - .leaflet-draw-actions-bottom li:nth-child(2) { - display: none; - } - .leaflet-edit-marker-selected { - border: 0; - outline: 2px dashed rgba(51, 136, 255, .5); - margin-left: -12px !important; - margin-top: -41px !important; - } - `}},{hashPriority:"low"});var v=i(83499),f=i(59446),y=i(82740);o().Icon.Default.mergeOptions({iconRetinaUrl:"/bundles/pimcorestudioui/img/leaflet/marker-icon-2x.png",iconUrl:"/bundles/pimcorestudioui/img/leaflet/marker-icon.png",shadowUrl:"/bundles/pimcorestudioui/img/leaflet/marker-shadow.png"});let b=(0,n.forwardRef)((e,t)=>{let i=(0,n.useRef)(null),a=(0,n.useRef)(null),[m,b]=(0,n.useState)(e.lat),[x,j]=(0,n.useState)(e.lng),[w,C]=(0,n.useState)(e.zoom),[S,T]=(0,n.useState)(e.value),[I,k]=(0,n.useState)(0),E=(0,f.t)(),{styles:D}=h(),N={reset:()=>{b(void 0),j(void 0),C(void 0),T(void 0)},forceRerender:()=>{k(e=>e+1)},setLat:b,setLng:j,setZoom:C,setValue:T};(0,n.useImperativeHandle)(t,()=>N),(0,n.useEffect)(()=>{T(t=>(0,l.isEqual)(t,e.value)?t:e.value),b(t=>t===e.lat?t:e.lat),j(t=>t===e.lng?t:e.lng),C(t=>t===e.zoom?t:e.zoom)},[e.value,e.lat,e.lng,e.zoom]);let P=(0,y.A)(a);return(0,n.useEffect)(()=>{if(!P)return;let t=(()=>{if(null!==i.current){let t=o().map(i.current);if("geoPoint"===e.mode&&void 0!==e.value){let i=e.value;t.setView([i.latitude,i.longitude],15)}else m!==e.lat&&x!==e.lng?t.setView([m??0,x??0],15):t.setView([e.lat??0,e.lng??0],e.zoom??1);o().tileLayer(E.maps.tile_layer_url_template,{attribution:'© OpenStreetMap contributors'}).addTo(t);let r=o().featureGroup().addTo(t);return(t=>{var i;let{mode:r,map:n,group:l,value:a}=t,m={geoPoint:()=>{((e,t,i,r,n,l)=>{e.addLayer(t);let a=void 0!==r?o().marker([r.latitude,r.longitude]):void 0;if(void 0!==a&&t.addLayer(a),!0===l)return;let c=new(o()).Control.Draw({position:"topright",draw:{polyline:!1,polygon:!1,circle:!1,rectangle:!1,circlemarker:!1},edit:{featureGroup:t,remove:!1}});e.addControl(c),e.on(o().Draw.Event.CREATED,async function(e){t.clearLayers(),void 0!==a&&a.remove();let r=e.layer;t.addLayer(r),1===t.getLayers().length&&(await (0,s.Rt)(r,i).catch(e=>{console.error(e)}),null==n||n(d(r.getLatLng())))}),e.on(o().Draw.Event.EDITSTOP,async function(e){for(let t in e.target._layers)if(!0===Object.prototype.hasOwnProperty.call(e.target._layers,t)){let i=e.target._layers[t];!0===Object.prototype.hasOwnProperty.call(i,"edited")&&void 0!==n&&n(d(i._latlng))}})})(n,l,E.maps.reverse_geocoding_url_template,a,e.onChange,e.disabled)},geoPolyLine:()=>{((e,t,i,r,n)=>{e.addLayer(t);let l=void 0!==i?o().polyline(i.map(c),{stroke:!0,color:"#3388ff",opacity:.5,fillOpacity:.2,weight:4}):void 0;if(void 0!==l&&(t.addLayer(l),e.fitBounds(l.getBounds())),!0===n)return;let a=new(o()).Control.Draw({position:"topright",draw:{rectangle:!1,polygon:!1,circle:!1,marker:!1,circlemarker:!1},edit:{featureGroup:t,remove:!1}});e.addControl(a),e.on(o().Draw.Event.CREATED,function(e){t.clearLayers(),void 0!==l&&l.remove();let i=e.layer;t.addLayer(i),1===t.getLayers().length&&void 0!==r&&r(u(i.getLatLngs()))}),e.on(o().Draw.Event.DELETED,function(e){void 0!==r&&r(void 0)}),e.on(o().Draw.Event.EDITSTOP,function(e){for(let t in e.target._layers)if(!0===Object.prototype.hasOwnProperty.call(e.target._layers,t)){let i=e.target._layers[t];!0===Object.prototype.hasOwnProperty.call(i,"edited")&&void 0!==r&&r(u(i.editing.latlngs[0]))}})})(n,l,a,e.onChange,e.disabled)},geoPolygon:()=>{((e,t,i,r,n)=>{e.addLayer(t);let l=void 0!==i?o().polygon(i.map(c),{stroke:!0,color:"#3388ff",opacity:.5,fillOpacity:.2,weight:4}):void 0;if(void 0!==l&&(t.addLayer(l),e.fitBounds(l.getBounds())),!0===n)return;let a=new(o()).Control.Draw({position:"topright",draw:{circle:!1,marker:!1,circlemarker:!1,rectangle:!1,polyline:!1},edit:{featureGroup:t,remove:!1}});e.addControl(a),e.on(o().Draw.Event.CREATED,function(e){t.clearLayers(),void 0!==l&&l.remove();let i=e.layer;t.addLayer(i),1===t.getLayers().length&&void 0!==r&&r(u(i.getLatLngs()[0]))}),e.on(o().Draw.Event.DELETED,function(e){void 0!==r&&r(void 0)}),e.on(o().Draw.Event.EDITSTOP,function(e){for(let t in e.target._layers)if(!0===Object.prototype.hasOwnProperty.call(e.target._layers,t)){let i=e.target._layers[t];!0===Object.prototype.hasOwnProperty.call(i,"edited")&&void 0!==r&&r(u(i.editing.latlngs[0][0]))}})})(n,l,a,e.onChange,e.disabled)},geoBounds:()=>{((e,t,i,r,n)=>{let l;e.addLayer(t);let a=void 0!==i?o().latLngBounds(o().latLng(i.northEast.latitude,i.northEast.longitude),o().latLng(i.southWest.latitude,i.southWest.longitude)):void 0;if(void 0!==a&&(l=o().rectangle(a,{stroke:!0,color:"#3388ff",opacity:.5,fillOpacity:.2,weight:4}),t.addLayer(l),e.fitBounds(a)),!0===n)return;let s=new(o()).Control.Draw({position:"topright",draw:{polyline:!1,polygon:!1,circle:!1,marker:!1,circlemarker:!1,rectangle:{showArea:!1}},edit:{featureGroup:t,remove:!1}});e.addControl(s),e.on(o().Draw.Event.CREATED,function(e){t.clearLayers(),void 0!==l&&l.remove();let i=e.layer;t.addLayer(i),1===t.getLayers().length&&void 0!==r&&r(p(i.getBounds()))}),e.on(o().Draw.Event.DELETED,function(e){void 0!==r&&r(void 0)}),e.on(o().Draw.Event.EDITSTOP,function(e){for(let t in e.target._layers)if(!0===Object.prototype.hasOwnProperty.call(e.target._layers,t)){let i=e.target._layers[t];!0===Object.prototype.hasOwnProperty.call(i,"edited")&&void 0!==r&&r(p(i.getBounds()))}})})(n,l,a,e.onChange,e.disabled)}};null==(i=m[r])||i.call(m)})({mode:e.mode??"geoBounds",map:t,group:r,value:S}),t}return null})();return()=>{null!==t&&t.remove()}},[I,P,m,x,w,S,e.mode,e.disabled]),(0,r.jsx)("div",{ref:a,children:(0,r.jsx)("div",{className:g()(D.mapContainer),ref:i,style:{height:(0,v.x)(e.height,250),width:(0,v.x)(e.width,500)}})})});b.displayName="GeoMap"},14073(e,t,i){"use strict";i.d(t,{g:()=>v});var r=i(74848),n=i(47867),l=i(35864),a=i(86569),o=i(21429),s=i(57231),d=i(81898),c=i(99154),u=i(64756);let p=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{geoForm:i` - .ant-input-number { - width: 138px !important; - } - `}},{hashPriority:"low"});var m=i(94359);let g=e=>{var t,i;let{t:n}=(0,o.useTranslation)(),{styles:g}=p(),[h]=s.lV.useForm(),v=()=>{var t;let i=(e=>{if((null==e?void 0:e.latitude)!==void 0&&void 0!==e.longitude)return{latitude:e.latitude,longitude:e.longitude}})(h.getFieldsValue());null==(t=e.onChange)||t.call(e,i)};return(0,r.jsx)(m.z,{disabled:e.disabled,dropdown:(0,r.jsx)(c.m,{menu:{items:[{key:"form",type:"custom",component:(0,r.jsx)(u.a,{margin:{x:"extra-small"},children:(0,r.jsxs)(s.lV,{className:g.geoForm,form:h,layout:"vertical",children:[(0,r.jsx)(s.lV.Item,{label:n("latitude"),name:"latitude",children:(0,r.jsx)(a.InputNumber,{disabled:e.disabled,onChange:v})}),(0,r.jsx)(s.lV.Item,{label:n("longitude"),name:"longitude",children:(0,r.jsx)(a.InputNumber,{disabled:e.disabled,onChange:v})})]})})}]},placement:"bottomLeft",trigger:["click"],children:(0,r.jsx)(a.Button,{icon:(0,r.jsx)(d.I,{className:"dropdown-menu__icon",value:"more"}),onClick:e=>{e.stopPropagation()}})}),emptyValue:()=>{var t;h.resetFields(),null==(t=e.onChange)||t.call(e,void 0)},onSearch:t=>{var i;let r={latitude:null==t?void 0:t.latitude,longitude:null==t?void 0:t.longitude};h.setFieldsValue(r),null==(i=e.onChange)||i.call(e,t)},removeButtonDisabled:(0,l.isUndefined)(null==e||null==(t=e.value)?void 0:t.latitude)&&(0,l.isUndefined)(null==e||null==(i=e.value)?void 0:i.longitude)||e.disabled})};var h=i(87498);let v=e=>{let{...t}=e,[i,a]=(0,n.useState)(t.value??void 0),o=(0,n.useRef)(null);return(0,n.useEffect)(()=>{(0,l.isEqual)(i,t.value)||a(t.value??void 0)},[t.value]),(0,r.jsx)(h.c,{className:null==t?void 0:t.className,disabled:t.disabled,footer:(0,r.jsx)(g,{disabled:t.disabled,onChange:e=>{var i;a(e),null==(i=t.onChange)||i.call(t,e);let r=o.current;null==r||r.forceRerender()},value:i}),height:t.height,lat:t.lat,lng:t.lng,mapMode:"geoPoint",mapValue:i,onChangeMap:e=>{var i;a(e),null==(i=t.onChange)||i.call(t,e)},ref:o,width:t.width,zoom:t.zoom})}},20160(e,t,i){"use strict";i.d(t,{B:()=>c});var r=i(74848),n=i(47867),l=i.n(n),a=i(94359);let o=e=>(0,r.jsx)(a.z,{emptyValue:()=>{void 0!==e.onChange&&e.onChange(void 0)},onSearch:e.onSearch,removeButtonDisabled:void 0===e.value});var s=i(87498),d=i(35864);let c=e=>{let{...t}=e,[i,a]=l().useState(t.value??void 0),c=(0,n.useRef)(null);return(0,n.useEffect)(()=>{(0,d.isEqual)(i,t.value)||a(t.value??void 0)},[t.value]),(0,r.jsx)(s.c,{className:t.className,disabled:t.disabled,footer:!0===t.disabled?void 0:(0,r.jsx)(o,{onChange:e=>{var i;a(e),null==(i=t.onChange)||i.call(t,e);let r=c.current;null==r||r.reset(),null==r||r.forceRerender()},onSearch:e=>{var i;a(void 0);let r=c.current;null==r||r.setValue(void 0),void 0===e?null==r||r.reset():(null==r||r.setLat(e.latitude),null==r||r.setLng(e.longitude),null==r||r.setZoom(15)),null==r||r.forceRerender(),null==(i=t.onChange)||i.call(t,void 0)},value:i}),height:t.height,lat:t.lat,lng:t.lng,mapMode:t.mode,mapValue:i,onChangeMap:e=>{var i;a(e),null==(i=t.onChange)||i.call(t,e)},ref:c,width:t.width,zoom:t.zoom})}},78120(e,t,i){"use strict";i.d(t,{N:()=>u});var r=i(74848);i(47867);var n=i(27994),l=i(25750),a=i(22014),o=i(81898);let s=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{button:i` - width: 100%; - height: 100%; - padding: ${t.paddingXS}px; - border: 1px solid ${t.colorBorder}; - border-radius: ${t.borderRadius}px; - background: ${t.colorBgContainer}; - cursor: pointer; - - &:hover { - border-color: ${t.colorPrimary}; - } - - &:active { - border-color: ${t.colorPrimary}; - } - `,icon:i` - color: ${t.colorTextSecondary}; - margin-bottom: ${t.marginXS}px; - `,label:i` - text-align: center; - color: ${t.colorTextSecondary}; - white-space: normal; - word-wrap: break-word; - overflow-wrap: break-word; - max-width: 100%; - `}});var d=i(8651),c=i.n(d);let u=e=>{let{icon:t,label:i,iconOptions:d={width:24,height:24},className:u,...p}=e,{styles:m}=s();return(0,r.jsx)(n.$,{className:c()(m.button,u),type:"default",...p,children:(0,r.jsxs)(l.s,{align:"center",justify:"center",vertical:!0,children:[(0,r.jsx)(o.I,{className:m.icon,colorToken:t.colorToken,options:d,type:t.type,value:t.value}),(0,r.jsx)(a.E,{className:m.label,children:i})]})})}},65943(e,t,i){"use strict";i.d(t,{F:()=>l});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{gridContentRenderer:i` - &.grid-content-renderer { - .ant-table-content table { - min-width: auto !important; - width: 100% !important; - } - - .ant-table { - margin-block: 0 !important; - margin-inline: 0 !important; - margin: 2px -4px !important; - } - - .ant-table-thead { - display: none; - } - - .ant-table-row { - display: flex; - flex-wrap: wrap; - height: auto; - } - - .ant-table-cell { - width: auto !important; - min-width: 0 !important; - max-width: 100% !important; - padding: 2px 8px !important; - border: none; - - &::after { - content: ''; - position: absolute; - top: 0; - right: 0; - bottom: 0; - margin: auto; - height: 16px; - width: 2px; - background-color: ${t.Table.colorBorderSecondary}; - } - - &:last-child { - &::after { - content: none; - } - } - } - - .default-cell__content { - padding: 0; - margin: 0; - } - - .grid-cell-preview-wrapper { - padding: 2px 4px; - } - } - `}}),l=e=>{let{children:t}=e,{styles:i}=n();return(0,r.jsx)("div",{className:[i.gridContentRenderer,"grid-content-renderer"].join(" "),children:t})}},43425(e,t,i){"use strict";i.d(t,{A:()=>h});var r=i(74848),n=i(47867),l=i(78508);let a=(0,i(44241).createStyles)((e,t)=>{let{token:i,css:r}=e,{size:n="normal"}=t;return{"default-cell":r` - display: flex; - width: 100%; - height: 100%; - - &.default-cell--active:not(:focus):not(.default-cell--edit-mode) { - background-color: ${i.controlItemBgActive}; - } - - &:focus { - outline: 1px solid ${i.colorPrimaryActive}; - outline-offset: -1px; - } - - .default-cell__content { - display: flex; - width: 100%; - height: 100%; - margin: 0 ${i.paddingXXS}px; - overflow: hidden; - text-overflow: ellipsis; - align-items: center; - white-space: normal; - } - - .default-cell__content--padded { - padding: ${"small"===n?2:4}px ${4}px; - } - - &.default-cell--modified, .default-cell--modified { - &::after { - content: '*'; - position: absolute; - top: 0; - left: 0; - bottom: 0; - pointer-events: none; - color: ${i.colorAccentSecondary}; - padding: 3px 4px; - font-size: 12px; - line-height: 12px; - border-left: 3px solid ${i.colorAccentSecondary}; - } - } - `}});var o=i(67310),s=i(29722),d=i(72928),c=i(55638),u=i(35864),p=i(75915),m=i(18196),g=i(7814);let h=e=>{var t,i,h;let{...v}=e,{size:f}=(0,n.useContext)(o.k),{styles:y}=a({size:f}),b=(0,n.useMemo)(()=>{let{column:e,row:t}=v,i=e.columnDef.meta,r={};return(0,u.isFunction)(null==i?void 0:i.editable)&&(r.editable=i.editable(t.original)??!1),(0,u.isFunction)(null==i?void 0:i.type)&&(r.type=i.type(t.original)??"text"),(0,u.isFunction)(null==i?void 0:i.config)&&(r.config=i.config(t.original)),(0,u.isFunction)(null==i?void 0:i.tooltip)&&(r.tooltip=i.tooltip(t.original)),Object.keys(r).length>0?(0,p.f)(v,r):v},[v]),{column:x,table:j,row:w}=b,[C,S]=(0,n.useState)(!!(0,u.isBoolean)(null==(t=x.columnDef.meta)?void 0:t.editable)&&(null==(i=x.columnDef.meta)?void 0:i.editable)),T=(0,n.useMemo)(()=>{var e,t;return(0,m.uI)(null==(e=x.columnDef.meta)?void 0:e.type)?null==(t=x.columnDef.meta)?void 0:t.type:"text"},[null==(h=x.columnDef.meta)?void 0:h.type]),[I,k]=(0,n.useState)(!1),E=(0,n.useRef)(null),[D,N]=(0,n.useState)(void 0),{handleArrowNavigation:P}=(e=>{let{tableElement:t}=(()=>{let{table:e}=(0,n.useContext)(o.k);return(0,n.useMemo)(()=>({tableElement:e}),[e])})();return{handleArrowNavigation:function(i){let r=e.row.index,n=e.column.getIndex();if(["ArrowDown","ArrowUp","ArrowLeft","ArrowRight"].includes(i.key)){if(i.preventDefault(),"ArrowDown"===i.key)r++;else if("ArrowUp"===i.key)r--;else if("ArrowLeft"===i.key){let e=function(e){if(0!==e)return e-1}(n);void 0!==e&&(n=e)}else if("ArrowRight"===i.key){let t=function(t){if(t!==e.table.getAllColumns().length-1)return t+1}(n);void 0!==t&&(n=t)}if((null==t?void 0:t.current)!==null){let e=t.current.querySelector(`[data-grid-row="${r}"][data-grid-column="${n}"]`);if(null===e)return;e.focus();let i=document.createRange(),l=window.getSelection();i.setStart(e,0),null==l||l.removeAllRanges(),null==l||l.addRange(i)}}}}})(b),A=(0,s.Z)(I);(0,n.useEffect)(()=>{var e,t;S(!!(0,u.isBoolean)(null==(e=x.columnDef.meta)?void 0:e.editable)&&(null==(t=x.columnDef.meta)?void 0:t.editable))},[x]),(0,n.useEffect)(()=>{if(void 0!==A&&A!==I&&!I){var e;null==(e=E.current)||e.focus()}},[I]);let F=(0,n.useMemo)(()=>({isInEditMode:I,setIsInEditMode:k}),[I]),{getComponentRenderer:$}=(0,d.R)(),{ComponentRenderer:M}=$({dynamicTypeIds:[T],target:"GRID_CELL"});return null===M&&(M=$({dynamicTypeIds:["input"],target:"GRID_CELL"}).ComponentRenderer),(0,n.useMemo)(()=>{var e,t,i,n;let a,o=I&&(null==(e=x.columnDef.meta)?void 0:e.editable)===!0&&(null==(t=x.columnDef.meta)?void 0:t.autoWidth)===!0,s=(0,m.uI)(null==(i=x.columnDef.meta)?void 0:i.tooltip)?null==(n=x.columnDef.meta)?void 0:n.tooltip:void 0,d=(0,r.jsx)("div",{className:[y["default-cell"],...(a=[],!0===b.active&&a.push("default-cell--active"),!0===b.modified&&a.push("default-cell--modified"),I&&a.push("default-cell--edit-mode"),a)].join(" "),"data-grid-column":x.getIndex(),"data-grid-row":w.index,onDoubleClick:L,onFocus:()=>{var e;return null==(e=b.onFocus)?void 0:e.call(b,{rowIndex:w.index,columnIndex:x.getIndex(),columnId:x.id})},onKeyDown:_,ref:E,role:"button",style:{width:o?D:void 0},tabIndex:0,children:(0,r.jsx)(l.x,{value:F,children:null!==M?M(b):(0,r.jsx)(r.Fragment,{children:"Cell type not supported"})})},o?"auto-width-column-editmode":"default");return(0,u.isUndefined)(s)?d:(0,r.jsx)(g.m,{title:s,children:d})},[I,b.getValue(),w,w.getIsSelected(),C,b.active,b.modified]);function O(){var e;C&&(I||null===E.current||N(E.current.offsetWidth),C&&(null==(e=j.options.meta)?void 0:e.onUpdateCellData)===void 0&&(0,c.Ay)(new c.$g("onUpdateCellData is required when using editable cells")),k(!0))}function _(e){"Enter"!==e.key||I||O(),E.current===document.activeElement&&P(e)}function L(){O()}}},31492(e,t,i){"use strict";i.d(t,{L:()=>a});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{"icon-view":i` - display: flex; - justify-content: center; - width: 100%; - height: 100%; - padding: 7px; - `}},{hashPriority:"low"});var l=i(81898);let a=e=>{let{styles:t}=n();return(0,r.jsx)("div",{className:[t["icon-view"],"default-cell__content"].join(" "),children:(0,r.jsx)(l.I,{...e})})}},78508(e,t,i){"use strict";i.d(t,{g:()=>l,x:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)({isInEditMode:!1,setIsInEditMode:e=>{}}),a=e=>{let{children:t,value:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:i,children:t}),[t,i])}},75145(e,t,i){"use strict";i.d(t,{B:()=>l});var r=i(47867),n=i(78508);let l=e=>{let{isInEditMode:t,setIsInEditMode:i}=(0,r.useContext)(n.g);return{isInEditMode:t,disableEditMode:function(){i(!1)},fireOnUpdateCellDataEvent:function(t,i){var r;null==(r=e.table.options.meta)||r.onUpdateCellData({rowIndex:e.row.index,columnId:e.column.id,value:t,rowData:e.row.original,meta:i})}}}},67310(e,t,i){"use strict";i.d(t,{X:()=>a,k:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)({table:null,size:"normal"}),a=e=>{let{table:t,size:i="normal",children:a}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{table:t,size:i},children:a}),[t,i,a])}},14013(e,t,i){"use strict";i.d(t,{x:()=>_,B:()=>O.B});var r=i(74848),n=i(10600),l=i(63364),a=i(86569),o=i(26639),s=i(37414);let{useToken:d}=a.theme;var c=i(55638),u=i(89507),p=i(5339),m=i(8651),g=i.n(m),h=i(35864),v=i(47867),f=i.n(v),y=i(21429),b=i(7909),x=i(43425),j=i(88754),w=i(74979),C=i(67310),S=i(87669),T=i(32396);let I=e=>{let{cell:t,isModified:i,isActive:n,onFocusCell:l,tableElement:a,rowIndex:o,size:s="normal"}=e;return(0,r.jsx)(S.U,{serviceIds:["DynamicTypes/GridCellRegistry"],children:(0,r.jsx)(C.X,{size:s,table:a,children:(0,r.jsx)("div",{className:"grid__cell-content","data-testid":void 0!==o?(0,T.Kl)(o,t.column.id):void 0,children:(0,u.flexRender)(t.column.columnDef.cell,{...t.getContext(),active:n,modified:i,onFocus:l})})})})};var k=i(29740),E=i(25750);let D=f().memo(e=>{let{row:t,isSelected:i,modifiedCells:n,rowStyle:l,virtualColumns:a,virtualPaddingLeft:o,virtualPaddingRight:s,enableColumnVirtualizer:d,...c}=e,{setNodeRef:u,transform:p,transition:m,isDragging:g,attributes:f,listeners:y}=(0,j.useSortable)({id:t.id}),b=(0,v.useRef)(null),x=(0,v.useCallback)(e=>{b.current=e,u(e)},[u]);(0,v.useLayoutEffect)(()=>{var e;g||(0,h.isNull)(b.current)||null==c||null==(e=c.measureElement)||e.call(c,b.current)},[g,c.measureElement]);let C={transform:w.Ks.Transform.toString(p),transition:m,opacity:g?.8:1,zIndex:+!!g,position:"relative",...l},S=(0,v.useMemo)(()=>JSON.parse(n),[n]),D=()=>{void 0!==c.onRowDoubleClick&&c.onRowDoubleClick(t)},N=(0,v.useMemo)(()=>d?null==a?void 0:a.map(e=>t.getVisibleCells()[e.index]):t.getVisibleCells(),[d,a,JSON.stringify(t)]);return(0,v.useMemo)(()=>(e=>{if(void 0!==c.contextMenu){let{contextMenu:i}=c;return(0,r.jsx)(i,{row:t,children:e})}return(0,r.jsx)(r.Fragment,{children:e})})((0,r.jsx)("tr",{className:["ant-table-row",t.getIsSelected()?"ant-table-row-selected":"",void 0!==c.onRowDoubleClick?"hover":""].join(" "),"data-index":null==c?void 0:c.virtualIndex,"data-testid":(0,T.mM)(t.index),onDoubleClick:D,ref:x,style:d?{...C,paddingLeft:o,paddingRight:s}:{...C},children:null==N?void 0:N.map(e=>{var i,n;return(0,r.jsx)("td",{className:"ant-table-cell",style:(null==(i=e.column.columnDef.meta)?void 0:i.autoWidth)===!0?{width:"auto",minWidth:e.column.getSize()}:{width:e.column.getSize(),maxWidth:e.column.getSize()},children:"drag-handle"===e.column.id?(0,r.jsx)(E.s,{justify:"center",children:(0,r.jsx)(k.K,{icon:{value:"drag-option"},...f,...y,style:{cursor:"grab"},tabIndex:-1})}):(0,r.jsx)(I,{cell:e,isActive:c.activeColumId===e.column.id,isModified:(n=e.column.id,void 0!==S.find(e=>e.columnId===n)),onFocusCell:c.onFocusCell,rowIndex:t.index,size:c.size,tableElement:c.tableElement})},e.id)})})),[JSON.stringify(t),S,i,c.columns,C,N])});var N=i(44241);let P=(0,N.createStyles)((e,t)=>{let{token:i,css:r}=e,{size:n="normal",enableRowVirtualizer:l=!1,enableColumnVirtualizer:a=!1}=t,o=l?"auto":`${"small"===n?32:41}px`,s="small"!==n&&l?`${i.paddingXXS}px 0 !important`:0,d=e=>r` - content: ''; - display: block; - position: absolute; - top: -${1}px; - ${e}: -${1}px; - width: 100%; - height: 100%; - background: ${i.colorBgContainer}; - z-index: -1; - `;return{grid:r` - display: flex; - width: 100%; - max-width: 100%; - - table { - table-layout: fixed; - width: auto; - height: 0; - } - - &.grid--docked { - &.ant-table-wrapper .ant-table-container, - &.ant-table-wrapper .ant-table, - &.ant-table-wrapper table { - border-radius: 0; - border: 0; - } - - &.ant-table-wrapper .ant-table-container table>thead>tr:first-child >*:first-child, - &.ant-table-wrapper .ant-table-container table>thead>tr:first-child >*:last-child { - border-radius: 0; - } - - .ant-table-cell:first-of-type { - border-left: 0; - } - - .ant-table-cell:last-of-type { - border-right: 0; - } - - tr:last-of-type { - .ant-table-cell { - border-bottom: 0; - } - } - } - - table.withoutHeader { - .ant-table-tbody { - .ant-table-row:first-child { - .ant-table-cell { - border-top: ${1}px solid ${i.Table.colorBorderSecondary} !important; - } - - .ant-table-cell:first-of-type { - border-top-left-radius: 8px; - - .default-cell--active { - border-top-left-radius: 7px; - } - } - - .ant-table-cell:last-of-type { - border-top-right-radius: 8px; - - .default-cell--active { - border-top-right-radius: 7px; - } - } - } - - .ant-table-row:last-of-type { - .ant-table-cell:first-of-type { - .default-cell--active { - border-bottom-left-radius: 7px; - } - } - - .ant-table-cell:last-of-type { - .default-cell--active { - border-bottom-right-radius: 7px; - } - } - } - } - } - - th { - user-select: none; - } - - th, td { - line-height: 1.83; - padding: ${i.Table.cellPaddingBlockSM}px ${i.Table.cellPaddingInlineSM}px; - } - - &.ant-table-wrapper .ant-table.ant-table-small .ant-table-thead>tr>th { - padding: ${i.paddingXXS}px ${i.paddingXS}px; - } - - &.ant-table-wrapper .ant-table.ant-table-small .ant-table-tbody>tr>td { - padding: 0; - } - - .ant-table-cell { - position: relative; - border-left: ${1}px solid ${i.Table.colorBorderSecondary}; - white-space: nowrap; - text-overflow: ellipsis; - - &.ant-table-cell__no-data { - padding: ${i.paddingXS}px 0px ${i.paddingXS}px ${i.paddingXS}px !important; - } - - &:last-of-type { - border-right: ${1}px solid #F0F0F0; - } - } - - .ant-table-cell:last-of-type { - border-color: ${i.Table.colorBorderSecondary} !important; - } - - .ant-table-thead { - position: sticky; - top: 0; - z-index: 1; - - .ant-table-cell { - border-top: ${1}px solid ${i.Table.colorBorderSecondary} !important; - } - - .ant-table-cell:first-child { - &::after { - ${d("left")} - } - } - - .ant-table-cell:last-of-type { - border-color: ${i.Table.colorBorderSecondary} !important; - - &::before { - ${d("right")} - } - } - - .grid__cell-content { - display: flex; - width: 100%; - justify-content: space-between; - align-items: center; - } - - .grid__sorter { - display: flex; - align-items: center; - justify-content: flex-end; - width: 26px; - } - } - - .ant-table-row { - height: ${o}; - - .ant-table-cell { - padding: ${s}; - } - } - - .ant-table-content { - table { - border: ${1}px solid transparent; - border-radius: 8px; - } - - .ant-table-tbody { - position: relative; - width: 100%; - - .ant-table-row:last-of-type { - .ant-table-cell:first-of-type { - border-bottom-left-radius: 8px; - } - - .ant-table-cell:last-of-type { - border-bottom-right-radius: 8px; - border-color: ${i.Table.colorBorderSecondary} !important; - } - } - } - } - - &.versionFieldItem { - .ant-table-content { - table { - width: 100% !important; - min-width: 100% !important; - table-layout: auto; - - .ant-table-cell { - width: inherit !important; - min-width: inherit !important; - } - } - } - } - - &.versionFieldItemHighlight { - .ant-table-content { - table { - border-color: ${i.Colors.Brand.Warning.colorWarningBorder} !important; - } - } - } - - .grid__cell-content { - display: flex; - width: 100%; - height: 100%; - - .ant-skeleton { - width: 100%; - margin: 4px; - - .ant-skeleton-input { - min-width: unset; - width: 100%; - } - } - } - - .grid__cell-content > * { - display: flex; - width: 100%; - height: 100%; - } - - .ant-table-row-selected td { - background-color: ${i.controlItemBgActive}; - } - `,headerRow:r` - display: ${(l||a)&&"flex"}; - width: ${a&&"100%"}; - `,disabledGrid:r` - .ant-table-cell { - background-color: ${i.colorBgContainerDisabled}; - color: ${i.colorTextDisabled}; - } - `}},{hashPriority:"low"}),A=(0,N.createStyles)(e=>{let{token:t,css:i}=e;return{resizer:i` - &.grid__resizer { - position: absolute; - right: -4px; - top: 0; - bottom: 0; - width: 8px; - z-index: 1; - background-color: transparent; - - &--resizing { - background-color: ${t.colorPrimary}; - width: 2px; - right: -1px; - } - - &--hoverable { - cursor: col-resize; - } - } - - &:focus { - outline: none; - } - `}},{hashPriority:"low"}),F=f().memo(e=>{let{styles:t}=A(),i=["grid__resizer"],n=void 0!==e.header,{t:l}=(0,y.useTranslation)();function a(){let{header:t,table:i}=e;n&&i.setColumnSizingInfo(e=>({...e,isResizingColumn:t.column.id}))}function o(){let{table:t}=e;t.setColumnSizingInfo(e=>({...e,isResizingColumn:!1}))}function s(t){"ArrowLeft"===t.key?function(t){t.preventDefault();let{header:i,table:r}=e;r.setColumnSizing(e=>{let t={};return t[i.column.id]=i.column.getSize()-5,{...e,...t}})}(t):"ArrowRight"===t.key&&function(t){t.preventDefault();let{header:i,table:r}=e;r.setColumnSizing(e=>{let t={};return t[i.column.id]=i.column.getSize()+5,{...e,...t}})}(t)}i.push(t.resizer),n&&i.push("grid__resizer--hoverable"),e.isResizing&&i.push("grid__resizer--resizing");let d="rtl"===e.table.options.columnResizeDirection?-1:1,c=e.table.getState().columnSizingInfo.deltaOffset??0;return(0,r.jsx)("div",{className:i.join(" "),...function(){let{header:t}=e;return n?{role:"button",tabIndex:0,"aria-label":l("grid.aria.column-resize"),onMouseDown:null==t?void 0:t.getResizeHandler(),onFocus:a,onBlur:o,onKeyDown:s}:{}}(),style:{transform:e.isResizing?`translateX(${d*c}px)`:""}})});var $=i(41834),M=i(40119),O=i(75145);let _=e=>{let t,i,{enableMultipleRowSelection:m=!1,modifiedCells:f=[],sorting:w,manualSorting:C=!1,enableSorting:S=!1,hideColumnHeaders:T=!1,highlightActiveCell:I=!1,docked:k=!1,onActiveCellChange:E,enableRowSelection:N=!1,selectedRows:A={},disabled:O=!1,allowMultipleAutoWidthColumns:_=!1,enableRowDrag:L,handleDragEnd:R,enableRowVirtualizer:B=!1,enableColumnVirtualizer:z=!1,size:V="normal",...G}=e,{t:U}=(0,y.useTranslation)(),q=(()=>{(0,o.A)("ant-table"),(0,s.Ay)("ant-pagination");let{hashId:e}=d();return e})(),[W]=(0,v.useState)("onChange"),[K,H]=(0,v.useState)(),[X,J]=(0,v.useState)(G.autoWidth??!1),Z=(0,v.useRef)(null),Y=(0,v.useRef)(null),Q=(0,v.useRef)(null),ee=(0,v.useRef)(!1),et=(0,v.useMemo)(()=>m||N,[m,N]),[ei,er]=(0,v.useState)(w??[]),en=(0,v.useMemo)(()=>f??[],[JSON.stringify(f)]),el=(0,l.Lt)(n.K["DynamicTypes/GridCellRegistry"]),ea=(0,$.useSensors)((0,$.useSensor)($.PointerSensor));(0,v.useEffect)(()=>{null==E||E(K)},[K]),(0,v.useEffect)(()=>{void 0!==w&&er(w)},[w]);let eo=(0,v.useMemo)(()=>!0===G.isLoading?[,,,,,].fill({}):G.data,[G.isLoading,G.data]),es=(0,v.useMemo)(()=>A,[A]),ed=(0,v.useMemo)(()=>!0===G.isLoading?G.columns.map(e=>({...e,cell:(0,r.jsx)(a.Skeleton.Input,{active:!0,size:"small"})})):G.columns,[G.isLoading,G.columns]);ed.forEach(e=>{var t;if((null==(t=e.meta)?void 0:t.type)!==void 0){if((0,h.isNumber)(e.size))return;let t=e.meta.type;if((0,h.isFunction)(t))return;let i=el.getDynamicType(t,!1);(null==i?void 0:i.getDefaultGridColumnWidth)!==void 0&&(e.size=i.getDefaultGridColumnWidth(e.meta))}}),(0,v.useMemo)(()=>{!0===L?eP()||ed.unshift({id:"drag-handle",header:"",cell:"",enableResizing:!1,size:50}):function(){if(!eP())return;let e=ed.findIndex(e=>"drag-handle"===e.id);-1!==e&&ed.splice(e,1)}(),et?eN()||ed.unshift({id:"selection",header:m?e=>{let{table:t}=e;return(0,r.jsx)("div",{style:{display:"Flex",alignItems:"center",justifyContent:"center",width:"100%"},children:(0,r.jsx)(a.Checkbox,{checked:t.getIsAllRowsSelected(),indeterminate:t.getIsSomeRowsSelected(),onChange:t.getToggleAllRowsSelectedHandler()})})}:"",cell:e=>{let{row:t}=e;return(0,r.jsx)("div",{style:{display:"Flex",alignItems:"center",justifyContent:"center"},children:(0,r.jsx)(a.Checkbox,{checked:t.getIsSelected(),onChange:t.getToggleSelectedHandler()})})},enableResizing:!1,size:50}):function(){if(!eN())return;let e=ed.findIndex(e=>"selection"===e.id);-1!==e&&ed.splice(e,1)}()},[ed,et,L,A]);let ec=(0,v.useMemo)(()=>({data:eo,state:{rowSelection:es,sorting:ei},columns:ed,initialState:G.initialState,defaultColumn:{cell:x.A},getCoreRowModel:(0,u.getCoreRowModel)(),getSortedRowModel:(0,u.getSortedRowModel)(),enableRowSelection:et,enableMultiRowSelection:m,onRowSelectionChange:eD,onSortingChange:eA,enableSorting:S,manualSorting:C,getRowId:void 0!==G.setRowId?(e,t,i)=>{var r;let n=null==(r=G.setRowId)?void 0:r.call(G,e,t,i);return void 0!==n?n:(!0===G.isLoading||ee.current||(console.warn("Grid: setRowId returned undefined for at least one row. Falling back to index-based row id for that row. Ensure setRowId always returns a defined string for real data rows."),ee.current=!0),(null==i?void 0:i.id)!==void 0?`${String(i.id)}.${String(t)}`:String(t))}:void 0,enableMultiSorting:!1,meta:{onUpdateCellData:G.onUpdateCellData}}),[eo,ed,es,G.initialState,G.setRowId,G.isLoading]);!0===G.resizable&&(ec.columnResizeMode=W);let[eu,ep]=(0,v.useState)();ec.onColumnSizingInfoChange=e=>{let t=(0,u.functionalUpdate)(e,eu);if(X&&void 0!==t&&"string"==typeof(null==t?void 0:t.isResizingColumn)){var i,r,n,l;let e=em.getColumn(t.isResizingColumn),a=null==(i=Q.current)?void 0:i.clientWidth;if((null==e||null==(r=e.columnDef.meta)?void 0:r.autoWidth)===!0&&void 0!==a){e.columnDef.size=a,e.columnDef.meta.autoWidth=!1,void 0!==(null==(n=Q.current)?void 0:n.clientWidth)&&(t.startSize=null==(l=Q.current)?void 0:l.clientWidth,(0,h.isEmpty)(null==t?void 0:t.columnSizingStart)||t.columnSizingStart.forEach(e=>{e[1]=a})),ep(t),J(!1);return}}ep(e)},(0,v.useMemo)(()=>{if(X&&!_){let t=!1;for(let i of ed){var e;(null==(e=i.meta)?void 0:e.autoWidth)===!0&&(t&&(0,c.Ay)(new c.$g("Only one column can have autoWidth set to true when table autoWidth is enabled.")),t=!0)}}},[ed,X]);let em=(0,u.useReactTable)(ec),eg=(0,v.useCallback)(e=>{H(e)},[]),eh=em.getRowModel().rows,ev=em.getVisibleLeafColumns(),ef=(0,v.useMemo)(()=>B&&(null==eh?void 0:eh.length)>20,[B,eh]),ey=(0,p.useVirtualizer)({count:eh.length,getScrollElement:()=>Y.current,estimateSize:()=>33,overscan:5,measureElement:e=>e.getBoundingClientRect().height,enabled:ef}),eb=ey.getVirtualItems(),ex=(0,v.useMemo)(()=>ef?eb.map(e=>eh[e.index].id):eh.map(e=>e.id),[eb,eh,ef]),ej=(0,v.useMemo)(()=>!0!==G.isLoading&&z&&(null==ev?void 0:ev.length)>20,[z,ev,G.isLoading]),ew=(0,p.useVirtualizer)({count:ev.length,getScrollElement:()=>Y.current,estimateSize:e=>ev[e].getSize(),overscan:5,horizontal:!0,enabled:ej}),eC=ew.getVirtualItems();if(eC.length>0){var eS,eT;t=(null==(eS=eC[0])?void 0:eS.start)??0,i=ew.getTotalSize()-((null==(eT=eC[eC.length-1])?void 0:eT.end)??0)}let{styles:eI}=P({size:V,enableRowVirtualizer:ef,enableColumnVirtualizer:ej}),ek=e=>{null==R||R(e),requestAnimationFrame(()=>{(0,h.isNull)(Z.current)||Z.current.querySelectorAll("tbody > tr").forEach(e=>{ey.measureElement(e)})})},eE=()=>(ef?eb.map(e=>({row:eh[e.index],virtualIndex:e.index,rowStyle:{position:"absolute",top:`${e.start}px`,left:0,right:0,display:"flex"},measureElement:ey.measureElement})):eh.map(e=>({row:e,virtualIndex:void 0,rowStyle:ej?{display:"flex",width:"100%"}:{},measureElement:void 0}))).map(e=>{var n;let{row:l,virtualIndex:a,rowStyle:o,measureElement:s}=e;return(0,r.jsx)(D,{activeColumId:I&&l.index===(null==K?void 0:K.rowIndex)?null==K?void 0:K.columnId:void 0,columns:ed,contextMenu:G.contextMenu,enableColumnVirtualizer:ej,isSelected:l.getIsSelected(),measureElement:s,modifiedCells:JSON.stringify((n=`${l.id}`,en.filter(e=>{let{rowIndex:t}=e;return String(t)===String(n)})??[])),onFocusCell:eg,onRowDoubleClick:G.onRowDoubleClick,row:l,rowStyle:o,size:V,tableElement:Z,virtualColumns:eC,virtualIndex:a,virtualPaddingLeft:t,virtualPaddingRight:i},l.id)});return(0,v.useMemo)(()=>(0,r.jsx)(a.ConfigProvider,{componentSize:"small"===V?"small":"middle",children:(0,r.jsx)("div",{className:g()("ant-table-wrapper",q,eI.grid,G.className,{[eI.disabledGrid]:O},k?"grid--docked":""),ref:Y,children:(0,r.jsx)("div",{className:"ant-table ant-table-small",children:(0,r.jsx)("div",{className:"ant-table-container",children:(0,r.jsx)("div",{className:"ant-table-content",children:(0,r.jsxs)("table",{className:g()({withoutHeader:T}),"data-testid":G.dataTestId,ref:Z,style:{width:X?"100%":ed.some(e=>{var t;return(null==(t=e.meta)?void 0:t.autoWidth)===!0})?"auto":em.getCenterTotalSize(),minWidth:em.getCenterTotalSize()},children:[!T&&(0,r.jsx)("thead",{className:"ant-table-thead",children:em.getHeaderGroups().map(e=>{let n=ej?eC.map(t=>e.headers[t.index]):e.headers;return(0,r.jsx)("tr",{className:eI.headerRow,style:ej?{paddingLeft:t,paddingRight:i}:void 0,children:n.map(e=>{var t,i;return(0,r.jsxs)("th",{className:"ant-table-cell",ref:(null==(t=e.column.columnDef.meta)?void 0:t.autoWidth)===!0?Q:null,style:(null==(i=e.column.columnDef.meta)?void 0:i.autoWidth)!==!0||e.column.getIsResizing()?{width:e.column.getSize(),maxWidth:e.column.getSize()}:{width:"auto",minWidth:e.column.getSize()},children:[(0,r.jsxs)("div",{className:"grid__cell-content",children:[(0,r.jsx)("span",{children:(0,u.flexRender)(e.column.columnDef.header,e.getContext())}),e.column.getCanSort()&&(e=>{let{headerColumn:t}=e;return(0,r.jsx)("div",{className:"grid__sorter",children:(0,r.jsx)(b.n,{allowUnsorted:void 0===w,onSortingChange:e=>{var i,r;i=t,void 0===(r=e)?em.setSorting([]):em.setSorting([{id:i.id,desc:r===b.v.DESC}])},value:function(e){var t;let i=null==(t=ei.find(t=>{let{id:i}=t;return i===e.id}))?void 0:t.desc;if(void 0!==i)return i?b.v.DESC:b.v.ASC}(t)})})})({headerColumn:e.column})]}),!0===G.resizable&&e.column.getCanResize()&&(0,r.jsx)(F,{header:e,isResizing:e.column.getIsResizing(),table:em})]},e.id)})},e.id)})}),(0,r.jsxs)("tbody",{className:"ant-table-tbody",style:{height:ef?`${ey.getTotalSize()}px`:"initial"},children:[0===eh.length&&(0,r.jsx)("tr",{className:"ant-table-row",children:(0,r.jsx)("td",{className:"ant-table-cell ant-table-cell__no-data",colSpan:em.getAllColumns().length,children:U("no-data-available-yet")})}),!0===L?(0,r.jsx)($.DndContext,{autoScroll:!1,collisionDetection:$.closestCenter,modifiers:[M.restrictToVerticalAxis],onDragEnd:ek,sensors:ea,children:(0,r.jsx)(j.SortableContext,{items:ex,strategy:j.verticalListSortingStrategy,children:eE()})}):eE()]})]})})})})})}),[em,f,em.getTotalSize(),eo,ed,es,ei,I?K:void 0,V,eb,ey.getTotalSize(),ex,eC]);function eD(e){var t;null==(t=G.onSelectedRowsChange)||t.call(G,e)}function eN(){return ed.some(e=>"selection"===e.id)}function eP(){return ed.some(e=>"drag-handle"===e.id)}function eA(e){void 0!==G.onSortingChange?G.onSortingChange(e):er(e)}}},29150(e,t,i){"use strict";i.d(t,{Y:()=>s});var r=i(74848);i(47867);var n=i(74325);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{header:i` - display: flex; - width: 100%; - height: 32px; - min-height: 32px; - align-items: center; - gap: 8px; - - .header__title { - font-weight: 600; - color: ${t.colorPrimary}; - white-space: nowrap; - } - - .header__text { - white-space: nowrap; - margin: 0; - - h1 { - margin: 0; - } - } - `}},{hashPriority:"low"});var a=i(8651),o=i.n(a);let s=e=>{let{styles:t}=l(),{icon:i,title:a,children:s,fullWidth:d,...c}=e,u=o()(t.header,e.className);return(0,r.jsxs)("div",{...c,className:u,children:[""!==a&&(0,r.jsx)("span",{className:"header__text",children:(0,r.jsx)(n.h,{icon:i,children:a})}),(0,r.jsx)("div",{className:o()("header__content",{"w-full":!0===d}),children:s})]})}},27628(e,t,i){"use strict";i.d(t,{o:()=>s});var r=i(74848),n=i(47867);let l=(0,i(44241).createStyles)((e,t)=>{let{css:i}=e,{scrollWidth:r,hideElement:n}=t;return{scrollContainer:i` - visibility: ${!0===n?"hidden":"visible"}; - display: flex; - overflow-x: auto; - `,scroll:i` - overflow-x: auto; - white-space: nowrap; - ${null!=r?`width: ${r}px;`:""} - - &::-webkit-scrollbar { - display: none; - } - `}});var a=i(29740),o=i(86569);let s=e=>{let{children:t,scrollWidth:i}=e,s=(0,n.useRef)(null),[d,c]=(0,n.useState)(null),[u,p]=(0,n.useState)(!0),[m,g]=(0,n.useState)(!1),[h,v]=(0,n.useState)(!1),[f,y]=(0,n.useState)(!1),{styles:b}=l({scrollWidth:i,hideElement:f}),x=()=>{if(null!==s.current){let{scrollLeft:e,scrollWidth:t,clientWidth:i}=s.current;p(0===e),g(e+i>=t),v(t>i+1),y(i<50)}};(0,n.useEffect)(()=>{if(null!==s.current){x(),s.current.addEventListener("scroll",x);let e=new ResizeObserver(()=>{x()}),t=new MutationObserver(()=>{x()});return e.observe(s.current),t.observe(s.current,{childList:!0,subtree:!0}),()=>{var i;null==(i=s.current)||i.removeEventListener("scroll",x),e.disconnect(),t.disconnect(),c(null)}}},[]);let j=e=>{null===d&&c(setInterval(()=>{null!==s.current&&s.current.scrollBy({left:"left"===e?-50:50,behavior:"smooth"})},30))},w=()=>{j("left")},C=()=>{j("right")},S=()=>{null!==d&&(clearInterval(d),c(null))},T=e=>{("Enter"===e.key||" "===e.key)&&S()},I=(e,t)=>{("Enter"===e.key||" "===e.key)&&("left"===t?w():"right"===t&&C())};return(0,r.jsxs)(o.Flex,{align:"center",className:["horizontal-scroll",b.scrollContainer].join(" "),children:[h&&(0,r.jsx)(a.K,{disabled:u,icon:{value:"chevron-left",options:{height:18,width:18}},onKeyDown:e=>{I(e,"left")},onKeyUp:T,onMouseDown:w,onMouseLeave:S,onMouseUp:S,theme:"secondary"}),(0,r.jsx)(o.Flex,{align:"center",className:[b.scroll,"w-full"].join(" "),ref:s,children:t}),h&&(0,r.jsx)(a.K,{disabled:m,icon:{value:"chevron-right",options:{height:18,width:18}},onKeyDown:e=>{I(e,"right")},onKeyUp:T,onMouseDown:C,onMouseLeave:S,onMouseUp:S,theme:"secondary"})]})}},19249(e,t,i){"use strict";i.d(t,{X:()=>j,d:()=>w});var r=i(74848),n=i(47867);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{hotspotImage:i` - position: relative; - width: fit-content; - height: auto; - margin: 0 auto; - - .hotspot-image__image { - width: auto; - max-width: 100%; - height: auto; - display: block; - } - - .hotspot-image__item { - border-radius: ${t.borderRadius}px; - color: ${t.colorPrimary}; - background: ${t.colorFillAlter}; - border: 3px dashed ${t.colorPrimaryBorder}; - border-radius: ${t.borderRadius}px; - user-select: none; - cursor: nwse-resize; - - &:before { - content: ''; - position: absolute; - right: 6px; - bottom: 6px; - left: 6px; - top: 6px; - cursor: move; - } - } - - .hotspot-image__item--marker { - cursor: move; - border-width: 0; - padding: 0; - display: flex; - justify-content: center; - align-items: center; - background: transparent; - } - - .hotspot-image__item--disabled { - cursor: default; - &:before { - cursor: default; - } - } - - .hotspot-image__popover { - } - `,Popover:i` - .ant-popover-inner { - padding: ${t.paddingXS}px; - } - `}});var a=i(86569),o=i(27820),s=i(29740);let d=(e,t)=>({...e,x:u(e.x,t.width),y:u(e.y,t.height),width:"marker"===e.type?e.width:u(e.width,t.width),height:"marker"===e.type?e.height:u(e.height,t.height)}),c=(e,t)=>({...e,x:p(e.x,t.width),y:p(e.y,t.height),width:"marker"===e.type?e.width:p(e.width,t.width),height:"marker"===e.type?e.height:p(e.height,t.height)}),u=(e,t)=>t*e/100,p=(e,t)=>100*e/t,m=(e,t,i)=>{let{resizeStart:r,hotspot:n,containerBounds:l,minSize:a,dx:o}=e,s="e"===t?Math.min(l.width-n.x,Math.max(a,r.width+o)):Math.max(a,r.width-o),d=n.x;return"w"===t&&(d=r.x-l.left+(r.width-s)),{newWidth:s,newHeight:s/i,newX:d,newY:n.y}},g=(e,t,i)=>{let{resizeStart:r,hotspot:n,containerBounds:l,minSize:a,dy:o}=e,s="s"===t?Math.max(a,r.height+o):Math.max(a,r.height-o),d=n.y;return"n"===t&&(d=r.y-l.top+(r.height-s)),{newWidth:s*i,newHeight:s,newX:n.x,newY:d}},h=(e,t,i)=>{let{resizeStart:r,hotspot:n,containerBounds:l,minSize:a,dx:o,dy:s}=e,d=Math.max(a,t.includes("e")?r.width+o:r.width-o),c=Math.max(a,t.includes("s")?r.height+s:r.height-s);d/c>i?d=c*i:c=d/i;let u=n.x,p=n.y;return t.includes("w")&&(u=r.x-l.left+(r.width-d)),t.includes("n")&&(p=r.y-l.top+(r.height-c)),{newWidth:d,newHeight:c,newX:u,newY:p}},v=(e,t,i,r,n,l)=>{let a=Math.max(l,e.width-i),o=Math.min(t.x+e.width-l,r.clientX-n.left);return a===l&&(o=t.x+t.width-l),{newWidth:a,newX:o}},f=(e,t,i,r,n,l)=>{let a=Math.max(l,e.height-i),o=Math.min(t.y+e.height-l,r.clientY-n.top);return a===l&&(o=t.y+t.height-l),{newHeight:a,newY:o}};var y=i(7814),b=i(21429),x=i(35864);let j={hotspot:{width:10,height:10,resizeBorderSize:10,minSize:24,icon:null},marker:{width:30,height:50,marginLeft:-15,marginTop:-36,icon:(0,r.jsx)(()=>(0,r.jsxs)("svg",{fill:"none",height:"50",viewBox:"0 0 30 50",width:"30",xmlns:"http://www.w3.org/2000/svg",children:[(0,r.jsx)("circle",{cx:"15",cy:"36",fill:"#FAAD14",opacity:"0.1",r:"13"}),(0,r.jsx)("circle",{cx:"15",cy:"36",fill:"#FAAD14",opacity:"0.25",r:"10"}),(0,r.jsxs)("g",{filter:"url(#filter0_d_15707_18695)",children:[(0,r.jsx)("path",{d:"M21 36C21 39.3137 18.3137 42 15 42C11.6863 42 9 39.3137 9 36C9 32.6863 11.6863 30 15 30C18.3137 30 21 32.6863 21 36Z",fill:"#FAAD14"}),(0,r.jsx)("path",{d:"M15 30.5C18.0376 30.5 20.5 32.9624 20.5 36C20.5 39.0376 18.0376 41.5 15 41.5C11.9624 41.5 9.5 39.0376 9.5 36C9.5 32.9624 11.9624 30.5 15 30.5Z",stroke:"#404655"})]}),(0,r.jsx)("path",{d:"M15 14.65C17.4853 14.65 19.5 12.9039 19.5 10.75C19.5 8.59609 17.4853 6.85 15 6.85C12.5147 6.85 10.5 8.59609 10.5 10.75C10.5 12.9039 12.5147 14.65 15 14.65Z",fill:"#FFFBE6"}),(0,r.jsx)("path",{d:"M15 27C18 21.8 27 18.4438 27 11.4C27 5.65624 21.6274 1 15 1C8.37258 1 3 5.65624 3 11.4C3 18.4438 12 21.8 15 27Z",fill:"#FFFBE6"}),(0,r.jsx)("path",{d:"M15 14.65C17.4853 14.65 19.5 12.9039 19.5 10.75C19.5 8.59609 17.4853 6.85 15 6.85C12.5147 6.85 10.5 8.59609 10.5 10.75C10.5 12.9039 12.5147 14.65 15 14.65Z",stroke:"#404655",strokeLinecap:"round",strokeLinejoin:"round"}),(0,r.jsx)("path",{d:"M15 27C18 21.8 27 18.4438 27 11.4C27 5.65624 21.6274 1 15 1C8.37258 1 3 5.65624 3 11.4C3 18.4438 12 21.8 15 27Z",stroke:"#404655",strokeLinecap:"round",strokeLinejoin:"round"}),(0,r.jsx)("defs",{children:(0,r.jsxs)("filter",{colorInterpolationFilters:"sRGB",filterUnits:"userSpaceOnUse",height:"16",id:"filter0_d_15707_18695",width:"16",x:"7",y:"28",children:[(0,r.jsx)("feFlood",{floodOpacity:"0",result:"BackgroundImageFix"}),(0,r.jsx)("feColorMatrix",{in:"SourceAlpha",result:"hardAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"}),(0,r.jsx)("feMorphology",{in:"SourceAlpha",operator:"dilate",radius:"2",result:"effect1_dropShadow_15707_18695"}),(0,r.jsx)("feOffset",{}),(0,r.jsx)("feComposite",{in2:"hardAlpha",operator:"out"}),(0,r.jsx)("feColorMatrix",{type:"matrix",values:"0 0 0 0 1 0 0 0 0 0.843137 0 0 0 0 0.0196078 0 0 0 0.1 0"}),(0,r.jsx)("feBlend",{in2:"BackgroundImageFix",mode:"normal",result:"effect1_dropShadow_15707_18695"}),(0,r.jsx)("feBlend",{in:"SourceGraphic",in2:"effect1_dropShadow_15707_18695",mode:"normal",result:"shape"})]})})]}),{})}},w=e=>{let t,{src:i,data:u,styleOptions:p=j,onRemove:w,onEdit:C,onClone:S,onUpdate:T,disableContextMenu:I,disabled:k,disableDrag:E=!1,ratioX:D,ratioY:N}=e,{styles:P}=l(),[A,F]=(0,n.useState)(!1),$=(0,n.useRef)(null),{t:M}=(0,b.useTranslation)(),[O,_]=(0,n.useState)(u??[]);(0,n.useEffect)(()=>{_(u??[])},[null==u?void 0:u.length,JSON.stringify(null==u?void 0:u.map(e=>({name:e.name,data:e.data,id:e.id})))]),(0,n.useEffect)(()=>{F(!1)},[i]);let[L,R]=(0,n.useState)(null),[B,z]=(0,n.useState)(!1),[V,G]=(0,n.useState)(null),[U,q]=(0,n.useState)({x:0,y:0}),[W,K]=(0,n.useState)({width:0,height:0,x:0,y:0}),[H,X]=(0,n.useState)(!1),J=(0,n.useRef)(null),Z=e=>{let t=Number(e);return isNaN(t)?0:t};return(0,r.jsxs)("div",{className:["hotspot-image",P.hotspotImage].join(" "),onMouseMove:E?void 0:e=>{if(null===L||null===J.current||!0===k)return;let t=J.current.getBoundingClientRect(),i=O.findIndex(e=>e.id===L),r=e.clientX-W.x,n=e.clientY-W.y;if(B){var l,a;let r,n,o;_((l=Z(p[O[i].type].marginLeft),a=Z(p[O[i].type].marginTop),r=d(O[i],t),n=Math.min(t.width-r.width,Math.max(0,e.clientX-t.left-U.x))-l,o=Math.min(t.height-r.height,Math.max(0,e.clientY-t.top-U.y))-a,O.map((e,l)=>l===i?c({...e,x:n,y:o,width:r.width,height:r.height},t):e)))}else null!==V&&_(((e,t,i,r,n,l,a,o,s,u,p)=>{let y,b,x,j=d(n[l],r),{width:w,height:C}=t,{x:S,y:T}=j;if(null===i)return n;let I={evt:e,resizeStart:t,hotspot:j,containerBounds:r,minSize:a,dx:o,dy:s};return void 0!==u&&void 0!==p&&u>0&&p>0?{newWidth:w,newHeight:C,newX:S,newY:T}=(y=I,b=i,x=u/p,"e"===b||"w"===b?m(y,b,x):"s"===b||"n"===b?g(y,b,x):b.length>1?h(y,b,x):{newWidth:y.resizeStart.width,newHeight:y.resizeStart.height,newX:y.hotspot.x,newY:y.hotspot.y}):{newWidth:w,newHeight:C,newX:S,newY:T}=((e,t)=>{let{evt:i,resizeStart:r,hotspot:n,containerBounds:l,minSize:a,dx:o,dy:s}=e,d=r.width,c=r.height,u=n.x,p=n.y;return t.includes("w")&&({newWidth:d,newX:u}=v(r,n,o,i,l,a)),t.includes("e")&&(d=Math.min(l.width-n.x,Math.max(a,r.width+o))),t.includes("n")&&({newHeight:c,newY:p}=f(r,n,s,i,l,a)),t.includes("s")&&(c=Math.max(a,r.height+s)),{newWidth:d,newHeight:c,newX:u,newY:p}})(I,i),n.map((e,t)=>t===l?c({...e,x:S,y:T,width:w,height:C},r):e)})(e,W,V,t,O,i,Z(p[O[i].type].minSize),r,n,D,N))},onMouseUp:E?void 0:e=>{z(!1),G(null);let t=O.find(e=>e.id===L),i=null==u?void 0:u.find(e=>e.id===L);void 0===t||(0,x.isEqual)(t,i)||null==T||T(t)},ref:J,role:"none",children:[(0,r.jsx)("img",{alt:"",className:"hotspot-image__image",onLoad:()=>{null!==$.current&&F(!0)},ref:$,src:i},i),!E&&A&&null!==J.current&&(t=J.current.getBoundingClientRect(),O.map(e=>d(e,t))).map(e=>{var t,i;return(0,r.jsx)(a.Popover,{arrow:!1,content:(0,r.jsxs)(r.Fragment,{children:[void 0!==C?(0,r.jsx)(o.J,{icon:{value:"new"},onClick:()=>{C(e)},type:"default",children:M("hotspots-markers-modal.edit-button")}):null,(0,r.jsx)(y.m,{title:M("remove"),children:(0,r.jsx)(s.K,{icon:{value:"trash"},onClick:()=>{null==w||w(e.id)},type:"link"})}),void 0!==S?(0,r.jsx)(y.m,{title:M("clone"),children:(0,r.jsx)(s.K,{icon:{value:"content-duplicate"},onClick:()=>{S(e.id)},type:"link"})}):null]}),onOpenChange:e=>{X(e)},open:H&&L===e.id,overlayClassName:[P.Popover].join(" "),trigger:!0===I||!0===k?[]:["contextMenu"],children:(0,r.jsx)("button",{className:`${"marker"===e.type?"hotspot-image__item--marker":"hotspot-image__item"} ${!0===k?"hotspot-image__item--disabled":""}`,onMouseDown:t=>{((e,t)=>{let i=e.currentTarget.getBoundingClientRect(),r=e.clientX-i.left,n=e.clientY-i.top,l=ri.width-p[t.type].resizeBorderSize,o=ni.height-p[t.type].resizeBorderSize;if("hotspot"===t.type&&(l||a||o||s)){let i="";o&&(i+="n"),s&&(i+="s"),l&&(i+="w"),a&&(i+="e"),G(i),K({x:e.clientX,y:e.clientY,width:t.width,height:t.height})}else z(!0),q({x:r,y:n});X(!1),R(t.id),e.stopPropagation()})(t,e)},style:{position:"absolute",left:`${e.x}px`,top:`${e.y}px`,width:`${e.width}px`,height:`${e.height}px`,marginTop:void 0===p[e.type].marginTop?void 0:`${p[e.type].marginTop}px`,marginLeft:void 0===p[e.type].marginLeft?void 0:`${p[e.type].marginLeft}px`},type:"button",children:(null==(t=p[e.type])?void 0:t.icon)!==void 0&&(null==(i=p[e.type])?void 0:i.icon)!==null?p[e.type].icon:null},e.id)},e.id)})]})}},29740(e,t,i){"use strict";i.d(t,{K:()=>u});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(27994),s=i(81898),d=i(7814);let c=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{button:i` - padding: 6px; - height: 32px; - width: 32px; - line-height: 0; - - &.icon-button--theme-secondary { - color: ${t.colorIcon}; - } - - &.icon-button--hide-shadow { - box-shadow: none; - } - - &.icon-button--size-small { - padding: 4px; - height: 24px; - width: 24px; - } - - &.icon-button--variant-minimal { - padding: 0; - width: auto; - height: auto; - } - - &.icon-button--variant-static { - width: 24px; - height: 24px; - padding: 4px; - border: 1px solid ${t.colorBorderContainer}; - background-color: ${t.IconButton.colorBgContainer}; - border-radius: ${t.IconButton.borderRadiusSM}; - - &:hover, &:disabled, &:active { - border-color: ${t.colorBorderContainer} !important; - } - - &:focus-visible { - outline: none !important; - outline-offset: 0 !important; - } - } - `}}),u=(0,n.forwardRef)((e,t)=>{let{children:i,icon:n,type:l="link",theme:u="primary",hideShadow:p=!1,variant:m,size:g,className:h,tooltip:v,...f}=e,{styles:y}=c(),b=a()(y.button,`icon-button--theme-${u}`,`icon-button--variant-${m}`,{"icon-button--hide-shadow":p,[`icon-button--size-${g}`]:g},h),x="small"===g?14:void 0,j={...n,options:{width:x,height:x,...n.options}},w=(0,r.jsx)(o.$,{type:l,...f,className:b,ref:t,children:(0,r.jsx)(s.I,{...j})});return void 0!==v?(0,r.jsx)(d.m,{...v,children:w}):w})},27794(e,t,i){"use strict";i.d(t,{N:()=>x});var r=i(74848),n=i(47867),l=i(43588),a=i(86569),o=i(60142),s=i(63364),d=i(10600),c=i(25750),u=i(8651),p=i.n(u);let m=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{iconGrid:i` - display: grid; - grid-template-columns: repeat(10, 1fr); - grid-template-rows: repeat(4, 76px); - gap: 8px; - justify-content: center; - max-height: 328px; - overflow-y: auto; - margin-top: 8px; - margin-bottom: 8px; - `,iconCard:i` - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - width: 71px; - height: 76px; - padding: ${t.paddingXXS}px; - border: 1px solid ${t.colorBorder}; - border-radius: ${t.borderRadius}px; - background-color: ${t.colorBgContainer}; - color: ${t.colorTextDescription}; - cursor: pointer; - transition: all 0.2s ease-in-out; - - &:hover { - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); - background-color: ${t.colorPrimaryBg}; - border-color: ${t.colorPrimaryBorder}; - } - `,selectedCard:i` - border-color: ${t.colorPrimary}; - background-color: ${t.colorPrimaryBg}; - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); - - &:hover { - border-color: ${t.colorPrimary}; - background-color: ${t.colorPrimaryBg}; - box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); - } - `,iconName:i` - font-size: 10px; - color: ${t.colorTextSecondary}; - text-align: center; - margin-top: 2px; - word-break: break-word; - line-height: 1.1; - max-height: 22px; - overflow: hidden; - display: -webkit-box; - -webkit-line-clamp: 2; - -webkit-box-orient: vertical; - `,selectionPreview:i` - min-height: 32px; - padding: ${t.paddingXXS}px ${t.paddingXS}px; - border: 1px solid ${t.colorBorder}; - border-radius: ${t.borderRadius}px; - background-color: ${t.colorBgContainer}; - width: 54px; - color: ${t.colorIcon}; - `,selectionPreviewError:i` - border-color: ${t.colorError}; - `,noSelection:i` - color: ${t.colorTextSecondary}; - font-style: italic; - `,selectionLabel:i` - color: ${t.colorTextDescription}; - `,customIconContainer:i` - padding-top: ${t.paddingSM}px; - padding-bottom: ${t.paddingSM}px; - `,iconSelectorModal:i` - .ant-modal-content { - gap: 0 !important; - } - - `}});var g=i(35864);let h=e=>{let{customIconPath:t,onCustomIconPathChange:i}=e,[a,s]=(0,n.useState)(t),{styles:d}=m();return(0,n.useEffect)(()=>{s(t)},[t]),(0,r.jsx)(c.s,{className:d.customIconContainer,gap:"large",vertical:!0,children:(0,r.jsxs)(c.s,{gap:"small",vertical:!0,children:[(0,r.jsx)("span",{children:(0,o.t)("icon-selector.custom-icon-path")}),(0,r.jsx)(l.SearchInput,{maxWidth:"1000px",onChange:e=>{s(e.target.value)},onSearch:()=>{""!==a.trim()?i({type:"path",value:a.trim()}):i(void 0)},placeholder:(0,o.t)("icon-selector.custom-icon-path-placeholder"),searchButtonIcon:"refresh",value:a,withPrefix:!1,withoutAddon:!1})]})})};var v=i(81898);let f=e=>{let{icon:t,isSelected:i,onClick:n}=e,{styles:a}=m(),o=`${a.iconCard} ${i?a.selectedCard:""}`;return(0,r.jsxs)(l.Space,{className:o,onClick:n,size:"mini",children:[(0,r.jsx)(v.I,{options:{height:24,width:24},type:t.type,value:t.value}),(0,r.jsx)("span",{className:a.iconName,children:(e=>{if("path"===e.type){var t;return(null==(t=e.value.split("/").pop())?void 0:t.replace(".svg",""))??e.value}return e.value})(t)})]},t.value)};var y=i(7814);let b=e=>{let{icon:t,onLoadError:i}=e;return(0,g.isNil)(t)?(0,r.jsx)("div",{}):(0,r.jsx)(y.m,{placement:"bottom",title:t.value,children:(0,r.jsx)(v.I,{onLoadError:i,options:{height:16,width:16},type:t.type,value:t.value})})},x=e=>{let{value:t,onChange:i}=e,u=(0,s.Lt)(d.K["DynamicTypes/IconSetRegistry"]),{styles:v}=m(),[y,x]=(0,n.useState)(!1),[j,w]=(0,n.useState)(""),[C,S]=(0,n.useState)(1),[T,I]=(0,n.useState)(40),[k,E]=(0,n.useState)("all"),[D,N]=(0,n.useState)(t),[P,A]=(0,n.useState)(!1);(0,n.useEffect)(()=>{N(t)},[t]);let F=()=>{x(!1),w(""),S(1),I(40),E("all"),N(t),A(!1)},$=[{key:"all",label:(0,o.t)("icon-selector.all-icons"),children:null},...u.getDynamicTypes().map(e=>({key:e.id,label:(0,o.t)(`icon-selector.${e.name}`),children:null})),{key:"custom",label:(0,o.t)("icon-selector.custom-icon"),children:null}],M=(0,n.useMemo)(()=>(e=>{if("all"===e)return u.getDynamicTypes().flatMap(e=>e.getIcons());let t=u.getDynamicTypes().find(t=>t.id===e);return(0,g.isUndefined)(t)?[]:t.getIcons()})(k).filter(e=>e.value.toLowerCase().includes(j.toLowerCase())),[j,k,u]),O=(0,n.useMemo)(()=>{let e=(C-1)*T,t=e+T;return M.slice(e,t)},[M,C,T]),_=()=>{N(void 0),A(!1),null==i||i(void 0)};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsxs)(c.s,{gap:"extra-small",children:[(0,r.jsx)(c.s,{align:"center",className:v.selectionPreview,justify:"center",children:(0,r.jsx)(b,{icon:t})}),(0,r.jsx)(l.IconButton,{icon:{value:"folder-search"},onClick:()=>{x(!0)},type:"default"}),(0,r.jsx)(l.IconButton,{icon:{value:"trash"},onClick:_,title:(0,o.t)("icon-selector.clear-selection"),type:"default"})]}),(0,r.jsx)(l.Modal,{className:v.iconSelectorModal,footer:(0,r.jsx)(l.ModalFooter,{divider:!0,children:(0,r.jsx)(a.Button,{disabled:(0,g.isUndefined)(D)||P,onClick:()=>{null==i||i(D),F()},type:"primary",children:(0,o.t)("icon-selector.save")})}),onCancel:()=>{F()},open:y,size:"ML",children:(0,r.jsxs)(c.s,{vertical:!0,children:[(0,r.jsx)(l.Tabs,{activeKey:k,items:$,onChange:e=>{E(e),w(""),S(1)}}),"custom"!==k&&(0,r.jsx)(l.SearchInput,{maxWidth:"1000px",onSearch:e=>{w(e),S(1)},placeholder:(0,o.t)("icon-selector.search-placeholder"),withPrefix:!1,withoutAddon:!1}),"custom"!==k&&(0,r.jsx)("div",{className:v.iconGrid,children:O.map(e=>(0,r.jsx)(f,{icon:e,isSelected:(null==D?void 0:D.value)===e.value&&(null==D?void 0:D.type)===e.type,onClick:()=>{N(e),A(!1)}},e.value))}),"custom"===k&&(0,r.jsx)(h,{customIconPath:(null==D?void 0:D.type)==="path"?D.value:"",onCustomIconPathChange:e=>{N(e),(0,g.isUndefined)(e)&&A(!1)}}),(0,r.jsxs)(c.s,{justify:"space-between",children:[(0,r.jsxs)(c.s,{align:"center",gap:"small",children:[(0,r.jsx)("span",{className:v.selectionLabel,children:(0,o.t)("icon-selector.current-selection")}),(0,r.jsx)(c.s,{align:"center",className:p()(v.selectionPreview,{[v.selectionPreviewError]:P}),justify:"center",children:(0,r.jsx)(b,{icon:D,onLoadError:A})}),!(0,g.isUndefined)(D)&&!P&&(0,r.jsx)(l.IconButton,{icon:{value:"trash"},onClick:_,title:(0,o.t)("icon-selector.clear-selection"),type:"default"})]}),"custom"!==k&&(0,r.jsx)(c.s,{align:"center",gap:"small",justify:"flex-end",children:(0,r.jsx)(l.Pagination,{current:C,defaultPageSize:T,onChange:(e,t)=>{S(e),(0,g.isUndefined)(t)||I(t)},pageSizeOptions:[40,80,120],showSizeChanger:!0,showTotal:e=>(0,o.t)("pagination.show-total",{total:e}),total:M.length})})]})]})})]})}},27820(e,t,i){"use strict";i.d(t,{J:()=>o});var r=i(74848),n=i(27994);i(47867);var l=i(81898),a=i(86569);let o=e=>{let{icon:t,children:i,iconOptions:o,iconPlacement:s="left",...d}=e;return(0,r.jsx)(n.$,{...d,children:(0,r.jsxs)(a.Flex,{align:"center",gap:6,justify:"center",children:["left"===s&&(0,r.jsx)(l.I,{...t}),(0,r.jsx)("span",{children:i}),"right"===s&&(0,r.jsx)(l.I,{...t})]})})}},81898(e,t,i){"use strict";i.d(t,{I:()=>u});var r=i(74848);i(47867);var n=i(35864),l=i(8651),a=i.n(l),o=i(86569),s=i(63364),d=i(10600);let c=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{iconHide:i` - display: none; - `,subIcon:i` - position: absolute; - height: 10px; - z-index: 100; - bottom: 0; - left: 0; - - & svg { - width: inherit; - height: inherit; - color: ${t["gold-7"]}; - background: '${t["gold-3"]};' - border-radius: ${t.borderRadiusLG}px; - } - - &.sub-icon-variant--green { - & svg { - color: ${t.green7}; - } - } - `}}),u=e=>{let{value:t,type:i="name",options:l,className:u,subIconName:p,subIconVariant:m="default",sphere:g=!1,onLoadError:h,iconColorGroup:v,colorToken:f,...y}=e,b=(0,s.Lt)(d.K.iconLibrary),x=(0,s.Lt)(d.K.iconColorGroupsRegistry),j=(null==l?void 0:l.width)??16,w=(null==l?void 0:l.height)??16,{styles:C}=c(),{token:S}=o.theme.useToken(),T=g?24:j,I=g?24:w,k="name"===i,E=k?b.get(t):void 0,D=k&&((0,n.isNil)(t)||(0,n.isUndefined)(E)),N=(0,n.isUndefined)(f)?!(0,n.isUndefined)(v)&&k?x.getIconColorValue(v,t,S):void 0:S[f]??f,P=(0,n.isUndefined)(p)?void 0:b.get(p),A={width:g?T:j,height:g?I:w,position:"relative",...g&&{backgroundColor:S.colorFillAlter,borderRadius:"50%",display:"flex",alignItems:"center",justifyContent:"center"},...!(0,n.isUndefined)(N)&&{color:N}};return(0,r.jsxs)("div",{className:a()(`pimcore-icon pimcore-icon-${t} anticon ${u}`,{[C.iconHide]:D}),style:A,...y,children:[!(0,n.isNil)(P)&&(0,r.jsx)("div",{className:`${C.subIcon} pimcore-icon-sub-icon sub-icon-variant--${m}`,children:(0,r.jsx)(P,{})}),"path"===i?(0,r.jsx)("img",{alt:"",className:"pimcore-icon__image",onError:()=>{null==h||h(!0)},onLoad:()=>{null==h||h(!1)},src:t,style:{width:j,height:w}}):(0,n.isUndefined)(E)?(0,r.jsx)("div",{style:{width:j,height:w}}):(0,r.jsx)(E,{className:"pimcore-icon__svg",height:w,width:j,...l})]})}},70620(e,t,i){"use strict";i.d(t,{C:()=>p});var r=i(74848),n=i(43588),l=i(35864),a=i(47867),o=i(21429),s=i(91206),d=i(29740),c=i(7391),u=i(96940);let p=e=>{let{t}=(0,o.useTranslation)(),{allowReload:i=!0,allowOpen:p=!0,iframe:m,onReload:g,onOpen:h,toolbar:v}=e,f=(0,a.useRef)(null);return(0,r.jsx)(s.s,{renderToolbar:(0,l.isNil)(v)?(0,r.jsx)(u.M,{justify:"start",theme:"secondary",children:(0,r.jsxs)("div",{children:[i?(0,r.jsx)(n.Tooltip,{title:t("toolbar.reload"),children:(0,r.jsx)(d.K,{icon:{value:"refresh"},onClick:()=>{var e;(0,l.isNil)(g)?null==(e=f.current)||e.reload():g(f.current)}})}):null,p?(0,r.jsx)(n.Tooltip,{title:t("open"),children:(0,r.jsx)(d.K,{icon:{value:"open-folder"},onClick:()=>{(0,l.isNil)(h)?window.open(m.src,"_blank"):h(f.current)}})}):null]})}):v,children:(0,r.jsx)(c.v,{ref:f,...m})})}},7391(e,t,i){"use strict";i.d(t,{v:()=>u});var r=i(74848),n=i(47867),l=i(13755),a=i(25750);let o=(0,i(44241).createStyles)((e,t)=>{let{css:i,token:r}=e;return{iframeContainer:i` - width: 100%; - height: 100%; - position: relative; - `,iframe:i` - width: 100%; - height: 100%; - border: none; - display: ${!0===t.useExternalReadyState?t.isLoaded&&!0!==t.isActuallyLoading?"block":"none":t.isLoaded?"block":"none"}; - pointer-events: ${t.isReloading||!0===t.useExternalReadyState&&!t.isLoaded?"none":"auto"}; - `,loadingOverlay:i` - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - background-color: rgba(255, 255, 255, 0.8); - backdrop-filter: blur(1px); - display: flex; - align-items: center; - justify-content: center; - z-index: 1000; - pointer-events: all; - `}});var s=i(21429),d=i(35864),c=i(77060);let u=(0,n.forwardRef)((e,t)=>{let{src:i,title:u,loadingTip:p,reloadingTip:m,onLoad:g,onReloadStart:h,onReloadEnd:v,onReady:f,useExternalReadyState:y=!1,preserveScrollOnReload:b,...x}=e,[j,w]=(0,n.useState)(!1),[C,S]=(0,n.useState)(!1),[T,I]=(0,n.useState)(!1),[k,E]=(0,n.useState)(!0),[D,N]=(0,n.useState)(null),[P,A]=(0,n.useState)(null),{styles:F}=o({isLoaded:y?C:j,isReloading:T,isActuallyLoading:k,useExternalReadyState:y}),{t:$}=(0,s.useTranslation)();(0,n.useImperativeHandle)(t,()=>({reload:()=>{if(!(0,d.isNull)(D)){!0===b&&A((()=>{if((0,d.isNil)(D)||!0!==b)return null;try{var e;let t=D.contentDocument??(null==(e=D.contentWindow)?void 0:e.document);if(!(0,d.isNil)(t))return{x:0!==t.documentElement.scrollLeft?t.documentElement.scrollLeft:t.body.scrollLeft,y:0!==t.documentElement.scrollTop?t.documentElement.scrollTop:t.body.scrollTop}}catch(e){console.warn("Could not capture iframe scroll position:",e)}return null})()),I(!0),y&&S(!1),null==h||h(),E(!0);let e=D.src;D.src=(0,c.Z)(e)}},setReloading:e=>{I(e),e?null==h||h():null==v||v()},setReady:e=>{S(e),e&&(E(!1),null==f||f(),T&&!(0,d.isNull)(P)&&!0===b&&setTimeout(()=>{if(!(0,d.isNull)(P)){var e;if(!(0,d.isNull)(D)&&!0===b)try{let t=D.contentDocument??(null==(e=D.contentWindow)?void 0:e.document);(0,d.isNil)(t)||(t.documentElement.scrollLeft=P.x,t.documentElement.scrollTop=P.y,t.body.scrollLeft=P.x,t.body.scrollTop=P.y)}catch(e){console.warn("Could not restore iframe scroll position:",e)}A(null)}},0),T&&(I(!1),null==v||v()))},getIframeElement:()=>D,getElementRef:()=>({current:D})}),[D,h,v,f,T,y,P,b]);let M=y?!C||T:!j||T,O=p??m??$("please-wait");return(0,r.jsxs)(a.s,{align:"center",className:F.iframeContainer,justify:"center",children:[M&&(0,r.jsx)("div",{className:F.loadingOverlay,children:(0,r.jsx)(l.t,{asContainer:!0,size:"large",tip:O})}),(0,r.jsx)("iframe",{className:F.iframe,onLoad:()=>{null==g||g(),E(!1),!y&&(w(!0),T&&(I(!1),null==v||v()))},ref:e=>{N(e)},src:i,title:u,...x})]})});u.displayName="Iframe"},44829(e,t,i){"use strict";i.d(t,{n:()=>s});var r=i(74848);i(47867);var n=i(99154),l=i(81898),a=i(27994);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{dotsButton:i` - position: absolute !important; - top: ${t.paddingXXS}px; - right: ${t.paddingXXS}px; - .ant-btn-icon { - display: flex; - } - `}}),s=e=>{let{styles:t}=o();return void 0===e.dropdownItems||0===e.dropdownItems.length?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(n.m,{menu:{items:e.dropdownItems},placement:"bottomLeft",trigger:["click"],children:(0,r.jsx)(a.$,{className:t.dotsButton,icon:(0,r.jsx)(l.I,{className:"dropdown-menu__icon",value:"more"}),onClick:e=>{e.stopPropagation(),e.preventDefault()},size:"small"})})}},9199(e,t,i){"use strict";i.d(t,{n:()=>C.n,k:()=>S});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{imagePreviewContainer:i` - display: flex; - justify-content: center; - align-items: center; - max-width: 100%; - position: relative; - - .ant-image { - height: 100%; - width: 100%; - - .ant-image-img { - width: 100%; - height: 100%; - object-fit: contain; - } - } - - &.image-preview-bordered { - outline: 1px solid ${t.colorBorderSecondary}; - border-radius: ${t.borderRadius}px; - .ant-image-img { - border-radius: ${t.borderRadius}px; - } - } - - `,hotspotButton:i` - position: absolute; - top: ${t.paddingXXS}px; - left: ${t.paddingXXS}px; - // todo: remove this when loading animation in button is fixed - & > div { - display:none; - } - `}});var o=i(8651),s=i.n(o),d=i(83499),c=i(94788),u=i(44829),p=i(81898),m=i(27994),g=i(7814),h=i(21429),v=i(78354),f=i(35864),y=i(82740),b=i(99154),x=i(86569),j=i(13755),w=i(25750),C=i(70880);let S=(0,n.forwardRef)(function(e,t){let{src:i,assetId:o,assetType:C,width:S,height:T,className:I,style:k,dropdownItems:E,bordered:D=!1,onHotspotsDataButtonClick:N,thumbnailSettings:P,imgAttributes:A}=e,{getStateClasses:F}=(0,c.z)(),{styles:$}=a(),{t:M}=(0,h.useTranslation)(),[O,_]=(0,n.useState)(0),[L,R]=(0,n.useState)({width:0,height:0}),B=l().useRef(null),z=(0,n.useMemo)(()=>{if(void 0===o)return i;let e={frame:!1,...P};return(e=>{let{assetId:t,assetType:i,width:r,height:n,thumbnailSettings:l}=e;if(0===r)return;let a=Math.round(r),o=(0,f.isNil)(n)?void 0:Math.round(n);if("video"===i)return(0,v.s)({assetId:t,assetType:"video",width:a,height:o,aspectRatio:!0,frame:!0})??void 0;let s={width:a,frame:!0};return(0,f.isNil)(n)||(s.height=o),(0,v.s)({assetId:t,assetType:"image",...s,...l})??void 0})({assetId:o,assetType:C,width:L.width,height:L.height,thumbnailSettings:e})},[o,i,L,C,P]),V=(0,y.A)(B);(0,n.useEffect)(()=>{V&&(null==B?void 0:B.current)!==null&&(null==B?void 0:B.current)!==void 0&&R({width:B.current.offsetWidth,height:B.current.offsetHeight})},[V]),(0,n.useEffect)(()=>{_(O+1)},[z]);let G=(0,r.jsx)(w.s,{align:"center",className:"w-full h-full",justify:"center",children:(0,r.jsx)(j.t,{size:"small"})});return(0,r.jsx)(b.m,{disabled:(0,f.isNil)(E)||0===E.length,menu:{items:E},trigger:["contextMenu"],children:(0,r.jsx)("div",{ref:t,children:(0,r.jsxs)("div",{className:s()(I,$.imagePreviewContainer,D?"image-preview-bordered":void 0,...F()),ref:B,style:{...k,height:(0,d.x)(T),width:(0,d.x)(S)},children:[void 0!==z&&(0,r.jsx)(x.Image,{className:"w-full",fallback:"/bundles/pimcorestudioui/img/fallback-image.svg",placeholder:G,preview:!1,src:z,...A},O),(0,r.jsx)(u.n,{dropdownItems:E}),void 0!==N&&(0,r.jsx)(g.m,{className:$.hotspotButton,title:M("hotspots.has-hotspots-or-marker"),children:(0,r.jsx)(m.$,{className:$.hotspotButton,icon:(0,r.jsx)(p.I,{value:"location-marker"}),onClick:N,size:"small"})})]})})})})},94447(e,t,i){"use strict";i.d(t,{P:()=>p});var r=i(74848),n=i(47867),l=i(21429),a=i(86569),o=i(35864),s=i(81898),d=i(1993),c=i(93233);let u=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{imageZoomContainer:i` - display: flex; - gap: 5px - `,imageZoom:i` - .ant-select { - min-width: 70px; - text-align: center; - - .ant-select-selector { - border: 1px solid ${t.Button.defaultBorderColor}; - - .ant-select-selection-item { - padding-inline-end: unset; - } - } - - .ant-select-arrow { - display: none; - } - } - `,imageZoomBtn:i` - border: 1px solid ${t.Button.defaultBorderColor}; - box-shadow: none !important; - width: ${t.controlHeight}px; - height: ${t.controlHeight}px; - padding: 0; - display: flex; - justify-content: center; - align-items: center; - - .pimcore-icon { - display: flex; - } - - &:disabled { - background: ${t.colorBgContainer}; - } - `,imageZoomResetBtn:i` - border: 1px solid ${t.Button.defaultBorderColor}; - box-shadow: none !important; - width: auto; - height: ${t.controlHeight}px; - `}}),p=e=>{let{zoom:t,setZoom:i,zoomSteps:p=25}=e,[m,g]=(0,n.useState)(!1),[h,v]=(0,n.useState)(!1),f=(0,n.useRef)(null),{styles:y}=u({zoom:t}),{t:b}=(0,l.useTranslation)();return(0,n.useEffect)(()=>{t>=500&&g(!0),m&&t<500&&g(!1),t<=25&&v(!0),h&&t>25&&v(!1)},[t]),(0,r.jsxs)("div",{className:y.imageZoomContainer,children:[100!==t&&(0,r.jsx)(a.Button,{"aria-label":b("aria.asset.image.editor.zoom.reset"),className:y.imageZoomResetBtn,onClick:()=>{i(100)},onKeyDown:c.Kb,children:b("asset.image.editor.zoom.reset")}),(0,r.jsxs)(a.Space.Compact,{className:y.imageZoom,children:[(0,r.jsx)(a.Button,{"aria-disabled":h,"aria-label":b("aria.asset.image.editor.zoom.zoom-out"),className:y.imageZoomBtn,disabled:h,onClick:()=>{i(t-p)},onKeyDown:c.Kb,children:(0,r.jsx)(s.I,{value:"minus"})}),(0,r.jsx)(d.l,{"aria-label":b("aria.asset.image.editor.zoom.preconfigured-zoom-levels"),defaultActiveFirstOption:!0,defaultValue:"100",onChange:e=>{i(parseInt(e)),(0,o.isNull)(f.current)||f.current.blur()},options:[{value:"100",label:"100%"},{value:"125",label:"125%"},{value:"150",label:"150%"},{value:"175",label:"175%"},{value:"200",label:"200%"},{value:"225",label:"225%"},{value:"250",label:"250%"}],ref:f,value:`${t}%`}),(0,r.jsx)(a.Button,{"aria-disabled":m,"aria-label":b("aria.asset.image.editor.zoom.zoom-in"),className:y.imageZoomBtn,disabled:m,onClick:()=>{i(t+p)},onKeyDown:c.Kb,children:(0,r.jsx)(s.I,{value:"new"})})]})]})}},82226(e,t,i){"use strict";i.d(t,{_:()=>l});var r=i(74848);i(47867);var n=i(86569);let l=e=>(0,r.jsx)(n.Image,{...e})},4839(e,t,i){"use strict";i.d(t,{z:()=>w});var r=i(74848),n=i(47867),l=i(43588),a=i(21429),o=i(35864),s=i(59446),d=i(92203),c=i(73039),u=i(88909),p=i(55638),m=i(86569),g=i(81898),h=i(25750),v=i(44241);let f=(0,v.createStyles)(e=>{let{token:t,css:i}=e;return{importTargetTitle:i` - text-align: center; - color: ${t.colorTextSecondary}; - `,iconContainer:i` - color: ${t.colorIcon}; - `}}),{Dragger:y}=m.Upload,b=e=>{let{uploadProps:t,dragDropLabel:i}=e,{t:n}=(0,a.useTranslation)(),{styles:l}=f();return(0,r.jsx)(y,{...t,children:(0,r.jsxs)(h.s,{align:"center",gap:"mini",justify:"center",style:{padding:"20px"},vertical:!0,children:[(0,r.jsx)("div",{className:l.iconContainer,children:(0,r.jsxs)(h.s,{align:"center",gap:"mini",justify:"center",children:[(0,r.jsx)(g.I,{options:{height:20,width:20},value:"new"}),(0,r.jsx)(g.I,{options:{height:20,width:20},value:"drop-target"})]})}),(0,r.jsx)("div",{className:l.importTargetTitle,children:i??n("import-modal.drag-drop")})]})})},x=(0,v.createStyles)(e=>{let{token:t,css:i}=e;return{uploadedFile:i` - width: 100%; - `,fileName:i` - font-weight: ${t.fontWeightStrong}; - `,fileSize:i` - color: ${t.colorTextSecondary}; - font-size: ${t.fontSizeSM}px; - `}}),j=e=>{let{file:t,loading:i,isUploading:n,uploadStatus:a,uploadProgress:o,onRemove:s}=e,{styles:d}=x();return(0,r.jsx)("div",{className:d.uploadedFile,children:(0,r.jsxs)(l.Flex,{align:"start",gap:10,vertical:!0,children:[(0,r.jsxs)(l.Flex,{align:"start",gap:10,children:[(0,r.jsx)(l.Flex,{children:(0,r.jsxs)("div",{children:[(0,r.jsx)("div",{className:d.fileName,children:t.name}),(0,r.jsx)("div",{className:d.fileSize,children:(0,c.M)(t.size)})]})}),!i&&!n&&"success"!==a&&(0,r.jsx)(l.IconButton,{icon:{value:"close"},iconPosition:"start",onClick:s,type:"link",variant:"minimal"})]}),n&&(0,r.jsx)(l.Progress,{percent:o,size:"small",status:a})]})})},w=e=>{let{action:t,open:i,onOpenChange:m,title:g,uploadButtonLabel:h,browseButtonLabel:v,dragDropLabel:f,accept:y,acceptMimeTypes:x,validateFile:w,onValidationError:C,maxFileSize:S,headers:T,data:I,onUploadSuccess:k,onUploadError:E,showSuccessMessage:D=!0,successMessage:N,children:P}=e,{t:A}=(0,a.useTranslation)(),[F,$]=(0,n.useState)(!1),[M,O]=(0,n.useState)(null),_=(0,n.useRef)(null),L=(0,l.useMessage)(),R=(e=>{let{accept:t,acceptMimeTypes:i,maxFileSize:r}=e,{t:l}=(0,a.useTranslation)(),u=(0,s.t)(),p=(0,d.Z)();return(0,n.useCallback)(e=>{if(!(0,o.isNil)(t)&&!t.split(",").some(t=>e.name.toLowerCase().endsWith(t.trim().toLowerCase()))||!(0,o.isNil)(i)&&!i.some(t=>e.type===t))return!1;if(!(0,o.isNil)(r)&&e.size>r)return p.error({title:"error",content:l("upload.error.max-file-size-exceeded",{maxSize:(0,c.M)(r)})}),!1;let n=u.upload_max_filesize;return!!(0,o.isNil)(n)||!(e.size>n)||(p.error({title:"error",content:l("upload.error.file-too-large")}),!1)},[t,i,r,u.upload_max_filesize])})({accept:y,acceptMimeTypes:x,maxFileSize:S}),{uploadProgress:B,uploadStatus:z,loading:V,isUploading:G,upload:U,resetUploadState:q}=(e=>{let{action:t,headers:i,data:r,onUploadSuccess:l,onUploadError:a}=e,[s,d]=(0,n.useState)(0),[c,m]=(0,n.useState)("normal"),[g,h]=(0,n.useState)(!1),v=(0,n.useCallback)(()=>{d(0),m("normal"),h(!1)},[]);return{uploadProgress:s,uploadStatus:c,loading:g,isUploading:"active"===c,upload:(0,n.useCallback)(async e=>{h(!0),m("active"),d(0);let n=new FormData;n.append("file",e),(0,o.isNil)(r)||Object.keys(r).forEach(e=>{let t=r[e];n.append(e,String(t))});try{let r=await u.A.post(t,n,{headers:{"Content-Type":"multipart/form-data",...i},onUploadProgress:e=>{if(!(0,o.isNil)(e.total)){let t=Math.round(100*e.loaded/e.total);d(t)}}});m("success"),h(!1),(0,o.isNil)(l)||l(r.data,e)}catch(t){throw m("exception"),h(!1),(0,o.isNil)(a)||a(t instanceof Error?t:Error(String(t)),e),(0,o.isNil)(t.response)?console.error("Upload error:",t):(0,p.Ay)(new p.hD({data:t.response.data})),t}},[t,i,r,l,a]),resetUploadState:v}})({action:t,headers:T,data:I,onUploadSuccess:k,onUploadError:E}),W=!(0,o.isNil)(i),K=W?i:F,H=e=>{W?null==m||m(e):$(e)},X=()=>{O(null),q(),(0,o.isNil)(_.current)||(_.current.value="")};(0,n.useEffect)(()=>{K&&(O(null),q(),(0,o.isNil)(_.current)||(_.current.value=""))},[K,q]);let J=async()=>{if(!(0,o.isNil)(M))try{await U(M),D&&L.success(N??A("upload.success")),Z()}catch{}},Z=()=>{X(),H(!1)},Y=()=>{H(!0)},Q=e=>{((0,o.isNil)(w)?R(e):w(e))?O(e):(0,o.isNil)(C)||C(e)};return(0,r.jsxs)(r.Fragment,{children:[!(0,o.isNil)(P)&&(0,r.jsx)("div",{"aria-label":g??A("import-modal.title"),onClick:Y,onKeyDown:e=>{("Enter"===e.key||" "===e.key)&&Y()},role:"button",style:{display:"contents"},tabIndex:0,children:P}),(0,r.jsxs)(l.Modal,{footer:(0,r.jsxs)(l.ModalFooter,{divider:!0,justify:(0,o.isNil)(M)?"space-between":"end",children:[(0,o.isNil)(M)&&(0,r.jsx)(l.IconTextButton,{disabled:V||G,icon:{value:"upload-import"},onClick:()=>{var e;null==(e=_.current)||e.click()},children:v??A("import-modal.browse-files")}),(0,r.jsx)(l.Button,{disabled:(0,o.isNil)(M)||V||G,loading:V||G,onClick:J,type:"primary",children:h??A("import-modal.upload")})]}),maskClosable:!1,onCancel:Z,open:K,size:"M",title:g??A("import-modal.title"),children:[(0,r.jsx)("input",{accept:y,"aria-label":v??A("import-modal.browse-files"),disabled:V||G,onChange:e=>{var t;let i=null==(t=e.target.files)?void 0:t[0];(0,o.isNil)(i)||Q(i)},ref:_,style:{display:"none"},type:"file"}),(0,o.isNil)(M)?(0,r.jsx)(b,{dragDropLabel:f,uploadProps:{name:"file",multiple:!1,accept:y,beforeUpload:e=>(Q(e),!1),showUploadList:!1,disabled:V||G}}):(0,r.jsx)(j,{file:M,isUploading:G,loading:V,onRemove:X,uploadProgress:B,uploadStatus:z})]})]})}},76066(e,t,i){"use strict";i.d(t,{x:()=>o});var r=i(74848);i(47867);var n=i(85458),l=i(8651),a=i.n(l);let o=e=>{let t=(0,n.n)(e);if(void 0===t)return(0,r.jsx)(r.Fragment,{});let i=a()("inheritance-overlay",t,e.className);return(0,r.jsx)("span",{className:i,children:e.children})}},71141(e,t,i){"use strict";i.d(t,{Y:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(8651),a=i.n(l);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{inputNumber:i` - width: 100%; - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - } - `,inherited:i` - background: ${t.colorBgContainerDisabled}; - color: ${t.colorTextDisabled}; - &:focus-within, &:hover { - background: ${t.colorBgContainerDisabled}; - } - `}});var s=i(52112);let d=e=>{let{inherited:t,className:i,style:l,...d}=e,{styles:c}=o(),u=(0,s.q)(),p={maxWidth:null==u?void 0:u.small,...l};return(0,r.jsx)(n.InputNumber,{className:a()(c.inputNumber,i,{[c.inherited]:t}),style:p,...d})}},84834(e,t,i){"use strict";i.d(t,{c:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(8651),a=i.n(l);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{input:i` - &.ant-input-disabled { - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - } - } - `,inherited:i` - background: ${t.colorBgContainerDisabled}; - color: ${t.colorTextDisabled}; - &:focus-within, &:hover { - background: ${t.colorBgContainerDisabled}; - } - `}});var s=i(52112);let d=e=>{let{inherited:t,className:i,style:l,...d}=e,{styles:c}=o(),u=(0,s.q)(),p={maxWidth:null==u?void 0:u.medium,...l};return(0,r.jsx)(n.Input.Password,{className:a()(c.input,i,{[c.inherited]:t}),style:p,...d})}},80632(e,t,i){"use strict";i.d(t,{p:()=>u});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569),o=i(8651),s=i.n(o);let d=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{input:i` - &.ant-input-disabled { - &.versionFieldItem { - color: ${t.colorText} !important; - border-color: transparent !important; - } - - &.versionFieldItemHighlight { - border-color: ${t.colorBorder} !important; - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - } - } - `,inherited:i` - background: ${t.colorBgContainerDisabled}; - color: ${t.colorTextDisabled}; - &:focus-within, &:hover { - background: ${t.colorBgContainerDisabled}; - } - `}});var c=i(52112);let u=l().forwardRef(function(e,t){let{inherited:i,disabled:n,noteditable:l,className:o,style:u,...p}=e,{styles:m}=d(),g=(0,c.q)(),h={maxWidth:null==g?void 0:g.large,...u};return(0,r.jsx)(a.Input,{className:s()(m.input,o,{[m.inherited]:i}),ref:t,style:h,...p,disabled:!0===n||l})})},34323(e,t,i){"use strict";i.d(t,{c:()=>o});var r=i(74848),n=i(68901);i(47867);var l=i(10014),a=i(61549);let o=()=>{let e=(0,a.J)(),{currentLanguage:t,setCurrentLanguage:i}=(0,l.S)();return(0,r.jsx)(n.v,{languages:[...Array.isArray(e.contentLanguages)?e.contentLanguages:[]],onSelectLanguage:i,selectedLanguage:t})}},68901(e,t,i){"use strict";i.d(t,{z:()=>c,v:()=>u});var r=i(74848),n=i(27994),l=i(47867),a=i(81898);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{languageSelect:i` - display: flex; - gap: 2px; - align-items: center; - justify-content: center; - height: 32px; - - button { - width: 20px; - height: 20px; - color: ${t.colorText}; - padding: 2px; - } - - .language-select__current-value { - display: flex; - align-items: center; - justify-content: center; - text-transform: uppercase; - gap: 4px; - } - `}});var s=i(32930),d=i(21429);let c=e=>"-"===e?null:e,u=e=>{let{languages:t,customKeys:i=[],selectedLanguage:u,onSelectLanguage:p}=e,{styles:m}=o(),[g,h]=(0,l.useState)(u),{t:v}=(0,d.useTranslation)();return(0,l.useEffect)(()=>{h(u)},[u]),(0,r.jsxs)("div",{className:["language-select",m.languageSelect].join(" "),children:[(0,r.jsx)(n.$,{onClick:function(e){e.stopPropagation();let i=t.indexOf(g),r=0===i?t.length-1:i-1;(function(e){h(e),p(e)})(t[r])},type:"link",children:(0,r.jsx)(a.I,{options:{width:18,height:18},value:"chevron-left"})}),(0,r.jsxs)("div",{className:"language-select__current-value",children:["-"===g&&(0,r.jsx)(a.I,{options:{width:18,height:18},value:"minus"}),i.includes(g)&&(0,r.jsx)("span",{children:v(`custom-language.${g}`)}),"-"!==g&&!i.includes(g)&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(s.i,{value:c(g)}),(0,r.jsx)("span",{children:g})]})]}),(0,r.jsx)(n.$,{onClick:function(e){e.stopPropagation();let i=t.indexOf(g),r=i===t.length-1?0:i+1;(function(e){h(e),p(e)})(t[r])},type:"link",children:(0,r.jsx)(a.I,{options:{width:18,height:18},value:"chevron-right"})})]})}},34210(e,t,i){"use strict";i.d(t,{q:()=>c,E:()=>u});var r=i(74848),n=i(7334),l=i(47867),a=i(61549),o=i(33142);let s=e=>{var t,i,s,d;let{children:u}=e,p=(0,a.J)(),m=(null==(t=p.contentLanguages)?void 0:t[0])??"en",g=(0,n.J)(),h=(0,o.D)(g.id,g.elementType);if("permissions"in h){let e=h.permissions,t=(null==e||null==(i=e.localizedView)?void 0:i.split(","))??[];m=1===t.length&&"default"===t[0]||0===t.length?(null==(s=p.contentLanguages)?void 0:s[0])??"en":((null==(d=p.contentLanguages)?void 0:d.filter(e=>t.includes(e)))??[])[0]??"en"}let[v,f]=(0,l.useState)(m),[y,b]=(0,l.useState)(!1);return(0,l.useMemo)(()=>(0,r.jsx)(c.Provider,{value:{currentLanguage:v,setCurrentLanguage:f,setHasLocalizedFields:b,hasLocalizedFields:y},children:u}),[v,y,u])},d=e=>{var t;let{children:i}=e,n=(null==(t=(0,a.J)().contentLanguages)?void 0:t[0])??"en",[o,s]=(0,l.useState)(n),[d,u]=(0,l.useState)(!1);return(0,l.useMemo)(()=>(0,r.jsx)(c.Provider,{value:{currentLanguage:o,setCurrentLanguage:s,setHasLocalizedFields:u,hasLocalizedFields:d},children:i}),[o,d,i])},c=(0,l.createContext)({currentLanguage:"en",setCurrentLanguage:()=>{},hasLocalizedFields:!1,setHasLocalizedFields:()=>{}}),u=e=>{let{children:t}=e;return null!==(0,n.L)()?(0,r.jsx)(s,{children:t}):(0,r.jsx)(d,{children:t})}},10014(e,t,i){"use strict";i.d(t,{S:()=>l});var r=i(47867),n=i(34210);let l=()=>({...(0,r.useContext)(n.q)})},59451(e,t,i){"use strict";i.d(t,{g:()=>o});var r=i(74848);i(47867);let n=e=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,r.jsx)("path",{fill:"currentColor",d:"M19 7c-1.7 0-3.2.8-4.2 2.2l-3.7 5.5C10.2 16.2 8.7 17 7 17c-2.8 0-5-2.2-5-5s2.2-5 5-5c1.7 0 3.2.8 4.2 2.2l.6 1L13 8.4l-.2-.3C11.5 6.2 9.3 5 7 5c-3.9 0-7 3.1-7 7s3.1 7 7 7c2.3 0 4.5-1.2 5.8-3.1l1.4-2.1.6 1c.9 1.4 2.5 2.2 4.2 2.2 2.8 0 5-2.2 5-5s-2.2-5-5-5m0 8c-1 0-1.9-.5-2.5-1.3L15.4 12l1.1-1.6C17 9.5 18 9 19 9c1.7 0 3 1.3 3 3s-1.3 3-3 3"})}),l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{logo:i` - padding: 4px 0 4px 0; - height: 32px; - width: 40px; - color: var(--pimcore-brand-color, ${t.colorLogo??"#5520A6"}); - `}},{hashPriority:"low"});var a=i(25750);let o=()=>{let{styles:e}=l();return(0,r.jsx)(a.s,{align:"center",className:["logo",e.logo].join(" "),justify:"center",style:{display:"inline-flex"},children:(0,r.jsx)(n,{height:24,width:24})})}},80578(e,t,i){"use strict";i.d(t,{v:()=>o});var r=i(74848);i(47867);var n=i(86569),l=i(73062),a=i(66514);let o=e=>(0,r.jsxs)(n.Flex,{align:"center",className:"p-mini",children:[(0,r.jsx)(l.h,{html:e.getValue()??""}),!1!==e.row.original.loading?(0,r.jsx)(a.A,{style:{marginLeft:8}}):null]})},98053(e,t,i){"use strict";i.d(t,{h:()=>g});var r=i(74848);i(47867);var n=i(35864),l=i(20597),a=i(30856),o=i(87632),s=i(81674),d=i(94685),c=i(72636),u=i(62142),p=i(82056),m=i(23945);let g=e=>{let{styles:t}=(0,p.I)(),{mapToLegacyElementType:i}=(0,m.useElementHelper)(),g={selectionType:c.hO.Single,areas:(0,a.M3)(e),config:(0,a.gF)(e),onFinish:t=>{if(!(0,n.isEmpty)(t.items)){var r;null==(r=e.onChange)||r.call(e,{type:i(String(t.items[0].elementType)),subtype:t.items[0].data.type,id:t.items[0].data.id,fullPath:t.items[0].data.fullpath})}}},{open:h}=(0,d.L)(g);return(0,r.jsx)("div",{className:t.droppableWrapper,children:(0,r.jsx)(l.g,{isValidContext:t=>!0!==e.disabled&&(0,o.Hy)(t.type),isValidData:t=>(0,a.hu)(t,e),onDrop:t=>{var i;let r=(0,s.ME)(t);null==(i=e.onChange)||i.call(e,r??null)},children:(0,r.jsx)(u.x,{...e,onSearch:!0===e.enableSearch?()=>{!0!==e.disabled&&h()}:void 0})})})}},82056(e,t,i){"use strict";i.d(t,{I:()=>r});let r=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - &.versionFieldItem { - .ant-input-disabled { - color: ${t.colorText} !important; - border: 1px solid transparent !important; - } - } - - &.versionFieldItemHighlight { - .ant-input-disabled { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${t.colorBorder} !important; - } - } - `,droppableWrapper:i` - display: flex; - flex: 1; - overflow: hidden; - - > * { - width: 100%; - } - - .ant-input-prefix { - width: 100%; - } - - .ant-input-group { - display: flex; - width: 100%; - } - - .ant-input-group > .ant-input-affix-wrapper { - display: flex; - flex: 1 1 auto; - min-width: 0; - width: auto; - } - - .ant-input-group > .ant-input-group-addon { - display: flex; - flex: 0 0 auto; - width: auto; - } - `}})},16014(e,t,i){"use strict";i.d(t,{P:()=>w});var r=i(74848);i(47867);var n=i(21429),l=i(86569),a=i(35864),o=i(8651),s=i.n(o),d=i(25750),c=i(29740),u=i(89114),p=i(52112),m=i(30856),g=i(87632),h=i(60583),v=i(56789),f=i(83499),y=i(92493),b=i(98053),x=i(82056),j=i(72636);let w=e=>{var t;let{value:i,handleChange:o}=(0,y.P)(e.value??null,e.onChange),{openElement:w,mapToElementType:C}=(0,v.K)(),{download:S}=(0,u.m)(),T=(0,p.C)(),{t:I}=(0,n.useTranslation)(),{styles:k}=(0,x.I)(),E=!0!==e.disabled&&!0!==e.readOnly,{hideOpenButton:D,...N}=e;return(0,r.jsxs)(d.s,{className:s()(k.container,e.className),gap:"extra-small",style:{maxWidth:(0,f.x)(e.width,T.large)},vertical:e.vertical,children:[(0,r.jsx)(b.h,{...N,onChange:o,value:i}),(0,r.jsxs)(d.s,{gap:"extra-small",justify:!0===e.vertical?"start":void 0,children:[!0!==e.hideOpenButton&&(!0!==e.allowPathTextInput||!0===e.showOpenForTextInput)&&!(0,a.isNull)(i)&&(0,r.jsx)(l.Tooltip,{title:I("open"),children:(0,r.jsx)(c.K,{icon:{value:"open-folder"},onClick:()=>{if(null!==i){var t;if(!0===i.textInput)window.open(i.fullPath,"_blank","noopener,noreferrer");else{let e=C(i.type,!0);(0,a.isUndefined)(e)||w({type:e,id:i.id}).catch(()=>{})}null==(t=e.onOpenElement)||t.call(e)}},style:{flex:"0 0 auto"},type:"default"})},"open"),!0===e.assetInlineDownloadAllowed&&(null==i?void 0:i.textInput)!==!0&&(0,r.jsx)(l.Tooltip,{title:I("download"),children:(0,r.jsx)(c.K,{disabled:(null==i?void 0:i.type)!=="asset"||(null==i?void 0:i.subtype)==="folder",icon:{value:"download"},onClick:()=>{S(String(null==i?void 0:i.id))},type:"default"})},"download"),!0===e.allowToClearRelation&&!((0,a.isNull)(i)||!0===e.disabled)&&(0,r.jsx)(l.Tooltip,{title:I("empty"),children:(0,r.jsx)(c.K,{icon:{value:"trash"},onClick:()=>{o(null)},type:"default"})},"empty"),E&&(0,r.jsx)(h.Q,{elementSelectorConfig:{selectionType:j.hO.Single,areas:(0,m.M3)(e),config:(0,m.gF)(e),onFinish:e=>{(0,a.isEmpty)(e.items)||o({type:(0,g.FA)(e.items[0].elementType),subtype:e.items[0].data.type,id:e.items[0].data.id,fullPath:e.items[0].data.fullpath})}},type:"default"}),null==(t=e.additionalButtons)?void 0:t.call(e,i)]})]})}},62142(e,t,i){"use strict";i.d(t,{x:()=>x});var r=i(74848),n=i(66514),l=i(94788),a=i(67104),o=i(80632),s=i(73062),d=i(67914),c=i(64724),u=i(20761),p=i(56789),m=i(92493),g=i(18196),h=i(86569),v=i(35864),f=i(47867),y=i(21429);let b=(0,i(44241).createStyles)((e,t)=>{let i,{token:r,css:n}=e,{isDragActive:l,isOver:a,isValid:o,hasSearch:s}=t;return{input:(i=s?"& .ant-input-affix-wrapper":"&",a&&!o?n` - ${i} { - background: ${r.colorErrorBg}; - border: 1px dashed ${r.colorErrorActive}; - } - `:a&&o?n` - ${i} { - background: ${r.colorBgTextActive}; - border: 1px dashed ${r.colorInfoBorderHover}; - } - `:l?n` - ${i} { - background: ${r.colorBgContainerDisabled}; - border: 1px dashed ${r.colorBorder}; - } - `:n``)}}),x=(0,f.forwardRef)(function(e,t){var i;let x,{t:j}=(0,y.useTranslation)(),{value:w,handleChange:C}=(0,m.P)(e.value??null,e.onChange),{isDragActive:S,isOver:T,isValid:I}=(0,l.z)(),{styles:k}=b({isDragActive:S,isOver:T,isValid:I,hasSearch:void 0!==e.onSearch}),{mapToElementType:E}=(0,p.K)(),{formatPath:D}=(0,u.G)(),{id:N}=(0,c.n)(),[P,A]=(0,f.useState)(String((null==(i=e.value)?void 0:i.fullPath)??"")),[F,$]=(0,f.useState)(!1),M=(0,g.uI)(e.pathFormatterClass);(0,f.useEffect)(()=>{var t;let i=(null==(t=e.value)?void 0:t.fullPath)??"";A(i),M&&null!==e.value&&void 0!==e.combinedFieldName&&null!=N&&($(!0),D([e.value],e.combinedFieldName,N).then(t=>{var r,n;void 0===t?$(!1):(A(String((null==(r=(n=[e.value],n.map(e=>{var i;return{...e,fullPath:String((null==(i=t.items.find(t=>String(t.objectReference)===`${e.type}_${e.id}`))?void 0:i.formatedPath)??e.fullPath)}}))[0])?void 0:r.fullPath)??i)),$(!1))}).catch(e=>{console.error(e),$(!1)}))},[e.value]);let O=(()=>{if(!(0,v.isNil)(w))return!0===w.textInput?w.fullPath??"":w.fullPath??String(w.id)})(),_=(null==w?void 0:w.textInput)!==!0&&!(0,v.isNil)(null==w?void 0:w.fullPath),L=!0!==e.allowPathTextInput&&_,R=!0===e.allowPathTextInput&&_,B=M?P:String((null==w?void 0:w.fullPath)??"");L&&(x=M?F?(0,r.jsx)(n.A,{}):(0,r.jsx)(s.h,{html:P}):(0,r.jsx)(a.F,{disabled:!0===e.disabled||!0===e.inherited,elementType:E(w.type,!0),id:w.id,onClose:!0===e.allowElementTagClose?()=>{C(null)}:void 0,path:B,published:w.isPublished??void 0}));let z=(0,v.isUndefined)(e.onSearch)?o.p:d.D,V=(0,v.isUndefined)(e.onSearch)?{}:{onSearch:e.onSearch,searchButtonIcon:"folder-search",maxWidth:"100%"};return(0,r.jsx)("div",{ref:t,style:{flexGrow:1},children:R?(0,r.jsx)(h.Flex,{align:"center",children:(0,r.jsx)(z,{className:k.input,disabled:e.disabled,inherited:e.inherited,prefix:(0,r.jsx)(a.F,{disabled:!0===e.disabled||!0===e.inherited,elementType:E(w.type,!0),id:w.id,inline:!0,onClose:()=>{C(null)},path:B,published:w.isPublished??void 0}),readOnly:!0,...V})}):(0,r.jsx)(z,{className:k.input,disabled:e.disabled,inherited:e.inherited,onChange:e=>{C({textInput:!0,fullPath:e.currentTarget.value})},placeholder:L?void 0:j(!0===e.allowPathTextInput?"many-to-one-relation.drop-placeholder-text-input":"many-to-one-relation.drop-placeholder"),prefix:x,readOnly:!0!==e.allowPathTextInput,value:L?void 0:O,...V})})})},75512(e,t,i){"use strict";i.d(t,{D:()=>b});var r,n,l,a=i(74848);i(47867);let o=e=>{let{component:t}=e;return(0,a.jsx)(a.Fragment,{children:t})};var s=i(86569);let d=e=>(0,a.jsx)(s.Menu.Divider,{...e});var c=i(44241);let u=(0,c.createStyles)(e=>{let{token:t,css:i}=e;return{groupItem:i` - .ant-dropdown-menu-item-group-list { - margin: 0 !important; - } - `}}),p=(r=s.Menu.ItemGroup,e=>{let{children:t,label:i,...n}=e,{styles:l}=u();return(0,a.jsx)(r,{title:i,...n,className:l.groupItem,children:null==t?void 0:t.map(e=>b({item:e}))})});var m=i(32396),g=i(20104);let h=(n=s.Menu.SubMenu,e=>{let{children:t,popupOffset:i,label:r,itemKey:l,popupClassName:o,...s}=e,{styles:d,cx:c}=(0,g.I)(),u=null!=l?(0,m.Jk)(String(l)):void 0;return(0,a.jsx)(n,{"data-testid":u,popupClassName:c(d.submenuPopup,o),title:r,...s,children:null==t?void 0:t.map(e=>b({item:e}))})}),v=(0,c.createStyles)(e=>{let{token:t,css:i}=e;return{dropdownItem:i` - display: flex; - align-items: center; - - .ant-dropdown-menu-title-content { - display: flex; - gap: ${t.marginXS}px; - } - - &.ant-dropdown-menu-item-active { - background-color: ${t.colorBgContainer} !important; - - &:hover { - background-color: rgba(0, 0, 0, 0.04) !important; - } - } - - &.default-item--with-icon-right { - padding-right: 4px !important; - } - `}});var f=i(13755);let y=(l=s.Menu.Item,e=>{let{label:t,key:i,selectable:r,id:n,icon:o,itemKey:s,...d}=e,{styles:c}=v(),u=[c.dropdownItem];u.push("is-custom-item");let p=null!=s?(0,m.Jk)(String(s)):void 0;return(0,a.jsxs)(l,{"data-testid":p,id:i,...d,className:u.join(" "),children:[!0===d.isLoading&&(0,a.jsx)(f.t,{tip:"Loading",type:"classic"}),o,(0,a.jsx)("span",{children:t}),void 0!==d.extra&&(0,a.jsx)(a.Fragment,{children:d.extra})]})}),b=e=>{let{item:t}=e;return null===t?(0,a.jsx)(a.Fragment,{}):"type"in t&&"divider"===t.type?(0,a.jsx)(d,{...t}):"type"in t&&"group"===t.type?(0,a.jsx)(p,{...t}):"type"in t&&"custom"===t.type?(0,a.jsx)(o,{...t}):!("type"in t)&&"children"in t?(0,a.jsx)(h,{...t,itemKey:t.key}):"type"in t||"children"in t?(0,a.jsx)(a.Fragment,{}):(0,a.jsx)(y,{...t,id:t.key,itemKey:t.key})}},20104(e,t,i){"use strict";i.d(t,{I:()=>r});let r=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e,r=i` - .ant-dropdown-menu-submenu-title, - .ant-dropdown-menu-title-content { - align-items: center; - } - .ant-dropdown-menu-submenu-title { - padding-inline-end: ${t.paddingXL}px !important; - } - - .ant-dropdown-menu-submenu-expand-icon { - inset-inline-end: ${t.paddingXS}px !important; - position: absolute !important; - } - `;return{menu:r,submenuPopup:r}})},42382(e,t,i){"use strict";i.d(t,{W:()=>m});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569),o=i(75512),s=i(70600),d=i(8651),c=i.n(d),u=i(43588),p=i(20104);let m=l().forwardRef((e,t)=>{var i;let{dataTestId:n,...l}=e,d=(0,s.AS)(),{styles:m}=(0,p.I)(),g=null==(i=e.items)?void 0:i.filter(function e(t){if((null==t?void 0:t.hidden)===!0)return!1;if((null==t?void 0:t.children)!==void 0){let i=t.children.filter(e);return t.children=i,i.length}return!0});return(0,r.jsx)(a.Menu,{...l,className:c()(m.menu,{"menu--is-calculated-height":(null==d?void 0:d.height)!==void 0}),"data-testid":n,expandIcon:(0,r.jsx)(u.Icon,{options:{width:14,height:14},value:"chevron-right"}),items:void 0,ref:t,style:{...l.style,maxHeight:`min(${null==d?void 0:d.height}px, 65vh)`},children:null==g?void 0:g.map(e=>(0,o.D)({item:e}))})});m.displayName="Menu"},50174(e,t,i){"use strict";i.d(t,{J:()=>o});var r=i(74848),n=i(86569),l=i(81898);i(47867);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{message:i` - .ant-message-custom-content { - font-family: Lato,serif; - font-size: 12px; - font-style: normal; - font-weight: 400; - line-height: 22px; - } - `}},{hashPriority:"low"}),o=e=>{let{message:t}=n.App.useApp(),i={...t},{styles:o}=a();return i.info=(e,i,n)=>{let a;return(a=null!==e&&"object"==typeof e&&"content"in e?e:{content:e}).icon=(0,r.jsx)(l.I,{options:{width:"16px",height:"16px"},value:"info-circle"}),t.info(a,i,n)},i.open=e=>"info"===e.type?t.open({icon:(0,r.jsx)(l.I,{options:{width:"16px",height:"16px"},value:"info-circle"}),className:o.message,...e}):t.open({className:o.message,...e}),i}},89705(e,t,i){"use strict";i.d(t,{Q:()=>c,x:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(29740),a=i(21429),o=i(92203),s=i(90011);let d=e=>{let{t}=(0,a.useTranslation)(),i=(0,o.Z)(),{triggerUpload:d}=(0,s.w)(e);return!0===e.showMaxItemsError?(0,r.jsx)(n.Tooltip,{title:t("upload"),children:(0,r.jsx)(l.K,{icon:{value:"upload-cloud"},onClick:()=>i.warn({content:t("items-limit-reached",{maxItems:e.maxItems??0})}),type:"default"})}):(0,r.jsx)(n.Tooltip,{title:t("upload"),children:(0,r.jsx)(l.K,{icon:{value:"upload-cloud"},onClick:()=>{d(e)},type:"default"})})},c=d},43133(e,t,i){"use strict";i.d(t,{n:()=>b});var r=i(74848),n=i(86569),l=i(47867),a=i.n(l),o=i(96316),s=i(21429),d=i(31141),c=i(75240),u=i(27994),p=i(64756),m=i(13755),g=i(25750),h=i(22014),v=i(93086),f=i(7814),y=i(35864);let b=e=>{let{t}=(0,s.useTranslation)(),i=a().useMemo(()=>(0,y.isNil)(e.fileList)||0===e.fileList.length?0:Math.round(e.fileList.reduce((e,t)=>e+("error"===t.status?100:t.percent??0),0)/e.fileList.length),[e.fileList]);return(0,r.jsxs)(n.Modal,{closable:!1,"data-testid":"upload-modal",footer:null,open:e.open,title:(0,r.jsx)(o.w,{iconName:"upload-cloud",children:t("upload")}),children:[e.fileList.length>1&&!e.showProcessing&&!e.showUploadError&&(0,r.jsx)(p.a,{margin:{y:"extra-small"},children:(0,r.jsx)(v.k,{percent:i,status:"active"})}),e.showUploadError&&(0,r.jsx)(p.a,{margin:{y:"extra-small"},children:(0,r.jsx)(c.F,{action:(0,r.jsx)(u.$,{onClick:e.closeModal,size:"small",children:t("ok")}),message:t("upload.assets-items-failed-message"),type:"warning"})}),e.showProcessing&&(0,r.jsx)(p.a,{margin:{y:"extra-small"},children:(0,r.jsx)(c.F,{message:(0,r.jsxs)(g.s,{gap:"small",children:[(0,r.jsx)(m.t,{size:"small"}),(0,r.jsx)(h.E,{type:"secondary",children:t("processing")})]}),type:"info"})}),(0,r.jsx)(p.a,{margin:{bottom:"small"},children:(0,r.jsx)(n.Upload,{openFileDialogOnClick:!1,children:(0,r.jsx)(d.A,{itemRender:(e,i)=>{let n;(0,y.isNil)(i.error)||(0,y.isNil)(i.error.status)||413!==i.error.status?!(0,y.isNil)(i.error)&&!(0,y.isNil)(i.response)&&(0,y.isString)(i.response)?n=i.response:(0,y.isNil)(i.error)||(n=t("upload.error.generic")):n=t("upload.error.file-too-large");let l=a().cloneElement(e,{title:(0,y.isNil)(n)?e.props.title:null});return(0,r.jsx)(f.m,{title:n,children:l})},items:e.fileList,listType:"text",locale:{uploading:"Uploading..."},showRemoveIcon:!1})})})]})}},83655(e,t,i){"use strict";i.d(t,{J:()=>s,W:()=>o});var r,n=i(47867),l=i(35864),a=i(58016);let o=((r={}).OVERWRITE="overwrite",r.KEEP="keep",r.SKIP="skip",r),s=e=>{let{targetFolderId:t}=e,{checkFileExists:i,askUserOverwrite:r,resetApplyToAll:s}=(0,a.e)(),d=(0,n.useRef)(new Map),c=(0,n.useRef)(null),u=(0,n.useRef)(new Set),p=(0,n.useRef)(new Map);return{resolveConflicts:async e=>{(0,l.isNil)(t)||((0,l.isNil)(c.current)&&(c.current=(async()=>{let n=(0,l.chunk)(e,5),a=[];for(let e of n){let r=await Promise.all(e.map(async e=>({file:e,...await i(e.name,t)})));a.push(...r)}for(let{file:e,id:t}of(a.forEach(e=>{(0,l.isNil)(e.error)||p.current.set(e.file.uid,e.error)}),a.filter(e=>e.exists&&!(0,l.isNil)(e.id)))){let i=await r(e.name);i===o.SKIP?u.current.add(e.uid):i===o.OVERWRITE&&d.current.set(`${e.name}-${e.size}`,t)}})()),await c.current)},shouldSkipFile:e=>u.current.has(e.uid),hasCheckError:e=>p.current.has(e.uid),getCheckError:e=>p.current.get(e.uid),getReplaceId:e=>d.current.get(`${e.name}-${e.size}`),reset:()=>{d.current.clear(),s(),c.current=null,u.current.clear(),p.current.clear()},cleanupProcessedFiles:e=>{e.forEach(e=>{d.current.delete(`${e.name}-${e.size}`)})}}}},58016(e,t,i){"use strict";i.d(t,{e:()=>m});var r=i(74848),n=i(47867),l=i(86569),a=i(73362),o=i(46881),s=i(35864),d=i(21429),c=i(43588),u=i(81898),p=i(83655);let m=()=>{let e=(0,o.useAppDispatch)(),{t}=(0,d.useTranslation)(),{modal:i}=l.App.useApp(),m=(0,n.useRef)({action:null});return{checkFileExists:async(t,i)=>{let{data:r,error:n}=await e(a.api.endpoints.assetUploadInfo.initiate({parentId:i,fileName:t},{forceRefetch:!0}));return(0,s.isNil)(n)?(null==r?void 0:r.exists)!==!0||(0,s.isNil)(r.assetId)?{exists:!1}:{exists:!0,id:r.assetId}:{exists:!1,error:n}},askUserOverwrite:async e=>(0,s.isNil)(m.current.action)?await new Promise(n=>{let a=!1,o=e=>{a&&(m.current.action=e),s.destroy(),n(e)},s=i.confirm({title:t("asset.upload.file-exists.title"),icon:(0,r.jsx)(u.I,{options:{width:24,height:24},value:"warning-circle"}),content:(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(c.Box,{margin:{bottom:"small"},children:t("asset.upload.file-exists.message",{fileName:e})}),(0,r.jsx)(c.Box,{margin:{bottom:"small"},children:(0,r.jsxs)(c.Flex,{align:"center",gap:"small",children:[(0,r.jsx)(l.Switch,{onChange:e=>{a=e},size:"small"}),(0,r.jsx)("span",{children:t("asset.upload.apply-to-all")})]})})]}),footer:()=>(0,r.jsxs)(c.Flex,{justify:"flex-end",children:[(0,r.jsx)(l.Button,{onClick:()=>{o(p.W.SKIP)},children:t("asset.upload.skip")}),(0,r.jsx)(l.Button,{onClick:()=>{o(p.W.KEEP)},children:t("asset.upload.keep-both")}),(0,r.jsx)(l.Button,{onClick:()=>{o(p.W.OVERWRITE)},children:t("asset.upload.overwrite")})]}),closable:!1,maskClosable:!1,keyboard:!1})}):m.current.action,resetApplyToAll:()=>{m.current.action=null}}}},90011(e,t,i){"use strict";i.d(t,{w:()=>a});var r=i(83986),n=i(46096),l=i(81624);let a=e=>{let t=(0,r.d)();return{triggerUpload:i=>{let r={...e,...i};if((0,l.GZ)()&&(0,n.BB)()){let{element:e}=(0,n.qH)();e.openUploadModal(r);return}t.triggerUpload(r)}}}},99050(e,t,i){"use strict";i.d(t,{v:()=>v});var r=i(74848);i(47867);var n=i(86569),l=i(73362),a=i(46881),o=i(58200),s=i(35864),d=i(59446),c=i(21429),u=i(50174),p=i(83986),m=i(14120),g=i(83655),h=i(55638);let v=e=>{let{setIsModalOpen:t,setShowProcessing:i,setShowUploadError:v,setFileList:f,fileList:y}=(0,p.d)(),b=(0,a.useAppDispatch)(),x=(0,d.t)(),{t:j}=(0,c.useTranslation)(),{success:w}=(0,u.J)(),{targetFolderId:C}=(0,m.K)({targetFolderId:e.targetFolderId,targetFolderPath:e.targetFolderPath}),S=C??1,{resolveConflicts:T,shouldSkipFile:I,hasCheckError:k,getReplaceId:E,reset:D,cleanupProcessedFiles:N,getCheckError:P}=(0,g.J)({targetFolderId:S}),A={...!(0,s.isNil)(e.customRequest)?{customRequest:e.customRequest}:{action:t=>{var i,r;if((0,s.isString)(e.action))return e.action;let n=(null==(i=e.getExternalReplaceId)?void 0:i.call(e,t))??E(t);if(!(0,s.isNil)(n))return`${(0,o.$)()}/assets/${n}/replace`;let l=(null==(r=e.getTargetFolderIdForFile)?void 0:r.call(e,t))??S;return`${(0,o.$)()}/assets/add/${l}`}},name:e.name??"file",multiple:e.multiple??!0,accept:e.accept,showUploadList:!1,maxCount:e.maxItems,openFileDialogOnClick:e.openFileDialogOnClick,fileList:y,beforeUpload:async(t,i)=>{var r;return t.size<(x.upload_max_filesize??0xa00000)?(await (null==(r=e.beforeUpload)?void 0:r.call(e,t,i)),("object"!=typeof e.skipConflictCheck||(0,s.isNil)(e.skipConflictCheck)?!0===e.skipConflictCheck:!0===e.skipConflictCheck.current)||(t.uid===i[0].uid&&D(),await T(i),!k(t)&&(!I(t)||n.Upload.LIST_IGNORE))):(t.status="error",t.error={status:413},!1)},onChange:async r=>{var n,a,o;let d=e=>{let t=new h.hD({data:e}).getContent();return(0,s.isNil)(t)?j("error.error_something_generic_went_wrong"):(0,s.isString)(t)?t:j(`error.${t.errorKey}`)},c=r.fileList.map(e=>{if(k(e)){let t=P(e);return{...e,status:"error",response:d(t),error:t}}if("error"===e.status){let t=e.response??e.error;if(!(0,s.isNil)(t)&&"object"==typeof t)return{...e,status:"error",response:d(t),error:t}}return e});f(c),t(!0),null==(n=e.onChange)||n.call(e,{...r,fileList:c});let u=c.every(e=>"done"===e.status),p=c.every(e=>"done"===e.status||"error"===e.status);if(c.every(e=>"done"===e.status||"error"===e.status||100===e.percent)&&i(!0),p){let t=c.filter(e=>"done"===e.status),r=t.map(e=>{var t;return E(e)??(null==(t=e.response)?void 0:t.id)});if(N(t),void 0!==e.action||"skipAssetFetch"in e&&!0===e.skipAssetFetch)t.length>0&&await (null==(o=e.onSuccess)?void 0:o.call(e,c));else{let t=r.map(async e=>{if(!(0,s.isNil)(e))return await b(l.api.endpoints.assetGetById.initiate({id:e})).then(e=>{let{data:t}=e;return t})}),i=(await Promise.all(t)).filter(e=>void 0!==e);i.length>0&&await (null==(a=e.onSuccess)?void 0:a.call(e,i))}if(i(!1),u)w(j("asset.upload.files.successfully-uploaded")),F();else{let t=c.find(e=>"error"===e.status);1!==e.maxItems||(0,s.isNil)(t)?v(!0):((0,h.Ay)(new h.hD({data:t.error??t.response})),F())}}}},F=()=>{t(!1),f([]),v(!1),i(!1),D()},$=e.uploadComponent??n.Upload;return(0,r.jsx)($,{...A,className:e.uploadComponentClassName,ref:e.uploadRef,children:e.children})}},99242(e,t,i){"use strict";i.d(t,{c:()=>s,t:()=>o});var r=i(74848),n=i(47867),l=i(99050),a=i(43133);let o=(0,n.createContext)(void 0),s=e=>{let{children:t,...i}=e,s=(0,n.useRef)(null),[d,c]=(0,n.useState)({...i}),[u,p]=(0,n.useState)(!1),[m,g]=(0,n.useState)(!1),[h,v]=(0,n.useState)(!1),[f,y]=(0,n.useState)([]),b=e=>{c({...i,...e}),setTimeout(()=>{var e;return null==(e=s.current)?void 0:e.click()},0)},x=(0,n.useMemo)(()=>({triggerUpload:b,setIsModalOpen:p,setShowUploadError:g,setShowProcessing:v,setFileList:y,fileList:f}),[i,f]);return(0,r.jsxs)(o.Provider,{value:x,children:[(0,r.jsx)("div",{style:{display:"none"},children:(0,r.jsx)(l.v,{...d,children:(0,r.jsx)("span",{ref:s})})}),u&&(0,r.jsx)(a.n,{closeModal:()=>{p(!1),y([]),g(!1),v(!1)},fileList:f,open:!0,showProcessing:h,showUploadError:m}),t]})}},83986(e,t,i){"use strict";i.d(t,{d:()=>a});var r=i(47867),n=i(99242),l=i(35864);let a=()=>{let e=(0,r.useContext)(n.t);if((0,l.isNil)(e))throw Error("useUpload must be used within an UploadProvider");return e}},92203(e,t,i){"use strict";i.d(t,{Z:()=>o});var r=i(47867),n=i(21429),l=i(35864),a=i(43588);let o=()=>{let{modal:e}=(0,a.useStudioModal)(),{t}=(0,n.useTranslation)();return(0,r.useMemo)(()=>({info:i=>{let{title:r,content:n,...a}=i;return e.info({title:(0,l.isUndefined)(r)?t("info"):t(r),content:n,...a})},error:i=>{let{title:r,content:n,...a}=i;return e.error({title:(0,l.isUndefined)(r)?t("error"):t(r),content:n,...a})},warn:i=>{let{title:r,content:n,...a}=i;return e.warning({title:(0,l.isUndefined)(r)?t("warning"):t(r),content:n,...a})},success:i=>{let{title:r,content:n,...a}=i;return e.success({title:(0,l.isUndefined)(r)?t("success"):t(r),content:n,...a})}}),[])}},10733(e,t,i){"use strict";i.d(t,{j:()=>a});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{footer:i` - &.--divider { - padding-top: 10px; - border-top: 1px solid ${t.Divider.colorSplit} - } - - .ant-btn-link { - color: ${t.colorPrimary}; - margin: 0; - padding: 0; - - &:hover { - color: ${t.colorPrimaryHover}; - } - } - `}},{hashPriority:"low"});var l=i(25750);let a=e=>{let{justify:t="flex-end",divider:i=!1,...a}=e,{styles:o}=n(),{children:s,...d}=a,c=[`ant-modal-footer-container ${o.footer}`].filter(Boolean);return i&&c.push("--divider"),(0,r.jsx)(l.s,{align:"center",className:c.join(" "),gap:"extra-small",justify:t,...d,children:s})}},43565(e,t,i){"use strict";i.d(t,{Ff:()=>I,zE:()=>T,Vl:()=>S,lr:()=>k,s1:()=>E});var r=i(74848),n=i(47867),l=i.n(n),a=i(62059),o=i(60142),s=i.n(o),d=i(57231),c=i(48614),u=i(86833),p=i(86569),m=i(21429),g=i(43588);function h(e){let{dontAskAgainRef:t}=e,{t:i}=(0,m.useTranslation)();return(0,r.jsxs)(g.Flex,{align:"center",gap:"mini",children:[(0,r.jsx)(p.Switch,{defaultChecked:!1,onChange:e=>{t.current=e},size:"small"}),(0,r.jsx)("span",{children:i("dont-ask-again")})]})}let v=(0,n.forwardRef)(function(e,t){let{form:i,initialValues:n,fieldName:l,placeholder:a,label:o}=e;return(0,r.jsx)(d.lV,{form:i,initialValues:n,layout:"vertical",children:(0,r.jsx)(d.lV.Item,{label:o,name:l,children:(0,r.jsx)(p.Input.TextArea,{autoSize:{minRows:10,maxRows:20},placeholder:a,ref:t})})})}),f=(0,n.forwardRef)(function(e,t){let{form:i,initialValues:n,fieldName:l,label:a,rules:o,onSubmitCapture:s}=e;return(0,r.jsx)(d.lV,{form:i,initialValues:n,layout:"vertical",onSubmitCapture:s,children:(0,r.jsx)(d.lV.Item,{label:a,name:l,rules:o,children:(0,r.jsx)(p.Input,{ref:t})})})}),y=(0,n.forwardRef)(function(e,t){let{form:i,initialValues:n,fieldName:l,label:a,rules:o,accept:s}=e;return(0,r.jsx)(d.lV,{form:i,initialValues:n,layout:"vertical",children:(0,r.jsx)(d.lV.Item,{label:a,name:l,rules:o,children:(0,r.jsx)(p.Input,{accept:s,ref:t,type:"file"})})})});var b=i(35864),x=i(18196),j=i(32396);let w=null;function C(e){return{okButtonProps:{"data-testid":(0,j.Bv)("ok","form"),...e.okButtonProps},cancelButtonProps:{"data-testid":(0,j.Bv)("cancel","form"),...e.cancelButtonProps}}}function S(){let{modal:e,localModal:t}=(0,c.H)(),[i]=d.lV.useForm();w=i;let r=l().useRef(!1);return l().useMemo(()=>({input:e=>{let i=t.confirm(T(e,e=>{i.destroy()},e=>{i.update({okButtonProps:{loading:e}})}));return i.then(()=>{},()=>{}),i},textarea:e=>{let i=t.confirm(I(e));return i.then(()=>{},()=>{}),i},confirm:t=>{if((0,x.uI)(t.dontAskAgainKey)&&(0,u.Y_)(t.dontAskAgainKey)){var i;return null==(i=t.onOk)||i.call(t),{destroy:b.noop,update:b.noop}}return r.current=!1,e.confirm(k(t,r))},upload:e=>t.confirm(E(e))}),[e,t])}function T(e,t,i){let n=l().createRef(),o=(0,a.u)(),s=`input-${o}`,d=w,{label:c,rule:u,initialValue:p="",...m}=e,g=[];void 0!==u&&(g=[u]);let h=async r=>(null==i||i(!0),await new Promise((n,l)=>{d.validateFields().then(async()=>{var i;let l=d.getFieldValue(r);await (null==(i=e.onOk)?void 0:i.call(e,l)),null==t||t(l),n(l)}).catch(()=>{l(Error("Invalid form")),null==i||i(!1)})}));return{...m,type:e.type??"confirm",icon:e.icon??null,...C(e),onOk:async()=>{await h(s)},modalRender:e=>(null!==n.current&&n.current.focus(),e),content:(0,r.jsx)(f,{fieldName:s,form:d,initialValues:{[s]:p},label:c,onSubmitCapture:async()=>{await h(s)},ref:n,rules:g},"input-form")}}function I(e){let t=l().createRef(),i=(0,a.u)(),n=`textarea-${i}`,o=w,{label:s,initialValue:d="",...c}=e;return{...c,type:e.type??"confirm",icon:e.icon??null,width:700,...C(e),onOk:async()=>{var t;let i=o.getFieldValue(n);null==(t=e.onOk)||t.call(e,i)},modalRender:e=>(null!==t.current&&t.current.focus(),e),content:(0,r.jsx)(v,{fieldName:n,form:o,initialValues:{[n]:d},label:s,placeholder:e.placeholder,ref:t},"textarea-form")}}function k(e,t){let{dontAskAgainKey:i,...n}=e,l={...n,type:e.type??"confirm",okText:e.okText??s().t("yes"),cancelText:e.cancelText??s().t("no"),...C(e)};if(!(0,x.uI)(i))return l;let a=async()=>{var r;return t.current&&(0,u.Pw)(i,!0),null==(r=e.onOk)?void 0:r.call(e)};return{...l,onOk:a,footer:e=>(0,r.jsxs)(g.Flex,{align:"center",justify:"space-between",children:[(0,r.jsx)(h,{dontAskAgainRef:t}),(0,r.jsx)("div",{children:e})]})}}function E(e){let t=l().createRef(),i=(0,a.u)(),n=`upload-${i}`,o=w,{label:s,rule:d,accept:c,...u}=e,p=[];return void 0!==d&&(p=[d]),{...u,type:e.type??"confirm",icon:e.icon??null,...C(e),onOk:async()=>await new Promise((i,r)=>{o.validateFields().then(()=>{var r;let n=t.current.input.files;null==(r=e.onOk)||r.call(e,n),i(n)}).catch(()=>{r(Error("Invalid form"))})}),content:(0,r.jsx)(y,{accept:c,fieldName:n,form:o,initialValues:{},label:s,ref:t,rules:p},"upload-form")}}},48614(e,t,i){"use strict";i.d(t,{H:()=>o});var r=i(86569),n=i(47867),l=i(81624),a=i(46096);function o(){let{modal:e}=r.App.useApp();return(0,n.useMemo)(()=>{let t=e;if((0,l.GZ)()&&(0,a.BB)())try{let{modal:e}=(0,a.qH)();t=e}catch(e){console.warn("Failed to access parent window modal, falling back to local modal:",e)}return{modal:t,localModal:e}},[e])}},96316(e,t,i){"use strict";i.d(t,{w:()=>a});var r=i(74848),n=i(86569);i(47867);var l=i(81898);let a=e=>{let{iconName:t,...i}=e;return(0,r.jsxs)(n.Flex,{align:"center",gap:"small",children:[void 0!==t&&(0,r.jsx)(l.I,{options:{width:20,height:20},value:t}),(0,r.jsx)("span",{children:i.children})]})}},30492(e,t,i){"use strict";i.d(t,{a:()=>o});var r=i(74848),n=i(86569);i(47867);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{modal:i` - &.error { - .ant-modal-content .ant-modal-header .ant-modal-title .pimcore-icon { - color: ${t.colorError}; - } - } - - &.success { - .ant-modal-content .ant-modal-header .ant-modal-title .pimcore-icon { - color: ${t.colorSuccess}; - } - } - - &.info { - .ant-modal-content .ant-modal-header .ant-modal-title .pimcore-icon { - color: ${t.colorPrimary}; - } - } - - &.alert { - .ant-modal-content .ant-modal-header .ant-modal-title .pimcore-icon { - color: ${t.colorWarning}; - } - } - - .ant-modal-content { - width: 100%; - display: inline-flex; - flex-direction: column; - align-items: start; - gap: ${t.marginSM}px; - - .ant-modal-header { - margin-bottom: 0; - - .ant-modal-title { - font-size: 16px; - font-weight: 900; - line-height: 24px; - display: flex; - gap: 4px; - } - } - - .ant-modal-footer { - width: 100%; - } - - .ant-modal-body { - width: 100%; - line-height: 22px; - - & > p { - margin: 0; - } - } - } - `}},{hashPriority:"low"});var a=i(96316);let o=e=>{let{iconName:t,size:i="M",limitContentHeight:o,className:s,title:d,children:c,styles:u,...p}=e,{styles:m}=l(),g=[m.modal,s].filter(Boolean),h=!0===o?{...u,body:{maxHeight:"60vh",overflowY:"auto",...null==u?void 0:u.body}}:u;return(0,r.jsx)(n.Modal,{className:g.join(" "),styles:h,title:(0,r.jsx)(a.w,{iconName:t,children:d}),width:{XXL:"max(1200px, 85%)",XL:1e3,L:700,ML:872,M:530}[i],...p,children:c})}},78352(e,t,i){"use strict";i.d(t,{i:()=>l});var r=i(74848);i(47867);var n=i(86569);let l=e=>(0,r.jsx)(n.Popconfirm,{...e})},6820(e,t,i){"use strict";i.d(t,{$D:()=>d,Ej:()=>s,fp:()=>c,hS:()=>a,jT:()=>o});var r=i(74848),n=i(47867),l=i(30492);let a=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{type:"default"},[t,i]=(0,n.useState)(!1),a=()=>{i(!1)},u=()=>{a()},p=()=>{a()};return{renderModal:function(i){let{children:n,...a}=i,m=function(e){let t=l.a;switch(e){case"error":t=o(l.a);break;case"success":t=s(l.a);break;case"info":t=d(l.a);break;case"warn":t=c(l.a)}return t}(e.type);return(0,r.jsx)(m,{onCancel:p,onOk:u,open:t,...a,children:n})},showModal:()=>{i(!0)},handleOk:u,handleCancel:p,closeModal:a}},o=e=>t=>{let{children:i,...n}=t;return(0,r.jsx)(e,{className:"error",iconName:"close-filled",title:"Error",...n,children:i})},s=e=>t=>{let{children:i,...n}=t;return(0,r.jsx)(e,{className:"success",iconName:"checkmark",title:"Success",...n,children:i})},d=e=>t=>{let{children:i,...n}=t;return(0,r.jsx)(e,{className:"info",iconName:"info",title:"Info",...n,children:i})},c=e=>t=>{let{children:i,...n}=t;return(0,r.jsx)(e,{className:"alert",iconName:"alert",title:"Warn",...n,children:i})}},23558(e,t,i){"use strict";i.d(t,{m:()=>m});var r=i(74848),n=i(47867),l=i(30492),a=i(70982),o=i.n(a);let s=(0,i(44241).createStyles)(function(e){let{token:t,css:i}=e,{zIndex:r}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return{wrapper:i` - pointer-events: none; - ${void 0!==r?`z-index: ${r} !important;`:""} - `,modal:i` - .ant-modal-content { - outline: 1px solid ${t.colorBorderContainer}; - box-shadow: ${t.boxShadowSecondary} !important; - } - `}},{hashPriority:"low"});var d=i(8651),c=i.n(d),u=i(81898),p=i(25750);let m=e=>{let{zIndex:t,...i}=e,{styles:a}=s({zIndex:t}),[d,m]=(0,n.useState)(!0),[g,h]=(0,n.useState)({left:0,top:0,bottom:0,right:0}),v=(0,n.useRef)(null);return(0,r.jsx)(l.a,{...i,className:c()(a.modal,e.className),mask:!1,maskClosable:!1,modalRender:e=>(0,r.jsx)(o(),{bounds:g,disabled:d,nodeRef:v,onStart:(e,t)=>{((e,t)=>{var i;let{clientWidth:r,clientHeight:n}=window.document.documentElement,l=null==(i=v.current)?void 0:i.getBoundingClientRect();void 0!==l&&h({left:-l.left+t.x,right:r-(l.right-t.x),top:-l.top+t.y,bottom:n-(l.bottom-t.y)})})(0,t)},children:(0,r.jsx)("div",{ref:v,children:e})}),title:(0,r.jsx)("div",{onBlur:()=>{},onFocus:()=>{},onMouseOut:()=>{m(!0)},onMouseOver:()=>{d&&m(!1)},style:{width:"100%",cursor:"move",flex:1},children:(0,r.jsx)(p.s,{gap:"small",children:e.title??(0,r.jsx)(u.I,{value:"drag-option"})})}),wrapClassName:a.wrapper,children:e.children})}},47449(e,t,i){"use strict";i.d(t,{R:()=>o});var r=i(74848),n=i(86569);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{content:i` - .ant-empty-image { - margin-bottom: ${t.marginXS}px; - height: auto; - } - - .ant-empty-description { - padding: 5px ${t.controlPaddingHorizontal}px; - font-size: 14px; - color: ${t.Empty.colorTextDisabled}; - line-height: 20px; - } - `}});i(47867);var a=i(81898);let o=e=>{let{text:t}=e,{styles:i}=l();return(0,r.jsx)("div",{className:i.content,children:(0,r.jsx)(n.Empty,{description:t,image:(0,r.jsx)(a.I,{options:{width:184,height:123},value:"no-content"})})})}},24058(e,t,i){"use strict";i.d(t,{h:()=>l});var r=i(86569);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{notification:i` - .ant-notification-notice-content { - .ant-notification-notice-message { - font-size: 16px !important; - } - } - `}},{hashPriority:"low"}),l=()=>{let{notification:e}=r.App.useApp(),t={...e},{styles:i}=n();return t.open=t=>{e.open({duration:0,closable:!0,placement:"bottomRight",className:i.notification,...t})},[t]}},46549(e,t,i){"use strict";i.d(t,{ls:()=>m,Ab:()=>u,uD:()=>p});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(25750),o=i(60142),s=i(71141),d=i(83499);let c=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{container:t` - &.versionFieldItem { - .ant-input-number-disabled { - width: 100%; - max-width: 100% !important; - color: ${i.colorText} !important; - border-color: transparent !important; - } - } - - &.versionFieldItemHighlight { - .ant-input-number-disabled { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${i.colorBorder} !important; - } - } - `}}),u=async(e,t)=>{null===t||(null===t.minimum&&await Promise.reject(Error((0,o.t)("form.validation.numeric-range.first-value-missing"))),null===t.maximum&&await Promise.reject(Error((0,o.t)("form.validation.numeric-range.second-value-missing")))),await Promise.resolve()},p=async(e,t)=>{await u(e,t),null!==t&&(t.minimum>t.maximum&&await Promise.reject(Error((0,o.t)("form.validation.numeric-range.second-value-greater"))),await Promise.resolve())},m=e=>{let t=e.value??null,{styles:i}=c(),n=(i,r)=>{var n;let l={minimum:(null==t?void 0:t.minimum)??null,maximum:(null==t?void 0:t.maximum)??null,[i]:r},a=null===l.minimum&&null===l.maximum?null:l;null==(n=e.onChange)||n.call(e,a)};return(0,r.jsxs)(a.s,{align:"center",className:l()(i.container,e.className),gap:"small",style:{maxWidth:(0,d.x)(e.width)},children:[(0,r.jsx)(s.Y,{...e,className:e.inputClassName,onChange:e=>{n("minimum",e)},value:null!==t?t.minimum:null}),(0,r.jsx)(s.Y,{...e,className:e.inputClassName,onChange:e=>{n("maximum",e)},value:null!==t?t.maximum:null})]})}},45696(e,t,i){"use strict";i.d(t,{U:()=>l});var r=i(98480),n=i(35864);let l=()=>{let{value:e,onChange:t,finalGridProps:i,columns:l,onColumnsChange:a}=(0,r.zC)(),o=i.selectedRows,s=i.onSelectedRowsChange,d=i.setRowId,c=(e,t)=>(0,n.isNil)(d)?String(t):d(e,t,void 0),u=()=>(0,n.isNil)(o)?new Set:new Set(Object.keys(o).filter(e=>o[e]));return{addRow:i=>{let r=[...e,i];null==t||t(r)},clearAll:()=>{null==t||t([]),null==s||s({})},deleteSelectedRows:()=>{if((0,n.isNil)(o))return;let i=u();if(0===i.size)return;let r=e.filter((e,t)=>!i.has(c(e,t)));null==t||t(r),null==s||s({})},clearSelectedRows:()=>{null==s||s({})},getSelectedRowsData:()=>{if((0,n.isNil)(o))return[];let t=u();return 0===t.size?[]:e.filter((e,i)=>t.has(c(e,i)))},addColumn:function(i){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null,n=[...l,i];null==a||a(n);let o="accessorKey"in i?i.accessorKey:i.id;if(null!=o&&e.length>0){let i=e.map(e=>({...e,[o]:void 0!==e[o]?e[o]:r}));null==t||t(i)}},removeColumn:i=>{let r=l.filter(e=>("accessorKey"in e?e.accessorKey:e.id)!==i);if(null==a||a(r),e.length>0){let r=e.map(e=>{let{[i]:t,...r}=e;return r});null==t||t(r)}},updateColumn:(e,t)=>{let i=l.map(i=>("accessorKey"in i?i.accessorKey:i.id)===e?t:i);null==a||a(i)}}}},16126(e,t,i){"use strict";i.d(t,{H:()=>o});var r=i(74848);i(47867);var n=i(14013),l=i(98480),a=i(45696);let o=e=>{let{value:t=[],onChange:i,onColumnsChange:n,children:a,onUpdateCellData:o,columns:s=[],...d}=e,c={...d,columns:s,data:t,onUpdateCellData:o??(e=>{let{columnId:r,rowIndex:n,value:l}=e,a=[...t];a[n]={...a[n],[r]:l},null==i||i(a)})};return(0,r.jsx)(l.Ye,{columns:s,finalGridProps:c,onChange:i,onColumnsChange:n,value:t,children:a})};o.Grid=function(){let{finalGridProps:e}=(0,l.zC)();return(0,r.jsx)(n.x,{...e})},o.Operations=e=>{let{children:t}=e;return t((0,a.U)())}},98480(e,t,i){"use strict";i.d(t,{Ye:()=>o,zC:()=>s});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,n.createContext)(void 0),o=e=>{let{children:t,...i}=e;return(0,r.jsx)(a.Provider,{value:i,children:t})},s=()=>{let e=l().useContext(a);if(null==e)throw Error("useOperationalGridContext must be used within an OperationalGridProvider");return e}},75525(e,t,i){"use strict";i.d(t,{d:()=>p});var r=i(74848),n=i(50484),l=i(47867),a=i(86569),o=i(43588),s=i(21429);let d=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{pagination:t` - .pagination-control { - padding: 0; - height: 24px; - } - - &.ant-pagination-disabled .pagination-control, - .ant-pagination-next.ant-pagination-disabled, - .ant-pagination-prev.ant-pagination-disabled { - opacity: 0.5; - } - `}});var c=i(8651),u=i.n(c);let p=e=>{var t;let i,c,p,g,h,v,f,y,b=(0,n.c)(33),{t:x}=(0,s.useTranslation)(),{styles:j}=d(),{showSizeChanger:w,className:C,hideOnSinglePage:S,defaultPageSize:T,current:I,onChange:k,...E}={current:1,defaultPageSize:20,pageSizeOptions:["10","20","50","100"],showSizeChanger:!1,simple:!0,size:"small",...e},D=u()(j.pagination,C),[N,P]=(0,l.useState)(I??1),[A,F]=(0,l.useState)(T??20);b[0]!==I?(i=[I],b[0]=I,b[1]=i):i=b[1],(0,l.useEffect)(()=>{P(I??1)},i),b[2]!==N||b[3]!==A?(c=[N,A],b[2]=N,b[3]=A,b[4]=c):c=b[4],(0,l.useEffect)(()=>{null==k||k(N,A)},c),b[5]!==P||b[6]!==F?(p=(e,t)=>{P(e),F(t)},b[5]=P,b[6]=F,b[7]=p):p=b[7];let $=p,M=(null==(t=E.pageSizeOptions)?void 0:t.map(e=>({label:`${e} / ${x("pagination.page")}`,value:e})))??[];b[8]!==P||b[9]!==F?(g=e=>{P(1),F(Number(e))},b[8]=P,b[9]=F,b[10]=g):g=b[10];let O=g;if(!0===S&&void 0!==E.total&&E.total<=A){let e;return b[11]===Symbol.for("react.memo_cache_sentinel")?(e=(0,r.jsx)(r.Fragment,{}),b[11]=e):e=b[11],e}b[12]===Symbol.for("react.memo_cache_sentinel")?(h={marginLeft:4},b[12]=h):h=b[12];let _=E.itemRender??m;b[13]!==D||b[14]!==N||b[15]!==$||b[16]!==A||b[17]!==E||b[18]!==_?(v=(0,r.jsx)(a.Pagination,{...E,className:D,current:N,itemRender:_,onChange:$,pageSize:A,showSizeChanger:!1}),b[13]=D,b[14]=N,b[15]=$,b[16]=A,b[17]=E,b[18]=_,b[19]=v):v=b[19],b[20]!==O||b[21]!==A||b[22]!==E.disabled||b[23]!==M||b[24]!==w||b[25]!==x?(f=!0===w&&(0,r.jsx)(o.Select,{disabled:E.disabled,onChange:O,options:M,value:`${A} / ${x("pagination.page")}`,width:112}),b[20]=O,b[21]=A,b[22]=E.disabled,b[23]=M,b[24]=w,b[25]=x,b[26]=f):f=b[26],b[27]!==v||b[28]!==f?(y=(0,r.jsxs)(o.Flex,{gap:"extra-small",style:h,children:[v,f]}),b[27]=v,b[28]=f,b[29]=y):y=b[29];let L=y;if(!0===E.simple&&"small"===E.size){let e,t;return b[30]===Symbol.for("react.memo_cache_sentinel")?(e={height:32},b[30]=e):e=b[30],b[31]!==L?(t=(0,r.jsx)(o.Flex,{align:"center",style:e,children:(0,r.jsx)(a.ConfigProvider,{componentSize:"small",children:L})}),b[31]=L,b[32]=t):t=b[32],t}return L};function m(e,t,i){return"next"===t?(0,r.jsx)(o.IconButton,{className:"pagination-control pagination-control--next",icon:{value:"chevron-right"}}):"prev"===t?(0,r.jsx)(o.IconButton,{className:"pagination-control pagination-control--prev",icon:{value:"chevron-left"}}):i}},68258(e,t,i){"use strict";i.d(t,{Z:()=>c});var r=i(74848);i(47867);var n=i(35864),l=i(2338),a=i(64756),o=i(5785),s=i(10140),d=i(1185);let c=e=>{let{children:t,name:i,border:c,collapsed:u,active:p,onChange:m,collapsible:g,title:h,tooltip:v,theme:f="card-with-highlight",extra:y,extraPosition:b,contentPadding:x}=e,j=()=>(0,r.jsx)(o.P,{active:p,border:c,collapsed:u,collapsible:g,contentPadding:x,extra:y,extraPosition:b,onChange:m,theme:f,title:(()=>{if(!(0,n.isNil)(h))return(0,n.isNil)(v)?h:(0,r.jsxs)(l.$,{size:"extra-small",children:[h,(0,r.jsx)(s.V,{tooltip:v})]})})(),children:(0,r.jsx)(d.W,{children:t})});return"pimcore_root"===i?(0,r.jsx)(a.a,{padding:"small",children:j()}):(0,r.jsx)(r.Fragment,{children:j()})}},40926(e,t,i){"use strict";i.d(t,{f:()=>l});var r=i(74848);i(47867);let{Paragraph:n}=i(86569).Typography,l=e=>(0,r.jsx)(n,{...e})},98186(e,t,i){"use strict";i.d(t,{I:()=>l});var r=i(74848);i(47867);var n=i(21429);let l=e=>{let{sources:t,tracks:i,className:l}=e,{t:a}=(0,n.useTranslation)();return(0,r.jsxs)("audio",{className:l,controls:!0,children:[t.map((e,t)=>(0,r.jsx)("source",{src:e.src,type:e.type},`${t}-${e.type}`)),null==i?void 0:i.map((e,t)=>(0,r.jsx)("track",{kind:e.kind,label:e.label,src:e.src,srcLang:e.srcLang},`${t}-${e.label}`)),a("asset.preview.no-audio-support")]})}},52981(e,t,i){"use strict";i.d(t,{l:()=>l});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{"document-container":i` - width: 100%; - height: 100%; - .loading-div { - position: absolute; - top: calc(50% - 11px); - left: calc(50% - 8px); - } - - .display-none { - display: none; - } - `}},{hashPriority:"low"}),l=e=>{let{src:t,className:i}=e,{styles:l}=n();return(0,r.jsx)("div",{className:[l["document-container"],i].join(" "),children:(0,r.jsx)("iframe",{src:t,title:t})})}},72346(e,t,i){"use strict";i.d(t,{R:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(8651),a=i.n(l);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{image:i` - transition: transform ${t.motionDurationFast}s; - `}},{hashPriority:"low"}),s=e=>{let{styles:t}=o();return(0,r.jsx)(n.Image,{className:a()(t.image,e.className),preview:!1,...e})}},51038(e,t,i){"use strict";i.d(t,{$:()=>a});var r=i(74848);i(47867);var n=i(21429),l=i(74418);let a=e=>{let{sources:t,tracks:i,width:a,height:o,className:s,poster:d}=e,{t:c}=(0,n.useTranslation)(),{setPlayerPosition:u}=(0,l.M)();return(0,r.jsxs)("video",{className:s,controls:!0,height:o,onTimeUpdate:function(e){u(e.target.currentTime)},poster:d,width:a,children:[t.map((e,t)=>(0,r.jsx)("source",{src:e.src,type:e.type},`${t}-${e.type}`)),null==i?void 0:i.map((e,t)=>(0,r.jsx)("track",{kind:e.kind,label:e.label,src:e.src,srcLang:e.srcLang},`${t}-${e.label}`)),c("asset.preview.no-video-support")]},t[0].src)}},74418(e,t,i){"use strict";i.d(t,{M:()=>s,N:()=>o});var r=i(74848),n=i(47867),l=i(35864);let a=(0,n.createContext)(void 0),o=e=>{let{children:t}=e,[i,l]=(0,n.useState)("pimcore-system-treepreview"),[o,s]=(0,n.useState)(0),d=(0,n.useMemo)(()=>({thumbnail:i,setThumbnail:l,playerPosition:o,setPlayerPosition:s}),[i,o]);return(0,r.jsx)(a.Provider,{value:d,children:t})},s=()=>{let e=(0,n.useContext)(a);if((0,l.isUndefined)(e))throw Error("useVideoContext must be used within VideoProvider");return e}},28493(e,t,i){"use strict";i.d(t,{d:()=>l});var r=i(74848);i(47867);var n=i(64756);let l=e=>{let{children:t,padded:i=!0}=e;return(0,r.jsx)(n.a,{padding:i?"mini":"none",children:t})}},24518(e,t,i){"use strict";i.d(t,{b:()=>N});var r=i(74848),n=i(57231),l=i(47867),a=i.n(l),o=i(8320),s=i(64756),d=i(35864),c=i(21429),u=i(63364),p=i(99154),m=i(9677);let g=e=>{let{children:t,dynamicTypeRegistryId:i}=e,n=(0,u.Lt)(i),{operations:l}=(0,o.S)(),{config:a}=(0,m.e)(),{t:s}=(0,c.useTranslation)(),g=n.getDynamicTypes().filter(e=>e.isAvailableForSelection(a)),h={};g.forEach(e=>{let t=[];(0,d.isNull)(e.group)||(t=Array.isArray(e.group)?e.group:[e.group]);let i=h;t.forEach(e=>{(0,d.isNil)(i[e])&&(i[e]={}),i=i[e]}),(0,d.isNil)(i.dynamicTypes)&&(i.dynamicTypes=[]),i.dynamicTypes.push(e)});let v=e=>{let t=[];return(0,d.isNil)(e.dynamicTypes)||e.dynamicTypes.forEach(e=>{t.push({key:e.id,label:s(`grid.advanced-column.advancedColumns.${e.id}`),onClick:()=>{l.add({key:e.id})}})}),Object.entries(e).forEach(e=>{let[i,r]=e;"dynamicTypes"!==i&&t.push({key:`${i}-group`,label:s(`grid.advanced-column.advancedColumns.group.${i}`),children:v(r)})}),t},f=v(h);return(0,r.jsx)(p.m,{menu:{items:f},children:t})};var h=i(27820),v=i(25750),f=i(29150),y=i(80632),b=i(57930);let x=e=>{let{dynamicTypeRegistryId:t}=e,{getValueByKey:i}=(0,b.y)(),a=i("key"),o=(0,l.useMemo)(()=>a,[a]),s=(0,u.Lt)(t),d=(0,l.useMemo)(()=>s.getDynamicType(o),[s,o]);return(0,l.useMemo)(()=>void 0===d?(0,r.jsxs)("div",{children:["Unknown type: ",o]}):(0,r.jsx)(n.lV.Item,{name:"config",children:(0,r.jsx)(n.lV.KeyedList,{children:d.getComponent()})}),[d,o])};var j=i(29740),w=i(22014),C=i(74979),S=i(88754);let T=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{dynamicGroupItem:t` - background-color: ${i.colorFillAdditional}; - border-radius: ${i.borderRadius}px; - `}}),I=a().memo(e=>{let{id:t,dynamicTypeRegistryId:i}=e,{operations:d,getValueByKey:u}=(0,o.S)(),{styles:p}=T(),{listeners:m,setNodeRef:g,setActivatorNodeRef:h,transform:f,transition:b}=(0,S.useSortable)({id:t+1}),{t:I}=(0,c.useTranslation)(),k=(0,l.useMemo)(()=>({transform:C.Ks.Transform.toString(f),transition:b??void 0}),[f,b]),E=a().useCallback(()=>{d.remove(t)},[d,t]),D=(0,l.useMemo)(()=>u(t.toString()).key,[u,t]);return(0,r.jsx)("div",{ref:g,style:k,children:(0,r.jsxs)(s.a,{className:p.dynamicGroupItem,padding:{x:"extra-small",top:"mini",bottom:"small"},children:[(0,r.jsxs)(v.s,{align:"center",gap:"small",justify:"space-between",children:[(0,r.jsxs)(v.s,{align:"center",gap:"mini",children:[(0,r.jsx)(j.K,{icon:{value:"drag-option"},ref:h,theme:"secondary",variant:"minimal",...m}),(0,r.jsx)(w.E,{strong:!0,children:I(`grid.advanced-column.advancedColumns.${D}`)})]}),(0,r.jsx)(j.K,{icon:{value:"trash"},onClick:E})]}),(0,r.jsx)(n.lV.Item,{name:t,children:(0,r.jsxs)(n.lV.KeyedList,{children:[(0,r.jsx)(n.lV.Item,{className:"d-none",hidden:!0,name:"key",children:(0,r.jsx)(y.p,{})}),(0,r.jsx)(x,{dynamicTypeRegistryId:i})]})})]})})});var k=i(2338),E=i(41834);let D=e=>{let{dynamicTypeRegistryId:t,id:i,showTitle:n=!1,translationKeyPrefix:d="grid.advanced-column"}=e,{values:u,operations:p}=(0,o.S)(),[m,y]=a().useState(()=>u.map((e,t)=>t+1)),b=0===u.length,{t:x}=(0,c.useTranslation)(),j=(0,E.useSensors)((0,E.useSensor)(E.PointerSensor,{activationConstraint:{distance:5}})),w=(0,l.useMemo)(()=>u,[u]);(0,l.useEffect)(()=>{let e=u.map((e,t)=>t+1);y(t=>t.length===e.length&&t.every((t,i)=>t===e[i])?t:e)},[u.length]);let C=a().useCallback(e=>{let{active:t,over:i}=e,r=Number(t.id),n=Number(null==i?void 0:i.id);if(r!==n){let e=m.indexOf(r),t=m.indexOf(n),i=Array.from(m);i.splice(e,1),i.splice(t,0,r),p.move(e,t),y(i)}},[m,p]),T=(0,l.useMemo)(()=>(0,r.jsx)(g,{dynamicTypeRegistryId:t,children:(0,r.jsx)(h.J,{icon:{value:"new"},type:"link",children:x(`${d}.${i}.add`)})}),[t,i]),D=(0,l.useMemo)(()=>(0,r.jsx)(v.s,{align:"center",children:(0,r.jsx)(f.Y,{title:x(`${d}.${i}`),children:(0,r.jsx)(g,{dynamicTypeRegistryId:t,children:(0,r.jsx)(h.J,{icon:{value:"new"},children:x("add")})})})}),[t,i]),N=(0,l.useMemo)(()=>(0,r.jsx)(E.DndContext,{onDragEnd:C,sensors:j,children:(0,r.jsx)(S.SortableContext,{items:m,strategy:S.verticalListSortingStrategy,children:(0,r.jsx)(k.$,{className:"w-full",direction:"vertical",size:"extra-small",children:w.map((e,i)=>(0,r.jsx)(a().Fragment,{children:(0,r.jsx)(I,{dynamicTypeRegistryId:t,id:i})},e.vId))})})}),[w,m,C,j,t]);return(0,r.jsx)(s.a,{padding:{bottom:"mini"},children:(0,r.jsxs)(k.$,{className:"w-full",direction:"vertical",size:"extra-small",children:[n?D:T,!b&&N]})})},N=a().memo(e=>{let{id:t,dynamicTypeRegistryId:i,showTitle:l=!1,translationKeyPrefix:a}=e;return(0,r.jsx)(n.lV.Item,{initialValue:[],name:t,children:(0,r.jsx)(n.lV.NumberedList,{children:(0,r.jsx)(D,{dynamicTypeRegistryId:i,id:t,showTitle:l,translationKeyPrefix:a})})})})},44456(e,t,i){"use strict";i.d(t,{$:()=>p});var r=i(74848),n=i(47867),l=i(57231),a=i(84567),o=i(28493),s=i(24518),d=i(86569),c=i(82528),u=i(35864);let p=e=>{let{items:t,value:i,onChange:o}=e,[s,p]=(0,n.useState)(i),m=(0,c.d)(s,300),g=(0,n.useMemo)(()=>({components:{Form:{itemMarginBottom:0}}}),[]);(0,n.useEffect)(()=>{void 0===i||(0,u.isEqual)(i,s)||p(i)},[i]),(0,n.useEffect)(()=>{null==o||o(m)},[m]);let h=(0,n.useMemo)(()=>t,[t]);return void 0===s?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(d.ConfigProvider,{theme:g,children:(0,r.jsx)(l.lV.KeyedList,{onChange:p,value:s,children:h.map((e,t)=>{let i=t===h.length-1;return(0,r.jsxs)("div",{children:[e.component,!i&&(0,r.jsx)(a.c,{style:{margin:0},theme:"secondary"})]},e.id)})})})};p.CustomItem=o.d,p.DynamicGroupItem=s.b},75419(e,t,i){"use strict";i.d(t,{T:()=>l,U:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{initialConfig:t,children:i}=e,[a,o]=(0,n.useState)(t??{});return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{config:a,setConfig:o},children:i}),[a,i])}},76103(e,t,i){"use strict";i.d(t,{J:()=>n});var r=i(74848);i(47867);let n=e=>{let{id:t,...i}=e;return(0,r.jsx)("div",{id:t,...i})}},54786(e,t,i){"use strict";i.d(t,{K:()=>h});var r=i(74848),n=i(47867),l=i(86569),a=i(21429),o=i(35864),s=i(51419),d=i(25750),c=i(22014),u=i(75240),p=i(28453),m=i(81898);let g=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{tooltip:t` - width: 394px; - max-width: 100%; - `,infoIcon:t` - color: rgba(0, 0, 0, 0.45); - cursor: pointer; - `,text:t` - color: ${i.colorTextLightSolid}; - line-height: 22px; - } - `,link:t` - color: #d3adf7 !important; - text-decoration: underline !important; - `,editorError:t` - .cm-editor { - border-color: ${i.colorError} !important; - - &.cm-focused { - border-color: ${i.colorError} !important; - box-shadow: 0 0 0 2px ${i.colorErrorBg} !important; - } - } - `}}),h=e=>{var t;let{value:i,handleChange:h,handleBlur:v,errorData:f,isShowError:y}=e,[b,x]=(0,n.useState)(!1),{t:j}=(0,a.useTranslation)(),{styles:w}=g(),C=()=>{let e=null==f?void 0:f.data;return!(0,o.isNull)(e)&&(0,o.isObject)(e)?e:null},S=(0,n.useMemo)(()=>{if(!y)return[];let e=C();if((0,o.isNull)(e))return[];let t=null==e?void 0:e.position,i=(null==e?void 0:e.message)??j("error.syntax_error"),r=(0,s.bu)(()=>{var r;return(0,o.isUndefined)(t)?[]:[{from:t,to:t+((null==e||null==(r=e.token)?void 0:r.length)??1),severity:"error",message:i}]});return[(0,s.pJ)(),r]},[y,f]);return(0,r.jsxs)(d.s,{gap:"extra-small",vertical:!0,children:[(0,r.jsxs)(d.s,{gap:"mini",children:[(0,r.jsx)(c.E,{children:"PQL Query"}),(0,r.jsx)("div",{children:(0,r.jsx)(l.Tooltip,{onOpenChange:()=>{x(!b)},open:b,overlayClassName:w.tooltip,title:(0,r.jsx)(l.Typography,{className:w.text,children:(0,r.jsx)(a.Trans,{components:{anchorPQL:(0,r.jsx)("a",{className:w.link,href:"https://pimcore.com/docs/platform/Generic_Data_Index/Searching_For_Data_In_Index/Pimcore_Query_Language/",rel:"noopener noreferrer",target:"_blank"})},i18nKey:"component.pql.description"})}),trigger:"click",children:(0,r.jsx)(m.I,{className:w.infoIcon,options:{width:12,height:12},value:"help-circle"})})})]}),(0,r.jsx)("div",{className:y?w.editorError:void 0,children:(0,r.jsx)(p.B,{extensions:S,lineWrapping:!0,onBlur:v,onChange:h,placeholder:j("component.pql.placeholder"),value:i})}),y&&(0,r.jsx)(u.F,{banner:!0,description:(null==(t=C())?void 0:t.message)??j("error.error_something_generic_went_wrong"),showIcon:!0,type:"error"})]})}},154(e,t,i){"use strict";i.d(t,{v:()=>a});var r=i(74848),n=i(50484),l=i(85274);i(47867);let a=e=>{let t,i,a,o=(0,n.c)(10),{leftItem:s,rightItem:d,withDivider:c,resizeAble:u,withToolbar:p}=e,m=void 0===c||c,g=void 0!==u&&u,h=void 0===p||p;o[0]!==s?(t={size:20,minSize:170,...s},o[0]=s,o[1]=t):t=o[1];let v=t;o[2]!==d?(i={size:80,...d},o[2]=d,o[3]=i):i=o[3];let f=i;return o[4]!==v||o[5]!==f||o[6]!==g||o[7]!==m||o[8]!==h?(a=(0,r.jsx)(l.n,{leftItem:v,resizeAble:g,rightItem:f,withDivider:m,withToolbar:h}),o[4]=v,o[5]=f,o[6]=g,o[7]=m,o[8]=h,o[9]=a):a=o[9],a}},97668(e,t,i){"use strict";i.d(t,{b:()=>b,N:()=>x});var r,n=i(74848),l=i(47867),a=i(8651),o=i.n(a),s=i(29653),d=i(81898),c=i(99154),u=i(72346),p=i(44241);let m=(0,p.createStyles)(e=>{let{token:t,css:i}=e;return{icon:i` - color: ${t.Colors.Neutral.Icon.colorIcon}; - `}}),g=e=>{let{styles:t}=m();return"string"==typeof e.value?(0,n.jsx)(u.R,{alt:e.alt,className:e.className,src:e.value}):"object"==typeof e.value?(0,n.jsx)(d.I,{...e.value,className:t.icon,options:{width:50,height:50}}):(0,n.jsx)(n.Fragment,{})};var h=i(7814),v=i(86052),f=i(27994);let y=(0,p.createStyles)(e=>{let{token:t,css:i}=e;return{card:i` - &.ant-card { - text-align: center; - height: 103px; - overflow: hidden; - cursor: pointer; - - &.ant-card-bordered .ant-card-cover { - margin: 0 auto; - height: 70%; - display: flex; - align-items: center; - } - - .ant-card-body { - padding: ${t.paddingXXS}px ${t.paddingXS}px; - width: 166px; - height: 30%; - } - } - `,cardMedium:i` - &.ant-card { - height: 150px; - } - `,imgContainer:i` - display: flex !important; - justify-content: center; - align-items: center; - - .ant-image { - max-width: 100%; - max-height: 100%; - text-align: center; - } - - .pimcore-icon { - color: ${t.Colors.Neutral.Icon.colorIcon}; - - svg * { - vector-effect: non-scaling-stroke; - } - } - `,imgContainerMedium:i` - height: 109px; - width: 236px !important; - `,img:i` - max-height: 72px; - max-width: 168px; - `,imgMedium:i` - max-height: 118px !important; - max-width: 234px; - `,dropdownButton:i` - position: absolute !important; - top: ${t.paddingXXS}px; - right: ${t.paddingXXS}px; - width: 24px; - `,metaBlock:i` - position: absolute; - left: ${t.paddingXS}px; - right: ${t.paddingXS}px; - bottom: ${t.paddingXS}px; - - .ant-card-meta-title { - font-weight: normal !important; - } - `}},{hashPriority:"low"}),b=((r={}).SMALL="small",r.MEDIUM="medium",r),x=e=>{let{size:t=b.SMALL}=e,{styles:i}=y(),r=(0,l.useRef)(null);return(0,n.jsx)(h.m,{placement:"right",title:e.name,children:(0,n.jsxs)(v.Z,{className:o()(i.card,{[i.cardMedium]:t===b.MEDIUM}),cover:(0,n.jsx)("div",{className:o()(i.imgContainer,{[i.imgContainerMedium]:t===b.MEDIUM}),children:(0,n.jsx)(g,{alt:e.name,className:o()(i.img,{[i.imgMedium]:t===b.MEDIUM}),value:e.imgSrc})}),onClick:t=>{var i,n;(null===r.current||(null==(i=r.current.menu)?void 0:i.list.contains(t.target))===!1)&&(null==(n=e.onClick)||n.call(e,t))},children:[(0,n.jsx)(s.A,{className:i.metaBlock,title:e.name}),(0,n.jsx)(c.m,{menu:{items:e.dropdownItems},menuRef:r,placement:"bottomLeft",children:(0,n.jsx)(f.$,{className:o()(i.dropdownButton),icon:(0,n.jsx)(d.I,{value:"more"}),onClick:e=>{e.stopPropagation()},size:"small"})})]})})}},93086(e,t,i){"use strict";i.d(t,{k:()=>l});var r=i(74848);i(47867);var n=i(86569);let l=e=>(0,r.jsx)(n.Progress,{...e})},33411(e,t,i){"use strict";i.d(t,{d:()=>a});var r=i(74848),n=i(86569);i(47867);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{progressbar:i` - padding-bottom: ${t.marginXXS}px; - - .progressbar-description { - display: flex; - flex-direction: row; - justify-content: space-between; - align-items: flex-end; - - p { - color: ${t.colorTextTertiary}; - margin: 0; - font-size: 12px; - font-weight: 400; - line-height: 22px; - } - - .progressbar-description__action { - .ant-btn { - color: ${t.colorPrimary}; - height: ${t.controlHeight}px; - display: flex; - justify-content: center; - padding: 0 ${t.paddingXXS}px; - align-items: flex-end; - - &:hover { - color: ${t.colorPrimaryHover} - } - } - } - } - - .ant-progress { - margin-bottom: 0; - - .ant-progress-bg { - background: ${t.colorTextDescription}; - } - } - - .progressbar-status { - p { - color: ${t.colorTextSecondary}; - font-size: 12px; - font-weight: 400; - line-height: 22px; - margin: 0; - } - } - `}},{hashPriority:"low"}),a=e=>{let{progressStatus:t,description:i,descriptionAction:a,...o}=e,{styles:s}=l();return(0,r.jsxs)("div",{className:s.progressbar,children:[(0,r.jsxs)("div",{className:"progressbar-description",children:[(0,r.jsx)("p",{id:"progressbarLabel",children:i}),(0,r.jsx)("div",{className:"progressbar-description__action",children:a})]}),(0,r.jsx)(n.Progress,{...o,"aria-labelledby":"progressbarLabel",showInfo:!1,status:"normal"}),(0,r.jsx)("div",{className:"progressbar-status",children:(0,r.jsx)("p",{children:t})})]})}},55822(e,t,i){"use strict";i.d(t,{T:()=>u});var r=i(74848);i(47867);var n=i(44241),l=i(73077);let a=(0,n.createStyles)((e,t)=>{let{token:i,css:r}=e,{layoutDefinition:n,items:a}=t,o=n.map(e=>`"${e}"`).join(" "),s=a.map(e=>({region:e.region,maxWidth:e.maxWidth})),d=[];n.forEach(e=>{e.split(" ").forEach((e,t)=>{var i;let r=null==(i=s.find(t=>t.region===e))?void 0:i.maxWidth;Array.isArray(d[t])||(d[t]=[]);let n=Number(r??"0"),l=!isNaN(n);void 0!==r&&(""!==r&&"0"!==r&&!l||l&&n>0)&&(l?d[t].push(`${n}px`):d[t].push(r))})});let c=d.length-1,u=e=>{if(!e.endsWith("%"))return e;let t=parseFloat(e);return`calc(${e} - ${12*c*(t/100)}px)`},p=d.map(e=>{if(0===e.length)return"1fr";let t=e.map(u);return 1===t.length?t[0]:`max(${t.join(",")})`}).join(" ");return{region:r` - display: flex; - flex-direction: column; - // @todo make this configurable - gap: ${12}px; - - // @todo we should introduce a predefined set of breakpoints - @container ${l.bI.name} (min-width: 768px) { - display: grid; - grid-template-areas: ${o}; - grid-template-columns: ${p}; - } - `}});var o=i(8651),s=i.n(o);let d=(0,n.createStyles)((e,t)=>{let{token:i,css:r}=e,{region:n}=t;return{regionItem:r` - grid-area: ${n}; - `}}),c=e=>{let{region:t,component:i,...n}=e,{styles:l}=d(e),a=s()(l.regionItem);return(0,r.jsx)("div",{className:a,...n,children:i})},u=e=>{let{items:t}=e,{styles:i}=a(e),n=s()(i.region);return(0,r.jsx)("div",{className:n,children:t.map(e=>(0,r.jsx)(c,{component:e.component,maxWidth:e.maxWidth,region:e.region},e.region))})}},88054(e,t,i){"use strict";i.d(t,{j:()=>a});var r=i(74848),n=i(47867),l=i(86569);let a=(0,n.forwardRef)((e,t)=>{let[i,a]=(0,n.useState)(!1);return(0,n.useImperativeHandle)(t,()=>({refresh:()=>{e.hasDataChanged()?a(!0):e.onReload()}})),(0,r.jsx)(l.Popconfirm,{onCancel:()=>{var t;a(!1),null==(t=e.onCancel)||t.call(e)},onConfirm:()=>{a(!1),e.onReload()},onOpenChange:t=>{t?e.hasDataChanged()?a(!0):e.onReload():a(!1)},open:i,title:e.title,children:e.children},"reload")});a.displayName="ReloadPopconfirm"},99731(e,t,i){"use strict";i.d(t,{u:()=>V});var r=i(74848),n=i(47867),l=i.n(n),a=i(41834),o=i(88754),s=i(86569),d=i(21429),c=i(64756),u=i(25750);let p="CLOSING_WITHOUT_OPENING",m="MISSING_CLOSING";function g(e,t,i){return e.map(e=>e.id===t?{...e,...i}:e)}function h(e,t,i){let r=e.findIndex(e=>e.id===t);if(-1===r)return!1;let n=e[r];if(!0!==("left"===i?null==n?void 0:n.bracketLeft:null==n?void 0:n.bracketRight))return!1;let l=0,a=[];for(let t=0;t0&&a.length>0)a.pop(),l--;else if(t===r&&"right"===i)return!0}}return!!("left"===i&&a.includes(r))}var v=i(62059);let f=(0,n.createContext)(void 0),y=e=>{let{children:t,value:i,onChange:a,conditionTypes:o,disabled:s=!1}=e,[d,c]=l().useState(null),{conditions:u,handleConditionChange:p,handleConditionRemove:m,handleConditionAdd:h,handleOperatorChange:y,handleBracketToggle:b,handleConditionMove:x,isLastCondition:j}=function(e){let{initialValue:t,onChange:i}=e,[r,l]=(0,n.useState)(t),a=(0,n.useRef)(i);(0,n.useEffect)(()=>{a.current=i},[i]),(0,n.useEffect)(()=>{l(t)},[t]);let o=(0,n.useCallback)(e=>{var t;l(e),null==(t=a.current)||t.call(a,e)},[]),s=(0,n.useCallback)((e,t)=>{o(g(r,e,t))},[r,o]),d=(0,n.useCallback)(e=>{o(r.filter(t=>t.id!==e))},[r,o]),c=(0,n.useCallback)((e,t)=>{let i,n={id:(0,v.u)(),type:t,operator:"and"};return o((i=Math.min(Math.max(0,e+1),r.length),[...r.slice(0,i),n,...r.slice(i)])),n.id},[r,o]),u=(0,n.useCallback)((e,t)=>{o(g(r,e,{operator:t}))},[r,o]),p=(0,n.useCallback)((e,t)=>{o(r.map(i=>i.id!==e?i:"left"===t?{...i,bracketLeft:!i.bracketLeft}:{...i,bracketRight:!i.bracketRight}))},[r,o]),m=(0,n.useCallback)((e,t)=>{let i=r.findIndex(t=>t.id===e);-1===i||o(function(e,t,i){let r=[...e],[n]=r.splice(t,1);return r.splice(i,0,n),r}(r,i,t))},[r,o]),h=(0,n.useCallback)(e=>{if(0===r.length)return!0;let t=r[r.length-1];return(null==t?void 0:t.id)===e},[r]);return{conditions:r,handleConditionChange:s,handleConditionRemove:d,handleConditionAdd:c,handleOperatorChange:u,handleBracketToggle:p,handleConditionMove:m,isLastCondition:h}}({initialValue:(0,n.useMemo)(()=>i??[],[i]),onChange:a}),w=(0,n.useCallback)(e=>{let{active:t,over:i}=e;if(null===i||t.id===i.id)return;let r=u.findIndex(e=>e.id===t.id),n=u.findIndex(e=>e.id===i.id);-1!==r&&-1!==n&&x(t.id,n)},[u,x]),C=(0,n.useCallback)((e,t)=>{c(h(e,t)),setTimeout(()=>{c(null)},400)},[h]),S=(0,n.useMemo)(()=>({conditionTypes:o,disabled:s,onConditionChange:p,onConditionRemove:m,onConditionAdd:C,onOperatorChange:y,onBracketToggle:b,onConditionMove:x,isLastCondition:j,newlyAddedId:d}),[o,s,p,m,C,y,b,x,j,d]);return(0,r.jsx)(f.Provider,{value:S,children:t({conditions:u,handleDragEnd:w})})},b=()=>{let e=(0,n.useContext)(f);if(void 0===e)throw Error("useRuleConditionContext must be used within a RuleConditionProvider");return e};var x=i(54872),j=i(88929),w=i(29740),C=i(62461),S=i(75240),T=i(81898),I=i(35864);let k=e=>{let{conditionTypes:t,onConditionAdd:i}=b(),{t:l}=(0,d.useTranslation)();return(0,n.useMemo)(()=>t.map(t=>{var n;let a=(null==(n=t.isAvailable)?void 0:n.call(t))??!0,o=l(t.label);return{key:`condition-${t.id}`,label:a||void 0===t.notAvailableHint?o:(0,r.jsx)(s.Tooltip,{title:l(t.notAvailableHint),children:(0,r.jsx)("span",{children:o})}),icon:(0,I.isNil)(t.icon)?void 0:(0,r.jsx)(T.I,{...t.icon}),disabled:!a,onClick:()=>{i(e,t.id)}}}),[t,e,i])};var E=i(44241);let D=(0,E.createStyles)(e=>{let{token:t,css:i}=e,r=i` - &::before, - &::after { - content: ''; - position: absolute; - top: 0; - bottom: 0; - width: 2px; - } - - &::before { - left: 0; - } - - &::after { - right: 0; - } - `;return{conditionItemWrapper:i` - position: relative; - padding-left: ${t.paddingXS}px; - padding-right: ${t.paddingXS}px; - ${r} - `,conditionItemWrapperNew:i` - animation: slideInFade ${400}ms ease-in-out; - - @keyframes slideInFade { - 0% { - opacity: 0; - transform: translateY(-12px); - } - 100% { - opacity: 1; - transform: translateY(0); - } - } - `,borderLevel1:i` - ${r} - &::before, - &::after { - background-color: ${t.colorPrimaryBorder}; - } - `,borderLevel2:i` - ${r} - &::before, - &::after { - background-color: ${t.colorAccent}; - } - `,borderLevel3:i` - ${r} - &::before, - &::after { - background-color: ${t.colorAccentSecondary}; - } - `,conditionBoxWrapper:i` - flex: 1; - min-width: 0; - `,conditionFormContainer:i` - width: 100%; - `}}),N=(0,E.createStyles)(e=>{let{token:t,css:i}=e;return{bracketButton:i` - min-width: 20px; - height: auto; - padding: 0; - margin: 0 ${t.marginXXS}px; - font-size: 48px; - font-weight: 200 !important; - line-height: 1; - border: none; - background-color: transparent; - color: ${t.colorTextDisabled}; - cursor: pointer; - transition: all ${t.motionDurationMid}; - align-self: stretch; - display: flex; - align-items: center; - justify-content: center; - - &:hover:not(:disabled) { - color: ${t.colorPrimary}; - } - - &:disabled { - cursor: not-allowed; - opacity: 0.3; - } - `,bracketButtonActive:i` - color: ${t.colorPrimary}; - font-weight: bold; - - &:hover:not(:disabled) { - color: ${t.colorPrimaryHover}; - } - `,bracketButtonError:i` - color: ${t.colorError}; - font-weight: bold; - - &:hover:not(:disabled) { - color: ${t.colorErrorHover}; - } - `}}),P=e=>{let{side:t,active:i,onToggle:n,disabled:l=!1,hasError:a=!1}=e,{t:o}=(0,d.useTranslation)(),{styles:s,cx:c}=N(),u=o("left"===t?"rule-condition.bracket.toggle-left":"rule-condition.bracket.toggle-right");return(0,r.jsx)("button",{"aria-label":u,"aria-pressed":i,className:c(s.bracketButton,{[s.bracketButtonActive]:i&&!a,[s.bracketButtonError]:a}),disabled:l,onClick:n,type:"button",children:"left"===t?"(":")"})},A=[{value:"and",labelKey:"rule-condition.operator.and"},{value:"or",labelKey:"rule-condition.operator.or"},{value:"and_not",labelKey:"rule-condition.operator.and-not"}],F=e=>{let{value:t,onChange:i,disabled:n=!1}=e,{t:l}=(0,d.useTranslation)();return(0,r.jsx)(s.Radio.Group,{disabled:n,onChange:e=>{i(e.target.value)},value:t,children:A.map(e=>(0,r.jsx)(s.Radio.Button,{value:e.value,children:l(e.labelKey)},e.value))})};var $=i(13947),M=i(73761);let O=e=>{let{condition:t,currentIndex:i,indentationLevel:l,allConditions:a,showOperator:o,isFirst:p,isLast:m}=e,{styles:g}=D(),{t:v}=(0,d.useTranslation)(),{conditionTypes:f,disabled:y,onConditionChange:T,onConditionRemove:I,onOperatorChange:E,onBracketToggle:N,onConditionMove:A,newlyAddedId:O}=b(),{attributes:_,listeners:L,setNodeRef:R,style:B}=(0,M.f)(t.id),z=(0,n.useMemo)(()=>f.find(e=>e.id===t.type),[f,t.type]),V=(0,n.useMemo)(()=>{var e;return(null==z||null==(e=z.isAvailable)?void 0:e.call(z))??!0},[z]),G=(null==z?void 0:z.label)!==void 0?v(z.label):t.type,U=k(i),q=(0,n.useMemo)(()=>!0===t.bracketLeft&&h(a,t.id,"left"),[a,t.id,t.bracketLeft]),W=(0,n.useMemo)(()=>!0===t.bracketRight&&h(a,t.id,"right"),[a,t.id,t.bracketRight]);return(0,r.jsxs)("div",{className:(()=>{let e=t.id===O;if(0===l)return e?g.conditionItemWrapperNew:"";let i=[g.borderLevel1,g.borderLevel2,g.borderLevel3],r=`${g.conditionItemWrapper} ${i[(l-1)%3]}`;return e?`${r} ${g.conditionItemWrapperNew}`:r})(),style:{marginLeft:`${32*l}px`,marginRight:`${32*l}px`},children:[o&&(0,r.jsx)(c.a,{margin:{top:"extra-small",bottom:"extra-small"},padding:"extra-small",children:(0,r.jsx)(u.s,{align:"center",gap:"extra-small",children:(0,r.jsx)(F,{disabled:y,onChange:e=>{E(t.id,e)},value:t.operator??"and"})})}),(0,r.jsxs)(u.s,{align:"stretch",gap:"extra-small",ref:R,style:B,..._,children:[(0,r.jsx)(P,{active:t.bracketLeft??!1,disabled:y,hasError:q,onToggle:()=>{N(t.id,"left")},side:"left"}),(0,r.jsx)("div",{className:g.conditionBoxWrapper,children:(0,r.jsxs)(j.k,{renderToolStripStart:(0,r.jsx)(x.Z,{additionalIcon:null==z?void 0:z.icon,additionalIconAutoColor:!0,additionalIconPosition:"before",dragger:!y&&{listeners:{..._,...L}},theme:"default",title:G,children:(0,r.jsxs)(C.B,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,r.jsxs)(u.s,{gap:"extra-small",children:[(0,r.jsx)(s.Dropdown,{disabled:y,menu:{items:U},trigger:["click"],children:(0,r.jsx)(w.K,{disabled:y,icon:{value:"plus-circle"},size:"small",tooltip:{title:v("rule-condition.add-condition")}})}),(0,r.jsx)(w.K,{disabled:y||p,icon:{value:"chevron-up"},onClick:()=>{p||A(t.id,i-1)},size:"small",tooltip:{title:v("rule-condition.move-up")}}),(0,r.jsx)(w.K,{disabled:y||m,icon:{value:"chevron-down"},onClick:()=>{m||A(t.id,i+1)},size:"small",tooltip:{title:v("rule-condition.move-down")}})]}),(0,r.jsx)(w.K,{disabled:y,icon:{value:"trash"},onClick:()=>{I(t.id)},size:"small",tooltip:{title:v("rule-condition.remove")}})]})}),children:[!V&&(null==z?void 0:z.notAvailableHint)!==void 0&&(0,r.jsx)(S.F,{banner:!0,message:v(z.notAvailableHint),showIcon:!0,type:"warning"}),void 0!==z?(0,r.jsx)("div",{className:g.conditionFormContainer,children:(0,r.jsx)($.A,{children:z.renderForm({value:t,onChange:e=>{T(t.id,e)},disabled:y})})}):(0,r.jsx)(S.F,{banner:!0,message:`Unknown condition type: ${t.type}`,type:"warning"})]})}),(0,r.jsx)(P,{active:t.bracketRight??!1,disabled:y,hasError:W,onToggle:()=>{N(t.id,"right")},side:"right"})]})]})};var _=i(27820);let L=e=>{let{afterIndex:t,disabled:i=!1,children:n}=e,{t:l}=(0,d.useTranslation)(),a=k(t),o=(0,r.jsx)(_.J,{disabled:i,icon:{value:"plus-circle"},children:l("rule-condition.add-condition")});return(0,r.jsx)(s.Dropdown,{disabled:i,menu:{items:a},trigger:["click"],children:n??o})},R=e=>{let{conditions:t}=e,{t:i}=(0,d.useTranslation)(),{disabled:l}=b(),a=(0,n.useMemo)(()=>(function(e){let t=[],i=0;for(let r of e)t.push(i),!0===r.bracketLeft&&i++,!0===r.bracketRight&&(i=Math.max(0,i-1));return t})(t),[t]),o=(0,n.useMemo)(()=>a.length>0?Math.max(...a):0,[a]),g=(0,n.useMemo)(()=>`${32*o*2+450}px`,[o]),h=(0,n.useMemo)(()=>(function(e){let t=0;for(let i of e)if(!0===i.bracketLeft&&t++,!0===i.bracketRight&&t--,t<0)return{valid:!1,errorType:p};return 0!==t?{valid:!1,errorType:m}:{valid:!0}})(t),[t]);return 0===t.length?(0,r.jsx)(c.a,{padding:{y:"extra-small"},children:(0,r.jsx)(u.s,{align:"center",justify:"flex-start",children:(0,r.jsx)(L,{afterIndex:-1,disabled:l})})}):(0,r.jsxs)(u.s,{style:{minWidth:g},vertical:!0,children:[t.map((e,i)=>(0,r.jsx)(O,{allConditions:t,condition:e,currentIndex:i,indentationLevel:a[i]??0,isFirst:0===i,isLast:i===t.length-1,showOperator:i>0},e.id)),(0,r.jsx)(c.a,{margin:{top:"small"},children:(0,r.jsx)(u.s,{justify:"flex-start",children:(0,r.jsx)(L,{afterIndex:t.length-1,disabled:l})})}),!h.valid&&(0,r.jsx)(c.a,{margin:{top:"medium"},children:(0,r.jsx)(s.Alert,{banner:!0,message:(()=>{if(null==h.errorType||""===h.errorType)return"";switch(h.errorType){case p:return i("rule-condition.validation.brackets-closing-without-opening");case m:return i("rule-condition.validation.brackets-missing-closing");default:return i("rule-condition.validation.brackets-invalid")}})(),showIcon:!0,type:"warning"})})]})},B=(0,E.createStyles)(e=>{let{css:t}=e;return{ruleConditionContainer:t` - width: 100%; - `}});var z=i(74234);let V=e=>{let{styles:t}=B(),{strategy:i,...n}=(0,z.w)();return(0,r.jsx)(y,{...e,children:e=>{let{conditions:l,handleDragEnd:s}=e,d=l.map(e=>e.id);return(0,r.jsx)("div",{className:t.ruleConditionContainer,children:(0,r.jsx)(a.DndContext,{onDragEnd:s,...n,children:(0,r.jsx)(o.SortableContext,{items:d,strategy:i,children:(0,r.jsx)(R,{conditions:l})})})})}})}},67914(e,t,i){"use strict";i.d(t,{D:()=>c});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(81898),d=i(60924);let c=(0,n.forwardRef)((e,t)=>{let{className:i,withoutAddon:n=!1,withPrefix:a=!1,withClear:c=!0,maxWidth:u=320,searchButtonIcon:p="search",...m}=e,{styles:g}=(0,d.I)(),h=o()(g.search,{[g.searchWithoutAddon]:n},i),v=m["data-testid"];return(0,r.jsx)(l.Input.Search,{allowClear:c&&{clearIcon:(0,r.jsx)(s.I,{className:g.closeIcon,value:"close"})},className:h,"data-testid":v,enterButton:!n&&(0,r.jsx)(s.I,{value:p}),prefix:a&&(0,r.jsx)(s.I,{className:g.searchIcon,options:{width:12,height:12},value:"search"}),ref:t,style:{maxWidth:u},...m})});c.displayName="SearchInput"},8236(e,t,i){"use strict";i.d(t,{$:()=>s});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{segmented:i` - .ant-segmented-group { - padding: 2px; - border-radius: ${t.borderRadius}px; - border: 1px solid ${t.colorBorderSecondary}; - background: ${t.colorBgLayout}; - box-shadow: ${t.boxShadow}; - - .ant-segmented-item { - color: ${t.itemColor}; - - &.ant-segmented-item-selected { - background: ${t.controlItemBgActive}; - border-color: ${t.controlItemBgActive}; - color: ${t.itemSelectedColor}; - } - } - } - `}});var o=i(86569);let s=l().forwardRef((e,t)=>{let{options:i,style:n,...l}=e,{styles:s}=a(),d={...n};return(0,r.jsx)("div",{className:s.segmented,ref:t,children:(0,r.jsx)(o.Segmented,{options:i,style:d,...l})})});s.displayName="Segmented"},1993(e,t,i){"use strict";i.d(t,{l:()=>f,G:()=>v});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(35864),d=i(18196),c=i(81898),u=i(44241),p=i(25085);let m=(0,u.createStyles)((e,t)=>{let{css:i,token:r}=e;return{selectContainer:i` - position: relative; - - &:hover { - .custom-select-icon { - color: ${r.colorPrimary}; - } - } - `,selectContainerWarning:i` - &:hover { - .custom-select-icon { - color: ${r.colorWarningHover} !important; - } - } - - .ant-select-status-warning { - &.ant-select-open, &.ant-select-focused { - .ant-select-selection-item { - color: ${r.colorText}; - } - - .ant-select-arrow { - color: ${r.colorWarningHover} !important; - } - } - - &:hover { - .ant-select-selection-item { - color: ${r.colorText}; - } - - .ant-select-arrow { - color: ${r.colorWarningHover} !important; - } - } - } - `,selectContainerError:i` - &:hover { - .custom-select-icon { - color: ${r.colorErrorHover} !important; - } - } - - .ant-select-status-error { - &.ant-select-open, &.ant-select-focused { - .ant-select-selection-item { - color: ${r.colorText}; - } - - .ant-select-arrow { - color: ${r.colorErrorHover} !important; - } - } - - &:hover { - .ant-select-selection-item { - color: ${r.colorText}; - } - - .ant-select-arrow { - color: ${r.colorErrorHover} !important; - } - } - } - `,selectContainerWithClear:i` - &:hover { - .ant-select:not(.ant-select-disabled):has(.ant-select-clear) { - .ant-select-arrow { - display: none; - } - } - } - `,selectContainerPrimary:i` - .ant-select:not(.ant-select-disabled) { - .ant-select-selector { - border-color: ${r.colorPrimaryBorder}; - } - - .ant-select-selection-item { - color: ${r.colorPrimary}; - } - - .ant-select-selection-placeholder { - color: ${r.colorPrimary}; - } - - .ant-select-arrow { - color: ${r.colorPrimary} !important; - } - - } - `,select:i` - width: ${!(0,d.Po)(t.width)?`${t.width}px`:"initial"}; - - .ant-select-selector { - padding: 0 ${r.controlPaddingHorizontal}px !important; - } - - .ant-select-arrow { - color: ${r.colorIcon} !important; - } - - // DEFAULT select - &.ant-select-open, &.ant-select-focused { - .ant-select-selection-item:not(:has(.pimcore-workflow-place-indicator)) { - color: ${r.colorPrimary}; - } - - .ant-select-arrow { - color: ${r.colorPrimary} !important; - } - } - - &:hover { - .ant-select-selection-item:not(:has(.pimcore-workflow-place-indicator)) { - color: ${r.colorPrimary}; - } - - .ant-select-arrow { - color: ${r.colorPrimary} !important; - } - } - - // MULTIPLE select - &.ant-select-multiple { - &.ant-select { - .ant-select-selector { - padding: 2px ${r.controlPaddingHorizontal}px 2px ${r.paddingXXS}px !important; - } - } - - &:hover { - .ant-select-selection-item { - .ant-select-selection-item-content { - color: ${r.colorText} !important; - } - } - } - } - - // DISABLED state - &.ant-select.ant-select-disabled { - .ant-select-selector { - border-color: ${r.colorBorder} !important; - } - - .ant-select-selection-item { - color: ${r.colorTextDisabled}; - } - - .ant-select-arrow { - color: ${r.colorTextDisabled} !important; - } - - &.versionFieldItem { - .ant-select-selection-item { - color: ${r.colorText} !important; - } - } - - &.versionFieldItem:not(.versionFieldItemHighlight) { - .ant-select-selector { - border-color: transparent !important; - } - } - - &.versionFieldItemHighlight { - .ant-select-selector { - background-color: ${r.Colors.Brand.Warning.colorWarningBg} !important; - } - } - } - - &.ant-select--inherited { - .ant-select-selector { - background: ${r.colorBgContainerDisabled} !important; - color: ${r.colorTextDisabled}; - - .ant-select-selection-item-remove .anticon { - color: ${r.colorTextDisabled}; - } - - .ant-select-selection-item-content { - color: ${r.colorTextDisabled} !important; - } - } - - &.ant-select-multiple { - &:hover { - .ant-select-selection-item { - .ant-select-selection-item-content { - color: ${r.colorTextDisabled} !important; - } - } - } - } - } - `,arrowIcon:i` - pointer-events: none !important - `,selectWithCustomIcon:i` - &.ant-select { - .ant-select-selector { - padding: 0 ${r.controlPaddingHorizontal}px 0 ${r.controlPaddingHorizontal+16+r.marginXXS}px !important; - } - } - `,customIcon:i` - position: absolute; - left: 10px; - top: 50%; - transform: translateY(-50%); - z-index: 1; - color: ${r.colorIcon}; - `,customIconActive:i` - color: ${r.colorPrimary} !important; - `,customIconWarning:i` - color: ${r.colorWarningHover}; - `,customIconError:i` - color: ${r.colorErrorHover}; - `,skeletonLoading:i` - width: ${(0,p.toCssDimension)(t.skeletonWidth,"100%")}; - max-width: ${(0,p.toCssDimension)(t.skeletonMaxWidth,"100%")}; - min-width: ${(0,p.toCssDimension)(t.skeletonMinWidth,"auto")}; - display: block; - - .ant-skeleton, - .ant-skeleton-input { - width: ${(0,p.toCssDimension)(t.skeletonWidth,"100%")} !important; - max-width: ${(0,p.toCssDimension)(t.skeletonMaxWidth,"100%")} !important; - min-width: ${(0,p.toCssDimension)(t.skeletonMinWidth,"auto")} !important; - display: block; - } - `}});var g=i(21429),h=i(52112);let v={normal:150},f=(0,n.forwardRef)((e,t)=>{let i,a,u,p,{customIcon:f,customArrowIcon:y,mode:b,status:x,className:j,allowClear:w,inherited:C,value:S,width:T,minWidth:I,theme:k="default",loadingSkeleton:E=!1,dataTestId:D,...N}=e,{t:P}=(0,g.useTranslation)(),A=(0,n.useRef)(null),F=(0,h.q)(),[$,M]=(0,n.useState)(!1),[O,_]=(0,n.useState)(!1);(0,n.useImperativeHandle)(t,()=>A.current);let L=(()=>{if(void 0!==T){if("number"==typeof T)return T;if("string"==typeof T&&T in v)return v[T]}return"multiple"===b?null==F?void 0:F.large:null==F?void 0:F.medium})();"number"==typeof I&&(p=I),"string"==typeof I&&(p=v[I]);let R=N.style,B=L??(null==R?void 0:R.width)??(null==R?void 0:R.maxWidth)??"100%",{styles:z}=m({width:L,theme:k,skeletonWidth:B,skeletonMaxWidth:(null==R?void 0:R.maxWidth)??"100%",skeletonMinWidth:p??(null==R?void 0:R.minWidth)});if(E)return(0,r.jsx)("div",{className:o()(z.skeletonLoading,j),children:(0,r.jsx)(l.Skeleton.Input,{active:!0,size:"small"===N.size?"small":"large"===N.size?"large":"default"})});let V=!(0,d.Po)(f),G="warning"===x,U="error"===x,q=o()("studio-select",z.selectContainer,{[z.selectContainerWarning]:G,[z.selectContainerError]:U,[z.selectContainerWithClear]:!0===w,[z.selectContainerPrimary]:"primary"===k}),W=o()(j,z.select,{[z.selectWithCustomIcon]:V,"ant-select--inherited":C}),K=o()(z.customIcon,"custom-select-icon",{[z.customIconActive]:$||O,[z.customIconWarning]:($||O)&&G,[z.customIconError]:($||O)&&U}),H={maxWidth:L,minWidth:p,...N.style};return(0,r.jsxs)("div",{className:q,"data-testid":D,children:[" ",V&&(0,r.jsx)(c.I,{className:K,value:f}),(0,r.jsx)(l.Select,{allowClear:w,className:W,menuItemSelectedIcon:"multiple"===b?(0,r.jsx)(l.Checkbox,{checked:!0}):null,mode:b,notFoundContent:(0,r.jsxs)(l.Flex,{align:"center",justify:"center",children:[(0,r.jsx)(c.I,{className:"m-r-mini",value:"warning-circle"})," ",P("no-data-available")]}),onBlur:()=>{_(!1)},onDropdownVisibleChange:()=>{M(!$)},onFocus:()=>{_(!0)},ref:A,status:x,style:H,suffixIcon:(i=!(0,d.Po)(y)&&(0,s.isString)(y),a=$?"chevron-up":"chevron-down",u=i?y:a,(0,r.jsx)(c.I,{className:z.arrowIcon,value:u})),value:S,...N})]})});f.displayName="SelectComponent"},86646(e,t,i){"use strict";i.d(t,{j:()=>s});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(74325);let o=(0,i(44241).createStyles)((e,t)=>{let i,{token:r,css:n}=e,{marginBottom:l}=t,a=(i={none:0,mini:r.marginXXS,"extra-small":r.marginXS,small:r.marginSM,normal:r.margin,medium:r.marginMD,large:r.marginLG,"extra-large":r.marginXL,maxi:r.marginXXL})[l]??i.normal;return{container:n` - padding: ${r.paddingXS}px; - margin-bottom: ${a}px; - `,containerWithBorder:n` - padding: ${r.paddingXS}px; - border-bottom: 1px solid ${r.colorBorderSecondary}; - margin-bottom: ${a}px; - `,containerAsFormLabel:n` - padding: ${r.paddingXS}px; - margin-bottom: ${a}px; - `,containerAsFormLabelWithBorder:n` - padding: ${r.paddingXS}px; - margin-bottom: ${a}px; - position: relative; - - &::after { - content: ''; - position: absolute; - bottom: 0; - left: 0; - height: 1px; - background: ${r.colorBorderSecondary}; - width: 100vw; - margin-left: -50vw; - left: 50%; - } - `,title:n` - margin: 0 !important; - line-height: 20px !important; - `}}),s=e=>{let{children:t,withBorder:i=!1,asFormLabel:n=!1,className:s,marginBottom:d="extra-small"}=e,{styles:c}=o({marginBottom:d}),u=l()(n?i?c.containerAsFormLabelWithBorder:c.containerAsFormLabel:i?c.containerWithBorder:c.container,s);return(0,r.jsx)("div",{className:u,children:(0,r.jsx)(a.h,{titleClass:c.title,children:t})})}},34366(e,t,i){"use strict";i.d(t,{G:()=>a,I:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,initialEntries:i=[],initialButtons:a=[],initialSizing:o="default",initialHighlights:s=[],initialActiveTab:d=""}=e,[c,u]=(0,n.useState)(i),[p,m]=(0,n.useState)(a),[g,h]=(0,n.useState)(o),[v,f]=(0,n.useState)(s),[y,b]=(0,n.useState)(d),x=e=>{u(t=>{let i=t.findIndex(t=>t.key===e.key);if(-1!==i){let r=[...t];return r[i]=e,r}return[...t,e]})},j=e=>{u(t=>t.filter(t=>t.key!==e)),y===e&&b("")},w=e=>{m(t=>{let i=t.findIndex(t=>t.key===e.key);if(-1!==i){let r=[...t];return r[i]=e,r}return[...t,e]})},C=e=>{m(t=>t.filter(t=>t.key!==e))},S=e=>{f(t=>t.includes(e)?t.filter(t=>t!==e):[...t,e])},T=e=>{c.some(t=>t.key===e)&&b(e)},I=()=>{b("")},k=e=>{y===e?b(""):b(e)},E=(0,n.useMemo)(()=>({entries:c,buttons:p,sizing:g,highlights:v,activeTab:y,setEntries:u,setButtons:m,setSizing:h,setHighlights:f,setActiveTab:b,addEntry:x,removeEntry:j,addButton:w,removeButton:C,toggleHighlight:S,openTab:T,closeTab:I,toggleTab:k}),[c,p,g,v,y]);return(0,r.jsx)(l.Provider,{value:E,children:t})}},10883(e,t,i){"use strict";i.d(t,{B:()=>p});var r=i(74848);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{sidebar:i` - display: flex; - height: 100%; - - .sidebar__navigation { - display: flex; - width: 45px; - padding: 4px 8px ${t.paddingSM}px 8px; - flex-direction: column; - align-items: center; - flex-shrink: 0; - align-self: stretch; - border-left: 1px solid rgba(0, 0, 0, 0.08); - justify-content: space-between; - color: ${t.colorIconSidebar}; - background: ${t.colorBgToolbar}; - - .sidebar__navigation__tabs, - .sidebar__navigation__buttons { - .pimcore-icon { - flex-shrink: 0; - color: ${t.colorIconSidebar}; - - &:hover { - color: ${t.colorIconHover}; - cursor: pointer; - } - } - } - - .sidebar__navigation__tabs { - .entry { - display: flex; - width: 45px; - padding: ${t.paddingXS}px ${t.paddingXXS}px; - justify-content: center; - align-items: center; - - &:not(.sidebar--active).entry--highlighted { - .pimcore-icon { - background: ${t.colorFillQuaternary}; - border-radius: 2px; - outline: 8px solid ${t.colorFillQuaternary}; - } - } - - .pimcore-icon { - flex-shrink: 0; - color: ${t.colorIconSidebar}; - - &:hover { - color: ${t.colorIconHover}; - cursor: pointer; - } - } - - &.sidebar--active { - background: ${t.colorFillQuaternary}; - border-right: 2px solid ${t.colorPrimaryActive}; - - .pimcore-icon { - color: ${t.colorPrimaryActive} - } - } - } - }, - - .sidebar__navigation__buttons - .button { - &.button--highlighted { - .pimcore-icon { - background: ${t.colorFillQuaternary}; - border-radius: 2px; - outline: 8px solid ${t.colorFillQuaternary}; - color: ${t.colorPrimary}; - } - } - } - } - - .sidebar__content { - position: relative; - overflow: auto; - width: 250px; - - .tab { - display: none; - - &.sidebar--active { - display: flex; - width: 100%; - height: 100%; - } - } - - &:not(.expanded) { - display: none; - } - - &--sizing-medium { - width: 272px; - } - - &--sizing-large { - width: 432px; - } - } - `}},{hashPriority:"low"});var l=i(47867),a=i(55638),o=i(7814),s=i(34366),d=i(21429),c=i(35864),u=i(70361);let p=e=>{let{entries:t,buttons:i=[],sizing:p="default",highlights:m=[],translateTooltips:g=!1}=e,{styles:h}=n(),v=(0,l.useContext)(s.I),{t:f}=(0,d.useTranslation)(),y=t.map(e=>({...e,label:"TRANSLATED_LABEL"})),b=null==i?void 0:i.map(e=>({...e,label:"TRANSLATED_LABEL"})),[x,j]=(0,l.useState)(""),w=(null==v?void 0:v.activeTab)??x,C=(null==v?void 0:v.toggleTab)??j;function S(e){if(null!=v)v.toggleTab(e);else{if(e===w)return void C("");C(e)}}return(0,r.jsx)(u.F,{gap:"extra-small",children:(0,r.jsxs)("div",{className:h.sidebar,children:[(0,r.jsxs)("div",{className:"sidebar__navigation",children:[(0,r.jsx)("div",{className:"sidebar__navigation__tabs",role:"tablist",children:y.map((e,t)=>(0,r.jsx)(o.m,{placement:"left",title:g&&!(0,c.isNil)(null==e?void 0:e.tooltip)?f(e.tooltip):null==e?void 0:e.tooltip,children:(0,r.jsx)("div",{"aria-controls":e.key,"aria-selected":e.key===w,className:["entry",e.key===w?"sidebar--active":"",m.includes(e.key)?"entry--highlighted":""].join(" "),onClick:()=>{S(e.key)},onKeyDown:()=>{S(e.key)},role:"tab",tabIndex:t,children:e.icon})},e.key))}),(0,r.jsx)("div",{className:"sidebar__navigation__buttons",children:b.map((e,t)=>{let{component:i,key:n,...o}=e;(0,l.isValidElement)(i)||(0,a.Ay)(new a.$g("SidebarButton must be a valid react component"));let s=i.type,d=i.props;return(0,r.jsx)(s,{...o,...d},n)})})]}),(0,r.jsx)("div",{className:`sidebar__content sidebar__content--sizing-${p} `+(""!==w?"expanded":""),children:y.map((e,t)=>(0,r.jsx)("div",{"aria-labelledby":e.key,className:"tab "+(e.key===w?"sidebar--active":""),id:e.key,role:"tabpanel",tabIndex:t,children:e.component},e.key))})]})})}},44922(e,t,i){"use strict";i.d(t,{A:()=>u});var r=i(74848);i(47867);var n=i(86569),l=i(32753),a=i(64756),o=i(25750),s=i(29740),d=i(60142),c=i(52112);let u=e=>{let t=e.value??null,i=(0,c.q)(),u={maxWidth:null==i?void 0:i.large,...e.style};return(0,r.jsxs)("div",{className:e.className,style:u,children:[!0===e.showValue&&(0,r.jsx)(a.a,{padding:{x:"mini"},children:(0,r.jsxs)("div",{children:["(",null==t?(0,d.t)("no-value-set"):(0,l.Z)({value:t}),")"]})}),(0,r.jsxs)(o.s,{align:!0===e.vertical?"left":"center",className:"w-full",vertical:e.vertical,children:[(0,r.jsx)(n.Slider,{...e,className:"w-full",onChange:t=>{void 0!==e.onChange&&e.onChange(t)},value:t??void 0}),!0===e.allowClear&&null!==t&&!0!==e.disabled&&(0,r.jsx)(a.a,{padding:{x:"mini"},children:(0,r.jsx)(n.Tooltip,{title:(0,d.t)("set-to-null"),children:(0,r.jsx)(s.K,{icon:{value:"trash"},onClick:()=>{var t;null==(t=e.onChange)||t.call(e,null)},type:"default",variant:"static"})})})]})]})}},7909(e,t,i){"use strict";i.d(t,{n:()=>d,v:()=>s});var r,n=i(74848),l=i(47867);let a=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{button:t` - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - width: 16px; - height: 16px; - - &:hover { - cursor: pointer; - } - - .sort-button__arrow { - color: ${i.colorTextDisabled}; - } - - .sort-button__asc { - margin-bottom: -4px; - } - - &.sort-button--sorting-asc { - .sort-button__asc { - color: ${i.colorPrimary}; - } - } - - &.sort-button--sorting-desc { - .sort-button__desc { - color: ${i.colorPrimary}; - } - } - `}},{hashPriority:"low"});var o=i(81898);let s=((r={}).ASC="asc",r.DESC="desc",r),d=e=>{let{onSortingChange:t,...i}=e,{styles:r}=a(),[d,c]=(0,l.useState)(i.value);return(0,l.useEffect)(()=>{c(i.value)},[i.value]),(0,n.jsxs)("div",{className:[r.button,"sort-button",`sort-button--sorting-${d}`].join(" "),onClick:u,onKeyUp:u,role:"button",tabIndex:0,children:[(0,n.jsx)(o.I,{className:"sort-button__arrow sort-button__asc",value:"chevron-up"}),(0,n.jsx)(o.I,{className:"sort-button__arrow sort-button__desc",value:"chevron-down"})]});function u(){d===s.ASC?p(s.DESC):d===s.DESC&&!0===i.allowUnsorted?p(void 0):p(s.ASC)}function p(e){void 0!==t?t(e):c(e)}}},2338(e,t,i){"use strict";i.d(t,{$:()=>a});var r=i(74848),n=i(86569);i(47867);let l=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{space:t` - &.space--sizing-none { - gap: 0; - } - - &.space--sizing-mini { - gap: ${i.sizeXXS}px; - } - - &.space--sizing-extra-small { - gap: ${i.sizeXS}px; - } - - &.space--sizing-small { - gap: ${i.sizeSM}px; - } - - &.space--sizing-normal { - gap: ${i.size}px; - } - - &.space--sizing-medium { - gap: ${i.sizeMD}px; - } - - &.space--sizing-large { - gap: ${i.sizeLG}px; - } - - &.space--sizing-extra-large { - gap: ${i.sizeXL}px; - } - - &.space--sizing-maxi { - gap: ${i.sizeXXL}px; - } - `}}),a=e=>{let{size:t="small",className:i,...a}=e,{styles:o}=l(),s=[o.space,i];return s.push(`space--sizing-${t}`),(0,r.jsx)(n.Space,{className:s.join(" "),...a})}},13755(e,t,i){"use strict";i.d(t,{t:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(66514),a=i(81898);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{spin:i` - @keyframes spin { - from { - transform: rotate(0deg); - } - to { - transform: rotate(360deg); - } - } - - @keyframes spin-dot { - 0% { - opacity: 0.3; - } - 50% { - opacity: 1; - } - 100% { - opacity: 0.3; - } - } - - animation-name: spin; - animation-duration: 2s; - animation-timing-function: linear; - animation-iteration-count: infinite; - - circle { - animation: spin-dot 2s infinite; - - &:nth-child(1) { - animation-delay: 0.5s; - } - - &:nth-child(2) { - animation-delay: 1.5s; - } - - &:nth-child(3) { - animation-delay: 1s; - } - - - &:nth-child(4) { - animation-delay: 2s; - } - } - `,spinContainer:i` - display: flex; - flex-direction: column; - gap: 8px; - justify-content: center; - align-items: center; - height: 100px; - width: 100px; - color: ${t.colorPrimary}; - `}}),s=e=>{let{asContainer:t=!1,type:i="dotted",tip:s,...d}=e,{styles:c}=o(),u=(0,r.jsx)(a.I,{className:c.spin,value:"spinner"});return"classic"===i&&(u=(0,r.jsx)(l.A,{spin:!0})),(0,r.jsxs)(r.Fragment,{children:[!t&&(0,r.jsx)(r.Fragment,{children:u}),t&&(0,r.jsxs)("div",{className:c.spinContainer,children:[(0,r.jsx)(n.Spin,{indicator:(0,r.jsx)(r.Fragment,{children:u}),...d}),void 0!==s&&(0,r.jsx)("div",{children:s})]})]})}},67693(e,t,i){"use strict";i.d(t,{c:()=>d});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(29740);let s=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{dividerContainer:t` - position: relative; - min-width: 24px; - outline: none; - `,resizable:t` - cursor: col-resize; - `,divider:t` - position: absolute; - left: 50%; - width: 1px; - height: 100%; - overflow: hidden; - background-color: ${i.Divider.colorSplit}; - `,iconContainer:t` - position: absolute; - top: 50%; - transform: translateY(-50%); - cursor: col-resize; - `,withToolbar:t` - min-width: 1px; - top: ${i.paddingSM}px; - height: calc(100% - ${i.paddingSM}px); - z-index: 1; - `}}),d=e=>{let{onMouseResize:t,onKeyboardResize:i,withToolbar:l=!1}=e,d=(0,n.useRef)(null),c=(0,n.useRef)(!1),[u,p]=(0,n.useState)(!1),[m,g]=(0,n.useState)(!1),[h,v]=(0,n.useState)(!1),{styles:f}=s();(0,n.useEffect)(()=>(document.addEventListener("mousemove",j),document.addEventListener("mouseup",x),()=>{document.removeEventListener("mousemove",j),document.removeEventListener("mouseup",x)}),[]);let y=void 0!==t,b=y&&(u||m||h),x=e=>{c.current=!1,v(!1),e.target!==d.current&&p(!1)},j=e=>{c.current&&void 0!==t&&(null==t||t(e),v(!0))};return(0,r.jsxs)("div",{className:a()(f.dividerContainer,{[f.resizable]:y,[f.withToolbar]:l}),onMouseDown:()=>{c.current=!0},onMouseEnter:()=>{p(!0)},onMouseLeave:()=>{p(!1)},ref:d,children:[(0,r.jsx)("div",{className:f.divider,onBlur:()=>{g(!1)},onFocus:()=>{g(!0)},onKeyDown:i,role:"button",tabIndex:0}),b&&(0,r.jsx)(o.K,{className:f.iconContainer,hideShadow:!0,icon:{value:"chevron-selector-horizontal",options:{height:14,width:14}},type:"default",variant:"static"})]})}},56176(e,t,i){"use strict";i.d(t,{i:()=>a});var r=i(74848),n=i(47867);let l=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{splitLayoutItem:t` - position: relative; - width: 100%; - overflow: hidden; - `}}),a=(0,n.forwardRef)((e,t)=>{let{children:i,size:n=50,minSize:a,maxSize:o}=e,{styles:s}=l();return(0,r.jsx)("div",{className:s.splitLayoutItem,ref:t,style:{width:`${n}%`,minWidth:void 0!==a?`${a}px`:"auto",maxWidth:void 0!==o?`${o}px`:"auto"},children:i})})},85274(e,t,i){"use strict";i.d(t,{n:()=>u});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(56176),d=i(67693);let c=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{splitLayout:t` - display: flex; - height: 100%; - width: 100%; - `}}),u=e=>{let{leftItem:t,rightItem:i,withDivider:a=!1,resizeAble:u=!1,withToolbar:p=!1,leftItemFullWidth:m=!1,rightItemFullWidth:g=!1}=e,h=(0,n.useRef)(null),v=(0,n.useRef)(null),f=(0,n.useRef)(null),{styles:y}=c(),{children:b,...x}=t,{children:j,...w}=i,[C,S]=(0,n.useState)(x),[T,I]=(0,n.useState)(w),k=m&&!g,E=g&&!m;return(0,r.jsxs)(l.Flex,{className:o()("split-layout",y.splitLayout),ref:f,children:[!E&&(0,r.jsx)(s.i,{ref:h,...C,size:m?100:C.size,children:b}),a&&!k&&!E&&(0,r.jsx)(d.c,{onKeyboardResize:u?e=>{let t=h.current.getBoundingClientRect(),i=v.current.getBoundingClientRect();"ArrowLeft"===e.key&&(S({...C,size:t.width-5}),I({...T,size:i.width+5})),"ArrowRight"===e.key&&(S({...C,size:t.width+5}),I({...T,size:i.width-5}))}:void 0,onMouseResize:u?e=>{let t=h.current.getBoundingClientRect(),i=v.current.getBoundingClientRect(),r=f.current.getBoundingClientRect();S({...C,size:(t.width+e.movementX)/r.width*100}),I({...T,size:(i.width-e.movementX)/r.width*100})}:void 0,withToolbar:p}),!k&&(0,r.jsx)(s.i,{ref:v,...T,size:g?100:T.size,children:j})]})}},62461(e,t,i){"use strict";i.d(t,{B:()=>o});var r=i(74848);i(47867);var n=i(2338),l=i(86569);let a=(0,i(44241).createStyles)(e=>{var t;let{css:i,token:r}=e,n=(null==(t=r.Split)?void 0:t.colorFillSecondary)??r.colorFillSecondary;return{split:i` - align-items: center; - - .ant-divider { - margin-inline: 0; - } - - .ant-space-item:empty + .ant-space-item-split, - .ant-space-item-split:has(+ .ant-space-item:empty) { - display: none; - } - - &.split--theme-secondary { - .ant-divider { - border-color: ${n}; - } - } - - &.split--divider-size-small { - .ant-divider { - height: 16px; - } - } - - &.split--divider-size-large { - .ant-divider { - height: 24px; - } - } - `}}),o=e=>{let{theme:t="primary",dividerSize:i="large",...o}=e,{styles:s}=a(),d=[s.split,"split--theme-"+t,"split--divider-size-"+i].join(" ");return(0,r.jsx)(n.$,{className:d,split:(0,r.jsx)(l.Divider,{type:"vertical"}),...o})}},32773(e,t,i){"use strict";i.d(t,{N:()=>f});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(44241);let s=(0,o.createStyles)(e=>{let{token:t,css:i}=e;return{stackListItem:i` - border-radius: 4px; - border: 1px solid ${t.colorBorder}; - background-color: #fff; - - .stack-list-item__title { - display: flex; - align-items: center; - gap: 2px; - padding: 4px; - } - - .stack-list-item__body { - padding: 0 4px 4px 4px; - - .ant-picker { - width: 100%; - } - } - - .stack-list-item__content { - flex: 1; - min-width: 0; // allows the content to shrink and enables text ellipsis - } - - &.stack-list-item { - .ant-collapse.ant-collapse-small>.ant-collapse-item>.ant-collapse-header { - padding: 0; - } - - .ant-collapse.collapse-item--theme-card-with-highlight.collapse-item--bordered, .ant-collapse.collapse-item--theme-default.collapse-item--bordered { - border: none; - } - - .ant-collapse .ant-collapse-item:last-child { - border: none; - } - } - `}});var d=i(88754),c=i(74979),u=i(29740),p=i(2046);let m="default",g=e=>{let{id:t,children:i,body:l,sortable:a=!1,renderLeftToolbar:o,renderRightToolbar:g,type:h=m}=e,{styles:v}=s(),{listeners:f,setNodeRef:y,setActivatorNodeRef:b,transform:x,transition:j}=(0,d.useSortable)({id:t}),w={transform:c.Ks.Translate.toString(x),transition:j??void 0};return(0,n.useMemo)(()=>{if(h===m)return(0,r.jsxs)("div",{className:["stack-list-item",v.stackListItem].join(" "),ref:y,style:w,children:[(0,r.jsxs)("div",{className:"stack-list-item__title",children:[a&&(0,r.jsx)(u.K,{icon:{value:"drag-option"},ref:b,theme:"secondary",...f}),void 0!==o&&(0,r.jsx)("div",{className:"stack-list-item__left-toolbar",children:o}),(0,r.jsx)("div",{className:"stack-list-item__content",children:i}),void 0!==g&&(0,r.jsx)("div",{className:"stack-list-item__right-toolbar",children:g})]}),void 0!==l&&(0,r.jsx)("div",{className:"stack-list-item__body",children:l})]});if("collapse"===h){let e=(0,r.jsxs)("div",{className:"stack-list-item__title",children:[a&&(0,r.jsx)(u.K,{icon:{value:"drag-option"},ref:b,theme:"secondary",...f}),void 0!==o&&(0,r.jsx)("div",{className:"stack-list-item__left-toolbar",children:o}),(0,r.jsx)("div",{className:"stack-list-item__content",children:i})]});return(0,r.jsx)("div",{className:["stack-list-item",v.stackListItem].join(" "),ref:y,style:w,children:(0,r.jsx)(p.XP,{className:v.stackListItem,contentPadding:"none",extra:g,extraPosition:"end",label:(0,r.jsx)(r.Fragment,{children:e}),size:"small",children:void 0!==l?(0,r.jsx)("div",{className:"stack-list-item__body",children:l}):void 0})})}throw Error(`Unknown StackListItem type: ${h}`)},[e,x])},h=(0,o.createStyles)(e=>{let{token:t,css:i}=e;return{stackList:i` - display: flex; - flex-direction: column; - gap: 8px; - `}});var v=i(41834);let f=e=>{let{items:t,onItemsChange:i,sortable:l}=e,[o,s]=(0,n.useState)(t),{styles:c}=h();return(0,n.useEffect)(()=>{s(t)},[t]),(0,n.useMemo)(()=>(0,r.jsxs)("div",{className:a()("stack-list",c.stackList),children:[!0===l&&(0,r.jsx)(v.DndContext,{onDragEnd:u,children:(0,r.jsx)(d.SortableContext,{items:o.map(e=>e.key??e.id),children:o.map(e=>(0,r.jsx)("div",{className:"stack-list__item",children:(0,r.jsx)(g,{...e})},e.key??e.id))})}),!0!==l&&(0,r.jsx)(r.Fragment,{children:o.map(e=>(0,r.jsx)("div",{className:"stack-list__item",children:(0,r.jsx)(g,{...e})},e.key??e.id))})]}),[o]);function u(e){let{active:t,over:r}=e;null!==r&&t.id!==r.id&&s(e=>{let n=e.findIndex(e=>e.key??e.id===t.id),l=e.findIndex(e=>e.key??e.id===r.id),a=(0,d.arrayMove)(e,n,l);return void 0!==i&&i(a),a})}}},18848(e,t,i){"use strict";i.d(t,{d:()=>s});var r=i(74848);i(47867);var n=i(86569),l=i(25750),a=i(10140),o=i(35864);let s=e=>{let{labelLeft:t,labelRight:i,tooltip:s,tooltipPlacement:d="right",...c}=e;return(0,r.jsxs)(l.s,{align:"center",gap:"extra-small",children:[t,(0,r.jsx)(n.Switch,{...c}),i,!(0,o.isNil)(s)&&(0,r.jsx)(a.V,{placement:d,tooltip:s})]})}},93294(e,t,i){"use strict";i.d(t,{k:()=>d});var r=i(74848);i(47867);var n=i(88286),l=i(5785),a=i(64756),o=i(21429),s=i(25085);let d=e=>{let{items:t,border:i,collapsed:d,collapsible:c,title:u,theme:p="card-with-highlight",contentPadding:m="none",hasStickyHeader:g=!1,extra:h,extraPosition:v,onClose:f,size:y="small",defaultActiveKey:b,activeKey:x,onChange:j,...w}=e,{t:C}=(0,o.useTranslation)(),S=t.map((e,t)=>{let n=e.label??e.title,l=(0,s.isNonEmptyString)(n)?C(n):`Tab ${t+1}`;return{...e,key:t.toString(),label:l,forceRender:!0,closable:e.closable,children:(0,r.jsx)(a.a,{padding:!0===i?"small":{x:"none",y:"small"},children:e.children})}});return(0,r.jsx)(l.P,{border:i,collapsed:d,collapsible:c,contentPadding:m,extra:h,extraPosition:v,theme:p,title:(0,s.isNonEmptyString)(u)?C(u):u,children:(0,r.jsx)(n.t,{activeKey:x,defaultActiveKey:b,hasStickyHeader:g,items:S,noTabBarMargin:!0,onChange:j,onClose:void 0!==f?e=>{void 0!==f&&f(e)}:void 0,size:y,tabPosition:w.tabPosition})})}},88286(e,t,i){"use strict";i.d(t,{t:()=>u});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{tabs:i` - .ant-tabs-nav .ant-tabs-tab { - padding-left: ${t.paddingXXS}px; - padding-right: ${t.paddingXXS}px; - - + .ant-tabs-tab { - margin-left: ${t.marginSM}px; - } - } - - .ant-tabs-nav .ant-tabs-tab .ant-tabs-tab-btn { - display: flex; - align-items: center; - - & > * { - display: flex; - height: 100%; - } - } - - .ant-tabs-nav .ant-tabs-tab button { - color: ${t.itemColor}; - } - - .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-btn button { - color: ${t.itemActiveColor} !important; - } - - &.ant-tabs-card.ant-tabs-small > .ant-tabs-nav .ant-tabs-tab { - padding-left: ${t.paddingXXS}px; - padding-right: ${t.paddingXXS}px; - } - - &.tabs--has-sticky-header > .ant-tabs-nav { - position: sticky; - top: 0; - z-index: 99999; - background: ${t.colorBgContainer}; - } - - &.ant-tabs-top > .ant-tabs-nav { - margin-bottom: 0; - - & + .ant-tabs-content-holder { - padding-top: ${t.marginXS}px; - } - } - - &.ant-tabs-bottom > .ant-tabs-nav { - margin-top: 0; - - & + .ant-tabs-content-holder { - padding-bottom: ${t.marginXS}px; - } - } - - .ant-tabs-nav-list { - padding-left: ${t.paddingXS}px; - padding-right: ${t.paddingXS}px; - align-items: center; - } - - &.tabs--no-padding .ant-tabs-nav-list { - padding-left: 0; - padding-right: 0; - } - - &.tabs--no-tab-bar-margin.ant-tabs-top>.ant-tabs-nav+.ant-tabs-content-holder { - padding-top: 0; - } - - &.ant-tabs-line .ant-tabs-nav .ant-tabs-tab { - border-radius: 0; - background: none; - border: none; - - .ant-tabs-tab-remove { - margin: 0 0 0 ${t.marginXS}px; - padding: 0; - opacity: 0; - font-size: 8px; - } - } - - &.ant-tabs .ant-tabs-tab-btn .ant-tabs-tab-icon:not(:last-child) { - margin-inline-end: ${t.marginXS}px; - } - - &.ant-tabs-line .ant-tabs-nav .ant-tabs-tab-remove { - transition: all ${t.motionDurationSlow}; - width: 0; - opacity: 0; - } - - &.ant-tabs-line .ant-tabs-nav .ant-tabs-tab:hover .ant-tabs-tab-remove { - transition-delay: ${t.motionDurationSlow}; - } - - &.ant-tabs-line .ant-tabs-nav .ant-tabs-tab:hover .ant-tabs-tab-remove, - &.ant-tabs-line .ant-tabs-nav .ant-tabs-tab-active .ant-tabs-tab-remove { - opacity: 1; - width: 16px; - } - - &.ant-tabs-line > .ant-tabs-nav .ant-tabs-ink-bar { - visibility: visible; - } - - &.tabs--full-height { - height: 100%; - - .ant-tabs-content { - height: 100%; - } - } - `,middleClickButton:i` - border: none; - background: none; - padding: 0; - font: inherit; - cursor: inherit; - `}},{hashPriority:"high"});var s=i(8651),d=i.n(s),c=i(35864);let u=l().forwardRef((e,t)=>{let{items:i,className:l,activeKey:s,onClose:u,hasStickyHeader:p=!1,fullHeight:m=!1,...g}=e,{styles:h}=o(),v=d()("ant-tabs-line",h.tabs,{"tabs--has-sticky-header":p},l,{"tabs--no-padding":g.noPadding,"tabs--no-tab-bar-margin":g.noTabBarMargin,"tabs--full-height":m}),f=(0,n.useCallback)((e,t)=>{"remove"===t&&void 0!==u&&u(e)},[u]),y=(null==i?void 0:i.some(e=>!1!==e.closable))??!1,b=void 0!==u&&y?"editable-card":"line",x=(0,n.useCallback)(e=>{if(1===e.button&&void 0!==u){let t=e.currentTarget.dataset.tabKey;if(!(0,c.isUndefined)(t)){let r=null==i?void 0:i.find(e=>e.key===t);(null==r?void 0:r.closable)!==!1&&(e.preventDefault(),u(t))}}},[u,i]),j=(0,n.useMemo)(()=>null==i?void 0:i.map(e=>({...e,label:(0,r.jsx)("button",{className:h.middleClickButton,"data-tab-key":e.key,onMouseDown:x,type:"button",children:e.label})})),[i,x]);return(0,r.jsx)(a.Tabs,{activeKey:s,className:v,hideAdd:!0,items:j,onEdit:f,type:b,...g})})},62268(e,t,i){"use strict";i.d(t,{F:()=>c});var r=i(74848),n=i(1993),l=i(35864),a=i(47867);let o=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{tagInput:t` - width: 100%; - - .ant-select-selector { - cursor: text !important; - } - - .ant-select-selection-search { - cursor: text !important; - flex: 1; - min-width: 150px; - } - - .ant-select-selection-search-input { - width: 100% !important; - } - `}});var s=i(8651),d=i.n(s);let c=e=>{let{value:t,onChange:i,className:s,onBlur:c,...u}=e,{styles:p}=o(),[m,g]=(0,a.useState)(""),h=(0,a.useMemo)(()=>(0,l.isNil)(t)?[]:(0,l.isArray)(t)?t:(0,l.isString)(t)&&!(0,l.isEmpty)(t.trim())?t.split(",").map(e=>e.trim()).filter(e=>!(0,l.isEmpty)(e)):[],[t]),v=(0,a.useMemo)(()=>h.map(e=>({label:e,value:e})),[h]),f=(0,a.useCallback)(e=>{null==i||i(e),g("")},[i]),y=(0,a.useCallback)(e=>{let t=m.trim();""!==t&&(null==i||i([...h,t])),g(""),null==c||c(e)},[m,h,i,c]);return(0,r.jsx)(n.l,{...u,className:d()(p.tagInput,s),mode:"tags",onBlur:y,onChange:f,onSearch:g,open:!1,options:v,searchValue:m,suffixIcon:null,value:h})}},57502(e,t,i){"use strict";i.d(t,{L:()=>s});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(41423),o=i(25750);let s=e=>{let{list:t,itemGap:i,tagListClassNames:n,tagListItemClassNames:s,wrap:d=!0}=e;return(0,r.jsx)(o.s,{gap:"small",rootClassName:l()(n),vertical:!0,children:t.map((e,t)=>(0,r.jsx)(o.s,{gap:i,rootClassName:l()(s),wrap:d,children:e.map((e,i)=>(0,r.jsx)(a.v,{...e,children:e.children},`${t}-${i}`))},t))})}},41423(e,t,i){"use strict";i.d(t,{v:()=>u});var r=i(74848),n=i(47867),l=i.n(n),a=i(86569),o=i(8651),s=i.n(o),d=i(81898);let c=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{tag:t` - &.ant-tag { - margin-inline-end: 0; - - &.ant-tag-default { - background-color: ${i.colorFillTertiary}; - color: ${i.colorTextLabel}; - border-color: ${i.Tag.colorBorder}; - } - - &.theme-transparent { - background-color: ${i.colorFillTertiary}; - border-color: ${i.colorBorder}; - } - - .anticon + span { - margin-inline-start: 4px; - } - } - `,tooltip:t` - .ant-tooltip-inner { - color: ${i.colorTextLightSolid}; - background-color: ${i.colorBgSpotlight}; - border-radius: ${i.borderRadius}px; - } - - .ant-tooltip-arrow { - &::before { - background-color: ${i.colorBgSpotlight}; - } - } - `}}),u=l().forwardRef((e,t)=>{let{children:i,icon:n,iconName:l,theme:o,className:u,...p}=e,{styles:m}=c(),g=s()(m.tag,u,{[`theme-${o}`]:o});return(0,r.jsx)(a.Tag,{className:g,icon:(()=>{if(void 0!==l)return(0,r.jsx)(d.I,{className:"tag-icon",options:{width:"12px",height:"12px"},value:l});return n??null})(),ref:t,...p,children:i})});u.displayName="Tag"},91883(e,t,i){"use strict";i.d(t,{R:()=>u,r:()=>p});var r=i(11264),n=i(23080),l=i(3319),a=i(76394),o=i(30922),s=i(30831),d=i(94709);let c={html:{codeMirrorExtension:(0,r.html)(),fileExtensions:["html","htm","shtm","shtml","xhtml","cfm","cfml","cfc","dhtml","xht","tpl","twig","kit","jsp","aspx","ascx","asp","master","cshtml","vbhtml"]},css:{codeMirrorExtension:(0,n.css)(),fileExtensions:["css","less","scss","sass"]},javascript:{codeMirrorExtension:(0,l.javascript)({jsx:!0}),fileExtensions:["js","js.erb","jsm","_js","jsx"]},json:{codeMirrorExtension:(0,a.json)(),fileExtensions:["json","map"]},xml:{codeMirrorExtension:(0,o.xml)(),fileExtensions:["xml","wxs","wxl","wsdl","rss","atom","rdf","xslt","xsl","xul","xsd","xbl","mathml","config","plist","xaml"]},sql:{codeMirrorExtension:(0,s.sql)(),fileExtensions:["sql"]},markdown:{codeMirrorExtension:(0,d.markdown)(),fileExtensions:["md","markdown","mdown","mkdn"]}},u=e=>null==e?[]:[c[e].codeMirrorExtension],p=e=>{let t=e.split(".").pop();if(void 0===t)return null;for(let e in c)if(c[e].fileExtensions.includes(t))return e;return null}},95884(e,t,i){"use strict";i.d(t,{t:()=>c});var r=i(74848);i(47867);var n=i(6492),l=i.n(n),a=i(8651),o=i.n(a),s=i(91883);let d=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{editor:i` - height: 100%; - width: 100%; - - & .CodeMirror { - height: 100%; - width: 100%; - } - `}},{hashPriority:"low"}),c=e=>{let{lineNumbers:t=!0,className:i,language:n,textValue:a,setTextValue:c}=e,{styles:u}=d();return(0,r.jsx)(l(),{basicSetup:{lineNumbers:t},className:o()(u.editor,i),extensions:(0,s.R)(n),onChange:e=>{c(e)},value:a})}},22014(e,t,i){"use strict";i.d(t,{E:()=>l});var r=i(74848);i(47867);let{Text:n}=i(86569).Typography,l=e=>(0,r.jsx)(n,{...e})},28083(e,t,i){"use strict";i.d(t,{f:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(8651),a=i.n(l);let o=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{textarea:i` - &.ant-input-disabled { - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - } - } - `,inherited:i` - background: ${t.colorBgContainerDisabled}; - color: ${t.colorTextDisabled}; - &:focus-within, &:hover { - background: ${t.colorBgContainerDisabled}; - } - `}});var s=i(52112);let d=e=>{let{inherited:t,className:i,style:l,...d}=e,{styles:c}=o(),u=(0,s.q)(),p={maxWidth:null==u?void 0:u.large,...l};return(0,r.jsx)(n.Input.TextArea,{className:a()(c.textarea,i,{[c.inherited]:t}),style:p,...d})}},74325(e,t,i){"use strict";i.d(t,{h:()=>o});var r=i(74848),n=i(86569);i(47867);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{flex:i` - .pimcore-icon { - margin-right: 4px; - } - - &.title--theme-primary .pimcore-icon { - color: ${t.colorPrimary}; - } - - &.title--theme-secondary .pimcore-icon { - color: ${t.colorTextSecondary}; - } - `,title:i` - &.pimcore-title.ant-typography { - font-weight: 600; - font-size: 12px; - - &.title--weight-normal { - font-weight: 400; - } - } - .pimcore-icon { - margin-right: 4px; - } - - &.pimcore-title.ant-typography.title--theme-primary { - color: ${t.colorPrimary}; - } - - &.pimcore-title.ant-typography.title--theme-secondary { - color: ${t.colorTextSecondary}; - } - `}},{hashPriority:"low"}),{Title:a}=n.Typography,o=e=>{let{children:t,icon:i,titleClass:o,theme:s="primary",weight:d="bold",...c}=e,{styles:u}=l(),p=[u.title,"pimcore-title",`title--theme-${s}`,o??null,`title--weight-${d}`].join(" ");return(0,r.jsxs)(n.Flex,{align:"center",className:[u.flex,`title--theme-${s}`].join(" "),children:[i,(0,r.jsx)(a,{className:p,...c,children:t})]})}},96940(e,t,i){"use strict";i.d(t,{M:()=>s});var r=i(74848);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{toolbar:i` - width: 100%; - height: 48px; - padding: ${t.paddingXS}px; - - &.toolbar--theme-primary { - // @todo: use token - background-color: #F5F3FA; - } - - &.toolbar--theme-secondary { - background-color: ${t.colorBgBase}; - } - - &.toolbar--position-top { - border-bottom: 1px solid ${t.colorBorderTertiary}; - } - - &.toolbar--position-bottom { - border-top: 1px solid ${t.colorBorderTertiary}; - } - - &.toolbar--position-content { - border-top: 1px solid ${t.colorBorderTertiary}; - border-bottom: 1px solid ${t.colorBorderTertiary}; - } - - &.toolbar--border-default { - border-color: ${t.colorBorderTertiary}; - } - - &.toolbar--border-primary { - border-color: ${t.colorPrimaryBorder}; - } - - &.toolbar--size-small { - height: 40px; - } - - &.toolbar--size-auto { - height: 100%; - } - `}});var l=i(86569);i(47867);var a=i(27628),o=i(64756);let s=e=>{let{children:t,size:i="default",justify:s="space-between",align:d,theme:c="primary",position:u="bottom",borderStyle:p="default",padding:m,margin:g,...h}=e,{styles:v}=n(),f=[v.toolbar,"toolbar",`toolbar--theme-${c}`,`toolbar--position-${u}`,`toolbar--size-${i}`,`toolbar--border-${p}`].join(" ");return(0,r.jsx)(o.a,{className:f,margin:g,padding:m,children:(0,r.jsx)(a.o,{children:(0,r.jsx)(l.Flex,{align:d,className:"w-full",gap:16,justify:s,...h,children:t})})})}},88929(e,t,i){"use strict";i.d(t,{k:()=>d});var r=i(74848),n=i(64756);i(47867);var l=i(86569);let a=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{"tool-strip-box":t` - .tool-strip-box__content { - border: 2px solid rgba(0, 0, 0, 0.04); - border-radius: ${i.borderRadius}px; - } - - &.tool-strip-box--with-start .tool-strip-box__content { - border-top-left-radius: 0; - } - - &.tool-strip-box--with-end .tool-strip-box__content { - border-top-right-radius: 0; - } - - &.tool-strip-box--docked .tool-strip-box__content { - border-radius: 0; - border-bottom: 0; - border-left: 0; - border-right: 0; - } - - &.tool-strip-box--docked .tool-strip-box__strip--start { - border-top-left-radius: 0; - } - - &.tool-strip-box--docked .tool-strip-box__strip--end { - border-top-right-radius: 0; - } - `}});var o=i(8651),s=i.n(o);let d=e=>{let{className:t,docked:i=!1,children:o,renderToolStripEnd:d,renderToolStripStart:c,padding:u={x:"extra-small",y:"small"},...p}=e,{styles:m}=a(),g=s()(t,"tool-strip-box",m["tool-strip-box"],{"tool-strip-box--with-start":void 0!==c,"tool-strip-box--with-end":void 0!==d,"tool-strip-box--docked":i});return(0,r.jsxs)("div",{className:g,children:[(0,r.jsxs)(l.Flex,{align:"flex-end",justify:"space-between",children:[void 0!==c?(0,r.jsx)("div",{className:"tool-strip-box__strip--start",children:c}):(0,r.jsx)("div",{}),void 0!==d?(0,r.jsx)("div",{className:"tool-strip-box__strip--end",children:d}):(0,r.jsx)("div",{})]}),(0,r.jsx)(n.a,{className:"tool-strip-box__content",padding:u,...p,children:o})]})}},54872(e,t,i){"use strict";i.d(t,{Z:()=>h});var r=i(74848),n=i(47867),l=i.n(n),a=i(44241);let o=(0,a.createStyles)(e=>{let{css:t,token:i}=e;return{"tool-strip":t` - background: #f5f5f5; - border-top-left-radius: ${i.borderRadius}px; - border-top-right-radius: ${i.borderRadius}px; - line-height: 0; - display: flex; - align-items: center; - transition: all 0.2s ease-in-out; - - &.tool-strip--theme-inverse { - background: ${i.colorFillInverse}; - } - - &.tool-strip--rounded { - border-radius: ${i.borderRadius}px; - } - - &.tool-strip--activate-on-hover { - overflow: hidden; - - .tool-strip__children-container { - transition: max-width 0.08s ease-in-out, opacity 0.05s ease-in-out; - } - - &:not(.tool-strip--activated) { - .tool-strip__children-container { - max-width: 0; - overflow: hidden; - } - - } - - &.tool-strip--activated { - .tool-strip__children-container { - max-width: 1000px; - transition: max-width 0.3s ease-in-out, opacity 0.2s ease-in-out 0.1s; - } - - position: relative; - z-index: 10000; - box-shadow: 2px 0 4px rgba(255, 255, 255, 0.15), 1px 0 0 rgba(255, 255, 255, 0.15); - } - } - - &.tool-strip--disabled { - background: ${i.colorBorder} !important; - - &.tool-strip--theme-inverse { - background: ${i.colorBorder} !important; - } - } - `,dragger:t` - display: flex; - align-items: center; - justify-content: center; - height: 100%; - `,"draggable-area":t` - cursor: grab; - - &:active { - cursor: grabbing; - } - `,title:t` - white-space: nowrap; - `}});var s=i(8651),d=i.n(s),c=i(64756),u=i(81898),p=i(62461),m=i(22014),g=i(43588);let h=e=>{let{children:t,className:i,theme:n="default",dragger:s=!1,title:h,activateOnHover:v=!1,rounded:f=!1,disabled:y=!1,additionalIcon:b,additionalIconPosition:x="after",additionalIconAutoColor:j=!1}=e,{styles:w,theme:C}=o(),[S,T]=l().useState(!1),I=!y&&(!v||S),k=d()("tool-strip",w["tool-strip"],`tool-strip--theme-${n}`,{"tool-strip--activate-on-hover":v&&!y,"tool-strip--activated":I,"tool-strip--rounded":f,"tool-strip--disabled":y},i),E=l().useMemo(()=>{let e=(e,t)=>({Button:{colorLink:e,colorLinkHover:e,colorLinkActive:e},Typography:{colorText:t}});if("inverse"===n)if(y){let t=C.colorText,i=C.colorText;return{components:{...e(t,i),Button:{...e(t,i).Button,colorTextDisabled:C.colorText},Split:{colorFillSecondary:C.colorBorder}}}}else{let t=I?C.colorButtonInverse:C.colorInactiveInverse,i=I?C.colorTextInverse:C.colorInactiveInverse;return{components:{...e(t,i),Button:{...e(t,i).Button,colorTextDisabled:C.colorInactiveInverse},Split:{colorFillSecondary:C.colorDividerInverse}}}}{let t=I?void 0:C.colorTextDisabled;return{components:e(t,t)}}},[n,I,C,y]),D=l().useMemo(()=>"object"==typeof s?s:{},[s]),N=()=>{let e;if(!1===s)return null;if(y)e=C.colorIcon;else{let t="inverse"===n,i=t?C.colorButtonInverse:C.colorText,r=t?C.colorInactiveInverse:C.colorTextDisabled;e=I?i:r}return(0,r.jsx)("div",{className:w.dragger,style:{color:e},children:(0,r.jsx)(u.I,{options:{width:16,height:17},value:"drag-option"})})},P=()=>{if(void 0===b)return null;let e="object"==typeof b,t=e?b.value:b,i=function(e){var t;let{additionalIcon:i,additionalIconAutoColor:r,disabled:n,toolStripTheme:l,isActivated:a,token:o}=e;if("object"!=typeof i||void 0===i.colorToken)return r?n?o.colorText:"inverse"===l?a?o.colorTextInverse:o.colorInactiveInverse:a?o.colorText:o.colorTextDisabled:null==(t=o.Button)?void 0:t.defaultColor}({additionalIcon:b,additionalIconAutoColor:j,disabled:y,toolStripTheme:n,isActivated:I,token:C}),l=e?{...b,value:void 0}:{};return(0,r.jsx)(c.a,{margin:"before"===x?{left:"mini",right:"extra-small"}:{left:"mini",right:"mini"},children:(0,r.jsx)(u.I,{...l,options:{width:16,height:16,...void 0!==i&&{color:i}},value:t})})};return(0,r.jsx)(a.ThemeProvider,{theme:E,children:(0,r.jsx)(c.a,{className:k,onMouseEnter:v&&!y?()=>{T(!0)}:void 0,onMouseLeave:v&&!y?()=>{T(!1)}:void 0,padding:void 0!==h&&!1===s?{x:"mini",y:"mini",left:"extra-small"}:"mini",children:(()=>{if(v)return(0,r.jsxs)(g.Flex,{align:"center",className:!1===s||y?void 0:w["draggable-area"],style:{height:"100%"},...!1!==s&&!y?D.listeners:{},children:[N(),"before"===x&&P(),void 0!==h&&(0,r.jsx)(c.a,{margin:{right:"mini"},children:(0,r.jsx)(m.E,{className:w.title,children:h})}),"after"===x&&P(),void 0!==t&&!y&&(0,r.jsx)("div",{className:"tool-strip__children-container",children:(0,r.jsxs)(p.B,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,r.jsx)("div",{}),t]})})]});if(!1===s&&void 0===h&&void 0!==t)return t;let e=(0,r.jsxs)(g.Flex,{align:"center",className:!1===s||y?void 0:w["draggable-area"],style:{height:"100%"},...!1!==s&&!y?D.listeners:{},children:[N(),"before"===x&&P(),void 0!==h&&(0,r.jsx)(c.a,{margin:{right:"mini"},children:(0,r.jsx)(m.E,{className:w.title,children:h})}),"after"===x&&P()]});return void 0===t||y?e:(0,r.jsxs)(p.B,{dividerSize:"small",size:"mini",theme:"secondary",children:[e,t]})})()})})}},10140(e,t,i){"use strict";i.d(t,{V:()=>o});var r=i(74848);i(47867);var n=i(7814),l=i(61646);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{tooltipIcon:i` - cursor: help; - color: ${t.colorIcon}; - `}}),o=e=>{let{tooltip:t,placement:i}=e,{styles:o}=a();return(0,r.jsx)(n.m,{placement:i,title:t,children:(0,r.jsx)(l.A,{className:o.tooltipIcon})})}},7814(e,t,i){"use strict";i.d(t,{m:()=>l});var r=i(74848);i(47867);var n=i(86569);let l=e=>(0,r.jsx)(n.Tooltip,{...e})},93966(e,t,i){"use strict";i.d(t,{l:()=>p});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(81898),d=i(21429);let c=e=>{let{title:t,actions:i,onSelected:a,onActionsClick:o}=e,{t:c}=(0,d.useTranslation)(),u=(0,n.useMemo)(()=>{let e=[],n=e=>e.map(e=>{let i=e.translationKey??`tree.actions.${e.key}`,l=e.menuKey??e.key;return void 0!==e.actions&&e.actions.length>0?{key:l,label:c(i),icon:(0,r.jsx)(s.I,{iconColorGroup:e.iconColorGroup,value:e.icon}),children:n(e.actions)}:{key:l,label:c(i),icon:(0,r.jsx)(s.I,{iconColorGroup:e.iconColorGroup,value:e.icon}),onClick:()=>{null==o||o(e.key,t)}}});return void 0!==i&&i.length>0&&e.push(...n(i)??[]),e},[i]),p=()=>(0,r.jsx)("button",{className:"ant-tree-title__btn",onClick:a,onKeyDown:e=>{("Enter"===e.key||"Escape"===e.key)&&null!=a&&a()},children:t});return(null==u?void 0:u.length)>0?(0,r.jsx)(l.Dropdown,{menu:{items:u},trigger:["contextMenu"],children:p()}):p()},u=(0,i(44241).createStyles)((e,t)=>{let{token:i,css:r}=e;return{treeContainer:r` - .ant-tree-list-holder-inner { - min-width: fit-content; - - & > .ant-tree-treenode { - .ant-tree-switcher { - width: ${!0===t.hasRoot?"24px":"0"}; - display: flex; - align-items: center; - justify-content: center; - } - } - - .ant-tree-treenode-leaf-last { - &:first-child { - .ant-tree-checkbox { - display: ${!0===t.isHideRootChecker?"none":"block"}; - } - } - } - - .ant-tree-node--has-drag-and-drop { - height: 24px; - - .ant-tree-iconEle { - display: flex; - align-items: center; - justify-content: center; - min-width: 24px; - } - - .ant-tree-node-content-wrapper { - display: flex; - } - - .ant-tree-title { - position: relative; - width: 100%; - flex-grow: 1; - } - - .ant-tree-title__btn { - text-align: left; - } - } - - .hotspot-droppable .ant-tree-title__btn { - position: relative; - border-top: 2px solid transparent; - border-bottom: 2px solid transparent; - height: 24px; - min-width: 100%; - } - - .dnd--hotspot-sorting-top-valid .ant-tree-title__btn { - &::before { - content: ''; - position: absolute; - top: -3px; - left: -48px; - right: 0; - height: 2px; - background-color: ${i.colorPrimary}; - } - - &::after { - content: ''; - position: absolute; - top: -6px; - left: -49px; - border-radius: 50%; - width: 7px; - height: 7px; - background-color: ${i.colorPrimary}; - } - } - - .dnd--hotspot-sorting-bottom-valid .ant-tree-title__btn { - &::before { - content: ''; - position: absolute; - bottom: -4px; - left: -48px; - right: 0; - height: 2px; - background-color: ${i.colorPrimary}; - } - - &::after { - content: ''; - position: absolute; - top: auto; - right: auto; - bottom: -6px; - left: -49px; - border-radius: 50%; - width: 7px; - height: 7px; - background-color: ${i.colorPrimary}; - } - } - - .dnd--hotspot-drop-middle-valid .ant-tree-title__btn { - &::after { - content: ''; - position: absolute; - top: 0; - left: -48px; - right: 0; - bottom: 0; - background: ${i.colorBgContainerDisabled}; - border-radius: ${i.borderRadius}px; - outline: 1px dashed ${i.colorBorder}; - } - } - - .ant-tree-treenode { - white-space: nowrap; - padding: 0 ${i.paddingXS}px; - position: relative; - margin-bottom: 0; - - @media (hover: hover) { - &:hover { - background-color: ${i.controlItemBgActiveHover}; - } - } - - &:focus { - outline: none; - background-color: ${i.controlItemBgActiveHover}; - } - - .ant-tree-node-content-wrapper { - padding: 0; - background: none; - - &:hover { - background: none; - } - } - - &::before { - display: none; - } - } - - .ant-tree-treenode-selected, - .ant-tree-treenode-selected:hover { - background-color: ${i.controlItemBgActive}; - } - } - - .ant-tree-treenode.ant-tree-treenode-draggable { - .ant-tree-switcher { - display: flex; - align-items: center; - justify-content: center; - margin-right: 0px; - - &:hover { - background-color: transparent !important; - } - } - - .ant-tree-switcher:not(.ant-tree-switcher-noop):hover:before { - background-color: transparent !important; - } - } - - .ant-tree-switcher-noop { - pointer-events: none; - } - - .ant-tree-switcher_close { - .ant-tree-switcher-icon { - svg { - transform: rotate(0deg); - } - } - } - - .ant-tree-switcher_open { - .ant-tree-switcher-icon { - svg { - transform: rotate(-180deg); - } - } - } - - .ant-tree-draggable-icon { - display: none; - } - - .ant-tree-title__btn { - background: transparent; - border: none; - color: ${i.colorTextTreeElement}; - cursor: pointer; - padding: 0; - font-family: ${i.fontFamily}; - font-size: ${i.fontSize}px; - - &:after { - content: ''; - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - } - } - - .tree-element-item--danger { - .ant-tree-title .ant-tree-title__btn { - color: ${i.colorError}; - } - - .ant-tree-icon__customize { - color: ${i.colorError}; - } - } - - .ant-tree-icon__customize { - position: relative; - top: 1px; - } - - ${!0===t.hideExpanders?".ant-tree-switcher { display: none !important; width: 0 !important; }":""} - `,noRoot:r` - .ant-tree { - background-color: red; - - .ant-tree-list-holder-inner > .ant-tree-treenode { - background-color: red; - - .ant-tree-switcher { - width: 0 - } - } - } - `}},{hashPriority:"high"}),p=e=>{let{checkStrictly:t,checkedKeys:i,treeData:a,className:d,defaultExpandedKeys:p,draggable:m,selectedKeys:g,onCheck:h,onActionsClick:v,onDragAndDrop:f,onSelected:y,onLoadData:b,onExpand:x,defaultExpandAll:j,withCustomSwitcherIcon:w,isHideRootChecker:C=!0,hasRoot:S=!0,hideExpanders:T,titleRender:I}=e,{styles:k}=u({isHideRootChecker:C,hasRoot:S,hideExpanders:T}),[E,D]=(0,n.useState)([]),[N,P]=(0,n.useState)(p??[0]);(0,n.useEffect)(()=>{void 0!==g&&D(g)},[g]),(0,n.useEffect)(()=>{void 0!==p&&P(p)},[p]);let A={...void 0!==p?{expandedKeys:N}:{}};return(0,r.jsx)(r.Fragment,{children:a.length>0&&(0,r.jsx)(l.Tree,{...A,allowDrop:e=>{let{dropNode:t,dropPosition:i,dragNode:r}=e;return"boolean"==typeof t.allowDrop?t.allowDrop&&0===i:void 0!==t.allowDrop&&t.allowDrop({dropNode:t,dropPosition:i,dragNode:r})},blockNode:!0,checkStrictly:t,checkable:void 0!==h,checkedKeys:i,className:o()(k.treeContainer,d),defaultExpandAll:j,draggable:m,loadData:null!==b?b:void 0,onCheck:(e,t)=>null==h?void 0:h(e,t),onDragStart:e=>{"function"!=typeof e.node.allowDrag||e.node.allowDrag({node:e.node})||e.event.preventDefault(),!1===e.node.allowDrag&&e.event.preventDefault()},onDrop:e=>{null==f||f({node:e.node,dragNode:e.dragNode,dropPosition:e.dropPosition,dropToGap:e.dropToGap})},onExpand:e=>{null!=x?x(e):P(e)},selectable:void 0!==y,selectedKeys:E,showIcon:!0,switcherIcon:()=>{if(!0!==T&&!1!==w)return(0,r.jsx)(s.I,{options:{width:16,height:16},value:"chevron-down"})},titleRender:e=>{let t=(0,r.jsx)(c,{actions:e.actions,onActionsClick:t=>null==v?void 0:v(e.key.toString(),t,e),onSelected:()=>{D([e.key]),null==y||y(e.key,e)},title:e.title});return(0,r.jsx)(r.Fragment,{children:void 0!==I?I(e,t):t})},treeData:a})})}},91191(e,t,i){"use strict";i.d(t,{p:()=>f});var r=i(74848),n=i(47867),l=i(21429),a=i(8651),o=i.n(a),s=i(88286),d=i(1993),c=i(22014),u=i(25750),p=i(81898),m=i(95112),g=i(27994),h=i(61549);let v=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{dropdown:i` - position: absolute; - width: 360px; - background-color: ${t.colorBgContainer}; - box-shadow: ${t.boxShadowSecondary}; - z-index: 1; - `,dropdownBottom:i` - top: 35px; - `,dropdownTop:i` - bottom: 35px; - `,tabs:i` - .ant-tabs-nav-list { - justify-content: space-around; - width: 100%; - } - - .ant-tabs-ink-bar { - width: 50% !important; - } - - .ant-tabs-content-holder { - padding: ${t.paddingXS}px; - } - `,btnGroupWrapper:i` - display: flex; - justify-content: flex-end; - padding: 7px ${t.paddingXS}px; - `}}),f=e=>{var t,i,a;let{userList:f,initialSharedUsers:y,roleList:b,initialSharedRoles:x,handleClose:j,handleApplyChanges:w,placement:C="bottom"}=e,S=(0,h.J)(),[T,I]=(0,n.useState)(y??[]),[k,E]=(0,n.useState)(x??[]),{t:D}=(0,l.useTranslation)(),{styles:N}=v(),P=e=>{let{labelName:t,iconName:i}=e;return(0,r.jsxs)(u.s,{align:"center",gap:"mini",children:[(0,r.jsx)(p.I,{value:i}),(0,r.jsx)(c.E,{children:t})]})},A=e=>{let{options:t,selectedOptions:i,placeholder:n,handleOnChange:l}=e;return(0,r.jsx)(d.l,{mode:"multiple",onChange:l,optionFilterProp:"searchValue",options:t,placeholder:D(n),showSearch:!0,value:i})},F=[{key:"users",label:D("user-management.users"),children:A({options:null==f||null==(i=f.items)||null==(t=i.filter(e=>(null==S?void 0:S.id)!==e.id))?void 0:t.map(e=>({value:e.id,label:P({labelName:null==e?void 0:e.username,iconName:"user"}),searchValue:null==e?void 0:e.username})),selectedOptions:T,placeholder:"user-management.user.search",handleOnChange:e=>{I(e)}})},{key:"roles",label:D("user-management.roles"),children:A({options:null==b||null==(a=b.items)?void 0:a.map(e=>({value:e.id,label:P({labelName:null==e?void 0:e.name,iconName:"shield"}),searchValue:null==e?void 0:e.name})),selectedOptions:k,placeholder:"user-management.role.search",handleOnChange:e=>{E(e)}})}];return(0,r.jsxs)("div",{className:o()(N.dropdown,{[N.dropdownBottom]:"bottom"===C,[N.dropdownTop]:"top"===C}),children:[(0,r.jsx)(s.t,{centered:!0,className:N.tabs,items:F}),(0,r.jsx)("div",{className:N.btnGroupWrapper,children:(0,r.jsx)(m.e,{items:[(0,r.jsx)(g.$,{onClick:j,children:D("button.cancel-edits")},"cancel"),(0,r.jsx)(g.$,{onClick:()=>{w({sharedUsers:T,sharedRoles:k})},type:"primary",children:D("button.apply")},"apply")]})})]})}},30302(e,t,i){"use strict";i.d(t,{G:()=>l});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{timeline:i` - padding-left: ${t.paddingXS}px; - - & > div { - position: relative; - margin: 0; - - padding: 3px 0 7px 21px; - - border-left: 2px solid rgba(0,0,0,6%); - } - - & > div:before { - content: ''; - - position: absolute; - margin-top: 16px; - margin-right: -4px; - right: 100%; - text-align: center; - - height: 6px; - width: 6px; - border-radius: 50%; - background-color: white; - border: 2px solid ${t.colorTextDisabled}; - } - - & > .is-active:before { - height: 10px; - width: 10px; - margin-right: -6px; - border-color: ${t.colorPrimary}; - } - - & > .is-published:before { - border-color: ${t.colorSuccess}; - `}},{hashPriority:"low"}),l=e=>{let{timeStamps:t}=e,{styles:i}=n();return(0,r.jsx)("div",{className:i.timeline,children:t})}},93869(e,t,i){"use strict";i.d(t,{Q:()=>d});var r=i(74848),n=i(81898),l=i(7814);i(47867);var a=i(8651),o=i.n(a);let s=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{subscriptionDetails:i` - position: relative; - - .subscription-details__icon { - position: absolute; - top: -4px; - right: 6px; - color: ${t.colorWarningActive}; - } - - .subscription-details__link { - display: block; - } - `}}),d=e=>{let{icon:t,tooltip:i,children:a,link:d}=e,{styles:c}=s();return(0,r.jsx)(l.m,{placement:"left",title:i,children:(0,r.jsx)("div",{className:o()("subscription-details",c.subscriptionDetails),children:(0,r.jsxs)("a",{className:"subscription-details__link",href:d,rel:"noopener noreferrer",target:"_blank",children:[(0,r.jsx)("div",{className:"subscription-details__icon",children:(0,r.jsx)(n.I,{options:{width:13,height:13},value:t})}),a]})})})}},74152(e,t,i){"use strict";i.d(t,{e:()=>n});var r=i(62649);let n={...{global:{feedback:{type:r.I.SLOT,name:"global.feedback"},modal:{type:r.I.SLOT,name:"global.modal"}},asset:{listing:{toolbar:{component:{type:r.I.SINGLE,name:"asset.listing.toolbar"},left:{type:r.I.SLOT,name:"asset.listing.toolbar.left",defaultEntries:[{name:"batch-actions",priority:100}]},right:{type:r.I.SLOT,name:"asset.listing.toolbar.right",defaultEntries:[{name:"pagination",priority:100}]}}},editor:{container:{type:r.I.SINGLE,name:"asset.editor.container"},tab:{customMetadata:{type:r.I.SINGLE,name:"asset.editor.tab.customMetadata"},embeddedMetadata:{type:r.I.SINGLE,name:"asset.editor.tab.embeddedMetadata"},versions:{type:r.I.SINGLE,name:"asset.editor.tab.versions"}},toolbar:{slots:{left:{type:r.I.SLOT,name:"asset.editor.toolbar.slots.left",defaultEntries:[{name:"contextMenu",priority:100}]},right:{type:r.I.SLOT,name:"asset.editor.toolbar.slots.right",defaultEntries:[{name:"workflowMenu",priority:100},{name:"saveButton",priority:200}]}}}},tree:{contextMenu:{type:r.I.SINGLE,name:"asset.tree.contextMenu"},tooltip:{type:r.I.SINGLE,name:"asset.tree.tooltip"},node:{meta:{type:r.I.SLOT,name:"asset.tree.node.meta",defaultEntries:[{name:"lockIcon",priority:100}]}}}},dataObject:{listing:{toolbar:{component:{type:r.I.SINGLE,name:"dataObject.listing.toolbar"},left:{type:r.I.SLOT,name:"dataObject.listing.toolbar.left",defaultEntries:[{name:"batch-actions",priority:100}]},right:{type:r.I.SLOT,name:"dataObject.listing.toolbar.right",defaultEntries:[{name:"pagination",priority:100}]}}},editor:{toolbar:{slots:{left:{type:r.I.SLOT,name:"dataObject.editor.toolbar.slots.left",defaultEntries:[{name:"contextMenu",priority:100},{name:"languageSelection",priority:200}]},right:{type:r.I.SLOT,name:"dataObject.editor.toolbar.slots.right",defaultEntries:[{name:"workflowMenu",priority:100},{name:"saveButtons",priority:200}]}}},tab:{listing:{type:r.I.SINGLE,name:"dataObject.editor.tab.listing"},edit:{type:r.I.SINGLE,name:"dataObject.editor.tab.edit"},preview:{type:r.I.SINGLE,name:"dataObject.editor.tab.preview"},versions:{type:r.I.SINGLE,name:"dataObject.editor.tab.versions"},variants:{type:r.I.SINGLE,name:"dataObject.editor.tab.variants"}}},tree:{contextMenu:{type:r.I.SINGLE,name:"dataObject.tree.contextMenu"},tooltip:{type:r.I.SINGLE,name:"dataObject.tree.tooltip"},node:{meta:{type:r.I.SLOT,name:"dataObject.tree.node.meta",defaultEntries:[{name:"lockIcon",priority:100}]}}}},document:{editor:{container:{type:r.I.SINGLE,name:"document.editor.container"},toolbar:{slots:{left:{type:r.I.SLOT,name:"document.editor.toolbar.slots.left",defaultEntries:[{name:"contextMenu",priority:100}]},right:{type:r.I.SLOT,name:"document.editor.toolbar.slots.right",defaultEntries:[{name:"workflowMenu",priority:100},{name:"saveButtons",priority:200}]}}}},tree:{contextMenu:{type:r.I.SINGLE,name:"document.tree.contextMenu"},tooltip:{type:r.I.SINGLE,name:"document.tree.tooltip"},node:{meta:{type:r.I.SLOT,name:"document.tree.node.meta",defaultEntries:[{name:"navigationExcludeIcon",priority:100},{name:"lockIcon",priority:200}]}}}},element:{editor:{tab:{properties:{type:r.I.SINGLE,name:"element.editor.tab.properties"},schedule:{type:r.I.SINGLE,name:"element.editor.tab.schedule"},dependencies:{type:r.I.SINGLE,name:"element.editor.tab.dependencies"},workflow:{type:r.I.SINGLE,name:"element.editor.tab.workflow"},notesAndEvents:{type:r.I.SINGLE,name:"element.editor.tab.notesAndEvents"},tags:{type:r.I.SINGLE,name:"element.editor.tab.tags"}}}},leftSidebar:{slot:{type:r.I.SLOT,name:"leftSidebar.slot",defaultEntries:[{name:"mainNav",priority:100},{name:"search",priority:200}]}},rightSidebar:{slot:{type:r.I.SLOT,name:"rightSidebar.slot",defaultEntries:[{name:"logoContainer",priority:100}]},logo:{image:{type:r.I.SINGLE,name:"rightSidebar.logo.image"},subscriptionDetails:{type:r.I.SINGLE,name:"rightSidebar.logo.subscriptionDetails"}}},wysiwyg:{editor:{type:r.I.SINGLE,name:"wysiwyg.editor"}},form:{login:{type:r.I.SLOT,name:"form.login"}}}}},81031(e,t,i){"use strict";i.d(t,{b:()=>l});var r=i(74848);i(47867);var n=i(77885);let l=e=>{let{component:t,props:i}=e,l=(0,n.eC)().get(t);return(0,r.jsx)(l,{...i})}},69634(e,t,i){"use strict";i.d(t,{Y:()=>a});var r=i(74848),n=i(35864);i(47867);var l=i(77885);let a=e=>{let{slot:t,props:i,onRenderComponent:a}=e,o=(0,l.eC)().getSlotComponents(t);return(0,r.jsx)(r.Fragment,{children:o.map((e,t)=>{let{component:l,name:o}=e,s=(0,r.jsx)(l,{...i},`component-${o}`);return(0,n.isUndefined)(a)?s:a(s,{name:o,index:t,props:i})})})}},13947(e,t,i){"use strict";i.d(t,{A:()=>s});var r=i(74848),n=i(47867),l=i(35864),a=i(86569);class o extends n.Component{static getDerivedStateFromError(e){return{hasError:!0,error:e}}componentDidCatch(e,t){console.log("Error caught by ErrorBoundary:",e,t)}render(){let{children:e,fallback:t}=this.props,{hasError:i,error:n}=this.state;return i?(0,l.isEmpty)(t)?(0,r.jsx)(a.Flex,{align:"center",gap:10,justify:"center",style:{position:"absolute",inset:0},children:(0,r.jsx)(a.Typography,{children:(null==n?void 0:n.message)??"Something went wrong."})}):t:e}constructor(e){super(e),this.state={hasError:!1,error:null}}}let s=o},80223(e,t,i){"use strict";i.d(t,{R:()=>o,V:()=>a});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,n.createContext)(void 0),o=e=>{let{children:t}=e,[i,o]=(0,n.useState)(new Map),s=(e,t)=>{o(i=>{let r=new Map(i);return r.set(e,{id:e,component:t}),r})},d=e=>{o(t=>{let i=new Map(t);return i.delete(e),i})},c=e=>i.has(e),u=(0,n.useMemo)(()=>({addModal:s,removeModal:d,hasModal:c}),[]);return(0,r.jsxs)(a.Provider,{value:u,children:[t,Array.from(i.values()).map(e=>(0,r.jsx)(l().Fragment,{children:e.component},e.id))]})}},93960(e,t,i){"use strict";i.d(t,{N:()=>u});var r=i(74848),n=i(47867),l=i(44241),a=i(63364),o=i(10600),s=i(20260);let d=e=>{let{children:t,themeChain:i}=e;if(0===i.length)return(0,r.jsx)(r.Fragment,{children:t});let[n,...a]=i;return(0,r.jsx)(l.ThemeProvider,{theme:n.config,children:(0,r.jsx)(d,{themeChain:a,children:t})})},c=e=>{let{children:t,id:i=s.u.light}=e,l=(0,a.Lt)(o.K["DynamicTypes/ThemeRegistry"]),c=(0,n.useMemo)(()=>{try{return l.resolveThemeChain(i).themes.map(e=>({config:e.config}))}catch(e){return console.error("Failed to resolve theme chain:",e),[]}},[l,i]);return(0,r.jsx)(d,{themeChain:c,children:t})},u=e=>{let{children:t,id:i="studio-default-light"}=e;return(0,r.jsx)(c,{id:i,children:t})}},62668(e,t,i){"use strict";i.d(t,{K:()=>o});var r=i(74848),n=i(47867);let l=(0,i(44241).createStyles)((e,t)=>{let{css:i}=e,{contentSelector:r}=t;return{wrapper:i` - /* Use display:contents to avoid affecting layout */ - display: contents; - - /* Hide when content selector matches an empty element */ - &:has(${r}:empty) { - display: none; - } - `}});var a=i(35864);let o=e=>{let{children:t,contentSelector:i,parentSelector:o}=e,{styles:s}=l({contentSelector:i}),{ref:d}=function(e){let{parentSelector:t}=e,i=(0,n.useRef)(null);return(0,n.useEffect)(()=>{if((0,a.isNil)(t))return;let e=i.current;if((0,a.isNil)(e))return;let r=e.closest(t);if(!(0,a.isNil)(r))return"none"===window.getComputedStyle(e).display&&(r.style.display="none"),()=>{r.style.display=""}},[t]),{ref:i}}({parentSelector:o});return(0,r.jsx)("div",{className:s.wrapper,ref:d,children:t})}},89114(e,t,i){"use strict";i.d(t,{m:()=>u});var r=i(74848),n=i(81898);i(47867);var l=i(21429),a=i(58200),o=i(21313),s=i(79472),d=i(17388),c=i(68153);let u=()=>{let{t:e}=(0,l.useTranslation)(),{isTreeActionAllowed:t}=(0,d.H)(),i=(e,t)=>{let i=`${(0,a.$)()}/assets/${e}/download`;(0,o.l)(i,t)},u=(e,t)=>{i("string"==typeof e.id?e.id:e.id.toString()),null==t||t()};return{download:i,downloadContextMenuItem:(t,i)=>({label:e("asset.tree.context-menu.download"),key:"download",icon:(0,r.jsx)(n.I,{value:"download"}),hidden:"folder"===t.type||!(0,s.o)(t.permissions,"view"),onClick:()=>{u(t,i)}}),downloadTreeContextMenuItem:i=>({label:e("asset.tree.context-menu.download"),key:"download",icon:(0,r.jsx)(n.I,{value:"download"}),hidden:!t(c.o.Download)||"folder"===i.type||!(0,s.o)(i.permissions,"view"),onClick:()=>{u(i)}}),downloadGridContextMenuItem:t=>{let i=t.original??{};if(void 0!==i.id&&void 0!==i.isLocked&&void 0!==i.permissions)return{label:e("asset.tree.context-menu.download"),key:"download",icon:(0,r.jsx)(n.I,{value:"download"}),onClick:()=>{u(i)}}}}}},21724(e,t,i){"use strict";i.d(t,{$B:()=>j,Cc:()=>z,EI:()=>C,Hh:()=>V,KL:()=>F,O0:()=>x,PB:()=>b,Vx:()=>f,Y$:()=>v,YH:()=>D,YI:()=>P,_Y:()=>y,a6:()=>N,aG:()=>L,di:()=>h,fP:()=>O,f_:()=>G,gA:()=>S,gz:()=>A,iC:()=>I,kV:()=>T,lB:()=>_,pm:()=>R,ro:()=>k,tn:()=>w,tx:()=>g,uA:()=>E,vD:()=>M,wH:()=>$,we:()=>B});var r=i(88605),n=i(46881),l=i(40331),a=i(93063),o=i(50967),s=i(76359),d=i(53119),c=i(84555),u=i(95674),p=i(92634),m=i(34992);let g=(0,r.createEntityAdapter)({}),h=(0,r.createSlice)({name:"asset-draft",initialState:g.getInitialState({modified:!1,properties:[],customMetadata:[],customSettings:[],textData:{},imageSettings:[],schedule:[],changes:{},modifiedCells:{},...p.nd}),reducers:{assetReceived:g.upsertOne,removeAsset(e,t){g.removeOne(e,t.payload)},resetAsset(e,t){void 0!==e.entities[t.payload]&&(e.entities[t.payload]=g.getInitialState({modified:!1,properties:[],changes:{}}).entities[t.payload])},updateFilename(e,t){if(void 0!==e.entities[t.payload.id]){let i=e.entities[t.payload.id];(0,m.$)(i,t.payload.filename,"filename")}},...(0,s.P)(g),...(0,l.u)(g),...(0,u.H)(g),...(0,a.R)(g),...(0,o.$)(g),...(0,d.N)(g),...(0,c.y)(g),...(0,p.Ne)(g)}});(0,n.injectSliceWithState)(h);let{assetReceived:v,removeAsset:f,resetAsset:y,updateFilename:b,resetChanges:x,setModifiedCells:j,addImageSettings:w,removeImageSetting:C,updateImageSetting:S,addProperty:T,removeProperty:I,setProperties:k,updateProperty:E,addSchedule:D,removeSchedule:N,setSchedules:P,updateSchedule:A,resetSchedulesChanges:F,updateAllCustomMetadata:$,addCustomMetadata:M,removeCustomMetadata:O,updateCustomMetadata:_,setCustomMetadata:L,setActiveTab:R,updateTextData:B,setCustomSettings:z,removeCustomSettings:V}=h.actions,{selectById:G}=g.getSelectors(e=>e["asset-draft"])},39857(e,t,i){"use strict";i.d(t,{e:()=>a,m:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)({id:0}),a=e=>{let{id:t,children:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{id:t},children:i}),[t])}},67923(e,t,i){"use strict";i.d(t,{Q:()=>o});var r=i(66707),n=i(20351),l=i(8412),a=i(66634);let o=()=>{let{useElementId:e}=(0,l.t)(),{getId:t}=e(),{selectedColumns:i}=(0,r.K)(),{availableColumns:o}=(0,a.m)(),{dataLoadingState:s,setDataLoadingState:d}=(0,n.E)(),c=i.map(e=>({key:e.key,type:e.type,group:e.group,locale:e.locale,config:e.config}));o.filter(e=>Array.isArray(e.group)&&e.group.includes("system")).forEach(e=>{c.some(t=>t.key===e.key)||c.push({key:e.key,type:e.type,group:e.group,locale:e.locale,config:[]})});let u=()=>({body:{folderId:t(),columns:c}});return{getArgs:u,hasRequiredArgs:()=>void 0!==u().body.folderId,dataLoadingState:s,setDataLoadingState:d}}},68788(e,t,i){"use strict";i.d(t,{_:()=>o});var r=i(74848),n=i(65888),l=i(9356),a=i(32436);i(47867);let o=e=>()=>(0,r.jsx)(l.M,{children:(0,r.jsx)(n.W,{children:(0,r.jsx)(a.M,{children:(0,r.jsx)(e,{})})})})},30698(e,t,i){"use strict";i.d(t,{f:()=>er});var r,n=i(74848),l=i(47867),a=i.n(l),o=i(21429),s=i(81898);let d=a().createContext({columns:[],setColumns:()=>{}}),c=e=>{let{children:t}=e,[i,r]=(0,l.useState)([]);return(0,l.useMemo)(()=>(0,n.jsx)(d.Provider,{value:{columns:i,setColumns:r},children:t}),[i,t])};var u=i(35864);let p=()=>{let{columns:e,setColumns:t}=(0,l.useContext)(d);return{columns:e,setColumns:t,removeColumn:function(i){t(e.filter(e=>e.key!==i.key))},addColumn:function(i){t([...e,i])},resetColumns:function(){t([])}}};var m=i(61549),g=i(73362),h=i(27994),v=i(91206),f=i(39808),y=i(29150),b=i(2338),x=i(96940),j=i(99154),w=i(86569),C=i(27820),S=i(32773),T=i(29740),I=i(68901),k=i(59446),E=i(62059),D=i(18196);let N=e=>{let{columns:t}=e,{setColumns:i}=p(),r=(0,k.t)(),{t:l}=(0,o.useTranslation)(),a=t.map(e=>{let t=(0,E.u)(),o=`${e.key}`;if("fieldDefinition"in e.config){let t=e.config.fieldDefinition;o=(0,D.Po)(null==t?void 0:t.title)?e.key:null==t?void 0:t.title}return{id:t,sortable:!0,meta:e,children:(0,n.jsx)(w.Tag,{children:l(`${o}`)}),renderRightToolbar:(0,n.jsxs)(b.$,{size:"mini",children:[function(e,t){if(!t.localizable)return(0,n.jsx)(n.Fragment,{});let l=["-",...r.requiredLanguages];return(0,n.jsx)(I.v,{languages:l,onSelectLanguage:t=>{var r,n;r=e,n=t,i(a.map(e=>e.id===r?{...e,meta:{...e.meta,locale:(0,I.z)(n)}}:e).map(e=>e.meta))},selectedLanguage:t.locale??"-"})}(t,e),(0,n.jsx)(T.K,{icon:{value:"trash"},onClick:()=>{var e;e=t,i(a.filter(t=>t.id!==e).map(e=>e.meta))},theme:"secondary"})]})}});return(0,n.jsxs)(n.Fragment,{children:[0===a.length&&(0,n.jsx)(w.Empty,{image:w.Empty.PRESENTED_IMAGE_SIMPLE}),a.length>0&&(0,n.jsx)(S.N,{items:a,onItemsChange:function(e){i(e.map(e=>e.meta))},sortable:!0})]})};var P=i(23610),A=i(76468);let F=e=>{let{onCancelClick:t,onApplyClick:i,onEditConfigurationClick:r,onUpdateConfigurationClick:l,onSaveConfigurationClick:a,addColumnMenu:d,gridConfig:c,savedGridConfigurations:p,isUpdating:m,isLoading:g,columns:S,currentUserId:I}=e,{t:k}=(0,o.useTranslation)(),{saveEnabled:E}=(0,A.t)(),D=(null==c?void 0:c.name)!=="Predefined"&&void 0!==c,F=I===(null==c?void 0:c.ownerId);return(0,n.jsx)(v.s,{renderToolbar:(0,n.jsxs)(x.M,{theme:"secondary",children:[(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-cancel-button",onClick:t,type:"default",children:k("button.cancel")}),(0,n.jsxs)(b.$,{size:"extra-small",children:[(0,n.jsxs)(n.Fragment,{children:[!0===E&&!D&&(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-save-template-button",onClick:a,type:"default",children:k("grid.configuration.save-template")}),!0===E&&D&&(0,n.jsxs)(n.Fragment,{children:[F&&(0,n.jsxs)(P.a,{children:[(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-update-template-button",loading:m,onClick:l,type:"default",children:k("grid.configuration.update-template")}),(0,n.jsx)(j.m,{menu:{items:[{key:0,icon:(0,n.jsx)(s.I,{value:"edit"}),label:k("grid.configuration.edit-template-details"),onClick:()=>{r()}},{key:1,icon:(0,n.jsx)(s.I,{value:"save"}),label:k("grid.configuration.save-new-template"),onClick:()=>{a()}}]},children:(0,n.jsx)(T.K,{"data-testid":"listing-grid-config-options-button",icon:{value:"more"},type:"default"})})]}),E&&!F&&(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-save-template-button",onClick:a,type:"default",children:k("grid.configuration.save-template")})]})]}),(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-apply-button",onClick:i,type:"primary",children:k("button.apply")})]})]}),children:(0,n.jsxs)(f.U,{padded:!0,children:[(0,n.jsx)(y.Y,{title:k("listing.grid-config.title"),children:!0===E&&(0,n.jsx)(j.m,{disabled:(null==p?void 0:p.length)===0&&!g,menu:{items:p},children:(0,n.jsx)(w.Tooltip,{title:(null==p?void 0:p.length)!==0||g?"":k("grid.configuration.no-saved-templates"),children:(0,n.jsx)(C.J,{"data-testid":"listing-grid-config-template-button",disabled:(null==p?void 0:p.length)===0&&!g,icon:{value:"style"},loading:g,style:{minHeight:"32px",minWidth:"100px"},children:D?(0,n.jsx)(n.Fragment,{children:c.name}):(0,n.jsx)(n.Fragment,{children:k("grid.configuration.template")})})})})}),(0,n.jsxs)(b.$,{direction:"vertical",style:{width:"100%"},children:[(0,n.jsx)(N,{columns:S}),!(0,u.isEmpty)(d)&&(0,n.jsx)(j.m,{menu:{items:d},children:(0,n.jsx)(C.J,{"data-testid":"listing-grid-config-add-column-button",icon:{value:"new"},type:"link",children:k("listing.add-column")})})]})]})})};var $=i(57231),M=i(18848),O=i(22014),_=i(91191),L=i(57502);let R=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{label:t` - color: ${i.colorTextLabel}; - `,icon:t` - color: ${i.colorTextLabel}; - `,updateButton:t` - color: ${i.Button.defaultColor}; - - .pimcore-icon { - color: ${i.Button.defaultColor}; - } - - &:hover { - cursor: pointer; - } - `,updateButtonText:t` - color: ${i.Button.defaultColor}; - `,tag:t` - .ant-tag { - background-color: ${i.Colors.Neutral.Fill.colorFillTertiary}; - } - `}});var B=i(94614);let z={name:"",description:"",shareGlobally:!0,setAsDefault:!1,saveFilters:!1},V=e=>{var t,i,r;let a,d,c,[p,m]=(0,l.useState)((null==(t=e.initialValues)?void 0:t.shareGlobally)??z.shareGlobally),[g,h]=(0,l.useState)(!1),{gridConfig:v,setGridConfig:f}=(0,B.m)(),y=null==v?void 0:v.sharedUsers,x=null==v?void 0:v.sharedRoles,{t:j}=(0,o.useTranslation)(),{styles:C}=R();(0,l.useEffect)(()=>{var t;null==(t=e.form)||t.resetFields()},[]);let S=()=>{h(!1)},T=(e,t)=>(0,n.jsx)(s.I,{className:C.icon,options:{width:t??12,height:t??12},value:e});return(0,n.jsxs)($.lV,{layout:"vertical",onValuesChange:(t,i)=>{var r;null==(r=e.onValuesChange)||r.call(e,t,i);let n=t.shareGlobally;void 0!==n&&(m(t.shareGlobally),(0,u.isEmpty)(v)||f({...v,shareGlobal:n}))},...e,children:[(0,n.jsx)($.lV.Item,{label:j("user-management.name"),name:"name",rules:[{required:!0,message:j("form.validation.provide-name")}],children:(0,n.jsx)(w.Input,{"data-testid":"listing-grid-config-template-name-input"})}),(0,n.jsx)($.lV.Item,{label:j("description"),name:"description",rules:[{required:!1,message:j("form.validation.provide-description")}],children:(0,n.jsx)(w.Input.TextArea,{"data-testid":"listing-grid-config-template-description-input"})}),(0,n.jsx)(b.$,{size:"extra-small",children:(0,n.jsx)($.lV.Item,{name:"setAsDefault",valuePropName:"checked",children:(0,n.jsx)(w.Checkbox,{children:j("grid.configuration.set-default-template")})})}),(0,n.jsx)(w.Flex,{align:"center",gap:"mini",children:(0,n.jsx)($.lV.Item,{name:"shareGlobally",valuePropName:"checked",children:(0,n.jsx)(M.d,{labelLeft:(0,n.jsx)(O.E,{children:j("grid.configuration.shared")}),labelRight:!0===p?(0,n.jsx)(O.E,{className:C.label,children:j("common.globally")}):(0,n.jsxs)(n.Fragment,{children:[(0,n.jsxs)(w.Flex,{gap:10,children:[(0,n.jsxs)(O.E,{className:C.label,children:[T("user")," ",j("user-management.user")," | ",T("shield")," ",j("user-management.role")]}),(0,n.jsxs)(w.Flex,{align:"center",className:C.updateButton,gap:8,onClick:()=>{h(!g)},children:[T("edit",16),(0,n.jsx)(O.E,{className:C.updateButtonText,children:j("button.add-edit")})]})]}),g&&(0,n.jsx)(_.p,{handleApplyChanges:e=>{let{sharedUsers:t,sharedRoles:i}=e;(0,u.isEmpty)(v)||(f({...v,shareGlobal:!1,sharedUsers:t,sharedRoles:i}),S())},handleClose:S,initialSharedRoles:x,initialSharedUsers:y,roleList:null==e?void 0:e.roleList,userList:null==e?void 0:e.userList})]})})})}),!1===p&&(0,n.jsx)(L.L,{itemGap:"mini",list:(a=[],d=[],c=e=>{let{label:t,iconName:i}=e;return{children:(0,n.jsx)(O.E,{ellipsis:!0,style:{maxWidth:"148px"},type:"secondary",children:t}),icon:T(i),bordered:!1}},null==(i=e.userList)||i.items.forEach(e=>{(null==v?void 0:v.sharedUsers).includes(e.id)&&a.push(c({label:null==e?void 0:e.username,iconName:"user"}))}),null==(r=e.roleList)||r.items.forEach(e=>{(null==v?void 0:v.sharedRoles).includes(e.id)&&d.push(c({label:null==e?void 0:e.name,iconName:"shield"}))}),[a,d]),tagListItemClassNames:C.tag})]})};var G=i(276);let U=e=>{let{formProps:t,onCancelClick:i,isLoading:r,onDeleteClick:l,isDeleting:a,saveAsNewConfiguration:s,modificationDate:d,userName:c,...u}=e,{form:p}=t,{t:m}=(0,o.useTranslation)();return(0,n.jsx)(v.s,{renderToolbar:(0,n.jsxs)(x.M,{theme:"secondary",children:[void 0!==l&&!0!==s?(0,n.jsx)(w.Popconfirm,{cancelText:m("button.cancel"),description:m("grid.configuration.delete-template-confirmation"),okText:m("delete"),onConfirm:l,title:m("grid.configuration.delete-this-template"),children:(0,n.jsx)(C.J,{"data-testid":"listing-grid-config-delete-template-button",disabled:r,icon:{value:"trash"},loading:a,children:m("grid.configuration.delete-template")})}):(0,n.jsx)("div",{}),(0,n.jsxs)(b.$,{size:"mini",children:[(0,n.jsx)(C.J,{"data-testid":"listing-grid-config-template-form-cancel-button",icon:{value:"close"},onClick:i,type:"default",children:m("button.cancel")}),(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-save-apply-button",disabled:a,loading:r,onClick:()=>null==p?void 0:p.submit(),type:"primary",children:m("button.save-apply")})]})]}),children:(0,n.jsx)(f.U,{padded:!0,children:(0,n.jsxs)(w.Flex,{gap:"small",vertical:!0,children:[(0,n.jsx)(y.Y,{title:m("grid.configuration.save-template-configuration")}),!0!==s&&(0,n.jsxs)(w.Row,{children:[(0,n.jsxs)(w.Col,{span:6,children:[(0,n.jsxs)(O.E,{children:[m("common.owner"),":"]})," ",(0,n.jsx)(O.E,{type:"secondary",children:c})]}),!(0,D.Po)(d)&&(0,n.jsxs)(w.Col,{span:12,children:[(0,n.jsxs)(O.E,{children:[m("common.modification-date"),": "]}),(0,n.jsx)(O.E,{type:"secondary",children:(0,G.r6)({timestamp:d,dateStyle:"short",timeStyle:"short"})})]})]}),(0,n.jsx)(V,{...t,...u})]})})})};var q=i(73612),W=i(52178),K=i(66634),H=i(66707),X=i(40910),J=i(8412),Z=i(55638),Y=i(43588),Q=((r=Q||{}).Edit="edit",r.Save="save",r.Update="update",r);let ee=()=>{let{useElementId:e}=(0,J.t)(),{getAvailableColumnsDropdown:t}=(0,K.m)(),{selectedColumns:i,setSelectedColumns:r}=(0,H.K)(),{columns:a,setColumns:o,addColumn:s}=p(),{getId:d}=e(),c=(0,m.J)(),{id:h,setId:v}=(0,X.u)(),{gridConfig:y,setGridConfig:b}=(0,B.m)(),{isLoading:x,isFetching:j,data:w}=(0,g.useAssetGetSavedGridConfigurationsQuery)(),{data:C}=(0,q.S2)(),{data:S}=(0,W.DA)(),{isFetching:T}=(0,g.useAssetGetGridConfigurationByFolderIdQuery)({folderId:d(),configurationId:h}),[I,{isLoading:k,isError:E,error:D}]=(0,g.useAssetSaveGridConfigurationMutation)(),[N,{isLoading:P,isError:A,error:$}]=(0,g.useAssetUpdateGridConfigurationMutation)(),[M,{isLoading:O,isError:_,error:L}]=(0,g.useAssetDeleteGridConfigurationByConfigurationIdMutation)();(0,l.useEffect)(()=>{E&&(0,Z.Ay)(new Z.hD(D))},[E]),(0,l.useEffect)(()=>{A&&(0,Z.Ay)(new Z.hD($))},[A]),(0,l.useEffect)(()=>{_&&(0,Z.Ay)(new Z.hD(L))},[_]);let[R,V]=(0,l.useState)(Q.Edit),[G]=Y.Form.useForm(),ee=(null==y?void 0:y.name)!=="Predefined"&&void 0!==y,et=(0,l.useMemo)(()=>{if(void 0!==w){var e;return(null==(e=w.items)?void 0:e.map(e=>({key:e.id,label:e.name,onClick:()=>{v(e.id)}})))??[]}return[]},[w]);(0,l.useEffect)(()=>{o(i.map(e=>({...e.originalApiDefinition,locale:null==e?void 0:e.locale})))},[i]);let ei=e=>{s(e)},er=(0,l.useMemo)(()=>t(ei),[t,a]),en=async()=>{ee&&await M({configurationId:y.id}).then(()=>{V(Q.Edit),v(void 0)})},el=async()=>{void 0===y?(0,Z.Ay)(new Z.$g("No grid configuration available")):await N({configurationId:y.id,body:{folderId:d(),columns:ea(a),name:y.name,description:y.description??"",setAsFavorite:y.setAsFavorite,shareGlobal:y.shareGlobal,sharedRoles:y.sharedRoles,sharedUsers:y.sharedUsers,saveFilter:!1,pageSize:0}})};function ea(e){return e.map(e=>({key:e.key,locale:e.locale??null,group:e.group}))}let eo=async e=>{let t=ea(a);!0!==e.shareGlobally||(0,u.isEmpty)(y)||b({...y,sharedUsers:[],sharedRoles:[]}),R===Q.Update&&ee&&await N({configurationId:y.id,body:{folderId:d(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:y.sharedRoles,sharedUsers:y.sharedUsers,saveFilter:!1,pageSize:0}}).then(()=>{V(Q.Edit)}),R===Q.Save&&await I({body:{folderId:d(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:null==y?void 0:y.sharedRoles,sharedUsers:null==y?void 0:y.sharedUsers,saveFilter:!1,pageSize:0}}).then(e=>{(null==e?void 0:e.data)!==void 0&&(v(e.data.id),V(Q.Edit))})};return T||O?(0,n.jsx)(f.U,{loading:!0}):(0,n.jsxs)(n.Fragment,{children:[R===Q.Edit&&(0,n.jsx)(F,{addColumnMenu:er.menu.items,columns:a,currentUserId:null==c?void 0:c.id,gridConfig:y,isLoading:x||j,isUpdating:P,onApplyClick:()=>{r(a.map(e=>({key:e.key,locale:e.locale,type:e.type,config:e.config,sortable:e.sortable,editable:e.editable,localizable:e.localizable,exportable:e.exportable,frontendType:e.frontendType,group:e.group,originalApiDefinition:e})))},onCancelClick:()=>{o(i.map(e=>e.originalApiDefinition))},onEditConfigurationClick:()=>{V(Q.Update)},onSaveConfigurationClick:()=>{V(Q.Save)},onUpdateConfigurationClick:el,savedGridConfigurations:et}),(R===Q.Save||R===Q.Update)&&(0,n.jsx)(U,{formProps:{form:G,onFinish:eo,initialValues:R===Q.Update&&ee?{name:null==y?void 0:y.name,description:null==y?void 0:y.description,setAsDefault:null==y?void 0:y.setAsFavorite,shareGlobally:null==y?void 0:y.shareGlobal}:{...z}},isDeleting:O,isLoading:k||P,modificationDate:null==y?void 0:y.modificationDate,onCancelClick:()=>{V(Q.Edit)},onDeleteClick:ee?en:void 0,roleList:C,saveAsNewConfiguration:R===Q.Save,userList:S,userName:null==c?void 0:c.username})]})};var et=i(85670);let ei=e=>(0,n.jsx)(et.Z,{settings:e.settings,children:(0,n.jsx)(c,{children:(0,n.jsx)(ee,{})})}),er=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{saveEnabled:!0};return()=>{let{getProps:i}=e(),{t:r}=(0,o.useTranslation)();return{getProps:()=>{let e=i();return{...e,entries:[...e.entries,{component:(0,n.jsx)(ei,{settings:t}),key:"configuration",icon:(0,n.jsx)(s.I,{value:"settings"}),tooltip:r("sidebar.grid_config")}]}}}}}},85670(e,t,i){"use strict";i.d(t,{Z:()=>a,l:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,settings:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:i,children:t}),[i,t])}},73468(e,t,i){"use strict";i.d(t,{b:()=>w});var r=i(74848);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{form:i` - display: flex; - flex-direction: column; - gap: 12px; - - form { - display: flex; - flex-direction: column; - gap: 16px; - font-family: Lato, sans-serif; - font-size: 12px; - font-style: normal; - font-weight: 400; - line-height: 22px; - - .flex-space { - display: flex; - justify-content: space-between; - align-items: center; - } - - .ant-btn-link { - color: ${t.colorPrimary}; - - &:hover { - color: ${t.colorPrimaryHover}; - } - } - - .pimcore-icon { - color: ${t.colorIcon}; - } - } - - `}});var l=i(47867),a=i(57231),o=i(81898),s=i(43588),d=i(86569),c=i(21429),u=i(39578);let p=e=>{let{onGetBack:t}=e,{t:i}=(0,c.useTranslation)(),[n]=a.lV.useForm(),{resetPassword:p}=(0,u.u)(),[m,g]=(0,l.useState)(!1),[h,v]=(0,l.useState)(!1);return(0,r.jsxs)(s.Flex,{gap:"normal",vertical:!0,children:[m&&(0,r.jsx)(s.Alert,{description:i("forgot-password-form.success-message"),showIcon:!0,type:"success"}),!m&&(0,r.jsxs)(s.FormKit,{formProps:{form:n,onFinish:async e=>{v(!0),p(e.username,()=>{v(!1)},()=>{n.resetFields(),g(!0)})}},children:[(0,r.jsx)(a.lV.Item,{label:i("forgot-password-form.username"),name:"username",children:(0,r.jsx)(d.Input,{autoComplete:"username",name:"username",placeholder:i("forgot-password-form.username.placeholder"),prefix:(0,r.jsx)(o.I,{value:"user"})})}),(0,r.jsx)(s.Button,{className:"w-full",htmlType:"submit",loading:h,type:"primary",children:i("forgot-password-form.reset-password")})]}),(0,r.jsx)(s.Flex,{justify:"center",children:(0,r.jsx)(s.Button,{onClick:t,type:"link",children:i("forgot-password-form.back")})})]})};var m=i(27994),g=i(50174),h=i(55638),v=i(74152),f=i(69634),y=i(76228),b=i(11482),x=i(62284);let j=e=>{let{onPasswordForgotten:t}=e,i=(0,x.useDispatch)(),{styles:a}=n(),s=(0,g.J)(),{t:u}=(0,c.useTranslation)(),[p,j]=(0,l.useState)(!1),[w,C]=(0,l.useState)({username:"",password:""}),[S]=(0,b._L)(),[T,I]=(0,l.useState)(!1),k=async e=>{let t=S({credentials:w});I(!0),t.catch(e=>{I(!1),(0,h.Ay)(new h.hD(e))});try{e.preventDefault();let r=await t;void 0!==r.error&&(0,h.Ay)(new h.hD(r.error)),void 0===r.error&&i((0,y.UA)(!0)),I(!1)}catch(e){I(!1),await s.error({content:e.message})}};return(0,r.jsxs)("div",{className:a.form,children:[!p&&(0,r.jsxs)("form",{onSubmit:k,children:[(0,r.jsx)(d.Input,{"aria-label":u("login-form.username"),autoComplete:"username",name:"username",onChange:e=>{C({...w,username:e.target.value})},placeholder:u("login-form.username"),prefix:(0,r.jsx)(o.I,{value:"user"})}),(0,r.jsx)(d.Input.Password,{"aria-label":u("login-form.password"),autoComplete:"current-password",name:"password",onChange:e=>{C({...w,password:e.target.value})},placeholder:u("login-form.password")}),(0,r.jsxs)("div",{className:"flex-space",children:[(0,r.jsx)(d.Checkbox,{"aria-label":u("aria.login-form-additional-logins.remember-me-checkbox"),children:u("login-form.remember-me")}),(0,r.jsx)(m.$,{onClick:t,style:{paddingLeft:0,paddingRight:0},type:"link",children:u("login-form.forgot-password")})]}),(0,r.jsx)(m.$,{htmlType:"submit",loading:T,type:"primary",children:u("login-form.login")})]}),(0,r.jsx)(f.Y,{props:{hideCredentialsForm:p,onHideCredentialsForm:j},slot:v.e.form.login.name})]})},w=()=>{let{styles:e}=n(),[t,i]=(0,l.useState)(!1);return(0,r.jsxs)("div",{className:e.form,children:[t&&(0,r.jsx)(p,{onGetBack:()=>{i(!1)}}),!t&&(0,r.jsx)(j,{onPasswordForgotten:()=>{i(!0)}})]})}},38034(e,t,i){"use strict";i.d(t,{N:()=>s});var r=i(46881),n=i(95487),l=i(21429),a=i(73565),o=i(50174);let s=()=>{let{t:e}=(0,l.useTranslation)(),t=(0,r.useAppDispatch)(),i=(0,o.J)(),s=async(t,r)=>{if(void 0!==r){var n;await i.error((null==(n=r.data)?void 0:n.message)??e("user-management.save-user.error"))}else await i.success(t)};return{updateUserProfile:async function i(i){var r,l,o,d,c,u;if(void 0!==i.modifiedCells){let e=Array.from([...i.keyBindings??[],...i.modifiedCells.keyBindings??[]].reduce((e,t)=>e.set(t.action,t),new Map).values()),{keyBindings:t,...r}=i.modifiedCells;i={...i,...r,keyBindings:e}}let{data:p,error:m}=await t(n.F.endpoints.userUpdateProfile.initiate({updateUserProfile:{firstname:i.firstname,lastname:i.lastname,email:i.email,language:i.language,dateTimeLocale:i.dateTimeLocale,welcomeScreen:i.welcomeScreen,memorizeTabs:i.memorizeTabs,contentLanguages:i.contentLanguages,keyBindings:i.keyBindings}}));if((null==i||null==(r=i.modifiedCells)?void 0:r.password)!==void 0||(null==i||null==(l=i.modifiedCells)?void 0:l.passwordConfirmation)!==void 0||(null==i||null==(o=i.modifiedCells)?void 0:o.oldPassword)!==void 0){let{error:r}=await t(n.F.endpoints.userUpdatePasswordById.initiate({id:i.id,body:{password:null==(d=i.modifiedCells)?void 0:d.password,passwordConfirmation:null==(c=i.modifiedCells)?void 0:c.passwordConfirmation,oldPassword:null==(u=i.modifiedCells)?void 0:u.oldPassword}}));return await s(e("user-management.save-user.password.success"),r),t((0,a.WF)(p)),p}return await s(e("user-management.save-user.success"),m),void 0!==p&&t((0,a.WF)(p)),p},getUserImageById:async function e(e){let i=(await t(n.F.endpoints.userGetImage.initiate({id:e}))).data;return null==i?void 0:i.data},updateUserImageInState:function(e,i){t((0,a.Zr)({data:{image:e,hasImage:i}}))}}}},11757(e,t,i){"use strict";i.d(t,{N:()=>A,d:()=>P});var r=i(74848),n=i(47867),l=i(91206),a=i(39808),o=i(61549),s=i(68119),d=i(96940),c=i(21429),u=i(43588),p=i(29740),m=i(86569),g=i(25750),h=i(38034),v=i(69134);let f=e=>{let{id:t,...i}=e,{t:l}=(0,c.useTranslation)(),{user:a,isLoading:o,removeTrackedChanges:f}=(0,s.U)(),{updateUserProfile:y}=(0,h.N)(),b=(null==a?void 0:a.modified)===!0,[x,j]=(0,n.useState)(!1);return(0,v.Z)(async()=>{await y(a)},"save"),(0,r.jsxs)(d.M,{children:[(0,r.jsx)(g.s,{children:(0,r.jsx)(m.Popconfirm,{onCancel:()=>{j(!1)},onConfirm:()=>{j(!1),f()},onOpenChange:e=>{e?b?j(!0):f():j(!1)},open:x,title:l("toolbar.reload.confirmation"),children:(0,r.jsx)(p.K,{icon:{value:"refresh"},children:l("toolbar.reload")})})}),(0,r.jsx)(u.Button,{disabled:!b||o,loading:o,onClick:async()=>await y(a),type:"primary",children:l("toolbar.save")})]})};var y=i(57231),b=i(68516),x=i(18848),j=i(1993),w=i(15973),C=i(69764),S=i(59446),T=i(22869),I=i(97649),k=i(35864),E=i(18037),D=i(7566);let N=e=>{let{id:t,resetPassword:i=!1}=e,[l]=y.lV.useForm(),{t:o}=(0,c.useTranslation)(),{availableAdminLanguages:d,validLocales:u}=(0,S.t)(),{getDisplayName:g}=(0,E.W)(),{user:v,setModifiedCells:f}=(0,s.U)(),{mergedKeyBindings:N}=(0,D.F)(null==v?void 0:v.keyBindings),[P,A]=(0,n.useState)(!1),{updateUserImageInState:F}=(0,h.N)(),[$,M]=(0,n.useState)("password"),O=[{value:"",label:"(system)"},...Object.entries(u).map(e=>{let[t,i]=e;return{value:t,label:i}})];(0,n.useEffect)(()=>{(null==v?void 0:v.modified)===!1&&(l.setFieldsValue({firstname:null==v?void 0:v.firstname,lastname:null==v?void 0:v.lastname,email:null==v?void 0:v.email,language:null==v?void 0:v.language,dateTimeLocale:(null==v?void 0:v.dateTimeLocale)??"",memorizeTabs:null==v?void 0:v.memorizeTabs,welcomeScreen:null==v?void 0:v.welcomeScreen,keyBindings:null==v?void 0:v.keyBindings,contentLanguages:null==v?void 0:v.contentLanguages,password:"",passwordConfirmation:"",oldPassword:""}),A(!1))},[null==v?void 0:v.modified]);let _=(0,n.useCallback)((0,k.debounce)((e,t)=>{f(e)},300),[f,l]);return 0===Object.keys(v).length?(0,r.jsx)(a.U,{none:!0}):(0,r.jsxs)(y.lV,{form:l,layout:"vertical",onValuesChange:_,children:[(0,r.jsxs)(m.Row,{gutter:[10,10],children:[(0,r.jsx)(m.Col,{span:8,children:(0,r.jsx)(b.n,{activeKey:"1",bordered:!0,items:[{key:"1",title:(0,r.jsx)(r.Fragment,{children:o("user-management.general")}),children:(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(y.lV.Item,{label:o("user-management.firstname"),name:"firstname",children:(0,r.jsx)(m.Input,{})}),(0,r.jsx)(y.lV.Item,{label:o("user-management.lastname"),name:"lastname",children:(0,r.jsx)(m.Input,{})}),(0,r.jsx)(y.lV.Item,{label:o("user-management.email"),name:"email",children:(0,r.jsx)(m.Input,{type:"email"})}),(0,r.jsx)(y.lV.Item,{label:o("user-management.language"),name:"language",children:(0,r.jsx)(j.l,{options:d.map(e=>({value:e,label:g(e)})),placeholder:o("user-management.language")})}),(0,r.jsx)(y.lV.Item,{label:o("user-management.dateTime"),name:"dateTimeLocale",children:(0,r.jsx)(j.l,{optionFilterProp:"label",options:O,placeholder:o("user-management.dateTime"),showSearch:!0})}),(0,r.jsx)(y.lV.Item,{name:"welcomeScreen",children:(0,r.jsx)(x.d,{labelRight:o("user-management.welcomeScreen")})}),(0,r.jsx)(y.lV.Item,{name:"memorizeTabs",children:(0,r.jsx)(x.d,{labelRight:o("user-management.memorizeTabs")})})]})}],size:"small"})}),(0,r.jsx)(m.Col,{span:6,children:(0,r.jsx)(C.H,{onUserImageChanged:F,user:v})}),(0,r.jsx)(m.Col,{span:14,children:(0,r.jsx)(b.n,{activeKey:"2",bordered:!0,items:[{key:"2",title:(0,r.jsx)(r.Fragment,{children:o("user-profile.change-password")}),children:(0,r.jsxs)(r.Fragment,{children:[!i&&(0,r.jsx)(y.lV.Item,{label:o("user-profile.password-old"),name:"oldPassword",children:(0,r.jsx)(m.Input.Password,{})}),(0,r.jsx)(y.lV.Item,{label:o("user-profile.password-new"),name:"password",rules:[{min:10}],children:(0,r.jsx)(m.Input,{onKeyDown:()=>{M("password")},suffix:(0,r.jsx)(p.K,{icon:{value:"locked"},onClick:()=>{let e=(0,w.b)();l.setFieldValue("password",e),f({password:e}),M("text")},title:o("user-management.generate-password"),variant:"minimal"}),type:$})}),(0,r.jsx)(y.lV.Item,{dependencies:["password"],label:o("user-profile.password-repeat"),name:"passwordConfirmation",rules:[{min:10},e=>{let{getFieldValue:t}=e;return{validator:async(e,i)=>i.length<=0||t("password")===i?void await Promise.resolve():await Promise.reject(Error(o("user-profile.password-repeat-error")))}}],children:(0,r.jsx)(m.Input.Password,{})})]})}],size:"small"})}),(0,r.jsx)(m.Col,{span:14,children:(0,r.jsx)(T.D,{data:null==v?void 0:v.contentLanguages,onChange:e=>{f({contentLanguages:e})}})})]}),(0,r.jsx)(m.Row,{className:"m-t-extra-large",gutter:[10,10],children:(0,r.jsx)(m.Col,{span:24,children:(0,r.jsx)(I.o,{modified:P,onChange:(e,t)=>{var i,r;let n=Array.isArray(null==v||null==(i=v.modifiedCells)?void 0:i.keyBindings)?null==v||null==(r=v.modifiedCells)?void 0:r.keyBindings:[];f({keyBindings:n=n.some(t=>t.action===e)?n.map(i=>i.action===e?{...i,...t}:i):[...n,{action:e,...t}]}),A(!0)},onResetKeyBindings:e=>{f({keyBindings:e}),A(!1)},values:N})})})]})},P={component:"user-profile",name:"user-profile",id:"user-profile",config:{translationKey:"user-profile.label",icon:{type:"name",value:"user"}}},A=e=>{let{resetPassword:t}=e,i=(0,o.J)(),{isLoading:n}=(0,s.U)();return(0,r.jsx)(l.s,{renderToolbar:(0,r.jsx)(f,{id:i.id}),children:(0,r.jsx)(a.U,{loading:n,padded:!0,children:(0,r.jsx)(N,{id:i.id,resetPassword:t})})})}},74108(e,t,i){"use strict";i.d(t,{D:()=>f,W:()=>y});var r,n=i(47867),l=i(20713),a=i(66026),o=i(91434),s=i(4919),d=i(35864),c=i(46881),u=i(59385),p=i(63364),m=i(10600),g=i(64688),h=i(60124),v=i(3416);let f=((r={}).Version="version",r.AutoSave="autoSave",r.Publish="publish",r.Save="save",r.Unpublish="unpublish",r),y=function(){let e=!(arguments.length>0)||void 0===arguments[0]||arguments[0],{id:t}=(0,n.useContext)(l.Z),{dataObject:i,properties:r,setDraftData:y}=(0,a.A)(t),[b,{isLoading:x,isSuccess:j,isError:w,error:C}]=(0,o.ft)(),{setRunningTask:S,runningTask:T,runningTaskRef:I,queuedTask:k,setQueuedTask:E}=(0,s.m)(),D=(0,c.useAppDispatch)(),N=async()=>{if(!(0,d.isNil)(k)){let e={...k};E(void 0),await P(e.editableData,e.task)}};(0,n.useEffect)(()=>{(0,d.isNil)(T)&&N().catch(e=>{console.error(e)})},[T,k]);let P=async(n,l,a)=>{if((null==i?void 0:i.changes)===void 0)return;if(!(0,d.isNil)(null==I?void 0:I.current)){if(l===f.AutoSave||(null==I?void 0:I.current)!==f.AutoSave)return;E({task:l,editableData:n});return}S(l);let o={};if(i.changes.properties){let e=null==r?void 0:r.map(e=>{let{rowId:t,...i}=e;if("object"==typeof i.data){var r;return{...i,data:(null==i||null==(r=i.data)?void 0:r.id)??null}}return i});o.properties=null==e?void 0:e.filter(e=>!e.inherited)}Object.keys(n).length>0&&(o.editableData=n),(0,d.isUndefined)(l)||(o.task=l),o.useDraftData=e;let s=p.kL.get(m.K["DataObject/ProcessorRegistry/SaveDataProcessor"]),c=new g.C(t,l,o);s.executeProcessors(c),await b({id:t,body:{data:{...o}}}).then(e=>{if(void 0===e.error){if("draftData"in e.data){var i;y((null==(i=e.data)?void 0:i.draftData)??null)}l===f.Publish&&D((0,u.setNodePublished)({nodeId:String(t),elementType:"data-object",isPublished:!0}));let r={identifier:{type:v.m["data-object:editor:post-update"],id:String(t)},payload:{id:t,task:l,updatedData:o,responseData:e.data}};h.B.publish(r),null==a||a()}S(void 0)})};return{save:P,isLoading:x||!(0,d.isNil)(k),isSuccess:j,isError:w,error:C}}},58445(e,t,i){"use strict";i.d(t,{J:()=>s});var r=i(74848),n=i(7814);i(47867);var l=i(21429),a=i(40721),o=i(29740);let s=e=>{let{t}=(0,l.useTranslation)(),{openDataObject:i}=(0,a.H)();return(0,r.jsx)(n.m,{title:t("inheritance-active",{id:e.objectId}),children:(0,r.jsx)(o.K,{icon:{value:"inheritance-active"},onClick:()=>{i({config:{id:e.objectId}})},style:{border:0},type:"link",variant:"minimal"})})}},54100(e,t,i){"use strict";i.d(t,{$B:()=>x,Bd:()=>f,CF:()=>v,Ko:()=>N,NL:()=>T,Sz:()=>M,T2:()=>F,Up:()=>$,WZ:()=>C,Y_:()=>m,ZD:()=>j,_5:()=>A,am:()=>P,di:()=>g,dr:()=>E,f7:()=>k,fS:()=>S,lq:()=>D,pw:()=>h,r0:()=>I,v2:()=>y,vD:()=>b,zE:()=>w});var r=i(88605),n=i(46881),l=i(40331),a=i(76359),o=i(92634),s=i(95674),d=i(31866),c=i(26280),u=i(50034),p=i(34992);let m=(0,r.createEntityAdapter)({}),g=(0,r.createSlice)({name:"data-object-draft",initialState:m.getInitialState({modified:!1,properties:[],schedule:[],changes:{},modifiedCells:{},modifiedObjectData:{},...o.nd}),reducers:{dataObjectReceived:m.upsertOne,removeDataObject(e,t){m.removeOne(e,t.payload)},resetDataObject(e,t){void 0!==e.entities[t.payload]&&(e.entities[t.payload]=m.getInitialState({modified:!1,properties:[],changes:{}}).entities[t.payload])},updateKey(e,t){if(void 0!==e.entities[t.payload.id]){let i=e.entities[t.payload.id];(0,p.$)(i,t.payload.key,"key")}},...(0,a.P)(m),...(0,l.u)(m),...(0,s.H)(m),...(0,o.Ne)(m),...(0,d.p)(m),...(0,d.p)(m),...(0,c.Yu)(m),...(0,u.b)(m)}});(0,n.injectSliceWithState)(g);let{dataObjectReceived:h,removeDataObject:v,resetDataObject:f,updateKey:y,resetChanges:b,setModifiedCells:x,addProperty:j,removeProperty:w,setProperties:C,updateProperty:S,addSchedule:T,removeSchedule:I,setSchedules:k,updateSchedule:E,resetSchedulesChanges:D,setActiveTab:N,markObjectDataAsModified:P,setDraftData:A,publishDraft:F,unpublishDraft:$}=g.actions,{selectById:M}=m.getSelectors(e=>e["data-object-draft"])},20713(e,t,i){"use strict";i.d(t,{Z:()=>l,l:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)({id:0}),a=e=>{let{id:t,children:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{id:t},children:i}),[t])}},41826(e,t,i){"use strict";i.d(t,{s:()=>d});var r=i(74848);i(47867);var n=i(63364),l=i(10600),a=i(86569),o=i(13947),s=i(52112);let d=e=>{let{fieldType:t,fieldtype:i}=e,d=(0,n.Lt)(l.K["DynamicTypes/ObjectDataRegistry"]),c=(0,s.C)(),u=t??i??"unknown";if(!d.hasDynamicType(u))return(0,r.jsx)(a.Alert,{message:`Unknown data type: ${u}`,type:"warning"});let p=d.getDynamicType(u),m={...e,defaultFieldWidth:c};return!0===p.getObjectDataFormItemProps(m).hidden?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(o.A,{children:p.getVersionObjectDataComponent(m)})}},72798(e,t,i){"use strict";i.d(t,{s:()=>S});var r=i(74848),n=i(47867),l=i.n(n),a=i(57231),o=i(63364),s=i(10600),d=i(86569);let c=l().createContext(void 0);var u=i(13947),p=i(8651),m=i.n(p),g=i(85458),h=i(62668);let v=e=>{let{objectDataType:t,_props:i,formFieldName:l}=e,o=t.getObjectDataFormItemProps(i),s=t.getObjectDataComponent(i),d=(0,g.n)({inherited:i.inherited,type:t.inheritedMaskOverlay});return(0,n.useMemo)(()=>(0,r.jsx)(u.A,{children:(0,r.jsx)(h.K,{contentSelector:".ant-form-item-control-input-content",parentSelector:".ant-space-item",children:(0,r.jsx)(a.lV.Item,{...o,className:m()(o.className,d),name:l,children:s})})}),[o,d,s])};var f=i(407),y=i(28897),b=i(3205),x=i(74976),j=i(35864),w=i(52112),C=i(62451);let S=e=>{let t=(0,o.Lt)(s.K["DynamicTypes/ObjectDataRegistry"]),{name:i,fieldType:l,fieldtype:p}=e,m=(()=>{let e=(0,n.useContext)(c);if(void 0!==e)return{...e,getComputedFieldName:()=>{let{field:t,fieldSuffix:i}=e,r=[t.name];return void 0!==i&&r.push(i),r}}})(),g=void 0!==m,h=[i],S=e.title,T=(0,f.n)(),I=a.lV.useFormInstance(),{disabled:k}=(0,y.P)(),E=(0,w.C)(),D=[i],N=(0,b.v)(),P=(0,x.W)(),A=(()=>{let e=(0,n.useContext)(C.E);if(void 0!==e)return e})(),F=void 0!==A?[...A.combinedFieldNameParent,i]:[i];void 0!==N&&(D=[...(0,j.isArray)(N.name)?N.name:[N.name],...D]),void 0!==P&&(D=[...D,P.locales[0]]),g&&(h=[...m.getComputedFieldName(),i]);let $=l??p??"unknown";if(!t.hasDynamicType($))return(0,r.jsx)(d.Alert,{message:`Unknown data type: ${$}`,type:"warning"});let M=t.getDynamicType($),O=null==T?void 0:T.getInheritanceState(D),_={...e,title:S,defaultFieldWidth:E,name:h,combinedFieldName:F.join("."),inherited:(null==O?void 0:O.inherited)===!0,noteditable:!0===e.noteditable||k};return((0,n.useEffect)(()=>{M.isCollectionType||M.handleDefaultValue(_,I,D)},[I]),M.isCollectionType)?(0,r.jsx)(u.A,{children:M.getObjectDataComponent(_)}):(0,r.jsx)(v,{_props:_,formFieldName:h,objectDataType:M})}},67342(e,t,i){"use strict";i.d(t,{f:()=>d});var r=i(74848),n=i(47867),l=i(63364),a=i(10600);let o=e=>{let t=(0,l.Lt)(a.K["DynamicTypes/ObjectLayoutRegistry"]),{fieldType:i,fieldtype:n}=e,o=i??n??"unknown";return t.hasDynamicType(o)?t.getDynamicType(o).getObjectLayoutComponent(e):(0,r.jsxs)("div",{children:["Unknown layout type: ",o]})};var s=i(72798);let d=e=>{let{dataType:t,datatype:i}=e,l=t??i,a=(0,n.useMemo)(()=>"data"===l?(0,r.jsx)(s.s,{...e,noteditable:e.noteditable}):"layout"===l?(0,r.jsx)(o,{...e,noteditable:e.noteditable}):void 0,[e]);if(void 0===a)throw Error(`Unknown datatype: ${l}`);return(0,r.jsx)(r.Fragment,{children:a})}},62451(e,t,i){"use strict";i.d(t,{E:()=>a,e:()=>o});var r=i(74848),n=i(35864),l=i(47867);let a=i.n(l)().createContext(void 0),o=e=>{let{combinedFieldNameParent:t,children:i}=e,o=(0,l.useContext)(a),s=(0,l.useMemo)(()=>(0,n.isNil)(null==o?void 0:o.combinedFieldNameParent)?t:[...o.combinedFieldNameParent,...t],[null==o?void 0:o.combinedFieldNameParent,t]);return(0,l.useMemo)(()=>(0,r.jsx)(a.Provider,{value:{combinedFieldNameParent:s},children:i}),[s,i])}},28897(e,t,i){"use strict";i.d(t,{C:()=>v,P:()=>h});var r=i(74848),n=i(47867),l=i(66026),a=i(7334),o=i(35864),s=i.n(o),d=i(74108),c=i(50174),u=i(21429),p=i(79472),m=i(43588);let g=(0,n.createContext)(void 0),h=()=>{let e=(0,n.useContext)(g);if(void 0===e)throw Error("useEditFormContext must be used within a FormProvider");return e},v=e=>{let{children:t}=e,[i]=m.Form.useForm(),h=(0,n.useRef)({}),v=(0,n.useRef)(!1),{id:f}=(0,a.J)(),{dataObject:y,markObjectDataAsModified:b}=(0,l.A)(f),{save:x,isError:j}=(0,d.W)(),w=(0,c.J)(),{t:C}=(0,u.useTranslation)();(0,n.useEffect)(()=>{j&&w.error(C("auto-save-failed"))},[j]);let S=e=>{h.current={...h.current,...e}},T=()=>{h.current={}},I=()=>h.current,k=!(0,p.o)(null==y?void 0:y.permissions,"publish")&&!(0,p.o)(null==y?void 0:y.permissions,"save"),E=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=Object.keys(e);if(0===r.length)return null;let n=r[0],l=""!==t?`${t}.${n}`:n,a=e[n];return i.isFieldTouched(l.split("."))?s().isPlainObject(a)?E(a,l):l:t},D=(0,o.debounce)(async()=>{let e=I();(0,o.isEmpty)(e)||(v.current||b(),await x(e,d.D.AutoSave))},800),N=async()=>{await D()},P=(0,n.useMemo)(()=>({form:i,updateModifiedDataObjectAttributes:S,resetModifiedDataObjectAttributes:T,updateDraft:N,getModifiedDataObjectAttributes:I,getChangedFieldName:E,disabled:k}),[i,k]);return(0,r.jsx)(g.Provider,{value:P,children:t})}},6507(e,t,i){"use strict";i.d(t,{B:()=>d,d:()=>s});var r=i(74848),n=i(47867),l=i.n(n),a=i(66026),o=i(20713);let s=l().createContext(void 0),d=e=>{let{children:t}=e,{id:i}=(0,n.useContext)(o.Z),{dataObject:l}=(0,a.A)(i),[d,c]=(0,n.useState)((e=>{let t={};if(void 0===e)return t;let i=function(e){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];"object"==typeof e&&null!==e&&Object.entries(e).forEach(e=>{let[n,l]=e,a=[...r,n];"object"==typeof l&&"objectId"in l&&"inherited"in l&&"number"==typeof l.objectId&&"boolean"==typeof l.inherited?t[a.join(".")]={objectId:l.objectId,inherited:l.inherited}:i(l,a)})};return"object"==typeof e&&"inheritanceData"in e&&"object"==typeof e.inheritanceData&&null!==e.inheritanceData&&"metaData"in e.inheritanceData&&"object"==typeof e.inheritanceData.metaData&&i(e.inheritanceData.metaData),t})(l)),[,u]=(0,n.useTransition)(),p=(0,n.useCallback)(e=>d[Array.isArray(e)?e.join("."):e.toString()],[d]),m=(0,n.useCallback)((e,t)=>{let i=Array.isArray(e)?e.join("."):e.toString();c(e=>({...e,[i]:t}))},[]),g=(0,n.useCallback)(e=>{var t;(null==(t=p(e))?void 0:t.inherited)!==!1&&u(()=>{m(e,{objectId:i,inherited:"broken"})})},[]),h=(0,n.useMemo)(()=>({getInheritanceState:p,breakInheritance:g}),[p,g]);return(0,r.jsx)(s.Provider,{value:h,children:t})}},407(e,t,i){"use strict";i.d(t,{n:()=>l});var r=i(47867),n=i(6507);let l=()=>(0,r.useContext)(n.d)},37433(e,t,i){"use strict";i.d(t,{N:()=>o,p:()=>a});var r=i(74848),n=i(47867),l=i(74108);let a=(0,n.createContext)(void 0),o=e=>{let{children:t}=e,[i,o]=(0,n.useState)(void 0),s=(0,n.useRef)(void 0),[d,c]=(0,n.useState)(void 0),u=(0,n.useRef)(void 0),p=e=>{o(e),s.current=e},m=e=>{c(e),u.current=e},g=(0,n.useMemo)(()=>({runningTask:i,setRunningTask:p,isAutoSaveLoading:i===l.D.AutoSave,runningTaskRef:s,queuedTask:d,setQueuedTask:m}),[i,d]);return(0,r.jsx)(a.Provider,{value:g,children:t})}},4919(e,t,i){"use strict";i.d(t,{m:()=>l});var r=i(47867),n=i(37433);let l=()=>{let e=(0,r.useContext)(n.p);if(void 0===e)throw Error("useSaveContext must be used within a SaveProvider");return e}},83950(e,t,i){"use strict";i.d(t,{f:()=>g});var r=i(74848);i(47867);var n=i(58599),l=i(71173),a=i(8412),o=i(35747),s=i(39808),d=i(71615),c=i(25750),u=i(22014),p=i(21429);let m={classRestriction:void 0,isResolvingClassDefinitionsBasedOnElementId:!0},g=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:m,{ContextComponent:i,ConfigurationComponent:g,...h}=e;return{...h,ContextComponent:()=>{let{useElementId:e}=(0,a.t)(),{getId:o}=e();return(0,r.jsx)(l.k,{elementId:!1===t.isResolvingClassDefinitionsBasedOnElementId?1:o(),children:(0,r.jsx)(n.F,{config:t,children:(0,r.jsx)(i,{})})})},ConfigurationComponent:()=>{let{ViewComponent:e}=(0,a.t)(),{selectedClassDefinition:i}=(0,o.p)(),{t:n}=(0,p.useTranslation)();return!0===t.showConfigLayer&&void 0===i?(0,r.jsx)(s.U,{padded:!0,children:(0,r.jsxs)(c.s,{align:"center",gap:"extra-small",children:[(0,r.jsx)(u.E,{children:n("data-object.select-class-to-display")}),(0,r.jsx)(d.C,{})]})}):!0===t.showConfigLayer&&void 0===i?(0,r.jsx)(e,{}):(0,r.jsx)(g,{})}}}},71615(e,t,i){"use strict";i.d(t,{C:()=>p});var r=i(74848),n=i(47867),l=i(35747),a=i(1993),o=i(8412),s=i(79963),d=i(64165),c=i(63364),u=i(10600);let p=e=>{let{nullable:t=!1}=e,{selectedClassDefinition:i,setSelectedClassDefinition:p,availableClassDefinitions:m,config:g}=(0,l.p)(),h=(0,n.useContext)(d.u),{useDataQueryHelper:v}=(0,o.t)(),{setPage:f}=(0,s.M)(),{setDataLoadingState:y}=v(),b=(0,c.Lt)(u.K["DynamicTypes/ObjectRegistry"]),x=!1,j=void 0===g.classRestriction&&t,w=m.map(e=>({value:e.id,label:e.name}));if(j&&w.unshift({value:null,label:"All classes"}),void 0===g.classRestriction||j||void 0!==i||p(m[0]),void 0!==h){let{value:e}=h;x=!("string"==typeof e&&b.hasDynamicType(e))||!b.getDynamicType(e).allowClassSelectionInSearch}return(0,n.useEffect)(()=>{x&&p(void 0)},[x]),(0,r.jsx)(a.l,{className:"w-full","data-testid":"listing-class-definition-select",disabled:x,minWidth:"normal",onChange:e=>{(e=>{if(e===(null==i?void 0:i.id))return;let t=m.find(t=>t.id===e);f(1),y("initial"),p(t)})(e)},optionFilterProp:"label",options:w,showSearch:!0,value:j?(null==i?void 0:i.name)??null:null==i?void 0:i.name})}},58599(e,t,i){"use strict";i.d(t,{F:()=>o,b:()=>a});var r=i(74848),n=i(47867),l=i(18929);let a=(0,n.createContext)(void 0),o=e=>{let{children:t,config:i}=e,{data:o}=(0,l.G)(),[s,d]=(0,n.useState)(void 0),c=(0,n.useMemo)(()=>{if(void 0!==i.classRestriction){let e=i.classRestriction.map(e=>e.classes);return(null==o?void 0:o.items.filter(t=>e.includes(t.name)))??[]}return void 0!==o?o.items:[]},[o]),u=s;return 1===c.length&&void 0===s&&(u=c[0]),(0,n.useMemo)(()=>(0,r.jsx)(a.Provider,{value:{config:i,availableClassDefinitions:c,selectedClassDefinition:u,setSelectedClassDefinition:d},children:t}),[i,c,s,o])}},35747(e,t,i){"use strict";i.d(t,{H:()=>a,p:()=>l});var r=i(47867),n=i(58599);function l(e){let t=(0,r.useContext)(n.b);if(void 0===t&&!e)throw Error("useClassDefinitionSelection must be used within a ClassDefinitionSelectionProvider");return t}let a=()=>l(!0)},28363(e,t,i){"use strict";i.d(t,{f:()=>eh});var r,n=i(74848),l=i(47867),a=i.n(l),o=i(21429),s=i(81898),d=i(62059);let c=a().createContext({columns:[],setColumns:()=>{}}),u=e=>{let{children:t}=e,[i,r]=(0,l.useState)([]),a=e=>{"function"==typeof e?r(e(i)):r(e.map(e=>{var t,i;return(null==(t=e.__meta)?void 0:t.uniqueId)!==void 0?{...e,__meta:{...e.__meta,uniqueId:e.__meta.uniqueId}}:{...e,__meta:{...e.__meta,uniqueId:(null==(i=e.__meta)?void 0:i.uniqueId)??(0,d.u)()}}}))};return(0,l.useMemo)(()=>(0,n.jsx)(c.Provider,{value:{columns:i,setColumns:a},children:t}),[i,t])};var p=i(35864);let m=()=>{let{columns:e,setColumns:t}=(0,l.useContext)(c);return{columns:e,setColumns:t,removeColumn:function(i){t(e.filter(e=>e.key!==i.key))},addColumn:function(i){t([...e,i])},addColumns:function(i){t([...e,...i])},resetColumns:function(){t([])}}};var g=i(61549),h=i(27994),v=i(91206),f=i(39808),y=i(29150),b=i(2338),x=i(96940),j=i(99154),w=i(86569),C=i(27820),S=i(32773),T=i(29740),I=i(31067),k=i(7814),E=i(40703),D=i(18196);let N=()=>{let{setColumns:e,columns:t}=m(),{t:i}=(0,o.useTranslation)(),r=(0,l.useMemo)(()=>t.map(t=>{var l,a,o;let s=(null==(l=t.__meta)?void 0:l.uniqueId)??(0,d.u)(),c=`${t.key}`,u="advanced"===t.key,p=(null==t||null==(o=t.__meta)||null==(a=o.advancedColumnConfig)?void 0:a.title)??"Add a title";if("fieldDefinition"in t.config){let e=t.config.fieldDefinition;c=(0,D.Po)(null==e?void 0:e.title)?t.key:null==e?void 0:e.title}return{id:s,sortable:!0,meta:t,type:u?"collapse":"default",children:u?(0,n.jsx)(w.Tag,{color:"purple",children:p}):(0,n.jsx)(k.m,{title:Array.isArray(t.group)?t.group.join("/"):void 0,children:(0,n.jsx)(w.Tag,{children:i(`${c}`)})}),..."advanced"===t.key?{body:(0,n.jsx)(I.p,{column:t,onChange:t=>{var i,n;i=t,n=s,e(r.map(e=>{if(e.id===n){var t;return{...e,meta:{...e.meta,__meta:{...e.meta.__meta,advancedColumnConfig:null==(t=i.__meta)?void 0:t.advancedColumnConfig}}}}return e}).map(e=>e.meta))}})}:{},renderRightToolbar:(0,n.jsxs)(b.$,{size:"mini",children:[function(t,i){if(!i.localizable)return(0,n.jsx)(n.Fragment,{});let l="dataobject.classificationstore"===i.type;return(0,n.jsx)(E.k,{customKeys:l?["default"]:[],isNullable:!0,onChange:i=>{var n,l;n=t,l=i,e(r.map(e=>e.id===n?{...e,meta:{...e.meta,locale:l}}:e).map(e=>e.meta))},value:void 0===i.locale?null:i.locale})}(s,t),(0,n.jsx)(T.K,{icon:{value:"trash"},onClick:()=>{var t;t=s,e(r.filter(e=>e.id!==t).map(e=>e.meta))},theme:"secondary"})]})}}),[t]);return(0,n.jsxs)(n.Fragment,{children:[0===r.length&&(0,n.jsx)(w.Empty,{image:w.Empty.PRESENTED_IMAGE_SIMPLE}),r.length>0&&(0,n.jsx)(S.N,{items:r,onItemsChange:function(t){e(t.map(e=>e.meta))},sortable:!0})]})};var P=i(23610),A=i(25750),F=i(30492),$=i(37364),M=i(96316),O=i(3554),_=i(94685),L=i(72636),R=i(35747);let B=()=>{let{setItem:e}=(0,O.Nb)(),{selectedClassDefinition:t}=(0,R.p)(),{open:i}=(0,_.L)({selectionType:L.hO.Single,areas:{object:!0,asset:!1,document:!1},config:{objects:{allowedTypes:[(null==t?void 0:t.name)??""]}},onFinish:t=>{var i;e(null==t||null==(i=t.items)?void 0:i[0])}});return(0,n.jsx)(h.$,{onClick:i,children:"Select Item"})},z=e=>{let{onCancelClick:t,onApplyClick:i,addColumnMenu:r,open:l=!1,onOpenChange:a}=e,{t:s}=(0,o.useTranslation)();return(0,n.jsx)(n.Fragment,{children:l&&(0,n.jsx)(O.hG,{children:(0,n.jsx)($.SU,{pipelineLayout:"verbose",children:(0,n.jsx)(F.a,{footer:null,onCancel:()=>null==a?void 0:a(!1),onClose:()=>null==a?void 0:a(!1),open:l,size:"XL",title:(0,n.jsx)(M.w,{iconName:"settings",children:"Grid Config"}),children:(0,n.jsxs)(v.s,{children:[(0,n.jsx)(x.M,{padding:{x:"none"},position:"content",theme:"secondary",children:(0,n.jsx)(B,{})}),(0,n.jsx)(f.U,{style:{height:"calc(80vh - 200px)"},children:(0,n.jsx)(b.$,{direction:"vertical",style:{width:"100%"},children:(0,n.jsx)(N,{})})}),(0,n.jsxs)(x.M,{padding:{x:"none",y:"small"},theme:"secondary",children:[!(0,p.isEmpty)(r)&&(0,n.jsx)(j.m,{menu:{items:r},children:(0,n.jsx)(C.J,{icon:{value:"new"},children:s("listing.add-column")})}),(0,n.jsxs)(b.$,{size:"extra-small",children:[(0,n.jsx)(h.$,{onClick:t,type:"default",children:s("button.cancel")}),(0,n.jsx)(h.$,{onClick:()=>{i(),null==a||a(!1)},type:"primary",children:s("button.apply")})]})]})]})})})})})};var V=i(76468);let G=e=>{let[t,i]=(0,l.useState)(!1),{onCancelClick:r,onApplyClick:a,onEditConfigurationClick:d,onUpdateConfigurationClick:c,onSaveConfigurationClick:u,addColumnMenu:m,gridConfig:g,savedGridConfigurations:S,isUpdating:I,isLoading:k,currentUserId:E}=e,{t:D}=(0,o.useTranslation)(),{saveEnabled:F}=(0,V.t)(),$=(null==g?void 0:g.name)!=="Predefined"&&void 0!==g,M=E===(null==g?void 0:g.ownerId);return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(z,{...e,onOpenChange:i,open:t}),(0,n.jsx)(v.s,{renderToolbar:(0,n.jsxs)(x.M,{theme:"secondary",children:[(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-cancel-button",onClick:r,type:"default",children:D("button.cancel")}),(0,n.jsxs)(b.$,{size:"extra-small",children:[(0,n.jsx)(n.Fragment,{children:!0===F&&(0,n.jsxs)(n.Fragment,{children:[!$&&(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-save-template-button",onClick:u,type:"default",children:D("grid.configuration.save-template")}),$&&(0,n.jsxs)(n.Fragment,{children:[M&&(0,n.jsxs)(P.a,{children:[(0,n.jsx)(h.$,{loading:I,onClick:c,type:"default",children:D("grid.configuration.update-template")}),(0,n.jsx)(j.m,{menu:{items:[{key:0,icon:(0,n.jsx)(s.I,{value:"edit"}),label:D("grid.configuration.edit-template-details"),onClick:()=>{d()}},{key:1,icon:(0,n.jsx)(s.I,{value:"save"}),label:D("grid.configuration.save-new-template"),onClick:()=>{u()}}]},children:(0,n.jsx)(T.K,{"data-testid":"listing-grid-config-more-button",icon:{value:"more"},type:"default"})})]}),!M&&(0,n.jsx)(h.$,{onClick:u,type:"default",children:D("grid.configuration.save-template")})]})]})}),(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-apply-button",onClick:a,type:"primary",children:D("button.apply")})]})]}),children:(0,n.jsxs)(f.U,{padded:!0,children:[(0,n.jsx)(y.Y,{fullWidth:!0,title:D("listing.grid-config.title"),children:(0,n.jsxs)(A.s,{className:"w-full",justify:"space-between",children:[!0===F&&(0,n.jsx)(j.m,{disabled:(null==S?void 0:S.length)===0&&!k,menu:{items:S},children:(0,n.jsx)(w.Tooltip,{title:(null==S?void 0:S.length)!==0||k?"":D("grid.configuration.no-saved-templates"),children:(0,n.jsx)(C.J,{"data-testid":"listing-grid-config-template-dropdown",disabled:(null==S?void 0:S.length)===0&&!k,icon:{value:"style"},loading:k,style:{minHeight:"32px",minWidth:"100px"},children:$?(0,n.jsx)(n.Fragment,{children:g.name}):(0,n.jsx)(n.Fragment,{children:D("grid.configuration.template")})})})}),(0,n.jsx)(A.s,{gap:"mini",children:(0,n.jsx)(T.K,{icon:{value:"show-details"},onClick:()=>{i(!0)}})})]})}),(0,n.jsxs)(b.$,{direction:"vertical",style:{width:"100%"},children:[(0,n.jsx)(N,{}),!(0,p.isEmpty)(m)&&(0,n.jsx)(j.m,{menu:{items:m},children:(0,n.jsx)(C.J,{"data-testid":"listing-grid-config-add-button",icon:{value:"new"},type:"link",children:D("listing.add-column")})})]})]})})]})};var U=i(57231),q=i(18848),W=i(22014),K=i(91191),H=i(57502);let X=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{label:t` - color: ${i.colorTextLabel}; - `,icon:t` - color: ${i.colorTextLabel}; - `,updateButton:t` - color: ${i.Button.defaultColor}; - - .pimcore-icon { - color: ${i.Button.defaultColor}; - } - - &:hover { - cursor: pointer; - } - `,updateButtonText:t` - color: ${i.Button.defaultColor}; - `,tag:t` - .ant-tag { - background-color: ${i.Colors.Neutral.Fill.colorFillTertiary}; - } - `}});var J=i(94614);let Z={name:"",description:"",shareGlobally:!0,setAsDefault:!1,saveFilters:!1},Y=e=>{var t,i,r;let a,d,c,[u,m]=(0,l.useState)((null==(t=e.initialValues)?void 0:t.shareGlobally)??Z.shareGlobally),[g,h]=(0,l.useState)(!1),{gridConfig:v,setGridConfig:f}=(0,J.m)(),y=null==v?void 0:v.sharedUsers,x=null==v?void 0:v.sharedRoles,{t:j}=(0,o.useTranslation)(),{styles:C}=X();(0,l.useEffect)(()=>{var t;null==(t=e.form)||t.resetFields()},[]);let S=()=>{h(!1)},T=(e,t)=>(0,n.jsx)(s.I,{className:C.icon,options:{width:t??12,height:t??12},value:e});return(0,n.jsxs)(U.lV,{layout:"vertical",onValuesChange:(t,i)=>{var r;null==(r=e.onValuesChange)||r.call(e,t,i);let n=t.shareGlobally;void 0!==n&&(m(t.shareGlobally),(0,p.isEmpty)(v)||f({...v,shareGlobal:n}))},...e,children:[(0,n.jsx)(U.lV.Item,{label:j("user-management.name"),name:"name",rules:[{required:!0,message:j("form.validation.provide-name")}],children:(0,n.jsx)(w.Input,{})}),(0,n.jsx)(U.lV.Item,{label:j("description"),name:"description",rules:[{required:!1,message:j("form.validation.provide-description")}],children:(0,n.jsx)(w.Input.TextArea,{})}),(0,n.jsx)(b.$,{size:"extra-small",children:(0,n.jsx)(U.lV.Item,{name:"setAsDefault",valuePropName:"checked",children:(0,n.jsx)(w.Checkbox,{children:j("grid.configuration.set-default-template")})})}),(0,n.jsx)(w.Flex,{align:"center",gap:"mini",children:(0,n.jsx)(U.lV.Item,{name:"shareGlobally",valuePropName:"checked",children:(0,n.jsx)(q.d,{labelLeft:(0,n.jsx)(W.E,{children:j("grid.configuration.shared")}),labelRight:!0===u?(0,n.jsx)(W.E,{className:C.label,children:j("common.globally")}):(0,n.jsxs)(n.Fragment,{children:[(0,n.jsxs)(w.Flex,{gap:10,children:[(0,n.jsxs)(W.E,{className:C.label,children:[T("user")," ",j("user-management.user")," | ",T("shield")," ",j("user-management.role")]}),(0,n.jsxs)(w.Flex,{align:"center",className:C.updateButton,gap:8,onClick:()=>{h(!g)},children:[T("edit",16),(0,n.jsx)(W.E,{className:C.updateButtonText,children:j("button.add-edit")})]})]}),g&&(0,n.jsx)(K.p,{handleApplyChanges:e=>{let{sharedUsers:t,sharedRoles:i}=e;(0,p.isEmpty)(v)||(f({...v,shareGlobal:!1,sharedUsers:t,sharedRoles:i}),S())},handleClose:S,initialSharedRoles:x,initialSharedUsers:y,roleList:null==e?void 0:e.roleList,userList:null==e?void 0:e.userList})]})})})}),!1===u&&(0,n.jsx)(H.L,{itemGap:"mini",list:(a=[],d=[],c=e=>{let{label:t,iconName:i}=e;return{children:(0,n.jsx)(W.E,{ellipsis:!0,style:{maxWidth:"148px"},type:"secondary",children:t}),icon:T(i),bordered:!1}},null==(i=e.userList)||i.items.forEach(e=>{(null==v?void 0:v.sharedUsers).includes(e.id)&&a.push(c({label:null==e?void 0:e.username,iconName:"user"}))}),null==(r=e.roleList)||r.items.forEach(e=>{(null==v?void 0:v.sharedRoles).includes(e.id)&&d.push(c({label:null==e?void 0:e.name,iconName:"shield"}))}),[a,d]),tagListItemClassNames:C.tag})]})};var Q=i(276);let ee=e=>{let{formProps:t,onCancelClick:i,isLoading:r,onDeleteClick:l,isDeleting:a,saveAsNewConfiguration:s,modificationDate:d,userName:c,...u}=e,{form:p}=t,{t:m}=(0,o.useTranslation)();return(0,n.jsx)(v.s,{renderToolbar:(0,n.jsxs)(x.M,{theme:"secondary",children:[void 0!==l&&!0!==s?(0,n.jsx)(w.Popconfirm,{cancelText:m("button.cancel"),description:m("grid.configuration.delete-template-confirmation"),okText:m("delete"),onConfirm:l,title:m("grid.configuration.delete-this-template"),children:(0,n.jsx)(C.J,{"data-testid":"listing-grid-config-delete-template-button",disabled:r,icon:{value:"trash"},loading:a,children:m("grid.configuration.delete-template")})}):(0,n.jsx)("div",{}),(0,n.jsxs)(b.$,{size:"mini",children:[(0,n.jsx)(C.J,{icon:{value:"close"},onClick:i,type:"default",children:m("button.cancel")}),(0,n.jsx)(h.$,{"data-testid":"listing-grid-config-save-apply-button",disabled:a,loading:r,onClick:()=>null==p?void 0:p.submit(),type:"primary",children:m("button.save-apply")})]})]}),children:(0,n.jsx)(f.U,{padded:!0,children:(0,n.jsxs)(w.Flex,{gap:"small",vertical:!0,children:[(0,n.jsx)(y.Y,{title:m("grid.configuration.save-template-configuration")}),!0!==s&&(0,n.jsxs)(w.Row,{children:[(0,n.jsxs)(w.Col,{span:6,children:[(0,n.jsxs)(W.E,{children:[m("common.owner"),":"]})," ",(0,n.jsx)(W.E,{type:"secondary",children:c})]}),!(0,D.Po)(d)&&(0,n.jsxs)(w.Col,{span:12,children:[(0,n.jsxs)(W.E,{children:[m("common.modification-date"),": "]}),(0,n.jsx)(W.E,{type:"secondary",children:(0,Q.r6)({timestamp:d,dateStyle:"short",timeStyle:"short"})})]})]}),(0,n.jsx)(Y,{...t,...u})]})})})};var et=i(73612),ei=i(52178),er=i(66634),en=i(66707),el=i(40910),ea=i(8412),eo=i(69187),es=i(74003),ed=i(96511),ec=i(43588),eu=((r=eu||{}).Edit="edit",r.Save="save",r.Update="update",r);let ep=()=>{let{useElementId:e}=(0,ea.t)(),{availableColumns:t,getAvailableColumnsDropdown:i}=(0,er.m)(),{selectedColumns:r,setSelectedColumns:a}=(0,en.K)(),{columns:o,setColumns:s,addColumn:d,addColumns:c}=m(),{getId:u}=e(),h=(0,g.J)(),{id:v,setId:y}=(0,el.u)(),{gridConfig:b,setGridConfig:x}=(0,J.m)(),{selectedClassDefinition:j}=(0,R.p)(),{openModal:w}=(0,es._P)({onUpdate:function(e){let i=e.modalContext,r=t.find(e=>e.key===i.name&&"dataobject.classificationstore"===e.type);if(void 0===r)throw Error("Could not find base column for classification store field "+i.name);let n=[];"group-by-key"===e.type&&e.data.forEach(e=>{let t=e.definition;n.push({...r,key:`${r.key}`,frontendType:null==t?void 0:t.fieldtype,locale:r.localizable?"default":void 0,config:{keyId:e.id,groupId:e.groupId,fieldDefinition:t}})}),c(n)}}),{isLoading:C,isFetching:S,data:T}=(0,eo.t1)({classId:(null==j?void 0:j.id)??""},{skip:void 0===j}),{data:I}=(0,et.S2)(),{data:k}=(0,ei.DA)(),{isFetching:E}=(0,eo.RX)({classId:(null==j?void 0:j.id)??"",folderId:u(),configurationId:v},{skip:void 0===j}),[D,{isLoading:N}]=(0,eo.je)(),[P,{isLoading:A}]=(0,eo.v4)(),[F,{isLoading:$}]=(0,eo.lw)(),[M,O]=(0,l.useState)(eu.Edit),[_]=ec.Form.useForm(),L=(null==b?void 0:b.name)!=="Predefined"&&void 0!==b,B=(0,l.useMemo)(()=>{if(void 0!==T){var e;return(null==(e=T.items)?void 0:e.map(e=>({key:e.id,label:e.name,onClick:()=>{y(e.id)}})))??[]}return[]},[T]);(0,l.useEffect)(()=>{s(r.map(e=>({...e.originalApiDefinition,locale:null==e?void 0:e.locale})))},[r]);let z=e=>{if("dataobject.classificationstore"===e.type){if(!("fieldDefinition"in e.config))throw Error("Field definition is missing in column config");let t=e.config.fieldDefinition;w({...t,fieldName:t.name,allowedTabs:[ed.X.GroupByKey]})}else d(e)},V=(0,l.useMemo)(()=>i(z),[i,o]);function U(e){return e.map(e=>{var t;return{key:e.key,locale:e.locale??null,group:e.group,type:e.type,config:(null==(t=e.__meta)?void 0:t.advancedColumnConfig)??e.config}})}return E||$?(0,n.jsx)(f.U,{loading:!0}):(0,n.jsxs)(n.Fragment,{children:[M===eu.Edit&&(0,n.jsx)(G,{addColumnMenu:V.menu.items,columns:o,currentUserId:null==h?void 0:h.id,gridConfig:b,isLoading:C||S,isUpdating:A,onApplyClick:()=>{a(o.map(e=>({key:e.key,locale:null===e.locale&&e.localizable?void 0:e.locale,type:e.type,config:e.config,sortable:e.sortable,editable:e.editable,localizable:e.localizable,exportable:e.exportable,frontendType:e.frontendType,group:e.group,originalApiDefinition:e})))},onCancelClick:()=>{s(r.map(e=>e.originalApiDefinition))},onEditConfigurationClick:()=>{O(eu.Update)},onSaveConfigurationClick:()=>{O(eu.Save)},onUpdateConfigurationClick:function(){void 0===b?console.error("No grid configuration available"):P({configurationId:b.id,body:{folderId:u(),columns:U(o),name:b.name,description:b.description??"",setAsFavorite:b.setAsFavorite,shareGlobal:b.shareGlobal,sharedRoles:b.sharedRoles,sharedUsers:b.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to update grid configuration",e)})},savedGridConfigurations:B}),(M===eu.Save||M===eu.Update)&&(0,n.jsx)(ee,{formProps:{form:_,onFinish:function(e){let t=U(o);!0!==e.shareGlobally||(0,p.isEmpty)(b)||x({...b,sharedUsers:[],sharedRoles:[]}),M===eu.Update&&L&&P({configurationId:b.id,body:{folderId:u(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:b.sharedRoles,sharedUsers:b.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to update grid configuration",e)}).then(()=>{O(eu.Edit)}).catch(e=>{console.error("Failed to switch to edit view",e)}),M===eu.Save&&D({classId:j.id,body:{folderId:u(),columns:t,name:e.name,description:e.description,setAsFavorite:e.setAsDefault,shareGlobal:e.shareGlobally,sharedRoles:null==b?void 0:b.sharedRoles,sharedUsers:null==b?void 0:b.sharedUsers,saveFilter:!1,pageSize:0}}).catch(e=>{console.error("Failed to save grid configuration",e)}).then(e=>{(null==e?void 0:e.data)!==void 0&&(y(e.data.id),O(eu.Edit))}).catch(e=>{console.error("Failed to switch to edit view",e)})},initialValues:M===eu.Update&&L?{name:null==b?void 0:b.name,description:null==b?void 0:b.description,setAsDefault:null==b?void 0:b.setAsFavorite,shareGlobally:null==b?void 0:b.shareGlobal}:{...Z}},isDeleting:$,isLoading:N||A,modificationDate:null==b?void 0:b.modificationDate,onCancelClick:()=>{O(eu.Edit)},onDeleteClick:L?function(){L&&F({configurationId:b.id}).then(()=>{O(eu.Edit),y(void 0)}).catch(e=>{console.error("Failed to switch to edit view",e)})}:void 0,roleList:I,saveAsNewConfiguration:M===eu.Save,userList:k,userName:null==h?void 0:h.username})]})};var em=i(85670);let eg=e=>{let{settings:t}=e;return(0,n.jsx)(em.Z,{settings:t,children:(0,n.jsx)(u,{children:(0,n.jsx)(es.K7,{children:(0,n.jsx)(ep,{})})})})},eh=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{saveEnabled:!0};return()=>{let{getProps:i}=e(),{t:r}=(0,o.useTranslation)();return{getProps:()=>{let e=i();return{...e,entries:[...e.entries,{component:(0,n.jsx)(eg,{settings:t}),key:"configuration",icon:(0,n.jsx)(s.I,{value:"settings"}),tooltip:r("sidebar.grid_config")}]}}}}}},31067(e,t,i){"use strict";i.d(t,{p:()=>I});var r=i(74848),n=i(10600),l=i(57231),a=i(44456),o=i(86569),s=i(47867),d=i(35864),c=i(75419),u=i(25750),p=i(22014),m=i(64756),g=i(20351),h=i(21429),v=i(69187),f=i(22764),y=i(3554),b=i(85775);let x=e=>{var t,i,n;let{column:l}=e,{data:a}=(0,g.E)(),{item:o}=(0,y.Nb)(),{currentLanguage:s}=(0,b.Sk)(),c=a.items[0],u=(null==l||null==(t=l.__meta)?void 0:t.advancedColumnConfig)??l.config,{t:m}=(0,h.useTranslation)(),{data:x,error:j}=(0,v.vr)({body:{column:{type:l.type,key:l.key,locale:l.localizable?(l.locale??s)==="default"?null:l.locale??s:void 0,config:u},objectId:(null==o||null==(i=o.data)?void 0:i.id)??(null==c?void 0:c.id)}});return(0,r.jsxs)(r.Fragment,{children:[!(0,d.isUndefined)(j)&&(0,r.jsxs)(p.E,{type:"danger",children:[m("grid.advanced-column.error-preview-data"),": ","error"in j?null==j?void 0:j.error:(0,r.jsx)(r.Fragment,{})]}),(0,d.isUndefined)(j)?(0,r.jsx)(r.Fragment,{children:(null==x||null==(n=x.value)?void 0:n.length)>0?(0,r.jsx)(f.A,{value:null==x?void 0:x.value}):(0,r.jsx)("div",{children:m("grid.advanced-column.no-preview-data")})}):null]})};var j=i(82528);let w=e=>{var t;let{data:i}=(0,g.E)(),n=(null==i?void 0:i.items.length)>0&&(null==i||null==(t=i.items)?void 0:t[0])!==void 0,l=(0,j.d)(e.column,300),{t:a}=(0,h.useTranslation)();return(0,s.useMemo)(()=>(0,r.jsx)(m.a,{padding:{top:"small",bottom:"none",x:"small"},children:(0,r.jsxs)(u.s,{align:"center",gap:"small",children:[(0,r.jsxs)(p.E,{style:{wordBreak:"keep-all"},children:[a("grid.advanced-column.preview"),":"]}),n?(0,r.jsx)(x,{column:e.column}):(0,r.jsx)(p.E,{type:"secondary",children:a("grid.advanced-column.no-preview")})]})}),[l])};var C=i(88286),S=i(37364),T=i(85274);let I=e=>{var t;let{column:i,onChange:u,showPreview:p=!0}=e,[g]=l.lV.useForm(),{pipelineLayout:v}=(0,S.ve)(),{t:f}=(0,h.useTranslation)();return(0,s.useEffect)(()=>{var e;g.setFieldValue("value",(null==i||null==(e=i.__meta)?void 0:e.advancedColumnConfig)??{})},[i]),(0,r.jsx)(l.lV,{form:g,initialValues:null==i||null==(t=i.__meta)?void 0:t.advancedColumnConfig,layout:"vertical",onValuesChange:e=>{let t={...i,__meta:{...i.__meta??{},advancedColumnConfig:{...e.value}}};if(void 0!==u){var r;(0,d.isEqual)(null==(r=i.__meta)?void 0:r.advancedColumnConfig,e.value)||u(t)}},children:(0,r.jsx)(c.U,{initialConfig:null==i?void 0:i.config,children:(0,r.jsx)(l.lV.Item,{name:"value",children:(0,r.jsx)(a.$,{items:[{id:"title",component:(0,r.jsx)(a.$.CustomItem,{children:(0,r.jsx)(m.a,{padding:{top:"mini",bottom:"mini",x:"none"},children:(0,r.jsx)(l.lV.Item,{name:"title",children:(0,r.jsx)(o.Input,{placeholder:f("grid.advanced-column.title.placeholder")})})})})},{id:"fields",component:(0,r.jsxs)(a.$.CustomItem,{children:["default"===v&&(0,r.jsx)(C.t,{items:[{key:"advancedColumns",label:f("grid.advanced-column.advancedColumns"),forceRender:!0,children:(0,r.jsx)(a.$.DynamicGroupItem,{dynamicTypeRegistryId:n.K["DynamicTypes/Grid/SourceFieldsRegistry"],id:"advancedColumns"})},{key:"transformers",label:f("grid.advanced-column.transformers"),forceRender:!0,children:(0,r.jsx)(a.$.DynamicGroupItem,{dynamicTypeRegistryId:n.K["DynamicTypes/Grid/TransformersRegistry"],id:"transformers"})}]}),"verbose"===v&&(0,r.jsx)(T.n,{leftItem:{children:(0,r.jsx)(a.$.DynamicGroupItem,{dynamicTypeRegistryId:n.K["DynamicTypes/Grid/SourceFieldsRegistry"],id:"advancedColumns",showTitle:!0}),size:50},rightItem:{children:(0,r.jsx)(a.$.DynamicGroupItem,{dynamicTypeRegistryId:n.K["DynamicTypes/Grid/TransformersRegistry"],id:"transformers",showTitle:!0}),size:50},withDivider:!0})]})},...p?[{id:"Preview",component:(0,r.jsx)(w,{column:i})}]:[]]})})})})}},37364(e,t,i){"use strict";i.d(t,{SU:()=>a,kX:()=>l,ve:()=>o});var r=i(74848),n=i(47867);let l=(0,n.createContext)({pipelineLayout:"default"}),a=e=>{let{children:t,pipelineLayout:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{pipelineLayout:i},children:t}),[t,i])},o=()=>{let e=(0,n.useContext)(l);if(void 0===e)throw Error("usePipelineLayoutContext must be used within a PipelineLayoutProvider");return e}},3554(e,t,i){"use strict";i.d(t,{Nb:()=>s,hG:()=>o});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,n.createContext)({item:null,setItem:()=>{}}),o=e=>{let{children:t}=e,[i,l]=(0,n.useState)(null);return(0,n.useMemo)(()=>(0,r.jsx)(a.Provider,{value:{item:i,setItem:l},children:t}),[i,t])},s=()=>{let e=l().useContext(a);if(void 0===e)throw Error("usePreviewItem must be used within a PreviewItemProvider");return e}},22764(e,t,i){"use strict";i.d(t,{A:()=>c});var r=i(74848),n=i(10600),l=i(63364),a=i(65943),o=i(14013),s=i(89507);i(47867);let d=(0,s.createColumnHelper)(),c=e=>{let{value:t}=e,i=(0,l.Lt)(n.K["DynamicTypes/AdvancedGridCellRegistry"]),s=t.map((e,t)=>{let r=i.hasDynamicType(e.type);return d.accessor(`${e.type}-${t}`,{header:e.type,meta:{editable:!1,type:r?e.type:"dataobject.adapter",config:{...r?{}:{dataObjectType:e.type,dataObjectConfig:{}}}}})}),c=[],u={};return t.forEach((e,t)=>{u[`${e.type}-${t}`]=e.value}),c.push(u),(0,r.jsx)(a.F,{children:(0,r.jsx)(o.x,{autoWidth:!0,columns:s,data:c})})}},53612(e,t,i){"use strict";i.d(t,{$:()=>n});var r=i(21429);let n=e=>()=>{let{transformGridColumn:t,...i}=e(),{t:n}=(0,r.useTranslation)();return{...i,transformGridColumn:e=>{var i,r,l,a,o;let s=t(e);return"dataobject.adapter"!==e.type&&"dataobject.objectbrick"!==e.type&&"dataobject.classificationstore"!==e.type?s:{...s,header:n((null==(r=e.config)||null==(i=r.fieldDefinition)?void 0:i.title)??e.key)+(void 0!==e.locale&&null!==e.locale?` (${e.locale})`:""),meta:{...s.meta,config:{...(null==s||null==(l=s.meta)?void 0:l.config)??{},dataObjectType:(null==(o=e.config)||null==(a=o.fieldDefinition)?void 0:a.fieldtype)??e.frontendType,dataObjectConfig:{...e.config}}}}}}}},71173(e,t,i){"use strict";i.d(t,{k:()=>m,v:()=>p});var r=i(74848),n=i(15623),l=i(47867),a=i(23004),o=i(46881),s=i(55638),d=i(39808),c=i(44499),u=i(9653);let p=(0,l.createContext)(void 0),m=e=>{let{children:t,elementId:i}=e,m=(0,c.J)(u.F.Objects),g=(0,a.HE)(void 0,{skip:!m}),h=(0,o.useAppDispatch)(),[v,f]=(0,l.useState)({isLoading:void 0!==i,data:void 0});(0,l.useEffect)(()=>{void 0!==i&&m&&h(n.FH.endpoints.classDefinitionFolderCollection.initiate({folderId:i})).unwrap().then(e=>{f({isLoading:!1,data:e})}).catch(e=>{(0,s.Ay)(new s.hD(e))})},[i,m]),(null==g?void 0:g.error)!==void 0&&(0,s.Ay)(new s.hD(g.error));let y={...g};return m?(y.isLoading=g.isLoading||v.isLoading,y.isFetching=g.isFetching||v.isLoading):(y.data={items:[],totalItems:0},y.isLoading=!1,y.isFetching=!1),void 0!==i&&void 0!==v.data&&void 0!==g.data&&(y.data={...g.data,items:v.data.items.map(e=>{var t;let i=null==(t=g.data)?void 0:t.items.find(t=>t.id===e.id);if(void 0!==i)return{...i};throw Error("Class definition not found")}),totalItems:v.data.totalItems}),(0,l.useMemo)(()=>y.isLoading?(0,r.jsx)(d.U,{loading:!0}):(0,r.jsx)(p.Provider,{value:y,children:t}),[y])}},18929(e,t,i){"use strict";i.d(t,{G:()=>a});var r=i(47867),n=i(71173),l=i(61549);let a=()=>{let e=(0,r.useContext)(n.v),t=(0,l.J)();if(void 0===e)throw Error("useClassDefinitions must be used within a ClassDefinitionsProvider");return{...e,getById:t=>{var i,r;return null==(r=e.data)||null==(i=r.items)?void 0:i.find(e=>e.id===t)},getByName:t=>{var i,r;return null==(r=e.data)||null==(i=r.items)?void 0:i.find(e=>e.name===t)},getAllClassDefinitions:()=>{var t;return(null==(t=e.data)?void 0:t.items)??[]},getClassDefinitionsForCurrentUser:()=>{var i,r;return t.isAdmin||(null==t?void 0:t.classes.length)===0?(null==(r=e.data)?void 0:r.items)??[]:(null==(i=e.data)?void 0:i.items.filter(e=>null==t?void 0:t.classes.includes(e.id)))??[]}}}},29376(e,t,i){"use strict";i.d(t,{$B:()=>j,B8:()=>I,C4:()=>O,D3:()=>A,FP:()=>v,HL:()=>w,K5:()=>P,Kk:()=>S,T2:()=>$,Up:()=>M,VN:()=>E,Vu:()=>D,_5:()=>F,di:()=>h,e8:()=>g,ei:()=>L,fb:()=>y,hw:()=>C,lY:()=>_,sR:()=>f,v2:()=>b,vD:()=>x,vb:()=>T,x:()=>k,zE:()=>N});var r=i(88605),n=i(46881),l=i(40331),a=i(76359),o=i(92634),s=i(95674),d=i(50034),c=i(23898),u=i(26280),p=i(65115),m=i(34992);let g=(0,r.createEntityAdapter)({}),h=(0,r.createSlice)({name:"document-draft",initialState:g.getInitialState({modified:!1,properties:[],schedule:[],changes:{},modifiedCells:{},settingsData:{},...o.nd}),reducers:{documentReceived:g.upsertOne,removeDocument(e,t){g.removeOne(e,t.payload)},resetDocument(e,t){void 0!==e.entities[t.payload]&&(e.entities[t.payload]=g.getInitialState({modified:!1,properties:[],changes:{}}).entities[t.payload])},updateKey(e,t){if(void 0!==e.entities[t.payload.id]){let i=e.entities[t.payload.id];(0,m.$)(i,t.payload.key,"key")}},...(0,a.P)(g),...(0,l.u)(g),...(0,s.H)(g),...(0,o.Ne)(g),...(0,c.o)(g),...(0,u.Yu)(g),...(0,d.b)(g),...(0,p.Y)(g)}});(0,n.injectSliceWithState)(h);let{documentReceived:v,removeDocument:f,resetDocument:y,updateKey:b,resetChanges:x,setModifiedCells:j,addProperty:w,removeProperty:C,setProperties:S,updateProperty:T,addSchedule:I,removeSchedule:k,setSchedules:E,updateSchedule:D,resetSchedulesChanges:N,setActiveTab:P,markDocumentEditablesAsModified:A,setDraftData:F,publishDraft:$,unpublishDraft:M,setSettingsData:O,updateSettingsData:_}=h.actions,{selectById:L}=g.getSelectors(e=>e["document-draft"])},15789(e,t,i){"use strict";i.d(t,{T:()=>l,f:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)({id:0}),a=e=>{let{id:t,children:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{id:t},children:i}),[t])}},17678(e,t,i){"use strict";i.d(t,{b:()=>g});var r=i(74848),n=i(47867),l=i.n(n),a=i(43588),o=i(63364),s=i(10600),d=i(57180),c=i(35864),u=i(11774);let p=e=>{let{editableDefinition:t}=e,i=(0,n.useRef)(null),[l,a]=(0,n.useState)(!1);return(0,n.useEffect)(()=>{if((0,c.isNil)(i.current))return;let e=`template__${t.id}`,r=document.getElementById(e);if((0,c.isNil)(r)||"template"!==r.tagName.toLowerCase())return void a(!0);let n=r.content.cloneNode(!0);if(n.children.length>0){let e=n.firstElementChild;!(0,c.isNil)(e)&&(Array.from(e.attributes).forEach(e=>{if("id"!==e.name){var t;null==(t=i.current)||t.setAttribute(e.name,e.value)}}),""!==e.innerHTML.trim()&&(i.current.innerHTML=e.innerHTML),(0,c.isEmpty)(e.className)||(i.current.className=e.className))}a(!0)},[t.id]),(0,r.jsx)("div",{ref:i,children:l&&(0,r.jsx)(u.t,{containerRef:i,editableDefinition:t})})};var m=i(21429);let g=e=>{let{config:t,visible:i,onClose:n,editableDefinitions:u}=e,g=(0,o.Lt)(s.K["DynamicTypes/DocumentEditableRegistry"]),h=(0,o.Lt)(s.K["DynamicTypes/EditableDialogLayoutRegistry"]),{getValue:v}=(0,d.U)(),{t:f}=(0,m.useTranslation)(),y=e=>{if((0,c.isArray)(e))return(0,r.jsx)(r.Fragment,{children:e.map((e,t)=>(0,r.jsx)(l().Fragment,{children:y(e)},e.name??t))});if(!(0,c.isNil)(e.type)&&h.hasDynamicType(e.type))return h.getComponent(e.type,{configItem:e,onRenderNestedContent:y});if(!(0,c.isNil)(e.name)&&!(0,c.isNil)(e.type)){let i=g.hasDynamicType(e.type)?g.getDynamicType(e.type):void 0;if(!(0,c.isNil)(i)){let{definition:i}=(e=>{let i,r=(i=u.find(i=>i.realName===e.name&&i.inDialogBox===t.id),(0,c.isNil)(i)?null:i);if((0,c.isNil)(r))return{definition:null,value:null};{let e=v(r.name);return{definition:r,value:(null==e?void 0:e.data)??null}}})(e);if(!(0,c.isNil)(i))return(0,r.jsx)(a.Card,{title:e.label,children:(0,r.jsx)(p,{editableDefinition:i})},e.name)}}return(0,r.jsx)(r.Fragment,{})},b=e=>(0,c.isPlainObject)(e)&&"string"==typeof e.type;return(0,r.jsx)(a.WindowModal,{cancelButtonProps:{style:{display:"none"}},destroyOnClose:!0,getContainer:()=>document.body,okText:f("save"),onCancel:n,onOk:n,open:i,size:"L",title:f("area-settings"),zIndex:10001,children:!(0,c.isNil)(t.items)&&y((e=>b(e)?[e]:!(0,c.isPlainObject)(e)||b(e)?[]:(0,c.isArray)(e.items)?e.items.filter(b):Object.keys(e).filter(e=>/^\d+$/.test(e)).sort((e,t)=>Number(e)-Number(t)).map(t=>e[t]).filter(b))(t.items))})}},48034(e,t,i){"use strict";i.d(t,{E:()=>c});var r=i(74848),n=i(47867),l=i(25765),a=i.n(l),o=i(11774),s=i(35864),d=i(42817);let c=e=>{let{editableDefinitions:t}=e,i=(0,n.useMemo)(()=>{let e={};return t.forEach(t=>{e[t.id]=(0,n.createRef)()}),e},[t]);return(0,n.useEffect)(()=>(d.g.registerDynamicEditables(t),()=>{let e=t.map(e=>e.id);d.g.unregisterDynamicEditables(e)}),[t]),(0,r.jsx)(r.Fragment,{children:t.map(e=>{let t=document.getElementById(e.id);return(0,s.isNull)(t)?null:(!(0,s.isNull)(i[e.id])&&(0,s.isNull)(i[e.id].current)&&(i[e.id].current=t),a().createPortal((0,r.jsx)(o.t,{containerRef:i[e.id],editableDefinition:e}),t))})})}},11774(e,t,i){"use strict";i.d(t,{M:()=>m,t:()=>g});var r=i(74848),n=i(47867),l=i.n(n),a=i(43588),o=i(46881),s=i(35864),d=i(23945),c=i(57180),u=i(13947),p=i(38921);let m={...d.defaultFieldWidthValues,large:9999},g=e=>{var t;let{editableDefinition:i,containerRef:g}=e,h=(0,o.useInjection)(o.serviceIds["DynamicTypes/DocumentEditableRegistry"]),v=h.hasDynamicType(i.type)?h.getDynamicType(i.type):void 0,{updateValue:f,updateValueWithReload:y,getValue:b,getInheritanceState:x,setInheritanceState:j}=(0,c.U)(),w=x(i.name),[C,S]=(0,n.useState)(b(i.name).data),[,T]=(0,n.useState)({}),I=!!(null==(t=i.config)?void 0:t.required),k=(0,n.useMemo)(()=>({...i,inherited:w,defaultFieldWidth:m,containerRef:g}),[i,w,g]),E=(0,n.useCallback)(e=>{S(e),I&&((null==v?void 0:v.isEmpty(e,i))??!0?(0,p.sZ)(i.name,document):(0,p.k8)(i.name,document)),w&&(j(i.name,!1),T({})),!(0,s.isEqual)(C,e)&&(null==v?void 0:v.reloadOnChange(k,C,e))?y(i.name,{type:i.type,data:e}):f(i.name,{type:i.type,data:e})},[I,w]),D=(0,n.useMemo)(()=>(0,s.isNil)(v)?(0,r.jsx)(r.Fragment,{}):l().cloneElement(v.getEditableDataComponent(k),{key:i.name,value:C,onChange:E}),[v,k,C,w,E]);return(0,s.isNil)(v)?(0,r.jsx)(a.Alert,{message:(0,r.jsxs)(r.Fragment,{children:['Editable type "',i.type,'" not found:',(0,r.jsx)("p",{children:JSON.stringify(i)})]}),type:"warning"}):(0,r.jsx)(u.A,{children:(0,r.jsx)(d.FieldWidthProvider,{fieldWidthValues:{large:9999},children:(0,r.jsx)(p.jg,{editableName:i.name,isRequired:I,children:D})})})}},38921(e,t,i){"use strict";i.d(t,{jg:()=>o,k8:()=>a,sZ:()=>l});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{requiredFieldWrapper:t` - display: contents; - `}}),l=(e,t)=>{let i=(t??document).getElementById(`pimcore_editable_${e}`);null==i||i.setAttribute("data-required-active","true")},a=(e,t)=>{let i=(t??document).getElementById(`pimcore_editable_${e}`);null==i||i.removeAttribute("data-required-active")},o=e=>{let{children:t,isRequired:i,editableName:l}=e,{styles:a}=n();return i?(0,r.jsx)("div",{className:`${a.requiredFieldWrapper} studio-required-field-wrapper`,"data-editable-name":l,children:t}):(0,r.jsx)(r.Fragment,{children:t})}},57180(e,t,i){"use strict";i.d(t,{U:()=>a});var r=i(47867),n=i(46096),l=i(15789);let a=()=>{let{id:e}=(0,r.useContext)(l.T),t=(0,r.useRef)(!1),i=(0,r.useCallback)(()=>{var e;let t=null==(e=window.PimcoreDocumentEditor)?void 0:e.documentEditable;if(null==t)throw Error("PimcoreDocumentEditor API not available");return t},[]),a=(0,r.useCallback)((t,r)=>{i().updateValue(t,r);try{let{document:i}=(0,n.qH)();i.triggerValueChange(e,t,r)}catch(e){console.warn("Could not notify parent window of value change:",e)}},[e]),o=(0,r.useCallback)((t,r)=>{i().updateValue(t,r);try{let{document:i}=(0,n.qH)();i.triggerValueChangeWithReload(e,t,r)}catch(e){console.warn("Could not trigger reload for value change:",e)}},[e]);return{updateValue:a,updateValueWithReload:o,triggerSaveAndReload:(0,r.useCallback)(()=>{try{let{document:t}=(0,n.qH)();t.triggerSaveAndReload(e)}catch(e){console.warn("Could not trigger save and reload:",e)}},[e]),getValues:()=>i().getValues(),getValue:e=>i().getValue(e),initializeData:e=>{i().initializeValues(e)},removeValues:e=>{i().removeValues(e)},notifyReady:(0,r.useCallback)(()=>{if(!t.current)try{let{document:i}=(0,n.qH)();i.notifyIframeReady(e),t.current=!0}catch(e){console.warn("Could not notify parent window that iframe is ready:",e)}},[e]),getInheritanceState:e=>i().getInheritanceState(e),setInheritanceState:(e,t)=>{i().setInheritanceState(e,t)},initializeInheritanceState:e=>{i().initializeInheritanceState(e)}}}},50458(e,t,i){"use strict";i.d(t,{N:()=>f});var r=i(74848);i(47867);var n=i(21429),l=i(35864),a=i(43565),o=i(16327),s=i(81898),d=i(79472),c=i(55638),u=i(17388),p=i(68153),m=i(38990),g=i(70916),h=i(59385),v=i(46881);let f=e=>{let{t}=(0,n.useTranslation)(),i=(0,a.Vl)(),[f]=(0,o.tX)(),{isTreeActionAllowed:y}=(0,u.H)(),{refreshTree:b}=(0,m.h)(e),x=(0,v.useAppDispatch)(),{treeId:j}=(0,g.z)(!0),w=(e,r,n)=>{i.input({title:t("element.new-folder"),label:t("form.label.new-item"),rule:{required:!0,message:t("element.new-folder.validation")},onOk:async t=>{null==r||r(),await C(e,t,n)}})},C=async(t,i,r)=>{let n=f({parentId:t,elementType:e,folderData:{folderName:i}});try{let e=await n;(0,l.isUndefined)(e.error)?b(t):((0,c.Ay)(new c.hD(e.error)),null==r||r())}catch(e){(0,c.Ay)(new c.$g(`'Error creating folder: ${e}`))}};return{addFolder:w,addFolderTreeContextMenuItem:i=>{let n="asset"!==e||"folder"===i.type;return{label:t("element.new-folder"),key:"addFolder",icon:(0,r.jsx)(s.I,{value:"add-folder"}),hidden:!y(p.o.AddFolder)||!n||!(0,d.o)(i.permissions,"create"),onClick:()=>{w(parseInt(i.id),()=>x((0,h.setNodeFetching)({treeId:j,nodeId:String(i.id),isFetching:!0})),()=>x((0,h.setNodeFetching)({treeId:j,nodeId:String(i.id),isFetching:!1})))}}},addFolderMutation:C}}},63993(e,t,i){"use strict";i.d(t,{_:()=>s,x:()=>d});var r=i(74848),n=i(47867),l=i(50174),a=i(21429);let o=(0,n.createContext)(void 0),s=e=>{let{children:t}=e,i=(0,n.useRef)(void 0),s=(0,n.useRef)(void 0),d=(0,n.useRef)(void 0),c=(0,l.J)(),{t:u}=(0,a.useTranslation)(),p=(0,n.useCallback)(()=>i.current,[]),m=(0,n.useCallback)(()=>s.current,[]),g=(0,n.useCallback)(()=>d.current,[]),h=(0,n.useCallback)((e,t)=>{i.current=e,s.current=t},[]),v=(0,n.useCallback)(e=>{d.current=e},[]),f=e=>"filename"in e&&""!==e.filename?e.filename:"label"in e&&""!==e.label?e.label:String(e.id),y=(0,n.useCallback)((e,t)=>{i.current=e,s.current=t,d.current="copy",c.success(u("element.tree.copy-success-description",{elementType:u(t),name:f(e),interpolation:{escapeValue:!1}}))},[c,u]),b=(0,n.useCallback)((e,t)=>{i.current=e,s.current=t,d.current="cut",c.success(u("element.tree.cut-success-description",{elementType:u(t),name:f(e)}))},[c,u]),x=(0,n.useCallback)(()=>{i.current=void 0,s.current=void 0,d.current=void 0},[]),j=(0,n.useCallback)(e=>void 0===s.current||s.current===e,[]),w=(0,n.useMemo)(()=>({getStoredNode:p,getStoredElementType:m,getNodeTask:g,setStoredNode:h,setNodeTask:v,copyNode:y,cutNode:b,clearCopyPaste:x,isValidElementType:j}),[p,m,g,h,v,y,b,x,j]);return(0,r.jsx)(o.Provider,{value:w,children:t})},d=e=>{let t=(0,n.useContext)(o);if(void 0===t)throw Error("useTreeCopyPasteContext must be used within a TreeCopyPasteProvider");if(void 0===e)return t;let i=()=>{let i=t.getStoredElementType();return void 0===i||i===e};return{...t,getStoredNode:()=>i()?t.getStoredNode():void 0,getStoredElementType:()=>i()?t.getStoredElementType():void 0,getNodeTask:()=>i()?t.getNodeTask():void 0}}},42992(e,t,i){"use strict";i.d(t,{e:()=>b});var r=i(74848),n=i(81898);i(47867);var l=i(21429),a=i(13397),o=i(79472),s=i(17388),d=i(68153),c=i(59385),u=i(46881),p=i(70916),m=i(63993),g=i(67950),h=i(42669),v=i(2662),f=i(83295);class y extends f.f{async executeCloneRequest(){let e=await this.elementClone({id:this.sourceId,parentId:this.targetId,cloneParameters:this.parameters});return(null==e?void 0:e.jobRunId)??null}constructor(e){super({sourceId:e.sourceId,targetId:e.targetId,title:e.title,elementType:e.elementType,treeId:e.treeId,nodeId:e.nodeId}),this.parameters=e.parameters,this.elementClone=e.elementClone}}let b=e=>{let{getStoredNode:t,getNodeTask:i,copyNode:f,cutNode:b,clearCopyPaste:x}=(0,m.x)(e),{elementPatch:j,elementClone:w}=(0,a.M)(e),{t:C}=(0,l.useTranslation)(),{isTreeActionAllowed:S}=(0,s.H)(),T=(0,u.useAppDispatch)(),{treeId:I}=(0,p.z)(!0),k=(0,g.U5)(),{isPasteHidden:E}=(0,h.n)(e),D=(0,v.O)(),N=t=>{f(t,e)},P=t=>{b(t,e)},A=async function(i){let r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{recursive:!0,updateReferences:!0},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t();if(void 0===n)return;let l=new y({sourceId:"number"==typeof n.id?n.id:parseInt(n.id),targetId:i,parameters:r,title:C(`jobs.${e}-clone-job.title`),elementType:e,elementClone:w,treeId:I,nodeId:String(i)});await D.runJob(l)},F=async i=>{let r=t();if(void 0===r)return;let n="number"==typeof r.id?r.id:parseInt(r.id);try{T((0,c.markNodeDeleting)({nodeId:String(n),elementType:e,isDeleting:!0})),await j({body:{data:[{id:n,parentId:i}]}})?(T((0,c.refreshSourceNode)({nodeId:String(r.parentId),elementType:e})),T((0,c.refreshTargetNode)({nodeId:String(i),elementType:e})),x()):T((0,c.markNodeDeleting)({nodeId:String(n),elementType:e,isDeleting:!1}))}catch(e){console.error("Error cloning element",e)}};return{getStoredNode:t,getNodeTask:i,copy:N,cut:P,paste:A,pasteCut:F,move:async t=>{let{currentElement:i,targetElement:r}=t;if(i.id!==r.id)try{T((0,c.markNodeDeleting)({nodeId:String(i.id),elementType:e,isDeleting:!0})),await j({body:{data:[{id:i.id,parentId:r.id}]}})?(T((0,c.refreshSourceNode)({nodeId:String(i.parentId),elementType:e})),T((0,c.refreshTargetNode)({nodeId:String(r.id),elementType:e}))):T((0,c.markNodeDeleting)({nodeId:String(i.id),elementType:e,isDeleting:!1}))}catch(e){console.error("Error moving element",e)}},copyTreeContextMenuItem:e=>!0===e.isRoot?null:{label:C("element.tree.copy"),key:"copy",icon:(0,r.jsx)(n.I,{value:"copy"}),hidden:!S(d.o.Copy)||!(0,o.o)(e.permissions,"view"),onClick:()=>{null==k||k(),N(e)}},copyContextMenuItem:(e,t)=>({label:C("element.tree.copy"),key:"copy",icon:(0,r.jsx)(n.I,{value:"copy"}),hidden:!(0,o.o)(e.permissions,"view")||e.isLocked,onClick:()=>{null==t||t(),N(e)}}),cutTreeContextMenuItem:e=>({label:C("element.tree.cut"),key:"cut",icon:(0,r.jsx)(n.I,{value:"cut"}),hidden:!S(d.o.Cut)||!(0,o.o)(e.permissions,"rename")||e.isLocked,onClick:()=>{null==k||k(),P(e)}}),cutContextMenuItem:(e,t)=>({label:C("element.tree.cut"),key:"cut",icon:(0,r.jsx)(n.I,{value:"cut"}),hidden:!(0,o.o)(e.permissions,"rename")||e.isLocked,onClick:()=>{null==t||t(),P(e)}}),pasteTreeContextMenuItem:e=>({label:C("element.tree.paste"),key:"paste",icon:(0,r.jsx)(n.I,{value:"paste"}),hidden:E(e,"copy"),onClick:async()=>{await A(parseInt(e.id))}}),pasteCutContextMenuItem:e=>({label:C("element.tree.paste-cut"),key:"pasteCut",icon:(0,r.jsx)(n.I,{value:"paste"}),hidden:E(e,"cut"),onClick:async()=>{await F(parseInt(e.id))}})}}},7652(e,t,i){"use strict";i.d(t,{K:()=>u});var r=i(21429),n=i(94316),l=i(40036),a=i(43565),o=i(62930),s=i(35864),d=i(7334),c=i(23945);let u=e=>{var t;let{t:i}=(0,r.useTranslation)(),{id:u}=(0,d.J)(),{element:p}=(0,c.useElementDraft)(u,e),[m,{isLoading:g,isError:h,error:v}]=(0,n.MF)(),{refreshElement:f}=(0,l.d)(e),{confirm:y}=(0,a.Vl)();if(h)throw new o.Ay(v);let b=i((null==p||null==(t=p.draftData)?void 0:t.isAutoSave)===!0?"delete-draft-auto-save":"delete-draft");return{deleteDraft:async()=>{(0,s.isNil)(null==p?void 0:p.draftData)||y({title:b,content:i("delete-draft-confirmation"),onOk:async()=>{(0,s.isNil)(null==p?void 0:p.draftData)||await m({id:p.draftData.id}).then(()=>{f(p.id)})}})},buttonText:b,isLoading:g,isError:h}}},3671(e,t,i){"use strict";i.d(t,{z:()=>I});var r=i(74848),n=i(81898),l=i(43565),a=i(55638),o=i(62786),s=i(81674),d=i(13397),c=i(79472),u=i(2662),p=i(35864),m=i(41630),g=i(59385),h=i(82763),v=i(16327);class f{async run(e){let{messageBus:t}=e;(0,p.isString)(this.treeId)&&(0,p.isString)(this.nodeId)&&m.M_.dispatch((0,g.setNodeFetching)({treeId:this.treeId,nodeId:this.nodeId,isFetching:!0})),m.M_.dispatch((0,g.markNodeDeleting)({nodeId:String(this.elementId),elementType:this.elementType,isDeleting:!0}));try{let i=await this.executeDeleteRequest();if((0,p.isNil)(i))return void await this.handleCompletion();let r=new h.j({jobRunId:i,title:this.title,onJobCompletion:async e=>{if(e.isFinished)try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}else await this.handleJobFailure(Error(`Job failed with status: ${e.status}`))},onRetry:async()=>{await this.run(e)}});t.registerHandler(r)}catch(e){await this.handleJobFailure(e),(0,a.Ay)(new a.$g(e.message))}}async executeDeleteRequest(){var e;let t=await m.M_.dispatch(v.FH.endpoints.elementDelete.initiate({id:this.elementId,elementType:this.elementType}));return(0,p.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,a.Ay)(new a.hD(t.error)),null)}async handleCompletion(){(0,p.isString)(this.treeId)&&(0,p.isString)(this.nodeId)&&m.M_.dispatch((0,g.setNodeFetching)({treeId:this.treeId,nodeId:this.nodeId,isFetching:!1})),m.M_.dispatch((0,g.markNodeDeleting)({nodeId:String(this.elementId),elementType:this.elementType,isDeleting:!1})),(0,p.isNil)(this.parentFolderId)||m.M_.dispatch((0,g.refreshNodeChildren)({elementType:this.elementType,nodeId:this.parentFolderId.toString()}))}async handleJobFailure(e){(0,p.isString)(this.treeId)&&(0,p.isString)(this.nodeId)&&m.M_.dispatch((0,g.setNodeFetching)({treeId:this.treeId,nodeId:this.nodeId,isFetching:!1})),m.M_.dispatch((0,g.markNodeDeleting)({nodeId:String(this.elementId),elementType:this.elementType,isDeleting:!1})),console.error("Delete job failed:",e)}constructor(e){this.elementId=e.elementId,this.elementType=e.elementType,this.title=e.title,this.treeId=e.treeId,this.nodeId=e.nodeId,this.parentFolderId=e.parentFolderId}}var y=i(83196),b=i(73488),x=i(47867),j=i(21429),w=i(68153),C=i(17388),S=i(14138),T=i(70916);let I=(e,t)=>{let{t:i}=(0,j.useTranslation)(),p=(0,l.Vl)(),m=(0,u.O)(),{refreshGrid:g}=(0,o.X)(e),{getElementById:h}=(0,d.M)(e),{refreshRecycleBin:v}=(0,S.y)(),{isMainWidgetOpen:I,closeWidget:k}=(0,y.J)(),{isTreeActionAllowed:E}=(0,C.H)(),[D,N]=(0,x.useState)(!1),{treeId:P}=(0,T.z)(!0),A=(t,n,l,o)=>{p.confirm({title:i("element.delete.confirmation.title"),content:(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)("span",{children:i("element.delete.confirmation.text")}),(0,r.jsx)("br",{}),(0,r.jsx)("b",{children:n})]}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{N(!0);try{let r=new f({elementId:t,elementType:e,title:i("element.delete.deleting-folder"),treeId:P,nodeId:String(t),parentFolderId:l});await m.runJob(r);let n=(0,b.g)(e,t);I(n)&&k(n),v(),null==o||o()}catch(e){(0,a.Ay)(new a.$g(e.message))}finally{N(!1)}}})},F=async t=>{let i=await h(t),r=i.parentId??void 0;A(i.id,(0,s.Ed)(i,e),r,()=>{g()})};return{deleteElement:A,deleteTreeContextMenuItem:(e,t)=>({label:i("element.delete"),key:"delete",icon:(0,r.jsx)(n.I,{value:"trash"}),hidden:!E(w.o.Delete)||!(0,c.o)(e.permissions,"delete")||e.isLocked,onClick:()=>{let i=parseInt(e.id),r=void 0!==e.parentId?parseInt(e.parentId):void 0;A(i,e.label,r,t)}}),deleteContextMenuItem:(t,l)=>({label:i("element.delete"),key:"delete",isLoading:D,icon:(0,r.jsx)(n.I,{value:"trash"}),hidden:!(0,c.o)(t.permissions,"delete")||t.isLocked,onClick:()=>{let i=t.id,r=t.parentId??void 0;A(i,(0,s.Ed)(t,e),r,l)}}),deleteGridContextMenuItem:e=>{let t=e.original??{};if(void 0!==t.id&&void 0!==t.isLocked&&void 0!==t.permissions)return{label:i("element.delete"),key:"delete",icon:(0,r.jsx)(n.I,{value:"trash"}),hidden:!(0,c.o)(t.permissions,"delete")||t.isLocked,onClick:async()=>{await F(t.id)}}},isLoading:D}}},71012(e,t,i){"use strict";i.d(t,{H:()=>g});var r=i(74848),n=i(41630),l=i(59385),a=i(81898),o=i(55638),s=i(16327),d=i(2700),c=i(83196),u=i(35864),p=i(47867),m=i(21429);let g=e=>{let{t}=(0,m.useTranslation)(),i=(0,n.jL)(),g=(0,d.JT)(n.M_.getState()),{switchToWidget:h}=(0,c.J)(),[v,f]=(0,p.useState)(!1),y=(t,r)=>{(0,u.isNull)(g)||i(s.FH.endpoints.elementGetTreeLocation.initiate({id:t,elementType:e,perspectiveId:g.id},{forceRefetch:!0})).then(e=>{if(!(0,u.isNil)(e.data)&&!(0,u.isNil)(e.data.treeLevelData)){let n=e.data.widgetId;h(n),i((0,l.locateInTree)({treeId:n,nodeId:String(t),treeLevelData:e.data.treeLevelData})),null==r||r()}}).catch(()=>{(0,o.Ay)(new o.$g("An error occured while locating in the tree"))})};return{locateInTree:y,locateInTreeGridContextMenuItem:(e,i)=>{let n=e.original??{};if(void 0!==n.id)return{label:t("element.locate-in-tree"),key:"locateInTree",isLoading:v,icon:(0,r.jsx)(a.I,{value:"target"}),onClick:async()=>{f(!0),y(n.id,()=>{null==i||i(),f(!1)})}}},locateInTreeContextMenuItem:(e,i)=>({label:t("element.locate-in-tree"),key:"locateInTree",isLoading:v,icon:(0,r.jsx)(a.I,{value:"target"}),onClick:async()=>{f(!0),y(Number(e.id),()=>{null==i||i(),f(!1)})}})}}},11480(e,t,i){"use strict";i.d(t,{V:()=>h,y:()=>g});var r,n=i(74848),l=i(81898);i(47867);var a=i(21429),o=i(13397),s=i(61549),d=i(17388),c=i(68153),u=i(46881),p=i(59385),m=i(35864);let g=((r={}).Self="self",r.Propagate="propagate",r.Unlock="",r.UnlockPropagate="unlockPropagate",r),h=e=>{let{t}=(0,a.useTranslation)(),{elementPatch:i}=(0,o.M)(e),r=(0,s.J)(),{isTreeActionAllowed:h}=(0,d.H)(),v=(0,u.useAppDispatch)(),f=async e=>{await j(e,g.Self)},y=async e=>{await j(e,g.Propagate)},b=async e=>{await j(e,g.Unlock)},x=async e=>{await j(e,g.UnlockPropagate)},j=async(t,r)=>{let n=i({body:{data:[{id:t,locked:r}]}});try{v((0,p.setNodeLoadingInAllTree)({nodeId:String(t),elementType:e,loading:!0})),await n&&v((0,p.setNodeLocked)({elementType:e,nodeId:String(t),isLocked:"self"===r||"propagate"===r,lockType:r})),v((0,p.setNodeLoadingInAllTree)({nodeId:String(t),elementType:e,loading:!1}))}catch(t){console.error("Error renaming "+e,t)}},w=e=>({label:t("element.lock"),key:"lock",icon:(0,n.jsx)(l.I,{value:"lock"}),hidden:k(e),onClick:async()=>{await f(parseInt(e.id))}}),C=e=>({label:t("element.lock-and-propagate-to-children"),key:"lockAndPropagate",icon:(0,n.jsx)(l.I,{value:"file-locked"}),hidden:E(e),onClick:async()=>{await y(parseInt(e.id))}}),S=e=>({label:t("element.unlock"),key:"unlock",icon:(0,n.jsx)(l.I,{value:"unlocked"}),hidden:D(e),onClick:async()=>{await b(parseInt(e.id))}}),T=e=>({label:t("element.unlock-and-propagate-to-children"),key:"unlockAndPropagate",icon:(0,n.jsx)(l.I,{value:"unlocked"}),hidden:N(e),onClick:async()=>{await x(parseInt(e.id))}}),I=e=>e.isLocked&&!(0,m.isNil)(e.locked),k=e=>!h(c.o.Lock)||!r.isAdmin||e.isLocked&&!(e.isLocked&&(0,m.isNil)(e.locked)),E=e=>!h(c.o.LockAndPropagate)||!r.isAdmin||I(e),D=e=>!h(c.o.Unlock)||!r.isAdmin||!I(e),N=e=>!h(c.o.UnlockAndPropagate)||!r.isAdmin||!e.isLocked,P=e=>k(e)&&E(e)&&D(e)&&N(e);return{lock:f,lockAndPropagate:y,unlock:b,unlockAndPropagate:x,lockTreeContextMenuItem:w,lockContextMenuItem:(e,i)=>({label:t("element.lock"),key:"lock",icon:(0,n.jsx)(l.I,{value:"lock"}),hidden:k(e),onClick:async()=>{await f(e.id),null==i||i()}}),lockAndPropagateTreeContextMenuItem:C,lockAndPropagateContextMenuItem:(e,i)=>({label:t("element.lock-and-propagate-to-children"),key:"lockAndPropagate",icon:(0,n.jsx)(l.I,{value:"file-locked"}),hidden:E(e),onClick:async()=>{await y(e.id),null==i||i()}}),unlockTreeContextMenuItem:S,unlockContextMenuItem:(e,i)=>({label:t("element.unlock"),key:"unlock",icon:(0,n.jsx)(l.I,{value:"unlocked"}),hidden:D(e),onClick:async()=>{await b(e.id),null==i||i()}}),unlockAndPropagateTreeContextMenuItem:T,unlockAndPropagateContextMenuItem:(e,i)=>({label:t("element.unlock-and-propagate-to-children"),key:"unlockAndPropagate",icon:(0,n.jsx)(l.I,{value:"unlocked"}),hidden:N(e),onClick:async()=>{await x(e.id),null==i||i()}}),lockMenuTreeContextMenuItem:e=>({label:t("element.lock"),key:"advanced-lock",icon:(0,n.jsx)(l.I,{value:"lock"}),hidden:P(e),children:[w(e),C(e),S(e),T(e)]}),isLockMenuHidden:P}}},34148(e,t,i){"use strict";i.d(t,{i:()=>s});var r=i(74848);i(47867);var n=i(81898),l=i(79472),a=i(21429),o=i(56789);let s=e=>{let{t}=(0,a.useTranslation)(),{openElement:i}=(0,o.K)();return{openContextMenuItem:a=>({label:t("element.open"),key:"open",icon:(0,r.jsx)(n.I,{value:"open-folder"}),hidden:!(0,l.o)(a.permissions,"view"),onClick:async()=>{await i({id:a.id,type:e})}}),openGridContextMenuItem:a=>{let o=a.original??{};if(void 0!==o.id&&void 0!==o.isLocked&&void 0!==o.permissions)return{label:t("element.open"),key:"open",icon:(0,r.jsx)(n.I,{value:"open-folder"}),hidden:!(0,l.o)(o.permissions,"view"),onClick:async()=>{await i({id:o.id,type:e})}}}}}},72744(e,t,i){"use strict";i.d(t,{Z:()=>u});var r=i(74848),n=i(81898),l=i(68153);i(47867);var a=i(21429),o=i(56789),s=i(17388),d=i(74108),c=i(23945);let u=e=>{let{t}=(0,a.useTranslation)(),{isTreeActionAllowed:i}=(0,s.H)(),{executeElementTask:u}=(0,o.K)(),p=(t,i)=>{u(e,"string"==typeof t.id?parseInt(t.id):t.id,d.D.Publish,i)};return{publishNode:p,publishTreeContextMenuItem:(e,a)=>({label:t("element.publish"),key:"publish",icon:(0,r.jsx)(n.I,{value:"eye"}),hidden:!(0,c.checkElementPermission)(e.permissions,"publish")||!i(l.o.Publish)||e.isLocked||!0===e.isPublished,onClick:()=>{p(e,a)}})}}},40036(e,t,i){"use strict";i.d(t,{d:()=>x});var r=i(46881),n=i(73362),l=i(91434),a=i(53996),o=i(21724),s=i(54100),d=i(22555),c=i(35864),u=i(92634),p=i(55638);let m=new Map;var g=i(7843);let h=new Map;var v=i(29376),f=i(46766),y=i(98247);let b=new Map,x=e=>{let t,i,x=(0,r.useAppDispatch)(),{updateDataObjectDraft:j}=(t=(0,r.useAppDispatch)(),{updateDataObjectDraft:async function(e){let i=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!0!==m.get(e)||i){m.set(e,!0);try{let{data:r,error:n}=await t(l.FH.endpoints.dataObjectGetById.initiate({id:e},{forceRefetch:i}));if((0,c.isUndefined)(n)||((0,p.Ay)(new p.hD(n)),t((0,d.Pf)(e))),!(0,c.isUndefined)(r)){let i={draftData:null,...r,id:e,modified:!1,properties:[],schedules:[],changes:{},modifiedCells:{},modifiedObjectData:{},...u.nd};t((0,s.pw)(i)),t((0,d.aP)(e))}}finally{m.delete(e)}}}}),{updateAssetDraft:w}=(()=>{let e=(0,r.useAppDispatch)();async function t(t){let{data:i,isError:r,error:l}=await e(n.api.endpoints.assetGetById.initiate({id:t}));return r&&((0,p.Ay)(new p.hD(l)),e((0,g.Pf)(t))),i}async function i(t){let i={},{data:r,isSuccess:l,isError:a,error:o}=await e(n.api.endpoints.assetCustomSettingsGetById.initiate({id:t}));if(a){(0,p.Ay)(new p.hD(o)),e((0,g.Pf)(t));return}if(l&&void 0!==r){let e=r.items,t=null==e?void 0:e.dynamicCustomSettings;if(void 0!==t&&!0===Object.prototype.hasOwnProperty.call(t,"focalPointX")&&!0===Object.prototype.hasOwnProperty.call(t,"focalPointY")){let e={x:t.focalPointX,y:t.focalPointY};i={...i,focalPoint:e}}}return i}return{updateAssetDraft:async function(r){let n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!0!==h.get(r)||n){h.set(r,!0);try{await Promise.all([t(r),i(r)]).then(t=>{let[i,n]=t;if(!(0,c.isUndefined)(i)&&!(0,c.isUndefined)(n)){let t={...i,id:r,modified:!1,properties:[],customMetadata:[],customSettings:[],schedules:[],textData:"",imageSettings:n,changes:{},modifiedCells:{},...u.nd};e((0,o.Y$)(t)),e((0,g.aP)(r))}})}finally{h.delete(r)}}}}})(),{updateDocumentDraft:C}=(i=(0,r.useAppDispatch)(),{updateDocumentDraft:async function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!0!==b.get(e)||t){b.set(e,!0);try{let{data:r,error:n}=await i(f.FH.endpoints.documentGetById.initiate({id:e},{forceRefetch:t}));if((0,c.isUndefined)(n)||((0,p.Ay)(new p.hD(n)),i((0,y.Pf)(e))),!(0,c.isUndefined)(r)){let t={...r,id:e,modified:!1,properties:[],schedules:[],changes:{},modifiedCells:{},...u.nd};i((0,v.FP)(t)),i((0,y.aP)(e))}}finally{b.delete(e)}}}});return{refreshElement:(t,i)=>{"asset"===e?(x((0,o.Vx)(t)),x(n.api.util.invalidateTags(a.qN.ASSET_DETAIL_ID(t))),!0===i&&x(n.api.util.invalidateTags(a.qN.PREDEFINED_ASSET_METADATA())),w(t,!0)):"data-object"===e?(x((0,s.CF)(t)),x(l.FH.util.invalidateTags(a.qN.DATA_OBJECT_DETAIL_ID(t))),j(t,!0)):"document"===e&&(x((0,v.sR)(t)),x(l.FH.util.invalidateTags(a.qN.DOCUMENT_DETAIL_ID(t))),C(t,!0))}}}},62786(e,t,i){"use strict";i.d(t,{X:()=>o});var r=i(60124),n=i(7334),l=i(47867),a=i(40547);let o=e=>{let t=(0,n.L)(),i=(0,l.useContext)(a.y);return{refreshGrid:async n=>{let l=n??(null==t?void 0:t.id);if((null==i?void 0:i.dataQueryResult)!==void 0){let{refetch:e}=i.dataQueryResult;await e()}"asset"===e&&void 0!==l&&r.B.publish({identifier:{type:"asset:listing:refresh",id:l}})}}}},38990(e,t,i){"use strict";i.d(t,{h:()=>u});var r=i(74848),n=i(81898);i(47867);var l=i(21429),a=i(17388),o=i(68153),s=i(46881),d=i(59385),c=i(70916);let u=e=>{let{t}=(0,l.useTranslation)(),{isTreeActionAllowed:i}=(0,a.H)(),u=(0,s.useAppDispatch)(),{treeId:p}=(0,c.z)(!0),m=t=>{u((0,d.refreshNodeChildren)({nodeId:String(t),elementType:e}))};return{refreshTree:m,refreshTreeContextMenuItem:e=>({label:t("element.tree.refresh"),key:"refresh",icon:(0,r.jsx)(n.I,{value:"refresh"}),hidden:!i(o.o.Refresh),onClick:()=>{m(e.id),u((0,d.setNodeExpanded)({treeId:p,nodeId:String(e.id),expanded:!0}))}})}}},55014(e,t,i){"use strict";i.d(t,{M:()=>b});var r=i(74848),n=i(21429),l=i(43565),a=i(81898),o=i(47867),s=i(13397),d=i(79472),c=i(81674),u=i(62786),p=i(17388),m=i(68153),g=i(46881),h=i(59385),v=i(54100),f=i(29376),y=i(21724);let b=(e,t)=>{let{t:i}=(0,n.useTranslation)(),b=(0,l.Vl)(),{refreshGrid:x}=(0,u.X)(e),{elementPatch:j,getElementById:w}=(0,s.M)(e,t),{isTreeActionAllowed:C}=(0,p.H)(),S=(0,g.useAppDispatch)(),[T,I]=(0,o.useState)(!1),k=(e,t,r,n)=>{b.input({title:i("element.rename"),label:i("element.rename.label"),initialValue:t,rule:{required:!0,message:i("element.rename.validation")},onOk:async t=>{I(!0),await D(e,t,r,e=>{null==n||n(e),I(!1)})}})},E=async t=>{let i=await w(t),r=i.parentId??void 0;k(t,(0,c.Ed)(i,e),r,()=>{x()})},D=async(t,i,r,n)=>{let l=j({body:{data:[{id:t,key:i}]}});try{S((0,h.setNodeLoadingInAllTree)({nodeId:String(t),elementType:e,loading:!0})),await l&&S((0,h.renameNode)({elementType:e,nodeId:String(t),newLabel:i})),S((0,h.setNodeLoadingInAllTree)({nodeId:String(t),elementType:e,loading:!1})),N(t,i),null==n||n(i)}catch(t){console.error("Error renaming "+e,t)}},N=(t,i)=>{"data-object"===e?S((0,v.v2)({id:t,key:i})):"document"===e?S((0,f.v2)({id:t,key:i})):"asset"===e&&S((0,y.PB)({id:t,filename:i}))};return{rename:k,renameTreeContextMenuItem:(e,t)=>({label:i("element.rename"),key:"rename",icon:(0,r.jsx)(a.I,{value:"rename"}),hidden:!C(m.o.Rename)||!(0,d.o)(e.permissions,"rename")||e.isLocked,onClick:()=>{let i=parseInt(e.id),r=void 0!==e.parentId?parseInt(e.parentId):void 0;k(i,e.label,r,t)}}),renameContextMenuItem:(t,n)=>({label:i("element.rename"),key:"rename",isLoading:T,icon:(0,r.jsx)(a.I,{value:"rename"}),hidden:!(0,d.o)(t.permissions,"rename")||t.isLocked,onClick:()=>{let i=t.parentId??void 0;k(t.id,(0,c.Ed)(t,e),i,n)}}),renameGridContextMenuItem:e=>{let t=e.original??{};if(void 0!==t.id&&void 0!==t.isLocked&&void 0!==t.permissions)return{label:i("element.rename"),key:"rename",icon:(0,r.jsx)(a.I,{value:"rename"}),hidden:!(0,d.o)(t.permissions,"rename")||t.isLocked,onClick:async()=>{await E(t.id)}}},renameMutation:D}}},68360(e,t,i){"use strict";i.d(t,{M:()=>p});var r=i(74848),n=i(81898),l=i(74108),a=i(68153),o=i(47867),s=i(21429),d=i(56789),c=i(79472),u=i(17388);let p=e=>{let{t}=(0,s.useTranslation)(),{isTreeActionAllowed:i}=(0,u.H)(),{executeElementTask:p}=(0,d.K)(),[m,g]=(0,o.useState)(!1),h=e=>!(0,c.o)(e.permissions,"unpublish")||"folder"===e.type||e.isLocked,v=(t,i)=>{p(e,"string"==typeof t.id?parseInt(t.id):t.id,l.D.Unpublish,i)};return{unpublishTreeContextMenuItem:(e,l)=>({label:t("element.unpublish"),key:"unpublish",isLoading:m,icon:(0,r.jsx)(n.I,{value:"eye-off"}),hidden:!1===e.isPublished||!i(a.o.Unpublish)||h(e),onClick:()=>{v(e,l)}}),unpublishContextMenuItem:(e,i)=>({label:t("element.unpublish"),key:"unpublish",isLoading:m,icon:(0,r.jsx)(n.I,{value:"eye-off"}),hidden:!e.published||h(e),onClick:()=>{g(!0),v(e,()=>{null==i||i(),g(!1)})}}),unpublishTreeNode:v}}},71836(e,t,i){"use strict";i.d(t,{j:()=>o});var r=i(47867),n=i(46096),l=i(81624),a=i(20319);let o=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=(0,a.c)();return{openModal:(0,r.useCallback)((i,r)=>{if((0,l.GZ)()&&(0,n.BB)()){let{element:t}=(0,n.qH)();t.openCropModal({imageId:i,crop:r,options:e});return}t.openModal(i,r,e)},[t,e]),closeModal:(0,r.useCallback)(()=>{t.closeModal()},[t]),isOpen:t.isOpen}}},59603(e,t,i){"use strict";i.d(t,{p:()=>x,Z:()=>b});var r=i(74848),n=i(47867),l=i(35864),a=i(21429),o=i(19249),s=i(25750),d=i(95112),c=i(27820),u=i(30492);let p=function(e,t,i){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1;if(void 0!==t&&void 0!==i&&t>0&&i>0){let n=t/i/r,l=e.width/e.height;if(Math.abs(l-n)>.001)if(l>n)return{...e,width:e.height*n};else return{...e,height:e.width/n}}return e},m=function(e,t,i){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1;return null!=e&&Object.keys(e).length>0?void 0!==e.cropPercent&&e.cropPercent?p({id:1,x:e.cropLeft??0,y:e.cropTop??0,width:e.cropWidth??0,height:e.cropHeight??0,type:"hotspot"},t,i,r):(console.error("Crop is only supported with cropPercent"),h(t,i,r)):h(t,i,r)},g=e=>({cropWidth:Math.round(e.width),cropHeight:Math.round(e.height),cropLeft:Math.round(e.x),cropTop:Math.round(e.y),cropPercent:!0}),h=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,r=80,n=80;if(void 0!==e&&void 0!==t&&e>0&&t>0){let l=e/t/i;l>1?n=r/l:r=n*l,r>100&&(n=(r=100)/l),n>100&&(r=(n=100)*l)}return{id:1,x:(100-r)/2,y:(100-n)/2,width:r,height:n,type:"hotspot"}};var v=i(70880),f=i(73362);let y=e=>{var t,i,l,p,h,y,b,x;let{t:j}=(0,a.useTranslation)(),{data:w}=(0,f.useAssetGetByIdQuery)({id:e.imageId}),C=(null==w?void 0:w.width)!==void 0&&(null==w?void 0:w.height)!==void 0?Number(w.width)/Number(w.height):1,[S,T]=(0,n.useState)(()=>{var t,i;return g(m(e.crop,null==(t=e.options)?void 0:t.ratioX,null==(i=e.options)?void 0:i.ratioY,C))}),[I,k]=(0,n.useState)(!1);(0,n.useEffect)(()=>{var t,i;T(g(m(e.crop,null==(t=e.options)?void 0:t.ratioX,null==(i=e.options)?void 0:i.ratioY,C)))},[e.crop,null==(t=e.options)?void 0:t.ratioX,null==(i=e.options)?void 0:i.ratioY,C]);let E=()=>{var t,i;T(null),(null==(t=e.options)?void 0:t.onChange)!==void 0&&e.options.onChange(null),null==(i=e.onClose)||i.call(e)},D=(0,v.n)(e.imageId,{width:652,height:500,mimeType:"PNG",contain:!0});return(0,r.jsx)(u.a,{afterOpenChange:e=>{k(e)},footer:(null==(l=e.options)?void 0:l.disabled)===!0?(0,r.jsx)("span",{}):(e,t)=>{let{OkBtn:i,CancelBtn:n}=t;return(0,r.jsxs)(s.s,{className:"w-100",justify:"flex-end",style:{justifyContent:"space-between"},children:[(0,r.jsx)(d.e,{items:[(0,r.jsx)(c.J,{disabled:null===S,icon:{value:"trash"},onClick:E,children:j("crop.remove")},"remove")]}),(0,r.jsx)(d.e,{items:[(0,r.jsx)(n,{},"cancel"),(0,r.jsx)(i,{},"ok")]})]})},maskClosable:!1,okText:j("save"),onCancel:()=>{var t;T(e.crop??null),null==(t=e.onClose)||t.call(e)},onOk:()=>{var t,i;(null==(t=e.options)?void 0:t.onChange)!==void 0&&e.options.onChange(S),null==(i=e.onClose)||i.call(e)},open:e.open,size:"L",title:j("crop"),children:void 0!==w&&(0,r.jsx)(o.d,{data:I?[m(S,null==(p=e.options)?void 0:p.ratioX,null==(h=e.options)?void 0:h.ratioY,C)]:[],disableContextMenu:!0,disabled:null==(y=e.options)?void 0:y.disabled,onUpdate:e=>{T(g(e))},ratioX:null==(b=e.options)?void 0:b.ratioX,ratioY:null==(x=e.options)?void 0:x.ratioY,src:D})})},b=(0,n.createContext)(void 0),x=e=>{let{children:t}=e,[i,a]=(0,n.useState)(!1),[o,s]=(0,n.useState)(null),[d,c]=(0,n.useState)(null),[u,p]=(0,n.useState)({}),m=(e,t,i)=>{s(e),c(t??null),p(i??{}),a(!0)},g=()=>{a(!1),s(null),c(null),p({})},h=(0,n.useMemo)(()=>({openModal:m,closeModal:g,isOpen:i}),[i]);return(0,r.jsxs)(b.Provider,{value:h,children:[i&&!(0,l.isNull)(o)&&(0,r.jsx)(y,{crop:d,imageId:o,onClose:g,open:i,options:u}),t]})}},20319(e,t,i){"use strict";i.d(t,{c:()=>a});var r=i(47867),n=i(59603),l=i(35864);let a=()=>{let e=(0,r.useContext)(n.Z);if((0,l.isNil)(e))throw Error("useCropModalContext must be used within a CropModalProvider");return e}},84e3(e,t,i){"use strict";i.d(t,{t:()=>s});var r=i(47867),n=i(46096),l=i(81624),a=i(62059),o=i(28907);let s=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=(0,r.useMemo)(()=>`hotspot-markers-modal-${(0,a.u)()}`,[]),i=(0,o.A)(),s=(0,r.useCallback)((r,a,o)=>{if((0,l.GZ)()&&(0,n.BB)()){let{element:t}=(0,n.qH)();t.openHotspotMarkersModal({imageId:r,hotspots:a,crop:o,options:e});return}i.openModal(t,r,a,o,e)},[t,i,e]);return{openModal:s,closeModal:(0,r.useCallback)(()=>{(0,l.GZ)()&&(0,n.BB)()||i.closeModal(t)},[t,i]),isOpen:i.isModalOpen(t),modalId:t}}},81598(e,t,i){"use strict";i.d(t,{r:()=>O,t:()=>M});var r=i(74848),n=i(47867),l=i.n(n),a=i(21429),o=i(23558),s=i(19249),d=i(25750),c=i(99154),u=i(95112),p=i(27820),m=i(29740),g=i(70880),h=i(57231),v=i(2338),f=i(80632),y=i(27994),b=i(35864);let x=(0,n.createContext)({fields:[],setFields:()=>{}}),j=e=>{let{children:t}=e,[i,l]=(0,n.useState)([]),a=(0,n.useMemo)(()=>({fields:i,setFields:l}),[i]);return(0,r.jsx)(x.Provider,{value:a,children:t})},w=(e,t)=>{let{t:i}=(0,a.useTranslation)(),{fields:r,setFields:l}=(0,n.useContext)(x);(0,n.useEffect)(()=>{(0,b.isUndefined)(e)?(l([]),t.resetFields()):((0,b.isNil)(e.data)||l(e.data),t.setFieldsValue({hotspotName:e.name??null}))},[e]),(0,n.useEffect)(()=>{let e=r.reduce((e,t,i)=>(e[`name-${i}`]=t.name,"textfield"===t.type||"textarea"===t.type||"checkbox"===t.type?e[`value-${i}`]=t.value:e[`value-${i}`]={...t},e),{});t.setFieldsValue(e)},[r]);let o=()=>r.map((e,i)=>{let r=t.getFieldValue(`name-${i}`),n=t.getFieldValue(`value-${i}`);return"textfield"===e.type||"textarea"===e.type||"checkbox"===e.type?{...e,name:r??e.name,value:n??e.value}:{...e,...n,name:r??""}}),s=e=>{l([...o(),{type:e,name:"",value:""}])},d=e=>{l([...o(),{type:e,name:"",value:null,fullPath:"",subtype:"object",published:null}])},c=[{key:"textfield",label:i("hotspots-markers-data-modal.data-type.text-field"),onClick:()=>{s("textfield")}},{key:"textarea",label:i("hotspots-markers-data-modal.data-type.text-area"),onClick:()=>{s("textarea")}},{key:"checkbox",label:i("hotspots-markers-data-modal.data-type.checkbox"),onClick:()=>{l([...o(),{type:"checkbox",name:"",value:!1}])}},{key:"object",label:i("hotspots-markers-data-modal.data-type.object"),onClick:()=>{d("object")}},{key:"document",label:i("hotspots-markers-data-modal.data-type.document"),onClick:()=>{d("document")}},{key:"asset",label:i("hotspots-markers-data-modal.data-type.asset"),onClick:()=>{d("asset")}}];return{fields:r,setFields:l,handleRemoveField:e=>{l(o().filter((t,i)=>i!==e))},updateName:(e,t)=>{l(i=>i.map((i,r)=>r===e?{...i,name:t}:i))},getFieldsData:o,dataTypes:c}};var C=i(86052),S=i(28083),T=i(93470),I=i(74462),k=i(87632);let E=e=>{let t=(0,b.isNil)(e.value)||(0,b.isNull)(e.value.value)?null:{type:String((0,k.sv)(e.type)),id:e.value.value,fullPath:e.value.fullPath,subtype:e.value.subtype,isPublished:e.value.published};return(0,r.jsx)(I.P,{...e,onChange:t=>{var i,r;if((0,b.isNil)(t)||!0===t.textInput){null==(r=e.onChange)||r.call(e,null);return}let n={value:t.id,fullPath:t.fullPath??"",subtype:t.subtype??"",published:(null==t?void 0:t.isPublished)??null};null==(i=e.onChange)||i.call(e,n)},value:t})},D=e=>{let{hotspot:t,form:i}=e,{t:n}=(0,a.useTranslation)(),{fields:l,handleRemoveField:o,dataTypes:s}=w(t,i);return(0,r.jsx)(r.Fragment,{children:l.length>0&&l.map((e,t)=>{var i;let l;return(0,r.jsx)(C.Z,{extra:(0,r.jsx)(m.K,{icon:{value:"trash"},onClick:()=>{o(t)},title:n("remove")}),title:(i=e.type,l=s.find(e=>e.key===i),(0,b.isUndefined)(l)?"Unknown Type":l.label),children:(0,r.jsxs)(v.$,{className:"w-full",direction:"vertical",size:"small",children:[(0,r.jsx)(h.lV.Item,{label:n("hotspots-markers-data-modal.data-type.name"),name:`name-${t}`,children:(0,r.jsx)(f.p,{})}),(0,r.jsx)(h.lV.Item,{label:n("hotspots-markers-data-modal.data-type.value"),name:`value-${t}`,children:(()=>{switch(e.type){case"checkbox":return(0,r.jsx)(T.S,{disableClearButton:!0});case"textarea":return(0,r.jsx)(S.f,{});case"textfield":return(0,r.jsx)(f.p,{});case"document":return(0,r.jsx)(E,{allowPathTextInput:!0,assetsAllowed:!1,dataObjectsAllowed:!0,documentsAllowed:!1,type:"document"});case"asset":return(0,r.jsx)(E,{allowPathTextInput:!0,assetsAllowed:!0,dataObjectsAllowed:!1,documentsAllowed:!1,type:"asset"});case"object":return(0,r.jsx)(E,{allowPathTextInput:!0,assetsAllowed:!1,dataObjectsAllowed:!0,documentsAllowed:!1,type:"object"})}})()})]})},t+e.type)})})},N=e=>{let{hotspot:t,onClose:i,onUpdate:n}=e,{t:l}=(0,a.useTranslation)(),[s]=h.lV.useForm(),{getFieldsData:u,dataTypes:m}=w(t,s),g=(0,r.jsxs)(d.s,{className:"w-100",justify:"space-between",children:[(0,r.jsx)(c.m,{menu:{items:m},children:(0,r.jsx)(p.J,{icon:{value:"new"},children:l("hotspots-markers-data-modal.new-data")},"empty")}),(0,r.jsx)(y.$,{onClick:()=>{(0,b.isUndefined)(t)||s.validateFields().then(()=>{let e=s.getFieldsValue();n({...t,data:u(),name:e.hotspotName}),i()}).catch(e=>{console.error("Validation failed:",e)})},type:"primary",children:l("hotspots-markers-data-modal.apply")},"ok")]});return(0,r.jsx)(o.m,{footer:g,okText:l("save"),onCancel:()=>{i()},open:!(0,b.isUndefined)(t),size:"M",title:l("hotspots-markers-data-modal.title"),zIndex:1e3,children:(0,r.jsx)(h.lV,{form:s,layout:"vertical",children:(0,r.jsxs)(v.$,{className:"w-full",direction:"vertical",size:"small",children:[(0,r.jsx)(h.lV.Item,{label:l("hotspots-markers-data-modal.name"),name:"hotspotName",children:(0,r.jsx)(f.p,{})}),(0,r.jsx)(D,{form:s,hotspot:t})]})})})};var P=i(79606),A=i(55638);let F=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},{trackErrors:t=!0}=e,[i,{isLoading:r,error:l}]=(0,P.vK)();return(0,n.useEffect)(()=>{t&&!(0,b.isNil)(l)&&(0,A.Ay)(new A.hD(l))},[l,t]),{convertPathToId:async(e,t)=>{if(!t.startsWith("/"))return null;try{let{data:r}=await i({elementType:e,elementPath:t});if(!(0,b.isNil)(null==r?void 0:r.id))return r.id;return console.warn(`No ID found for path ${t}`),null}catch(e){return console.error(`Failed to get ID for path ${t}:`,e),null}},isLoading:r}},$=e=>{var t,i;let{t:h}=(0,a.useTranslation)(),{convertPathToId:v}=F({trackErrors:!1}),[f,y]=(0,n.useState)(e.hotspots??[]),[x,j]=(0,n.useState)(!1),[w,C]=(0,n.useState)(void 0),S=l().useMemo(()=>{if((0,b.isNil)(e.predefinedDataTemplates))return{};if((0,b.isString)(e.predefinedDataTemplates)){if(""===e.predefinedDataTemplates)return{};try{return JSON.parse(e.predefinedDataTemplates)}catch(e){return console.error("Failed to parse predefinedDataTemplates",e),{}}}return e.predefinedDataTemplates},[e.predefinedDataTemplates]);(0,n.useEffect)(()=>{y(e.hotspots??[])},[null==(t=e.hotspots)?void 0:t.length,JSON.stringify(null==(i=e.hotspots)?void 0:i.map(e=>({name:e.name,data:e.data,id:e.id})))]);let T=e=>{y(f.map(t=>t.id===e.id?e:t))},I=async e=>await Promise.all(e.map(async e=>{let t="asset"===e.type||"document"===e.type||"object"===e.type,i=e.value;if(t&&(0,b.isString)(i)&&i.startsWith("/")){let t=(0,k.sv)(e.type);if(!(0,b.isNil)(t)){let r=await v(t,i);return{...e,value:r,fullPath:i}}}return e})),E=(e,t)=>{let i=s.X[e],r=f.length+1,n={id:r,x:5,y:5,width:i.width,height:i.height,type:e,name:null==t?void 0:t.name,data:null==t?void 0:t.data};y(e=>[...e,n]),(0,b.isNil)(null==t?void 0:t.data)||I(t.data).then(e=>{y(t=>t.map(t=>t.id===r?{...t,data:e}:t))})},D=e=>{let t=S[e],i=h("marker"===e?"hotspots.new-marker":"hotspots.new-hotspot"),n="marker"===e?"new-marker":"new-hotspot",l=(0,r.jsx)(p.J,{icon:{value:n},onClick:()=>{E(e)},children:i},`new-${e}-main`);if(!(0,b.isUndefined)(t)&&t.length>0){let i=t.map((t,i)=>({key:i,label:h(t.menuName??t.name),onClick:()=>{E(e,t)}}));return(0,r.jsx)(u.e,{items:[l,(0,r.jsx)(c.m,{menu:{items:i},children:(0,r.jsx)(m.K,{icon:{value:"chevron-down"},type:"default"})},`new-${e}-dropdown`)],noSpacing:!0},`new-${e}-group`)}return l},P=(0,g.n)(e.imageId,{width:952,height:800,mimeType:"PNG",contain:!0,...e.crop});return(0,r.jsxs)(o.m,{afterOpenChange:e=>{j(e)},footer:!0===e.disabled?(0,r.jsx)("span",{}):(e,t)=>{let{OkBtn:i,CancelBtn:n}=t;return(0,r.jsxs)(d.s,{className:"w-100",justify:"flex-end",style:{justifyContent:"space-between"},children:[(0,r.jsx)(u.e,{items:[D("marker"),D("hotspot")].filter(e=>!(0,b.isNil)(e))}),(0,r.jsx)(u.e,{items:[(0,r.jsx)(n,{},"cancel"),(0,r.jsx)(i,{},"ok")]})]})},okText:h("save"),onCancel:()=>{var t;null==(t=e.onClose)||t.call(e)},onOk:()=>{var t,i;null==(t=e.onChange)||t.call(e,f),null==(i=e.onClose)||i.call(e)},open:e.open,size:"XL",title:h(!0===e.disabled?"hotspots.show":"hotspots.edit"),children:[(0,r.jsx)(s.d,{data:x?f:[],disableDrag:!(0,b.isUndefined)(w),disabled:e.disabled,onClone:e=>{let t=f.find(t=>t.id===e);if(void 0!==t){let e={...t,id:f.length+1};y([...f,e])}},onEdit:e=>{C(f.find(t=>t.id===e.id))},onRemove:e=>{y(f.filter(t=>t.id!==e))},onUpdate:T,src:P}),(0,r.jsx)(N,{hotspot:w,onClose:()=>{C(void 0)},onUpdate:T})]})},M=(0,n.createContext)(void 0),O=e=>{let{children:t}=e,[i,l]=(0,n.useState)(new Map),a=(e,t,i,r,n)=>{l(l=>{let a=new Map(l);return a.set(e,{modalId:e,imageId:t,hotspots:i??null,crop:r??null,options:n??{}}),a})},o=e=>{l(t=>{let i=new Map(t);return i.delete(e),i})},s=e=>i.has(e),d=(0,n.useMemo)(()=>({openModal:a,closeModal:o,isModalOpen:s}),[]);return(0,r.jsxs)(M.Provider,{value:d,children:[Array.from(i.values()).map(e=>(0,r.jsx)(j,{children:(0,r.jsx)($,{crop:e.crop??void 0,disabled:e.options.disabled,hotspots:e.hotspots,imageId:e.imageId,onChange:t=>{((e,t)=>{let r=i.get(e);if(!(0,b.isNil)(r)){var n,l;null==(n=(l=r.options).onChange)||n.call(l,t),o(e)}})(e.modalId,t)},onClose:()=>{o(e.modalId)},open:!0,predefinedDataTemplates:e.options.predefinedDataTemplates})},e.modalId)),t]})}},28907(e,t,i){"use strict";i.d(t,{A:()=>a});var r=i(47867),n=i(81598),l=i(35864);let a=()=>{let e=(0,r.useContext)(n.t);if((0,l.isNil)(e))throw Error("useHotspotMarkersModalContext must be used within a HotspotMarkersModalProvider");return e}},40703(e,t,i){"use strict";i.d(t,{k:()=>c});var r=i(74848);i(47867);var n=i(7334),l=i(68901),a=i(61549);let o=e=>{let t=(0,a.J)(),i=[];return i.push(...Array.isArray(t.contentLanguages)?t.contentLanguages:[]),void 0!==e.customKeys&&e.customKeys.length>0&&i.unshift(...e.customKeys),!0===e.isNullable&&i.unshift("-"),(0,r.jsx)(l.v,{customKeys:e.customKeys,languages:i,onSelectLanguage:t=>{"-"===t?e.onChange(null):e.onChange(t)},selectedLanguage:e.value??"-"})};var s=i(33142);let d=e=>{let t=(0,a.J)(),i=(0,n.J)(),o=(0,s.D)(i.id,i.elementType),d=[];if("permissions"in o){var c,u;let e=o.permissions,i=(null==e||null==(c=e.localizedView)?void 0:c.split(","))??[],r=(null==(u=t.contentLanguages)?void 0:u.filter(e=>i.includes(e)))??[];(1===i.length&&"default"===i[0]||0===i.length)&&(r=Array.isArray(t.contentLanguages)?t.contentLanguages:[]),d.push(...r)}else d.push(...Array.isArray(t.contentLanguages)?t.contentLanguages:[]);return void 0!==e.customKeys&&e.customKeys.length>0&&d.unshift(...e.customKeys),!0===e.isNullable&&d.unshift("-"),(0,r.jsx)(l.v,{customKeys:e.customKeys,languages:d,onSelectLanguage:t=>{"-"===t?e.onChange(null):e.onChange(t)},selectedLanguage:e.value??"-"})},c=e=>null===(0,n.L)()?(0,r.jsx)(o,{...e}):(0,r.jsx)(d,{...e})},72209(e,t,i){"use strict";i.d(t,{E:()=>c});var r=i(74848),n=i(47867),l=i(63364),a=i(1993),o=i(21429);let s=e=>{let{nullable:t=!0,registryServiceId:i,...s}=e,d=(0,l.Lt)(i),[c,u]=(0,n.useState)(s.initialValue??s.value??null),{t:p}=(0,o.useTranslation)(),m=d.getDynamicTypes();(0,n.useEffect)(()=>{void 0!==s.value&&u(s.value)},[s.value]);let g=(0,n.useMemo)(()=>m.map(e=>({label:p(e.id),value:e.id})),[m]),h=(0,n.useMemo)(()=>{let e=g.filter(e=>void 0===s.restrictOptions||s.restrictOptions.includes(e.value));return t&&e.unshift({label:s.nullableLabel??p("asset.select.type.nullable"),value:null}),e},[g,s.restrictOptions,t,s.nullableLabel,p]);return(0,r.jsx)(a.l,{"data-testid":s["data-testid"],minWidth:"normal",onChange:e=>{u(e),void 0!==s.onChange&&s.onChange(e)},options:h,value:c})};var d=i(63155);let c=()=>{let{setValue:e,...t}=(0,d.I)();return(0,r.jsx)(s,{...t,"data-testid":"type-select",onChange:t=>{e(t)}})}},64165(e,t,i){"use strict";i.d(t,{M:()=>a,u:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t,valueState:i,...a}=e,[o,s]=(0,n.useState)(e.initialValue??null);if(void 0!==i){let[e,t]=i;o=e,s=t}return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{...a,value:o,setValue:s},children:t}),[e,t,o,s])}},53211(e,t,i){"use strict";i.d(t,{Z:()=>a});var r=i(47867),n=i(95245),l=i(35864);let a=()=>{let e=(0,r.useContext)(n._);if((0,l.isNil)(e))throw Error("useVideoModalContext must be used within a VideoModalProvider");return e}},95245(e,t,i){"use strict";i.d(t,{I:()=>s,_:()=>o});var r=i(74848),n=i(47867),l=i(35864),a=i(17074);let o=(0,n.createContext)(void 0),s=e=>{let{children:t}=e,[i,s]=(0,n.useState)(!1),[d,c]=(0,n.useState)(null),[u,p]=(0,n.useState)({}),m=(e,t)=>{c(e??null),p(t??{}),s(!0)},g=()=>{s(!1),c(null),p({})},h=(0,n.useMemo)(()=>({openModal:m,closeModal:g,isOpen:i}),[i]);return(0,r.jsxs)(o.Provider,{value:h,children:[t,i&&!(0,l.isNull)(void 0!==d)&&(0,r.jsx)(a.z,{allowedVideoTypes:u.allowedVideoTypes,disabled:u.disabled,onCancel:g,onOk:e=>{var t;null==(t=u.onChange)||t.call(u,e),g()},open:i,value:d})]})}},17074(e,t,i){"use strict";i.d(t,{z:()=>v});var r=i(74848),n=i(47867),l=i(21429),a=i(57231),o=i(28083),s=i(80632),d=i(1993),c=i(74462),u=i(23558),p=i(43565),m=i(27820),g=i(95112),h=i(25750);let v=e=>{var t,i;let{t:v}=(0,l.useTranslation)(),f=(null==(t=e.allowedVideoTypes)?void 0:t[0])??"asset",[y,b]=(0,n.useState)((null==(i=e.value)?void 0:i.type)??f),[x]=a.lV.useForm(),{confirm:j}=(0,p.Vl)();(0,n.useEffect)(()=>{S()},[e.value,e.open]);let w=e=>{x.setFieldsValue({type:e.type,data:C(e.type,e.data)?e.data:null}),"asset"===e.type&&x.setFieldsValue({title:e.title,description:e.description,poster:e.poster})},C=(e,t)=>"asset"===e?null!==t:"string"==typeof t,S=()=>{var t;b((null==(t=e.value)?void 0:t.type)??f),w(e.value??{type:f,data:null})},T=()=>{e.onOk({type:f,data:null})};return(0,r.jsx)(u.m,{afterOpenChange:e=>{e||S()},footer:!0===e.disabled?(0,r.jsx)("span",{}):(e,t)=>{let{OkBtn:i,CancelBtn:n}=t;return(0,r.jsxs)(h.s,{className:"w-100",justify:"flex-end",style:{justifyContent:"space-between"},children:[(0,r.jsx)(g.e,{items:[(0,r.jsx)(m.J,{icon:{value:"trash"},onClick:()=>j({title:v("empty"),content:v("empty.confirm"),onOk:T}),children:v("empty")},"empty")]}),(0,r.jsx)(g.e,{items:[(0,r.jsx)(n,{},"cancel"),(0,r.jsx)(i,{},"ok")]})]})},okText:v("save"),onCancel:e.onCancel,onOk:()=>{let t=(e=>{let{type:t,data:i}=e;return"asset"===t?e:("string"==typeof i&&""!==i&&(i=((e,t)=>{if("youtube"===t){let t=Array.from([...e.matchAll(/^(?:https?:\/\/|\/\/)?(?:www\.|m\.|.+\.)?(?:youtu\.be\/|youtube\.com\/(?:embed\/|v\/|shorts\/|feeds\/api\/videos\/|watch\?v=|watch\?.+&v=))(?[\w-]{11})(?![\w-])/g)],e=>e[1]);if((null==t?void 0:t.length)>0)return t[0]}else if("vimeo"===t){let t=/vimeo.com\/(\d+)($|\/)/.exec(e);if((null==t?void 0:t[1])!==null&&(null==t?void 0:t[1])!==void 0)return t[1]}else if("dailymotion"===t){let t=/dailymotion.*\/video\/([^_]+)/.exec(e);if((null==t?void 0:t[1])!==null&&(null==t?void 0:t[1])!==void 0)return t[1]}return null})(i,t)??i),{type:t,data:i})})(x.getFieldsValue());e.onOk(t)},open:e.open,size:"M",title:v("video.settings"),children:(0,r.jsxs)(a.lV,{form:x,layout:"vertical",children:[(0,r.jsx)(a.lV.Item,{label:v("video.type"),name:"type",children:(0,r.jsx)(d.l,{disabled:e.disabled,onChange:e=>{b(e),w({type:e,data:null})},options:(void 0===e.allowedVideoTypes||0===e.allowedVideoTypes.length?["asset","youtube","vimeo","dailymotion"]:e.allowedVideoTypes).map(e=>({value:e,label:v(`video.type.${e}`)}))})}),(0,r.jsx)(a.lV.Item,{label:v("asset"===y?"video.path":"video.id"),name:"data",children:"asset"===y?(0,r.jsx)(c.P,{allowedAssetTypes:["video"],assetsAllowed:!0,disabled:e.disabled,onOpenElement:e.onCancel}):(0,r.jsx)(s.p,{placeholder:v("video.url")})},"data-"+y),"asset"===y&&(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(a.lV.Item,{label:v("video.poster"),name:"poster",children:(0,r.jsx)(c.P,{allowedAssetTypes:["image"],assetsAllowed:!0,disabled:e.disabled,onOpenElement:e.onCancel})}),(0,r.jsx)(a.lV.Item,{label:v("title"),name:"title",children:(0,r.jsx)(s.p,{disabled:e.disabled})}),(0,r.jsx)(a.lV.Item,{label:v("description"),name:"description",children:(0,r.jsx)(o.f,{autoSize:{minRows:3},disabled:e.disabled})})]})]})})}},76238(e,t,i){"use strict";i.d(t,{V:()=>s});var r=i(74848);i(47867);var n=i(63364),l=i(10600),a=i(52112),o=i(89702);let s=e=>{let{batchEdit:t}=e,i=(0,n.Lt)(l.K["DynamicTypes/ObjectDataRegistry"]),{value:s,...d}=t,c=(0,a.C)(),{frontendType:u,config:p,key:m}=d;if(!i.hasDynamicType(u))return(0,r.jsxs)(r.Fragment,{children:["Type ",u," not supported"]});if(!("fieldDefinition"in p))throw Error("Field definition is missing in config");let g=i.getDynamicType(u),h=g.getObjectDataComponent({...p.fieldDefinition,defaultFieldWidth:c}),v=[m];return d.localizable&&(v=["localizedfields",m,d.locale]),(0,r.jsx)(o.W,{component:h,name:v,supportsBatchAppendModes:g.supportsBatchAppendModes})}},45086(e,t,i){"use strict";i.d(t,{I:()=>s});var r=i(74848);i(47867);var n=i(63364),l=i(10600),a=i(52112),o=i(89702);let s=e=>{let{batchEdit:t}=e,i=(0,n.Lt)(l.K["DynamicTypes/ObjectDataRegistry"]),{value:s,...d}=t,c=(0,a.C)(),{frontendType:u,config:p,key:m}=d;if(!i.hasDynamicType(u))return(0,r.jsxs)(r.Fragment,{children:["Type ",u," not supported"]});if(!("fieldDefinition"in p))throw Error("Field definition is missing in config");let g=i.getDynamicType(u),h=g.getObjectDataComponent({...p.fieldDefinition,defaultFieldWidth:c}),v=m.split("."),f=[v[v.length-1]];return f=d.localizable?[...v.pop(),"localizedfields",...f,d.locale]:v,(0,r.jsx)(o.W,{component:h,name:f,supportsBatchAppendModes:g.supportsBatchAppendModes})}},73004(e,t,i){"use strict";i.d(t,{B:()=>a});var r=i(74848);i(47867);var n=i(28083),l=i(57231);let a=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,r.jsx)(l.lV.Item,{name:i,children:(0,r.jsx)(n.f,{autoSize:{minRows:2}})})}},45704(e,t,i){"use strict";i.d(t,{s:()=>a});var r=i(74848);i(47867);var n=i(86569),l=i(57231);let a=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,r.jsx)(l.lV.Item,{name:i,children:(0,r.jsx)(n.Input,{type:"text"})})}},89702(e,t,i){"use strict";i.d(t,{W:()=>s});var r=i(74848);i(47867);var n=i(57231),l=i(8236),a=i(68528),o=i(21429);let s=e=>{let{name:t,component:i,supportsBatchAppendModes:s}=e,{t:d}=(0,o.useTranslation)();return s?(0,r.jsxs)(n.lV.Group,{name:t,children:[(0,r.jsx)(n.lV.Item,{initialValue:a.Y$.Replace,name:"action",children:(0,r.jsx)(l.$,{options:[{label:d("batch-edit.append-mode.replace"),value:a.Y$.Replace},{label:d("batch-edit.append-mode.add"),value:a.Y$.Add},{label:d("batch-edit.append-mode.remove"),value:a.Y$.Remove}]})}),(0,r.jsx)(n.lV.Item,{initialValue:null,name:"data",children:i})]}):(0,r.jsx)(n.lV.Item,{initialValue:null,name:t,children:i})}},81659(e,t,i){"use strict";i.d(t,{y:()=>o});var r,n=i(74848);i(47867);var l=i(62446),a=i(76238);let o=(0,l.injectable)()(r=class{getBatchEditComponent(e){return(0,n.jsx)(a.V,{...e})}constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.adapter")}})||r},81215(e,t,i){"use strict";i.d(t,{h:()=>o});var r,n=i(74848);i(47867);var l=i(62446),a=i(45086);let o=(0,l.injectable)()(r=class{getBatchEditComponent(e){return(0,n.jsx)(a.I,{...e})}constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.objectbrick")}})||r},53031(e,t,i){"use strict";i.d(t,{M:()=>o});var r,n=i(74848);i(47867);var l=i(62446),a=i(73004);let o=(0,l.injectable)()(r=class{getBatchEditComponent(e){return(0,n.jsx)(a.B,{...e})}constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","textarea")}})||r},33473(e,t,i){"use strict";i.d(t,{P:()=>o});var r,n=i(74848);i(47867);var l=i(62446),a=i(45704);let o=(0,l.injectable)()(r=class{getBatchEditComponent(e){return(0,n.jsx)(a.s,{...e})}constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","input")}})||r},81628(e,t,i){"use strict";i.d(t,{X:()=>_});var r=i(74848),n=i(47867),l=i(35864),a=i(48034),o=i(57180),s=i(15789),d=i(55638),c=i(40701),u=i(36249),p=i(97844),m=i(52255);let g=(0,i(44241).createStyles)(e=>{let{token:t}=e;return{areablockToolstrip:{display:"inline-block",width:"fit-content",marginTop:t.marginXS,marginBottom:t.marginXS},areaEntry:{'&[data-hidden="true"] .pimcore_area_content':{filter:"blur(1px)",opacity:.5}}}});var h=i(46096),v=i(25765),f=i.n(v),y=i(54872),b=i(29740),x=i(62461),j=i(43588),w=i(21429),C=i(55127),S=i(7814);let T=e=>{let{config:t,onAddArea:i}=e,{t:a}=(0,w.useTranslation)();return{menuItems:(0,n.useMemo)(()=>{let e=p.So.getGroupedAreaTypes(t);if(Array.isArray(e))return e.map(e=>({key:e.type,label:(0,r.jsx)(S.m,{title:(0,l.isUndefined)(e.description)?void 0:a(e.description),children:(0,r.jsx)("span",{children:a(e.name)})}),onClick:()=>{i(e.type)}}));let n=[];return Object.entries(e).forEach(e=>{let[t,o]=e,s=o.map(e=>({key:e.type,label:(0,r.jsx)(S.m,{title:(0,l.isUndefined)(e.description)?void 0:a(e.description),children:(0,r.jsx)("span",{children:a(e.name)})}),onClick:()=>{i(e.type)}}));null==n||n.push({key:t,label:a(t),children:s})}),n},[t,i,a])}};var I=i(28660);let k=e=>{let{id:t,buttonsContainer:i,element:n,limitReached:l,areaTypes:a,config:o,areablockManager:s,onAddArea:d,onRemoveArea:c,onMoveAreaUp:u,onMoveAreaDown:p,onOpenDialog:m,onToggleHidden:h,isInherited:v=!1,onOverwrite:f}=e,{styles:S}=g(),{t:k}=(0,w.useTranslation)(),{listeners:E}=(0,C.y)({id:t,element:n}),{menuItems:D}=T({config:o,onAddArea:e=>{d(n,e)}}),N=s.queryElements(),P=s.findElementIndex(n),A=P===N.length-1,F=s.isElementHidden(n),$=s.getElementType(n),M=a.find(e=>e.type===$),O=(null==M?void 0:M.name)!=null?k(M.name):void 0,_=[],L=null;l||(1===a.length?_.push((0,r.jsx)(b.K,{icon:{value:"new"},onClick:()=>{d(n,a[0].type)},size:"small"},"plus")):_.push((0,r.jsx)(j.Dropdown,{menu:{items:D},placement:"bottomLeft",trigger:["click"],children:(0,r.jsx)(b.K,{icon:{value:"new"},size:"small"})},"plus-dropdown"))),_.push((0,r.jsx)(b.K,{disabled:0===P,icon:{value:"chevron-up"},onClick:()=>{u(n)},size:"small"},"up")),_.push((0,r.jsx)(b.K,{disabled:A,icon:{value:"chevron-down"},onClick:()=>{p(n)},size:"small"},"down")),(null==M?void 0:M.hasDialogBoxConfiguration)===!0&&_.push((0,r.jsx)(b.K,{icon:{value:"settings"},onClick:()=>{null==m||m(t)},size:"small"},"dialog")),_.push((0,r.jsx)(b.K,{icon:{value:F?"eye-off":"eye"},onClick:()=>{null==h||h(n)},size:"small",title:k(F?"areablock.show":"areablock.hide")},"visibility")),L=(0,r.jsx)(b.K,{icon:{value:"trash"},onClick:()=>{c(n)},size:"small"},"minus");let R=(0,r.jsx)(y.Z,{activateOnHover:!v,additionalIcon:v?"inheritance-active":void 0,className:S.areablockToolstrip,disabled:v,dragger:!!v||{listeners:E},theme:"inverse",title:O,children:(0,r.jsxs)(x.B,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,r.jsx)(j.Space,{size:"small",children:_}),L]})},`toolbar-${n.getAttribute("key")}`);return(0,r.jsx)(I.s,{isInherited:v,onOverwrite:f,children:R})};var E=i(30817),D=i(36604);let N=e=>{let{areaTypes:t,config:i,onClick:n,isInherited:a=!1,onOverwrite:o}=e,{styles:s}=g(),{menuItems:d}=T({config:i,onAddArea:e=>{n(e)}}),c=async(e,t)=>{var i;!a&&"areablock-type"===e.type&&(0,l.isString)(null==(i=e.data)?void 0:i.areablockType)&&await n(e.data.areablockType)};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(D.L,{}),(0,r.jsx)(I.s,{isInherited:a,onOverwrite:o,children:(0,r.jsx)(y.Z,{additionalIcon:a?"inheritance-active":void 0,className:s.areablockToolstrip,disabled:a,theme:"inverse",children:1===t.length?(0,r.jsx)(b.K,{icon:{value:"new"},onClick:a?void 0:()=>{n(t[0].type)},size:"small"}):(0,r.jsx)(j.Dropdown,{menu:{items:d},placement:"bottomLeft",trigger:a?[]:["click"],children:(0,r.jsx)(b.K,{icon:{value:"new"},size:"small"})})})}),!a&&(0,r.jsx)(E.i,{id:"empty-areablock-toolbar-dropzone",index:0,isValidDrop:e=>{var t;if(a||"areablock-type"!==e.type||!(0,l.isString)(null==(t=e.data)?void 0:t.areablockType))return!1;let r=e.data.areablockType;return p.So.isTypeAllowed(i,r)},onDropItem:c})]})};var P=i(44108),A=i(65504),F=i(67574),$=i(17678),M=i(86515);let O=e=>{let{element:t,areablockName:i,editableDefinitions:n=[],isOpen:l=!1,onClose:a}=e,{dialogConfig:o,editableDefinitions:s,handleCloseDialog:d,hasDialog:c}=(0,M.G)({element:t,dialogSelector:".pimcore_block_dialog",editableName:i,dynamicEditableDefinitions:n});return c&&l&&0!==s.length?(0,r.jsx)($.b,{config:o,editableDefinitions:s,onClose:()=>{null==a||a(),d()},visible:l}):null},_=e=>{let{value:t=[],onChange:i,config:v,className:y,editableName:b,containerRef:x,disabled:j=!1,isInherited:C=!1,renderTrigger:S}=e,T=(0,l.isArray)(t)?t:[],I=(0,n.useMemo)(()=>new F.I(b,x),[b,x]),E=(0,n.useMemo)(()=>p.So.getAvailableTypes(v),[v]),[D,$]=(0,n.useState)(new Set),M=(0,n.useCallback)(()=>{null==i||i(I.getAreablockValue())},[I,i]),_=(0,n.useCallback)(e=>{$(t=>new Set(t).add(e))},[]),L=(0,n.useCallback)(e=>{$(t=>{let i=new Set(t);return i.delete(e),i})},[]),R=(0,n.useCallback)(e=>{I.toggleElementHidden(e);let t=I.getAreablockValue();null==i||i(t)},[I,i]),{dynamicEditables:B,addArea:z,removeArea:V,moveAreaUp:G,moveAreaDown:U,moveArea:q}=(e=>{let{areablockManager:t,onChange:i,config:r,disabled:a=!1,renderTrigger:v}=e,{initializeData:f,getValues:y,removeValues:b}=(0,o.U)(),{id:x}=(0,n.useContext)(s.T),[j,w]=(0,n.useState)([]),C=(0,n.useRef)(t.queryElements()),{styles:S}=g(),T=(0,n.useCallback)(()=>{t.applyStylestoAreaEntries(S.areaEntry)},[t]);(0,n.useEffect)(()=>{T()},[T]);let{hideElementUntilRendered:I,revealPendingElements:k}=(0,m.j)({dynamicEditables:j,getContainer:()=>t.getContainer()}),E=(0,n.useCallback)(e=>{let t=e([...C.current]);C.current=t;let r=p.th.elementsToAreablockValue(t);null==i||i(r)},[i]),D=(0,n.useCallback)(()=>{t.ensureAllElementKeys();let e=t.getAreablockValue();null==i||i(e)},[i,t]),N=(0,n.useCallback)(async(e,i)=>{if(a)return;let n=p.So.getEffectiveLimit(r),o=p.So.isReloadMode(r)?C.current:t.queryElements();if(p.So.isLimitReached(o.length,n))return;let s=p.So.getAvailableTypes(r),m=i??((0,l.isEmpty)(s)?"default":s[0].type);if(!p.So.isTypeAllowed(r,m))return;let g=(0,l.isNil)(e)?0:t.findElementIndex(e)+1,y=t.calculateNextKey();if(p.So.isReloadMode(r))return void E(e=>{let i=document.createElement("div");t.setElementKey(i,y.toString()),t.setElementType(i,m),i.setAttribute("data-hidden","false");let r=[...e];return r.splice(g,0,i),r});try{let e,i=t.getContainer();if((0,l.isNil)(i))return;let n=t.getAreablockValue();n.splice(g,0,{key:y,type:m,hidden:!1});let{error:a,data:o}=await v({id:x,body:{name:t.getEditableName(),realName:t.getRealEditableName(),index:g,blockStateStack:(e=null==r?void 0:r.blockStateStack,(0,l.isString)(e)?JSON.parse(e):null),areaBlockConfig:r??{},areaBlockData:n}});if(!(0,l.isUndefined)(a))return void(0,d.Ay)(new d.hD(a));if(!(0,l.isNil)(null==o?void 0:o.htmlCode)){let e=document.createElement("div");e.innerHTML=o.htmlCode;let r=e.firstElementChild;if(!(0,l.isNil)(r)){I(r);let e=t.queryElements();if(0===e.length){var b;i.appendChild(r);let e=(0,u.T5)(t.getEditableName(),!0);null==(b=r.parentNode)||b.insertBefore(e,r)}else(0,l.isNil)(e[g-1])?(0,l.isNil)(e[g])||e[g].insertAdjacentElement("beforebegin",r):e[g-1].insertAdjacentElement("afterend",r);let n=(0,u.T5)(t.getEditableName());r.appendChild(n),T()}}if(!(0,l.isNil)(null==o?void 0:o.editableDefinitions)&&(0,l.isArray)(null==o?void 0:o.editableDefinitions)){let e=o.editableDefinitions,t=(0,c.b)(e);f(t),w(t=>[...t,...e]),function(e,t){try{let i=(0,p.uk)(t);if(0===Object.keys(i).length)return;let{document:r}=(0,h.qH)();r.mergeAreablockTypes(e,"areablock",i)}catch(e){console.warn("Could not merge areablock types after addArea:",e)}}(x,e)}else k();D()}catch(e){(0,d.Ay)(new d.$g("Failed to add area")),console.error("Failed to add area:",e),D()}},[a,r,E,D,t,x]),P=(0,n.useCallback)(e=>{if(a)return;if(p.So.isReloadMode(r)){let i=t.findElementIndex(e);E(e=>{let t=[...e];return t.splice(i,1),t});return}let i=(e=>{let i=t.getElementKey(e);if((0,l.isNil)(i))return[];let r=y();return p.th.filterEditableNames(Object.keys(r),t.getEditableName(),i)})(e),n=t.getElementKey(e);if(!(0,l.isNil)(n)){let e=t.getEditableName(),i=`${e}:${n}.`;w(e=>e.filter(e=>!e.name.startsWith(i)))}e.remove(),(0,l.isEmpty)(i)||b(i),D()},[a,r,E,b,D,t]),A=(e,i)=>{if(a)return;let n=t.findElementIndex(e),o=p.So.isReloadMode(r)?C.current:t.queryElements();if("up"===i&&!p.So.canMoveUp(n)||"down"===i&&!p.So.canMoveDown(n,o.length))return;if(p.So.isReloadMode(r)){let e="up"===i?n-1:n+1;E(t=>p.th.swapElements(t,n,e));return}let s="up"===i?o[n-1]:o[n+1];if(!(0,l.isNil)(s)){var d;let t="up"===i?s:s.nextSibling;null==(d=s.parentNode)||d.insertBefore(e,t),D()}};return{dynamicEditables:j,addArea:N,removeArea:P,moveAreaUp:e=>{A(e,"up")},moveAreaDown:e=>{A(e,"down")},moveArea:(0,n.useCallback)((e,i)=>{if(a)return;let n=p.So.isReloadMode(r)?C.current:t.queryElements();if(e<0||e>=n.length||i<0||i>=n.length)return;if(p.So.isReloadMode(r))return void E(t=>{let r=[...t],[n]=r.splice(e,1);return r.splice(i,0,n),r});let o=window.scrollX,s=window.scrollY,d=n[e],c=n[i];if(!(0,l.isNil)(d)&&!(0,l.isNil)(c)){var u;let t=i>e?c.nextSibling:c;null==(u=c.parentNode)||u.insertBefore(d,t),requestAnimationFrame(()=>{window.scrollTo(o,s)}),D()}},[a,r,E,D,t])}})({areablockManager:I,value:T,onChange:i,config:v,disabled:j,renderTrigger:S}),{renderAreablockToolbar:W}=(e=>{let{areablockManager:t,areaTypes:i,config:a,onAddArea:o,onRemoveArea:s,onMoveAreaUp:d,onMoveAreaDown:c,onMoveArea:u,onOpenDialog:m,onToggleHidden:g,isInherited:h=!1,onOverwrite:v}=e,{activeId:y,handleDragStart:b,handleDragOver:x,handleDragEnd:j,dropzonePortals:C,dragOverlayTitle:S,refreshDropzones:T,removeFirstDropzone:I}=(e=>{let{areablockManager:t,areaTypes:i,onMoveArea:r,onDropAreablock:a}=e,{t:o}=(0,w.useTranslation)(),s=async(e,t)=>{if(!(0,l.isNil)(a)){var i;let r=(null==(i=e.data)?void 0:i.areablockType)??e.title??"default";await a(r,t)}},d=(0,P.g)({blockManager:t,onMoveItem:r,onDropItem:s,isValidDrop:e=>{var t;if("areablock-type"!==e.type||(null==(t=e.data)?void 0:t.areablockType)==null)return!1;let r=e.data.areablockType;return i.some(e=>e.type===r)}}),c=(0,n.useMemo)(()=>{if(null===d.activeId)return;let e=t.queryElements().find(e=>t.getElementKey(e)===d.activeId);if(!(0,l.isUndefined)(e)&&!(0,l.isUndefined)(t.getElementType)&&i.length>0){let r=t.getElementType(e),n=i.find(e=>e.type===r);return(null==n?void 0:n.name)!=null?o(n.name):void 0}},[d.activeId,t,i]);return{...d,dragOverlayTitle:c}})({areablockManager:t,areaTypes:i,onMoveArea:u,onDropAreablock:async(e,i)=>{if(h)return;let r=t.queryElements();if(0===i)await E(null,e);else if(i>=r.length){let t=r[r.length-1];await E(t,e)}else{let t=r[i-1];await E(t,e)}}}),E=(0,n.useCallback)(async(e,t)=>{await o(e,t),T()},[o,T]),D=(0,n.useCallback)(e=>{let i=1===t.queryElements().length;s(e),i&&I()},[s,t,I]),F=(0,n.useCallback)(e=>{let t=(0,r.jsx)(N,{areaTypes:i,config:a,isInherited:h,onClick:async e=>{await E(null,e)},onOverwrite:v});return f().createPortal(t,e)},[i,a,E,h,v]);return{renderAreablockToolbar:(0,n.useCallback)(()=>{let e=[],n=t.queryElements(),l=p.So.isLimitReached(n.length,null==a?void 0:a.limit);if(0===n.length){let i=t.getContainer();if(null!==i){let t=F(i);e.push(t)}}else h||e.push(...C);let o=n.map(e=>t.getElementKey(e)).filter(e=>!!e);return n.forEach(n=>{let o=n.querySelector(".pimcore_area_buttons");if(null!==o){let s=t.getElementKey(n);if(null!==s){let u=(0,r.jsx)(k,{areaTypes:i,areablockManager:t,buttonsContainer:o,config:a,element:n,id:s,isInherited:h,limitReached:l,onAddArea:E,onMoveAreaDown:c,onMoveAreaUp:d,onOpenDialog:m,onOverwrite:v,onRemoveArea:D,onToggleHidden:g}),p=f().createPortal(u,o);e.push(p)}}}),(0,r.jsx)(A.C,{activeId:y,dragOverlayTitle:S,items:o,onDragEnd:j,onDragOver:x,onDragStart:b,children:(0,r.jsx)(r.Fragment,{children:e})})},[t,i,a,b,x,j,E,D,d,c,g,m,y,C,S,F,h,v])}})({areablockManager:I,areaTypes:E,config:v,onAddArea:z,onRemoveArea:V,onMoveAreaUp:G,onMoveAreaDown:U,onMoveArea:q,onOpenDialog:_,onToggleHidden:R,isInherited:C,onOverwrite:M});return(0,r.jsxs)("div",{className:y,children:[(0,r.jsx)(a.E,{editableDefinitions:B}),W(),Array.from(D).map(e=>{let t=I.findElementByKey(e);return(0,l.isNil)(t)?null:(0,r.jsx)(O,{areablockName:b,editableDefinitions:B,element:t,isOpen:!0,onClose:()=>{L(e)}},`dialog-${e}`)})]})}},184(e,t,i){"use strict";i.d(t,{A:()=>u});var r=i(74848),n=i(47867),l=i(35864),a=i(76673);let o=(0,i(44241).createStyles)(e=>{let{token:t}=e;return{contentEditable:{outline:"none",overflowY:"visible","&[data-empty=true]":{outline:`1px dashed ${t.colorBorder}`},"&:hover":{outline:`2px dashed ${t.colorBorder}`,outlineOffset:"5px"},"&:focus":{outline:"none"},"&[contenteditable=true][data-placeholder][data-empty=true]:before":{cursor:"text",content:"attr(data-placeholder)",display:"block",color:t.colorTextDisabled}}}});var s=i(53051),d=i(8651),c=i.n(d);let u=e=>{let t,{value:i,onChange:d,placeholder:u,width:p,height:m,nowrap:g,allowMultiLine:h=!1,className:v,disabled:f=!1,inherited:y=!1}=e,{styles:b}=o(),x=(0,n.useRef)(null),j=(0,n.useRef)(i??null);(0,n.useEffect)(()=>{if(!(0,l.isNull)(x.current)){let e=(0,l.isNil)(i)||""===i?"":h?i.replace(/\r\n|\n/g,"
"):i;x.current.innerHTML!==e&&(x.current.innerHTML=e),j.current=i}},[i,h,y]);let w=()=>{if((0,l.isNull)(x.current))return;let e=(e=>{if(""===e)return"";let t=(0,a.Kq)(e,["br"]);return(t=h?t.replace(//gi,"\n"):t.replace(//gi," ")).trim()})(x.current.innerHTML);e!==j.current&&(j.current=e,null==d||d((0,l.isString)(e)?e:""))},C=(0,l.isNil)(j.current)||""===j.current,S=(t={},h?((0,l.isNil)(p)&&(0,l.isNil)(m)||(t.display="inline-block",t.overflow="auto"),(0,l.isNil)(p)||(t.width=`${p}px`),(0,l.isNil)(m)||(t.height=`${m}px`)):(0,l.isNil)(p)||(t.display="inline-block",t.width=`${p}px`,t.overflow="auto hidden",t.whiteSpace="nowrap"),!(0,l.isNil)(g)&&g&&(t.whiteSpace="nowrap",t.overflow="auto hidden"),t);return(0,r.jsx)(s.x,{display:S.display??"block",isInherited:y,onOverwrite:()=>{null==d||d(i??"")},children:(0,r.jsx)("div",{className:c()(b.contentEditable,v),contentEditable:!f,"data-empty":C,"data-placeholder":u,onInput:f?void 0:w,onKeyDown:f?void 0:e=>{if("Enter"===e.key)if(h){if(e.preventDefault(),!(0,l.isNil)(window.getSelection)){let e=window.getSelection();if(!(0,l.isNull)(e)&&e.rangeCount>0){let t=e.getRangeAt(0),i=document.createElement("br"),r=document.createTextNode("\xa0");t.deleteContents(),t.insertNode(i),t.collapse(!1),t.insertNode(r),t.selectNodeContents(r),e.removeAllRanges(),e.addRange(t)}}setTimeout(w,0)}else e.preventDefault()},onPaste:f?void 0:e=>{var t;e.preventDefault();let i=null==(t=x.current)?void 0:t.ownerDocument.defaultView;if((0,l.isNil)(i)||(0,l.isNil)(x.current))return;let r="";(0,l.isNil)(e.clipboardData)?(0,l.isNil)(i.clipboardData)||(r=i.clipboardData.getData("Text")):r=e.clipboardData.getData("text/plain"),r=(0,a.ZD)(r),r=h?r.replace(/\r\n|\n/g,"
").trim():r.replace(/\r\n|\n/g," ").trim(),(0,a.Dq)(r,i),setTimeout(w,0)},ref:x,role:"none",style:S})})}},53051(e,t,i){"use strict";i.d(t,{x:()=>u});var r=i(74848),n=i(47867),l=i(86569),a=i(81898);let o=(0,i(44241).createStyles)((e,t)=>{let{token:i,css:r}=e,{display:n,addIconSpacing:l,hideButtons:a,noPadding:o,shape:s}=t,d=!0===l?16+2*i.paddingXXS+i.paddingMD:0;return{container:r` - position: relative; - display: ${n??"inline-block"}; - ${!0!==o?`padding: ${i.paddingXXS}px;`:""} - padding-right: ${d}px; - - .ant-btn { - background-color: ${i.colorBgContainerDisabled} !important; - ${!0===a?"display: none !important;":""} - } - - .pimcore_editable_droppable_overlay { - display: none; - } - `,inheritanceBackground:r` - inset: 0; - position: absolute; - background: ${i.colorFillSecondary}; - border: 1px dashed ${i.colorPrimaryBorder}; - ${"angular"!==s?`border-radius: ${i.borderRadius}px;`:""} - cursor: pointer; - display: flex; - align-items: flex-start; - justify-content: flex-end; - padding: ${i.paddingXXS}px; - z-index: 10; - overflow: hidden; - &:hover { - border-color: ${i.colorPrimary}; - } - `,inheritanceIcon:r` - display: flex; - align-items: center; - justify-content: center; - border-radius: ${i.borderRadiusSM}px; - background: ${i.colorFillActive}; - padding: ${i.paddingXXS}px; - color: ${i.colorPrimary}; - `}});var s=i(40192),d=i(35864),c=i(7814);let u=e=>{let{children:t,isInherited:i,onOverwrite:u,className:p,display:m="inline-block",addIconSpacing:g=!1,hideButtons:h=!1,noPadding:v=!1,shape:f="round",style:y}=e,{styles:b}=o({display:m,addIconSpacing:g,hideButtons:h,noPadding:v,shape:f}),{inheritanceMenuItems:x,inheritanceTooltip:j}=(0,s.d)({onOverwrite:u}),w=(0,n.useRef)(i);return(i&&!w.current&&(w.current=!0),(0,d.isNil)(t))?null:w.current?(0,r.jsxs)("div",{className:i?`${b.container} ${p??""}`:"",style:i?y:{display:"contents"},children:[i&&(0,r.jsx)(l.Dropdown,{menu:{items:x},placement:"bottomLeft",trigger:["click","contextMenu"],children:(0,r.jsx)(c.m,{title:j,children:(0,r.jsx)("div",{className:b.inheritanceBackground,children:(0,r.jsx)("div",{className:b.inheritanceIcon,children:(0,r.jsx)(a.I,{value:"inheritance-active"})})})})}),t]}):(0,r.jsx)(r.Fragment,{children:t})}},28660(e,t,i){"use strict";i.d(t,{s:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(7814);let a=(0,i(44241).createStyles)(()=>({inheritanceWrapper:{cursor:"pointer",display:"inline-block"}}));var o=i(40192),s=i(35864);let d=e=>{let{children:t,isInherited:i=!1,onOverwrite:d,className:c}=e,{styles:u,cx:p}=a(),{inheritanceMenuItems:m,inheritanceTooltip:g}=(0,o.d)({onOverwrite:d});return(0,s.isNil)(t)?(0,r.jsx)(r.Fragment,{}):i&&!(0,s.isNil)(d)?(0,r.jsx)(n.Dropdown,{menu:{items:m},placement:"bottomLeft",trigger:["click","contextMenu"],children:(0,r.jsx)(l.m,{title:g,children:(0,r.jsx)("div",{className:p(u.inheritanceWrapper,c),children:t})})}):(0,r.jsx)(r.Fragment,{children:t})}},80655(e,t,i){"use strict";i.d(t,{Z:()=>a});var r,n=i(62446),l=i(35864);let a=(0,n.injectable)()(r=class{transformValue(e,t){return e}transformValueForApi(e,t){return e}hasReloadConfig(e){var t;return!!(null==(t=e.config)?void 0:t.reload)}hasRequiredConfig(e){var t;return!!(null==(t=e.config)?void 0:t.required)}reloadOnChange(e,t,i){return this.hasReloadConfig(e)}isEmpty(e,t){return(0,l.isNil)(e)}validateRequired(e,t){return!this.hasRequiredConfig(t)||!this.isEmpty(e,t)}onDocumentReady(e,t){}constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id",void 0)}})||r},36604(e,t,i){"use strict";i.d(t,{L:()=>s});var r=i(74848);i(47867);var n=i(94788),l=i(54719),a=i(8651),o=i.n(a);let s=e=>{let{id:t,index:i,setNodeRef:a}=e,{styles:s}=(0,l.P)(),{isDragActive:d,isOver:c,isValid:u}=(0,n.z)();return(0,r.jsx)("div",{className:o()(s.dropzone,"pimcore-editable-dropzone",{[s.dropzoneDragActive]:d,[s.dropzoneHover]:c&&u,[s.dropzoneRejected]:c&&!u}),"data-pimcore-dropzone-id":t??"default-dropzone","data-pimcore-dropzone-index":i??0,ref:a})}},30817(e,t,i){"use strict";i.d(t,{i:()=>o});var r=i(74848);i(47867);var n=i(41834),l=i(20597),a=i(36604);let o=e=>{let{id:t,index:i,onDropItem:o,isValidDrop:s}=e,{setNodeRef:d}=(0,n.useDroppable)({id:t}),c=async e=>{null!=o&&await o(e,i)},u=s??(()=>!1);return(0,r.jsx)(l.g,{disableDndActiveIndicator:!1,isValidContext:u,isValidData:u,onDrop:c,children:(0,r.jsx)(a.L,{id:t,index:i,setNodeRef:d})})}},65504(e,t,i){"use strict";i.d(t,{C:()=>c});var r=i(74848);i(47867);var n=i(41834),l=i(88754),a=i(40119),o=i(54872);let s=(0,i(44241).createStyles)(e=>{let{token:t}=e;return{dragOverlay:{display:"inline-flex",alignItems:"center",cursor:"grabbing",boxShadow:t.boxShadowSecondary,maxWidth:"max-content"}}}),d=e=>{let{activeId:t,title:i}=e,{styles:l}=s();return(0,r.jsx)(n.DragOverlay,{dropAnimation:null,modifiers:[a.snapCenterToCursor],children:null!==t?(0,r.jsx)("div",{className:l.dragOverlay,children:(0,r.jsx)(o.Z,{dragger:!0,rounded:!0,theme:"inverse",title:i})}):null})},c=e=>{let{children:t,items:i,activeId:a,dragOverlayTitle:o,onDragEnd:s,onDragOver:c,onDragStart:u}=e,p=(0,n.useSensors)((0,n.useSensor)(n.PointerSensor,{activationConstraint:{distance:8}}),(0,n.useSensor)(n.KeyboardSensor));return(0,r.jsxs)(n.DndContext,{collisionDetection:n.pointerWithin,onDragEnd:s,onDragOver:c,onDragStart:u,sensors:p,children:[(0,r.jsx)(l.SortableContext,{items:i,strategy:l.verticalListSortingStrategy,children:t}),(0,r.jsx)(d,{activeId:a,title:o})]})}},44108(e,t,i){"use strict";i.d(t,{g:()=>p});var r=i(74848),n=i(47867),l=i(25765),a=i.n(l),o=i(35864),s=i(54719),d=i(30817),c=i(83678),u=i(36249);let p=e=>{let{blockManager:t,onMoveItem:i,onDropItem:l,isValidDrop:p}=e,{styles:m}=(0,s.P)(),[g,h]=(0,n.useState)(null),[v,f]=(0,n.useState)([]),[y,b]=(0,n.useState)(0),[,x]=(0,n.useTransition)(),j=(0,n.useRef)(!1),w=(0,n.useRef)(null),C=(0,n.useMemo)(()=>t.getContainer(),[t]),S=(0,n.useMemo)(()=>(null==C?void 0:C.getAttribute(c.Sh.DATA_NAME))??null,[C]),T=(0,n.useMemo)(()=>t.queryElements(),[t,y]),I=(0,n.useCallback)(()=>{x(()=>{b(e=>e+1)})},[x]),k=(0,n.useCallback)(()=>{(0,u.h5)(S,j.current),(0,u.D_)(C,w.current,j.current)},[C,S]),E=(0,n.useCallback)(e=>{let t=Array.from((null==C?void 0:C.querySelectorAll(`[${c.Sh.DATA_EDITABLE_DROPZONE}="${S}"]`))??[]).indexOf(e);if(-1!==t){let i=`${c.lk.ID_PREFIX}${t}`,n=(0,r.jsx)(d.i,{id:i,index:t,isValidDrop:p,onDropItem:l},i),o=a().createPortal(n,e);f(e=>[...e,o])}},[C,S,p,l]),D=(0,n.useCallback)(()=>{(0,u.Ne)(C,S)},[C,S]);(0,n.useEffect)(()=>{if(0===T.length){f([]),(0,u.qR)(C,S);return}(0,o.isNull)(C)||0!==y||(0,u.z_)(T,S);let e=null==C?void 0:C.querySelectorAll(`[${c.Sh.DATA_EDITABLE_DROPZONE}="${S}"]`),t=[];null==e||e.forEach((e,i)=>{let n=`${c.lk.ID_PREFIX}${i}`,o=(0,r.jsx)(d.i,{id:n,index:i,isValidDrop:p,onDropItem:l},n),s=a().createPortal(o,e);t.push(s)}),f(t)},[C,S,T.length]),(0,n.useEffect)(()=>{k()},[k,g]);let N=(0,n.useCallback)(e=>{let i=String(e.active.id);h(i),j.current=!0,w.current=null;let r=T.find(e=>t.getElementKey(e)===i);(0,o.isUndefined)(r)||r.classList.add(m.dragActive)},[m.dragActive,T,t]);return{activeId:g,handleDragStart:N,handleDragOver:(0,n.useCallback)(e=>{let{over:t}=e;if((0,o.isUndefined)(null==t?void 0:t.id))w.current=null;else{let e=String(t.id);e.startsWith(c.lk.ID_PREFIX)?w.current=e:w.current=null}k()},[k]),handleDragEnd:(0,n.useCallback)(e=>{let{active:r,over:n}=e;if(h(null),j.current=!1,w.current=null,T.forEach(e=>{e.classList.remove(m.dragActive)}),null!==n&&r.id!==n.id){let e=String(n.id);if(e.startsWith(c.lk.ID_PREFIX)){let n=document.querySelector(`[${c.Sh.DATA_DROPZONE_ID}="${e}"]`),l=null==n?void 0:n.getAttribute(c.Sh.DATA_DROPZONE_INDEX),a=(0,o.isNull)(l)||(0,o.isUndefined)(l)||""===l?NaN:parseInt(l,10);if(!isNaN(a)){let e=T.findIndex(e=>t.getElementKey(e)===r.id);if(-1!==e){let t=a;ea});var r=i(47867),n=i.n(r),l=i(88754);let a=e=>{let{id:t,element:i}=e,{attributes:r,listeners:a,setNodeRef:o}=(0,l.useSortable)({id:t});return n().useEffect(()=>{null!==o&&(o(i),Object.keys(r).forEach(e=>{void 0!==r[e]&&e.startsWith("data-")&&i.setAttribute(e,String(r[e]))}))},[o,i,r]),{listeners:a}}},88963(e,t,i){"use strict";i.d(t,{R:()=>v});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(94788),s=i(86569),d=i(13755),c=i(44829),u=i(99154),p=i(35864),m=i(11587),g=i(53636);let h=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{imageEditablePreviewContainer:i` - position: relative; - display: inline-flex; /* Use inline-flex instead of inline-block */ - align-items: center; - justify-content: center; - max-width: 100%; - - .ant-image { - display: block; - - .ant-image-img { - display: block; - max-width: 100%; - height: auto; - object-fit: contain; - } - } - - &.image-preview-bordered { - outline: 1px solid ${t.colorBorderSecondary}; - border-radius: ${t.borderRadius}px; - - .ant-image-img { - border-radius: ${t.borderRadius}px; - } - } - `,imageEditablePreviewContainerMinSize:i` - min-width: 150px; - min-height: 100px; - background-color: white; - `,imageComponent:i` - display: block; - max-width: 100%; - height: auto; - `,loadingContainer:i` - min-height: 100px; - min-width: 100px; - display: flex; - align-items: center; - justify-content: center; - `,loadingSpinner:i` - width: 100%; - height: 100%; - display: flex; - align-items: center; - justify-content: center; - border-radius: ${t.borderRadiusLG}px; - outline: 1px dashed ${t.colorBorder}; - background: ${t.controlItemBgHover}; - padding: ${t.paddingSM}px; - `}}),v=e=>{let{assetId:t,className:i,dropdownItems:l,dropClass:v,imgAttributes:f,onImageLoad:y,onResize:b,lastImageDimensions:x,thumbnailUrl:j,onImageLoadedChange:w}=e,{getStateClasses:C}=(0,o.z)(),{styles:S}=h(),T=(0,n.useRef)(0),[I,k]=(0,n.useState)(!1),E=(0,n.useRef)(t),D=(0,n.useRef)(void 0),N=(0,n.useRef)(null),P=(0,g.A)(N);(0,n.useEffect)(()=>{P.width>0&&P.height>0&&(null==b||b(P))},[P,b]),(0,n.useEffect)(()=>{E.current!==t&&(E.current=t,T.current=T.current+1,k(!1),null==w||w(!1),D.current=void 0)},[t,w]);let A=(0,n.useMemo)(()=>{if(void 0!==t)return j??void 0},[t,j]);(0,n.useEffect)(()=>{A!==D.current&&(D.current=A,T.current=T.current+1,k(!1),null==w||w(!1))},[A,w]);let F=(0,n.useCallback)(e=>{k(!0),null==w||w(!0),null==y||y(e)},[y,w]),$=(0,p.isNil)(x)?void 0:(0,r.jsx)("div",{className:S.loadingSpinner,children:(0,r.jsx)(d.t,{size:"small"})});return(0,r.jsx)(u.m,{disabled:(0,p.isNil)(l)||0===l.length,dropClass:v,menu:{items:l},trigger:["contextMenu"],children:(0,r.jsxs)("div",{className:a()(i,S.imageEditablePreviewContainer,{[S.imageEditablePreviewContainerMinSize]:!(0,p.isNil)(x)||I},...C()),ref:N,children:[void 0!==A&&(0,r.jsx)(s.Image,{className:S.imageComponent,fallback:"/bundles/pimcorestudioui/img/fallback-image.svg",onLoad:F,placeholder:$,preview:!1,src:A,style:(0,p.isNil)(x)?void 0:(0,m.vX)(I,x),...f},T.current),I&&(0,r.jsx)(c.n,{dropdownItems:l})]})})}},86515(e,t,i){"use strict";i.d(t,{G:()=>a});var r=i(47867),n=i(35864),l=i(57180);let a=e=>{let{element:t,dialogSelector:i,editableName:a,dynamicEditableDefinitions:o=[]}=e,{triggerSaveAndReload:s}=(0,l.U)(),d=(0,r.useMemo)(()=>{let e=t.querySelector(`${i}[data-name="${a}"]`);if(!(0,n.isNil)(e)){let t=e.getAttribute("data-dialog-id")??a,i=document.getElementById(`dialogBoxConfig-${t}`);if(!(0,n.isNil)(i))try{return{config:JSON.parse(i.innerHTML.trim()),element:e}}catch(e){console.warn(`Failed to parse dialog config for ${t}:`,e)}}return{config:null,element:null}},[t,i,a]),c=d.config,u=d.element,p=(0,r.useMemo)(()=>{let e=[];try{e=[...window.editableDefinitions??[]]}catch(e){console.warn("Could not get editable definitions from iframe window:",e)}return o.length>0&&(e=[...e,...o]),e.filter(e=>e.inDialogBox===(null==c?void 0:c.id))},[o,null==c?void 0:c.id]),m=(0,r.useCallback)(()=>{(null==c?void 0:c.reloadOnClose)===!0&&s()},[null==c?void 0:c.reloadOnClose,s]),g=!(0,n.isNil)(c);return{dialogConfig:c,editableDefinitions:p,handleCloseDialog:m,hasDialog:g,dialogElement:u}}},40192(e,t,i){"use strict";i.d(t,{d:()=>n});var r=i(21429);let n=e=>{let{onOverwrite:t}=e,{t:i}=(0,r.useTranslation)();return{inheritanceMenuItems:[{key:"overwrite",label:i("document.editable.inheritance.overwrite"),onClick:t}],inheritanceTooltip:i("document.editable.inheritance.tooltip")}}},52255(e,t,i){"use strict";i.d(t,{j:()=>l});var r=i(47867),n=i(35864);let l=e=>{let{dynamicEditables:t,getContainer:i}=e,l=(0,r.useCallback)(()=>{let e=i();if(!(0,n.isNil)(e)){let t=e.querySelectorAll('[data-pending-editables="true"]');t.length>0&&t.forEach(e=>{e.style.display="",e.removeAttribute("data-pending-editables")})}},[i]);return(0,r.useLayoutEffect)(()=>{l()},[t.length,l]),{hideElementUntilRendered:e=>{e.style.display="none",e.setAttribute("data-pending-editables","true")},revealPendingElements:l}}},93824(e,t,i){"use strict";i.d(t,{q:()=>h});var r=i(74848),n=i(47867),l=i(80655),a=i(25765),o=i(35864),s=i(21429),d=i(43588),c=i(7814),u=i(17678),p=i(86515);let m=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{editButtonContainer:t` - display: flex; - justify-content: flex-end; - margin-bottom: ${i.marginXS}px; - `}}),g=e=>{let{config:t,containerRef:i,disabled:l,editableName:g}=e,{t:h}=(0,s.useTranslation)(),{styles:v}=m(),[f,y]=(0,n.useState)(!1),[b,x]=(0,n.useState)(null),j=(0,n.useRef)(!1),{dialogConfig:w,editableDefinitions:C,handleCloseDialog:S,hasDialog:T,dialogElement:I}=(0,p.G)({element:(null==i?void 0:i.current)??document.createElement("div"),dialogSelector:".pimcore_area_dialog",editableName:g});(0,n.useEffect)(()=>{j.current||(0,o.isNil)(I)||(k(I),j.current=!0)},[I]);let k=e=>{let t=e.querySelector("[data-pimcore-edit-button]");if(!(0,o.isNil)(t))return void x(t);let i=document.createElement("div");i.setAttribute("data-pimcore-edit-button","true"),i.className=v.editButtonContainer,e.insertBefore(i,e.firstChild),x(i)};return(0,r.jsxs)(r.Fragment,{children:[!(0,o.isNil)(b)&&T&&(0,a.createPortal)((0,r.jsx)(c.m,{title:h("area-settings"),children:(0,r.jsx)(d.IconButton,{icon:{value:"edit"},onClick:()=>{y(!0)},type:"default"})}),b),f&&!(0,o.isNil)(w)&&(0,r.jsx)(u.b,{config:w,editableDefinitions:C,onClose:()=>{y(!1),S()},visible:f})]})};class h extends l.Z{getEditableDataComponent(e){return(0,r.jsx)(g,{config:e.config,containerRef:e.containerRef,disabled:e.inherited,editableName:e.name})}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","area")}}},33099(e,t,i){"use strict";i.d(t,{w9:()=>d.w9,ZV:()=>d.ZV,Dc:()=>u});var r=i(74848);i(47867);var n=i(80655),l=i(81628),a=i(46766);let o=e=>{let[t]=(0,a.pJ)();return(0,r.jsx)(l.X,{...e,renderTrigger:t})};var s=i(67574),d=i(97844),c=i(46096);class u extends n.Z{getEditableComponent(){return o}getEditableDataComponent(e){var t;let i=this.getEditableComponent();return(0,r.jsx)(i,{className:null==(t=e.config)?void 0:t.class,config:e.config,containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,isInherited:e.inherited})}transformValue(e,t){return new s.I(t.name,t.containerRef).getAreablockValue()}onDocumentReady(e,t){try{let{document:i}=(0,c.qH)(),r=(0,d.uk)(t);i.notifyAreablockTypes(e,this.id,r)}catch(e){console.warn("Could not notify parent about areablock types:",e)}}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","areablock")}}},75208(e,t,i){"use strict";i.d(t,{C:()=>c});var r=i(74848);i(47867);var n=i(80655),l=i(43588),a=i(13980),o=i(53051),s=i(35864);let d=e=>{let{value:t,config:i,onChange:n,inherited:d,className:c,name:u}=e,p={checked:!!t,className:c??(null==i?void 0:i.class),disabled:d,onChange:e=>{var t;let i=(null==(t=e.target)?void 0:t.checked)??e;null==n||n(!!i)}};return(0,r.jsx)(o.x,{addIconSpacing:!0,display:"inline-block",isInherited:!!d,onOverwrite:()=>{null==n||n(!!t)},children:(0,s.isUndefined)(null==i?void 0:i.label)?(0,r.jsx)(l.Checkbox,{...p}):(0,r.jsxs)(l.Flex,{align:"center",gap:"extra-small",children:[(0,r.jsx)(l.Checkbox,{...p}),(0,r.jsx)(l.Text,{children:(0,r.jsx)(a.d,{label:i.label,name:u})})]})})};class c extends n.Z{getEditableDataComponent(e){var t;return(0,r.jsx)(d,{className:null==(t=e.config)?void 0:t.class,config:e.config,inherited:e.inherited,name:e.name,value:e.value})}transformValue(e){return!!e}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","checkbox")}}},56198(e,t,i){"use strict";i.d(t,{h:()=>p});var r=i(74848);i(47867);var n=i(80655),l=i(43588),a=i(53051),o=i(52112);let s=e=>{let{value:t,config:i,onChange:n,inherited:s}=e,d=(0,o.C)(),c={width:"100%",maxWidth:null==d?void 0:d.small};return(0,r.jsx)(a.x,{addIconSpacing:!0,display:"inline-block",isInherited:!!s,onOverwrite:()=>{null==n||n(t??null)},style:c,children:(0,r.jsx)(l.DatePicker,{allowClear:!0,className:null==i?void 0:i.class,disabled:s,onChange:e=>{null==n||n(e)},outputType:"dateString",style:c,value:t})})};var d=i(35864),c=i(74353),u=i.n(c);class p extends n.Z{getEditableDataComponent(e){return(0,r.jsx)(s,{config:e.config,inherited:e.inherited,value:e.value})}transformValue(e,t){return(0,d.isNull)(e)?null:u().unix(e).format()}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","date")}}},85938(e,t,i){"use strict";i.d(t,{Y:()=>M});var r=i(74848),n=i(47867),l=i(80655),a=i(21429),o=i(94313),s=i(8651),d=i.n(s),c=i(88963),u=i(2586),p=i(35864);let m=e=>{let{assetId:t,width:i,height:l,containerWidth:a,thumbnailSettings:o,thumbnailConfig:s,onImageLoadedChange:d,...m}=e,g=(0,n.useRef)(void 0),h=(0,n.useRef)({}),v=(0,n.useMemo)(()=>{let e;if((0,p.isNil)(t)){g.current=void 0,h.current={};return}if((0,p.isNil)(s)&&(0,p.isNil)(i)&&(0,p.isNil)(l)&&a<=0)return;let r={assetId:t,width:i,height:l,thumbnailSettings:o,thumbnailConfig:s},n=h.current,d=!(0,p.isEqual)(r,n);if(!(0,p.isNil)(g.current)&&!d)return g.current;let c=(e={assetId:t,width:i,height:l,containerWidth:a,thumbnailSettings:o,thumbnailConfig:s},(0,u.i)(e,"image","PNG"));return g.current=c,h.current=r,c},[t,i,l,o,s,a]);return(0,r.jsx)(c.R,{...m,assetId:t,thumbnailUrl:v})};var g=i(81898),h=i(56789),v=i(80632);let f=(0,i(44241).createStyles)(e=>{let{token:t}=e;return{root:{position:"relative",display:"inline-block",width:"fit-content",lineHeight:0},altTextOverlay:{position:"absolute",bottom:0,left:0,right:0,width:"100%",padding:`${t.paddingXS}px ${t.paddingSM}px`,margin:0,border:"none",borderRadius:0,backgroundColor:"rgba(0, 0, 0, 0.5)",color:"white",fontSize:t.fontSize,fontFamily:t.fontFamily,lineHeight:1.4,outline:"none",zIndex:10,boxSizing:"border-box","&::placeholder":{color:"rgba(255, 255, 255, 0.7)"},"&:hover":{backgroundColor:"rgba(0, 0, 0, 0.6)"},"&:focus":{backgroundColor:"rgba(0, 0, 0, 0.7)",boxShadow:"none"},"&:disabled":{backgroundColor:"rgba(0, 0, 0, 0.3)",color:"rgba(255, 255, 255, 0.5)",cursor:"not-allowed"}}}}),y=e=>{var t,i,l,o,s;let{assetId:c,height:u,width:y,containerWidth:b,value:x,onChange:j,setMarkerModalOpen:w,setCropModalOpen:C,handleSearch:S,handleLocateInTree:T,handleUpload:I,emptyValue:k,disabled:E,disableInlineUpload:D,imgAttributes:N,focalPointContextMenuItem:P,dropClass:A,onResize:F,lastImageDimensions:$,altText:M,onAltTextChange:O,hideAltTextInput:_,isImageLoaded:L,onImageLoadedChange:R,thumbnailConfig:B,className:z}=e,{t:V}=(0,a.useTranslation)(),{openElement:G}=(0,h.K)(),{styles:U}=f(),q=()=>{(0,p.isNil)(c)||G({id:c,type:"asset"})},W=()=>{q()},K=(0,n.useMemo)(()=>x.crop,[null==(t=x.crop)?void 0:t.cropLeft,null==(i=x.crop)?void 0:i.cropTop,null==(l=x.crop)?void 0:l.cropWidth,null==(o=x.crop)?void 0:o.cropHeight,null==(s=x.crop)?void 0:s.cropPercent]),H=(0,n.useMemo)(()=>{let e=[];return!0===P&&e.push({key:"set-focal-point",icon:(0,r.jsx)(g.I,{value:"target"}),label:V("focal-point.set"),disabled:!0===E||(0,p.isNil)(c),onClick:W}),e.push({key:"crop",icon:(0,r.jsx)(g.I,{value:"crop"}),label:V("crop"),disabled:!0===E||(0,p.isNil)(c),onClick:()=>{C()}},{key:"hotspots-markers",icon:(0,r.jsx)(g.I,{value:"location-marker"}),label:V("hotspots.edit"),disabled:!0===E||(0,p.isNil)(c),onClick:()=>{w()}},{key:"empty",icon:(0,r.jsx)(g.I,{value:"trash"}),label:V("empty"),disabled:!0===E||(0,p.isNil)(c),onClick:k},{key:"open",icon:(0,r.jsx)(g.I,{value:"open-folder"}),label:V("open"),disabled:!0===E||(0,p.isNil)(c),onClick:q},{key:"locate-in-tree",icon:(0,r.jsx)(g.I,{value:"target"}),label:V("element.locate-in-tree"),disabled:!0===E||(0,p.isNil)(c),onClick:T},{key:"search",icon:(0,r.jsx)(g.I,{value:"search"}),label:V("search"),disabled:E,onClick:S}),!0!==D&&e.push({key:"upload",icon:(0,r.jsx)(g.I,{value:"upload-cloud"}),label:V("upload"),disabled:!0===E,onClick:I}),e},[E,c,P,D,W,C,w,I,k,q,T,S,V]);return(0,r.jsxs)("div",{className:d()(U.root,z),children:[(0,r.jsx)(m,{assetId:c,containerWidth:b,dropClass:A,dropdownItems:H,height:u,imgAttributes:N,lastImageDimensions:$,onImageLoadedChange:R,onResize:F,thumbnailConfig:B,thumbnailSettings:K,width:y}),!0!==_&&!1!==L&&(0,r.jsx)(v.p,{className:U.altTextOverlay,disabled:E,onChange:e=>null==O?void 0:O(e.target.value),placeholder:V("image.alt-text-placeholder"),value:M??""})]})};var b=i(20597),x=i(71836),j=i(84e3),w=i(94902),C=i(94685),S=i(72636),T=i(53636),I=i(90011),k=i(25886),E=i(43565),D=i(11587),N=i(44511),P=i(80399),A=i(53051),F=i(87632);let $=e=>{var t,i,l,s,d,c,u,m,g,h,v,f,$,M,O,_,L,R,B,z;let{t:V}=(0,a.useTranslation)(),G=e.value,U=null==(t=e.config)?void 0:t.width,q=null==(i=e.config)?void 0:i.height,W=!(0,p.isNil)(null==G?void 0:G.id),K=(0,p.isBoolean)(e.inherited)&&e.inherited,H=!0===e.disabled||K,{getSmartDimensions:X,handlePreviewResize:J,handleAssetTargetResize:Z}=(0,P.Z)(),[Y,Q]=(0,n.useState)(!1),ee=X(null==G?void 0:G.id),{width:et}=(0,T.A)(e.containerRef??{current:null}),{triggerUpload:ei}=(0,I.w)({}),{handleCropChange:er,handleHotspotsChange:en,handleReplaceImage:el,handleEmptyValue:ea,handleAltTextChange:eo}=(e=>{let{value:t,onChange:i}=e,{t:r}=(0,a.useTranslation)(),{confirm:l}=(0,E.Vl)(),o=(0,n.useCallback)(e=>({id:null==t?void 0:t.id,alt:(null==t?void 0:t.alt)??"",title:(null==t?void 0:t.title)??"",hotspots:(null==t?void 0:t.hotspots)??[],marker:(null==t?void 0:t.marker)??[],crop:(null==t?void 0:t.crop)??{},...e}),[null==t?void 0:t.id,null==t?void 0:t.alt,null==t?void 0:t.title,null==t?void 0:t.hotspots,null==t?void 0:t.marker,null==t?void 0:t.crop]),s=(0,n.useCallback)(e=>{(0,p.isNil)(null==t?void 0:t.id)||null==i||i(o({crop:e??{}}))},[null==t?void 0:t.id,o,i]),d=(0,n.useCallback)((e,r)=>{(0,p.isNil)(null==t?void 0:t.id)||null==i||i(o({hotspots:e,marker:r}))},[null==t?void 0:t.id,o,i]),c=(0,n.useCallback)(e=>{(0,p.isEmpty)(null==t?void 0:t.hotspots)&&(0,p.isEmpty)(null==t?void 0:t.marker)?null==i||i({id:e,alt:"",title:"",hotspots:[],marker:[],crop:{}}):l({title:r("hotspots.clear-data"),content:r("hotspots.clear-data.dnd-message"),okText:r("yes"),cancelText:r("no"),onOk:()=>{null==i||i({id:e,alt:"",title:"",hotspots:[],marker:[],crop:{}})},onCancel:()=>{null==i||i(o({id:e,crop:{}}))}})},[null==t?void 0:t.hotspots,null==t?void 0:t.marker,o,i]);return{handleCropChange:s,handleHotspotsChange:d,handleReplaceImage:c,handleEmptyValue:(0,n.useCallback)(()=>{null==i||i({id:void 0,alt:"",title:"",hotspots:[],marker:[],crop:{}})},[i]),handleAltTextChange:(0,n.useCallback)(e=>{(0,p.isNil)(null==t?void 0:t.id)||null==i||i(o({alt:e}))},[null==t?void 0:t.id,o,i])}})({value:G,onChange:e.onChange}),{open:es}=(0,C.L)({selectionType:S.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["image"]}},onFinish:e=>{e.items.length>0&&el(e.items[0].data.id)}}),{openModal:ed}=(0,x.j)({disabled:H,onChange:er,ratioX:(0,p.isNil)(null==(l=e.config)?void 0:l.ratioX)?void 0:Number(null==(s=e.config)?void 0:s.ratioX),ratioY:(0,p.isNil)(null==(d=e.config)?void 0:d.ratioY)?void 0:Number(null==(c=e.config)?void 0:c.ratioY)}),{openModal:ec}=(0,j.t)({disabled:H,predefinedDataTemplates:null==(u=e.config)?void 0:u.predefinedDataTemplates,onChange:e=>{if(!(0,p.isNil)(null==G?void 0:G.id)){let{hotspots:t,marker:i}=(0,w.s)(e);en(t,i)}}}),eu=(0,n.useCallback)(()=>{var t,i;(null==(t=e.config)?void 0:t.disableInlineUpload)!==!0&&ei({targetFolderPath:null==(i=e.config)?void 0:i.uploadPath,accept:"image/*",multiple:!1,maxItems:1,onSuccess:async e=>{e.length>0&&el(Number(e[0].id))}})},[null==(m=e.config)?void 0:m.disableInlineUpload,null==(g=e.config)?void 0:g.uploadPath,ei,el]),ep=async e=>{el(Number(e.id))},em=(0,n.useCallback)(e=>{el(e.data.id)},[el]),eg=(0,n.useCallback)(t=>{var i,n,l,a;let o=(0,p.isNil)(null==G?void 0:G.id)?"round":"angular";return(null==(i=e.config)?void 0:i.disableInlineUpload)===!0?(0,r.jsx)(b.g,{disabled:H,dropClass:null==(a=e.config)?void 0:a.dropClass,isValidContext:e=>(0,F.Hy)(e.type),isValidData:e=>"asset"===e.type&&"image"===e.data.type,onDrop:em,shape:o,variant:"outline",children:t}):(0,r.jsx)(k.V,{accept:"image/*",assetType:"image",disabled:H,fullWidth:(0,p.isNil)((null==ee?void 0:ee.width)??U),onSuccess:ep,targetFolderPath:null==(n=e.config)?void 0:n.uploadPath,children:(0,r.jsx)(b.g,{disabled:H,dropClass:null==(l=e.config)?void 0:l.dropClass,isValidContext:e=>(0,F.Hy)(e.type),isValidData:e=>"asset"===e.type&&"image"===e.data.type,onDrop:em,shape:o,variant:"outline",children:t})})},[null==(h=e.config)?void 0:h.disableInlineUpload,null==(v=e.config)?void 0:v.uploadPath,H,ep,em,null==G?void 0:G.id,null==ee?void 0:ee.width,U]);return(0,r.jsx)(A.x,{display:!(0,p.isNil)((null==ee?void 0:ee.width)??U)||W?"inline-block":"block",hideButtons:!0,isInherited:K,onOverwrite:()=>{var t;null==(t=e.onChange)||t.call(e,e.value??{})},style:{minWidth:D.Yh},children:eg(W?(0,r.jsx)(y,{altText:G.alt,assetId:G.id,className:"studio-image-editable",containerWidth:et,disableInlineUpload:null==(f=e.config)?void 0:f.disableInlineUpload,disabled:H,dropClass:null==($=e.config)?void 0:$.dropClass,emptyValue:ea,focalPointContextMenuItem:null==(M=e.config)?void 0:M.focal_point_context_menu_item,handleLocateInTree:()=>{(0,N.a)("asset",null==G?void 0:G.id)},handleSearch:es,handleUpload:eu,height:(null==ee?void 0:ee.height)??q,hideAltTextInput:null==(O=e.config)?void 0:O.hidetext,imgAttributes:null==(_=e.config)?void 0:_.imgAttributes,isImageLoaded:Y,lastImageDimensions:ee,onAltTextChange:eo,onChange:e=>{let{hotspots:t,marker:i}=(0,w.s)(e.hotspots);en(t,i)},onImageLoadedChange:Q,onResize:J,setCropModalOpen:()=>{if(!(0,p.isNil)(null==G?void 0:G.id)){let e=G.crop??null;ed(G.id,e)}},setMarkerModalOpen:()=>{if(!(0,p.isNil)(null==G?void 0:G.id)){let e=(0,w.N)(G.hotspots??[],G.marker??[]),t=G.crop??null;ec(G.id,e,t)}},thumbnailConfig:null==(L=e.config)?void 0:L.thumbnail,value:(0,p.isNil)(null==G?void 0:G.id)?{image:null,hotspots:[],marker:[],crop:{}}:{image:{type:"asset",id:G.id},hotspots:G.hotspots??[],marker:G.marker??[],crop:G.crop??{}},width:(null==ee?void 0:ee.width)??U}):(0,r.jsx)(o.C,{className:"studio-image-editable",dndIcon:!0,dropClass:null==(R=e.config)?void 0:R.dropClass,height:(null==ee?void 0:ee.height)??q??D.ui,onResize:Z,onSearch:es,onUpload:(null==(B=e.config)?void 0:B.disableInlineUpload)===!0?void 0:eu,title:(null==(z=e.config)?void 0:z.title)??V("image.upload.add.and.dnd"),width:(null==ee?void 0:ee.width)??U??"100%"}))})};class M extends l.Z{getEditableDataComponent(e){return(0,r.jsx)($,{config:e.config,containerRef:e.containerRef,inherited:e.inherited})}transformValue(e,t){if((0,p.isNil)(e))return null;if("object"==typeof e){let{cropTop:t,cropLeft:i,cropWidth:r,cropHeight:n,cropPercent:l,...a}=e,o=!(0,p.isUndefined)(t)||!(0,p.isUndefined)(i)||!(0,p.isUndefined)(r)||!(0,p.isUndefined)(n)||!(0,p.isUndefined)(l);return{...a,...o&&{crop:{...!(0,p.isUndefined)(t)&&{cropTop:t},...!(0,p.isUndefined)(i)&&{cropLeft:i},...!(0,p.isUndefined)(r)&&{cropWidth:r},...!(0,p.isUndefined)(n)&&{cropHeight:n},...!(0,p.isUndefined)(l)&&{cropPercent:l}}}}}return null}transformValueForApi(e,t){if((0,p.isNil)(e))return null;let{crop:i,...r}=e;return{...r,...i}}getImageId(e){if(!(0,p.isNil)(e)&&"object"==typeof e)return e.id}isEmpty(e,t){return!(!(0,p.isNil)(e)&&(0,p.isPlainObject)(e))||(0,p.isNil)(e.id)}reloadOnChange(e,t,i){var r;return(null==(r=e.config)?void 0:r.reload)===!0&&((0,p.isNil)(t)||(0,p.isNil)(i)?e.config.reload:this.getImageId(t)!==this.getImageId(i))}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","image")}}},12539(e,t,i){"use strict";i.d(t,{Z:()=>o});var r=i(74848);i(47867);var n=i(18196),l=i(80655),a=i(184);class o extends l.Z{getEditableDataComponent(e){var t,i,n,l;return(0,r.jsx)(a.A,{className:null==(t=e.config)?void 0:t.class,inherited:e.inherited,nowrap:null==(i=e.config)?void 0:i.nowrap,placeholder:null==(n=e.config)?void 0:n.placeholder,width:null==(l=e.config)?void 0:l.width})}isEmpty(e,t){return!(0,n.uI)(e)}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","input")}}},51818(e,t,i){"use strict";i.d(t,{l:()=>h});var r=i(74848);i(47867);var n=i(35864),l=i(18196),a=i(80655),o=i(53051),s=i(44475),d=i(8651),c=i.n(d),u=i(14860);let p=e=>{let{value:t,className:i,textPrefix:l,textSuffix:a,inherited:o}=e;if((0,n.isNull)(t)||(0,n.isEmpty)(t.fullPath))return(0,r.jsx)(u.r,{className:i,inherited:o,textPrefix:l,textSuffix:a,value:t});let s=(0,n.isEmpty)(t.text)?t.fullPath:t.text;return(0,r.jsxs)("a",{className:c()(i,t.class),href:t.fullPath,children:[l,s,a]})},m=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{documentLink:t` - position: relative; - display: inline-flex !important; - align-items: flex-start; - `,documentLinkPreview:t` - margin-right: 30px; /* Reserve space for buttons */ - `,documentLinkActionsBase:t` - position: absolute; - top: 50%; - transform: translateY(-50%); - display: flex; - gap: 2px; - `,documentLinkActions:t` - right: -38px; - `,documentLinkActionsSingle:t` - right: -4px; - `}}),g=e=>{let{value:t,allowedTypes:i,allowedTargets:n,disabledFields:l,className:a,textPrefix:d,textSuffix:u,onChange:g,inherited:h}=e,{styles:v}=m(),{renderPreview:f,renderActions:y}=(0,s._)({value:t,allowedTypes:i??[],allowedTargets:n??[],disabledFields:l??[],className:a,textPrefix:d,textSuffix:u,onChange:g,inherited:h,PreviewComponent:p}),b=y(),x=1===b.length?v.documentLinkActionsSingle:v.documentLinkActions;return(0,r.jsx)(o.x,{display:"block",isInherited:!!h,onOverwrite:()=>{null==g||g(t??null)},children:(0,r.jsxs)("div",{className:v.documentLink,children:[(0,r.jsx)("div",{className:v.documentLinkPreview,children:f()}),!0!==h&&(0,r.jsx)("div",{className:c()(v.documentLinkActionsBase,x),children:b})]})})};class h extends a.Z{getEditableDataComponent(e){var t,i,l,a,o,s;let d=(0,n.isArray)(null==(t=e.config)?void 0:t.allowedTypes)?e.config.allowedTypes:[],c=(0,n.isArray)(null==(i=e.config)?void 0:i.allowedTargets)?e.config.allowedTargets:[],u=(0,n.isArray)(null==(l=e.config)?void 0:l.disabledFields)?e.config.disabledFields:[];return(0,r.jsx)(g,{allowedTargets:c,allowedTypes:d,className:null==(a=e.config)?void 0:a.class,disabledFields:u,inherited:e.inherited,onChange:e.onChange,textPrefix:null==(o=e.config)?void 0:o.textPrefix,textSuffix:null==(s=e.config)?void 0:s.textSuffix,value:e.value})}transformValue(e,t){return(0,n.isNil)(e)?null:{...e,internal:e.internalId??null,fullPath:e.fullPath??e.path??"",direct:e.path??null}}transformValueForApi(e,t){return(0,n.isNil)(e)?null:"internal"===e.linktype?{...e,path:e.fullPath??"",fullPath:e.fullPath??"",internalId:e.internal??null,internal:!0,internalType:e.internalType??void 0}:{...e,path:e.direct??"",fullPath:e.fullPath??"",internalId:null,internal:!1,internalType:e.internalType??void 0}}isEmpty(e,t){if(!(0,n.isNil)(e)&&(0,n.isPlainObject)(e)){let t=(0,n.has)(e,"internalId")&&!(0,n.isNil)(e.internalId)||(0,n.has)(e,"internal")&&!(0,n.isNil)(e.internal),i=(0,n.has)(e,"path")&&(0,l.uI)(e.path),r=(0,n.has)(e,"fullPath")&&(0,l.uI)(e.fullPath);return!t&&!i&&!r}return!0}reloadOnChange(e,t,i){var r;return!!(null==(r=e.config)?void 0:r.reload)}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","link")}}},43611(e,t,i){"use strict";i.d(t,{A:()=>p});var r=i(74848);i(47867);var n=i(80655),l=i(35864),a=i(43588),o=i(53051),s=i(25085),d=i(52112);let c=e=>{let{value:t,options:i=[],className:n,width:l,onChange:c,inherited:u}=e,p=(0,d.C)(),m={width:"100%",maxWidth:(0,s.toCssDimension)(l,null==p?void 0:p.large)};return(0,r.jsx)(o.x,{addIconSpacing:!0,display:"block",isInherited:!!u,onOverwrite:()=>{null==c||c(t??null)},style:m,children:(0,r.jsx)(a.Select,{className:n,disabled:u,mode:"multiple",onChange:c,optionFilterProp:"label",options:i,popupMatchSelectWidth:!1,style:m,value:t})})};var u=i(25950);class p extends n.Z{getEditableDataComponent(e){var t,i,n;let l=(0,u.o)(null==(t=e.config)?void 0:t.store);return(0,r.jsx)(c,{className:null==(i=e.config)?void 0:i.class,inherited:e.inherited,onChange:e.onChange,options:l,value:e.value,width:null==(n=e.config)?void 0:n.width})}transformValue(e,t){return(0,l.isNil)(e)?null:e}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","multiselect")}}},2370(e,t,i){"use strict";i.d(t,{g:()=>u});var r=i(74848);i(47867);var n=i(35864),l=i(80655),a=i(43588),o=i(53051),s=i(25085),d=i(52112);let c=e=>{let{value:t,config:i,onChange:n,inherited:l}=e,c=(0,d.C)(),u={width:"100%",maxWidth:(0,s.toCssDimension)(null==i?void 0:i.width,null==c?void 0:c.small)};return(0,r.jsx)(o.x,{addIconSpacing:!0,display:"inline-block",isInherited:!!l,onOverwrite:()=>{null==n||n(t??null)},style:u,children:(0,r.jsx)(a.InputNumber,{className:null==i?void 0:i.class,disabled:l,max:null==i?void 0:i.maxValue,min:null==i?void 0:i.minValue,onChange:e=>{null==n||n(e)},style:u,value:t})})};class u extends l.Z{getEditableDataComponent(e){return(0,r.jsx)(c,{config:e.config,inherited:e.inherited,onChange:e.onChange,value:e.value})}transformValue(e,t){if((0,n.isNil)(e)){var i;return null==(i=t.config)?void 0:i.defaultValue}return e}isEmpty(e,t){return(0,n.isNil)(e)||""===e}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","numeric")}}},97805(e,t,i){"use strict";i.d(t,{v:()=>p});var r=i(74848);i(47867);var n=i(80655),l=i(35864),a=i(23945),o=i(53051),s=i(52112),d=i(25085);let c=e=>{let{inherited:t,width:i,...n}=e,l=(0,s.C)(),c={width:"100%",maxWidth:(0,d.toCssDimension)(i,l.large)};return(0,r.jsx)(o.x,{addIconSpacing:!0,display:"block",isInherited:!!t,onOverwrite:()=>{var e;null==(e=n.onChange)||e.call(n,n.value??null)},style:c,children:(0,r.jsx)(a.ManyToOneRelation,{...n,disabled:!0===n.disabled||!0===t,width:i})})},u=(e,t)=>!!((0,l.isNil)(e)||(0,l.isEmpty)(e))||e.includes(t);class p extends n.Z{getEditableDataComponent(e){var t,i,n,l,a,o,s,d,p,m,g,h;return(0,r.jsx)(c,{allowToClearRelation:!0,allowedAssetTypes:null==(i=e.config)||null==(t=i.subtypes)?void 0:t.asset,allowedClasses:null==(n=e.config)?void 0:n.classes,allowedDataObjectTypes:null==(a=e.config)||null==(l=a.subtypes)?void 0:l.object,allowedDocumentTypes:null==(s=e.config)||null==(o=s.subtypes)?void 0:o.document,assetsAllowed:u(null==(d=e.config)?void 0:d.types,"asset"),className:null==(p=e.config)?void 0:p.class,dataObjectsAllowed:u(null==(m=e.config)?void 0:m.types,"object"),documentsAllowed:u(null==(g=e.config)?void 0:g.types,"document"),inherited:e.inherited,width:null==(h=e.config)?void 0:h.width})}transformValue(e){return(0,l.isNil)(e)?null:{id:e.id,type:e.elementType,fullPath:e.path,subtype:e.subType}}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","relation")}}},14248(e,t,i){"use strict";i.d(t,{O:()=>g});var r=i(74848);i(47867);var n=i(80655),l=i(35864),a=i(86569),o=i(9735),s=i(53051),d=i(52112),c=i(25085),u=i(33774);let p=e=>{let{inherited:t,width:i,height:n,title:p,name:m,...g}=e,h=(0,d.C)(),v={width:"100%",maxWidth:(0,c.toCssDimension)(i,h.large)},f=!(0,l.isNil)(p)&&!(0,l.isEmpty)(p);return(0,r.jsx)(s.x,{display:"block",isInherited:!!t,onOverwrite:()=>{var e;null==(e=g.onChange)||e.call(g,g.value??null)},style:v,children:(0,r.jsx)(a.Form.Item,{label:f?(0,r.jsx)(u.Q,{label:p,name:m??""}):void 0,layout:"vertical",children:(0,r.jsx)(o.g5,{...g,disabled:!0===g.disabled||!0===t,height:n,width:i})})})},m=(e,t)=>!!((0,l.isNil)(e)||(0,l.isEmpty)(e))||e.includes(t);class g extends n.Z{getEditableDataComponent(e){var t,i,n,l,a,o,s,d,c,u,g,h,v,f,y,b;return(0,r.jsx)(p,{allowToClearRelation:!0,allowedAssetTypes:null==(i=e.config)||null==(t=i.subtypes)?void 0:t.asset,allowedClasses:null==(n=e.config)?void 0:n.classes,allowedDataObjectTypes:null==(a=e.config)||null==(l=a.subtypes)?void 0:l.object,allowedDocumentTypes:null==(s=e.config)||null==(o=s.subtypes)?void 0:o.document,assetUploadPath:(null==(d=e.config)?void 0:d.uploadPath)??void 0,assetsAllowed:m(null==(c=e.config)?void 0:c.types,"asset"),className:null==(u=e.config)?void 0:u.class,dataObjectsAllowed:m(null==(g=e.config)?void 0:g.types,"object"),disableInlineUpload:(null==(h=e.config)?void 0:h.disableInlineUpload)??void 0,documentsAllowed:m(null==(v=e.config)?void 0:v.types,"document"),height:(null==(f=e.config)?void 0:f.height)??null,inherited:e.inherited,maxItems:null,name:e.name,pathFormatterClass:null,title:null==(y=e.config)?void 0:y.title,width:(null==(b=e.config)?void 0:b.width)??null})}transformValue(e){if((0,l.isNil)(e)||!(0,l.isArray)(e))return null;let t=[];return e.forEach(e=>{t.push({id:e[0],type:e[2],fullPath:e[1],subtype:e[3],isPublished:null})}),t}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","relations")}}},89653(e,t,i){"use strict";i.d(t,{f:()=>m});var r=i(74848);i(47867);var n=i(18196),l=i(80655),a=i(35864),o=i(43588),s=i(53051),d=i(25085),c=i(52112);let u=e=>{let{value:t,options:i=[],className:n,width:l,editable:a=!1,onChange:u,inherited:p}=e,m=(0,c.C)(),g={width:"100%",maxWidth:(0,d.toCssDimension)(l,null==m?void 0:m.medium)};return(0,r.jsx)(s.x,{addIconSpacing:!0,display:"inline-block",isInherited:!!p,onOverwrite:()=>{null==u||u(t??null)},style:g,children:(0,r.jsx)(o.CreatableSelect,{allowClear:!0,allowDuplicates:!1,className:n,creatable:a,disabled:p,onChange:u,optionFilterProp:"label",options:i,popupClassName:n,popupMatchSelectWidth:!1,showSearch:!0,style:g,value:t})})};var p=i(25950);class m extends l.Z{getEditableDataComponent(e){var t,i,n,l;let a=(0,p.o)(null==(t=e.config)?void 0:t.store),o=!!(null==(i=e.config)?void 0:i.editable);return(0,r.jsx)(u,{className:null==(n=e.config)?void 0:n.class,editable:o,inherited:e.inherited,onChange:e.onChange,options:a,value:e.value,width:null==(l=e.config)?void 0:l.width})}isEmpty(e,t){return!(0,n.uI)(e)}transformValue(e,t){if((0,a.isNil)(e)||(0,a.isEmpty)(e)){var i;return(null==(i=t.config)?void 0:i.defaultValue)??null}return e}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","select")}}},85514(e,t,i){"use strict";i.d(t,{G:()=>x});var r=i(74848),n=i(47867),l=i(80655),a=i(35864),o=i(20597),s=i(21429),d=i(81898),c=i(73062),u=i(94685),p=i(72636),m=i(56789),g=i(44511),h=i(41417);let v=e=>{let{value:t,config:i,onChange:l,className:o}=e,{t:v}=(0,s.useTranslation)(),[f,y]=(0,n.useState)(""),[b,x]=(0,n.useState)(!1),j=(0,n.useRef)(),w=(null==i?void 0:i.defaultHeight)??100,C=!b&&!(0,a.isNil)(null==t?void 0:t.path)&&!(0,a.isEmpty)(null==t?void 0:t.path),{openElement:S}=(0,m.K)(),{open:T}=(0,u.L)({selectionType:p.hO.Single,areas:{asset:!1,document:!0,object:!1},config:{documents:{allowedTypes:["snippet"]}},onFinish:e=>{if(!(0,a.isEmpty)(e.items)){let t=e.items[0];l({id:t.data.id,path:t.data.fullpath})}}});(0,n.useLayoutEffect)(()=>{(null==t?void 0:t.path)!==j.current&&((0,a.isNil)(null==t?void 0:t.path)||(0,a.isEmpty)(null==t?void 0:t.path)?x(!1):x(!0),y(""),j.current=null==t?void 0:t.path)},[null==t?void 0:t.path]),(0,n.useEffect)(()=>{if(!(0,a.isNil)(null==t?void 0:t.path)&&!(0,a.isEmpty)(null==t?void 0:t.path)){let e=new URL(t.path,window.location.origin);e.searchParams.set("pimcore_admin","true"),e.searchParams.set("_dc",Date.now().toString()),fetch(e.toString(),{method:"GET",headers:{"X-Requested-With":"XMLHttpRequest"}}).then(async e=>await e.text()).then(e=>{y(e),x(!1)}).catch(()=>{y(""),x(!1)})}},[null==t?void 0:t.path]);let I=[];return C&&I.push({key:"empty",label:v("empty"),icon:(0,r.jsx)(d.I,{value:"trash"}),onClick:()=>{l(null),y("")}},{key:"open",label:v("open"),icon:(0,r.jsx)(d.I,{value:"open-folder"}),onClick:()=>{(0,a.isNil)(null==t?void 0:t.id)||S({id:t.id,type:"document"})}},{key:"locate-in-tree",label:v("element.locate-in-tree"),icon:(0,r.jsx)(d.I,{value:"target"}),onClick:()=>{(0,g.a)("document",null==t?void 0:t.id)}}),I.push({key:"search",label:v("search"),icon:(0,r.jsx)(d.I,{value:"search"}),onClick:()=>{T()}}),(0,r.jsx)(h.s,{className:o,contextMenuItems:I,defaultHeight:w,dropZoneText:v("drop-snippet-here"),hasContent:C,height:null==i?void 0:i.height,isLoading:b,renderedContent:f.length>0?(0,r.jsx)(c.h,{html:f}):void 0,width:null==i?void 0:i.width})};var f=i(87632),y=i(53051);let b=e=>{let{value:t,config:i,onChange:n,className:l,inherited:s=!1,disabled:d=!1}=e,c=e=>{var t;return"document"===e.type&&!(0,a.isNil)(null==(t=e.data)?void 0:t.type)&&"snippet"===String(e.data.type)};return(0,r.jsx)(y.x,{display:(0,a.isNil)(null==i?void 0:i.width)?"block":void 0,isInherited:s,noPadding:!0,onOverwrite:()=>{n(t??null)},children:(0,r.jsx)(o.g,{disableDndActiveIndicator:!0,isValidContext:e=>!d&&f.b9.includes(e.type),isValidData:c,onDrop:e=>{c(e)&&n({id:e.data.id,path:(0,a.isNil)(e.data.fullPath)?e.data.path:e.data.fullPath})},children:(0,r.jsx)(v,{className:l,config:i,onChange:n,value:t})})})};class x extends l.Z{getEditableDataComponent(e){var t;return(0,r.jsx)(b,{className:null==(t=e.config)?void 0:t.class,config:e.config,disabled:e.inherited,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e){return(0,a.isNil)(e)||"object"!=typeof e||(0,a.isNil)(e.id)?null:{id:e.id,path:e.path}}transformValueForApi(e){return(null==e?void 0:e.id)??null}reloadOnChange(e){var t;return!!(null==(t=e.config)?void 0:t.reload)}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","snippet")}}},62834(e,t,i){"use strict";i.d(t,{r:()=>u});var r=i(74848);i(47867);var n=i(80655),l=i(53051),a=i(60939),o=i(83499);let s=e=>{let{inherited:t=!1,value:i,onChange:n,width:s,...d}=e;return(0,r.jsx)(l.x,{display:"block",hideButtons:!0,isInherited:t,onOverwrite:()=>{null==n||n(i??null)},style:{maxWidth:(0,o.x)(s)},children:(0,r.jsx)(a.X,{disabled:t,onChange:n,value:i,width:s,...d})})};var d=i(35864),c=i(25085);class u extends n.Z{getEditableDataComponent(e){var t,i,n,l,a,o;return(0,r.jsx)(s,{className:null==(t=e.config)?void 0:t.class,cols:(null==(n=e.config)||null==(i=n.defaults)?void 0:i.cols)??2,inherited:e.inherited,rows:(null==(a=e.config)||null==(l=a.defaults)?void 0:l.rows)??2,width:(0,c.toCssDimension)(null==(o=e.config)?void 0:o.width,e.defaultFieldWidth.large)})}transformValue(e,t){if((0,d.isNil)(e)||(0,d.isEmpty)(e)){var i,r;let e=null==(r=t.config)||null==(i=r.defaults)?void 0:i.data;return(0,d.isNil)(e)||(0,d.isEmpty)(e)?null:e}return e}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","table")}}},70005(e,t,i){"use strict";i.d(t,{r:()=>o});var r=i(74848);i(47867);var n=i(18196),l=i(80655),a=i(184);class o extends l.Z{getEditableDataComponent(e){var t,i,n,l;return(0,r.jsx)(a.A,{allowMultiLine:!0,className:null==(t=e.config)?void 0:t.class,height:null==(i=e.config)?void 0:i.height,inherited:e.inherited,placeholder:null==(n=e.config)?void 0:n.placeholder,width:null==(l=e.config)?void 0:l.width})}isEmpty(e,t){return!(0,n.uI)(e)}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","textarea")}}},51684(e,t,i){"use strict";i.d(t,{e:()=>T});var r,n=i(74848),l=i(47867),a=i(62446),o=i(35864),s=i(18196),d=i(80655),c=i(29740),u=i(8674),p=i(21429);let m=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{wrapper:i` - position: relative; - display: inline-block; - `,editButton:i` - position: absolute !important; - top: ${t.paddingXS}px; - right: ${t.paddingXS}px; - z-index: 10; - background-color: ${t.colorBgContainer}; - border: 1px solid ${t.colorBorder}; - border-radius: ${t.borderRadius}px; - box-shadow: ${t.boxShadow}; - `}});var g=i(25765),h=i.n(g),v=i(8651),f=i.n(v),y=i(46096),b=i(81624),x=i(53211);let j=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=(0,x.Z)();return{openModal:(0,l.useCallback)(i=>{if((0,b.GZ)()&&(0,y.BB)()){let{element:t}=(0,y.qH)();t.openVideoModal({value:i,options:e});return}t.openModal(i,e)},[t,e]),closeModal:(0,l.useCallback)(()=>{t.closeModal()},[t]),isOpen:t.isOpen}};var w=i(53051),C=i(83499);let S=e=>{let{value:t,onChange:i,disabled:r,inherited:a=!1,className:s,containerRef:d,allowedVideoTypes:g,width:v="100%",height:y=380}=e,{t:b}=(0,p.useTranslation)(),{styles:x}=m(),[S,T]=(0,l.useState)(null),[I,k]=(0,l.useState)(null),E=t??null,D=(()=>{var e,t;if((0,o.isNil)(E))return!1;switch(E.type){case"asset":return!(0,o.isNil)(null==(e=E.data)?void 0:e.id)&&E.data.id>0;case"youtube":case"vimeo":case"dailymotion":return!(0,o.isNil)(E.data)&&!(0,o.isEmpty)(null==(t=E.data)?void 0:t.toString().trim());default:return!1}})(),{openModal:N}=j({disabled:r,allowedVideoTypes:g,onChange:i}),P=()=>{null==i||i(t??null)};(0,l.useEffect)(()=>{if(!(0,o.isNull)(null==d?void 0:d.current)){let e=d.current.querySelector(".pimcore_editable_video_empty");!(0,o.isNull)(e)&&(0,o.isNull)(I)&&(e.className=f()(e.className,"studio-required-field-target"),k(e));let t=d.current.querySelector("iframe, video");if(!(0,o.isNull)(t)&&(0,o.isNull)(S)){let e=document.createElement("div");e.className=f()(x.wrapper,s),e.style.position="relative",(0,o.isNull)(d.current.parentNode)||(d.current.parentNode.insertBefore(e,d.current),e.appendChild(d.current),T(e))}}},[d,s,S]);let A=()=>{N(E)};return(0,n.jsx)(n.Fragment,{children:D?!(0,o.isNull)(S)&&h().createPortal((0,n.jsx)(w.x,{display:"block",hideButtons:!0,isInherited:a,noPadding:!0,onOverwrite:P,shape:"angular",style:{position:"absolute",inset:0},children:(0,n.jsx)(c.K,{className:x.editButton,disabled:r,icon:{value:"edit"},onClick:A,size:"small",style:{pointerEvents:"auto"},title:b("video.edit"),type:"default"})}),S):!(0,o.isNull)(I)&&h().createPortal((0,n.jsx)(w.x,{display:"block",isInherited:a,noPadding:!0,onOverwrite:P,style:(0,o.isNil)(v)?void 0:{maxWidth:(0,C.x)(v)},children:(0,n.jsx)(u.b,{buttonText:b("video.add-video"),disabled:r,height:y,onClick:A,text:b("video.placeholder"),width:v})}),I)})},T=(0,a.injectable)()(r=class extends d.Z{getEditableDataComponent(e){var t,i,r,l;return(0,n.jsx)(S,{allowedVideoTypes:null==(t=e.config)?void 0:t.allowedTypes,className:null==(i=e.config)?void 0:i.class,containerRef:e.containerRef,disabled:e.inherited,height:null==(r=e.config)?void 0:r.height,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value,width:null==(l=e.config)?void 0:l.width})}transformValue(e,t){return(0,o.isNull)(e)||(0,o.isNil)(e)?null:"asset"===e.type?{type:"asset",data:(0,o.isNil)(e.id)?null:{type:"asset",id:e.id,fullPath:e.path??"",subtype:"video"},title:e.title,description:e.description,poster:(0,o.isNil)(e.poster)?null:{type:"asset",id:0,fullPath:e.poster,subtype:"image"}}:{type:e.type,data:e.path??null}}transformValueForApi(e,t){if((0,o.isNull)(e)||(0,o.isNil)(e))return null;if("asset"===e.type){var i,r,n;return{type:"asset",id:null==(i=e.data)?void 0:i.id,title:e.title??"",description:e.description??"",path:(null==(r=e.data)?void 0:r.fullPath)??"",poster:(null==(n=e.poster)?void 0:n.fullPath)??""}}return{type:e.type,title:"",description:"",path:e.data??"",poster:""}}isEmpty(e,t){return!((0,o.isObject)(e)&&(0,o.has)(e,"type"))||("asset"===e.type?!(0,o.has)(e,"data")||!(0,o.has)(e.data,"id")||e.data.id<=0:!(0,o.has)(e,"data")||!(0,s.uI)(e.data))}reloadOnChange(e){return!0}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","video")}})||r},50929(e,t,i){"use strict";i.d(t,{q:()=>m});var r=i(74848);i(47867);var n=i(35864),l=i(18196),a=i(76673),o=i(80655),s=i(90801),d=i(53051),c=i(83499);let u=e=>{let{inherited:t=!1,context:i=s.WysiwygContext.DOCUMENT,value:n,onChange:l,width:a,...o}=e;return(0,r.jsx)(d.x,{display:"block",isInherited:t,onOverwrite:()=>{null==l||l(n??"")},style:{maxWidth:(0,c.x)(a)},children:(0,r.jsx)(s.Wysiwyg,{...o,context:i,disabled:t,onChange:l,value:n,width:a})})};function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class m extends o.Z{getEditableDataComponent(e){var t,i,n,l;return(0,r.jsx)(u,{context:s.WysiwygContext.DOCUMENT,editorConfig:e.config,height:null==(t=e.config)?void 0:t.height,inherited:e.inherited,maxCharacters:null==(i=e.config)?void 0:i.maxCharacters,placeholder:null==(n=e.config)?void 0:n.placeholder,width:null==(l=e.config)?void 0:l.width})}isEmpty(e,t){if((0,n.isString)(e)){let t=(0,a.Kq)(e);return!(0,l.uI)(t)}return!0}constructor(...e){super(...e),p(this,"id","wysiwyg"),p(this,"initializeInIframe",!0)}}},25950(e,t,i){"use strict";i.d(t,{o:()=>a});var r=i(74848);i(47867);var n=i(35864),l=i(73062);let a=e=>(null==e?void 0:e.map(e=>{if((0,n.isArray)(e)){let[t,i]=e;return{value:String(t),label:(0,r.jsx)(l.h,{html:i})}}{let t=String(e);return{value:t,label:(0,r.jsx)(l.h,{html:t})}}}))??[]},94652(e,t,i){"use strict";i.d(t,{m:()=>o});var r=i(74848),n=i(47867),l=i(16450),a=i(43588);let o=e=>{let{setData:t,data:i}=(0,l.F)();return(0,n.useEffect)(()=>{t([!1])},[]),(0,r.jsx)(a.Segmented,{onChange:e=>{t(["true"===e])},options:[{label:"True",value:"true"},{label:"False",value:"false"}],value:Array.isArray(i)&&!0===i[0]?"true":"false"})}},67967(e,t,i){"use strict";i.d(t,{H:()=>h,q:()=>m});var r,n=i(74848);i(47867);var l=i(74353),a=i.n(l),o=i(1993),s=i(25750),d=i(11354),c=i(6546),u=i(16450),p=i(60142);let m=((r={}).ON="on",r.BETWEEN="between",r.BEFORE="before",r.AFTER="after",r),g="YYYY-MM-DD",h=e=>{let{data:t,setData:i}=(0,u.F)(),r=t??{setting:m.ON,from:null,to:null,on:null},l=[{label:(0,p.t)("grid.filter.on"),value:m.ON},{label:(0,p.t)("grid.filter.between"),value:m.BETWEEN},{label:(0,p.t)("grid.filter.before"),value:m.BEFORE},{label:(0,p.t)("grid.filter.after"),value:m.AFTER}],h=(null==r?void 0:r.setting)??m.ON,v=e=>null===e?null:a().unix(e).format(),f=e=>null===e?null:a()(e).startOf("day").unix(),y=(e,t)=>{i({setting:h,from:"from"===e?t:null,to:"to"===e?t:null,on:"on"===e?t:null})};return(0,n.jsxs)(s.s,{align:"center",gap:"extra-small",children:[(0,n.jsx)(o.l,{defaultValue:m.ON,onChange:e=>{let t;t=r??{from:null,to:null,on:null,setting:m.ON},e===m.BEFORE?i({setting:e,from:null,to:t.to??t.on??t.from??null,on:null}):e===m.AFTER?i({setting:e,from:t.from??t.on??t.to??null,to:null,on:null}):e===m.ON?i({setting:e,from:null,to:null,on:t.from??t.to??null}):e===m.BETWEEN&&i({setting:e,from:t.from??t.on??null,to:t.to??null,on:null})},options:l,width:90}),h===m.BETWEEN&&(0,n.jsx)(c.U,{allowEmpty:[!0,!0],format:g,onChange:e=>{var t,n;let[l,a]=e;t=v(l),n=v(a),i({setting:r.setting,from:t??r.from??null,to:n??r.to??null,on:null})},outputType:"timestamp",value:[f((null==r?void 0:r.from)??null),f((null==r?void 0:r.to)??null)]}),h!==m.BETWEEN&&(0,n.jsx)(d.l,{format:g,onChange:e=>{let t=v("number"==typeof e?e:null);h===m.ON?y("on",t):h===m.BEFORE?y("to",t):h===m.AFTER&&y("from",t)},outputType:"timestamp",value:f(h===m.ON?(null==r?void 0:r.on)??null:h===m.BEFORE?(null==r?void 0:r.to)??null:h===m.AFTER?(null==r?void 0:r.from)??null:null)})]})}},71916(e,t,i){"use strict";i.d(t,{L:()=>c,a:()=>u});var r,n=i(74848);i(47867);var l=i(1993),a=i(25750),o=i(71141),s=i(16450),d=i(60142);let c=((r={}).IS="is",r.BETWEEN="between",r.LESS="less",r.MORE="more",r),u=e=>{let{data:t,setData:i}=(0,s.F)(),r=t??{setting:c.IS,from:null,to:null,is:null},u=[{label:(0,d.t)("grid.filter.is"),value:c.IS},{label:(0,d.t)("grid.filter.between"),value:c.BETWEEN},{label:(0,d.t)("grid.filter.less"),value:c.LESS},{label:(0,d.t)("grid.filter.more"),value:c.MORE}],p=(null==r?void 0:r.setting)??c.IS,m=(e,t)=>{i({...r,setting:p,[e]:t})},g=(e,t)=>{i({...r,setting:r.setting,[e]:t})};return(0,n.jsxs)(a.s,{align:"center",gap:"extra-small",children:[(0,n.jsx)(l.l,{defaultValue:c.IS,onChange:e=>{let t;t=r??{from:null,to:null,is:null,setting:c.IS},e===c.LESS?i({setting:e,from:null,to:t.to??t.is??t.from??null,is:null}):e===c.MORE?i({setting:e,from:t.from??t.is??t.to??null,to:null,is:null}):e===c.IS?i({setting:e,from:null,to:null,is:t.from??t.to??null}):e===c.BETWEEN&&i({setting:e,from:t.from??t.is??null,to:t.to??null,is:null})},options:u,width:p===c.MORE?100:90}),p===c.BETWEEN&&(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(o.Y,{onChange:e=>{g("from",e)},placeholder:(0,d.t)("grid.filter.from"),value:(null==r?void 0:r.from)??null}),(0,n.jsx)(o.Y,{onChange:e=>{g("to",e)},placeholder:(0,d.t)("grid.filter.to"),value:(null==r?void 0:r.to)??null})]}),p!==c.BETWEEN&&(0,n.jsx)(o.Y,{onChange:e=>{p===c.IS?m("is",e):p===c.LESS?m("to",e):p===c.MORE&&m("from",e)},value:p===c.IS?(null==r?void 0:r.is)??null:p===c.LESS?(null==r?void 0:r.to)??null:p===c.MORE?(null==r?void 0:r.from)??null:null})]})}},14542(e,t,i){"use strict";i.d(t,{i:()=>o});var r=i(74848),n=i(47867),l=i(86569),a=i(16450);let o=()=>{let{data:e,setData:t}=(0,a.F)(),[i,o]=(0,n.useState)(e);return(0,n.useEffect)(()=>{o(e)},[e]),(0,r.jsx)(l.Input,{onBlur:function(){t(i)},onChange:e=>{o(e.target.value)},type:"text",value:i})}},17044(e,t,i){"use strict";i.d(t,{C:()=>n});var r=i(35864);class n{shouldOverrideFilterType(){return!1}getFieldFilterType(){return""}shouldApply(e){let t=e.filterValue;return!((0,r.isNil)(t)||""===t||(0,r.isArray)(t)&&(0,r.isEmpty)(t))}isFilterAvailable(e){return!0}transformFilterToApiRequest(e){var t,i;return{...e,key:(null==(i=e.meta)||null==(t=i.filters)?void 0:t.key)??e.key,type:this.getFieldFilterType()}}constructor(){!function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id",void 0)}}},46383(e,t,i){"use strict";i.d(t,{y:()=>s});var r,n=i(74848);i(47867);var l=i(62446),a=i(17044),o=i(67967);let s=(0,l.injectable)()(r=class extends a.C{getFieldFilterType(){return"system.date"}getFieldFilterComponent(e){return(0,n.jsx)(o.H,{...e})}shouldApply(e){let t=e.filterValue;return null!=t&&"object"==typeof t&&(null!=t.on||null!=t.from||null!=t.to)}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","date")}})||r},95433(e,t,i){"use strict";i.d(t,{b:()=>p});var r,n=i(74848),l=i(47867),a=i(62446),o=i(17044),s=i(1993),d=i(16450),c=i(80931);let u=()=>{var e,t;let{setData:i,data:r,config:a}=(0,d.F)(),[o,u]=(0,l.useState)(r),p=[],m=(null==a||null==(e=a.fieldDefinition)?void 0:e.options)??(null==a||null==(t=a.definition)?void 0:t.options);Array.isArray(m)&&(p=m.map(e=>({...(0,c.y)(String(null==e?void 0:e.key)),value:null==e?void 0:e.value}))),(0,l.useEffect)(()=>{u(r)},[r]);let g=p.some(e=>void 0!==e.title);return(0,n.jsx)(s.l,{mode:"multiple",onChange:e=>{u(e),i(e)},optionFilterProp:g?"title":"label",options:p,showSearch:(null==a?void 0:a.showSearch)??!1,style:{width:"100%"},value:o})},p=(0,a.injectable)()(r=class extends o.C{getFieldFilterType(){return"system.select"}transformFilterToApiRequest(e){let t={...e};return Array.isArray(e.filterValue)&&(t.filterValue=e.filterValue.map(String)),super.transformFilterToApiRequest(t)}getFieldFilterComponent(){return(0,n.jsx)(u,{})}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","multiselect")}})||r},13145(e,t,i){"use strict";i.d(t,{R:()=>s});var r,n=i(74848);i(47867);var l=i(62446),a=i(17044),o=i(71916);let s=(0,l.injectable)()(r=class extends a.C{getFieldFilterType(){return"system.number"}getFieldFilterComponent(e){return(0,n.jsx)(o.a,{...e})}shouldApply(e){let t=e.filterValue;return null!=t&&"object"==typeof t&&(null!=t.is||null!=t.from||null!=t.to)}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","number")}})||r},40917(e,t,i){"use strict";i.d(t,{e:()=>l});var r=i(74848);i(47867);var n=i(31492);let l=e=>{let t=e.row.original.type;return(0,r.jsx)(r.Fragment,{children:function(){switch(t){case"document":return(0,r.jsx)(n.L,{value:"document"});case"asset":return(0,r.jsx)(n.L,{value:"asset"});case"dataObject":return(0,r.jsx)(n.L,{value:"data-object"});default:return(0,r.jsx)("span",{children:t})}}()})}},17868(e,t,i){"use strict";i.d(t,{e:()=>s});var r=i(74848);i(47867);var n=i(31492),l=i(63364),a=i(10600),o=i(35864);let s=e=>{let t,i=e.row.original.type,s=(0,l.Lt)(a.K["DynamicTypes/MetadataRegistry"]);try{t=s.getDynamicType(i)}catch(e){}let d=null==t?void 0:t.iconName;return(0,o.isUndefined)(d)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(n.L,{value:d})}},73746(e,t,i){"use strict";i.d(t,{I:()=>s});var r=i(74848);i(47867);var n=i(63364),l=i(10600),a=i(86569),o=i(37761);let s=e=>{let t,i=e.row.original.type,s=(0,n.Lt)(l.K["DynamicTypes/MetadataRegistry"]);try{t=s.getDynamicType(i)}catch(e){console.warn(e)}return(0,r.jsx)(r.Fragment,{children:void 0===t?(0,r.jsx)(a.Alert,{message:"cell type not supported",type:"warning"}):"metadata.select"===i&&"config"in e.row.original?(0,r.jsx)(o.w,{...e}):t.getGridCellComponent(e)})}},37761(e,t,i){"use strict";i.d(t,{w:()=>a});var r=i(74848);i(47867);var n=i(24183),l=i(75915);let a=e=>{let t=(e.row.original.config??"").split(",").map(e=>({value:e,label:e}));return(0,r.jsx)(n.N,{...(0,l.K)(e,{options:t})})}},66873(e,t,i){"use strict";i.d(t,{e:()=>l});var r=i(74848);i(47867);var n=i(31492);let l=e=>{let t=e.row.original.type;return(0,r.jsx)(r.Fragment,{children:function(){switch(t){case"text":return(0,r.jsx)(n.L,{value:"content"});case"document":return(0,r.jsx)(n.L,{value:"document"});case"asset":return(0,r.jsx)(n.L,{value:"asset"});case"object":case"dataObject":return(0,r.jsx)(n.L,{value:"data-object"});case"bool":return(0,r.jsx)(n.L,{value:"checkbox"});case"select":return(0,r.jsx)(n.L,{value:"chevron-selector-horizontal"});default:return(0,r.jsx)("span",{})}}()})}},61443(e,t,i){"use strict";i.d(t,{I:()=>d});var r=i(74848);i(47867);var n=i(86569),l=i(63364),a=i(75915),o=i(35864);let s={text:"input",bool:"checkbox"},d=e=>{let t=e.row.original.type,i=(0,l.Lt)("DynamicTypes/GridCellRegistry"),d=s[t]??t;return(0,r.jsx)(r.Fragment,{children:function(){if(!i.hasDynamicType(d))return(0,r.jsx)(n.Alert,{message:"cell type not supported",style:{display:"flex"},type:"warning"});let t=i.getDynamicType(d),l=e;return"select"===d&&(l=(0,a.K)(e,{options:(0,o.isString)(e.row.original.config)?e.row.original.config.split(",").map(e=>({value:e,label:e})):void 0})),t.getGridCellComponent(l)}()})}},32617(e,t,i){"use strict";i.d(t,{N:()=>l});var r=i(74848);i(47867);let{Text:n}=i(86569).Typography,l=e=>{let t=e.getValue();return void 0===t?(0,r.jsx)("div",{}):(0,r.jsxs)("div",{className:"default-cell__content",children:[t.field,"string"==typeof t.metadataType?` (${t.metadataType})`:"","string"==typeof t.language?(0,r.jsxs)(n,{type:"secondary",children:[" ",t.language]}):""]})}},93836(e,t,i){"use strict";i.d(t,{q:()=>s});var r=i(74848),n=i(47867),l=i(29740),a=i(76497),o=i(86569);let s=e=>{let{row:t}=e,i=t.original,{openAsset:s}=(0,a.G)();return(0,n.useMemo)(()=>(0,r.jsx)("div",{className:"default-cell__content",children:(0,r.jsx)(o.Flex,{className:"w-full",justify:"center",children:(0,r.jsx)(l.K,{icon:{value:"open-folder"},onClick:()=>{s({config:{id:i.id}})},type:"link"})})}),[i.id])}},37532(e,t,i){"use strict";i.d(t,{F:()=>m});var r=i(74848);i(47867);var n=i(44241);let l=(0,n.createStyles)(e=>{let{token:t,css:i}=e;return{image:i` - display: flex; - justify-content: center; - align-items: center; - aspect-ratio: 1; - width: 100%; - height: 100%; - - &.image-cell.default-cell__content { - margin: ${t.paddingXXS}px; - } - - .ant-image { - display: flex; - width: 100%; - height: 100%; - } - - img { - max-width: 100%; - max-height: 100%; - object-fit: contain; - } - `}},{hashPriority:"low"});var a=i(72346);let o=e=>{let{styles:t}=l();return(0,r.jsx)("div",{className:[t.image,"image-cell default-cell__content"].join(" "),children:(0,r.jsx)(a.R,{...e})})};var s=i(76497),d=i(81898);let c=(0,n.createStyles)(e=>{let{token:t,css:i}=e;return{cell:i` - display: flex; - align-items: center; - justify-content: center; - width: 100%; - padding: ${t.paddingXS}px ${t.paddingSM}px; - - .pimcore-icon { - color: ${t.Colors.Neutral.Icon.colorIcon}; - cursor: pointer; - - svg * { - vector-effect: non-scaling-stroke; - } - } - `}});var u=i(93233),p=i(27994);let m=e=>{var t;let{styles:i}=c(),{openAsset:n}=(0,s.G)();function l(){void 0!==e&&n({config:{id:e.row.original.id}})}return(0,r.jsx)("div",{className:i.cell,children:(null==e?void 0:e.getValue())!==void 0&&("thumbnail"in(t=e.getValue())&&null!==t.thumbnail?(0,r.jsx)(o,{onClick:l,src:t.thumbnail,style:{cursor:"pointer"}}):"icon"in t?(0,r.jsx)(p.$,{icon:(0,r.jsx)(d.I,{...t.icon,options:{width:50,height:50}}),onClick:l,onKeyDown:u.Kb,type:"link"}):(0,r.jsx)(r.Fragment,{}))})}},36255(e,t,i){"use strict";i.d(t,{A:()=>c});var r=i(74848),n=i(47867),l=i(86569),a=i(75145);let o=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{"align-center":t` - justify-content: center; - display: flex; - `,"align-right":t` - justify-content: flex-end; - display: flex; - `}});var s=i(8651),d=i.n(s);let c=e=>{var t,i;let{styles:s}=o(),{fireOnUpdateCellDataEvent:c}=(0,a.B)(e),u=(0,n.useRef)(null),{column:p}=e,m=null==(t=p.columnDef.meta)?void 0:t.config;void 0===m&&(m={align:"left"});let g="left"!==m.align?s[`align-${m.align}`]:void 0;return(0,r.jsx)("div",{className:d()("default-cell__content","default-cell__content--padded",g),children:(0,r.jsx)(l.Checkbox,{checked:e.getValue(),disabled:(null==(i=e.column.columnDef.meta)?void 0:i.editable)===!1,onChange:function(){var e;c((null==(e=u.current.input)?void 0:e.checked)??!1)},ref:u})})}},11316(e,t,i){"use strict";i.d(t,{D:()=>s});var r=i(74848),n=i(47867),l=i(29740),a=i(86569),o=i(40721);let s=e=>{let{row:t}=e,i=t.original,{openDataObject:s}=(0,o.H)();return(0,n.useMemo)(()=>(0,r.jsx)("div",{className:"default-cell__content",children:(0,r.jsx)(a.Flex,{className:"w-full",justify:"center",children:(0,r.jsx)(l.K,{icon:{value:"open-folder"},onClick:()=>{s({config:{id:i.id}})},type:"link"})})}),[i.id])}},63746(e,t,i){"use strict";i.d(t,{H:()=>D});var r=i(74848),n=i(47867),l=i(63364),a=i(35864),o=i(10600),s=i(86569),d=i(75240);let c=e=>{let t=(0,l.Lt)(o.K["DynamicTypes/GridCellRegistry"]),{type:i}=e.objectCellDefinition;return(0,n.useMemo)(()=>{var n,l,a,o,s,c;if(!t.hasDynamicType(i))return(0,r.jsx)("div",{className:"default-cell__content",children:(0,r.jsx)(d.F,{message:`type ${i} not supported`,type:"warning"})});let u={...e.cellProps,column:{...e.cellProps.column,columnDef:{...e.cellProps.column.columnDef,meta:{...e.cellProps.column.columnDef.meta,type:i,config:{...(null==e||null==(c=e.cellProps)||null==(s=c.column)||null==(o=s.columnDef)||null==(a=o.meta)||null==(l=a.config)||null==(n=l.dataObjectConfig)?void 0:n.fieldDefinition)??{}}}}}},p=t.getDynamicType(i).getGridCellComponent(u);return(0,r.jsx)(r.Fragment,{children:p})},[e])};var u=i(75145),p=i(57231),m=i(50094),g=i(23558),h=i(15925),v=i(64756),f=i(76066),y=i(58445);let b=e=>!0!==e.inherited||void 0===e.objectId?(0,r.jsx)(r.Fragment,{children:e.children}):(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(f.x,{className:"w-full",inherited:!0,type:"grid-cell",children:e.children}),(0,r.jsx)(v.a,{padding:{right:"extra-small"},style:{position:"absolute",top:0,bottom:0,right:0},children:(0,r.jsx)(s.Flex,{align:"center",className:"h-full",children:(0,r.jsx)(y.J,{objectId:e.objectId})})})]});var x=i(25750),j=i(66707),w=i(68528),C=i(21429),S=i(85775);let T=e=>{var t,i,n,l,o,s,d,c;let{decodeColumnIdentifier:v}=(0,j.K)(),{isInEditMode:f,fireOnUpdateCellDataEvent:y,disableEditMode:T}=(0,u.B)(e.cellProps),[I]=p.lV.useForm(),{t:k}=(0,C.useTranslation)(),{currentLanguage:E}=(0,S.Sk)();null==(t=(i=e.objectCellDefinition).handleDefaultValue)||t.call(i,e.objectCellDefinition.editComponent.props,I,["value"]);let D=v(e.cellProps.column.id),N=null==e||null==(o=e.cellProps)||null==(l=o.row)||null==(n=l.original)?void 0:n["__api-data"],P=null==N||null==(s=N.columns)?void 0:s.find(e=>{if((null==D?void 0:D.type)==="dataobject.classificationstore"){let t=D.key.split(".")[0];return(null==D?void 0:D.localizable)?D.key===t&&(D.locale??E)===e.locale&&e.additionalAttributes.groupId===D.config.groupId&&e.additionalAttributes.keyId===D.config.keyId:D.key===t&&e.additionalAttributes.groupId===D.config.groupId&&e.additionalAttributes.keyId===D.config.keyId}return(null==D?void 0:D.localizable)===!0?e.key===(null==D?void 0:D.key)&&(D.locale??E)===e.locale:e.key===(null==D?void 0:D.key)});return(0,r.jsxs)(x.s,{className:"relative w-full h-full",children:[(0,r.jsx)(b,{inherited:(null==P||null==(d=P.inheritance)?void 0:d.inherited)===!0&&!f,objectId:null==P||null==(c=P.inheritance)?void 0:c.objectId,children:e.objectCellDefinition.previewComponent}),f&&!(0,a.isUndefined)(e.objectCellDefinition.editModalSettings)&&(0,r.jsx)(g.m,{cancelText:k("edit-modal.discard"),okText:k("edit-modal.apply-changes"),onCancel:()=>{I.resetFields(),T()},onOk:()=>{I.submit()},open:f,size:e.objectCellDefinition.editModalSettings.modalSize,title:k("edit-modal.inline-edit"),children:(0,r.jsx)(m._Y,{children:(0,r.jsx)(h.Q,{id:e.cellProps.row.original.id,children:(0,r.jsx)(p.lV,{form:I,initialValues:{value:e.cellProps.getValue()},layout:e.objectCellDefinition.editModalSettings.formLayout,onFinish:t=>{y(t.value,{[w.F1]:e.objectCellDefinition.supportsBatchAppendModes}),T()},children:(0,r.jsx)(p.lV.Item,{...e.objectCellDefinition.formItemProps,name:"value",children:e.objectCellDefinition.editComponent})})})})})]})},I=e=>{let t=(0,l.Lt)(o.K["DynamicTypes/GridCellRegistry"]),{meta:i}=e.objectCellDefinition;return(0,n.useMemo)(()=>{if(!t.hasDynamicType(i.type))return(0,r.jsx)("div",{className:"default-cell__content",children:(0,r.jsx)(d.F,{message:`type ${i.type} not supported`,type:"warning"})});let n={...e.cellProps,column:{...e.cellProps.column,columnDef:{...e.cellProps.column.columnDef,meta:i}}},l=t.getDynamicType(i.type).getGridCellComponent(n);return(0,r.jsx)(r.Fragment,{children:l})},[e])};var k=i(14013),E=i(10014);let D=e=>{var t,i,n,d,u,p,m,g,h,v,f;let{decodeColumnIdentifier:y}=(0,j.K)(),x=null==(i=e.column.columnDef.meta)||null==(t=i.config)?void 0:t.dataObjectType,w=null==(d=e.column.columnDef.meta)||null==(n=d.config)?void 0:n.dataObjectConfig,C=(0,l.Lt)(o.K["DynamicTypes/ObjectDataRegistry"]),{isInEditMode:S}=(0,k.B)(e),D=(0,E.S)().currentLanguage;if(void 0!==w&&!(0,a.isObject)(w))throw Error("Invalid data object config");if(void 0===x||!(0,a.isString)(x)||(0,a.isString)(x)&&!C.hasDynamicType(x))return(0,r.jsx)("div",{className:"default-cell__content",children:(0,r.jsx)(s.Alert,{message:`type ${x} not supported`,type:"warning"})});let N=(null==w?void 0:w.fieldDefinition)??{},P=y(e.column.id),A=null==e||null==(p=e.row)||null==(u=p.original)?void 0:u["__api-data"],F=null==A||null==(m=A.columns)?void 0:m.find(e=>{if((null==P?void 0:P.type)==="dataobject.classificationstore"){let t=P.key.split(".")[0];return(null==P?void 0:P.localizable)?P.key===t&&(P.locale??D)===e.locale&&e.additionalAttributes.groupId===P.config.groupId&&e.additionalAttributes.keyId===P.config.keyId:P.key===t&&e.additionalAttributes.groupId===P.config.groupId&&e.additionalAttributes.keyId===P.config.keyId}return(null==P?void 0:P.localizable)===!0?e.key===(null==P?void 0:P.key)&&(P.locale??D)===e.locale:e.key===(null==P?void 0:P.key)}),$=C.getDynamicType(x).getGridCellDefinition({cellProps:e,objectProps:N});if("default"===$.mode)return(0,r.jsx)(b,{inherited:(null==F||null==(g=F.inheritance)?void 0:g.inherited)===!0&&!S,objectId:null==F||null==(h=F.inheritance)?void 0:h.objectId,children:(0,r.jsx)(c,{cellProps:e,objectCellDefinition:$})});if("edit-modal"===$.mode)return(0,r.jsx)(T,{cellProps:e,objectCellDefinition:$});if("column-meta"===$.mode)return(0,r.jsx)(b,{inherited:(null==F||null==(v=F.inheritance)?void 0:v.inherited)===!0&&!S,objectId:null==F||null==(f=F.inheritance)?void 0:f.objectId,children:(0,r.jsx)(I,{cellProps:e,objectCellDefinition:$})});throw Error("Invalid cell definition")}},18177(e,t,i){"use strict";i.d(t,{d:()=>u});var r=i(74848),n=i(47867),l=i(8830),a=i(75145),o=i(86569),s=i(74353),d=i.n(s),c=i(57489);let u=e=>{var t;let{isInEditMode:i,disableEditMode:s,fireOnUpdateCellDataEvent:u}=(0,a.B)(e),[p,m]=(0,n.useState)(!1),g=(0,n.useRef)(null),{column:h}=e,v=null==(t=h.columnDef.meta)?void 0:t.config,f=(null==v?void 0:v.showTime)??!1,y=f?"YYYY-MM-DD HH:mm":"YYYY-MM-DD";(0,n.useEffect)(()=>{if(i){var e;m(!0),null==(e=g.current)||e.focus()}},[i]);let b=0!==Number(e.getValue())?d().unix(Number(e.getValue())):null;return(0,r.jsx)("div",{className:"default-cell__content default-cell__content--padded",children:i?(0,r.jsx)(o.DatePicker,{format:y,needConfirm:!0,onChange:e=>{u(null===e?0:e.unix()),s()},onKeyDown:function(e){("Escape"===e.key||"Enter"===e.key)&&s()},onOk:s,open:p,ref:g,showTime:!!f&&{format:"HH:mm"},value:b}):null===b||isNaN(Number(e.getValue()))?(0,r.jsx)(r.Fragment,{}):f?(0,r.jsx)(c.Q,{timestamp:b.unix()}):(0,r.jsx)(l.X,{timestamp:b.unix()})})}},6879(e,t,i){"use strict";i.d(t,{R:()=>h});var r=i(74848),n=i(47867),l=i(20597),a=i(81898);let o=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{"element-cell":t` - padding: 3px; - `,link:t` - display: flex; - justify-content: space-between; - gap: 8px; - width: 100%; - - .ant-tag { - display: flex; - align-items: center; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - cursor: pointer; - } - `,elementOptionsIcon:t` - margin-left: 4px; - margin-top: 4px; - margin-right: 2px; - `}});var s=i(94788),d=i(67104),c=i(35864),u=i(87632),p=i(81674),m=i(43588);let g=(0,n.forwardRef)(function(e,t){var i,l,g,h;let{styles:v}=o(),f=e.row.original,{getStateClasses:y}=(0,s.z)(),{fireOnUpdateCellDataEvent:b,isInEditMode:x,disableEditMode:j}=(0,m.useEditMode)(e),w=(0,n.useRef)(null),C=!!(null==(l=e.column.columnDef.meta)||null==(i=l.config)?void 0:i.expectsStringValue),S=!!(null==(h=e.column.columnDef.meta)||null==(g=h.config)?void 0:g.allowTextInput);(0,n.useEffect)(()=>{if(x&&S){var e;null==(e=w.current)||e.focus()}},[x,S]);let T=()=>{var e,t;b((null==(t=w.current)||null==(e=t.input)?void 0:e.value)??""),j()},I=(e.getElementInfo??(()=>{var t,i,r,n,l,a,o;let s="data-object",d=null==(i=e.column.columnDef.meta)||null==(t=i.config)?void 0:t.allowedTypes;void 0!==d&&(s=d[0]);let m=null!==f.data&&(null==(r=f.data)?void 0:r.type)!==void 0,g=null!==f.data&&((null==(n=f.data)?void 0:n.fullPath)!==void 0||(null==(l=f.data)?void 0:l.path)!==void 0),h=g&&(null==(a=f.data)?void 0:a.fullPath)!==void 0,v=e.getValue();if((0,c.isPlainObject)(v)&&((0,p.U9)(v)||m))return{elementType:(0,u.sv)(String(v.type))??void 0,id:v.id,fullPath:v.fullPath,published:v.isPublished??void 0};let y=v;return g&&h?y=f.data.fullPath:g&&(y=`${f.data.path}${f.data.filename??f.data.key}`),{fullPath:String(y??""),elementType:s,id:(null==(o=f.data)?void 0:o.id)??f.id}}))(e),k=!0!==e.clearDisabled&&!(0,c.isUndefined)(I.fullPath)&&!(0,c.isEmpty)(I.fullPath);return(0,r.jsx)("div",{className:[v.link,...y()].join(" "),ref:t,children:x&&S?(0,r.jsx)(m.Input,{defaultValue:C?String(e.getValue()??""):String(I.fullPath??""),onBlur:()=>{T()},onKeyDown:e=>{"Enter"===e.key&&T()},ref:w}):(0,r.jsxs)(r.Fragment,{children:[!1!==I.fullPath&&(0,r.jsx)(d.F,{closeIcon:k,disabled:I.disabled,elementType:I.elementType,id:S?void 0:I.id,onClose:()=>{b(C?"":null)},path:I.fullPath,published:I.published}),(0,r.jsx)("div",{children:!0!==e.dropDisabled&&(0,r.jsx)(a.I,{className:v.elementOptionsIcon,value:"drop-target"})})]})})}),h=e=>{var t,i,n,a;let s=o().styles,{column:d}=e,u=!!((null==(t=e.column.columnDef.meta)?void 0:t.editable)??!0),m=!!(null==(i=e.column.columnDef.meta)?void 0:i.clearable),h=!!((null==(n=e.column.columnDef.meta)?void 0:n.showPublishedState)??!0),v=(null==(a=d.columnDef.meta)?void 0:a.config)??{allowedTypes:["asset","data-object","document"]},f="function"==typeof v.allowedTypes?v.allowedTypes(e):v.allowedTypes??[],y=!u||(0,c.isEmpty)(f);return(0,r.jsx)(l.g,{className:[s["element-cell"],"default-cell__content"].join(" "),disabled:y,isValidContext:function(e){return f.includes(e.type)&&u},onDrop:function(t){var i,r,n,l,a;if((null==(i=e.column.columnDef.meta)?void 0:i.editable)!==void 0&&(null==(r=e.table.options.meta)?void 0:r.onUpdateCellData)!==void 0){let i=(null==(l=e.column.columnDef.meta)||null==(n=l.config)?void 0:n.expectsStringValue)?t.data.fullPath:(0,p.ME)(t,h);null==(a=e.table.options.meta)||a.onUpdateCellData({rowIndex:e.row.index,columnId:e.column.id,value:i,rowData:e.row.original})}},children:(0,r.jsx)(g,{...e,clearDisabled:!m,dropDisabled:y,getElementInfo:v.getElementInfo})})}},28680(e,t,i){"use strict";i.d(t,{B:()=>s});var r=i(74848);i(47867);var n=i(24183),l=i(75915),a=i(59446),o=i(18037);let s=e=>{var t;let i=(0,a.t)(),{getDisplayName:s}=(0,o.W)(),d=i.validLanguages.map(e=>({value:e,label:`${s(e)} [${e}]`,displayValue:e})),c=null==(t=e.column.columnDef.meta)?void 0:t.config,u={options:d,allowClear:null==c?void 0:c.allowClear};return(0,r.jsx)(n.N,{...(0,l.K)(e,u)})}},30513(e,t,i){"use strict";i.d(t,{y:()=>v});var r=i(74848),n=i(47867),l=i.n(n),a=i(8651),o=i.n(a),s=i(75145),d=i(1993),c=i(41423);let u=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{"multi-select-cell":t` - .ant-select, .studio-select { - width: 100%; - } - `,"multi-select-cell--read":t` - display: flex; - flex-wrap: wrap; - align-items: center; - gap: ${i.paddingXXS}px; - `}});var p=i(13755),m=i(80931),g=i(35864),h=i(68528);let v=e=>{var t,i;let{styles:a}=u(),{column:v,getValue:f}=e,{isInEditMode:y,disableEditMode:b,fireOnUpdateCellDataEvent:x}=(0,s.B)(e),[j,w]=(0,n.useState)(!1),C=null==(t=v.columnDef.meta)?void 0:t.config,S=(0,n.useRef)(null);(0,n.useEffect)(()=>{if(y){var e;null==(e=S.current)||e.focus(),w(!0)}},[y]);let T=(null==C?void 0:C.fieldName)??String(null==(i=e.column.columnDef.meta)?void 0:i.columnKey),I=(0,g.isNil)(C)?{isLoading:!1,options:[]}:(0,m.$)(C,T);if(I.isLoading)return(0,r.jsx)("div",{className:[a["multi-select-cell"],"default-cell__content"].join(" "),children:(0,r.jsx)(p.t,{type:"classic"})});let k=I.options,E=Array.isArray(f())?f():[];if(void 0===C)return(0,r.jsx)(r.Fragment,{children:E.join(", ")});let D=E.map(e=>{let t=k.find(t=>t.value===e);return{key:e,display:(null==t?void 0:t.displayValue)??(null==t?void 0:t.label)??e}});return y?(0,r.jsx)("div",{className:o()("default-cell__content","default-cell__content--padded",a["multi-select-cell"]),children:(0,r.jsx)(d.l,{mode:"multiple",onBlur:b,onChange:function(e){x(e,(null==C?void 0:C[h.F1])===!0?{[h.F1]:!0}:void 0)},open:j,options:k,popupMatchSelectWidth:!1,ref:S,value:E})}):(0,r.jsx)("div",{className:o()("default-cell__content","default-cell__content--padded",a["multi-select-cell"],a["multi-select-cell--read"]),children:D.map(e=>{let{key:t,display:i}=e;return"string"==typeof i?(0,r.jsx)(c.v,{children:i},t):(0,r.jsx)(l().Fragment,{children:i},t)})})}},67191(e,t,i){"use strict";i.d(t,{y:()=>d});var r=i(74848),n=i(47867),l=i(86569),a=i(75145),o=i(18196),s=i(35864);let d=e=>{let t,{isInEditMode:i,disableEditMode:d,fireOnUpdateCellDataEvent:c}=(0,a.B)(e),[u,p]=(0,n.useState)(e.getValue()),m=(0,n.useRef)(null);return(0,n.useEffect)(()=>{if(i){var e;null==(e=m.current)||e.focus()}},[i]),(0,r.jsx)("div",{className:"default-cell__content default-cell__content--padded",children:(t=e.getValue(),i?(0,r.jsx)(l.InputNumber,{className:"w-full",defaultValue:(0,s.isNumber)(t)?t:void 0,onBlur:function(){c(u),d()},onChange:e=>{p(e)},onKeyDown:function(e){"Enter"===e.key&&(c(u),d())},ref:m,value:u}):(0,r.jsx)(r.Fragment,{children:(0,s.isNumber)(t)?t:(0,o.v_)(t)}))})}},28023(e,t,i){"use strict";i.d(t,{f:()=>c});var r=i(74848);i(47867);let n=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{cell:i` - display: flex; - align-items: center; - justify-content: center; - width: 100%; - - .pimcore-icon { - color: ${t.colorPrimary}; - cursor: pointer; - - &:hover { - color: ${t.colorPrimaryHover}; - } - } - `}});var l=i(81898),a=i(93233),o=i(27994),s=i(56789),d=i(35864);let c=e=>{let{styles:t}=n(),{openElement:i,mapToElementType:c}=(0,s.K)(),u=c(e.row.original.type),p=e.row.original.id;return(0,r.jsx)("div",{className:t.cell,children:function(){if((0,d.isUndefined)(u))return null;let e=async()=>{await i({id:p,type:u})};return(0,r.jsx)(o.$,{icon:(0,r.jsx)(l.I,{value:"open-folder"}),onClick:e,onKeyDown:a.Kb,type:"link"})}()})}},24183(e,t,i){"use strict";i.d(t,{N:()=>c});var r=i(74848),n=i(47867),l=i(75145),a=i(1993);let o=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{"select-cell":t` - .ant-select, .studio-select { - width: 100%; - } - `}});var s=i(13755),d=i(80931);let c=e=>{var t,i;let{styles:c}=o(),{column:u,getValue:p}=e,{isInEditMode:m,disableEditMode:g,fireOnUpdateCellDataEvent:h}=(0,l.B)(e),[v,f]=(0,n.useState)(!1),y=null==(t=u.columnDef.meta)?void 0:t.config,b=(0,n.useRef)(null);if((0,n.useEffect)(()=>{if(m){var e;null==(e=b.current)||e.focus(),f(!0)}},[m]),void 0===y)return p();let x=(0,d.$)(y,y.fieldName??String(null==(i=e.column.columnDef.meta)?void 0:i.columnKey));if(x.isLoading)return(0,r.jsx)("div",{className:[c["select-cell"],"default-cell__content"].join(" "),children:(0,r.jsx)(s.t,{type:"classic"})});let j=x.options,w=j.find(e=>e.value===p()),C=(null==w?void 0:w.displayValue)??(null==w?void 0:w.label)??p();return m?(0,r.jsx)("div",{className:[c["select-cell"],"default-cell__content default-cell__content--padded"].join(" "),children:(0,r.jsx)(a.l,{allowClear:y.allowClear??!1,onBlur:g,onChange:function(e){h(e??null),g()},open:v,options:j,popupMatchSelectWidth:!1,ref:b,value:p()})}):(0,r.jsx)("div",{className:[c["select-cell"],"default-cell__content default-cell__content--padded"].join(" "),children:C})}},74191(e,t,i){"use strict";i.d(t,{m:()=>c});var r=i(74848),n=i(47867),l=i(35864),a=i(75145),o=i(73062),s=i(80632),d=i(18196);let c=e=>{let{isInEditMode:t,disableEditMode:i,fireOnUpdateCellDataEvent:c}=(0,a.B)(e),u=(0,n.useRef)(null);function p(){var e;c((null==(e=u.current.input)?void 0:e.value)??""),i()}function m(e){"Enter"===e.key&&p()}function g(){p()}return(0,n.useEffect)(()=>{if(t){var e;null==(e=u.current)||e.focus()}},[t]),(0,r.jsx)("div",{className:"default-cell__content default-cell__content--padded",children:function(){let i=e.getValue(),n=(0,d.v_)(i);if(!t){var a,c;return(null==(c=e.column.columnDef.meta)||null==(a=c.config)?void 0:a.renderAsHtml)===!0&&(0,l.isString)(i)?(0,r.jsx)(o.h,{html:i}):(0,r.jsx)(r.Fragment,{children:n})}return(0,r.jsx)(s.p,{defaultValue:n,onBlur:g,onKeyDown:m,ref:u,type:"text"})}()})}},21797(e,t,i){"use strict";i.d(t,{d:()=>g});var r=i(74848),n=i(47867),l=i.n(n),a=i(75145),o=i(86569),s=i(93233),d=i(43588),c=i(55638),u=i(76673),p=i(73062),m=i(35864);let g=e=>{var t,i,g;let h,v,f,{isInEditMode:y,disableEditMode:b,fireOnUpdateCellDataEvent:x}=(0,a.B)(e),[j,w]=(0,n.useState)(String(e.getValue()??"")),C=l().createRef(),S=!!(null==(t=e.column.columnDef.meta)?void 0:t.callback),T=null==(i=e.column.columnDef.meta)?void 0:i.editCallback,I=!!(null==(g=e.column.columnDef.meta)?void 0:g.htmlDetection);function k(){x(j),b()}function E(e){w(e.target.value)}(0,n.useEffect)(()=>{if(y){var e;null==(e=C.current)||e.focus()}},[y]);let D=async()=>{if(void 0!==T&&"function"==typeof T)try{let t=await T(e.row.original,e.column.id,j);w(t),x(t)}catch{(0,c.Ay)(new c.$g("Edit callback failed"))}else(0,c.Ay)(new c.$g("No edit callback available"))};return(0,r.jsx)("div",{className:"default-cell__content default-cell__content--padded",children:(h=e.getValue(),v=(0,m.isString)(h)?h:String(h??""),f=I&&(0,u.jz)(v),y?(0,r.jsxs)("div",{style:{position:"relative",width:"100%"},children:[(0,r.jsx)(o.Input.TextArea,{autoSize:{minRows:1},onBlur:k,onChange:E,ref:C,style:S?{paddingRight:"36px"}:void 0,value:j}),S&&(0,r.jsx)("div",{style:{position:"absolute",top:"5px",right:"8px",zIndex:1},children:(0,r.jsx)(d.IconButton,{icon:{value:"edit"},onClick:async()=>{await D()},onMouseDown:e=>{e.preventDefault()},size:"small"})})]}):f?(0,r.jsx)(p.h,{html:v}):(0,r.jsx)(r.Fragment,{children:(0,s.SN)(String(e.getValue()??""),!1)}))})}},44795(e,t,i){"use strict";i.d(t,{M:()=>u});var r=i(74848),n=i(47867),l=i(75145),a=i(86569),o=i(74353),s=i.n(o),d=i(32756),c=i(59814);let u=e=>{let{isInEditMode:t,disableEditMode:i,fireOnUpdateCellDataEvent:o}=(0,l.B)(e),[u,p]=(0,n.useState)(!1),m=(0,n.useRef)(null);return(0,c.L)(m,()=>{i()},".ant-picker-dropdown"),(0,n.useEffect)(()=>{if(t){var e;p(!0),null==(e=m.current)||e.focus()}},[t]),(0,r.jsx)("div",{className:"default-cell__content default-cell__content--padded",children:t?(0,r.jsx)(r.Fragment,{children:(0,r.jsx)(a.TimePicker,{format:"HH:mm",needConfirm:!0,onChange:e=>{o(e.unix()),i()},onKeyDown:function(e){("Escape"===e.key||"Enter"===e.key)&&i()},open:u,ref:m,value:s().unix(Number(e.getValue()))})}):(0,r.jsx)(d.i,{timestamp:Number(e.getValue())})})}},79155(e,t,i){"use strict";i.d(t,{T:()=>l});var r=i(74848);i(47867);var n=i(21429);let l=e=>{let{t}=(0,n.useTranslation)(),i=e.getValue();return(0,r.jsx)("div",{className:"default-cell__content default-cell__content--padded",children:"string"==typeof i?t(i):""})}},30595(e,t,i){"use strict";i.d(t,{E:()=>a});var r,n=i(62446),l=i(69186);let a=(0,n.injectable)()(r=class extends l.Q{getDefaultGridColumnWidth(e){}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id",void 0)}})||r},43656(e,t,i){"use strict";i.d(t,{G:()=>s,h:()=>d});var r,n=i(74848);i(47867);var l=i(30595),a=i(62446),o=i(36255);let s=100,d=(0,a.injectable)()(r=class extends l.E{getGridCellComponent(e){return(0,n.jsx)(o.A,{...e})}getDefaultGridColumnWidth(){return s}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","checkbox")}})||r},80931(e,t,i){"use strict";i.d(t,{$:()=>s,y:()=>o});var r=i(74848),n=i(35864);i(47867);var l=i(73062),a=i(76673);let o=e=>(0,a.jz)(e)?{label:(0,r.jsx)(l.h,{html:e,tag:"span"}),title:(0,a.Kq)(e)}:{label:e},s=(e,t)=>{let i={isLoading:!1,options:[]};if(!(0,n.isUndefined)(e.useOptionsHook)){let r=e.useOptionsHook(t);return(0,n.isUndefined)(r)?i:r}return(0,n.isUndefined)(e.options)?i:{isLoading:!1,options:e.options.map(e=>"object"==typeof e?e:{label:e,value:e})}}},77240(e,t,i){"use strict";i.d(t,{U:()=>g});var r,n,l,a,o,s,d=i(62446),c=i(61379),u=i(10600);function p(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function m(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let g=(r=(0,d.injectable)(),n=(0,d.inject)(u.K["DynamicTypes/GridCell/AssetLink"]),l=(0,d.inject)(u.K["DynamicTypes/FieldFilter/String"]),r((o=m((a=class extends c.a{constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset-link"),p(this,"dynamicTypeGridCellType",o,this),p(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=m(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},80833(e,t,i){"use strict";i.d(t,{r:()=>b});var r,n,l,a,o,s,d=i(74848);i(47867);var c=i(62446),u=i(7402),p=i(10600),m=i(67104),g=i(35864),h=i(87632);function v(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function f(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function y(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let b=(r=(0,c.injectable)(),n=(0,c.inject)(p.K["DynamicTypes/GridCell/AssetLink"]),l=(0,c.inject)(p.K["DynamicTypes/FieldFilter/None"]),r((o=y((a=class extends u.J{getVersionPreviewComponent(e){return(0,g.isNil)(null==e?void 0:e.fullPath)?(0,d.jsx)(d.Fragment,{}):(0,d.jsx)(m.F,{...e,elementType:(0,g.isString)(e.type)?(0,h.sv)(e.type):void 0,path:e.fullPath})}constructor(...e){super(...e),f(this,"id","metadata.asset"),f(this,"iconName","asset"),f(this,"visibleInTypeSelection",!0),v(this,"dynamicTypeGridCellType",o,this),v(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=y(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},99006(e,t,i){"use strict";i.d(t,{c:()=>v});var r,n,l,a,o,s,d=i(74848);i(47867);var c=i(62446),u=i(7402),p=i(10600);function m(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function g(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function h(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let v=(r=(0,c.injectable)(),n=(0,c.inject)(p.K["DynamicTypes/GridCell/Checkbox"]),l=(0,c.inject)(p.K["DynamicTypes/FieldFilter/Boolean"]),r((o=h((a=class extends u.J{getVersionPreviewComponent(e){return(0,d.jsx)("span",{children:!0===e?"✓":"-"})}constructor(...e){super(...e),g(this,"id","metadata.checkbox"),g(this,"iconName","checkbox"),g(this,"visibleInTypeSelection",!0),m(this,"dynamicTypeGridCellType",o,this),m(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=h(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},59921(e,t,i){"use strict";i.d(t,{b:()=>y});var r,n,l,a,o,s,d=i(74848);i(47867);var c=i(62446),u=i(7402),p=i(10600),m=i(276),g=i(35864);function h(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function v(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function f(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let y=(r=(0,c.injectable)(),n=(0,c.inject)(p.K["DynamicTypes/GridCell/Date"]),l=(0,c.inject)(p.K["DynamicTypes/FieldFilter/Date"]),r((o=f((a=class extends u.J{getVersionPreviewComponent(e){return(0,g.isNil)(e)?(0,d.jsx)(d.Fragment,{}):(0,d.jsx)("span",{children:(0,m.Yq)(e)})}constructor(...e){super(...e),v(this,"id","metadata.date"),v(this,"iconName","calendar"),v(this,"visibleInTypeSelection",!0),h(this,"dynamicTypeGridCellType",o,this),h(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=f(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},49254(e,t,i){"use strict";i.d(t,{u:()=>b});var r,n,l,a,o,s,d=i(74848);i(47867);var c=i(62446),u=i(7402),p=i(10600),m=i(67104),g=i(35864),h=i(87632);function v(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function f(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function y(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let b=(r=(0,c.injectable)(),n=(0,c.inject)(p.K["DynamicTypes/GridCell/DocumentLink"]),l=(0,c.inject)(p.K["DynamicTypes/FieldFilter/None"]),r((o=y((a=class extends u.J{getVersionPreviewComponent(e){return(0,g.isNil)(null==e?void 0:e.fullPath)?(0,d.jsx)(d.Fragment,{}):(0,d.jsx)(m.F,{...e,elementType:(0,g.isString)(e.type)?(0,h.sv)(e.type):void 0,path:e.fullPath})}constructor(...e){super(...e),f(this,"id","metadata.document"),f(this,"iconName","document"),f(this,"visibleInTypeSelection",!0),v(this,"dynamicTypeGridCellType",o,this),v(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=y(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},71705(e,t,i){"use strict";i.d(t,{p:()=>v});var r,n,l,a,o,s,d=i(74848);i(47867);var c=i(62446),u=i(7402),p=i(10600);function m(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function g(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function h(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let v=(r=(0,c.injectable)(),n=(0,c.inject)(p.K["DynamicTypes/GridCell/Text"]),l=(0,c.inject)(p.K["DynamicTypes/FieldFilter/String"]),r((o=h((a=class extends u.J{getVersionPreviewComponent(e){return(0,d.jsxs)("span",{children:[" ",e," "]})}constructor(...e){super(...e),g(this,"id","metadata.input"),g(this,"iconName","text-field"),g(this,"visibleInTypeSelection",!0),m(this,"dynamicTypeGridCellType",o,this),m(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=h(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},17332(e,t,i){"use strict";i.d(t,{e:()=>b});var r,n,l,a,o,s,d=i(74848);i(47867);var c=i(62446),u=i(7402),p=i(10600),m=i(67104),g=i(35864),h=i(87632);function v(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function f(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function y(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let b=(r=(0,c.injectable)(),n=(0,c.inject)(p.K["DynamicTypes/GridCell/ObjectLink"]),l=(0,c.inject)(p.K["DynamicTypes/FieldFilter/None"]),r((o=y((a=class extends u.J{getVersionPreviewComponent(e){return(0,g.isNil)(null==e?void 0:e.fullPath)?(0,d.jsx)(d.Fragment,{}):(0,d.jsx)(m.F,{...e,elementType:(0,g.isString)(e.type)?(0,h.sv)(e.type):void 0,path:e.fullPath})}constructor(...e){super(...e),f(this,"id","metadata.object"),f(this,"iconName","data-object"),f(this,"visibleInTypeSelection",!0),v(this,"dynamicTypeGridCellType",o,this),v(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=y(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},52391(e,t,i){"use strict";i.d(t,{h:()=>w});var r,n,l,a,o,s,d=i(74848),c=i(47867),u=i(62446),p=i(7402),m=i(10600),g=i(63364),h=i(27330),v=i(35864);let f=e=>{let[t,i]=(0,c.useState)([]),{data:r,isFetching:n}=(0,h.hM)({body:{}});return(0,c.useEffect)(()=>{if(!(0,v.isNil)(null==r?void 0:r.items)){let t=r.items.find(t=>t.name===e);(0,v.isString)(null==t?void 0:t.config)&&i(t.config.split(",").map(e=>({label:e.trim(),value:e.trim()})))}},[r,e]),{isLoading:n,options:t}};var y=i(75915);function b(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function x(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function j(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let w=(r=(0,u.injectable)(),n=(0,u.inject)(m.K["DynamicTypes/GridCell/Select"]),l=(0,u.inject)(m.K["DynamicTypes/FieldFilter/Multiselect"]),r((o=j((a=class extends p.J{getGridCellComponent(e){var t;let i=g.kL.get(m.K["DynamicTypes/GridCellRegistry"]),r={useOptionsHook:f,fieldName:String(e.cell.row.original.name??(null==(t=e.column.columnDef.meta)?void 0:t.columnKey))};return i.getGridCellComponent(this.dynamicTypeGridCellType.id,(0,y.K)(e,r))}getVersionPreviewComponent(e){return(0,d.jsxs)("span",{children:[e.path,e.key]})}constructor(...e){super(...e),x(this,"id","metadata.select"),x(this,"iconName","chevron-down"),x(this,"visibleInTypeSelection",!1),b(this,"dynamicTypeGridCellType",o,this),b(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=j(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},22847(e,t,i){"use strict";i.d(t,{b:()=>v});var r,n,l,a,o,s,d=i(62446),c=i(7402),u=i(10600),p=i(93233);function m(e,t,i,r){i&&Object.defineProperty(e,t,{enumerable:i.enumerable,configurable:i.configurable,writable:i.writable,value:i.initializer?i.initializer.call(r):void 0})}function g(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}function h(e,t,i,r,n){var l={};return Object.keys(r).forEach(function(e){l[e]=r[e]}),l.enumerable=!!l.enumerable,l.configurable=!!l.configurable,("value"in l||l.initializer)&&(l.writable=!0),l=i.slice().reverse().reduce(function(i,r){return r(e,t,i)||i},l),n&&void 0!==l.initializer&&(l.value=l.initializer?l.initializer.call(n):void 0,l.initializer=void 0),void 0===l.initializer?(Object.defineProperty(e,t,l),null):l}let v=(r=(0,d.injectable)(),n=(0,d.inject)(u.K["DynamicTypes/GridCell/Textarea"]),l=(0,d.inject)(u.K["DynamicTypes/FieldFilter/String"]),r((o=h((a=class extends c.J{getVersionPreviewComponent(e){return(0,p.SN)(e,!1)}constructor(...e){super(...e),g(this,"id","metadata.textarea"),g(this,"iconName","content"),g(this,"visibleInTypeSelection",!0),m(this,"dynamicTypeGridCellType",o,this),m(this,"dynamicTypeFieldFilterType",s,this)}}).prototype,"dynamicTypeGridCellType",[n],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),s=h(a.prototype,"dynamicTypeFieldFilterType",[l],{configurable:!0,enumerable:!0,writable:!0,initializer:null}),a))||a)},96494(e,t,i){"use strict";i.d(t,{f:()=>c});var r=i(74848),n=i(47867),l=i(6469),a=i(35864),o=i.n(a),s=i(75240),d=i(64910);let c=e=>{let t=e.name[e.name.length-1],{columnDefinition:i,onUpdateCellData:a,convertToManyToManyRelationValue:c,convertToAdvancedManyToManyRelationValue:u}=(0,d.k)(e.columns??[],t,e.value,e.onChange);return((0,n.useEffect)(()=>{},[e.value]),o().isEmpty(e.allowedClassId))?(0,r.jsx)(s.F,{message:"Allowed class definition is missing in field configuration.",type:"warning"}):(0,r.jsx)(l.D,{...e,allowedClasses:[String(e.allowedClassId)],columnDefinition:i,dataObjectsAllowed:!0,onChange:t=>{var i;null==(i=e.onChange)||i.call(e,u(t))},onUpdateCellData:a,value:c(e.value)})}},42139(e,t,i){"use strict";i.d(t,{e:()=>p});var r=i(74848),n=i(47867),l=i(64910),a=i(38798),o=i(89507),s=i(21429),d=i(9735),c=i(18196),u=i(80578);let p=e=>{let t,i=e.name[e.name.length-1],{columnDefinition:p,onUpdateCellData:m,convertToManyToManyRelationValue:g,convertToAdvancedManyToManyRelationValue:h}=(0,l.k)(e.columns??[],i,e.value,e.onChange),{t:v}=(0,s.useTranslation)();return(0,n.useEffect)(()=>{},[e.value]),(0,r.jsx)(a.g,{...e,columnDefinition:[(t=(0,o.createColumnHelper)()).accessor("id",{header:v("relations.id"),size:80}),t.accessor("fullPath",{header:v("relations.reference"),meta:{type:"element",autoWidth:!0,editable:!1,config:(0,d.fo)(!0===e.inherited||!0===e.disabled)},size:200,...(0,c.uI)(e.pathFormatterClass)?{cell:u.v}:{}}),...p,t.accessor("type",{header:v("relations.type"),meta:{type:"translate"},size:150}),t.accessor("subtype",{header:v("relations.subtype"),meta:{type:"translate"},size:150})],dataObjectsAllowed:!0,onChange:t=>{var i;null==(i=e.onChange)||i.call(e,h(t))},onUpdateCellData:m,value:g(e.value)})}},92449(e,t,i){"use strict";i.d(t,{e:()=>b});var r=i(74848),n=i(47867),l=i(83391),a=i(8320),o=i(3171),s=i(88929),d=i(54872),c=i(67342),u=i(57231),p=i(79870),m=i(62451);let g=e=>{let{field:t,noteditable:i,children:l}=e;return(0,n.useMemo)(()=>(0,r.jsx)(s.k,{docked:!1,renderToolStripStart:!1===i&&(0,r.jsx)(d.Z,{children:(0,r.jsx)(p.k,{disallowAdd:e.disallowAdd,disallowDelete:e.disallowDelete,disallowReorder:e.disallowReorder,field:t})}),children:Array.isArray(l)?l.map((n,l)=>(0,r.jsx)(m.e,{combinedFieldNameParent:[...Array.isArray(e.name)?e.name:[e.name]],children:(0,r.jsx)(u.lV.Group,{name:t,children:(0,r.jsx)(c.f,{...n,noteditable:!0===i},t)})},l)):void 0},t),[t,i,l,e.disallowAdd,e.disallowDelete,e.disallowReorder,e.name])};var h=i(2338),v=i(64756);let f=e=>{let{values:t}=(0,a.S)(),i=(0,n.useRef)(0),s=(null==e?void 0:e.maxItems)??0,d=Object.keys(t),c=!0===e.noteditable,u=!0===e.disallowAddRemove,p=s>0&&d.length===s,m=c||p||d.length>0||u,f=(0,n.useMemo)(()=>t.map(()=>`object-block-item-${++i.current}`),[t.length]);return(0,n.useMemo)(()=>(0,r.jsx)(l.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,contentPadding:"none",extra:!m&&(0,r.jsx)(o.X,{}),extraPosition:"start",theme:"default",title:e.title,children:(0,r.jsx)(v.a,{padding:{top:"extra-small"},children:(0,r.jsx)(h.$,{className:"w-full",direction:"vertical",size:"extra-small",children:t.map((t,i)=>(0,r.jsx)("div",{children:(0,r.jsx)(g,{disallowAdd:u||p||c,disallowDelete:u||c,disallowReorder:!0===e.disallowReorder||c,field:i,name:e.name,noteditable:e.noteditable,children:e.children})},f[i]??`object-block-item-${i}`))})})}),[t,e,c,u,p,m])},y=e=>(0,r.jsx)(u.lV.NumberedList,{onChange:e.onChange,value:e.value,children:(0,r.jsx)(f,{...e})}),b=e=>(0,r.jsx)(y,{...e})},32438(e,t,i){"use strict";i.d(t,{x:()=>a});var r=i(74848);i(47867);var n=i(1993),l=i(83499);let a=e=>{let{value:t,onChange:i,maxWidth:a,options:o,...s}=e;return(0,r.jsx)(n.l,{...s,onChange:e=>{null==i||i(e)},options:o,style:{maxWidth:(0,l.x)(a)},value:t})}},34188(e,t,i){"use strict";i.d(t,{g:()=>h});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(80632),o=i(83499),s=i(28083),d=i(73062),c=i(71141),u=i(11354),p=i(35864),m=i.n(p),g=i(52112);let h=e=>{let t=(0,g.C)();return(0,r.jsx)("div",{style:{maxWidth:(0,o.x)(e.width,"numeric"===e.elementType?t.medium:"date"===e.elementType?t.small:t.large)},children:(()=>{if("textarea"===e.elementType)return(0,r.jsx)(s.f,{autoSize:!0,className:e.className,readOnly:!0,value:e.value??""});if("numeric"===e.elementType)return(0,r.jsx)(c.Y,{className:l()("w-full",e.className),readOnly:!0,value:e.value??void 0});if("date"===e.elementType)return(0,r.jsx)(u.l,{className:e.className,disabled:!0,value:e.value??void 0});if("boolean"===e.elementType)return(0,r.jsx)("div",{children:m().isEmpty(e.value)?"false":"true"});if("html"===e.elementType)return(0,r.jsx)(d.h,{html:e.value??""});else return(0,r.jsx)(a.p,{className:e.className,disabled:!0,readOnly:!0,value:e.value??""})})()})}},93470(e,t,i){"use strict";i.d(t,{S:()=>h});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(66026),d=i(20713),c=i(25750),u=i(92428),p=i(29740),m=i(21429);let g=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{checkbox:t` - &.versionFieldItem { - padding: ${i.paddingXXS}px; - background-color: ${i.colorBgContainerDisabled} !important; - border: 1px solid transparent; - } - - &.versionFieldItemHighlight { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${i.colorBorder} !important; - } - `}}),h=e=>{let t=e.value??null,{id:i}=(0,n.useContext)(d.Z),{dataObject:a}=(0,s.A)(i),{t:h}=(0,m.useTranslation)(),{styles:v}=g(),f=!0!==e.disableClearButton&&null!==t&&void 0!==a&&"allowInheritance"in a&&!0===a.allowInheritance&&!0!==e.disabled;return(0,r.jsxs)(c.s,{className:o()(v.checkbox,e.className),gap:"extra-small",children:[(0,r.jsx)(u.S,{...e,checked:t??!1,onChange:t=>{var i;let r=!!t.nativeEvent.target.checked;null==(i=e.onChange)||i.call(e,r??null)}}),f&&(0,r.jsx)(l.Tooltip,{title:h("set-to-null"),children:(0,r.jsx)(p.K,{icon:{value:"trash"},onClick:()=>{var t;null==(t=e.onChange)||t.call(e,null)}})})]})}},80754(e,t,i){"use strict";i.d(t,{j:()=>_});var r=i(74848),n=i(47867),l=i(21429),a=i(88286),o=i(30492),s=i(25750),d=i(81898);let c=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{titleIcon:t` - &.anticon { - margin-right: 0 !important; - } - `}});var u=i(89507),p=i(68710),m=i(35864),g=i(29740),h=i(13755),v=i(64756);let f=e=>{let{isFetching:t,refetch:i}=e;return t?(0,r.jsx)(v.a,{padding:{x:"small"},children:(0,r.jsx)(h.t,{})}):(0,r.jsx)(g.K,{icon:{value:"refresh"},onClick:async()=>{i()}})};var y=i(75525);let b=e=>{let{page:t,setPage:i,pageSize:n,setPageSize:a,totalItems:o}=e,{t:s}=(0,l.useTranslation)();return(0,r.jsx)(y.d,{current:t,defaultPageSize:n,onChange:(e,t)=>{i(e),a(parseInt(t))},pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>s("pagination.show-total",{total:e}),total:o})};var x=i(62461),j=i(96940),w=i(39808),C=i(91206),S=i(67914),T=i(14013),I=i(27994),k=i(49546),E=i(96511),D=i(57930),N=i(45725);let P=e=>{let{tabId:t,queryHook:i,queryArgs:a,columns:o}=e,{getSearchValue:s,setSearchValue:d,closeModal:c,currentLayoutData:u,updateCurrentLayoutData:p}=(0,k.B)(),{operations:g,values:h}=(0,D.y)(),{activeGroups:y,groupCollectionMapping:P,...A}=h,{t:F}=(0,l.useTranslation)(),[$,M]=(0,n.useState)(s(t)),[O,_]=(0,n.useState)(s(t)),[L,R]=(0,n.useState)(1),[B,z]=(0,n.useState)(10),[V,G]=(0,n.useState)(void 0),[U,q]=(0,n.useState)(!1),W=t===E.X.GroupByKey,{isLoading:K,data:H,isFetching:X,refetch:J}=i({...a,page:L,pageSize:B,searchTerm:$},{refetchOnMountOrArgChange:!0}),[Z]=(0,N.eH)(),[Y]=(0,N.H8)(),Q=async e=>await Z({objectId:a.objectId,fieldName:a.fieldName,collectionId:parseInt(e)}).unwrap(),ee=async e=>await Y({objectId:a.objectId,fieldName:a.fieldName,groupId:parseInt(e)}).unwrap(),et=async()=>{let e=Object.keys(V??{}),i={},r={},n=[];for(let l of e){if(t===E.X.Collection){let e=Q(l).then(e=>((null==e?void 0:e.groups)??[]).filter(e=>{let t=!(0,m.has)(A,String(e.id));return t&&(g.add(String(null==e?void 0:e.id),{}),i[e.id]=!0,r[e.id]=parseInt(l),q(!0)),t}));n.push(e)}if(t===E.X.Group){let e=ee(l).then(e=>(0,m.has)(A,String(null==e?void 0:e.id))?[]:(g.add(String(null==e?void 0:e.id),{}),i[null==e?void 0:e.id]=!0,r[null==e?void 0:e.id]=null,q(!0),[e]));n.push(e)}if(t===E.X.GroupByKey){let e=ee(l.split("-")[0]).then(e=>(0,m.has)(A,String(null==e?void 0:e.id))?[]:(g.add(String(null==e?void 0:e.id),{}),i[null==e?void 0:e.id]=!0,r[null==e?void 0:e.id]=null,q(!0),[e]));n.push(e)}}let l=(await Promise.all(n)).flat();p([...u,...(0,m.uniqBy)(l,"id")]);let a={...h.activeGroups,...i},o={...h.groupCollectionMapping,...r};g.update("activeGroups",a,!1),g.update("groupCollectionMapping",o,!1),q(!1),c()};return(0,r.jsx)(w.U,{loading:U,children:(0,r.jsx)(C.s,{renderToolbar:(0,r.jsxs)(j.M,{borderStyle:"primary",theme:"secondary",children:[(0,r.jsxs)(x.B,{size:"extra-small",children:[(0,r.jsx)(f,{isFetching:X,refetch:J}),(0,r.jsx)(b,{page:L,pageSize:B,setPage:R,setPageSize:z,totalItems:(null==H?void 0:H.totalItems)??0})]}),(0,r.jsx)(I.$,{disabled:K,onClick:et,type:"primary",children:F("common.apply-selection")})]}),renderTopBar:(0,r.jsx)(j.M,{borderStyle:"primary",padding:{top:"extra-small",bottom:"extra-small",left:"none",right:"none"},position:"top",size:"auto",theme:"secondary",children:(0,r.jsx)(S.D,{maxWidth:"100%",onChange:e=>{_(e.target.value)},onSearch:e=>{d(t,e),M(e)},value:O})}),children:(0,r.jsx)(v.a,{padding:{top:"small",bottom:"small"},children:(0,r.jsx)(T.x,{columns:o,data:(null==H?void 0:H.items)??[],enableMultipleRowSelection:!0,isLoading:K,onSelectedRowsChange:e=>{G(e)},selectedRows:V,setRowId:e=>W&&!(0,m.isUndefined)(e.groupId)?`${e.groupId}-${e.keyId}`:e.id})})})})};var A=i(74003);let F=e=>{let{tabId:t,queryHook:i,queryArgs:a,columns:o}=e,{getSearchValue:s,setSearchValue:d,closeModal:c}=(0,k.B)(),{fireUpdateEvent:u}=(0,A._P)({}),{t:p}=(0,l.useTranslation)(),[g,h]=(0,n.useState)(s(t)),[y,D]=(0,n.useState)(s(t)),[P,F]=(0,n.useState)(1),[$,M]=(0,n.useState)(10),[O,_]=(0,n.useState)(void 0),[L,R]=(0,n.useState)(!1),B=t===E.X.GroupByKey,{isLoading:z,data:V,isFetching:G,refetch:U}=i({...a,page:P,pageSize:$,searchTerm:g},{refetchOnMountOrArgChange:!0}),[q]=(0,N.TW)(),W=async(e,t)=>await q({fieldName:a.fieldName,keyId:parseInt(e),groupId:t}).unwrap(),K=async()=>{let e=Object.keys(O??{}),i=[];for(let r of e){if(t===E.X.Collection)throw Error("Collections are not supported in callback version");if(t===E.X.Group)throw Error("Groups are not supported in callback version");if(t===E.X.GroupByKey){let e=r.split("-")[1],t=parseInt(r.split("-")[0]),n=W(e,t).then(e=>({...e,groupId:t}));i.push(n)}}u({type:t,data:await Promise.all(i)}),R(!1),c()};return(0,r.jsx)(w.U,{loading:L,children:(0,r.jsx)(C.s,{renderToolbar:(0,r.jsxs)(j.M,{borderStyle:"primary",theme:"secondary",children:[(0,r.jsxs)(x.B,{size:"extra-small",children:[(0,r.jsx)(f,{isFetching:G,refetch:U}),(0,r.jsx)(b,{page:P,pageSize:$,setPage:F,setPageSize:M,totalItems:(null==V?void 0:V.totalItems)??0})]}),(0,r.jsx)(I.$,{disabled:z,onClick:K,type:"primary",children:p("common.apply-selection")})]}),renderTopBar:(0,r.jsx)(j.M,{borderStyle:"primary",padding:{top:"extra-small",bottom:"extra-small",left:"none",right:"none"},position:"top",size:"auto",theme:"secondary",children:(0,r.jsx)(S.D,{maxWidth:"100%",onChange:e=>{D(e.target.value)},onSearch:e=>{d(t,e),h(e)},value:y})}),children:(0,r.jsx)(v.a,{padding:{top:"small",bottom:"small"},children:(0,r.jsx)(T.x,{columns:o,data:(null==V?void 0:V.items)??[],enableMultipleRowSelection:!0,isLoading:z,onSelectedRowsChange:e=>{_(e)},selectedRows:O,setRowId:e=>B&&!(0,m.isUndefined)(e.groupId)?`${e.groupId}-${e.keyId}`:e.id})})})})},$=e=>{let t=(0,u.createColumnHelper)(),i=void 0!==(0,A.G3)({}),{t:n}=(0,l.useTranslation)(),a=[t.accessor("id",{header:n("classification-store.column.id")}),t.accessor("name",{header:n("classification-store.column.name")}),t.accessor("description",{header:n("classification-store.column.description")})];return(0,r.jsxs)(r.Fragment,{children:[i&&(0,r.jsx)(F,{columns:a,queryArgs:{storeId:e.storeId,classId:e.classId,fieldName:e.fieldName},queryHook:p.IX,tabId:E.X.Collection}),!i&&(0,r.jsx)(P,{columns:a,queryArgs:{storeId:e.storeId,classId:e.classId,objectId:e.objectId,fieldName:e.fieldName},queryHook:p.IX,tabId:E.X.Collection})]})},M=e=>{let t=(0,u.createColumnHelper)(),i=void 0!==(0,A.G3)({}),{t:n}=(0,l.useTranslation)(),a=[t.accessor("id",{header:n("classification-store.column.id")}),t.accessor("name",{header:n("classification-store.column.name")}),t.accessor("description",{header:n("classification-store.column.description")})];return(0,r.jsxs)(r.Fragment,{children:[i&&(0,r.jsx)(F,{columns:a,queryArgs:{storeId:e.storeId,classId:e.classId,fieldName:e.fieldName},queryHook:p.b5,tabId:E.X.Group}),!i&&(0,r.jsx)(P,{columns:a,queryArgs:{storeId:e.storeId,classId:e.classId,objectId:e.objectId,fieldName:e.fieldName},queryHook:p.b5,tabId:E.X.Group})]})},O=e=>{let t=(0,u.createColumnHelper)(),i=void 0!==(0,A.G3)({}),{t:n}=(0,l.useTranslation)(),a=[t.accessor(e=>`${e.groupId}-${e.keyId}`,{id:"groupId-keyId",header:n("classification-store.column.id")}),t.accessor("groupName",{header:n("classification-store.column.group")}),t.accessor("keyName",{header:n("classification-store.column.name")}),t.accessor("keyDescription",{header:n("classification-store.column.description")})];return(0,r.jsxs)(r.Fragment,{children:[i&&(0,r.jsx)(F,{columns:a,queryArgs:{storeId:e.storeId,classId:e.classId,fieldName:e.fieldName},queryHook:p.Y0,tabId:E.X.GroupByKey}),!i&&(0,r.jsx)(P,{columns:a,queryArgs:{storeId:e.storeId,classId:e.classId,objectId:e.objectId,fieldName:e.fieldName},queryHook:p.Y0,tabId:E.X.GroupByKey})]})},_=e=>{let{storeId:t,classId:i,fieldName:n,allowedTabs:u=[E.X.Collection,E.X.Group,E.X.GroupByKey]}=e,{isOpenModal:p,closeModal:m}=(0,k.B)(),{t:g}=(0,l.useTranslation)(),{styles:h}=c(),v={storeId:t,classId:i,objectId:e.objectId,fieldName:n},f=e=>{let{iconValue:t,titleKeyValue:i}=e;return(0,r.jsxs)(s.s,{align:"center",gap:"mini",children:[(0,r.jsx)(d.I,{className:h.titleIcon,value:t}),(0,r.jsx)("div",{children:g(`classification-store.${i}`)})]})},y=[...u.includes(E.X.Collection)?[{label:f({iconValue:"keyboard",titleKeyValue:"collection"}),key:"collection",children:(0,r.jsx)($,{...v})}]:[],...u.includes(E.X.Group)?[{label:f({iconValue:"keys",titleKeyValue:"group"}),key:"group",children:(0,r.jsx)(M,{...v})}]:[],...u.includes(E.X.GroupByKey)?[{label:f({iconValue:"key",titleKeyValue:"group-by-key"}),key:"group-by-key",children:(0,r.jsx)(O,{...v})}]:[]];return(0,r.jsx)(r.Fragment,{children:p&&(0,r.jsx)(o.a,{closable:!0,footer:null,onCancel:m,open:p,size:"XL",children:(0,r.jsx)(a.t,{destroyInactiveTabPane:!0,items:y,noTabBarMargin:!0})})})}},74003(e,t,i){"use strict";i.d(t,{E:()=>d,G3:()=>p,K7:()=>c,_P:()=>u});var r=i(74848),n=i(47867),l=i.n(n),a=i(80754),o=i(61908),s=i(73994);let d=(0,n.createContext)(void 0),c=e=>{let{children:t}=e,[i,l]=(0,n.useState)(void 0),[s,c]=(0,n.useState)(()=>()=>{}),u=e=>{void 0!==s&&s({...e,modalContext:i})};return(0,n.useMemo)(()=>(0,r.jsx)(o.A,{children:(0,r.jsxs)(d.Provider,{value:{modalContext:i,setModalContext:l,fireUpdateEvent:u,dataChangeEvent:s,setDataChangeEvent:c},children:[t,void 0!==i&&(0,r.jsx)(a.j,{...i})]})}),[i,t])},u=e=>{let t=l().useContext(d),i=(0,s.A)();if((0,n.useEffect)(()=>{void 0!==t&&t.setDataChangeEvent(()=>null==e?void 0:e.onUpdate)},[t,null==e?void 0:e.onUpdate]),void 0===t)throw Error("useClassificationStoreModal must be used within a ClassificationStoreModalProvider");return{openModal:e=>{t.setModalContext(e),i.openModal()},closeModal:()=>{t.setModalContext(void 0),i.closeModal()},fireUpdateEvent:t.fireUpdateEvent}},p=e=>{let t=l().useContext(d),i=(0,s.A)(),{onUpdate:r}=e;if((0,n.useEffect)(()=>{void 0!==t&&t.setDataChangeEvent(()=>r)},[t,r]),void 0!==t)return{openModal:e=>{t.setModalContext(e),i.openModal()},closeModal:()=>{t.setModalContext(void 0),i.closeModal()},fireUpdateEvent:t.fireUpdateEvent}}},61908(e,t,i){"use strict";i.d(t,{A:()=>a,F:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t}=e,[i,a]=(0,n.useState)(!1),[o,s]=(0,n.useState)({}),[d,c]=(0,n.useState)([]),u=(0,n.useCallback)(e=>o[e]??"",[o]),p=(0,n.useCallback)((e,t)=>{s(i=>({...i,[e]:t}))},[]),m=()=>{a(!0)},g=()=>{a(!1)},h=(0,n.useMemo)(()=>({isOpen:i,open:m,close:g,getSearchValue:u,setSearchValue:p,currentLayoutData:d,setCurrentLayoutData:c}),[u,p,i,m,g,d,c]);return(0,r.jsx)(l.Provider,{value:h,children:t})}},25491(e,t,i){"use strict";i.d(t,{N:()=>c});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(25750),s=i(86569);let d=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{consent:t` - &.versionFieldItem { - padding: ${i.paddingXXS}px; - background-color: ${i.colorBgContainerDisabled} !important; - border: 1px solid transparent; - } - - &.versionFieldItemHighlight { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${i.colorBorder} !important; - } - `}}),c=e=>{let[t,i]=(0,n.useState)(e.value??null),{styles:l}=d(),c=null!==t?t.noteContent??"":"";return(0,n.useEffect)(()=>{void 0!==e.onChange&&e.onChange(t)},[t]),(0,r.jsxs)(o.s,{align:"center",className:a()(l.consent,e.className),gap:"small",children:[(0,r.jsx)(s.Checkbox,{checked:null==t?void 0:t.consent,disabled:e.disabled,onChange:e=>{i({consent:e.target.checked})}}),c.length>0&&(0,r.jsxs)("span",{children:["(",c,")"]})]})}},2034(e,t,i){"use strict";i.d(t,{$:()=>x});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(86052),o=i(25750),s=i(86569),d=i(29740),c=i(95112),u=i(21429),p=i(83499),m=i(35864),g=i(52112);let h=e=>{let{t}=(0,u.useTranslation)(),i=(0,g.C)(),n=""===e.value||void 0===e.value,l=(0,p.x)(e.inputWidth),a=[(0,r.jsx)(s.Tooltip,{title:t("open"),children:(0,r.jsx)(d.K,{disabled:n,icon:{value:"open-folder"},onClick:()=>{window.open(e.value,"_blank")}})},"external-image-open-url")];return!0!==e.disabled&&a.push((0,r.jsx)(s.Tooltip,{title:t("set-to-null"),children:(0,r.jsx)(d.K,{disabled:(0,m.isEmpty)(e.value),icon:{value:"trash"},onClick:()=>{e.onChange(void 0)}})},"external-image-delete")),(0,r.jsxs)(o.s,{className:"w-full",gap:"extra-small",children:[(0,r.jsx)(s.Input,{disabled:e.disabled,onChange:t=>{e.onChange(t.target.value)},placeholder:e.placeholder,style:{maxWidth:(0,p.x)(l,i.large),width:(0,p.x)(l,i.large)},value:e.value}),(0,r.jsx)(c.e,{items:a,noSpacing:!0})]})};var v=i(94313),f=i(9199);let y=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{image:i` - &.versionFieldItem { - border-color: ${t.colorBorderSecondary} !important; - } - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${t.colorBorder} !important; - } - `}});var b=i(18196);let x=e=>{let t=e.value??null,{t:i}=(0,u.useTranslation)(),n=(0,g.C)(),{useToken:o}=s.theme,{token:d}=o(),{styles:c}=y(),x=Math.max(e.previewWidth??300,70),j=Math.max(e.previewHeight??150,70),w=(0,m.isNil)(e.inputWidth)&&x{var i;let r=""!==t&&void 0!==t?t:null;null==(i=e.onChange)||i.call(e,null===r?null:{url:r})},placeholder:(0,b.Po)(null==t?void 0:t.url)?"URL":void 0,value:(null==t?void 0:t.url)??void 0},"external-image-footer"),style:{maxWidth:(0,p.x)(w)},children:null===t||(0,m.isEmpty)(null==t?void 0:t.url)?(0,r.jsx)(v.C,{height:j,title:i(!0===e.disabled?"empty-image":"external-image.preview-placeholder"),width:x}):(0,r.jsx)(f.k,{height:j,src:null==t?void 0:t.url,width:x})})})}},28472(e,t,i){"use strict";i.d(t,{Z:()=>k});var r=i(74848),n=i(47867),l=i(57231),a=i(83391),o=i(8320),s=i(88929),d=i(24449),c=i(35864),u=i(39808),p=i(67342),m=i(29740),g=i(62461),h=i(54872),v=i(99154),f=i(2338),y=i(21429);let b=e=>{let{field:t,allowedTypes:i,disallowAdd:n,disallowDelete:l,disallowReorder:a,layoutDefinition:s}=e,{operations:c}=(0,o.S)(),u=(0,d.U)(),{t:p}=(0,y.useTranslation)(),b=c.getValue([t,"type"]),x=i.map((e,t)=>{var i,r,n,l,a,o;return{key:t,label:(null==u||null==(n=u.data)||null==(r=n.items)||null==(i=r.find(t=>t.key===e))?void 0:i.title)===""?e:p(null==u||null==(o=u.data)||null==(a=o.items)||null==(l=a.find(t=>t.key===e))?void 0:l.title),onClick:t=>{t.domEvent.stopPropagation(),c.add({type:e})}}});return(0,r.jsx)(h.Z,{title:""===s.title||void 0===s.title?b:p(s.title),children:(0,r.jsxs)(g.B,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,r.jsxs)(f.$,{size:"mini",children:[(0,r.jsx)(v.m,{disabled:n,menu:{items:x},children:(0,r.jsx)(m.K,{icon:{value:"new"},size:"small"})}),(0,r.jsx)(m.K,{disabled:a,icon:{value:"chevron-down"},onClick:()=>{c.move(t,t+1)},size:"small"}),(0,r.jsx)(m.K,{disabled:a,icon:{value:"chevron-up"},onClick:()=>{c.move(t,t-1)},size:"small"})]}),(0,r.jsx)(m.K,{disabled:l,icon:{value:"trash"},onClick:()=>{c.remove(t)},size:"small"})]})})};var x=i(86569),j=i(62451);let w=e=>{let{field:t,noteditable:i}=e,a=(0,d.U)(),{operations:m}=(0,o.S)(),g=m.getValue([t,"type"]);if((0,c.isEmpty)(g)||(0,c.isEmpty)(a))throw Error("FieldCollection or type is empty");return(0,n.useMemo)(()=>{let{data:n,isLoading:o}=a;if(!0===o)return(0,r.jsx)(u.U,{loading:!0});let d=n.items.find(e=>e.key===g);if(void 0===d)throw Error(`Field collection layout definition for type ${g} not found`);return(0,r.jsxs)(s.k,{docked:e.docked,renderToolStripStart:(0,r.jsx)(b,{allowedTypes:e.allowedTypes,disallowAdd:null==e?void 0:e.disallowAdd,disallowDelete:null==e?void 0:e.disallowDelete,disallowReorder:null==e?void 0:e.disallowReorder,field:t,layoutDefinition:d}),children:[(0,r.jsx)(l.lV.Item,{name:[t,"type"],style:{display:"none"},children:(0,r.jsx)(x.Input,{type:"hidden",value:g})}),(0,r.jsx)(l.lV.Group,{name:[t,"data"],children:d.children.map((t,n)=>(0,r.jsx)(j.e,{combinedFieldNameParent:[...Array.isArray(e.name)?e.name:[e.name],g],children:(0,r.jsx)(p.f,{...t,noteditable:i})},n))})]},t)},[t,null==e?void 0:e.disallowAdd,i,a,g,e.docked,e.allowedTypes])};var C=i(27820);let S=e=>{let{allowedTypes:t}=e,{operations:i}=(0,o.S)(),{t:n}=(0,y.useTranslation)(),l=(0,d.U)(),a=t.map(e=>{var t,r,a,o,s,d,c,u;return{key:e,label:(null==l||null==(a=l.data)||null==(r=a.items)||null==(t=r.find(t=>t.key===e))?void 0:t.title)===""||(null==l||null==(d=l.data)||null==(s=d.items)||null==(o=s.find(t=>t.key===e))?void 0:o.title)===void 0?e:n(null==l||null==(u=l.data)||null==(c=u.items)?void 0:c.find(t=>t.key===e).title),onClick:t=>{t.domEvent.stopPropagation(),i.add({type:e})}}});return(0,r.jsx)(v.m,{menu:{items:a},children:(0,r.jsx)(C.J,{icon:{value:"new"},onClick:e=>{e.stopPropagation()},children:n("add")})})};var T=i(64756);let I=e=>{let{values:t}=(0,o.S)(),i=(null==e?void 0:e.maxItems)??0,l=Object.keys(t),s=!0===e.noteditable,d=!0===e.disallowAddRemove,c=i>0&&l.length===i,u=s||c||l.length>0||d;return(0,n.useMemo)(()=>(0,r.jsx)(a.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,contentPadding:"none",extra:!u&&(0,r.jsx)(S,{allowedTypes:e.allowedTypes}),extraPosition:"start",theme:"default",title:e.title,children:(0,r.jsx)(T.a,{padding:{top:"extra-small"},children:(0,r.jsx)(f.$,{className:"w-full",direction:"vertical",size:"extra-small",children:t.map((t,i)=>(0,r.jsx)("div",{children:(0,r.jsx)(w,{allowedTypes:e.allowedTypes,disallowAdd:!0===e.disallowAddRemove||c||s,disallowDelete:!0===e.disallowAddRemove||s,disallowReorder:!0===e.disallowReorder||s,docked:!0===e.border,field:i,name:e.name,noteditable:e.noteditable})},i))})})}),[t])},k=e=>{let{border:t=!1,...i}=e;return(0,r.jsx)(l.lV.NumberedList,{onChange:i.onChange,value:i.value,children:(0,r.jsx)(I,{...i})})}},15925(e,t,i){"use strict";i.d(t,{Q:()=>d,o:()=>s});var r=i(74848),n=i(47867),l=i(15623),a=i(7334),o=i(39808);let s=(0,n.createContext)(null),d=e=>{let{children:t,id:i}=e,{id:n}=(0,a.J)(),d=(0,l.LW)({objectId:i??n}),{isLoading:c}=d;return c?(0,r.jsx)(o.U,{loading:!0}):(0,r.jsx)(s.Provider,{value:d,children:t})}},24449(e,t,i){"use strict";i.d(t,{U:()=>l});var r=i(47867),n=i(15925);let l=()=>(0,r.useContext)(n.o)},56264(e,t,i){"use strict";i.d(t,{d:()=>O});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(86052),s=i(29740),d=i(35864),c=i.n(d),u=i(86569),p=i(21429),m=i(95112),g=i(76497),h=i(99154),v=i(81898);let f=e=>!(0,d.isEmpty)(null==e?void 0:e.hotspots)||!(0,d.isEmpty)(null==e?void 0:e.marker);var y=i(50174),b=i(60583),x=i(24755),j=i(72636);let w=e=>{var t,i;let{t:n}=(0,p.useTranslation)(),{openAsset:l}=(0,g.G)(),a=(0,y.J)(),o=async()=>{e.setValue({...e.value,hotspots:[],marker:[]}),await a.success(n("hotspots.data-cleared"))},c=[(0,r.jsx)(u.Tooltip,{title:n("open"),children:(0,r.jsx)(s.K,{disabled:(0,d.isEmpty)(e.value),icon:{value:"open-folder"},onClick:()=>{var t,i;"number"==typeof(null==(i=e.value)||null==(t=i.image)?void 0:t.id)&&l({config:{id:e.value.image.id}})}})},"open")];return!0!==e.disabled&&(c.push((0,r.jsx)(b.Q,{elementSelectorConfig:{selectionType:j.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["image"]}},onFinish:t=>{(0,d.isEmpty)(t.items)||e.replaceImage({type:x.W.asset,id:t.items[0].data.id})}}})),c.push((0,r.jsx)(u.Tooltip,{title:n("empty"),children:(0,r.jsx)(s.K,{disabled:(0,d.isEmpty)(e.value)||e.disabled,icon:{value:"trash"},onClick:e.emptyValue})},"empty"))),(0,d.isNumber)(null==(i=e.value)||null==(t=i.image)?void 0:t.id)&&c.push((0,r.jsx)(h.m,{menu:{items:[{label:n("crop"),key:"crop",icon:(0,r.jsx)(v.I,{value:"crop"}),onClick:async()=>{e.setCropModalOpen()}},{label:n(!0===e.disabled?"hotspots.show":"hotspots.edit"),key:"hotspots-edit",icon:(0,r.jsx)(v.I,{value:"new-marker"}),onClick:async()=>{e.setMarkerModalOpen()}},{hidden:!0===e.disabled||!f(e.value),label:n("hotspots.clear-data"),key:"clear-data",icon:(0,r.jsx)(v.I,{value:"remove-marker"}),onClick:o},{hidden:!0===e.disabled||void 0===e.onSearch,label:n("search"),key:"search",icon:(0,r.jsx)(v.I,{value:"search"}),onClick:()=>{var t;return null==(t=e.onSearch)?void 0:t.call(e)}},{hidden:!0===e.disabled||void 0===e.onUpload,label:n("upload"),key:"upload",icon:(0,r.jsx)(v.I,{value:"upload-cloud"}),onClick:()=>{var t;return null==(t=e.onUpload)?void 0:t.call(e)}}]},placement:"topLeft",trigger:["click"],children:(0,r.jsx)(s.K,{icon:{value:"more"},onClick:e=>{e.stopPropagation()}})},"more")),(0,r.jsx)(m.e,{items:c,noSpacing:!0})};var C=i(94313),S=i(20597),T=i(9199),I=i(94902);let k=(0,n.forwardRef)(function(e,t){let{assetId:i,height:n,width:l,value:a,onChange:o,markerModalOpen:s,setMarkerModalOpen:d,disabled:u,ratioX:p,ratioY:m}=e;return(0,r.jsx)("div",{ref:t,children:(0,r.jsx)(T.k,{assetId:i,height:n,onHotspotsDataButtonClick:c().isEmpty(a.hotspots)&&c().isEmpty(a.marker)?void 0:()=>{d(i,(0,I.N)(a.hotspots??[],a.marker??[]),a.crop)},thumbnailSettings:a.crop??void 0,width:l})})});var E=i(43565),D=i(83499);let N=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{image:i` - &.versionFieldItem { - border-color: ${t.colorBorderSecondary} !important; - } - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${t.colorBorder} !important; - } - `}});var P=i(71836),A=i(84e3),F=i(25886),$=i(90011),M=i(94685);let O=e=>{let t=e.value??null,{confirm:i}=(0,E.Vl)(),{t:l}=(0,p.useTranslation)(),{styles:s}=N(),{triggerUpload:u}=(0,$.w)({}),{openModal:m}=(0,P.j)({disabled:e.disabled,ratioX:e.ratioX,ratioY:e.ratioY,onChange:e=>{var i;(0,d.isNil)(null==t||null==(i=t.image)?void 0:i.id)||b({...t,crop:e??{}})}}),{openModal:g}=(0,A.t)({disabled:e.disabled,predefinedDataTemplates:e.predefinedDataTemplates,onChange:e=>{var i;if(!(0,d.isNil)(null==t||null==(i=t.image)?void 0:i.id)){let{hotspots:i,marker:r}=(0,I.s)(e);b({...t,hotspots:i,marker:r})}}}),{open:h}=(0,M.L)({selectionType:j.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["image"]}},onFinish:e=>{(0,d.isEmpty)(e.items)||O({type:"asset",id:e.items[0].data.id})}}),v=(0,n.useCallback)(()=>{u({targetFolderPath:e.uploadPath??"",accept:"image/*",multiple:!1,maxItems:1,onSuccess:async e=>{e.length>0&&O({type:"asset",id:e[0].id})}})},[u]),y=async e=>{O({type:"asset",id:e.id})},b=i=>{if(!c().isEqual(i,t)){var r;null==(r=e.onChange)||r.call(e,i)}},x=(0,D.x)(e.width,300),T=(0,D.x)(e.height,150),O=e=>{f(t)?i({title:l("hotspots.clear-data"),content:l("hotspots.clear-data.dnd-message"),okText:l("yes"),cancelText:l("no"),onOk:()=>{_(e,!0)},onCancel:()=>{_(e,!1)}}):_(e,!0)},_=(e,i)=>{let r=null===t?{image:null,hotspots:[],marker:[],crop:{}}:{...t};b(r=i?{image:e,hotspots:[],marker:[],crop:{}}:{...r,crop:{},image:e})};return(0,r.jsx)(o.Z,{className:a()("max-w-full",s.image,e.className),fitContent:!0,footer:(0,r.jsx)(w,{disabled:e.disabled,emptyValue:()=>{var t;null==(t=e.onChange)||t.call(e,null)},onSearch:h,onUpload:v,replaceImage:O,setCropModalOpen:()=>{var e;(0,d.isNil)(null==t||null==(e=t.image)?void 0:e.id)||m(t.image.id,t.crop)},setMarkerModalOpen:()=>{var e;if(!(0,d.isNil)(null==t||null==(e=t.image)?void 0:e.id)){let e=(0,I.N)(t.hotspots??[],t.marker??[]);g(t.image.id,e,t.crop)}},setValue:b,value:t},"image-footer"),children:(0,r.jsx)(F.V,{accept:"image/*",assetType:"image",disabled:e.disabled,onSuccess:y,targetFolderPath:e.uploadPath??"",children:(0,r.jsx)(S.g,{isValidContext:t=>!0!==e.disabled,isValidData:e=>"asset"===e.type&&"image"===e.data.type,onDrop:e=>{O({type:"asset",id:e.data.id})},variant:"outline",children:null!==t&&(null==t?void 0:t.image)!==null?(0,r.jsx)(k,{assetId:t.image.id,disabled:e.disabled,height:T,markerModalOpen:!1,onChange:b,ratioX:(0,d.isNil)(e.ratioX)?void 0:Number(e.ratioX),ratioY:(0,d.isNil)(e.ratioY)?void 0:Number(e.ratioY),setMarkerModalOpen:g,value:t,width:x}):(0,r.jsx)(C.C,{dndIcon:!0!==e.disabled,height:T,onSearch:h,onUpload:v,title:l(!0===e.disabled?"empty-image":"image.upload.add.and.dnd"),width:x})})})})}},30285(e,t,i){"use strict";i.d(t,{i:()=>B});var r=i(74848),n=i(47867),l=i(21429),a=i(8651),o=i.n(a),s=i(35864),d=i(86569),c=i(88754),u=i(41834),p=i(25750),m=i(20597),g=i(94313),h=i(94685),v=i(72636);let f=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{imageGallery:i` - &.versionFieldItem { - border-color: ${t.colorBorderSecondary} !important; - } - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${t.colorBorder} !important; - } - `,imageItem:i` - max-width: 100%; - `}});var y=i(87632),b=i(25886),x=i(90011);let j=e=>{let{index:t,value:i,setValue:a,disabled:o,width:d,height:c,uploadPath:u}=e,{styles:p}=f(),{t:j}=(0,l.useTranslation)(),{triggerUpload:w}=(0,x.w)({}),{open:C}=(0,h.L)({selectionType:v.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["image"]}},onFinish:e=>{if(!(0,s.isEmpty)(e.items)){let r=[...i];r[t]={image:{type:"asset",id:e.items[0].data.id},hotspots:[],marker:[],crop:{}},a(r)}}}),S=async e=>{let r=[...i];r[t]={image:{type:"asset",id:e.id},hotspots:[],marker:[],crop:{}},a(r)},T=(0,n.useCallback)(()=>{w({targetFolderPath:u??"",accept:"image/*",multiple:!1,maxItems:1,onSuccess:async e=>{if(e.length>0){let r=[...i];r[t]={image:{type:"asset",id:e[0].id},hotspots:[],marker:[],crop:{}},a(r)}}})},[w]);return(0,r.jsx)(b.V,{accept:"image/*",assetType:"image",disabled:o,onSuccess:S,targetFolderPath:u??"",children:(0,r.jsx)(m.g,{className:p.imageItem,disabled:o,isValidContext:e=>(0,y.Hy)(e.type),isValidData:e=>"asset"===e.type&&"image"===e.data.type,onDrop:e=>{let r=[...i];r[t]={image:{type:"asset",id:e.data.id},hotspots:[],marker:[],crop:{}},a(r)},variant:"outline",children:(0,r.jsx)(g.C,{dndIcon:!0!==o,height:c,onRemove:void 0===i[t]?void 0:()=>{let e=[...i];e.splice(t,1),a(e)},onSearch:C,onUpload:T,title:j(!0===o?"empty":"image.add.and.dnd"),width:d})})})};var w=i(86052),C=i(29740),S=i(74979),T=i(9199),I=i(81898),k=i(76497),E=i(94902),D=i(50174),N=i(43565),P=i(24755),A=i(71836),F=i(84e3);let $=e=>{let{item:t,index:i,value:a,setInternalValue:o,setValue:d,disabled:c,width:u,height:p,ratioX:g,ratioY:f,predefinedDataTemplates:y,uploadPath:j}=e,{t:w}=(0,l.useTranslation)(),{openAsset:C}=(0,k.G)(),S=(0,D.J)(),{confirm:$}=(0,N.Vl)(),{triggerUpload:M}=(0,x.w)({}),{openModal:O}=(0,A.j)({disabled:c,ratioX:g,ratioY:f,onChange:e=>{var r;(0,s.isNil)(null==(r=t.image)?void 0:r.id)||d(a.map((t,r)=>r===i?{...t,crop:e??{}}:t))}}),{openModal:_}=(0,F.t)({disabled:c,predefinedDataTemplates:y,onChange:e=>{let{hotspots:t,marker:r}=(0,E.s)(e);d(a.map((e,n)=>n===i?{...e,hotspots:t,marker:r}:e))}}),{open:L}=(0,h.L)({selectionType:v.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["image"]}},onFinish:e=>{(0,s.isEmpty)(e.items)||z({type:P.W.asset,id:e.items[0].data.id})}}),R=async()=>{d(a.map((e,t)=>t===i?{...e,hotspots:[],marker:[]}:e)),await S.success(w("hotspots.data-cleared"))},B=e=>!(0,s.isEmpty)(a[e].hotspots)||!(0,s.isEmpty)(a[e].marker),z=e=>{B(i)?$({title:w("hotspots.clear-data"),content:w("hotspots.clear-data.dnd-message"),okText:w("yes"),cancelText:w("no"),onOk:()=>{V(i,e,!0)},onCancel:()=>{V(i,e,!1)}}):V(i,e,!0)},V=(e,t,i)=>{let r=[...a];i?r[e]={image:t,hotspots:[],marker:[],crop:{}}:r[e]={...r[e],crop:{},image:t},d(r)},G=()=>{var e;if(!(0,s.isNil)(null==(e=t.image)?void 0:e.id)){let e=(0,E.N)(t.hotspots??[],t.marker??[]);_(t.image.id,e,t.crop)}},U=async e=>{V(i,e,!0)},q=(0,n.useCallback)(()=>{M({targetFolderPath:j??"",accept:"image/*",multiple:!1,maxItems:1,onSuccess:async e=>{e.length>0&&V(i,e[0],!0)}})},[M]);return(0,r.jsx)(b.V,{accept:"image/*",assetType:"image",disabled:c,onSuccess:U,targetFolderPath:j??"",children:(0,r.jsx)(m.g,{isValidContext:e=>!0!==c&&(void 0!==e.sortable||"asset"===e.type||"document"===e.type||"data-object"===e.type||"unknown"===e.type),isValidData:e=>void 0!==e.sortable||"unknown"===e.type||"asset"===e.type&&"image"===e.data.type||"unknown"===e.type,onDrop:e=>{z({type:"asset",id:e.data.id})},variant:"outline",children:(0,r.jsx)(T.k,{assetId:t.image.id,bordered:!0,dropdownItems:[{hidden:c,key:"add",label:w("add"),icon:(0,r.jsx)(I.I,{value:"new"}),onClick:()=>{let e=[...a];e.splice(i+1,0,{image:null,hotspots:[],marker:[],crop:{}}),o(e)}},{hidden:c,key:"delete",label:w("delete"),icon:(0,r.jsx)(I.I,{value:"trash"}),onClick:()=>{let e=[...a];e.splice(i,1),d(e)}},{label:w("crop"),key:"crop",icon:(0,r.jsx)(I.I,{value:"crop"}),onClick:()=>{var e;(0,s.isNil)(null==(e=t.image)?void 0:e.id)||O(t.image.id,t.crop)}},{label:w(!0===c?"hotspots.show":"hotspots.edit"),key:"hotspots-edit",icon:(0,r.jsx)(I.I,{value:"new-marker"}),onClick:G},{hidden:!B(i)||!0===c,label:w("hotspots.clear-data"),key:"clear-data",icon:(0,r.jsx)(I.I,{value:"remove-marker"}),onClick:R},{label:w("element.open"),key:"open",icon:(0,r.jsx)(I.I,{value:"open-folder"}),onClick:async()=>{C({config:{id:t.image.id}})}},{hidden:c,key:"search",label:w("search"),icon:(0,r.jsx)(I.I,{value:"search"}),onClick:()=>{L()}},{hidden:c,icon:(0,r.jsx)(I.I,{value:"upload-cloud"}),key:"upload",label:w("upload"),onClick:q},{hidden:c,label:w("empty"),key:"empty",icon:(0,r.jsx)(I.I,{value:"trash"}),onClick:async()=>{d(a.map((e,t)=>t===i?{image:null,hotspots:[],marker:[],crop:{}}:e))}}],height:p,onHotspotsDataButtonClick:B(i)?G:void 0,style:{backgroundColor:"#fff"},thumbnailSettings:t.crop,width:u})})})},M=e=>{var t;let{id:i,index:n,item:l,value:a,setValue:o,setInternalValue:s,disabled:d,width:u,height:p,ratioX:m,ratioY:g,predefinedDataTemplates:h,uploadPath:v}=e,{attributes:y,listeners:b,setNodeRef:x,transform:w,transition:C,active:T}=(0,c.useSortable)({id:i,transition:{duration:300,easing:"linear"}}),I={transform:S.Ks.Transform.toString(w),transition:C},{styles:k}=f();return(0,r.jsx)("div",{ref:x,...y,...b,className:k.imageItem,style:(null==T||null==(t=T.data.current)?void 0:t.sortable)!==void 0?I:void 0,children:null!==l.image?(0,r.jsx)($,{disabled:d,height:p,index:n,item:l,predefinedDataTemplates:h,ratioX:m,ratioY:g,setInternalValue:s,setValue:o,uploadPath:v,value:a,width:u}):(0,r.jsx)(j,{disabled:d,height:p,index:n,setValue:o,uploadPath:v,value:a,width:u})})};var O=i(62059),_=i(83499);let L=e=>(e??[]).map(e=>({...e,key:e.key??(0,O.u)()})),R=e=>e.map(e=>{let{key:t,...i}=e;return i}),B=e=>{let t=(0,n.useMemo)(()=>L(e.value),[]),[i,a]=(0,n.useState)(t),{t:m}=(0,l.useTranslation)(),{styles:g}=f(),h=(0,_.x)(e.width,200),v=(0,_.x)(e.height,100);(0,n.useEffect)(()=>{a(t=>{let i=L(e.value);return(0,s.isEqual)(R(t),R(i))?t:i})},[e.value]);let y=t=>{let r=L(t);if(!(0,s.isEqual)(r,i)){var n;a(r);let t=R(r.filter(e=>null!==e.image));null==(n=e.onChange)||n.call(e,t.length>0?t:null)}},b=(0,u.useSensor)(u.MouseSensor,{activationConstraint:{distance:5}}),x=(0,u.useSensor)(u.TouchSensor,{activationConstraint:{distance:5}}),S=(0,u.useSensors)(b,x);return(0,r.jsx)(w.Z,{className:o()(g.imageGallery,e.className),footer:!0===e.disabled?void 0:(0,r.jsx)(d.Tooltip,{title:m("empty"),children:(0,r.jsx)(C.K,{disabled:(0,s.isEmpty)(e.value),icon:{value:"trash"},onClick:()=>{y([])}})},"empty"),children:(0,r.jsxs)(p.s,{gap:"small",wrap:!0,children:[(0,r.jsx)(u.DndContext,{autoScroll:!1,onDragEnd:e=>{var t;let r=e.active.id,n=null==(t=e.over)?void 0:t.id,l=[...i];if((0,s.isUndefined)(n)||r===n)return;let a=e=>(0,s.findIndex)(l,{key:e}),o=(0,s.find)(l,{key:r}),d=a(r),c=a(n);(0,s.isUndefined)(o)||-1===d||-1===c||(l.splice(d,1),l.splice(c,0,o),y(l))},sensors:S,children:(0,r.jsx)(c.SortableContext,{disabled:e.disabled,items:i.map(e=>({id:String(e.key)})),strategy:c.rectSortingStrategy,children:i.map((t,n)=>(0,r.jsx)(M,{disabled:e.disabled,height:v,id:String(t.key),index:n,item:t,predefinedDataTemplates:e.predefinedDataTemplates,ratioX:e.ratioX,ratioY:e.ratioY,setInternalValue:a,setValue:y,uploadPath:e.uploadPath,value:i,width:h},t.key))})}),(!0!==e.disabled||(0,s.isEmpty)(i))&&(0,r.jsx)(j,{disabled:e.disabled,height:v,index:i.length,setValue:y,uploadPath:e.uploadPath,value:i,width:h})]})})}},25020(e,t,i){"use strict";i.d(t,{v:()=>h});var r=i(74848);i(47867);var n=i(29740),l=i(35864),a=i(86569),o=i(21429),s=i(95112),d=i(76497),c=i(60583),u=i(72636),p=i(24755),m=i(99154),g=i(81898);let h=e=>{let{t}=(0,o.useTranslation)(),{openAsset:i}=(0,d.G)(),h=[(0,r.jsx)(a.Tooltip,{title:t("open"),children:(0,r.jsx)(n.K,{disabled:(0,l.isEmpty)(e.value),icon:{value:"open-folder"},onClick:()=>{var t;"number"==typeof(null==(t=e.value)?void 0:t.id)&&i({config:{id:e.value.id}})}})},"open")];return!0!==e.disabled&&(h.unshift((0,r.jsx)(c.Q,{elementSelectorConfig:{selectionType:u.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["image"]}},onFinish:t=>{(0,l.isEmpty)(t.items)||e.setValue({type:p.W.asset,id:t.items[0].data.id,fullpath:t.items[0].data.fullpath})}}})),h.push((0,r.jsx)(a.Tooltip,{title:t("empty"),children:(0,r.jsx)(n.K,{disabled:(0,l.isEmpty)(e.value),icon:{value:"trash"},onClick:e.emptyValue})},"empty")),(0,l.isEmpty)(e.value)||void 0===e.onSearch&&void 0===e.onUpload||h.push((0,r.jsx)(m.m,{menu:{items:[{hidden:void 0===e.onSearch,label:t("search"),key:"search",icon:(0,r.jsx)(g.I,{value:"search"}),onClick:()=>{var t;return null==(t=e.onSearch)?void 0:t.call(e)}},{hidden:void 0===e.onUpload,label:t("upload"),key:"upload",icon:(0,r.jsx)(g.I,{value:"upload-cloud"}),onClick:()=>{var t;return null==(t=e.onUpload)?void 0:t.call(e)}}]},placement:"topLeft",trigger:["click"],children:(0,r.jsx)(n.K,{icon:{value:"more"},onClick:e=>{e.stopPropagation()}})},"more"))),(0,r.jsx)(s.e,{items:h,noSpacing:!0})}},54106(e,t,i){"use strict";i.d(t,{_:()=>j});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(21429),s=i(86052),d=i(25020),c=i(94313),u=i(9199),p=i(20597),m=i(83499);let g=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{image:i` - &.versionFieldItem { - border-color: ${t.colorBorderSecondary} !important; - } - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${t.colorBorder} !important; - } - `}});var h=i(87632),v=i(25886),f=i(90011),y=i(94685),b=i(72636),x=i(35864);let j=e=>{let t=e.value??null,{triggerUpload:i}=(0,f.w)({}),{t:l}=(0,o.useTranslation)(),{styles:j}=g(),{open:w}=(0,y.L)({selectionType:b.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["image"]}},onFinish:t=>{if(!(0,x.isEmpty)(t.items)){var i;null==(i=e.onChange)||i.call(e,{type:"asset",id:t.items[0].data.id})}}}),C=(0,n.useCallback)(()=>{i({targetFolderPath:e.uploadPath??"",accept:"image/*",multiple:!1,maxItems:1,onSuccess:async t=>{if(t.length>0){var i;null==(i=e.onChange)||i.call(e,{type:"asset",id:t[0].id})}}})},[i]),S=async t=>{var i;null==(i=e.onChange)||i.call(e,{type:"asset",id:t.id})},T=(0,m.x)(e.width,300),I=(0,m.x)(e.height,150);return(0,r.jsx)(s.Z,{className:a()("max-w-full",j.image,e.className),fitContent:!0,footer:(0,r.jsx)(d.v,{disabled:e.disabled,emptyValue:()=>{var t;null==(t=e.onChange)||t.call(e,null)},onSearch:w,onUpload:C,setValue:t=>{var i;null==(i=e.onChange)||i.call(e,t)},value:t},"image-footer"),children:(0,r.jsx)(v.V,{accept:"image/*",assetType:"image",disabled:e.disabled,onSuccess:S,targetFolderPath:e.uploadPath??"",children:(0,r.jsx)(p.g,{disabled:e.disabled,isValidContext:e=>(0,h.Hy)(e.type),isValidData:e=>"asset"===e.type&&"image"===e.data.type,onDrop:t=>{var i;null==(i=e.onChange)||i.call(e,{type:"asset",id:t.data.id})},variant:"outline",children:null!==t?(0,r.jsx)(u.k,{assetId:null==t?void 0:t.id,height:I,width:T}):(0,r.jsx)(c.C,{dndIcon:!0!==e.disabled,height:I,onSearch:w,onUpload:C,title:l(!0===e.disabled?"empty":"image.add.and.dnd"),width:T})})})})}},54080(e,t,i){"use strict";i.d(t,{z:()=>f});var r=i(74848),n=i(47867),l=i(8651),a=i.n(l),o=i(25750),s=i(35864),d=i.n(s),c=i(51289),u=i(1993),p=i(21429),m=i(83499);let g=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{container:t` - &.versionFieldItem { - .ant-select-disabled, - .ant-input-disabled { - width: 100%; - max-width: 100% !important; - } - - .ant-select-disabled .ant-select-selection-item, - .ant-input-disabled { - color: ${i.colorText} !important; - } - - .ant-select.ant-select-disabled .ant-select-selector, - .ant-input-disabled { - border-color: transparent !important; - } - } - - &.versionFieldItemHighlight { - .ant-select-disabled .ant-select-selector, - .ant-input-disabled { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - } - - .ant-select.ant-select-disabled .ant-select-selector, - .ant-input-disabled { - border-color: ${i.colorBorder} !important; - } - } - `,select:t` - min-width: 100px; - `,input:t` - min-width: 80px; - `}});var h=i(80632),v=i(52112);let f=e=>{let[t,i]=(0,n.useState)(e.value??{value:null,unitId:null}),{getSelectOptions:l}=(0,c.R)(),{t:s}=(0,p.useTranslation)(),{styles:f}=g(),y=(0,v.C)();return(0,n.useEffect)(()=>{void 0!==e.onChange&&e.onChange(null===t.value&&null===t.unitId?null:t)},[t]),(0,n.useEffect)(()=>{let r=null===t.value&&null===t.unitId?null:t;d().isEqual(e.value,r)||i(e.value??{value:null,unitId:null})},[e.value]),(0,r.jsxs)(o.s,{align:"center",className:a()(f.container,e.className),gap:"small",children:[(0,r.jsx)(h.p,{className:f.input,disabled:e.disabled,inherited:e.inherited,onChange:e=>{let r=e.target.value;i({...t,value:d().isEmpty(r)?null:r})},style:{maxWidth:(0,m.x)(e.width,y.small)},value:(null==t?void 0:t.value)??void 0}),(0,r.jsx)(u.l,{allowClear:!0,className:f.select,disabled:e.disabled,inherited:e.inherited,onChange:e=>{i({...t,unitId:d().isEmpty(e)?null:e??null})},optionFilterProp:"label",options:l(e.validUnits??void 0),placeholder:"("+s("empty")+")",showSearch:!0,style:{minWidth:(0,m.x)(150)},value:(null==t?void 0:t.unitId)??void 0})]})}},14860(e,t,i){"use strict";i.d(t,{r:()=>o});var r=i(74848);i(47867);var n=i(21429),l=i(41423),a=i(35864);let o=e=>{let{t}=(0,n.useTranslation)(),i=()=>{var i,r,n,l;let o=null===e.value?t("link.not-set"):(0,a.isEmpty)(null==(i=e.value)?void 0:i.text)?(0,a.isEmpty)(null==(r=e.value)?void 0:r.fullPath)?t("link.not-set"):(null==(l=e.value)?void 0:l.fullPath)??"":(null==(n=e.value)?void 0:n.text)??"";return(e.textPrefix??"")+o+(e.textSuffix??"")};return(0,r.jsx)(r.Fragment,{children:!0===e.inherited?(0,r.jsx)("span",{className:e.className,children:(0,r.jsx)(l.v,{children:i()})}):(0,r.jsx)(l.v,{children:i()})})}},59258(e,t,i){"use strict";i.d(t,{N:()=>s});var r=i(74848);i(47867);var n=i(25750);let l=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{link:t` - &.versionFieldItem { - padding: ${i.paddingXXS}px; - background-color: ${i.colorBgContainerDisabled} !important; - border: 1px solid transparent; - border-radius: ${i.borderRadius}px !important; - } - - &.versionFieldItemHighlight { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${i.colorBorder} !important; - } - `}});var a=i(14860),o=i(44475);let s=e=>{let{styles:t}=l(),{renderPreview:i,renderActions:s}=(0,o._)({...e,PreviewComponent:e.PreviewComponent??a.r});return(0,r.jsxs)(n.s,{align:"center",className:t.link,gap:"extra-small",children:[i(),s()]})}},36349(e,t,i){"use strict";i.d(t,{R:()=>j,L:()=>w});var r=i(74848),n=i(47867),l=i(57231),a=i(2338),o=i(80632),s=i(23558),d=i(21429),c=i(1993),u=i(86052),p=i(88286),m=i(74462),g=i(31091),h=i(43565),v=i(27820),f=i(95112),y=i(25750),b=i(86569);let x=e=>{let{t}=(0,d.useTranslation)(),[i]=l.lV.useForm(),x={linktype:"direct",text:"",direct:"",fullPath:"",target:"",parameters:"",anchor:"",title:"",accesskey:"",rel:"",tabindex:"",class:""},{confirm:j}=(0,h.Vl)();(0,n.useEffect)(()=>{i.setFieldsValue((0,g.vZ)(e.value??x))},[e.value]);let w=()=>{let t={...x};i.setFieldsValue((0,g.vZ)(t)),e.onSave(t),e.onClose()},C=t=>0===e.allowedTypes.length||e.allowedTypes.includes(t),S={key:"basic",label:t("link.tab.basic"),forceRender:!0,children:(0,r.jsxs)(a.$,{className:"w-full",direction:"vertical",size:"small",children:[!e.disabledFields.includes("text")&&(0,r.jsx)(l.lV.Item,{label:t("link.text"),name:"text",children:(0,r.jsx)(o.p,{disabled:e.disabled})}),(0,r.jsx)(l.lV.Item,{label:t("link.path"),name:"path",children:(0,r.jsx)(m.P,{allowPathTextInput:!0,assetsAllowed:C("asset"),dataObjectsAllowed:C("object"),disabled:e.disabled,documentsAllowed:C("document")})}),!["target","parameters","anchor","title"].every(t=>e.disabledFields.includes(t))&&(0,r.jsx)(u.Z,{theme:"card-with-highlight",title:t("link.properties"),children:(0,r.jsxs)(a.$,{className:"w-full",direction:"vertical",size:"small",children:[!e.disabledFields.includes("target")&&(0,r.jsx)(l.lV.Item,{label:t("link.target"),name:"target",children:(0,r.jsx)(c.l,{allowClear:!0,disabled:e.disabled,options:(e.allowedTargets.length>0?e.allowedTargets:["_blank","_self","_top","_parent"]).map(e=>({value:e,label:e}))})}),!e.disabledFields.includes("parameters")&&(0,r.jsx)(l.lV.Item,{label:t("link.parameters"),name:"parameters",children:(0,r.jsx)(o.p,{disabled:e.disabled})}),!e.disabledFields.includes("anchor")&&(0,r.jsx)(l.lV.Item,{label:t("link.anchor"),name:"anchor",children:(0,r.jsx)(o.p,{disabled:e.disabled})}),!e.disabledFields.includes("title")&&(0,r.jsx)(l.lV.Item,{label:t("link.title"),name:"title",children:(0,r.jsx)(o.p,{disabled:e.disabled})})]})})]})},T={key:"advanced",label:t("link.tab.advanced"),forceRender:!0,children:(0,r.jsxs)(a.$,{className:"w-full",direction:"vertical",size:"small",children:[!e.disabledFields.includes("accesskey")&&(0,r.jsx)(l.lV.Item,{label:t("link.accesskey"),name:"accesskey",children:(0,r.jsx)(o.p,{disabled:e.disabled})}),!e.disabledFields.includes("rel")&&(0,r.jsx)(l.lV.Item,{label:t("link.rel"),name:"rel",children:(0,r.jsx)(o.p,{disabled:e.disabled})}),!e.disabledFields.includes("tabindex")&&(0,r.jsx)(l.lV.Item,{label:t("link.tabindex"),name:"tabindex",children:(0,r.jsx)(o.p,{disabled:e.disabled})}),!e.disabledFields.includes("class")&&(0,r.jsx)(l.lV.Item,{label:t("link.class"),name:"class",children:(0,r.jsx)(o.p,{disabled:e.disabled})})]})},I=[S];return["accesskey","rel","tabindex","class"].every(t=>e.disabledFields.includes(t))||I.push(T),(0,r.jsx)(b.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}},children:(0,r.jsx)(s.m,{footer:!0===e.disabled?(0,r.jsx)("span",{}):(e,i)=>{let{OkBtn:n,CancelBtn:l}=i;return(0,r.jsxs)(y.s,{className:"w-100",justify:"flex-end",style:{justifyContent:"space-between"},children:[(0,r.jsx)(f.e,{items:[(0,r.jsx)(v.J,{icon:{value:"trash"},onClick:()=>j({title:t("empty"),content:t("empty.confirm"),onOk:w}),children:t("empty")},"empty")]}),(0,r.jsx)(f.e,{items:[(0,r.jsx)(l,{},"cancel"),(0,r.jsx)(n,{},"ok")]})]})},okText:t("save"),onCancel:()=>{e.onClose();let t=e.value??{...x};i.setFieldsValue((0,g.vZ)(t))},onOk:()=>{let t=i.getFieldsValue(),r=(0,g.Cx)(t);e.onSave(r),e.onClose()},open:e.open,size:"M",title:t("link.edit-title"),children:(0,r.jsx)(l.lV,{form:i,layout:"vertical",children:(0,r.jsx)(p.t,{items:I,noPadding:!0,size:"small"})})})})},j=(0,n.createContext)(void 0),w=e=>{let{children:t}=e,[i,l]=(0,n.useState)(!1),[a,o]=(0,n.useState)(null),[s,d]=(0,n.useState)({}),c=(e,t)=>{o(e??null),d(t??{}),l(!0)},u=()=>{l(!1),o(null),d({})},p=(0,n.useMemo)(()=>({openModal:c,closeModal:u,isOpen:i}),[i]);return(0,r.jsxs)(j.Provider,{value:p,children:[i&&(0,r.jsx)(x,{allowedTargets:s.allowedTargets??[],allowedTypes:s.allowedTypes??[],disabled:s.disabled??!1,disabledFields:s.disabledFields??[],onClose:u,onSave:e=>{var t;null==(t=s.onSave)||t.call(s,e),u()},open:i,value:a}),t]})}},86608(e,t,i){"use strict";i.d(t,{q:()=>a});var r=i(47867),n=i(36349),l=i(35864);let a=()=>{let e=(0,r.useContext)(n.R);if((0,l.isNil)(e))throw Error("useLinkModalContext must be used within a LinkModalProvider");return e}},6469(e,t,i){"use strict";i.d(t,{D:()=>w});var r=i(74848),n=i(47867),l=i(21429),a=i(35864),o=i(38798),s=i(89507),d=i(18196),c=i(80578),u=i(18929),p=i(7334),m=i(66026),g=i(69187),h=i(75240),v=i(43425),f=i(72928),y=i(48832),b=i(9735),x=i(87669);let j=e=>{var t,i;let{t:x}=(0,l.useTranslation)(),{id:j}=(0,p.J)(),{dataObject:w}=(0,m.A)(j),{getByName:C}=(0,u.G)(),{transformGridColumn:S,getDefaultVisibleFieldDefinitions:T}=(()=>{let{t:e}=(0,l.useTranslation)(),{hasType:t}=(0,f.R)();return{transformGridColumn:(i,n)=>{var l;let o=t({target:"GRID_CELL",dynamicTypeIds:[i.type]}),s=t({target:"GRID_CELL",dynamicTypeIds:[i.frontendType]}),c=t=>(0,d.Po)(t)?e(i.key):t,u=(0,a.isObject)(i.config)&&"fieldDefinition"in i.config?null==(l=i.config)?void 0:l.fieldDefinition:void 0,p=c((0,d.Po)(null==u?void 0:u.title)?void 0:e(String(null==u?void 0:u.title))),m=c(i.title),g={header:o?p:m,meta:{columnKey:i.key,editable:!1,..."fullpath"===i.key?{type:"element",autoWidth:!0,config:(0,b.fo)(n)}:{type:o?i.type:i.frontendType,...!(0,a.isEmpty)(i.config)&&{config:o?{dataObjectType:i.frontendType,dataObjectConfig:i.config}:(0,b.fo)(n)}}},size:(e=>{if(Array.isArray(e.group)&&e.group.includes("system")){if("id"===e.key||"index"===e.key||"type"===e.key)return 100;if("mimetype"===e.key||"fileSize"===e.key)return y.mv;if("key"===e.key||"classname"===e.key||"fullpath"===e.key)return 200}return 150})(i)};return o||s||(g.cell=e=>{let t=e.getValue();if("string"==typeof t||"number"==typeof t){let t={...e,meta:{type:"input"}};return(0,r.jsx)(v.A,{...t})}return(0,r.jsx)(h.F,{message:"Not supported",type:"warning"})}),g},getDefaultVisibleFieldDefinitions:()=>[{key:"id",title:"id",fieldtype:"input"},{key:"fullpath",title:e("relations.reference"),fieldtype:"input"},{key:"classname",title:e("relations.class"),fieldtype:"input"}]}})(),I=(0,a.isUndefined)(w)?"":null==(t=C(w.className))?void 0:t.id,k=null==e?void 0:e.combinedFieldName,E=null==e?void 0:e.allowedClasses,[D,N]=(0,n.useState)([]),[P,A]=(0,n.useState)([]),{isLoading:F,data:$}=(0,g.om)({classId:I,relationField:k},{skip:(0,a.isUndefined)(I)||(0,a.isUndefined)(k)}),M=(0,n.useMemo)(()=>{let e;if(F)return;let t=null==$?void 0:$.columns;return null==(e=(0,a.isNil)(t)||(0,a.isEmpty)(t)?T():Array.isArray(t)?t:Object.values(t))?void 0:e.map(e=>{let t={...e},i=(0,a.find)(null==$?void 0:$.columns,{key:t.key}),r={...t,...null==i?void 0:i.config};if("id"===r.key||"fullpath"===r.key||"classname"===r.key){if(r.title===x("relations.reference"))return r;r.title=x(`relations.${r.key}`)}else r.title=x(r.title);return r})},[$]),{data:O,isLoading:_}=(e=>{let{classIds:t,convertClassName:i,columns:r,dataValue:n}=e,l=(t??[]).map(e=>{var t;let l=(0,a.map)((0,a.filter)(n,{subtype:e}),"id");return(0,g.dB)({classId:(null==(t=i(e))?void 0:t.id)??"",body:{folderId:1,columns:r,filters:{page:1,pageSize:999,includeDescendants:!0,columnFilters:[{type:"system.ids",filterValue:l}]}}},{skip:(0,a.isEmpty)(r)||(0,d.Po)(l)})});return{isLoading:l.some(e=>e.isLoading||e.isFetching),data:l.flatMap(e=>{var t;return(null==(t=e.data)?void 0:t.items)??[]})}})({classIds:E,convertClassName:C,columns:(M??[]).map(e=>({...e,group:null==e?void 0:e.group})),dataValue:null==e||null==(i=e.value)?void 0:i.filter(e=>!D.includes(e.id))});(0,n.useEffect)(()=>{_||(0,d.Po)(O)||(N(e=>{let t=[...new Set([...e,...O.map(e=>e.id).filter(e=>!(0,a.isUndefined)(e))])];return t.length===e.length?e:t}),A(e=>{let t=new Set(e.map(e=>e.id)),i=O.filter(e=>!t.has(e.id));return 0===i.length?e:[...e,...i]}))},[O,_]),(0,n.useEffect)(()=>{if(!(0,a.isEmpty)(e.value)){let t=new Set(((null==e?void 0:e.value)??[]).map(e=>e.id));N(e=>e.filter(e=>t.has(e))),A(e=>e.filter(e=>!(0,a.isUndefined)(e.id)&&t.has(e.id)))}},[null==e?void 0:e.value]);let L=(e=>{let{visibleFieldDefinitions:t,disabled:i,pathFormatterClass:r,transformGridColumn:n}=e,l=[],a=(0,s.createColumnHelper)();for(let e of t??[]){var o;let t=n(e,i);l.push(a.accessor(e.key,{...t,...(0,d.uI)(r)&&(null==(o=t.meta)?void 0:o.columnKey)==="fullpath"?{cell:c.v}:{}}))}return l})({visibleFieldDefinitions:M,disabled:!0===e.inherited||!0===e.disabled,pathFormatterClass:e.pathFormatterClass??"",transformGridColumn:S}),R=(0,n.useMemo)(()=>{let e=new Set(P.map(e=>e.id));return[...P,...O.filter(t=>!e.has(t.id))]},[P,O]),B=(0,n.useMemo)(()=>R.map(e=>{var t;return null==e||null==(t=e.columns)?void 0:t.reduce((e,t)=>(e[t.key]=t.value,e),{})}),[R]),z=(0,n.useCallback)(e=>{var t,i;let r=(null==R||null==(t=R.find(t=>t.id===e.id))?void 0:t.columns)??[],n={};for(let t of M??[]){let l=t.key,a=null==r||null==(i=r.find(e=>e.key===l))?void 0:i.value;"fullpath"===l?n[l]=e.fullPath:"classname"===l?n[l]=e.subtype:"id"!==l&&(n[l]=a)}return{...e,...n}},[R,M]);return(0,r.jsx)(o.g,{...e,columnDefinition:[...L,...e.columnDefinition??[]],dataObjectsAllowed:!0,enrichRowData:z,isLoading:F||_,value:e.value,visibleFieldsValue:B})},w=e=>(0,r.jsx)(x.U,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry"],children:(0,r.jsx)(j,{...e})})},38798(e,t,i){"use strict";i.d(t,{g:()=>r.g5});var r=i(9735)},74462(e,t,i){"use strict";i.d(t,{P:()=>r.Pp,x:()=>r.xD});var r=i(572)},48199(e,t,i){"use strict";i.d(t,{B:()=>D});var r=i(74848),n=i(47867),l=i(57231),a=i(21429),o=i(35864),s=i(43565),d=i(83391),c=i(99154),u=i(27820),p=i(57930);let m=e=>{let{allowedTypes:t,objectBrick:i}=e,{t:l}=(0,a.useTranslation)(),{operations:o}=(0,p.y)(),s=(0,n.useMemo)(()=>t.map(e=>{var t,r;return{key:e,label:(null==i||null==(t=i.find(t=>t.key===e))?void 0:t.title)===""||(null==i||null==(r=i.find(t=>t.key===e))?void 0:r.title)===void 0?e:l(null==i?void 0:i.find(t=>t.key===e).title),onClick:t=>{t.domEvent.stopPropagation(),o.add(e,{})}}}),[t,i]);return(0,r.jsx)(c.m,{menu:{items:s},children:(0,r.jsx)(u.J,{icon:{value:"new"},onClick:e=>{e.stopPropagation()},children:l("add")})})};var g=i(88286),h=i(39808),v=i(67342),f=i(33541);let y=()=>(0,n.useContext)(f.y);var b=i(64756),x=i(62451);let j=e=>{let t=y(),{type:i}=e;if(null===i||null===t)return(0,r.jsx)(r.Fragment,{});let{data:n,isLoading:l}=t;if(!0===l)return(0,r.jsx)(h.U,{loading:!0});let a=n.items.find(e=>e.key===i);if(void 0===a)throw Error(`Object brick layout definition for type ${i} not found`);return(0,r.jsx)(b.a,{padding:{x:"small",y:"small",top:"none"},children:a.children.map((t,n)=>(0,r.jsx)(x.e,{combinedFieldNameParent:[...Array.isArray(e.name)?e.name:[e.name],i],children:(0,r.jsx)(v.f,{...t,noteditable:e.noteditable})},n))})},w=e=>{var t;let{values:i,operations:c}=(0,p.y)(),u=(0,s.Vl)(),{t:h}=(0,a.useTranslation)(),v=y(),f=(null==e?void 0:e.maxItems)??0,b=Object.keys(i),x=!0===e.noteditable,w=null==(t=e.allowedTypes)?void 0:t.filter(e=>!b.includes(e)),C=f>0&&b.length===f,S=x||C||(0,o.isEmpty)(w),T=null==b?void 0:b.map(t=>{var i,n,a,o,s,d,c,u;return{key:t,label:(null==v||null==(a=v.data)||null==(n=a.items)||null==(i=n.find(e=>e.key===t))?void 0:i.title)===""||(null==v||null==(d=v.data)||null==(s=d.items)||null==(o=s.find(e=>e.key===t))?void 0:o.title)===void 0?t:h(null==v||null==(u=v.data)||null==(c=u.items)?void 0:c.find(e=>e.key===t).title),closable:!0,forceRender:!0,children:(0,r.jsx)(l.lV.Group,{name:t,children:(0,r.jsx)(j,{name:e.name,noteditable:e.noteditable,type:t})})}}),I=e=>{u.confirm({content:(0,r.jsx)("span",{children:h("element.delete.confirmation.text")}),okText:h("yes"),cancelText:h("no"),onOk:()=>{c.remove(e)}})};return(0,n.useMemo)(()=>{var t;return(0,r.jsx)(d.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,contentPadding:"none",extra:!S&&(0,r.jsx)(m,{allowedTypes:w,objectBrick:null==v||null==(t=v.data)?void 0:t.items}),extraPosition:"start",theme:"default",title:e.title,children:(0,r.jsx)(g.t,{items:T,onClose:x?void 0:I})})},[i,v])};var C=i(407),S=i(66026),T=i(20713);let I="deleted",k=e=>{if(!(0,o.isPlainObject)(e))return[];let t=[];return(0,o.forEach)(Object.keys(e),i=>{let r=e[i];(0,o.isPlainObject)(r)&&(0,o.forEach)(Object.keys(r),e=>{t.push(E([i,e]))})}),t},E=e=>Array.isArray(e)?e.join("."):e,D=e=>{var t,i;let a,s=(0,n.useRef)(e.value),d=(0,n.useRef)(new Set),c=(0,C.n)(),u=(0,n.useRef)(new Set),{id:p}=(0,n.useContext)(T.Z),{dataObject:m}=(0,S.A)(p);if(void 0!==m&&!("objectData"in m))throw Error("Data Object data is undefined in Object Brick");let g=(t=(null==m?void 0:m.objectData)??{},i=e.name,a=(0,o.get)(t,i,{}),(0,o.isPlainObject)(a)?a:{}),h=t=>{var i;let r=[...e.name,...t.split(".")];return!u.current.has(r.join("."))&&(null==c||null==(i=c.getInheritanceState(r))?void 0:i.inherited)===!0},v=(0,n.useMemo)(()=>{var t,i;let r,n;return t=s.current,i=e.value,r=Array.from(new Set([...k(g),...k(t)])),n={},((0,o.forEach)(r,e=>{let i=e.split(".")[0];(0,o.isUndefined)(t[i])||t[i].action===I||(h(e)?(0,o.set)(n,e,(0,o.get)(g,e)):(0,o.set)(n,e,(0,o.get)(t,e)))}),(0,o.isEmpty)(n)&&(0,o.isEmpty)(i))?i:n},[s.current,g]);return(0,n.useEffect)(()=>{s.current=e.value},[e.value]),(0,r.jsx)(l.lV.KeyedList,{getAdditionalComponentProps:e=>{var t;return{inherited:(null==c||null==(t=c.getInheritanceState(e))?void 0:t.inherited)===!0}},onChange:t=>{let i=((e,t)=>{if(!(0,o.isPlainObject)(e))return{};let i={};return(0,o.forEach)(k(e),r=>{(0,o.set)(i,r,t(r)?null:(0,o.get)(e,r))}),i})(t,h),r=(0,o.union)([...(0,o.keys)(g),...(0,o.keys)(s.current)]);(0,o.forEach)(r,e=>{(0,o.isUndefined)(i[e])?d.current.add(e):d.current.delete(e)}),(0,o.forEach)(Array.from(d.current.keys()),e=>{i[e]={action:I}});let n=(0,o.isEmpty)(i)?[]:i;console.log({newValue:n,old:s.current}),(0,o.isEqual)(n,s.current)||(e.onChange(n),s.current=n)},onFieldChange:(e,t)=>{var i;let r=Array.isArray(e)?e.join("."):e;u.current.add(r),(null==c||null==(i=c.getInheritanceState(e))?void 0:i.inherited)===!0&&(null==c||c.breakInheritance(e))},value:v,children:(0,r.jsx)(w,{...e})})}},33541(e,t,i){"use strict";i.d(t,{E:()=>s,y:()=>o});var r=i(74848),n=i(47867),l=i(15623),a=i(7334);let o=(0,n.createContext)(null),s=e=>{let{children:t}=e,{id:i}=(0,a.J)(),s=(0,l.Vz)({objectId:i});return(0,n.useMemo)(()=>(0,r.jsx)(o.Provider,{value:s,children:t}),[s,t])}},58705(e,t,i){"use strict";i.d(t,{q:()=>y});var r=i(74848),n=i(47867),l=i(25750),a=i(35864),o=i.n(a),s=i(51289),d=i(1993),c=i(21429),u=i(83499);let p=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{container:t` - &.versionFieldItem { - .ant-select-disabled, - .ant-input-number-disabled { - width: 100%; - max-width: 100% !important; - } - - .ant-select-disabled .ant-select-selection-item, - .ant-input-number-disabled { - color: ${i.colorText} !important; - } - - .ant-select-disabled .ant-select-selector, - .ant-input-number-disabled { - border-color: transparent !important; - } - } - - &.versionFieldItemHighlight { - .ant-select-disabled .ant-select-selector, - .ant-input-number-disabled { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - } - - .ant-select-disabled .ant-select-selector, - .ant-input-number-disabled { - border-color: ${i.colorBorder} !important; - } - } - `,select:t` - min-width: 100px; - `,input:t` - min-width: 80px; - `}});var m=i(8651),g=i.n(m),h=i(71141),v=i(52112);let{useToken:f}=i(86569).theme,y=e=>{let[t,i]=(0,n.useState)(e.value??{minimum:null,maximum:null,unitId:null}),{getSelectOptions:a}=(0,s.R)(),{t:m}=(0,c.useTranslation)(),{styles:y}=p(),b=(0,v.C)(),{token:x}=f(),j=r=>{if(!o().isEqual(r,t)){var n;i(r),null==(n=e.onChange)||n.call(e,null===r.minimum&&null===r.maximum&&null===r.unitId?null:r)}};return(0,n.useEffect)(()=>{let i=null===t.minimum&&null===t.maximum&&null===t.unitId?null:t;o().isEqual(e.value,i)||j(e.value??{minimum:null,maximum:null,unitId:null})},[e.value]),(0,r.jsxs)(l.s,{align:"center",className:g()(y.container,e.className),gap:"small",children:[(0,r.jsxs)(l.s,{align:"center",className:"w-full",gap:"small",style:{maxWidth:(0,u.x)(e.Width,2*b.small+Number(x.sizeSM))},children:[(0,r.jsx)(h.Y,{className:g()(y.input,"w-full"),disabled:e.disabled,inherited:e.inherited,onChange:e=>{j({...t,minimum:e??null})},precision:e.decimalPrecision??void 0,value:(null==t?void 0:t.minimum)??void 0}),(0,r.jsx)(h.Y,{className:g()(y.input,"w-full"),disabled:e.disabled,inherited:e.inherited,onChange:e=>{j({...t,maximum:e??null})},precision:e.decimalPrecision??void 0,value:(null==t?void 0:t.maximum)??void 0})]}),(0,r.jsx)(d.l,{allowClear:!0,disabled:e.disabled,inherited:e.inherited,onChange:e=>{j({...t,unitId:o().isEmpty(e)?null:e??null})},optionFilterProp:"label",options:a(e.validUnits??void 0),placeholder:"("+m("empty")+")",showSearch:!0,style:{minWidth:(0,u.x)(e.unitWidth,150)},value:(null==t?void 0:t.unitId)??void 0})]})}},546(e,t,i){"use strict";i.d(t,{F:()=>S});var r=i(74848),n=i(47867),l=i(25750),a=i(35864),o=i.n(a),s=i(51289),d=i(1993),c=i(21429),u=i(83499),p=i(29740),m=i(86569),g=i(32753),h=i(29150);let v=e=>{let{t}=(0,c.useTranslation)(),{getAbbreviation:i}=(0,s.R)();return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(h.Y,{title:t("quantity-value.converted-units")}),e.convertedValues.map(n=>(0,r.jsxs)(l.s,{gap:"mini",children:[(0,r.jsxs)("strong",{children:[(0,g.Z)({value:e.value})," ",i(e.unitId)]}),(0,r.jsx)("span",{children:"="}),(0,r.jsxs)("span",{children:[(0,g.Z)({value:n.convertedValue??0})," ",o().isEmpty(n.unitAbbreviation)?"":t(n.unitAbbreviation)]})]},o().uniqueId("item_")))]})};var f=i(2208);let y=e=>{let{data:t}=(0,f.mj)({value:e.value,fromUnitId:e.unitId});return void 0===t||0===t.convertedValues.length?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(m.Popover,{content:(0,r.jsx)(v,{convertedValues:t.convertedValues,unitId:e.unitId,value:e.value}),trigger:"click",children:(0,r.jsx)(p.K,{icon:{value:"calculator"},type:"default"})})},b=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{container:t` - &.versionFieldItem { - .ant-select-disabled, - .ant-input-number-disabled { - width: 100%; - max-width: 100% !important; - } - - .ant-select-disabled .ant-select-selection-item, - .ant-input-number-disabled { - color: ${i.colorText} !important; - } - - .ant-select.ant-select-disabled .ant-select-selector, - .ant-input-number-disabled { - border-color: transparent !important; - } - } - - &.versionFieldItemHighlight { - .ant-select-disabled .ant-select-selector, - .ant-input-number-disabled { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - } - - .ant-select.ant-select-disabled .ant-select-selector, - .ant-input-number-disabled { - border-color: ${i.colorBorder} !important; - } - } - `,select:t` - min-width: 100px; - `,input:t` - min-width: 80px; - `}});var x=i(8651),j=i.n(x),w=i(71141),C=i(52112);let S=e=>{let[t,i]=(0,n.useState)(e.value??{value:null,unitId:null}),{getSelectOptions:a}=(0,s.R)(),{t:p}=(0,c.useTranslation)(),{convertValue:m}=(0,s.R)(),{styles:g}=b(),h=(0,C.C)(),v=r=>{if(!o().isEqual(r,t)){var n;i(r),null==(n=e.onChange)||n.call(e,null===r.value&&null===r.unitId?null:r)}};return(0,n.useEffect)(()=>{let i=null===t.value&&null===t.unitId?null:t;o().isEqual(e.value,i)||v(e.value??{value:null,unitId:null})},[e.value]),(0,r.jsxs)(l.s,{align:"center",className:j()(g.container,e.className),gap:"small",children:[(0,r.jsx)(w.Y,{className:j()(g.input,"w-full"),disabled:e.disabled,inherited:e.inherited,onChange:e=>{v({...t,value:e??null})},precision:e.decimalPrecision??void 0,style:{maxWidth:(0,u.x)(e.width,h.small)},value:(null==t?void 0:t.value)??void 0}),(0,r.jsx)(d.l,{allowClear:!0,disabled:e.disabled,inherited:e.inherited,onChange:i=>{e.autoConvert&&!o().isEmpty(i)&&"number"==typeof(null==t?void 0:t.value)&&(null==t?void 0:t.unitId)!==null&&m(t.unitId,i,t.value).then(e=>{null!==e&&v({unitId:i,value:e})}),v({...t,unitId:o().isEmpty(i)?null:i??null})},optionFilterProp:"label",options:a(e.validUnits??void 0),placeholder:"("+p("empty")+")",showSearch:!0,style:{minWidth:(0,u.x)(e.unitWidth,150)},value:(null==t?void 0:t.unitId)??void 0}),"number"==typeof(null==t?void 0:t.value)&&(null==t?void 0:t.unitId)!==null&&(0,r.jsx)(y,{unitId:t.unitId,value:null==t?void 0:t.value})]})}},7810(e,t,i){"use strict";i.d(t,{i:()=>u});var r=i(74848);i(47867);var n=i(6469),l=i(35864),a=i.n(l),o=i(75240),s=i(21429),d=i(86052),c=i(64756);let u=e=>{let{t}=(0,s.useTranslation)();if(a().isEmpty(e.ownerClassName)||a().isEmpty(e.ownerFieldName))return(0,r.jsx)(o.F,{message:"Owner definition is missing in field configuration.",type:"warning"});let i=(0,r.jsx)(c.a,{margin:{top:"mini"},children:(0,r.jsxs)(d.Z,{children:[(0,r.jsx)("div",{children:t("reverse-object-relation.owner-hint")}),(0,r.jsxs)("div",{children:[t("reverse-object-relation.owner-class"),": ",e.ownerClassName,", ",t("reverse-object-relation.owner-field"),": ",e.ownerFieldName]})]})});return(0,r.jsx)(n.D,{...e,allowedClasses:[String(e.ownerClassName)],dataObjectsAllowed:!0,hint:i})}},62916(e,t,i){"use strict";i.d(t,{a:()=>y});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(14013),o=i(89507),s=i(21429),d=i(35864),c=i.n(d);let u=e=>{let t=(0,o.createColumnHelper)(),{t:i}=(0,s.useTranslation)(),n=e=>Number(e)>0?Number(e):100,l=[t.accessor("rowLabel",{header:c().isEmpty(e.labelFirstCell)?"":i(e.labelFirstCell),size:n(e.labelWidth)})];e.cols.forEach(r=>{l.push(t.accessor(""!==r.key?r.key:r.position.toString(),{header:""!==r.label?i(r.label):r.position.toString(),size:n(r.width),meta:{type:(e=>{switch(e){case"text":default:return"text";case"bool":return"checkbox";case"number":return"number"}})(r.type),editable:!0!==e.disabled,autoWidth:!0}}))});let d=e.rows.map(t=>{let r={rowLabel:i(t.label)};return e.cols.forEach(i=>{var n,l;r[i.key]=e.castColumnValue((null==(l=e.value)||null==(n=l[t.key])?void 0:n[i.key])??null,i.key)}),r});return(0,r.jsx)(a.x,{className:e.className,columns:l,data:d,disabled:e.disabled,onUpdateCellData:t=>{var i,r,n;let l,a=(n={...e.value,[e.rows[t.rowIndex].key]:{...null==(i=e.value)?void 0:i[e.rows[t.rowIndex].key],[t.columnId]:e.castColumnValue(t.value,t.columnId)}},l={},e.rows.forEach(t=>{l[t.key]={},e.cols.forEach(e=>{var i;l[t.key][e.key]=(null==n||null==(i=n[t.key])?void 0:i[e.key])??""})}),l);null==(r=e.onChange)||r.call(e,a)},resizable:!0})};var p=i(64756),m=i(29740),g=i(86569),h=i(43565),v=i(83499),f=i(39808);let y=e=>{let t=e.value??null,{t:i}=(0,s.useTranslation)(),{confirm:n}=(0,h.Vl)(),a=t=>{var i;null==(i=e.onChange)||i.call(e,t)},o=()=>{a(null)};return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(f.U,{style:{width:(0,v.x)(e.width),height:(0,v.x)(e.height)},children:(0,r.jsx)(u,{castColumnValue:(t,i)=>{let r=e.cols.find(e=>e.key===i);if(void 0===r)return t;switch(r.type){case"number":return Number(t);case"bool":return!!t;default:return null===t?"":String(t)}},className:l()(e.className),cols:e.cols,disabled:e.disabled,labelFirstCell:e.labelFirstCell,labelWidth:e.labelWidth,onChange:a,rows:e.rows,value:t})}),!0!==e.disabled&&(0,r.jsx)(p.a,{padding:"extra-small",children:(0,r.jsx)(g.Tooltip,{title:i("empty"),children:(0,r.jsx)(m.K,{icon:{value:"trash"},onClick:()=>{n({title:i("empty"),content:i("empty.confirm"),onOk:o})},type:"default"})})})]})}},60939(e,t,i){"use strict";i.d(t,{X:()=>j});var r=i(74848),n=i(47867),l=i(35864),a=i(8651),o=i.n(a),s=i(14013),d=i(89507);let c=e=>{let t=(0,d.createColumnHelper)(),i=[];if(e.columnConfigActivated&&void 0!==e.columnConfig)e.columnConfig.forEach((r,n)=>{i.push(t.accessor(String(r.key),{header:r.label??r.key,id:String(r.key),size:150,meta:{autoWidth:!0,type:"text",editable:!0!==e.disabled}}))});else for(let r=0;r{var l,a;i[r.key]=(null==(a=e.value)||null==(l=a[t])?void 0:l[r.key])??""});else for(let r=0;r{var i;let r=[...n];r[t.rowIndex]={...r[t.rowIndex],[t.columnId]:t.value};let l=e.columnConfigActivated&&void 0!==e.columnConfig?r:r.map(e=>Object.values(e));null==(i=e.onChange)||i.call(e,l)},resizable:!0})};var u=i(64756),p=i(29740),m=i(86569),g=i(21429),h=i(43565),v=i(95112),f=i(27820),y=i(39808),b=i(83499),x=i(70184);let j=e=>{let{t}=(0,g.useTranslation)(),i=(0,h.Vl)(),{confirm:a}=i,{message:s}=m.App.useApp(),d=!0===e.colsFixed&&(e.columnConfigActivated??!1),j=(0,n.useMemo)(()=>{var t;return t=e.data,(0,l.isNil)(t)||""===t?null:t.split("\n").map(e=>e.split("|"))},[e.data]),{value:w,handleChange:C,activeCell:S,setActiveCell:T,key:I,emptyValue:k,newRow:E,newColumn:D,deleteRow:N,deleteColumn:P,duplicateRow:A,fixColumnConfig:F,rows:$,cols:M}=(e=>{let[t,i]=(0,n.useState)(void 0),[r,l]=(0,n.useState)(0),a=e.initialValue,o=t=>{var i;null==(i=e.onChange)||i.call(e,t)},s=()=>Array(e.rows??1).fill(null).map(()=>u()),d=null!==a&&a.length>0?e.columnConfigActivated?Object.keys(a[0]).length:a[0].length:e.cols??0,c=null!==a&&a.length>0?a.length:e.rows??0;d=Math.max(d,1);let u=()=>e.columnConfigActivated&&void 0!==e.columnConfig?e.columnConfig.reduce((e,t)=>(e[t.key]="",e),{}):Array(d).fill("");return{value:a,handleChange:o,activeCell:t,setActiveCell:i,key:r,emptyValue:()=>{o(e.emptyValue??[]),l(r+1)},newRow:()=>{let e=[...null!==a&&a.length>0?a:s()],i=u();(null==t?void 0:t.rowIndex)!==void 0?e.splice(t.rowIndex,0,i):e.push(i),o(e)},newColumn:()=>{if(e.columnConfigActivated)return;let i=[...null!==a&&a.length>0?a:s()];i.forEach(e=>e.splice((null==t?void 0:t.columnIndex)??e.length,0,"")),o(i)},deleteRow:()=>{if(void 0===t)return;let e=[...null!==a&&a.length>0?a:s()];e.splice(t.rowIndex,1),o(e)},deleteColumn:()=>{if(e.columnConfigActivated||void 0===t)return;let i=[...null!==a&&a.length>0?a:s()];i.forEach(e=>e.splice(t.columnIndex,1)),o(i)},duplicateRow:()=>{if(void 0===t)return;let e=[...null!==a&&a.length>0?a:s()],i=e[t.rowIndex];Array.isArray(i)?e.splice(t.rowIndex,0,[...i]):e.splice(t.rowIndex,0,{...i}),o(e)},fixColumnConfig:t=>{if(!e.columnConfigActivated||void 0===e.columnConfig)return t;let i=e.columnConfig??[];return t.map(e=>{let t={};return i.forEach((i,r)=>{t[i.key]=e[r]??""}),t})},rows:c=Math.max(c,1),cols:d}})({initialValue:(0,l.isNil)(e.value)||(0,l.isEmpty)(e.value)?j:e.value,onChange:e.onChange,cols:e.cols,rows:e.rows,columnConfig:e.columnConfig,columnConfigActivated:d,emptyValue:j});(0,n.useEffect)(()=>{void 0!==S&&((null==w?void 0:w[S.rowIndex])===void 0||void 0===w[S.rowIndex][S.columnIndex]&&void 0===w[S.rowIndex][S.columnId])&&T(void 0)},[w]);let O=[];return!0!==e.disabled&&((!0!==e.rowsFixed||$<(e.rows??0))&&O.push((0,r.jsx)(f.J,{icon:{value:"new-row"},onClick:E,type:"default",children:t("table.new-row")})),!d&&(!0!==e.colsFixed||M<(e.cols??0))&&O.push((0,r.jsx)(f.J,{icon:{value:"new-column"},onClick:D,type:"default",children:t("table.new-column")})),(!0!==e.rowsFixed||$>(e.rows??0))&&O.push((0,r.jsx)(f.J,{disabled:void 0===S,icon:{value:"delete-row"},onClick:N,type:"default",children:t("table.delete-row")})),!d&&(!0!==e.colsFixed||M>(e.cols??0))&&O.push((0,r.jsx)(f.J,{disabled:void 0===S,icon:{value:"delete-column"},onClick:P,type:"default",children:t("table.delete-column")})),(!0!==e.rowsFixed||$<(e.rows??0))&&O.push((0,r.jsx)(f.J,{disabled:void 0===S,icon:{value:"content-duplicate"},onClick:A,type:"default",children:t("table.duplicate-row")}))),O.push((0,r.jsx)(m.Tooltip,{title:t("table.copy"),children:(0,r.jsx)(p.K,{icon:{value:"copy"},onClick:()=>i.textarea({title:t("table.copy"),initialValue:null===w?"":w.map(e=>Array.isArray(e)?e.join(" "):Object.values(e).join(" ")).join("\n"),okText:t("table.copy"),onOk:e=>{(0,x.CZ)(e,()=>{s.success(t("clipboard.copy.success"))},e=>{s.error(t("clipboard.copy.error")),console.error("Copy to clipboard failed:",e)})}}),type:"default"})})),!0!==e.disabled&&(O.push((0,r.jsx)(m.Tooltip,{title:t("table.paste"),children:(0,r.jsx)(p.K,{icon:{value:"paste"},onClick:()=>i.textarea({title:t("table.paste"),placeholder:t("paste-placeholder"),okText:t("save"),onOk:e=>{""!==e&&C(F(e.split("\n").map(e=>e.split(" "))))}}),type:"default"})})),O.push((0,r.jsx)(m.Tooltip,{title:t("empty"),children:(0,r.jsx)(p.K,{icon:{value:"trash"},onClick:()=>{a({title:t("empty"),content:t("table.empty.confirm"),onOk:k})},type:"default"})}))),(0,r.jsxs)("div",{children:[(0,r.jsx)(y.U,{style:{width:(0,b.x)(320===e.width?void 0:e.width),height:(0,b.x)(e.height)},children:(0,r.jsx)(c,{className:o()(e.className),cols:M,columnConfig:e.columnConfig,columnConfigActivated:d,disabled:e.disabled,onActiveCellChange:T,onChange:C,rows:$,value:w},I)}),(0,r.jsx)(u.a,{padding:"extra-small",children:(0,r.jsx)(v.e,{items:O})})]})}},60269(e,t,i){"use strict";i.d(t,{b:()=>y});var r=i(74848),n=i(47867),l=i(86569),a=i(8651),o=i.n(a),s=i(25750),d=i(83499),c=i(90583),u=i(21429),p=i(99154),m=i(73789),g=i(29740),h=i(35864),v=i(52112);let f=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{container:t` - &.versionFieldItem { - border-color: ${i.colorBorder} !important; - - .urlSlugLabel { - width: 100% !important; - } - } - - &.versionFieldItemHighlight { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - } - `}}),y=e=>{let t,i=(t=e.value,(0,h.isNil)(t)||(0,h.isEmpty)(t)?[{slug:"",siteId:0}]:t);(0,h.isPlainObject)(i)&&!i.some(e=>0===e.siteId)&&i.unshift({slug:"",siteId:0});let[a,y]=(0,n.useState)([]),{t:b}=(0,u.useTranslation)(),{styles:x}=f(),{getSiteById:j,getRemainingSites:w}=(0,c.u)(),C=(0,v.C)(),{Text:S}=l.Typography,T=t=>{var i;null==(i=e.onChange)||i.call(e,t)},I=(()=>{let e=i.findIndex(e=>0===e.siteId);if(-1===e||0===e)return i;let t=[...i],[r]=t.splice(e,1);return t.unshift(r),t})(),k=w(i.map(e=>e.siteId),e.availableSites??void 0),E=k.map(e=>({key:e.id,label:e.domain,onClick:()=>{T([...i,{slug:"",siteId:e.id}])}}));return(0,r.jsx)(l.List,{bordered:!0,className:o()(x.container,e.className),dataSource:I,loadMore:k.length>0&&!0!==e.disabled&&(0,r.jsx)(l.List.Item,{children:(0,r.jsx)(p.m,{menu:{items:E},trigger:["click"],children:(0,r.jsx)(m.g,{type:"default",children:b("url-slug.add-site")})})}),renderItem:(t,n)=>{var o;return(0,r.jsx)(l.List.Item,{children:(0,r.jsxs)(s.s,{align:"center",className:"w-full",gap:"small",justify:"center",children:[(0,r.jsx)("div",{className:"urlSlugLabel",style:{width:(0,d.x)(e.domainLabelWidth,250)},children:0===t.siteId?b("fallback"):(null==(o=j(t.siteId))?void 0:o.domain)??(0,r.jsxs)(r.Fragment,{children:[b("site-id")," ",t.siteId," ",(0,r.jsxs)(S,{type:"secondary",children:["(",b("deleted"),")"]})]})}),(0,r.jsxs)("div",{className:"w-full",children:[(0,r.jsx)(l.Input,{disabled:e.disabled,onChange:e=>{((e,t)=>{let r=i.findIndex(t=>t.siteId===I[e].siteId);if(-1===r)return;let n=(0,h.cloneDeep)(i);n[r].slug=t;let l=[...a];l[r]=!(e=>{if(""!==e){if(!e.startsWith("/")||e.length<2)return!1;for(let t of(e=e.substring(1).replace(/\/$/,"")).split("/"))if(0===t.length)return!1}return!0})(t),T(n),y(l)})(n,e.target.value)},status:a[n]?"error":void 0,value:t.slug}),a[n]&&(0,r.jsx)(S,{type:"danger",children:b("url-slug.invalid")})]}),!0!==e.disabled&&(0,r.jsx)(l.Tooltip,{title:b("remove"),children:(0,r.jsx)(g.K,{disabled:0===t.siteId,icon:{value:"trash"},onClick:()=>{let e=[...i];e.splice(n,1),T(e)},style:{visibility:0===t.siteId?"hidden":void 0}})})]})})},size:"small",style:{maxWidth:(0,d.x)(e.width,C.large)}})}},51327(e,t,i){"use strict";i.d(t,{k:()=>l});var r=i(74848);i(47867);var n=i(9199);let l=e=>{var t,i;return null===e.value.data?(0,r.jsx)(r.Fragment,{}):"asset"===e.value.type?(0,r.jsx)(n.k,{assetId:e.value.data.id,assetType:"video",height:e.height,width:e.width}):(0,r.jsx)("iframe",{allowFullScreen:!0,height:e.height,src:(t=e.value.type,i=e.value.data,"youtube"===t?i.startsWith("PL")?`https://www.youtube-nocookie.com/embed/videoseries?list=${i}`:`https://www.youtube-nocookie.com/embed/${i}`:"vimeo"===t?`https://player.vimeo.com/video/${i}?title=0&byline=0&portrait=0`:"dailymotion"===t?`https://www.dailymotion.com/embed/video/${i}`:""),style:{border:"none"},title:"Video Preview",width:e.width})}},11493(e,t,i){"use strict";i.d(t,{C:()=>x});var r=i(74848),n=i(47867),l=i(86052),a=i(29740),o=i(21429),s=i(95112),d=i(7814),c=i(17074),u=i(35864);let p=e=>{let{t}=(0,o.useTranslation)(),[i,l]=(0,n.useState)(!1),p=()=>{l(!0)},m=[];return!0!==e.disabled&&(m.push((0,r.jsx)(d.m,{title:t("empty"),children:(0,r.jsx)(a.K,{disabled:(0,u.isEmpty)(e.value)||e.disabled,icon:{value:"trash"},onClick:e.emptyValue})},"empty")),m.push((0,r.jsx)(d.m,{title:t("edit"),children:(0,r.jsx)(a.K,{icon:{value:"edit"},onClick:p})},"edit"))),!0===e.disabled&&m.push((0,r.jsx)(d.m,{title:t("details"),children:(0,r.jsx)(a.K,{icon:{value:"info-circle"},onClick:p})},"details")),(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(s.e,{items:m,noSpacing:!0}),(0,r.jsx)(c.z,{allowedVideoTypes:e.allowedVideoTypes,disabled:e.disabled,onCancel:()=>{l(!1)},onOk:t=>{var i;null==(i=e.onSave)||i.call(e,t),l(!1)},open:i,value:e.value})]})};var m=i(94313),g=i(20597),h=i(51327),v=i(83499),f=i(8651),y=i.n(f);let b=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{video:i` - &.versionFieldItem { - border-color: ${t.colorBorderSecondary} !important; - } - - &.versionFieldItemHighlight { - background-color: ${t.Colors.Brand.Warning.colorWarningBg} !important; - border-color: ${t.colorBorder} !important; - } - `}}),x=e=>{let t=e.value??null,{t:i}=(0,o.useTranslation)(),{styles:n}=b(),a=t=>{var i;null==(i=e.onChange)||i.call(e,t)},s=(0,v.x)(e.width,300),d=(0,v.x)(e.height,245);return(0,r.jsx)(l.Z,{className:y()("max-w-full",n.video,e.className),fitContent:!0,footer:(0,r.jsx)(p,{allowedVideoTypes:e.allowedVideoTypes,disabled:e.disabled,emptyValue:()=>{var t;null==e||null==(t=e.onChange)||t.call(e,null)},onSave:a,value:t},"video-footer"),children:(0,r.jsx)(g.g,{isValidContext:t=>!0!==e.disabled,isValidData:e=>"asset"===e.type&&"video"===e.data.type,onDrop:e=>{a({type:"asset",data:{type:"asset",id:e.data.id,fullPath:`${e.data.path}${e.data.filename??e.data.key}`,subtype:e.data.type}})},variant:"outline",children:null!==t&&(null==t?void 0:t.data)!==null?(0,r.jsx)(h.k,{height:d,value:t,width:s}):(0,r.jsx)(m.C,{dndIcon:!0!==e.disabled,height:d,title:i(!0!==e.disabled?"video.dnd-target":"empty"),width:s})})})}},47864(e,t,i){"use strict";i.d(t,{h:()=>w});var r,n=i(74848),l=i(13980),a=i(50094),o=i(93233),s=i(62446),d=i(47867),c=i.n(d),u=i(64756),p=i(25750),m=i(29740),g=i(22014);let h=()=>(0,n.jsx)(u.a,{className:"w-full h-full",padding:"mini",children:(0,n.jsxs)(p.s,{align:"center",className:"w-full h-full",gap:"mini",justify:"space-between",children:[(0,n.jsx)(g.E,{italic:!0,type:"secondary",children:"No preview available"}),(0,n.jsx)(m.K,{icon:{value:"edit"},variant:"minimal"})]})});var v=i(63364),f=i(10600),y=i(81898),b=i(25085),x=i(60142);function j(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let w=(0,s.injectable)()(r=class{async processVersionFieldData(e){let{fieldBreadcrumbTitle:t,item:i,fieldValueByName:r,fieldPath:n,versionId:l,versionCount:a}=e;return[{fieldBreadcrumbTitle:t,fieldData:i,fieldValue:r,fieldPath:n,versionId:l,versionCount:a}]}getVersionObjectDataComponent(e){return this.getObjectDataComponent({...e,noteditable:!0})}getObjectDataFormItemProps(e){return{className:"w-full",label:c().createElement(l.d,{label:e.title,name:e.name}),required:!0===e.mandatory,hidden:!0===e.invisible,tooltip:(0,b.isNonEmptyString)(e.tooltip)?{title:(0,o.SN)((0,x.t)(e.tooltip),!1),icon:(0,n.jsx)(y.I,{options:{width:14,height:14},value:"help-circle"})}:void 0}}getGridCellPreviewComponent(e){return(0,n.jsx)(h,{})}getGridCellEditComponent(e){return this.getObjectDataComponent(e.objectProps)}getGridCellDefinition(e){if("edit-modal"===this.gridCellEditMode){let t={...e,objectProps:{...e.objectProps,defaultFieldWidth:a.wT}};return{mode:this.gridCellEditMode,previewComponent:this.getGridCellPreviewComponent(t),editComponent:this.getGridCellEditComponent(t),formItemProps:this.getObjectDataFormItemProps(t.objectProps),editModalSettings:this.gridCellEditModalSettings,handleDefaultValue:this.handleDefaultValue,supportsBatchAppendModes:this.supportsBatchAppendModes}}return"column-meta"===this.gridCellEditMode?{mode:this.gridCellEditMode,meta:this.getGridCellColumnMeta(e)}:{mode:this.gridCellEditMode,type:this.id}}getGridCellColumnMeta(e){return{type:this.id}}handleDefaultValue(e,t,i){}getDefaultGridColumnWidth(e){}getFieldFilterComponent(e){return v.kL.get(f.K["DynamicTypes/FieldFilterRegistry"]).getComponent(this.dynamicTypeFieldFilterType.id,e)}constructor(){j(this,"id",void 0),j(this,"dynamicTypeFieldFilterType",v.kL.get(f.K["DynamicTypes/FieldFilter/None"])),j(this,"isCollectionType",!1),j(this,"inheritedMaskOverlay",!1),j(this,"supportsBatchAppendModes",!1),j(this,"isAllowedInBatchEdit",!0),j(this,"gridCellEditMode","default"),j(this,"gridCellEditModalSettings",{modalSize:"M",formLayout:"horizontal"})}})||r},13980(e,t,i){"use strict";i.d(t,{d:()=>p});var r=i(74848);i(47867);var n=i(25750),l=i(81898),a=i(407),o=i(7814),s=i(21429),d=i(91611),c=i(58445),u=i(25085);let p=e=>{let t=(0,d.h)(),i=(0,a.n)(),p=null==i?void 0:i.getInheritanceState((null==t?void 0:t.name)??e.name),{t:m}=(0,s.useTranslation)();return(0,r.jsxs)(n.s,{align:"center",gap:"extra-small",children:[(null==p?void 0:p.inherited)===!0&&(0,r.jsx)(c.J,{objectId:p.objectId}),(null==p?void 0:p.inherited)==="broken"&&(0,r.jsx)(o.m,{title:m("inheritance-broken"),children:(0,r.jsx)(l.I,{value:"inheritance-broken"})}),e.additionalIcons,(0,r.jsx)("span",{children:(0,u.isNonEmptyString)(e.label)?m(e.label):e.label})]})}},33774(e,t,i){"use strict";i.d(t,{Q:()=>a});var r=i(74848);i(47867);var n=i(81898),l=i(13980);let a=e=>(0,r.jsx)(l.d,{additionalIcons:!0===e.disabled?void 0:(0,r.jsx)(n.I,{value:"drop-target"}),label:e.label,name:e.name})},50094(e,t,i){"use strict";i.d(t,{Cw:()=>o,_Y:()=>s,wT:()=>a});var r=i(74848),n=i(47867),l=i.n(n);let a={small:200,medium:300,large:900},o=l().createContext(void 0),s=e=>{let{children:t,...i}=e,l=(0,n.useMemo)(()=>({...a,...i.fieldWidthValues}),[i.fieldWidthValues]);return(0,r.jsx)(o.Provider,{value:l,children:t})}},52112(e,t,i){"use strict";i.d(t,{C:()=>a,q:()=>o});var r=i(47867),n=i(50094),l=i(35864);let a=()=>{let e=(0,r.useContext)(n.Cw);return(0,l.isNil)(e)?n.wT:e},o=()=>{let e=(0,r.useContext)(n.Cw);if(!(0,l.isNil)(e))return e}},18754(e,t,i){"use strict";i.d(t,{X:()=>u});var r=i(74848);i(47867);var n=i(74353),l=i.n(n),a=i(8651),o=i.n(a),s=i(47864),d=i(11354),c=i(83499);class u extends s.h{getObjectDataComponent(e){let t=e.outputType??"dateString";return(0,r.jsx)(d.l,{allowClear:!0,className:o()("w-full",e.className),disabled:!0===e.noteditable,inherited:e.inherited,outputFormat:!1!==e.respectTimezone||"dateString"!==t?void 0:e.outputFormat,outputType:t,showTime:e.showTime,style:{maxWidth:(0,c.x)(e.defaultFieldWidth.small)},value:e.value})}handleDefaultValue(e,t,i){let r=!0===e.useCurrentDate?l()():"number"==typeof e.defaultValue||"string"==typeof e.defaultValue?e.defaultValue:void 0;void 0!==r&&null===t.getFieldValue(i)&&t.setFieldValue(i,r)}}},69040(e,t,i){"use strict";i.d(t,{l:()=>o});var r=i(74848);i(47867);var n=i(47864),l=i(80632),a=i(83499);class o extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.p,{autoComplete:"off",className:e.className,disabled:!0===e.disabled,inherited:e.inherited,maxLength:e.columnLength??void 0,noteditable:!0===e.noteditable,showCount:e.showCharCount,style:{maxWidth:(0,a.x)(e.width,e.defaultFieldWidth.large)},value:e.value})}getGridCellColumnMeta(e){return{type:"input",editable:!0!==e.objectProps.noteditable}}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"gridCellEditMode","column-meta")}}},77871(e,t,i){"use strict";i.d(t,{_:()=>a});var r=i(79782),n=i(83499),l=i(68528);class a extends r.n{getObjectDataComponent(e){return super.getObjectDataComponent({...e,multiSelect:!0,width:(0,n.x)(e.width,e.defaultFieldWidth.large)})}getGridCellColumnMeta(e){let t=!0!==e.objectProps.noteditable,i=void 0!==e.objectProps.options&&Array.isArray(e.objectProps.options)&&e.objectProps.options.length>0;return{type:"multi-select",editable:t,config:{options:t&&i?this.convertOptions(e.objectProps.options):[],[l.F1]:this.supportsBatchAppendModes}}}getDefaultGridColumnWidth(){return 300}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"supportsBatchAppendModes",!0)}}},12557(e,t,i){"use strict";i.d(t,{w:()=>p});var r=i(74848);i(47867);var n=i(47864),l=i(35864),a=i.n(l),o=i(71141),s=i(83499),d=i(8651),c=i.n(d);let u=(e,t,i)=>e?null===t?i?null:0:Math.max(t,0):t;class p extends n.h{getObjectDataComponentProps(e){return{inherited:e.inherited,disabled:!0===e.noteditable,max:u(!0===e.unsigned,e.maxValue,!0)??void 0,min:u(!0===e.unsigned,e.minValue,!1)??void 0,precision:!0===e.integer?0:e.decimalPrecision??void 0,step:e.increment??void 0}}getObjectDataComponent(e){return(0,r.jsx)(o.Y,{...this.getObjectDataComponentProps(e),className:c()("w-full",e.className),style:{maxWidth:(0,s.x)(e.width,e.defaultFieldWidth.small)}})}getVersionObjectDataComponentProps(e){return{inherited:e.inherited,disabled:!0,max:u(!0===e.unsigned,e.maxValue,!0)??void 0,min:u(!0===e.unsigned,e.minValue,!1)??void 0,defaultValue:e.value,precision:!0===e.integer?0:e.decimalPrecision??void 0,step:e.increment??void 0,value:e.value}}getVersionObjectDataComponent(e){return(0,r.jsx)(o.Y,{className:c()(e.className),...this.getVersionObjectDataComponentProps(e)})}handleDefaultValue(e,t,i){a().isNumber(e.defaultValue)&&(a().isNumber(t.getFieldValue(i))||t.setFieldValue(i,e.defaultValue))}}},79782(e,t,i){"use strict";i.d(t,{n:()=>u});var r=i(74848);i(47867);var n=i(47864),l=i(1993),a=i(35864),o=i.n(a),s=i(83499),d=i(88358),c=i(80931);class u extends n.h{getObjectDataComponent(e){let t=this.convertOptions(e.options),i=(null==t?void 0:t.some(e=>void 0!==e.title))??!1;return(0,r.jsx)(l.l,{allowClear:!1!==e.allowClear,className:e.className,disabled:!0===e.noteditable,inherited:e.inherited,maxCount:e.maxItems??void 0,mode:!0===e.multiSelect?"multiple":void 0,optionFilterProp:i?"title":"label",options:t,showSearch:!0,style:{maxWidth:(0,s.x)(e.width,e.defaultFieldWidth.medium)},value:e.value})}handleDefaultValue(e,t,i){!o().isEmpty(e.defaultValue)&&o().isEmpty(t.getFieldValue(i))&&t.setFieldValue(i,e.defaultValue)}convertOptions(e){if(!(0,a.isNil)(e))return e.map(e=>{let t=d.A.t(e.key);return{...(0,c.y)(t),value:e.value}})}getGridCellColumnMeta(e){let t=!0!==e.objectProps.noteditable,i=void 0!==e.objectProps.options&&Array.isArray(e.objectProps.options)&&e.objectProps.options.length>0;return{type:"select",editable:t,config:{options:t&&i?this.convertOptions(e.objectProps.options):[]}}}getDefaultGridColumnWidth(){return 200}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"gridCellEditMode","column-meta")}}},7871(e,t,i){"use strict";i.d(t,{D:()=>m});var r=i(74848),n=i(96494),l=i(47864),a=i(33774),o=i(48832),s=i(35864);i(47867);var d=i(2845),c=i(63364),u=i(10600);function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class m extends l.h{getObjectDataComponent(e){let t=(0,s.isNil)(e.columns)?[]:(0,o.L)(e.columns);return(0,r.jsx)(n.f,{...e,className:e.className,columns:t,disabled:!0===e.noteditable})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,r.jsx)(a.Q,{disabled:!0===e.noteditable,label:e.title,name:e.name})}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue(),i=e.objectProps,n=[];return(0,s.isNil)(i.columns)||(n=(0,o.L)(i.columns)),(0,r.jsx)(d.s,{columnDefinition:n,value:t})}getDefaultGridColumnWidth(e){return(0,o.vV)(e)}constructor(...e){super(...e),p(this,"id","advancedManyToManyObjectRelation"),p(this,"dynamicTypeFieldFilterType",c.kL.get(u.K["DynamicTypes/FieldFilter/Relation"])),p(this,"supportsBatchAppendModes",!0),p(this,"gridCellEditMode","edit-modal"),p(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},35021(e,t,i){"use strict";i.d(t,{_:()=>g});var r=i(74848),n=i(42139),l=i(47864),a=i(30856),o=i(33774),s=i(48832),d=i(35864);i(47867);var c=i(2845),u=i(63364),p=i(10600);function m(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class g extends l.h{getObjectDataComponent(e){let t=(0,d.isNil)(e.columns)?[]:(0,s.L)(e.columns);return(0,r.jsx)(n.e,{...e,...(0,a.zd)(e),className:e.className,columns:t,disabled:!0===e.noteditable})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,r.jsx)(o.Q,{disabled:!0===e.noteditable,label:e.title,name:e.name})}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue(),i=e.objectProps;return(0,r.jsx)(c.s,{columnDefinition:i.columns??null,value:t})}getDefaultGridColumnWidth(e){return(0,s.vV)(e)}constructor(...e){super(...e),m(this,"id","advancedManyToManyRelation"),m(this,"dynamicTypeFieldFilterType",u.kL.get(p.K["DynamicTypes/FieldFilter/Relation"])),m(this,"supportsBatchAppendModes",!0),m(this,"gridCellEditMode","edit-modal"),m(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},92395(e,t,i){"use strict";i.d(t,{a:()=>x});var r=i(74848);i(47867);var n=i(47864),l=i(92449),a=i(13980),o=i(10265),s=i(35864),d=i(8651),c=i.n(d),u=i(41826),p=i(18196),m=i(22014),g=i(64756),h=i(84567),v=i(26268);let f=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{block:t` - position: relative; - - &::before { - content: ''; - display: block; - position: absolute; - left: 0; - width: 2px; - height: 100%; - background-color: ${i.Divider.colorSplit}; - } - `,blockItemWrapperHighlighted:t` - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - `,blockItem:t` - margin-left: 5px; - `,divider:t` - width: calc(100% - ${2*i.marginXS}px); - min-width: calc(100% - ${2*i.marginXS}px); - margin: 10px ${i.marginXS}px; - `}}),y=e=>{let{children:t,value:i,className:n}=e,{styles:l}=f(),{styles:a}=(0,v.I)(),o=i.length,d=o-1;return(0,s.isEmpty)(t)||(0,s.isEmpty)(i)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)("div",{className:l.block,children:[...Array(o)].map((e,o)=>(0,r.jsxs)("div",{children:[t.map((e,t)=>{var s;let d=e.name,h=e.title,v=null==(s=i[o])?void 0:s[d];return(0,r.jsx)("div",{className:c()({[l.blockItemWrapperHighlighted]:null==n?void 0:n.includes("versionFieldItemHighlight")}),children:(0,r.jsxs)(g.a,{className:l.blockItem,padding:{x:"small",y:"mini"},children:[(0,p.Po)(h)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(m.E,{className:a.fieldTitle,children:h}),(0,r.jsx)(u.s,{className:a.objectSectionFieldItem,value:v,...e})]})},`${t}-${d}`)}),o!==d&&(0,r.jsx)(h.c,{className:l.divider})]},o))})};function b(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class x extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.e,{...e,className:e.className,title:(0,r.jsx)(a.d,{label:e.title,name:e.name})})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:null}}getVersionObjectDataComponent(e){return(0,r.jsx)(y,{...e})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(o.C,{count:(null==t?void 0:t.length)??0})}constructor(...e){super(...e),b(this,"id","block"),b(this,"gridCellEditMode","edit-modal"),b(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},21857(e,t,i){"use strict";i.d(t,{r:()=>u});var r=i(74848),n=i(79782);i(47867);var l=i(32438),a=i(83499),o=i(63364),s=i(10600),d=i(35864);function c(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class u extends n.n{convertOptions(e){if(!(0,d.isNil)(e))return e.map(e=>{let t;return t=-1!==e.value&&(1===e.value||null),{label:e.key,value:t}})}getObjectDataComponent(e){let t=this.convertOptions(e.options);return(0,r.jsx)(l.x,{className:e.className,disabled:!0===e.noteditable,inherited:e.inherited,maxWidth:(0,a.x)(e.width,e.defaultFieldWidth.medium),optionFilterProp:"label",options:t,value:e.value})}getObjectDataFormItemProps(e){return super.getObjectDataFormItemProps({...e,defaultValue:null})}getDefaultGridColumnWidth(){return 150}constructor(...e){super(...e),c(this,"id","booleanSelect"),c(this,"dynamicTypeFieldFilterType",o.kL.get(s.K["DynamicTypes/FieldFilter/BooleanSelect"]))}}},58751(e,t,i){"use strict";i.d(t,{e:()=>v});var r=i(74848);i(47867);var n=i(47864),l=i(34188),a=i(25750),o=i(81898),s=i(21429),d=i(25085);let c=e=>{let{t}=(0,s.useTranslation)();return(0,r.jsxs)(a.s,{align:"center",gap:"extra-small",children:[(0,r.jsx)(o.I,{value:"calculator"}),(0,r.jsx)("span",{children:(0,d.isNonEmptyString)(e.label)?t(e.label):e.label})]})};var u=i(49006),p=i(41423),m=i(276),g=i(35864);function h(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class v extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.g,{...e,className:e.className})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,r.jsx)(c,{label:e.title})}}getGridCellDefinition(e){let t={...e,objectProps:{...e.objectProps}},i=e.objectProps;return{mode:"edit-modal",previewComponent:this.getGridCellPreviewComponent(t),editComponent:this.getGridCellEditComponent(t),formItemProps:this.getObjectDataFormItemProps(i),handleDefaultValue:this.handleDefaultValue,editModalSettings:void 0,supportsBatchAppendModes:!1}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue(),i=e.objectProps;return(0,r.jsx)(u.O,{children:(0,r.jsx)(p.v,{children:"date"===i.elementType&&((0,g.isNumber)(t)||(0,g.isString)(t))?(0,m.r6)({timestamp:t,dateStyle:"short",timeStyle:"short"}):"boolean"===i.elementType?(0,g.isEmpty)(t)?"false":"true":t})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),h(this,"id","calculatedValue"),h(this,"isAllowedInBatchEdit",!1)}}},31159(e,t,i){"use strict";i.d(t,{C:()=>c});var r=i(74848),n=i(93470),l=i(47864);i(47867);var a=i(43656),o=i(63364),s=i(10600);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends l.h{getObjectDataComponent(e){return(0,r.jsx)(n.S,{className:e.className,disabled:!0===e.noteditable,inherited:e.inherited,value:e.value})}handleDefaultValue(e,t,i){("boolean"==typeof e.defaultValue||"number"==typeof e.defaultValue)&&"boolean"!=typeof t.getFieldValue(i)&&t.setFieldValue(i,!!e.defaultValue)}getDefaultGridColumnWidth(e){return a.G}constructor(...e){super(...e),d(this,"id","checkbox"),d(this,"dynamicTypeFieldFilterType",o.kL.get(s.K["DynamicTypes/FieldFilter/BooleanSelect"]))}}},46381(e,t,i){"use strict";i.d(t,{z:()=>m});var r=i(74848);i(47867);var n=i(47864),l=i(25491),a=i(49006),o=i(21429),s=i(35864);let d=e=>{let{consent:t}=e,{t:i}=(0,o.useTranslation)();return(0,r.jsxs)(a.O,{children:[(null==t?void 0:t.consent)===!0&&i("yes"),(null==t?void 0:t.consent)===!1&&i("no"),!(0,s.isNil)(null==t?void 0:t.noteContent)&&!(0,s.isEmpty)(null==t?void 0:t.noteContent)&&(0,r.jsxs)("span",{children:["\xa0(",t.noteContent,")"]})]})};var c=i(63364),u=i(10600);function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class m extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.N,{className:e.className,disabled:!0===e.noteditable,value:e.value})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(d,{consent:t})}getDefaultGridColumnWidth(){return 400}constructor(...e){super(...e),p(this,"id","consent"),p(this,"gridCellEditMode","edit-modal"),p(this,"dynamicTypeFieldFilterType",c.kL.get(u.K["DynamicTypes/FieldFilter/Consent"]))}}},51788(e,t,i){"use strict";i.d(t,{c:()=>o});var r=i(10600),n=i(63364),l=i(77871);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends l._{constructor(...e){super(...e),a(this,"id","countrymultiselect"),a(this,"dynamicTypeFieldFilterType",n.kL.get(r.K["DynamicTypes/FieldFilter/Multiselect"]))}}},58412(e,t,i){"use strict";i.d(t,{$:()=>o});var r=i(79782),n=i(63364),l=i(10600);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.n{constructor(...e){super(...e),a(this,"id","country"),a(this,"dynamicTypeFieldFilterType",n.kL.get(l.K["DynamicTypes/FieldFilter/Multiselect"]))}}},87116(e,t,i){"use strict";i.d(t,{C:()=>m});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(47864),o=i(11354),s=i(83499),d=i(49006),c=i(276),u=i(35864);function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class m extends a.h{getObjectDataComponent(e){return(0,r.jsx)(o.l.RangePicker,{className:l()("w-full",e.className),disabled:!0===e.noteditable,inherited:e.inherited,outputType:"dateString",style:{maxWidth:(0,s.x)(e.defaultFieldWidth.medium)},value:e.value})}getGridCellPreviewComponent(e){let[t,i]=e.cellProps.getValue()??[],n=[];return(0,u.isString)(t)&&!(0,u.isEmpty)(t)&&n.push((0,c.Yq)(t)),(0,u.isString)(i)&&!(0,u.isEmpty)(i)&&n.push((0,c.Yq)(i)),(0,r.jsx)(d.O,{children:n.join(" - ")})}constructor(...e){super(...e),p(this,"id","dateRange"),p(this,"gridCellEditMode","edit-modal")}}},63540(e,t,i){"use strict";i.d(t,{X:()=>u});var r=i(74848),n=i(18754);i(47867);var l=i(49006),a=i(276),o=i(35864),s=i(63364),d=i(10600);function c(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class u extends n.X{getObjectDataComponent(e){return super.getObjectDataComponent({...e,className:e.className,respectTimezone:"bigint(20)"===e.columnType,outputType:"dateString",outputFormat:"YYYY-MM-DD"})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(l.O,{children:(0,o.isNumber)(t)?(0,a.Yq)(t):t})}constructor(...e){super(...e),c(this,"id","date"),c(this,"gridCellEditMode","edit-modal"),c(this,"dynamicTypeFieldFilterType",s.kL.get(d.K["DynamicTypes/FieldFilter/Date"]))}}},75167(e,t,i){"use strict";i.d(t,{Y:()=>u});var r=i(74848),n=i(18754);i(47867);var l=i(49006),a=i(35864),o=i(276),s=i(63364),d=i(10600);function c(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class u extends n.X{getObjectDataComponent(e){return super.getObjectDataComponent({...e,className:e.className,outputType:"dateString",outputFormat:"YYYY-MM-DD HH:mm",showTime:{format:"HH:mm"}})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(l.O,{children:(0,a.isNumber)(t)?(0,o.r6)({timestamp:t,dateStyle:"short",timeStyle:"short"}):t})}constructor(...e){super(...e),c(this,"id","datetime"),c(this,"gridCellEditMode","edit-modal"),c(this,"dynamicTypeFieldFilterType",s.kL.get(d.K["DynamicTypes/FieldFilter/Datetime"]))}}},95830(e,t,i){"use strict";i.d(t,{B:()=>o});var r=i(69040),n=i(63364),l=i(10600);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.l{getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),a(this,"id","email"),a(this,"dynamicTypeFieldFilterType",n.kL.get(l.K["DynamicTypes/FieldFilter/String"]))}}},23257(e,t,i){"use strict";i.d(t,{N:()=>u});var r=i(74848),n=i(10600),l=i(63364),a=i(72798),o=i(28897),s=i(37433),d=i(47864),c=i(48832);i(47867);class u extends d.h{getObjectDataComponent(e){return(0,r.jsx)(a.s,{className:e.className,datatype:"data",fieldType:e.delegateDatatype,name:e.name,...e.delegate})}getVersionObjectDataComponent(e){return(0,r.jsx)(s.N,{children:(0,r.jsx)(o.C,{children:this.getObjectDataComponent(e)})})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:null}}getGridCellDefinition(e){let t=l.kL.get(n.K["DynamicTypes/ObjectDataRegistry"]),i=e.objectProps;return t.hasDynamicType(i.delegateDatatype)?t.getDynamicType(i.delegateDatatype).getGridCellDefinition(e):{mode:"default",type:"string"}}getDefaultGridColumnWidth(e){return(0,c.Cy)(null==e?void 0:e.delegateDatatype,e)}constructor(...e){super(...e),function(e,t,i){var r;(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","encryptedField")}}},41261(e,t,i){"use strict";i.d(t,{x:()=>p});var r=i(74848);i(47867);var n=i(47864),l=i(2034),a=i(49006),o=i(86569),s=i(9199),d=i(35864),c=i(46881);function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.$,{className:e.className,disabled:!0===e.noteditable,inputWidth:e.inputWidth,previewHeight:e.previewHeight,previewWidth:e.previewWidth,value:e.value})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(a.O,{children:(0,r.jsx)(o.Flex,{className:"w-full",justify:"center",children:!(0,d.isNil)(t)&&!(0,d.isEmpty)(t.url)&&(0,r.jsx)(s.k,{height:100,src:t.url,width:100})})})}getDefaultGridColumnWidth(){return 250}constructor(...e){super(...e),u(this,"id","externalImage"),u(this,"inheritedMaskOverlay","form-element"),u(this,"gridCellEditMode","edit-modal"),u(this,"dynamicTypeFieldFilterType",c.container.get(c.serviceIds["DynamicTypes/FieldFilter/String"]))}}},8780(e,t,i){"use strict";i.d(t,{P:()=>S});var r=i(74848),n=i(47867),l=i(47864),a=i(28472),o=i(10265),s=i(35864),d=i(8651),c=i.n(d),u=i(39808),p=i(93464),m=i(41826),g=i(18196),h=i(93104),v=i(2338);let f=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{section:t` - &.versionFieldItemHighlight { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - } - `,sectionLabel:t` - position: relative; - `,subSectionLabel:t` - color: ${i.colorTextSecondary}; - margin-left: 6px; - - &::before { - content: ''; - display: block; - position: absolute; - left: -5px; - width: 2px; - height: 22px; - background-color: ${i.Colors.Neutral.Fill.colorFill}; - } - - &::after { - content: ''; - display: block; - position: absolute; - left: 0; - top: 0; - width: 2px; - height: 22px; - background-color: ${i.Colors.Neutral.Fill.colorFill}; - } - `,fieldTitle:t` - display: block; - margin-bottom: 4px; - `}});var y=i(22014),b=i(25750),x=i(24449),j=i(44767);let w=e=>{var t;let{value:i,fieldBreadcrumbTitle:l,className:a,fieldCollectionModifiedList:o,isExpandedUnmodifiedFields:d}=e,w=(0,x.U)(),[C,S]=(0,n.useState)([]),T=!(0,s.isEmpty)(o),{styles:I}=f(),k=null==w||null==(t=w.data)?void 0:t.items,E="",D=e=>!(0,s.isObject)(e)||Object.values(e).every(e=>!(0,s.isEmpty)(e)&&(0,s.isObject)(e)?D(e):(0,s.isNull)(e));return((0,n.useEffect)(()=>{(0,s.isEmpty)(w)||(0,s.isEmpty)(i)||S((e=>{let{data:t,breadcrumbTitle:n=l}=e,a=[],c=(e,t)=>{null==e||e.forEach((e,n)=>{(0,g.Po)(e.key)||(E=e.key??"");let l=(0,h.Yl)(t,e.title);if("layout"===e.datatype&&c(e.children,l),"data"===e.datatype){let l=(0,s.filter)(i,{type:E});l.forEach((i,c)=>{var u;let p,g=null==i||null==(u=i.data)?void 0:u[null==e?void 0:e.name],h=(p=E,a.find(e=>e.key===p&&e.index===c));if((e=>{let{dataItem:t,filteredObject:i,fieldValue:r}=e;return!!(t.fieldtype===j.l.LOCALIZED_FIELDS&&D(r))||!!((0,s.isEmpty)(i)&&(0,s.isEmpty)(r))||T&&!d&&(null==o?void 0:o.includes(E))===!1})({dataItem:e,filteredObject:l,fieldValue:g}))return;let v=(0,r.jsx)(m.s,{value:g,...e},`${n}-${e.name}-${E}`);(0,s.isEmpty)(h)?a.push({key:E,breadcrumbTitle:t,renderList:[v],index:c}):h.renderList.push(v)})}})};return c(t,n),a})({data:k}))},[w,i]),null===i||null===w)?(0,r.jsx)(r.Fragment,{}):(null==w?void 0:w.isLoading)===!0?(0,r.jsx)(u.U,{loading:!0}):(0,r.jsx)(v.$,{className:"w-full",direction:"vertical",size:"mini",children:null==C?void 0:C.map((e,t)=>{var i;return(0,r.jsx)(p.X,{className:c()(a,{[I.section]:(null==o?void 0:o.includes(e.key))===!0}),defaultActive:!0,label:(0,r.jsxs)("div",{className:I.sectionLabel,children:[(0,r.jsx)("span",{className:I.subSectionLabel,children:`${e.breadcrumbTitle} / `}),e.key]}),children:(0,r.jsx)(b.s,{gap:"small",vertical:!0,children:null==(i=e.renderList)?void 0:i.map((t,i)=>{var n;let l=null==t||null==(n=t.props)?void 0:n.title;return(0,r.jsxs)("div",{children:[(0,g.Po)(l)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(y.E,{className:I.fieldTitle,children:(0,r.jsx)("strong",{children:l})}),t]},`${i}-${e.key}`)})})},`${e.key}-${t}`)})})};function C(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class S extends l.h{getObjectDataComponent(e){return(0,r.jsx)(a.Z,{...e})}getVersionObjectDataComponent(e){return(0,r.jsx)(w,{...e})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:null}}getGridCellEditComponent(e){return this.getObjectDataComponent(e.objectProps)}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(o.C,{count:(null==t?void 0:t.length)??0})}constructor(...e){super(...e),C(this,"id","fieldcollections"),C(this,"isCollectionType",!1),C(this,"gridCellEditMode","edit-modal"),C(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"}),C(this,"isAllowedInBatchEdit",!1)}}},71125(e,t,i){"use strict";i.d(t,{Q:()=>o});var r=i(69040),n=i(10600),l=i(63364);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.l{getDefaultGridColumnWidth(){return 200}constructor(...e){super(...e),a(this,"id","firstname"),a(this,"dynamicTypeFieldFilterType",l.kL.get(n.K["DynamicTypes/FieldFilter/String"]))}}},54599(e,t,i){"use strict";i.d(t,{y:()=>o});var r=i(79782),n=i(10600),l=i(63364);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.n{getDefaultGridColumnWidth(){return 150}constructor(...e){super(...e),a(this,"id","gender"),a(this,"dynamicTypeFieldFilterType",l.kL.get(n.K["DynamicTypes/FieldFilter/Multiselect"]))}}},60026(e,t,i){"use strict";i.d(t,{P:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(27653),a=i(33073),o=i(35864),s=i(84557);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(a.A,{className:e.className,disabled:!0===e.noteditable,height:(0,l.I)(e.height),lat:e.lat,lng:e.lng,value:e.value,width:(0,l.x)(e.width),zoom:e.zoom})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,o.isNil)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(s.s,{geoPoints:[t.southWest,t.northEast]})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),d(this,"id","geobounds"),d(this,"inheritedMaskOverlay","form-element"),d(this,"gridCellEditMode","edit-modal")}}},97371(e,t,i){"use strict";i.d(t,{_:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(14073),a=i(27653),o=i(35864),s=i(84557);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.g,{className:e.className,disabled:!0===e.noteditable,height:(0,a.I)(e.height),lat:e.lat,lng:e.lng,value:e.value,width:(0,a.x)(e.width),zoom:e.zoom})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,o.isNil)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(s.s,{geoPoints:[t]})}getDefaultGridColumnWidth(){return 250}constructor(...e){super(...e),d(this,"id","geopoint"),d(this,"inheritedMaskOverlay","form-element"),d(this,"gridCellEditMode","edit-modal")}}},41643(e,t,i){"use strict";i.d(t,{q:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(27653),a=i(20160),o=i(84557),s=i(35864);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(a.B,{className:e.className,disabled:!0===e.noteditable,height:(0,l.I)(e.height),lat:e.lat,lng:e.lng,mode:"geoPolygon",value:e.value,width:(0,l.x)(e.width),zoom:e.zoom})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,s.isNil)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(o.s,{geoPoints:t})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),d(this,"id","geopolygon"),d(this,"inheritedMaskOverlay","form-element"),d(this,"gridCellEditMode","edit-modal")}}},58177(e,t,i){"use strict";i.d(t,{y:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(27653),a=i(20160),o=i(35864),s=i(84557);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(a.B,{className:e.className,disabled:!0===e.noteditable,height:(0,l.I)(e.height),lat:e.lat,lng:e.lng,mode:"geoPolyLine",value:e.value,width:(0,l.x)(e.width),zoom:e.zoom})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,o.isNil)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(s.s,{geoPoints:t})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),d(this,"id","geopolyline"),d(this,"inheritedMaskOverlay","form-element"),d(this,"gridCellEditMode","edit-modal")}}},80900(e,t,i){"use strict";i.d(t,{p:()=>u});var r=i(74848);i(47867);var n=i(47864),l=i(56264),a=i(49006),o=i(86569),s=i(9199),d=i(35864);function c(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class u extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.d,{...e,className:e.className,disabled:!0===e.noteditable})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(a.O,{children:(0,r.jsx)(o.Flex,{className:"w-full",justify:"center",children:!(0,d.isNil)(t)&&!(0,d.isNil)(t.image)&&(0,r.jsx)(s.k,{assetId:t.image.id,height:100,thumbnailSettings:t.crop??void 0,width:100})})})}getDefaultGridColumnWidth(){return 250}constructor(...e){super(...e),c(this,"id","hotspotimage"),c(this,"inheritedMaskOverlay","form-element"),c(this,"gridCellEditMode","edit-modal")}}},54165(e,t,i){"use strict";i.d(t,{y:()=>p});var r=i(74848);i(47867);var n=i(47864),l=i(30285),a=i(49006),o=i(35864),s=i(9199),d=i(25750);let c=e=>{let{value:t}=e;return(0,o.isNil)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(a.O,{overflow:"auto",children:(0,r.jsx)(d.s,{align:"center",gap:"extra-small",children:t.filter(e=>{var t;return null==(t=e.image)?void 0:t.id}).map((e,t)=>{var i;return(0,r.jsx)("div",{children:(0,r.jsx)(s.k,{assetId:null==(i=e.image)?void 0:i.id,height:100,width:100})},t)})})})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.i,{...e,className:e.className,disabled:!0===e.noteditable})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(c,{value:t})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),u(this,"id","imageGallery"),u(this,"inheritedMaskOverlay","form-item-container"),u(this,"supportsBatchAppendModes",!0),u(this,"gridCellEditMode","edit-modal"),u(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},70229(e,t,i){"use strict";i.d(t,{a:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(54106),a=i(9199),o=i(25750),s=i(49006);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l._,{...e,className:e.className,disabled:!0===e.noteditable})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(s.O,{children:(0,r.jsx)(o.s,{className:"w-full",justify:"center",children:null!=t&&(0,r.jsx)(a.k,{assetId:t.id,height:100,width:100})})})}getDefaultGridColumnWidth(){return 250}constructor(...e){super(...e),d(this,"id","image"),d(this,"inheritedMaskOverlay","form-element"),d(this,"gridCellEditMode","edit-modal"),d(this,"gridCellEditModalSettings",{modalSize:"L",formLayout:"vertical"})}}},14266(e,t,i){"use strict";i.d(t,{B:()=>u});var r=i(74848);i(47867);var n=i(47864),l=i(54080),a=i(35864),o=i.n(a),s=i(34029),d=i(46881);function c(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class u extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.z,{...e,className:e.className,disabled:!0===e.noteditable})}handleDefaultValue(e,t,i){!(o().isEmpty(e.defaultValue)&&o().isEmpty(e.defaultUnit))&&o().isEmpty(t.getFieldValue(i))&&t.setFieldValue(i,{value:e.defaultValue,unitId:e.defaultUnit})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,a.isEmpty)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(s.F,{unitId:t.unitId,value:t.value})}getDefaultGridColumnWidth(){return 300}constructor(...e){super(...e),c(this,"id","inputQuantityValue"),c(this,"gridCellEditMode","edit-modal"),c(this,"dynamicTypeFieldFilterType",d.container.get("DynamicTypes/FieldFilter/InputQuantityValue"))}}},70482(e,t,i){"use strict";i.d(t,{l:()=>d});var r=i(69040),n=i(35864),l=i.n(n),a=i(63364),o=i(10600);function s(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class d extends r.l{getObjectDataFormItemProps(e){var t;return{...super.getObjectDataFormItemProps(e),rules:[{pattern:"string"==typeof e.regex&&e.regex.length>0?new RegExp(e.regex,null==(t=e.regexFlags)?void 0:t.join("")):void 0}]}}handleDefaultValue(e,t,i){!l().isEmpty(e.defaultValue)&&l().isEmpty(t.getFieldValue(i))&&t.setFieldValue(i,e.defaultValue)}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),s(this,"id","input"),s(this,"dynamicTypeFieldFilterType",a.kL.get(o.K["DynamicTypes/FieldFilter/String"]))}}},59026(e,t,i){"use strict";i.d(t,{W:()=>o});var r=i(77871),n=i(10600),l=i(63364);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r._{constructor(...e){super(...e),a(this,"id","languagemultiselect"),a(this,"dynamicTypeFieldFilterType",l.kL.get(n.K["DynamicTypes/FieldFilter/Multiselect"]))}}},39218(e,t,i){"use strict";i.d(t,{x:()=>o});var r=i(79782),n=i(63364),l=i(10600);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.n{constructor(...e){super(...e),a(this,"id","language"),a(this,"dynamicTypeFieldFilterType",n.kL.get(l.K["DynamicTypes/FieldFilter/Multiselect"]))}}},26453(e,t,i){"use strict";i.d(t,{i:()=>o});var r=i(69040),n=i(63364),l=i(10600);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.l{getDefaultGridColumnWidth(){return 200}constructor(...e){super(...e),a(this,"id","lastname"),a(this,"dynamicTypeFieldFilterType",n.kL.get(l.K["DynamicTypes/FieldFilter/String"]))}}},59292(e,t,i){"use strict";i.d(t,{T:()=>u});var r=i(74848);i(47867);var n=i(47864),l=i(59258),a=i(35864),o=i.n(a),s=i(14860),d=i(49006);function c(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class u extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.N,{...e,allowedTargets:o().compact(e.allowedTargets??[]),allowedTypes:o().compact(e.allowedTypes??[]),className:e.className,disabled:!0===e.noteditable,disabledFields:o().compact(e.disabledFields??[]),inherited:e.inherited})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(d.O,{children:(0,r.jsx)(s.r,{value:t})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),c(this,"id","link"),c(this,"inheritedMaskOverlay","manual"),c(this,"gridCellEditMode","edit-modal")}}},40909(e,t,i){"use strict";i.d(t,{J:()=>C});var r=i(74848),n=i(47867),l=i(35864),a=i(47864),o=i(80630),s=i(67342),d=i(2338),c=i(10014),u=i(57231),p=i(62451);let m=e=>{let{children:t,noteditable:i,className:l}=e,{currentLanguage:a,hasLocalizedFields:m,setHasLocalizedFields:g}=(0,c.S)(),h=!0===i;return(0,n.useEffect)(()=>{m||g(!0)},[]),(0,r.jsx)(o.K,{locales:[a],children:(0,r.jsx)(p.e,{combinedFieldNameParent:["localizedfields"],children:(0,r.jsx)(u.lV.Group,{name:"localizedfields",children:(0,r.jsx)(d.$,{className:"w-full",direction:"vertical",size:"small",children:null==t?void 0:t.map((e,t)=>(0,r.jsx)(s.f,{...e,className:l,noteditable:h||e.noteditable},t))})})})})};var g=i(44767),h=i(63364),v=i(10600),f=i(52112),y=i(25750),b=i(22014);let x=e=>{let{children:t,className:i,value:n}=e,a=(0,f.C)(),o=(0,h.Lt)(v.K["DynamicTypes/ObjectDataRegistry"]);return(0,r.jsx)(d.$,{className:"w-full",direction:"vertical",size:"small",children:null==t?void 0:t.map((e,t)=>{let s=o.getDynamicType(e.fieldtype),d=null==e?void 0:e.name;return Object.entries(null==n?void 0:n[d]).map(n=>{let[o,c]=n,u={...e,name:d,defaultFieldWidth:a,className:i,title:o,value:c,datatype:"data"};return(0,r.jsxs)(y.s,{gap:"mini",vertical:!0,children:[(0,r.jsxs)(b.E,{children:[null==e?void 0:e.title," ",!(0,l.isEmpty)(o)&&(0,r.jsxs)(b.E,{type:"secondary",children:["| ",null==o?void 0:o.toUpperCase()]})]}),s.getObjectDataComponent(u)]},`${t}-${o}`)})})})};var j=i(18196);function w(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class C extends a.h{getObjectDataComponent(e){return(0,r.jsx)(m,{...e})}getVersionObjectDataComponent(e){return(0,r.jsx)(x,{...e})}async processVersionFieldData(e){var t;let{item:i,fieldValueByName:r,fieldPath:n,fieldBreadcrumbTitle:a,versionId:o,versionCount:s}=e,d=e=>{let{fieldData:t,fieldValue:i,fieldPathValue:r}=e;return{fieldBreadcrumbTitle:a,versionId:o,versionCount:s,fieldData:t,fieldValue:i,fieldPath:r}};return null==i||null==(t=i.children)?void 0:t.flatMap(e=>{let t=(0,l.get)(r,e.name);if((0,l.isEmpty)(t)){let i=(0,j.Po)(n)?e.name:`${n}.${e.name}`;return d({fieldData:{...e},fieldValue:t,fieldPathValue:i})}return Object.entries(t).map(t=>{let[i,r]=t,l=(0,j.Po)(n)?e.name:`${n}.${e.name}.${i}`;return d({fieldData:{...e,locale:i},fieldValue:r,fieldPathValue:l})})})}constructor(...e){super(...e),w(this,"id",g.l.LOCALIZED_FIELDS),w(this,"isCollectionType",!0)}}},6462(e,t,i){"use strict";i.d(t,{F:()=>p});var r=i(74848);i(47867);var n=i(47864),l=i(30856),a=i(33774),o=i(6469),s=i(84405),d=i(63364),c=i(10600);function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends n.h{getObjectDataComponent(e){return(0,r.jsx)(o.D,{...e,...(0,l.zd)(e),className:e.className,disabled:!0===e.noteditable})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,r.jsx)(a.Q,{disabled:!0===e.noteditable,label:e.title,name:e.name})}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(s.v,{relations:t})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),u(this,"id","manyToManyObjectRelation"),u(this,"dynamicTypeFieldFilterType",d.kL.get(c.K["DynamicTypes/FieldFilter/Relation"])),u(this,"supportsBatchAppendModes",!0),u(this,"gridCellEditMode","edit-modal"),u(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},1642(e,t,i){"use strict";i.d(t,{g:()=>p});var r=i(74848);i(47867);var n=i(47864),l=i(38798),a=i(30856),o=i(33774),s=i(84405),d=i(63364),c=i(10600);function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.g,{...e,...(0,a.zd)(e),className:e.className,disabled:!0===e.noteditable})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,r.jsx)(o.Q,{disabled:!0===e.noteditable,label:e.title,name:e.name})}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(s.v,{relations:t})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),u(this,"id","manyToManyRelation"),u(this,"dynamicTypeFieldFilterType",d.kL.get(c.K["DynamicTypes/FieldFilter/Relation"])),u(this,"supportsBatchAppendModes",!0),u(this,"gridCellEditMode","edit-modal"),u(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},34263(e,t,i){"use strict";i.d(t,{h:()=>p});var r=i(74848);i(47867);var n=i(47864),l=i(74462),a=i(30856),o=i(84405),s=i(35864),d=i(63364),c=i(10600);function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.P,{...e,...(0,a.zd)(e),className:e.className,disabled:!0===e.noteditable,inherited:e.inherited})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,s.isNil)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(o.v,{relations:[t]})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),u(this,"id","manyToOneRelation"),u(this,"dynamicTypeFieldFilterType",d.kL.get(c.K["DynamicTypes/FieldFilter/Relation"])),u(this,"gridCellEditMode","edit-modal"),u(this,"gridCellEditModalSettings",{modalSize:"L",formLayout:"vertical"})}}},30029(e,t,i){"use strict";i.d(t,{O:()=>o});var r=i(77871),n=i(63364),l=i(10600);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r._{constructor(...e){super(...e),a(this,"id","multiselect"),a(this,"dynamicTypeFieldFilterType",n.kL.get(l.K["DynamicTypes/FieldFilter/Multiselect"]))}}},64662(e,t,i){"use strict";i.d(t,{Z:()=>g});var r=i(74848);i(47867);var n=i(46549),l=i(12557),a=i(83499),o=i(8651),s=i.n(o),d=i(49006),c=i(32753),u=i(35864);let p=e=>{let{min:t,max:i}=e,n=(0,u.isString)(t)?t:(0,c.Z)({value:t}),l=(0,u.isString)(i)?i:(0,c.Z)({value:i}),a=[];return(0,u.isEmpty)(n)||a.push(n),(0,u.isEmpty)(l)||a.push(l),(0,r.jsx)(d.O,{children:a.join(" - ")})};function m(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class g extends l.w{getObjectDataComponent(e){let t=this.getObjectDataComponentProps(e);return(0,r.jsx)(n.ls,{...t,className:s()("w-full",e.className),inputClassName:"w-full",width:(0,a.x)(e.width,2*e.defaultFieldWidth.small+8)})}getVersionObjectDataComponent(e){let t=this.getVersionObjectDataComponentProps(e);return(0,r.jsx)(n.ls,{...t,className:s()("w-full",e.className),inputClassName:"w-full",width:(0,a.x)(e.width,2*e.defaultFieldWidth.small+8)})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),rules:[{validator:n.uD}]}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(p,{max:(null==t?void 0:t.maximum)??void 0,min:(null==t?void 0:t.minimum)??void 0})}constructor(...e){super(...e),m(this,"id","numericRange"),m(this,"gridCellEditMode","edit-modal")}}},3871(e,t,i){"use strict";i.d(t,{G:()=>d});var r=i(74848);i(47867);var n=i(12557),l=i(71437),a=i(63364),o=i(10600);function s(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class d extends n.w{getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(l.e,{value:t})}constructor(...e){super(...e),s(this,"id","numeric"),s(this,"gridCellEditMode","edit-modal"),s(this,"dynamicTypeFieldFilterType",a.kL.get(o.K["DynamicTypes/FieldFilter/Number"]))}}},40709(e,t,i){"use strict";i.d(t,{D:()=>p});var r=i(74848);i(47867);var n=i(35864),l=i(47864),a=i(48199),o=i(58200),s=i(93104),d=i(44767),c=i(18196);function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends l.h{getObjectDataComponent(e){return(0,r.jsx)(a.B,{...e})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:null}}async processVersionFieldData(e){let{objectId:t,item:i,fieldBreadcrumbTitle:r,fieldValueByName:l,fieldPath:a,versionId:u,versionCount:p,layoutsList:m,setLayoutsList:g}=e,h=null,v=e=>{let{data:t,updatedFieldBreadcrumbTitle:o=r,fieldPathValue:d=a}=e;return t.flatMap(e=>{(0,n.isEmpty)(e.key)||(h=e.key);let t=!!(0,n.isEmpty)(h)||(null==i?void 0:i.allowedTypes.includes(h))===!0;if("layout"===e.datatype&&t){let t=e.title??e.name,i=(0,s.Yl)(o,t);return v({data:e.children,updatedFieldBreadcrumbTitle:i,fieldPathValue:d})}if("data"===e.datatype){let t=`${h}.${null==e?void 0:e.name}`,i=(0,n.get)(l,t),r=(0,c.Po)(d)?t:`${d}.${t}`;return{fieldBreadcrumbTitle:o,fieldData:{...e},fieldValue:i,fieldPath:r,versionId:u,versionCount:p}}return[]})},f=async()=>{try{let e=await fetch(`${(0,o.$)()}/class/object-brick/${t}/object/layout`);return await e.json()}catch(e){return console.error(e),null}};async function y(){try{let t=m.filter(e=>e.type===d.l.OBJECT_BRICKS);if(!(0,n.isEmpty)(t)){var e;return v({data:null==(e=t[0])?void 0:e.data})}let i=await f();if(!(0,n.isEmpty)(i))return g([...m,{type:d.l.OBJECT_BRICKS,data:null==i?void 0:i.items}]),v({data:null==i?void 0:i.items});return[]}catch(e){return[]}}return await y()}constructor(...e){super(...e),u(this,"id","objectbricks"),u(this,"isCollectionType",!1)}}},98719(e,t,i){"use strict";i.d(t,{E:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(84834),a=i(83499),o=i(49006);function s(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let d="********";class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.c,{autoComplete:"new-password",className:e.className,disabled:!0===e.noteditable,inherited:e.inherited,minLength:e.minimumLength??void 0,style:{maxWidth:(0,a.x)(e.width,e.defaultFieldWidth.medium)},value:d,visibilityToggle:!1})}handleDefaultValue(e,t,i){t.setFieldValue(i,d)}getGridCellPreviewComponent(e){return(0,r.jsx)(o.O,{children:d})}getGridCellEditComponent(e){let t={...e.objectProps,value:d};return this.getObjectDataComponent(t)}constructor(...e){super(...e),s(this,"id","password"),s(this,"gridCellEditMode","edit-modal")}}},43608(e,t,i){"use strict";i.d(t,{Y:()=>m});var r=i(74848);i(47867);var n=i(47864),l=i(58705),a=i(35864),o=i.n(a),s=i(32753),d=i(49006),c=i(51289);let u=e=>{let{min:t,max:i,unitId:n}=e,{getAbbreviation:l}=(0,c.R)(),o=(0,a.isString)(t)?t:(0,s.Z)({value:t}),u=(0,a.isString)(i)?i:(0,s.Z)({value:i}),p=[];return(0,a.isEmpty)(o)||p.push(o),(0,a.isEmpty)(u)||p.push(u),(0,r.jsxs)(d.O,{children:[p.join(" - ")," ",!(0,a.isNull)(n)&&l(n)]})};function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class m extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.q,{...e,className:e.className,disabled:!0===e.noteditable})}handleDefaultValue(e,t,i){!o().isEmpty(e.defaultUnit)&&o().isEmpty(t.getFieldValue(i))&&t.setFieldValue(i,{minimum:null,maximum:null,unitId:e.defaultUnit})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,a.isNull)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(u,{max:(null==t?void 0:t.maximum)??void 0,min:(null==t?void 0:t.minimum)??void 0,unitId:null==t?void 0:t.unitId})}constructor(...e){super(...e),p(this,"id","quantityValueRange"),p(this,"gridCellEditMode","edit-modal")}}},57235(e,t,i){"use strict";i.d(t,{R:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(546),a=i(35864),o=i(34029),s=i(46881);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.F,{...e,className:e.className,disabled:!0===e.noteditable})}handleDefaultValue(e,t,i){!((0,a.isEmpty)(e.defaultValue)&&(0,a.isEmpty)(e.defaultUnit))&&(0,a.isEmpty)(t.getFieldValue(i))&&t.setFieldValue(i,{value:e.defaultValue,unitId:e.defaultUnit})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,a.isEmpty)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(o.F,{unitId:t.unitId,value:t.value})}constructor(...e){super(...e),d(this,"id","quantityValue"),d(this,"gridCellEditMode","edit-modal"),d(this,"dynamicTypeFieldFilterType",s.container.get("DynamicTypes/FieldFilter/QuantityValue"))}}},27129(e,t,i){"use strict";i.d(t,{M:()=>u});var r=i(74848);i(47867);var n=i(47864),l=i(33774),a=i(7810),o=i(84405),s=i(63364),d=i(10600);function c(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class u extends n.h{getObjectDataComponent(e){return(0,r.jsx)(a.i,{...e,className:e.className,disabled:!0===e.noteditable})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,r.jsx)(l.Q,{disabled:!0===e.noteditable,label:e.title,name:e.name})}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(o.v,{relations:t})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),c(this,"id","reverseObjectRelation"),c(this,"dynamicTypeFieldFilterType",s.kL.get(d.K["DynamicTypes/FieldFilter/Relation"])),c(this,"isAllowedInBatchEdit",!1),c(this,"gridCellEditMode","edit-modal"),c(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},82430(e,t,i){"use strict";i.d(t,{i:()=>v});var r=i(74848);i(47867);var n=i(47864),l=i(60142),a=i(43748),o=i(49006),s=i(35864);let d=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{colorPreview:t` - display: inline-block; - width: 20px; - height: 20px; - `}});var c=i(25750);let u=e=>{let{value:t}=e,{styles:i}=d();return(0,s.isNil)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(o.O,{children:(0,r.jsxs)(c.s,{align:"center",gap:"mini",children:[(0,r.jsx)("span",{className:i.colorPreview,style:{backgroundColor:t}}),(0,r.jsx)("span",{children:t})]})})};var p=i(46881);function m(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let g=e=>e.cleared?null:e.toHexString(),h=e=>g(e)??(0,r.jsxs)("div",{children:["(",(0,l.t)("empty"),")"]});class v extends n.h{getObjectDataComponent(e){return(0,r.jsx)(a.s,{allowClear:!0,className:e.className,disabled:!0===e.noteditable,format:"hex",inherited:e.inherited,showText:h,value:e.value})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),getValueFromEvent:g}}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(u,{value:t})}constructor(...e){super(...e),m(this,"id","rgbaColor"),m(this,"gridCellEditMode","edit-modal"),m(this,"dynamicTypeFieldFilterType",p.container.get(p.serviceIds["DynamicTypes/FieldFilter/Color"]))}}},97352(e,t,i){"use strict";i.d(t,{$:()=>o});var r=i(79782),n=i(63364),l=i(10600);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.n{constructor(...e){super(...e),a(this,"id","select"),a(this,"dynamicTypeFieldFilterType",n.kL.get(l.K["DynamicTypes/FieldFilter/Multiselect"]))}}},97355(e,t,i){"use strict";i.d(t,{O:()=>p});var r=i(74848),n=i(44922),l=i(12557),a=i(83499);i(47867);var o=i(8651),s=i.n(o),d=i(71437),c=i(46881);function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends l.w{getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(d.e,{value:t})}getObjectDataComponent(e){let t=this.getObjectDataComponentProps(e);return(0,r.jsx)(n.A,{...t,allowClear:!0,className:s()("w-full",e.className),showValue:!0,style:{maxWidth:(0,a.x)(e.width,e.defaultFieldWidth.large),height:(0,a.x)(e.height,!0===e.vertical?100:void 0)},vertical:e.vertical??void 0})}constructor(...e){super(...e),u(this,"id","slider"),u(this,"inheritedMaskOverlay","form-element"),u(this,"gridCellEditMode","edit-modal"),u(this,"dynamicTypeFieldFilterType",c.container.get(c.serviceIds["DynamicTypes/FieldFilter/Number"]))}}},76371(e,t,i){"use strict";i.d(t,{e:()=>g});var r=i(74848);i(47867);var n=i(47864),l=i(62916),a=i(49006),o=i(35864),s=i(89133),d=i(21429),c=i(8651),u=i.n(c);let p=e=>{let{value:t,rows:i,cols:n}=e,{styles:l}=(0,s.I)(),{t:c}=(0,d.useTranslation)();return(0,o.isNil)(t)||(0,o.isEmpty)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(a.O,{children:(0,r.jsxs)("table",{className:u()(l.table,l.tableNoMinWidth),children:[(0,r.jsx)("thead",{children:(0,r.jsxs)("tr",{children:[(0,r.jsx)("th",{}),n.map((e,t)=>(0,r.jsx)("th",{children:c(e.label)},t))]})}),(0,r.jsx)("tbody",{children:i.map((e,i)=>(0,r.jsxs)("tr",{children:[(0,r.jsx)("th",{children:c(e.label)}),n.map((i,n)=>{var l;return(0,r.jsx)("td",{children:(null==(l=t[e.key])?void 0:l[i.key])??""},n)})]},i))})]})})};function m(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class g extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.a,{...e,className:e.className,disabled:!0===e.noteditable})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue(),i=e.objectProps;return(0,r.jsx)(p,{cols:i.cols,rows:i.rows,value:t})}constructor(...e){super(...e),m(this,"id","structuredTable"),m(this,"inheritedMaskOverlay","form-item-container"),m(this,"gridCellEditMode","edit-modal"),m(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},20126(e,t,i){"use strict";i.d(t,{v:()=>m});var r=i(74848);i(47867);var n=i(47864),l=i(60939),a=i(49006),o=i(35864),s=i(89133),d=i(8651),c=i.n(d);let u=e=>{let{value:t}=e,{styles:i}=(0,s.I)();return(0,o.isNil)(t)||(0,o.isEmpty)(t)?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(a.O,{children:(0,r.jsx)("table",{className:c()(i.table,i.tableNoMinWidth),children:t.map((e,t)=>(0,r.jsx)("tr",{children:(0,o.isArray)(e)&&e.map((e,t)=>(0,r.jsx)("td",{children:e},t))},t))})})};function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class m extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.X,{...e,className:e.className,disabled:!0===e.noteditable})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(u,{value:t})}constructor(...e){super(...e),p(this,"id","table"),p(this,"inheritedMaskOverlay","form-item-container"),p(this,"gridCellEditMode","edit-modal"),p(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"})}}},6066(e,t,i){"use strict";i.d(t,{L:()=>c});var r=i(74848);i(47867);var n=i(47864),l=i(28083),a=i(83499),o=i(63364),s=i(10600);function d(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class c extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.f,{autoSize:{minRows:3},className:e.className,disabled:!0===e.noteditable,inherited:e.inherited,maxLength:e.maxLength??void 0,showCount:e.showCharCount,style:{maxWidth:(0,a.x)(e.width,e.defaultFieldWidth.large)},value:e.value})}getDefaultGridColumnWidth(){return 400}constructor(...e){super(...e),d(this,"id","textarea"),d(this,"dynamicTypeFieldFilterType",o.kL.get(s.K["DynamicTypes/FieldFilter/String"]))}}},95715(e,t,i){"use strict";i.d(t,{E:()=>p});var r=i(74848);i(47867);var n=i(8651),l=i.n(n),a=i(47864),o=i(11354),s=i(83499),d=i(49006),c=i(46881);function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends a.h{getObjectDataComponent(e){return(0,r.jsx)(o.l.TimePicker,{className:l()("w-full",e.className),disabled:!0===e.noteditable,inherited:e.inherited,outputFormat:"HH:mm",outputType:"dateString",showSecond:!1,style:{maxWidth:(0,s.x)(e.defaultFieldWidth.small)},value:e.value})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(d.O,{children:t})}constructor(...e){super(...e),u(this,"id","time"),u(this,"gridCellEditMode","edit-modal"),u(this,"dynamicTypeFieldFilterType",c.container.get(c.serviceIds["DynamicTypes/FieldFilter/Time"]))}}},71084(e,t,i){"use strict";i.d(t,{Z:()=>p});var r=i(74848);i(47867);var n=i(47864),l=i(60269),a=i(49006),o=i(35864),s=i(41423),d=i(25750);let c=e=>{let{value:t}=e;if((0,o.isNil)(t))return(0,r.jsx)(r.Fragment,{});let i=[...new Set(t.map(e=>e.slug))];return(0,r.jsx)(a.O,{children:(0,r.jsx)(d.s,{gap:"mini",children:i.map((e,t)=>(0,r.jsx)(s.v,{children:e},t))})})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class p extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.b,{...e,className:e.className,disabled:!0===e.noteditable})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(c,{value:t})}getDefaultGridColumnWidth(){return 250}constructor(...e){super(...e),u(this,"id","urlSlug"),u(this,"gridCellEditMode","edit-modal"),u(this,"gridCellEditModalSettings",{modalSize:"L",formLayout:"vertical"})}}},7997(e,t,i){"use strict";i.d(t,{Q:()=>o});var r=i(79782),n=i(63364),l=i(10600);function a(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class o extends r.n{constructor(...e){super(...e),a(this,"id","user"),a(this,"dynamicTypeFieldFilterType",n.kL.get(l.K["DynamicTypes/FieldFilter/Multiselect"]))}}},63995(e,t,i){"use strict";i.d(t,{q:()=>m});var r=i(74848);i(47867);var n=i(47864),l=i(11493),a=i(35864),o=i.n(a),s=i(25750),d=i(51327),c=i(49006),u=i(21429);function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class m extends n.h{getObjectDataComponent(e){return(0,r.jsx)(l.C,{...e,allowedVideoTypes:o().compact(e.allowedTypes)??void 0,className:e.className,disabled:!0===e.noteditable})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,r.jsx)(c.O,{children:(0,r.jsxs)(s.s,{className:"w-full",justify:"center",children:[!(0,a.isNil)(t)&&"asset"===t.type&&(0,r.jsx)(d.k,{height:100,value:t,width:100}),!(0,a.isNil)(t)&&(null==t?void 0:t.type)!=="asset"&&(0,r.jsxs)("span",{style:{whiteSpace:"normal"},children:[(0,r.jsxs)(u.Trans,{children:["video.type.",t.type]})," (",(0,r.jsx)(u.Trans,{children:"video.id"}),": ",t.data,")"]})]})})}getDefaultGridColumnWidth(){return 250}constructor(...e){super(...e),p(this,"id","video"),p(this,"inheritedMaskOverlay","form-element"),p(this,"gridCellEditMode","edit-modal")}}},2845(e,t,i){"use strict";i.d(t,{s:()=>p});var r=i(74848);i(47867);var n=i(49006),l=i(35864),a=i(84405),o=i(67104),s=i(21429),d=i(89133),c=i(8651),u=i.n(c);let p=e=>{let{value:t,columnDefinition:i}=e,{t:c}=(0,s.useTranslation)(),{styles:p}=(0,d.I)();if((0,l.isNil)(t)||(0,l.isEmpty)(t))return(0,r.jsx)(r.Fragment,{});if((0,l.isNull)(i)||(0,l.isEmpty)(i)){let e=t.map(e=>({fullPath:e.element.fullPath,isPublished:e.element.isPublished}));return(0,r.jsx)(a.v,{relations:e})}return(0,r.jsx)(n.O,{overflow:"auto",children:(0,r.jsxs)("table",{className:u()(p.table)+" foooobar",style:{tableLayout:"auto"},children:[(0,r.jsx)("thead",{children:(0,r.jsxs)("tr",{children:[(0,r.jsx)("th",{children:c("element")}),i.map(e=>(0,r.jsx)("th",{children:(0,l.isNil)(e.label)||(0,l.isEmpty)(e.label)?e.key:c(e.label)},e.key))]})}),(0,r.jsx)("tbody",{children:t.map((e,t)=>(0,r.jsxs)("tr",{children:[(0,r.jsx)("td",{style:{lineHeight:0},children:(0,r.jsx)(o.F,{path:e.element.fullPath,published:e.element.isPublished??void 0})}),i.map(i=>{var n,a;let o;return(0,l.isNil)(i.width)||(o={width:`${i.width}px`}),(0,r.jsx)("td",{style:o,children:(a=(null==(n=e.data)?void 0:n[i.key])??"",(0,l.isNil)(a)?"":(0,l.isBoolean)(a)?a?"1":"":String(a))},`${i.key}-${t}`)})]},`${e.element.fullPath}-${t}`))})]})})}},84557(e,t,i){"use strict";i.d(t,{s:()=>l});var r=i(74848);i(47867);var n=i(49006);let l=e=>{let{geoPoints:t}=e,i=t.map(e=>t.length>1?`[${e.latitude}, ${e.longitude}]`:`${e.latitude}, ${e.longitude}`);return(0,r.jsx)(n.O,{children:i.join(" → ")})}},49006(e,t,i){"use strict";i.d(t,{O:()=>o});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{wrapper:t` - padding: ${i.paddingXS}px; - overflow: hidden; - text-overflow: ellipsis; - display: flex; - align-items: center; - width: 100%; - `}}),o=l().forwardRef((e,t)=>{let{children:i,overflow:n}=e,{styles:l}=a();return(0,r.jsx)("div",{className:[l.wrapper,"grid-cell-preview-wrapper"].join(" "),ref:t,style:{overflow:n},children:i})});o.displayName="GridCellPreviewWrapper"},10265(e,t,i){"use strict";i.d(t,{C:()=>o});var r=i(74848);i(47867);var n=i(49006),l=i(41423),a=i(21429);let o=e=>{let{count:t}=e,{t:i}=(0,a.useTranslation)();return t<1?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(n.O,{overflow:"auto",children:(0,r.jsxs)(l.v,{children:[t," ",i(1===t?"entry":"entries")]})})}},71437(e,t,i){"use strict";i.d(t,{e:()=>a});var r=i(74848);i(47867);var n=i(32753),l=i(49006);let a=e=>{let{value:t}=e;return(0,r.jsx)(l.O,{children:(0,n.Z)({value:t})})}},34029(e,t,i){"use strict";i.d(t,{F:()=>s});var r=i(74848);i(47867);var n=i(32753),l=i(49006),a=i(35864),o=i(51289);let s=e=>{let{value:t,unitId:i}=e,{getAbbreviation:s}=(0,o.R)();return(0,r.jsxs)(l.O,{children:[(0,a.isNumber)(t)?(0,n.Z)({value:t}):t," ",!(0,a.isNull)(i)&&s(i)]})}},84405(e,t,i){"use strict";i.d(t,{v:()=>c});var r=i(74848);i(47867);var n=i(49006),l=i(67104),a=i(35864),o=i(25750);let s=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{container:t` - overflow: hidden - `}});var d=i(87632);let c=e=>{let{relations:t,isClickable:i=!1,noWrapper:c=!1}=e,{styles:u}=s();if((0,a.isNil)(t)||(0,a.isEmpty)(t))return(0,r.jsx)(r.Fragment,{});let p=(0,r.jsx)(o.s,{align:"flex-start",className:u.container,gap:"mini",vertical:!0,children:null==t?void 0:t.map((e,t)=>(0,a.isNil)(e.fullPath)?null:(0,r.jsx)(l.F,{elementType:(0,a.isString)(e.type)&&i?(0,d.sv)(e.type):void 0,id:e.id,path:e.fullPath,published:e.isPublished??void 0},t))});return c?p:(0,r.jsx)(n.O,{children:p})}},89133(e,t,i){"use strict";i.d(t,{I:()=>r});let r=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{table:t` - width: auto !important; - min-width: 100%; - border-radius: 0 !important; - - td, th { - padding: 2px ${i.paddingXXS}px !important; - text-align: left; - border: 1px solid ${i.colorBorderSecondary}; - white-space: nowrap; - width: auto; - } - - `,tableNoMinWidth:t` - min-width: auto; - `}})},83391(e,t,i){"use strict";i.d(t,{P:()=>p});var r=i(74848),n=i(47867),l=i(35864),a=i(93464);let o=e=>{let{collapsed:t,bordered:i,...n}=e;return(0,r.jsx)(a.X,{bordered:i,contentPadding:n.contentPadding,defaultActive:!(t??!0),extra:n.extra,extraPosition:n.extraPosition,forceRender:!0,hasContentSeparator:"fieldset"!==n.theme,label:(0,r.jsx)(r.Fragment,{children:n.title}),size:"small",style:n.style,theme:n.theme,children:n.children})};var s=i(86052);let d=e=>(0,r.jsx)(s.Z,{bordered:!0===e.bordered,contentPadding:e.contentPadding,extra:e.extra,extraPosition:e.extraPosition,style:e.style,theme:e.theme,title:(0,l.isEmpty)(e.title)?void 0:e.title,children:e.children});var c=i(25085),u=i(21429);let p=e=>{let{theme:t="card-with-highlight",...i}=e,a=!0===i.border||!0===i.collapsible||!(0,l.isEmpty)(i.title),{t:s}=(0,u.useTranslation)();return(0,n.useMemo)(()=>a?!0===i.collapsible?(0,r.jsx)(o,{bordered:i.border,collapsed:i.collapsed,collapsible:!0,contentPadding:i.contentPadding,extra:i.extra,style:i.style,theme:t,title:i.title,children:i.children}):(0,r.jsx)(d,{bordered:i.border,contentPadding:i.contentPadding,extra:i.extra,extraPosition:i.extraPosition,style:i.style,theme:t,title:(0,c.isNonEmptyString)(i.title)?s(i.title):i.title,children:i.children}):(0,r.jsx)(r.Fragment,{children:i.children}),[i,a])}},86620(e,t,i){"use strict";i.d(t,{S:()=>m});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(9677),c=i(1993);let u=()=>{var e;let{config:t}=(0,d.e)(),i=null==t||null==(e=t.transformers)?void 0:e.anonymizer,{t:r}=(0,o.useTranslation)();if(void 0===i)throw Error("Transformer configuration for anonymizer is missing");let l=i.configOptions.rule.options;return(0,n.jsx)(s.lV.Item,{initialValue:l[0].value,label:r("grid.advanced-column.anonymizationRule"),name:"rule",children:(0,n.jsx)(c.l,{options:l})})};function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let m=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(u,{})}constructor(...e){super(...e),p(this,"id","anonymizer"),p(this,"group","string")}})||r},38481(e,t,i){"use strict";i.d(t,{N:()=>m});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(9677),c=i(1993);let u=()=>{var e;let{config:t}=(0,d.e)(),i=null==t||null==(e=t.transformers)?void 0:e.blur,{t:r}=(0,o.useTranslation)();if(void 0===i)throw Error("Transformer configuration for blur is missing");let l=i.configOptions.rule.options;return(0,n.jsx)(s.lV.Item,{initialValue:l[0].value,label:r("grid.advanced-column.blurringRule"),name:"rule",children:(0,n.jsx)(c.l,{options:l})})};function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let m=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(u,{})}constructor(...e){super(...e),p(this,"id","blur"),p(this,"group","string")}})||r},97552(e,t,i){"use strict";i.d(t,{Y:()=>p});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(80632);let c=()=>{let{t:e}=(0,o.useTranslation)();return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(s.lV.Item,{initialValue:e("yes"),label:e("grid.advanced-column.trueLabel"),name:"trueLabel",children:(0,n.jsx)(d.p,{})}),(0,n.jsx)(s.lV.Item,{initialValue:e("no"),label:e("grid.advanced-column.falseLabel"),name:"falseLabel",children:(0,n.jsx)(d.p,{})})]})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","booleanFormatter"),u(this,"group","boolean")}})||r},7319(e,t,i){"use strict";i.d(t,{K:()=>p});var r,n=i(74848);i(47867);var l=i(87638),a=i(57231),o=i(9677),s=i(1993),d=i(21429);let c=()=>{var e;let{config:t}=(0,o.e)(),i=null==t||null==(e=t.transformers)?void 0:e.caseChange,{t:r}=(0,d.useTranslation)();if(void 0===i)throw Error("Transformer configuration for case change is missing");let l=i.configOptions.mode.options;return(0,n.jsx)(a.lV.Item,{initialValue:l[0].value,label:r("mode"),name:"mode",children:(0,n.jsx)(s.l,{options:l})})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,i(62446).injectable)()(r=class extends l.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","caseChange"),u(this,"group","string")}})||r},19580(e,t,i){"use strict";i.d(t,{f:()=>p});var r,n=i(74848);i(47867);var l=i(87638),a=i(62446),o=i(57231),s=i(80632),d=i(21429);let c=()=>{let{t:e}=(0,d.useTranslation)();return(0,n.jsx)(o.lV.Item,{initialValue:" ",label:e("glue"),name:"glue",children:(0,n.jsx)(s.p,{})})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,a.injectable)()(r=class extends l.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","combine"),u(this,"group","string")}})||r},5662(e,t,i){"use strict";i.d(t,{G:()=>p});var r,n=i(74848);i(47867);var l=i(87638),a=i(62446),o=i(57231),s=i(80632),d=i(21429);let c=()=>{let{t:e}=(0,d.useTranslation)();return(0,n.jsx)(o.lV.Item,{initialValue:"Y-m-d",label:e("grid.advanced-column.format"),name:"format",children:(0,n.jsx)(s.p,{})})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,a.injectable)()(r=class extends l.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","dateFormatter"),u(this,"group","date")}})||r},17639(e,t,i){"use strict";i.d(t,{_:()=>s});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638);function o(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let s=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(n.Fragment,{})}constructor(...e){super(...e),o(this,"id","elementCounter"),o(this,"group","other")}})||r},31756(e,t,i){"use strict";i.d(t,{j:()=>p});var r,n=i(74848);i(47867);var l=i(87638),a=i(62446),o=i(57231),s=i(80632),d=i(21429);let c=()=>{let{t:e}=(0,d.useTranslation)();return(0,n.jsx)(o.lV.Item,{initialValue:",",label:e("grid.advanced-column.delimiter"),name:"delimiter",children:(0,n.jsx)(s.p,{})})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,a.injectable)()(r=class extends l.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","explode"),u(this,"group","string")}})||r},3782(e,t,i){"use strict";i.d(t,{x:()=>g});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(9677),c=i(1993),u=i(28083);let p=()=>{var e,t;let{config:i}=(0,d.e)(),r=null==i||null==(e=i.transformers)?void 0:e.phpCode,{t:l}=(0,o.useTranslation)();if(void 0===r)throw Error("Transformer configuration for php code is missing");let a=r.configOptions.phpCodeKey.options;return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(s.lV.Item,{initialValue:null==(t=a[0])?void 0:t.value,label:l("grid.advanced-column.advancedColumns.phpCodeKey"),name:"phpCodeKey",children:(0,n.jsx)(c.l,{options:a})}),(0,n.jsx)(s.lV.Item,{label:l("grid.advanced-column.advancedColumns.arguments"),name:"arguments",children:(0,n.jsx)(u.f,{})})]})};function m(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let g=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(p,{})}constructor(...e){super(...e),m(this,"id","phpCode"),m(this,"group","other")}})||r},79691(e,t,i){"use strict";i.d(t,{v:()=>p});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(80632);let c=()=>{let{t:e}=(0,o.useTranslation)();return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(s.lV.Item,{label:e("grid.advanced-column.find"),name:"find",children:(0,n.jsx)(d.p,{})}),(0,n.jsx)(s.lV.Item,{label:e("grid.advanced-column.replace"),name:"replace",children:(0,n.jsx)(d.p,{})})]})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","stringReplace"),u(this,"group","string")}})||r},6002(e,t,i){"use strict";i.d(t,{V:()=>p});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(71141);let c=()=>{let{t:e}=(0,o.useTranslation)();return(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(s.lV.Item,{initialValue:0,label:e("grid.advanced-column.start"),name:"start",children:(0,n.jsx)(d.Y,{})}),(0,n.jsx)(s.lV.Item,{initialValue:0,label:e("grid.advanced-column.length"),name:"length",children:(0,n.jsx)(d.Y,{})})]})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","substring"),u(this,"group","string")}})||r},97190(e,t,i){"use strict";i.d(t,{U:()=>p});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(80632);let c=()=>{let{t:e}=(0,o.useTranslation)();return(0,n.jsx)(s.lV.Item,{initialValue:"",label:e("grid.advanced-column.translationPrefix"),name:"prefix",children:(0,n.jsx)(d.p,{})})};function u(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let p=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(c,{})}constructor(...e){super(...e),u(this,"id","translate"),u(this,"group","string")}})||r},15547(e,t,i){"use strict";i.d(t,{c:()=>m});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(9677),c=i(1993);let u=()=>{var e;let{config:t}=(0,d.e)(),i=null==t||null==(e=t.transformers)?void 0:e.trim,{t:r}=(0,o.useTranslation)();if(void 0===i)throw Error("Transformer configuration for trim is missing");let l=i.configOptions.mode.options;return(0,n.jsx)(s.lV.Item,{initialValue:l[0].value,label:r("grid.advanced-column.trim"),name:"mode",children:(0,n.jsx)(c.l,{options:l})})};function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let m=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(u,{})}constructor(...e){super(...e),p(this,"id","trim"),p(this,"group","string")}})||r},52057(e,t,i){"use strict";i.d(t,{H:()=>m});var r,n=i(74848);i(47867);var l=i(62446),a=i(87638),o=i(21429),s=i(57231),d=i(91883),c=i(28453);let u=()=>{let{t:e}=(0,o.useTranslation)();return(0,n.jsx)(s.lV.Item,{initialValue:"{{ value }}",label:e("grid.advanced-column.twigTemplate"),name:"template",children:(0,n.jsx)(c.B,{basicSetup:{lineNumbers:!0,syntaxHighlighting:!0,searchKeymap:!0},extensions:(0,d.R)("html"),minHeight:"200px"})})};function p(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let m=(0,l.injectable)()(r=class extends a.M{getComponent(){return(0,n.jsx)(u,{})}constructor(...e){super(...e),p(this,"id","twigOperator"),p(this,"group","other")}})||r},69186(e,t,i){"use strict";i.d(t,{P:()=>d,Q:()=>s});var r,n,l=i(62446),a=i(55638);function o(e,t,i){var r;return(t="symbol"==typeof(r=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var r=i.call(e,t||"default");if("object"!=typeof r)return r;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?r:r+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}let s=(0,l.injectable)()(r=class{constructor(){o(this,"id",void 0)}})||r,d=(0,l.injectable)()(n=class{registerDynamicType(e){this.dynamicTypes.has(e.id)&&(0,a.Ay)(new a.$g(`Dynamic type with id "${e.id}" already exists`)),this.dynamicTypes.set(e.id,e)}getDynamicType(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1],i=this.dynamicTypes.get(e);return void 0===i&&t&&(0,a.Ay)(new a.$g(`Dynamic type with id "${e}" not found`)),i}getDynamicTypes(){return Array.from(this.dynamicTypes.values())}overrideDynamicType(e){this.dynamicTypes.has(e.id)||(0,a.Ay)(new a.$g(`Dynamic type with id "${e.id}" not found`)),this.dynamicTypes.set(e.id,e)}hasDynamicType(e){return this.dynamicTypes.has(e)}constructor(){o(this,"dynamicTypes",new Map)}})||n},87669(e,t,i){"use strict";i.d(t,{U:()=>a,i:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(null),a=e=>{let{children:t,serviceIds:i}=e,a=(0,n.useContext)(l),o=(0,n.useMemo)(()=>{let e=[...i];return e.unshift(...(null==a?void 0:a.serviceIds)??[]),e},[i,null==a?void 0:a.serviceIds]);return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{serviceIds:o},children:t}),[i])}},49583(e,t,i){"use strict";i.d(t,{Aj:()=>o,MD:()=>c,MV:()=>u,OM:()=>p,QZ:()=>d,mI:()=>s});var r=i(74848),n=i(81898),l=i(18613);i(47867);var a=i(79472);let o={key:"properties",label:"properties.label",workspacePermission:"properties",children:(0,r.jsx)(l.ComponentRenderer,{component:l.componentConfig.element.editor.tab.properties.name}),icon:(0,r.jsx)(n.I,{value:"settings"}),isDetachable:!0},s={key:"schedule",label:"schedule.label",workspacePermission:"settings",children:(0,r.jsx)(l.ComponentRenderer,{component:l.componentConfig.element.editor.tab.schedule.name}),icon:(0,r.jsx)(n.I,{value:"schedule"}),isDetachable:!0,hidden:e=>!(0,a.o)(e.permissions,"versions")||!(0,a.o)(e.permissions,"settings")},d={key:"dependencies",label:"dependencies.label",children:(0,r.jsx)(l.ComponentRenderer,{component:l.componentConfig.element.editor.tab.dependencies.name}),icon:(0,r.jsx)(n.I,{value:"dependencies"}),isDetachable:!0},c={key:"workflow",label:"workflow.label",userPermission:"workflow_details",children:(0,r.jsx)(l.ComponentRenderer,{component:l.componentConfig.element.editor.tab.workflow.name}),icon:(0,r.jsx)(n.I,{value:"workflow"}),isDetachable:!0},u={key:"notes-events",label:"notes-and-events.label",userPermission:"notes_events",children:(0,r.jsx)(l.ComponentRenderer,{component:l.componentConfig.element.editor.tab.notesAndEvents.name}),icon:(0,r.jsx)(n.I,{value:"notes-events"}),isDetachable:!0},p={key:"tags",label:"tags.label",userPermission:"tags_assignment",children:(0,r.jsx)(l.ComponentRenderer,{component:l.componentConfig.element.editor.tab.tags.name}),icon:(0,r.jsx)(n.I,{value:"tag"}),isDetachable:!0}},87286(e,t,i){"use strict";i.d(t,{K:()=>l,r:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)({tabManager:null}),a=e=>{let{tabManager:t,children:i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{tabManager:t},children:i}),[t,i])}},96317(e,t,i){"use strict";i.d(t,{M:()=>d});var r=i(74848),n=i(81898),l=i(66514),a=i(47867),o=i.n(a),s=i(32396);let d=e=>{let{tags:t,loadingNodes:i,actions:a,rootActions:d}=e,c=(e,t)=>null==e||""===e.trim()?t?(0,r.jsx)("span",{children:(0,r.jsx)(l.A,{style:{marginLeft:8}})}):null:(0,r.jsxs)(o().Fragment,{children:[(0,r.jsx)("span",{children:e}),t&&(0,r.jsx)(l.A,{style:{marginLeft:8}})]});return[{key:0,title:c("All Tags",!1),icon:(0,r.jsx)(n.I,{value:"folder"}),"data-testid":(0,s.o7)(0,"folder"),children:t.length>0?function e(t){return t.map(t=>{let l,o;return{key:t.id.toString(),title:c(t.text,(l=t.id.toString(),i.has(l))),icon:(0,r.jsx)(n.I,{value:"tag"}),"data-testid":(0,s.o7)(t.id,"tag"),disableCheckbox:(o=t.id.toString(),i.has(o)),children:t.hasChildren?e(t.children):[],actions:a}})}(t):[],actions:d}]}},60583(e,t,i){"use strict";i.d(t,{Q:()=>a});var r=i(74848),n=i(29740);i(47867);var l=i(94685);let a=e=>{let{elementSelectorConfig:t,...i}=e,{open:a}=(0,l.L)(t);return(0,r.jsx)(n.K,{...i,icon:{value:"folder-search"},onClick:()=>{a()}})}},72636(e,t,i){"use strict";i.d(t,{XN:()=>ey,ry:()=>eb,hO:()=>ev,FU:()=>ef});var r,n=i(74848),l=i(47867),a=i(50484),o=i(1240),s=i(30492),d=i(67923),c=i(95198),u=i(20426),p=i(55059),m=i(59991),g=i(56177),h=i(25293),v=i(74525),f=i(92502),y=i(87669),b=i(53894);let x=(0,l.createContext)(void 0),j=e=>{let{children:t}=e,[i,r]=(0,l.useState)({}),[a,o]=(0,l.useState)({}),[s,d]=(0,l.useState)({}),[c,u]=(0,l.useState)({}),[p,m]=(0,l.useState)({}),[g,h]=(0,l.useState)({});return(0,l.useMemo)(()=>(0,n.jsx)(x.Provider,{value:{assets:i,setAssets:r,assetsData:c,setAssetsData:u,documents:a,setDocuments:o,documentsData:p,setDocumentsData:m,objects:s,setObjects:d,objectsData:g,setObjectsData:h},children:t}),[i,c,a,p,s,g])},w=()=>{let e=(0,l.useContext)(x);if(void 0===e)throw Error("useGlobalRowSelection must be used within a GlobalRowSelectionProvider");let t=()=>{let{assets:t,assetsData:i,documents:r,documentsData:n,objects:l,objectsData:a}=e;return{assets:Object.keys(t??{}).map(e=>i[e]),documents:Object.keys(r??{}).map(e=>n[e]),objects:Object.keys(l??{}).map(e=>a[e])}};return{...e,getSelectedData:t,getSelectionCount:()=>{let{assets:e,documents:i,objects:r}=t();return e.length+i.length+r.length}}},C=(0,l.createContext)(void 0),S=e=>{let{children:t}=e,[i,r]=(0,l.useState)();return(0,l.useMemo)(()=>(0,n.jsx)(C.Provider,{value:{activeArea:i,setActiveArea:r},children:t}),[i])},T=()=>{let e=(0,l.useContext)(C);if(void 0===e)throw Error("useAreaControl must be used within a AreaControlProvider");return e},I=(e,t)=>{let{ConfigurationComponent:i,...r}=e;return{...r,ConfigurationComponent:()=>{let{selectedRows:e,setSelectedRows:r,selectedRowsData:a}=(0,b.U)(),{activeArea:o}=T(),{assets:s,documents:d,objects:c,setAssets:u,setAssetsData:p,setDocuments:m,setDocumentsData:g,setObjects:h,setObjectsData:v}=w();return(0,l.useEffect)(()=>{"single"===t.rowSelectionMode&&o!==t.elementType&&("asset"===t.elementType&&r(s),"document"===t.elementType&&r(d),"data-object"===t.elementType&&r(c))},[s,d,c]),(0,l.useEffect)(()=>{o===t.elementType&&("single"===t.rowSelectionMode&&("asset"===t.elementType&&(u(e),p(a),h({}),v({}),m({}),g({})),"document"===t.elementType&&(m(e),g(a),h({}),v({}),u({}),p({})),"data-object"===t.elementType&&(h(e),v(a),u({}),p({}),m({}),g({}))),"multiple"===t.rowSelectionMode&&("asset"===t.elementType&&(u(e),p(a)),"document"===t.elementType&&(m(e),g(a)),"data-object"===t.elementType&&(h(e),v(a))))},[e,a]),(0,l.useMemo)(()=>(0,n.jsx)(i,{}),[])}}};var k=i(39808),E=i(91206),D=i(20351),N=i(63589),P=i(38933),A=i(96940),F=i(33763),$=i(72209),M=i(25750);let O=()=>(0,n.jsx)(A.M,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,n.jsxs)(M.s,{className:"w-full",gap:"small",children:[(0,n.jsx)($.E,{}),(0,n.jsx)(F.v,{})]})});var _=i(59416),L=i(62461),R=i(56977),B=i(26093),z=i(21429),V=i(27994),G=i(24755),U=i(35864);let q=()=>{let e=(0,o.h)(),{onFinish:t}=e.config,{getSelectedData:i,getSelectionCount:r}=w(),{t:l}=(0,z.useTranslation)();return(0,n.jsx)(V.$,{disabled:0===r(),onClick:()=>{var r;let n,l;void 0!==t&&t({items:(r=i(),n=[],l=(e,t)=>{e.forEach(e=>{n.push({elementType:t,data:{...e}})})},(0,U.isArray)(r.assets)&&l(r.assets,G.W.asset),(0,U.isArray)(r.documents)&&l(r.documents,G.W.document),(0,U.isArray)(r.objects)&&l(r.objects,G.W.dataObject),n)}),e.close()},type:"primary",children:l("common.apply-selection")})},W=()=>(0,n.jsx)(A.M,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,n.jsxs)(M.s,{className:"w-full",gap:"small",justify:"space-between",children:[(0,n.jsxs)(L.B,{size:"extra-small",children:[(0,n.jsx)(_.B,{}),(0,n.jsx)(R.y,{}),(0,n.jsx)(B.d,{})]}),(0,n.jsx)(q,{})]})});var K=i(43778),H=i(10840),X=i(38965);let J={...c.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,D.E)();return(0,l.useMemo)(()=>(0,n.jsxs)(n.Fragment,{children:[void 0===e&&(0,n.jsx)(k.U,{loading:!0}),void 0!==e&&(0,n.jsx)(E.s,{renderToolbar:(0,n.jsx)(W,{}),renderTopBar:(0,n.jsx)(O,{}),children:(0,n.jsx)(E.s,{renderSidebar:(0,n.jsx)(N.B,{}),children:(0,n.jsx)(P.E,{})})})]}),[e])},useDataQuery:X.KQ,useDataQueryHelper:d.Q,useElementId:f.p},Z=()=>{var e,t;let{config:i}=(0,o.h)(),r=(null==(t=i.config)||null==(e=t.assets)?void 0:e.allowedTypes)??[],a=(0,l.useMemo)(()=>(0,u.Z)(m.S,H.g,[g.Y,{rowSelectionMode:null==i?void 0:i.selectionType}],h.A,[v.p,{handleSearchTermInSidebar:!1}],p.Y,[I,{rowSelectionMode:null==i?void 0:i.selectionType,elementType:"asset"}],[K.u,{restrictedOptions:r.length>0?r:void 0,elementType:G.W.asset}])(J),[i]);return(0,l.useMemo)(()=>(0,n.jsx)(y.U,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,n.jsx)(c.w,{...a})}),[a])};var Y=i(88286),Q=i(83950),ee=i(71615);let et=()=>(0,n.jsx)(A.M,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,n.jsxs)(M.s,{className:"w-full",gap:"small",children:[(0,n.jsx)($.E,{}),(0,n.jsx)(ee.C,{nullable:!0}),(0,n.jsx)(F.v,{})]})}),ei=()=>(0,n.jsx)(A.M,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,n.jsxs)(M.s,{className:"w-full",gap:"small",justify:"space-between",children:[(0,n.jsxs)(L.B,{size:"extra-small",children:[(0,n.jsx)(_.B,{}),(0,n.jsx)(R.y,{}),(0,n.jsx)(B.d,{})]}),(0,n.jsx)(q,{})]})});var er=i(35747),en=i(69918),el=i(68366);let ea={...c.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,D.E)(),{selectedClassDefinition:t}=(0,er.p)();return(0,l.useMemo)(()=>(0,n.jsx)(E.s,{renderToolbar:void 0!==e?(0,n.jsx)(ei,{}):void 0,renderTopBar:(0,n.jsx)(et,{}),children:(0,n.jsx)(E.s,{renderSidebar:(0,n.jsx)(N.B,{}),children:void 0!==e&&(0,n.jsx)(P.E,{})})}),[e,t])},useDataQuery:X.PE,useDataQueryHelper:el.Q,useElementId:f.p},eo=()=>{var e,t,i,r;let{config:a}=(0,o.h)(),s=null==(t=a.config)||null==(e=t.objects)?void 0:e.allowedTypes,d=null==(r=a.config)||null==(i=r.objects)?void 0:i.allowedClasses,f=s??(null!=d&&d.length>0?["object","variant"]:[]),b=(null==d?void 0:d.map(e=>({classes:e})))??[],x=(0,l.useMemo)(()=>(0,u.Z)(m.S,en.y,[g.Y,{rowSelectionMode:null==a?void 0:a.selectionType}],p.Y,[I,{rowSelectionMode:null==a?void 0:a.selectionType,elementType:"data-object"}],h.A,[Q.f,{showConfigLayer:!1,classRestriction:b.length>0?b:void 0}],[v.p,{handleSearchTermInSidebar:!1}],[K.u,{elementType:G.W.dataObject,restrictedOptions:f.length>0?f:void 0}])(ea),[a]);return(0,l.useMemo)(()=>(0,n.jsx)(y.U,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/ObjectDataRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,n.jsx)(c.w,{...x})}),[x])},es=()=>(0,n.jsx)(A.M,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,n.jsxs)(M.s,{className:"w-full",gap:"small",children:[(0,n.jsx)($.E,{}),(0,n.jsx)(F.v,{})]})}),ed=()=>(0,n.jsx)(A.M,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,n.jsxs)(M.s,{className:"w-full",gap:"small",justify:"space-between",children:[(0,n.jsxs)(L.B,{size:"extra-small",children:[(0,n.jsx)(_.B,{}),(0,n.jsx)(R.y,{}),(0,n.jsx)(B.d,{})]}),(0,n.jsx)(q,{})]})});var ec=i(20168);let eu={...c.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,D.E)();return(0,l.useMemo)(()=>(0,n.jsxs)(n.Fragment,{children:[void 0===e&&(0,n.jsx)(k.U,{loading:!0}),void 0!==e&&(0,n.jsx)(E.s,{renderToolbar:(0,n.jsx)(ed,{}),renderTopBar:(0,n.jsx)(es,{}),children:(0,n.jsx)(E.s,{renderSidebar:(0,n.jsx)(N.B,{}),children:(0,n.jsx)(P.E,{})})})]}),[e])},useDataQuery:X.fd,useDataQueryHelper:d.Q,useElementId:f.p},ep=()=>{var e,t;let{config:i}=(0,o.h)(),r=(null==(t=i.config)||null==(e=t.documents)?void 0:e.allowedTypes)??[],a=(0,l.useMemo)(()=>(0,u.Z)(m.S,ec.g,[g.Y,{rowSelectionMode:null==i?void 0:i.selectionType}],h.A,[v.p,{handleSearchTermInSidebar:!1}],p.Y,[I,{rowSelectionMode:null==i?void 0:i.selectionType,elementType:"document"}],[K.u,{restrictedOptions:r.length>0?r:void 0,elementType:G.W.document}])(eu),[i]);return(0,l.useMemo)(()=>(0,n.jsx)(y.U,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,n.jsx)(c.w,{...a})}),[a])},em=()=>{let{areas:e}=(0,o.h)().config,{activeArea:t,setActiveArea:i}=T(),r=[];return(null==e?void 0:e.asset)===!0&&r.push({key:G.W.asset,label:"Assets",forceRender:!0,children:(0,n.jsx)("div",{style:{height:"65vh"},children:(0,n.jsx)(Z,{})})}),(null==e?void 0:e.object)===!0&&r.push({key:G.W.dataObject,label:"Objects",forceRender:!0,children:(0,n.jsx)("div",{style:{height:"65vh"},children:(0,n.jsx)(eo,{})})}),(null==e?void 0:e.document)===!0&&r.push({key:G.W.document,label:"Documents",forceRender:!0,children:(0,n.jsx)("div",{style:{height:"65vh"},children:(0,n.jsx)(ep,{})})}),(0,l.useEffect)(()=>{r.length>0&&void 0===t&&i(r[0].key)},[]),(0,l.useMemo)(()=>(0,n.jsxs)(n.Fragment,{children:[0===r.length&&(0,n.jsx)("p",{children:"No areas configured"}),1===r.length&&r[0].children,r.length>1&&(0,n.jsx)(Y.t,{activeKey:t,items:r,noPadding:!0,noTabBarMargin:!0,onChange:i})]}),[r,t])},eg=()=>{let e,t,i,r=(0,a.c)(6),l=(0,o.h)();return r[0]!==l?(e=()=>{l.close()},r[0]=l,r[1]=e):e=r[1],r[2]===Symbol.for("react.memo_cache_sentinel")?(t=(0,n.jsx)(S,{children:(0,n.jsx)(j,{children:(0,n.jsx)(em,{})})}),r[2]=t):t=r[2],r[3]!==l.isOpen||r[4]!==e?(i=(0,n.jsx)(s.a,{footer:null,onCancel:e,open:l.isOpen,size:"XL",title:null,children:t}),r[3]=l.isOpen,r[4]=e,r[5]=i):i=r[5],i};var eh=i(62059);let ev=((r={}).Disabled="disabled",r.Single="single",r.Multiple="multiple",r),ef={selectionType:ev.Multiple,areas:{asset:!0,document:!0,object:!0},config:{assets:{allowedTypes:void 0},documents:{allowedTypes:void 0},objects:{allowedTypes:void 0,allowedClasses:void 0}}},ey=(0,l.createContext)(void 0),eb=e=>{let{children:t}=e,[i,r]=(0,l.useState)(!1),[a,o]=(0,l.useState)(ef),[s,d]=(0,l.useState)((0,eh.u)());return(0,l.useMemo)(()=>(0,n.jsxs)(ey.Provider,{value:{renderKey:s,setRenderKey:d,isOpen:i,setIsOpen:r,config:a,setConfig:o},children:[(0,n.jsx)(eg,{},s),t]}),[t,i,a])}},1240(e,t,i){"use strict";i.d(t,{h:()=>a});var r=i(47867),n=i(23945),l=i(62059);let a=()=>{let e=(0,r.useContext)(n.ElementSelectorContext);if(void 0===e)throw Error("useElementSelectorHelper must be used within a ElementSelectorProvider");return{...e,open:()=>{e.setIsOpen(!0),e.setRenderKey((0,l.u)())},close:()=>{e.setIsOpen(!1)},setConfig:t=>{let i={...e.config,...t};e.setConfig(i)}}}},94685(e,t,i){"use strict";i.d(t,{L:()=>a});var r=i(1240),n=i(46096),l=i(81624);let a=e=>{let t=(0,r.h)();return{open:()=>{if((0,l.GZ)()&&(0,n.BB)()){let{element:t}=(0,n.qH)();t.openElementSelector(e);return}t.setConfig(e),t.open()}}}},64015(e,t,i){"use strict";i.d(t,{T:()=>o,k:()=>a});var r=i(74848),n=i(47867),l=i(8412);let a=(0,n.createContext)({selectedColumns:[],setSelectedColumns:()=>{},encodeColumnIdentifier:()=>"",decodeColumnIdentifier:()=>void 0,shouldMapDataToColumn:()=>!1}),o=e=>{let{children:t}=e,[i,o]=(0,n.useState)([]),{useColumnMapper:s}=(0,l.t)(),d=s(),c=(0,n.useMemo)(()=>i.map(e=>{var t,i,r;return{...e,key:(null==(r=e.originalApiDefinition)||null==(i=r.__meta)||null==(t=i.advancedColumnConfig)?void 0:t.title)??e.key}})??[],[i]),u=e=>d.encodeColumnIdentifier(e),p=e=>d.decodeColumnIdentifier(e,c),m=(e,t)=>d.shouldMapDataToColumn(e,t);return(0,n.useMemo)(()=>(0,r.jsx)(a.Provider,{value:{selectedColumns:c,setSelectedColumns:o,encodeColumnIdentifier:u,decodeColumnIdentifier:p,shouldMapDataToColumn:m},children:t}),[c])}},70244(e,t,i){"use strict";i.d(t,{n:()=>n});var r=i(62059);let n=()=>({encodeColumnIdentifier:e=>{var t;return JSON.stringify({uuid:(0,r.u)(),key:null==e||null==(t=e.key)?void 0:t.replaceAll(".","**"),locale:e.locale})},decodeColumnIdentifier:(e,t)=>{try{JSON.parse(e)}catch(e){return}let{key:i,locale:r}=JSON.parse(e),n=i.replaceAll("**",".");return t.find(e=>e.key===n&&e.locale===r)},shouldMapDataToColumn:(e,t)=>e.key===t.key&&e.locale===t.locale})},66707(e,t,i){"use strict";i.d(t,{K:()=>l});var r=i(47867),n=i(64015);let l=()=>(0,r.useContext)(n.k)},40547(e,t,i){"use strict";i.d(t,{M:()=>a,y:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(null),a=e=>{let{children:t}=e,[i,a]=(0,n.useState)(),[o,s]=(0,n.useState)(),[d,c]=(0,n.useState)("initial");return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{dataQueryResult:i,setDataQueryResult:a,data:o,setData:s,dataLoadingState:d,setDataLoadingState:c},children:t}),[i,o,d])}},20351(e,t,i){"use strict";i.d(t,{E:()=>l});var r=i(47867),n=i(40547);let l=()=>{let e=(0,r.useContext)(n.y);if(null==e)throw Error("useData must be used within a DataProvider");return e}},95198(e,t,i){"use strict";i.d(t,{w:()=>j,G:()=>x});var r=i(74848),n=i(47867),l=i(99582),a=i(8412);let o=()=>{let{ContextComponent:e}=(0,a.t)();return(0,n.useMemo)(()=>(0,r.jsx)(e,{},"context-component"),[e])};var s=i(40547),d=i(64015),c=i(20351);let u=()=>{let{ViewComponent:e,useDataQueryHelper:t,useDataQuery:i}=(0,a.t)(),{getArgs:l,dataLoadingState:o,setDataLoadingState:s}=t(),d=i(l(),{skip:"config-changed"!==o&&"filters-applied"!==o&&"data-available"!==o}),{setDataQueryResult:u,setData:p}=(0,c.E)();return(0,n.useEffect)(()=>{d.isLoading||"config-changed"!==o&&"filters-applied"!==o||(d.refetch(),s("data-available"))},[o]),(0,n.useEffect)(()=>{u(d)},[d]),(0,n.useEffect)(()=>{d.isSuccess&&(p(d.data),s("data-available"))},[d.data,d.isSuccess]),(0,n.useMemo)(()=>(0,r.jsx)(e,{}),[])};var p=i(66679),m=i(75240),g=i(43425),h=i(72928),v=i(48832),f=i(21429),y=i(48039),b=i(70244);let x={ContextComponent:()=>{let{ConfigurationComponent:e}=(0,a.t)();return(0,r.jsx)(d.T,{children:(0,r.jsx)(s.M,{children:(0,r.jsx)(e,{})})})},ConfigurationComponent:()=>{let{DataComponent:e}=(0,a.t)();return(0,r.jsx)(e,{})},DataComponent:()=>{let{ViewComponent:e,useDataQueryHelper:t}=(0,a.t)(),{hasRequiredArgs:i}=t();return i()?(0,r.jsx)(u,{}):(0,r.jsx)(e,{})},ViewComponent:()=>(0,r.jsx)(p.d,{}),useGridOptions:()=>{let{t:e}=(0,f.useTranslation)(),{hasType:t}=(0,h.R)();return{transformGridColumn:i=>{let n=t({target:"GRID_CELL",dynamicTypeIds:[i.type]}),l=t({target:"GRID_CELL",dynamicTypeIds:[i.frontendType]}),a={header:e((null==i?void 0:i.key)??"")+(void 0!==i.locale&&null!==i.locale?` (${i.locale})`:""),meta:{type:n?i.type:i.frontendType,columnKey:i.key},size:(e=>{if(Array.isArray(e.group)&&e.group.includes("system")){if("id"===e.key||"index"===e.key||"type"===e.key)return 100;if("mimetype"===e.key||"fileSize"===e.key)return v.mv;if("key"===e.key||"classname"===e.key)return 200}})(i)};return n||l||(a.cell=e=>{let t=e.getValue();if("string"==typeof t||"number"==typeof t){let t={...e,meta:{type:"input"}};return(0,r.jsx)(g.A,{...t})}return(0,r.jsx)(m.F,{message:"Not supported",type:"warning"})}),a},transformGridColumnDefinition:e=>e,getGridProps:()=>({})}},useSidebarOptions:y.c,useColumnMapper:b.n},j=e=>{let{ContextComponent:t=x.ContextComponent,ConfigurationComponent:i=x.ConfigurationComponent,DataComponent:n=x.DataComponent,ViewComponent:a=x.ViewComponent,useGridOptions:s=x.useGridOptions,useSidebarOptions:d=x.useSidebarOptions,useColumnMapper:c=x.useColumnMapper,useDataQueryHelper:u,useDataQuery:p,useElementId:m,toolbarSlotName:g}=e;return(0,r.jsx)(l.Z,{...{ContextComponent:t,ConfigurationComponent:i,DataComponent:n,ViewComponent:a,useGridOptions:s,useSidebarOptions:d,useColumnMapper:c,useDataQueryHelper:u,useDataQuery:p,useElementId:m,toolbarSlotName:g},children:(0,r.jsx)(o,{})})}},99582(e,t,i){"use strict";i.d(t,{Z:()=>a,l:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(null),a=e=>{let{children:t,...i}=e;return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:i,children:t}),[e])}},66679(e,t,i){"use strict";i.d(t,{d:()=>c});var r=i(74848),n=i(47867),l=i(20351),a=i(38933),o=i(39808),s=i(91206),d=i(63589);let c=e=>{let{dataQueryResult:t}=(0,l.E)(),i=e.renderToolbar;return(0,n.useMemo)(()=>(0,r.jsxs)(r.Fragment,{children:[void 0===t&&(0,r.jsx)(o.U,{loading:!0}),void 0!==t&&(0,r.jsx)(s.s,{renderSidebar:(0,r.jsx)(d.B,{}),renderToolbar:void 0!==i?(0,r.jsx)(i,{}):void 0,children:(0,r.jsx)(a.E,{})})]}),[t])}},38933(e,t,i){"use strict";i.d(t,{E:()=>c});var r=i(74848),n=i(47867),l=i(66707),a=i(20351),o=i(89507),s=i(14013),d=i(8412);let c=()=>{let{dataQueryResult:e,dataLoadingState:t}=(0,a.E)(),{isLoading:i,isFetching:c,data:u}=e,{selectedColumns:p,encodeColumnIdentifier:m,decodeColumnIdentifier:g,shouldMapDataToColumn:h}=(0,l.K)(),{useGridOptions:v}=(0,d.t)(),{getGridProps:f,transformGridColumn:y,transformGridColumnDefinition:b}=v(),x=(0,o.createColumnHelper)(),j=(0,n.useMemo)(()=>{let e=[];return p.forEach(t=>{e.push(x.accessor(m(t),y(t)))}),b(e)},[p]),w=(0,n.useMemo)(()=>{if(void 0===u)return[];let e=[];for(let t of u.items){if(0===t.length)return[];let i={};i.id=t.id,i.isLocked=t.isLocked,i.permissions=t.permissions,j.forEach(e=>{if(!("accessorKey"in e))return;let r=e.accessorKey,n=g(r);if(void 0===n)return;let l=t.columns.find(e=>h(e,n));void 0!==l&&(i[r]=l.value,i["__api-data"]=t)}),e.push(i)}return e},[u,p]);return(0,n.useMemo)(()=>(0,r.jsx)(s.x,{columns:j,data:w,isLoading:i||c||"data-available"!==t,resizable:!0,setRowId:e=>e.id,...f()}),[j,w,i,c,t,f])}},56977(e,t,i){"use strict";i.d(t,{y:()=>s});var r=i(74848);i(47867);var n=i(20351),l=i(29740),a=i(13755),o=i(64756);let s=()=>{let{dataQueryResult:e}=(0,n.E)();if(void 0===e)return(0,r.jsx)(r.Fragment,{});let{isFetching:t,refetch:i}=e;return t?(0,r.jsx)(o.a,{padding:{x:"small"},children:(0,r.jsx)(a.t,{})}):(0,r.jsx)(l.K,{"data-testid":"listing-reload-button",icon:{value:"refresh"},onClick:async()=>await i()})}},48039(e,t,i){"use strict";i.d(t,{c:()=>r});let r=()=>({getProps:()=>({entries:[]})})},63589(e,t,i){"use strict";i.d(t,{B:()=>o});var r=i(74848),n=i(47867),l=i(10883),a=i(8412);let o=()=>{let{useSidebarOptions:e}=(0,a.t)(),{getProps:t}=e(),i=t().entries.length>0;return(0,n.useMemo)(()=>(0,r.jsx)(r.Fragment,{children:i&&(0,r.jsx)(l.B,{sizing:"large",...t()})}),[t()])}},46533(e,t,i){"use strict";i.d(t,{K:()=>l,y:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let[t,i]=(0,n.useState)(!1);return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{onlyDirectChildren:t,setOnlyDirectChildren:i},children:e.children}),[t])}},96197(e,t,i){"use strict";i.d(t,{e:()=>l});var r=i(47867),n=i(46533);let l=()=>{let e=(0,r.useContext)(n.K);if(void 0===e)throw Error("useTagFilter must be used within a TagFilterProvider");return e}},2807(e,t,i){"use strict";i.d(t,{B:()=>l,v:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let[t,i]=(0,n.useState)([]);return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{fieldFilters:t,setFieldFilters:i},children:e.children}),[t])}},61067(e,t,i){"use strict";i.d(t,{F:()=>l});var r=i(47867),n=i(2807);let l=()=>{let e=(0,r.useContext)(n.B);if(void 0===e)throw Error("useFieldFilters must be used within a FieldFiltersProvider");return e}},75591(e,t,i){"use strict";i.d(t,{fr:()=>o,zw:()=>a});var r=i(74848),n=i(47867);let l={handleSearchTermInSidebar:!0},a=(0,n.createContext)(l),o=e=>{let{children:t,config:i=l}=e;return(0,n.useMemo)(()=>(0,r.jsx)(a.Provider,{value:i,children:t}),[t,i])}},9151(e,t,i){"use strict";i.d(t,{D:()=>l});var r=i(47867),n=i(75591);let l=()=>(0,r.useContext)(n.zw)},3201(e,t,i){"use strict";i.d(t,{SG:()=>l,VY:()=>o,t$:()=>a});var r=i(74848),n=i(47867);let l="system.pql",a=(0,n.createContext)(void 0),o=e=>{let[t,i]=(0,n.useState)(""),o=()=>{if(""!==t)return{type:l,filterValue:t}};return(0,n.useMemo)(()=>(0,r.jsx)(a.Provider,{value:{pqlQuery:t,setPqlQuery:i,getDataQueryFilterArg:o},children:e.children}),[t])}},9273(e,t,i){"use strict";i.d(t,{Z:()=>l});var r=i(47867),n=i(3201);let l=()=>{let e=(0,r.useContext)(n.t$);if(void 0===e)throw Error("usePqlFilter must be used within a PqlFilterProvider");return e}},53209(e,t,i){"use strict";i.d(t,{WI:()=>o,aQ:()=>a,vh:()=>l});var r=i(74848),n=i(47867);let l="system.fulltext",a=(0,n.createContext)(void 0),o=e=>{let[t,i]=(0,n.useState)(""),o=()=>{if(""!==t)return{type:l,filterValue:t}};return(0,n.useMemo)(()=>(0,r.jsx)(a.Provider,{value:{searchTerm:t,setSearchTerm:i,getDataQueryFilterArg:o},children:e.children}),[t])}},85185(e,t,i){"use strict";i.d(t,{U:()=>l});var r=i(47867),n=i(53209);let l=()=>{let e=(0,r.useContext)(n.aQ);if(void 0===e)throw Error("useSearchTermFilter must be used within a SearchTermFilterProvider");return e}},33763(e,t,i){"use strict";i.d(t,{v:()=>d});var r=i(74848),n=i(47867),l=i(85185),a=i(9151),o=i(14874),s=i(67914);let d=()=>{let{searchTerm:e,setSearchTerm:t}=(0,l.U)(),[i,d]=(0,n.useState)(e),{handleSearchTermInSidebar:c}=(0,a.D)(),u=(0,n.useContext)(o.l);return(0,n.useEffect)(()=>{d(e)},[e]),(0,r.jsx)(s.D,{className:"w-full","data-testid":"search-term-filter-input",maxWidth:"100%",onChange:function(e){d(e.target.value),c&&(null==u||u.setSearchTerm(e.target.value))},onSearch:function(){c?null==u||u.setSearchTerm(i):t(i)},placeholder:"Search",value:i})}},7789(e,t,i){"use strict";i.d(t,{G:()=>V,h:()=>G});var r=i(74848),n=i(47867),l=i(21429),a=i(81898),o=i(55638),s=i(27820),d=i(74325),c=i(86569),u=i(57231),p=i(27994),m=i(25750),g=i(22014),h=i(18848),v=i(54786),f=i(72928),y=i(35864),b=i(99154),x=i(66634),j=i(56974),w=i(14874);let C=()=>{let e=(0,n.useContext)(w.l);if(void 0===e)throw Error("useFilter must be used within a FilterProvider");return e};var S=i(23945),T=i(74003),I=i(35747),k=i(96511);let E=()=>{let{t:e}=(0,l.useTranslation)(),{availableColumns:t}=(0,x.m)(),{getType:i}=(0,f.R)(),{fieldFilters:a,setFieldFilters:o}=C(),{openModal:d}=(0,T._P)({onUpdate:function(e){let i=t.find(t=>t.key===e.modalContext.fieldName);if(void 0===i)throw Error(`Could not find column configuration for field filter with key ${e.modalContext.fieldName}`);let r=e.data.map(e=>{let t=e.definition;return{data:void 0,id:i.key,translationKey:t.title,type:i.type,frontendType:t.fieldtype,localizable:i.localizable,locale:i.localizable?"default":void 0,config:{fieldDefinition:t,groupId:e.groupId,keyId:e.id,translationKey:t.title},nameTooltip:(null==i?void 0:i.group)!==void 0&&Array.isArray(i.group)?i.group.join("/"):void 0}});g(e=>{let t=e.map(e=>{var t;return e.id+JSON.stringify({keyId:e.config.keyId,groupId:null==(t=e.config)?void 0:t.groupId})});return[...e,...r.filter(e=>{var i;return!t.includes(e.id+JSON.stringify({keyId:e.config.keyId,groupId:null==(i=e.config)?void 0:i.groupId}))})]})}}),u=(0,I.H)(),p=(0,n.useMemo)(()=>{let e=[];for(let r of a){var i;let n=t.find(e=>e.key===r.key);void 0!==n&&e.push({id:`${r.key}`,translationKey:(null==(i=r.meta)?void 0:i.translationKey)??r.key,data:r.filterValue,type:r.type,frontendType:null==n?void 0:n.frontendType,localizable:null==n?void 0:n.localizable,locale:null==r?void 0:r.locale,config:r.meta??(null==n?void 0:n.config),nameTooltip:(null==n?void 0:n.group)!==void 0&&Array.isArray(n.group)?n.group.join("/"):void 0})}return e},[a,t]),[m,g]=(0,n.useState)(p);(0,n.useEffect)(()=>{g(p)},[p]);let h=(0,n.useMemo)(()=>t.filter(e=>{let t=i({target:"FIELD_FILTER",dynamicTypeIds:[e.type,e.frontendType]});if("dataobject.classificationstore"===e.type&&void 0!==u)return!0;if(m.some(t=>t.id===e.key)||null===t)return!1;if(!(t instanceof S.DynamicTypeFieldFilterAbstract))if(!("dynamicTypeFieldFilterType"in t))return!1;else t=t.dynamicTypeFieldFilterType;return t.isFilterAvailable(e.frontendType??null)}),[t,m]),v=(0,n.useMemo)(()=>{let t,i,r;return t={},i=0,h.forEach(e=>{let i=[];if(!Array.isArray(e.group))return;i=e.group.map(e=>String(e));let r=t;i.forEach((t,n)=>{(0,y.isNil)(r[t])&&(r[t]={items:[],subGroups:{}}),n===i.length-1?r[t].items.push(e):r=r[t].subGroups})}),(r=function(t){let n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return Object.entries(t).map(t=>{let[l,a]=t,o=""!==n?`${n}.${l}`:l,s={key:`group-${i++}`,label:e(l)},c=[...(0,y.isEmpty)(Object.keys(a.subGroups))?[]:r(a.subGroups,o),...a.items.map(t=>{let i=`${t.key}`;if("fieldDefinition"in t.config&&!(0,y.isNil)(t.config)){let e=t.config.fieldDefinition;i=(null==e?void 0:e.title)??t.key}return{key:t.key,label:e(i),onClick:()=>{"dataobject.classificationstore"===t.type&&void 0!==u?(e=>{if(!("fieldDefinition"in e.config)||(0,y.isNil)(e.config)||void 0===u)throw Error("Column configuration is missing field definition or class definition context is undefined");d({...e.config.fieldDefinition,fieldName:e.key,allowedTabs:[k.X.GroupByKey]})})(t):g(e=>[...e,{data:void 0,translationKey:t.key,id:t.key,type:t.type,frontendType:t.frontendType,localizable:t.localizable,locale:t.locale,config:t.config,nameTooltip:(null==t?void 0:t.group)!==void 0&&Array.isArray(t.group)?t.group.join("/"):void 0}])}}})];return c.length>0&&(s.children=c),s})})(t)},[h,e]);return(0,r.jsxs)(c.Space,{className:"w-full",direction:"vertical",children:[(0,r.jsx)(j.w,{data:m,onChange:e=>{g(e),o(e.map(e=>({key:e.id,filterValue:e.data,type:e.type,locale:e.locale,meta:{translationKey:e.translationKey,...e.config??{}}})))}}),(0,r.jsx)(b.m,{menu:{items:v},children:(0,r.jsx)(s.J,{"data-testid":"listing-field-filter-add-button",icon:{value:"new"},type:"link",children:e("listing.add-column")})})]})};var D=i(91206),N=i(96940),P=i(39808),A=i(79963),F=i(9273),$=i(61067),M=i(96197),O=i(85185),_=i(9151),L=i(33763),R=i(20351);let B=()=>{let[e,t]=(0,n.useState)(!1),[i,a]=(0,n.useState)(!1),[f,y]=(0,n.useState)(void 0),{setPage:b}=(0,A.M)(),{setFieldFilters:x}=(0,$.F)(),{setOnlyDirectChildren:j}=(0,M.e)(),{setPqlQuery:w}=(0,F.Z)(),{setSearchTerm:S}=(0,O.U)(),{handleSearchTermInSidebar:T}=(0,_.D)(),{setDataLoadingState:I,dataQueryResult:k}=(0,R.E)(),{fieldFilters:B,onlyDirectChildren:z,pqlQuery:V,searchTerm:G,setFieldFilters:U,setOnlyDirectChildren:q,setPqlQuery:W,setSearchTerm:K}=C(),{t:H}=(0,l.useTranslation)();return(0,n.useEffect)(()=>{let e=null==k?void 0:k.error;(null==k?void 0:k.isError)===!0&&"error_gdi_parsing_exception"===(0,o.ok)(e)&&(a(!0),y(e))},[null==k?void 0:k.error]),(0,r.jsx)(D.s,{renderToolbar:(0,r.jsxs)(N.M,{theme:"secondary",children:[(0,r.jsx)(s.J,{"data-testid":"listing-filter-clear-button",icon:{value:"close"},onClick:()=>{U([]),q(!1),W(""),T&&K("")},type:"link",children:H("sidebar.clear-all-filters")}),(0,r.jsx)(p.$,{"data-testid":"listing-filter-apply-button",onClick:()=>{x(B),j(z),w(e?V:""),T&&S(G),b(1),I("filters-applied")},type:"primary",children:H("button.apply")})]}),children:(0,r.jsxs)(P.U,{padded:!0,children:[(0,r.jsxs)(m.s,{align:"center",justify:"space-between",children:[(0,r.jsx)(d.h,{children:H("sidebar.search_filter")}),(0,r.jsxs)(m.s,{gap:"extra-small",children:[(0,r.jsx)(g.E,{children:H("toggle.advanced-mode")}),(0,r.jsx)(h.d,{checked:e,"data-testid":"listing-filter-advanced-toggle",onChange:()=>{t(!e)}})]})]}),e?(0,r.jsx)(v.K,{errorData:f,handleChange:e=>{W(e),a(!1),y(void 0)},isShowError:i,value:V}):(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(u.lV,{children:(0,r.jsxs)(c.Space,{direction:"vertical",style:{width:"100%"},children:[T&&(0,r.jsx)(L.v,{}),(0,r.jsx)(c.Checkbox,{checked:z,onChange:e=>{q(e.target.checked)},children:H("element.sidebar.filter.only-direct-children")})]})}),(0,r.jsx)(d.h,{children:H("element.sidebar.field-filters")}),(0,r.jsx)(E,{})]})]})})},z=()=>(0,r.jsx)(w.s,{children:(0,r.jsx)(T.K7,{children:(0,r.jsx)(B,{})})}),V="general-filters",G=e=>()=>{let{getProps:t}=e(),{t:i}=(0,l.useTranslation)();return{getProps:()=>{let e=t(),n=e.highlights??[];return{...e,highlights:n,entries:[{component:(0,r.jsx)(z,{}),key:V,icon:(0,r.jsx)(a.I,{value:"filter"}),tooltip:i("sidebar.search_filter")},...e.entries]}}}}},14874(e,t,i){"use strict";i.d(t,{l:()=>d,s:()=>c});var r=i(74848),n=i(96197),l=i(61067),a=i(9273),o=i(85185),s=i(47867);let d=(0,s.createContext)(void 0),c=e=>{let{searchTerm:t}=(0,o.U)(),{onlyDirectChildren:i}=(0,n.e)(),{fieldFilters:c}=(0,l.F)(),{pqlQuery:u}=(0,a.Z)(),[p,m]=(0,s.useState)(t),[g,h]=(0,s.useState)(i),[v,f]=(0,s.useState)(c),[y,b]=(0,s.useState)(u);return(0,s.useEffect)(()=>{m(t)},[t]),(0,s.useEffect)(()=>{h(i)},[i]),(0,s.useEffect)(()=>{f(c)},[c]),(0,s.useEffect)(()=>{b(u)},[u]),(0,s.useMemo)(()=>(0,r.jsx)(d.Provider,{value:{searchTerm:p,setSearchTerm:m,onlyDirectChildren:g,setOnlyDirectChildren:h,fieldFilters:v,setFieldFilters:f,pqlQuery:y,setPqlQuery:b},children:e.children}),[p,g,v,y])}},78921(e,t,i){"use strict";i.d(t,{E:()=>l,Q:()=>a});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t}=e,[i,a]=(0,n.useState)(1),[o,s]=(0,n.useState)(20);return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{page:i,setPage:a,pageSize:o,setPageSize:s},children:t}),[i,o])}},26093(e,t,i){"use strict";i.d(t,{d:()=>s});var r=i(74848);i(47867);var n=i(75525),l=i(79963),a=i(20351),o=i(60142);let s=()=>{let e=(0,l.M)(),{data:t}=(0,a.E)();return void 0===t||void 0===e?(0,r.jsx)(r.Fragment,{}):(0,r.jsx)(n.d,{current:e.page,defaultPageSize:e.pageSize,onChange:(t,i)=>{e.setPage(t),e.setPageSize(parseInt(i))},pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>(0,o.t)("pagination.show-total",{total:e}),total:t.totalItems})}},81916(e,t,i){"use strict";i.d(t,{G:()=>a,k:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t}=e,[i,a]=(0,n.useState)({}),[o,s]=(0,n.useState)({});return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{selectedRows:i,setSelectedRows:a,selectedRowsData:o,setSelectedRowsData:s},children:t}),[i,o])}},52185(e,t,i){"use strict";i.d(t,{S:()=>l});var r=i(47867),n=i(81916);let l=()=>(0,r.useContext)(n.k)},53894(e,t,i){"use strict";i.d(t,{U:()=>l});var r=i(47867),n=i(81916);let l=()=>{let e=(0,r.useContext)(n.k);if(null==e)throw Error("useRowSelection must be used within a RowSelectionProvider");return e}},59416(e,t,i){"use strict";i.d(t,{B:()=>o});var r=i(74848),n=i(92428);i(47867);var l=i(52185),a=i(21429);let o=()=>{let e=(0,l.S)(),{t}=(0,a.useTranslation)();if(void 0===e)return(0,r.jsx)(r.Fragment,{});let{selectedRows:i,setSelectedRows:o}=e,s=0;return void 0!==i&&(s=Object.keys(i).length),(0,r.jsxs)(r.Fragment,{children:[0===s&&(0,r.jsx)(r.Fragment,{}),s>0&&(0,r.jsx)(n.S,{checked:s>0,onClick:e=>{e.stopPropagation(),s>0&&o({})},children:t("listing.selection.total",{total:s})})]})}},92277(e,t,i){"use strict";i.d(t,{l:()=>v});var r=i(74848),n=i(47867),l=i(21429),a=i(81898),o=i(39808),s=i(74325),d=i(53894),c=i(14013),u=i(89507),p=i(25750),m=i(29740);let g=()=>{let{selectedRows:e,selectedRowsData:t,setSelectedRows:i}=(0,d.U)(),l=(0,u.createColumnHelper)(),a=(0,n.useMemo)(()=>[l.accessor("id",{header:"ID",size:75}),l.accessor("fullpath",{header:"Fullpath",meta:{autoWidth:!0}}),l.accessor("actions",{header:"",size:50,cell:t=>(0,r.jsx)(p.s,{align:"center",className:"w-full",justify:"center",children:(0,r.jsx)(m.K,{icon:{value:"close"},onClick:()=>{var r;let n;r=t.getValue(),n={...e},delete n[r],i(n)}})})})],[t]),o=(0,n.useMemo)(()=>Object.keys(e??{}).map(e=>{let i=t[e];return void 0===i?{}:{id:i.id,fullpath:i.fullpath,actions:i.id}}),[e,t]);return(0,n.useMemo)(()=>(0,r.jsx)(c.x,{autoWidth:!0,columns:a,data:o}),[o])},h=()=>{let{t:e}=(0,l.useTranslation)();return(0,r.jsxs)(o.U,{padded:!0,children:[(0,r.jsx)(s.h,{children:e("sidebar.selected_elements")}),(0,r.jsx)(g,{})]})},v=e=>()=>{let{getProps:t}=e(),{t:i}=(0,l.useTranslation)();return{getProps:()=>{let e=t();return{...e,entries:[...e.entries,{component:(0,r.jsx)(h,{}),key:"selection-overview",icon:(0,r.jsx)(a.I,{value:"checkbox"}),tooltip:i("sidebar.selected_elements")}]}}}}},43778(e,t,i){"use strict";i.d(t,{u:()=>s});var r=i(74848),n=i(64165);i(47867);var l=i(10600),a=i(24755),o=i(63155);let s=(e,t)=>{let{ContextComponent:i,useDataQueryHelper:s,...d}=e;return{...d,ContextComponent:()=>{var e;let o={[a.W.dataObject]:l.K["DynamicTypes/ObjectRegistry"],[a.W.asset]:l.K["DynamicTypes/AssetRegistry"],[a.W.document]:l.K["DynamicTypes/DocumentRegistry"]};if((null==t?void 0:t.elementType)===void 0)throw Error("Element type is required to use the type filter decorator");return(0,r.jsx)(n.M,{initialValue:(null==t||null==(e=t.restrictedOptions)?void 0:e[0])??null,nullable:(null==t?void 0:t.restrictedOptions)===void 0,registryServiceId:o[null==t?void 0:t.elementType],restrictOptions:null==t?void 0:t.restrictedOptions,children:(0,r.jsx)(i,{})})},useDataQueryHelper:()=>{let{getArgs:e,...t}=s(),{value:i}=(0,o.I)();return{...t,getArgs:()=>{var t;let r=e();return{...r,body:{...r.body??{},filters:{...r.body.filters??{},columnFilters:[...(null==(t=r.body.filters)?void 0:t.columnFilters)??[],...null===i?[]:[{key:"type",filterValue:i,type:"system.string"}]]}}}}}}}}},65888(e,t,i){"use strict";i.d(t,{G:()=>o,W:()=>s});var r=i(74848),n=i(47867),l=i(21429),a=i(35864);let o=(0,n.createContext)(void 0),s=e=>{let{children:t}=e,[i,s]=(0,n.useState)([]),{t:d}=(0,l.useTranslation)(),c=(0,n.useMemo)(()=>e=>{let t,r,n;return{menu:{items:(t={},r=0,i.forEach(e=>{let i=[];Array.isArray(e.group)&&(i=e.group.some(e=>Array.isArray(e))?e.group:[e.group]),i.forEach(i=>{let r=[];r="string"==typeof i?i.split("."):Array.isArray(i)?i.map(e=>String(e)):[String(i)];let n=t;r.forEach((t,i)=>{(0,a.isNil)(n[t])&&(n[t]={items:[],subGroups:{}}),i===r.length-1?n[t].items.push(e):n=n[t].subGroups})})}),(n=function(t){let i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return Object.entries(t).map(t=>{let[l,o]=t,s=""!==i?`${i}.${l}`:l,c={key:`group-${r++}`,label:d(l)},u=[...(0,a.isEmpty)(Object.keys(o.subGroups))?[]:n(o.subGroups,s),...o.items.map(t=>{let i=`${t.key}`;if("fieldDefinition"in t.config&&!(0,a.isNil)(t.config)){let e=t.config.fieldDefinition;i=(null==e?void 0:e.title)??t.key}return{key:t.key,label:d(i),group:t.group,mainType:t.type,frontendType:t.frontendType,editable:t.editable,onClick:()=>{e(t)}}})];return u.length>0&&(c.children=u),c})})(t))}}},[i,d]);return(0,n.useMemo)(()=>(0,r.jsx)(o.Provider,{value:{availableColumns:i,setAvailableColumns:s,getAvailableColumnsDropdown:c},children:t}),[i])}},66634(e,t,i){"use strict";i.d(t,{m:()=>l});var r=i(47867),n=i(65888);let l=()=>{let e=(0,r.useContext)(n.G);if(void 0===e)throw Error("useAvailableColumns must be used within a AvailableColumnsProvider");return e}},9356(e,t,i){"use strict";i.d(t,{M:()=>a,W:()=>l});var r=i(74848),n=i(47867);let l=(0,n.createContext)(void 0),a=e=>{let{children:t}=e,[i,a]=(0,n.useState)();return(0,n.useMemo)(()=>(0,r.jsx)(l.Provider,{value:{gridConfig:i,setGridConfig:a},children:t}),[i])}},32436(e,t,i){"use strict";i.d(t,{M:()=>o,g:()=>a});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,n.createContext)(void 0),o=e=>{let{children:t}=e,[i,o]=l().useState(void 0);return(0,n.useMemo)(()=>(0,r.jsx)(a.Provider,{value:{id:i,setId:o},children:t}),[i])}},7433(e,t,i){"use strict";i.d(t,{Y:()=>c});var r=i(74848),n=i(47867);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{withDroppable:i` - .tree-node__content-wrapper-outer { - background: ${t.colorBgContainerDisabled}; - border-radius: ${t.borderRadius}px; - outline: 1px dashed ${t.colorBorder}; - } - - .tree-list .tree-node__content { - background: transparent; - border: 0; - } - `}});var a=i(94788),o=i(8651),s=i.n(o),d=i(35864);let c=e=>(0,n.forwardRef)((t,i)=>{let o=(0,n.forwardRef)((e,t)=>{let{children:i}=e,{styles:n}=l(),{isOver:o,isValid:d}=(0,a.z)(),c=s()("with-droppable-styling",{[n.withDroppable]:o&&d});return(0,r.jsx)("div",{className:c,ref:t,children:i})});return o.displayName="DroppableStylingWrapper",(0,r.jsx)(e,{...t,ref:i,wrapNode:e=>(0,r.jsx)(o,{children:(0,d.isUndefined)(t.wrapNode)?e:t.wrapNode(e)})})})},29247(e,t,i){"use strict";i.d(t,{y:()=>w});var r=i(74848),n=i(47867),l=i(33411),a=i(13755),o=i(86569),s=i(81898),d=i(78535);let c=(0,i(44241).createStyles)(e=>{let{css:t}=e;return{buttonStyle:t` - padding-left: 2px; - padding-right: 2px; - text-transform: capitalize; - `}});var u=i(21429),p=i(35864),m=i(78352);let g=e=>{let{styles:t}=c(),{t:i}=(0,u.useTranslation)(),n=e.successButtonActions??[],g=e.failureButtonActions??[],h=e.finishedWithErrorsButtonActions??[],v=Math.min(e.progress,100),f=(0,p.isUndefined)(e.currentStep)?null:(0,p.isUndefined)(e.totalSteps)?e.currentStep>1?(0,r.jsxs)("strong",{children:[i("jobs.job.step_hint_single",{step:e.currentStep}),": "]}):null:(0,r.jsxs)("strong",{children:[i("jobs.job.step_hint",{step:e.currentStep,total:e.totalSteps}),": "]}),y=()=>(0,p.isUndefined)(e.onAbort)?null:(0,r.jsx)(m.i,{onConfirm:()=>{var t;null==(t=e.onAbort)||t.call(e)},title:i("jobs.job.abort-confirm"),zIndex:1e4,children:(0,r.jsx)(o.Button,{className:t.buttonStyle,type:"link",children:i("jobs.job.button-abort")})});return(0,r.jsx)("div",{children:(0,r.jsx)(d.AnimatePresence,{children:(0,r.jsxs)(d.motion.div,{animate:{opacity:1,height:"auto"},exit:{opacity:0,height:1},initial:{opacity:0,height:1},children:["queued"===e.status&&(0,r.jsxs)(o.Flex,{align:"center",justify:"space-between",children:[(0,r.jsxs)(o.Flex,{align:"center",gap:"small",children:[(0,r.jsx)(a.t,{type:"classic"}),(0,r.jsx)("span",{children:i("jobs.job.queued",{title:e.title})})]}),y()]}),"running"===e.status&&(0,r.jsx)(l.d,{description:(0,r.jsxs)(r.Fragment,{children:[f,i("jobs.job.in-progress",{title:e.title})]}),descriptionAction:y(),percent:v,progressStatus:i("jobs.job.progress",{progress:v})}),"success"===e.status&&(0,r.jsxs)(o.Flex,{align:"center",justify:"space-between",children:[(0,r.jsxs)(o.Flex,{align:"center",gap:"small",children:[(0,r.jsx)(s.I,{value:"check-circle"}),(0,r.jsx)("span",{children:i("jobs.job.finished",{title:e.title})})]}),(0,r.jsx)(o.Flex,{gap:"small",children:n.map((e,i)=>(0,r.jsx)(o.Button,{className:t.buttonStyle,onClick:e.handler,type:"link",children:e.label},i))})]}),"finished_with_errors"===e.status&&(0,r.jsxs)(o.Flex,{align:"center",justify:"space-between",children:[(0,r.jsxs)(o.Flex,{align:"center",gap:"small",children:[(0,r.jsx)(s.I,{value:"warning-circle"}),(0,r.jsx)("span",{children:i("jobs.job.finished-with-errors",{title:e.title})})]}),(0,r.jsx)(o.Flex,{gap:"small",children:h.map((e,i)=>(0,r.jsx)(o.Button,{className:t.buttonStyle,onClick:e.handler,type:"link",children:e.label},i))})]}),"failed"===e.status&&(0,r.jsxs)(o.Flex,{align:"center",justify:"space-between",children:[(0,r.jsxs)(o.Flex,{align:"center",gap:"small",children:[(0,r.jsx)(s.I,{value:"x-circle"}),(0,r.jsx)("span",{children:i("jobs.job.failed",{title:e.title})})]}),(0,r.jsx)(o.Flex,{gap:"small",children:g.map((e,i)=>(0,r.jsx)(o.Button,{className:t.buttonStyle,onClick:e.handler,type:"link",children:e.label},i))})]})]},e.status)})})};var h=i(30652),v=i(30492);let f=e=>{let{open:t,onClose:i,messages:n}=e,{t:l}=(0,u.useTranslation)();return(0,r.jsx)(v.a,{cancelButtonProps:{style:{display:"none"}},onCancel:i,onOk:i,open:t,size:"XL",title:l("jobs.job.error-modal.title"),children:(0,r.jsx)("ul",{children:n.map((e,t)=>{let i=(0,p.isString)(e)?e:JSON.stringify(e)??"";return(0,r.jsx)("li",{children:i},t)})})})};var y=i(11940),b=i(63364),x=i(10600),j=i(55638);let w=e=>{let{removeJob:t}=(0,h.O)(),{t:i}=(0,u.useTranslation)(),[l,a]=(0,n.useState)(!1),[o]=(0,y.X1)(),s=async()=>{let{error:i}=await o({jobRunId:Number(e.jobRunId)});(0,p.isUndefined)(i)?(b.kL.get(x.K.globalMessageBus).unregisterHandler(e.jobRunId),t(e.id)):(0,j.Ay)(new j.hD(i))},d={label:i("jobs.job.button-hide"),handler:()=>{t(e.id)}},c=[d],m=[d],v=[d],w=function(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"start";"start"===i?e.unshift(t):e.push(t)};if((0,p.isUndefined)(e.onCustomizeButtons)||e.onCustomizeButtons({addSuccessButton:(e,t)=>{w(c,e,t)},addFinishedWithErrorsButton:(e,t)=>{w(m,e,t)},addFailureButton:(e,t)=>{w(v,e,t)}}),(0,p.isUndefined)(e.onRetry)||v.unshift({label:i("jobs.job.button-retry"),handler:()=>{var i;null==(i=e.onRetry)||i.call(e),t(e.id)}}),!(0,p.isUndefined)(e.messages)&&!(0,p.isEmpty)(e.messages)){let e={label:i("jobs.job.button-show-errors"),handler:()=>{a(!0)}};w(m,e,"start"),w(v,e,"start")}return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(g,{failureButtonActions:v,finishedWithErrorsButtonActions:m,onAbort:s,successButtonActions:c,...e,progress:e.progress??0}),(0,r.jsx)(f,{messages:e.messages??[],onClose:()=>{a(!1)},open:l})]})}},99224(e,t,i){"use strict";i.d(t,{y:()=>u});var r=i(74848),n=i(47867),l=i(63364),a=i(10600),o=i(29247);let s=e=>{let t=(0,l.Lt)(a.K["ExecutionEngine/JobComponentRegistry"]).getComponentByType(e.type)??o.y;return(0,r.jsx)(t,{...e})};var d=i(78535),c=i(30652);let u=()=>{let{jobs:e}=(0,c.O)();return(0,r.jsx)(d.AnimatePresence,{children:e.map(e=>(0,r.jsx)(d.motion.div,{animate:{opacity:1,height:"auto"},exit:{opacity:0,height:1},initial:{opacity:0,height:1},children:(0,n.createElement)(s,{...e,key:e.id})},`${e.id}`))})}},38380(e,t,i){"use strict";i.d(t,{L:()=>B});var r=i(63364),n=i(10600),l=i(27755),a=i(74848),o=i(47867),s=i(4793),d=i(18613),c=i(74325),u=i(96940),p=i(91206),m=i(75525),g=i(21429),h=i(39808),v=i(64756),f=i(36769),y=i(43588);let b=e=>{let{notifications:t,isLoading:i,isFetching:r,deleteNotificationsForUser:n,deleteLoading:l,page:o,setPage:s,setPageSize:d,activeNotification:b}=e,{t:x}=(0,g.useTranslation)();return(0,a.jsx)(p.s,{renderToolbar:(null==t?void 0:t.totalItems)!==0?(0,a.jsxs)(u.M,{justify:"space-between",theme:"secondary",children:[(0,a.jsx)(y.IconTextButton,{icon:{value:"trash"},onClick:()=>{n()},children:x("notifications.remove-all")}),(0,a.jsx)(m.d,{current:o,onChange:(e,t)=>{s(e),d(t)},showSizeChanger:!0,showTotal:e=>x("pagination.show-total",{total:e}),total:(null==t?void 0:t.totalItems)??0})]}):void 0,renderTopBar:(0,a.jsx)(u.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,a.jsx)(c.h,{children:x("notifications.label")})}),children:(0,a.jsx)(h.U,{loading:i||r||l,none:void 0===t||0===t.totalItems,children:(0,a.jsx)(v.a,{margin:{x:"extra-small",y:"none"},children:void 0!==t&&(0,a.jsx)(f.q,{activeNotification:b,notifications:t})})})})},x=e=>{let{activeNotification:t}=e,[i,r]=(0,o.useState)(1),[n,l]=(0,o.useState)(20),c=(0,o.useMemo)(()=>({body:{filters:{page:i,pageSize:n,includeDescendants:!0,sortFilter:{key:"creationDate",direction:"DESC"}}}}),[i,n]),{data:u,isLoading:p,isFetching:m,isError:g,error:h}=(0,s.useNotificationGetCollectionQuery)(c,{refetchOnMountOrArgChange:!0}),[v,{isError:f,error:y,isLoading:x}]=(0,s.useNotificationDeleteAllMutation)();return(0,o.useEffect)(()=>{g&&(0,d.trackError)(new d.ApiError(h))},[g]),(0,o.useEffect)(()=>{f&&(0,d.trackError)(new d.ApiError(y))},[f]),(0,a.jsx)(b,{activeNotification:t,deleteLoading:x,deleteNotificationsForUser:v,isFetching:m,isLoading:p,notifications:u,page:i,setPage:r,setPageSize:l})};var j=i(83379),w=i(66410);class C extends j.T{getTopics(){return[w.v["handler-progress"]]}constructor(...e){super(...e),this.name="demo-process",this.description="Demo process for testing purposes"}}var S=i(18228),T=i(60352),I=i(24058),k=i(57248),E=i(35864),D=i(41630),N=i(73565),P=i(53996);class A extends k.k{shouldHandle(e){var t;let i=(0,N.xu)(D.M_.getState()),r=e.payload;return(null==r||null==(t=r.notification)?void 0:t.recipient)===i.id&&!(0,E.isNil)(null==r?void 0:r.notification)&&!(0,E.isNil)(null==r?void 0:r.unreadNotificationsCount)}async handleMessage(e){let t=e.payload;(0,E.isNil)(t.notification)||(this.onMessage(e),D.M_.dispatch(s.api.util.invalidateTags(P.qN.NOTIFICATIONS())),D.M_.dispatch(s.api.util.updateQueryData("notificationGetUnreadCount",void 0,()=>({unreadNotificationsCount:t.unreadNotificationsCount}))))}getId(){return"notification-popup-handler"}constructor(e){super(),this.onMessage=e}}var F=i(78535);let $=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{notificationPopupIcon:i` - color: ${t.colorAccentSecondary}; - `,notificationPopup:i` - .ant-collapse-item { - .ant-collapse-header { - padding: ${t.paddingXS}px 0; - - .collapse-header__title { - font-weight: 400; - } - } - } - `,notificationPopupButton:i` - padding: 0; - `}}),M=e=>{let{notification:t,onView:i}=e,{styles:r}=$(),{t:n}=(0,g.useTranslation)();return(0,a.jsxs)(y.Flex,{align:"center",gap:"extra-small",justify:"space-between",children:[(0,a.jsxs)(y.Flex,{align:"center",gap:"mini",children:[(0,a.jsx)(y.Icon,{className:r.notificationPopupIcon,value:"notification-unread"}),(0,a.jsx)(y.Text,{strong:!0,children:t.title}),(0,a.jsx)(y.Text,{type:"secondary",children:t.sender})]}),(0,a.jsx)(y.Button,{className:r.notificationPopupButton,onClick:i,type:"link",children:n("notifications.new-notifications.show")})]})};var O=i(20120),_=i(46881);let L=e=>{let{notifications:t,onView:i}=e,r=(0,_.useAppDispatch)(),n=[...t].reverse();return(0,a.jsx)(F.AnimatePresence,{children:n.map(e=>(0,a.jsx)(F.motion.div,{animate:{opacity:1,height:"auto"},exit:{opacity:0,height:1},initial:{opacity:0,height:1},children:(0,a.jsx)(M,{notification:e,onView:()=>{i(e.id),r((0,O.OS)({component:"notifications",name:"Notifications",id:"notifications",config:{translationKey:"notifications.label",icon:{type:"name",value:"notification-read"},activeNotification:e.id}}))}})},e.id))})},R=()=>{let{t:e}=(0,g.useTranslation)(),t=(0,T._)(),[i]=(0,I.h)(),[r,n]=(0,o.useState)([]),l="notification-popup-group",s=(0,o.useCallback)(e=>{let t=e.payload.notification;n(e=>{let i=[...e];return i.length>=3&&i.shift(),i.push({id:t.id,title:t.title,sender:t.sender}),i})},[]),d=e=>{n(t=>{let r=t.filter(t=>t.id!==e);return 0===r.length&&i.destroy(l),r})};return(0,o.useEffect)(()=>{r.length>0&&i.open({key:l,message:e("notifications.label"),description:(0,a.jsx)(L,{notifications:r,onView:d}),onClose:()=>{n([]),i.destroy(l)}})},[r]),(0,o.useEffect)(()=>{let e=new A(s);return t.registerHandler(e),()=>{t.unregisterHandler(e.getId())}},[t,s]),(0,a.jsx)(a.Fragment,{})},B={component:"notifications",name:"Notifications",id:"notifications",permission:i(9653).F.Notifications,config:{translationKey:"notifications.label",icon:{type:"name",value:"notification-read"}}};l.s.registerModule({onInit:()=>{r.kL.get(n.K.widgetManager).registerWidget({name:"notifications",component:x}),S.Z.registerStaticWidget(B),r.kL.get(n.K["App/ComponentRegistry/ComponentRegistry"]).registerToSlot("global.feedback",{name:"notification-popup",component:R}),r.kL.get(n.K.backgroundProcessor).registerProcess(new C)}})},36769(e,t,i){"use strict";i.d(t,{q:()=>S});var r=i(74848),n=i(47867),l=i(2046),a=i(39808),o=i(29740),s=i(40926),d=i(2338),c=i(22014),u=i(276),p=i(93233),m=i(43588),g=i(35864),h=i(4793),v=i(55638),f=i(18117),y=i(41630),b=i(23945),x=i(21429);let j=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{unreadNotificationIcon:i` - color: ${t.colorAccentSecondary}; - margin: 5px; - `,margin:i` - margin: 5px; - `,grey:i` - color: ${t.colorIcon} - `,elementTag:i` - width: fit-content; - `,notificationsList:i` - width: 100%; - `}}),w=e=>{let{attachmentId:t,attachmentType:i,attachmentFullPath:n}=e,{t:l}=(0,x.useTranslation)(),{styles:a}=j(),{openElement:o}=(0,b.useElementHelper)(),{mapToElementType:s}=(0,b.useElementHelper)(),d=s(i)??void 0;return void 0===d?(0,r.jsx)(m.Alert,{description:l("user-menu.notification.type-not-supported"),type:"error"}):(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(m.Title,{icon:(0,r.jsx)(m.Icon,{value:"attachment"}),theme:"secondary",weight:"normal",children:l("user-menu.notification.attachments")}),(0,r.jsxs)(m.Flex,{align:"center",className:a.elementTag,children:[(0,r.jsx)(m.ElementTag,{elementType:d,id:t,path:n}),(0,r.jsx)(m.IconButton,{icon:{value:"open-folder"},onClick:async e=>{e.stopPropagation(),await o({type:d,id:t})},theme:"primary"})]})]})},C=e=>{var t;let{notification:i,activeNotification:b}=e,{styles:x}=j(),[C,S]=(0,n.useState)(i.read),{isExpanded:T,setIsExpanded:I,notificationDetail:k,detailLoading:E,deleteNotification:D,deleteLoading:N}=(e=>{let t,{id:i,activeNotification:r}=e,[l,a]=(0,n.useState)(i===r),{updateNotificationReadStateById:o,removeNotificationFromCollectionById:s}=(t=(0,y.jL)(),{updateNotificationReadStateById:(e,i)=>{t((t,r)=>{var n;for(let[l,a]of Object.entries((null==(n=r().api)?void 0:n.queries)??{}))if(l.startsWith("notificationGetCollection(")&&!(0,g.isNil)(a)&&"object"==typeof a&&"originalArgs"in a&&!(0,g.isNil)(a.originalArgs))try{t(h.api.util.updateQueryData("notificationGetCollection",a.originalArgs,t=>{var r;let n=null==(r=t.items)?void 0:r.find(t=>t.id===e);return(0,g.isNil)(n)||(n.read=i),t}))}catch{}})},removeNotificationFromCollectionById:e=>{t((t,i)=>{var r;for(let[n,l]of Object.entries((null==(r=i().api)?void 0:r.queries)??{}))if(n.startsWith("notificationGetCollection(")&&!(0,g.isNil)(l)&&"object"==typeof l&&"originalArgs"in l&&!(0,g.isNil)(l.originalArgs))try{t(h.api.util.updateQueryData("notificationGetCollection",l.originalArgs,t=>{var i;return t.items=(null==(i=t.items)?void 0:i.filter(t=>t.id!==e))??[],t.totalItems=(t.totalItems??1)-1,t}))}catch{}})}}),[d,{isLoading:c}]=(0,h.useNotificationDeleteByIdMutation)(),{data:u,isLoading:p,isError:m,error:b}=(0,h.useNotificationGetByIdQuery)(l?{id:i}:f.hT),x=async()=>{let e=d({id:i});try{let t=await e;if(void 0!==t.error)return void(0,v.Ay)(new v.hD(t.error));s(i)}catch{(0,v.Ay)(new v.$g("An error occurred while deleting the notification."))}};return(0,n.useEffect)(()=>{(0,g.isNil)(null==u?void 0:u.id)||o(i,!0)},[u]),(0,n.useEffect)(()=>{m&&(0,v.Ay)(new v.hD(b))},[m]),{notificationDetail:u,detailLoading:p,isExpanded:l,setIsExpanded:a,deleteNotification:x,deleteLoading:c}})({id:i.id,activeNotification:b});(0,n.useEffect)(()=>{void 0!==k&&S(null==k?void 0:k.read)},[k]);let P={key:i.id.toString(),label:(0,r.jsxs)(m.Flex,{align:"center","justify-content":"center",children:[C?(0,r.jsx)(m.Icon,{className:[x.margin,x.grey].join(" "),value:"notification-read"}):(0,r.jsx)(m.Icon,{className:x.unreadNotificationIcon,value:"notification-unread"}),(0,r.jsxs)(m.Split,{dividerSize:"small",size:"extra-small",theme:"secondary",children:[""!==i.title&&(0,r.jsx)(c.E,{strong:!0,children:i.title}),""!==i.sender&&null!==i.sender&&(0,r.jsx)(c.E,{children:i.sender})]})]}),extra:(0,r.jsxs)(d.$,{align:"center","justify-content":"center",size:"extra-small",children:[i.hasAttachment&&(0,r.jsx)(m.Icon,{className:x.margin,value:"attachment"}),void 0!==i.creationDate&&(0,r.jsx)("span",{children:(0,u.r6)({timestamp:i.creationDate,dateStyle:"short",timeStyle:"medium"})}),(0,r.jsx)(o.K,{icon:{value:"trash"},loading:N,onClick:async e=>{e.stopPropagation(),await D()},theme:"primary",variant:"minimal"})]}),children:(0,r.jsx)(a.U,{loading:E,none:void 0===k||(null==(t=k.message)?void 0:t.length)===0,children:(0,r.jsxs)(m.Flex,{gap:0,vertical:!0,children:[void 0!==k&&"string"==typeof k.message&&(0,r.jsx)(s.f,{children:(0,p.SN)(k.message)}),!(0,g.isNil)(null==k?void 0:k.attachmentId)&&(0,r.jsx)(w,{...k,attachmentId:k.attachmentId})]})})};return(0,r.jsx)(l.SD,{activeKeys:T?[i.id.toString()]:[],items:[P],onChange:e=>{e.length>0?I(!0):I(!1)},size:"small"})},S=e=>{let{notifications:t,activeNotification:i}=e,{styles:n}=j();return(0,r.jsx)(m.Space,{className:n.notificationsList,direction:"vertical",size:"small",children:null==t?void 0:t.items.map(e=>(0,r.jsx)(C,{activeNotification:i,notification:e},e.id))})}},76374(e,t,i){"use strict";i.d(t,{n:()=>w});var r=i(74848),n=i(47867),l=i(46881),a=i(29124),o=i(95487),s=i(2700),d=i(20120),c=i(48333),u=i(73565),p=i(61549),m=i(33461),g=i(55638),h=i(35864),v=i(86569),f=i(21429),y=i(27820),b=i(13755),x=i(25750),j=i(64756);let w=()=>{let e=(0,l.useAppDispatch)(),t=(0,p.J)(),[i]=(0,a.lO)(),[w,C]=(0,n.useState)(!1),{modal:S}=v.App.useApp(),{t:T}=(0,f.useTranslation)(),I=async function(t){let i=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=e(m.api.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t},{forceRefetch:i}));return r.then(t=>{let{data:i,isSuccess:r,isError:n,error:l}=t;n&&(0,g.Ay)(new g.hD(l)),r&&(0,h.isPlainObject)(i)&&(e((0,s.lc)(i)),e((0,d.I7)((0,c.k)())))}).catch(()=>{}),await r};return{switchPerspective:async n=>{C(!0);let l=S.info({title:(0,r.jsxs)(x.s,{align:"center",gap:"small",children:[(0,r.jsx)(b.t,{type:"classic"}),T("perspective.switching.title")]}),content:(0,r.jsxs)("div",{children:[(0,r.jsxs)(j.a,{margin:{bottom:"small"},children:[T("perspective.switching.description"),":"]}),(0,r.jsx)(y.J,{color:"primary",icon:n.icon,variant:"filled",children:T(n.name)})]}),footer:!1}),a=n.id,o=await i({perspectiveId:a});(0,h.isUndefined)(o.error)?(await I(a,!0),e((0,u.gV)({...t,activePerspective:a}))):(0,g.Ay)(new g.hD(o.error)),C(!1),setTimeout(()=>{l.destroy()},500)},loadPerspective:I,getPerspectiveConfigCollection:async()=>{let{data:t,isError:i,error:r}=await e(m.api.endpoints.perspectiveGetConfigCollection.initiate());return i&&(0,g.Ay)(new g.hD(r)),t},refreshPerspectives:async()=>{let{data:t,isSuccess:i}=await e(o.F.endpoints.userGetCurrentInformation.initiate(void 0,{forceRefetch:!0}));i&&!(0,h.isNil)(t)&&e((0,u.OA)(t.perspectives))},isLoading:w}}},69918(e,t,i){"use strict";i.d(t,{y:()=>w});var r=i(68788),n=i(53612),l=i(74848),a=i(47867),o=i(35747),s=i(8412),d=i(66707),c=i(66634),u=i(94614),p=i(38965);let m=[{config:[],key:"id",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.id",frontendType:"id",filterable:!0},{config:[],key:"type",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!1},{config:[],key:"fullpath",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"asset-link",filterable:!0},{config:[],key:"key",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!0},{config:[],key:"published",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.boolean",frontendType:"boolean",filterable:!0},{config:[],key:"classname",group:["system"],sortable:!0,editable:!1,exportable:!0,localizable:!1,locale:null,type:"system.string",frontendType:"input",filterable:!0}],g=e=>{let{Component:t}=e,{ViewComponent:i,useDataQueryHelper:r}=(0,s.t)(),{setDataLoadingState:n}=r(),{isLoading:o,data:g}=(0,p.pF)({classId:void 0}),{selectedColumns:h,setSelectedColumns:v}=(0,d.K)(),{setAvailableColumns:f}=(0,c.m)(),{setGridConfig:y}=(0,u.m)();return((0,a.useEffect)(()=>{if(void 0===g)return;let e=[];for(let t of g.columns){let i=m.find(e=>e.key===t.key);void 0!==i&&e.push({key:t.key,locale:t.locale,type:i.type,config:i.config,sortable:i.sortable,editable:i.editable,localizable:i.localizable,exportable:i.exportable,frontendType:i.frontendType,group:i.group,originalApiDefinition:i})}v(e),f(m),y(g),n("config-changed")},[g]),o||0===h.length)?(0,l.jsx)(i,{}):(0,l.jsx)(t,{})};var h=i(69187);let v=e=>{let{Component:t}=e,{useElementId:i,ViewComponent:r,useDataQueryHelper:n}=(0,s.t)(),{setDataLoadingState:m}=n(),{getId:g}=i(),{selectedClassDefinition:v}=(0,o.p)(),{isLoading:f,data:y}=(0,h.n5)({folderId:g(),classId:v.id}),{isLoading:b,data:x}=(0,p.pF)({classId:v.id}),{selectedColumns:j,setSelectedColumns:w}=(0,d.K)(),{setAvailableColumns:C}=(0,c.m)(),{setGridConfig:S}=(0,u.m)();return((0,a.useEffect)(()=>{if(void 0===y||void 0===x)return;let e=[],t=y.columns.map(e=>e);for(let t of x.columns){if("advanced"===t.key||"filename"===t.key)continue;let i=y.columns.find(e=>e.key===t.key);void 0!==i&&e.push({key:t.key,locale:t.locale,type:i.type,config:i.config,sortable:i.sortable,editable:i.editable,localizable:i.localizable,exportable:i.exportable,frontendType:i.frontendType,group:i.group,originalApiDefinition:i})}w(e),C(t),S(x),m("config-changed")},[y,x]),f||b||0===j.length)?(0,l.jsx)(r,{}):(0,l.jsx)(t,{})};var f=i(63155),y=i(63364),b=i(10600);let x=e=>{let{Component:t}=e,{selectedClassDefinition:i}=(0,o.p)(),{value:r}=(0,f.I)(),n=(0,y.Lt)(b.K["DynamicTypes/ObjectRegistry"]),a=!1;return("string"==typeof r&&n.hasDynamicType(r)&&(a=n.getDynamicType(r).allowClassSelectionInSearch&&(null==i?void 0:i.id)!==void 0),a)?(0,l.jsx)(v,{Component:t}):(0,l.jsx)(g,{Component:t})};var j=i(28363);let w=e=>{let{ConfigurationComponent:t,ContextComponent:i,useGridOptions:a,useSidebarOptions:o,...s}=e;return{...s,ConfigurationComponent:()=>(0,l.jsx)(x,{Component:t}),ContextComponent:(0,r._)(i),useGridOptions:(0,n.$)(a),useSidebarOptions:(0,j.f)(o,{saveEnabled:!1})}}},46423(e,t,i){"use strict";i.d(t,{o:()=>u});var r=i(46881),n=i(52178),l=i(70356),a=i(21429),o=i(55638),s=i(61549),d=i(76374),c=i(50174);let u=()=>{let{t:e}=(0,a.useTranslation)(),t=(0,r.useAppDispatch)(),i=(0,c.J)(),u=(0,r.useAppSelector)(e=>e.user.activeId),p=(0,r.useAppSelector)(e=>e.user.ids),m=(0,s.J)(),{refreshPerspectives:g}=(0,d.n)(),h=async(t,r)=>{if(void 0!==r){var n;await i.error((null==r||null==(n=r.data)?void 0:n.message)??e("error"))}else await i.success(t)};async function v(e){let{id:i}=e,{data:r}=await t(n.FH.endpoints.userGetById.initiate({id:i}));return r}async function f(){let{data:e}=await t(n.FH.endpoints.userDefaultKeyBindings.initiate());return e}async function y(){let{data:e,isError:i,error:r}=await t(n.FH.endpoints.userGetAvailablePermissions.initiate());return void 0!==e?(t((0,l.a0)(e)),e):(i&&(0,o.Ay)(new o.hD(r)),{})}return{removeTrackedChanges(){},setModifiedCells(e,t){},openUser:function(e){t((0,l.hN)(e))},closeUser:function(e){t((0,l.K5)({id:e,allIds:p}))},getUserTree:async function e(e){let{parentId:i}=e,{data:r}=await t(n.FH.endpoints.userGetTree.initiate({parentId:i},{forceRefetch:!0}));return r},addNewUser:async function i(i){let{parentId:r,name:l}=i,{data:a,error:o}=await t(n.FH.endpoints.userCreate.initiate({body:{parentId:r,name:l}}));return await h(e("user-management.add-user.success"),o),a},addNewFolder:async function i(i){let{parentId:r,name:l}=i,{data:a,error:o}=await t(n.FH.endpoints.userFolderCreate.initiate({body:{parentId:r,name:l}}));return await h(e("user-management.add-folder.success"),o),a},removeUser:async function i(i){let{id:r}=i,{data:l,error:a}=await t(n.FH.endpoints.userDeleteById.initiate({id:r}));return await h(e("user-management.remove-user.success"),a),l},cloneUser:async function i(i){let{id:r,name:a}=i,{data:o,error:s}=await t(n.FH.endpoints.userCloneById.initiate({id:r,body:{name:a}}));return t((0,l.hN)(o.id)),await h(e("user-management.clone-user.success"),s),o},removeFolder:async function i(i){let{id:r}=i,{data:l,error:a}=await t(n.FH.endpoints.userFolderDeleteById.initiate({id:r}));return await h(e("user-management.remove-folder.success"),a),l},updateUserById:async function i(i){var r;let{id:a,user:o}=i,s={...o,twoFactorAuthenticationRequired:(null==o||null==(r=o.twoFactorAuthentication)?void 0:r.required)??!1,parentId:o.parentId??0,dateTimeLocale:o.dateTimeLocale??""},{data:d,error:c}=await t(n.FH.endpoints.userUpdateById.initiate({id:a,updateUser:s}));if(void 0===o.password)await h(e("user-management.save-user.success"),c);else{let{error:i}=await t(n.FH.endpoints.userUpdatePasswordById.initiate({id:a,body:{password:o.password,passwordConfirmation:o.password}}));await h(e("user-management.save-user.success"),i)}m.id!==a||m.isAdmin||g();let u={...d,modified:!1,changes:{},modifiedCells:{}};return t((0,l.vd)(u)),d},moveUserById:async function i(i){var r;let{id:l,parentId:a}=i,o=await v({id:l}),{data:s,error:d}=await t(n.FH.endpoints.userUpdateById.initiate({id:l,updateUser:{...o,parentId:a,twoFactorAuthenticationRequired:(null==o||null==(r=o.twoFactorAuthentication)?void 0:r.required)??!1,dateTimeLocale:o.dateTimeLocale??""}}));return await h(e("user-management.save-user.success"),d),s},fetchUserList:async function e(){let{data:e}=await t(n.FH.endpoints.userGetCollection.initiate());return e},searchUserByText:async function e(e){let{data:i}=await t(n.FH.endpoints.pimcoreStudioApiUserSearch.initiate({searchQuery:e}));return i},resetUserKeyBindings:async function e(e){let i=await f();return t((0,l.Is)({id:e,changes:{keyBindings:i.items}})),i},getDefaultKeyBindings:f,uploadUserAvatar:async function i(i){let{data:r,error:l}=await t(n.FH.endpoints.userUploadImage.initiate({id:i.id,body:{userImage:i.file}}));return await h(e("user-management.upload-image.success"),l),r},deleteUserAvatar:async function i(i){let{data:r,error:l}=await t(n.FH.endpoints.userImageDeleteById.initiate({id:i}));return await h(e("user-management.upload-image.success"),l),r},getAvailablePermissions:()=>{let e=(0,r.useAppSelector)(e=>e.user.availablePermissions);return 0===e.length&&y().then(t=>{e=t.items}).catch(e=>{console.error(e)}),e},activeId:u,getAllIds:p}}},97649(e,t,i){"use strict";i.d(t,{o:()=>x});var r=i(74848),n=i(47867),l=i(21429),a=i(86569),o=i(35864),s=i(57231),d=i(68516),c=i(27994),u=i(46423);let p=e=>{var t;return`${!1!==e.ctrl?"Ctrl + ":""}${!1!==e.alt?"Alt + ":""}${!1!==e.shift?"Shift + ":""}${t=e.key,t>=112&&t<=123?"F"+(t-111):32===t?"Space":String.fromCharCode(t)}`},m=["save","publish","unpublish","rename","refresh"],g=["openDocument","openAsset","openObject","openClassEditor","openInTree","closeAllTabs"],h=["redirects","tagConfiguration","seoDocumentEditor","robots"],v=["showMetaInfo","showElementHistory","sharedTranslations","recycleBin","notesEvents","users","roles","clearAllCaches","clearDataCache","customReports","reports","applicationLogger","glossary","httpErrorLog"],f=["searchDocument","searchAsset","searchObject","searchAndReplaceAssignments","quickSearch"],y=[...m,...g,...h,...v,...f],b="bundles",x=e=>{var t;let{values:i,modified:x,onChange:j,onResetKeyBindings:w,...C}=e,{t:S}=(0,l.useTranslation)(),[T]=s.lV.useForm(),{getDefaultKeyBindings:I}=(0,u.o)();(0,n.useEffect)(()=>{(0,o.isEmpty)(i)||null==i||i.forEach(e=>{T.setFieldsValue({[e.action]:p(e)})})},[i,x]);let k=(0,o.isEmpty)(i)?[]:null==i||null==(t=i.map(e=>e.action))?void 0:t.filter(e=>!y.includes(e)),E=(e,t)=>({key:e,title:(0,r.jsx)(r.Fragment,{children:S(`key-bindings.${e}`)}),children:(0,r.jsx)(a.Row,{gutter:[40,0],children:t.map(t=>{let i=e!==b?S(`key-bindings.${t}`):(0,o.startCase)(t);return(0,r.jsx)(a.Col,{span:12,children:(0,r.jsx)(s.lV.Item,{label:i,name:t,children:(0,r.jsx)(a.Input,{"data-keybinding-input":"true",onKeyDown:e=>{let i,r;return i=e.keyCode,e.preventDefault(),r={action:t,ctrl:!1,alt:!1,shift:!1,key:i},9!==i&&8!==i&&27!==i&&46!==i&&(r.ctrl=e.ctrlKey,r.alt=e.altKey,r.shift=e.shiftKey,T.setFieldsValue({[t]:p(r)}),j(t,r),r)}})})},t)})})}),D=[E("general",m),E("navigation",g),E("search",f),E("system",v),E("seo",h),...(0,o.isEmpty)(k)?[]:[E(b,k)]];return(0,r.jsx)(s.lV,{form:T,layout:"vertical",children:(0,r.jsxs)(a.Row,{gutter:[10,10],children:[(0,r.jsx)(a.Col,{span:14,children:(0,r.jsxs)(a.Flex,{align:"center",justify:"space-between",children:[(0,r.jsx)(a.Alert,{message:S("key-bindings.info"),showIcon:!0,type:"info"}),(0,r.jsx)(c.$,{onClick:()=>{I().then(e=>{w(e.items),e.items.forEach(e=>{T.setFieldsValue({[e.action]:p(e)})})}).catch(e=>{console.error("Error fetching default key bindings:",e)})},children:S("key-bindings.reset")})]})}),D.map(e=>(0,r.jsx)(a.Col,{span:14,children:(0,r.jsx)(d.n,{activeKey:D.map(e=>e.key),bordered:!0,items:[e],size:"small"})},e.key))]})})}},22869(e,t,i){"use strict";i.d(t,{D:()=>o});var r=i(74848);i(47867);var n=i(68516),l=i(21429),a=i(44631);let o=e=>{let{data:t,viewData:i,editData:o,onChange:s,...d}=e,{t:c}=(0,l.useTranslation)(),u=[{key:"1",title:(0,r.jsx)(r.Fragment,{children:c("user-management.editor-settings")}),children:(0,r.jsx)(a.v,{data:t,editData:o,onChangeOrder:e=>{s(e)},viewData:i})}];return(0,r.jsx)(n.n,{activeKey:"1",bordered:!0,items:u,size:"small",table:!0})}},44631(e,t,i){"use strict";i.d(t,{v:()=>m});var r=i(74848),n=i(47867),l=i(14013),a=i(89507),o=i(21429);let s=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{table:i` - .ant-table { - .ant-table-tbody { - - .properties-table--actions-column { - align-items: center; - - .ant-btn-icon { - color: ${t.colorPrimary}; - - &:hover { - color: ${t.colorPrimaryHover}; - } - } - } - } - } - - .headline { - padding: ${t.paddingXS}px; - margin: 0; - } - `}});var d=i(29740),c=i(18037),u=i(35864),p=i(88754);let m=e=>{let{data:t,viewData:i,editData:m,onChangeOrder:g,onChange:h}=e,{t:v}=(0,o.useTranslation)(),{styles:f}=s(),{getDisplayName:y}=(0,c.W)(),b=t.map(e=>({name:y(e),abbreviation:e,...null!=i?{view:i.includes(e)||!1}:{},...null!=m?{edit:m.includes(e)||!1}:{}})),[x,j]=(0,n.useState)(b),w=(e,t)=>{if(-1===e||t<0)return;let i=[...x],[r]=i.splice(e,1);i.splice(t,0,r),j(i),null!=g&&g(i.map(e=>e.abbreviation))},C=(0,a.createColumnHelper)(),S=[...null!=g?[C.accessor("order",{header:"",size:40})]:[],C.accessor("name",{header:v("user-management.settings.language.name"),meta:{type:"text-cell",editable:!1},size:184}),C.accessor("abbreviation",{header:v("user-management.settings.language.abbreviation"),meta:{type:"text-cell",editable:!1},size:270})];return null!=g&&S.push(C.accessor("actions",{header:"",size:60,cell:e=>(0,r.jsxs)("div",{children:[(0,r.jsx)(d.K,{disabled:0===e.row.index,icon:{value:"chevron-up"},onClick:()=>{w(e.row.index,e.row.index-1)}}),(0,r.jsx)(d.K,{disabled:e.row.index===S.length-1,icon:{value:"chevron-down"},onClick:()=>{w(e.row.index,e.row.index+1)}})]})})),null!=h&&(S.push(C.accessor("view",{header:v("user-management.settings.language.view"),meta:{type:"checkbox",editable:!0,config:{align:"center"}},size:50})),S.push(C.accessor("edit",{header:v("user-management.settings.language.edit"),meta:{type:"checkbox",editable:!0,config:{align:"center"}},size:50}))),(0,r.jsx)("div",{className:f.table,children:(0,r.jsx)(r.Fragment,{children:(0,r.jsx)(l.x,{autoWidth:!0,columns:S,data:x,enableRowDrag:null!=g,handleDragEnd:e=>{let{active:t,over:i}=e;(0,u.isNil)(t)||(0,u.isNil)(i)||(0,u.isEqual)(t.id,i.id)||j(e=>{let r=e.findIndex(e=>e.abbreviation===t.id),n=e.findIndex(e=>e.abbreviation===i.id);if(-1===r||-1===n)return e;let l=(0,p.arrayMove)(e,r,n);return null!=g&&g(l.map(e=>e.abbreviation)),l})},onUpdateCellData:e=>{let{rowIndex:t,columnId:i,value:r,rowData:n}=e,l=x.map((e,n)=>{if(n===t)if("edit"===i)return{...e,[i]:r,view:r};else return{...e,[i]:r};return e});j(l),null!=h&&h(l)},setRowId:e=>e.abbreviation})})})}},69764(e,t,i){"use strict";i.d(t,{H:()=>h});var r=i(74848),n=i(47867),l=i.n(n),a=i(21429),o=i(86052),s=i(86569),d=i(76164),c=i(27994);let u=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{avatar:i` - background: ${t.colorPrimary}; - `}},{hashPriority:"low"});var p=i(46423),m=i(38034),g=i(29740);let h=e=>{let{user:t,onUserImageChanged:i,...h}=e,{t:v}=(0,a.useTranslation)(),{styles:f}=u(),y=["avatar--default",f.avatar],{uploadUserAvatar:b,deleteUserAvatar:x}=(0,p.o)(),{getUserImageById:j}=(0,m.N)(),[w,C]=l().useState((null==t?void 0:t.hasImage)===!0&&(null==t?void 0:t.image)===void 0),S=()=>{C(!0),j(t.id).then(e=>{void 0!==e&&(null==i||i(e,!0)),C(!1)}).catch(e=>{console.error("Error fetching user image:",e)})},T=async()=>{try{await x(null==t?void 0:t.id),null==i||i(void 0,!1)}catch(e){console.error("Error deleting user image:",e)}};return(0,n.useEffect)(()=>{(null==t?void 0:t.hasImage)===!0&&S()},[]),(0,r.jsx)(o.Z,{title:v("user-management.settings.avatar"),children:(0,r.jsxs)(s.Flex,{gap:"middle",vertical:!0,children:[w?(0,r.jsx)(s.Skeleton.Avatar,{active:!0,size:64}):(0,r.jsx)(s.Avatar,{className:y.join(" "),icon:(0,r.jsx)(d.A,{}),size:64,src:(null==t?void 0:t.hasImage)===!0&&(null==t?void 0:t.image)!=null?t.image:void 0}),(0,r.jsxs)(s.Flex,{gap:"small",children:[(0,r.jsx)(s.Upload,{customRequest:async e=>{let{file:i}=e;await b({id:null==t?void 0:t.id,file:i}),S()},headers:{"Content-Type":"multipart/form-data"},name:"userImage",showUploadList:!1,children:(0,r.jsx)(c.$,{type:"default",children:v("user-management.settings.upload-avatar")})}),(null==t?void 0:t.hasImage)===!0?(0,r.jsx)(g.K,{icon:{value:"trash"},onClick:T,type:"default"}):null]})]})})}},70356(e,t,i){"use strict";let r;i.d(t,{vd:()=>f,hN:()=>u,Is:()=>h,K5:()=>p,a0:()=>g,CH:()=>c,ei:()=>v,M_:()=>y,rU:()=>m});var n=i(88605),l=i(46881),a=i(55638),o=i(35864);let s=(0,n.createEntityAdapter)({}),d=(0,n.createSlice)({name:"user",initialState:s.getInitialState({modified:!1,activeId:void 0,changedIds:[],availablePermissions:[]}),reducers:{userOpened:(e,t)=>{e.activeId=t.payload},userClosed:(e,t)=>{let{id:i,allIds:r}=t.payload;if(s.removeOne(e,i),e.activeId===i){let t=r.findIndex(e=>Number.parseInt(e,10)===i),n=r[t-1],l=r[t+1],a=(0,o.isUndefined)(n)?void 0:Number.parseInt(n,10),s=(0,o.isUndefined)(l)?void 0:Number.parseInt(l,10);e.activeId=(0,o.isUndefined)(n)?s:a}},userFetched:(e,t)=>{void 0!==t.payload.id&&s.upsertOne(e,{...t.payload})},userRemoved:(e,t)=>{s.removeOne(e,t.payload)},changeUser:(e,t)=>{let i=t.payload.id;e.changedIds.includes(i)||e.changedIds.push(i);let r={id:t.payload.id,changes:{...t.payload.changes,modified:!0}};s.updateOne(e,r)},updateUserImage:(e,t)=>{let i={id:t.payload.id,changes:{image:t.payload.image,hasImage:void 0!==t.payload.image}};s.updateOne(e,i)},userUpdated:(e,t)=>{s.upsertOne(e,{...t.payload})},userAvailablePermissionsFetched:(e,t)=>{e.availablePermissions=t.payload.items},...(r=(e,t,i)=>{let r=s.getSelectors().selectById(e,t);void 0===r&&(0,a.Ay)(new a.$g(`Item with id ${t} not found`)),e.entities[t]=i({...r})},{resetChanges:(e,t)=>{r(e,t.payload,e=>(e.changes={},e.modifiedCells={},e.modified=!1,e))},setModifiedCells:(e,t)=>{r(e,t.payload.id,e=>(e.modifiedCells={...e.modifiedCells,[t.payload.type]:t.payload.modifiedCells},e))}})}});(0,l.injectSliceWithState)(d);let{userRemoved:c,userOpened:u,userClosed:p,userFetched:m,userAvailablePermissionsFetched:g,changeUser:h,updateUserImage:v,userUpdated:f}=d.actions,{selectById:y}=s.getSelectors(e=>e.user)},92087(e,t,i){"use strict";i.d(t,{A:()=>a});var r=i(74848),n=i(81898);i(47867);var l=i(86569);let a=e=>{let{icon:t,title:i,dataTestId:a,iconColorGroup:o}=e;return(0,r.jsx)(l.Tooltip,{placement:"right",title:i,children:(0,r.jsx)("div",{"data-testid":a,children:(0,r.jsx)(n.I,{iconColorGroup:o,options:{width:16,height:16},...t})})})}},726(e,t,i){"use strict";i.d(t,{v:()=>u});var r=i(74848),n=i(83015),l=i(47867),a=i(92087),o=i(28789),s=i(83196),d=i(32396),c=i(72913);let u=e=>{let{node:t,modified:i,title:u,icon:p}=e,[m]=(0,l.useState)(t.getParent()instanceof n.BorderNode),{closeWidget:g}=(0,s.J)(),{title:h,icon:v}=(0,c.U)(t,{titleOverride:u,iconOverride:p}),f=t.getConfig(),y=t.isEnableClose(),b="string"==typeof f.id||"number"==typeof f.id?String(f.id):void 0,x="string"==typeof f.elementType?f.elementType:void 0,j="string"==typeof f.iconColorGroup?f.iconColorGroup:void 0,w=t.getName();if(m){let e=(0,d.wc)(b,"string"==typeof w?w:void 0,x);return(0,r.jsx)(a.A,{dataTestId:e,icon:v,iconColorGroup:j,title:h})}return(0,r.jsx)(o.h,{dataTestId:(0,d.$e)(C(),b,x),icon:v,iconColorGroup:j,onClose:y?()=>{(!1===i||void 0===i)&&g(t.getId())}:void 0,onConfirm:!0===i?()=>{g(t.getId())}:void 0,title:C()});function C(){return h+(!0===i?"*":"")}}},28789(e,t,i){"use strict";i.d(t,{h:()=>m});var r=i(74848),n=i(81898),l=i(86569),a=i(27994),o=i(47867);let s=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{title:i` - .ant-space-item { - display: flex; - align-items: center; - } - `}},{hashPriority:"low"});var d=i(21429),c=i(2338),u=i(68194),p=i(68119);let m=e=>{let{icon:t,title:i,onClose:m,onConfirm:g,dataTestId:h,iconColorGroup:v}=e,{styles:f}=s(),{t:y}=(0,d.useTranslation)(),{user:b}=(0,p.U)(),[x,j]=(0,o.useState)(!1),w=()=>{null==m||m()},C=()=>{null==g||g()};return(0,r.jsxs)(c.$,{className:["widget-manager-tab-title",f.title].join(" "),"data-testid":h,onMouseDown:e=>{1===e.button&&w()},size:"mini",children:[(0,r.jsx)(n.I,{iconColorGroup:v,options:{width:16,height:16},...t}),(0,r.jsx)(u.C,{ellipsis:!0,style:{maxWidth:"300px",color:"inherit"},value:i}),void 0!==m&&void 0!==g&&(0,r.jsx)(l.Popconfirm,{onConfirm:C,onOpenChange:e=>{e&&(null==b?void 0:b.allowDirtyClose)?C():j(e)},open:x,title:y("widget-manager.tab-title.close-confirmation"),children:S()}),void 0!==m&&void 0===g&&S()]});function S(){return(0,r.jsx)(a.$,{className:"widget-manager__tab-title-close-button",onClick:w,onMouseDown:e=>{e.stopPropagation()},type:"link",children:(0,r.jsx)(n.I,{options:{width:14,height:14},value:"close"})})}}},73488(e,t,i){"use strict";i.d(t,{g:()=>r});let r=(e,t)=>`${e}-${t.toString()}`},48333(e,t,i){"use strict";i.d(t,{k:()=>d});var r=i(41630),n=i(2700),l=i(62059),a=i(35864),o=i(63364),s=i(10600);let d=()=>{let e=(0,n.JT)(r.M_.getState()),t=new Set,i=c({left:u(e,t),right:p(e,t),bottom:m(e,t)},t,e),l=i.widgets.left,a=i.widgets.right;return{global:{tabEnableRename:!1,tabSetEnableMaximize:!1,rootOrientationVertical:!0,enableUseVisibility:!0},layout:{id:"main",type:"row",children:[{type:"tabset",id:"main_tabset",enableDeleteWhenEmpty:!1,weight:50,selected:0,children:[{type:"tab",component:"inner-widget-manager",contentClassName:"widget-manager-inner-container",enableClose:!1}],enableDrag:!1,enableDrop:!1,enableTabStrip:!1},{type:"tabset",id:"bottom_tabset",enableDeleteWhenEmpty:!1,weight:50,minHeight:0,selected:0,children:i.widgets.bottom}]},borders:[{type:"border",location:"left",size:315,selected:g(l,i.expandedLeft),children:l},{type:"border",location:"right",size:315,selected:g(a,i.expandedRight),children:a}]}},c=(e,t,i)=>{if((0,a.isNil)(i))return{widgets:e,expandedLeft:null,expandedRight:null};let r=o.kL.get(s.K["WidgetManager/ProcessorRegistry/PerspectiveProcessor"]),n={left:e.left.map(e=>({widget:e.config,position:"left",tabNode:e})),right:e.right.map(e=>({widget:e.config,position:"right",tabNode:e})),bottom:e.bottom.map(e=>({widget:e.config,position:"bottom",tabNode:e}))},l=r.createContext(n,t,i,(null==i?void 0:i.expandedLeft)??null,(null==i?void 0:i.expandedRight)??null);return r.executeProcessors(l),{widgets:{left:l.getWidgets("left").map(e=>e.tabNode),right:l.getWidgets("right").map(e=>e.tabNode),bottom:l.getWidgets("bottom").map(e=>e.tabNode)},expandedLeft:l.getExpandedLeft(),expandedRight:l.getExpandedRight()}},u=(e,t)=>null===e?[]:h(e.widgetsLeft,t),p=(e,t)=>null===e?[]:h(e.widgetsRight,t),m=(e,t)=>null===e?[]:h(e.widgetsBottom,t),g=(e,t)=>{if((0,a.isNil)(e)||(0,a.isNil)(t))return;let i=e.findIndex(e=>e.id===t);return -1===i?e.length>0?0:void 0:i},h=(e,t)=>{let i=[],r=o.kL.get(s.K.widgetManager);return null==e||e.forEach(e=>{let n=r.getWidget(e.widgetType);if(!(0,a.isUndefined)(null==n?void 0:n.isVisible)&&!n.isVisible(e))return;let o=e.id;for(;t.has(o);)o=`${(0,l.u)()}_${e.id}`;t.add(o);let s={...e,id:o};(null==n?void 0:n.transformConfig)!==void 0&&(s={...s,...n.transformConfig(s)}),i.push({id:o,type:"tab",name:e.name,component:e.widgetType,enableClose:!1,config:s})}),i}},15783(e,t,i){"use strict";i.d(t,{O:()=>d});var r=i(74848),n=i(81898);i(47867);let l=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{WidgetTitle:i` - display: flex; - padding: ${t.paddingXS}px ${t.paddingSM}px; - gap: 8px; - align-items: center; - color: ${t.Tree.colorPrimaryHeading}; - font-weight: 600; - `,CloseButton:i` - margin-left: auto; - width: 20px; - height: 20px; - min-width: 20px; - padding: 0; - display: flex; - align-items: center; - justify-content: center; - `}},{hashPriority:"low"});var a=i(86569),o=i(5100),s=i(35864);let d=e=>{let{styles:t}=l(),{title:i,icon:d,className:c,onClose:u,iconColorGroup:p}=e;return(0,r.jsxs)("div",{className:[t.WidgetTitle,c,"foobar"].join(" "),children:[(0,r.jsx)(n.I,{iconColorGroup:p,options:{width:18,height:18},...d}),(0,r.jsx)("span",{children:i}),!(0,s.isNil)(u)&&(0,r.jsx)(a.Button,{className:t.CloseButton,icon:(0,r.jsx)(o.A,{}),onClick:u,size:"small",type:"text"})]})}},61062(e,t,i){"use strict";i.d(t,{a:()=>p,u:()=>m});var r=i(74848),n=i(47867),l=i(83015),a=i(73077),o=i(13947),s=i(46881),d=i(20120),c=i(84210),u=i(72913);let p=(0,n.createContext)({nodeId:null}),m=e=>{let t,{node:i,component:m,defaultGlobalContext:g,contentTitleComponent:h}=e,[v]=(0,n.useState)(i.getId()),f=i.getParent()instanceof l.BorderNode,{title:y,icon:b}=(0,u.U)(i),x=(0,s.useAppSelector)(d.T),j=(null==x?void 0:x.nodeId)===v,{setGlobalDefaultContext:w}=(t=(0,s.useAppDispatch)(),{setGlobalDefaultContext:e=>{t((0,c.W2)(e))}}),C=i.getConfig(),S="string"==typeof C.iconColorGroup?C.iconColorGroup:void 0;return(0,n.useEffect)(()=>{j&&g&&w({type:"default",widgetId:v})},[j,g,v]),(0,n.useMemo)(()=>(0,r.jsx)(o.A,{children:(0,r.jsx)(p.Provider,{value:{nodeId:v},children:(0,r.jsx)(a.wt,{contentTitleComponent:h,icon:b,iconColorGroup:S,node:i,showTitle:f,title:y,children:(0,r.jsx)(m,{...i.getConfig()})})})}),[v,f])}},73077(e,t,i){"use strict";i.d(t,{bI:()=>u,wt:()=>m,kn:()=>p});var r=i(74848),n=i(47867),l=i.n(n);let a=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{Widget:i` - display: flex; - flex-direction: column; - width: 100%; - height: 100%; - overflow: hidden; - - .widget__content { - flex: 1; - overflow: auto; - contain: layout size; - position: relative; - } - - .widget__title { - padding-top: ${t.paddingSM}px; - } - `}},{hashPriority:"low"});var o=i(28980),s=i(15783),d=i(83196);let c=e=>{let{contentTitleComponent:t,node:i,icon:n,title:l,iconColorGroup:a}=e,{closeWidget:o}=(0,d.J)(),c=i.isEnableClose();return(0,r.jsx)(r.Fragment,{children:void 0!==t?(0,r.jsx)(t,{icon:n,iconColorGroup:a,node:i,title:l}):(0,r.jsx)(s.O,{className:"widget__title",icon:n,iconColorGroup:a,onClose:c?()=>{o(i.getId())}:void 0,title:l})})},u={name:"widget"},p="widget__content",m=l().memo(e=>{let{styleDefinition:t}=(0,o.A)(u),{styles:i}=a(),{title:n,showTitle:l,icon:s,node:d,contentTitleComponent:m,children:g,iconColorGroup:h}=e,v=d.getComponent();return(0,r.jsxs)("div",{className:["widget",i.Widget,t.styles.container].join(" "),children:[!0===l&&(0,r.jsx)(c,{contentTitleComponent:m,icon:s,iconColorGroup:h,node:d,title:n}),(0,r.jsx)("div",{className:p,"data-testid":`widget-content-${v??"unknown"}`,children:g})]})})},89098(e,t,i){"use strict";i.d(t,{q:()=>h,A:()=>v});var r=i(74848),n=i(47867),l=i(20597),a=i(87632),o=i(77885),s=i(94788),d=i(8651),c=i.n(d);let u=(0,i(44241).createStyles)(e=>{let{css:t,token:i}=e;return{wysiwygEditor:t` - &.versionFieldItemHighlight { - > div { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - } - } - `,disabledEditor:t` - background-color: ${i.colorBgContainerDisabled}; - color: ${i.colorTextDisabled}; - border: 1px solid ${i.colorBorder}; - padding: 5px 11px; - cursor: not-allowed; - border-radius: ${i.borderRadius}px; - overflow: auto; - - &.versionFieldItemHighlight { - background-color: ${i.Colors.Brand.Warning.colorWarningBg} !important; - } - `}});var p=i(83499),m=i(73062);let g=(0,n.forwardRef)(function(e,t){let{getStateClasses:i}=(0,s.z)(),{styles:l}=u();(0,n.useEffect)(()=>{},[e.editorProps]);let a=!0===e.editorProps.disabled||!0===e.editorProps.noteditable;return(0,r.jsx)("div",{className:c()(l.wysiwygEditor,...i(),e.editorProps.className),ref:t,children:a?(0,r.jsx)("div",{className:c()(l.disabledEditor,e.editorProps.className),style:{maxWidth:(0,p.x)(e.editorProps.width),height:(0,p.x)(e.editorProps.height)},children:(0,r.jsx)(m.h,{html:e.editorProps.value??""})}):(0,r.jsx)(o.bU,{component:o.eb.wysiwyg.editor.name,props:{...e.editorProps}})})});g.displayName="WysiwygEditor";let h=e=>{let t=(0,n.useRef)(null);return(0,r.jsx)(l.g,{isValidContext:t=>!0!==e.disabled&&(0,a.Hy)(t.type),isValidData:()=>!0,onDrop:e=>{var i,r;null==(r=t.current)||null==(i=r.onDrop)||i.call(r,e)},children:(0,r.jsx)(g,{editorProps:{...e,ref:t}})})},v=h},24755(e,t,i){"use strict";i.d(t,{W:()=>r});let r={asset:"asset",document:"document",dataObject:"data-object"}}}]); \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js.LICENSE.txt b/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/async/__federation_expose_app.0a64ee83.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js b/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js deleted file mode 100644 index 9fc5b115c3..0000000000 --- a/public/build/9c444380-1446-4576-a90f-625ff01d8587/static/js/index.1c027f0e.js +++ /dev/null @@ -1,7 +0,0 @@ -/*! For license information please see index.1c027f0e.js.LICENSE.txt */ -(()=>{var __webpack_modules__={70115(){},6619(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(78130);t.logAndReport=function(e,t,r,n,a,i){return n(o.getShortErrorMsg(e,t,r,a))}},99810(e,t,r){let o=r(90924),n={[o.RUNTIME_001]:"Failed to get remoteEntry exports.",[o.RUNTIME_002]:'The remote entry interface does not contain "init"',[o.RUNTIME_003]:"Failed to get manifest.",[o.RUNTIME_004]:"Failed to locate remote.",[o.RUNTIME_005]:"Invalid loadShareSync function call from bundler runtime",[o.RUNTIME_006]:"Invalid loadShareSync function call from runtime",[o.RUNTIME_007]:"Failed to get remote snapshot.",[o.RUNTIME_008]:"Failed to load script resources.",[o.RUNTIME_009]:"Please call createInstance first.",[o.RUNTIME_010]:'The name option cannot be changed after initialization. If you want to create a new instance with a different name, please use "createInstance" api.',[o.RUNTIME_011]:"The remoteEntry URL is missing from the remote snapshot."},a={[o.TYPE_001]:"Failed to generate type declaration. Execute the below cmd to reproduce and fix the error."},i={[o.BUILD_001]:"Failed to find expose module.",[o.BUILD_002]:"PublicPath is required in prod mode."},s={...n,...a,...i};t.buildDescMap=i,t.errorDescMap=s,t.runtimeDescMap=n,t.typeDescMap=a},90924(e,t){let r="RUNTIME-001",o="RUNTIME-002",n="RUNTIME-003",a="RUNTIME-004",i="RUNTIME-005",s="RUNTIME-006",l="RUNTIME-007",u="RUNTIME-008",c="RUNTIME-009",d="RUNTIME-010",f="RUNTIME-011",m="TYPE-001",p="BUILD-002";t.BUILD_001="BUILD-001",t.BUILD_002=p,t.RUNTIME_001=r,t.RUNTIME_002=o,t.RUNTIME_003=n,t.RUNTIME_004=a,t.RUNTIME_005=i,t.RUNTIME_006=s,t.RUNTIME_007=l,t.RUNTIME_008=u,t.RUNTIME_009=c,t.RUNTIME_010=d,t.RUNTIME_011=f,t.TYPE_001=m},78130(e,t){let r=e=>`View the docs to see how to solve: https://module-federation.io/guide/troubleshooting/${e.split("-")[0].toLowerCase()}#${e.toLowerCase()}`;t.getShortErrorMsg=(e,t,o,n)=>{let a=[`${[t[e]]} #${e}`];return o&&a.push(`args: ${JSON.stringify(o)}`),a.push(r(e)),n&&a.push(`Original Error Message: - ${n}`),a.join("\n")}},84363(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(90924),n=r(78130),a=r(99810);t.BUILD_001=o.BUILD_001,t.BUILD_002=o.BUILD_002,t.RUNTIME_001=o.RUNTIME_001,t.RUNTIME_002=o.RUNTIME_002,t.RUNTIME_003=o.RUNTIME_003,t.RUNTIME_004=o.RUNTIME_004,t.RUNTIME_005=o.RUNTIME_005,t.RUNTIME_006=o.RUNTIME_006,t.RUNTIME_007=o.RUNTIME_007,t.RUNTIME_008=o.RUNTIME_008,t.RUNTIME_009=o.RUNTIME_009,t.RUNTIME_010=o.RUNTIME_010,t.RUNTIME_011=o.RUNTIME_011,t.TYPE_001=o.TYPE_001,t.buildDescMap=a.buildDescMap,t.errorDescMap=a.errorDescMap,t.getShortErrorMsg=n.getShortErrorMsg,t.runtimeDescMap=a.runtimeDescMap,t.typeDescMap=a.typeDescMap},31748(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},92926(e,t){let r="default";t.DEFAULT_REMOTE_TYPE="global",t.DEFAULT_SCOPE=r},45871(e,t,r){let o=r(48628),n=r(92926),a=r(8369),i=r(17829),s=r(28457),l=r(556);r(21132);let u=r(12003),c=r(26227),d=r(62964),f=r(82593),m=r(92299),p=r(60317);r(94317);let h=r(14260),g=r(64710),y=r(29152),E=r(17300),b=r(71777),_=r(50630),S=r(84363);t.ModuleFederation=class{initOptions(e){e.name&&e.name!==this.options.name&&o.error((0,S.getShortErrorMsg)(S.RUNTIME_010,S.runtimeDescMap)),this.registerPlugins(e.plugins);let t=this.formatOptions(this.options,e);return this.options=t,t}async loadShare(e,t){return this.sharedHandler.loadShare(e,t)}loadShareSync(e,t){return this.sharedHandler.loadShareSync(e,t)}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0;return this.sharedHandler.initializeSharing(e,t)}initRawContainer(e,t,r){let o=l.getRemoteInfo({name:e,entry:t}),n=new u.Module({host:this,remoteInfo:o});return n.remoteEntryExports=r,this.moduleCache.set(e,n),n}async loadRemote(e,t){return this.remoteHandler.loadRemote(e,t)}async preloadRemote(e){return this.remoteHandler.preloadRemote(e)}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.sharedHandler.initShareScopeMap(e,t,r)}formatOptions(e,t){let{allShareInfos:r}=a.formatShareConfigs(e,t),{userOptions:o,options:n}=this.hooks.lifecycle.beforeInit.emit({origin:this,userOptions:t,options:e,shareInfo:r}),i=this.remoteHandler.formatAndRegisterRemote(n,o),{allShareInfos:s}=this.sharedHandler.registerShared(n,o),l=[...n.plugins];o.plugins&&o.plugins.forEach(e=>{l.includes(e)||l.push(e)});let u={...e,...t,plugins:l,remotes:i,shared:s};return this.hooks.lifecycle.init.emit({origin:this,options:u}),u}registerPlugins(e){let t=s.registerPlugins(e,this);this.options.plugins=this.options.plugins.reduce((e,t)=>(t&&e&&!e.find(e=>e.name===t.name)&&e.push(t),e),t||[])}registerRemotes(e,t){return this.remoteHandler.registerRemotes(e,t)}registerShared(e){this.sharedHandler.registerShared(this.options,{...this.options,shared:e})}constructor(e){this.hooks=new p.PluginSystem({beforeInit:new f.SyncWaterfallHook("beforeInit"),init:new c.SyncHook,beforeInitContainer:new m.AsyncWaterfallHook("beforeInitContainer"),initContainer:new m.AsyncWaterfallHook("initContainer")}),this.version="2.2.3",this.moduleCache=new Map,this.loaderHook=new p.PluginSystem({getModuleInfo:new c.SyncHook,createScript:new c.SyncHook,createLink:new c.SyncHook,fetch:new d.AsyncHook,loadEntryError:new d.AsyncHook,getModuleFactory:new d.AsyncHook}),this.bridgeHook=new p.PluginSystem({beforeBridgeRender:new c.SyncHook,afterBridgeRender:new c.SyncHook,beforeBridgeDestroy:new c.SyncHook,afterBridgeDestroy:new c.SyncHook});const t=[h.snapshotPlugin(),g.generatePreloadAssetsPlugin()],r={id:i.getBuilderId(),name:e.name,plugins:t,remotes:[],shared:{},inBrowser:_.isBrowserEnvValue};this.name=e.name,this.options=r,this.snapshotHandler=new y.SnapshotHandler(this),this.sharedHandler=new E.SharedHandler(this),this.remoteHandler=new b.RemoteHandler(this),this.shareScopeMap=this.sharedHandler.shareScopeMap,this.registerPlugins([...r.plugins,...e.plugins||[]]),this.options=this.formatOptions(r,e)}}},44391(e,t,r){let o=r(48628),n=r(9350),a=r(50630),i="object"==typeof globalThis?globalThis:window,s=(()=>{try{return document.defaultView}catch{return i}})(),l=s;function u(e,t,r){Object.defineProperty(e,t,{value:r,configurable:!1,writable:!0})}function c(e,t){return Object.hasOwnProperty.call(e,t)}c(i,"__GLOBAL_LOADING_REMOTE_ENTRY__")||u(i,"__GLOBAL_LOADING_REMOTE_ENTRY__",{});let d=i.__GLOBAL_LOADING_REMOTE_ENTRY__;function f(e){var t,r,o,n,a,i;c(e,"__VMOK__")&&!c(e,"__FEDERATION__")&&u(e,"__FEDERATION__",e.__VMOK__),c(e,"__FEDERATION__")||(u(e,"__FEDERATION__",{__GLOBAL_PLUGIN__:[],__INSTANCES__:[],moduleInfo:{},__SHARE__:{},__MANIFEST_LOADING__:{},__PRELOADED_MAP__:new Map}),u(e,"__VMOK__",e.__FEDERATION__)),(t=e.__FEDERATION__).__GLOBAL_PLUGIN__??(t.__GLOBAL_PLUGIN__=[]),(r=e.__FEDERATION__).__INSTANCES__??(r.__INSTANCES__=[]),(o=e.__FEDERATION__).moduleInfo??(o.moduleInfo={}),(n=e.__FEDERATION__).__SHARE__??(n.__SHARE__={}),(a=e.__FEDERATION__).__MANIFEST_LOADING__??(a.__MANIFEST_LOADING__={}),(i=e.__FEDERATION__).__PRELOADED_MAP__??(i.__PRELOADED_MAP__=new Map)}function m(){i.__FEDERATION__.__GLOBAL_PLUGIN__=[],i.__FEDERATION__.__INSTANCES__=[],i.__FEDERATION__.moduleInfo={},i.__FEDERATION__.__SHARE__={},i.__FEDERATION__.__MANIFEST_LOADING__={},Object.keys(d).forEach(e=>{delete d[e]})}function p(e){i.__FEDERATION__.__INSTANCES__.push(e)}function h(){return i.__FEDERATION__.__DEBUG_CONSTRUCTOR__}function g(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,a.isDebugMode)();t&&(i.__FEDERATION__.__DEBUG_CONSTRUCTOR__=e,i.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__="2.2.3")}function y(e,t){if("string"==typeof t)if(e[t])return{value:e[t],key:t};else{for(let r of Object.keys(e)){let[o,n]=r.split(":"),a=`${o}:${t}`,i=e[a];if(i)return{value:i,key:a}}return{value:void 0,key:t}}o.error(`getInfoWithoutType: "key" must be a string, got ${typeof t} (${JSON.stringify(t)}).`)}f(i),f(s);let E=()=>s.__FEDERATION__.moduleInfo,b=(e,t)=>{let r=y(t,n.getFMId(e)).value;if(r&&!r.version&&"version"in e&&e.version&&(r.version=e.version),r)return r;if("version"in e&&e.version){let{version:t,...r}=e,o=n.getFMId(r),a=y(s.__FEDERATION__.moduleInfo,o).value;if((null==a?void 0:a.version)===t)return a}},_=e=>b(e,s.__FEDERATION__.moduleInfo),S=(e,t)=>{let r=n.getFMId(e);return s.__FEDERATION__.moduleInfo[r]=t,s.__FEDERATION__.moduleInfo},v=e=>(s.__FEDERATION__.moduleInfo={...s.__FEDERATION__.moduleInfo,...e},()=>{for(let t of Object.keys(e))delete s.__FEDERATION__.moduleInfo[t]}),R=(e,t)=>{let r=t||`__FEDERATION_${e}:custom__`;return{remoteEntryKey:r,entryExports:i[r]}},I=e=>{let{__GLOBAL_PLUGIN__:t}=s.__FEDERATION__;e.forEach(e=>{-1===t.findIndex(t=>t.name===e.name)?t.push(e):o.warn(`The plugin ${e.name} has been registered.`)})},T=()=>s.__FEDERATION__.__GLOBAL_PLUGIN__,M=e=>i.__FEDERATION__.__PRELOADED_MAP__.get(e),N=e=>i.__FEDERATION__.__PRELOADED_MAP__.set(e,!0);t.CurrentGlobal=i,t.Global=l,t.addGlobalSnapshot=v,t.getGlobalFederationConstructor=h,t.getGlobalHostPlugins=T,t.getGlobalSnapshot=E,t.getGlobalSnapshotInfoByModuleInfo=_,t.getInfoWithoutType=y,t.getPreloaded=M,t.getRemoteEntryExports=R,t.getTargetSnapshotInfoByModuleInfo=b,t.globalLoading=d,t.nativeGlobal=s,t.registerGlobalPlugins=I,t.resetFederationGlobalInfo=m,t.setGlobalFederationConstructor=g,t.setGlobalFederationInstance=p,t.setGlobalSnapshotInfoByModuleInfo=S,t.setPreloaded=N},3509(e,t,r){let o=r(44391),n=r(8369),a=r(6079),i=r(556);r(21132);let s=r(19599),l={getRegisteredShare:n.getRegisteredShare,getGlobalShareScope:n.getGlobalShareScope};t.default={global:{Global:o.Global,nativeGlobal:o.nativeGlobal,resetFederationGlobalInfo:o.resetFederationGlobalInfo,setGlobalFederationInstance:o.setGlobalFederationInstance,getGlobalFederationConstructor:o.getGlobalFederationConstructor,setGlobalFederationConstructor:o.setGlobalFederationConstructor,getInfoWithoutType:o.getInfoWithoutType,getGlobalSnapshot:o.getGlobalSnapshot,getTargetSnapshotInfoByModuleInfo:o.getTargetSnapshotInfoByModuleInfo,getGlobalSnapshotInfoByModuleInfo:o.getGlobalSnapshotInfoByModuleInfo,setGlobalSnapshotInfoByModuleInfo:o.setGlobalSnapshotInfoByModuleInfo,addGlobalSnapshot:o.addGlobalSnapshot,getRemoteEntryExports:o.getRemoteEntryExports,registerGlobalPlugins:o.registerGlobalPlugins,getGlobalHostPlugins:o.getGlobalHostPlugins,getPreloaded:o.getPreloaded,setPreloaded:o.setPreloaded},share:l,utils:{matchRemoteWithNameAndExpose:a.matchRemoteWithNameAndExpose,preloadAssets:s.preloadAssets,getRemoteInfo:i.getRemoteInfo}}},45922(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(48628),n=r(9350),a=r(44391),i=r(63957),s=r(8369),l=r(6079),u=r(556);r(21132);let c=r(3509),d=r(12003),f=r(45871),m=r(87703),p=r(50630),h=c.default;t.CurrentGlobal=a.CurrentGlobal,t.Global=a.Global,t.Module=d.Module,t.ModuleFederation=f.ModuleFederation,t.addGlobalSnapshot=a.addGlobalSnapshot,t.assert=o.assert,t.error=o.error,t.getGlobalFederationConstructor=a.getGlobalFederationConstructor,t.getGlobalSnapshot=a.getGlobalSnapshot,t.getInfoWithoutType=a.getInfoWithoutType,t.getRegisteredShare=s.getRegisteredShare,t.getRemoteEntry=u.getRemoteEntry,t.getRemoteInfo=u.getRemoteInfo,t.helpers=h,t.isStaticResourcesEqual=n.isStaticResourcesEqual,Object.defineProperty(t,"loadScript",{enumerable:!0,get:function(){return p.loadScript}}),Object.defineProperty(t,"loadScriptNode",{enumerable:!0,get:function(){return p.loadScriptNode}}),t.matchRemoteWithNameAndExpose=l.matchRemoteWithNameAndExpose,t.registerGlobalPlugins=a.registerGlobalPlugins,t.resetFederationGlobalInfo=a.resetFederationGlobalInfo,t.safeWrapper=n.safeWrapper,t.satisfy=i.satisfy,t.setGlobalFederationConstructor=a.setGlobalFederationConstructor,t.setGlobalFederationInstance=a.setGlobalFederationInstance,Object.defineProperty(t,"types",{enumerable:!0,get:function(){return m.type_exports}})},12003(e,t,r){let o=r(48628),n=r(9350),a=r(556),i=r(48393);r(21132);let s=r(50630),l=r(84363);function u(e,t,r){let o=t,n=Array.isArray(e.shareScope)?e.shareScope:[e.shareScope];n.length||n.push("default"),n.forEach(e=>{o[e]||(o[e]={})});let a={version:e.version||"",shareScopeKeys:Array.isArray(e.shareScope)?n:e.shareScope||"default"};return Object.defineProperty(a,"shareScopeMap",{value:o,enumerable:!1}),{remoteEntryInitOptions:a,shareScope:o[n[0]],initScope:r??[]}}t.Module=class{async getEntry(){if(this.remoteEntryExports)return this.remoteEntryExports;let e=await a.getRemoteEntry({origin:this.host,remoteInfo:this.remoteInfo,remoteEntryExports:this.remoteEntryExports});return o.assert(e,`remoteEntryExports is undefined - ${(0,s.safeToString)(this.remoteInfo)}`),this.remoteEntryExports=e,this.remoteEntryExports}async init(e,t,r){let n=await this.getEntry();if(this.inited)return n;if(this.initPromise)return await this.initPromise,n;this.initing=!0,this.initPromise=(async()=>{let{remoteEntryInitOptions:a,shareScope:s,initScope:c}=u(this.remoteInfo,this.host.shareScopeMap,r),d=await this.host.hooks.lifecycle.beforeInitContainer.emit({shareScope:s,remoteEntryInitOptions:a,initScope:c,remoteInfo:this.remoteInfo,origin:this.host});void 0===(null==n?void 0:n.init)&&o.error(l.RUNTIME_002,l.runtimeDescMap,{hostName:this.host.name,remoteName:this.remoteInfo.name,remoteEntryUrl:this.remoteInfo.entry,remoteEntryKey:this.remoteInfo.entryGlobalName},void 0,i.optionsToMFContext(this.host.options)),await n.init(d.shareScope,d.initScope,d.remoteEntryInitOptions),await this.host.hooks.lifecycle.initContainer.emit({...d,id:e,remoteSnapshot:t,remoteEntryExports:n}),this.inited=!0})();try{await this.initPromise}finally{this.initing=!1,this.initPromise=void 0}return n}async get(e,t,r,a){let i,{loadFactory:s=!0}=r||{loadFactory:!0},l=await this.init(e,a);this.lib=l,(i=await this.host.loaderHook.lifecycle.getModuleFactory.emit({remoteEntryExports:l,expose:t,moduleInfo:this.remoteInfo}))||(i=await l.get(t)),o.assert(i,`${n.getFMId(this.remoteInfo)} remote don't export ${t}.`);let u=n.processModuleAlias(this.remoteInfo.name,t),c=this.wraperFactory(i,u);return s?await c():c}wraperFactory(e,t){function r(e,t){e&&"object"==typeof e&&Object.isExtensible(e)&&!Object.getOwnPropertyDescriptor(e,Symbol.for("mf_module_id"))&&Object.defineProperty(e,Symbol.for("mf_module_id"),{value:t,enumerable:!1})}return e instanceof Promise?async()=>{let o=await e();return r(o,t),o}:()=>{let o=e();return r(o,t),o}}constructor({remoteInfo:e,host:t}){this.inited=!1,this.initing=!1,this.lib=void 0,this.remoteInfo=e,this.host=t}}},64710(e,t,r){let o=r(9350),n=r(44391),a=r(8369);r(21132);let i=r(19599),s=r(14260),l=r(50630);function u(e){let t=e.split(":");return 1===t.length?{name:t[0],version:void 0}:2===t.length?{name:t[0],version:t[1]}:{name:t[1],version:t[2]}}function c(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},s=arguments.length>5?arguments[5]:void 0,{value:d}=n.getInfoWithoutType(e,o.getFMId(t)),f=s||d;if(f&&!(0,l.isManifestProvider)(f)&&(r(f,t,a),f.remotesInfo))for(let t of Object.keys(f.remotesInfo)){if(i[t])continue;i[t]=!0;let o=u(t),n=f.remotesInfo[t];c(e,{name:o.name,version:n.matchedVersion},r,!1,i,void 0)}}let d=(e,t)=>document.querySelector(`${e}[${"link"===e?"href":"src"}="${t}"]`);function f(e,t,r,s,u){let f=[],m=[],p=[],h=new Set,g=new Set,{options:y}=e,{preloadConfig:E}=t,{depsRemote:b}=E;if(c(s,r,(t,r,a)=>{var s;let u;if(a)u=E;else if(Array.isArray(b)){let e=b.find(e=>e.nameOrAlias===r.name||e.nameOrAlias===r.alias);if(!e)return;u=i.defaultPreloadArgs(e)}else{if(!0!==b)return;u=E}let c=(0,l.getResourceUrl)(t,o.getRemoteEntryInfoFromSnapshot(t).url);c&&p.push({name:r.name,moduleInfo:{name:r.name,entry:c,type:"remoteEntryType"in t?t.remoteEntryType:"global",entryGlobalName:"globalName"in t?t.globalName:r.name,shareScope:"",version:"version"in t?t.version:void 0},url:c});let d="modules"in t?t.modules:[],h=i.normalizePreloadExposes(u.exposes);function g(e){let r=e.map(e=>(0,l.getResourceUrl)(t,e));return u.filter?r.filter(u.filter):r}if(h.length&&"modules"in t&&(d=null==t||null==(s=t.modules)?void 0:s.reduce((e,t)=>((null==h?void 0:h.indexOf(t.moduleName))!==-1&&e.push(t),e),[])),d){let o=d.length;for(let a=0;a0){let t=(t,r)=>{let{shared:o}=a.getRegisteredShare(e.shareScopeMap,r.sharedName,t,e.sharedHandler.hooks.lifecycle.resolveShare)||{};o&&"function"==typeof o.lib&&(r.assets.js.sync.forEach(e=>{h.add(e)}),r.assets.css.sync.forEach(e=>{g.add(e)}))};u.shared.forEach(e=>{var r;let n=null==(r=y.shared)?void 0:r[e.sharedName];if(!n)return;let a=e.version?n.find(t=>t.version===e.version):n;a&&o.arrayOptions(a).forEach(r=>{t(r,e)})})}let _=m.filter(e=>!h.has(e)&&!d("script",e));return{cssAssets:f.filter(e=>!g.has(e)&&!d("link",e)),jsAssetsWithoutEntry:_,entryAssets:p.filter(e=>!d("script",e.url))}}t.generatePreloadAssetsPlugin=function(){return{name:"generate-preload-assets-plugin",async generatePreloadAssets(e){let{origin:t,preloadOptions:r,remoteInfo:n,remote:a,globalSnapshot:i,remoteSnapshot:u}=e;return l.isBrowserEnvValue?o.isRemoteInfoWithEntry(a)&&o.isPureRemoteEntry(a)?{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[{name:a.name,url:a.entry,moduleInfo:{name:n.name,entry:a.entry,type:n.type||"global",entryGlobalName:"",shareScope:""}}]}:(s.assignRemoteInfo(n,u),f(t,r,n,i,u)):{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[]}}}}},29152(e,t,r){let o=r(48628),n=r(9350),a=r(44391),i=r(48393);r(21132);let s=r(62964),l=r(92299),u=r(60317);r(94317);let c=r(50630),d=r(84363);function f(e,t){let r=a.getGlobalSnapshotInfoByModuleInfo({name:t.name,version:t.options.version}),o=r&&"remotesInfo"in r&&r.remotesInfo&&a.getInfoWithoutType(r.remotesInfo,e.name).value;return o&&o.matchedVersion?{hostGlobalSnapshot:r,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:o.matchedVersion})}:{hostGlobalSnapshot:void 0,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:"version"in e?e.version:void 0})}}t.SnapshotHandler=class{async loadRemoteSnapshotInfo(e){let t,r,{moduleInfo:s,id:l,expose:u}=e,{options:f}=this.HostInstance;await this.hooks.lifecycle.beforeLoadRemoteSnapshot.emit({options:f,moduleInfo:s});let m=a.getGlobalSnapshotInfoByModuleInfo({name:this.HostInstance.options.name,version:this.HostInstance.options.version});m||(m={version:this.HostInstance.options.version||"",remoteEntry:"",remotesInfo:{}},a.addGlobalSnapshot({[this.HostInstance.options.name]:m})),m&&"remotesInfo"in m&&!a.getInfoWithoutType(m.remotesInfo,s.name).value&&("version"in s||"entry"in s)&&(m.remotesInfo={...null==m?void 0:m.remotesInfo,[s.name]:{matchedVersion:"version"in s?s.version:s.entry}});let{hostGlobalSnapshot:p,remoteSnapshot:h,globalSnapshot:g}=this.getGlobalRemoteInfo(s),{remoteSnapshot:y,globalSnapshot:E}=await this.hooks.lifecycle.loadSnapshot.emit({options:f,moduleInfo:s,hostGlobalSnapshot:p,remoteSnapshot:h,globalSnapshot:g});if(y)if((0,c.isManifestProvider)(y)){let e=c.isBrowserEnvValue?y.remoteEntry:y.ssrRemoteEntry||y.remoteEntry||"",o=await this.getManifestJson(e,s,{}),n=a.setGlobalSnapshotInfoByModuleInfo({...s,entry:e},o);t=o,r=n}else{let{remoteSnapshot:e}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:y,from:"global"});t=e,r=E}else if(n.isRemoteInfoWithEntry(s)){let e=await this.getManifestJson(s.entry,s,{}),o=a.setGlobalSnapshotInfoByModuleInfo(s,e),{remoteSnapshot:n}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:e,from:"global"});t=n,r=o}else o.error(d.RUNTIME_007,d.runtimeDescMap,{remoteName:s.name,remoteVersion:s.version,hostName:this.HostInstance.options.name,globalSnapshot:JSON.stringify(E)},void 0,i.optionsToMFContext(this.HostInstance.options));return await this.hooks.lifecycle.afterLoadSnapshot.emit({id:l,host:this.HostInstance,options:f,moduleInfo:s,remoteSnapshot:t}),{remoteSnapshot:t,globalSnapshot:r}}getGlobalRemoteInfo(e){return f(e,this.HostInstance)}async getManifestJson(e,t,r){let n=async()=>{let r=this.manifestCache.get(e);if(r)return r;try{let t=await this.loaderHook.lifecycle.fetch.emit(e,{});t&&t instanceof Response||(t=await fetch(e,{})),r=await t.json()}catch(n){(r=await this.HostInstance.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:n,from:"runtime",lifecycle:"afterResolve",origin:this.HostInstance}))||(delete this.manifestLoading[e],o.error(d.RUNTIME_003,d.runtimeDescMap,{manifestUrl:e,moduleName:t.name,hostName:this.HostInstance.options.name},`${n}`,i.optionsToMFContext(this.HostInstance.options)))}return o.assert(r.metaData&&r.exposes&&r.shared,`"${e}" is not a valid federation manifest for remote "${t.name}". Missing required fields: ${[!r.metaData&&"metaData",!r.exposes&&"exposes",!r.shared&&"shared"].filter(Boolean).join(", ")}.`),this.manifestCache.set(e,r),r},a=async()=>{let r=await n(),o=(0,c.generateSnapshotFromManifest)(r,{version:e}),{remoteSnapshot:a}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:t,manifestJson:r,remoteSnapshot:o,manifestUrl:e,from:"manifest"});return a};return this.manifestLoading[e]||(this.manifestLoading[e]=a().then(e=>e)),this.manifestLoading[e]}constructor(e){this.loadingHostSnapshot=null,this.manifestCache=new Map,this.hooks=new u.PluginSystem({beforeLoadRemoteSnapshot:new s.AsyncHook("beforeLoadRemoteSnapshot"),loadSnapshot:new l.AsyncWaterfallHook("loadGlobalSnapshot"),loadRemoteSnapshot:new l.AsyncWaterfallHook("loadRemoteSnapshot"),afterLoadSnapshot:new l.AsyncWaterfallHook("afterLoadSnapshot")}),this.manifestLoading=a.Global.__FEDERATION__.__MANIFEST_LOADING__,this.HostInstance=e,this.loaderHook=e.loaderHook}},t.getGlobalRemoteInfo=f},14260(e,t,r){let o=r(48628),n=r(9350);r(21132);let a=r(19599),i=r(50630),s=r(84363);function l(e,t){let r=n.getRemoteEntryInfoFromSnapshot(t);r.url||o.error(s.RUNTIME_011,s.runtimeDescMap,{remoteName:e.name});let a=(0,i.getResourceUrl)(t,r.url);i.isBrowserEnvValue||a.startsWith("http")||(a=`https:${a}`),e.type=r.type,e.entryGlobalName=r.globalName,e.entry=a,e.version=t.version,e.buildVersion=t.buildVersion}function u(){return{name:"snapshot-plugin",async afterResolve(e){let{remote:t,pkgNameOrAlias:r,expose:o,origin:i,remoteInfo:s,id:u}=e;if(!n.isRemoteInfoWithEntry(t)||!n.isPureRemoteEntry(t)){let{remoteSnapshot:n,globalSnapshot:c}=await i.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:t,id:u});l(s,n);let d={remote:t,preloadConfig:{nameOrAlias:r,exposes:[o],resourceCategory:"sync",share:!1,depsRemote:!1}},f=await i.remoteHandler.hooks.lifecycle.generatePreloadAssets.emit({origin:i,preloadOptions:d,remoteInfo:s,remote:t,remoteSnapshot:n,globalSnapshot:c});return f&&a.preloadAssets(s,i,f,!1),{...e,remoteSnapshot:n}}return e}}}t.assignRemoteInfo=l,t.snapshotPlugin=u},71777(e,t,r){let o=r(48628),n=r(44391),a=r(92926),i=r(8369),s=r(6079),l=r(556),u=r(48393);r(21132);let c=r(19599),d=r(12003),f=r(26227),m=r(62964),p=r(82593),h=r(92299),g=r(60317);r(94317);let y=r(29152),E=r(50630),b=r(84363);t.RemoteHandler=class{formatAndRegisterRemote(e,t){return(t.remotes||[]).reduce((e,t)=>(this.registerRemote(t,e,{force:!1}),e),e.remotes)}setIdToRemoteMap(e,t){let{remote:r,expose:o}=t,{name:n,alias:a}=r;if(this.idToRemoteMap[e]={name:r.name,expose:o},a&&e.startsWith(n)){let t=e.replace(n,a);this.idToRemoteMap[t]={name:r.name,expose:o};return}if(a&&e.startsWith(a)){let t=e.replace(a,n);this.idToRemoteMap[t]={name:r.name,expose:o}}}async loadRemote(e,t){let{host:r}=this;try{let{loadFactory:o=!0}=t||{loadFactory:!0},{module:n,moduleOptions:a,remoteMatchInfo:i}=await this.getRemoteModuleAndOptions({id:e}),{pkgNameOrAlias:s,remote:l,expose:u,id:c,remoteSnapshot:d}=i,f=await n.get(c,u,t,d),m=await this.hooks.lifecycle.onLoad.emit({id:c,pkgNameOrAlias:s,expose:u,exposeModule:o?f:void 0,exposeModuleFactory:o?void 0:f,remote:l,options:a,moduleInstance:n,origin:r});if(this.setIdToRemoteMap(e,i),"function"==typeof m)return m;return f}catch(a){let{from:o="runtime"}=t||{from:"runtime"},n=await this.hooks.lifecycle.errorLoadRemote.emit({id:e,error:a,from:o,lifecycle:"onLoad",origin:r});if(!n)throw a;return n}}async preloadRemote(e){let{host:t}=this;await this.hooks.lifecycle.beforePreloadRemote.emit({preloadOps:e,options:t.options,origin:t});let r=c.formatPreloadArgs(t.options.remotes,e);await Promise.all(r.map(async e=>{let{remote:r}=e,o=l.getRemoteInfo(r),{globalSnapshot:n,remoteSnapshot:a}=await t.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:r}),i=await this.hooks.lifecycle.generatePreloadAssets.emit({origin:t,preloadOptions:e,remote:r,remoteInfo:o,globalSnapshot:n,remoteSnapshot:a});i&&c.preloadAssets(o,t,i)}))}registerRemotes(e,t){let{host:r}=this;e.forEach(e=>{this.registerRemote(e,r.options.remotes,{force:null==t?void 0:t.force})})}async getRemoteModuleAndOptions(e){let t,{host:r}=this,{id:n}=e;try{t=await this.hooks.lifecycle.beforeRequest.emit({id:n,options:r.options,origin:r})}catch(e){if(!(t=await this.hooks.lifecycle.errorLoadRemote.emit({id:n,options:r.options,origin:r,from:"runtime",error:e,lifecycle:"beforeRequest"})))throw e}let{id:a}=t,i=s.matchRemoteWithNameAndExpose(r.options.remotes,a);i||o.error(b.RUNTIME_004,b.runtimeDescMap,{hostName:r.options.name,requestId:a},void 0,u.optionsToMFContext(r.options));let{remote:c}=i,f=l.getRemoteInfo(c),m=await r.sharedHandler.hooks.lifecycle.afterResolve.emit({id:a,...i,options:r.options,origin:r,remoteInfo:f}),{remote:p,expose:h}=m;o.assert(p&&h,`The 'beforeRequest' hook was executed, but it failed to return the correct 'remote' and 'expose' values while loading ${a}.`);let g=r.moduleCache.get(p.name),y={host:r,remoteInfo:f};return g||(g=new d.Module(y),r.moduleCache.set(p.name,g)),{module:g,moduleOptions:y,remoteMatchInfo:m}}registerRemote(e,t,r){let{host:n}=this,i=()=>{if(e.alias){let r=t.find(t=>{var r;return e.alias&&(t.name.startsWith(e.alias)||(null==(r=t.alias)?void 0:r.startsWith(e.alias)))});o.assert(!r,`The alias ${e.alias} of remote ${e.name} is not allowed to be the prefix of ${r&&r.name} name or alias`)}"entry"in e&&E.isBrowserEnvValue&&"u">typeof window&&!e.entry.startsWith("http")&&(e.entry=new URL(e.entry,window.location.origin).href),e.shareScope||(e.shareScope=a.DEFAULT_SCOPE),e.type||(e.type=a.DEFAULT_REMOTE_TYPE)};this.hooks.lifecycle.beforeRegisterRemote.emit({remote:e,origin:n});let s=t.find(t=>t.name===e.name);if(s){let o=[`The remote "${e.name}" is already registered.`,"Please note that overriding it may cause unexpected errors."];(null==r?void 0:r.force)&&(this.removeRemote(s),i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n}),(0,E.warn)(o.join(" ")))}else i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n})}removeRemote(e){try{let{host:r}=this,{name:o}=e,a=r.options.remotes.findIndex(e=>e.name===o);-1!==a&&r.options.remotes.splice(a,1);let s=r.moduleCache.get(e.name);if(s){var t;let o=s.remoteInfo,a=o.entryGlobalName;n.CurrentGlobal[a]&&((null==(t=Object.getOwnPropertyDescriptor(n.CurrentGlobal,a))?void 0:t.configurable)?delete n.CurrentGlobal[a]:n.CurrentGlobal[a]=void 0);let u=l.getRemoteEntryUniqueKey(s.remoteInfo);n.globalLoading[u]&&delete n.globalLoading[u],r.snapshotHandler.manifestCache.delete(o.entry);let c=o.buildVersion?(0,E.composeKeyWithSeparator)(o.name,o.buildVersion):o.name,d=n.CurrentGlobal.__FEDERATION__.__INSTANCES__.findIndex(e=>o.buildVersion?e.options.id===c:e.name===c);if(-1!==d){let e=n.CurrentGlobal.__FEDERATION__.__INSTANCES__[d];c=e.options.id||c;let t=i.getGlobalShareScope(),r=!0,a=[];Object.keys(t).forEach(e=>{let n=t[e];n&&Object.keys(n).forEach(t=>{let i=n[t];i&&Object.keys(i).forEach(n=>{let s=i[n];s&&Object.keys(s).forEach(i=>{let l=s[i];l&&"object"==typeof l&&l.from===o.name&&(l.loaded||l.loading?(l.useIn=l.useIn.filter(e=>e!==o.name),l.useIn.length?r=!1:a.push([e,t,n,i])):a.push([e,t,n,i]))})})})}),r&&(e.shareScopeMap={},delete t[c]),a.forEach(e=>{var r,o,n;let[a,i,s,l]=e;null==(n=t[a])||null==(o=n[i])||null==(r=o[s])||delete r[l]}),n.CurrentGlobal.__FEDERATION__.__INSTANCES__.splice(d,1)}let{hostGlobalSnapshot:f}=y.getGlobalRemoteInfo(e,r);if(f){let t=f&&"remotesInfo"in f&&f.remotesInfo&&n.getInfoWithoutType(f.remotesInfo,e.name).key;t&&(delete f.remotesInfo[t],n.Global.__FEDERATION__.__MANIFEST_LOADING__[t]&&delete n.Global.__FEDERATION__.__MANIFEST_LOADING__[t])}r.moduleCache.delete(e.name)}}catch(e){o.logger.error(`removeRemote failed: ${e instanceof Error?e.message:String(e)}`)}}constructor(e){this.hooks=new g.PluginSystem({beforeRegisterRemote:new p.SyncWaterfallHook("beforeRegisterRemote"),registerRemote:new p.SyncWaterfallHook("registerRemote"),beforeRequest:new h.AsyncWaterfallHook("beforeRequest"),onLoad:new m.AsyncHook("onLoad"),handlePreloadModule:new f.SyncHook("handlePreloadModule"),errorLoadRemote:new m.AsyncHook("errorLoadRemote"),beforePreloadRemote:new m.AsyncHook("beforePreloadRemote"),generatePreloadAssets:new m.AsyncHook("generatePreloadAssets"),afterPreloadRemote:new m.AsyncHook,loadEntry:new m.AsyncHook}),this.host=e,this.idToRemoteMap={}}}},17300(e,t,r){let o=r(48628),n=r(92926),a=r(8369),i=r(48393);r(21132);let s=r(62964),l=r(82593),u=r(92299),c=r(60317);r(94317);let d=r(84363);t.SharedHandler=class{registerShared(e,t){let{newShareInfos:r,allShareInfos:o}=a.formatShareConfigs(e,t);return Object.keys(r).forEach(e=>{r[e].forEach(r=>{r.scope.forEach(o=>{var n;this.hooks.lifecycle.beforeRegisterShare.emit({origin:this.host,pkgName:e,shared:r}),(null==(n=this.shareScopeMap[o])?void 0:n[e])||this.setShared({pkgName:e,lib:r.lib,get:r.get,loaded:r.loaded||!!r.lib,shared:r,from:t.name})})})}),{newShareInfos:r,allShareInfos:o}}async loadShare(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&await Promise.all(n.scope.map(async e=>{await Promise.all(this.initializeSharing(e,{strategy:n.strategy}))}));let{shareInfo:i}=await this.hooks.lifecycle.beforeLoadShare.emit({pkgName:e,shareInfo:n,shared:r.options.shared,origin:r});o.assert(i,`Cannot find shared "${e}" in host "${r.options.name}". Ensure the shared config for "${e}" is declared in the federation plugin options and the host has been initialized before loading shares.`);let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(s){let t=a.directShare(s,l);if(t.lib)return a.addUseIn(t,r.options.name),t.lib;if(t.loading&&!t.loaded){let e=await t.loading;return t.loaded=!0,t.lib||(t.lib=e),a.addUseIn(t,r.options.name),e}{let o=(async()=>{let e=await t.get();return a.addUseIn(t,r.options.name),t.loaded=!0,t.lib=e,e})();return this.setShared({pkgName:e,loaded:!1,shared:s,from:r.options.name,lib:null,loading:o,treeShaking:l?t:void 0}),o}}{if(null==t?void 0:t.customShareInfo)return!1;let o=a.shouldUseTreeShaking(i.treeShaking),n=a.directShare(i,o),s=(async()=>{let t=await n.get();n.lib=t,n.loaded=!0,a.addUseIn(n,r.options.name);let{shared:o,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(o){let e=a.directShare(o,s);e.lib=t,e.loaded=!0,o.from=i.from}return t})();return this.setShared({pkgName:e,loaded:!1,shared:i,from:r.options.name,lib:null,loading:s,treeShaking:o?n:void 0}),s}}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0,{host:r}=this,o=null==t?void 0:t.from,i=null==t?void 0:t.strategy,s=null==t?void 0:t.initScope,l=[];if("build"!==o){let{initTokens:t}=this;s||(s=[]);let r=t[e];if(r||(r=t[e]={from:this.host.name}),s.indexOf(r)>=0)return l;s.push(r)}let u=this.shareScopeMap,c=r.options.name;u[e]||(u[e]={});let d=u[e],f=(e,t)=>{var r;let{version:o,eager:n}=t;d[e]=d[e]||{};let i=d[e],s=i[o]&&a.directShare(i[o]),l=!!(s&&("eager"in s&&s.eager||"shareConfig"in s&&(null==(r=s.shareConfig)?void 0:r.eager)));(!s||"loaded-first"!==s.strategy&&!s.loaded&&(!n!=!l?n:c>i[o].from))&&(i[o]=t)},m=async e=>{let t,{module:o}=await r.remoteHandler.getRemoteModuleAndOptions({id:e});try{t=await o.getEntry()}catch(o){if(!(t=await r.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:o,from:"runtime",lifecycle:"beforeLoadShare",origin:r})))return}finally{(null==t?void 0:t.init)&&!o.initing&&(o.remoteEntryExports=t,await o.init(void 0,void 0,s))}};return Object.keys(r.options.shared).forEach(t=>{r.options.shared[t].forEach(r=>{r.scope.includes(e)&&f(t,r)})}),("version-first"===r.options.shareStrategy||"version-first"===i)&&r.options.remotes.forEach(t=>{t.shareScope===e&&l.push(m(t.name))}),l}loadShareSync(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&n.scope.forEach(e=>{this.initializeSharing(e,{strategy:n.strategy})});let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,n,this.hooks.lifecycle.resolveShare)||{};if(s){if("function"==typeof s.lib)return a.addUseIn(s,r.options.name),s.loaded||(s.loaded=!0,s.from===r.options.name&&(n.loaded=!0)),s.lib;if("function"==typeof s.get){let t=s.get();if(!(t instanceof Promise))return a.addUseIn(s,r.options.name),this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:t,shared:s}),t}}if(n.lib)return n.loaded||(n.loaded=!0),n.lib;if(n.get){let a=n.get();return a instanceof Promise&&o.error((null==t?void 0:t.from)==="build"?d.RUNTIME_005:d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options)),n.lib=a,this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:n.lib,shared:n}),n.lib}o.error(d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options))}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{host:o}=this;this.shareScopeMap[e]=t,this.hooks.lifecycle.initContainerShareScopeMap.emit({shareScope:t,options:o.options,origin:o,scopeName:e,hostShareScopeMap:r.hostShareScopeMap})}setShared(e){let{pkgName:t,shared:r,from:o,lib:n,loading:a,loaded:i,get:s,treeShaking:l}=e,{version:u,scope:c="default",...d}=r,f=Array.isArray(c)?c:[c],m=e=>{let t=(e,t,r)=>{r&&!e[t]&&(e[t]=r)},r=l?e.treeShaking:e;t(r,"loaded",i),t(r,"loading",a),t(r,"get",s)};f.forEach(e=>{this.shareScopeMap[e]||(this.shareScopeMap[e]={}),this.shareScopeMap[e][t]||(this.shareScopeMap[e][t]={}),this.shareScopeMap[e][t][u]||(this.shareScopeMap[e][t][u]={version:u,scope:[e],...d,lib:n});let r=this.shareScopeMap[e][t][u];m(r),o&&r.from!==o&&(r.from=o)})}_setGlobalShareScopeMap(e){let t=a.getGlobalShareScope(),r=e.id||e.name;r&&!t[r]&&(t[r]=this.shareScopeMap)}constructor(e){this.hooks=new c.PluginSystem({beforeRegisterShare:new l.SyncWaterfallHook("beforeRegisterShare"),afterResolve:new u.AsyncWaterfallHook("afterResolve"),beforeLoadShare:new u.AsyncWaterfallHook("beforeLoadShare"),loadShare:new s.AsyncHook,resolveShare:new l.SyncWaterfallHook("resolveShare"),initContainerShareScopeMap:new l.SyncWaterfallHook("initContainerShareScopeMap")}),this.host=e,this.shareScopeMap={},this.initTokens={},this._setGlobalShareScopeMap(e.options)}}},87703(e,t,r){var o=r(31748).__exportAll({});Object.defineProperty(t,"type_exports",{enumerable:!0,get:function(){return o}})},48393(e,t){function r(e){return{name:e.name,alias:e.alias,entry:"entry"in e?e.entry:void 0,version:"version"in e?e.version:void 0,type:e.type,entryGlobalName:e.entryGlobalName,shareScope:e.shareScope}}t.optionsToMFContext=function(e){var t,o,n,a,i,s;let l={};for(let[t,r]of Object.entries(e.shared)){let e=r[0];e&&(l[t]={version:e.version,singleton:null==(n=e.shareConfig)?void 0:n.singleton,requiredVersion:(null==(a=e.shareConfig)?void 0:a.requiredVersion)!==!1&&(null==(i=e.shareConfig)?void 0:i.requiredVersion),eager:e.eager,strictVersion:null==(s=e.shareConfig)?void 0:s.strictVersion})}return{project:{name:e.name,mfRole:(null==(t=e.remotes)?void 0:t.length)>0?"host":"unknown"},mfConfig:{name:e.name,remotes:(null==(o=e.remotes)?void 0:o.map(r))??[],shared:l}}}},17829(e,t,r){r(50630),t.getBuilderId=function(){return"pimcore_studio_ui_bundle:0.0.1"}},62964(e,t,r){let o=r(26227);t.AsyncHook=class extends o.SyncHook{emit(){let e;for(var t=arguments.length,r=Array(t),o=0;o0){let t=0,o=e=>!1!==e&&(t0){let r=0,n=t=>(o.warn(t),this.onerror(t),e),a=o=>{if(i.checkReturnData(e,o)){if(e=o,r{let r=e[t];r&&this.lifecycle[t].on(r)})}}removePlugin(e){o.assert(e,"A name is required.");let t=this.registerPlugins[e];o.assert(t,`The plugin "${e}" is not registered.`),Object.keys(t).forEach(e=>{"name"!==e&&this.lifecycle[e].remove(t[e])})}constructor(e){this.registerPlugins={},this.lifecycle=e,this.lifecycleKeys=Object.keys(e)}}},26227(e,t){t.SyncHook=class{on(e){"function"==typeof e&&this.listeners.add(e)}once(e){let t=this;this.on(function r(){for(var o=arguments.length,n=Array(o),a=0;a0&&this.listeners.forEach(t=>{e=t(...r)}),e}remove(e){this.listeners.delete(e)}removeAll(){this.listeners.clear()}constructor(e){this.type="",this.listeners=new Set,e&&(this.type=e)}}},82593(e,t,r){let o=r(48628),n=r(9350),a=r(26227);function i(e,t){if(!n.isObject(t))return!1;if(e!==t){for(let r in e)if(!(r in t))return!1}return!0}t.SyncWaterfallHook=class extends a.SyncHook{emit(e){for(let t of(n.isObject(e)||o.error(`The data for the "${this.type}" hook should be an object.`),this.listeners))try{let r=t(e);if(i(e,r))e=r;else{this.onerror(`A plugin returned an unacceptable value for the "${this.type}" type.`);break}}catch(e){o.warn(e),this.onerror(e)}return e}constructor(e){super(),this.onerror=o.error,this.type=e}},t.checkReturnData=i},21132(e,t,r){r(48628),r(9350),r(17829),r(6079),r(28457),r(556),r(48393),r(50630)},556(e,t,r){let o=r(48628),n=r(44391),a=r(92926),i=r(50630),s=r(84363),l=".then(callbacks[0]).catch(callbacks[1])";async function u(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):"u">typeof FEDERATION_ALLOW_NEW_FUNCTION?Function("callbacks",`import("${t}")${l}`)([e,n]):import(t).then(e).catch(n)}catch(e){o.error(`Failed to load ESM entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}async function c(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):Function("callbacks",`System.import("${t}")${l}`)([e,n])}catch(e){o.error(`Failed to load SystemJS entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}function d(e,t,r){let{remoteEntryKey:a,entryExports:i}=n.getRemoteEntryExports(e,t);return i||o.error(s.RUNTIME_001,s.runtimeDescMap,{remoteName:e,remoteEntryUrl:r,remoteEntryKey:a}),i}async function f(e){let{name:t,globalName:r,entry:a,loaderHook:l,getEntryUrl:u}=e,{entryExports:c}=n.getRemoteEntryExports(t,r);if(c)return c;let f=u?u(a):a;return(0,i.loadScript)(f,{attrs:{},createScriptHook:(e,t)=>{let r=l.lifecycle.createScript.emit({url:e,attrs:t});if(r&&(r instanceof HTMLScriptElement||"script"in r||"timeout"in r))return r}}).then(()=>d(t,r,a),e=>{let r=e instanceof Error?e.message:String(e);o.error(s.RUNTIME_008,s.runtimeDescMap,{remoteName:t,resourceUrl:f},r)})}async function m(e){let{remoteInfo:t,remoteEntryExports:r,loaderHook:o,getEntryUrl:n}=e,{entry:a,entryGlobalName:i,name:s,type:l}=t;switch(l){case"esm":case"module":return u({entry:a,remoteEntryExports:r});case"system":return c({entry:a,remoteEntryExports:r});default:return f({entry:a,globalName:i,name:s,loaderHook:o,getEntryUrl:n})}}async function p(e){let{remoteInfo:t,loaderHook:r}=e,{entry:a,entryGlobalName:s,name:l,type:u}=t,{entryExports:c}=n.getRemoteEntryExports(l,s);return c||(0,i.loadScriptNode)(a,{attrs:{name:l,globalName:s,type:u},loaderHook:{createScriptHook:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.lifecycle.createScript.emit({url:e,attrs:t});if(o&&"url"in o)return o}}}).then(()=>d(l,s,a)).catch(e=>{o.error(`Failed to load Node.js entry for remote "${l}" from "${a}". ${e instanceof Error?e.message:String(e)}`)})}function h(e){let{entry:t,name:r}=e;return(0,i.composeKeyWithSeparator)(r,t)}async function g(e){let{origin:t,remoteEntryExports:r,remoteInfo:o,getEntryUrl:a,_inErrorHandling:l=!1}=e,u=h(o);if(r)return r;if(!n.globalLoading[u]){let e=t.remoteHandler.hooks.lifecycle.loadEntry,c=t.loaderHook;n.globalLoading[u]=e.emit({loaderHook:c,remoteInfo:o,remoteEntryExports:r}).then(e=>e||(("u">typeof ENV_TARGET?"web"===ENV_TARGET:i.isBrowserEnvValue)?m({remoteInfo:o,remoteEntryExports:r,loaderHook:c,getEntryUrl:a}):p({remoteInfo:o,loaderHook:c}))).catch(async e=>{let a=h(o),i=e instanceof Error&&e.message.includes("ScriptExecutionError");if(e instanceof Error&&e.message.includes(s.RUNTIME_008)&&!i&&!l){let e=e=>g({...e,_inErrorHandling:!0}),i=await t.loaderHook.lifecycle.loadEntryError.emit({getRemoteEntry:e,origin:t,remoteInfo:o,remoteEntryExports:r,globalLoading:n.globalLoading,uniqueKey:a});if(i)return i}throw e})}return n.globalLoading[u]}function y(e){return{...e,entry:"entry"in e?e.entry:"",type:e.type||a.DEFAULT_REMOTE_TYPE,entryGlobalName:e.entryGlobalName||e.name,shareScope:e.shareScope||a.DEFAULT_SCOPE}}t.getRemoteEntry=g,t.getRemoteEntryUniqueKey=h,t.getRemoteInfo=y},48628(e,t,r){let o=r(50630),n=r(6619),a="[ Federation Runtime ]",i=(0,o.createLogger)(a);function s(e,t,r,o,i){if(void 0!==t)return(0,n.logAndReport)(e,t,r??{},e=>{throw Error(`${a}: ${e}`)},o,i);let s=e;if(s instanceof Error)throw s.message.startsWith(a)||(s.message=`${a}: ${s.message}`),s;throw Error(`${a}: ${s}`)}function l(e){e instanceof Error&&(e.message.startsWith(a)||(e.message=`${a}: ${e.message}`)),i.warn(e)}t.assert=function(e,t,r,o,n){e||(void 0!==r?s(t,r,o,void 0,n):s(t))},t.error=s,t.logger=i,t.warn=l},6079(e,t){function r(e,t){for(let r of e){let e=t.startsWith(r.name),o=t.replace(r.name,"");if(e){if(o.startsWith("/"))return{pkgNameOrAlias:r.name,expose:o=`.${o}`,remote:r};else if(""===o)return{pkgNameOrAlias:r.name,expose:".",remote:r}}let n=r.alias&&t.startsWith(r.alias),a=r.alias&&t.replace(r.alias,"");if(r.alias&&n){if(a&&a.startsWith("/"))return{pkgNameOrAlias:r.alias,expose:a=`.${a}`,remote:r};else if(""===a)return{pkgNameOrAlias:r.alias,expose:".",remote:r}}}}t.matchRemote=function(e,t){for(let r of e)if(t===r.name||r.alias&&t===r.alias)return r},t.matchRemoteWithNameAndExpose=r},28457(e,t,r){let o=r(44391);t.registerPlugins=function(e,t){let r=o.getGlobalHostPlugins(),n=[t.hooks,t.remoteHandler.hooks,t.sharedHandler.hooks,t.snapshotHandler.hooks,t.loaderHook,t.bridgeHook];return r.length>0&&r.forEach(t=>{(null==e?void 0:e.find(e=>e.name!==t.name))&&e.push(t)}),e&&e.length>0&&e.forEach(e=>{n.forEach(r=>{r.applyPlugin(e,t)})}),e}},19599(e,t,r){let o=r(48628),n=r(6079),a=r(556),i=r(50630);function s(e){return{resourceCategory:"sync",share:!0,depsRemote:!0,prefetchInterface:!1,...e}}function l(e,t){return t.map(t=>{let r=n.matchRemote(e,t.nameOrAlias);return o.assert(r,`Unable to preload ${t.nameOrAlias} as it is not included in ${!r&&(0,i.safeToString)({remoteInfo:r,remotes:e})}`),{remote:r,preloadConfig:s(t)}})}function u(e){return e?e.map(e=>"."===e?e:e.startsWith("./")?e.replace("./",""):e):[]}function c(e,t,r){let o=!(arguments.length>3)||void 0===arguments[3]||arguments[3],{cssAssets:n,jsAssetsWithoutEntry:s,entryAssets:l}=r;if(t.options.inBrowser){if(l.forEach(r=>{let{moduleInfo:o}=r,n=t.moduleCache.get(e.name);n?a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:n.remoteEntryExports}):a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:void 0})}),o){let e={rel:"preload",as:"style"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let e={rel:"stylesheet",type:"text/css"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o},needDeleteLink:!1});n&&document.head.appendChild(o)})}if(o){let e={rel:"preload",as:"script"};s.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let r={fetchpriority:"high",type:(null==e?void 0:e.type)==="module"?"module":"text/javascript"};s.forEach(e=>{let{script:o,needAttach:n}=(0,i.createScript)({url:e,cb:()=>{},attrs:r,createScriptHook:(e,r)=>{let o=t.loaderHook.lifecycle.createScript.emit({url:e,attrs:r});if(o instanceof HTMLScriptElement)return o},needDeleteScript:!0});n&&document.head.appendChild(o)})}}}t.defaultPreloadArgs=s,t.formatPreloadArgs=l,t.normalizePreloadExposes=u,t.preloadAssets=c},60632(e,t){function r(e,t){return(e=Number(e)||e)>(t=Number(t)||t)?1:e===t?0:-1}function o(e,t){let{preRelease:o}=e,{preRelease:n}=t;if(void 0===o&&n)return 1;if(o&&void 0===n)return -1;if(void 0===o&&void 0===n)return 0;for(let e=0,t=o.length;e<=t;e++){let t=o[e],a=n[e];if(t!==a){if(void 0===t&&void 0===a)return 0;if(!t)return 1;if(!a)return -1;return r(t,a)}}return 0}function n(e,t){return r(e.major,t.major)||r(e.minor,t.minor)||r(e.patch,t.patch)||o(e,t)}function a(e,t){return e.version===t.version}t.compare=function(e,t){switch(e.operator){case"":case"=":return a(e,t);case">":return 0>n(e,t);case">=":return a(e,t)||0>n(e,t);case"<":return n(e,t)>0;case"<=":return a(e,t)||n(e,t)>0;case void 0:return!0;default:return!1}}},59570(e,t){let r="[0-9A-Za-z-]+",o=`(?:\\+(${r}(?:\\.${r})*))`,n="0|[1-9]\\d*",a="[0-9]+",i="\\d*[a-zA-Z-][a-zA-Z0-9-]*",s=`(?:${a}|${i})`,l=`(?:-?(${s}(?:\\.${s})*))`,u=`(?:${n}|${i})`,c=`(?:-(${u}(?:\\.${u})*))`,d=`${n}|x|X|\\*`,f=`[v=\\s]*(${d})(?:\\.(${d})(?:\\.(${d})(?:${c})?${o}?)?)?`,m=`^\\s*(${f})\\s+-\\s+(${f})\\s*$`,p=`[v=\\s]*${`(${a})\\.(${a})\\.(${a})`}${l}?${o}?`,h="((?:<|>)?=?)",g=`(\\s*)${h}\\s*(${p}|${f})`,y="(?:~>?)",E=`(\\s*)${y}\\s+`,b="(?:\\^)",_=`(\\s*)${b}\\s+`,S="(<|>)?=?\\s*\\*",v=`^${b}${f}$`,R=`v?${`(${n})\\.(${n})\\.(${n})`}${c}?${o}?`,I=`^${y}${f}$`,T=`^${h}\\s*${f}$`,M=`^${h}\\s*(${R})$|^$`,N="^\\s*>=\\s*0.0.0\\s*$";t.caret=v,t.caretTrim=_,t.comparator=M,t.comparatorTrim=g,t.gte0=N,t.hyphenRange=m,t.star=S,t.tilde=I,t.tildeTrim=E,t.xRange=T},63957(e,t,r){let o=r(10078),n=r(83810),a=r(60632);function i(e){return o.pipe(n.parseCarets,n.parseTildes,n.parseXRanges,n.parseStar)(e)}function s(e){return o.pipe(n.parseHyphen,n.parseComparatorTrim,n.parseTildeTrim,n.parseCaretTrim)(e.trim()).split(/\s+/).join(" ")}t.satisfy=function(e,t){if(!e)return!1;let r=o.extractComparator(e);if(!r)return!1;let[,l,,u,c,d,f]=r,m={operator:l,version:o.combineVersion(u,c,d,f),major:u,minor:c,patch:d,preRelease:null==f?void 0:f.split(".")};for(let e of t.split("||")){let t=e.trim();if(!t||"*"===t||"x"===t)return!0;try{let e=s(t);if(!e.trim())return!0;let r=e.split(" ").map(e=>i(e)).join(" ");if(!r.trim())return!0;let l=r.split(/\s+/).map(e=>n.parseGTE0(e)).filter(Boolean);if(0===l.length)continue;let u=!0;for(let e of l){let t=o.extractComparator(e);if(!t){u=!1;break}let[,r,,n,i,s,l]=t;if(!a.compare({operator:r,version:o.combineVersion(n,i,s,l),major:n,minor:i,patch:s,preRelease:null==l?void 0:l.split(".")},m)){u=!1;break}}if(u)return!0}catch(e){console.error(`[semver] Error processing range part "${t}":`,e);continue}}return!1}},83810(e,t,r){let o=r(59570),n=r(10078);function a(e){return e.replace(n.parseRegex(o.hyphenRange),(e,t,r,o,a,i,s,l,u,c,d,f)=>(t=n.isXVersion(r)?"":n.isXVersion(o)?`>=${r}.0.0`:n.isXVersion(a)?`>=${r}.${o}.0`:`>=${t}`,l=n.isXVersion(u)?"":n.isXVersion(c)?`<${Number(u)+1}.0.0-0`:n.isXVersion(d)?`<${u}.${Number(c)+1}.0-0`:f?`<=${u}.${c}.${d}-${f}`:`<=${l}`,`${t} ${l}`.trim()))}function i(e){return e.replace(n.parseRegex(o.comparatorTrim),"$1$2$3")}function s(e){return e.replace(n.parseRegex(o.tildeTrim),"$1~")}function l(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.caret),(e,t,r,o,a)=>{if(n.isXVersion(t))return"";if(n.isXVersion(r))return`>=${t}.0.0 <${Number(t)+1}.0.0-0`;if(n.isXVersion(o))if("0"===t)return`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`;else return`>=${t}.${r}.0 <${Number(t)+1}.0.0-0`;if(a)if("0"!==t)return`>=${t}.${r}.${o}-${a} <${Number(t)+1}.0.0-0`;else if("0"===r)return`>=${t}.${r}.${o}-${a} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`;if("0"===t)if("0"===r)return`>=${t}.${r}.${o} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`;return`>=${t}.${r}.${o} <${Number(t)+1}.0.0-0`})).join(" ")}function u(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.tilde),(e,t,r,o,a)=>n.isXVersion(t)?"":n.isXVersion(r)?`>=${t}.0.0 <${Number(t)+1}.0.0-0`:n.isXVersion(o)?`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`:a?`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`:`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`)).join(" ")}function c(e){return e.split(/\s+/).map(e=>e.trim().replace(n.parseRegex(o.xRange),(e,t,r,o,a,i)=>{let s=n.isXVersion(r),l=s||n.isXVersion(o),u=l||n.isXVersion(a);if("="===t&&u&&(t=""),i="",s)if(">"===t||"<"===t)return"<0.0.0-0";else return"*";return t&&u?(l&&(o=0),a=0,">"===t?(t=">=",l?(r=Number(r)+1,o=0):o=Number(o)+1,a=0):"<="===t&&(t="<",l?r=Number(r)+1:o=Number(o)+1),"<"===t&&(i="-0"),`${t+r}.${o}.${a}${i}`):l?`>=${r}.0.0${i} <${Number(r)+1}.0.0-0`:u?`>=${r}.${o}.0${i} <${r}.${Number(o)+1}.0-0`:e})).join(" ")}function d(e){return e.trim().replace(n.parseRegex(o.star),"")}function f(e){return e.trim().replace(n.parseRegex(o.gte0),"")}t.parseCaretTrim=function(e){return e.replace(n.parseRegex(o.caretTrim),"$1^")},t.parseCarets=l,t.parseComparatorTrim=i,t.parseGTE0=f,t.parseHyphen=a,t.parseStar=d,t.parseTildeTrim=s,t.parseTildes=u,t.parseXRanges=c},10078(e,t,r){let o=r(59570);function n(e){return new RegExp(e)}function a(e){return!e||"x"===e.toLowerCase()||"*"===e}function i(){for(var e=arguments.length,t=Array(e),r=0;rt.reduce((e,t)=>t(e),e)}function s(e){return e.match(n(o.comparator))}t.combineVersion=function(e,t,r,o){let n=`${e}.${t}.${r}`;return o?`${n}-${o}`:n},t.extractComparator=s,t.isXVersion=a,t.parseRegex=n,t.pipe=i},8369(e,t,r){let o=r(48628),n=r(9350),a=r(44391),i=r(92926),s=r(63957),l=r(50630);function u(e,t,r,n){var a,i;let s;return s="get"in e?e.get:"lib"in e?()=>Promise.resolve(e.lib):()=>Promise.resolve(()=>{o.error(`Cannot get shared "${r}" from "${t}": neither "get" nor "lib" is provided in the share config.`)}),(null==(a=e.shareConfig)?void 0:a.eager)&&(null==(i=e.treeShaking)?void 0:i.mode)&&o.error(`Invalid shared config for "${r}" from "${t}": cannot use both "eager: true" and "treeShaking.mode" simultaneously. Choose one strategy.`),{deps:[],useIn:[],from:t,loading:null,...e,shareConfig:{requiredVersion:`^${e.version}`,singleton:!1,eager:!1,strictVersion:!1,...e.shareConfig},get:s,loaded:null!=e&&!!e.loaded||"lib"in e||void 0,version:e.version??"0",scope:Array.isArray(e.scope)?e.scope:[e.scope??"default"],strategy:(e.strategy??n)||"version-first",treeShaking:e.treeShaking?{...e.treeShaking,mode:e.treeShaking.mode??"server-calc",status:e.treeShaking.status??l.TreeShakingStatus.UNKNOWN,useIn:[]}:void 0}}function c(e,t){let r=t.shared||{},o=t.name,a=Object.keys(r).reduce((e,a)=>{let i=n.arrayOptions(r[a]);return e[a]=e[a]||[],i.forEach(r=>{e[a].push(u(r,o,a,t.shareStrategy))}),e},{}),i={...e.shared};return Object.keys(a).forEach(e=>{i[e]?a[e].forEach(t=>{i[e].find(e=>e.version===t.version)||i[e].push(t)}):i[e]=a[e]}),{allShareInfos:i,newShareInfos:a}}function d(e,t){if(!e)return!1;let{status:r,mode:o}=e;return r!==l.TreeShakingStatus.NO_USE&&(r===l.TreeShakingStatus.CALCULATED||"runtime-infer"===o&&(!t||g(e,t)))}function f(e,t){let r=e=>{if(!Number.isNaN(Number(e))){let t=e.split("."),r=e;for(let e=0;e<3-t.length;e++)r+=".0";return r}return e};return!!s.satisfy(r(e),`<=${r(t)}`)}let m=(e,t)=>{let r=t||function(e,t){return f(e,t)};return Object.keys(e).reduce((e,t)=>!e||r(e,t)||"0"===e?t:e,0)},p=e=>!!e.loaded||"function"==typeof e.lib,h=e=>!!e.loading,g=(e,t)=>{if(!e||!t)return!1;let{usedExports:r}=e;return!!r&&!!t.every(e=>r.includes(e))};function y(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){return i?!n[e].treeShaking||!!n[t].treeShaking&&!p(n[e].treeShaking)&&f(e,t):!p(n[e])&&f(e,t)};if(i){if(a=m(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:m(e[t][r],s),useTreesShaking:i}}let E=e=>p(e)||h(e);function b(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){if(i){if(!n[e].treeShaking)return!0;if(!n[t].treeShaking)return!1;if(E(n[t].treeShaking))if(E(n[e].treeShaking))return!!f(e,t);else return!0;if(E(n[e].treeShaking))return!1}if(E(n[t]))if(E(n[e]))return!!f(e,t);else return!0;return!E(n[e])&&f(e,t)};if(i){if(a=m(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:m(e[t][r],s),useTreesShaking:i}}function _(e){return"loaded-first"===e?b:y}function S(e,t,r,n){if(!e)return;let{shareConfig:l,scope:u=i.DEFAULT_SCOPE,strategy:c,treeShaking:f}=r;for(let i of Array.isArray(u)?u:[u])if(l&&e[i]&&e[i][t]){let{requiredVersion:u}=l,{version:m,useTreesShaking:p}=_(c)(e,i,t,f),h=()=>{let n=e[i][t][m];if(l.singleton){if("string"==typeof u&&!s.satisfy(m,u)){let e=`Version ${m} from ${m&&n.from} of shared singleton module ${t} does not satisfy the requirement of ${r.from} which needs ${u})`;l.strictVersion?o.error(e):o.warn(e)}return{shared:n,useTreesShaking:p}}{if(!1===u||"*"===u||s.satisfy(m,u))return{shared:n,useTreesShaking:p};let r=d(f);if(r){for(let[o,n]of Object.entries(e[i][t]))if(d(n.treeShaking,null==f?void 0:f.usedExports)&&s.satisfy(o,u))return{shared:n,useTreesShaking:r}}for(let[r,o]of Object.entries(e[i][t]))if(s.satisfy(r,u))return{shared:o,useTreesShaking:!1}}},g={shareScopeMap:e,scope:i,pkgName:t,version:m,GlobalFederation:a.Global.__FEDERATION__,shareInfo:r,resolver:h};return(n.emit(g)||g).resolver()}}function v(){return a.Global.__FEDERATION__.__SHARE__}function R(e){let{pkgName:t,extraOptions:r,shareInfos:o}=e,n=e=>{if(!e)return;let t={};e.forEach(e=>{t[e.version]=e});let r=function(e,r){return!p(t[e])&&f(e,r)};return t[m(t,r)]},a=(null==r?void 0:r.resolver)??n,i=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),s=function(){for(var e=arguments.length,t=Array(e),r=0;r{e.useIn||(e.useIn=[]),n.addUniqueItem(e.useIn,t)},t.directShare=I,t.formatShareConfigs=c,t.getGlobalShareScope=v,t.getRegisteredShare=S,t.getTargetSharedOptions=R,t.shouldUseTreeShaking=d},9350(e,t,r){let o=r(48628),n=r(50630);function a(e,t){return -1===e.findIndex(e=>e===t)&&e.push(t),e}function i(e){return"version"in e&&e.version?`${e.name}:${e.version}`:"entry"in e&&e.entry?`${e.name}:${e.entry}`:`${e.name}`}function s(e){return void 0!==e.entry}function l(e){return!e.entry.includes(".json")}async function u(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function c(e){return e&&"object"==typeof e}let d=Object.prototype.toString;function f(e){return"[object Object]"===d.call(e)}function m(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function p(e){return Array.isArray(e)?e:[e]}function h(e){let t={url:"",type:"global",globalName:""};return n.isBrowserEnvValue||(0,n.isReactNativeEnv)()||!("ssrRemoteEntry"in e)?"remoteEntry"in e?{url:e.remoteEntry,type:e.remoteEntryType,globalName:e.globalName}:t:"ssrRemoteEntry"in e?{url:e.ssrRemoteEntry||t.url,type:e.ssrRemoteEntryType||t.type,globalName:e.globalName}:t}let g=(e,t)=>{let r;return r=e.endsWith("/")?e.slice(0,-1):e,t.startsWith(".")&&(t=t.slice(1)),r+=t};t.addUniqueItem=a,t.arrayOptions=p,t.getFMId=i,t.getRemoteEntryInfoFromSnapshot=h,t.isObject=c,t.isPlainObject=f,t.isPureRemoteEntry=l,t.isRemoteInfoWithEntry=s,t.isStaticResourcesEqual=m,t.objectToString=d,t.processModuleAlias=g,t.safeWrapper=u},93544(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},13129(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),r(93544);let o=r(19577),n=r(45922),a={...n.helpers.global,getGlobalFederationInstance:o.getGlobalFederationInstance},i=n.helpers.share,s=n.helpers.utils;t.default={global:a,share:i,utils:s},t.global=a,t.share=i,t.utils=s},99782(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),r(93544);let o=r(19577),n=r(45922),a=r(84363);function i(e){let t=new((0,n.getGlobalFederationConstructor)()||n.ModuleFederation)(e);return(0,n.setGlobalFederationInstance)(t),t}let s=null;function l(e){let t=o.getGlobalFederationInstance(e.name,e.version);return t?(t.initOptions(e),s||(s=t),t):s=i(e)}function u(){for(var e=arguments.length,t=Array(e),r=0;r!!r&&o.options.id===r||o.options.name===e&&!o.options.version&&!t||o.options.name===e&&!!t&&o.options.version===t)}},67688(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},40586(e,t){let r="federation-manifest.json",o=".json",n="FEDERATION_DEBUG",a={AT:"@",HYPHEN:"-",SLASH:"/"},i={[a.AT]:"scope_",[a.HYPHEN]:"_",[a.SLASH]:"__"},s={[i[a.AT]]:a.AT,[i[a.HYPHEN]]:a.HYPHEN,[i[a.SLASH]]:a.SLASH},l=":",u="mf-manifest.json",c="mf-stats.json",d={NPM:"npm",APP:"app"},f="__MF_DEVTOOLS_MODULE_INFO__",m="ENCODE_NAME_PREFIX",p=".federation",h={identifier:"MFDataPrefetch",globalKey:"__PREFETCH__",library:"mf-data-prefetch",exportsKey:"__PREFETCH_EXPORTS__",fileName:"bootstrap.js"},g=function(e){return e[e.UNKNOWN=1]="UNKNOWN",e[e.CALCULATED=2]="CALCULATED",e[e.NO_USE=0]="NO_USE",e}({});t.BROWSER_LOG_KEY=n,t.ENCODE_NAME_PREFIX=m,t.EncodedNameTransformMap=s,t.FederationModuleManifest=r,t.MANIFEST_EXT=o,t.MFModuleType=d,t.MFPrefetchCommon=h,t.MODULE_DEVTOOL_IDENTIFIER=f,t.ManifestFileName=u,t.NameTransformMap=i,t.NameTransformSymbol=a,t.SEPARATOR=l,t.StatsFileName=c,t.TEMP_DIR=p,t.TreeShakingStatus=g},31483(e,t){t.createModuleFederationConfig=e=>e},6302(e,t,r){let o=r(43417);async function n(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function a(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function i(e){let t,r=null,o=!0,i=2e4,s=document.getElementsByTagName("script");for(let t=0;t{r&&("async"===e||"defer"===e?r[e]=o[e]:r.getAttribute(e)||r.setAttribute(e,o[e]))})}let l=null,u="u">typeof window?t=>{if(t.filename&&a(t.filename,e.url)){let r=Error(`ScriptExecutionError: Script "${e.url}" loaded but threw a runtime error during execution: ${t.message} (${t.filename}:${t.lineno}:${t.colno})`);r.name="ScriptExecutionError",l=r}}:null;u&&window.addEventListener("error",u);let c=async(o,a)=>{clearTimeout(t),u&&window.removeEventListener("error",u);let i=()=>{if((null==a?void 0:a.type)==="error"){let t=Error(`ScriptNetworkError: Failed to load script "${e.url}" - the script URL is unreachable or the server returned an error (network failure, 404, CORS, etc.)`);t.name="ScriptNetworkError",(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(t))}else l?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(l)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(r&&(r.onerror=null,r.onload=null,n(()=>{let{needDeleteScript:t=!0}=e;t&&(null==r?void 0:r.parentNode)&&r.parentNode.removeChild(r)}),o&&"function"==typeof o)){let e=o(a);if(e instanceof Promise){let t=await e;return i(),t}return i(),e}i()};return r.onerror=c.bind(null,r.onerror),r.onload=c.bind(null,r.onload),t=setTimeout(()=>{c(null,Error(`Remote script "${e.url}" time-outed.`))},i),{script:r,needAttach:o}}function s(e,t){let{attrs:r={},createScriptHook:o}=t;return new Promise((t,n)=>{let{script:a,needAttach:s}=i({url:e,cb:t,onErrorCallback:n,attrs:{fetchpriority:"high",...r},createScriptHook:o,needDeleteScript:!0});s&&document.head.appendChild(a)})}t.createLink=function(e){let t=null,r=!0,o=document.getElementsByTagName("link");for(let n=0;n{t&&!t.getAttribute(e)&&t.setAttribute(e,o[e])})}let i=(r,o)=>{let a=()=>{(null==o?void 0:o.type)==="error"?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(o)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(t&&(t.onerror=null,t.onload=null,n(()=>{let{needDeleteLink:r=!0}=e;r&&(null==t?void 0:t.parentNode)&&t.parentNode.removeChild(t)}),r)){let e=r(o);return a(),e}a()};return t.onerror=i.bind(null,t.onerror),t.onload=i.bind(null,t.onload),{link:t,needAttach:r}},t.createScript=i,t.isStaticResourcesEqual=a,t.loadScript=s,t.safeWrapper=n},56883(e,t,r){let o=r(40586),n="u">typeof ENV_TARGET?"web"===ENV_TARGET:"u">typeof window&&void 0!==window.document;function a(){return n}function i(){var e;return"u">typeof navigator&&(null==(e=navigator)?void 0:e.product)==="ReactNative"}function s(){try{if(a()&&window.localStorage)return!!localStorage.getItem(o.BROWSER_LOG_KEY)}catch(e){}return!1}function l(){return"u">typeof process&&process.env&&process.env.FEDERATION_DEBUG?!!process.env.FEDERATION_DEBUG:!!("u">typeof FEDERATION_DEBUG&&FEDERATION_DEBUG)||s()}t.getProcessEnv=function(){return"u">typeof process&&process.env?process.env:{}},t.isBrowserEnv=a,t.isBrowserEnvValue=n,t.isDebugMode=l,t.isReactNativeEnv=i},27016(e,t,r){let o=r(40586),n=(e,t)=>{if(!e)return t;let r=(e=>{if("."===e)return"";if(e.startsWith("./"))return e.replace("./","");if(e.startsWith("/")){let t=e.slice(1);return t.endsWith("/")?t.slice(0,-1):t}return e})(e);return r?r.endsWith("/")?`${r}${t}`:`${r}/${t}`:t};function a(e){return e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/")}function i(e){return!!("remoteEntry"in e&&e.remoteEntry.includes(o.MANIFEST_EXT))}function s(e){if(!e)return{statsFileName:o.StatsFileName,manifestFileName:o.ManifestFileName};let t="boolean"==typeof e?"":e.filePath||"",r="boolean"==typeof e?"":e.fileName||"",a=".json",i=e=>e.endsWith(a)?e:`${e}${a}`,s=(e,t)=>e.replace(a,`${t}${a}`),l=r?i(r):o.ManifestFileName;return{statsFileName:n(t,r?s(l,"-stats"):o.StatsFileName),manifestFileName:n(t,l)}}t.generateSnapshotFromManifest=function(e){var t,r,o;let i,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{remotes:l={},overrides:u={},version:c}=s,d=()=>"publicPath"in e.metaData?("auto"===e.metaData.publicPath||""===e.metaData.publicPath)&&c?a(c):e.metaData.publicPath:e.metaData.getPublicPath,f=Object.keys(u),m={};Object.keys(l).length||(m=(null==(t=e.remotes)?void 0:t.reduce((e,t)=>{let r,o=t.federationContainerName;return r=f.includes(o)?u[o]:"version"in t?t.version:t.entry,e[o]={matchedVersion:r},e},{}))||{}),Object.keys(l).forEach(e=>m[e]={matchedVersion:f.includes(e)?u[e]:l[e]});let{remoteEntry:{path:p,name:h,type:g},types:y={path:"",name:"",zip:"",api:""},buildInfo:{buildVersion:E},globalName:b,ssrRemoteEntry:_}=e.metaData,{exposes:S}=e,v={version:c||"",buildVersion:E,globalName:b,remoteEntry:n(p,h),remoteEntryType:g,remoteTypes:n(y.path,y.name),remoteTypesZip:y.zip||"",remoteTypesAPI:y.api||"",remotesInfo:m,shared:null==e?void 0:e.shared.map(e=>({assets:e.assets,sharedName:e.name,version:e.version,usedExports:e.referenceExports||[]})),modules:null==S?void 0:S.map(e=>({moduleName:e.name,modulePath:e.path,assets:e.assets}))};if(null==(r=e.metaData)?void 0:r.prefetchInterface){let t=e.metaData.prefetchInterface;v={...v,prefetchInterface:t}}if(null==(o=e.metaData)?void 0:o.prefetchEntry){let{path:t,name:r,type:o}=e.metaData.prefetchEntry;v={...v,prefetchEntry:n(t,r),prefetchEntryType:o}}if("publicPath"in e.metaData?(i={...v,publicPath:d()},"string"==typeof e.metaData.ssrPublicPath&&(i.ssrPublicPath=e.metaData.ssrPublicPath)):i={...v,getPublicPath:d()},_){let e=n(_.path,_.name);i.ssrRemoteEntry=e,i.ssrRemoteEntryType=_.type||"commonjs-module"}return i},t.getManifestFileName=s,t.inferAutoPublicPath=a,t.isManifestProvider=i,t.simpleJoinRemoteEntry=n},50630(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(40586),n=r(8841),a=r(88798),i=r(87765),s=r(71993),l=r(7345),u=r(95448),c=r(56883),d=r(43417),f=r(27016),m=r(43910),p=r(6302),h=r(638),g=r(76967),y=r(31483);t.BROWSER_LOG_KEY=o.BROWSER_LOG_KEY,t.ENCODE_NAME_PREFIX=o.ENCODE_NAME_PREFIX,t.EncodedNameTransformMap=o.EncodedNameTransformMap,t.FederationModuleManifest=o.FederationModuleManifest,t.MANIFEST_EXT=o.MANIFEST_EXT,t.MFModuleType=o.MFModuleType,t.MFPrefetchCommon=o.MFPrefetchCommon,t.MODULE_DEVTOOL_IDENTIFIER=o.MODULE_DEVTOOL_IDENTIFIER,t.ManifestFileName=o.ManifestFileName,t.NameTransformMap=o.NameTransformMap,t.NameTransformSymbol=o.NameTransformSymbol,t.SEPARATOR=o.SEPARATOR,t.StatsFileName=o.StatsFileName,t.TEMP_DIR=o.TEMP_DIR,t.TreeShakingStatus=o.TreeShakingStatus,t.assert=d.assert,t.bindLoggerToCompiler=m.bindLoggerToCompiler,t.composeKeyWithSeparator=d.composeKeyWithSeparator,Object.defineProperty(t,"consumeSharedPlugin",{enumerable:!0,get:function(){return l.ConsumeSharedPlugin_exports}}),Object.defineProperty(t,"containerPlugin",{enumerable:!0,get:function(){return n.ContainerPlugin_exports}}),Object.defineProperty(t,"containerReferencePlugin",{enumerable:!0,get:function(){return a.ContainerReferencePlugin_exports}}),t.createInfrastructureLogger=m.createInfrastructureLogger,t.createLink=p.createLink,t.createLogger=m.createLogger,t.createModuleFederationConfig=y.createModuleFederationConfig,t.createScript=p.createScript,t.createScriptNode=h.createScriptNode,t.decodeName=d.decodeName,t.encodeName=d.encodeName,t.error=d.error,t.generateExposeFilename=d.generateExposeFilename,t.generateShareFilename=d.generateShareFilename,t.generateSnapshotFromManifest=f.generateSnapshotFromManifest,t.getManifestFileName=f.getManifestFileName,t.getProcessEnv=c.getProcessEnv,t.getResourceUrl=d.getResourceUrl,t.inferAutoPublicPath=f.inferAutoPublicPath,t.infrastructureLogger=m.infrastructureLogger,t.isBrowserEnv=c.isBrowserEnv,t.isBrowserEnvValue=c.isBrowserEnvValue,t.isDebugMode=c.isDebugMode,t.isManifestProvider=f.isManifestProvider,t.isReactNativeEnv=c.isReactNativeEnv,t.isRequiredVersion=d.isRequiredVersion,t.isStaticResourcesEqual=p.isStaticResourcesEqual,t.loadScript=p.loadScript,t.loadScriptNode=h.loadScriptNode,t.logger=m.logger,Object.defineProperty(t,"moduleFederationPlugin",{enumerable:!0,get:function(){return i.ModuleFederationPlugin_exports}}),t.normalizeOptions=g.normalizeOptions,t.parseEntry=d.parseEntry,Object.defineProperty(t,"provideSharedPlugin",{enumerable:!0,get:function(){return u.ProvideSharedPlugin_exports}}),t.safeToString=d.safeToString,t.safeWrapper=p.safeWrapper,Object.defineProperty(t,"sharePlugin",{enumerable:!0,get:function(){return s.SharePlugin_exports}}),t.simpleJoinRemoteEntry=f.simpleJoinRemoteEntry,t.warn=d.warn},43910(e,t,r){let o=r(56883),n="[ Module Federation ]",a=console,i=["logger.ts","logger.js","captureStackTrace","Logger.emit","Logger.log","Logger.info","Logger.warn","Logger.error","Logger.debug"];function s(){try{let e=Error().stack;if(!e)return;let[,...t]=e.split("\n"),r=t.filter(e=>!i.some(t=>e.includes(t)));if(!r.length)return;return`Stack trace: -${r.slice(0,5).join("\n")}`}catch{return}}var l=class{setPrefix(e){this.prefix=e}setDelegate(e){this.delegate=e??a}emit(e,t){let r=this.delegate,n=o.isDebugMode()?s():void 0,i=n?[...t,n]:t,l=(()=>{switch(e){case"log":return["log","info"];case"info":return["info","log"];case"warn":return["warn","info","log"];case"error":return["error","warn","log"];default:return["debug","log"]}})();for(let e of l){let t=r[e];if("function"==typeof t)return void t.call(r,this.prefix,...i)}for(let e of l){let t=a[e];if("function"==typeof t)return void t.call(a,this.prefix,...i)}}log(){for(var e=arguments.length,t=Array(e),r=0;re).catch(t=>{throw console.error(`Error importing module ${e}:`,t),sdkImportCache.delete(e),t});return sdkImportCache.set(e,t),t}let loadNodeFetch=async()=>{let e=await importNodeModule("node-fetch");return e.default||e},lazyLoaderHookFetch=async(e,t,r)=>{let o=(e,t)=>r.lifecycle.fetch.emit(e,t),n=await o(e,t||{});return n&&n instanceof Response?n:("u"{let urlObj;if(null==loaderHook?void 0:loaderHook.createScriptHook){let hookResult=loaderHook.createScriptHook(url);hookResult&&"object"==typeof hookResult&&"url"in hookResult&&(url=hookResult.url)}try{urlObj=new URL(url)}catch(e){console.error("Error constructing URL:",e),cb(Error(`Invalid URL: ${e}`));return}let getFetch=async()=>(null==loaderHook?void 0:loaderHook.fetch)?(e,t)=>lazyLoaderHookFetch(e,t,loaderHook):"u"{try{var _vm_constants;let requireFn,res=await f(urlObj.href),data=await res.text(),[path,vm]=await Promise.all([importNodeModule("path"),importNodeModule("vm")]),scriptContext={exports:{},module:{exports:{}}},urlDirname=urlObj.pathname.split("/").slice(0,-1).join("/"),filename=path.basename(urlObj.pathname),script=new vm.Script(`(function(exports, module, require, __dirname, __filename) {${data} -})`,{filename,importModuleDynamically:(null==(_vm_constants=vm.constants)?void 0:_vm_constants.USE_MAIN_CONTEXT_DEFAULT_LOADER)??importNodeModule});requireFn=eval("require"),script.runInThisContext()(scriptContext.exports,scriptContext.module,requireFn,urlDirname,filename);let exportedInterface=scriptContext.module.exports||scriptContext.exports;if(attrs&&exportedInterface&&attrs.globalName)return void cb(void 0,exportedInterface[attrs.globalName]||exportedInterface);cb(void 0,exportedInterface)}catch(e){cb(e instanceof Error?e:Error(`Script execution error: ${e}`))}};getFetch().then(async e=>{if((null==attrs?void 0:attrs.type)==="esm"||(null==attrs?void 0:attrs.type)==="module")return loadModule(urlObj.href,{fetch:e,vm:await importNodeModule("vm")}).then(async e=>{await e.evaluate(),cb(void 0,e.namespace)}).catch(e=>{cb(e instanceof Error?e:Error(`Script execution error: ${e}`))});handleScriptFetch(e,urlObj)}).catch(e=>{cb(e)})}:(e,t,r,o)=>{t(Error("createScriptNode is disabled in non-Node.js environment"))},loadScriptNode="u"new Promise((r,o)=>{createScriptNode(e,(e,n)=>{if(e)o(e);else{var a,i;let e=(null==t||null==(a=t.attrs)?void 0:a.globalName)||`__FEDERATION_${null==t||null==(i=t.attrs)?void 0:i.name}:custom__`;r(globalThis[e]=n)}},t.attrs,t.loaderHook)}):(e,t)=>{throw Error("loadScriptNode is disabled in non-Node.js environment")},esmModuleCache=new Map;async function loadModule(e,t){if(esmModuleCache.has(e))return esmModuleCache.get(e);let{fetch:r,vm:o}=t,n=await (await r(e)).text(),a=new o.SourceTextModule(n,{importModuleDynamically:async(r,o)=>loadModule(new URL(r,e).href,t)});return esmModuleCache.set(e,a),await a.link(async r=>{let o=new URL(r,e).href;return await loadModule(o,t)}),a}exports.createScriptNode=createScriptNode,exports.loadScriptNode=loadScriptNode},76967(e,t){t.normalizeOptions=function(e,t,r){return function(o){if(!1===o)return!1;if(void 0===o)if(e)return t;else return!1;if(!0===o)return t;if(o&&"object"==typeof o)return{...t,...o};throw Error(`Unexpected type for \`${r}\`, expect boolean/undefined/object, got: ${typeof o}`)}}},7345(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ConsumeSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},8841(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ContainerPlugin_exports",{enumerable:!0,get:function(){return o}})},88798(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ContainerReferencePlugin_exports",{enumerable:!0,get:function(){return o}})},87765(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ModuleFederationPlugin_exports",{enumerable:!0,get:function(){return o}})},95448(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"ProvideSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},71993(e,t,r){var o=r(67688).__exportAll({});Object.defineProperty(t,"SharePlugin_exports",{enumerable:!0,get:function(){return o}})},43417(e,t,r){let o=r(40586),n=r(56883),a="[ Federation Runtime ]",i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:o.SEPARATOR,a=e.split(r),i="development"===n.getProcessEnv().NODE_ENV&&t,s="*",l=e=>e.startsWith("http")||e.includes(o.MANIFEST_EXT);if(a.length>=2){let[t,...o]=a;e.startsWith(r)&&(t=a.slice(0,2).join(r),o=[i||a.slice(2).join(r)]);let n=i||o.join(r);return l(n)?{name:t,entry:n}:{name:t,version:n||s}}if(1===a.length){let[e]=a;return i&&l(i)?{name:e,entry:i}:{name:e,version:i||s}}throw`Invalid entry value: ${e}`},s=function(){for(var e=arguments.length,t=Array(e),r=0;rt?e?`${e}${o.SEPARATOR}${t}`:t:e,""):""},l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];try{let n=r?".js":"";return`${t}${e.replace(RegExp(`${o.NameTransformSymbol.AT}`,"g"),o.NameTransformMap[o.NameTransformSymbol.AT]).replace(RegExp(`${o.NameTransformSymbol.HYPHEN}`,"g"),o.NameTransformMap[o.NameTransformSymbol.HYPHEN]).replace(RegExp(`${o.NameTransformSymbol.SLASH}`,"g"),o.NameTransformMap[o.NameTransformSymbol.SLASH])}${n}`}catch(e){throw e}},u=function(e,t,r){try{let n=e;if(t){if(!n.startsWith(t))return n;n=n.replace(RegExp(t,"g"),"")}return n=n.replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.AT]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.AT]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.SLASH]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.SLASH]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.HYPHEN]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.HYPHEN]]),r&&(n=n.replace(".js","")),n}catch(e){throw e}},c=(e,t)=>{if(!e)return"";let r=e;return"."===r&&(r="default_export"),r.startsWith("./")&&(r=r.replace("./","")),l(r,"__federation_expose_",t)},d=(e,t)=>e?l(e,"__federation_shared_",t):"",f=(e,t)=>{if("getPublicPath"in e){let r;return r=e.getPublicPath.startsWith("function")?Function("return "+e.getPublicPath)()():Function(e.getPublicPath)(),`${r}${t}`}return"publicPath"in e?!n.isBrowserEnv()&&!n.isReactNativeEnv()&&"ssrPublicPath"in e&&"string"==typeof e.ssrPublicPath?`${e.ssrPublicPath}${t}`:`${e.publicPath}${t}`:(console.warn("Cannot get resource URL. If in debug mode, please ignore.",e,t),"")},m=e=>{throw Error(`${a}: ${e}`)},p=e=>{console.warn(`${a}: ${e}`)};function h(e){try{return JSON.stringify(e,null,2)}catch(e){return""}}let g=/^([\d^=v<>~]|[*xX]$)/;function y(e){return g.test(e)}t.assert=(e,t)=>{e||m(t)},t.composeKeyWithSeparator=s,t.decodeName=u,t.encodeName=l,t.error=m,t.generateExposeFilename=c,t.generateShareFilename=d,t.getResourceUrl=f,t.isRequiredVersion=y,t.parseEntry=i,t.safeToString=h,t.warn=p},37363(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},22069(e,t){t.attachShareScopeMap=function(e){e.S&&!e.federation.hasAttachShareScopeMap&&e.federation.instance&&e.federation.instance.shareScopeMap&&(e.S=e.federation.instance.shareScopeMap,e.federation.hasAttachShareScopeMap=!0)}},36897(e,t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),t.FEDERATION_SUPPORTED_TYPES=["script"]},80916(e,t,r){let o=r(22069),n=r(55216),a=r(57617);t.consumes=function(e){n.updateConsumeOptions(e);let{chunkId:t,promises:r,installedModules:i,webpackRequire:s,chunkMapping:l,moduleToHandlerMapping:u}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{if(s.o(i,e))return r.push(i[e]);let t=t=>{i[e]=0,s.m[e]=r=>{var o;delete s.c[e];let n=t(),{shareInfo:a}=u[e];if((null==a||null==(o=a.shareConfig)?void 0:o.layer)&&n&&"object"==typeof n)try{n.hasOwnProperty("layer")&&void 0!==n.layer||(n.layer=a.shareConfig.layer)}catch(e){}r.exports=n}},o=t=>{delete i[e],s.m[e]=r=>{throw delete s.c[e],t}};try{let n=s.federation.instance;if(!n)throw Error("Federation instance not found!");let{shareKey:l,getter:c,shareInfo:d,treeShakingGetter:f}=u[e],m=a.getUsedExports(s,l),p={...d};Array.isArray(p.scope)&&Array.isArray(p.scope[0])&&(p.scope=p.scope[0]),m&&(p.treeShaking={usedExports:m,useIn:[n.options.name]});let h=n.loadShare(l,{customShareInfo:p}).then(e=>!1===e?(null==f?void 0:f())||c():e);h.then?r.push(i[e]=h.then(t).catch(o)):t(h)}catch(e){o(e)}})}},48167(e,t){t.getSharedFallbackGetter=e=>{let{shareKey:t,factory:r,version:o,webpackRequire:n,libraryType:a="global"}=e,{runtime:i,instance:s,bundlerRuntime:l,sharedFallback:u}=n.federation;if(!u)return r;let c=u[t];if(!c)return r;let d=o?c.find(e=>e[1]===o):c[0];if(!d)throw Error(`No fallback item found for shareKey: ${t} and version: ${o}`);return()=>i.getRemoteEntry({origin:n.federation.instance,remoteInfo:{name:d[2],entry:`${n.p}${d[0]}`,type:a,entryGlobalName:d[2],shareScope:"default"}}).then(e=>{if(!e)throw Error(`Failed to load fallback entry for shareKey: ${t} and version: ${o}`);return e.init(n.federation.instance,l).then(()=>e.get())})}},57617(e,t){t.getUsedExports=function(e,t){let r=e.federation.usedExports;if(r)return r[t]}},66927(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});let o=r(37363),n=r(22069),a=r(96310),i=r(80916),s=r(36777),l=r(71735),u=r(87440),c=r(8531),d=r(48167),f=r(99782),m={runtime:f=o.__toESM(f),instance:void 0,initOptions:void 0,bundlerRuntime:{remotes:a.remotes,consumes:i.consumes,I:s.initializeSharing,S:{},installInitialConsumes:l.installInitialConsumes,initContainerEntry:u.initContainerEntry,init:c.init,getSharedFallbackGetter:d.getSharedFallbackGetter},attachShareScopeMap:n.attachShareScopeMap,bundlerRuntimeOptions:{}},p=m.instance,h=m.initOptions,g=m.bundlerRuntime,y=m.bundlerRuntimeOptions;t.attachShareScopeMap=n.attachShareScopeMap,t.bundlerRuntime=g,t.bundlerRuntimeOptions=y,t.default=m,t.initOptions=h,t.instance=p,Object.defineProperty(t,"runtime",{enumerable:!0,get:function(){return f}})},8531(e,t,r){let o=r(37363),n=r(99782),a=r(13129);a=o.__toESM(a),t.init=function(e){var t;let{webpackRequire:o}=e,{initOptions:i,runtime:s,sharedFallback:l,bundlerRuntime:u,libraryType:c}=o.federation;if(!i)throw Error("initOptions is required!");let d=function(){return{name:"tree-shake-plugin",beforeInit(e){let{userOptions:t,origin:i,options:s}=e,d=t.version||s.version;if(!l)return e;let f=t.shared||{},m=[];Object.keys(f).forEach(e=>{(Array.isArray(f[e])?f[e]:[f[e]]).forEach(t=>{if(m.push([e,t]),"get"in t){var r;(r=t).treeShaking||(r.treeShaking={}),t.treeShaking.get=t.get,t.get=u.getSharedFallbackGetter({shareKey:e,factory:t.get,webpackRequire:o,libraryType:c,version:t.version})}})});let p=a.default.global.getGlobalSnapshotInfoByModuleInfo({name:i.name,version:d});if(!p||!("shared"in p))return e;Object.keys(s.shared||{}).forEach(e=>{s.shared[e].forEach(t=>{m.push([e,t])})});let h=(e,t)=>{let o=p.shared.find(t=>t.sharedName===e);if(!o)return;let{treeShaking:a}=t;if(!a)return;let{secondarySharedTreeShakingName:s,secondarySharedTreeShakingEntry:l,treeShakingStatus:u}=o;a.status!==u&&(a.status=u,l&&c&&s&&(a.get=async()=>{let e=await (0,n.getRemoteEntry)({origin:i,remoteInfo:{name:s,entry:l,type:c,entryGlobalName:s,shareScope:"default"}});return await e.init(i,r.federation.bundlerRuntime),e.get()}))};return m.forEach(e=>{let[t,r]=e;h(t,r)}),e}}};return(t=i).plugins||(t.plugins=[]),i.plugins.push(d()),s.init(i)}},87440(e,t){t.initContainerEntry=function(e){let{webpackRequire:t,shareScope:r,initScope:o,shareScopeKey:n,remoteEntryInitOptions:a}=e;if(!t.S||!t.federation||!t.federation.instance||!t.federation.initOptions)return;let i=t.federation.instance;i.initOptions({name:t.federation.initOptions.name,remotes:[],...a});let s=null==a?void 0:a.shareScopeKeys,l=null==a?void 0:a.shareScopeMap;if(n&&"string"!=typeof n)n.forEach(e=>{if(!s||!l)return void i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}});l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})});else{let e=n||"default";Array.isArray(s)?s.forEach(e=>{l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}):i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}return(t.federation.attachShareScopeMap&&t.federation.attachShareScopeMap(t),"function"==typeof t.federation.prefetch&&t.federation.prefetch(),Array.isArray(n))?t.federation.initOptions.shared?t.I(n,o):Promise.all(n.map(e=>t.I(e,o))).then(()=>!0):t.I(n||"default",o)}},36777(e,t,r){let o=r(22069),n=r(36897);t.initializeSharing=function(e){let{shareScopeName:t,webpackRequire:r,initPromises:a,initTokens:i,initScope:s}=e,l=Array.isArray(t)?t:[t];var u=[],c=function(e){s||(s=[]);let l=r.federation.instance;var u=i[e];if(u||(u=i[e]={from:l.name}),s.indexOf(u)>=0)return;s.push(u);let c=a[e];if(c)return c;var d=e=>"u">typeof console&&console.warn&&console.warn(e),f=o=>{var n=e=>d("Initialization of sharing external failed: "+e);try{var a=r(o);if(!a)return;var i=o=>o&&o.init&&o.init(r.S[e],s,{shareScopeMap:r.S||{},shareScopeKeys:t});if(a.then)return m.push(a.then(i,n));var l=i(a);if(l&&"boolean"!=typeof l&&l.then)return m.push(l.catch(n))}catch(e){n(e)}};let m=l.initializeSharing(e,{strategy:l.options.shareStrategy,initScope:s,from:"build"});o.attachShareScopeMap(r);let p=r.federation.bundlerRuntimeOptions.remotes;return(p&&Object.keys(p.idToRemoteMap).forEach(e=>{let t=p.idToRemoteMap[e],r=p.idToExternalAndNameMapping[e][2];if(t.length>1)f(r);else if(1===t.length){let e=t[0];n.FEDERATION_SUPPORTED_TYPES.includes(e.externalType)||f(r)}}),m.length)?a[e]=Promise.all(m).then(()=>a[e]=!0):a[e]=!0};return l.forEach(e=>{u.push(c(e))}),Promise.all(u).then(()=>!0)}},71735(e,t,r){let o=r(55216),n=r(57617);function a(e){let{moduleId:t,moduleToHandlerMapping:r,webpackRequire:o,asyncLoad:a}=e,i=o.federation.instance;if(!i)throw Error("Federation instance not found!");let{shareKey:s,shareInfo:l}=r[t];try{let e=n.getUsedExports(o,s),t={...l};if(e&&(t.treeShaking={usedExports:e,useIn:[i.options.name]}),a)return i.loadShare(s,{customShareInfo:t});return i.loadShareSync(s,{customShareInfo:t})}catch(e){throw console.error('loadShareSync failed! The function should not be called unless you set "eager:true". If you do not set it, and encounter this issue, you can check whether an async boundary is implemented.'),console.error("The original error message is as follows: "),e}}t.installInitialConsumes=function(e){o.updateConsumeOptions(e);let{moduleToHandlerMapping:t,webpackRequire:r,installedModules:n,initialConsumes:i,asyncLoad:s}=e,l=[];i.forEach(e=>{let o=()=>a({moduleId:e,moduleToHandlerMapping:t,webpackRequire:r,asyncLoad:s});l.push([e,o])});let u=(e,o)=>{r.m[e]=a=>{var i;n[e]=0,delete r.c[e];let s=o();if("function"!=typeof s)throw Error(`Shared module is not available for eager consumption: ${e}`);let l=s(),{shareInfo:u}=t[e];if((null==u||null==(i=u.shareConfig)?void 0:i.layer)&&l&&"object"==typeof l)try{l.hasOwnProperty("layer")&&void 0!==l.layer||(l.layer=u.shareConfig.layer)}catch(e){}a.exports=l}};if(s)return Promise.all(l.map(async e=>{let[t,r]=e,o=await r();u(t,()=>o)}));l.forEach(e=>{let[t,r]=e;u(t,r)})}},96310(e,t,r){r(37363);let o=r(22069),n=r(36897),a=r(55216),i=r(50630);t.remotes=function(e){a.updateRemoteOptions(e);let{chunkId:t,promises:r,webpackRequire:s,chunkMapping:l,idToExternalAndNameMapping:u,idToRemoteMap:c}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{let t=s.R;t||(t=[]);let o=u[e],a=c[e]||[];if(t.indexOf(o)>=0)return;if(t.push(o),o.p)return r.push(o.p);let l=t=>{t||(t=Error("Container missing")),"string"==typeof t.message&&(t.message+=` -while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,m,r):l();var m=(e,r,n)=>d(r.get,o[1],t,0,p,n),p=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let h=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(h,o[2],0,0,p,1):d(s,o[2],0,0,f,1)})}},55216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:m}=c;if(f&&m){for(let[e,t]of Object.entries(m))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},56491(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,m,p,h=r(66927),g=r.n(h);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={},b="pimcore_studio_ui_bundle",_="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},h=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},S=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},T=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},M={},N=[],O={},A=null==(m=r.initializeExposesData)?void 0:m.shareScope;for(let e in g())r.federation[e]=g()[e];h(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(T))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),h(r.federation,"initOptions",()=>({})),h(r.federation.initOptions,"name",()=>b),h(r.federation.initOptions,"shareStrategy",()=>_),h(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),h(r.federation,"bundlerRuntimeOptions",()=>({})),h(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),h(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>S),h(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),h(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),h(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:S,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:M,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:N,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(p=r.consumesLoadingData)?void 0:p.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:M,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={id:e,loaded:!1,exports:{}};return __webpack_modules__[e].call(r.exports,r,r.exports,__webpack_require__),r.loaded=!0,r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>{var e=__webpack_require__.O(void 0,["7366"],()=>__webpack_require__(70115));return __webpack_require__.O(e)},(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return!/^(1609|3367|5314|6375|9872)$/.test(e)},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>"static/js/async/"+e+"."+({1668:"120c2fdd",2237:"e23d4ce3",2272:"b29c0e6c",2287:"6a200c82",243:"098f10af",2463:"da2cfb76",254:"7abe0c11",2775:"0d98465a",3209:"6722a080",3379:"f0e413e5",4083:"82e017ef",45:"e217286d",4693:"552164ec",489:"693d11de",5123:"9f567207",5561:"b76a78d2",582:"4f5fd381",5976:"be3da2cf",6272:"f2f56a80",6464:"b6d25cb6",6550:"09a63ebf",6579:"cda7f334",6619:"93b9f2c4",6815:"80ba0d22",706:"01d44a78",7463:"e177b088",749:"7c748f48",7597:"42dde6f3",7680:"2cb113f6",7789:"50873df9",8222:"acb59083",8473:"25a53f08",854:"95bad760",8658:"55f9d53e",9007:"f28d0779",9204:"8f0c9c3a",9765:"07ec2c12",9880:"64c12943"})[e]+".js"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.g=(()=>{if("object"==typeof globalThis)return globalThis;try{return this||Function("return this")()}catch(e){if("object"==typeof window)return window}})()})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.nmd=e=>(e.paths=[],e.children||(e.children=[]),e)})(),(()=>{var e=[];__webpack_require__.O=(t,r,o,n)=>{if(r){n=n||0;for(var a=e.length;a>0&&e[a-1][2]>n;a--)e[a]=e[a-1];e[a]=[r,o,n];return}for(var i=1/0,a=0;a=n)&&Object.keys(__webpack_require__.O).every(e=>__webpack_require__.O[e](r[l]))?r.splice(l--,1):(s=!1,n{__webpack_require__.p="/bundles/pimcorestudioui/build/9c444380-1446-4576-a90f-625ff01d8587/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[{name:"@ant-design/colors",version:"7.2.1",factory:()=>()=>__webpack_require__(81463),eager:1,singleton:1,requiredVersion:"^7.2.1"},{name:"@codemirror/lang-css",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168)),eager:0,requiredVersion:"^6.3.0"},{name:"@codemirror/lang-html",version:"6.4.11",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618)),eager:0,requiredVersion:"^6.4.9"},{name:"@codemirror/lang-javascript",version:"6.2.5",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442)),eager:0,requiredVersion:"^6.2.2"},{name:"@codemirror/lang-json",version:"6.0.2",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("8222")]).then(()=>()=>__webpack_require__(88477)),eager:0,requiredVersion:"^6.0.1"},{name:"@codemirror/lang-markdown",version:"6.5.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("6550"),__webpack_require__.e("1609")]).then(()=>()=>__webpack_require__(32053)),eager:0,requiredVersion:"^6.3.1"},{name:"@codemirror/lang-sql",version:"6.10.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("7680")]).then(()=>()=>__webpack_require__(49075)),eager:0,requiredVersion:"^6.8.0"},{name:"@codemirror/lang-xml",version:"6.1.0",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("582")]).then(()=>()=>__webpack_require__(95973)),eager:0,requiredVersion:"^6.1.0"},{name:"@codemirror/lang-yaml",version:"6.1.3",factory:()=>Promise.all([__webpack_require__.e("2287"),__webpack_require__.e("9765"),__webpack_require__.e("2272")]).then(()=>()=>__webpack_require__(39027)),eager:0,requiredVersion:"^6.1.2"},{name:"@dnd-kit/core",version:"6.3.1",factory:()=>Promise.all([__webpack_require__.e("7789"),__webpack_require__.e("6464")]).then(()=>()=>__webpack_require__(98668)),eager:0,requiredVersion:"^6.1.0"},{name:"@dnd-kit/modifiers",version:"7.0.0",factory:()=>__webpack_require__.e("9204").then(()=>()=>__webpack_require__(18831)),eager:0,requiredVersion:"^7.0.0"},{name:"@dnd-kit/sortable",version:"8.0.0",factory:()=>Promise.all([__webpack_require__.e("9880"),__webpack_require__.e("6375"),__webpack_require__.e("4083")]).then(()=>()=>__webpack_require__(43627)),eager:0,requiredVersion:"^8.0.0"},{name:"@reduxjs/toolkit",version:"2.11.2",factory:()=>Promise.all([__webpack_require__.e("4693"),__webpack_require__.e("7597"),__webpack_require__.e("9872")]).then(()=>()=>__webpack_require__(62348)),eager:0,requiredVersion:"^2.3.0"},{name:"@tanstack/react-table",version:"8.21.3",factory:()=>__webpack_require__.e("6272").then(()=>()=>__webpack_require__(28755)),eager:0,requiredVersion:"^8.20.5"},{name:"@tanstack/react-virtual",version:"3.13.23",factory:()=>__webpack_require__.e("6619").then(()=>()=>__webpack_require__(28166)),eager:0,requiredVersion:"^3.13.12"},{name:"antd-style",version:"3.7.1",factory:()=>Promise.all([__webpack_require__.e("5123"),__webpack_require__.e("5314"),__webpack_require__.e("8473")]).then(()=>()=>__webpack_require__(6286)),eager:0,requiredVersion:"3.7.x"},{name:"antd",version:"5.22.7",factory:()=>()=>__webpack_require__(64530),eager:1,singleton:1,requiredVersion:"5.22.x"},{name:"classnames",version:"2.5.1",factory:()=>()=>__webpack_require__(46942),eager:1,singleton:1,requiredVersion:"^2.5.1"},{name:"dompurify",version:"3.3.3",factory:()=>__webpack_require__.e("7463").then(()=>()=>__webpack_require__(99418)),eager:0,requiredVersion:"^3.2.1"},{name:"flexlayout-react",version:"0.7.15",factory:()=>__webpack_require__.e("243").then(()=>()=>__webpack_require__(99310)),eager:0,requiredVersion:"^0.7.15"},{name:"framer-motion",version:"11.18.2",factory:()=>Promise.all([__webpack_require__.e("2463"),__webpack_require__.e("854")]).then(()=>()=>__webpack_require__(12306)),eager:0,requiredVersion:"^11.11.17"},{name:"i18next",version:"23.16.8",factory:()=>__webpack_require__.e("5976").then(()=>()=>__webpack_require__(72635)),eager:0,requiredVersion:"^23.16.8"},{name:"immer",version:"11.1.4",factory:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064)),eager:0,requiredVersion:"^10.1.1"},{name:"js-yaml",version:"4.1.1",factory:()=>__webpack_require__.e("6579").then(()=>()=>__webpack_require__(20382)),eager:0,requiredVersion:"^4.1.1"},{name:"leaflet-draw",version:"1.0.4",factory:()=>__webpack_require__.e("254").then(()=>()=>__webpack_require__(56269)),eager:0,requiredVersion:"^1.0.4"},{name:"leaflet",version:"1.9.4",factory:()=>__webpack_require__.e("706").then(()=>()=>__webpack_require__(53481)),eager:0,requiredVersion:"^1.9.4"},{name:"lodash",version:"4.17.23",factory:()=>__webpack_require__.e("1668").then(()=>()=>__webpack_require__(2543)),eager:0,requiredVersion:"^4.17.21"},{name:"react-compiler-runtime",version:"19.1.0-rc.3",factory:()=>__webpack_require__.e("3209").then(()=>()=>__webpack_require__(21728)),eager:0,requiredVersion:"^19.1.0-rc.2"},{name:"react-dom",version:"18.3.1",factory:()=>()=>__webpack_require__(40961),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"react-draggable",version:"4.5.0",factory:()=>__webpack_require__.e("6815").then(()=>()=>__webpack_require__(55794)),eager:0,requiredVersion:"^4.4.6"},{name:"react-i18next",version:"14.1.3",factory:()=>__webpack_require__.e("3379").then(()=>()=>__webpack_require__(53054)),eager:0,requiredVersion:"^14.1.3"},{name:"react-redux",version:"9.2.0",factory:()=>__webpack_require__.e("2237").then(()=>()=>__webpack_require__(71468)),eager:0,requiredVersion:"^9.1.2"},{name:"react-router-dom",version:"6.30.3",factory:()=>__webpack_require__.e("749").then(()=>()=>__webpack_require__(76204)),eager:0,requiredVersion:"^6.28.0"},{name:"react",version:"18.3.1",factory:()=>()=>__webpack_require__(96540),eager:1,singleton:1,requiredVersion:"18.3.x"},{name:"reflect-metadata",version:"0.2.2",factory:()=>()=>__webpack_require__(38630),eager:1,singleton:1,requiredVersion:"*"},{name:"uuid",version:"10.0.0",factory:()=>__webpack_require__.e("8658").then(()=>()=>__webpack_require__(81513)),eager:0,requiredVersion:"^10.0.0"}]},uniqueName:"pimcore_studio_ui_bundle"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{5314:["86569"],8410:["8651","25765","47867","16124"],3367:["23080","3319"],1609:["11264"],9872:["91251"],6375:["41834"]},moduleIdToConsumeDataMapping:{16124:{shareScope:"default",shareKey:"@ant-design/colors",import:"@ant-design/colors",requiredVersion:"^7.2.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(81463)},8651:{shareScope:"default",shareKey:"classnames",import:"classnames",requiredVersion:"^2.5.1",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(46942)},25765:{shareScope:"default",shareKey:"react-dom",import:"react-dom",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(40961)},23080:{shareScope:"default",shareKey:"@codemirror/lang-css",import:"@codemirror/lang-css",requiredVersion:"^6.3.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("5561")]).then(()=>()=>__webpack_require__(75168))},3319:{shareScope:"default",shareKey:"@codemirror/lang-javascript",import:"@codemirror/lang-javascript",requiredVersion:"^6.2.2",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("45"),__webpack_require__.e("9765"),__webpack_require__.e("2775")]).then(()=>()=>__webpack_require__(14442))},11264:{shareScope:"default",shareKey:"@codemirror/lang-html",import:"@codemirror/lang-html",requiredVersion:"^6.4.9",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>Promise.all([__webpack_require__.e("9765"),__webpack_require__.e("9007"),__webpack_require__.e("3367")]).then(()=>()=>__webpack_require__(95618))},41834:{shareScope:"default",shareKey:"@dnd-kit/core",import:"@dnd-kit/core",requiredVersion:"^6.1.0",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("7789").then(()=>()=>__webpack_require__(98668))},86569:{shareScope:"default",shareKey:"antd",import:"antd",requiredVersion:"5.22.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(64530)},47867:{shareScope:"default",shareKey:"react",import:"react",requiredVersion:"18.3.x",strictVersion:!1,singleton:!0,eager:!0,fallback:()=>()=>__webpack_require__(96540)},91251:{shareScope:"default",shareKey:"immer",import:"immer",requiredVersion:"^10.1.1",strictVersion:!0,singleton:!1,eager:!1,fallback:()=>__webpack_require__.e("489").then(()=>()=>__webpack_require__(12064))}},initialConsumes:["8651","25765","47867","16124"]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={8410:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(/^(1609|3367|5314|6375|9872)$/.test(t))e[t]=0;else{var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}},__webpack_require__.O.j=t=>0===e[t];var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);if(s)var u=s(__webpack_require__)}for(t&&t(r);l{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(56491)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/documentEditorIframe.html b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/documentEditorIframe.html similarity index 61% rename from public/build/843902c1-cb44-424c-899b-a3e57eebc643/documentEditorIframe.html rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/documentEditorIframe.html index 1c45b1220c..386a26333f 100644 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/documentEditorIframe.html +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/documentEditorIframe.html @@ -1 +1 @@ -Rsbuild App
\ No newline at end of file +Rsbuild App
\ No newline at end of file diff --git a/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/entrypoints.json b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/entrypoints.json new file mode 100644 index 0000000000..36a5802978 --- /dev/null +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/entrypoints.json @@ -0,0 +1,22 @@ +{ + "entrypoints": { + "main": { + "js": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js" + ], + "css": [] + }, + "documentEditorIframe": { + "js": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js" + ], + "css": [] + }, + "exposeRemote": { + "js": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/exposeRemote.js" + ], + "css": [] + } + } +} \ No newline at end of file diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/exposeRemote.js b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/exposeRemote.js similarity index 100% rename from public/build/843902c1-cb44-424c-899b-a3e57eebc643/exposeRemote.js rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/exposeRemote.js diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/main.html b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/main.html similarity index 79% rename from public/build/843902c1-cb44-424c-899b-a3e57eebc643/main.html rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/main.html index ea6d9d0a24..0e8933adde 100644 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/main.html +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/main.html @@ -1 +1 @@ -Rsbuild App
\ No newline at end of file +Rsbuild App
\ No newline at end of file diff --git a/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/manifest.json b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/manifest.json new file mode 100644 index 0000000000..c28282918e --- /dev/null +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/manifest.json @@ -0,0 +1,33 @@ +{ + "allFiles": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js", + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js", + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-stats.json", + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-manifest.json", + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/documentEditorIframe.html", + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/main.html" + ], + "entries": { + "main": { + "html": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/main.html" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js" + ] + } + }, + "documentEditorIframe": { + "html": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/documentEditorIframe.html" + ], + "initial": { + "js": [ + "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js" + ] + } + } + }, + "integrity": {} +} \ No newline at end of file diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-manifest.json b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-manifest.json similarity index 96% rename from public/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-manifest.json rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-manifest.json index ed8b8e2395..1186e63fdf 100644 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-manifest.json +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-manifest.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle_core", "pluginVersion": "2.2.3", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/" + "publicPath": "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/" }, "shared": [], "remotes": [ diff --git a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-stats.json b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-stats.json similarity index 96% rename from public/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-stats.json rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-stats.json index 9daec537bb..ee9b81d571 100644 --- a/public/build/843902c1-cb44-424c-899b-a3e57eebc643/mf-stats.json +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/mf-stats.json @@ -22,7 +22,7 @@ "globalName": "pimcore_studio_ui_bundle_core", "pluginVersion": "2.2.3", "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/843902c1-cb44-424c-899b-a3e57eebc643/" + "publicPath": "/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/" }, "shared": [], "remotes": [ diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js similarity index 99% rename from public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js index da21f24680..712edf14cc 100644 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js @@ -1,7 +1,7 @@ -/*! For license information please see documentEditorIframe.1ca922d1.js.LICENSE.txt */ +/*! For license information please see documentEditorIframe.767a911e.js.LICENSE.txt */ (()=>{var __webpack_modules__={7570(e,t,r){r.e("742").then(r.t.bind(r,9005,23))},6619(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8130);t.logAndReport=function(e,t,r,n,a,i){return n(o.getShortErrorMsg(e,t,r,a))}},9810(e,t,r){let o=r(924),n={[o.RUNTIME_001]:"Failed to get remoteEntry exports.",[o.RUNTIME_002]:'The remote entry interface does not contain "init"',[o.RUNTIME_003]:"Failed to get manifest.",[o.RUNTIME_004]:"Failed to locate remote.",[o.RUNTIME_005]:"Invalid loadShareSync function call from bundler runtime",[o.RUNTIME_006]:"Invalid loadShareSync function call from runtime",[o.RUNTIME_007]:"Failed to get remote snapshot.",[o.RUNTIME_008]:"Failed to load script resources.",[o.RUNTIME_009]:"Please call createInstance first.",[o.RUNTIME_010]:'The name option cannot be changed after initialization. If you want to create a new instance with a different name, please use "createInstance" api.',[o.RUNTIME_011]:"The remoteEntry URL is missing from the remote snapshot."},a={[o.TYPE_001]:"Failed to generate type declaration. Execute the below cmd to reproduce and fix the error."},i={[o.BUILD_001]:"Failed to find expose module.",[o.BUILD_002]:"PublicPath is required in prod mode."},s={...n,...a,...i};t.buildDescMap=i,t.errorDescMap=s,t.runtimeDescMap=n,t.typeDescMap=a},924(e,t){let r="RUNTIME-001",o="RUNTIME-002",n="RUNTIME-003",a="RUNTIME-004",i="RUNTIME-005",s="RUNTIME-006",l="RUNTIME-007",u="RUNTIME-008",c="RUNTIME-009",d="RUNTIME-010",f="RUNTIME-011",p="TYPE-001",h="BUILD-002";t.BUILD_001="BUILD-001",t.BUILD_002=h,t.RUNTIME_001=r,t.RUNTIME_002=o,t.RUNTIME_003=n,t.RUNTIME_004=a,t.RUNTIME_005=i,t.RUNTIME_006=s,t.RUNTIME_007=l,t.RUNTIME_008=u,t.RUNTIME_009=c,t.RUNTIME_010=d,t.RUNTIME_011=f,t.TYPE_001=p},8130(e,t){let r=e=>`View the docs to see how to solve: https://module-federation.io/guide/troubleshooting/${e.split("-")[0].toLowerCase()}#${e.toLowerCase()}`;t.getShortErrorMsg=(e,t,o,n)=>{let a=[`${[t[e]]} #${e}`];return o&&a.push(`args: ${JSON.stringify(o)}`),a.push(r(e)),n&&a.push(`Original Error Message: ${n}`),a.join("\n")}},4363(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(924),n=r(8130),a=r(9810);t.BUILD_001=o.BUILD_001,t.BUILD_002=o.BUILD_002,t.RUNTIME_001=o.RUNTIME_001,t.RUNTIME_002=o.RUNTIME_002,t.RUNTIME_003=o.RUNTIME_003,t.RUNTIME_004=o.RUNTIME_004,t.RUNTIME_005=o.RUNTIME_005,t.RUNTIME_006=o.RUNTIME_006,t.RUNTIME_007=o.RUNTIME_007,t.RUNTIME_008=o.RUNTIME_008,t.RUNTIME_009=o.RUNTIME_009,t.RUNTIME_010=o.RUNTIME_010,t.RUNTIME_011=o.RUNTIME_011,t.TYPE_001=o.TYPE_001,t.buildDescMap=a.buildDescMap,t.errorDescMap=a.errorDescMap,t.getShortErrorMsg=n.getShortErrorMsg,t.runtimeDescMap=a.runtimeDescMap,t.typeDescMap=a.typeDescMap},1748(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},2926(e,t){let r="default";t.DEFAULT_REMOTE_TYPE="global",t.DEFAULT_SCOPE=r},5871(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(7829),s=r(8457),l=r(556);r(1132);let u=r(2003),c=r(6227),d=r(2964),f=r(2593),p=r(2299),h=r(317);r(4317);let m=r(4260),g=r(4710),y=r(9152),E=r(7300),_=r(1777),S=r(630),b=r(4363);t.ModuleFederation=class{initOptions(e){e.name&&e.name!==this.options.name&&o.error((0,b.getShortErrorMsg)(b.RUNTIME_010,b.runtimeDescMap)),this.registerPlugins(e.plugins);let t=this.formatOptions(this.options,e);return this.options=t,t}async loadShare(e,t){return this.sharedHandler.loadShare(e,t)}loadShareSync(e,t){return this.sharedHandler.loadShareSync(e,t)}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0;return this.sharedHandler.initializeSharing(e,t)}initRawContainer(e,t,r){let o=l.getRemoteInfo({name:e,entry:t}),n=new u.Module({host:this,remoteInfo:o});return n.remoteEntryExports=r,this.moduleCache.set(e,n),n}async loadRemote(e,t){return this.remoteHandler.loadRemote(e,t)}async preloadRemote(e){return this.remoteHandler.preloadRemote(e)}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.sharedHandler.initShareScopeMap(e,t,r)}formatOptions(e,t){let{allShareInfos:r}=a.formatShareConfigs(e,t),{userOptions:o,options:n}=this.hooks.lifecycle.beforeInit.emit({origin:this,userOptions:t,options:e,shareInfo:r}),i=this.remoteHandler.formatAndRegisterRemote(n,o),{allShareInfos:s}=this.sharedHandler.registerShared(n,o),l=[...n.plugins];o.plugins&&o.plugins.forEach(e=>{l.includes(e)||l.push(e)});let u={...e,...t,plugins:l,remotes:i,shared:s};return this.hooks.lifecycle.init.emit({origin:this,options:u}),u}registerPlugins(e){let t=s.registerPlugins(e,this);this.options.plugins=this.options.plugins.reduce((e,t)=>(t&&e&&!e.find(e=>e.name===t.name)&&e.push(t),e),t||[])}registerRemotes(e,t){return this.remoteHandler.registerRemotes(e,t)}registerShared(e){this.sharedHandler.registerShared(this.options,{...this.options,shared:e})}constructor(e){this.hooks=new h.PluginSystem({beforeInit:new f.SyncWaterfallHook("beforeInit"),init:new c.SyncHook,beforeInitContainer:new p.AsyncWaterfallHook("beforeInitContainer"),initContainer:new p.AsyncWaterfallHook("initContainer")}),this.version="2.2.3",this.moduleCache=new Map,this.loaderHook=new h.PluginSystem({getModuleInfo:new c.SyncHook,createScript:new c.SyncHook,createLink:new c.SyncHook,fetch:new d.AsyncHook,loadEntryError:new d.AsyncHook,getModuleFactory:new d.AsyncHook}),this.bridgeHook=new h.PluginSystem({beforeBridgeRender:new c.SyncHook,afterBridgeRender:new c.SyncHook,beforeBridgeDestroy:new c.SyncHook,afterBridgeDestroy:new c.SyncHook});const t=[m.snapshotPlugin(),g.generatePreloadAssetsPlugin()],r={id:i.getBuilderId(),name:e.name,plugins:t,remotes:[],shared:{},inBrowser:S.isBrowserEnvValue};this.name=e.name,this.options=r,this.snapshotHandler=new y.SnapshotHandler(this),this.sharedHandler=new E.SharedHandler(this),this.remoteHandler=new _.RemoteHandler(this),this.shareScopeMap=this.sharedHandler.shareScopeMap,this.registerPlugins([...r.plugins,...e.plugins||[]]),this.options=this.formatOptions(r,e)}}},4391(e,t,r){let o=r(8628),n=r(9350),a=r(630),i="object"==typeof globalThis?globalThis:window,s=(()=>{try{return document.defaultView}catch{return i}})(),l=s;function u(e,t,r){Object.defineProperty(e,t,{value:r,configurable:!1,writable:!0})}function c(e,t){return Object.hasOwnProperty.call(e,t)}c(i,"__GLOBAL_LOADING_REMOTE_ENTRY__")||u(i,"__GLOBAL_LOADING_REMOTE_ENTRY__",{});let d=i.__GLOBAL_LOADING_REMOTE_ENTRY__;function f(e){var t,r,o,n,a,i;c(e,"__VMOK__")&&!c(e,"__FEDERATION__")&&u(e,"__FEDERATION__",e.__VMOK__),c(e,"__FEDERATION__")||(u(e,"__FEDERATION__",{__GLOBAL_PLUGIN__:[],__INSTANCES__:[],moduleInfo:{},__SHARE__:{},__MANIFEST_LOADING__:{},__PRELOADED_MAP__:new Map}),u(e,"__VMOK__",e.__FEDERATION__)),(t=e.__FEDERATION__).__GLOBAL_PLUGIN__??(t.__GLOBAL_PLUGIN__=[]),(r=e.__FEDERATION__).__INSTANCES__??(r.__INSTANCES__=[]),(o=e.__FEDERATION__).moduleInfo??(o.moduleInfo={}),(n=e.__FEDERATION__).__SHARE__??(n.__SHARE__={}),(a=e.__FEDERATION__).__MANIFEST_LOADING__??(a.__MANIFEST_LOADING__={}),(i=e.__FEDERATION__).__PRELOADED_MAP__??(i.__PRELOADED_MAP__=new Map)}function p(){i.__FEDERATION__.__GLOBAL_PLUGIN__=[],i.__FEDERATION__.__INSTANCES__=[],i.__FEDERATION__.moduleInfo={},i.__FEDERATION__.__SHARE__={},i.__FEDERATION__.__MANIFEST_LOADING__={},Object.keys(d).forEach(e=>{delete d[e]})}function h(e){i.__FEDERATION__.__INSTANCES__.push(e)}function m(){return i.__FEDERATION__.__DEBUG_CONSTRUCTOR__}function g(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,a.isDebugMode)();t&&(i.__FEDERATION__.__DEBUG_CONSTRUCTOR__=e,i.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__="2.2.3")}function y(e,t){if("string"==typeof t)if(e[t])return{value:e[t],key:t};else{for(let r of Object.keys(e)){let[o,n]=r.split(":"),a=`${o}:${t}`,i=e[a];if(i)return{value:i,key:a}}return{value:void 0,key:t}}o.error(`getInfoWithoutType: "key" must be a string, got ${typeof t} (${JSON.stringify(t)}).`)}f(i),f(s);let E=()=>s.__FEDERATION__.moduleInfo,_=(e,t)=>{let r=y(t,n.getFMId(e)).value;if(r&&!r.version&&"version"in e&&e.version&&(r.version=e.version),r)return r;if("version"in e&&e.version){let{version:t,...r}=e,o=n.getFMId(r),a=y(s.__FEDERATION__.moduleInfo,o).value;if((null==a?void 0:a.version)===t)return a}},S=e=>_(e,s.__FEDERATION__.moduleInfo),b=(e,t)=>{let r=n.getFMId(e);return s.__FEDERATION__.moduleInfo[r]=t,s.__FEDERATION__.moduleInfo},v=e=>(s.__FEDERATION__.moduleInfo={...s.__FEDERATION__.moduleInfo,...e},()=>{for(let t of Object.keys(e))delete s.__FEDERATION__.moduleInfo[t]}),R=(e,t)=>{let r=t||`__FEDERATION_${e}:custom__`;return{remoteEntryKey:r,entryExports:i[r]}},I=e=>{let{__GLOBAL_PLUGIN__:t}=s.__FEDERATION__;e.forEach(e=>{-1===t.findIndex(t=>t.name===e.name)?t.push(e):o.warn(`The plugin ${e.name} has been registered.`)})},M=()=>s.__FEDERATION__.__GLOBAL_PLUGIN__,N=e=>i.__FEDERATION__.__PRELOADED_MAP__.get(e),T=e=>i.__FEDERATION__.__PRELOADED_MAP__.set(e,!0);t.CurrentGlobal=i,t.Global=l,t.addGlobalSnapshot=v,t.getGlobalFederationConstructor=m,t.getGlobalHostPlugins=M,t.getGlobalSnapshot=E,t.getGlobalSnapshotInfoByModuleInfo=S,t.getInfoWithoutType=y,t.getPreloaded=N,t.getRemoteEntryExports=R,t.getTargetSnapshotInfoByModuleInfo=_,t.globalLoading=d,t.nativeGlobal=s,t.registerGlobalPlugins=I,t.resetFederationGlobalInfo=p,t.setGlobalFederationConstructor=g,t.setGlobalFederationInstance=h,t.setGlobalSnapshotInfoByModuleInfo=b,t.setPreloaded=T},3509(e,t,r){let o=r(4391),n=r(8369),a=r(6079),i=r(556);r(1132);let s=r(9599),l={getRegisteredShare:n.getRegisteredShare,getGlobalShareScope:n.getGlobalShareScope};t.default={global:{Global:o.Global,nativeGlobal:o.nativeGlobal,resetFederationGlobalInfo:o.resetFederationGlobalInfo,setGlobalFederationInstance:o.setGlobalFederationInstance,getGlobalFederationConstructor:o.getGlobalFederationConstructor,setGlobalFederationConstructor:o.setGlobalFederationConstructor,getInfoWithoutType:o.getInfoWithoutType,getGlobalSnapshot:o.getGlobalSnapshot,getTargetSnapshotInfoByModuleInfo:o.getTargetSnapshotInfoByModuleInfo,getGlobalSnapshotInfoByModuleInfo:o.getGlobalSnapshotInfoByModuleInfo,setGlobalSnapshotInfoByModuleInfo:o.setGlobalSnapshotInfoByModuleInfo,addGlobalSnapshot:o.addGlobalSnapshot,getRemoteEntryExports:o.getRemoteEntryExports,registerGlobalPlugins:o.registerGlobalPlugins,getGlobalHostPlugins:o.getGlobalHostPlugins,getPreloaded:o.getPreloaded,setPreloaded:o.setPreloaded},share:l,utils:{matchRemoteWithNameAndExpose:a.matchRemoteWithNameAndExpose,preloadAssets:s.preloadAssets,getRemoteInfo:i.getRemoteInfo}}},5922(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8628),n=r(9350),a=r(4391),i=r(3957),s=r(8369),l=r(6079),u=r(556);r(1132);let c=r(3509),d=r(2003),f=r(5871),p=r(7703),h=r(630),m=c.default;t.CurrentGlobal=a.CurrentGlobal,t.Global=a.Global,t.Module=d.Module,t.ModuleFederation=f.ModuleFederation,t.addGlobalSnapshot=a.addGlobalSnapshot,t.assert=o.assert,t.error=o.error,t.getGlobalFederationConstructor=a.getGlobalFederationConstructor,t.getGlobalSnapshot=a.getGlobalSnapshot,t.getInfoWithoutType=a.getInfoWithoutType,t.getRegisteredShare=s.getRegisteredShare,t.getRemoteEntry=u.getRemoteEntry,t.getRemoteInfo=u.getRemoteInfo,t.helpers=m,t.isStaticResourcesEqual=n.isStaticResourcesEqual,Object.defineProperty(t,"loadScript",{enumerable:!0,get:function(){return h.loadScript}}),Object.defineProperty(t,"loadScriptNode",{enumerable:!0,get:function(){return h.loadScriptNode}}),t.matchRemoteWithNameAndExpose=l.matchRemoteWithNameAndExpose,t.registerGlobalPlugins=a.registerGlobalPlugins,t.resetFederationGlobalInfo=a.resetFederationGlobalInfo,t.safeWrapper=n.safeWrapper,t.satisfy=i.satisfy,t.setGlobalFederationConstructor=a.setGlobalFederationConstructor,t.setGlobalFederationInstance=a.setGlobalFederationInstance,Object.defineProperty(t,"types",{enumerable:!0,get:function(){return p.type_exports}})},2003(e,t,r){let o=r(8628),n=r(9350),a=r(556),i=r(8393);r(1132);let s=r(630),l=r(4363);function u(e,t,r){let o=t,n=Array.isArray(e.shareScope)?e.shareScope:[e.shareScope];n.length||n.push("default"),n.forEach(e=>{o[e]||(o[e]={})});let a={version:e.version||"",shareScopeKeys:Array.isArray(e.shareScope)?n:e.shareScope||"default"};return Object.defineProperty(a,"shareScopeMap",{value:o,enumerable:!1}),{remoteEntryInitOptions:a,shareScope:o[n[0]],initScope:r??[]}}t.Module=class{async getEntry(){if(this.remoteEntryExports)return this.remoteEntryExports;let e=await a.getRemoteEntry({origin:this.host,remoteInfo:this.remoteInfo,remoteEntryExports:this.remoteEntryExports});return o.assert(e,`remoteEntryExports is undefined ${(0,s.safeToString)(this.remoteInfo)}`),this.remoteEntryExports=e,this.remoteEntryExports}async init(e,t,r){let n=await this.getEntry();if(this.inited)return n;if(this.initPromise)return await this.initPromise,n;this.initing=!0,this.initPromise=(async()=>{let{remoteEntryInitOptions:a,shareScope:s,initScope:c}=u(this.remoteInfo,this.host.shareScopeMap,r),d=await this.host.hooks.lifecycle.beforeInitContainer.emit({shareScope:s,remoteEntryInitOptions:a,initScope:c,remoteInfo:this.remoteInfo,origin:this.host});void 0===(null==n?void 0:n.init)&&o.error(l.RUNTIME_002,l.runtimeDescMap,{hostName:this.host.name,remoteName:this.remoteInfo.name,remoteEntryUrl:this.remoteInfo.entry,remoteEntryKey:this.remoteInfo.entryGlobalName},void 0,i.optionsToMFContext(this.host.options)),await n.init(d.shareScope,d.initScope,d.remoteEntryInitOptions),await this.host.hooks.lifecycle.initContainer.emit({...d,id:e,remoteSnapshot:t,remoteEntryExports:n}),this.inited=!0})();try{await this.initPromise}finally{this.initing=!1,this.initPromise=void 0}return n}async get(e,t,r,a){let i,{loadFactory:s=!0}=r||{loadFactory:!0},l=await this.init(e,a);this.lib=l,(i=await this.host.loaderHook.lifecycle.getModuleFactory.emit({remoteEntryExports:l,expose:t,moduleInfo:this.remoteInfo}))||(i=await l.get(t)),o.assert(i,`${n.getFMId(this.remoteInfo)} remote don't export ${t}.`);let u=n.processModuleAlias(this.remoteInfo.name,t),c=this.wraperFactory(i,u);return s?await c():c}wraperFactory(e,t){function r(e,t){e&&"object"==typeof e&&Object.isExtensible(e)&&!Object.getOwnPropertyDescriptor(e,Symbol.for("mf_module_id"))&&Object.defineProperty(e,Symbol.for("mf_module_id"),{value:t,enumerable:!1})}return e instanceof Promise?async()=>{let o=await e();return r(o,t),o}:()=>{let o=e();return r(o,t),o}}constructor({remoteInfo:e,host:t}){this.inited=!1,this.initing=!1,this.lib=void 0,this.remoteInfo=e,this.host=t}}},4710(e,t,r){let o=r(9350),n=r(4391),a=r(8369);r(1132);let i=r(9599),s=r(4260),l=r(630);function u(e){let t=e.split(":");return 1===t.length?{name:t[0],version:void 0}:2===t.length?{name:t[0],version:t[1]}:{name:t[1],version:t[2]}}function c(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},s=arguments.length>5?arguments[5]:void 0,{value:d}=n.getInfoWithoutType(e,o.getFMId(t)),f=s||d;if(f&&!(0,l.isManifestProvider)(f)&&(r(f,t,a),f.remotesInfo))for(let t of Object.keys(f.remotesInfo)){if(i[t])continue;i[t]=!0;let o=u(t),n=f.remotesInfo[t];c(e,{name:o.name,version:n.matchedVersion},r,!1,i,void 0)}}let d=(e,t)=>document.querySelector(`${e}[${"link"===e?"href":"src"}="${t}"]`);function f(e,t,r,s,u){let f=[],p=[],h=[],m=new Set,g=new Set,{options:y}=e,{preloadConfig:E}=t,{depsRemote:_}=E;if(c(s,r,(t,r,a)=>{var s;let u;if(a)u=E;else if(Array.isArray(_)){let e=_.find(e=>e.nameOrAlias===r.name||e.nameOrAlias===r.alias);if(!e)return;u=i.defaultPreloadArgs(e)}else{if(!0!==_)return;u=E}let c=(0,l.getResourceUrl)(t,o.getRemoteEntryInfoFromSnapshot(t).url);c&&h.push({name:r.name,moduleInfo:{name:r.name,entry:c,type:"remoteEntryType"in t?t.remoteEntryType:"global",entryGlobalName:"globalName"in t?t.globalName:r.name,shareScope:"",version:"version"in t?t.version:void 0},url:c});let d="modules"in t?t.modules:[],m=i.normalizePreloadExposes(u.exposes);function g(e){let r=e.map(e=>(0,l.getResourceUrl)(t,e));return u.filter?r.filter(u.filter):r}if(m.length&&"modules"in t&&(d=null==t||null==(s=t.modules)?void 0:s.reduce((e,t)=>((null==m?void 0:m.indexOf(t.moduleName))!==-1&&e.push(t),e),[])),d){let o=d.length;for(let a=0;a0){let t=(t,r)=>{let{shared:o}=a.getRegisteredShare(e.shareScopeMap,r.sharedName,t,e.sharedHandler.hooks.lifecycle.resolveShare)||{};o&&"function"==typeof o.lib&&(r.assets.js.sync.forEach(e=>{m.add(e)}),r.assets.css.sync.forEach(e=>{g.add(e)}))};u.shared.forEach(e=>{var r;let n=null==(r=y.shared)?void 0:r[e.sharedName];if(!n)return;let a=e.version?n.find(t=>t.version===e.version):n;a&&o.arrayOptions(a).forEach(r=>{t(r,e)})})}let S=p.filter(e=>!m.has(e)&&!d("script",e));return{cssAssets:f.filter(e=>!g.has(e)&&!d("link",e)),jsAssetsWithoutEntry:S,entryAssets:h.filter(e=>!d("script",e.url))}}t.generatePreloadAssetsPlugin=function(){return{name:"generate-preload-assets-plugin",async generatePreloadAssets(e){let{origin:t,preloadOptions:r,remoteInfo:n,remote:a,globalSnapshot:i,remoteSnapshot:u}=e;return l.isBrowserEnvValue?o.isRemoteInfoWithEntry(a)&&o.isPureRemoteEntry(a)?{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[{name:a.name,url:a.entry,moduleInfo:{name:n.name,entry:a.entry,type:n.type||"global",entryGlobalName:"",shareScope:""}}]}:(s.assignRemoteInfo(n,u),f(t,r,n,i,u)):{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[]}}}}},9152(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(8393);r(1132);let s=r(2964),l=r(2299),u=r(317);r(4317);let c=r(630),d=r(4363);function f(e,t){let r=a.getGlobalSnapshotInfoByModuleInfo({name:t.name,version:t.options.version}),o=r&&"remotesInfo"in r&&r.remotesInfo&&a.getInfoWithoutType(r.remotesInfo,e.name).value;return o&&o.matchedVersion?{hostGlobalSnapshot:r,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:o.matchedVersion})}:{hostGlobalSnapshot:void 0,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:"version"in e?e.version:void 0})}}t.SnapshotHandler=class{async loadRemoteSnapshotInfo(e){let t,r,{moduleInfo:s,id:l,expose:u}=e,{options:f}=this.HostInstance;await this.hooks.lifecycle.beforeLoadRemoteSnapshot.emit({options:f,moduleInfo:s});let p=a.getGlobalSnapshotInfoByModuleInfo({name:this.HostInstance.options.name,version:this.HostInstance.options.version});p||(p={version:this.HostInstance.options.version||"",remoteEntry:"",remotesInfo:{}},a.addGlobalSnapshot({[this.HostInstance.options.name]:p})),p&&"remotesInfo"in p&&!a.getInfoWithoutType(p.remotesInfo,s.name).value&&("version"in s||"entry"in s)&&(p.remotesInfo={...null==p?void 0:p.remotesInfo,[s.name]:{matchedVersion:"version"in s?s.version:s.entry}});let{hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g}=this.getGlobalRemoteInfo(s),{remoteSnapshot:y,globalSnapshot:E}=await this.hooks.lifecycle.loadSnapshot.emit({options:f,moduleInfo:s,hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g});if(y)if((0,c.isManifestProvider)(y)){let e=c.isBrowserEnvValue?y.remoteEntry:y.ssrRemoteEntry||y.remoteEntry||"",o=await this.getManifestJson(e,s,{}),n=a.setGlobalSnapshotInfoByModuleInfo({...s,entry:e},o);t=o,r=n}else{let{remoteSnapshot:e}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:y,from:"global"});t=e,r=E}else if(n.isRemoteInfoWithEntry(s)){let e=await this.getManifestJson(s.entry,s,{}),o=a.setGlobalSnapshotInfoByModuleInfo(s,e),{remoteSnapshot:n}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:e,from:"global"});t=n,r=o}else o.error(d.RUNTIME_007,d.runtimeDescMap,{remoteName:s.name,remoteVersion:s.version,hostName:this.HostInstance.options.name,globalSnapshot:JSON.stringify(E)},void 0,i.optionsToMFContext(this.HostInstance.options));return await this.hooks.lifecycle.afterLoadSnapshot.emit({id:l,host:this.HostInstance,options:f,moduleInfo:s,remoteSnapshot:t}),{remoteSnapshot:t,globalSnapshot:r}}getGlobalRemoteInfo(e){return f(e,this.HostInstance)}async getManifestJson(e,t,r){let n=async()=>{let r=this.manifestCache.get(e);if(r)return r;try{let t=await this.loaderHook.lifecycle.fetch.emit(e,{});t&&t instanceof Response||(t=await fetch(e,{})),r=await t.json()}catch(n){(r=await this.HostInstance.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:n,from:"runtime",lifecycle:"afterResolve",origin:this.HostInstance}))||(delete this.manifestLoading[e],o.error(d.RUNTIME_003,d.runtimeDescMap,{manifestUrl:e,moduleName:t.name,hostName:this.HostInstance.options.name},`${n}`,i.optionsToMFContext(this.HostInstance.options)))}return o.assert(r.metaData&&r.exposes&&r.shared,`"${e}" is not a valid federation manifest for remote "${t.name}". Missing required fields: ${[!r.metaData&&"metaData",!r.exposes&&"exposes",!r.shared&&"shared"].filter(Boolean).join(", ")}.`),this.manifestCache.set(e,r),r},a=async()=>{let r=await n(),o=(0,c.generateSnapshotFromManifest)(r,{version:e}),{remoteSnapshot:a}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:t,manifestJson:r,remoteSnapshot:o,manifestUrl:e,from:"manifest"});return a};return this.manifestLoading[e]||(this.manifestLoading[e]=a().then(e=>e)),this.manifestLoading[e]}constructor(e){this.loadingHostSnapshot=null,this.manifestCache=new Map,this.hooks=new u.PluginSystem({beforeLoadRemoteSnapshot:new s.AsyncHook("beforeLoadRemoteSnapshot"),loadSnapshot:new l.AsyncWaterfallHook("loadGlobalSnapshot"),loadRemoteSnapshot:new l.AsyncWaterfallHook("loadRemoteSnapshot"),afterLoadSnapshot:new l.AsyncWaterfallHook("afterLoadSnapshot")}),this.manifestLoading=a.Global.__FEDERATION__.__MANIFEST_LOADING__,this.HostInstance=e,this.loaderHook=e.loaderHook}},t.getGlobalRemoteInfo=f},4260(e,t,r){let o=r(8628),n=r(9350);r(1132);let a=r(9599),i=r(630),s=r(4363);function l(e,t){let r=n.getRemoteEntryInfoFromSnapshot(t);r.url||o.error(s.RUNTIME_011,s.runtimeDescMap,{remoteName:e.name});let a=(0,i.getResourceUrl)(t,r.url);i.isBrowserEnvValue||a.startsWith("http")||(a=`https:${a}`),e.type=r.type,e.entryGlobalName=r.globalName,e.entry=a,e.version=t.version,e.buildVersion=t.buildVersion}function u(){return{name:"snapshot-plugin",async afterResolve(e){let{remote:t,pkgNameOrAlias:r,expose:o,origin:i,remoteInfo:s,id:u}=e;if(!n.isRemoteInfoWithEntry(t)||!n.isPureRemoteEntry(t)){let{remoteSnapshot:n,globalSnapshot:c}=await i.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:t,id:u});l(s,n);let d={remote:t,preloadConfig:{nameOrAlias:r,exposes:[o],resourceCategory:"sync",share:!1,depsRemote:!1}},f=await i.remoteHandler.hooks.lifecycle.generatePreloadAssets.emit({origin:i,preloadOptions:d,remoteInfo:s,remote:t,remoteSnapshot:n,globalSnapshot:c});return f&&a.preloadAssets(s,i,f,!1),{...e,remoteSnapshot:n}}return e}}}t.assignRemoteInfo=l,t.snapshotPlugin=u},1777(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(8369),s=r(6079),l=r(556),u=r(8393);r(1132);let c=r(9599),d=r(2003),f=r(6227),p=r(2964),h=r(2593),m=r(2299),g=r(317);r(4317);let y=r(9152),E=r(630),_=r(4363);t.RemoteHandler=class{formatAndRegisterRemote(e,t){return(t.remotes||[]).reduce((e,t)=>(this.registerRemote(t,e,{force:!1}),e),e.remotes)}setIdToRemoteMap(e,t){let{remote:r,expose:o}=t,{name:n,alias:a}=r;if(this.idToRemoteMap[e]={name:r.name,expose:o},a&&e.startsWith(n)){let t=e.replace(n,a);this.idToRemoteMap[t]={name:r.name,expose:o};return}if(a&&e.startsWith(a)){let t=e.replace(a,n);this.idToRemoteMap[t]={name:r.name,expose:o}}}async loadRemote(e,t){let{host:r}=this;try{let{loadFactory:o=!0}=t||{loadFactory:!0},{module:n,moduleOptions:a,remoteMatchInfo:i}=await this.getRemoteModuleAndOptions({id:e}),{pkgNameOrAlias:s,remote:l,expose:u,id:c,remoteSnapshot:d}=i,f=await n.get(c,u,t,d),p=await this.hooks.lifecycle.onLoad.emit({id:c,pkgNameOrAlias:s,expose:u,exposeModule:o?f:void 0,exposeModuleFactory:o?void 0:f,remote:l,options:a,moduleInstance:n,origin:r});if(this.setIdToRemoteMap(e,i),"function"==typeof p)return p;return f}catch(a){let{from:o="runtime"}=t||{from:"runtime"},n=await this.hooks.lifecycle.errorLoadRemote.emit({id:e,error:a,from:o,lifecycle:"onLoad",origin:r});if(!n)throw a;return n}}async preloadRemote(e){let{host:t}=this;await this.hooks.lifecycle.beforePreloadRemote.emit({preloadOps:e,options:t.options,origin:t});let r=c.formatPreloadArgs(t.options.remotes,e);await Promise.all(r.map(async e=>{let{remote:r}=e,o=l.getRemoteInfo(r),{globalSnapshot:n,remoteSnapshot:a}=await t.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:r}),i=await this.hooks.lifecycle.generatePreloadAssets.emit({origin:t,preloadOptions:e,remote:r,remoteInfo:o,globalSnapshot:n,remoteSnapshot:a});i&&c.preloadAssets(o,t,i)}))}registerRemotes(e,t){let{host:r}=this;e.forEach(e=>{this.registerRemote(e,r.options.remotes,{force:null==t?void 0:t.force})})}async getRemoteModuleAndOptions(e){let t,{host:r}=this,{id:n}=e;try{t=await this.hooks.lifecycle.beforeRequest.emit({id:n,options:r.options,origin:r})}catch(e){if(!(t=await this.hooks.lifecycle.errorLoadRemote.emit({id:n,options:r.options,origin:r,from:"runtime",error:e,lifecycle:"beforeRequest"})))throw e}let{id:a}=t,i=s.matchRemoteWithNameAndExpose(r.options.remotes,a);i||o.error(_.RUNTIME_004,_.runtimeDescMap,{hostName:r.options.name,requestId:a},void 0,u.optionsToMFContext(r.options));let{remote:c}=i,f=l.getRemoteInfo(c),p=await r.sharedHandler.hooks.lifecycle.afterResolve.emit({id:a,...i,options:r.options,origin:r,remoteInfo:f}),{remote:h,expose:m}=p;o.assert(h&&m,`The 'beforeRequest' hook was executed, but it failed to return the correct 'remote' and 'expose' values while loading ${a}.`);let g=r.moduleCache.get(h.name),y={host:r,remoteInfo:f};return g||(g=new d.Module(y),r.moduleCache.set(h.name,g)),{module:g,moduleOptions:y,remoteMatchInfo:p}}registerRemote(e,t,r){let{host:n}=this,i=()=>{if(e.alias){let r=t.find(t=>{var r;return e.alias&&(t.name.startsWith(e.alias)||(null==(r=t.alias)?void 0:r.startsWith(e.alias)))});o.assert(!r,`The alias ${e.alias} of remote ${e.name} is not allowed to be the prefix of ${r&&r.name} name or alias`)}"entry"in e&&E.isBrowserEnvValue&&"u">typeof window&&!e.entry.startsWith("http")&&(e.entry=new URL(e.entry,window.location.origin).href),e.shareScope||(e.shareScope=a.DEFAULT_SCOPE),e.type||(e.type=a.DEFAULT_REMOTE_TYPE)};this.hooks.lifecycle.beforeRegisterRemote.emit({remote:e,origin:n});let s=t.find(t=>t.name===e.name);if(s){let o=[`The remote "${e.name}" is already registered.`,"Please note that overriding it may cause unexpected errors."];(null==r?void 0:r.force)&&(this.removeRemote(s),i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n}),(0,E.warn)(o.join(" ")))}else i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n})}removeRemote(e){try{let{host:r}=this,{name:o}=e,a=r.options.remotes.findIndex(e=>e.name===o);-1!==a&&r.options.remotes.splice(a,1);let s=r.moduleCache.get(e.name);if(s){var t;let o=s.remoteInfo,a=o.entryGlobalName;n.CurrentGlobal[a]&&((null==(t=Object.getOwnPropertyDescriptor(n.CurrentGlobal,a))?void 0:t.configurable)?delete n.CurrentGlobal[a]:n.CurrentGlobal[a]=void 0);let u=l.getRemoteEntryUniqueKey(s.remoteInfo);n.globalLoading[u]&&delete n.globalLoading[u],r.snapshotHandler.manifestCache.delete(o.entry);let c=o.buildVersion?(0,E.composeKeyWithSeparator)(o.name,o.buildVersion):o.name,d=n.CurrentGlobal.__FEDERATION__.__INSTANCES__.findIndex(e=>o.buildVersion?e.options.id===c:e.name===c);if(-1!==d){let e=n.CurrentGlobal.__FEDERATION__.__INSTANCES__[d];c=e.options.id||c;let t=i.getGlobalShareScope(),r=!0,a=[];Object.keys(t).forEach(e=>{let n=t[e];n&&Object.keys(n).forEach(t=>{let i=n[t];i&&Object.keys(i).forEach(n=>{let s=i[n];s&&Object.keys(s).forEach(i=>{let l=s[i];l&&"object"==typeof l&&l.from===o.name&&(l.loaded||l.loading?(l.useIn=l.useIn.filter(e=>e!==o.name),l.useIn.length?r=!1:a.push([e,t,n,i])):a.push([e,t,n,i]))})})})}),r&&(e.shareScopeMap={},delete t[c]),a.forEach(e=>{var r,o,n;let[a,i,s,l]=e;null==(n=t[a])||null==(o=n[i])||null==(r=o[s])||delete r[l]}),n.CurrentGlobal.__FEDERATION__.__INSTANCES__.splice(d,1)}let{hostGlobalSnapshot:f}=y.getGlobalRemoteInfo(e,r);if(f){let t=f&&"remotesInfo"in f&&f.remotesInfo&&n.getInfoWithoutType(f.remotesInfo,e.name).key;t&&(delete f.remotesInfo[t],n.Global.__FEDERATION__.__MANIFEST_LOADING__[t]&&delete n.Global.__FEDERATION__.__MANIFEST_LOADING__[t])}r.moduleCache.delete(e.name)}}catch(e){o.logger.error(`removeRemote failed: ${e instanceof Error?e.message:String(e)}`)}}constructor(e){this.hooks=new g.PluginSystem({beforeRegisterRemote:new h.SyncWaterfallHook("beforeRegisterRemote"),registerRemote:new h.SyncWaterfallHook("registerRemote"),beforeRequest:new m.AsyncWaterfallHook("beforeRequest"),onLoad:new p.AsyncHook("onLoad"),handlePreloadModule:new f.SyncHook("handlePreloadModule"),errorLoadRemote:new p.AsyncHook("errorLoadRemote"),beforePreloadRemote:new p.AsyncHook("beforePreloadRemote"),generatePreloadAssets:new p.AsyncHook("generatePreloadAssets"),afterPreloadRemote:new p.AsyncHook,loadEntry:new p.AsyncHook}),this.host=e,this.idToRemoteMap={}}}},7300(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(8393);r(1132);let s=r(2964),l=r(2593),u=r(2299),c=r(317);r(4317);let d=r(4363);t.SharedHandler=class{registerShared(e,t){let{newShareInfos:r,allShareInfos:o}=a.formatShareConfigs(e,t);return Object.keys(r).forEach(e=>{r[e].forEach(r=>{r.scope.forEach(o=>{var n;this.hooks.lifecycle.beforeRegisterShare.emit({origin:this.host,pkgName:e,shared:r}),(null==(n=this.shareScopeMap[o])?void 0:n[e])||this.setShared({pkgName:e,lib:r.lib,get:r.get,loaded:r.loaded||!!r.lib,shared:r,from:t.name})})})}),{newShareInfos:r,allShareInfos:o}}async loadShare(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&await Promise.all(n.scope.map(async e=>{await Promise.all(this.initializeSharing(e,{strategy:n.strategy}))}));let{shareInfo:i}=await this.hooks.lifecycle.beforeLoadShare.emit({pkgName:e,shareInfo:n,shared:r.options.shared,origin:r});o.assert(i,`Cannot find shared "${e}" in host "${r.options.name}". Ensure the shared config for "${e}" is declared in the federation plugin options and the host has been initialized before loading shares.`);let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(s){let t=a.directShare(s,l);if(t.lib)return a.addUseIn(t,r.options.name),t.lib;if(t.loading&&!t.loaded){let e=await t.loading;return t.loaded=!0,t.lib||(t.lib=e),a.addUseIn(t,r.options.name),e}{let o=(async()=>{let e=await t.get();return a.addUseIn(t,r.options.name),t.loaded=!0,t.lib=e,e})();return this.setShared({pkgName:e,loaded:!1,shared:s,from:r.options.name,lib:null,loading:o,treeShaking:l?t:void 0}),o}}{if(null==t?void 0:t.customShareInfo)return!1;let o=a.shouldUseTreeShaking(i.treeShaking),n=a.directShare(i,o),s=(async()=>{let t=await n.get();n.lib=t,n.loaded=!0,a.addUseIn(n,r.options.name);let{shared:o,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(o){let e=a.directShare(o,s);e.lib=t,e.loaded=!0,o.from=i.from}return t})();return this.setShared({pkgName:e,loaded:!1,shared:i,from:r.options.name,lib:null,loading:s,treeShaking:o?n:void 0}),s}}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0,{host:r}=this,o=null==t?void 0:t.from,i=null==t?void 0:t.strategy,s=null==t?void 0:t.initScope,l=[];if("build"!==o){let{initTokens:t}=this;s||(s=[]);let r=t[e];if(r||(r=t[e]={from:this.host.name}),s.indexOf(r)>=0)return l;s.push(r)}let u=this.shareScopeMap,c=r.options.name;u[e]||(u[e]={});let d=u[e],f=(e,t)=>{var r;let{version:o,eager:n}=t;d[e]=d[e]||{};let i=d[e],s=i[o]&&a.directShare(i[o]),l=!!(s&&("eager"in s&&s.eager||"shareConfig"in s&&(null==(r=s.shareConfig)?void 0:r.eager)));(!s||"loaded-first"!==s.strategy&&!s.loaded&&(!n!=!l?n:c>i[o].from))&&(i[o]=t)},p=async e=>{let t,{module:o}=await r.remoteHandler.getRemoteModuleAndOptions({id:e});try{t=await o.getEntry()}catch(o){if(!(t=await r.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:o,from:"runtime",lifecycle:"beforeLoadShare",origin:r})))return}finally{(null==t?void 0:t.init)&&!o.initing&&(o.remoteEntryExports=t,await o.init(void 0,void 0,s))}};return Object.keys(r.options.shared).forEach(t=>{r.options.shared[t].forEach(r=>{r.scope.includes(e)&&f(t,r)})}),("version-first"===r.options.shareStrategy||"version-first"===i)&&r.options.remotes.forEach(t=>{t.shareScope===e&&l.push(p(t.name))}),l}loadShareSync(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&n.scope.forEach(e=>{this.initializeSharing(e,{strategy:n.strategy})});let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,n,this.hooks.lifecycle.resolveShare)||{};if(s){if("function"==typeof s.lib)return a.addUseIn(s,r.options.name),s.loaded||(s.loaded=!0,s.from===r.options.name&&(n.loaded=!0)),s.lib;if("function"==typeof s.get){let t=s.get();if(!(t instanceof Promise))return a.addUseIn(s,r.options.name),this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:t,shared:s}),t}}if(n.lib)return n.loaded||(n.loaded=!0),n.lib;if(n.get){let a=n.get();return a instanceof Promise&&o.error((null==t?void 0:t.from)==="build"?d.RUNTIME_005:d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options)),n.lib=a,this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:n.lib,shared:n}),n.lib}o.error(d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options))}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{host:o}=this;this.shareScopeMap[e]=t,this.hooks.lifecycle.initContainerShareScopeMap.emit({shareScope:t,options:o.options,origin:o,scopeName:e,hostShareScopeMap:r.hostShareScopeMap})}setShared(e){let{pkgName:t,shared:r,from:o,lib:n,loading:a,loaded:i,get:s,treeShaking:l}=e,{version:u,scope:c="default",...d}=r,f=Array.isArray(c)?c:[c],p=e=>{let t=(e,t,r)=>{r&&!e[t]&&(e[t]=r)},r=l?e.treeShaking:e;t(r,"loaded",i),t(r,"loading",a),t(r,"get",s)};f.forEach(e=>{this.shareScopeMap[e]||(this.shareScopeMap[e]={}),this.shareScopeMap[e][t]||(this.shareScopeMap[e][t]={}),this.shareScopeMap[e][t][u]||(this.shareScopeMap[e][t][u]={version:u,scope:[e],...d,lib:n});let r=this.shareScopeMap[e][t][u];p(r),o&&r.from!==o&&(r.from=o)})}_setGlobalShareScopeMap(e){let t=a.getGlobalShareScope(),r=e.id||e.name;r&&!t[r]&&(t[r]=this.shareScopeMap)}constructor(e){this.hooks=new c.PluginSystem({beforeRegisterShare:new l.SyncWaterfallHook("beforeRegisterShare"),afterResolve:new u.AsyncWaterfallHook("afterResolve"),beforeLoadShare:new u.AsyncWaterfallHook("beforeLoadShare"),loadShare:new s.AsyncHook,resolveShare:new l.SyncWaterfallHook("resolveShare"),initContainerShareScopeMap:new l.SyncWaterfallHook("initContainerShareScopeMap")}),this.host=e,this.shareScopeMap={},this.initTokens={},this._setGlobalShareScopeMap(e.options)}}},7703(e,t,r){var o=r(1748).__exportAll({});Object.defineProperty(t,"type_exports",{enumerable:!0,get:function(){return o}})},8393(e,t){function r(e){return{name:e.name,alias:e.alias,entry:"entry"in e?e.entry:void 0,version:"version"in e?e.version:void 0,type:e.type,entryGlobalName:e.entryGlobalName,shareScope:e.shareScope}}t.optionsToMFContext=function(e){var t,o,n,a,i,s;let l={};for(let[t,r]of Object.entries(e.shared)){let e=r[0];e&&(l[t]={version:e.version,singleton:null==(n=e.shareConfig)?void 0:n.singleton,requiredVersion:(null==(a=e.shareConfig)?void 0:a.requiredVersion)!==!1&&(null==(i=e.shareConfig)?void 0:i.requiredVersion),eager:e.eager,strictVersion:null==(s=e.shareConfig)?void 0:s.strictVersion})}return{project:{name:e.name,mfRole:(null==(t=e.remotes)?void 0:t.length)>0?"host":"unknown"},mfConfig:{name:e.name,remotes:(null==(o=e.remotes)?void 0:o.map(r))??[],shared:l}}}},7829(e,t,r){r(630),t.getBuilderId=function(){return"pimcore_studio_ui_bundle_core:0.0.1"}},2964(e,t,r){let o=r(6227);t.AsyncHook=class extends o.SyncHook{emit(){let e;for(var t=arguments.length,r=Array(t),o=0;o0){let t=0,o=e=>!1!==e&&(t0){let r=0,n=t=>(o.warn(t),this.onerror(t),e),a=o=>{if(i.checkReturnData(e,o)){if(e=o,r{let r=e[t];r&&this.lifecycle[t].on(r)})}}removePlugin(e){o.assert(e,"A name is required.");let t=this.registerPlugins[e];o.assert(t,`The plugin "${e}" is not registered.`),Object.keys(t).forEach(e=>{"name"!==e&&this.lifecycle[e].remove(t[e])})}constructor(e){this.registerPlugins={},this.lifecycle=e,this.lifecycleKeys=Object.keys(e)}}},6227(e,t){t.SyncHook=class{on(e){"function"==typeof e&&this.listeners.add(e)}once(e){let t=this;this.on(function r(){for(var o=arguments.length,n=Array(o),a=0;a0&&this.listeners.forEach(t=>{e=t(...r)}),e}remove(e){this.listeners.delete(e)}removeAll(){this.listeners.clear()}constructor(e){this.type="",this.listeners=new Set,e&&(this.type=e)}}},2593(e,t,r){let o=r(8628),n=r(9350),a=r(6227);function i(e,t){if(!n.isObject(t))return!1;if(e!==t){for(let r in e)if(!(r in t))return!1}return!0}t.SyncWaterfallHook=class extends a.SyncHook{emit(e){for(let t of(n.isObject(e)||o.error(`The data for the "${this.type}" hook should be an object.`),this.listeners))try{let r=t(e);if(i(e,r))e=r;else{this.onerror(`A plugin returned an unacceptable value for the "${this.type}" type.`);break}}catch(e){o.warn(e),this.onerror(e)}return e}constructor(e){super(),this.onerror=o.error,this.type=e}},t.checkReturnData=i},1132(e,t,r){r(8628),r(9350),r(7829),r(6079),r(8457),r(556),r(8393),r(630)},556(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(630),s=r(4363),l=".then(callbacks[0]).catch(callbacks[1])";async function u(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):"u">typeof FEDERATION_ALLOW_NEW_FUNCTION?Function("callbacks",`import("${t}")${l}`)([e,n]):import(t).then(e).catch(n)}catch(e){o.error(`Failed to load ESM entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}async function c(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):Function("callbacks",`System.import("${t}")${l}`)([e,n])}catch(e){o.error(`Failed to load SystemJS entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}function d(e,t,r){let{remoteEntryKey:a,entryExports:i}=n.getRemoteEntryExports(e,t);return i||o.error(s.RUNTIME_001,s.runtimeDescMap,{remoteName:e,remoteEntryUrl:r,remoteEntryKey:a}),i}async function f(e){let{name:t,globalName:r,entry:a,loaderHook:l,getEntryUrl:u}=e,{entryExports:c}=n.getRemoteEntryExports(t,r);if(c)return c;let f=u?u(a):a;return(0,i.loadScript)(f,{attrs:{},createScriptHook:(e,t)=>{let r=l.lifecycle.createScript.emit({url:e,attrs:t});if(r&&(r instanceof HTMLScriptElement||"script"in r||"timeout"in r))return r}}).then(()=>d(t,r,a),e=>{let r=e instanceof Error?e.message:String(e);o.error(s.RUNTIME_008,s.runtimeDescMap,{remoteName:t,resourceUrl:f},r)})}async function p(e){let{remoteInfo:t,remoteEntryExports:r,loaderHook:o,getEntryUrl:n}=e,{entry:a,entryGlobalName:i,name:s,type:l}=t;switch(l){case"esm":case"module":return u({entry:a,remoteEntryExports:r});case"system":return c({entry:a,remoteEntryExports:r});default:return f({entry:a,globalName:i,name:s,loaderHook:o,getEntryUrl:n})}}async function h(e){let{remoteInfo:t,loaderHook:r}=e,{entry:a,entryGlobalName:s,name:l,type:u}=t,{entryExports:c}=n.getRemoteEntryExports(l,s);return c||(0,i.loadScriptNode)(a,{attrs:{name:l,globalName:s,type:u},loaderHook:{createScriptHook:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.lifecycle.createScript.emit({url:e,attrs:t});if(o&&"url"in o)return o}}}).then(()=>d(l,s,a)).catch(e=>{o.error(`Failed to load Node.js entry for remote "${l}" from "${a}". ${e instanceof Error?e.message:String(e)}`)})}function m(e){let{entry:t,name:r}=e;return(0,i.composeKeyWithSeparator)(r,t)}async function g(e){let{origin:t,remoteEntryExports:r,remoteInfo:o,getEntryUrl:a,_inErrorHandling:l=!1}=e,u=m(o);if(r)return r;if(!n.globalLoading[u]){let e=t.remoteHandler.hooks.lifecycle.loadEntry,c=t.loaderHook;n.globalLoading[u]=e.emit({loaderHook:c,remoteInfo:o,remoteEntryExports:r}).then(e=>e||(("u">typeof ENV_TARGET?"web"===ENV_TARGET:i.isBrowserEnvValue)?p({remoteInfo:o,remoteEntryExports:r,loaderHook:c,getEntryUrl:a}):h({remoteInfo:o,loaderHook:c}))).catch(async e=>{let a=m(o),i=e instanceof Error&&e.message.includes("ScriptExecutionError");if(e instanceof Error&&e.message.includes(s.RUNTIME_008)&&!i&&!l){let e=e=>g({...e,_inErrorHandling:!0}),i=await t.loaderHook.lifecycle.loadEntryError.emit({getRemoteEntry:e,origin:t,remoteInfo:o,remoteEntryExports:r,globalLoading:n.globalLoading,uniqueKey:a});if(i)return i}throw e})}return n.globalLoading[u]}function y(e){return{...e,entry:"entry"in e?e.entry:"",type:e.type||a.DEFAULT_REMOTE_TYPE,entryGlobalName:e.entryGlobalName||e.name,shareScope:e.shareScope||a.DEFAULT_SCOPE}}t.getRemoteEntry=g,t.getRemoteEntryUniqueKey=m,t.getRemoteInfo=y},8628(e,t,r){let o=r(630),n=r(6619),a="[ Federation Runtime ]",i=(0,o.createLogger)(a);function s(e,t,r,o,i){if(void 0!==t)return(0,n.logAndReport)(e,t,r??{},e=>{throw Error(`${a}: ${e}`)},o,i);let s=e;if(s instanceof Error)throw s.message.startsWith(a)||(s.message=`${a}: ${s.message}`),s;throw Error(`${a}: ${s}`)}function l(e){e instanceof Error&&(e.message.startsWith(a)||(e.message=`${a}: ${e.message}`)),i.warn(e)}t.assert=function(e,t,r,o,n){e||(void 0!==r?s(t,r,o,void 0,n):s(t))},t.error=s,t.logger=i,t.warn=l},6079(e,t){function r(e,t){for(let r of e){let e=t.startsWith(r.name),o=t.replace(r.name,"");if(e){if(o.startsWith("/"))return{pkgNameOrAlias:r.name,expose:o=`.${o}`,remote:r};else if(""===o)return{pkgNameOrAlias:r.name,expose:".",remote:r}}let n=r.alias&&t.startsWith(r.alias),a=r.alias&&t.replace(r.alias,"");if(r.alias&&n){if(a&&a.startsWith("/"))return{pkgNameOrAlias:r.alias,expose:a=`.${a}`,remote:r};else if(""===a)return{pkgNameOrAlias:r.alias,expose:".",remote:r}}}}t.matchRemote=function(e,t){for(let r of e)if(t===r.name||r.alias&&t===r.alias)return r},t.matchRemoteWithNameAndExpose=r},8457(e,t,r){let o=r(4391);t.registerPlugins=function(e,t){let r=o.getGlobalHostPlugins(),n=[t.hooks,t.remoteHandler.hooks,t.sharedHandler.hooks,t.snapshotHandler.hooks,t.loaderHook,t.bridgeHook];return r.length>0&&r.forEach(t=>{(null==e?void 0:e.find(e=>e.name!==t.name))&&e.push(t)}),e&&e.length>0&&e.forEach(e=>{n.forEach(r=>{r.applyPlugin(e,t)})}),e}},9599(e,t,r){let o=r(8628),n=r(6079),a=r(556),i=r(630);function s(e){return{resourceCategory:"sync",share:!0,depsRemote:!0,prefetchInterface:!1,...e}}function l(e,t){return t.map(t=>{let r=n.matchRemote(e,t.nameOrAlias);return o.assert(r,`Unable to preload ${t.nameOrAlias} as it is not included in ${!r&&(0,i.safeToString)({remoteInfo:r,remotes:e})}`),{remote:r,preloadConfig:s(t)}})}function u(e){return e?e.map(e=>"."===e?e:e.startsWith("./")?e.replace("./",""):e):[]}function c(e,t,r){let o=!(arguments.length>3)||void 0===arguments[3]||arguments[3],{cssAssets:n,jsAssetsWithoutEntry:s,entryAssets:l}=r;if(t.options.inBrowser){if(l.forEach(r=>{let{moduleInfo:o}=r,n=t.moduleCache.get(e.name);n?a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:n.remoteEntryExports}):a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:void 0})}),o){let e={rel:"preload",as:"style"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let e={rel:"stylesheet",type:"text/css"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o},needDeleteLink:!1});n&&document.head.appendChild(o)})}if(o){let e={rel:"preload",as:"script"};s.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let r={fetchpriority:"high",type:(null==e?void 0:e.type)==="module"?"module":"text/javascript"};s.forEach(e=>{let{script:o,needAttach:n}=(0,i.createScript)({url:e,cb:()=>{},attrs:r,createScriptHook:(e,r)=>{let o=t.loaderHook.lifecycle.createScript.emit({url:e,attrs:r});if(o instanceof HTMLScriptElement)return o},needDeleteScript:!0});n&&document.head.appendChild(o)})}}}t.defaultPreloadArgs=s,t.formatPreloadArgs=l,t.normalizePreloadExposes=u,t.preloadAssets=c},632(e,t){function r(e,t){return(e=Number(e)||e)>(t=Number(t)||t)?1:e===t?0:-1}function o(e,t){let{preRelease:o}=e,{preRelease:n}=t;if(void 0===o&&n)return 1;if(o&&void 0===n)return -1;if(void 0===o&&void 0===n)return 0;for(let e=0,t=o.length;e<=t;e++){let t=o[e],a=n[e];if(t!==a){if(void 0===t&&void 0===a)return 0;if(!t)return 1;if(!a)return -1;return r(t,a)}}return 0}function n(e,t){return r(e.major,t.major)||r(e.minor,t.minor)||r(e.patch,t.patch)||o(e,t)}function a(e,t){return e.version===t.version}t.compare=function(e,t){switch(e.operator){case"":case"=":return a(e,t);case">":return 0>n(e,t);case">=":return a(e,t)||0>n(e,t);case"<":return n(e,t)>0;case"<=":return a(e,t)||n(e,t)>0;case void 0:return!0;default:return!1}}},9570(e,t){let r="[0-9A-Za-z-]+",o=`(?:\\+(${r}(?:\\.${r})*))`,n="0|[1-9]\\d*",a="[0-9]+",i="\\d*[a-zA-Z-][a-zA-Z0-9-]*",s=`(?:${a}|${i})`,l=`(?:-?(${s}(?:\\.${s})*))`,u=`(?:${n}|${i})`,c=`(?:-(${u}(?:\\.${u})*))`,d=`${n}|x|X|\\*`,f=`[v=\\s]*(${d})(?:\\.(${d})(?:\\.(${d})(?:${c})?${o}?)?)?`,p=`^\\s*(${f})\\s+-\\s+(${f})\\s*$`,h=`[v=\\s]*${`(${a})\\.(${a})\\.(${a})`}${l}?${o}?`,m="((?:<|>)?=?)",g=`(\\s*)${m}\\s*(${h}|${f})`,y="(?:~>?)",E=`(\\s*)${y}\\s+`,_="(?:\\^)",S=`(\\s*)${_}\\s+`,b="(<|>)?=?\\s*\\*",v=`^${_}${f}$`,R=`v?${`(${n})\\.(${n})\\.(${n})`}${c}?${o}?`,I=`^${y}${f}$`,M=`^${m}\\s*${f}$`,N=`^${m}\\s*(${R})$|^$`,T="^\\s*>=\\s*0.0.0\\s*$";t.caret=v,t.caretTrim=S,t.comparator=N,t.comparatorTrim=g,t.gte0=T,t.hyphenRange=p,t.star=b,t.tilde=I,t.tildeTrim=E,t.xRange=M},3957(e,t,r){let o=r(78),n=r(3810),a=r(632);function i(e){return o.pipe(n.parseCarets,n.parseTildes,n.parseXRanges,n.parseStar)(e)}function s(e){return o.pipe(n.parseHyphen,n.parseComparatorTrim,n.parseTildeTrim,n.parseCaretTrim)(e.trim()).split(/\s+/).join(" ")}t.satisfy=function(e,t){if(!e)return!1;let r=o.extractComparator(e);if(!r)return!1;let[,l,,u,c,d,f]=r,p={operator:l,version:o.combineVersion(u,c,d,f),major:u,minor:c,patch:d,preRelease:null==f?void 0:f.split(".")};for(let e of t.split("||")){let t=e.trim();if(!t||"*"===t||"x"===t)return!0;try{let e=s(t);if(!e.trim())return!0;let r=e.split(" ").map(e=>i(e)).join(" ");if(!r.trim())return!0;let l=r.split(/\s+/).map(e=>n.parseGTE0(e)).filter(Boolean);if(0===l.length)continue;let u=!0;for(let e of l){let t=o.extractComparator(e);if(!t){u=!1;break}let[,r,,n,i,s,l]=t;if(!a.compare({operator:r,version:o.combineVersion(n,i,s,l),major:n,minor:i,patch:s,preRelease:null==l?void 0:l.split(".")},p)){u=!1;break}}if(u)return!0}catch(e){console.error(`[semver] Error processing range part "${t}":`,e);continue}}return!1}},3810(e,t,r){let o=r(9570),n=r(78);function a(e){return e.replace(n.parseRegex(o.hyphenRange),(e,t,r,o,a,i,s,l,u,c,d,f)=>(t=n.isXVersion(r)?"":n.isXVersion(o)?`>=${r}.0.0`:n.isXVersion(a)?`>=${r}.${o}.0`:`>=${t}`,l=n.isXVersion(u)?"":n.isXVersion(c)?`<${Number(u)+1}.0.0-0`:n.isXVersion(d)?`<${u}.${Number(c)+1}.0-0`:f?`<=${u}.${c}.${d}-${f}`:`<=${l}`,`${t} ${l}`.trim()))}function i(e){return e.replace(n.parseRegex(o.comparatorTrim),"$1$2$3")}function s(e){return e.replace(n.parseRegex(o.tildeTrim),"$1~")}function l(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.caret),(e,t,r,o,a)=>{if(n.isXVersion(t))return"";if(n.isXVersion(r))return`>=${t}.0.0 <${Number(t)+1}.0.0-0`;if(n.isXVersion(o))if("0"===t)return`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`;else return`>=${t}.${r}.0 <${Number(t)+1}.0.0-0`;if(a)if("0"!==t)return`>=${t}.${r}.${o}-${a} <${Number(t)+1}.0.0-0`;else if("0"===r)return`>=${t}.${r}.${o}-${a} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`;if("0"===t)if("0"===r)return`>=${t}.${r}.${o} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`;return`>=${t}.${r}.${o} <${Number(t)+1}.0.0-0`})).join(" ")}function u(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.tilde),(e,t,r,o,a)=>n.isXVersion(t)?"":n.isXVersion(r)?`>=${t}.0.0 <${Number(t)+1}.0.0-0`:n.isXVersion(o)?`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`:a?`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`:`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`)).join(" ")}function c(e){return e.split(/\s+/).map(e=>e.trim().replace(n.parseRegex(o.xRange),(e,t,r,o,a,i)=>{let s=n.isXVersion(r),l=s||n.isXVersion(o),u=l||n.isXVersion(a);if("="===t&&u&&(t=""),i="",s)if(">"===t||"<"===t)return"<0.0.0-0";else return"*";return t&&u?(l&&(o=0),a=0,">"===t?(t=">=",l?(r=Number(r)+1,o=0):o=Number(o)+1,a=0):"<="===t&&(t="<",l?r=Number(r)+1:o=Number(o)+1),"<"===t&&(i="-0"),`${t+r}.${o}.${a}${i}`):l?`>=${r}.0.0${i} <${Number(r)+1}.0.0-0`:u?`>=${r}.${o}.0${i} <${r}.${Number(o)+1}.0-0`:e})).join(" ")}function d(e){return e.trim().replace(n.parseRegex(o.star),"")}function f(e){return e.trim().replace(n.parseRegex(o.gte0),"")}t.parseCaretTrim=function(e){return e.replace(n.parseRegex(o.caretTrim),"$1^")},t.parseCarets=l,t.parseComparatorTrim=i,t.parseGTE0=f,t.parseHyphen=a,t.parseStar=d,t.parseTildeTrim=s,t.parseTildes=u,t.parseXRanges=c},78(e,t,r){let o=r(9570);function n(e){return new RegExp(e)}function a(e){return!e||"x"===e.toLowerCase()||"*"===e}function i(){for(var e=arguments.length,t=Array(e),r=0;rt.reduce((e,t)=>t(e),e)}function s(e){return e.match(n(o.comparator))}t.combineVersion=function(e,t,r,o){let n=`${e}.${t}.${r}`;return o?`${n}-${o}`:n},t.extractComparator=s,t.isXVersion=a,t.parseRegex=n,t.pipe=i},8369(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(2926),s=r(3957),l=r(630);function u(e,t,r,n){var a,i;let s;return s="get"in e?e.get:"lib"in e?()=>Promise.resolve(e.lib):()=>Promise.resolve(()=>{o.error(`Cannot get shared "${r}" from "${t}": neither "get" nor "lib" is provided in the share config.`)}),(null==(a=e.shareConfig)?void 0:a.eager)&&(null==(i=e.treeShaking)?void 0:i.mode)&&o.error(`Invalid shared config for "${r}" from "${t}": cannot use both "eager: true" and "treeShaking.mode" simultaneously. Choose one strategy.`),{deps:[],useIn:[],from:t,loading:null,...e,shareConfig:{requiredVersion:`^${e.version}`,singleton:!1,eager:!1,strictVersion:!1,...e.shareConfig},get:s,loaded:null!=e&&!!e.loaded||"lib"in e||void 0,version:e.version??"0",scope:Array.isArray(e.scope)?e.scope:[e.scope??"default"],strategy:(e.strategy??n)||"version-first",treeShaking:e.treeShaking?{...e.treeShaking,mode:e.treeShaking.mode??"server-calc",status:e.treeShaking.status??l.TreeShakingStatus.UNKNOWN,useIn:[]}:void 0}}function c(e,t){let r=t.shared||{},o=t.name,a=Object.keys(r).reduce((e,a)=>{let i=n.arrayOptions(r[a]);return e[a]=e[a]||[],i.forEach(r=>{e[a].push(u(r,o,a,t.shareStrategy))}),e},{}),i={...e.shared};return Object.keys(a).forEach(e=>{i[e]?a[e].forEach(t=>{i[e].find(e=>e.version===t.version)||i[e].push(t)}):i[e]=a[e]}),{allShareInfos:i,newShareInfos:a}}function d(e,t){if(!e)return!1;let{status:r,mode:o}=e;return r!==l.TreeShakingStatus.NO_USE&&(r===l.TreeShakingStatus.CALCULATED||"runtime-infer"===o&&(!t||g(e,t)))}function f(e,t){let r=e=>{if(!Number.isNaN(Number(e))){let t=e.split("."),r=e;for(let e=0;e<3-t.length;e++)r+=".0";return r}return e};return!!s.satisfy(r(e),`<=${r(t)}`)}let p=(e,t)=>{let r=t||function(e,t){return f(e,t)};return Object.keys(e).reduce((e,t)=>!e||r(e,t)||"0"===e?t:e,0)},h=e=>!!e.loaded||"function"==typeof e.lib,m=e=>!!e.loading,g=(e,t)=>{if(!e||!t)return!1;let{usedExports:r}=e;return!!r&&!!t.every(e=>r.includes(e))};function y(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){return i?!n[e].treeShaking||!!n[t].treeShaking&&!h(n[e].treeShaking)&&f(e,t):!h(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}let E=e=>h(e)||m(e);function _(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){if(i){if(!n[e].treeShaking)return!0;if(!n[t].treeShaking)return!1;if(E(n[t].treeShaking))if(E(n[e].treeShaking))return!!f(e,t);else return!0;if(E(n[e].treeShaking))return!1}if(E(n[t]))if(E(n[e]))return!!f(e,t);else return!0;return!E(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}function S(e){return"loaded-first"===e?_:y}function b(e,t,r,n){if(!e)return;let{shareConfig:l,scope:u=i.DEFAULT_SCOPE,strategy:c,treeShaking:f}=r;for(let i of Array.isArray(u)?u:[u])if(l&&e[i]&&e[i][t]){let{requiredVersion:u}=l,{version:p,useTreesShaking:h}=S(c)(e,i,t,f),m=()=>{let n=e[i][t][p];if(l.singleton){if("string"==typeof u&&!s.satisfy(p,u)){let e=`Version ${p} from ${p&&n.from} of shared singleton module ${t} does not satisfy the requirement of ${r.from} which needs ${u})`;l.strictVersion?o.error(e):o.warn(e)}return{shared:n,useTreesShaking:h}}{if(!1===u||"*"===u||s.satisfy(p,u))return{shared:n,useTreesShaking:h};let r=d(f);if(r){for(let[o,n]of Object.entries(e[i][t]))if(d(n.treeShaking,null==f?void 0:f.usedExports)&&s.satisfy(o,u))return{shared:n,useTreesShaking:r}}for(let[r,o]of Object.entries(e[i][t]))if(s.satisfy(r,u))return{shared:o,useTreesShaking:!1}}},g={shareScopeMap:e,scope:i,pkgName:t,version:p,GlobalFederation:a.Global.__FEDERATION__,shareInfo:r,resolver:m};return(n.emit(g)||g).resolver()}}function v(){return a.Global.__FEDERATION__.__SHARE__}function R(e){let{pkgName:t,extraOptions:r,shareInfos:o}=e,n=e=>{if(!e)return;let t={};e.forEach(e=>{t[e.version]=e});let r=function(e,r){return!h(t[e])&&f(e,r)};return t[p(t,r)]},a=(null==r?void 0:r.resolver)??n,i=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),s=function(){for(var e=arguments.length,t=Array(e),r=0;r{e.useIn||(e.useIn=[]),n.addUniqueItem(e.useIn,t)},t.directShare=I,t.formatShareConfigs=c,t.getGlobalShareScope=v,t.getRegisteredShare=b,t.getTargetSharedOptions=R,t.shouldUseTreeShaking=d},9350(e,t,r){let o=r(8628),n=r(630);function a(e,t){return -1===e.findIndex(e=>e===t)&&e.push(t),e}function i(e){return"version"in e&&e.version?`${e.name}:${e.version}`:"entry"in e&&e.entry?`${e.name}:${e.entry}`:`${e.name}`}function s(e){return void 0!==e.entry}function l(e){return!e.entry.includes(".json")}async function u(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function c(e){return e&&"object"==typeof e}let d=Object.prototype.toString;function f(e){return"[object Object]"===d.call(e)}function p(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function h(e){return Array.isArray(e)?e:[e]}function m(e){let t={url:"",type:"global",globalName:""};return n.isBrowserEnvValue||(0,n.isReactNativeEnv)()||!("ssrRemoteEntry"in e)?"remoteEntry"in e?{url:e.remoteEntry,type:e.remoteEntryType,globalName:e.globalName}:t:"ssrRemoteEntry"in e?{url:e.ssrRemoteEntry||t.url,type:e.ssrRemoteEntryType||t.type,globalName:e.globalName}:t}let g=(e,t)=>{let r;return r=e.endsWith("/")?e.slice(0,-1):e,t.startsWith(".")&&(t=t.slice(1)),r+=t};t.addUniqueItem=a,t.arrayOptions=h,t.getFMId=i,t.getRemoteEntryInfoFromSnapshot=m,t.isObject=c,t.isPlainObject=f,t.isPureRemoteEntry=l,t.isRemoteInfoWithEntry=s,t.isStaticResourcesEqual=p,t.objectToString=d,t.processModuleAlias=g,t.safeWrapper=u},3544(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},3129(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),r(3544);let o=r(9577),n=r(5922),a={...n.helpers.global,getGlobalFederationInstance:o.getGlobalFederationInstance},i=n.helpers.share,s=n.helpers.utils;t.default={global:a,share:i,utils:s},t.global=a,t.share=i,t.utils=s},9782(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),r(3544);let o=r(9577),n=r(5922),a=r(4363);function i(e){let t=new((0,n.getGlobalFederationConstructor)()||n.ModuleFederation)(e);return(0,n.setGlobalFederationInstance)(t),t}let s=null;function l(e){let t=o.getGlobalFederationInstance(e.name,e.version);return t?(t.initOptions(e),s||(s=t),t):s=i(e)}function u(){for(var e=arguments.length,t=Array(e),r=0;r!!r&&o.options.id===r||o.options.name===e&&!o.options.version&&!t||o.options.name===e&&!!t&&o.options.version===t)}},7688(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},586(e,t){let r="federation-manifest.json",o=".json",n="FEDERATION_DEBUG",a={AT:"@",HYPHEN:"-",SLASH:"/"},i={[a.AT]:"scope_",[a.HYPHEN]:"_",[a.SLASH]:"__"},s={[i[a.AT]]:a.AT,[i[a.HYPHEN]]:a.HYPHEN,[i[a.SLASH]]:a.SLASH},l=":",u="mf-manifest.json",c="mf-stats.json",d={NPM:"npm",APP:"app"},f="__MF_DEVTOOLS_MODULE_INFO__",p="ENCODE_NAME_PREFIX",h=".federation",m={identifier:"MFDataPrefetch",globalKey:"__PREFETCH__",library:"mf-data-prefetch",exportsKey:"__PREFETCH_EXPORTS__",fileName:"bootstrap.js"},g=function(e){return e[e.UNKNOWN=1]="UNKNOWN",e[e.CALCULATED=2]="CALCULATED",e[e.NO_USE=0]="NO_USE",e}({});t.BROWSER_LOG_KEY=n,t.ENCODE_NAME_PREFIX=p,t.EncodedNameTransformMap=s,t.FederationModuleManifest=r,t.MANIFEST_EXT=o,t.MFModuleType=d,t.MFPrefetchCommon=m,t.MODULE_DEVTOOL_IDENTIFIER=f,t.ManifestFileName=u,t.NameTransformMap=i,t.NameTransformSymbol=a,t.SEPARATOR=l,t.StatsFileName=c,t.TEMP_DIR=h,t.TreeShakingStatus=g},1483(e,t){t.createModuleFederationConfig=e=>e},6302(e,t,r){let o=r(3417);async function n(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function a(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function i(e){let t,r=null,o=!0,i=2e4,s=document.getElementsByTagName("script");for(let t=0;t{r&&("async"===e||"defer"===e?r[e]=o[e]:r.getAttribute(e)||r.setAttribute(e,o[e]))})}let l=null,u="u">typeof window?t=>{if(t.filename&&a(t.filename,e.url)){let r=Error(`ScriptExecutionError: Script "${e.url}" loaded but threw a runtime error during execution: ${t.message} (${t.filename}:${t.lineno}:${t.colno})`);r.name="ScriptExecutionError",l=r}}:null;u&&window.addEventListener("error",u);let c=async(o,a)=>{clearTimeout(t),u&&window.removeEventListener("error",u);let i=()=>{if((null==a?void 0:a.type)==="error"){let t=Error(`ScriptNetworkError: Failed to load script "${e.url}" - the script URL is unreachable or the server returned an error (network failure, 404, CORS, etc.)`);t.name="ScriptNetworkError",(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(t))}else l?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(l)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(r&&(r.onerror=null,r.onload=null,n(()=>{let{needDeleteScript:t=!0}=e;t&&(null==r?void 0:r.parentNode)&&r.parentNode.removeChild(r)}),o&&"function"==typeof o)){let e=o(a);if(e instanceof Promise){let t=await e;return i(),t}return i(),e}i()};return r.onerror=c.bind(null,r.onerror),r.onload=c.bind(null,r.onload),t=setTimeout(()=>{c(null,Error(`Remote script "${e.url}" time-outed.`))},i),{script:r,needAttach:o}}function s(e,t){let{attrs:r={},createScriptHook:o}=t;return new Promise((t,n)=>{let{script:a,needAttach:s}=i({url:e,cb:t,onErrorCallback:n,attrs:{fetchpriority:"high",...r},createScriptHook:o,needDeleteScript:!0});s&&document.head.appendChild(a)})}t.createLink=function(e){let t=null,r=!0,o=document.getElementsByTagName("link");for(let n=0;n{t&&!t.getAttribute(e)&&t.setAttribute(e,o[e])})}let i=(r,o)=>{let a=()=>{(null==o?void 0:o.type)==="error"?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(o)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(t&&(t.onerror=null,t.onload=null,n(()=>{let{needDeleteLink:r=!0}=e;r&&(null==t?void 0:t.parentNode)&&t.parentNode.removeChild(t)}),r)){let e=r(o);return a(),e}a()};return t.onerror=i.bind(null,t.onerror),t.onload=i.bind(null,t.onload),{link:t,needAttach:r}},t.createScript=i,t.isStaticResourcesEqual=a,t.loadScript=s,t.safeWrapper=n},6883(e,t,r){let o=r(586),n="u">typeof ENV_TARGET?"web"===ENV_TARGET:"u">typeof window&&void 0!==window.document;function a(){return n}function i(){var e;return"u">typeof navigator&&(null==(e=navigator)?void 0:e.product)==="ReactNative"}function s(){try{if(a()&&window.localStorage)return!!localStorage.getItem(o.BROWSER_LOG_KEY)}catch(e){}return!1}function l(){return"u">typeof process&&process.env&&process.env.FEDERATION_DEBUG?!!process.env.FEDERATION_DEBUG:!!("u">typeof FEDERATION_DEBUG&&FEDERATION_DEBUG)||s()}t.getProcessEnv=function(){return"u">typeof process&&process.env?process.env:{}},t.isBrowserEnv=a,t.isBrowserEnvValue=n,t.isDebugMode=l,t.isReactNativeEnv=i},7016(e,t,r){let o=r(586),n=(e,t)=>{if(!e)return t;let r=(e=>{if("."===e)return"";if(e.startsWith("./"))return e.replace("./","");if(e.startsWith("/")){let t=e.slice(1);return t.endsWith("/")?t.slice(0,-1):t}return e})(e);return r?r.endsWith("/")?`${r}${t}`:`${r}/${t}`:t};function a(e){return e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/")}function i(e){return!!("remoteEntry"in e&&e.remoteEntry.includes(o.MANIFEST_EXT))}function s(e){if(!e)return{statsFileName:o.StatsFileName,manifestFileName:o.ManifestFileName};let t="boolean"==typeof e?"":e.filePath||"",r="boolean"==typeof e?"":e.fileName||"",a=".json",i=e=>e.endsWith(a)?e:`${e}${a}`,s=(e,t)=>e.replace(a,`${t}${a}`),l=r?i(r):o.ManifestFileName;return{statsFileName:n(t,r?s(l,"-stats"):o.StatsFileName),manifestFileName:n(t,l)}}t.generateSnapshotFromManifest=function(e){var t,r,o;let i,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{remotes:l={},overrides:u={},version:c}=s,d=()=>"publicPath"in e.metaData?("auto"===e.metaData.publicPath||""===e.metaData.publicPath)&&c?a(c):e.metaData.publicPath:e.metaData.getPublicPath,f=Object.keys(u),p={};Object.keys(l).length||(p=(null==(t=e.remotes)?void 0:t.reduce((e,t)=>{let r,o=t.federationContainerName;return r=f.includes(o)?u[o]:"version"in t?t.version:t.entry,e[o]={matchedVersion:r},e},{}))||{}),Object.keys(l).forEach(e=>p[e]={matchedVersion:f.includes(e)?u[e]:l[e]});let{remoteEntry:{path:h,name:m,type:g},types:y={path:"",name:"",zip:"",api:""},buildInfo:{buildVersion:E},globalName:_,ssrRemoteEntry:S}=e.metaData,{exposes:b}=e,v={version:c||"",buildVersion:E,globalName:_,remoteEntry:n(h,m),remoteEntryType:g,remoteTypes:n(y.path,y.name),remoteTypesZip:y.zip||"",remoteTypesAPI:y.api||"",remotesInfo:p,shared:null==e?void 0:e.shared.map(e=>({assets:e.assets,sharedName:e.name,version:e.version,usedExports:e.referenceExports||[]})),modules:null==b?void 0:b.map(e=>({moduleName:e.name,modulePath:e.path,assets:e.assets}))};if(null==(r=e.metaData)?void 0:r.prefetchInterface){let t=e.metaData.prefetchInterface;v={...v,prefetchInterface:t}}if(null==(o=e.metaData)?void 0:o.prefetchEntry){let{path:t,name:r,type:o}=e.metaData.prefetchEntry;v={...v,prefetchEntry:n(t,r),prefetchEntryType:o}}if("publicPath"in e.metaData?(i={...v,publicPath:d()},"string"==typeof e.metaData.ssrPublicPath&&(i.ssrPublicPath=e.metaData.ssrPublicPath)):i={...v,getPublicPath:d()},S){let e=n(S.path,S.name);i.ssrRemoteEntry=e,i.ssrRemoteEntryType=S.type||"commonjs-module"}return i},t.getManifestFileName=s,t.inferAutoPublicPath=a,t.isManifestProvider=i,t.simpleJoinRemoteEntry=n},630(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(586),n=r(8841),a=r(8798),i=r(7765),s=r(1993),l=r(7345),u=r(5448),c=r(6883),d=r(3417),f=r(7016),p=r(3910),h=r(6302),m=r(638),g=r(6967),y=r(1483);t.BROWSER_LOG_KEY=o.BROWSER_LOG_KEY,t.ENCODE_NAME_PREFIX=o.ENCODE_NAME_PREFIX,t.EncodedNameTransformMap=o.EncodedNameTransformMap,t.FederationModuleManifest=o.FederationModuleManifest,t.MANIFEST_EXT=o.MANIFEST_EXT,t.MFModuleType=o.MFModuleType,t.MFPrefetchCommon=o.MFPrefetchCommon,t.MODULE_DEVTOOL_IDENTIFIER=o.MODULE_DEVTOOL_IDENTIFIER,t.ManifestFileName=o.ManifestFileName,t.NameTransformMap=o.NameTransformMap,t.NameTransformSymbol=o.NameTransformSymbol,t.SEPARATOR=o.SEPARATOR,t.StatsFileName=o.StatsFileName,t.TEMP_DIR=o.TEMP_DIR,t.TreeShakingStatus=o.TreeShakingStatus,t.assert=d.assert,t.bindLoggerToCompiler=p.bindLoggerToCompiler,t.composeKeyWithSeparator=d.composeKeyWithSeparator,Object.defineProperty(t,"consumeSharedPlugin",{enumerable:!0,get:function(){return l.ConsumeSharedPlugin_exports}}),Object.defineProperty(t,"containerPlugin",{enumerable:!0,get:function(){return n.ContainerPlugin_exports}}),Object.defineProperty(t,"containerReferencePlugin",{enumerable:!0,get:function(){return a.ContainerReferencePlugin_exports}}),t.createInfrastructureLogger=p.createInfrastructureLogger,t.createLink=h.createLink,t.createLogger=p.createLogger,t.createModuleFederationConfig=y.createModuleFederationConfig,t.createScript=h.createScript,t.createScriptNode=m.createScriptNode,t.decodeName=d.decodeName,t.encodeName=d.encodeName,t.error=d.error,t.generateExposeFilename=d.generateExposeFilename,t.generateShareFilename=d.generateShareFilename,t.generateSnapshotFromManifest=f.generateSnapshotFromManifest,t.getManifestFileName=f.getManifestFileName,t.getProcessEnv=c.getProcessEnv,t.getResourceUrl=d.getResourceUrl,t.inferAutoPublicPath=f.inferAutoPublicPath,t.infrastructureLogger=p.infrastructureLogger,t.isBrowserEnv=c.isBrowserEnv,t.isBrowserEnvValue=c.isBrowserEnvValue,t.isDebugMode=c.isDebugMode,t.isManifestProvider=f.isManifestProvider,t.isReactNativeEnv=c.isReactNativeEnv,t.isRequiredVersion=d.isRequiredVersion,t.isStaticResourcesEqual=h.isStaticResourcesEqual,t.loadScript=h.loadScript,t.loadScriptNode=m.loadScriptNode,t.logger=p.logger,Object.defineProperty(t,"moduleFederationPlugin",{enumerable:!0,get:function(){return i.ModuleFederationPlugin_exports}}),t.normalizeOptions=g.normalizeOptions,t.parseEntry=d.parseEntry,Object.defineProperty(t,"provideSharedPlugin",{enumerable:!0,get:function(){return u.ProvideSharedPlugin_exports}}),t.safeToString=d.safeToString,t.safeWrapper=h.safeWrapper,Object.defineProperty(t,"sharePlugin",{enumerable:!0,get:function(){return s.SharePlugin_exports}}),t.simpleJoinRemoteEntry=f.simpleJoinRemoteEntry,t.warn=d.warn},3910(e,t,r){let o=r(6883),n="[ Module Federation ]",a=console,i=["logger.ts","logger.js","captureStackTrace","Logger.emit","Logger.log","Logger.info","Logger.warn","Logger.error","Logger.debug"];function s(){try{let e=Error().stack;if(!e)return;let[,...t]=e.split("\n"),r=t.filter(e=>!i.some(t=>e.includes(t)));if(!r.length)return;return`Stack trace: ${r.slice(0,5).join("\n")}`}catch{return}}var l=class{setPrefix(e){this.prefix=e}setDelegate(e){this.delegate=e??a}emit(e,t){let r=this.delegate,n=o.isDebugMode()?s():void 0,i=n?[...t,n]:t,l=(()=>{switch(e){case"log":return["log","info"];case"info":return["info","log"];case"warn":return["warn","info","log"];case"error":return["error","warn","log"];default:return["debug","log"]}})();for(let e of l){let t=r[e];if("function"==typeof t)return void t.call(r,this.prefix,...i)}for(let e of l){let t=a[e];if("function"==typeof t)return void t.call(a,this.prefix,...i)}}log(){for(var e=arguments.length,t=Array(e),r=0;re).catch(t=>{throw console.error(`Error importing module ${e}:`,t),sdkImportCache.delete(e),t});return sdkImportCache.set(e,t),t}let loadNodeFetch=async()=>{let e=await importNodeModule("node-fetch");return e.default||e},lazyLoaderHookFetch=async(e,t,r)=>{let o=(e,t)=>r.lifecycle.fetch.emit(e,t),n=await o(e,t||{});return n&&n instanceof Response?n:("u"{let urlObj;if(null==loaderHook?void 0:loaderHook.createScriptHook){let hookResult=loaderHook.createScriptHook(url);hookResult&&"object"==typeof hookResult&&"url"in hookResult&&(url=hookResult.url)}try{urlObj=new URL(url)}catch(e){console.error("Error constructing URL:",e),cb(Error(`Invalid URL: ${e}`));return}let getFetch=async()=>(null==loaderHook?void 0:loaderHook.fetch)?(e,t)=>lazyLoaderHookFetch(e,t,loaderHook):"u"{try{var _vm_constants;let requireFn,res=await f(urlObj.href),data=await res.text(),[path,vm]=await Promise.all([importNodeModule("path"),importNodeModule("vm")]),scriptContext={exports:{},module:{exports:{}}},urlDirname=urlObj.pathname.split("/").slice(0,-1).join("/"),filename=path.basename(urlObj.pathname),script=new vm.Script(`(function(exports, module, require, __dirname, __filename) {${data} })`,{filename,importModuleDynamically:(null==(_vm_constants=vm.constants)?void 0:_vm_constants.USE_MAIN_CONTEXT_DEFAULT_LOADER)??importNodeModule});requireFn=eval("require"),script.runInThisContext()(scriptContext.exports,scriptContext.module,requireFn,urlDirname,filename);let exportedInterface=scriptContext.module.exports||scriptContext.exports;if(attrs&&exportedInterface&&attrs.globalName)return void cb(void 0,exportedInterface[attrs.globalName]||exportedInterface);cb(void 0,exportedInterface)}catch(e){cb(e instanceof Error?e:Error(`Script execution error: ${e}`))}};getFetch().then(async e=>{if((null==attrs?void 0:attrs.type)==="esm"||(null==attrs?void 0:attrs.type)==="module")return loadModule(urlObj.href,{fetch:e,vm:await importNodeModule("vm")}).then(async e=>{await e.evaluate(),cb(void 0,e.namespace)}).catch(e=>{cb(e instanceof Error?e:Error(`Script execution error: ${e}`))});handleScriptFetch(e,urlObj)}).catch(e=>{cb(e)})}:(e,t,r,o)=>{t(Error("createScriptNode is disabled in non-Node.js environment"))},loadScriptNode="u"new Promise((r,o)=>{createScriptNode(e,(e,n)=>{if(e)o(e);else{var a,i;let e=(null==t||null==(a=t.attrs)?void 0:a.globalName)||`__FEDERATION_${null==t||null==(i=t.attrs)?void 0:i.name}:custom__`;r(globalThis[e]=n)}},t.attrs,t.loaderHook)}):(e,t)=>{throw Error("loadScriptNode is disabled in non-Node.js environment")},esmModuleCache=new Map;async function loadModule(e,t){if(esmModuleCache.has(e))return esmModuleCache.get(e);let{fetch:r,vm:o}=t,n=await (await r(e)).text(),a=new o.SourceTextModule(n,{importModuleDynamically:async(r,o)=>loadModule(new URL(r,e).href,t)});return esmModuleCache.set(e,a),await a.link(async r=>{let o=new URL(r,e).href;return await loadModule(o,t)}),a}exports.createScriptNode=createScriptNode,exports.loadScriptNode=loadScriptNode},6967(e,t){t.normalizeOptions=function(e,t,r){return function(o){if(!1===o)return!1;if(void 0===o)if(e)return t;else return!1;if(!0===o)return t;if(o&&"object"==typeof o)return{...t,...o};throw Error(`Unexpected type for \`${r}\`, expect boolean/undefined/object, got: ${typeof o}`)}}},7345(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ConsumeSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},8841(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerPlugin_exports",{enumerable:!0,get:function(){return o}})},8798(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerReferencePlugin_exports",{enumerable:!0,get:function(){return o}})},7765(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ModuleFederationPlugin_exports",{enumerable:!0,get:function(){return o}})},5448(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ProvideSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},1993(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"SharePlugin_exports",{enumerable:!0,get:function(){return o}})},3417(e,t,r){let o=r(586),n=r(6883),a="[ Federation Runtime ]",i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:o.SEPARATOR,a=e.split(r),i="development"===n.getProcessEnv().NODE_ENV&&t,s="*",l=e=>e.startsWith("http")||e.includes(o.MANIFEST_EXT);if(a.length>=2){let[t,...o]=a;e.startsWith(r)&&(t=a.slice(0,2).join(r),o=[i||a.slice(2).join(r)]);let n=i||o.join(r);return l(n)?{name:t,entry:n}:{name:t,version:n||s}}if(1===a.length){let[e]=a;return i&&l(i)?{name:e,entry:i}:{name:e,version:i||s}}throw`Invalid entry value: ${e}`},s=function(){for(var e=arguments.length,t=Array(e),r=0;rt?e?`${e}${o.SEPARATOR}${t}`:t:e,""):""},l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];try{let n=r?".js":"";return`${t}${e.replace(RegExp(`${o.NameTransformSymbol.AT}`,"g"),o.NameTransformMap[o.NameTransformSymbol.AT]).replace(RegExp(`${o.NameTransformSymbol.HYPHEN}`,"g"),o.NameTransformMap[o.NameTransformSymbol.HYPHEN]).replace(RegExp(`${o.NameTransformSymbol.SLASH}`,"g"),o.NameTransformMap[o.NameTransformSymbol.SLASH])}${n}`}catch(e){throw e}},u=function(e,t,r){try{let n=e;if(t){if(!n.startsWith(t))return n;n=n.replace(RegExp(t,"g"),"")}return n=n.replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.AT]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.AT]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.SLASH]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.SLASH]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.HYPHEN]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.HYPHEN]]),r&&(n=n.replace(".js","")),n}catch(e){throw e}},c=(e,t)=>{if(!e)return"";let r=e;return"."===r&&(r="default_export"),r.startsWith("./")&&(r=r.replace("./","")),l(r,"__federation_expose_",t)},d=(e,t)=>e?l(e,"__federation_shared_",t):"",f=(e,t)=>{if("getPublicPath"in e){let r;return r=e.getPublicPath.startsWith("function")?Function("return "+e.getPublicPath)()():Function(e.getPublicPath)(),`${r}${t}`}return"publicPath"in e?!n.isBrowserEnv()&&!n.isReactNativeEnv()&&"ssrPublicPath"in e&&"string"==typeof e.ssrPublicPath?`${e.ssrPublicPath}${t}`:`${e.publicPath}${t}`:(console.warn("Cannot get resource URL. If in debug mode, please ignore.",e,t),"")},p=e=>{throw Error(`${a}: ${e}`)},h=e=>{console.warn(`${a}: ${e}`)};function m(e){try{return JSON.stringify(e,null,2)}catch(e){return""}}let g=/^([\d^=v<>~]|[*xX]$)/;function y(e){return g.test(e)}t.assert=(e,t)=>{e||p(t)},t.composeKeyWithSeparator=s,t.decodeName=u,t.encodeName=l,t.error=p,t.generateExposeFilename=c,t.generateShareFilename=d,t.getResourceUrl=f,t.isRequiredVersion=y,t.parseEntry=i,t.safeToString=m,t.warn=h},7363(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},2069(e,t){t.attachShareScopeMap=function(e){e.S&&!e.federation.hasAttachShareScopeMap&&e.federation.instance&&e.federation.instance.shareScopeMap&&(e.S=e.federation.instance.shareScopeMap,e.federation.hasAttachShareScopeMap=!0)}},6897(e,t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),t.FEDERATION_SUPPORTED_TYPES=["script"]},916(e,t,r){let o=r(2069),n=r(5216),a=r(7617);t.consumes=function(e){n.updateConsumeOptions(e);let{chunkId:t,promises:r,installedModules:i,webpackRequire:s,chunkMapping:l,moduleToHandlerMapping:u}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{if(s.o(i,e))return r.push(i[e]);let t=t=>{i[e]=0,s.m[e]=r=>{var o;delete s.c[e];let n=t(),{shareInfo:a}=u[e];if((null==a||null==(o=a.shareConfig)?void 0:o.layer)&&n&&"object"==typeof n)try{n.hasOwnProperty("layer")&&void 0!==n.layer||(n.layer=a.shareConfig.layer)}catch(e){}r.exports=n}},o=t=>{delete i[e],s.m[e]=r=>{throw delete s.c[e],t}};try{let n=s.federation.instance;if(!n)throw Error("Federation instance not found!");let{shareKey:l,getter:c,shareInfo:d,treeShakingGetter:f}=u[e],p=a.getUsedExports(s,l),h={...d};Array.isArray(h.scope)&&Array.isArray(h.scope[0])&&(h.scope=h.scope[0]),p&&(h.treeShaking={usedExports:p,useIn:[n.options.name]});let m=n.loadShare(l,{customShareInfo:h}).then(e=>!1===e?(null==f?void 0:f())||c():e);m.then?r.push(i[e]=m.then(t).catch(o)):t(m)}catch(e){o(e)}})}},8167(e,t){t.getSharedFallbackGetter=e=>{let{shareKey:t,factory:r,version:o,webpackRequire:n,libraryType:a="global"}=e,{runtime:i,instance:s,bundlerRuntime:l,sharedFallback:u}=n.federation;if(!u)return r;let c=u[t];if(!c)return r;let d=o?c.find(e=>e[1]===o):c[0];if(!d)throw Error(`No fallback item found for shareKey: ${t} and version: ${o}`);return()=>i.getRemoteEntry({origin:n.federation.instance,remoteInfo:{name:d[2],entry:`${n.p}${d[0]}`,type:a,entryGlobalName:d[2],shareScope:"default"}}).then(e=>{if(!e)throw Error(`Failed to load fallback entry for shareKey: ${t} and version: ${o}`);return e.init(n.federation.instance,l).then(()=>e.get())})}},7617(e,t){t.getUsedExports=function(e,t){let r=e.federation.usedExports;if(r)return r[t]}},6927(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});let o=r(7363),n=r(2069),a=r(6310),i=r(916),s=r(6777),l=r(1735),u=r(7440),c=r(8531),d=r(8167),f=r(9782),p={runtime:f=o.__toESM(f),instance:void 0,initOptions:void 0,bundlerRuntime:{remotes:a.remotes,consumes:i.consumes,I:s.initializeSharing,S:{},installInitialConsumes:l.installInitialConsumes,initContainerEntry:u.initContainerEntry,init:c.init,getSharedFallbackGetter:d.getSharedFallbackGetter},attachShareScopeMap:n.attachShareScopeMap,bundlerRuntimeOptions:{}},h=p.instance,m=p.initOptions,g=p.bundlerRuntime,y=p.bundlerRuntimeOptions;t.attachShareScopeMap=n.attachShareScopeMap,t.bundlerRuntime=g,t.bundlerRuntimeOptions=y,t.default=p,t.initOptions=m,t.instance=h,Object.defineProperty(t,"runtime",{enumerable:!0,get:function(){return f}})},8531(e,t,r){let o=r(7363),n=r(9782),a=r(3129);a=o.__toESM(a),t.init=function(e){var t;let{webpackRequire:o}=e,{initOptions:i,runtime:s,sharedFallback:l,bundlerRuntime:u,libraryType:c}=o.federation;if(!i)throw Error("initOptions is required!");let d=function(){return{name:"tree-shake-plugin",beforeInit(e){let{userOptions:t,origin:i,options:s}=e,d=t.version||s.version;if(!l)return e;let f=t.shared||{},p=[];Object.keys(f).forEach(e=>{(Array.isArray(f[e])?f[e]:[f[e]]).forEach(t=>{if(p.push([e,t]),"get"in t){var r;(r=t).treeShaking||(r.treeShaking={}),t.treeShaking.get=t.get,t.get=u.getSharedFallbackGetter({shareKey:e,factory:t.get,webpackRequire:o,libraryType:c,version:t.version})}})});let h=a.default.global.getGlobalSnapshotInfoByModuleInfo({name:i.name,version:d});if(!h||!("shared"in h))return e;Object.keys(s.shared||{}).forEach(e=>{s.shared[e].forEach(t=>{p.push([e,t])})});let m=(e,t)=>{let o=h.shared.find(t=>t.sharedName===e);if(!o)return;let{treeShaking:a}=t;if(!a)return;let{secondarySharedTreeShakingName:s,secondarySharedTreeShakingEntry:l,treeShakingStatus:u}=o;a.status!==u&&(a.status=u,l&&c&&s&&(a.get=async()=>{let e=await (0,n.getRemoteEntry)({origin:i,remoteInfo:{name:s,entry:l,type:c,entryGlobalName:s,shareScope:"default"}});return await e.init(i,r.federation.bundlerRuntime),e.get()}))};return p.forEach(e=>{let[t,r]=e;m(t,r)}),e}}};return(t=i).plugins||(t.plugins=[]),i.plugins.push(d()),s.init(i)}},7440(e,t){t.initContainerEntry=function(e){let{webpackRequire:t,shareScope:r,initScope:o,shareScopeKey:n,remoteEntryInitOptions:a}=e;if(!t.S||!t.federation||!t.federation.instance||!t.federation.initOptions)return;let i=t.federation.instance;i.initOptions({name:t.federation.initOptions.name,remotes:[],...a});let s=null==a?void 0:a.shareScopeKeys,l=null==a?void 0:a.shareScopeMap;if(n&&"string"!=typeof n)n.forEach(e=>{if(!s||!l)return void i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}});l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})});else{let e=n||"default";Array.isArray(s)?s.forEach(e=>{l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}):i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}return(t.federation.attachShareScopeMap&&t.federation.attachShareScopeMap(t),"function"==typeof t.federation.prefetch&&t.federation.prefetch(),Array.isArray(n))?t.federation.initOptions.shared?t.I(n,o):Promise.all(n.map(e=>t.I(e,o))).then(()=>!0):t.I(n||"default",o)}},6777(e,t,r){let o=r(2069),n=r(6897);t.initializeSharing=function(e){let{shareScopeName:t,webpackRequire:r,initPromises:a,initTokens:i,initScope:s}=e,l=Array.isArray(t)?t:[t];var u=[],c=function(e){s||(s=[]);let l=r.federation.instance;var u=i[e];if(u||(u=i[e]={from:l.name}),s.indexOf(u)>=0)return;s.push(u);let c=a[e];if(c)return c;var d=e=>"u">typeof console&&console.warn&&console.warn(e),f=o=>{var n=e=>d("Initialization of sharing external failed: "+e);try{var a=r(o);if(!a)return;var i=o=>o&&o.init&&o.init(r.S[e],s,{shareScopeMap:r.S||{},shareScopeKeys:t});if(a.then)return p.push(a.then(i,n));var l=i(a);if(l&&"boolean"!=typeof l&&l.then)return p.push(l.catch(n))}catch(e){n(e)}};let p=l.initializeSharing(e,{strategy:l.options.shareStrategy,initScope:s,from:"build"});o.attachShareScopeMap(r);let h=r.federation.bundlerRuntimeOptions.remotes;return(h&&Object.keys(h.idToRemoteMap).forEach(e=>{let t=h.idToRemoteMap[e],r=h.idToExternalAndNameMapping[e][2];if(t.length>1)f(r);else if(1===t.length){let e=t[0];n.FEDERATION_SUPPORTED_TYPES.includes(e.externalType)||f(r)}}),p.length)?a[e]=Promise.all(p).then(()=>a[e]=!0):a[e]=!0};return l.forEach(e=>{u.push(c(e))}),Promise.all(u).then(()=>!0)}},1735(e,t,r){let o=r(5216),n=r(7617);function a(e){let{moduleId:t,moduleToHandlerMapping:r,webpackRequire:o,asyncLoad:a}=e,i=o.federation.instance;if(!i)throw Error("Federation instance not found!");let{shareKey:s,shareInfo:l}=r[t];try{let e=n.getUsedExports(o,s),t={...l};if(e&&(t.treeShaking={usedExports:e,useIn:[i.options.name]}),a)return i.loadShare(s,{customShareInfo:t});return i.loadShareSync(s,{customShareInfo:t})}catch(e){throw console.error('loadShareSync failed! The function should not be called unless you set "eager:true". If you do not set it, and encounter this issue, you can check whether an async boundary is implemented.'),console.error("The original error message is as follows: "),e}}t.installInitialConsumes=function(e){o.updateConsumeOptions(e);let{moduleToHandlerMapping:t,webpackRequire:r,installedModules:n,initialConsumes:i,asyncLoad:s}=e,l=[];i.forEach(e=>{let o=()=>a({moduleId:e,moduleToHandlerMapping:t,webpackRequire:r,asyncLoad:s});l.push([e,o])});let u=(e,o)=>{r.m[e]=a=>{var i;n[e]=0,delete r.c[e];let s=o();if("function"!=typeof s)throw Error(`Shared module is not available for eager consumption: ${e}`);let l=s(),{shareInfo:u}=t[e];if((null==u||null==(i=u.shareConfig)?void 0:i.layer)&&l&&"object"==typeof l)try{l.hasOwnProperty("layer")&&void 0!==l.layer||(l.layer=u.shareConfig.layer)}catch(e){}a.exports=l}};if(s)return Promise.all(l.map(async e=>{let[t,r]=e,o=await r();u(t,()=>o)}));l.forEach(e=>{let[t,r]=e;u(t,r)})}},6310(e,t,r){r(7363);let o=r(2069),n=r(6897),a=r(5216),i=r(630);t.remotes=function(e){a.updateRemoteOptions(e);let{chunkId:t,promises:r,webpackRequire:s,chunkMapping:l,idToExternalAndNameMapping:u,idToRemoteMap:c}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{let t=s.R;t||(t=[]);let o=u[e],a=c[e]||[];if(t.indexOf(o)>=0)return;if(t.push(o),o.p)return r.push(o.p);let l=t=>{t||(t=Error("Container missing")),"string"==typeof t.message&&(t.message+=` -while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,p,r):l();var p=(e,r,n)=>d(r.get,o[1],t,0,h,n),h=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let m=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(m,o[2],0,0,h,1):d(s,o[2],0,0,f,1)})}},5216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=c;if(f&&p){for(let[e,t]of Object.entries(p))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},4043(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,p,h,m=r(6927),g=r.n(m);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={"@sdk":[{alias:"@sdk",externalType:"promise",shareScope:"default"}]},_="pimcore_studio_ui_bundle_core",S="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},m=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},b=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},M=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},N={},T=[],O={},A=null==(p=r.initializeExposesData)?void 0:p.shareScope;for(let e in g())r.federation[e]=g()[e];m(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(M))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),m(r.federation,"initOptions",()=>({})),m(r.federation.initOptions,"name",()=>_),m(r.federation.initOptions,"shareStrategy",()=>S),m(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),m(r.federation,"bundlerRuntimeOptions",()=>({})),m(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),m(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>b),m(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),m(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),m(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:b,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:N,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:T,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(h=r.consumesLoadingData)?void 0:h.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:N,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}},8448(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](r,r.exports,__webpack_require__),r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(7570),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return 544==e},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(r,o){if(1&o&&(r=this(r)),8&o||"object"==typeof r&&r&&(4&o&&r.__esModule||16&o&&"function"==typeof r.then))return r;var n=Object.create(null);__webpack_require__.r(n);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&o&&r;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>r[e]});return a.default=()=>r,__webpack_require__.d(n,a),n}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>""+e+".javascript"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[8448]},uniqueName:"pimcore_studio_ui_bundle_core"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{},moduleIdToConsumeDataMapping:{},initialConsumes:[]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={544:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(544==t){var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}else e[t]=0};var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);s&&s(__webpack_require__)}for(t&&t(r);l{__webpack_require__.remotesLoadingData={chunkMapping:{742:["9005"]},moduleIdToRemoteDataMapping:{9005:{shareScope:"default",name:"./_internal_/mf-bootstrap-document-editor-iframe",externalModuleId:8448,remoteName:"@sdk"}}},__webpack_require__.f.remotes=__webpack_require__.f.remotes||function(){throw Error("should have __webpack_require__.f.remotes")}})(),(()=>{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(4043)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file +while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,p,r):l();var p=(e,r,n)=>d(r.get,o[1],t,0,h,n),h=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let m=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(m,o[2],0,0,h,1):d(s,o[2],0,0,f,1)})}},5216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=c;if(f&&p){for(let[e,t]of Object.entries(p))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},4043(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,p,h,m=r(6927),g=r.n(m);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={"@sdk":[{alias:"@sdk",externalType:"promise",shareScope:"default"}]},_="pimcore_studio_ui_bundle_core",S="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},m=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},b=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},M=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},N={},T=[],O={},A=null==(p=r.initializeExposesData)?void 0:p.shareScope;for(let e in g())r.federation[e]=g()[e];m(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(M))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),m(r.federation,"initOptions",()=>({})),m(r.federation.initOptions,"name",()=>_),m(r.federation.initOptions,"shareStrategy",()=>S),m(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),m(r.federation,"bundlerRuntimeOptions",()=>({})),m(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),m(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>b),m(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),m(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),m(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:b,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:N,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:T,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(h=r.consumesLoadingData)?void 0:h.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:N,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}},8448(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](r,r.exports,__webpack_require__),r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(7570),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return 544==e},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(r,o){if(1&o&&(r=this(r)),8&o||"object"==typeof r&&r&&(4&o&&r.__esModule||16&o&&"function"==typeof r.then))return r;var n=Object.create(null);__webpack_require__.r(n);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&o&&r;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>r[e]});return a.default=()=>r,__webpack_require__.d(n,a),n}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>""+e+".javascript"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[8448]},uniqueName:"pimcore_studio_ui_bundle_core"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{},moduleIdToConsumeDataMapping:{},initialConsumes:[]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={544:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(544==t){var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}else e[t]=0};var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);s&&s(__webpack_require__)}for(t&&t(r);l{__webpack_require__.remotesLoadingData={chunkMapping:{742:["9005"]},moduleIdToRemoteDataMapping:{9005:{shareScope:"default",name:"./_internal_/mf-bootstrap-document-editor-iframe",externalModuleId:8448,remoteName:"@sdk"}}},__webpack_require__.f.remotes=__webpack_require__.f.remotes||function(){throw Error("should have __webpack_require__.f.remotes")}})(),(()=>{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(4043)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js.LICENSE.txt b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js.LICENSE.txt similarity index 100% rename from public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/documentEditorIframe.1ca922d1.js.LICENSE.txt rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/documentEditorIframe.767a911e.js.LICENSE.txt diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js similarity index 99% rename from public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js index e5ef189912..ba11f6c1d0 100644 --- a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js +++ b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js @@ -1,7 +1,7 @@ -/*! For license information please see main.fd5cd6b1.js.LICENSE.txt */ +/*! For license information please see main.c894eeac.js.LICENSE.txt */ (()=>{var __webpack_modules__={5095(e,t,r){r.e("517").then(r.t.bind(r,8476,23))},6619(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8130);t.logAndReport=function(e,t,r,n,a,i){return n(o.getShortErrorMsg(e,t,r,a))}},9810(e,t,r){let o=r(924),n={[o.RUNTIME_001]:"Failed to get remoteEntry exports.",[o.RUNTIME_002]:'The remote entry interface does not contain "init"',[o.RUNTIME_003]:"Failed to get manifest.",[o.RUNTIME_004]:"Failed to locate remote.",[o.RUNTIME_005]:"Invalid loadShareSync function call from bundler runtime",[o.RUNTIME_006]:"Invalid loadShareSync function call from runtime",[o.RUNTIME_007]:"Failed to get remote snapshot.",[o.RUNTIME_008]:"Failed to load script resources.",[o.RUNTIME_009]:"Please call createInstance first.",[o.RUNTIME_010]:'The name option cannot be changed after initialization. If you want to create a new instance with a different name, please use "createInstance" api.',[o.RUNTIME_011]:"The remoteEntry URL is missing from the remote snapshot."},a={[o.TYPE_001]:"Failed to generate type declaration. Execute the below cmd to reproduce and fix the error."},i={[o.BUILD_001]:"Failed to find expose module.",[o.BUILD_002]:"PublicPath is required in prod mode."},s={...n,...a,...i};t.buildDescMap=i,t.errorDescMap=s,t.runtimeDescMap=n,t.typeDescMap=a},924(e,t){let r="RUNTIME-001",o="RUNTIME-002",n="RUNTIME-003",a="RUNTIME-004",i="RUNTIME-005",s="RUNTIME-006",l="RUNTIME-007",u="RUNTIME-008",c="RUNTIME-009",d="RUNTIME-010",f="RUNTIME-011",p="TYPE-001",h="BUILD-002";t.BUILD_001="BUILD-001",t.BUILD_002=h,t.RUNTIME_001=r,t.RUNTIME_002=o,t.RUNTIME_003=n,t.RUNTIME_004=a,t.RUNTIME_005=i,t.RUNTIME_006=s,t.RUNTIME_007=l,t.RUNTIME_008=u,t.RUNTIME_009=c,t.RUNTIME_010=d,t.RUNTIME_011=f,t.TYPE_001=p},8130(e,t){let r=e=>`View the docs to see how to solve: https://module-federation.io/guide/troubleshooting/${e.split("-")[0].toLowerCase()}#${e.toLowerCase()}`;t.getShortErrorMsg=(e,t,o,n)=>{let a=[`${[t[e]]} #${e}`];return o&&a.push(`args: ${JSON.stringify(o)}`),a.push(r(e)),n&&a.push(`Original Error Message: ${n}`),a.join("\n")}},4363(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(924),n=r(8130),a=r(9810);t.BUILD_001=o.BUILD_001,t.BUILD_002=o.BUILD_002,t.RUNTIME_001=o.RUNTIME_001,t.RUNTIME_002=o.RUNTIME_002,t.RUNTIME_003=o.RUNTIME_003,t.RUNTIME_004=o.RUNTIME_004,t.RUNTIME_005=o.RUNTIME_005,t.RUNTIME_006=o.RUNTIME_006,t.RUNTIME_007=o.RUNTIME_007,t.RUNTIME_008=o.RUNTIME_008,t.RUNTIME_009=o.RUNTIME_009,t.RUNTIME_010=o.RUNTIME_010,t.RUNTIME_011=o.RUNTIME_011,t.TYPE_001=o.TYPE_001,t.buildDescMap=a.buildDescMap,t.errorDescMap=a.errorDescMap,t.getShortErrorMsg=n.getShortErrorMsg,t.runtimeDescMap=a.runtimeDescMap,t.typeDescMap=a.typeDescMap},1748(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},2926(e,t){let r="default";t.DEFAULT_REMOTE_TYPE="global",t.DEFAULT_SCOPE=r},5871(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(7829),s=r(8457),l=r(556);r(1132);let u=r(2003),c=r(6227),d=r(2964),f=r(2593),p=r(2299),h=r(317);r(4317);let m=r(4260),g=r(4710),y=r(9152),E=r(7300),_=r(1777),S=r(630),b=r(4363);t.ModuleFederation=class{initOptions(e){e.name&&e.name!==this.options.name&&o.error((0,b.getShortErrorMsg)(b.RUNTIME_010,b.runtimeDescMap)),this.registerPlugins(e.plugins);let t=this.formatOptions(this.options,e);return this.options=t,t}async loadShare(e,t){return this.sharedHandler.loadShare(e,t)}loadShareSync(e,t){return this.sharedHandler.loadShareSync(e,t)}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0;return this.sharedHandler.initializeSharing(e,t)}initRawContainer(e,t,r){let o=l.getRemoteInfo({name:e,entry:t}),n=new u.Module({host:this,remoteInfo:o});return n.remoteEntryExports=r,this.moduleCache.set(e,n),n}async loadRemote(e,t){return this.remoteHandler.loadRemote(e,t)}async preloadRemote(e){return this.remoteHandler.preloadRemote(e)}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};this.sharedHandler.initShareScopeMap(e,t,r)}formatOptions(e,t){let{allShareInfos:r}=a.formatShareConfigs(e,t),{userOptions:o,options:n}=this.hooks.lifecycle.beforeInit.emit({origin:this,userOptions:t,options:e,shareInfo:r}),i=this.remoteHandler.formatAndRegisterRemote(n,o),{allShareInfos:s}=this.sharedHandler.registerShared(n,o),l=[...n.plugins];o.plugins&&o.plugins.forEach(e=>{l.includes(e)||l.push(e)});let u={...e,...t,plugins:l,remotes:i,shared:s};return this.hooks.lifecycle.init.emit({origin:this,options:u}),u}registerPlugins(e){let t=s.registerPlugins(e,this);this.options.plugins=this.options.plugins.reduce((e,t)=>(t&&e&&!e.find(e=>e.name===t.name)&&e.push(t),e),t||[])}registerRemotes(e,t){return this.remoteHandler.registerRemotes(e,t)}registerShared(e){this.sharedHandler.registerShared(this.options,{...this.options,shared:e})}constructor(e){this.hooks=new h.PluginSystem({beforeInit:new f.SyncWaterfallHook("beforeInit"),init:new c.SyncHook,beforeInitContainer:new p.AsyncWaterfallHook("beforeInitContainer"),initContainer:new p.AsyncWaterfallHook("initContainer")}),this.version="2.2.3",this.moduleCache=new Map,this.loaderHook=new h.PluginSystem({getModuleInfo:new c.SyncHook,createScript:new c.SyncHook,createLink:new c.SyncHook,fetch:new d.AsyncHook,loadEntryError:new d.AsyncHook,getModuleFactory:new d.AsyncHook}),this.bridgeHook=new h.PluginSystem({beforeBridgeRender:new c.SyncHook,afterBridgeRender:new c.SyncHook,beforeBridgeDestroy:new c.SyncHook,afterBridgeDestroy:new c.SyncHook});const t=[m.snapshotPlugin(),g.generatePreloadAssetsPlugin()],r={id:i.getBuilderId(),name:e.name,plugins:t,remotes:[],shared:{},inBrowser:S.isBrowserEnvValue};this.name=e.name,this.options=r,this.snapshotHandler=new y.SnapshotHandler(this),this.sharedHandler=new E.SharedHandler(this),this.remoteHandler=new _.RemoteHandler(this),this.shareScopeMap=this.sharedHandler.shareScopeMap,this.registerPlugins([...r.plugins,...e.plugins||[]]),this.options=this.formatOptions(r,e)}}},4391(e,t,r){let o=r(8628),n=r(9350),a=r(630),i="object"==typeof globalThis?globalThis:window,s=(()=>{try{return document.defaultView}catch{return i}})(),l=s;function u(e,t,r){Object.defineProperty(e,t,{value:r,configurable:!1,writable:!0})}function c(e,t){return Object.hasOwnProperty.call(e,t)}c(i,"__GLOBAL_LOADING_REMOTE_ENTRY__")||u(i,"__GLOBAL_LOADING_REMOTE_ENTRY__",{});let d=i.__GLOBAL_LOADING_REMOTE_ENTRY__;function f(e){var t,r,o,n,a,i;c(e,"__VMOK__")&&!c(e,"__FEDERATION__")&&u(e,"__FEDERATION__",e.__VMOK__),c(e,"__FEDERATION__")||(u(e,"__FEDERATION__",{__GLOBAL_PLUGIN__:[],__INSTANCES__:[],moduleInfo:{},__SHARE__:{},__MANIFEST_LOADING__:{},__PRELOADED_MAP__:new Map}),u(e,"__VMOK__",e.__FEDERATION__)),(t=e.__FEDERATION__).__GLOBAL_PLUGIN__??(t.__GLOBAL_PLUGIN__=[]),(r=e.__FEDERATION__).__INSTANCES__??(r.__INSTANCES__=[]),(o=e.__FEDERATION__).moduleInfo??(o.moduleInfo={}),(n=e.__FEDERATION__).__SHARE__??(n.__SHARE__={}),(a=e.__FEDERATION__).__MANIFEST_LOADING__??(a.__MANIFEST_LOADING__={}),(i=e.__FEDERATION__).__PRELOADED_MAP__??(i.__PRELOADED_MAP__=new Map)}function p(){i.__FEDERATION__.__GLOBAL_PLUGIN__=[],i.__FEDERATION__.__INSTANCES__=[],i.__FEDERATION__.moduleInfo={},i.__FEDERATION__.__SHARE__={},i.__FEDERATION__.__MANIFEST_LOADING__={},Object.keys(d).forEach(e=>{delete d[e]})}function h(e){i.__FEDERATION__.__INSTANCES__.push(e)}function m(){return i.__FEDERATION__.__DEBUG_CONSTRUCTOR__}function g(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,a.isDebugMode)();t&&(i.__FEDERATION__.__DEBUG_CONSTRUCTOR__=e,i.__FEDERATION__.__DEBUG_CONSTRUCTOR_VERSION__="2.2.3")}function y(e,t){if("string"==typeof t)if(e[t])return{value:e[t],key:t};else{for(let r of Object.keys(e)){let[o,n]=r.split(":"),a=`${o}:${t}`,i=e[a];if(i)return{value:i,key:a}}return{value:void 0,key:t}}o.error(`getInfoWithoutType: "key" must be a string, got ${typeof t} (${JSON.stringify(t)}).`)}f(i),f(s);let E=()=>s.__FEDERATION__.moduleInfo,_=(e,t)=>{let r=y(t,n.getFMId(e)).value;if(r&&!r.version&&"version"in e&&e.version&&(r.version=e.version),r)return r;if("version"in e&&e.version){let{version:t,...r}=e,o=n.getFMId(r),a=y(s.__FEDERATION__.moduleInfo,o).value;if((null==a?void 0:a.version)===t)return a}},S=e=>_(e,s.__FEDERATION__.moduleInfo),b=(e,t)=>{let r=n.getFMId(e);return s.__FEDERATION__.moduleInfo[r]=t,s.__FEDERATION__.moduleInfo},v=e=>(s.__FEDERATION__.moduleInfo={...s.__FEDERATION__.moduleInfo,...e},()=>{for(let t of Object.keys(e))delete s.__FEDERATION__.moduleInfo[t]}),R=(e,t)=>{let r=t||`__FEDERATION_${e}:custom__`;return{remoteEntryKey:r,entryExports:i[r]}},I=e=>{let{__GLOBAL_PLUGIN__:t}=s.__FEDERATION__;e.forEach(e=>{-1===t.findIndex(t=>t.name===e.name)?t.push(e):o.warn(`The plugin ${e.name} has been registered.`)})},M=()=>s.__FEDERATION__.__GLOBAL_PLUGIN__,N=e=>i.__FEDERATION__.__PRELOADED_MAP__.get(e),T=e=>i.__FEDERATION__.__PRELOADED_MAP__.set(e,!0);t.CurrentGlobal=i,t.Global=l,t.addGlobalSnapshot=v,t.getGlobalFederationConstructor=m,t.getGlobalHostPlugins=M,t.getGlobalSnapshot=E,t.getGlobalSnapshotInfoByModuleInfo=S,t.getInfoWithoutType=y,t.getPreloaded=N,t.getRemoteEntryExports=R,t.getTargetSnapshotInfoByModuleInfo=_,t.globalLoading=d,t.nativeGlobal=s,t.registerGlobalPlugins=I,t.resetFederationGlobalInfo=p,t.setGlobalFederationConstructor=g,t.setGlobalFederationInstance=h,t.setGlobalSnapshotInfoByModuleInfo=b,t.setPreloaded=T},3509(e,t,r){let o=r(4391),n=r(8369),a=r(6079),i=r(556);r(1132);let s=r(9599),l={getRegisteredShare:n.getRegisteredShare,getGlobalShareScope:n.getGlobalShareScope};t.default={global:{Global:o.Global,nativeGlobal:o.nativeGlobal,resetFederationGlobalInfo:o.resetFederationGlobalInfo,setGlobalFederationInstance:o.setGlobalFederationInstance,getGlobalFederationConstructor:o.getGlobalFederationConstructor,setGlobalFederationConstructor:o.setGlobalFederationConstructor,getInfoWithoutType:o.getInfoWithoutType,getGlobalSnapshot:o.getGlobalSnapshot,getTargetSnapshotInfoByModuleInfo:o.getTargetSnapshotInfoByModuleInfo,getGlobalSnapshotInfoByModuleInfo:o.getGlobalSnapshotInfoByModuleInfo,setGlobalSnapshotInfoByModuleInfo:o.setGlobalSnapshotInfoByModuleInfo,addGlobalSnapshot:o.addGlobalSnapshot,getRemoteEntryExports:o.getRemoteEntryExports,registerGlobalPlugins:o.registerGlobalPlugins,getGlobalHostPlugins:o.getGlobalHostPlugins,getPreloaded:o.getPreloaded,setPreloaded:o.setPreloaded},share:l,utils:{matchRemoteWithNameAndExpose:a.matchRemoteWithNameAndExpose,preloadAssets:s.preloadAssets,getRemoteInfo:i.getRemoteInfo}}},5922(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(8628),n=r(9350),a=r(4391),i=r(3957),s=r(8369),l=r(6079),u=r(556);r(1132);let c=r(3509),d=r(2003),f=r(5871),p=r(7703),h=r(630),m=c.default;t.CurrentGlobal=a.CurrentGlobal,t.Global=a.Global,t.Module=d.Module,t.ModuleFederation=f.ModuleFederation,t.addGlobalSnapshot=a.addGlobalSnapshot,t.assert=o.assert,t.error=o.error,t.getGlobalFederationConstructor=a.getGlobalFederationConstructor,t.getGlobalSnapshot=a.getGlobalSnapshot,t.getInfoWithoutType=a.getInfoWithoutType,t.getRegisteredShare=s.getRegisteredShare,t.getRemoteEntry=u.getRemoteEntry,t.getRemoteInfo=u.getRemoteInfo,t.helpers=m,t.isStaticResourcesEqual=n.isStaticResourcesEqual,Object.defineProperty(t,"loadScript",{enumerable:!0,get:function(){return h.loadScript}}),Object.defineProperty(t,"loadScriptNode",{enumerable:!0,get:function(){return h.loadScriptNode}}),t.matchRemoteWithNameAndExpose=l.matchRemoteWithNameAndExpose,t.registerGlobalPlugins=a.registerGlobalPlugins,t.resetFederationGlobalInfo=a.resetFederationGlobalInfo,t.safeWrapper=n.safeWrapper,t.satisfy=i.satisfy,t.setGlobalFederationConstructor=a.setGlobalFederationConstructor,t.setGlobalFederationInstance=a.setGlobalFederationInstance,Object.defineProperty(t,"types",{enumerable:!0,get:function(){return p.type_exports}})},2003(e,t,r){let o=r(8628),n=r(9350),a=r(556),i=r(8393);r(1132);let s=r(630),l=r(4363);function u(e,t,r){let o=t,n=Array.isArray(e.shareScope)?e.shareScope:[e.shareScope];n.length||n.push("default"),n.forEach(e=>{o[e]||(o[e]={})});let a={version:e.version||"",shareScopeKeys:Array.isArray(e.shareScope)?n:e.shareScope||"default"};return Object.defineProperty(a,"shareScopeMap",{value:o,enumerable:!1}),{remoteEntryInitOptions:a,shareScope:o[n[0]],initScope:r??[]}}t.Module=class{async getEntry(){if(this.remoteEntryExports)return this.remoteEntryExports;let e=await a.getRemoteEntry({origin:this.host,remoteInfo:this.remoteInfo,remoteEntryExports:this.remoteEntryExports});return o.assert(e,`remoteEntryExports is undefined ${(0,s.safeToString)(this.remoteInfo)}`),this.remoteEntryExports=e,this.remoteEntryExports}async init(e,t,r){let n=await this.getEntry();if(this.inited)return n;if(this.initPromise)return await this.initPromise,n;this.initing=!0,this.initPromise=(async()=>{let{remoteEntryInitOptions:a,shareScope:s,initScope:c}=u(this.remoteInfo,this.host.shareScopeMap,r),d=await this.host.hooks.lifecycle.beforeInitContainer.emit({shareScope:s,remoteEntryInitOptions:a,initScope:c,remoteInfo:this.remoteInfo,origin:this.host});void 0===(null==n?void 0:n.init)&&o.error(l.RUNTIME_002,l.runtimeDescMap,{hostName:this.host.name,remoteName:this.remoteInfo.name,remoteEntryUrl:this.remoteInfo.entry,remoteEntryKey:this.remoteInfo.entryGlobalName},void 0,i.optionsToMFContext(this.host.options)),await n.init(d.shareScope,d.initScope,d.remoteEntryInitOptions),await this.host.hooks.lifecycle.initContainer.emit({...d,id:e,remoteSnapshot:t,remoteEntryExports:n}),this.inited=!0})();try{await this.initPromise}finally{this.initing=!1,this.initPromise=void 0}return n}async get(e,t,r,a){let i,{loadFactory:s=!0}=r||{loadFactory:!0},l=await this.init(e,a);this.lib=l,(i=await this.host.loaderHook.lifecycle.getModuleFactory.emit({remoteEntryExports:l,expose:t,moduleInfo:this.remoteInfo}))||(i=await l.get(t)),o.assert(i,`${n.getFMId(this.remoteInfo)} remote don't export ${t}.`);let u=n.processModuleAlias(this.remoteInfo.name,t),c=this.wraperFactory(i,u);return s?await c():c}wraperFactory(e,t){function r(e,t){e&&"object"==typeof e&&Object.isExtensible(e)&&!Object.getOwnPropertyDescriptor(e,Symbol.for("mf_module_id"))&&Object.defineProperty(e,Symbol.for("mf_module_id"),{value:t,enumerable:!1})}return e instanceof Promise?async()=>{let o=await e();return r(o,t),o}:()=>{let o=e();return r(o,t),o}}constructor({remoteInfo:e,host:t}){this.inited=!1,this.initing=!1,this.lib=void 0,this.remoteInfo=e,this.host=t}}},4710(e,t,r){let o=r(9350),n=r(4391),a=r(8369);r(1132);let i=r(9599),s=r(4260),l=r(630);function u(e){let t=e.split(":");return 1===t.length?{name:t[0],version:void 0}:2===t.length?{name:t[0],version:t[1]}:{name:t[1],version:t[2]}}function c(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},s=arguments.length>5?arguments[5]:void 0,{value:d}=n.getInfoWithoutType(e,o.getFMId(t)),f=s||d;if(f&&!(0,l.isManifestProvider)(f)&&(r(f,t,a),f.remotesInfo))for(let t of Object.keys(f.remotesInfo)){if(i[t])continue;i[t]=!0;let o=u(t),n=f.remotesInfo[t];c(e,{name:o.name,version:n.matchedVersion},r,!1,i,void 0)}}let d=(e,t)=>document.querySelector(`${e}[${"link"===e?"href":"src"}="${t}"]`);function f(e,t,r,s,u){let f=[],p=[],h=[],m=new Set,g=new Set,{options:y}=e,{preloadConfig:E}=t,{depsRemote:_}=E;if(c(s,r,(t,r,a)=>{var s;let u;if(a)u=E;else if(Array.isArray(_)){let e=_.find(e=>e.nameOrAlias===r.name||e.nameOrAlias===r.alias);if(!e)return;u=i.defaultPreloadArgs(e)}else{if(!0!==_)return;u=E}let c=(0,l.getResourceUrl)(t,o.getRemoteEntryInfoFromSnapshot(t).url);c&&h.push({name:r.name,moduleInfo:{name:r.name,entry:c,type:"remoteEntryType"in t?t.remoteEntryType:"global",entryGlobalName:"globalName"in t?t.globalName:r.name,shareScope:"",version:"version"in t?t.version:void 0},url:c});let d="modules"in t?t.modules:[],m=i.normalizePreloadExposes(u.exposes);function g(e){let r=e.map(e=>(0,l.getResourceUrl)(t,e));return u.filter?r.filter(u.filter):r}if(m.length&&"modules"in t&&(d=null==t||null==(s=t.modules)?void 0:s.reduce((e,t)=>((null==m?void 0:m.indexOf(t.moduleName))!==-1&&e.push(t),e),[])),d){let o=d.length;for(let a=0;a0){let t=(t,r)=>{let{shared:o}=a.getRegisteredShare(e.shareScopeMap,r.sharedName,t,e.sharedHandler.hooks.lifecycle.resolveShare)||{};o&&"function"==typeof o.lib&&(r.assets.js.sync.forEach(e=>{m.add(e)}),r.assets.css.sync.forEach(e=>{g.add(e)}))};u.shared.forEach(e=>{var r;let n=null==(r=y.shared)?void 0:r[e.sharedName];if(!n)return;let a=e.version?n.find(t=>t.version===e.version):n;a&&o.arrayOptions(a).forEach(r=>{t(r,e)})})}let S=p.filter(e=>!m.has(e)&&!d("script",e));return{cssAssets:f.filter(e=>!g.has(e)&&!d("link",e)),jsAssetsWithoutEntry:S,entryAssets:h.filter(e=>!d("script",e.url))}}t.generatePreloadAssetsPlugin=function(){return{name:"generate-preload-assets-plugin",async generatePreloadAssets(e){let{origin:t,preloadOptions:r,remoteInfo:n,remote:a,globalSnapshot:i,remoteSnapshot:u}=e;return l.isBrowserEnvValue?o.isRemoteInfoWithEntry(a)&&o.isPureRemoteEntry(a)?{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[{name:a.name,url:a.entry,moduleInfo:{name:n.name,entry:a.entry,type:n.type||"global",entryGlobalName:"",shareScope:""}}]}:(s.assignRemoteInfo(n,u),f(t,r,n,i,u)):{cssAssets:[],jsAssetsWithoutEntry:[],entryAssets:[]}}}}},9152(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(8393);r(1132);let s=r(2964),l=r(2299),u=r(317);r(4317);let c=r(630),d=r(4363);function f(e,t){let r=a.getGlobalSnapshotInfoByModuleInfo({name:t.name,version:t.options.version}),o=r&&"remotesInfo"in r&&r.remotesInfo&&a.getInfoWithoutType(r.remotesInfo,e.name).value;return o&&o.matchedVersion?{hostGlobalSnapshot:r,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:o.matchedVersion})}:{hostGlobalSnapshot:void 0,globalSnapshot:a.getGlobalSnapshot(),remoteSnapshot:a.getGlobalSnapshotInfoByModuleInfo({name:e.name,version:"version"in e?e.version:void 0})}}t.SnapshotHandler=class{async loadRemoteSnapshotInfo(e){let t,r,{moduleInfo:s,id:l,expose:u}=e,{options:f}=this.HostInstance;await this.hooks.lifecycle.beforeLoadRemoteSnapshot.emit({options:f,moduleInfo:s});let p=a.getGlobalSnapshotInfoByModuleInfo({name:this.HostInstance.options.name,version:this.HostInstance.options.version});p||(p={version:this.HostInstance.options.version||"",remoteEntry:"",remotesInfo:{}},a.addGlobalSnapshot({[this.HostInstance.options.name]:p})),p&&"remotesInfo"in p&&!a.getInfoWithoutType(p.remotesInfo,s.name).value&&("version"in s||"entry"in s)&&(p.remotesInfo={...null==p?void 0:p.remotesInfo,[s.name]:{matchedVersion:"version"in s?s.version:s.entry}});let{hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g}=this.getGlobalRemoteInfo(s),{remoteSnapshot:y,globalSnapshot:E}=await this.hooks.lifecycle.loadSnapshot.emit({options:f,moduleInfo:s,hostGlobalSnapshot:h,remoteSnapshot:m,globalSnapshot:g});if(y)if((0,c.isManifestProvider)(y)){let e=c.isBrowserEnvValue?y.remoteEntry:y.ssrRemoteEntry||y.remoteEntry||"",o=await this.getManifestJson(e,s,{}),n=a.setGlobalSnapshotInfoByModuleInfo({...s,entry:e},o);t=o,r=n}else{let{remoteSnapshot:e}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:y,from:"global"});t=e,r=E}else if(n.isRemoteInfoWithEntry(s)){let e=await this.getManifestJson(s.entry,s,{}),o=a.setGlobalSnapshotInfoByModuleInfo(s,e),{remoteSnapshot:n}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:s,remoteSnapshot:e,from:"global"});t=n,r=o}else o.error(d.RUNTIME_007,d.runtimeDescMap,{remoteName:s.name,remoteVersion:s.version,hostName:this.HostInstance.options.name,globalSnapshot:JSON.stringify(E)},void 0,i.optionsToMFContext(this.HostInstance.options));return await this.hooks.lifecycle.afterLoadSnapshot.emit({id:l,host:this.HostInstance,options:f,moduleInfo:s,remoteSnapshot:t}),{remoteSnapshot:t,globalSnapshot:r}}getGlobalRemoteInfo(e){return f(e,this.HostInstance)}async getManifestJson(e,t,r){let n=async()=>{let r=this.manifestCache.get(e);if(r)return r;try{let t=await this.loaderHook.lifecycle.fetch.emit(e,{});t&&t instanceof Response||(t=await fetch(e,{})),r=await t.json()}catch(n){(r=await this.HostInstance.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:n,from:"runtime",lifecycle:"afterResolve",origin:this.HostInstance}))||(delete this.manifestLoading[e],o.error(d.RUNTIME_003,d.runtimeDescMap,{manifestUrl:e,moduleName:t.name,hostName:this.HostInstance.options.name},`${n}`,i.optionsToMFContext(this.HostInstance.options)))}return o.assert(r.metaData&&r.exposes&&r.shared,`"${e}" is not a valid federation manifest for remote "${t.name}". Missing required fields: ${[!r.metaData&&"metaData",!r.exposes&&"exposes",!r.shared&&"shared"].filter(Boolean).join(", ")}.`),this.manifestCache.set(e,r),r},a=async()=>{let r=await n(),o=(0,c.generateSnapshotFromManifest)(r,{version:e}),{remoteSnapshot:a}=await this.hooks.lifecycle.loadRemoteSnapshot.emit({options:this.HostInstance.options,moduleInfo:t,manifestJson:r,remoteSnapshot:o,manifestUrl:e,from:"manifest"});return a};return this.manifestLoading[e]||(this.manifestLoading[e]=a().then(e=>e)),this.manifestLoading[e]}constructor(e){this.loadingHostSnapshot=null,this.manifestCache=new Map,this.hooks=new u.PluginSystem({beforeLoadRemoteSnapshot:new s.AsyncHook("beforeLoadRemoteSnapshot"),loadSnapshot:new l.AsyncWaterfallHook("loadGlobalSnapshot"),loadRemoteSnapshot:new l.AsyncWaterfallHook("loadRemoteSnapshot"),afterLoadSnapshot:new l.AsyncWaterfallHook("afterLoadSnapshot")}),this.manifestLoading=a.Global.__FEDERATION__.__MANIFEST_LOADING__,this.HostInstance=e,this.loaderHook=e.loaderHook}},t.getGlobalRemoteInfo=f},4260(e,t,r){let o=r(8628),n=r(9350);r(1132);let a=r(9599),i=r(630),s=r(4363);function l(e,t){let r=n.getRemoteEntryInfoFromSnapshot(t);r.url||o.error(s.RUNTIME_011,s.runtimeDescMap,{remoteName:e.name});let a=(0,i.getResourceUrl)(t,r.url);i.isBrowserEnvValue||a.startsWith("http")||(a=`https:${a}`),e.type=r.type,e.entryGlobalName=r.globalName,e.entry=a,e.version=t.version,e.buildVersion=t.buildVersion}function u(){return{name:"snapshot-plugin",async afterResolve(e){let{remote:t,pkgNameOrAlias:r,expose:o,origin:i,remoteInfo:s,id:u}=e;if(!n.isRemoteInfoWithEntry(t)||!n.isPureRemoteEntry(t)){let{remoteSnapshot:n,globalSnapshot:c}=await i.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:t,id:u});l(s,n);let d={remote:t,preloadConfig:{nameOrAlias:r,exposes:[o],resourceCategory:"sync",share:!1,depsRemote:!1}},f=await i.remoteHandler.hooks.lifecycle.generatePreloadAssets.emit({origin:i,preloadOptions:d,remoteInfo:s,remote:t,remoteSnapshot:n,globalSnapshot:c});return f&&a.preloadAssets(s,i,f,!1),{...e,remoteSnapshot:n}}return e}}}t.assignRemoteInfo=l,t.snapshotPlugin=u},1777(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(8369),s=r(6079),l=r(556),u=r(8393);r(1132);let c=r(9599),d=r(2003),f=r(6227),p=r(2964),h=r(2593),m=r(2299),g=r(317);r(4317);let y=r(9152),E=r(630),_=r(4363);t.RemoteHandler=class{formatAndRegisterRemote(e,t){return(t.remotes||[]).reduce((e,t)=>(this.registerRemote(t,e,{force:!1}),e),e.remotes)}setIdToRemoteMap(e,t){let{remote:r,expose:o}=t,{name:n,alias:a}=r;if(this.idToRemoteMap[e]={name:r.name,expose:o},a&&e.startsWith(n)){let t=e.replace(n,a);this.idToRemoteMap[t]={name:r.name,expose:o};return}if(a&&e.startsWith(a)){let t=e.replace(a,n);this.idToRemoteMap[t]={name:r.name,expose:o}}}async loadRemote(e,t){let{host:r}=this;try{let{loadFactory:o=!0}=t||{loadFactory:!0},{module:n,moduleOptions:a,remoteMatchInfo:i}=await this.getRemoteModuleAndOptions({id:e}),{pkgNameOrAlias:s,remote:l,expose:u,id:c,remoteSnapshot:d}=i,f=await n.get(c,u,t,d),p=await this.hooks.lifecycle.onLoad.emit({id:c,pkgNameOrAlias:s,expose:u,exposeModule:o?f:void 0,exposeModuleFactory:o?void 0:f,remote:l,options:a,moduleInstance:n,origin:r});if(this.setIdToRemoteMap(e,i),"function"==typeof p)return p;return f}catch(a){let{from:o="runtime"}=t||{from:"runtime"},n=await this.hooks.lifecycle.errorLoadRemote.emit({id:e,error:a,from:o,lifecycle:"onLoad",origin:r});if(!n)throw a;return n}}async preloadRemote(e){let{host:t}=this;await this.hooks.lifecycle.beforePreloadRemote.emit({preloadOps:e,options:t.options,origin:t});let r=c.formatPreloadArgs(t.options.remotes,e);await Promise.all(r.map(async e=>{let{remote:r}=e,o=l.getRemoteInfo(r),{globalSnapshot:n,remoteSnapshot:a}=await t.snapshotHandler.loadRemoteSnapshotInfo({moduleInfo:r}),i=await this.hooks.lifecycle.generatePreloadAssets.emit({origin:t,preloadOptions:e,remote:r,remoteInfo:o,globalSnapshot:n,remoteSnapshot:a});i&&c.preloadAssets(o,t,i)}))}registerRemotes(e,t){let{host:r}=this;e.forEach(e=>{this.registerRemote(e,r.options.remotes,{force:null==t?void 0:t.force})})}async getRemoteModuleAndOptions(e){let t,{host:r}=this,{id:n}=e;try{t=await this.hooks.lifecycle.beforeRequest.emit({id:n,options:r.options,origin:r})}catch(e){if(!(t=await this.hooks.lifecycle.errorLoadRemote.emit({id:n,options:r.options,origin:r,from:"runtime",error:e,lifecycle:"beforeRequest"})))throw e}let{id:a}=t,i=s.matchRemoteWithNameAndExpose(r.options.remotes,a);i||o.error(_.RUNTIME_004,_.runtimeDescMap,{hostName:r.options.name,requestId:a},void 0,u.optionsToMFContext(r.options));let{remote:c}=i,f=l.getRemoteInfo(c),p=await r.sharedHandler.hooks.lifecycle.afterResolve.emit({id:a,...i,options:r.options,origin:r,remoteInfo:f}),{remote:h,expose:m}=p;o.assert(h&&m,`The 'beforeRequest' hook was executed, but it failed to return the correct 'remote' and 'expose' values while loading ${a}.`);let g=r.moduleCache.get(h.name),y={host:r,remoteInfo:f};return g||(g=new d.Module(y),r.moduleCache.set(h.name,g)),{module:g,moduleOptions:y,remoteMatchInfo:p}}registerRemote(e,t,r){let{host:n}=this,i=()=>{if(e.alias){let r=t.find(t=>{var r;return e.alias&&(t.name.startsWith(e.alias)||(null==(r=t.alias)?void 0:r.startsWith(e.alias)))});o.assert(!r,`The alias ${e.alias} of remote ${e.name} is not allowed to be the prefix of ${r&&r.name} name or alias`)}"entry"in e&&E.isBrowserEnvValue&&"u">typeof window&&!e.entry.startsWith("http")&&(e.entry=new URL(e.entry,window.location.origin).href),e.shareScope||(e.shareScope=a.DEFAULT_SCOPE),e.type||(e.type=a.DEFAULT_REMOTE_TYPE)};this.hooks.lifecycle.beforeRegisterRemote.emit({remote:e,origin:n});let s=t.find(t=>t.name===e.name);if(s){let o=[`The remote "${e.name}" is already registered.`,"Please note that overriding it may cause unexpected errors."];(null==r?void 0:r.force)&&(this.removeRemote(s),i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n}),(0,E.warn)(o.join(" ")))}else i(),t.push(e),this.hooks.lifecycle.registerRemote.emit({remote:e,origin:n})}removeRemote(e){try{let{host:r}=this,{name:o}=e,a=r.options.remotes.findIndex(e=>e.name===o);-1!==a&&r.options.remotes.splice(a,1);let s=r.moduleCache.get(e.name);if(s){var t;let o=s.remoteInfo,a=o.entryGlobalName;n.CurrentGlobal[a]&&((null==(t=Object.getOwnPropertyDescriptor(n.CurrentGlobal,a))?void 0:t.configurable)?delete n.CurrentGlobal[a]:n.CurrentGlobal[a]=void 0);let u=l.getRemoteEntryUniqueKey(s.remoteInfo);n.globalLoading[u]&&delete n.globalLoading[u],r.snapshotHandler.manifestCache.delete(o.entry);let c=o.buildVersion?(0,E.composeKeyWithSeparator)(o.name,o.buildVersion):o.name,d=n.CurrentGlobal.__FEDERATION__.__INSTANCES__.findIndex(e=>o.buildVersion?e.options.id===c:e.name===c);if(-1!==d){let e=n.CurrentGlobal.__FEDERATION__.__INSTANCES__[d];c=e.options.id||c;let t=i.getGlobalShareScope(),r=!0,a=[];Object.keys(t).forEach(e=>{let n=t[e];n&&Object.keys(n).forEach(t=>{let i=n[t];i&&Object.keys(i).forEach(n=>{let s=i[n];s&&Object.keys(s).forEach(i=>{let l=s[i];l&&"object"==typeof l&&l.from===o.name&&(l.loaded||l.loading?(l.useIn=l.useIn.filter(e=>e!==o.name),l.useIn.length?r=!1:a.push([e,t,n,i])):a.push([e,t,n,i]))})})})}),r&&(e.shareScopeMap={},delete t[c]),a.forEach(e=>{var r,o,n;let[a,i,s,l]=e;null==(n=t[a])||null==(o=n[i])||null==(r=o[s])||delete r[l]}),n.CurrentGlobal.__FEDERATION__.__INSTANCES__.splice(d,1)}let{hostGlobalSnapshot:f}=y.getGlobalRemoteInfo(e,r);if(f){let t=f&&"remotesInfo"in f&&f.remotesInfo&&n.getInfoWithoutType(f.remotesInfo,e.name).key;t&&(delete f.remotesInfo[t],n.Global.__FEDERATION__.__MANIFEST_LOADING__[t]&&delete n.Global.__FEDERATION__.__MANIFEST_LOADING__[t])}r.moduleCache.delete(e.name)}}catch(e){o.logger.error(`removeRemote failed: ${e instanceof Error?e.message:String(e)}`)}}constructor(e){this.hooks=new g.PluginSystem({beforeRegisterRemote:new h.SyncWaterfallHook("beforeRegisterRemote"),registerRemote:new h.SyncWaterfallHook("registerRemote"),beforeRequest:new m.AsyncWaterfallHook("beforeRequest"),onLoad:new p.AsyncHook("onLoad"),handlePreloadModule:new f.SyncHook("handlePreloadModule"),errorLoadRemote:new p.AsyncHook("errorLoadRemote"),beforePreloadRemote:new p.AsyncHook("beforePreloadRemote"),generatePreloadAssets:new p.AsyncHook("generatePreloadAssets"),afterPreloadRemote:new p.AsyncHook,loadEntry:new p.AsyncHook}),this.host=e,this.idToRemoteMap={}}}},7300(e,t,r){let o=r(8628),n=r(2926),a=r(8369),i=r(8393);r(1132);let s=r(2964),l=r(2593),u=r(2299),c=r(317);r(4317);let d=r(4363);t.SharedHandler=class{registerShared(e,t){let{newShareInfos:r,allShareInfos:o}=a.formatShareConfigs(e,t);return Object.keys(r).forEach(e=>{r[e].forEach(r=>{r.scope.forEach(o=>{var n;this.hooks.lifecycle.beforeRegisterShare.emit({origin:this.host,pkgName:e,shared:r}),(null==(n=this.shareScopeMap[o])?void 0:n[e])||this.setShared({pkgName:e,lib:r.lib,get:r.get,loaded:r.loaded||!!r.lib,shared:r,from:t.name})})})}),{newShareInfos:r,allShareInfos:o}}async loadShare(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&await Promise.all(n.scope.map(async e=>{await Promise.all(this.initializeSharing(e,{strategy:n.strategy}))}));let{shareInfo:i}=await this.hooks.lifecycle.beforeLoadShare.emit({pkgName:e,shareInfo:n,shared:r.options.shared,origin:r});o.assert(i,`Cannot find shared "${e}" in host "${r.options.name}". Ensure the shared config for "${e}" is declared in the federation plugin options and the host has been initialized before loading shares.`);let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(s){let t=a.directShare(s,l);if(t.lib)return a.addUseIn(t,r.options.name),t.lib;if(t.loading&&!t.loaded){let e=await t.loading;return t.loaded=!0,t.lib||(t.lib=e),a.addUseIn(t,r.options.name),e}{let o=(async()=>{let e=await t.get();return a.addUseIn(t,r.options.name),t.loaded=!0,t.lib=e,e})();return this.setShared({pkgName:e,loaded:!1,shared:s,from:r.options.name,lib:null,loading:o,treeShaking:l?t:void 0}),o}}{if(null==t?void 0:t.customShareInfo)return!1;let o=a.shouldUseTreeShaking(i.treeShaking),n=a.directShare(i,o),s=(async()=>{let t=await n.get();n.lib=t,n.loaded=!0,a.addUseIn(n,r.options.name);let{shared:o,useTreesShaking:s}=a.getRegisteredShare(this.shareScopeMap,e,i,this.hooks.lifecycle.resolveShare)||{};if(o){let e=a.directShare(o,s);e.lib=t,e.loaded=!0,o.from=i.from}return t})();return this.setShared({pkgName:e,loaded:!1,shared:i,from:r.options.name,lib:null,loading:s,treeShaking:o?n:void 0}),s}}initializeSharing(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:n.DEFAULT_SCOPE,t=arguments.length>1?arguments[1]:void 0,{host:r}=this,o=null==t?void 0:t.from,i=null==t?void 0:t.strategy,s=null==t?void 0:t.initScope,l=[];if("build"!==o){let{initTokens:t}=this;s||(s=[]);let r=t[e];if(r||(r=t[e]={from:this.host.name}),s.indexOf(r)>=0)return l;s.push(r)}let u=this.shareScopeMap,c=r.options.name;u[e]||(u[e]={});let d=u[e],f=(e,t)=>{var r;let{version:o,eager:n}=t;d[e]=d[e]||{};let i=d[e],s=i[o]&&a.directShare(i[o]),l=!!(s&&("eager"in s&&s.eager||"shareConfig"in s&&(null==(r=s.shareConfig)?void 0:r.eager)));(!s||"loaded-first"!==s.strategy&&!s.loaded&&(!n!=!l?n:c>i[o].from))&&(i[o]=t)},p=async e=>{let t,{module:o}=await r.remoteHandler.getRemoteModuleAndOptions({id:e});try{t=await o.getEntry()}catch(o){if(!(t=await r.remoteHandler.hooks.lifecycle.errorLoadRemote.emit({id:e,error:o,from:"runtime",lifecycle:"beforeLoadShare",origin:r})))return}finally{(null==t?void 0:t.init)&&!o.initing&&(o.remoteEntryExports=t,await o.init(void 0,void 0,s))}};return Object.keys(r.options.shared).forEach(t=>{r.options.shared[t].forEach(r=>{r.scope.includes(e)&&f(t,r)})}),("version-first"===r.options.shareStrategy||"version-first"===i)&&r.options.remotes.forEach(t=>{t.shareScope===e&&l.push(p(t.name))}),l}loadShareSync(e,t){let{host:r}=this,n=a.getTargetSharedOptions({pkgName:e,extraOptions:t,shareInfos:r.options.shared});(null==n?void 0:n.scope)&&n.scope.forEach(e=>{this.initializeSharing(e,{strategy:n.strategy})});let{shared:s,useTreesShaking:l}=a.getRegisteredShare(this.shareScopeMap,e,n,this.hooks.lifecycle.resolveShare)||{};if(s){if("function"==typeof s.lib)return a.addUseIn(s,r.options.name),s.loaded||(s.loaded=!0,s.from===r.options.name&&(n.loaded=!0)),s.lib;if("function"==typeof s.get){let t=s.get();if(!(t instanceof Promise))return a.addUseIn(s,r.options.name),this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:t,shared:s}),t}}if(n.lib)return n.loaded||(n.loaded=!0),n.lib;if(n.get){let a=n.get();return a instanceof Promise&&o.error((null==t?void 0:t.from)==="build"?d.RUNTIME_005:d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options)),n.lib=a,this.setShared({pkgName:e,loaded:!0,from:r.options.name,lib:n.lib,shared:n}),n.lib}o.error(d.RUNTIME_006,d.runtimeDescMap,{hostName:r.options.name,sharedPkgName:e},void 0,i.optionsToMFContext(r.options))}initShareScopeMap(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{host:o}=this;this.shareScopeMap[e]=t,this.hooks.lifecycle.initContainerShareScopeMap.emit({shareScope:t,options:o.options,origin:o,scopeName:e,hostShareScopeMap:r.hostShareScopeMap})}setShared(e){let{pkgName:t,shared:r,from:o,lib:n,loading:a,loaded:i,get:s,treeShaking:l}=e,{version:u,scope:c="default",...d}=r,f=Array.isArray(c)?c:[c],p=e=>{let t=(e,t,r)=>{r&&!e[t]&&(e[t]=r)},r=l?e.treeShaking:e;t(r,"loaded",i),t(r,"loading",a),t(r,"get",s)};f.forEach(e=>{this.shareScopeMap[e]||(this.shareScopeMap[e]={}),this.shareScopeMap[e][t]||(this.shareScopeMap[e][t]={}),this.shareScopeMap[e][t][u]||(this.shareScopeMap[e][t][u]={version:u,scope:[e],...d,lib:n});let r=this.shareScopeMap[e][t][u];p(r),o&&r.from!==o&&(r.from=o)})}_setGlobalShareScopeMap(e){let t=a.getGlobalShareScope(),r=e.id||e.name;r&&!t[r]&&(t[r]=this.shareScopeMap)}constructor(e){this.hooks=new c.PluginSystem({beforeRegisterShare:new l.SyncWaterfallHook("beforeRegisterShare"),afterResolve:new u.AsyncWaterfallHook("afterResolve"),beforeLoadShare:new u.AsyncWaterfallHook("beforeLoadShare"),loadShare:new s.AsyncHook,resolveShare:new l.SyncWaterfallHook("resolveShare"),initContainerShareScopeMap:new l.SyncWaterfallHook("initContainerShareScopeMap")}),this.host=e,this.shareScopeMap={},this.initTokens={},this._setGlobalShareScopeMap(e.options)}}},7703(e,t,r){var o=r(1748).__exportAll({});Object.defineProperty(t,"type_exports",{enumerable:!0,get:function(){return o}})},8393(e,t){function r(e){return{name:e.name,alias:e.alias,entry:"entry"in e?e.entry:void 0,version:"version"in e?e.version:void 0,type:e.type,entryGlobalName:e.entryGlobalName,shareScope:e.shareScope}}t.optionsToMFContext=function(e){var t,o,n,a,i,s;let l={};for(let[t,r]of Object.entries(e.shared)){let e=r[0];e&&(l[t]={version:e.version,singleton:null==(n=e.shareConfig)?void 0:n.singleton,requiredVersion:(null==(a=e.shareConfig)?void 0:a.requiredVersion)!==!1&&(null==(i=e.shareConfig)?void 0:i.requiredVersion),eager:e.eager,strictVersion:null==(s=e.shareConfig)?void 0:s.strictVersion})}return{project:{name:e.name,mfRole:(null==(t=e.remotes)?void 0:t.length)>0?"host":"unknown"},mfConfig:{name:e.name,remotes:(null==(o=e.remotes)?void 0:o.map(r))??[],shared:l}}}},7829(e,t,r){r(630),t.getBuilderId=function(){return"pimcore_studio_ui_bundle_core:0.0.1"}},2964(e,t,r){let o=r(6227);t.AsyncHook=class extends o.SyncHook{emit(){let e;for(var t=arguments.length,r=Array(t),o=0;o0){let t=0,o=e=>!1!==e&&(t0){let r=0,n=t=>(o.warn(t),this.onerror(t),e),a=o=>{if(i.checkReturnData(e,o)){if(e=o,r{let r=e[t];r&&this.lifecycle[t].on(r)})}}removePlugin(e){o.assert(e,"A name is required.");let t=this.registerPlugins[e];o.assert(t,`The plugin "${e}" is not registered.`),Object.keys(t).forEach(e=>{"name"!==e&&this.lifecycle[e].remove(t[e])})}constructor(e){this.registerPlugins={},this.lifecycle=e,this.lifecycleKeys=Object.keys(e)}}},6227(e,t){t.SyncHook=class{on(e){"function"==typeof e&&this.listeners.add(e)}once(e){let t=this;this.on(function r(){for(var o=arguments.length,n=Array(o),a=0;a0&&this.listeners.forEach(t=>{e=t(...r)}),e}remove(e){this.listeners.delete(e)}removeAll(){this.listeners.clear()}constructor(e){this.type="",this.listeners=new Set,e&&(this.type=e)}}},2593(e,t,r){let o=r(8628),n=r(9350),a=r(6227);function i(e,t){if(!n.isObject(t))return!1;if(e!==t){for(let r in e)if(!(r in t))return!1}return!0}t.SyncWaterfallHook=class extends a.SyncHook{emit(e){for(let t of(n.isObject(e)||o.error(`The data for the "${this.type}" hook should be an object.`),this.listeners))try{let r=t(e);if(i(e,r))e=r;else{this.onerror(`A plugin returned an unacceptable value for the "${this.type}" type.`);break}}catch(e){o.warn(e),this.onerror(e)}return e}constructor(e){super(),this.onerror=o.error,this.type=e}},t.checkReturnData=i},1132(e,t,r){r(8628),r(9350),r(7829),r(6079),r(8457),r(556),r(8393),r(630)},556(e,t,r){let o=r(8628),n=r(4391),a=r(2926),i=r(630),s=r(4363),l=".then(callbacks[0]).catch(callbacks[1])";async function u(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):"u">typeof FEDERATION_ALLOW_NEW_FUNCTION?Function("callbacks",`import("${t}")${l}`)([e,n]):import(t).then(e).catch(n)}catch(e){o.error(`Failed to load ESM entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}async function c(e){let{entry:t,remoteEntryExports:r}=e;return new Promise((e,n)=>{try{r?e(r):Function("callbacks",`System.import("${t}")${l}`)([e,n])}catch(e){o.error(`Failed to load SystemJS entry from "${t}". ${e instanceof Error?e.message:String(e)}`)}})}function d(e,t,r){let{remoteEntryKey:a,entryExports:i}=n.getRemoteEntryExports(e,t);return i||o.error(s.RUNTIME_001,s.runtimeDescMap,{remoteName:e,remoteEntryUrl:r,remoteEntryKey:a}),i}async function f(e){let{name:t,globalName:r,entry:a,loaderHook:l,getEntryUrl:u}=e,{entryExports:c}=n.getRemoteEntryExports(t,r);if(c)return c;let f=u?u(a):a;return(0,i.loadScript)(f,{attrs:{},createScriptHook:(e,t)=>{let r=l.lifecycle.createScript.emit({url:e,attrs:t});if(r&&(r instanceof HTMLScriptElement||"script"in r||"timeout"in r))return r}}).then(()=>d(t,r,a),e=>{let r=e instanceof Error?e.message:String(e);o.error(s.RUNTIME_008,s.runtimeDescMap,{remoteName:t,resourceUrl:f},r)})}async function p(e){let{remoteInfo:t,remoteEntryExports:r,loaderHook:o,getEntryUrl:n}=e,{entry:a,entryGlobalName:i,name:s,type:l}=t;switch(l){case"esm":case"module":return u({entry:a,remoteEntryExports:r});case"system":return c({entry:a,remoteEntryExports:r});default:return f({entry:a,globalName:i,name:s,loaderHook:o,getEntryUrl:n})}}async function h(e){let{remoteInfo:t,loaderHook:r}=e,{entry:a,entryGlobalName:s,name:l,type:u}=t,{entryExports:c}=n.getRemoteEntryExports(l,s);return c||(0,i.loadScriptNode)(a,{attrs:{name:l,globalName:s,type:u},loaderHook:{createScriptHook:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=r.lifecycle.createScript.emit({url:e,attrs:t});if(o&&"url"in o)return o}}}).then(()=>d(l,s,a)).catch(e=>{o.error(`Failed to load Node.js entry for remote "${l}" from "${a}". ${e instanceof Error?e.message:String(e)}`)})}function m(e){let{entry:t,name:r}=e;return(0,i.composeKeyWithSeparator)(r,t)}async function g(e){let{origin:t,remoteEntryExports:r,remoteInfo:o,getEntryUrl:a,_inErrorHandling:l=!1}=e,u=m(o);if(r)return r;if(!n.globalLoading[u]){let e=t.remoteHandler.hooks.lifecycle.loadEntry,c=t.loaderHook;n.globalLoading[u]=e.emit({loaderHook:c,remoteInfo:o,remoteEntryExports:r}).then(e=>e||(("u">typeof ENV_TARGET?"web"===ENV_TARGET:i.isBrowserEnvValue)?p({remoteInfo:o,remoteEntryExports:r,loaderHook:c,getEntryUrl:a}):h({remoteInfo:o,loaderHook:c}))).catch(async e=>{let a=m(o),i=e instanceof Error&&e.message.includes("ScriptExecutionError");if(e instanceof Error&&e.message.includes(s.RUNTIME_008)&&!i&&!l){let e=e=>g({...e,_inErrorHandling:!0}),i=await t.loaderHook.lifecycle.loadEntryError.emit({getRemoteEntry:e,origin:t,remoteInfo:o,remoteEntryExports:r,globalLoading:n.globalLoading,uniqueKey:a});if(i)return i}throw e})}return n.globalLoading[u]}function y(e){return{...e,entry:"entry"in e?e.entry:"",type:e.type||a.DEFAULT_REMOTE_TYPE,entryGlobalName:e.entryGlobalName||e.name,shareScope:e.shareScope||a.DEFAULT_SCOPE}}t.getRemoteEntry=g,t.getRemoteEntryUniqueKey=m,t.getRemoteInfo=y},8628(e,t,r){let o=r(630),n=r(6619),a="[ Federation Runtime ]",i=(0,o.createLogger)(a);function s(e,t,r,o,i){if(void 0!==t)return(0,n.logAndReport)(e,t,r??{},e=>{throw Error(`${a}: ${e}`)},o,i);let s=e;if(s instanceof Error)throw s.message.startsWith(a)||(s.message=`${a}: ${s.message}`),s;throw Error(`${a}: ${s}`)}function l(e){e instanceof Error&&(e.message.startsWith(a)||(e.message=`${a}: ${e.message}`)),i.warn(e)}t.assert=function(e,t,r,o,n){e||(void 0!==r?s(t,r,o,void 0,n):s(t))},t.error=s,t.logger=i,t.warn=l},6079(e,t){function r(e,t){for(let r of e){let e=t.startsWith(r.name),o=t.replace(r.name,"");if(e){if(o.startsWith("/"))return{pkgNameOrAlias:r.name,expose:o=`.${o}`,remote:r};else if(""===o)return{pkgNameOrAlias:r.name,expose:".",remote:r}}let n=r.alias&&t.startsWith(r.alias),a=r.alias&&t.replace(r.alias,"");if(r.alias&&n){if(a&&a.startsWith("/"))return{pkgNameOrAlias:r.alias,expose:a=`.${a}`,remote:r};else if(""===a)return{pkgNameOrAlias:r.alias,expose:".",remote:r}}}}t.matchRemote=function(e,t){for(let r of e)if(t===r.name||r.alias&&t===r.alias)return r},t.matchRemoteWithNameAndExpose=r},8457(e,t,r){let o=r(4391);t.registerPlugins=function(e,t){let r=o.getGlobalHostPlugins(),n=[t.hooks,t.remoteHandler.hooks,t.sharedHandler.hooks,t.snapshotHandler.hooks,t.loaderHook,t.bridgeHook];return r.length>0&&r.forEach(t=>{(null==e?void 0:e.find(e=>e.name!==t.name))&&e.push(t)}),e&&e.length>0&&e.forEach(e=>{n.forEach(r=>{r.applyPlugin(e,t)})}),e}},9599(e,t,r){let o=r(8628),n=r(6079),a=r(556),i=r(630);function s(e){return{resourceCategory:"sync",share:!0,depsRemote:!0,prefetchInterface:!1,...e}}function l(e,t){return t.map(t=>{let r=n.matchRemote(e,t.nameOrAlias);return o.assert(r,`Unable to preload ${t.nameOrAlias} as it is not included in ${!r&&(0,i.safeToString)({remoteInfo:r,remotes:e})}`),{remote:r,preloadConfig:s(t)}})}function u(e){return e?e.map(e=>"."===e?e:e.startsWith("./")?e.replace("./",""):e):[]}function c(e,t,r){let o=!(arguments.length>3)||void 0===arguments[3]||arguments[3],{cssAssets:n,jsAssetsWithoutEntry:s,entryAssets:l}=r;if(t.options.inBrowser){if(l.forEach(r=>{let{moduleInfo:o}=r,n=t.moduleCache.get(e.name);n?a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:n.remoteEntryExports}):a.getRemoteEntry({origin:t,remoteInfo:o,remoteEntryExports:void 0})}),o){let e={rel:"preload",as:"style"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let e={rel:"stylesheet",type:"text/css"};n.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o},needDeleteLink:!1});n&&document.head.appendChild(o)})}if(o){let e={rel:"preload",as:"script"};s.forEach(r=>{let{link:o,needAttach:n}=(0,i.createLink)({url:r,cb:()=>{},attrs:e,createLinkHook:(e,r)=>{let o=t.loaderHook.lifecycle.createLink.emit({url:e,attrs:r});if(o instanceof HTMLLinkElement)return o}});n&&document.head.appendChild(o)})}else{let r={fetchpriority:"high",type:(null==e?void 0:e.type)==="module"?"module":"text/javascript"};s.forEach(e=>{let{script:o,needAttach:n}=(0,i.createScript)({url:e,cb:()=>{},attrs:r,createScriptHook:(e,r)=>{let o=t.loaderHook.lifecycle.createScript.emit({url:e,attrs:r});if(o instanceof HTMLScriptElement)return o},needDeleteScript:!0});n&&document.head.appendChild(o)})}}}t.defaultPreloadArgs=s,t.formatPreloadArgs=l,t.normalizePreloadExposes=u,t.preloadAssets=c},632(e,t){function r(e,t){return(e=Number(e)||e)>(t=Number(t)||t)?1:e===t?0:-1}function o(e,t){let{preRelease:o}=e,{preRelease:n}=t;if(void 0===o&&n)return 1;if(o&&void 0===n)return -1;if(void 0===o&&void 0===n)return 0;for(let e=0,t=o.length;e<=t;e++){let t=o[e],a=n[e];if(t!==a){if(void 0===t&&void 0===a)return 0;if(!t)return 1;if(!a)return -1;return r(t,a)}}return 0}function n(e,t){return r(e.major,t.major)||r(e.minor,t.minor)||r(e.patch,t.patch)||o(e,t)}function a(e,t){return e.version===t.version}t.compare=function(e,t){switch(e.operator){case"":case"=":return a(e,t);case">":return 0>n(e,t);case">=":return a(e,t)||0>n(e,t);case"<":return n(e,t)>0;case"<=":return a(e,t)||n(e,t)>0;case void 0:return!0;default:return!1}}},9570(e,t){let r="[0-9A-Za-z-]+",o=`(?:\\+(${r}(?:\\.${r})*))`,n="0|[1-9]\\d*",a="[0-9]+",i="\\d*[a-zA-Z-][a-zA-Z0-9-]*",s=`(?:${a}|${i})`,l=`(?:-?(${s}(?:\\.${s})*))`,u=`(?:${n}|${i})`,c=`(?:-(${u}(?:\\.${u})*))`,d=`${n}|x|X|\\*`,f=`[v=\\s]*(${d})(?:\\.(${d})(?:\\.(${d})(?:${c})?${o}?)?)?`,p=`^\\s*(${f})\\s+-\\s+(${f})\\s*$`,h=`[v=\\s]*${`(${a})\\.(${a})\\.(${a})`}${l}?${o}?`,m="((?:<|>)?=?)",g=`(\\s*)${m}\\s*(${h}|${f})`,y="(?:~>?)",E=`(\\s*)${y}\\s+`,_="(?:\\^)",S=`(\\s*)${_}\\s+`,b="(<|>)?=?\\s*\\*",v=`^${_}${f}$`,R=`v?${`(${n})\\.(${n})\\.(${n})`}${c}?${o}?`,I=`^${y}${f}$`,M=`^${m}\\s*${f}$`,N=`^${m}\\s*(${R})$|^$`,T="^\\s*>=\\s*0.0.0\\s*$";t.caret=v,t.caretTrim=S,t.comparator=N,t.comparatorTrim=g,t.gte0=T,t.hyphenRange=p,t.star=b,t.tilde=I,t.tildeTrim=E,t.xRange=M},3957(e,t,r){let o=r(78),n=r(3810),a=r(632);function i(e){return o.pipe(n.parseCarets,n.parseTildes,n.parseXRanges,n.parseStar)(e)}function s(e){return o.pipe(n.parseHyphen,n.parseComparatorTrim,n.parseTildeTrim,n.parseCaretTrim)(e.trim()).split(/\s+/).join(" ")}t.satisfy=function(e,t){if(!e)return!1;let r=o.extractComparator(e);if(!r)return!1;let[,l,,u,c,d,f]=r,p={operator:l,version:o.combineVersion(u,c,d,f),major:u,minor:c,patch:d,preRelease:null==f?void 0:f.split(".")};for(let e of t.split("||")){let t=e.trim();if(!t||"*"===t||"x"===t)return!0;try{let e=s(t);if(!e.trim())return!0;let r=e.split(" ").map(e=>i(e)).join(" ");if(!r.trim())return!0;let l=r.split(/\s+/).map(e=>n.parseGTE0(e)).filter(Boolean);if(0===l.length)continue;let u=!0;for(let e of l){let t=o.extractComparator(e);if(!t){u=!1;break}let[,r,,n,i,s,l]=t;if(!a.compare({operator:r,version:o.combineVersion(n,i,s,l),major:n,minor:i,patch:s,preRelease:null==l?void 0:l.split(".")},p)){u=!1;break}}if(u)return!0}catch(e){console.error(`[semver] Error processing range part "${t}":`,e);continue}}return!1}},3810(e,t,r){let o=r(9570),n=r(78);function a(e){return e.replace(n.parseRegex(o.hyphenRange),(e,t,r,o,a,i,s,l,u,c,d,f)=>(t=n.isXVersion(r)?"":n.isXVersion(o)?`>=${r}.0.0`:n.isXVersion(a)?`>=${r}.${o}.0`:`>=${t}`,l=n.isXVersion(u)?"":n.isXVersion(c)?`<${Number(u)+1}.0.0-0`:n.isXVersion(d)?`<${u}.${Number(c)+1}.0-0`:f?`<=${u}.${c}.${d}-${f}`:`<=${l}`,`${t} ${l}`.trim()))}function i(e){return e.replace(n.parseRegex(o.comparatorTrim),"$1$2$3")}function s(e){return e.replace(n.parseRegex(o.tildeTrim),"$1~")}function l(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.caret),(e,t,r,o,a)=>{if(n.isXVersion(t))return"";if(n.isXVersion(r))return`>=${t}.0.0 <${Number(t)+1}.0.0-0`;if(n.isXVersion(o))if("0"===t)return`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`;else return`>=${t}.${r}.0 <${Number(t)+1}.0.0-0`;if(a)if("0"!==t)return`>=${t}.${r}.${o}-${a} <${Number(t)+1}.0.0-0`;else if("0"===r)return`>=${t}.${r}.${o}-${a} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`;if("0"===t)if("0"===r)return`>=${t}.${r}.${o} <${t}.${r}.${Number(o)+1}-0`;else return`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`;return`>=${t}.${r}.${o} <${Number(t)+1}.0.0-0`})).join(" ")}function u(e){return e.trim().split(/\s+/).map(e=>e.replace(n.parseRegex(o.tilde),(e,t,r,o,a)=>n.isXVersion(t)?"":n.isXVersion(r)?`>=${t}.0.0 <${Number(t)+1}.0.0-0`:n.isXVersion(o)?`>=${t}.${r}.0 <${t}.${Number(r)+1}.0-0`:a?`>=${t}.${r}.${o}-${a} <${t}.${Number(r)+1}.0-0`:`>=${t}.${r}.${o} <${t}.${Number(r)+1}.0-0`)).join(" ")}function c(e){return e.split(/\s+/).map(e=>e.trim().replace(n.parseRegex(o.xRange),(e,t,r,o,a,i)=>{let s=n.isXVersion(r),l=s||n.isXVersion(o),u=l||n.isXVersion(a);if("="===t&&u&&(t=""),i="",s)if(">"===t||"<"===t)return"<0.0.0-0";else return"*";return t&&u?(l&&(o=0),a=0,">"===t?(t=">=",l?(r=Number(r)+1,o=0):o=Number(o)+1,a=0):"<="===t&&(t="<",l?r=Number(r)+1:o=Number(o)+1),"<"===t&&(i="-0"),`${t+r}.${o}.${a}${i}`):l?`>=${r}.0.0${i} <${Number(r)+1}.0.0-0`:u?`>=${r}.${o}.0${i} <${r}.${Number(o)+1}.0-0`:e})).join(" ")}function d(e){return e.trim().replace(n.parseRegex(o.star),"")}function f(e){return e.trim().replace(n.parseRegex(o.gte0),"")}t.parseCaretTrim=function(e){return e.replace(n.parseRegex(o.caretTrim),"$1^")},t.parseCarets=l,t.parseComparatorTrim=i,t.parseGTE0=f,t.parseHyphen=a,t.parseStar=d,t.parseTildeTrim=s,t.parseTildes=u,t.parseXRanges=c},78(e,t,r){let o=r(9570);function n(e){return new RegExp(e)}function a(e){return!e||"x"===e.toLowerCase()||"*"===e}function i(){for(var e=arguments.length,t=Array(e),r=0;rt.reduce((e,t)=>t(e),e)}function s(e){return e.match(n(o.comparator))}t.combineVersion=function(e,t,r,o){let n=`${e}.${t}.${r}`;return o?`${n}-${o}`:n},t.extractComparator=s,t.isXVersion=a,t.parseRegex=n,t.pipe=i},8369(e,t,r){let o=r(8628),n=r(9350),a=r(4391),i=r(2926),s=r(3957),l=r(630);function u(e,t,r,n){var a,i;let s;return s="get"in e?e.get:"lib"in e?()=>Promise.resolve(e.lib):()=>Promise.resolve(()=>{o.error(`Cannot get shared "${r}" from "${t}": neither "get" nor "lib" is provided in the share config.`)}),(null==(a=e.shareConfig)?void 0:a.eager)&&(null==(i=e.treeShaking)?void 0:i.mode)&&o.error(`Invalid shared config for "${r}" from "${t}": cannot use both "eager: true" and "treeShaking.mode" simultaneously. Choose one strategy.`),{deps:[],useIn:[],from:t,loading:null,...e,shareConfig:{requiredVersion:`^${e.version}`,singleton:!1,eager:!1,strictVersion:!1,...e.shareConfig},get:s,loaded:null!=e&&!!e.loaded||"lib"in e||void 0,version:e.version??"0",scope:Array.isArray(e.scope)?e.scope:[e.scope??"default"],strategy:(e.strategy??n)||"version-first",treeShaking:e.treeShaking?{...e.treeShaking,mode:e.treeShaking.mode??"server-calc",status:e.treeShaking.status??l.TreeShakingStatus.UNKNOWN,useIn:[]}:void 0}}function c(e,t){let r=t.shared||{},o=t.name,a=Object.keys(r).reduce((e,a)=>{let i=n.arrayOptions(r[a]);return e[a]=e[a]||[],i.forEach(r=>{e[a].push(u(r,o,a,t.shareStrategy))}),e},{}),i={...e.shared};return Object.keys(a).forEach(e=>{i[e]?a[e].forEach(t=>{i[e].find(e=>e.version===t.version)||i[e].push(t)}):i[e]=a[e]}),{allShareInfos:i,newShareInfos:a}}function d(e,t){if(!e)return!1;let{status:r,mode:o}=e;return r!==l.TreeShakingStatus.NO_USE&&(r===l.TreeShakingStatus.CALCULATED||"runtime-infer"===o&&(!t||g(e,t)))}function f(e,t){let r=e=>{if(!Number.isNaN(Number(e))){let t=e.split("."),r=e;for(let e=0;e<3-t.length;e++)r+=".0";return r}return e};return!!s.satisfy(r(e),`<=${r(t)}`)}let p=(e,t)=>{let r=t||function(e,t){return f(e,t)};return Object.keys(e).reduce((e,t)=>!e||r(e,t)||"0"===e?t:e,0)},h=e=>!!e.loaded||"function"==typeof e.lib,m=e=>!!e.loading,g=(e,t)=>{if(!e||!t)return!1;let{usedExports:r}=e;return!!r&&!!t.every(e=>r.includes(e))};function y(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){return i?!n[e].treeShaking||!!n[t].treeShaking&&!h(n[e].treeShaking)&&f(e,t):!h(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}let E=e=>h(e)||m(e);function _(e,t,r,o){let n=e[t][r],a="",i=d(o),s=function(e,t){if(i){if(!n[e].treeShaking)return!0;if(!n[t].treeShaking)return!1;if(E(n[t].treeShaking))if(E(n[e].treeShaking))return!!f(e,t);else return!0;if(E(n[e].treeShaking))return!1}if(E(n[t]))if(E(n[e]))return!!f(e,t);else return!0;return!E(n[e])&&f(e,t)};if(i){if(a=p(e[t][r],s))return{version:a,useTreesShaking:i};i=!1}return{version:p(e[t][r],s),useTreesShaking:i}}function S(e){return"loaded-first"===e?_:y}function b(e,t,r,n){if(!e)return;let{shareConfig:l,scope:u=i.DEFAULT_SCOPE,strategy:c,treeShaking:f}=r;for(let i of Array.isArray(u)?u:[u])if(l&&e[i]&&e[i][t]){let{requiredVersion:u}=l,{version:p,useTreesShaking:h}=S(c)(e,i,t,f),m=()=>{let n=e[i][t][p];if(l.singleton){if("string"==typeof u&&!s.satisfy(p,u)){let e=`Version ${p} from ${p&&n.from} of shared singleton module ${t} does not satisfy the requirement of ${r.from} which needs ${u})`;l.strictVersion?o.error(e):o.warn(e)}return{shared:n,useTreesShaking:h}}{if(!1===u||"*"===u||s.satisfy(p,u))return{shared:n,useTreesShaking:h};let r=d(f);if(r){for(let[o,n]of Object.entries(e[i][t]))if(d(n.treeShaking,null==f?void 0:f.usedExports)&&s.satisfy(o,u))return{shared:n,useTreesShaking:r}}for(let[r,o]of Object.entries(e[i][t]))if(s.satisfy(r,u))return{shared:o,useTreesShaking:!1}}},g={shareScopeMap:e,scope:i,pkgName:t,version:p,GlobalFederation:a.Global.__FEDERATION__,shareInfo:r,resolver:m};return(n.emit(g)||g).resolver()}}function v(){return a.Global.__FEDERATION__.__SHARE__}function R(e){let{pkgName:t,extraOptions:r,shareInfos:o}=e,n=e=>{if(!e)return;let t={};e.forEach(e=>{t[e.version]=e});let r=function(e,r){return!h(t[e])&&f(e,r)};return t[p(t,r)]},a=(null==r?void 0:r.resolver)??n,i=e=>null!==e&&"object"==typeof e&&!Array.isArray(e),s=function(){for(var e=arguments.length,t=Array(e),r=0;r{e.useIn||(e.useIn=[]),n.addUniqueItem(e.useIn,t)},t.directShare=I,t.formatShareConfigs=c,t.getGlobalShareScope=v,t.getRegisteredShare=b,t.getTargetSharedOptions=R,t.shouldUseTreeShaking=d},9350(e,t,r){let o=r(8628),n=r(630);function a(e,t){return -1===e.findIndex(e=>e===t)&&e.push(t),e}function i(e){return"version"in e&&e.version?`${e.name}:${e.version}`:"entry"in e&&e.entry?`${e.name}:${e.entry}`:`${e.name}`}function s(e){return void 0!==e.entry}function l(e){return!e.entry.includes(".json")}async function u(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function c(e){return e&&"object"==typeof e}let d=Object.prototype.toString;function f(e){return"[object Object]"===d.call(e)}function p(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function h(e){return Array.isArray(e)?e:[e]}function m(e){let t={url:"",type:"global",globalName:""};return n.isBrowserEnvValue||(0,n.isReactNativeEnv)()||!("ssrRemoteEntry"in e)?"remoteEntry"in e?{url:e.remoteEntry,type:e.remoteEntryType,globalName:e.globalName}:t:"ssrRemoteEntry"in e?{url:e.ssrRemoteEntry||t.url,type:e.ssrRemoteEntryType||t.type,globalName:e.globalName}:t}let g=(e,t)=>{let r;return r=e.endsWith("/")?e.slice(0,-1):e,t.startsWith(".")&&(t=t.slice(1)),r+=t};t.addUniqueItem=a,t.arrayOptions=h,t.getFMId=i,t.getRemoteEntryInfoFromSnapshot=m,t.isObject=c,t.isPlainObject=f,t.isPureRemoteEntry=l,t.isRemoteInfoWithEntry=s,t.isStaticResourcesEqual=p,t.objectToString=d,t.processModuleAlias=g,t.safeWrapper=u},3544(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},3129(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}}),r(3544);let o=r(9577),n=r(5922),a={...n.helpers.global,getGlobalFederationInstance:o.getGlobalFederationInstance},i=n.helpers.share,s=n.helpers.utils;t.default={global:a,share:i,utils:s},t.global=a,t.share=i,t.utils=s},9782(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),r(3544);let o=r(9577),n=r(5922),a=r(4363);function i(e){let t=new((0,n.getGlobalFederationConstructor)()||n.ModuleFederation)(e);return(0,n.setGlobalFederationInstance)(t),t}let s=null;function l(e){let t=o.getGlobalFederationInstance(e.name,e.version);return t?(t.initOptions(e),s||(s=t),t):s=i(e)}function u(){for(var e=arguments.length,t=Array(e),r=0;r!!r&&o.options.id===r||o.options.name===e&&!o.options.version&&!t||o.options.name===e&&!!t&&o.options.version===t)}},7688(e,t){var r=Object.defineProperty;t.__exportAll=(e,t)=>{let o={};for(var n in e)r(o,n,{get:e[n],enumerable:!0});return t||r(o,Symbol.toStringTag,{value:"Module"}),o}},586(e,t){let r="federation-manifest.json",o=".json",n="FEDERATION_DEBUG",a={AT:"@",HYPHEN:"-",SLASH:"/"},i={[a.AT]:"scope_",[a.HYPHEN]:"_",[a.SLASH]:"__"},s={[i[a.AT]]:a.AT,[i[a.HYPHEN]]:a.HYPHEN,[i[a.SLASH]]:a.SLASH},l=":",u="mf-manifest.json",c="mf-stats.json",d={NPM:"npm",APP:"app"},f="__MF_DEVTOOLS_MODULE_INFO__",p="ENCODE_NAME_PREFIX",h=".federation",m={identifier:"MFDataPrefetch",globalKey:"__PREFETCH__",library:"mf-data-prefetch",exportsKey:"__PREFETCH_EXPORTS__",fileName:"bootstrap.js"},g=function(e){return e[e.UNKNOWN=1]="UNKNOWN",e[e.CALCULATED=2]="CALCULATED",e[e.NO_USE=0]="NO_USE",e}({});t.BROWSER_LOG_KEY=n,t.ENCODE_NAME_PREFIX=p,t.EncodedNameTransformMap=s,t.FederationModuleManifest=r,t.MANIFEST_EXT=o,t.MFModuleType=d,t.MFPrefetchCommon=m,t.MODULE_DEVTOOL_IDENTIFIER=f,t.ManifestFileName=u,t.NameTransformMap=i,t.NameTransformSymbol=a,t.SEPARATOR=l,t.StatsFileName=c,t.TEMP_DIR=h,t.TreeShakingStatus=g},1483(e,t){t.createModuleFederationConfig=e=>e},6302(e,t,r){let o=r(3417);async function n(e,t){try{return await e()}catch(e){t||o.warn(e);return}}function a(e,t){let r=/^(https?:)?\/\//i;return e.replace(r,"").replace(/\/$/,"")===t.replace(r,"").replace(/\/$/,"")}function i(e){let t,r=null,o=!0,i=2e4,s=document.getElementsByTagName("script");for(let t=0;t{r&&("async"===e||"defer"===e?r[e]=o[e]:r.getAttribute(e)||r.setAttribute(e,o[e]))})}let l=null,u="u">typeof window?t=>{if(t.filename&&a(t.filename,e.url)){let r=Error(`ScriptExecutionError: Script "${e.url}" loaded but threw a runtime error during execution: ${t.message} (${t.filename}:${t.lineno}:${t.colno})`);r.name="ScriptExecutionError",l=r}}:null;u&&window.addEventListener("error",u);let c=async(o,a)=>{clearTimeout(t),u&&window.removeEventListener("error",u);let i=()=>{if((null==a?void 0:a.type)==="error"){let t=Error(`ScriptNetworkError: Failed to load script "${e.url}" - the script URL is unreachable or the server returned an error (network failure, 404, CORS, etc.)`);t.name="ScriptNetworkError",(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(t))}else l?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(l)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(r&&(r.onerror=null,r.onload=null,n(()=>{let{needDeleteScript:t=!0}=e;t&&(null==r?void 0:r.parentNode)&&r.parentNode.removeChild(r)}),o&&"function"==typeof o)){let e=o(a);if(e instanceof Promise){let t=await e;return i(),t}return i(),e}i()};return r.onerror=c.bind(null,r.onerror),r.onload=c.bind(null,r.onload),t=setTimeout(()=>{c(null,Error(`Remote script "${e.url}" time-outed.`))},i),{script:r,needAttach:o}}function s(e,t){let{attrs:r={},createScriptHook:o}=t;return new Promise((t,n)=>{let{script:a,needAttach:s}=i({url:e,cb:t,onErrorCallback:n,attrs:{fetchpriority:"high",...r},createScriptHook:o,needDeleteScript:!0});s&&document.head.appendChild(a)})}t.createLink=function(e){let t=null,r=!0,o=document.getElementsByTagName("link");for(let n=0;n{t&&!t.getAttribute(e)&&t.setAttribute(e,o[e])})}let i=(r,o)=>{let a=()=>{(null==o?void 0:o.type)==="error"?(null==e?void 0:e.onErrorCallback)&&(null==e||e.onErrorCallback(o)):(null==e?void 0:e.cb)&&(null==e||e.cb())};if(t&&(t.onerror=null,t.onload=null,n(()=>{let{needDeleteLink:r=!0}=e;r&&(null==t?void 0:t.parentNode)&&t.parentNode.removeChild(t)}),r)){let e=r(o);return a(),e}a()};return t.onerror=i.bind(null,t.onerror),t.onload=i.bind(null,t.onload),{link:t,needAttach:r}},t.createScript=i,t.isStaticResourcesEqual=a,t.loadScript=s,t.safeWrapper=n},6883(e,t,r){let o=r(586),n="u">typeof ENV_TARGET?"web"===ENV_TARGET:"u">typeof window&&void 0!==window.document;function a(){return n}function i(){var e;return"u">typeof navigator&&(null==(e=navigator)?void 0:e.product)==="ReactNative"}function s(){try{if(a()&&window.localStorage)return!!localStorage.getItem(o.BROWSER_LOG_KEY)}catch(e){}return!1}function l(){return"u">typeof process&&process.env&&process.env.FEDERATION_DEBUG?!!process.env.FEDERATION_DEBUG:!!("u">typeof FEDERATION_DEBUG&&FEDERATION_DEBUG)||s()}t.getProcessEnv=function(){return"u">typeof process&&process.env?process.env:{}},t.isBrowserEnv=a,t.isBrowserEnvValue=n,t.isDebugMode=l,t.isReactNativeEnv=i},7016(e,t,r){let o=r(586),n=(e,t)=>{if(!e)return t;let r=(e=>{if("."===e)return"";if(e.startsWith("./"))return e.replace("./","");if(e.startsWith("/")){let t=e.slice(1);return t.endsWith("/")?t.slice(0,-1):t}return e})(e);return r?r.endsWith("/")?`${r}${t}`:`${r}/${t}`:t};function a(e){return e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/")}function i(e){return!!("remoteEntry"in e&&e.remoteEntry.includes(o.MANIFEST_EXT))}function s(e){if(!e)return{statsFileName:o.StatsFileName,manifestFileName:o.ManifestFileName};let t="boolean"==typeof e?"":e.filePath||"",r="boolean"==typeof e?"":e.fileName||"",a=".json",i=e=>e.endsWith(a)?e:`${e}${a}`,s=(e,t)=>e.replace(a,`${t}${a}`),l=r?i(r):o.ManifestFileName;return{statsFileName:n(t,r?s(l,"-stats"):o.StatsFileName),manifestFileName:n(t,l)}}t.generateSnapshotFromManifest=function(e){var t,r,o;let i,s=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{remotes:l={},overrides:u={},version:c}=s,d=()=>"publicPath"in e.metaData?("auto"===e.metaData.publicPath||""===e.metaData.publicPath)&&c?a(c):e.metaData.publicPath:e.metaData.getPublicPath,f=Object.keys(u),p={};Object.keys(l).length||(p=(null==(t=e.remotes)?void 0:t.reduce((e,t)=>{let r,o=t.federationContainerName;return r=f.includes(o)?u[o]:"version"in t?t.version:t.entry,e[o]={matchedVersion:r},e},{}))||{}),Object.keys(l).forEach(e=>p[e]={matchedVersion:f.includes(e)?u[e]:l[e]});let{remoteEntry:{path:h,name:m,type:g},types:y={path:"",name:"",zip:"",api:""},buildInfo:{buildVersion:E},globalName:_,ssrRemoteEntry:S}=e.metaData,{exposes:b}=e,v={version:c||"",buildVersion:E,globalName:_,remoteEntry:n(h,m),remoteEntryType:g,remoteTypes:n(y.path,y.name),remoteTypesZip:y.zip||"",remoteTypesAPI:y.api||"",remotesInfo:p,shared:null==e?void 0:e.shared.map(e=>({assets:e.assets,sharedName:e.name,version:e.version,usedExports:e.referenceExports||[]})),modules:null==b?void 0:b.map(e=>({moduleName:e.name,modulePath:e.path,assets:e.assets}))};if(null==(r=e.metaData)?void 0:r.prefetchInterface){let t=e.metaData.prefetchInterface;v={...v,prefetchInterface:t}}if(null==(o=e.metaData)?void 0:o.prefetchEntry){let{path:t,name:r,type:o}=e.metaData.prefetchEntry;v={...v,prefetchEntry:n(t,r),prefetchEntryType:o}}if("publicPath"in e.metaData?(i={...v,publicPath:d()},"string"==typeof e.metaData.ssrPublicPath&&(i.ssrPublicPath=e.metaData.ssrPublicPath)):i={...v,getPublicPath:d()},S){let e=n(S.path,S.name);i.ssrRemoteEntry=e,i.ssrRemoteEntryType=S.type||"commonjs-module"}return i},t.getManifestFileName=s,t.inferAutoPublicPath=a,t.isManifestProvider=i,t.simpleJoinRemoteEntry=n},630(e,t,r){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"});let o=r(586),n=r(8841),a=r(8798),i=r(7765),s=r(1993),l=r(7345),u=r(5448),c=r(6883),d=r(3417),f=r(7016),p=r(3910),h=r(6302),m=r(638),g=r(6967),y=r(1483);t.BROWSER_LOG_KEY=o.BROWSER_LOG_KEY,t.ENCODE_NAME_PREFIX=o.ENCODE_NAME_PREFIX,t.EncodedNameTransformMap=o.EncodedNameTransformMap,t.FederationModuleManifest=o.FederationModuleManifest,t.MANIFEST_EXT=o.MANIFEST_EXT,t.MFModuleType=o.MFModuleType,t.MFPrefetchCommon=o.MFPrefetchCommon,t.MODULE_DEVTOOL_IDENTIFIER=o.MODULE_DEVTOOL_IDENTIFIER,t.ManifestFileName=o.ManifestFileName,t.NameTransformMap=o.NameTransformMap,t.NameTransformSymbol=o.NameTransformSymbol,t.SEPARATOR=o.SEPARATOR,t.StatsFileName=o.StatsFileName,t.TEMP_DIR=o.TEMP_DIR,t.TreeShakingStatus=o.TreeShakingStatus,t.assert=d.assert,t.bindLoggerToCompiler=p.bindLoggerToCompiler,t.composeKeyWithSeparator=d.composeKeyWithSeparator,Object.defineProperty(t,"consumeSharedPlugin",{enumerable:!0,get:function(){return l.ConsumeSharedPlugin_exports}}),Object.defineProperty(t,"containerPlugin",{enumerable:!0,get:function(){return n.ContainerPlugin_exports}}),Object.defineProperty(t,"containerReferencePlugin",{enumerable:!0,get:function(){return a.ContainerReferencePlugin_exports}}),t.createInfrastructureLogger=p.createInfrastructureLogger,t.createLink=h.createLink,t.createLogger=p.createLogger,t.createModuleFederationConfig=y.createModuleFederationConfig,t.createScript=h.createScript,t.createScriptNode=m.createScriptNode,t.decodeName=d.decodeName,t.encodeName=d.encodeName,t.error=d.error,t.generateExposeFilename=d.generateExposeFilename,t.generateShareFilename=d.generateShareFilename,t.generateSnapshotFromManifest=f.generateSnapshotFromManifest,t.getManifestFileName=f.getManifestFileName,t.getProcessEnv=c.getProcessEnv,t.getResourceUrl=d.getResourceUrl,t.inferAutoPublicPath=f.inferAutoPublicPath,t.infrastructureLogger=p.infrastructureLogger,t.isBrowserEnv=c.isBrowserEnv,t.isBrowserEnvValue=c.isBrowserEnvValue,t.isDebugMode=c.isDebugMode,t.isManifestProvider=f.isManifestProvider,t.isReactNativeEnv=c.isReactNativeEnv,t.isRequiredVersion=d.isRequiredVersion,t.isStaticResourcesEqual=h.isStaticResourcesEqual,t.loadScript=h.loadScript,t.loadScriptNode=m.loadScriptNode,t.logger=p.logger,Object.defineProperty(t,"moduleFederationPlugin",{enumerable:!0,get:function(){return i.ModuleFederationPlugin_exports}}),t.normalizeOptions=g.normalizeOptions,t.parseEntry=d.parseEntry,Object.defineProperty(t,"provideSharedPlugin",{enumerable:!0,get:function(){return u.ProvideSharedPlugin_exports}}),t.safeToString=d.safeToString,t.safeWrapper=h.safeWrapper,Object.defineProperty(t,"sharePlugin",{enumerable:!0,get:function(){return s.SharePlugin_exports}}),t.simpleJoinRemoteEntry=f.simpleJoinRemoteEntry,t.warn=d.warn},3910(e,t,r){let o=r(6883),n="[ Module Federation ]",a=console,i=["logger.ts","logger.js","captureStackTrace","Logger.emit","Logger.log","Logger.info","Logger.warn","Logger.error","Logger.debug"];function s(){try{let e=Error().stack;if(!e)return;let[,...t]=e.split("\n"),r=t.filter(e=>!i.some(t=>e.includes(t)));if(!r.length)return;return`Stack trace: ${r.slice(0,5).join("\n")}`}catch{return}}var l=class{setPrefix(e){this.prefix=e}setDelegate(e){this.delegate=e??a}emit(e,t){let r=this.delegate,n=o.isDebugMode()?s():void 0,i=n?[...t,n]:t,l=(()=>{switch(e){case"log":return["log","info"];case"info":return["info","log"];case"warn":return["warn","info","log"];case"error":return["error","warn","log"];default:return["debug","log"]}})();for(let e of l){let t=r[e];if("function"==typeof t)return void t.call(r,this.prefix,...i)}for(let e of l){let t=a[e];if("function"==typeof t)return void t.call(a,this.prefix,...i)}}log(){for(var e=arguments.length,t=Array(e),r=0;re).catch(t=>{throw console.error(`Error importing module ${e}:`,t),sdkImportCache.delete(e),t});return sdkImportCache.set(e,t),t}let loadNodeFetch=async()=>{let e=await importNodeModule("node-fetch");return e.default||e},lazyLoaderHookFetch=async(e,t,r)=>{let o=(e,t)=>r.lifecycle.fetch.emit(e,t),n=await o(e,t||{});return n&&n instanceof Response?n:("u"{let urlObj;if(null==loaderHook?void 0:loaderHook.createScriptHook){let hookResult=loaderHook.createScriptHook(url);hookResult&&"object"==typeof hookResult&&"url"in hookResult&&(url=hookResult.url)}try{urlObj=new URL(url)}catch(e){console.error("Error constructing URL:",e),cb(Error(`Invalid URL: ${e}`));return}let getFetch=async()=>(null==loaderHook?void 0:loaderHook.fetch)?(e,t)=>lazyLoaderHookFetch(e,t,loaderHook):"u"{try{var _vm_constants;let requireFn,res=await f(urlObj.href),data=await res.text(),[path,vm]=await Promise.all([importNodeModule("path"),importNodeModule("vm")]),scriptContext={exports:{},module:{exports:{}}},urlDirname=urlObj.pathname.split("/").slice(0,-1).join("/"),filename=path.basename(urlObj.pathname),script=new vm.Script(`(function(exports, module, require, __dirname, __filename) {${data} })`,{filename,importModuleDynamically:(null==(_vm_constants=vm.constants)?void 0:_vm_constants.USE_MAIN_CONTEXT_DEFAULT_LOADER)??importNodeModule});requireFn=eval("require"),script.runInThisContext()(scriptContext.exports,scriptContext.module,requireFn,urlDirname,filename);let exportedInterface=scriptContext.module.exports||scriptContext.exports;if(attrs&&exportedInterface&&attrs.globalName)return void cb(void 0,exportedInterface[attrs.globalName]||exportedInterface);cb(void 0,exportedInterface)}catch(e){cb(e instanceof Error?e:Error(`Script execution error: ${e}`))}};getFetch().then(async e=>{if((null==attrs?void 0:attrs.type)==="esm"||(null==attrs?void 0:attrs.type)==="module")return loadModule(urlObj.href,{fetch:e,vm:await importNodeModule("vm")}).then(async e=>{await e.evaluate(),cb(void 0,e.namespace)}).catch(e=>{cb(e instanceof Error?e:Error(`Script execution error: ${e}`))});handleScriptFetch(e,urlObj)}).catch(e=>{cb(e)})}:(e,t,r,o)=>{t(Error("createScriptNode is disabled in non-Node.js environment"))},loadScriptNode="u"new Promise((r,o)=>{createScriptNode(e,(e,n)=>{if(e)o(e);else{var a,i;let e=(null==t||null==(a=t.attrs)?void 0:a.globalName)||`__FEDERATION_${null==t||null==(i=t.attrs)?void 0:i.name}:custom__`;r(globalThis[e]=n)}},t.attrs,t.loaderHook)}):(e,t)=>{throw Error("loadScriptNode is disabled in non-Node.js environment")},esmModuleCache=new Map;async function loadModule(e,t){if(esmModuleCache.has(e))return esmModuleCache.get(e);let{fetch:r,vm:o}=t,n=await (await r(e)).text(),a=new o.SourceTextModule(n,{importModuleDynamically:async(r,o)=>loadModule(new URL(r,e).href,t)});return esmModuleCache.set(e,a),await a.link(async r=>{let o=new URL(r,e).href;return await loadModule(o,t)}),a}exports.createScriptNode=createScriptNode,exports.loadScriptNode=loadScriptNode},6967(e,t){t.normalizeOptions=function(e,t,r){return function(o){if(!1===o)return!1;if(void 0===o)if(e)return t;else return!1;if(!0===o)return t;if(o&&"object"==typeof o)return{...t,...o};throw Error(`Unexpected type for \`${r}\`, expect boolean/undefined/object, got: ${typeof o}`)}}},7345(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ConsumeSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},8841(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerPlugin_exports",{enumerable:!0,get:function(){return o}})},8798(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ContainerReferencePlugin_exports",{enumerable:!0,get:function(){return o}})},7765(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ModuleFederationPlugin_exports",{enumerable:!0,get:function(){return o}})},5448(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"ProvideSharedPlugin_exports",{enumerable:!0,get:function(){return o}})},1993(e,t,r){var o=r(7688).__exportAll({});Object.defineProperty(t,"SharePlugin_exports",{enumerable:!0,get:function(){return o}})},3417(e,t,r){let o=r(586),n=r(6883),a="[ Federation Runtime ]",i=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:o.SEPARATOR,a=e.split(r),i="development"===n.getProcessEnv().NODE_ENV&&t,s="*",l=e=>e.startsWith("http")||e.includes(o.MANIFEST_EXT);if(a.length>=2){let[t,...o]=a;e.startsWith(r)&&(t=a.slice(0,2).join(r),o=[i||a.slice(2).join(r)]);let n=i||o.join(r);return l(n)?{name:t,entry:n}:{name:t,version:n||s}}if(1===a.length){let[e]=a;return i&&l(i)?{name:e,entry:i}:{name:e,version:i||s}}throw`Invalid entry value: ${e}`},s=function(){for(var e=arguments.length,t=Array(e),r=0;rt?e?`${e}${o.SEPARATOR}${t}`:t:e,""):""},l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];try{let n=r?".js":"";return`${t}${e.replace(RegExp(`${o.NameTransformSymbol.AT}`,"g"),o.NameTransformMap[o.NameTransformSymbol.AT]).replace(RegExp(`${o.NameTransformSymbol.HYPHEN}`,"g"),o.NameTransformMap[o.NameTransformSymbol.HYPHEN]).replace(RegExp(`${o.NameTransformSymbol.SLASH}`,"g"),o.NameTransformMap[o.NameTransformSymbol.SLASH])}${n}`}catch(e){throw e}},u=function(e,t,r){try{let n=e;if(t){if(!n.startsWith(t))return n;n=n.replace(RegExp(t,"g"),"")}return n=n.replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.AT]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.AT]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.SLASH]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.SLASH]]).replace(RegExp(`${o.NameTransformMap[o.NameTransformSymbol.HYPHEN]}`,"g"),o.EncodedNameTransformMap[o.NameTransformMap[o.NameTransformSymbol.HYPHEN]]),r&&(n=n.replace(".js","")),n}catch(e){throw e}},c=(e,t)=>{if(!e)return"";let r=e;return"."===r&&(r="default_export"),r.startsWith("./")&&(r=r.replace("./","")),l(r,"__federation_expose_",t)},d=(e,t)=>e?l(e,"__federation_shared_",t):"",f=(e,t)=>{if("getPublicPath"in e){let r;return r=e.getPublicPath.startsWith("function")?Function("return "+e.getPublicPath)()():Function(e.getPublicPath)(),`${r}${t}`}return"publicPath"in e?!n.isBrowserEnv()&&!n.isReactNativeEnv()&&"ssrPublicPath"in e&&"string"==typeof e.ssrPublicPath?`${e.ssrPublicPath}${t}`:`${e.publicPath}${t}`:(console.warn("Cannot get resource URL. If in debug mode, please ignore.",e,t),"")},p=e=>{throw Error(`${a}: ${e}`)},h=e=>{console.warn(`${a}: ${e}`)};function m(e){try{return JSON.stringify(e,null,2)}catch(e){return""}}let g=/^([\d^=v<>~]|[*xX]$)/;function y(e){return g.test(e)}t.assert=(e,t)=>{e||p(t)},t.composeKeyWithSeparator=s,t.decodeName=u,t.encodeName=l,t.error=p,t.generateExposeFilename=c,t.generateShareFilename=d,t.getResourceUrl=f,t.isRequiredVersion=y,t.parseEntry=i,t.safeToString=m,t.warn=h},7363(e,t){var r=Object.create,o=Object.defineProperty,n=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,i=Object.getPrototypeOf,s=Object.prototype.hasOwnProperty,l=(e,t,r,i)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var l,u=a(t),c=0,d=u.length;ct[e]).bind(null,l),enumerable:!(i=n(t,l))||i.enumerable});return e};t.__toESM=(e,t,n)=>(n=null!=e?r(i(e)):{},l(!t&&e&&e.__esModule?n:o(n,"default",{value:e,enumerable:!0}),e))},2069(e,t){t.attachShareScopeMap=function(e){e.S&&!e.federation.hasAttachShareScopeMap&&e.federation.instance&&e.federation.instance.shareScopeMap&&(e.S=e.federation.instance.shareScopeMap,e.federation.hasAttachShareScopeMap=!0)}},6897(e,t){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),t.FEDERATION_SUPPORTED_TYPES=["script"]},916(e,t,r){let o=r(2069),n=r(5216),a=r(7617);t.consumes=function(e){n.updateConsumeOptions(e);let{chunkId:t,promises:r,installedModules:i,webpackRequire:s,chunkMapping:l,moduleToHandlerMapping:u}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{if(s.o(i,e))return r.push(i[e]);let t=t=>{i[e]=0,s.m[e]=r=>{var o;delete s.c[e];let n=t(),{shareInfo:a}=u[e];if((null==a||null==(o=a.shareConfig)?void 0:o.layer)&&n&&"object"==typeof n)try{n.hasOwnProperty("layer")&&void 0!==n.layer||(n.layer=a.shareConfig.layer)}catch(e){}r.exports=n}},o=t=>{delete i[e],s.m[e]=r=>{throw delete s.c[e],t}};try{let n=s.federation.instance;if(!n)throw Error("Federation instance not found!");let{shareKey:l,getter:c,shareInfo:d,treeShakingGetter:f}=u[e],p=a.getUsedExports(s,l),h={...d};Array.isArray(h.scope)&&Array.isArray(h.scope[0])&&(h.scope=h.scope[0]),p&&(h.treeShaking={usedExports:p,useIn:[n.options.name]});let m=n.loadShare(l,{customShareInfo:h}).then(e=>!1===e?(null==f?void 0:f())||c():e);m.then?r.push(i[e]=m.then(t).catch(o)):t(m)}catch(e){o(e)}})}},8167(e,t){t.getSharedFallbackGetter=e=>{let{shareKey:t,factory:r,version:o,webpackRequire:n,libraryType:a="global"}=e,{runtime:i,instance:s,bundlerRuntime:l,sharedFallback:u}=n.federation;if(!u)return r;let c=u[t];if(!c)return r;let d=o?c.find(e=>e[1]===o):c[0];if(!d)throw Error(`No fallback item found for shareKey: ${t} and version: ${o}`);return()=>i.getRemoteEntry({origin:n.federation.instance,remoteInfo:{name:d[2],entry:`${n.p}${d[0]}`,type:a,entryGlobalName:d[2],shareScope:"default"}}).then(e=>{if(!e)throw Error(`Failed to load fallback entry for shareKey: ${t} and version: ${o}`);return e.init(n.federation.instance,l).then(()=>e.get())})}},7617(e,t){t.getUsedExports=function(e,t){let r=e.federation.usedExports;if(r)return r[t]}},6927(e,t,r){Object.defineProperties(t,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});let o=r(7363),n=r(2069),a=r(6310),i=r(916),s=r(6777),l=r(1735),u=r(7440),c=r(8531),d=r(8167),f=r(9782),p={runtime:f=o.__toESM(f),instance:void 0,initOptions:void 0,bundlerRuntime:{remotes:a.remotes,consumes:i.consumes,I:s.initializeSharing,S:{},installInitialConsumes:l.installInitialConsumes,initContainerEntry:u.initContainerEntry,init:c.init,getSharedFallbackGetter:d.getSharedFallbackGetter},attachShareScopeMap:n.attachShareScopeMap,bundlerRuntimeOptions:{}},h=p.instance,m=p.initOptions,g=p.bundlerRuntime,y=p.bundlerRuntimeOptions;t.attachShareScopeMap=n.attachShareScopeMap,t.bundlerRuntime=g,t.bundlerRuntimeOptions=y,t.default=p,t.initOptions=m,t.instance=h,Object.defineProperty(t,"runtime",{enumerable:!0,get:function(){return f}})},8531(e,t,r){let o=r(7363),n=r(9782),a=r(3129);a=o.__toESM(a),t.init=function(e){var t;let{webpackRequire:o}=e,{initOptions:i,runtime:s,sharedFallback:l,bundlerRuntime:u,libraryType:c}=o.federation;if(!i)throw Error("initOptions is required!");let d=function(){return{name:"tree-shake-plugin",beforeInit(e){let{userOptions:t,origin:i,options:s}=e,d=t.version||s.version;if(!l)return e;let f=t.shared||{},p=[];Object.keys(f).forEach(e=>{(Array.isArray(f[e])?f[e]:[f[e]]).forEach(t=>{if(p.push([e,t]),"get"in t){var r;(r=t).treeShaking||(r.treeShaking={}),t.treeShaking.get=t.get,t.get=u.getSharedFallbackGetter({shareKey:e,factory:t.get,webpackRequire:o,libraryType:c,version:t.version})}})});let h=a.default.global.getGlobalSnapshotInfoByModuleInfo({name:i.name,version:d});if(!h||!("shared"in h))return e;Object.keys(s.shared||{}).forEach(e=>{s.shared[e].forEach(t=>{p.push([e,t])})});let m=(e,t)=>{let o=h.shared.find(t=>t.sharedName===e);if(!o)return;let{treeShaking:a}=t;if(!a)return;let{secondarySharedTreeShakingName:s,secondarySharedTreeShakingEntry:l,treeShakingStatus:u}=o;a.status!==u&&(a.status=u,l&&c&&s&&(a.get=async()=>{let e=await (0,n.getRemoteEntry)({origin:i,remoteInfo:{name:s,entry:l,type:c,entryGlobalName:s,shareScope:"default"}});return await e.init(i,r.federation.bundlerRuntime),e.get()}))};return p.forEach(e=>{let[t,r]=e;m(t,r)}),e}}};return(t=i).plugins||(t.plugins=[]),i.plugins.push(d()),s.init(i)}},7440(e,t){t.initContainerEntry=function(e){let{webpackRequire:t,shareScope:r,initScope:o,shareScopeKey:n,remoteEntryInitOptions:a}=e;if(!t.S||!t.federation||!t.federation.instance||!t.federation.initOptions)return;let i=t.federation.instance;i.initOptions({name:t.federation.initOptions.name,remotes:[],...a});let s=null==a?void 0:a.shareScopeKeys,l=null==a?void 0:a.shareScopeMap;if(n&&"string"!=typeof n)n.forEach(e=>{if(!s||!l)return void i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}});l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})});else{let e=n||"default";Array.isArray(s)?s.forEach(e=>{l[e]||(l[e]={});let t=l[e];i.initShareScopeMap(e,t,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}):i.initShareScopeMap(e,r,{hostShareScopeMap:(null==a?void 0:a.shareScopeMap)||{}})}return(t.federation.attachShareScopeMap&&t.federation.attachShareScopeMap(t),"function"==typeof t.federation.prefetch&&t.federation.prefetch(),Array.isArray(n))?t.federation.initOptions.shared?t.I(n,o):Promise.all(n.map(e=>t.I(e,o))).then(()=>!0):t.I(n||"default",o)}},6777(e,t,r){let o=r(2069),n=r(6897);t.initializeSharing=function(e){let{shareScopeName:t,webpackRequire:r,initPromises:a,initTokens:i,initScope:s}=e,l=Array.isArray(t)?t:[t];var u=[],c=function(e){s||(s=[]);let l=r.federation.instance;var u=i[e];if(u||(u=i[e]={from:l.name}),s.indexOf(u)>=0)return;s.push(u);let c=a[e];if(c)return c;var d=e=>"u">typeof console&&console.warn&&console.warn(e),f=o=>{var n=e=>d("Initialization of sharing external failed: "+e);try{var a=r(o);if(!a)return;var i=o=>o&&o.init&&o.init(r.S[e],s,{shareScopeMap:r.S||{},shareScopeKeys:t});if(a.then)return p.push(a.then(i,n));var l=i(a);if(l&&"boolean"!=typeof l&&l.then)return p.push(l.catch(n))}catch(e){n(e)}};let p=l.initializeSharing(e,{strategy:l.options.shareStrategy,initScope:s,from:"build"});o.attachShareScopeMap(r);let h=r.federation.bundlerRuntimeOptions.remotes;return(h&&Object.keys(h.idToRemoteMap).forEach(e=>{let t=h.idToRemoteMap[e],r=h.idToExternalAndNameMapping[e][2];if(t.length>1)f(r);else if(1===t.length){let e=t[0];n.FEDERATION_SUPPORTED_TYPES.includes(e.externalType)||f(r)}}),p.length)?a[e]=Promise.all(p).then(()=>a[e]=!0):a[e]=!0};return l.forEach(e=>{u.push(c(e))}),Promise.all(u).then(()=>!0)}},1735(e,t,r){let o=r(5216),n=r(7617);function a(e){let{moduleId:t,moduleToHandlerMapping:r,webpackRequire:o,asyncLoad:a}=e,i=o.federation.instance;if(!i)throw Error("Federation instance not found!");let{shareKey:s,shareInfo:l}=r[t];try{let e=n.getUsedExports(o,s),t={...l};if(e&&(t.treeShaking={usedExports:e,useIn:[i.options.name]}),a)return i.loadShare(s,{customShareInfo:t});return i.loadShareSync(s,{customShareInfo:t})}catch(e){throw console.error('loadShareSync failed! The function should not be called unless you set "eager:true". If you do not set it, and encounter this issue, you can check whether an async boundary is implemented.'),console.error("The original error message is as follows: "),e}}t.installInitialConsumes=function(e){o.updateConsumeOptions(e);let{moduleToHandlerMapping:t,webpackRequire:r,installedModules:n,initialConsumes:i,asyncLoad:s}=e,l=[];i.forEach(e=>{let o=()=>a({moduleId:e,moduleToHandlerMapping:t,webpackRequire:r,asyncLoad:s});l.push([e,o])});let u=(e,o)=>{r.m[e]=a=>{var i;n[e]=0,delete r.c[e];let s=o();if("function"!=typeof s)throw Error(`Shared module is not available for eager consumption: ${e}`);let l=s(),{shareInfo:u}=t[e];if((null==u||null==(i=u.shareConfig)?void 0:i.layer)&&l&&"object"==typeof l)try{l.hasOwnProperty("layer")&&void 0!==l.layer||(l.layer=u.shareConfig.layer)}catch(e){}a.exports=l}};if(s)return Promise.all(l.map(async e=>{let[t,r]=e,o=await r();u(t,()=>o)}));l.forEach(e=>{let[t,r]=e;u(t,r)})}},6310(e,t,r){r(7363);let o=r(2069),n=r(6897),a=r(5216),i=r(630);t.remotes=function(e){a.updateRemoteOptions(e);let{chunkId:t,promises:r,webpackRequire:s,chunkMapping:l,idToExternalAndNameMapping:u,idToRemoteMap:c}=e;o.attachShareScopeMap(s),s.o(l,t)&&l[t].forEach(e=>{let t=s.R;t||(t=[]);let o=u[e],a=c[e]||[];if(t.indexOf(o)>=0)return;if(t.push(o),o.p)return r.push(o.p);let l=t=>{t||(t=Error("Container missing")),"string"==typeof t.message&&(t.message+=` -while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,p,r):l();var p=(e,r,n)=>d(r.get,o[1],t,0,h,n),h=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let m=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(m,o[2],0,0,h,1):d(s,o[2],0,0,f,1)})}},5216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=c;if(f&&p){for(let[e,t]of Object.entries(p))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},4043(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,p,h,m=r(6927),g=r.n(m);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={"@sdk":[{alias:"@sdk",externalType:"promise",shareScope:"default"}]},_="pimcore_studio_ui_bundle_core",S="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},m=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},b=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},M=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},N={},T=[],O={},A=null==(p=r.initializeExposesData)?void 0:p.shareScope;for(let e in g())r.federation[e]=g()[e];m(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(M))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),m(r.federation,"initOptions",()=>({})),m(r.federation.initOptions,"name",()=>_),m(r.federation.initOptions,"shareStrategy",()=>S),m(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),m(r.federation,"bundlerRuntimeOptions",()=>({})),m(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),m(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>b),m(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),m(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),m(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:b,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:N,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:T,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(h=r.consumesLoadingData)?void 0:h.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:N,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}},8448(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](r,r.exports,__webpack_require__),r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(5095),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return 889==e},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(r,o){if(1&o&&(r=this(r)),8&o||"object"==typeof r&&r&&(4&o&&r.__esModule||16&o&&"function"==typeof r.then))return r;var n=Object.create(null);__webpack_require__.r(n);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&o&&r;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>r[e]});return a.default=()=>r,__webpack_require__.d(n,a),n}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>""+e+".javascript"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[8448]},uniqueName:"pimcore_studio_ui_bundle_core"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{},moduleIdToConsumeDataMapping:{},initialConsumes:[]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={889:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(889==t){var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}else e[t]=0};var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);s&&s(__webpack_require__)}for(t&&t(r);l{__webpack_require__.remotesLoadingData={chunkMapping:{517:["8476"]},moduleIdToRemoteDataMapping:{8476:{shareScope:"default",name:"./_internal_/mf-bootstrap",externalModuleId:8448,remoteName:"@sdk"}}},__webpack_require__.f.remotes=__webpack_require__.f.remotes||function(){throw Error("should have __webpack_require__.f.remotes")}})(),(()=>{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(4043)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file +while loading "${o[1]}" from ${o[2]}`),s.m[e]=()=>{throw t},o.p=0},d=(e,t,n,a,i,s)=>{try{let u=e(t,n);if(!u||!u.then)return i(u,a,s);{let e=u.then(e=>i(e,a),l);if(!s)return e;r.push(o.p=e)}}catch(e){l(e)}},f=(e,t,r)=>e?d(s.I,o[0],0,e,p,r):l();var p=(e,r,n)=>d(r.get,o[1],t,0,h,n),h=t=>{o.p=1,s.m[e]=e=>{e.exports=t()}};let m=()=>{try{let e=(0,i.decodeName)(a[0].name,i.ENCODE_NAME_PREFIX)+o[1].slice(1),t=s.federation.instance,r=()=>s.federation.instance.loadRemote(e,{loadFactory:!1,from:"build"});if("version-first"===t.options.shareStrategy){let e=Array.isArray(o[0])?o[0]:[o[0]];return Promise.all(e.map(e=>t.sharedHandler.initializeSharing(e))).then(()=>r())}return r()}catch(e){l(e)}};1===a.length&&n.FEDERATION_SUPPORTED_TYPES.includes(a[0].externalType)&&a[0].name?d(m,o[2],0,0,h,1):d(s,o[2],0,0,f,1)})}},5216(e,t){function r(e){var t,r,o,n,a;let{webpackRequire:i,idToExternalAndNameMapping:s={},idToRemoteMap:l={},chunkMapping:u={}}=e,{remotesLoadingData:c}=i,d=null==(o=i.federation)||null==(r=o.bundlerRuntimeOptions)||null==(t=r.remotes)?void 0:t.remoteInfos;if(!c||c._updated||!d)return;let{chunkMapping:f,moduleIdToRemoteDataMapping:p}=c;if(f&&p){for(let[e,t]of Object.entries(p))if(s[e]||(s[e]=[t.shareScope,t.name,t.externalModuleId]),!l[e]&&d[t.remoteName]){let r=d[t.remoteName];(n=l)[a=e]||(n[a]=[]),r.forEach(t=>{l[e].includes(t)||l[e].push(t)})}u&&Object.entries(f).forEach(e=>{let[t,r]=e;u[t]||(u[t]=[]),r.forEach(e=>{u[t].includes(e)||u[t].push(e)})}),c._updated=1}}t.updateConsumeOptions=function(e){let{webpackRequire:t,moduleToHandlerMapping:r}=e,{consumesLoadingData:o,initializeSharingData:n}=t,{sharedFallback:a,bundlerRuntime:i,libraryType:s}=t.federation;if(o&&!o._updated){let{moduleIdToConsumeDataMapping:n={},initialConsumes:l=[],chunkMapping:u={}}=o;if(Object.entries(n).forEach(e=>{let[o,n]=e;r[o]||(r[o]={getter:a?null==i?void 0:i.getSharedFallbackGetter({shareKey:n.shareKey,factory:n.fallback,webpackRequire:t,libraryType:s}):n.fallback,treeShakingGetter:a?n.fallback:void 0,shareInfo:{shareConfig:{requiredVersion:n.requiredVersion,strictVersion:n.strictVersion,singleton:n.singleton,eager:n.eager,layer:n.layer},scope:Array.isArray(n.shareScope)?n.shareScope:[n.shareScope||"default"],treeShaking:a?{get:n.fallback,mode:n.treeShakingMode}:void 0},shareKey:n.shareKey})}),"initialConsumes"in e){let{initialConsumes:t=[]}=e;l.forEach(e=>{t.includes(e)||t.push(e)})}if("chunkMapping"in e){let{chunkMapping:t={}}=e;Object.entries(u).forEach(e=>{let[r,o]=e;t[r]||(t[r]=[]),o.forEach(e=>{t[r].includes(e)||t[r].push(e)})})}o._updated=1}if(n&&!n._updated){let{federation:e}=t;if(!e.instance||!n.scopeToSharingDataMapping)return;let r={};for(let[e,t]of Object.entries(n.scopeToSharingDataMapping))for(let o of t)if("object"==typeof o&&null!==o){let{name:t,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={requiredVersion:`^${n}`},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[e],shareConfig:c,get:a};r[t]?r[t].push(f):r[t]=[f]}e.instance.registerShared(r),n._updated=1}},t.updateRemoteOptions=r},4043(e,t,r){"use strict";var o,n,a,i,s,l,u,c,d,f,p,h,m=r(6927),g=r.n(m);let y=[].filter(e=>{let{plugin:t}=e;return t}).map(e=>{let{plugin:t,params:r}=e;return t(r)}),E={"@sdk":[{alias:"@sdk",externalType:"promise",shareScope:"default"}]},_="pimcore_studio_ui_bundle_core",S="version-first";if((r.initializeSharingData||r.initializeExposesData)&&r.federation){let e=(e,t,r)=>{e&&e[t]&&(e[t]=r)},t=(e,t,r)=>{var o,n,a,i,s,l;let u=r();Array.isArray(u)?(null!=(a=(o=e)[n=t])||(o[n]=[]),e[t].push(...u)):"object"==typeof u&&null!==u&&(null!=(l=(i=e)[s=t])||(i[s]={}),Object.assign(e[t],u))},m=(e,t,r)=>{var o,n,a;null!=(a=(o=e)[n=t])||(o[n]=r())},b=null!=(o=null==(l=r.remotesLoadingData)?void 0:l.chunkMapping)?o:{},v=null!=(n=null==(u=r.remotesLoadingData)?void 0:u.moduleIdToRemoteDataMapping)?n:{},R=null!=(a=null==(c=r.initializeSharingData)?void 0:c.scopeToSharingDataMapping)?a:{},I=null!=(i=null==(d=r.consumesLoadingData)?void 0:d.chunkMapping)?i:{},M=null!=(s=null==(f=r.consumesLoadingData)?void 0:f.moduleIdToConsumeDataMapping)?s:{},N={},T=[],O={},A=null==(p=r.initializeExposesData)?void 0:p.shareScope;for(let e in g())r.federation[e]=g()[e];m(r.federation,"consumesLoadingModuleToHandlerMapping",()=>{let e={};for(let[t,r]of Object.entries(M))e[t]={getter:r.fallback,shareInfo:{shareConfig:{fixedDependencies:!1,requiredVersion:r.requiredVersion,strictVersion:r.strictVersion,singleton:r.singleton,eager:r.eager},scope:[r.shareScope]},shareKey:r.shareKey};return e}),m(r.federation,"initOptions",()=>({})),m(r.federation.initOptions,"name",()=>_),m(r.federation.initOptions,"shareStrategy",()=>S),m(r.federation.initOptions,"shared",()=>{let e={};for(let[t,r]of Object.entries(R))for(let o of r)if("object"==typeof o&&null!==o){let{name:r,version:n,factory:a,eager:i,singleton:s,requiredVersion:l,strictVersion:u}=o,c={},d=function(e){return void 0!==e};d(s)&&(c.singleton=s),d(l)&&(c.requiredVersion=l),d(i)&&(c.eager=i),d(u)&&(c.strictVersion=u);let f={version:n,scope:[t],shareConfig:c,get:a};e[r]?e[r].push(f):e[r]=[f]}return e}),t(r.federation.initOptions,"remotes",()=>Object.values(E).flat().filter(e=>"script"===e.externalType)),t(r.federation.initOptions,"plugins",()=>y),m(r.federation,"bundlerRuntimeOptions",()=>({})),m(r.federation.bundlerRuntimeOptions,"remotes",()=>({})),m(r.federation.bundlerRuntimeOptions.remotes,"chunkMapping",()=>b),m(r.federation.bundlerRuntimeOptions.remotes,"remoteInfos",()=>E),m(r.federation.bundlerRuntimeOptions.remotes,"idToExternalAndNameMapping",()=>{let e={};for(let[t,r]of Object.entries(v))e[t]=[r.shareScope,r.name,r.externalModuleId,r.remoteName];return e}),m(r.federation.bundlerRuntimeOptions.remotes,"webpackRequire",()=>r),t(r.federation.bundlerRuntimeOptions.remotes,"idToRemoteMap",()=>{let e={};for(let[t,r]of Object.entries(v)){let o=E[r.remoteName];o&&(e[t]=o)}return e}),e(r,"S",r.federation.bundlerRuntime.S),r.federation.attachShareScopeMap&&r.federation.attachShareScopeMap(r),e(r.f,"remotes",(e,t)=>r.federation.bundlerRuntime.remotes({chunkId:e,promises:t,chunkMapping:b,idToExternalAndNameMapping:r.federation.bundlerRuntimeOptions.remotes.idToExternalAndNameMapping,idToRemoteMap:r.federation.bundlerRuntimeOptions.remotes.idToRemoteMap,webpackRequire:r})),e(r.f,"consumes",(e,t)=>r.federation.bundlerRuntime.consumes({chunkId:e,promises:t,chunkMapping:I,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping,installedModules:N,webpackRequire:r})),e(r,"I",(e,t)=>r.federation.bundlerRuntime.I({shareScopeName:e,initScope:t,initPromises:T,initTokens:O,webpackRequire:r})),e(r,"initContainer",(e,t,o)=>r.federation.bundlerRuntime.initContainerEntry({shareScope:e,initScope:t,remoteEntryInitOptions:o,shareScopeKey:A,webpackRequire:r})),e(r,"getContainer",(e,t)=>{var o=r.initializeExposesData.moduleMap;return r.R=t,t=Object.prototype.hasOwnProperty.call(o,e)?o[e]():Promise.resolve().then(()=>{throw Error('Module "'+e+'" does not exist in container.')}),r.R=void 0,t}),r.federation.instance=r.federation.runtime.init(r.federation.initOptions),(null==(h=r.consumesLoadingData)?void 0:h.initialConsumes)&&r.federation.bundlerRuntime.installInitialConsumes({webpackRequire:r,installedModules:N,initialConsumes:r.consumesLoadingData.initialConsumes,moduleToHandlerMapping:r.federation.consumesLoadingModuleToHandlerMapping})}},8448(e){"use strict";e.exports=new Promise(e=>{let t=window.StudioUIBundleRemoteUrl,r=document.createElement("script");r.src=t,r.onload=()=>{e({get:e=>window.pimcore_studio_ui_bundle.get(e),init:(...e)=>{try{return window.pimcore_studio_ui_bundle.init(...e)}catch(e){console.log("remote container already initialized")}}})},document.head.appendChild(r)})}},__webpack_module_cache__={};function __webpack_require__(e){var t=__webpack_module_cache__[e];if(void 0!==t)return t.exports;var r=__webpack_module_cache__[e]={exports:{}};return __webpack_modules__[e](r,r.exports,__webpack_require__),r.exports}__webpack_require__.m=__webpack_modules__,__webpack_require__.c=__webpack_module_cache__,__webpack_require__.x=()=>__webpack_require__(5095),(()=>{__webpack_require__.federation||(__webpack_require__.federation={chunkMatcher:function(e){return 889==e},rootOutputDir:"../../"})})(),(()=>{__webpack_require__.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return __webpack_require__.d(t,{a:t}),t}})(),(()=>{var e,t=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__;__webpack_require__.t=function(r,o){if(1&o&&(r=this(r)),8&o||"object"==typeof r&&r&&(4&o&&r.__esModule||16&o&&"function"==typeof r.then))return r;var n=Object.create(null);__webpack_require__.r(n);var a={};e=e||[null,t({}),t([]),t(t)];for(var i=2&o&&r;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=t(i))Object.getOwnPropertyNames(i).forEach(e=>{a[e]=()=>r[e]});return a.default=()=>r,__webpack_require__.d(n,a),n}})(),(()=>{__webpack_require__.d=(e,t)=>{for(var r in t)__webpack_require__.o(t,r)&&!__webpack_require__.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})}})(),(()=>{__webpack_require__.f={},__webpack_require__.e=e=>Promise.all(Object.keys(__webpack_require__.f).reduce((t,r)=>(__webpack_require__.f[r](e,t),t),[]))})(),(()=>{__webpack_require__.u=e=>""+e+".javascript"})(),(()=>{__webpack_require__.miniCssF=e=>""+e+".css"})(),(()=>{__webpack_require__.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t)})(),(()=>{var e={},t="pimcore_studio_ui_bundle_core:";__webpack_require__.l=function(r,o,n,a){if(e[r])return void e[r].push(o);if(void 0!==n)for(var i,s,l=document.getElementsByTagName("script"),u=0;u{__webpack_require__.r=e=>{"u">typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}})(),(()=>{__webpack_require__.p="/bundles/pimcorestudioui/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/"})(),(()=>{__webpack_require__.S={},__webpack_require__.initializeSharingData={scopeToSharingDataMapping:{default:[8448]},uniqueName:"pimcore_studio_ui_bundle_core"},__webpack_require__.I=__webpack_require__.I||function(){throw Error("should have __webpack_require__.I")}})(),(()=>{__webpack_require__.consumesLoadingData={chunkMapping:{},moduleIdToConsumeDataMapping:{},initialConsumes:[]},__webpack_require__.f.consumes=__webpack_require__.f.consumes||function(){throw Error("should have __webpack_require__.f.consumes")}})(),(()=>{var e={889:0};__webpack_require__.f.j=function(t,r){var o=__webpack_require__.o(e,t)?e[t]:void 0;if(0!==o)if(o)r.push(o[2]);else if(889==t){var n=new Promise((r,n)=>o=e[t]=[r,n]);r.push(o[2]=n);var a=__webpack_require__.p+__webpack_require__.u(t),i=Error(),s=function(r){if(__webpack_require__.o(e,t)&&(0!==(o=e[t])&&(e[t]=void 0),o)){var n=r&&("load"===r.type?"missing":r.type),a=r&&r.target&&r.target.src;i.message="Loading chunk "+t+" failed.\n("+n+": "+a+")",i.name="ChunkLoadError",i.type=n,i.request=a,o[1](i)}};__webpack_require__.l(a,s,"chunk-"+t,t)}else e[t]=0};var t=(t,r)=>{var o,n,[a,i,s]=r,l=0;if(a.some(t=>0!==e[t])){for(o in i)__webpack_require__.o(i,o)&&(__webpack_require__.m[o]=i[o]);s&&s(__webpack_require__)}for(t&&t(r);l{__webpack_require__.remotesLoadingData={chunkMapping:{517:["8476"]},moduleIdToRemoteDataMapping:{8476:{shareScope:"default",name:"./_internal_/mf-bootstrap",externalModuleId:8448,remoteName:"@sdk"}}},__webpack_require__.f.remotes=__webpack_require__.f.remotes||function(){throw Error("should have __webpack_require__.f.remotes")}})(),(()=>{var e=__webpack_require__.x,t=!1;__webpack_require__.x=function(){if(t||(t=!0,__webpack_require__(4043)),"function"==typeof e)return e();console.warn("[MF] Invalid prevStartup")}})();var __webpack_exports__=__webpack_require__.x()})(); \ No newline at end of file diff --git a/public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js.LICENSE.txt b/public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js.LICENSE.txt similarity index 100% rename from public/build/92ef4d43-6e6b-47fb-91ec-31e1741d81cd/static/js/main.fd5cd6b1.js.LICENSE.txt rename to public/build/a648560e-46ca-49f1-8d1d-88b2c61c30d4/static/js/main.c894eeac.js.LICENSE.txt diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/entrypoints.json b/public/build/df7c6572-7867-43e5-a496-07351109317c/entrypoints.json deleted file mode 100644 index ada15c7fff..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/entrypoints.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "entrypoints": { - "index": { - "js": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/index.26b934bc.js" - ], - "css": [] - }, - "pimcore_studio_ui_bundle": { - "js": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/remoteEntry.js" - ], - "css": [] - }, - "exposeRemote": { - "js": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/exposeRemote.js" - ], - "css": [] - } - } -} \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/exposeRemote.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/exposeRemote.js deleted file mode 100644 index 90d05ac58c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/exposeRemote.js +++ /dev/null @@ -1,3 +0,0 @@ - - window.StudioUIBundleRemoteUrl = '/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/remoteEntry.js' - \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/index.html b/public/build/df7c6572-7867-43e5-a496-07351109317c/index.html deleted file mode 100644 index 7afef44697..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/index.html +++ /dev/null @@ -1 +0,0 @@ -Rsbuild App
\ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/manifest.json b/public/build/df7c6572-7867-43e5-a496-07351109317c/manifest.json deleted file mode 100644 index 78ef906bad..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/manifest.json +++ /dev/null @@ -1,811 +0,0 @@ -{ - "allFiles": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/index.26b934bc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/remoteEntry.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8222.acb59083.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6464.b6d25cb6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9204.8f0c9c3a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6619.93b9f2c4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8473.25a53f08.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7463.e177b088.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/854.95bad760.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5976.be3da2cf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6579.cda7f334.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/706.01d44a78.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3209.6722a080.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6815.80ba0d22.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/749.7c748f48.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8658.55f9d53e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_default_export.1b3f6d28.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_app.ee859643.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api.fbe2c7c1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__asset.9dee10b3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__class_definition.6192771c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__data_object.160792b1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__dependencies.a9508cf9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__documents.8a5c66b8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__elements.5babca9f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__metadata.e9f2a028.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__perspectives.936945cf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__properties.314180ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__role.89b3367b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__schedule.9ccfa450.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__settings.2c556240.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__tags.f737e834.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__thumbnails.a167200d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__translations.7a8790cb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__user.0c42ebe1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__version.7220c1e1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__workflow.ad14d72f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__reports.50fc5ca0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__asset.51999de9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__class_definitions.009acac4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__document.5167229e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__auth.65d96793.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__icon_library.481bed67.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__translations.e3016a50.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__notifications.212009d9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_utils.526f5bda.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7789.50873df9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7597.42dde6f3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9880.64c12943.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6823.dc627341.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7680.2cb113f6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6550.09a63ebf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9114.7d0c9ca9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6484.2519155d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9603.dcad1930.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5154.a94bb137.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7006.928d8671.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8971.cb9861fc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9076.7a2b7e9a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/705.fad963d9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8231.0a773046.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8850.1ef4da0e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6572.510ff641.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1742.9207983d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8372.d6f25582.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8567.2e09cb4e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8609.b6039081.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7821.b1a2dc53.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6984.af4507e3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7440.04b86278.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9030.03e4d789.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8707.80dfb17f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2290.68fd6bdf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8645.7a1aa6c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8932.e8090749.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7960.9d4a54c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9471.3511726f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8574.8c240d77.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8779.bdcddd0a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7053.63c4c0a6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7799.a37e9eaf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8467.f7bd216d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/830.dda8066f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9052.67bd17cd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7161.f24a612f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7264.fc5a523f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7527.e64ccbd1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7828.812c672f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9403.9f36612d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6458.b5282ed0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6472.df513d2d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8835.d50a0005.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7334.be0321bf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8547.3355910d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9691.a7a34297.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8272.64fe9f7a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7939.af086f08.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8477.0c91210d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9801.09cd7cd0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/935.4dfccbd9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7041.230cf6a4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6695.087ae8ff.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/85.3d7bb7a3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7073.fb6439a4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7396.da4c50f4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/687.ae382b4d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8910.7686ba2c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7171.8731ac06.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9607.214ebd42.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7793.d6bce01b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8437.864e7b29.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7935.ba8eb0b4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6424.ca220edd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8146.e69de8bc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8557.e526282d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8832.e1a7ddbf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8635.29404620.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6649.2b614ce3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6759.cf6c0abd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/660.5242d83f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8536.df877041.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9357.709b2aae.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5990.3c9d8c23.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8520.3f467428.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6819.424ecfc4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9767.926906cb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8403.58bbddc4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9336.9a425d8d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7679.a6829c17.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/692.ac93e4e2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9322.81e49a3d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6743.851be9cb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3229.97f4b7e5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6967.4d971194.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/658.dc677028.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8031.b368b0bf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7524.73ba348d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7210.9113a386.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7419.b1cfaeac.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7250.364fbcad.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8051.9c74ecaf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6766.c76f91a5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8050.502aa521.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8800.1154e54c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7994.c600e1ce.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/741.734ea878.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/803.52d29752.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9536.9b33a533.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8479.55f72fe0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6911.d02db343.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8195.c8bb6771.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/lib-axios.f458d745.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2287.6a200c82.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1721.fdc19114.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/6411.c7ee9967.css", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6411.ae78ff82.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9765.07ec2c12.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5123.9f567207.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9007.f28d0779.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7442.636a9ffa.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9454.03f9cbf9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/mf-stats.json", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/mf-manifest.json", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Light.bec6f0ae.ttf", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Regular.4291f48c.ttf", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/svg/spritesheet.ac8b36fa.svg", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/index.html" - ], - "entries": { - "index": { - "html": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/index.html" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/index.26b934bc.js" - ] - }, - "async": { - "js": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9007.f28d0779.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5123.9f567207.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9765.07ec2c12.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2287.6a200c82.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6550.09a63ebf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7680.2cb113f6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9880.64c12943.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7597.42dde6f3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7789.50873df9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8658.55f9d53e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/749.7c748f48.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6815.80ba0d22.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3209.6722a080.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/706.01d44a78.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6579.cda7f334.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5976.be3da2cf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/854.95bad760.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7463.e177b088.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8473.25a53f08.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6619.93b9f2c4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9204.8f0c9c3a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6464.b6d25cb6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8222.acb59083.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js" - ] - } - }, - "pimcore_studio_ui_bundle": { - "assets": [ - "static/font/Lato-Light.bec6f0ae.ttf", - "static/font/Lato-Bold.2c00c297.ttf", - "static/font/Lato-Regular.4291f48c.ttf", - "static/svg/spritesheet.ac8b36fa.svg" - ], - "initial": { - "js": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/remoteEntry.js" - ] - }, - "async": { - "js": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9454.03f9cbf9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7442.636a9ffa.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9007.f28d0779.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5123.9f567207.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9765.07ec2c12.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6411.ae78ff82.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1721.fdc19114.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2287.6a200c82.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/lib-axios.f458d745.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8195.c8bb6771.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6911.d02db343.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8479.55f72fe0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9536.9b33a533.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/803.52d29752.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/741.734ea878.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7994.c600e1ce.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8800.1154e54c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8050.502aa521.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6766.c76f91a5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8051.9c74ecaf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7250.364fbcad.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7419.b1cfaeac.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7210.9113a386.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7524.73ba348d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8031.b368b0bf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/658.dc677028.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6967.4d971194.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3229.97f4b7e5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6743.851be9cb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9322.81e49a3d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/692.ac93e4e2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7679.a6829c17.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9336.9a425d8d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8403.58bbddc4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9767.926906cb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6819.424ecfc4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8520.3f467428.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5990.3c9d8c23.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9357.709b2aae.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8536.df877041.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/660.5242d83f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6759.cf6c0abd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6649.2b614ce3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8635.29404620.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8832.e1a7ddbf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8557.e526282d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8146.e69de8bc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6424.ca220edd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7935.ba8eb0b4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8437.864e7b29.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7793.d6bce01b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9607.214ebd42.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7171.8731ac06.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8910.7686ba2c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/687.ae382b4d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7396.da4c50f4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7073.fb6439a4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/85.3d7bb7a3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6695.087ae8ff.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7041.230cf6a4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/935.4dfccbd9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9801.09cd7cd0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8477.0c91210d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7939.af086f08.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8272.64fe9f7a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9691.a7a34297.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8547.3355910d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7334.be0321bf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8835.d50a0005.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6472.df513d2d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6458.b5282ed0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9403.9f36612d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7828.812c672f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7527.e64ccbd1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7264.fc5a523f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7161.f24a612f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9052.67bd17cd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/830.dda8066f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8467.f7bd216d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7799.a37e9eaf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7053.63c4c0a6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8779.bdcddd0a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8574.8c240d77.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9471.3511726f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7960.9d4a54c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8932.e8090749.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8645.7a1aa6c0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2290.68fd6bdf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8707.80dfb17f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9030.03e4d789.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7440.04b86278.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6984.af4507e3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7821.b1a2dc53.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8609.b6039081.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8567.2e09cb4e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8372.d6f25582.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1742.9207983d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6572.510ff641.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8850.1ef4da0e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8231.0a773046.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/705.fad963d9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9076.7a2b7e9a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8971.cb9861fc.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7006.928d8671.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5154.a94bb137.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9603.dcad1930.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6484.2519155d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9114.7d0c9ca9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6550.09a63ebf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7680.2cb113f6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6823.dc627341.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9880.64c12943.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7597.42dde6f3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7789.50873df9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_utils.526f5bda.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__notifications.212009d9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__translations.e3016a50.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__icon_library.481bed67.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__auth.65d96793.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__document.5167229e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__class_definitions.009acac4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__asset.51999de9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__reports.50fc5ca0.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__workflow.ad14d72f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__version.7220c1e1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__user.0c42ebe1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__translations.7a8790cb.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__thumbnails.a167200d.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__tags.f737e834.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__settings.2c556240.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__schedule.9ccfa450.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__role.89b3367b.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__properties.314180ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__perspectives.936945cf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__metadata.e9f2a028.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__elements.5babca9f.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__documents.8a5c66b8.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__dependencies.a9508cf9.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__data_object.160792b1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__class_definition.6192771c.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api__asset.9dee10b3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_api.fbe2c7c1.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_app.ee859643.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/__federation_expose_default_export.1b3f6d28.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8658.55f9d53e.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/749.7c748f48.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6815.80ba0d22.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3209.6722a080.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/706.01d44a78.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6579.cda7f334.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5976.be3da2cf.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/854.95bad760.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/7463.e177b088.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8473.25a53f08.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6619.93b9f2c4.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/9204.8f0c9c3a.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6464.b6d25cb6.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/8222.acb59083.js", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js" - ], - "css": [ - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/6411.c7ee9967.css", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css", - "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - } - }, - "integrity": {} -} \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/mf-manifest.json b/public/build/df7c6572-7867-43e5-a496-07351109317c/mf-manifest.json deleted file mode 100644 index 30a453a289..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/mf-manifest.json +++ /dev/null @@ -1,6618 +0,0 @@ -{ - "id": "pimcore_studio_ui_bundle", - "name": "pimcore_studio_ui_bundle", - "metaData": { - "name": "pimcore_studio_ui_bundle", - "type": "app", - "buildInfo": { - "buildVersion": "0.0.1", - "buildName": "@pimcore/studio-ui-bundle" - }, - "remoteEntry": { - "name": "static/js/remoteEntry.js", - "path": "", - "type": "global" - }, - "types": { - "path": "", - "name": "", - "zip": "", - "api": "" - }, - "globalName": "pimcore_studio_ui_bundle", - "pluginVersion": "2.2.3", - "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/" - }, - "shared": [ - { - "id": "pimcore_studio_ui_bundle:@ant-design/colors", - "name": "@ant-design/colors", - "version": "7.2.1", - "singleton": true, - "requiredVersion": "^7.2.1", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-css", - "name": "@codemirror/lang-css", - "version": "6.3.1", - "singleton": true, - "requiredVersion": "^6.3.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5561.b76a78d2.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-html", - "name": "@codemirror/lang-html", - "version": "6.4.11", - "singleton": true, - "requiredVersion": "^6.4.9", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/9007.f28d0779.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-javascript", - "name": "@codemirror/lang-javascript", - "version": "6.2.5", - "singleton": true, - "requiredVersion": "^6.2.2", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2775.0d98465a.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-json", - "name": "@codemirror/lang-json", - "version": "6.0.2", - "singleton": true, - "requiredVersion": "^6.0.1", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5841.812278cf.js", - "static/js/async/8222.acb59083.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-markdown", - "name": "@codemirror/lang-markdown", - "version": "6.5.0", - "singleton": true, - "requiredVersion": "^6.3.1", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6550.09a63ebf.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-sql", - "name": "@codemirror/lang-sql", - "version": "6.10.0", - "singleton": true, - "requiredVersion": "^6.8.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7680.2cb113f6.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-xml", - "name": "@codemirror/lang-xml", - "version": "6.1.0", - "singleton": true, - "requiredVersion": "^6.1.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/582.4f5fd381.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@codemirror/lang-yaml", - "name": "@codemirror/lang-yaml", - "version": "6.1.3", - "singleton": true, - "requiredVersion": "^6.1.2", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2272.b29c0e6c.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@dnd-kit/core", - "name": "@dnd-kit/core", - "version": "6.3.1", - "singleton": true, - "requiredVersion": "^6.1.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7789.50873df9.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@dnd-kit/modifiers", - "name": "@dnd-kit/modifiers", - "version": "7.0.0", - "singleton": true, - "requiredVersion": "^7.0.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6823.dc627341.js", - "static/js/async/9204.8f0c9c3a.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@dnd-kit/sortable", - "name": "@dnd-kit/sortable", - "version": "8.0.0", - "singleton": true, - "requiredVersion": "^8.0.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/9880.64c12943.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@reduxjs/toolkit", - "name": "@reduxjs/toolkit", - "version": "2.11.2", - "singleton": true, - "requiredVersion": "^2.3.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7597.42dde6f3.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@tanstack/react-table", - "name": "@tanstack/react-table", - "version": "8.21.3", - "singleton": true, - "requiredVersion": "^8.20.5", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6272.f2f56a80.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@tanstack/react-virtual", - "name": "@tanstack/react-virtual", - "version": "3.13.23", - "singleton": true, - "requiredVersion": "^3.13.12", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6619.93b9f2c4.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:antd-style", - "name": "antd-style", - "version": "3.7.1", - "singleton": true, - "requiredVersion": "3.7.x", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5123.9f567207.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:antd", - "name": "antd", - "version": "5.22.7", - "singleton": true, - "requiredVersion": "5.22.x", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:classnames", - "name": "classnames", - "version": "2.5.1", - "singleton": true, - "requiredVersion": "^2.5.1", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:dompurify", - "name": "dompurify", - "version": "3.3.3", - "singleton": true, - "requiredVersion": "^3.2.1", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7463.e177b088.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:flexlayout-react", - "name": "flexlayout-react", - "version": "0.7.15", - "singleton": true, - "requiredVersion": "^0.7.15", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/243.098f10af.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:framer-motion", - "name": "framer-motion", - "version": "11.18.2", - "singleton": true, - "requiredVersion": "^11.11.17", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2463.da2cfb76.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:i18next", - "name": "i18next", - "version": "23.16.8", - "singleton": true, - "requiredVersion": "^23.16.8", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5976.be3da2cf.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:immer", - "name": "immer", - "version": "11.1.4", - "singleton": true, - "requiredVersion": "^10.1.1", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/489.693d11de.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:js-yaml", - "name": "js-yaml", - "version": "4.1.1", - "singleton": true, - "requiredVersion": "^4.1.1", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6579.cda7f334.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:leaflet-draw", - "name": "leaflet-draw", - "version": "1.0.4", - "singleton": true, - "requiredVersion": "^1.0.4", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/254.7abe0c11.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:leaflet", - "name": "leaflet", - "version": "1.9.4", - "singleton": true, - "requiredVersion": "^1.9.4", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/706.01d44a78.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:lodash", - "name": "lodash", - "version": "4.17.23", - "singleton": true, - "requiredVersion": "^4.17.21", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/1668.120c2fdd.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:react-compiler-runtime", - "name": "react-compiler-runtime", - "version": "19.1.0-rc.3", - "singleton": true, - "requiredVersion": "^19.1.0-rc.2", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/3209.6722a080.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:react-dom", - "name": "react-dom", - "version": "18.3.1", - "singleton": true, - "requiredVersion": "18.3.x", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:react-draggable", - "name": "react-draggable", - "version": "4.5.0", - "singleton": true, - "requiredVersion": "^4.4.6", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6815.80ba0d22.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:react-i18next", - "name": "react-i18next", - "version": "14.1.3", - "singleton": true, - "requiredVersion": "^14.1.3", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/3379.f0e413e5.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:react-redux", - "name": "react-redux", - "version": "9.2.0", - "singleton": true, - "requiredVersion": "^9.1.2", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2237.e23d4ce3.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:react-router-dom", - "name": "react-router-dom", - "version": "6.30.3", - "singleton": true, - "requiredVersion": "^6.28.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/749.7c748f48.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:react", - "name": "react", - "version": "18.3.1", - "singleton": true, - "requiredVersion": "18.3.x", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:reflect-metadata", - "name": "reflect-metadata", - "version": "0.2.2", - "singleton": true, - "requiredVersion": "^0.2.2", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:uuid", - "name": "uuid", - "version": "10.0.0", - "singleton": true, - "requiredVersion": "^10.0.0", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/8658.55f9d53e.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:inversify", - "name": "inversify", - "version": "6.1.x", - "singleton": true, - "requiredVersion": "6.1.x", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/1721.fdc19114.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "fallback": "" - }, - { - "id": "pimcore_studio_ui_bundle:@uiw/react-codemirror", - "name": "@uiw/react-codemirror", - "version": "^4.23.6", - "singleton": true, - "requiredVersion": "^4.23.6", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6411.ae78ff82.js" - ] - }, - "css": { - "async": [], - "sync": [ - "static/css/async/6411.c7ee9967.css" - ] - } - }, - "fallback": "" - } - ], - "remotes": [], - "exposes": [ - { - "id": "pimcore_studio_ui_bundle:.", - "name": ".", - "assets": { - "js": { - "sync": [ - "static/js/async/__federation_expose_default_export.1b3f6d28.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "." - }, - { - "id": "pimcore_studio_ui_bundle:_internal_/mf-bootstrap", - "name": "_internal_/mf-bootstrap", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ], - "async": [] - } - }, - "path": "./_internal_/mf-bootstrap" - }, - { - "id": "pimcore_studio_ui_bundle:_internal_/mf-bootstrap-document-editor-iframe", - "name": "_internal_/mf-bootstrap-document-editor-iframe", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - }, - "path": "./_internal_/mf-bootstrap-document-editor-iframe" - }, - { - "id": "pimcore_studio_ui_bundle:components", - "name": "components", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./components" - }, - { - "id": "pimcore_studio_ui_bundle:app", - "name": "app", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - }, - "path": "./app" - }, - { - "id": "pimcore_studio_ui_bundle:api", - "name": "api", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_api__asset.9dee10b3.js", - "static/js/async/__federation_expose_api__class_definition.6192771c.js", - "static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", - "static/js/async/__federation_expose_api__data_object.160792b1.js", - "static/js/async/__federation_expose_api__dependencies.a9508cf9.js", - "static/js/async/__federation_expose_api__documents.8a5c66b8.js", - "static/js/async/__federation_expose_api__elements.5babca9f.js", - "static/js/async/__federation_expose_api__metadata.e9f2a028.js", - "static/js/async/__federation_expose_api__perspectives.936945cf.js", - "static/js/async/__federation_expose_api__properties.314180ef.js", - "static/js/async/__federation_expose_api__role.89b3367b.js", - "static/js/async/__federation_expose_api__schedule.9ccfa450.js", - "static/js/async/__federation_expose_api__settings.2c556240.js", - "static/js/async/__federation_expose_api__tags.f737e834.js", - "static/js/async/__federation_expose_api__thumbnails.a167200d.js", - "static/js/async/__federation_expose_api__translations.7a8790cb.js", - "static/js/async/__federation_expose_api__user.0c42ebe1.js", - "static/js/async/__federation_expose_api__version.7220c1e1.js", - "static/js/async/__federation_expose_api__workflow.ad14d72f.js", - "static/js/async/__federation_expose_api__reports.50fc5ca0.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__class_definitions.009acac4.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__translations.e3016a50.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/45.e217286d.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ] - } - }, - "path": "./api" - }, - { - "id": "pimcore_studio_ui_bundle:api/asset", - "name": "api/asset", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_api__asset.9dee10b3.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/asset" - }, - { - "id": "pimcore_studio_ui_bundle:api/class-definition", - "name": "api/class-definition", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/__federation_expose_api__class_definition.6192771c.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/class-definition" - }, - { - "id": "pimcore_studio_ui_bundle:api/custom-metadata", - "name": "api/custom-metadata", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__custom_metadata.10d73b97.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/custom-metadata" - }, - { - "id": "pimcore_studio_ui_bundle:api/data-object", - "name": "api/data-object", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__data_object.160792b1.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/data-object" - }, - { - "id": "pimcore_studio_ui_bundle:api/dependencies", - "name": "api/dependencies", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__dependencies.a9508cf9.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/dependencies" - }, - { - "id": "pimcore_studio_ui_bundle:api/documents", - "name": "api/documents", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__documents.8a5c66b8.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/documents" - }, - { - "id": "pimcore_studio_ui_bundle:api/elements", - "name": "api/elements", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__elements.5babca9f.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/elements" - }, - { - "id": "pimcore_studio_ui_bundle:api/metadata", - "name": "api/metadata", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__metadata.e9f2a028.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/metadata" - }, - { - "id": "pimcore_studio_ui_bundle:api/perspectives", - "name": "api/perspectives", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__perspectives.936945cf.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/perspectives" - }, - { - "id": "pimcore_studio_ui_bundle:api/properties", - "name": "api/properties", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__properties.314180ef.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/properties" - }, - { - "id": "pimcore_studio_ui_bundle:api/role", - "name": "api/role", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__role.89b3367b.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/role" - }, - { - "id": "pimcore_studio_ui_bundle:api/schedule", - "name": "api/schedule", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__schedule.9ccfa450.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/schedule" - }, - { - "id": "pimcore_studio_ui_bundle:api/settings", - "name": "api/settings", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__settings.2c556240.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/settings" - }, - { - "id": "pimcore_studio_ui_bundle:api/tags", - "name": "api/tags", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__tags.f737e834.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/tags" - }, - { - "id": "pimcore_studio_ui_bundle:api/thumbnails", - "name": "api/thumbnails", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__thumbnails.a167200d.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/thumbnails" - }, - { - "id": "pimcore_studio_ui_bundle:api/translations", - "name": "api/translations", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__translations.7a8790cb.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/translations" - }, - { - "id": "pimcore_studio_ui_bundle:api/user", - "name": "api/user", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__user.0c42ebe1.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/user" - }, - { - "id": "pimcore_studio_ui_bundle:api/version", - "name": "api/version", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__version.7220c1e1.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/version" - }, - { - "id": "pimcore_studio_ui_bundle:api/workflow", - "name": "api/workflow", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__workflow.ad14d72f.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/workflow" - }, - { - "id": "pimcore_studio_ui_bundle:api/reports", - "name": "api/reports", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__reports.50fc5ca0.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./api/reports" - }, - { - "id": "pimcore_studio_ui_bundle:modules/app", - "name": "modules/app", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/app" - }, - { - "id": "pimcore_studio_ui_bundle:modules/application-logger", - "name": "modules/application-logger", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/application-logger" - }, - { - "id": "pimcore_studio_ui_bundle:modules/asset", - "name": "modules/asset", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/asset" - }, - { - "id": "pimcore_studio_ui_bundle:modules/class-definitions", - "name": "modules/class-definitions", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/__federation_expose_modules__class_definitions.009acac4.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/class-definitions" - }, - { - "id": "pimcore_studio_ui_bundle:modules/data-object", - "name": "modules/data-object", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__document.5167229e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - }, - "path": "./modules/data-object" - }, - { - "id": "pimcore_studio_ui_bundle:modules/document", - "name": "modules/document", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/__federation_expose_modules__document.5167229e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/document" - }, - { - "id": "pimcore_studio_ui_bundle:modules/element", - "name": "modules/element", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/element" - }, - { - "id": "pimcore_studio_ui_bundle:modules/field-definitions", - "name": "modules/field-definitions", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - }, - "path": "./modules/field-definitions" - }, - { - "id": "pimcore_studio_ui_bundle:modules/auth", - "name": "modules/auth", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/auth" - }, - { - "id": "pimcore_studio_ui_bundle:modules/icon-library", - "name": "modules/icon-library", - "assets": { - "js": { - "sync": [ - "static/js/async/__federation_expose_modules__icon_library.481bed67.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/icon-library" - }, - { - "id": "pimcore_studio_ui_bundle:modules/reports", - "name": "modules/reports", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/reports" - }, - { - "id": "pimcore_studio_ui_bundle:modules/rule-builder", - "name": "modules/rule-builder", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/rule-builder" - }, - { - "id": "pimcore_studio_ui_bundle:modules/translations", - "name": "modules/translations", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_modules__translations.e3016a50.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/translations" - }, - { - "id": "pimcore_studio_ui_bundle:modules/user", - "name": "modules/user", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/user" - }, - { - "id": "pimcore_studio_ui_bundle:modules/widget-editor", - "name": "modules/widget-editor", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/widget-editor" - }, - { - "id": "pimcore_studio_ui_bundle:modules/widget-manager", - "name": "modules/widget-manager", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/widget-manager" - }, - { - "id": "pimcore_studio_ui_bundle:modules/wysiwyg", - "name": "modules/wysiwyg", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/wysiwyg" - }, - { - "id": "pimcore_studio_ui_bundle:modules/notifications", - "name": "modules/notifications", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/notifications" - }, - { - "id": "pimcore_studio_ui_bundle:modules/perspectives", - "name": "modules/perspectives", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/perspectives" - }, - { - "id": "pimcore_studio_ui_bundle:modules/global-message-bus", - "name": "modules/global-message-bus", - "assets": { - "js": { - "sync": [ - "static/js/async/7442.636a9ffa.js", - "static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - }, - "path": "./modules/global-message-bus" - }, - { - "id": "pimcore_studio_ui_bundle:modules/gdpr-data-extractor", - "name": "modules/gdpr-data-extractor", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - }, - "path": "./modules/gdpr-data-extractor" - }, - { - "id": "pimcore_studio_ui_bundle:utils", - "name": "utils", - "assets": { - "js": { - "sync": [ - "static/js/async/3902.5873a27f.js", - "static/js/async/__federation_expose_utils.526f5bda.js" - ], - "async": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ] - }, - "css": { - "sync": [], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ] - } - }, - "path": "./utils" - } - ] -} \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/mf-stats.json b/public/build/df7c6572-7867-43e5-a496-07351109317c/mf-stats.json deleted file mode 100644 index c1867b10a2..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/mf-stats.json +++ /dev/null @@ -1,6964 +0,0 @@ -{ - "id": "pimcore_studio_ui_bundle", - "name": "pimcore_studio_ui_bundle", - "metaData": { - "name": "pimcore_studio_ui_bundle", - "type": "app", - "buildInfo": { - "buildVersion": "0.0.1", - "buildName": "@pimcore/studio-ui-bundle" - }, - "remoteEntry": { - "name": "static/js/remoteEntry.js", - "path": "", - "type": "global" - }, - "types": { - "path": "", - "name": "", - "zip": "", - "api": "" - }, - "globalName": "pimcore_studio_ui_bundle", - "pluginVersion": "2.2.3", - "prefetchInterface": false, - "publicPath": "/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/" - }, - "shared": [ - { - "singleton": true, - "requiredVersion": "^7.2.1", - "shareScope": "default", - "eager": true, - "name": "@ant-design/colors", - "version": "7.2.1", - "id": "pimcore_studio_ui_bundle:@ant-design/colors", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.3.0", - "shareScope": "default", - "import": "@codemirror/lang-css", - "name": "@codemirror/lang-css", - "version": "6.3.1", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-css", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5561.b76a78d2.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.4.9", - "shareScope": "default", - "import": "@codemirror/lang-html", - "name": "@codemirror/lang-html", - "version": "6.4.11", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-html", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/9007.f28d0779.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.2.2", - "shareScope": "default", - "import": "@codemirror/lang-javascript", - "name": "@codemirror/lang-javascript", - "version": "6.2.5", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-javascript", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2775.0d98465a.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.0.1", - "shareScope": "default", - "import": "@codemirror/lang-json", - "name": "@codemirror/lang-json", - "version": "6.0.2", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-json", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5841.812278cf.js", - "static/js/async/8222.acb59083.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.3.1", - "shareScope": "default", - "import": "@codemirror/lang-markdown", - "name": "@codemirror/lang-markdown", - "version": "6.5.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-markdown", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6550.09a63ebf.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.8.0", - "shareScope": "default", - "import": "@codemirror/lang-sql", - "name": "@codemirror/lang-sql", - "version": "6.10.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-sql", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7680.2cb113f6.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.1.0", - "shareScope": "default", - "import": "@codemirror/lang-xml", - "name": "@codemirror/lang-xml", - "version": "6.1.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-xml", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/582.4f5fd381.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.1.2", - "shareScope": "default", - "import": "@codemirror/lang-yaml", - "name": "@codemirror/lang-yaml", - "version": "6.1.3", - "eager": false, - "id": "pimcore_studio_ui_bundle:@codemirror/lang-yaml", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2272.b29c0e6c.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.1.0", - "shareScope": "default", - "import": "@dnd-kit/core", - "name": "@dnd-kit/core", - "version": "6.3.1", - "eager": false, - "id": "pimcore_studio_ui_bundle:@dnd-kit/core", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7789.50873df9.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^7.0.0", - "shareScope": "default", - "import": "@dnd-kit/modifiers", - "name": "@dnd-kit/modifiers", - "version": "7.0.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:@dnd-kit/modifiers", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6823.dc627341.js", - "static/js/async/9204.8f0c9c3a.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^8.0.0", - "shareScope": "default", - "import": "@dnd-kit/sortable", - "name": "@dnd-kit/sortable", - "version": "8.0.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:@dnd-kit/sortable", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/9880.64c12943.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^2.3.0", - "shareScope": "default", - "import": "@reduxjs/toolkit", - "name": "@reduxjs/toolkit", - "version": "2.11.2", - "eager": false, - "id": "pimcore_studio_ui_bundle:@reduxjs/toolkit", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7597.42dde6f3.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^8.20.5", - "shareScope": "default", - "import": "@tanstack/react-table", - "name": "@tanstack/react-table", - "version": "8.21.3", - "eager": false, - "id": "pimcore_studio_ui_bundle:@tanstack/react-table", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6272.f2f56a80.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^3.13.12", - "shareScope": "default", - "import": "@tanstack/react-virtual", - "name": "@tanstack/react-virtual", - "version": "3.13.23", - "eager": false, - "id": "pimcore_studio_ui_bundle:@tanstack/react-virtual", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6619.93b9f2c4.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "3.7.x", - "shareScope": "default", - "import": "antd-style", - "name": "antd-style", - "version": "3.7.1", - "eager": false, - "id": "pimcore_studio_ui_bundle:antd-style", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5123.9f567207.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./components", - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "5.22.x", - "shareScope": "default", - "eager": true, - "name": "antd", - "version": "5.22.7", - "id": "pimcore_studio_ui_bundle:antd", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./components", - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^2.5.1", - "shareScope": "default", - "eager": true, - "name": "classnames", - "version": "2.5.1", - "id": "pimcore_studio_ui_bundle:classnames", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./modules/element", - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^3.2.1", - "shareScope": "default", - "import": "dompurify", - "name": "dompurify", - "version": "3.3.3", - "eager": false, - "id": "pimcore_studio_ui_bundle:dompurify", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/7463.e177b088.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^0.7.15", - "shareScope": "default", - "import": "flexlayout-react", - "name": "flexlayout-react", - "version": "0.7.15", - "eager": false, - "id": "pimcore_studio_ui_bundle:flexlayout-react", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/243.098f10af.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^11.11.17", - "shareScope": "default", - "import": "framer-motion", - "name": "framer-motion", - "version": "11.18.2", - "eager": false, - "id": "pimcore_studio_ui_bundle:framer-motion", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2463.da2cfb76.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^23.16.8", - "shareScope": "default", - "import": "i18next", - "name": "i18next", - "version": "23.16.8", - "eager": false, - "id": "pimcore_studio_ui_bundle:i18next", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/5976.be3da2cf.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./utils" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^10.1.1", - "shareScope": "default", - "import": "immer", - "name": "immer", - "version": "11.1.4", - "eager": false, - "id": "pimcore_studio_ui_bundle:immer", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/489.693d11de.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^4.1.1", - "shareScope": "default", - "import": "js-yaml", - "name": "js-yaml", - "version": "4.1.1", - "eager": false, - "id": "pimcore_studio_ui_bundle:js-yaml", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6579.cda7f334.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^1.0.4", - "shareScope": "default", - "import": "leaflet-draw", - "name": "leaflet-draw", - "version": "1.0.4", - "eager": false, - "id": "pimcore_studio_ui_bundle:leaflet-draw", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/254.7abe0c11.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^1.9.4", - "shareScope": "default", - "import": "leaflet", - "name": "leaflet", - "version": "1.9.4", - "eager": false, - "id": "pimcore_studio_ui_bundle:leaflet", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/706.01d44a78.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^4.17.21", - "shareScope": "default", - "import": "lodash", - "name": "lodash", - "version": "4.17.23", - "eager": false, - "id": "pimcore_studio_ui_bundle:lodash", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/1668.120c2fdd.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./components", - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^19.1.0-rc.2", - "shareScope": "default", - "import": "react-compiler-runtime", - "name": "react-compiler-runtime", - "version": "19.1.0-rc.3", - "eager": false, - "id": "pimcore_studio_ui_bundle:react-compiler-runtime", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/3209.6722a080.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "18.3.x", - "shareScope": "default", - "eager": true, - "name": "react-dom", - "version": "18.3.1", - "id": "pimcore_studio_ui_bundle:react-dom", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^4.4.6", - "shareScope": "default", - "import": "react-draggable", - "name": "react-draggable", - "version": "4.5.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:react-draggable", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6815.80ba0d22.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^14.1.3", - "shareScope": "default", - "import": "react-i18next", - "name": "react-i18next", - "version": "14.1.3", - "eager": false, - "id": "pimcore_studio_ui_bundle:react-i18next", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/3379.f0e413e5.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./app", - "./components", - "./modules/element", - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^9.1.2", - "shareScope": "default", - "import": "react-redux", - "name": "react-redux", - "version": "9.2.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:react-redux", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/2237.e23d4ce3.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^6.28.0", - "shareScope": "default", - "import": "react-router-dom", - "name": "react-router-dom", - "version": "6.30.3", - "eager": false, - "id": "pimcore_studio_ui_bundle:react-router-dom", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/749.7c748f48.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "18.3.x", - "shareScope": "default", - "eager": true, - "name": "react", - "version": "18.3.1", - "id": "pimcore_studio_ui_bundle:react", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./components", - "./modules/document", - "./modules/element", - "./modules/rule-builder", - "./modules/widget-manager", - "./utils" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^0.2.2", - "shareScope": "default", - "eager": true, - "name": "reflect-metadata", - "version": "0.2.2", - "id": "pimcore_studio_ui_bundle:reflect-metadata", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/remoteEntry.js", - "static/js/7366.cc04fcb0.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^10.0.0", - "shareScope": "default", - "import": "uuid", - "name": "uuid", - "version": "10.0.0", - "eager": false, - "id": "pimcore_studio_ui_bundle:uuid", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/8658.55f9d53e.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "6.1.x", - "shareScope": "default", - "eager": true, - "name": "inversify", - "version": "6.1.x", - "id": "pimcore_studio_ui_bundle:inversify", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/1721.fdc19114.js" - ] - }, - "css": { - "async": [], - "sync": [] - } - }, - "usedIn": [ - "./app", - "./modules/data-object", - "./modules/document", - "./modules/rule-builder" - ], - "usedExports": [], - "fallback": "" - }, - { - "singleton": true, - "requiredVersion": "^4.23.6", - "shareScope": "default", - "eager": true, - "name": "@uiw/react-codemirror", - "version": "^4.23.6", - "id": "pimcore_studio_ui_bundle:@uiw/react-codemirror", - "assets": { - "js": { - "async": [], - "sync": [ - "static/js/async/6411.ae78ff82.js" - ] - }, - "css": { - "async": [], - "sync": [ - "static/css/async/6411.c7ee9967.css" - ] - } - }, - "usedIn": [], - "usedExports": [], - "fallback": "" - } - ], - "remotes": [], - "exposes": [ - { - "path": ".", - "id": "pimcore_studio_ui_bundle:.", - "name": ".", - "requires": [], - "file": "js/src/sdk/main.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/__federation_expose_default_export.1b3f6d28.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./_internal_/mf-bootstrap", - "id": "pimcore_studio_ui_bundle:_internal_/mf-bootstrap", - "name": "_internal_/mf-bootstrap", - "requires": [], - "file": "js/src/sdk/_internal_/mf-bootstrap.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ], - "async": [] - } - } - }, - { - "path": "./_internal_/mf-bootstrap-document-editor-iframe", - "id": "pimcore_studio_ui_bundle:_internal_/mf-bootstrap-document-editor-iframe", - "name": "_internal_/mf-bootstrap-document-editor-iframe", - "requires": [], - "file": "js/src/sdk/_internal_/mf-bootstrap-document-editor-iframe.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - } - }, - { - "path": "./components", - "id": "pimcore_studio_ui_bundle:components", - "name": "components", - "requires": [ - "react", - "react-i18next", - "antd", - "lodash", - "antd-style" - ], - "file": "js/src/sdk/components/index.ts", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./app", - "id": "pimcore_studio_ui_bundle:app", - "name": "app", - "requires": [ - "inversify", - "react-i18next" - ], - "file": "js/src/sdk/app/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - } - }, - { - "path": "./api", - "id": "pimcore_studio_ui_bundle:api", - "name": "api", - "requires": [], - "file": "js/src/sdk/api/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_api__asset.9dee10b3.js", - "static/js/async/__federation_expose_api__class_definition.6192771c.js", - "static/js/async/__federation_expose_api__custom_metadata.10d73b97.js", - "static/js/async/__federation_expose_api__data_object.160792b1.js", - "static/js/async/__federation_expose_api__dependencies.a9508cf9.js", - "static/js/async/__federation_expose_api__documents.8a5c66b8.js", - "static/js/async/__federation_expose_api__elements.5babca9f.js", - "static/js/async/__federation_expose_api__metadata.e9f2a028.js", - "static/js/async/__federation_expose_api__perspectives.936945cf.js", - "static/js/async/__federation_expose_api__properties.314180ef.js", - "static/js/async/__federation_expose_api__role.89b3367b.js", - "static/js/async/__federation_expose_api__schedule.9ccfa450.js", - "static/js/async/__federation_expose_api__settings.2c556240.js", - "static/js/async/__federation_expose_api__tags.f737e834.js", - "static/js/async/__federation_expose_api__thumbnails.a167200d.js", - "static/js/async/__federation_expose_api__translations.7a8790cb.js", - "static/js/async/__federation_expose_api__user.0c42ebe1.js", - "static/js/async/__federation_expose_api__version.7220c1e1.js", - "static/js/async/__federation_expose_api__workflow.ad14d72f.js", - "static/js/async/__federation_expose_api__reports.50fc5ca0.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__class_definitions.009acac4.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__translations.e3016a50.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/45.e217286d.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ] - } - } - }, - { - "path": "./api/asset", - "id": "pimcore_studio_ui_bundle:api/asset", - "name": "api/asset", - "requires": [], - "file": "js/src/sdk/api/asset/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_api__asset.9dee10b3.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/class-definition", - "id": "pimcore_studio_ui_bundle:api/class-definition", - "name": "api/class-definition", - "requires": [], - "file": "js/src/sdk/api/class-definition/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/__federation_expose_api__class_definition.6192771c.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/custom-metadata", - "id": "pimcore_studio_ui_bundle:api/custom-metadata", - "name": "api/custom-metadata", - "requires": [], - "file": "js/src/sdk/api/custom-metadata/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__custom_metadata.10d73b97.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/data-object", - "id": "pimcore_studio_ui_bundle:api/data-object", - "name": "api/data-object", - "requires": [], - "file": "js/src/sdk/api/data-object/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__data_object.160792b1.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/dependencies", - "id": "pimcore_studio_ui_bundle:api/dependencies", - "name": "api/dependencies", - "requires": [], - "file": "js/src/sdk/api/dependencies/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__dependencies.a9508cf9.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/documents", - "id": "pimcore_studio_ui_bundle:api/documents", - "name": "api/documents", - "requires": [], - "file": "js/src/sdk/api/documents/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__documents.8a5c66b8.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/elements", - "id": "pimcore_studio_ui_bundle:api/elements", - "name": "api/elements", - "requires": [], - "file": "js/src/sdk/api/elements/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__elements.5babca9f.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/metadata", - "id": "pimcore_studio_ui_bundle:api/metadata", - "name": "api/metadata", - "requires": [], - "file": "js/src/sdk/api/metadata/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__metadata.e9f2a028.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/perspectives", - "id": "pimcore_studio_ui_bundle:api/perspectives", - "name": "api/perspectives", - "requires": [], - "file": "js/src/sdk/api/perspectives/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__perspectives.936945cf.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/properties", - "id": "pimcore_studio_ui_bundle:api/properties", - "name": "api/properties", - "requires": [], - "file": "js/src/sdk/api/properties/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__properties.314180ef.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/role", - "id": "pimcore_studio_ui_bundle:api/role", - "name": "api/role", - "requires": [], - "file": "js/src/sdk/api/role/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__role.89b3367b.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/schedule", - "id": "pimcore_studio_ui_bundle:api/schedule", - "name": "api/schedule", - "requires": [], - "file": "js/src/sdk/api/schedule/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__schedule.9ccfa450.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/settings", - "id": "pimcore_studio_ui_bundle:api/settings", - "name": "api/settings", - "requires": [], - "file": "js/src/sdk/api/settings/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__settings.2c556240.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/tags", - "id": "pimcore_studio_ui_bundle:api/tags", - "name": "api/tags", - "requires": [], - "file": "js/src/sdk/api/tags/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__tags.f737e834.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/thumbnails", - "id": "pimcore_studio_ui_bundle:api/thumbnails", - "name": "api/thumbnails", - "requires": [], - "file": "js/src/sdk/api/thumbnails/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__thumbnails.a167200d.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/translations", - "id": "pimcore_studio_ui_bundle:api/translations", - "name": "api/translations", - "requires": [], - "file": "js/src/sdk/api/translations/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__translations.7a8790cb.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/user", - "id": "pimcore_studio_ui_bundle:api/user", - "name": "api/user", - "requires": [], - "file": "js/src/sdk/api/user/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__user.0c42ebe1.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/version", - "id": "pimcore_studio_ui_bundle:api/version", - "name": "api/version", - "requires": [], - "file": "js/src/sdk/api/version/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__version.7220c1e1.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/workflow", - "id": "pimcore_studio_ui_bundle:api/workflow", - "name": "api/workflow", - "requires": [], - "file": "js/src/sdk/api/workflow/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__workflow.ad14d72f.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./api/reports", - "id": "pimcore_studio_ui_bundle:api/reports", - "name": "api/reports", - "requires": [], - "file": "js/src/sdk/api/reports/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_api__reports.50fc5ca0.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/app", - "id": "pimcore_studio_ui_bundle:modules/app", - "name": "modules/app", - "requires": [], - "file": "js/src/sdk/modules/app/index.ts", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/application-logger", - "id": "pimcore_studio_ui_bundle:modules/application-logger", - "name": "modules/application-logger", - "requires": [], - "file": "js/src/sdk/modules/application-logger/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/asset", - "id": "pimcore_studio_ui_bundle:modules/asset", - "name": "modules/asset", - "requires": [], - "file": "js/src/sdk/modules/asset/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/class-definitions", - "id": "pimcore_studio_ui_bundle:modules/class-definitions", - "name": "modules/class-definitions", - "requires": [], - "file": "js/src/sdk/modules/class-definitions/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/__federation_expose_modules__class_definitions.009acac4.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/data-object", - "id": "pimcore_studio_ui_bundle:modules/data-object", - "name": "modules/data-object", - "requires": [ - "inversify" - ], - "file": "js/src/sdk/modules/data-object/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__document.5167229e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - } - }, - { - "path": "./modules/document", - "id": "pimcore_studio_ui_bundle:modules/document", - "name": "modules/document", - "requires": [ - "react", - "inversify" - ], - "file": "js/src/sdk/modules/document/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/__federation_expose_modules__document.5167229e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/element", - "id": "pimcore_studio_ui_bundle:modules/element", - "name": "modules/element", - "requires": [ - "react", - "react-i18next", - "classnames" - ], - "file": "js/src/sdk/modules/element/index.ts", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/field-definitions", - "id": "pimcore_studio_ui_bundle:modules/field-definitions", - "name": "modules/field-definitions", - "requires": [], - "file": "js/src/sdk/modules/field-definitions/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js", - "static/js/async/4530.72904f19.js", - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/2103.0449b778.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css" - ] - } - } - }, - { - "path": "./modules/auth", - "id": "pimcore_studio_ui_bundle:modules/auth", - "name": "modules/auth", - "requires": [], - "file": "js/src/sdk/modules/auth/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/icon-library", - "id": "pimcore_studio_ui_bundle:modules/icon-library", - "name": "modules/icon-library", - "requires": [], - "file": "js/src/sdk/modules/icon-library/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/__federation_expose_modules__icon_library.481bed67.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/reports", - "id": "pimcore_studio_ui_bundle:modules/reports", - "name": "modules/reports", - "requires": [], - "file": "js/src/sdk/modules/reports/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js", - "static/js/async/1207.ea0577c0.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/rule-builder", - "id": "pimcore_studio_ui_bundle:modules/rule-builder", - "name": "modules/rule-builder", - "requires": [ - "react", - "@dnd-kit/core", - "inversify", - "react-i18next", - "classnames", - "antd", - "lodash", - "antd-style", - "@dnd-kit/sortable" - ], - "file": "js/src/sdk/modules/rule-builder/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/translations", - "id": "pimcore_studio_ui_bundle:modules/translations", - "name": "modules/translations", - "requires": [], - "file": "js/src/sdk/modules/translations/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/__federation_expose_modules__translations.e3016a50.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/user", - "id": "pimcore_studio_ui_bundle:modules/user", - "name": "modules/user", - "requires": [], - "file": "js/src/sdk/modules/user/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/widget-editor", - "id": "pimcore_studio_ui_bundle:modules/widget-editor", - "name": "modules/widget-editor", - "requires": [], - "file": "js/src/sdk/modules/widget-editor/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/widget-manager", - "id": "pimcore_studio_ui_bundle:modules/widget-manager", - "name": "modules/widget-manager", - "requires": [ - "react" - ], - "file": "js/src/sdk/modules/widget-manager/index.ts", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/wysiwyg", - "id": "pimcore_studio_ui_bundle:modules/wysiwyg", - "name": "modules/wysiwyg", - "requires": [], - "file": "js/src/sdk/modules/wysiwyg/index.ts", - "assets": { - "js": { - "sync": [], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/notifications", - "id": "pimcore_studio_ui_bundle:modules/notifications", - "name": "modules/notifications", - "requires": [], - "file": "js/src/sdk/modules/notifications/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/perspectives", - "id": "pimcore_studio_ui_bundle:modules/perspectives", - "name": "modules/perspectives", - "requires": [], - "file": "js/src/sdk/modules/perspectives/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./modules/global-message-bus", - "id": "pimcore_studio_ui_bundle:modules/global-message-bus", - "name": "modules/global-message-bus", - "requires": [], - "file": "js/src/sdk/modules/global-message-bus/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/7442.636a9ffa.js", - "static/js/async/__federation_expose_modules__global_message_bus.bfbd3798.js" - ], - "async": [] - }, - "css": { - "sync": [], - "async": [] - } - } - }, - { - "path": "./modules/gdpr-data-extractor", - "id": "pimcore_studio_ui_bundle:modules/gdpr-data-extractor", - "name": "modules/gdpr-data-extractor", - "requires": [], - "file": "js/src/sdk/modules/gdpr-data-extractor/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ], - "async": [ - "static/js/async/9765.07ec2c12.js", - "static/js/async/619.59f8e380.js", - "static/js/async/9114.7d0c9ca9.js", - "static/js/async/2709.809fe258.js", - "static/js/async/6484.2519155d.js", - "static/js/async/1750.19b70383.js", - "static/js/async/9603.dcad1930.js", - "static/js/async/5154.a94bb137.js", - "static/js/async/3756.7a4c5e02.js", - "static/js/async/7006.928d8671.js", - "static/js/async/2841.e1a4734b.js", - "static/js/async/3240.f86bdd91.js", - "static/js/async/8971.cb9861fc.js", - "static/js/async/5114.ebf1bfcb.js", - "static/js/async/9076.7a2b7e9a.js", - "static/js/async/4871.b42a8935.js", - "static/js/async/705.fad963d9.js", - "static/js/async/8231.0a773046.js", - "static/js/async/4160.1311e5ef.js", - "static/js/async/8850.1ef4da0e.js", - "static/js/async/1635.18d9dd0b.js", - "static/js/async/6572.510ff641.js", - "static/js/async/157.8615578d.js", - "static/js/async/1742.9207983d.js", - "static/js/async/6335.0ad9b174.js", - "static/js/async/2168.3b00277e.js", - "static/js/async/3066.31b992e1.js", - "static/js/async/1003.469c1fdb.js", - "static/js/async/8372.d6f25582.js", - "static/js/async/2117.da809f8e.js", - "static/js/async/8567.2e09cb4e.js", - "static/js/async/2016.2efa4d68.js", - "static/js/async/8609.b6039081.js", - "static/js/async/2162.e42c8ad6.js", - "static/js/async/3836.6a4b9fd9.js", - "static/js/async/7821.b1a2dc53.js", - "static/js/async/3935.0990f5be.js", - "static/js/async/6984.af4507e3.js", - "static/js/async/7440.04b86278.js", - "static/js/async/9030.03e4d789.js", - "static/js/async/2893.99328fa1.js", - "static/js/async/8707.80dfb17f.js", - "static/js/async/2290.68fd6bdf.js", - "static/js/async/3657.cf916f7e.js", - "static/js/async/4680.66eae797.js", - "static/js/async/446.2523c50a.js", - "static/js/async/8645.7a1aa6c0.js", - "static/js/async/8932.e8090749.js", - "static/js/async/2619.543b4f03.js", - "static/js/async/5690.782c3ae6.js", - "static/js/async/1303.f89c138e.js", - "static/js/async/380.0cdf7b27.js", - "static/js/async/5731.15301fd9.js", - "static/js/async/3330.c830e580.js", - "static/js/async/4329.4e8ef4cc.js", - "static/js/async/7960.9d4a54c0.js", - "static/js/async/9471.3511726f.js", - "static/js/async/141.a305e3e9.js", - "static/js/async/8574.8c240d77.js", - "static/js/async/6255.2e48b884.js", - "static/js/async/3941.9ceed713.js", - "static/js/async/8779.bdcddd0a.js", - "static/js/async/4062.57e047db.js", - "static/js/async/5804.1be86954.js", - "static/js/async/3750.921e74ed.js", - "static/js/async/3392.42b07d09.js", - "static/js/async/235.97e84a52.js", - "static/js/async/6313.e76747fb.js", - "static/js/async/7053.63c4c0a6.js", - "static/js/async/3068.7b747a5f.js", - "static/js/async/7799.a37e9eaf.js", - "static/js/async/3686.6b54036a.js", - "static/js/async/8467.f7bd216d.js", - "static/js/async/3548.133939a2.js", - "static/js/async/3197.ebf93fd4.js", - "static/js/async/5431.0eb962a2.js", - "static/js/async/1265.d95e4129.js", - "static/js/async/3396.4cc8f904.js", - "static/js/async/1428.b3183de2.js", - "static/js/async/3528.60fd342c.js", - "static/js/async/830.dda8066f.js", - "static/js/async/9052.67bd17cd.js", - "static/js/async/1019.2c88f074.js", - "static/js/async/7161.f24a612f.js", - "static/js/async/4120.afd6653a.js", - "static/js/async/3839.800430ba.js", - "static/js/async/3166.32d06e35.js", - "static/js/async/365.e655295f.js", - "static/js/async/2380.d6bc17ef.js", - "static/js/async/3009.be7deeee.js", - "static/js/async/7264.fc5a523f.js", - "static/js/async/7527.e64ccbd1.js", - "static/js/async/261.0e13114e.js", - "static/js/async/7828.812c672f.js", - "static/js/async/9403.9f36612d.js", - "static/js/async/6458.b5282ed0.js", - "static/js/async/1065.5cc838a2.js", - "static/js/async/6472.df513d2d.js", - "static/js/async/3406.86351b7b.js", - "static/js/async/2492.cc8cd85c.js", - "static/js/async/8835.d50a0005.js", - "static/js/async/129.24017dc3.js", - "static/js/async/7334.be0321bf.js", - "static/js/async/4346.867849d4.js", - "static/js/async/2472.f40725db.js", - "static/js/async/2073.0f14210c.js", - "static/js/async/8547.3355910d.js", - "static/js/async/5186.deb009c0.js", - "static/js/async/9691.a7a34297.js", - "static/js/async/2410.4b5baf39.js", - "static/js/async/2597.969d51fc.js", - "static/js/async/3748.7adfb9d1.js", - "static/js/async/1270.4a7146b0.js", - "static/js/async/4241.f5777d74.js", - "static/js/async/8272.64fe9f7a.js", - "static/js/async/4771.c5e9b1dd.js", - "static/js/async/1851.1528a0c7.js", - "static/js/async/7939.af086f08.js", - "static/js/async/8477.0c91210d.js", - "static/js/async/1102.01cefe38.js", - "static/js/async/5412.53c2e3aa.js", - "static/js/async/6186.9fa7f507.js", - "static/js/async/1553.630acce1.js", - "static/js/async/5168.fdbd2cef.js", - "static/js/async/172.cb77a99e.js", - "static/js/async/1875.048f7c1f.js", - "static/js/async/9801.09cd7cd0.js", - "static/js/async/2015.28b3f667.js", - "static/js/async/1834.3ea07c1f.js", - "static/js/async/3584.4ad9a196.js", - "static/js/async/935.4dfccbd9.js", - "static/js/async/5545.cde240bd.js", - "static/js/async/521.cb98200a.js", - "static/js/async/1472.e37f95af.js", - "static/js/async/206.0227085b.js", - "static/js/async/4799.a225248d.js", - "static/js/async/7041.230cf6a4.js", - "static/js/async/6695.087ae8ff.js", - "static/js/async/4718.b15efaaf.js", - "static/js/async/2399.305db162.js", - "static/js/async/2980.d885aa98.js", - "static/js/async/85.3d7bb7a3.js", - "static/js/async/4426.20bcaf42.js", - "static/js/async/7073.fb6439a4.js", - "static/js/async/4154.2617dd8b.js", - "static/js/async/7396.da4c50f4.js", - "static/js/async/687.ae382b4d.js", - "static/js/async/8910.7686ba2c.js", - "static/js/async/2121.8117f390.js", - "static/js/async/3144.edcf7515.js", - "static/js/async/7171.8731ac06.js", - "static/js/async/1180.c2738508.js", - "static/js/async/9607.214ebd42.js", - "static/js/async/3846.e0ec9537.js", - "static/js/async/7793.d6bce01b.js", - "static/js/async/5904.327a2f83.js", - "static/js/async/2427.2406cc45.js", - "static/js/async/4858.820711a5.js", - "static/js/async/8437.864e7b29.js", - "static/js/async/4084.a80198a1.js", - "static/js/async/7935.ba8eb0b4.js", - "static/js/async/334.67e5210f.js", - "static/js/async/2793.a25ad8de.js", - "static/js/async/6424.ca220edd.js", - "static/js/async/4195.4fb2f2ba.js", - "static/js/async/8146.e69de8bc.js", - "static/js/async/2845.d2c82bf6.js", - "static/js/async/5331.bbbb73f8.js", - "static/js/async/8557.e526282d.js", - "static/js/async/2503.1efd0e77.js", - "static/js/async/8832.e1a7ddbf.js", - "static/js/async/1153.7cbdaf39.js", - "static/js/async/8635.29404620.js", - "static/js/async/2638.d949ec28.js", - "static/js/async/6649.2b614ce3.js", - "static/js/async/2098.4b97bea3.js", - "static/js/async/1612.54f63d68.js", - "static/js/async/6759.cf6c0abd.js", - "static/js/async/660.5242d83f.js", - "static/js/async/8536.df877041.js", - "static/js/async/9357.709b2aae.js", - "static/js/async/145.7d13ff5f.js", - "static/js/async/5990.3c9d8c23.js", - "static/js/async/103.3717b318.js", - "static/js/async/6052.a270b069.js", - "static/js/async/1643.b41a359d.js", - "static/js/async/8520.3f467428.js", - "static/js/async/5177.a255dad2.js", - "static/js/async/1438.67cdf5fd.js", - "static/js/async/4034.ebc0a070.js", - "static/js/async/6819.424ecfc4.js", - "static/js/async/5696.ab2274ca.js", - "static/js/async/9767.926906cb.js", - "static/js/async/3653.7c1ffecd.js", - "static/js/async/3838.4b01fffb.js", - "static/js/async/2179.7408679f.js", - "static/js/async/6229.ec077e40.js", - "static/js/async/4225.61de23fc.js", - "static/js/async/8403.58bbddc4.js", - "static/js/async/5277.97ce57aa.js", - "static/js/async/2464.8deaa84f.js", - "static/js/async/6135.d371dcf8.js", - "static/js/async/1814.16619920.js", - "static/js/async/2189.e296ffec.js", - "static/js/async/1708.de5f09b0.js", - "static/js/async/1762.e6454223.js", - "static/js/async/281.d912a74e.js", - "static/js/async/9336.9a425d8d.js", - "static/js/async/7679.a6829c17.js", - "static/js/async/6270.f9ff3abd.js", - "static/js/async/3125.ce787981.js", - "static/js/async/692.ac93e4e2.js", - "static/js/async/2267.ad4d61d8.js", - "static/js/async/9322.81e49a3d.js", - "static/js/async/6743.851be9cb.js", - "static/js/async/3062.323c4508.js", - "static/js/async/3229.97f4b7e5.js", - "static/js/async/2739.84cc2ba2.js", - "static/js/async/25.36d6a68b.js", - "static/js/async/4603.86da83a0.js", - "static/js/async/3055.b0f87225.js", - "static/js/async/6967.4d971194.js", - "static/js/async/5084.877dbf80.js", - "static/js/async/658.dc677028.js", - "static/js/async/3.470a371d.js", - "static/js/async/1688.4626095c.js", - "static/js/async/5454.a8bca7d3.js", - "static/js/async/8031.b368b0bf.js", - "static/js/async/7524.73ba348d.js", - "static/js/async/101.1b8f34f4.js", - "static/js/async/7210.9113a386.js", - "static/js/async/7419.b1cfaeac.js", - "static/js/async/198.96c8f5d3.js", - "static/js/async/2204.875d7d36.js", - "static/js/async/7250.364fbcad.js", - "static/js/async/8051.9c74ecaf.js", - "static/js/async/6766.c76f91a5.js", - "static/js/async/8050.502aa521.js", - "static/js/async/8800.1154e54c.js", - "static/js/async/4702.508d41d1.js", - "static/js/async/4028.d910fe41.js", - "static/js/async/7994.c600e1ce.js", - "static/js/async/1797.bc29fd89.js", - "static/js/async/4715.3e1202d6.js", - "static/js/async/741.734ea878.js", - "static/js/async/4319.ca014781.js", - "static/js/async/5753.371bde44.js", - "static/js/async/803.52d29752.js", - "static/js/async/9536.9b33a533.js", - "static/js/async/1567.debd0837.js", - "static/js/async/8479.55f72fe0.js", - "static/js/async/4698.6d0eba4e.js", - "static/js/async/1010.af98507b.js", - "static/js/async/35.d81ad3e5.js", - "static/js/async/6911.d02db343.js", - "static/js/async/8195.c8bb6771.js", - "static/js/async/2373.11c5538c.js", - "static/js/async/5712.ffe8bf9d.js" - ] - }, - "css": { - "sync": [ - "static/css/async/6411.c7ee9967.css" - ], - "async": [] - } - } - }, - { - "path": "./utils", - "id": "pimcore_studio_ui_bundle:utils", - "name": "utils", - "requires": [ - "react", - "i18next" - ], - "file": "js/src/sdk/utils/index.ts", - "assets": { - "js": { - "sync": [ - "static/js/async/3902.5873a27f.js", - "static/js/async/__federation_expose_utils.526f5bda.js" - ], - "async": [ - "static/js/async/lib-axios.f458d745.js", - "static/js/async/4693.552164ec.js", - "static/js/async/385.d9b4f6a1.js", - "static/js/async/2287.6a200c82.js", - "static/js/async/45.e217286d.js", - "static/js/async/2202.bd928b8b.js", - "static/js/async/__federation_expose_api.fbe2c7c1.js", - "static/js/async/2188.72e65c95.js", - "static/js/async/3902.5873a27f.js", - "static/js/async/7442.636a9ffa.js", - "static/js/async/175.bd0ef661.js", - "static/js/async/__federation_expose_app.ee859643.js", - "static/js/async/9454.03f9cbf9.js", - "static/js/async/__federation_expose_modules__data_object.8f1ebdf8.js", - "static/js/async/__federation_expose_modules__field_definitions.171d7545.js", - "static/js/async/4596.13ba10c0.js", - "static/js/async/1693.48c272d7.js", - "static/js/async/2843.2d256f65.js", - "static/js/async/2545.dcb1e512.js", - "static/js/async/616.fa7dd900.js", - "static/js/async/4530.72904f19.js", - "static/js/async/__federation_expose__internal___mf_bootstrap.7441f43a.js", - "static/js/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.ce47134e.js", - "static/js/async/__federation_expose_modules__application_logger.fc080c19.js", - "static/js/async/__federation_expose_modules__asset.51999de9.js", - "static/js/async/__federation_expose_modules__document.5167229e.js", - "static/js/async/__federation_expose_modules__auth.65d96793.js", - "static/js/async/__federation_expose_modules__reports.f35bbd3d.js", - "static/js/async/__federation_expose_modules__rule_builder.f77a657a.js", - "static/js/async/__federation_expose_modules__user.1df0f8e6.js", - "static/js/async/__federation_expose_modules__widget_editor.4cd4867f.js", - "static/js/async/__federation_expose_modules__notifications.212009d9.js", - "static/js/async/__federation_expose_modules__perspectives.ea16786c.js", - "static/js/async/__federation_expose_modules__gdpr_data_extractor.48b05d8a.js" - ] - }, - "css": { - "sync": [], - "async": [ - "static/css/async/6411.c7ee9967.css", - "static/css/async/__federation_expose__internal___mf_bootstrap.44f2f5d2.css", - "static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css" - ] - } - } - } - ] -} \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/6411.c7ee9967.css b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/6411.c7ee9967.css deleted file mode 100644 index 1d7d35f3ff..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/6411.c7ee9967.css +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ -.leaflet-pane,.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-tile-container,.leaflet-pane>svg,.leaflet-pane>canvas,.leaflet-zoom-box,.leaflet-image-layer,.leaflet-layer{position:absolute;top:0;left:0}.leaflet-container{overflow:hidden}.leaflet-tile,.leaflet-marker-icon,.leaflet-marker-shadow{-webkit-user-select:none;user-select:none;-webkit-user-drag:none}.leaflet-tile::selection{background:0 0}.leaflet-safari .leaflet-tile{image-rendering:-webkit-optimize-contrast}.leaflet-safari .leaflet-tile-container{-webkit-transform-origin:0 0;width:1600px;height:1600px}.leaflet-marker-icon,.leaflet-marker-shadow{display:block}.leaflet-container .leaflet-overlay-pane svg{max-width:none!important;max-height:none!important}.leaflet-container .leaflet-marker-pane img,.leaflet-container .leaflet-shadow-pane img,.leaflet-container .leaflet-tile-pane img,.leaflet-container img.leaflet-image-layer,.leaflet-container .leaflet-tile{width:auto;padding:0;max-width:none!important;max-height:none!important}.leaflet-container img.leaflet-tile{mix-blend-mode:plus-lighter}.leaflet-container.leaflet-touch-zoom{-ms-touch-action:pan-x pan-y;touch-action:pan-x pan-y}.leaflet-container.leaflet-touch-drag{-ms-touch-action:pinch-zoom;touch-action:none;touch-action:pinch-zoom}.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom{-ms-touch-action:none;touch-action:none}.leaflet-container{-webkit-tap-highlight-color:transparent}.leaflet-container a{-webkit-tap-highlight-color:#33b5e566}.leaflet-tile{filter:inherit;visibility:hidden}.leaflet-tile-loaded{visibility:inherit}.leaflet-zoom-box{box-sizing:border-box;z-index:800;width:0;height:0}.leaflet-overlay-pane svg{-moz-user-select:none}.leaflet-pane{z-index:400}.leaflet-tile-pane{z-index:200}.leaflet-overlay-pane{z-index:400}.leaflet-shadow-pane{z-index:500}.leaflet-marker-pane{z-index:600}.leaflet-tooltip-pane{z-index:650}.leaflet-popup-pane{z-index:700}.leaflet-map-pane canvas{z-index:100}.leaflet-map-pane svg{z-index:200}.leaflet-vml-shape{width:1px;height:1px}.lvml{behavior:url(#default#VML);display:inline-block;position:absolute}.leaflet-control{z-index:800;pointer-events:visiblePainted;pointer-events:auto;position:relative}.leaflet-top,.leaflet-bottom{z-index:1000;pointer-events:none;position:absolute}.leaflet-top{top:0}.leaflet-right{right:0}.leaflet-bottom{bottom:0}.leaflet-left{left:0}.leaflet-control{float:left;clear:both}.leaflet-right .leaflet-control{float:right}.leaflet-top .leaflet-control{margin-top:10px}.leaflet-bottom .leaflet-control{margin-bottom:10px}.leaflet-left .leaflet-control{margin-left:10px}.leaflet-right .leaflet-control{margin-right:10px}.leaflet-fade-anim .leaflet-popup{opacity:0;transition:opacity .2s linear}.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{opacity:1}.leaflet-zoom-animated{transform-origin:0 0}svg.leaflet-zoom-animated{will-change:transform}.leaflet-zoom-anim .leaflet-zoom-animated{-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1);-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1);transition:transform .25s cubic-bezier(0,0,.25,1)}.leaflet-zoom-anim .leaflet-tile,.leaflet-pan-anim .leaflet-tile{transition:none}.leaflet-zoom-anim .leaflet-zoom-hide{visibility:hidden}.leaflet-interactive{cursor:pointer}.leaflet-grab{cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.leaflet-crosshair,.leaflet-crosshair .leaflet-interactive{cursor:crosshair}.leaflet-popup-pane,.leaflet-control{cursor:auto}.leaflet-dragging .leaflet-grab,.leaflet-dragging .leaflet-grab .leaflet-interactive,.leaflet-dragging .leaflet-marker-draggable{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.leaflet-marker-icon,.leaflet-marker-shadow,.leaflet-image-layer,.leaflet-pane>svg path,.leaflet-tile-container{pointer-events:none}.leaflet-marker-icon.leaflet-interactive,.leaflet-image-layer.leaflet-interactive,.leaflet-pane>svg path.leaflet-interactive,svg.leaflet-image-layer.leaflet-interactive path{pointer-events:visiblePainted;pointer-events:auto}.leaflet-container{outline-offset:1px;background:#ddd}.leaflet-container a{color:#0078a8}.leaflet-zoom-box{background:#ffffff80;border:2px dotted #38f}.leaflet-container{font-family:Helvetica Neue,Arial,Helvetica,sans-serif;font-size:.75rem;line-height:1.5}.leaflet-bar{border-radius:4px;box-shadow:0 1px 5px #000000a6}.leaflet-bar a{text-align:center;color:#000;background-color:#fff;border-bottom:1px solid #ccc;width:26px;height:26px;line-height:26px;text-decoration:none;display:block}.leaflet-bar a,.leaflet-control-layers-toggle{background-position:50%;background-repeat:no-repeat;display:block}.leaflet-bar a:hover,.leaflet-bar a:focus{background-color:#f4f4f4}.leaflet-bar a:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.leaflet-bar a:last-child{border-bottom:none;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.leaflet-bar a.leaflet-disabled{cursor:default;color:#bbb;background-color:#f4f4f4}.leaflet-touch .leaflet-bar a{width:30px;height:30px;line-height:30px}.leaflet-touch .leaflet-bar a:first-child{border-top-left-radius:2px;border-top-right-radius:2px}.leaflet-touch .leaflet-bar a:last-child{border-bottom-right-radius:2px;border-bottom-left-radius:2px}.leaflet-control-zoom-in,.leaflet-control-zoom-out{text-indent:1px;font:700 18px Lucida Console,Monaco,monospace}.leaflet-touch .leaflet-control-zoom-in,.leaflet-touch .leaflet-control-zoom-out{font-size:22px}.leaflet-control-layers{background:#fff;border-radius:5px;box-shadow:0 1px 5px #0006}.leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAQAAAADQ4RFAAACf0lEQVR4AY1UM3gkARTePdvdoTxXKc+qTl3aU5U6b2Kbkz3Gtq3Zw6ziLGNPzrYx7946Tr6/ee/XeCQ4D3ykPtL5tHno4n0d/h3+xfuWHGLX81cn7r0iTNzjr7LrlxCqPtkbTQEHeqOrTy4Yyt3VCi/IOB0v7rVC7q45Q3Gr5K6jt+3Gl5nCoDD4MtO+j96Wu8atmhGqcNGHObuf8OM/x3AMx38+4Z2sPqzCxRFK2aF2e5Jol56XTLyggAMTL56XOMoS1W4pOyjUcGGQdZxU6qRh7B9Zp+PfpOFlqt0zyDZckPi1ttmIp03jX8gyJ8a/PG2yutpS/Vol7peZIbZcKBAEEheEIAgFbDkz5H6Zrkm2hVWGiXKiF4Ycw0RWKdtC16Q7qe3X4iOMxruonzegJzWaXFrU9utOSsLUmrc0YjeWYjCW4PDMADElpJSSQ0vQvA1Tm6/JlKnqFs1EGyZiFCqnRZTEJJJiKRYzVYzJck2Rm6P4iH+cmSY0YzimYa8l0EtTODFWhcMIMVqdsI2uiTvKmTisIDHJ3od5GILVhBCarCfVRmo4uTjkhrhzkiBV7SsaqS+TzrzM1qpGGUFt28pIySQHR6h7F6KSwGWm97ay+Z+ZqMcEjEWebE7wxCSQwpkhJqoZA5ivCdZDjJepuJ9IQjGGUmuXJdBFUygxVqVsxFsLMbDe8ZbDYVCGKxs+W080max1hFCarCfV+C1KATwcnvE9gRRuMP2prdbWGowm1KB1y+zwMMENkM755cJ2yPDtqhTI6ED1M/82yIDtC/4j4BijjeObflpO9I9MwXTCsSX8jWAFeHr05WoLTJ5G8IQVS/7vwR6ohirYM7f6HzYpogfS3R2OAAAAAElFTkSuQmCC);width:36px;height:36px}.leaflet-retina .leaflet-control-layers-toggle{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAQAAABvcdNgAAAEsklEQVR4AWL4TydIhpZK1kpWOlg0w3ZXP6D2soBtG42jeI6ZmQTHzAxiTbSJsYLjO9HhP+WOmcuhciVnmHVQcJnp7DFvScowZorad/+V/fVzMdMT2g9Cv9guXGv/7pYOrXh2U+RRR3dSd9JRx6bIFc/ekqHI29JC6pJ5ZEh1yWkhkbcFeSjxgx3L2m1cb1C7bceyxA+CNjT/Ifff+/kDk2u/w/33/IeCMOSaWZ4glosqT3DNnNZQ7Cs58/3Ce5HL78iZH/vKVIaYlqzfdLu8Vi7dnvUbEza5Idt36tquZFldl6N5Z/POLof0XLK61mZCmJSWjVF9tEjUluu74IUXvgttuVIHE7YxSkaYhJZam7yiM9Pv82JYfl9nptxZaxMJE4YSPty+vF0+Y2up9d3wwijfjZbabqm/3bZ9ecKHsiGmRflnn1MW4pjHf9oLufyn2z3y1D6n8g8TZhxyzipLNPnAUpsOiuWimg52psrTZYnOWYNDTMuWBWa0tJb4rgq1UvmutpaYEbZlwU3CLJm/ayYjHW5/h7xWLn9Hh1vepDkyf7dE7MtT5LR4e7yYpHrkhOUpEfssBLq2pPhAqoSWKUkk7EDqkmK6RrCEzqDjhNDWNE+XSMvkJRDWlZTmCW0l0PHQGRZY5t1L83kT0Y3l2SItk5JAWHl2dCOBm+fPu3fo5/3v61RMCO9Jx2EEYYhb0rmNQMX/vm7gqOEJLcXTGw3CAuRNeyaPWwjR8PRqKQ1PDA/dpv+on9Shox52WFnx0KY8onHayrJzm87i5h9xGw/tfkev0jGsQizqezUKjk12hBMKJ4kbCqGPVNXudyyrShovGw5CgxsRICxF6aRmSjlBnHRzg7Gx8fKqEubI2rahQYdR1YgDIRQO7JvQyD52hoIQx0mxa0ODtW2Iozn1le2iIRdzwWewedyZzewidueOGqlsn1MvcnQpuVwLGG3/IR1hIKxCjelIDZ8ldqWz25jWAsnldEnK0Zxro19TGVb2ffIZEsIO89EIEDvKMPrzmBOQcKQ+rroye6NgRRxqR4U8EAkz0CL6uSGOm6KQCdWjvjRiSP1BPalCRS5iQYiEIvxuBMJEWgzSoHADcVMuN7IuqqTeyUPq22qFimFtxDyBBJEwNyt6TM88blFHao/6tWWhuuOM4SAK4EI4QmFHA+SEyWlp4EQoJ13cYGzMu7yszEIBOm2rVmHUNqwAIQabISNMRstmdhNWcFLsSm+0tjJH1MdRxO5Nx0WDMhCtgD6OKgZeljJqJKc9po8juskR9XN0Y1lZ3mWjLR9JCO1jRDMd0fpYC2VnvjBSEFg7wBENc0R9HFlb0xvF1+TBEpF68d+DHR6IOWVv2BECtxo46hOFUBd/APU57WIoEwJhIi2CdpyZX0m93BZicktMj1AS9dClteUFAUNUIEygRZCtik5zSxI9MubTBH1GOiHsiLJ3OCoSZkILa9PxiN0EbvhsAo8tdAf9Seepd36lGWHmtNANTv5Jd0z4QYyeo/UEJqxKRpg5LZx6btLPsOaEmdMyxYdlc8LMaJnikDlhclqmPiQnTEpLUIZEwkRagjYkEibQErwhkTAKCLQEbUgkzJQWc/0PstHHcfEdQ+UAAAAASUVORK5CYII=);background-size:26px 26px}.leaflet-touch .leaflet-control-layers-toggle{width:44px;height:44px}.leaflet-control-layers .leaflet-control-layers-list,.leaflet-control-layers-expanded .leaflet-control-layers-toggle{display:none}.leaflet-control-layers-expanded .leaflet-control-layers-list{display:block;position:relative}.leaflet-control-layers-expanded{color:#333;background:#fff;padding:6px 10px 6px 6px}.leaflet-control-layers-scrollbar{padding-right:5px;overflow:hidden scroll}.leaflet-control-layers-selector{margin-top:2px;position:relative;top:1px}.leaflet-control-layers label{font-size:1.08333em;display:block}.leaflet-control-layers-separator{border-top:1px solid #ddd;height:0;margin:5px -10px 5px -6px}.leaflet-default-icon-path{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAApCAYAAADAk4LOAAAFgUlEQVR4Aa1XA5BjWRTN2oW17d3YaZtr2962HUzbDNpjszW24mRt28p47v7zq/bXZtrp/lWnXr337j3nPCe85NcypgSFdugCpW5YoDAMRaIMqRi6aKq5E3YqDQO3qAwjVWrD8Ncq/RBpykd8oZUb/kaJutow8r1aP9II0WmLKLIsJyv1w/kqw9Ch2MYdB++12Onxee/QMwvf4/Dk/Lfp/i4nxTXtOoQ4pW5Aj7wpici1A9erdAN2OH64x8OSP9j3Ft3b7aWkTg/Fm91siTra0f9on5sQr9INejH6CUUUpavjFNq1B+Oadhxmnfa8RfEmN8VNAsQhPqF55xHkMzz3jSmChWU6f7/XZKNH+9+hBLOHYozuKQPxyMPUKkrX/K0uWnfFaJGS1QPRtZsOPtr3NsW0uyh6NNCOkU3Yz+bXbT3I8G3xE5EXLXtCXbbqwCO9zPQYPRTZ5vIDXD7U+w7rFDEoUUf7ibHIR4y6bLVPXrz8JVZEql13trxwue/uDivd3fkWRbS6/IA2bID4uk0UpF1N8qLlbBlXs4Ee7HLTfV1j54APvODnSfOWBqtKVvjgLKzF5YdEk5ewRkGlK0i33Eofffc7HT56jD7/6U+qH3Cx7SBLNntH5YIPvODnyfIXZYRVDPqgHtLs5ABHD3YzLuespb7t79FY34DjMwrVrcTuwlT55YMPvOBnRrJ4VXTdNnYug5ucHLBjEpt30701A3Ts+HEa73u6dT3FNWwflY86eMHPk+Yu+i6pzUpRrW7SNDg5JHR4KapmM5Wv2E8Tfcb1HoqqHMHU+uWDD7zg54mz5/2BSnizi9T1Dg4QQXLToGNCkb6tb1NU+QAlGr1++eADrzhn/u8Q2YZhQVlZ5+CAOtqfbhmaUCS1ezNFVm2imDbPmPng5wmz+gwh+oHDce0eUtQ6OGDIyR0uUhUsoO3vfDmmgOezH0mZN59x7MBi++WDL1g/eEiU3avlidO671bkLfwbw5XV2P8Pzo0ydy4t2/0eu33xYSOMOD8hTf4CrBtGMSoXfPLchX+J0ruSePw3LZeK0juPJbYzrhkH0io7B3k164hiGvawhOKMLkrQLyVpZg8rHFW7E2uHOL888IBPlNZ1FPzstSJM694fWr6RwpvcJK60+0HCILTBzZLFNdtAzJaohze60T8qBzyh5ZuOg5e7uwQppofEmf2++DYvmySqGBuKaicF1blQjhuHdvCIMvp8whTTfZzI7RldpwtSzL+F1+wkdZ2TBOW2gIF88PBTzD/gpeREAMEbxnJcaJHNHrpzji0gQCS6hdkEeYt9DF/2qPcEC8RM28Hwmr3sdNyht00byAut2k3gufWNtgtOEOFGUwcXWNDbdNbpgBGxEvKkOQsxivJx33iow0Vw5S6SVTrpVq11ysA2Rp7gTfPfktc6zhtXBBC+adRLshf6sG2RfHPZ5EAc4sVZ83yCN00Fk/4kggu40ZTvIEm5g24qtU4KjBrx/BTTH8ifVASAG7gKrnWxJDcU7x8X6Ecczhm3o6YicvsLXWfh3Ch1W0k8x0nXF+0fFxgt4phz8QvypiwCCFKMqXCnqXExjq10beH+UUA7+nG6mdG/Pu0f3LgFcGrl2s0kNNjpmoJ9o4B29CMO8dMT4Q5ox8uitF6fqsrJOr8qnwNbRzv6hSnG5wP+64C7h9lp30hKNtKdWjtdkbuPA19nJ7Tz3zR/ibgARbhb4AlhavcBebmTHcFl2fvYEnW0ox9xMxKBS8btJ+KiEbq9zA4RthQXDhPa0T9TEe69gWupwc6uBUphquXgf+/FrIjweHQS4/pduMe5ERUMHUd9xv8ZR98CxkS4F2n3EUrUZ10EYNw7BWm9x1GiPssi3GgiGRDKWRYZfXlON+dfNbM+GgIwYdwAAAAASUVORK5CYII=)}.leaflet-container .leaflet-control-attribution{background:#fffc;margin:0}.leaflet-control-attribution,.leaflet-control-scale-line{color:#333;padding:0 5px;line-height:1.4}.leaflet-control-attribution a{text-decoration:none}.leaflet-control-attribution a:hover,.leaflet-control-attribution a:focus{text-decoration:underline}.leaflet-attribution-flag{width:1em;height:.6669em;vertical-align:baseline!important;display:inline!important}.leaflet-left .leaflet-control-scale{margin-left:5px}.leaflet-bottom .leaflet-control-scale{margin-bottom:5px}.leaflet-control-scale-line{white-space:nowrap;box-sizing:border-box;text-shadow:1px 1px #fff;background:#fffc;border:2px solid #777;border-top:none;padding:2px 5px 1px;line-height:1.1}.leaflet-control-scale-line:not(:first-child){border-top:2px solid #777;border-bottom:none;margin-top:-2px}.leaflet-control-scale-line:not(:first-child):not(:last-child){border-bottom:2px solid #777}.leaflet-touch .leaflet-control-attribution,.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{box-shadow:none}.leaflet-touch .leaflet-control-layers,.leaflet-touch .leaflet-bar{background-clip:padding-box;border:2px solid #0003}.leaflet-popup{text-align:center;margin-bottom:20px;position:absolute}.leaflet-popup-content-wrapper{text-align:left;border-radius:12px;padding:1px}.leaflet-popup-content{min-height:1px;margin:13px 24px 13px 20px;font-size:1.08333em;line-height:1.3}.leaflet-popup-content p{margin:1.3em 0}.leaflet-popup-tip-container{pointer-events:none;width:40px;height:20px;margin-top:-1px;margin-left:-20px;position:absolute;left:50%;overflow:hidden}.leaflet-popup-tip{pointer-events:auto;width:17px;height:17px;margin:-10px auto 0;padding:1px;transform:rotate(45deg)}.leaflet-popup-content-wrapper,.leaflet-popup-tip{color:#333;background:#fff;box-shadow:0 3px 14px #0006}.leaflet-container a.leaflet-popup-close-button{text-align:center;color:#757575;background:0 0;border:none;width:24px;height:24px;font:16px/24px Tahoma,Verdana,sans-serif;text-decoration:none;position:absolute;top:0;right:0}.leaflet-container a.leaflet-popup-close-button:hover,.leaflet-container a.leaflet-popup-close-button:focus{color:#585858}.leaflet-popup-scrolled{overflow:auto}.leaflet-oldie .leaflet-popup-content-wrapper{-ms-zoom:1}.leaflet-oldie .leaflet-popup-tip{-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";width:24px;filter:progid:DXImageTransform.Microsoft.Matrix(M11=.707107,M12=.707107,M21=-.707107,M22=.707107);margin:0 auto}.leaflet-oldie .leaflet-control-zoom,.leaflet-oldie .leaflet-control-layers,.leaflet-oldie .leaflet-popup-content-wrapper,.leaflet-oldie .leaflet-popup-tip{border:1px solid #999}.leaflet-div-icon{background:#fff;border:1px solid #666}.leaflet-tooltip{color:#222;white-space:nowrap;-webkit-user-select:none;user-select:none;pointer-events:none;background-color:#fff;border:1px solid #fff;border-radius:3px;padding:6px;position:absolute;box-shadow:0 1px 3px #0006}.leaflet-tooltip.leaflet-interactive{cursor:pointer;pointer-events:auto}.leaflet-tooltip-top:before,.leaflet-tooltip-bottom:before,.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{pointer-events:none;content:"";background:0 0;border:6px solid #0000;position:absolute}.leaflet-tooltip-bottom{margin-top:6px}.leaflet-tooltip-top{margin-top:-6px}.leaflet-tooltip-bottom:before,.leaflet-tooltip-top:before{margin-left:-6px;left:50%}.leaflet-tooltip-top:before{border-top-color:#fff;margin-bottom:-12px;bottom:0}.leaflet-tooltip-bottom:before{border-bottom-color:#fff;margin-top:-12px;margin-left:-6px;top:0}.leaflet-tooltip-left{margin-left:-6px}.leaflet-tooltip-right{margin-left:6px}.leaflet-tooltip-left:before,.leaflet-tooltip-right:before{margin-top:-6px;top:50%}.leaflet-tooltip-left:before{border-left-color:#fff;margin-right:-12px;right:0}.leaflet-tooltip-right:before{border-right-color:#fff;margin-left:-12px;left:0}@media print{.leaflet-control{-webkit-print-color-adjust:exact;print-color-adjust:exact}}.leaflet-draw-section{position:relative}.leaflet-draw-toolbar{margin-top:12px}.leaflet-draw-toolbar-top{margin-top:0}.leaflet-draw-toolbar-notop a:first-child{border-top-right-radius:0}.leaflet-draw-toolbar-nobottom a:last-child{border-bottom-right-radius:0}.leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/svg/spritesheet.ac8b36fa.svg);background-repeat:no-repeat;background-size:300px 30px;background-clip:padding-box}.leaflet-retina .leaflet-draw-toolbar a{background-image:linear-gradient(#0000,#0000),url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/svg/spritesheet.ac8b36fa.svg)}.leaflet-draw a{text-align:center;text-decoration:none;display:block}.leaflet-draw a .sr-only{clip:rect(0,0,0,0);border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.leaflet-draw-actions{white-space:nowrap;margin:0;padding:0;list-style:none;display:none;position:absolute;top:0;left:26px}.leaflet-touch .leaflet-draw-actions{left:32px}.leaflet-right .leaflet-draw-actions{left:auto;right:26px}.leaflet-touch .leaflet-right .leaflet-draw-actions{left:auto;right:32px}.leaflet-draw-actions li{display:inline-block}.leaflet-draw-actions li:first-child a{border-left:0}.leaflet-draw-actions li:last-child a{border-radius:0 4px 4px 0}.leaflet-right .leaflet-draw-actions li:last-child a{border-radius:0}.leaflet-right .leaflet-draw-actions li:first-child a{border-radius:4px 0 0 4px}.leaflet-draw-actions a{color:#fff;background-color:#919187;border-left:1px solid #aaa;height:28px;padding-left:10px;padding-right:10px;font:11px/28px Helvetica Neue,Arial,Helvetica,sans-serif;text-decoration:none}.leaflet-touch .leaflet-draw-actions a{height:30px;font-size:12px;line-height:30px}.leaflet-draw-actions-bottom{margin-top:0}.leaflet-draw-actions-top{margin-top:1px}.leaflet-draw-actions-top a,.leaflet-draw-actions-bottom a{height:27px;line-height:27px}.leaflet-draw-actions a:hover{background-color:#a0a098}.leaflet-draw-actions-top.leaflet-draw-actions-bottom a{height:26px;line-height:26px}.leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:-2px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polyline{background-position:0 -1px}.leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-31px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-polygon{background-position:-29px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-62px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-rectangle{background-position:-60px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-92px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circle{background-position:-90px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-122px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-marker{background-position:-120px -1px}.leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-273px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-draw-circlemarker{background-position:-271px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-152px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit{background-position:-150px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-182px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove{background-position:-180px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-212px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-edit.leaflet-disabled{background-position:-210px -1px}.leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-242px -2px}.leaflet-touch .leaflet-draw-toolbar .leaflet-draw-edit-remove.leaflet-disabled{background-position:-240px -2px}.leaflet-mouse-marker{cursor:crosshair;background-color:#fff}.leaflet-draw-tooltip{color:#fff;visibility:hidden;white-space:nowrap;z-index:6;background:#00000080;border:1px solid #0000;border-radius:4px;margin-top:-21px;margin-left:20px;padding:4px 8px;font:12px/18px Helvetica Neue,Arial,Helvetica,sans-serif;position:absolute}.leaflet-draw-tooltip:before{content:"";border-top:6px solid #0000;border-bottom:6px solid #0000;border-right:6px solid #00000080;position:absolute;top:7px;left:-7px}.leaflet-error-draw-tooltip{color:#b94a48;background-color:#f2dede;border:1px solid #e6b6bd}.leaflet-error-draw-tooltip:before{border-right-color:#e6b6bd}.leaflet-draw-tooltip-single{margin-top:-12px}.leaflet-draw-tooltip-subtext{color:#f8d5e4}.leaflet-draw-guide-dash{opacity:.6;width:5px;height:5px;font-size:1%;position:absolute}.leaflet-edit-marker-selected{box-sizing:content-box;background-color:#fe57a11a;border:4px dashed #fe57a199;border-radius:4px}.leaflet-edit-move{cursor:move}.leaflet-edit-resize{cursor:pointer}.leaflet-oldie .leaflet-draw-toolbar{border:1px solid #999} \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css deleted file mode 100644 index f032de2b8e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/css/async/__federation_expose__internal___mf_bootstrap_document_editor_iframe.44f2f5d2.css +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ -.flexlayout__layout{--color-text:black;--color-background:white;--color-base:white;--color-1:#f7f7f7;--color-2:#f0f0f0;--color-3:#e9e9e9;--color-4:#e2e2e2;--color-5:#dbdbdb;--color-6:#d4d4d4;--color-drag1:#5f86c4;--color-drag2:#77a677;--color-drag1-background:#5f86c41a;--color-drag2-background:#77a67713;--font-size:medium;--font-family:Roboto,Arial,sans-serif;--color-overflow:gray;--color-icon:gray;--color-tabset-background:var(--color-background);--color-tabset-background-selected:var(--color-1);--color-tabset-background-maximized:var(--color-6);--color-tabset-divider-line:var(--color-4);--color-tabset-header-background:var(--color-background);--color-tabset-header:var(--color-text);--color-border-background:var(--color-background);--color-border-divider-line:var(--color-4);--color-tab-selected:var(--color-text);--color-tab-selected-background:var(--color-4);--color-tab-unselected:gray;--color-tab-unselected-background:transparent;--color-tab-textbox:var(--color-text);--color-tab-textbox-background:var(--color-3);--color-border-tab-selected:var(--color-text);--color-border-tab-selected-background:var(--color-4);--color-border-tab-unselected:gray;--color-border-tab-unselected-background:var(--color-2);--color-splitter:var(--color-1);--color-splitter-hover:var(--color-4);--color-splitter-drag:var(--color-4);--color-drag-rect-border:var(--color-6);--color-drag-rect-background:var(--color-4);--color-drag-rect:var(--color-text);--color-popup-border:var(--color-6);--color-popup-unselected:var(--color-text);--color-popup-unselected-background:white;--color-popup-selected:var(--color-text);--color-popup-selected-background:var(--color-3);--color-edge-marker:#aaa;--color-edge-icon:#555;position:absolute;top:0;bottom:0;left:0;right:0;overflow:hidden}.flexlayout__splitter{background-color:var(--color-splitter)}@media (hover:hover){.flexlayout__splitter:hover{background-color:var(--color-splitter-hover);transition:background-color .1s ease-in 50ms}}.flexlayout__splitter_border{z-index:10}.flexlayout__splitter_drag{z-index:1000;background-color:var(--color-splitter-drag)}.flexlayout__splitter_extra{background-color:#0000}.flexlayout__outline_rect{pointer-events:none;box-sizing:border-box;border:2px solid var(--color-drag1);background:var(--color-drag1-background);z-index:1000;border-radius:5px;position:absolute}.flexlayout__outline_rect_edge{pointer-events:none;border:2px solid var(--color-drag2);background:var(--color-drag2-background);z-index:1000;box-sizing:border-box;border-radius:5px}.flexlayout__edge_rect{z-index:1000;background-color:var(--color-edge-marker);pointer-events:none;justify-content:center;align-items:center;display:flex;position:absolute}.flexlayout__drag_rect{cursor:move;color:var(--color-drag-rect);background-color:var(--color-drag-rect-background);border:2px solid var(--color-drag-rect-border);z-index:1000;box-sizing:border-box;opacity:.9;text-align:center;word-wrap:break-word;font-size:var(--font-size);font-family:var(--font-family);border-radius:5px;flex-direction:column;justify-content:center;padding:.3em 1em;display:flex;position:absolute;overflow:hidden}.flexlayout__tabset{background-color:var(--color-tabset-background);box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);flex-direction:column;display:flex;overflow:hidden}.flexlayout__tabset_tab_divider{width:4px}.flexlayout__tabset_content{flex-grow:1;justify-content:center;align-items:center;display:flex}.flexlayout__tabset_header{box-sizing:border-box;border-bottom:1px solid var(--color-tabset-divider-line);color:var(--color-tabset-header);background-color:var(--color-tabset-header-background);align-items:center;padding:3px 3px 3px 5px;display:flex}.flexlayout__tabset_header_content{flex-grow:1}.flexlayout__tabset_tabbar_outer{box-sizing:border-box;background-color:var(--color-tabset-background);display:flex;overflow:hidden}.flexlayout__tabset_tabbar_outer_top{border-bottom:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_outer_bottom{border-top:1px solid var(--color-tabset-divider-line)}.flexlayout__tabset_tabbar_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__tabset_tabbar_inner_tab_container{box-sizing:border-box;width:10000px;padding-left:4px;padding-right:4px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__tabset_tabbar_inner_tab_container_top{border-top:2px solid #0000}.flexlayout__tabset_tabbar_inner_tab_container_bottom{border-bottom:2px solid #0000}.flexlayout__tabset-selected{background-color:var(--color-tabset-background-selected)}.flexlayout__tabset-maximized{background-color:var(--color-tabset-background-maximized)}.flexlayout__tab_button_stamp{white-space:nowrap;box-sizing:border-box;align-items:center;gap:.3em;display:inline-flex}.flexlayout__tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;overflow:auto}.flexlayout__tab_button{box-sizing:border-box;cursor:pointer;align-items:center;gap:.3em;padding:3px .5em;display:flex}.flexlayout__tab_button_stretch{color:var(--color-tab-selected);text-wrap:nowrap;box-sizing:border-box;cursor:pointer;background-color:#0000;align-items:center;gap:.3em;width:100%;padding:3px 0;display:flex}@media (hover:hover){.flexlayout__tab_button_stretch:hover{color:var(--color-tab-selected)}}.flexlayout__tab_button--selected{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}@media (hover:hover){.flexlayout__tab_button:hover{background-color:var(--color-tab-selected-background);color:var(--color-tab-selected)}}.flexlayout__tab_button--unselected{background-color:var(--color-tab-unselected-background);color:gray}.flexlayout__tab_button_leading,.flexlayout__tab_button_content{display:flex}.flexlayout__tab_button_textbox{font-family:var(--font-family);font-size:var(--font-size);color:var(--color-tab-textbox);background-color:var(--color-tab-textbox-background);border:none;border:1px inset var(--color-1);border-radius:3px;width:10em}.flexlayout__tab_button_textbox:focus{outline:none}.flexlayout__tab_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__tab_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__tab_button:hover .flexlayout__tab_button_trailing{visibility:visible}}.flexlayout__tab_button--selected .flexlayout__tab_button_trailing{visibility:visible}.flexlayout__tab_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__tab_toolbar{align-items:center;gap:.3em;padding-left:.5em;padding-right:.3em;display:flex}.flexlayout__tab_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;margin:0;padding:1px}@media (hover:hover){.flexlayout__tab_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__tab_toolbar_sticky_buttons_container{align-items:center;gap:.3em;padding-left:5px;display:flex}.flexlayout__tab_floating{box-sizing:border-box;color:var(--color-text);background-color:var(--color-background);justify-content:center;align-items:center;display:flex;position:absolute;overflow:auto}.flexlayout__tab_floating_inner{flex-direction:column;justify-content:center;align-items:center;display:flex;overflow:auto}.flexlayout__tab_floating_inner div{text-align:center;margin-bottom:5px}.flexlayout__tab_floating_inner div a{color:#4169e1}.flexlayout__border{box-sizing:border-box;font-size:var(--font-size);font-family:var(--font-family);color:var(--color-border);background-color:var(--color-border-background);display:flex;overflow:hidden}.flexlayout__border_top{border-bottom:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_bottom{border-top:1px solid var(--color-border-divider-line);align-items:center}.flexlayout__border_left{border-right:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_right{border-left:1px solid var(--color-border-divider-line);flex-direction:column;align-content:center}.flexlayout__border_inner{box-sizing:border-box;flex-grow:1;display:flex;position:relative;overflow:hidden}.flexlayout__border_inner_tab_container{white-space:nowrap;box-sizing:border-box;width:10000px;padding-left:2px;padding-right:2px;display:flex;position:absolute;top:0;bottom:0}.flexlayout__border_inner_tab_container_right{transform-origin:0 0;transform:rotate(90deg)}.flexlayout__border_inner_tab_container_left{transform-origin:100% 0;flex-direction:row-reverse;transform:rotate(-90deg)}.flexlayout__border_tab_divider{width:4px}.flexlayout__border_button{cursor:pointer;box-sizing:border-box;white-space:nowrap;align-items:center;gap:.3em;margin:2px 0;padding:3px .5em;display:flex}.flexlayout__border_button--selected{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}@media (hover:hover){.flexlayout__border_button:hover{background-color:var(--color-border-tab-selected-background);color:var(--color-border-tab-selected)}}.flexlayout__border_button--unselected{background-color:var(--color-border-tab-unselected-background);color:var(--color-border-tab-unselected)}.flexlayout__border_button_leading,.flexlayout__border_button_content{display:flex}.flexlayout__border_button_trailing{visibility:hidden;border-radius:4px;display:flex}.flexlayout__border_button_trailing:hover{background-color:var(--color-3)}@media (hover:hover){.flexlayout__border_button:hover .flexlayout__border_button_trailing{visibility:visible}}.flexlayout__border_button--selected .flexlayout__border_button_trailing{visibility:visible}.flexlayout__border_toolbar{align-items:center;gap:.3em;display:flex}.flexlayout__border_toolbar_left,.flexlayout__border_toolbar_right{flex-direction:column;padding-top:.5em;padding-bottom:.3em}.flexlayout__border_toolbar_top,.flexlayout__border_toolbar_bottom{padding-left:.5em;padding-right:.3em}.flexlayout__border_toolbar_button{font-size:inherit;background-color:#0000;border:none;border-radius:4px;outline:none;padding:1px}@media (hover:hover){.flexlayout__border_toolbar_button:hover{background-color:var(--color-2)}}.flexlayout__border_toolbar_button_overflow{color:var(--color-overflow);font-size:inherit;background-color:#0000;border:none;align-items:center;display:flex}.flexlayout__popup_menu{font-size:var(--font-size);font-family:var(--font-family)}.flexlayout__popup_menu_item{white-space:nowrap;cursor:pointer;border-radius:2px;padding:2px .5em}@media (hover:hover){.flexlayout__popup_menu_item:hover{background-color:var(--color-6)}}.flexlayout__popup_menu_container{border:1px solid var(--color-popup-border);color:var(--color-popup-unselected);background:var(--color-popup-unselected-background);z-index:1000;border-radius:3px;min-width:100px;max-height:50%;padding:2px;position:absolute;overflow:auto;box-shadow:inset 0 0 5px #00000026}.flexlayout__floating_window _body{height:100%}.flexlayout__floating_window_content{position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__floating_window_tab{box-sizing:border-box;background-color:var(--color-background);color:var(--color-text);position:absolute;top:0;bottom:0;left:0;right:0;overflow:auto}.flexlayout__error_boundary_container{justify-content:center;display:flex;position:absolute;top:0;bottom:0;left:0;right:0}.flexlayout__error_boundary_content{align-items:center;display:flex}.flexlayout__tabset_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:5px;padding-bottom:3px}.flexlayout__tabset_header_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:3px;padding-bottom:3px}.flexlayout__border_sizer{font-size:var(--font-size);font-family:var(--font-family);padding-top:6px;padding-bottom:5px}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Regular.4291f48c.ttf)}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Light.bec6f0ae.ttf);font-weight:300}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf);font-weight:600}@font-face{font-family:Lato;src:url(/bundles/pimcorestudioui/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf);font-weight:700} \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf deleted file mode 100644 index 016068b486..0000000000 Binary files a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Bold.2c00c297.ttf and /dev/null differ diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Light.bec6f0ae.ttf b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Light.bec6f0ae.ttf deleted file mode 100644 index dfa72ce808..0000000000 Binary files a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Light.bec6f0ae.ttf and /dev/null differ diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Regular.4291f48c.ttf b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Regular.4291f48c.ttf deleted file mode 100644 index bb2e8875a9..0000000000 Binary files a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/font/Lato-Regular.4291f48c.ttf and /dev/null differ diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js deleted file mode 100644 index a3e0efc8d3..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js +++ /dev/null @@ -1,450 +0,0 @@ -/*! For license information please see 7366.cc04fcb0.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["7366"],{81463(e,t,n){"use strict";n.r(t),n.d(t,{yellowDark:()=>M,grey:()=>A,generate:()=>c,presetPalettes:()=>C,presetPrimaryColors:()=>s,green:()=>h,goldDark:()=>O,blueDark:()=>z,orangeDark:()=>E,lime:()=>g,greenDark:()=>I,gray:()=>w,red:()=>u,presetDarkPalettes:()=>L,cyan:()=>v,volcanoDark:()=>k,limeDark:()=>N,cyanDark:()=>j,yellow:()=>m,magentaDark:()=>T,greyDark:()=>D,geekblueDark:()=>R,gold:()=>p,purple:()=>x,volcano:()=>d,orange:()=>f,magenta:()=>$,geekblue:()=>y,purpleDark:()=>P,redDark:()=>S,blue:()=>b});var r=n(78250),o=[{index:7,amount:15},{index:6,amount:25},{index:5,amount:30},{index:5,amount:45},{index:5,amount:65},{index:5,amount:85},{index:4,amount:90},{index:3,amount:95},{index:2,amount:97},{index:1,amount:98}];function a(e,t,n){var r;return(r=Math.round(e.h)>=60&&240>=Math.round(e.h)?n?Math.round(e.h)-2*t:Math.round(e.h)+2*t:n?Math.round(e.h)+2*t:Math.round(e.h)-2*t)<0?r+=360:r>=360&&(r-=360),r}function i(e,t,n){var r;return 0===e.h&&0===e.s?e.s:((r=n?e.s-.16*t:4===t?e.s+.16:e.s+.05*t)>1&&(r=1),n&&5===t&&r>.1&&(r=.1),r<.06&&(r=.06),Math.round(100*r)/100)}function l(e,t,n){return Math.round(100*Math.max(0,Math.min(1,n?e.v+.05*t:e.v-.15*t)))/100}function c(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=[],c=new r.Y(e),s=c.toHsv(),u=5;u>0;u-=1){var d=new r.Y({h:a(s,u,!0),s:i(s,u,!0),v:l(s,u,!0)});n.push(d)}n.push(c);for(var f=1;f<=4;f+=1){var p=new r.Y({h:a(s,f),s:i(s,f),v:l(s,f)});n.push(p)}return"dark"===t.theme?o.map(function(e){var o=e.index,a=e.amount;return new r.Y(t.backgroundColor||"#141414").mix(n[o],a).toHexString()}):n.map(function(e){return e.toHexString()})}var s={red:"#F5222D",volcano:"#FA541C",orange:"#FA8C16",gold:"#FAAD14",yellow:"#FADB14",lime:"#A0D911",green:"#52C41A",cyan:"#13C2C2",blue:"#1677FF",geekblue:"#2F54EB",purple:"#722ED1",magenta:"#EB2F96",grey:"#666666"},u=["#fff1f0","#ffccc7","#ffa39e","#ff7875","#ff4d4f","#f5222d","#cf1322","#a8071a","#820014","#5c0011"];u.primary=u[5];var d=["#fff2e8","#ffd8bf","#ffbb96","#ff9c6e","#ff7a45","#fa541c","#d4380d","#ad2102","#871400","#610b00"];d.primary=d[5];var f=["#fff7e6","#ffe7ba","#ffd591","#ffc069","#ffa940","#fa8c16","#d46b08","#ad4e00","#873800","#612500"];f.primary=f[5];var p=["#fffbe6","#fff1b8","#ffe58f","#ffd666","#ffc53d","#faad14","#d48806","#ad6800","#874d00","#613400"];p.primary=p[5];var m=["#feffe6","#ffffb8","#fffb8f","#fff566","#ffec3d","#fadb14","#d4b106","#ad8b00","#876800","#614700"];m.primary=m[5];var g=["#fcffe6","#f4ffb8","#eaff8f","#d3f261","#bae637","#a0d911","#7cb305","#5b8c00","#3f6600","#254000"];g.primary=g[5];var h=["#f6ffed","#d9f7be","#b7eb8f","#95de64","#73d13d","#52c41a","#389e0d","#237804","#135200","#092b00"];h.primary=h[5];var v=["#e6fffb","#b5f5ec","#87e8de","#5cdbd3","#36cfc9","#13c2c2","#08979c","#006d75","#00474f","#002329"];v.primary=v[5];var b=["#e6f4ff","#bae0ff","#91caff","#69b1ff","#4096ff","#1677ff","#0958d9","#003eb3","#002c8c","#001d66"];b.primary=b[5];var y=["#f0f5ff","#d6e4ff","#adc6ff","#85a5ff","#597ef7","#2f54eb","#1d39c4","#10239e","#061178","#030852"];y.primary=y[5];var x=["#f9f0ff","#efdbff","#d3adf7","#b37feb","#9254de","#722ed1","#531dab","#391085","#22075e","#120338"];x.primary=x[5];var $=["#fff0f6","#ffd6e7","#ffadd2","#ff85c0","#f759ab","#eb2f96","#c41d7f","#9e1068","#780650","#520339"];$.primary=$[5];var A=["#a6a6a6","#999999","#8c8c8c","#808080","#737373","#666666","#404040","#1a1a1a","#000000","#000000"];A.primary=A[5];var w=A,C={red:u,volcano:d,orange:f,gold:p,yellow:m,lime:g,green:h,cyan:v,blue:b,geekblue:y,purple:x,magenta:$,grey:A},S=["#2a1215","#431418","#58181c","#791a1f","#a61d24","#d32029","#e84749","#f37370","#f89f9a","#fac8c3"];S.primary=S[5];var k=["#2b1611","#441d12","#592716","#7c3118","#aa3e19","#d84a1b","#e87040","#f3956a","#f8b692","#fad4bc"];k.primary=k[5];var E=["#2b1d11","#442a11","#593815","#7c4a15","#aa6215","#d87a16","#e89a3c","#f3b765","#f8cf8d","#fae3b7"];E.primary=E[5];var O=["#2b2111","#443111","#594214","#7c5914","#aa7714","#d89614","#e8b339","#f3cc62","#f8df8b","#faedb5"];O.primary=O[5];var M=["#2b2611","#443b11","#595014","#7c6e14","#aa9514","#d8bd14","#e8d639","#f3ea62","#f8f48b","#fafab5"];M.primary=M[5];var N=["#1f2611","#2e3c10","#3e4f13","#536d13","#6f9412","#8bbb11","#a9d134","#c9e75d","#e4f88b","#f0fab5"];N.primary=N[5];var I=["#162312","#1d3712","#274916","#306317","#3c8618","#49aa19","#6abe39","#8fd460","#b2e58b","#d5f2bb"];I.primary=I[5];var j=["#112123","#113536","#144848","#146262","#138585","#13a8a8","#33bcb7","#58d1c9","#84e2d8","#b2f1e8"];j.primary=j[5];var z=["#111a2c","#112545","#15325b","#15417e","#1554ad","#1668dc","#3c89e8","#65a9f3","#8dc5f8","#b7dcfa"];z.primary=z[5];var R=["#131629","#161d40","#1c2755","#203175","#263ea0","#2b4acb","#5273e0","#7f9ef3","#a8c1f8","#d2e0fa"];R.primary=R[5];var P=["#1a1325","#24163a","#301c4d","#3e2069","#51258f","#642ab5","#854eca","#ab7ae0","#cda8f0","#ebd7fa"];P.primary=P[5];var T=["#291321","#40162f","#551c3b","#75204f","#a02669","#cb2b83","#e0529c","#f37fb7","#f8a8cc","#fad2e3"];T.primary=T[5];var D=["#151515","#1f1f1f","#2d2d2d","#393939","#494949","#5a5a5a","#6a6a6a","#7b7b7b","#888888","#969696"];D.primary=D[5];var L={red:S,volcano:k,orange:E,gold:O,yellow:M,lime:N,green:I,cyan:j,blue:z,geekblue:R,purple:P,magenta:T,grey:D}},10224(e,t,n){"use strict";n.d(t,{oX:()=>k,L_:()=>z});var r=n(82284),o=n(57046),a=n(64467),i=n(89379),l=n(47867),c=n.n(l),s=n(96191),u=n(23029),d=n(92901),f=n(9417),p=n(85501),m=n(29426),g=(0,d.A)(function e(){(0,u.A)(this,e)}),h="CALC_UNIT",v=RegExp(h,"g");function b(e){return"number"==typeof e?"".concat(e).concat(h):e}var y=function(e){(0,p.A)(n,e);var t=(0,m.A)(n);function n(e,o){(0,u.A)(this,n),i=t.call(this),(0,a.A)((0,f.A)(i),"result",""),(0,a.A)((0,f.A)(i),"unitlessCssVar",void 0),(0,a.A)((0,f.A)(i),"lowPriority",void 0);var i,l=(0,r.A)(e);return i.unitlessCssVar=o,e instanceof n?i.result="(".concat(e.result,")"):"number"===l?i.result=b(e):"string"===l&&(i.result=e),i}return(0,d.A)(n,[{key:"add",value:function(e){return e instanceof n?this.result="".concat(this.result," + ").concat(e.getResult()):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," + ").concat(b(e))),this.lowPriority=!0,this}},{key:"sub",value:function(e){return e instanceof n?this.result="".concat(this.result," - ").concat(e.getResult()):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," - ").concat(b(e))),this.lowPriority=!0,this}},{key:"mul",value:function(e){return this.lowPriority&&(this.result="(".concat(this.result,")")),e instanceof n?this.result="".concat(this.result," * ").concat(e.getResult(!0)):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," * ").concat(e)),this.lowPriority=!1,this}},{key:"div",value:function(e){return this.lowPriority&&(this.result="(".concat(this.result,")")),e instanceof n?this.result="".concat(this.result," / ").concat(e.getResult(!0)):("number"==typeof e||"string"==typeof e)&&(this.result="".concat(this.result," / ").concat(e)),this.lowPriority=!1,this}},{key:"getResult",value:function(e){return this.lowPriority||e?"(".concat(this.result,")"):this.result}},{key:"equal",value:function(e){var t=this,n=(e||{}).unit,r=!0;return("boolean"==typeof n?r=n:Array.from(this.unitlessCssVar).some(function(e){return t.result.includes(e)})&&(r=!1),this.result=this.result.replace(v,r?"px":""),void 0!==this.lowPriority)?"calc(".concat(this.result,")"):this.result}}]),n}(g),x=function(e){(0,p.A)(n,e);var t=(0,m.A)(n);function n(e){var r;return(0,u.A)(this,n),r=t.call(this),(0,a.A)((0,f.A)(r),"result",0),e instanceof n?r.result=e.result:"number"==typeof e&&(r.result=e),r}return(0,d.A)(n,[{key:"add",value:function(e){return e instanceof n?this.result+=e.result:"number"==typeof e&&(this.result+=e),this}},{key:"sub",value:function(e){return e instanceof n?this.result-=e.result:"number"==typeof e&&(this.result-=e),this}},{key:"mul",value:function(e){return e instanceof n?this.result*=e.result:"number"==typeof e&&(this.result*=e),this}},{key:"div",value:function(e){return e instanceof n?this.result/=e.result:"number"==typeof e&&(this.result/=e),this}},{key:"equal",value:function(){return this.result}}]),n}(g);let $=function(e,t){var n="css"===e?y:x;return function(e){return new n(e,t)}},A=function(e,t){return"".concat([t,e.replace(/([A-Z]+)([A-Z][a-z]+)/g,"$1-$2").replace(/([a-z])([A-Z])/g,"$1-$2")].filter(Boolean).join("-"))};n(81470);let w=function(e,t,n,r){var a=(0,i.A)({},t[e]);null!=r&&r.deprecatedTokens&&r.deprecatedTokens.forEach(function(e){var t=(0,o.A)(e,2),n=t[0],r=t[1];(null!=a&&a[n]||null!=a&&a[r])&&(null!=a[r]||(a[r]=null==a?void 0:a[n]))});var l=(0,i.A)((0,i.A)({},n),a);return Object.keys(l).forEach(function(e){l[e]===t[e]&&delete l[e]}),l};var C="u">typeof CSSINJS_STATISTIC,S=!0;function k(){for(var e=arguments.length,t=Array(e),n=0;ntypeof Proxy&&(t=new Set,n=new Proxy(e,{get:function(e,n){if(S){var r;null==(r=t)||r.add(n)}return e[n]}}),r=function(e,n){var r;E[e]={global:Array.from(t),component:(0,i.A)((0,i.A)({},null==(r=E[e])?void 0:r.component),n)}}),{token:n,keys:t,flush:r}},N=function(e,t,n){if("function"==typeof n){var r;return n(k(t,null!=(r=t[e])?r:{}))}return null!=n?n:{}};var I=new(function(){function e(){(0,u.A)(this,e),(0,a.A)(this,"map",new Map),(0,a.A)(this,"objectIDMap",new WeakMap),(0,a.A)(this,"nextID",0),(0,a.A)(this,"lastAccessBeat",new Map),(0,a.A)(this,"accessBeat",0)}return(0,d.A)(e,[{key:"set",value:function(e,t){this.clear();var n=this.getCompositeKey(e);this.map.set(n,t),this.lastAccessBeat.set(n,Date.now())}},{key:"get",value:function(e){var t=this.getCompositeKey(e),n=this.map.get(t);return this.lastAccessBeat.set(t,Date.now()),this.accessBeat+=1,n}},{key:"getCompositeKey",value:function(e){var t=this;return e.map(function(e){return e&&"object"===(0,r.A)(e)?"obj_".concat(t.getObjectID(e)):"".concat((0,r.A)(e),"_").concat(e)}).join("|")}},{key:"getObjectID",value:function(e){if(this.objectIDMap.has(e))return this.objectIDMap.get(e);var t=this.nextID;return this.objectIDMap.set(e,t),this.nextID+=1,t}},{key:"clear",value:function(){var e=this;if(this.accessBeat>1e4){var t=Date.now();this.lastAccessBeat.forEach(function(n,r){t-n>6e5&&(e.map.delete(r),e.lastAccessBeat.delete(r))}),this.accessBeat=0}}}]),e}());let j=function(){return{}},z=function(e){var t=e.useCSP,n=void 0===t?j:t,l=e.useToken,u=e.usePrefix,d=e.getResetStyles,f=e.getCommonStyle,p=e.getCompUnitless;function m(t,a,p){var m=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},g=Array.isArray(t)?t:[t,t],h=(0,o.A)(g,1)[0],v=g.join("-"),b=e.layer||{name:"antd"};return function(e){var t,o,g=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e,y=l(),x=y.theme,C=y.realToken,S=y.hashId,E=y.token,O=y.cssVar,j=u(),z=j.rootPrefixCls,R=j.iconPrefixCls,P=n(),T=O?"css":"js",D=(t=function(){var e=new Set;return O&&Object.keys(m.unitless||{}).forEach(function(t){e.add((0,s.Ki)(t,O.prefix)),e.add((0,s.Ki)(t,A(h,O.prefix)))}),$(T,e)},o=[T,h,null==O?void 0:O.prefix],c().useMemo(function(){var e=I.get(o);if(e)return e;var n=t();return I.set(o,n),n},o)),L="js"===T?{max:Math.max,min:Math.min}:{max:function(){for(var e=arguments.length,t=Array(e),n=0;n1&&void 0!==arguments[1]?arguments[1]:e,n=O(e,t),r=(0,o.A)(n,2)[1],a=M(t),i=(0,o.A)(a,2);return[i[0],r,i[1]]}},genSubStyleComponent:function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=m(e,t,n,(0,i.A)({resetStyle:!1,order:-998},r));return function(e){var t=e.prefixCls,n=e.rootCls,r=void 0===n?t:n;return o(t,r),null}},genComponentStyleHook:m}}},96191(e,t,n){"use strict";n.d(t,{lO:()=>G,hV:()=>Z,IV:()=>eT,Mo:()=>e_,zA:()=>B,N7:()=>C,an:()=>j,Ki:()=>H,RC:()=>eL,Jb:()=>eH,VC:()=>A});var r,o=n(57046),a=n(64467),i=n(83098),l=n(89379);let c=function(e){for(var t,n=0,r=0,o=e.length;o>=4;++r,o-=4)t=(65535&(t=255&e.charCodeAt(r)|(255&e.charCodeAt(++r))<<8|(255&e.charCodeAt(++r))<<16|(255&e.charCodeAt(++r))<<24))*0x5bd1e995+((t>>>16)*59797<<16),t^=t>>>24,n=(65535&t)*0x5bd1e995+((t>>>16)*59797<<16)^(65535&n)*0x5bd1e995+((n>>>16)*59797<<16);switch(o){case 3:n^=(255&e.charCodeAt(r+2))<<16;case 2:n^=(255&e.charCodeAt(r+1))<<8;case 1:n^=255&e.charCodeAt(r),n=(65535&n)*0x5bd1e995+((n>>>16)*59797<<16)}return n^=n>>>13,(((n=(65535&n)*0x5bd1e995+((n>>>16)*59797<<16))^n>>>15)>>>0).toString(36)};var s=n(85089),u=n(47867),d=n(80045),f=n(28104),p=n(43210),m=n(23029),g=n(92901);function h(e){return e.join("%")}var v=function(){function e(t){(0,m.A)(this,e),(0,a.A)(this,"instanceId",void 0),(0,a.A)(this,"cache",new Map),(0,a.A)(this,"extracted",new Set),this.instanceId=t}return(0,g.A)(e,[{key:"get",value:function(e){return this.opGet(h(e))}},{key:"opGet",value:function(e){return this.cache.get(e)||null}},{key:"update",value:function(e,t){return this.opUpdate(h(e),t)}},{key:"opUpdate",value:function(e,t){var n=t(this.cache.get(e));null===n?this.cache.delete(e):this.cache.set(e,n)}}]),e}(),b=["children"],y="data-token-hash",x="data-css-hash",$="__cssinjs_instance__";function A(){var e=Math.random().toString(12).slice(2);if("u">typeof document&&document.head&&document.body){var t=document.body.querySelectorAll("style[".concat(x,"]"))||[],n=document.head.firstChild;Array.from(t).forEach(function(t){t[$]=t[$]||e,t[$]===e&&document.head.insertBefore(t,n)});var r={};Array.from(document.querySelectorAll("style[".concat(x,"]"))).forEach(function(t){var n,o=t.getAttribute(x);r[o]?t[$]===e&&(null==(n=t.parentNode)||n.removeChild(t)):r[o]=!0})}return new v(e)}var w=u.createContext({hashPriority:"low",cache:A(),defaultCache:!0}),C=function(e){var t=e.children,n=(0,d.A)(e,b),r=u.useContext(w),o=(0,f.A)(function(){var e=(0,l.A)({},r);Object.keys(n).forEach(function(t){var r=n[t];void 0!==n[t]&&(e[t]=r)});var t=n.cache;return e.cache=e.cache||A(),e.defaultCache=!t&&r.defaultCache,e},[r,n],function(e,t){return!(0,p.A)(e[0],t[0],!0)||!(0,p.A)(e[1],t[1],!0)});return u.createElement(w.Provider,{value:o},t)},S=n(82284),k=n(20998),E=function(){function e(){(0,m.A)(this,e),(0,a.A)(this,"cache",void 0),(0,a.A)(this,"keys",void 0),(0,a.A)(this,"cacheCallTimes",void 0),this.cache=new Map,this.keys=[],this.cacheCallTimes=0}return(0,g.A)(e,[{key:"size",value:function(){return this.keys.length}},{key:"internalGet",value:function(e){var t,n,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o={map:this.cache};return e.forEach(function(e){if(o){var t;o=null==(t=o)||null==(t=t.map)?void 0:t.get(e)}else o=void 0}),null!=(t=o)&&t.value&&r&&(o.value[1]=this.cacheCallTimes++),null==(n=o)?void 0:n.value}},{key:"get",value:function(e){var t;return null==(t=this.internalGet(e,!0))?void 0:t[0]}},{key:"has",value:function(e){return!!this.internalGet(e)}},{key:"set",value:function(t,n){var r=this;if(!this.has(t)){if(this.size()+1>e.MAX_CACHE_SIZE+e.MAX_CACHE_OFFSET){var a=this.keys.reduce(function(e,t){var n=(0,o.A)(e,2)[1];return r.internalGet(t)[1]0,"[Ant Design CSS-in-JS] Theme should have at least one derivative function."),M+=1}return(0,g.A)(e,[{key:"getDerivativeToken",value:function(e){return this.derivatives.reduce(function(t,n){return n(e,t)},void 0)}}]),e}(),I=new E;function j(e){var t=Array.isArray(e)?e:[e];return I.has(t)||I.set(t,new N(t)),I.get(t)}var z=new WeakMap,R={},P=new WeakMap;function T(e){var t=P.get(e)||"";return t||(Object.keys(e).forEach(function(n){var r=e[n];t+=n,r instanceof N?t+=r.id:r&&"object"===(0,S.A)(r)?t+=T(r):t+=r}),t=c(t),P.set(e,t)),t}function D(e,t){return c("".concat(t,"_").concat(T(e)))}"random-".concat(Date.now(),"-").concat(Math.random()).replace(/\./g,"");var L=(0,k.A)();function B(e){return"number"==typeof e?"".concat(e,"px"):e}function F(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(o)return e;var i=(0,l.A)((0,l.A)({},r),{},(0,a.A)((0,a.A)({},y,t),x,n)),c=Object.keys(i).map(function(e){var t=i[e];return t?"".concat(e,'="').concat(t,'"'):null}).filter(function(e){return e}).join(" ");return"")}var H=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"";return"--".concat(t?"".concat(t,"-"):"").concat(e).replace(/([a-z0-9])([A-Z])/g,"$1-$2").replace(/([A-Z]+)([A-Z][a-z0-9]+)/g,"$1-$2").replace(/([a-z])([A-Z0-9])/g,"$1-$2").toLowerCase()},_=function(e,t,n){var r,a={},i={};return Object.entries(e).forEach(function(e){var t=(0,o.A)(e,2),r=t[0],l=t[1];if(null!=n&&null!=(c=n.preserve)&&c[r])i[r]=l;else if(("string"==typeof l||"number"==typeof l)&&!(null!=n&&null!=(s=n.ignore)&&s[r])){var c,s,u,d=H(r,null==n?void 0:n.prefix);a[d]="number"!=typeof l||null!=n&&null!=(u=n.unitless)&&u[r]?String(l):"".concat(l,"px"),i[r]="var(".concat(d,")")}}),[i,(r={scope:null==n?void 0:n.scope},Object.keys(a).length?".".concat(t).concat(null!=r&&r.scope?".".concat(r.scope):"","{").concat(Object.entries(a).map(function(e){var t=(0,o.A)(e,2),n=t[0],r=t[1];return"".concat(n,":").concat(r,";")}).join(""),"}"):"")]},W=n(30981),q=(0,l.A)({},u).useInsertionEffect,V=q?function(e,t,n){return q(function(){return e(),t()},n)}:function(e,t,n){u.useMemo(e,n),(0,W.A)(function(){return t(!0)},n)},K=void 0!==(0,l.A)({},u).useInsertionEffect?function(e){var t=[],n=!1;return u.useEffect(function(){return n=!1,function(){n=!0,t.length&&t.forEach(function(e){return e()})}},e),function(e){n||t.push(e)}}:function(){return function(e){e()}};function X(e,t,n,r,a){var l=u.useContext(w).cache,c=h([e].concat((0,i.A)(t))),s=K([c]),d=function(e){l.opUpdate(c,function(t){var r=(0,o.A)(t||[void 0,void 0],2),a=r[0],i=[void 0===a?0:a,r[1]||n()];return e?e(i):i})};u.useMemo(function(){d()},[c]);var f=l.opGet(c)[1];return V(function(){null==a||a(f)},function(e){return d(function(t){var n=(0,o.A)(t,2),r=n[0],i=n[1];return e&&0===r&&(null==a||a(f)),[r+1,i]}),function(){l.opUpdate(c,function(t){var n=(0,o.A)(t||[],2),a=n[0],i=void 0===a?0:a,u=n[1];return 0==i-1?(s(function(){(e||!l.opGet(c))&&(null==r||r(u,!1))}),null):[i-1,u]})}},[c]),f}var Y={},U=new Map,G=function(e,t,n,r){var o=n.getDerivativeToken(e),a=(0,l.A)((0,l.A)({},o),t);return r&&(a=r(a)),a},Q="token";function Z(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=(0,u.useContext)(w),a=r.cache.instanceId,d=r.container,f=n.salt,p=void 0===f?"":f,m=n.override,g=void 0===m?Y:m,h=n.formatToken,v=n.getComputedToken,b=n.cssVar,A=function(e,t){for(var n=z,r=0;r0&&n.forEach(function(e){"u">typeof document&&document.querySelectorAll("style[".concat(y,'="').concat(e,'"]')).forEach(function(e){if(e[$]===a){var t;null==(t=e.parentNode)||t.removeChild(e)}}),U.delete(e)})},function(e){var t=(0,o.A)(e,4),n=t[0],r=t[3];if(b&&r){var i=(0,s.BD)(r,c("css-variables-".concat(n._themeKey)),{mark:x,prepend:"queue",attachTo:d,priority:-999});i[$]=a,i.setAttribute(y,n._themeKey)}})}var J=n(58168);let ee={animationIterationCount: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};var et="comm",en="rule",er="decl",eo=Math.abs,ea=String.fromCharCode;function ei(e,t,n){return e.replace(t,n)}function el(e,t){return 0|e.charCodeAt(t)}function ec(e,t,n){return e.slice(t,n)}function es(e){return e.length}function eu(e,t){return t.push(e),e}function ed(e,t){for(var n="",r=0;r0?p[b]+" "+y:ei(y,/&\f/g,p[b])).trim())&&(c[v++]=x);return ey(e,t,n,0===o?en:l,c,s,u,d)}function eS(e,t,n,r,o){return ey(e,t,n,er,ec(e,0,r),ec(e,r+1,-1),r,o)}var ek="data-ant-cssinjs-cache-path",eE="_FILE_STYLE__",eO=!0,eM="_multi_value_";function eN(e){var t,n,r;return ed((r=function e(t,n,r,o,a,i,l,c,s){for(var u,d,f,p,m,g,h=0,v=0,b=l,y=0,x=0,$=0,A=1,w=1,C=1,S=0,k="",E=a,O=i,M=o,N=k;w;)switch($=S,S=ex()){case 40:if(108!=$&&58==el(N,b-1)){-1!=(m=N+=ei(ew(S),"&","&\f"),g=eo(h?c[h-1]:0),m.indexOf("&\f",g))&&(C=-1);break}case 34:case 39:case 91:N+=ew(S);break;case 9:case 10:case 13:case 32:N+=function(e){for(;ev=e$();)if(ev<33)ex();else break;return eA(e)>2||eA(ev)>3?"":" "}($);break;case 92:N+=function(e,t){for(var n;--t&&ex()&&!(ev<48)&&!(ev>102)&&(!(ev>57)||!(ev<65))&&(!(ev>70)||!(ev<97)););return n=eh+(t<6&&32==e$()&&32==ex()),ec(eb,e,n)}(eh-1,7);continue;case 47:switch(e$()){case 42:case 47:eu((u=function(e,t){for(;ex();)if(e+ev===57)break;else if(e+ev===84&&47===e$())break;return"/*"+ec(eb,t,eh-1)+"*"+ea(47===e?e:ex())}(ex(),eh),d=n,f=r,p=s,ey(u,d,f,et,ea(ev),ec(u,2,-2),0,p)),s),(5==eA($||1)||5==eA(e$()||1))&&es(N)&&" "!==ec(N,-1,void 0)&&(N+=" ");break;default:N+="/"}break;case 123*A:c[h++]=es(N)*C;case 125*A:case 59:case 0:switch(S){case 0:case 125:w=0;case 59+v:-1==C&&(N=ei(N,/\f/g,"")),x>0&&(es(N)-b||0===A&&47===$)&&eu(x>32?eS(N+";",o,r,b-1,s):eS(ei(N," ","")+";",o,r,b-2,s),s);break;case 59:N+=";";default:if(eu(M=eC(N,n,r,h,v,a,c,k,E=[],O=[],b,i),i),123===S)if(0===v)e(N,n,M,M,E,i,b,c,O);else{switch(y){case 99:if(110===el(N,3))break;case 108:if(97===el(N,2))break;default:v=0;case 100:case 109:case 115:}v?e(t,M,M,o&&eu(eC(t,M,M,0,0,a,c,k,a,E=[],b,O),O),a,O,b,c,o?E:O):e(N,M,M,M,[""],O,0,c,O)}}h=v=x=0,A=C=1,k=N="",b=l;break;case 58:b=1+es(N),x=$;default:if(A<1){if(123==S)--A;else if(125==S&&0==A++&&125==(ev=eh>0?el(eb,--eh):0,em--,10===ev&&(em=1,ep--),ev))continue}switch(N+=ea(S),S*A){case 38:C=v>0?1:(N+="\f",-1);break;case 44:c[h++]=(es(N)-1)*C,C=1;break;case 64:45===e$()&&(N+=ew(ex())),y=e$(),v=b=es(k=N+=function(e){for(;!eA(e$());)ex();return ec(eb,e,eh)}(eh)),S++;break;case 45:45===$&&2==es(N)&&(A=0)}}return i}("",null,null,null,[""],(n=t=e,ep=em=1,eg=es(eb=n),eh=0,t=[]),0,[0],t),eb="",r),ef).replace(/\{%%%\:[^;];}/g,";")}function eI(e,t,n){if(!t)return e;var r=".".concat(t),o="low"===n?":where(".concat(r,")"):r;return e.split(",").map(function(e){var t,n=e.trim().split(/\s+/),r=n[0]||"",a=(null==(t=r.match(/^\w+/))?void 0:t[0])||"";return[r="".concat(a).concat(o).concat(r.slice(a.length))].concat((0,i.A)(n.slice(1))).join(" ")}).join(",")}var ej=function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{root:!0,parentSelectors:[]},a=r.root,c=r.injectHash,s=r.parentSelectors,u=n.hashId,d=n.layer,f=(n.path,n.hashPriority),p=n.transformers,m=void 0===p?[]:p,g=(n.linters,""),h={};function v(t){var r=t.getName(u);if(!h[r]){var a=e(t.style,n,{root:!1,parentSelectors:s}),i=(0,o.A)(a,1)[0];h[r]="@keyframes ".concat(t.getName(u)).concat(i)}}return(function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return t.forEach(function(t){Array.isArray(t)?e(t,n):t&&n.push(t)}),n})(Array.isArray(t)?t:[t]).forEach(function(t){var r="string"!=typeof t||a?t:{};if("string"==typeof r)g+="".concat(r,"\n");else if(r._keyframe)v(r);else{var d=m.reduce(function(e,t){var n;return(null==t||null==(n=t.visit)?void 0:n.call(t,e))||e},r);Object.keys(d).forEach(function(t){var r=d[t];if("object"!==(0,S.A)(r)||!r||"animationName"===t&&r._keyframe||"object"===(0,S.A)(r)&&r&&("_skip_check_"in r||eM in r)){function p(e,t){var n=e.replace(/[A-Z]/g,function(e){return"-".concat(e.toLowerCase())}),r=t;ee[e]||"number"!=typeof r||0===r||(r="".concat(r,"px")),"animationName"===e&&null!=t&&t._keyframe&&(v(t),r=t.getName(u)),g+="".concat(n,":").concat(r,";")}var m,b=null!=(m=null==r?void 0:r.value)?m:r;"object"===(0,S.A)(r)&&null!=r&&r[eM]&&Array.isArray(b)?b.forEach(function(e){p(t,e)}):p(t,b)}else{var y=!1,x=t.trim(),$=!1;(a||c)&&u?x.startsWith("@")?y=!0:x="&"===x?eI("",u,f):eI(t,u,f):a&&!u&&("&"===x||""===x)&&(x="",$=!0);var A=e(r,n,{root:$,injectHash:y,parentSelectors:[].concat((0,i.A)(s),[x])}),w=(0,o.A)(A,2),C=w[0],k=w[1];h=(0,l.A)((0,l.A)({},h),k),g+="".concat(x).concat(C)}})}}),a?d&&(g&&(g="@layer ".concat(d.name," {").concat(g,"}")),d.dependencies&&(h["@layer ".concat(d.name)]=d.dependencies.map(function(e){return"@layer ".concat(e,", ").concat(d.name,";")}).join("\n"))):g="{".concat(g,"}"),[g,h]};function ez(e,t){return c("".concat(e.join("%")).concat(t))}function eR(){return null}var eP="style";function eT(e,t){var n=e.token,c=e.path,d=e.hashId,f=e.layer,p=e.nonce,m=e.clientOnly,g=e.order,h=void 0===g?0:g,v=u.useContext(w),b=v.autoClear,A=(v.mock,v.defaultCache),C=v.hashPriority,S=v.container,E=v.ssrInline,O=v.transformers,M=v.linters,N=v.cache,I=v.layer,j=n._tokenKey,z=[j];I&&z.push("layer"),z.push.apply(z,(0,i.A)(c));var R=X(eP,z,function(){var e=z.join("|");if(function(e){if(!r&&(r={},(0,k.A)())){var t,n=document.createElement("div");n.className=ek,n.style.position="fixed",n.style.visibility="hidden",n.style.top="-9999px",document.body.appendChild(n);var a=getComputedStyle(n).content||"";(a=a.replace(/^"/,"").replace(/"$/,"")).split(";").forEach(function(e){var t=e.split(":"),n=(0,o.A)(t,2),a=n[0],i=n[1];r[a]=i});var i=document.querySelector("style[".concat(ek,"]"));i&&(eO=!1,null==(t=i.parentNode)||t.removeChild(i)),document.body.removeChild(n)}return!!r[e]}(e)){var n=function(e){var t=r[e],n=null;if(t&&(0,k.A)())if(eO)n=eE;else{var o=document.querySelector("style[".concat(x,'="').concat(r[e],'"]'));o?n=o.innerHTML:delete r[e]}return[n,t]}(e),a=(0,o.A)(n,2),i=a[0],l=a[1];if(i)return[i,j,l,{},m,h]}var s=ej(t(),{hashId:d,hashPriority:C,layer:I?f:void 0,path:c.join("-"),transformers:O,linters:M}),u=(0,o.A)(s,2),p=u[0],g=u[1],v=eN(p),b=ez(z,v);return[v,j,b,g,m,h]},function(e,t){var n=(0,o.A)(e,3)[2];(t||b)&&L&&(0,s.m6)(n,{mark:x,attachTo:S})},function(e){var t=(0,o.A)(e,4),n=t[0],r=(t[1],t[2]),a=t[3];if(L&&n!==eE){var i={mark:x,prepend:!I&&"queue",attachTo:S,priority:h},c="function"==typeof p?p():p;c&&(i.csp={nonce:c});var u=[],d=[];Object.keys(a).forEach(function(e){e.startsWith("@layer")?u.push(e):d.push(e)}),u.forEach(function(e){(0,s.BD)(eN(a[e]),"_layer-".concat(e),(0,l.A)((0,l.A)({},i),{},{prepend:!0}))});var f=(0,s.BD)(n,r,i);f[$]=N.instanceId,f.setAttribute(y,j),d.forEach(function(e){(0,s.BD)(eN(a[e]),"_effect-".concat(e),i)})}}),P=(0,o.A)(R,3),T=P[0],D=P[1],B=P[2];return function(e){var t;return t=E&&!L&&A?u.createElement("style",(0,J.A)({},(0,a.A)((0,a.A)({},y,D),x,B),{dangerouslySetInnerHTML:{__html:T}})):u.createElement(eR,null),u.createElement(u.Fragment,null,t,e)}}var eD="cssVar";let eL=function(e,t){var n=e.key,r=e.prefix,a=e.unitless,l=e.ignore,c=e.token,d=e.scope,f=void 0===d?"":d,p=(0,u.useContext)(w),m=p.cache.instanceId,g=p.container,h=c._tokenKey,v=[].concat((0,i.A)(e.path),[n,f,h]);return X(eD,v,function(){var e=_(t(),n,{prefix:r,unitless:a,ignore:l,scope:f}),i=(0,o.A)(e,2),c=i[0],s=i[1],u=ez(v,s);return[c,s,u,n]},function(e){var t=(0,o.A)(e,3)[2];L&&(0,s.m6)(t,{mark:x,attachTo:g})},function(e){var t=(0,o.A)(e,3),r=t[1],a=t[2];if(r){var i=(0,s.BD)(r,a,{mark:x,prepend:"queue",attachTo:g,priority:-999});i[$]=m,i.setAttribute(y,n)}})};var eB=(0,a.A)((0,a.A)((0,a.A)({},eP,function(e,t,n){var r=(0,o.A)(e,6),a=r[0],i=r[1],l=r[2],c=r[3],s=r[4],u=r[5],d=(n||{}).plain;if(s)return null;var f=a,p={"data-rc-order":"prependQueue","data-rc-priority":"".concat(u)};return f=F(a,i,l,p,d),c&&Object.keys(c).forEach(function(e){if(!t[e]){t[e]=!0;var n=F(eN(c[e]),i,"_effect-".concat(e),p,d);e.startsWith("@layer")?f=n+f:f+=n}}),[u,l,f]}),Q,function(e,t,n){var r=(0,o.A)(e,5),a=r[2],i=r[3],l=r[4],c=(n||{}).plain;if(!i)return null;var s=a._tokenKey,u=F(i,l,s,{"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)},c);return[-999,s,u]}),eD,function(e,t,n){var r=(0,o.A)(e,4),a=r[1],i=r[2],l=r[3],c=(n||{}).plain;if(!a)return null;var s=F(a,l,i,{"data-rc-order":"prependQueue","data-rc-priority":"".concat(-999)},c);return[-999,i,s]});function eF(e){return null!==e}function eH(e,t){var n="boolean"==typeof t?{plain:t}:t||{},r=n.plain,i=void 0!==r&&r,l=n.types,c=void 0===l?["style","token","cssVar"]:l,s=n.once,u=void 0!==s&&s,d=new RegExp("^(".concat(("string"==typeof c?[c]:c).join("|"),")%")),f=Array.from(e.cache.keys()).filter(function(e){return d.test(e)}),p={},m={},g="";return f.map(function(t){if(u&&e.extracted.has(t))return null;var n=t.replace(d,"").replace(/%/g,"|"),r=t.split("%"),a=(0,eB[(0,o.A)(r,1)[0]])(e.cache.get(t)[1],p,{plain:i});if(!a)return null;var l=(0,o.A)(a,3),c=l[0],s=l[1],f=l[2];return t.startsWith("style")&&(m[n]=s),e.extracted.add(t),[c,f]}).filter(eF).sort(function(e,t){return(0,o.A)(e,1)[0]-(0,o.A)(t,1)[0]}).forEach(function(e){var t=(0,o.A)(e,2)[1];g+=t}),g+=F(".".concat(ek,'{content:"').concat(Object.keys(m).map(function(e){var t=m[e];return"".concat(e,":").concat(t)}).join(";"),'";}'),void 0,void 0,(0,a.A)({},ek,ek),i)}let e_=function(){function e(t,n){(0,m.A)(this,e),(0,a.A)(this,"name",void 0),(0,a.A)(this,"style",void 0),(0,a.A)(this,"_keyframe",!0),this.name=t,this.style=n}return(0,g.A)(e,[{key:"getName",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return e?"".concat(e,"-").concat(this.name):this.name}}]),e}();function eW(e){return e.notSplit=!0,e}eW(["borderTop","borderBottom"]),eW(["borderTop"]),eW(["borderBottom"]),eW(["borderLeft","borderRight"]),eW(["borderLeft"]),eW(["borderRight"])},78250(e,t,n){"use strict";n.d(t,{Y:()=>c});var r=n(64467);let o=Math.round;function a(e,t){let n=e.replace(/^[^(]*\((.*)/,"$1").replace(/\).*/,"").match(/\d*\.?\d+%?/g)||[],r=n.map(e=>parseFloat(e));for(let e=0;e<3;e+=1)r[e]=t(r[e]||0,n[e]||"",e);return n[3]?r[3]=n[3].includes("%")?r[3]/100:r[3]:r[3]=1,r}let i=(e,t,n)=>0===n?e:e/100;function l(e,t){let n=t||255;return e>n?n:e<0?0:e}class c{constructor(e){function t(t){return t[0]in e&&t[1]in e&&t[2]in e}if((0,r.A)(this,"isValid",!0),(0,r.A)(this,"r",0),(0,r.A)(this,"g",0),(0,r.A)(this,"b",0),(0,r.A)(this,"a",1),(0,r.A)(this,"_h",void 0),(0,r.A)(this,"_s",void 0),(0,r.A)(this,"_l",void 0),(0,r.A)(this,"_v",void 0),(0,r.A)(this,"_max",void 0),(0,r.A)(this,"_min",void 0),(0,r.A)(this,"_brightness",void 0),e)if("string"==typeof e){const t=e.trim();function n(e){return t.startsWith(e)}/^#?[A-F\d]{3,8}$/i.test(t)?this.fromHexString(t):n("rgb")?this.fromRgbString(t):n("hsl")?this.fromHslString(t):(n("hsv")||n("hsb"))&&this.fromHsvString(t)}else if(e instanceof c)this.r=e.r,this.g=e.g,this.b=e.b,this.a=e.a,this._h=e._h,this._s=e._s,this._l=e._l,this._v=e._v;else if(t("rgb"))this.r=l(e.r),this.g=l(e.g),this.b=l(e.b),this.a="number"==typeof e.a?l(e.a,1):1;else if(t("hsl"))this.fromHsl(e);else if(t("hsv"))this.fromHsv(e);else throw Error("@ant-design/fast-color: unsupported input "+JSON.stringify(e))}setR(e){return this._sc("r",e)}setG(e){return this._sc("g",e)}setB(e){return this._sc("b",e)}setA(e){return this._sc("a",e,1)}setHue(e){let t=this.toHsv();return t.h=e,this._c(t)}getLuminance(){function e(e){let t=e/255;return t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4)}return .2126*e(this.r)+.7152*e(this.g)+.0722*e(this.b)}getHue(){if(void 0===this._h){let e=this.getMax()-this.getMin();0===e?this._h=0:this._h=o(60*(this.r===this.getMax()?(this.g-this.b)/e+6*(this.g1&&(r=1),this._c({h:t,s:n,l:r,a:this.a})}mix(e,t=50){let n=this._c(e),r=t/100,a=e=>(n[e]-this[e])*r+this[e],i={r:o(a("r")),g:o(a("g")),b:o(a("b")),a:o(100*a("a"))/100};return this._c(i)}tint(e=10){return this.mix({r:255,g:255,b:255,a:1},e)}shade(e=10){return this.mix({r:0,g:0,b:0,a:1},e)}onBackground(e){let t=this._c(e),n=this.a+t.a*(1-this.a),r=e=>o((this[e]*this.a+t[e]*t.a*(1-this.a))/n);return this._c({r:r("r"),g:r("g"),b:r("b"),a:n})}isDark(){return 128>this.getBrightness()}isLight(){return this.getBrightness()>=128}equals(e){return this.r===e.r&&this.g===e.g&&this.b===e.b&&this.a===e.a}clone(){return this._c(this)}toHexString(){let e="#",t=(this.r||0).toString(16);e+=2===t.length?t:"0"+t;let n=(this.g||0).toString(16);e+=2===n.length?n:"0"+n;let r=(this.b||0).toString(16);if(e+=2===r.length?r:"0"+r,"number"==typeof this.a&&this.a>=0&&this.a<1){let t=o(255*this.a).toString(16);e+=2===t.length?t:"0"+t}return e}toHsl(){return{h:this.getHue(),s:this.getSaturation(),l:this.getLightness(),a:this.a}}toHslString(){let e=this.getHue(),t=o(100*this.getSaturation()),n=o(100*this.getLightness());return 1!==this.a?`hsla(${e},${t}%,${n}%,${this.a})`:`hsl(${e},${t}%,${n}%)`}toHsv(){return{h:this.getHue(),s:this.getSaturation(),v:this.getValue(),a:this.a}}toRgb(){return{r:this.r,g:this.g,b:this.b,a:this.a}}toRgbString(){return 1!==this.a?`rgba(${this.r},${this.g},${this.b},${this.a})`:`rgb(${this.r},${this.g},${this.b})`}toString(){return this.toRgbString()}_sc(e,t,n){let r=this.clone();return r[e]=l(t,n),r}_c(e){return new this.constructor(e)}getMax(){return void 0===this._max&&(this._max=Math.max(this.r,this.g,this.b)),this._max}getMin(){return void 0===this._min&&(this._min=Math.min(this.r,this.g,this.b)),this._min}fromHexString(e){let t=e.replace("#","");function n(e,n){return parseInt(t[e]+t[n||e],16)}t.length<6?(this.r=n(0),this.g=n(1),this.b=n(2),this.a=t[3]?n(3)/255:1):(this.r=n(0,1),this.g=n(2,3),this.b=n(4,5),this.a=t[6]?n(6,7)/255:1)}fromHsl({h:e,s:t,l:n,a:r}){if(this._h=e%360,this._s=t,this._l=n,this.a="number"==typeof r?r:1,t<=0){let e=o(255*n);this.r=e,this.g=e,this.b=e}let a=0,i=0,l=0,c=e/60,s=(1-Math.abs(2*n-1))*t,u=s*(1-Math.abs(c%2-1));c>=0&&c<1?(a=s,i=u):c>=1&&c<2?(a=u,i=s):c>=2&&c<3?(i=s,l=u):c>=3&&c<4?(i=u,l=s):c>=4&&c<5?(a=u,l=s):c>=5&&c<6&&(a=s,l=u);let d=n-s/2;this.r=o((a+d)*255),this.g=o((i+d)*255),this.b=o((l+d)*255)}fromHsv({h:e,s:t,v:n,a:r}){this._h=e%360,this._s=t,this._v=n,this.a="number"==typeof r?r:1;let a=o(255*n);if(this.r=a,this.g=a,this.b=a,t<=0)return;let i=e/60,l=Math.floor(i),c=i-l,s=o(n*(1-t)*255),u=o(n*(1-t*c)*255),d=o(n*(1-t*(1-c))*255);switch(l){case 0:this.g=d,this.b=s;break;case 1:this.r=u,this.b=s;break;case 2:this.r=s,this.b=d;break;case 3:this.r=s,this.g=u;break;case 4:this.r=d,this.g=s;break;default:this.g=s,this.b=u}}fromHsvString(e){let t=a(e,i);this.fromHsv({h:t[0],s:t[1],v:t[2],a:t[3]})}fromHslString(e){let t=a(e,i);this.fromHsl({h:t[0],s:t[1],l:t[2],a:t[3]})}fromRgbString(e){let t=a(e,(e,t)=>t.includes("%")?o(e/100*255):e);this.r=t[0],this.g=t[1],this.b=t[2],this.a=t[3]}}},67928(e,t,n){"use strict";n.d(t,{A:()=>M});var r=n(58168),o=n(57046),a=n(64467),i=n(80045),l=n(47867),c=n.n(l),s=n(8651),u=n.n(s),d=n(16124),f=n(61053),p=n(89379),m=n(82284),g=n(85089),h=n(72633),v=n(68210);function b(e){return"object"===(0,m.A)(e)&&"string"==typeof e.name&&"string"==typeof e.theme&&("object"===(0,m.A)(e.icon)||"function"==typeof e.icon)}function y(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return Object.keys(e).reduce(function(t,n){var r=e[n];return"class"===n?(t.className=r,delete t.class):(delete t[n],t[n.replace(/-(.)/g,function(e,t){return t.toUpperCase()})]=r),t},{})}function x(e){return(0,d.generate)(e)[0]}function $(e){return e?Array.isArray(e)?e:[e]:[]}var A=function(e){var t=(0,l.useContext)(f.A),n=t.csp,r=t.prefixCls,o=t.layer,a="\n.anticon {\n display: inline-flex;\n align-items: center;\n color: inherit;\n font-style: normal;\n line-height: 0;\n text-align: center;\n text-transform: none;\n vertical-align: -0.125em;\n text-rendering: optimizeLegibility;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n.anticon > * {\n line-height: 1;\n}\n\n.anticon svg {\n display: inline-block;\n}\n\n.anticon::before {\n display: none;\n}\n\n.anticon .anticon-icon {\n display: block;\n}\n\n.anticon[tabindex] {\n cursor: pointer;\n}\n\n.anticon-spin::before,\n.anticon-spin {\n display: inline-block;\n -webkit-animation: loadingCircle 1s infinite linear;\n animation: loadingCircle 1s infinite linear;\n}\n\n@-webkit-keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n\n@keyframes loadingCircle {\n 100% {\n -webkit-transform: rotate(360deg);\n transform: rotate(360deg);\n }\n}\n";r&&(a=a.replace(/anticon/g,r)),o&&(a="@layer ".concat(o," {\n").concat(a,"\n}")),(0,l.useEffect)(function(){var t=e.current,r=(0,h.j)(t);(0,g.BD)(a,"@ant-design-icons",{prepend:!o,csp:n,attachTo:r})},[])},w=["icon","className","onClick","style","primaryColor","secondaryColor"],C={primaryColor:"#333",secondaryColor:"#E6E6E6",calculated:!1},S=function(e){var t,n,r=e.icon,o=e.className,a=e.onClick,s=e.style,u=e.primaryColor,d=e.secondaryColor,f=(0,i.A)(e,w),m=l.useRef(),g=C;if(u&&(g={primaryColor:u,secondaryColor:d||x(u)}),A(m),t=b(r),n="icon should be icon definiton, but got ".concat(r),(0,v.Ay)(t,"[@ant-design/icons] ".concat(n)),!b(r))return null;var h=r;return h&&"function"==typeof h.icon&&(h=(0,p.A)((0,p.A)({},h),{},{icon:h.icon(g.primaryColor,g.secondaryColor)})),function e(t,n,r){return r?c().createElement(t.tag,(0,p.A)((0,p.A)({key:n},y(t.attrs)),r),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))})):c().createElement(t.tag,(0,p.A)({key:n},y(t.attrs)),(t.children||[]).map(function(r,o){return e(r,"".concat(n,"-").concat(t.tag,"-").concat(o))}))}(h.icon,"svg-".concat(h.name),(0,p.A)((0,p.A)({className:o,onClick:a,style:s,"data-icon":h.name,width:"1em",height:"1em",fill:"currentColor","aria-hidden":"true"},f),{},{ref:m}))};function k(e){var t=$(e),n=(0,o.A)(t,2),r=n[0],a=n[1];return S.setTwoToneColors({primaryColor:r,secondaryColor:a})}S.displayName="IconReact",S.getTwoToneColors=function(){return(0,p.A)({},C)},S.setTwoToneColors=function(e){var t=e.primaryColor,n=e.secondaryColor;C.primaryColor=t,C.secondaryColor=n||x(t),C.calculated=!!n};var E=["className","icon","spin","rotate","tabIndex","onClick","twoToneColor"];k(d.blue.primary);var O=l.forwardRef(function(e,t){var n=e.className,c=e.icon,s=e.spin,d=e.rotate,p=e.tabIndex,m=e.onClick,g=e.twoToneColor,h=(0,i.A)(e,E),v=l.useContext(f.A),b=v.prefixCls,y=void 0===b?"anticon":b,x=v.rootClassName,A=u()(x,y,(0,a.A)((0,a.A)({},"".concat(y,"-").concat(c.name),!!c.name),"".concat(y,"-spin"),!!s||"loading"===c.name),n),w=p;void 0===w&&m&&(w=-1);var C=$(g),k=(0,o.A)(C,2),O=k[0],M=k[1];return l.createElement("span",(0,r.A)({role:"img","aria-label":c.name},h,{ref:t,tabIndex:w,onClick:m,className:A}),l.createElement(S,{icon:c,primaryColor:O,secondaryColor:M,style:d?{msTransform:"rotate(".concat(d,"deg)"),transform:"rotate(".concat(d,"deg)")}:void 0}))});O.displayName="AntdIcon",O.getTwoToneColor=function(){var e=S.getTwoToneColors();return e.calculated?[e.primaryColor,e.secondaryColor]:e.primaryColor},O.setTwoToneColor=k;let M=O},61053(e,t,n){"use strict";n.d(t,{A:()=>r});let r=(0,n(47867).createContext)({})},46420(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm193.5 301.7l-210.6 292a31.8 31.8 0 01-51.7 0L318.5 484.9c-3.8-5.3 0-12.7 6.5-12.7h46.9c10.2 0 19.9 4.9 25.9 13.3l71.2 98.8 157.2-218c6-8.3 15.6-13.3 25.9-13.3H699c6.5 0 10.3 7.4 6.5 12.7z"}}]},name:"check-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},51237(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M912 190h-69.9c-9.8 0-19.1 4.5-25.1 12.2L404.7 724.5 207 474a32 32 0 00-25.1-12.2H112c-6.7 0-10.4 7.7-6.3 12.9l273.9 347c12.8 16.2 37.4 16.2 50.3 0l488.4-618.9c4.1-5.1.4-12.8-6.3-12.8z"}}]},name:"check",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},39159(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm127.98 274.82h-.04l-.08.06L512 466.75 384.14 338.88c-.04-.05-.06-.06-.08-.06a.12.12 0 00-.07 0c-.03 0-.05.01-.09.05l-45.02 45.02a.2.2 0 00-.05.09.12.12 0 000 .07v.02a.27.27 0 00.06.06L466.75 512 338.88 639.86c-.05.04-.06.06-.06.08a.12.12 0 000 .07c0 .03.01.05.05.09l45.02 45.02a.2.2 0 00.09.05.12.12 0 00.07 0c.02 0 .04-.01.08-.05L512 557.25l127.86 127.87c.04.04.06.05.08.05a.12.12 0 00.07 0c.03 0 .05-.01.09-.05l45.02-45.02a.2.2 0 00.05-.09.12.12 0 000-.07v-.02a.27.27 0 00-.05-.06L557.25 512l127.87-127.86c.04-.04.05-.06.05-.08a.12.12 0 000-.07c0-.03-.01-.05-.05-.09l-45.02-45.02a.2.2 0 00-.09-.05.12.12 0 00-.07 0z"}}]},name:"close-circle",theme:"filled"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},5100(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{"fill-rule":"evenodd",viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z"}}]},name:"close",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},46029(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M360 184h-8c4.4 0 8-3.6 8-8v8h304v-8c0 4.4 3.6 8 8 8h-8v72h72v-80c0-35.3-28.7-64-64-64H352c-35.3 0-64 28.7-64 64v80h72v-72zm504 72H160c-17.7 0-32 14.3-32 32v32c0 4.4 3.6 8 8 8h60.4l24.7 523c1.6 34.1 29.8 61 63.9 61h454c34.2 0 62.3-26.8 63.9-61l24.7-523H888c4.4 0 8-3.6 8-8v-32c0-17.7-14.3-32-32-32zM731.3 840H292.7l-24.2-512h487l-24.2 512z"}}]},name:"delete",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},7532(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M942.2 486.2C847.4 286.5 704.1 186 512 186c-192.2 0-335.4 100.5-430.2 300.3a60.3 60.3 0 000 51.5C176.6 737.5 319.9 838 512 838c192.2 0 335.4-100.5 430.2-300.3 7.7-16.2 7.7-35 0-51.5zM512 766c-161.3 0-279.4-81.8-362.7-254C232.6 339.8 350.7 258 512 258c161.3 0 279.4 81.8 362.7 254C791.5 684.2 673.4 766 512 766zm-4-430c-97.2 0-176 78.8-176 176s78.8 176 176 176 176-78.8 176-176-78.8-176-176-176zm0 288c-61.9 0-112-50.1-112-112s50.1-112 112-112 112 50.1 112 112-50.1 112-112 112z"}}]},name:"eye",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},66514(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M988 548c-19.9 0-36-16.1-36-36 0-59.4-11.6-117-34.6-171.3a440.45 440.45 0 00-94.3-139.9 437.71 437.71 0 00-139.9-94.3C629 83.6 571.4 72 512 72c-19.9 0-36-16.1-36-36s16.1-36 36-36c69.1 0 136.2 13.5 199.3 40.3C772.3 66 827 103 874 150c47 47 83.9 101.8 109.7 162.7 26.7 63.1 40.2 130.2 40.2 199.3.1 19.9-16 36-35.9 36z"}}]},name:"loading",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},61646(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M623.6 316.7C593.6 290.4 554 276 512 276s-81.6 14.5-111.6 40.7C369.2 344 352 380.7 352 420v7.6c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V420c0-44.1 43.1-80 96-80s96 35.9 96 80c0 31.1-22 59.6-56.1 72.7-21.2 8.1-39.2 22.3-52.1 40.9-13.1 19-19.9 41.8-19.9 64.9V620c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8v-22.7a48.3 48.3 0 0130.9-44.8c59-22.7 97.1-74.7 97.1-132.5.1-39.3-17.1-76-48.3-103.3zM472 732a40 40 0 1080 0 40 40 0 10-80 0z"}}]},name:"question-circle",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},88996(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z"}}]},name:"right",theme:"outlined"};var i=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(i.A,(0,r.A)({},e,{ref:t,icon:a}))})},29128(e,t,n){"use strict";function r(e,t){"string"==typeof(n=e)&&-1!==n.indexOf(".")&&1===parseFloat(n)&&(e="100%");var n,r,o="string"==typeof(r=e)&&-1!==r.indexOf("%");return(e=360===t?e:Math.min(t,Math.max(0,parseFloat(e))),o&&(e=parseInt(String(e*t),10)/100),1e-6>Math.abs(e-t))?1:e=360===t?(e<0?e%t+t:e%t)/parseFloat(String(t)):e%t/parseFloat(String(t))}function o(e){return Math.min(1,Math.max(0,e))}function a(e){return(isNaN(e=parseFloat(e))||e<0||e>1)&&(e=1),e}function i(e){return e<=1?"".concat(100*Number(e),"%"):e}function l(e){return 1===e.length?"0"+e:String(e)}function c(e,t,n){e=r(e,255);var o=Math.max(e,t=r(t,255),n=r(n,255)),a=Math.min(e,t,n),i=0,l=0,c=(o+a)/2;if(o===a)l=0,i=0;else{var s=o-a;switch(l=c>.5?s/(2-o-a):s/(o+a),o){case e:i=(t-n)/s+6*(t1&&(n-=1),n<1/6)?e+6*n*(t-e):n<.5?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function u(e,t,n){e=r(e,255);var o=Math.max(e,t=r(t,255),n=r(n,255)),a=Math.min(e,t,n),i=0,l=o-a;if(o===a)i=0;else{switch(o){case e:i=(t-n)/l+6*(ty});function f(e){return parseInt(e,16)}var p={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",goldenrod:"#daa520",gold:"#ffd700",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavenderblush:"#fff0f5",lavender:"#e6e6fa",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",rebeccapurple:"#663399",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"},m="(?:".concat("[-\\+]?\\d*\\.\\d+%?",")|(?:").concat("[-\\+]?\\d+%?",")"),g="[\\s|\\(]+(".concat(m,")[,|\\s]+(").concat(m,")[,|\\s]+(").concat(m,")\\s*\\)?"),h="[\\s|\\(]+(".concat(m,")[,|\\s]+(").concat(m,")[,|\\s]+(").concat(m,")[,|\\s]+(").concat(m,")\\s*\\)?"),v={CSS_UNIT:new RegExp(m),rgb:RegExp("rgb"+g),rgba:RegExp("rgba"+h),hsl:RegExp("hsl"+g),hsla:RegExp("hsla"+h),hsv:RegExp("hsv"+g),hsva:RegExp("hsva"+h),hex3:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,hex4:/^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex8:/^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/};function b(e){return!!v.CSS_UNIT.exec(String(e))}var y=function(){function e(t,n){if(void 0===t&&(t=""),void 0===n&&(n={}),t instanceof e)return t;"number"==typeof t&&(t={r:(I=t)>>16,g:(65280&I)>>8,b:255&I}),this.originalInput=t;var o,l,c,u,d,m,g,h,y,x,$,A,w,C,S,k,E,O,M,N,I,j,z=(C={r:0,g:0,b:0},S=1,k=null,E=null,O=null,M=!1,N=!1,"string"==typeof(o=t)&&(o=function(e){if(0===(e=e.trim().toLowerCase()).length)return!1;var t=!1;if(p[e])e=p[e],t=!0;else if("transparent"===e)return{r:0,g:0,b:0,a:0,format:"name"};var n=v.rgb.exec(e);return n?{r:n[1],g:n[2],b:n[3]}:(n=v.rgba.exec(e))?{r:n[1],g:n[2],b:n[3],a:n[4]}:(n=v.hsl.exec(e))?{h:n[1],s:n[2],l:n[3]}:(n=v.hsla.exec(e))?{h:n[1],s:n[2],l:n[3],a:n[4]}:(n=v.hsv.exec(e))?{h:n[1],s:n[2],v:n[3]}:(n=v.hsva.exec(e))?{h:n[1],s:n[2],v:n[3],a:n[4]}:(n=v.hex8.exec(e))?{r:f(n[1]),g:f(n[2]),b:f(n[3]),a:f(n[4])/255,format:t?"name":"hex8"}:(n=v.hex6.exec(e))?{r:f(n[1]),g:f(n[2]),b:f(n[3]),format:t?"name":"hex"}:(n=v.hex4.exec(e))?{r:f(n[1]+n[1]),g:f(n[2]+n[2]),b:f(n[3]+n[3]),a:f(n[4]+n[4])/255,format:t?"name":"hex8"}:!!(n=v.hex3.exec(e))&&{r:f(n[1]+n[1]),g:f(n[2]+n[2]),b:f(n[3]+n[3]),format:t?"name":"hex"}}(o)),"object"==typeof o&&(b(o.r)&&b(o.g)&&b(o.b)?(l=o.r,c=o.g,u=o.b,C={r:255*r(l,255),g:255*r(c,255),b:255*r(u,255)},M=!0,N="%"===String(o.r).substr(-1)?"prgb":"rgb"):b(o.h)&&b(o.s)&&b(o.v)?(k=i(o.s),E=i(o.v),d=o.h,m=k,g=E,d=6*r(d,360),m=r(m,100),g=r(g,100),h=Math.floor(d),y=d-h,x=g*(1-m),$=g*(1-y*m),A=g*(1-(1-y)*m),C={r:255*[g,$,x,x,A,g][w=h%6],g:255*[A,g,g,$,x,x][w],b:255*[x,x,A,g,g,$][w]},M=!0,N="hsv"):b(o.h)&&b(o.s)&&b(o.l)&&(k=i(o.s),O=i(o.l),C=function(e,t,n){if(e=r(e,360),t=r(t,100),n=r(n,100),0===t)a=n,i=n,o=n;else{var o,a,i,l=n<.5?n*(1+t):n+t-n*t,c=2*n-l;o=s(c,l,e+1/3),a=s(c,l,e),i=s(c,l,e-1/3)}return{r:255*o,g:255*a,b:255*i}}(o.h,k,O),M=!0,N="hsl"),Object.prototype.hasOwnProperty.call(o,"a")&&(S=o.a)),S=a(S),{ok:M,format:o.format||N,r:Math.min(255,Math.max(C.r,0)),g:Math.min(255,Math.max(C.g,0)),b:Math.min(255,Math.max(C.b,0)),a:S});this.originalInput=t,this.r=z.r,this.g=z.g,this.b=z.b,this.a=z.a,this.roundA=Math.round(100*this.a)/100,this.format=null!=(j=n.format)?j:z.format,this.gradientType=n.gradientType,this.r<1&&(this.r=Math.round(this.r)),this.g<1&&(this.g=Math.round(this.g)),this.b<1&&(this.b=Math.round(this.b)),this.isValid=z.ok}return e.prototype.isDark=function(){return 128>this.getBrightness()},e.prototype.isLight=function(){return!this.isDark()},e.prototype.getBrightness=function(){var e=this.toRgb();return(299*e.r+587*e.g+114*e.b)/1e3},e.prototype.getLuminance=function(){var e=this.toRgb(),t=e.r/255,n=e.g/255,r=e.b/255;return .2126*(t<=.03928?t/12.92:Math.pow((t+.055)/1.055,2.4))+.7152*(n<=.03928?n/12.92:Math.pow((n+.055)/1.055,2.4))+.0722*(r<=.03928?r/12.92:Math.pow((r+.055)/1.055,2.4))},e.prototype.getAlpha=function(){return this.a},e.prototype.setAlpha=function(e){return this.a=a(e),this.roundA=Math.round(100*this.a)/100,this},e.prototype.isMonochrome=function(){return 0===this.toHsl().s},e.prototype.toHsv=function(){var e=u(this.r,this.g,this.b);return{h:360*e.h,s:e.s,v:e.v,a:this.a}},e.prototype.toHsvString=function(){var e=u(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.v);return 1===this.a?"hsv(".concat(t,", ").concat(n,"%, ").concat(r,"%)"):"hsva(".concat(t,", ").concat(n,"%, ").concat(r,"%, ").concat(this.roundA,")")},e.prototype.toHsl=function(){var e=c(this.r,this.g,this.b);return{h:360*e.h,s:e.s,l:e.l,a:this.a}},e.prototype.toHslString=function(){var e=c(this.r,this.g,this.b),t=Math.round(360*e.h),n=Math.round(100*e.s),r=Math.round(100*e.l);return 1===this.a?"hsl(".concat(t,", ").concat(n,"%, ").concat(r,"%)"):"hsla(".concat(t,", ").concat(n,"%, ").concat(r,"%, ").concat(this.roundA,")")},e.prototype.toHex=function(e){return void 0===e&&(e=!1),d(this.r,this.g,this.b,e)},e.prototype.toHexString=function(e){return void 0===e&&(e=!1),"#"+this.toHex(e)},e.prototype.toHex8=function(e){var t,n,r,o,a,i;return void 0===e&&(e=!1),t=this.r,n=this.g,r=this.b,o=this.a,a=e,i=[l(Math.round(t).toString(16)),l(Math.round(n).toString(16)),l(Math.round(r).toString(16)),l(Math.round(255*parseFloat(o)).toString(16))],a&&i[0].startsWith(i[0].charAt(1))&&i[1].startsWith(i[1].charAt(1))&&i[2].startsWith(i[2].charAt(1))&&i[3].startsWith(i[3].charAt(1))?i[0].charAt(0)+i[1].charAt(0)+i[2].charAt(0)+i[3].charAt(0):i.join("")},e.prototype.toHex8String=function(e){return void 0===e&&(e=!1),"#"+this.toHex8(e)},e.prototype.toHexShortString=function(e){return void 0===e&&(e=!1),1===this.a?this.toHexString(e):this.toHex8String(e)},e.prototype.toRgb=function(){return{r:Math.round(this.r),g:Math.round(this.g),b:Math.round(this.b),a:this.a}},e.prototype.toRgbString=function(){var e=Math.round(this.r),t=Math.round(this.g),n=Math.round(this.b);return 1===this.a?"rgb(".concat(e,", ").concat(t,", ").concat(n,")"):"rgba(".concat(e,", ").concat(t,", ").concat(n,", ").concat(this.roundA,")")},e.prototype.toPercentageRgb=function(){var e=function(e){return"".concat(Math.round(100*r(e,255)),"%")};return{r:e(this.r),g:e(this.g),b:e(this.b),a:this.a}},e.prototype.toPercentageRgbString=function(){var e=function(e){return Math.round(100*r(e,255))};return 1===this.a?"rgb(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%)"):"rgba(".concat(e(this.r),"%, ").concat(e(this.g),"%, ").concat(e(this.b),"%, ").concat(this.roundA,")")},e.prototype.toName=function(){if(0===this.a)return"transparent";if(this.a<1)return!1;for(var e="#"+d(this.r,this.g,this.b,!1),t=0,n=Object.entries(p);t=0;return!t&&r&&(e.startsWith("hex")||"name"===e)?"name"===e&&0===this.a?this.toName():this.toRgbString():("rgb"===e&&(n=this.toRgbString()),"prgb"===e&&(n=this.toPercentageRgbString()),("hex"===e||"hex6"===e)&&(n=this.toHexString()),"hex3"===e&&(n=this.toHexString(!0)),"hex4"===e&&(n=this.toHex8String(!0)),"hex8"===e&&(n=this.toHex8String()),"name"===e&&(n=this.toName()),"hsl"===e&&(n=this.toHslString()),"hsv"===e&&(n=this.toHsvString()),n||this.toHexString())},e.prototype.toNumber=function(){return(Math.round(this.r)<<16)+(Math.round(this.g)<<8)+Math.round(this.b)},e.prototype.clone=function(){return new e(this.toString())},e.prototype.lighten=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l+=t/100,n.l=o(n.l),new e(n)},e.prototype.brighten=function(t){void 0===t&&(t=10);var n=this.toRgb();return n.r=Math.max(0,Math.min(255,n.r-Math.round(-(t/100*255)))),n.g=Math.max(0,Math.min(255,n.g-Math.round(-(t/100*255)))),n.b=Math.max(0,Math.min(255,n.b-Math.round(-(t/100*255)))),new e(n)},e.prototype.darken=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.l-=t/100,n.l=o(n.l),new e(n)},e.prototype.tint=function(e){return void 0===e&&(e=10),this.mix("white",e)},e.prototype.shade=function(e){return void 0===e&&(e=10),this.mix("black",e)},e.prototype.desaturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s-=t/100,n.s=o(n.s),new e(n)},e.prototype.saturate=function(t){void 0===t&&(t=10);var n=this.toHsl();return n.s+=t/100,n.s=o(n.s),new e(n)},e.prototype.greyscale=function(){return this.desaturate(100)},e.prototype.spin=function(t){var n=this.toHsl(),r=(n.h+t)%360;return n.h=r<0?360+r:r,new e(n)},e.prototype.mix=function(t,n){void 0===n&&(n=50);var r=this.toRgb(),o=new e(t).toRgb(),a=n/100;return new e({r:(o.r-r.r)*a+r.r,g:(o.g-r.g)*a+r.g,b:(o.b-r.b)*a+r.b,a:(o.a-r.a)*a+r.a})},e.prototype.analogous=function(t,n){void 0===t&&(t=6),void 0===n&&(n=30);var r=this.toHsl(),o=360/n,a=[this];for(r.h=(r.h-(o*t>>1)+720)%360;--t;)r.h=(r.h+o)%360,a.push(new e(r));return a},e.prototype.complement=function(){var t=this.toHsl();return t.h=(t.h+180)%360,new e(t)},e.prototype.monochromatic=function(t){void 0===t&&(t=6);for(var n=this.toHsv(),r=n.h,o=n.s,a=n.v,i=[],l=1/t;t--;)i.push(new e({h:r,s:o,v:a})),a=(a+l)%1;return i},e.prototype.splitcomplement=function(){var t=this.toHsl(),n=t.h;return[this,new e({h:(n+72)%360,s:t.s,l:t.l}),new e({h:(n+216)%360,s:t.s,l:t.l})]},e.prototype.onBackground=function(t){var n=this.toRgb(),r=new e(t).toRgb(),o=n.a+r.a*(1-n.a);return new e({r:(n.r*n.a+r.r*r.a*(1-n.a))/o,g:(n.g*n.a+r.g*r.a*(1-n.a))/o,b:(n.b*n.a+r.b*r.a*(1-n.a))/o,a:o})},e.prototype.triad=function(){return this.polyad(3)},e.prototype.tetrad=function(){return this.polyad(4)},e.prototype.polyad=function(t){for(var n=this.toHsl(),r=n.h,o=[this],a=360/t,i=1;iW});var r,o=n(89379),a=n(83098),i=n(82284),l=n(23029),c=n(92901),s=n(64467);function u(){return{default:"Validation error on field %s",required:"%s is required",enum:"%s must be one of %s",whitespace:"%s cannot be empty",date:{format:"%s date %s is invalid for format %s",parse:"%s date could not be parsed, %s is invalid ",invalid:"%s date %s is invalid"},types:{string:"%s is not a %s",method:"%s is not a %s (function)",array:"%s is not an %s",object:"%s is not an %s",number:"%s is not a %s",date:"%s is not a %s",boolean:"%s is not a %s",integer:"%s is not an %s",float:"%s is not a %s",regexp:"%s is not a valid %s",email:"%s is not a valid %s",tel:"%s is not a valid %s",url:"%s is not a valid %s",hex:"%s is not a valid %s"},string:{len:"%s must be exactly %s characters",min:"%s must be at least %s characters",max:"%s cannot be longer than %s characters",range:"%s must be between %s and %s characters"},number:{len:"%s must equal %s",min:"%s cannot be less than %s",max:"%s cannot be greater than %s",range:"%s must be between %s and %s"},array:{len:"%s must be exactly %s in length",min:"%s cannot be less than %s in length",max:"%s cannot be greater than %s in length",range:"%s must be between %s and %s in length"},pattern:{mismatch:"%s value %s does not match pattern %s"},clone:function(){var e=JSON.parse(JSON.stringify(this));return e.clone=this.clone,e}}}var d=u(),f=n(9417),p=n(85501),m=n(29426),g=n(53954),h=n(63662),v=n(52176);function b(e){var t="function"==typeof Map?new Map:void 0;return(b=function(e){if(null===e||!function(e){try{return -1!==Function.toString.call(e).indexOf("[native code]")}catch(t){return"function"==typeof e}}(e))return e;if("function"!=typeof e)throw TypeError("Super expression must either be null or a function");if(void 0!==t){if(t.has(e))return t.get(e);t.set(e,n)}function n(){return function(e,t,n){if((0,v.A)())return Reflect.construct.apply(null,arguments);var r=[null];r.push.apply(r,t);var o=new(e.bind.apply(e,r));return n&&(0,h.A)(o,n.prototype),o}(e,arguments,(0,g.A)(this).constructor)}return n.prototype=Object.create(e.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}}),(0,h.A)(n,e)})(e)}var y=/%[sdj%]/g;function x(e){if(!e||!e.length)return null;var t={};return e.forEach(function(e){var n=e.field;t[n]=t[n]||[],t[n].push(e)}),t}function $(e){for(var t=arguments.length,n=Array(t>1?t-1:0),r=1;r=a)return e;switch(e){case"%s":return String(n[o++]);case"%d":return Number(n[o++]);case"%j":try{return JSON.stringify(n[o++])}catch(e){return"[Circular]"}default:return e}}):e}function A(e,t){return!!(null==e||"array"===t&&Array.isArray(e)&&!e.length)||("string"===t||"url"===t||"hex"===t||"email"===t||"date"===t||"pattern"===t||"tel"===t)&&"string"==typeof e&&!e||!1}function w(e,t,n){var r=0,o=e.length;!function a(i){if(i&&i.length)return void n(i);var l=r;r+=1,ltypeof process&&process.env;var C=function(e){(0,p.A)(n,e);var t=(0,m.A)(n);function n(e,r){var o;return(0,l.A)(this,n),o=t.call(this,"Async Validation Error"),(0,s.A)((0,f.A)(o),"errors",void 0),(0,s.A)((0,f.A)(o),"fields",void 0),o.errors=e,o.fields=r,o}return(0,c.A)(n)}(b(Error));function S(e,t){return function(n){var r;return(r=e.fullFields?function(e,t){for(var n=e,r=0;r()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+\.)+[a-zA-Z\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]{2,}))$/,I=/^(\+[0-9]{1,3}[-\s\u2011]?)?(\([0-9]{1,4}\)[-\s\u2011]?)?([0-9]+[-\s\u2011]?)*[0-9]+$/,j=/^#?([a-f0-9]{6}|[a-f0-9]{3})$/i,z={integer:function(e){return z.number(e)&&parseInt(e,10)===e},float:function(e){return z.number(e)&&!z.integer(e)},array:function(e){return Array.isArray(e)},regexp:function(e){if(e instanceof RegExp)return!0;try{return new RegExp(e),!0}catch(e){return!1}},date:function(e){return"function"==typeof e.getTime&&"function"==typeof e.getMonth&&"function"==typeof e.getYear&&!isNaN(e.getTime())},number:function(e){return!isNaN(e)&&"number"==typeof e},object:function(e){return"object"===(0,i.A)(e)&&!z.array(e)},method:function(e){return"function"==typeof e},email:function(e){return"string"==typeof e&&e.length<=320&&!!e.match(N)},tel:function(e){return"string"==typeof e&&e.length<=32&&!!e.match(I)},url:function(e){return"string"==typeof e&&e.length<=2048&&!!e.match(M())},hex:function(e){return"string"==typeof e&&!!e.match(j)}};let R=O,P=function(e,t,n,r,o){(/^\s+$/.test(t)||""===t)&&r.push($(o.messages.whitespace,e.fullField))},T=function(e,t,n,r,o){if(e.required&&void 0===t)return void O(e,t,n,r,o);var a=e.type;["integer","float","array","regexp","object","method","email","tel","number","date","url","hex"].indexOf(a)>-1?z[a](t)||r.push($(o.messages.types[a],e.fullField,e.type)):a&&(0,i.A)(t)!==e.type&&r.push($(o.messages.types[a],e.fullField,e.type))},D=function(e,t,n,r,o){var a="number"==typeof e.len,i="number"==typeof e.min,l="number"==typeof e.max,c=t,s=null,u="number"==typeof t,d="string"==typeof t,f=Array.isArray(t);if(u?s="number":d?s="string":f&&(s="array"),!s)return!1;f&&(c=t.length),d&&(c=t.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g,"_").length),a?c!==e.len&&r.push($(o.messages[s].len,e.fullField,e.len)):i&&!l&&ce.max?r.push($(o.messages[s].max,e.fullField,e.max)):i&&l&&(ce.max)&&r.push($(o.messages[s].range,e.fullField,e.min,e.max))},L=function(e,t,n,r,o){e[E]=Array.isArray(e[E])?e[E]:[],-1===e[E].indexOf(t)&&r.push($(o.messages[E],e.fullField,e[E].join(", ")))},B=function(e,t,n,r,o){e.pattern&&(e.pattern instanceof RegExp?(e.pattern.lastIndex=0,e.pattern.test(t)||r.push($(o.messages.pattern.mismatch,e.fullField,t,e.pattern))):"string"==typeof e.pattern&&(new RegExp(e.pattern).test(t)||r.push($(o.messages.pattern.mismatch,e.fullField,t,e.pattern))))},F=function(e,t,n,r,o){var a=e.type,i=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t,a)&&!e.required)return n();R(e,t,r,i,o,a),A(t,a)||T(e,t,r,i,o)}n(i)},H={string:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t,"string")&&!e.required)return n();R(e,t,r,a,o,"string"),A(t,"string")||(T(e,t,r,a,o),D(e,t,r,a,o),B(e,t,r,a,o),!0===e.whitespace&&P(e,t,r,a,o))}n(a)},method:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o),void 0!==t&&T(e,t,r,a,o)}n(a)},number:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(""===t&&(t=void 0),A(t)&&!e.required)return n();R(e,t,r,a,o),void 0!==t&&(T(e,t,r,a,o),D(e,t,r,a,o))}n(a)},boolean:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o),void 0!==t&&T(e,t,r,a,o)}n(a)},regexp:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o),A(t)||T(e,t,r,a,o)}n(a)},integer:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o),void 0!==t&&(T(e,t,r,a,o),D(e,t,r,a,o))}n(a)},float:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o),void 0!==t&&(T(e,t,r,a,o),D(e,t,r,a,o))}n(a)},array:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(null==t&&!e.required)return n();R(e,t,r,a,o,"array"),null!=t&&(T(e,t,r,a,o),D(e,t,r,a,o))}n(a)},object:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o),void 0!==t&&T(e,t,r,a,o)}n(a)},enum:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o),void 0!==t&&L(e,t,r,a,o)}n(a)},pattern:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t,"string")&&!e.required)return n();R(e,t,r,a,o),A(t,"string")||B(e,t,r,a,o)}n(a)},date:function(e,t,n,r,o){var a,i=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t,"date")&&!e.required)return n();R(e,t,r,i,o),!A(t,"date")&&(a=t instanceof Date?t:new Date(t),T(e,a,r,i,o),a&&D(e,a.getTime(),r,i,o))}n(i)},url:F,hex:F,email:F,tel:F,required:function(e,t,n,r,o){var a=[],l=Array.isArray(t)?"array":(0,i.A)(t);R(e,t,r,a,o,l),n(a)},any:function(e,t,n,r,o){var a=[];if(e.required||!e.required&&r.hasOwnProperty(e.field)){if(A(t)&&!e.required)return n();R(e,t,r,a,o)}n(a)}};var _=function(){function e(t){(0,l.A)(this,e),(0,s.A)(this,"rules",null),(0,s.A)(this,"_messages",d),this.define(t)}return(0,c.A)(e,[{key:"define",value:function(e){var t=this;if(!e)throw Error("Cannot configure a schema with no rules");if("object"!==(0,i.A)(e)||Array.isArray(e))throw Error("Rules must be an object");this.rules={},Object.keys(e).forEach(function(n){var r=e[n];t.rules[n]=Array.isArray(r)?r:[r]})}},{key:"messages",value:function(e){return e&&(this._messages=k(u(),e)),this._messages}},{key:"validate",value:function(t){var n=this,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:function(){},c=t,s=r,f=l;if("function"==typeof s&&(f=s,s={}),!this.rules||0===Object.keys(this.rules).length)return f&&f(null,c),Promise.resolve(c);if(s.messages){var p=this.messages();p===d&&(p=u()),k(p,s.messages),s.messages=p}else s.messages=this.messages();var m={};(s.keys||Object.keys(this.rules)).forEach(function(e){var r=n.rules[e],a=c[e];r.forEach(function(r){var l=r;"function"==typeof l.transform&&(c===t&&(c=(0,o.A)({},c)),null!=(a=c[e]=l.transform(a))&&(l.type=l.type||(Array.isArray(a)?"array":(0,i.A)(a)))),(l="function"==typeof l?{validator:l}:(0,o.A)({},l)).validator=n.getValidationMethod(l),l.validator&&(l.field=e,l.fullField=l.fullField||e,l.type=n.getType(l),m[e]=m[e]||[],m[e].push({rule:l,value:a,source:c,field:e}))})});var g={};return function(e,t,n,r,o){if(t.first){var i=new Promise(function(t,i){var l;w((l=[],Object.keys(e).forEach(function(t){l.push.apply(l,(0,a.A)(e[t]||[]))}),l),n,function(e){return r(e),e.length?i(new C(e,x(e))):t(o)})});return i.catch(function(e){return e}),i}var l=!0===t.firstFields?Object.keys(e):t.firstFields||[],c=Object.keys(e),s=c.length,u=0,d=[],f=new Promise(function(t,i){var f=function(e){if(d.push.apply(d,e),++u===s)return r(d),d.length?i(new C(d,x(d))):t(o)};c.length||(r(d),t(o)),c.forEach(function(t){var r=e[t];if(-1!==l.indexOf(t))w(r,n,f);else{var o=[],i=0,c=r.length;function s(e){o.push.apply(o,(0,a.A)(e||[])),++i===c&&f(o)}r.forEach(function(e){n(e,s)})}})});return f.catch(function(e){return e}),f}(m,s,function(t,n){var r,l,u,d=t.rule,f=("object"===d.type||"array"===d.type)&&("object"===(0,i.A)(d.fields)||"object"===(0,i.A)(d.defaultField));function p(e,t){return(0,o.A)((0,o.A)({},t),{},{fullField:"".concat(d.fullField,".").concat(e),fullFields:d.fullFields?[].concat((0,a.A)(d.fullFields),[e]):[e]})}function m(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],i=Array.isArray(r)?r:[r];!s.suppressWarning&&i.length&&e.warning("async-validator:",i),i.length&&void 0!==d.message&&null!==d.message&&(i=[].concat(d.message));var l=i.map(S(d,c));if(s.first&&l.length)return g[d.field]=1,n(l);if(f){if(d.required&&!t.value)return void 0!==d.message?l=[].concat(d.message).map(S(d,c)):s.error&&(l=[s.error(d,$(s.messages.required,d.field))]),n(l);var u={};d.defaultField&&Object.keys(t.value).map(function(e){u[e]=d.defaultField});var m={};Object.keys(u=(0,o.A)((0,o.A)({},u),t.rule.fields)).forEach(function(e){var t=u[e],n=Array.isArray(t)?t:[t];m[e]=n.map(p.bind(null,e))});var h=new e(m);h.messages(s.messages),t.rule.options&&(t.rule.options.messages=s.messages,t.rule.options.error=s.error),h.validate(t.value,t.rule.options||s,function(e){var t=[];l&&l.length&&t.push.apply(t,(0,a.A)(l)),e&&e.length&&t.push.apply(t,(0,a.A)(e)),n(t.length?t:null)})}else n(l)}if(f=f&&(d.required||!d.required&&t.value),d.field=t.field,d.asyncValidator)r=d.asyncValidator(d,t.value,m,t.source,s);else if(d.validator){try{r=d.validator(d,t.value,m,t.source,s)}catch(e){null==(l=(u=console).error)||l.call(u,e),s.suppressValidatorError||setTimeout(function(){throw e},0),m(e.message)}!0===r?m():!1===r?m("function"==typeof d.message?d.message(d.fullField||d.field):d.message||"".concat(d.fullField||d.field," fails")):r instanceof Array?m(r):r instanceof Error&&m(r.message)}r&&r.then&&r.then(function(){return m()},function(e){return m(e)})},function(e){for(var t=[],n={},r=0;rE,Q1:()=>x,Ay:()=>L});var r=n(58168),o=n(64467),a=n(57046),i=n(47867),l=n.n(i),c=n(89379),s=n(23029),u=n(92901),d=n(85501),f=n(29426),p=n(80045),m=n(82284),g=n(78250),h=["b"],v=["v"],b=function(e){return Math.round(Number(e||0))},y=function(e){if(e instanceof g.Y)return e;if(e&&"object"===(0,m.A)(e)&&"h"in e&&"b"in e){var t=e.b,n=(0,p.A)(e,h);return(0,c.A)((0,c.A)({},n),{},{v:t})}return"string"==typeof e&&/hsb/.test(e)?e.replace(/hsb/,"hsv"):e},x=function(e){(0,d.A)(n,e);var t=(0,f.A)(n);function n(e){return(0,s.A)(this,n),t.call(this,y(e))}return(0,u.A)(n,[{key:"toHsbString",value:function(){var e=this.toHsb(),t=b(100*e.s),n=b(100*e.b),r=b(e.h),o=e.a,a="hsb(".concat(r,", ").concat(t,"%, ").concat(n,"%)"),i="hsba(".concat(r,", ").concat(t,"%, ").concat(n,"%, ").concat(o.toFixed(2*(0!==o)),")");return 1===o?a:i}},{key:"toHsb",value:function(){var e=this.toHsv(),t=e.v,n=(0,p.A)(e,v);return(0,c.A)((0,c.A)({},n),{},{b:t,a:this.a})}}]),n}(g.Y),$=function(e){return e instanceof x?e:new x(e)},A=$("#1677ff"),w=function(e){var t=e.offset,n=e.targetRef,r=e.containerRef,o=e.color,a=e.type,i=r.current.getBoundingClientRect(),l=i.width,s=i.height,u=n.current.getBoundingClientRect(),d=u.width,f=u.height,p=d/2,m=(t.x+p)/l,g=1-(t.y+f/2)/s,h=o.toHsb(),v=(t.x+p)/l*360;if(a)switch(a){case"hue":return $((0,c.A)((0,c.A)({},h),{},{h:v<=0?0:v}));case"alpha":return $((0,c.A)((0,c.A)({},h),{},{a:m<=0?0:m}))}return $({h:h.h,s:m<=0?0:m,b:g>=1?1:g,a:h.a})},C=function(e,t){var n=e.toHsb();switch(t){case"hue":return{x:n.h/360*100,y:50};case"alpha":return{x:100*e.a,y:50};default:return{x:100*n.s,y:(1-n.b)*100}}},S=n(8651),k=n.n(S);let E=function(e){var t=e.color,n=e.prefixCls,r=e.className,o=e.style,a=e.onClick,i="".concat(n,"-color-block");return l().createElement("div",{className:k()(i,r),style:o,onClick:a},l().createElement("div",{className:"".concat(i,"-inner"),style:{background:t}}))},O=function(e){var t=e.targetRef,n=e.containerRef,r=e.direction,o=e.onDragChange,l=e.onDragChangeComplete,c=e.calculate,s=e.color,u=e.disabledDrag,d=(0,i.useState)({x:0,y:0}),f=(0,a.A)(d,2),p=f[0],m=f[1],g=(0,i.useRef)(null),h=(0,i.useRef)(null);(0,i.useEffect)(function(){m(c())},[s]),(0,i.useEffect)(function(){return function(){document.removeEventListener("mousemove",g.current),document.removeEventListener("mouseup",h.current),document.removeEventListener("touchmove",g.current),document.removeEventListener("touchend",h.current),g.current=null,h.current=null}},[]);var v=function(e){var a,i,l,c=(a="touches"in e?e.touches[0]:e,i=document.documentElement.scrollLeft||document.body.scrollLeft||window.pageXOffset,l=document.documentElement.scrollTop||document.body.scrollTop||window.pageYOffset,{pageX:a.pageX-i,pageY:a.pageY-l}),s=c.pageX,u=c.pageY,d=n.current.getBoundingClientRect(),f=d.x,m=d.y,g=d.width,h=d.height,v=t.current.getBoundingClientRect(),b=v.width,y=v.height,x=Math.max(0,Math.min(u-m,h))-y/2,$={x:Math.max(0,Math.min(s-f,g))-b/2,y:"x"===r?p.y:x};if(0===b&&0===y||b!==y)return!1;null==o||o($)},b=function(e){e.preventDefault(),v(e)},y=function(e){e.preventDefault(),document.removeEventListener("mousemove",g.current),document.removeEventListener("mouseup",h.current),document.removeEventListener("touchmove",g.current),document.removeEventListener("touchend",h.current),g.current=null,h.current=null,null==l||l()};return[p,function(e){document.removeEventListener("mousemove",g.current),document.removeEventListener("mouseup",h.current),u||(v(e),document.addEventListener("mousemove",b),document.addEventListener("mouseup",y),document.addEventListener("touchmove",b),document.addEventListener("touchend",y),g.current=b,h.current=y)}]};var M=n(81470);let N=function(e){var t=e.size,n=e.color,r=e.prefixCls;return l().createElement("div",{className:k()("".concat(r,"-handler"),(0,o.A)({},"".concat(r,"-handler-sm"),"small"===(void 0===t?"default":t))),style:{backgroundColor:n}})},I=function(e){var t=e.children,n=e.style,r=e.prefixCls;return l().createElement("div",{className:"".concat(r,"-palette"),style:(0,c.A)({position:"relative"},n)},t)};var j=(0,i.forwardRef)(function(e,t){var n=e.children,r=e.x,o=e.y;return l().createElement("div",{ref:t,style:{position:"absolute",left:"".concat(r,"%"),top:"".concat(o,"%"),zIndex:1,transform:"translate(-50%, -50%)"}},n)});let z=function(e){var t=e.color,n=e.onChange,r=e.prefixCls,o=e.onChangeComplete,c=e.disabled,s=(0,i.useRef)(),u=(0,i.useRef)(),d=(0,i.useRef)(t),f=(0,M._q)(function(e){var r=w({offset:e,targetRef:u,containerRef:s,color:t});d.current=r,n(r)}),p=O({color:t,containerRef:s,targetRef:u,calculate:function(){return C(t)},onDragChange:f,onDragChangeComplete:function(){return null==o?void 0:o(d.current)},disabledDrag:c}),m=(0,a.A)(p,2),g=m[0],h=m[1];return l().createElement("div",{ref:s,className:"".concat(r,"-select"),onMouseDown:h,onTouchStart:h},l().createElement(I,{prefixCls:r},l().createElement(j,{x:g.x,y:g.y,ref:u},l().createElement(N,{color:t.toRgbString(),prefixCls:r})),l().createElement("div",{className:"".concat(r,"-saturation"),style:{backgroundColor:"hsl(".concat(t.toHsb().h,",100%, 50%)"),backgroundImage:"linear-gradient(0deg, #000, transparent),linear-gradient(90deg, #fff, hsla(0, 0%, 100%, 0))"}})))},R=function(e,t){var n=(0,M.vz)(e,{value:t}),r=(0,a.A)(n,2),o=r[0],l=r[1];return[(0,i.useMemo)(function(){return $(o)},[o]),l]},P=function(e){var t=e.colors,n=e.children,r=e.direction,o=e.type,a=e.prefixCls,c=(0,i.useMemo)(function(){return t.map(function(e,n){var r=$(e);return"alpha"===o&&n===t.length-1&&(r=new x(r.setA(1))),r.toRgbString()}).join(",")},[t,o]);return l().createElement("div",{className:"".concat(a,"-gradient"),style:{position:"absolute",inset:0,background:"linear-gradient(".concat(void 0===r?"to right":r,", ").concat(c,")")}},n)},T=function(e){var t=e.prefixCls,n=e.colors,r=e.disabled,o=e.onChange,c=e.onChangeComplete,s=e.color,u=e.type,d=(0,i.useRef)(),f=(0,i.useRef)(),p=(0,i.useRef)(s),m=function(e){return"hue"===u?e.getHue():100*e.a},g=(0,M._q)(function(e){var t=w({offset:e,targetRef:f,containerRef:d,color:s,type:u});p.current=t,o(m(t))}),h=O({color:s,targetRef:f,containerRef:d,calculate:function(){return C(s,u)},onDragChange:g,onDragChangeComplete:function(){c(m(p.current))},direction:"x",disabledDrag:r}),v=(0,a.A)(h,2),b=v[0],y=v[1],$=l().useMemo(function(){if("hue"===u){var e=s.toHsb();return e.s=1,e.b=1,e.a=1,new x(e)}return s},[s,u]),A=l().useMemo(function(){return n.map(function(e){return"".concat(e.color," ").concat(e.percent,"%")})},[n]);return l().createElement("div",{ref:d,className:k()("".concat(t,"-slider"),"".concat(t,"-slider-").concat(u)),onMouseDown:y,onTouchStart:y},l().createElement(I,{prefixCls:t},l().createElement(j,{x:b.x,y:b.y,ref:f},l().createElement(N,{size:"small",color:$.toHexString(),prefixCls:t})),l().createElement(P,{colors:A,type:u,prefixCls:t})))};var D=[{color:"rgb(255, 0, 0)",percent:0},{color:"rgb(255, 255, 0)",percent:17},{color:"rgb(0, 255, 0)",percent:33},{color:"rgb(0, 255, 255)",percent:50},{color:"rgb(0, 0, 255)",percent:67},{color:"rgb(255, 0, 255)",percent:83},{color:"rgb(255, 0, 0)",percent:100}];let L=(0,i.forwardRef)(function(e,t){var n,c=e.value,s=e.defaultValue,u=e.prefixCls,d=void 0===u?"rc-color-picker":u,f=e.onChange,p=e.onChangeComplete,m=e.className,g=e.style,h=e.panelRender,v=e.disabledAlpha,b=void 0!==v&&v,y=e.disabled,$=void 0!==y&&y,w=(n=e.components,i.useMemo(function(){return[(n||{}).slider||T]},[n])),C=(0,a.A)(w,1)[0],S=R(s||A,c),O=(0,a.A)(S,2),M=O[0],N=O[1],I=(0,i.useMemo)(function(){return M.setA(1).toRgbString()},[M]),j=function(e,t){c||N(e),null==f||f(e,t)},P=function(e){return new x(M.setHue(e))},L=function(e){return new x(M.setA(e/100))},B=k()("".concat(d,"-panel"),m,(0,o.A)({},"".concat(d,"-panel-disabled"),$)),F={prefixCls:d,disabled:$,color:M},H=l().createElement(l().Fragment,null,l().createElement(z,(0,r.A)({onChange:j},F,{onChangeComplete:p})),l().createElement("div",{className:"".concat(d,"-slider-container")},l().createElement("div",{className:k()("".concat(d,"-slider-group"),(0,o.A)({},"".concat(d,"-slider-group-disabled-alpha"),b))},l().createElement(C,(0,r.A)({},F,{type:"hue",colors:D,min:0,max:359,value:M.getHue(),onChange:function(e){j(P(e),{type:"hue",value:e})},onChangeComplete:function(e){p&&p(P(e))}})),!b&&l().createElement(C,(0,r.A)({},F,{type:"alpha",colors:[{percent:0,color:"rgba(255, 0, 4, 0)"},{percent:100,color:I}],min:0,max:100,value:100*M.a,onChange:function(e){j(L(e),{type:"alpha",value:e})},onChangeComplete:function(e){p&&p(L(e))}}))),l().createElement(E,{color:M.toRgbString(),prefixCls:d})));return l().createElement("div",{className:B,style:g,ref:t},"function"==typeof h?h(H):H)})},49970(e,t,n){"use strict";n.d(t,{A:()=>v});var r=n(57046),o=n(47867),a=n(25765),i=n(20998);n(68210);var l=n(8719),c=o.createContext(null),s=n(83098),u=n(30981),d=[],f=n(85089),p=n(82987),m="rc-util-locker-".concat(Date.now()),g=0,h=function(e){return!1!==e&&((0,i.A)()&&e?"string"==typeof e?document.querySelector(e):"function"==typeof e?e():e:null)};let v=o.forwardRef(function(e,t){var n,v,b,y=e.open,x=e.autoLock,$=e.getContainer,A=(e.debug,e.autoDestroy),w=void 0===A||A,C=e.children,S=o.useState(y),k=(0,r.A)(S,2),E=k[0],O=k[1],M=E||y;o.useEffect(function(){(w||y)&&O(y)},[y,w]);var N=o.useState(function(){return h($)}),I=(0,r.A)(N,2),j=I[0],z=I[1];o.useEffect(function(){var e=h($);z(null!=e?e:null)});var R=function(e){var t=o.useState(function(){return(0,i.A)()?document.createElement("div"):null}),n=(0,r.A)(t,1)[0],a=o.useRef(!1),l=o.useContext(c),f=o.useState(d),p=(0,r.A)(f,2),m=p[0],g=p[1],h=l||(a.current?void 0:function(e){g(function(t){return[e].concat((0,s.A)(t))})});function v(){n.parentElement||document.body.appendChild(n),a.current=!0}function b(){var e;null==(e=n.parentElement)||e.removeChild(n),a.current=!1}return(0,u.A)(function(){return e?l?l(v):v():b(),b},[e]),(0,u.A)(function(){m.length&&(m.forEach(function(e){return e()}),g(d))},[m]),[n,h]}(M&&!j),P=(0,r.A)(R,2),T=P[0],D=P[1],L=null!=j?j:T;n=!!(x&&y&&(0,i.A)()&&(L===T||L===document.body)),v=o.useState(function(){return g+=1,"".concat(m,"_").concat(g)}),b=(0,r.A)(v,1)[0],(0,u.A)(function(){if(n){var e=(0,p.V)(document.body).width,t=document.body.scrollHeight>(window.innerHeight||document.documentElement.clientHeight)&&window.innerWidth>document.body.offsetWidth;(0,f.BD)("\nhtml body {\n overflow-y: hidden;\n ".concat(t?"width: calc(100% - ".concat(e,"px);"):"","\n}"),b)}else(0,f.m6)(b);return function(){(0,f.m6)(b)}},[n,b]);var B=null;C&&(0,l.f3)(C)&&t&&(B=C.ref);var F=(0,l.xK)(B,t);if(!M||!(0,i.A)()||void 0===j)return null;var H=!1===L,_=C;return t&&(_=o.cloneElement(C,{ref:F})),o.createElement(c.Provider,{value:D},H?_:(0,a.createPortal)(_,L))})},82818(e,t,n){"use strict";n.d(t,{A:()=>H});var r=n(89379),o=n(57046),a=n(80045),i=n(49970),l=n(8651),c=n.n(l),s=n(60305),u=n(66588),d=n(72633),f=n(26956),p=n(56855),m=n(30981),g=n(68430),h=n(47867),v=n(58168),b=n(52193),y=n(8719);function x(e){var t=e.prefixCls,n=e.align,r=e.arrow,o=e.arrowPos,a=r||{},i=a.className,l=a.content,s=o.x,u=o.y,d=h.useRef();if(!n||!n.points)return null;var f={position:"absolute"};if(!1!==n.autoArrow){var p=n.points[0],m=n.points[1],g=p[0],v=p[1],b=m[0],y=m[1];g!==b&&["t","b"].includes(g)?"t"===g?f.top=0:f.bottom=0:f.top=void 0===u?0:u,v!==y&&["l","r"].includes(v)?"l"===v?f.left=0:f.right=0:f.left=void 0===s?0:s}return h.createElement("div",{ref:d,className:c()("".concat(t,"-arrow"),i),style:f},l)}function $(e){var t=e.prefixCls,n=e.open,r=e.zIndex,o=e.mask,a=e.motion;return o?h.createElement(b.Ay,(0,v.A)({},a,{motionAppear:!0,visible:n,removeOnLeave:!0}),function(e){var n=e.className;return h.createElement("div",{style:{zIndex:r},className:c()("".concat(t,"-mask"),n)})}):null}var A=h.memo(function(e){return e.children},function(e,t){return t.cache}),w=h.forwardRef(function(e,t){var n=e.popup,a=e.className,i=e.prefixCls,l=e.style,u=e.target,d=e.onVisibleChanged,f=e.open,p=e.keepDom,g=e.fresh,w=e.onClick,C=e.mask,S=e.arrow,k=e.arrowPos,E=e.align,O=e.motion,M=e.maskMotion,N=e.forceRender,I=e.getPopupContainer,j=e.autoDestroy,z=e.portal,R=e.zIndex,P=e.onMouseEnter,T=e.onMouseLeave,D=e.onPointerEnter,L=e.onPointerDownCapture,B=e.ready,F=e.offsetX,H=e.offsetY,_=e.offsetR,W=e.offsetB,q=e.onAlign,V=e.onPrepare,K=e.stretch,X=e.targetWidth,Y=e.targetHeight,U="function"==typeof n?n():n,G=f||p,Q=(null==I?void 0:I.length)>0,Z=h.useState(!I||!Q),J=(0,o.A)(Z,2),ee=J[0],et=J[1];if((0,m.A)(function(){!ee&&Q&&u&&et(!0)},[ee,Q,u]),!ee)return null;var en="auto",er={left:"-1000vw",top:"-1000vh",right:en,bottom:en};if(B||!f){var eo,ea=E.points,ei=E.dynamicInset||(null==(eo=E._experimental)?void 0:eo.dynamicInset),el=ei&&"r"===ea[0][1],ec=ei&&"b"===ea[0][0];el?(er.right=_,er.left=en):(er.left=F,er.right=en),ec?(er.bottom=W,er.top=en):(er.top=H,er.bottom=en)}var es={};return K&&(K.includes("height")&&Y?es.height=Y:K.includes("minHeight")&&Y&&(es.minHeight=Y),K.includes("width")&&X?es.width=X:K.includes("minWidth")&&X&&(es.minWidth=X)),f||(es.pointerEvents="none"),h.createElement(z,{open:N||G,getContainer:I&&function(){return I(u)},autoDestroy:j},h.createElement($,{prefixCls:i,open:f,zIndex:R,mask:C,motion:M}),h.createElement(s.A,{onResize:q,disabled:!f},function(e){return h.createElement(b.Ay,(0,v.A)({motionAppear:!0,motionEnter:!0,motionLeave:!0,removeOnLeave:!1,forceRender:N,leavedClassName:"".concat(i,"-hidden")},O,{onAppearPrepare:V,onEnterPrepare:V,visible:f,onVisibleChanged:function(e){var t;null==O||null==(t=O.onVisibleChanged)||t.call(O,e),d(e)}}),function(n,o){var s=n.className,u=n.style,d=c()(i,s,a);return h.createElement("div",{ref:(0,y.K4)(e,t,o),className:d,style:(0,r.A)((0,r.A)((0,r.A)((0,r.A)({"--arrow-x":"".concat(k.x||0,"px"),"--arrow-y":"".concat(k.y||0,"px")},er),es),u),{},{boxSizing:"border-box",zIndex:R},l),onMouseEnter:P,onMouseLeave:T,onPointerEnter:D,onClick:w,onPointerDownCapture:L},S&&h.createElement(x,{prefixCls:i,arrow:S,arrowPos:k,align:E}),h.createElement(A,{cache:!f&&!g},U))})}))}),C=h.forwardRef(function(e,t){var n=e.children,r=e.getTriggerDOMNode,o=(0,y.f3)(n),a=h.useCallback(function(e){(0,y.Xf)(t,r?r(e):e)},[r]),i=(0,y.xK)(a,(0,y.A9)(n));return o?h.cloneElement(n,{ref:i}):n}),S=h.createContext(null);function k(e){return e?Array.isArray(e)?e:[e]:[]}var E=n(42467);function O(e,t,n,r){return t||(n?{motionName:"".concat(e,"-").concat(n)}:r?{motionName:r}:null)}function M(e){return e.ownerDocument.defaultView}function N(e){for(var t=[],n=null==e?void 0:e.parentElement,r=["hidden","scroll","clip","auto"];n;){var o=M(n).getComputedStyle(n);[o.overflowX,o.overflowY,o.overflow].some(function(e){return r.includes(e)})&&t.push(n),n=n.parentElement}return t}function I(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1;return Number.isNaN(e)?t:e}function j(e){return I(parseFloat(e),0)}function z(e,t){var n=(0,r.A)({},e);return(t||[]).forEach(function(e){if(!(e instanceof HTMLBodyElement||e instanceof HTMLHtmlElement)){var t=M(e).getComputedStyle(e),r=t.overflow,o=t.overflowClipMargin,a=t.borderTopWidth,i=t.borderBottomWidth,l=t.borderLeftWidth,c=t.borderRightWidth,s=e.getBoundingClientRect(),u=e.offsetHeight,d=e.clientHeight,f=e.offsetWidth,p=e.clientWidth,m=j(a),g=j(i),h=j(l),v=j(c),b=I(Math.round(s.width/f*1e3)/1e3),y=I(Math.round(s.height/u*1e3)/1e3),x=m*y,$=h*b,A=0,w=0;if("clip"===r){var C=j(o);A=C*b,w=C*y}var S=s.x+$-A,k=s.y+x-w,E=S+s.width+2*A-$-v*b-(f-p-h-v)*b,O=k+s.height+2*w-x-g*y-(u-d-m-g)*y;n.left=Math.max(n.left,S),n.top=Math.max(n.top,k),n.right=Math.min(n.right,E),n.bottom=Math.min(n.bottom,O)}}),n}function R(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n="".concat(t),r=n.match(/^(.*)\%$/);return r?e*(parseFloat(r[1])/100):parseFloat(n)}function P(e,t){var n=(0,o.A)(t||[],2),r=n[0],a=n[1];return[R(e.width,r),R(e.height,a)]}function T(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return[e[0],e[1]]}function D(e,t){var n,r=t[0],o=t[1];return n="t"===r?e.y:"b"===r?e.y+e.height:e.y+e.height/2,{x:"l"===o?e.x:"r"===o?e.x+e.width:e.x+e.width/2,y:n}}function L(e,t){var n={t:"b",b:"t",l:"r",r:"l"};return e.map(function(e,r){return r===t?n[e]||"c":e}).join("")}var B=n(83098);n(68210);var F=["prefixCls","children","action","showAction","hideAction","popupVisible","defaultPopupVisible","onPopupVisibleChange","afterPopupVisibleChange","mouseEnterDelay","mouseLeaveDelay","focusDelay","blurDelay","mask","maskClosable","getPopupContainer","forceRender","autoDestroy","destroyPopupOnHide","popup","popupClassName","popupStyle","popupPlacement","builtinPlacements","popupAlign","zIndex","stretch","getPopupClassNameFromAlign","fresh","alignPoint","onPopupClick","onPopupAlign","arrow","popupMotion","maskMotion","popupTransitionName","popupAnimation","maskTransitionName","maskAnimation","className","getTriggerDOMNode"];let H=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:i.A;return h.forwardRef(function(t,n){var i,l,v,b,y,x,$,A,j,R,H,_,W,q,V,K,X,Y=t.prefixCls,U=void 0===Y?"rc-trigger-popup":Y,G=t.children,Q=t.action,Z=t.showAction,J=t.hideAction,ee=t.popupVisible,et=t.defaultPopupVisible,en=t.onPopupVisibleChange,er=t.afterPopupVisibleChange,eo=t.mouseEnterDelay,ea=t.mouseLeaveDelay,ei=void 0===ea?.1:ea,el=t.focusDelay,ec=t.blurDelay,es=t.mask,eu=t.maskClosable,ed=t.getPopupContainer,ef=t.forceRender,ep=t.autoDestroy,em=t.destroyPopupOnHide,eg=t.popup,eh=t.popupClassName,ev=t.popupStyle,eb=t.popupPlacement,ey=t.builtinPlacements,ex=void 0===ey?{}:ey,e$=t.popupAlign,eA=t.zIndex,ew=t.stretch,eC=t.getPopupClassNameFromAlign,eS=t.fresh,ek=t.alignPoint,eE=t.onPopupClick,eO=t.onPopupAlign,eM=t.arrow,eN=t.popupMotion,eI=t.maskMotion,ej=t.popupTransitionName,ez=t.popupAnimation,eR=t.maskTransitionName,eP=t.maskAnimation,eT=t.className,eD=t.getTriggerDOMNode,eL=(0,a.A)(t,F),eB=h.useState(!1),eF=(0,o.A)(eB,2),eH=eF[0],e_=eF[1];(0,m.A)(function(){e_((0,g.A)())},[]);var eW=h.useRef({}),eq=h.useContext(S),eV=h.useMemo(function(){return{registerSubPopup:function(e,t){eW.current[e]=t,null==eq||eq.registerSubPopup(e,t)}}},[eq]),eK=(0,p.A)(),eX=h.useState(null),eY=(0,o.A)(eX,2),eU=eY[0],eG=eY[1],eQ=h.useRef(null),eZ=(0,f.A)(function(e){eQ.current=e,(0,u.fk)(e)&&eU!==e&&eG(e),null==eq||eq.registerSubPopup(eK,e)}),eJ=h.useState(null),e0=(0,o.A)(eJ,2),e1=e0[0],e2=e0[1],e4=h.useRef(null),e3=(0,f.A)(function(e){(0,u.fk)(e)&&e1!==e&&(e2(e),e4.current=e)}),e6=h.Children.only(G),e8=(null==e6?void 0:e6.props)||{},e5={},e7=(0,f.A)(function(e){var t,n;return(null==e1?void 0:e1.contains(e))||(null==(t=(0,d.j)(e1))?void 0:t.host)===e||e===e1||(null==eU?void 0:eU.contains(e))||(null==(n=(0,d.j)(eU))?void 0:n.host)===e||e===eU||Object.values(eW.current).some(function(t){return(null==t?void 0:t.contains(e))||e===t})}),e9=O(U,eN,ez,ej),te=O(U,eI,eP,eR),tt=h.useState(et||!1),tn=(0,o.A)(tt,2),tr=tn[0],to=tn[1],ta=null!=ee?ee:tr,ti=(0,f.A)(function(e){void 0===ee&&to(e)});(0,m.A)(function(){to(ee||!1)},[ee]);var tl=h.useRef(ta);tl.current=ta;var tc=h.useRef([]);tc.current=[];var ts=(0,f.A)(function(e){var t;ti(e),(null!=(t=tc.current[tc.current.length-1])?t:ta)!==e&&(tc.current.push(e),null==en||en(e))}),tu=h.useRef(),td=function(){clearTimeout(tu.current)},tf=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;td(),0===t?ts(e):tu.current=setTimeout(function(){ts(e)},1e3*t)};h.useEffect(function(){return td},[]);var tp=h.useState(!1),tm=(0,o.A)(tp,2),tg=tm[0],th=tm[1];(0,m.A)(function(e){(!e||ta)&&th(!0)},[ta]);var tv=h.useState(null),tb=(0,o.A)(tv,2),ty=tb[0],tx=tb[1],t$=h.useState(null),tA=(0,o.A)(t$,2),tw=tA[0],tC=tA[1],tS=function(e){tC([e.clientX,e.clientY])},tk=(i=ek&&null!==tw?tw:e1,l=h.useState({ready:!1,offsetX:0,offsetY:0,offsetR:0,offsetB:0,arrowX:0,arrowY:0,scaleX:1,scaleY:1,align:ex[eb]||{}}),b=(v=(0,o.A)(l,2))[0],y=v[1],x=h.useRef(0),$=h.useMemo(function(){return eU?N(eU):[]},[eU]),A=h.useRef({}),ta||(A.current={}),j=(0,f.A)(function(){if(eU&&i&&ta){var e=eU.ownerDocument,t=M(eU),n=t.getComputedStyle(eU).position,a=eU.style.left,l=eU.style.top,c=eU.style.right,s=eU.style.bottom,d=eU.style.overflow,f=(0,r.A)((0,r.A)({},ex[eb]),e$),p=e.createElement("div");if(null==(b=eU.parentElement)||b.appendChild(p),p.style.left="".concat(eU.offsetLeft,"px"),p.style.top="".concat(eU.offsetTop,"px"),p.style.position=n,p.style.height="".concat(eU.offsetHeight,"px"),p.style.width="".concat(eU.offsetWidth,"px"),eU.style.left="0",eU.style.top="0",eU.style.right="auto",eU.style.bottom="auto",eU.style.overflow="hidden",Array.isArray(i))S={x:i[0],y:i[1],width:0,height:0};else{var m,g,h,v,b,x,w,C,S,k,O,N=i.getBoundingClientRect();N.x=null!=(k=N.x)?k:N.left,N.y=null!=(O=N.y)?O:N.top,S={x:N.x,y:N.y,width:N.width,height:N.height}}var j=eU.getBoundingClientRect(),R=t.getComputedStyle(eU),B=R.height,F=R.width;j.x=null!=(x=j.x)?x:j.left,j.y=null!=(w=j.y)?w:j.top;var H=e.documentElement,_=H.clientWidth,W=H.clientHeight,q=H.scrollWidth,V=H.scrollHeight,K=H.scrollTop,X=H.scrollLeft,Y=j.height,U=j.width,G=S.height,Q=S.width,Z=f.htmlRegion,J="visible",ee="visibleFirst";"scroll"!==Z&&Z!==ee&&(Z=J);var et=Z===ee,en=z({left:-X,top:-K,right:q-X,bottom:V-K},$),er=z({left:0,top:0,right:_,bottom:W},$),eo=Z===J?er:en,ea=et?er:eo;eU.style.left="auto",eU.style.top="auto",eU.style.right="0",eU.style.bottom="0";var ei=eU.getBoundingClientRect();eU.style.left=a,eU.style.top=l,eU.style.right=c,eU.style.bottom=s,eU.style.overflow=d,null==(C=eU.parentElement)||C.removeChild(p);var el=I(Math.round(U/parseFloat(F)*1e3)/1e3),ec=I(Math.round(Y/parseFloat(B)*1e3)/1e3);if(!(0===el||0===ec||(0,u.fk)(i)&&!(0,E.A)(i))){var es=f.offset,eu=f.targetOffset,ed=P(j,es),ef=(0,o.A)(ed,2),ep=ef[0],em=ef[1],eg=P(S,eu),eh=(0,o.A)(eg,2),ev=eh[0],ey=eh[1];S.x-=ev,S.y-=ey;var eA=f.points||[],ew=(0,o.A)(eA,2),eC=ew[0],eS=T(ew[1]),ek=T(eC),eE=D(S,eS),eM=D(j,ek),eN=(0,r.A)({},f),eI=eE.x-eM.x+ep,ej=eE.y-eM.y+em,ez=td(eI,ej),eR=td(eI,ej,er),eP=D(S,["t","l"]),eT=D(j,["t","l"]),eD=D(S,["b","r"]),eL=D(j,["b","r"]),eB=f.overflow||{},eF=eB.adjustX,eH=eB.adjustY,e_=eB.shiftX,eW=eB.shiftY,eq=function(e){return"boolean"==typeof e?e:e>=0};tf();var eV=eq(eH),eK=ek[0]===eS[0];if(eV&&"t"===ek[0]&&(g>ea.bottom||A.current.bt)){var eX=ej;eK?eX-=Y-G:eX=eP.y-eL.y-em;var eY=td(eI,eX),eG=td(eI,eX,er);eY>ez||eY===ez&&(!et||eG>=eR)?(A.current.bt=!0,ej=eX,em=-em,eN.points=[L(ek,0),L(eS,0)]):A.current.bt=!1}if(eV&&"b"===ek[0]&&(mez||eZ===ez&&(!et||eJ>=eR)?(A.current.tb=!0,ej=eQ,em=-em,eN.points=[L(ek,0),L(eS,0)]):A.current.tb=!1}var e0=eq(eF),e1=ek[1]===eS[1];if(e0&&"l"===ek[1]&&(v>ea.right||A.current.rl)){var e2=eI;e1?e2-=U-Q:e2=eP.x-eL.x-ep;var e4=td(e2,ej),e3=td(e2,ej,er);e4>ez||e4===ez&&(!et||e3>=eR)?(A.current.rl=!0,eI=e2,ep=-ep,eN.points=[L(ek,1),L(eS,1)]):A.current.rl=!1}if(e0&&"r"===ek[1]&&(hez||e8===ez&&(!et||e5>=eR)?(A.current.lr=!0,eI=e6,ep=-ep,eN.points=[L(ek,1),L(eS,1)]):A.current.lr=!1}tf();var e7=!0===e_?0:e_;"number"==typeof e7&&(her.right&&(eI-=v-er.right-ep,S.x>er.right-e7&&(eI+=S.x-er.right+e7)));var e9=!0===eW?0:eW;"number"==typeof e9&&(mer.bottom&&(ej-=g-er.bottom-em,S.y>er.bottom-e9&&(ej+=S.y-er.bottom+e9)));var te=j.x+eI,tt=j.y+ej,tn=S.x,tr=S.y,to=Math.max(te,tn),ti=Math.min(te+U,tn+Q),tl=Math.max(tt,tr),tc=Math.min(tt+Y,tr+G);null==eO||eO(eU,eN);var ts=ei.right-j.x-(eI+j.width),tu=ei.bottom-j.y-(ej+j.height);1===el&&(eI=Math.floor(eI),ts=Math.floor(ts)),1===ec&&(ej=Math.floor(ej),tu=Math.floor(tu)),y({ready:!0,offsetX:eI/el,offsetY:ej/ec,offsetR:ts/el,offsetB:tu/ec,arrowX:((to+ti)/2-te)/el,arrowY:((tl+tc)/2-tt)/ec,scaleX:el,scaleY:ec,align:eN})}function td(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:eo,r=j.x+e,o=j.y+t,a=Math.max(r,n.left),i=Math.max(o,n.top);return Math.max(0,(Math.min(r+U,n.right)-a)*(Math.min(o+Y,n.bottom)-i))}function tf(){g=(m=j.y+ej)+Y,v=(h=j.x+eI)+U}}}),R=function(){y(function(e){return(0,r.A)((0,r.A)({},e),{},{ready:!1})})},(0,m.A)(R,[eb]),(0,m.A)(function(){ta||R()},[ta]),[b.ready,b.offsetX,b.offsetY,b.offsetR,b.offsetB,b.arrowX,b.arrowY,b.scaleX,b.scaleY,b.align,function(){x.current+=1;var e=x.current;Promise.resolve().then(function(){x.current===e&&j()})}]),tE=(0,o.A)(tk,11),tO=tE[0],tM=tE[1],tN=tE[2],tI=tE[3],tj=tE[4],tz=tE[5],tR=tE[6],tP=tE[7],tT=tE[8],tD=tE[9],tL=tE[10],tB=(H=void 0===Q?"hover":Q,h.useMemo(function(){var e=k(null!=Z?Z:H),t=k(null!=J?J:H),n=new Set(e),r=new Set(t);return eH&&(n.has("hover")&&(n.delete("hover"),n.add("click")),r.has("hover")&&(r.delete("hover"),r.add("click"))),[n,r]},[eH,H,Z,J])),tF=(0,o.A)(tB,2),tH=tF[0],t_=tF[1],tW=tH.has("click"),tq=t_.has("click")||t_.has("contextMenu"),tV=(0,f.A)(function(){tg||tL()});_=function(){tl.current&&ek&&tq&&tf(!1)},(0,m.A)(function(){if(ta&&e1&&eU){var e=N(e1),t=N(eU),n=M(eU),r=new Set([n].concat((0,B.A)(e),(0,B.A)(t)));function o(){tV(),_()}return r.forEach(function(e){e.addEventListener("scroll",o,{passive:!0})}),n.addEventListener("resize",o,{passive:!0}),tV(),function(){r.forEach(function(e){e.removeEventListener("scroll",o),n.removeEventListener("resize",o)})}}},[ta,e1,eU]),(0,m.A)(function(){tV()},[tw,eb]),(0,m.A)(function(){ta&&!(null!=ex&&ex[eb])&&tV()},[JSON.stringify(e$)]);var tK=h.useMemo(function(){var e=function(e,t,n,r){for(var o=n.points,a=Object.keys(e),i=0;i0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2?arguments[2]:void 0;return n?e[0]===t[0]:e[0]===t[0]&&e[1]===t[1]}(null==(l=e[c])?void 0:l.points,o,r))return"".concat(t,"-placement-").concat(c)}return""}(ex,U,tD,ek);return c()(e,null==eC?void 0:eC(tD))},[tD,eC,ex,U,ek]);h.useImperativeHandle(n,function(){return{nativeElement:e4.current,popupElement:eQ.current,forceAlign:tV}});var tX=h.useState(0),tY=(0,o.A)(tX,2),tU=tY[0],tG=tY[1],tQ=h.useState(0),tZ=(0,o.A)(tQ,2),tJ=tZ[0],t0=tZ[1],t1=function(){if(ew&&e1){var e=e1.getBoundingClientRect();tG(e.width),t0(e.height)}};function t2(e,t,n,r){e5[e]=function(o){var a;null==r||r(o),tf(t,n);for(var i=arguments.length,l=Array(i>1?i-1:0),c=1;c1?n-1:0),o=1;o1?n-1:0),o=1;ol});var r=n(47867),o=n.n(r),a=n(94241),i=n(76327);let l=e=>{let{space:t,form:n,children:r}=e;if(null==r)return null;let l=r;return n&&(l=o().createElement(a.XB,{override:!0,status:!0},l)),t&&(l=o().createElement(i.K6,null,l)),l}},54121(e,t,n){"use strict";n.d(t,{ZZ:()=>c,nP:()=>l});var r=n(83098),o=n(13950);let a=o.s.map(e=>`${e}-inverse`),i=["success","processing","error","default","warning"];function l(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return t?[].concat((0,r.A)(a),(0,r.A)(o.s)).includes(e):o.s.includes(e)}function c(e){return i.includes(e)}},96311(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(47867),o=n.n(r),a=n(39159);let i=e=>{let t;return"object"==typeof e&&(null==e?void 0:e.clearIcon)?t=e:e&&(t={clearIcon:o().createElement(a.A,null)}),t}},47447(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(47867);function o(){let[,e]=r.useReducer(e=>e+1,0);return e}},60275(e,t,n){"use strict";n.d(t,{YK:()=>u,jH:()=>l});var r=n(47867),o=n.n(r),a=n(93093),i=n(72616);let l=1e3,c={Modal:100,Drawer:100,Popover:100,Popconfirm:100,Tooltip:100,Tour:100,FloatButton:100},s={SelectLike:50,Dropdown:50,DatePicker:50,Menu:50,ImagePreview:1},u=(e,t)=>{let n,[,r]=(0,a.Ay)(),l=o().useContext(i.A),u=e in c;if(void 0!==t)n=[t,t];else{let o=null!=l?l:0;u?o+=(l?0:r.zIndexPopupBase)+c[e]:o+=s[e],n=[void 0===l?t:o,o]}return n}},23723(e,t,n){"use strict";n.d(t,{A:()=>s,b:()=>c});var r=n(62279);let o=()=>({height:0,opacity:0}),a=e=>{let{scrollHeight:t}=e;return{height:t,opacity:1}},i=e=>({height:e?e.offsetHeight:0}),l=(e,t)=>(null==t?void 0:t.deadline)===!0||"height"===t.propertyName,c=(e,t,n)=>void 0!==n?n:`${e}-${t}`,s=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:r.yH;return{motionName:`${e}-motion-collapse`,onAppearStart:o,onEnterStart:o,onAppearActive:a,onEnterActive:a,onLeaveStart:i,onLeaveActive:o,onAppearEnd:l,onEnterEnd:l,onLeaveEnd:l,motionDeadline:500}}},13257(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(95201);let o={left:{points:["cr","cl"]},right:{points:["cl","cr"]},top:{points:["bc","tc"]},bottom:{points:["tc","bc"]},topLeft:{points:["bl","tl"]},leftTop:{points:["tr","tl"]},topRight:{points:["br","tr"]},rightTop:{points:["tl","tr"]},bottomRight:{points:["tr","br"]},rightBottom:{points:["bl","br"]},bottomLeft:{points:["tl","bl"]},leftBottom:{points:["br","bl"]}},a={topLeft:{points:["bl","tc"]},leftTop:{points:["tr","cl"]},topRight:{points:["br","tc"]},rightTop:{points:["tl","cr"]},bottomRight:{points:["tr","bc"]},rightBottom:{points:["bl","cr"]},bottomLeft:{points:["tl","bc"]},leftBottom:{points:["br","cl"]}},i=new Set(["topLeft","topRight","bottomLeft","bottomRight","leftTop","leftBottom","rightTop","rightBottom"]);function l(e){let{arrowWidth:t,autoAdjustOverflow:n,arrowPointAtCenter:l,offset:c,borderRadius:s,visibleFirst:u}=e,d=t/2,f={};return Object.keys(o).forEach(e=>{let p=Object.assign(Object.assign({},l&&a[e]||o[e]),{offset:[0,0],dynamicInset:!0});switch(f[e]=p,i.has(e)&&(p.autoArrow=!1),e){case"top":case"topLeft":case"topRight":p.offset[1]=-d-c;break;case"bottom":case"bottomLeft":case"bottomRight":p.offset[1]=d+c;break;case"left":case"leftTop":case"leftBottom":p.offset[0]=-d-c;break;case"right":case"rightTop":case"rightBottom":p.offset[0]=d+c}let m=(0,r.Ke)({contentRadius:s,limitVerticalRadius:!0});if(l)switch(e){case"topLeft":case"bottomLeft":p.offset[0]=-m.arrowOffsetHorizontal-d;break;case"topRight":case"bottomRight":p.offset[0]=m.arrowOffsetHorizontal+d;break;case"leftTop":case"rightTop":p.offset[1]=-(2*m.arrowOffsetHorizontal)+d;break;case"leftBottom":case"rightBottom":p.offset[1]=2*m.arrowOffsetHorizontal-d}p.overflow=function(e,t,n,r){if(!1===r)return{adjustX:!1,adjustY:!1};let o={};switch(e){case"top":case"bottom":o.shiftX=2*t.arrowOffsetHorizontal+n,o.shiftY=!0,o.adjustY=!0;break;case"left":case"right":o.shiftY=2*t.arrowOffsetVertical+n,o.shiftX=!0,o.adjustX=!0}let a=Object.assign(Object.assign({},o),r&&"object"==typeof r?r:{});return a.shiftX||(a.adjustX=!0),a.shiftY||(a.adjustY=!0),a}(e,m,t,n),u&&(p.htmlRegion="visibleFirst")}),f}},40682(e,t,n){"use strict";n.d(t,{Ob:()=>l,fx:()=>i,zv:()=>a});var r=n(47867),o=n.n(r);function a(e){return e&&o().isValidElement(e)&&e.type===o().Fragment}let i=(e,t,n)=>o().isValidElement(e)?o().cloneElement(e,"function"==typeof n?n(e.props||{}):n):t;function l(e,t){return i(e,e,t)}},58182(e,t,n){"use strict";n.d(t,{L:()=>a,v:()=>i});var r=n(8651),o=n.n(r);function a(e,t,n){return o()({[`${e}-status-success`]:"success"===t,[`${e}-status-warning`]:"warning"===t,[`${e}-status-error`]:"error"===t,[`${e}-status-validating`]:"validating"===t,[`${e}-has-feedback`]:n})}let i=(e,t)=>t||e},81168(e,t,n){"use strict";function r(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return t&&null==e?[]:Array.isArray(e)?e:[e]}n.d(t,{A:()=>r})},18877(e,t,n){"use strict";n.d(t,{_n:()=>a,rJ:()=>i});var r=n(47867);function o(){}n(68210);let a=r.createContext({}),i=()=>{let e=()=>{};return e.deprecated=o,e}},54556(e,t,n){"use strict";n.d(t,{A:()=>$});var r=n(47867),o=n.n(r),a=n(8651),i=n.n(a),l=n(42467),c=n(8719),s=n(62279),u=n(40682);let d=(0,n(37358).Or)("Wave",e=>[(e=>{let{componentCls:t,colorPrimary:n}=e;return{[t]:{position:"absolute",background:"transparent",pointerEvents:"none",boxSizing:"border-box",color:`var(--wave-color, ${n})`,boxShadow:"0 0 0 0 currentcolor",opacity:.2,"&.wave-motion-appear":{transition:`box-shadow 0.4s ${e.motionEaseOutCirc},opacity 2s ${e.motionEaseOutCirc}`,"&-active":{boxShadow:"0 0 0 6px currentcolor",opacity:0},"&.wave-quick":{transition:`box-shadow ${e.motionDurationSlow} ${e.motionEaseInOut},opacity ${e.motionDurationSlow} ${e.motionEaseInOut}`}}}}})(e)]);var f=n(26956),p=n(25371),m=n(93093),g=n(4424),h=n(52193),v=n(99871);function b(e){return e&&"#fff"!==e&&"#ffffff"!==e&&"rgb(255, 255, 255)"!==e&&"rgba(255, 255, 255, 1)"!==e&&!/rgba\((?:\d*, ){3}0\)/.test(e)&&"transparent"!==e}function y(e){return Number.isNaN(e)?0:e}let x=e=>{let{className:t,target:n,component:o,registerUnmount:a}=e,l=r.useRef(null),s=r.useRef(null);r.useEffect(()=>{s.current=a()},[]);let[u,d]=r.useState(null),[f,m]=r.useState([]),[v,x]=r.useState(0),[$,A]=r.useState(0),[w,C]=r.useState(0),[S,k]=r.useState(0),[E,O]=r.useState(!1),M={left:v,top:$,width:w,height:S,borderRadius:f.map(e=>`${e}px`).join(" ")};function N(){let e=getComputedStyle(n);d(function(e){let{borderTopColor:t,borderColor:n,backgroundColor:r}=getComputedStyle(e);return b(t)?t:b(n)?n:b(r)?r:null}(n));let t="static"===e.position,{borderLeftWidth:r,borderTopWidth:o}=e;x(t?n.offsetLeft:y(-parseFloat(r))),A(t?n.offsetTop:y(-parseFloat(o))),C(n.offsetWidth),k(n.offsetHeight);let{borderTopLeftRadius:a,borderTopRightRadius:i,borderBottomLeftRadius:l,borderBottomRightRadius:c}=e;m([a,i,c,l].map(e=>y(parseFloat(e))))}if(u&&(M["--wave-color"]=u),r.useEffect(()=>{if(n){let e,t=(0,p.A)(()=>{N(),O(!0)});return"u">typeof ResizeObserver&&(e=new ResizeObserver(N)).observe(n),()=>{p.A.cancel(t),null==e||e.disconnect()}}},[]),!E)return null;let I=("Checkbox"===o||"Radio"===o)&&(null==n?void 0:n.classList.contains(g.D));return r.createElement(h.Ay,{visible:!0,motionAppear:!0,motionName:"wave-motion",motionDeadline:5e3,onAppearEnd:(e,t)=>{var n,r;if(t.deadline||"opacity"===t.propertyName){let e=null==(n=l.current)?void 0:n.parentElement;null==(r=s.current)||r.call(s).then(()=>{null==e||e.remove()})}return!1}},(e,n)=>{let{className:o}=e;return r.createElement("div",{ref:(0,c.K4)(l,n),className:i()(t,o,{"wave-quick":I}),style:M})})},$=e=>{let{children:t,disabled:n,component:a}=e,{getPrefixCls:h}=(0,r.useContext)(s.QO),b=(0,r.useRef)(null),y=h("wave"),[,$]=d(y),A=((e,t,n)=>{let{wave:o}=r.useContext(s.QO),[,a,i]=(0,m.Ay)(),l=(0,f.A)(l=>{let c=e.current;if((null==o?void 0:o.disabled)||!c)return;let s=c.querySelector(`.${g.D}`)||c,{showEffect:u}=o||{};(u||((e,t)=>{var n;let{component:o}=t;if("Checkbox"===o&&!(null==(n=e.querySelector("input"))?void 0:n.checked))return;let a=document.createElement("div");a.style.position="absolute",a.style.left="0px",a.style.top="0px",null==e||e.insertBefore(a,null==e?void 0:e.firstChild);let i=(0,v.K)(),l=null;l=i(r.createElement(x,Object.assign({},t,{target:e,registerUnmount:function(){return l}})),a)}))(s,{className:t,token:a,component:n,event:l,hashId:i})}),c=r.useRef(null);return e=>{p.A.cancel(c.current),c.current=(0,p.A)(()=>{l(e)})}})(b,i()(y,$),a);if(o().useEffect(()=>{let e=b.current;if(!e||1!==e.nodeType||n)return;let t=t=>{!(0,l.A)(t.target)||!e.getAttribute||e.getAttribute("disabled")||e.disabled||e.className.includes("disabled")||e.className.includes("-leave")||A(t)};return e.addEventListener("click",t,!0),()=>{e.removeEventListener("click",t,!0)}},[n]),!o().isValidElement(t))return null!=t?t:null;let w=(0,c.f3)(t)?(0,c.K4)((0,c.A9)(t),b):b;return(0,u.Ob)(t,{ref:w})}},4424(e,t,n){"use strict";n.d(t,{D:()=>o});var r=n(62279);let o=`${r.yH}-wave-target`},72616(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(47867);let o=n.n(r)().createContext(void 0)},26476(e,t,n){"use strict";n.d(t,{A:()=>u,y:()=>s});var r=n(47867),o=n(8651),a=n.n(o),i=n(62279),l=n(93093),c=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let s=r.createContext(void 0),u=e=>{let{getPrefixCls:t,direction:n}=r.useContext(i.QO),{prefixCls:o,size:u,className:d}=e,f=c(e,["prefixCls","size","className"]),p=t("btn-group",o),[,,m]=(0,l.Ay)(),g="";switch(u){case"large":g="lg";break;case"small":g="sm"}let h=a()(p,{[`${p}-${g}`]:g,[`${p}-rtl`]:"rtl"===n},d,m);return r.createElement(s.Provider,{value:u},r.createElement("div",Object.assign({},f,{className:h})))}},39449(e,t,n){"use strict";n.d(t,{Ap:()=>l,DU:()=>c,u1:()=>u,uR:()=>d});var r=n(47867),o=n.n(r),a=n(40682);let i=/^[\u4E00-\u9FA5]{2}$/,l=i.test.bind(i);function c(e){return"danger"===e?{danger:!0}:{type:e}}function s(e){return"string"==typeof e}function u(e){return"text"===e||"link"===e}function d(e,t){let n=!1,r=[];return o().Children.forEach(e,e=>{let t=typeof e,o="string"===t||"number"===t;if(n&&o){let t=r.length-1,n=r[t];r[t]=`${n}${e}`}else r.push(e);n=o}),o().Children.map(r,e=>(function(e,t){if(null==e)return;let n=t?" ":"";return"string"!=typeof e&&"number"!=typeof e&&s(e.type)&&l(e.props.children)?(0,a.Ob)(e,{children:e.props.children.split("").join(n)}):s(e)?l(e)?o().createElement("span",null,e.split("").join(n)):o().createElement("span",null,e):(0,a.zv)(e)?o().createElement("span",null,e):e})(e,t))}},81583(e,t,n){"use strict";n.d(t,{Ay:()=>Y});var r=n(47867),o=n.n(r),a=n(8651),i=n.n(a),l=n(19853),c=n(8719),s=n(54556),u=n(62279),d=n(98119),f=n(829),p=n(76327),m=n(26476),g=n(39449);let h=(0,r.forwardRef)((e,t)=>{let{className:n,style:r,children:a,prefixCls:l}=e,c=i()(`${l}-icon`,n);return o().createElement("span",{ref:t,className:c,style:r},a)});var v=n(66514),b=n(52193);let y=(0,r.forwardRef)((e,t)=>{let{prefixCls:n,className:r,style:a,iconClassName:l}=e,c=i()(`${n}-loading-icon`,r);return o().createElement(h,{prefixCls:n,className:c,style:a,ref:t},o().createElement(v.A,{className:l}))}),x=()=>({width:0,opacity:0,transform:"scale(0)"}),$=e=>({width:e.scrollWidth,opacity:1,transform:"scale(1)"}),A=e=>{let{prefixCls:t,loading:n,existIcon:r,className:a,style:l,mount:c}=e;return r?o().createElement(y,{prefixCls:t,className:a,style:l}):o().createElement(b.Ay,{visible:!!n,motionName:`${t}-loading-icon-motion`,motionAppear:!c,motionEnter:!c,motionLeave:!c,removeOnLeave:!0,onAppearStart:x,onAppearActive:$,onEnterStart:x,onEnterActive:$,onLeaveStart:$,onLeaveActive:x},(e,n)=>{let{className:r,style:c}=e,s=Object.assign(Object.assign({},l),c);return o().createElement(y,{prefixCls:t,className:i()(a,r),style:s,ref:n})})};var w=n(96191),C=n(25905),S=n(10224),k=n(37358);let E=(e,t)=>({[`> span, > ${e}`]:{"&:not(:last-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineEndColor:t}}},"&:not(:first-child)":{[`&, & > ${e}`]:{"&:not(:disabled)":{borderInlineStartColor:t}}}}});var O=n(19911),M=n(53596),N=n(94925);let I=e=>{let{paddingInline:t,onlyIconSize:n}=e;return(0,S.oX)(e,{buttonPaddingHorizontal:t,buttonPaddingVertical:0,buttonIconOnlyFontSize:n})},j=e=>{var t,n,r,o,a,i;let l=null!=(t=e.contentFontSize)?t:e.fontSize,c=null!=(n=e.contentFontSizeSM)?n:e.fontSize,s=null!=(r=e.contentFontSizeLG)?r:e.fontSizeLG,u=null!=(o=e.contentLineHeight)?o:(0,N.k)(l),d=null!=(a=e.contentLineHeightSM)?a:(0,N.k)(c),f=null!=(i=e.contentLineHeightLG)?i:(0,N.k)(s),p=(0,M.z)(new O.kf(e.colorBgSolid),"#fff")?"#000":"#fff";return{fontWeight:400,defaultShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlTmpOutline}`,primaryShadow:`0 ${e.controlOutlineWidth}px 0 ${e.controlOutline}`,dangerShadow:`0 ${e.controlOutlineWidth}px 0 ${e.colorErrorOutline}`,primaryColor:e.colorTextLightSolid,dangerColor:e.colorTextLightSolid,borderColorDisabled:e.colorBorder,defaultGhostColor:e.colorBgContainer,ghostBg:"transparent",defaultGhostBorderColor:e.colorBgContainer,paddingInline:e.paddingContentHorizontal-e.lineWidth,paddingInlineLG:e.paddingContentHorizontal-e.lineWidth,paddingInlineSM:8-e.lineWidth,onlyIconSize:e.fontSizeLG,onlyIconSizeSM:e.fontSizeLG-2,onlyIconSizeLG:e.fontSizeLG+2,groupBorderColor:e.colorPrimaryHover,linkHoverBg:"transparent",textTextColor:e.colorText,textTextHoverColor:e.colorText,textTextActiveColor:e.colorText,textHoverBg:e.colorFillTertiary,defaultColor:e.colorText,defaultBg:e.colorBgContainer,defaultBorderColor:e.colorBorder,defaultBorderColorDisabled:e.colorBorder,defaultHoverBg:e.colorBgContainer,defaultHoverColor:e.colorPrimaryHover,defaultHoverBorderColor:e.colorPrimaryHover,defaultActiveBg:e.colorBgContainer,defaultActiveColor:e.colorPrimaryActive,defaultActiveBorderColor:e.colorPrimaryActive,solidTextColor:p,contentFontSize:l,contentFontSizeSM:c,contentFontSizeLG:s,contentLineHeight:u,contentLineHeightSM:d,contentLineHeightLG:f,paddingBlock:Math.max((e.controlHeight-l*u)/2-e.lineWidth,0),paddingBlockSM:Math.max((e.controlHeightSM-c*d)/2-e.lineWidth,0),paddingBlockLG:Math.max((e.controlHeightLG-s*f)/2-e.lineWidth,0)}},z=(e,t,n)=>({[`&:not(:disabled):not(${e}-disabled)`]:{"&:hover":t,"&:active":n}}),R=(e,t,n,r,o,a,i,l)=>({[`&${e}-background-ghost`]:Object.assign(Object.assign({color:n||void 0,background:t,borderColor:r||void 0,boxShadow:"none"},z(e,Object.assign({background:t},i),Object.assign({background:t},l))),{"&:disabled":{cursor:"not-allowed",color:o||void 0,borderColor:a||void 0}})}),P=(e,t,n,r)=>Object.assign(Object.assign({},(r&&["link","text"].includes(r)?e=>({[`&:disabled, &${e.componentCls}-disabled`]:{cursor:"not-allowed",color:e.colorTextDisabled}}):e=>({[`&:disabled, &${e.componentCls}-disabled`]:Object.assign({},{cursor:"not-allowed",borderColor:e.borderColorDisabled,color:e.colorTextDisabled,background:e.colorBgContainerDisabled,boxShadow:"none"})}))(e)),z(e.componentCls,t,n)),T=(e,t,n,r,o)=>({[`&${e.componentCls}-variant-solid`]:Object.assign({color:t,background:n},P(e,r,o))}),D=(e,t,n,r,o)=>({[`&${e.componentCls}-variant-outlined, &${e.componentCls}-variant-dashed`]:Object.assign({borderColor:t,background:n},P(e,r,o))}),L=e=>({[`&${e.componentCls}-variant-dashed`]:{borderStyle:"dashed"}}),B=(e,t,n,r)=>({[`&${e.componentCls}-variant-filled`]:Object.assign({boxShadow:"none",background:t},P(e,n,r))}),F=(e,t,n,r,o)=>({[`&${e.componentCls}-variant-${n}`]:Object.assign({color:t,boxShadow:"none"},P(e,r,o,n))}),H=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",{componentCls:n,controlHeight:r,fontSize:o,borderRadius:a,buttonPaddingHorizontal:i,iconCls:l,buttonPaddingVertical:c,buttonIconOnlyFontSize:s}=e;return[{[t]:{fontSize:o,height:r,padding:`${(0,w.zA)(c)} ${(0,w.zA)(i)}`,borderRadius:a,[`&${n}-icon-only`]:{width:r,[l]:{fontSize:s,verticalAlign:"calc(-0.125em - 1px)"}}}},{[`${n}${n}-circle${t}`]:{minWidth:e.controlHeight,paddingInlineStart:0,paddingInlineEnd:0,borderRadius:"50%"}},{[`${n}${n}-round${t}`]:{borderRadius:e.controlHeight,paddingInlineStart:e.calc(e.controlHeight).div(2).equal(),paddingInlineEnd:e.calc(e.controlHeight).div(2).equal()}}]},_=(0,k.OF)("Button",e=>{let t=I(e);return[(e=>{let{componentCls:t,iconCls:n,fontWeight:r,opacityLoading:o,motionDurationSlow:a,motionEaseInOut:i,marginXS:l,calc:c}=e;return{[t]:{outline:"none",position:"relative",display:"inline-flex",gap:e.marginXS,alignItems:"center",justifyContent:"center",fontWeight:r,whiteSpace:"nowrap",textAlign:"center",backgroundImage:"none",background:"transparent",border:`${(0,w.zA)(e.lineWidth)} ${e.lineType} transparent`,cursor:"pointer",transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,userSelect:"none",touchAction:"manipulation",color:e.colorText,"&:disabled > *":{pointerEvents:"none"},[`${t}-icon > svg`]:(0,C.Nk)(),"> a":{color:"currentColor"},"&:not(:disabled)":(0,C.K8)(e),[`&${t}-two-chinese-chars::first-letter`]:{letterSpacing:"0.34em"},[`&${t}-two-chinese-chars > *:not(${n})`]:{marginInlineEnd:"-0.34em",letterSpacing:"0.34em"},[`&${t}-icon-only`]:{paddingInline:0,[`&${t}-compact-item`]:{flex:"none"},[`&${t}-round`]:{width:"auto"}},[`&${t}-loading`]:{opacity:o,cursor:"default"},[`${t}-loading-icon`]:{transition:["width","opacity","margin"].map(e=>`${e} ${a} ${i}`).join(",")},[`&:not(${t}-icon-end)`]:{[`${t}-loading-icon-motion`]:{"&-appear-start, &-enter-start":{marginInlineEnd:c(l).mul(-1).equal()},"&-appear-active, &-enter-active":{marginInlineEnd:0},"&-leave-start":{marginInlineEnd:0},"&-leave-active":{marginInlineEnd:c(l).mul(-1).equal()}}},"&-icon-end":{flexDirection:"row-reverse",[`${t}-loading-icon-motion`]:{"&-appear-start, &-enter-start":{marginInlineStart:c(l).mul(-1).equal()},"&-appear-active, &-enter-active":{marginInlineStart:0},"&-leave-start":{marginInlineStart:0},"&-leave-active":{marginInlineStart:c(l).mul(-1).equal()}}}}}})(t),H((0,S.oX)(t,{fontSize:t.contentFontSize}),t.componentCls),H((0,S.oX)(t,{controlHeight:t.controlHeightSM,fontSize:t.contentFontSizeSM,padding:t.paddingXS,buttonPaddingHorizontal:t.paddingInlineSM,buttonPaddingVertical:0,borderRadius:t.borderRadiusSM,buttonIconOnlyFontSize:t.onlyIconSizeSM}),`${t.componentCls}-sm`),H((0,S.oX)(t,{controlHeight:t.controlHeightLG,fontSize:t.contentFontSizeLG,buttonPaddingHorizontal:t.paddingInlineLG,buttonPaddingVertical:0,borderRadius:t.borderRadiusLG,buttonIconOnlyFontSize:t.onlyIconSizeLG}),`${t.componentCls}-lg`),(e=>{let{componentCls:t}=e;return{[t]:{[`&${t}-block`]:{width:"100%"}}}})(t),(e=>{let{componentCls:t}=e;return{[`${t}-color-default`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:e.defaultColor,boxShadow:e.defaultShadow},T(e,e.solidTextColor,e.colorBgSolid,{color:e.solidTextColor,background:e.colorBgSolidHover},{color:e.solidTextColor,background:e.colorBgSolidActive})),L(e)),B(e,e.colorFillTertiary,{background:e.colorFillSecondary},{background:e.colorFill})),F(e,e.textTextColor,"link",{color:e.colorLinkHover,background:e.linkHoverBg},{color:e.colorLinkActive})),R(e.componentCls,e.ghostBg,e.defaultGhostColor,e.defaultGhostBorderColor,e.colorTextDisabled,e.colorBorder)),[`${t}-color-primary`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:e.colorPrimary,boxShadow:e.primaryShadow},D(e,e.colorPrimary,e.colorBgContainer,{color:e.colorPrimaryTextHover,borderColor:e.colorPrimaryHover,background:e.colorBgContainer},{color:e.colorPrimaryTextActive,borderColor:e.colorPrimaryActive,background:e.colorBgContainer})),L(e)),B(e,e.colorPrimaryBg,{background:e.colorPrimaryBgHover},{background:e.colorPrimaryBorder})),F(e,e.colorLink,"text",{color:e.colorPrimaryTextHover,background:e.colorPrimaryBg},{color:e.colorPrimaryTextActive,background:e.colorPrimaryBorder})),R(e.componentCls,e.ghostBg,e.colorPrimary,e.colorPrimary,e.colorTextDisabled,e.colorBorder,{color:e.colorPrimaryHover,borderColor:e.colorPrimaryHover},{color:e.colorPrimaryActive,borderColor:e.colorPrimaryActive})),[`${t}-color-dangerous`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:e.colorError,boxShadow:e.dangerShadow},T(e,e.dangerColor,e.colorError,{background:e.colorErrorHover},{background:e.colorErrorActive})),D(e,e.colorError,e.colorBgContainer,{color:e.colorErrorHover,borderColor:e.colorErrorBorderHover},{color:e.colorErrorActive,borderColor:e.colorErrorActive})),L(e)),B(e,e.colorErrorBg,{background:e.colorErrorBgFilledHover},{background:e.colorErrorBgActive})),F(e,e.colorError,"text",{color:e.colorErrorHover,background:e.colorErrorBg},{color:e.colorErrorHover,background:e.colorErrorBgActive})),F(e,e.colorError,"link",{color:e.colorErrorHover},{color:e.colorErrorActive})),R(e.componentCls,e.ghostBg,e.colorError,e.colorError,e.colorTextDisabled,e.colorBorder,{color:e.colorErrorHover,borderColor:e.colorErrorHover},{color:e.colorErrorActive,borderColor:e.colorErrorActive}))}})(t),Object.assign(Object.assign(Object.assign(Object.assign({},D(t,t.defaultBorderColor,t.defaultBg,{color:t.defaultHoverColor,borderColor:t.defaultHoverBorderColor,background:t.defaultHoverBg},{color:t.defaultActiveColor,borderColor:t.defaultActiveBorderColor,background:t.defaultActiveBg})),F(t,t.textTextColor,"text",{color:t.textTextHoverColor,background:t.textHoverBg},{color:t.textTextActiveColor,background:t.colorBgTextActive})),T(t,t.primaryColor,t.colorPrimary,{background:t.colorPrimaryHover,color:t.primaryColor},{background:t.colorPrimaryActive,color:t.primaryColor})),F(t,t.colorLink,"link",{color:t.colorLinkHover,background:t.linkHoverBg},{color:t.colorLinkActive})),(e=>{let{componentCls:t,fontSize:n,lineWidth:r,groupBorderColor:o,colorErrorHover:a}=e;return{[`${t}-group`]:[{position:"relative",display:"inline-flex",[`> span, > ${t}`]:{"&:not(:last-child)":{[`&, & > ${t}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},"&:not(:first-child)":{marginInlineStart:e.calc(r).mul(-1).equal(),[`&, & > ${t}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}},[t]:{position:"relative",zIndex:1,"&:hover, &:focus, &:active":{zIndex:2},"&[disabled]":{zIndex:0}},[`${t}-icon-only`]:{fontSize:n}},E(`${t}-primary`,o),E(`${t}-danger`,a)]}})(t)]},j,{unitless:{fontWeight:!0,contentLineHeight:!0,contentLineHeightSM:!0,contentLineHeightLG:!0}});var W=n(55974);let q=(0,k.bf)(["Button","compact"],e=>{var t;let n,r=I(e);return[(0,W.G)(r),{[n=`${r.componentCls}-compact-vertical`]:Object.assign(Object.assign({},{[`&-item:not(${n}-last-item)`]:{marginBottom:r.calc(r.lineWidth).mul(-1).equal()},"&-item":{"&:hover,&:focus,&:active":{zIndex:2},"&[disabled]":{zIndex:0}}}),(t=r.componentCls,{[`&-item:not(${n}-first-item):not(${n}-last-item)`]:{borderRadius:0},[`&-item${n}-first-item:not(${n}-last-item)`]:{[`&, &${t}-sm, &${t}-lg`]:{borderEndEndRadius:0,borderEndStartRadius:0}},[`&-item${n}-last-item:not(${n}-first-item)`]:{[`&, &${t}-sm, &${t}-lg`]:{borderStartStartRadius:0,borderStartEndRadius:0}}}))},(e=>{let{componentCls:t,colorPrimaryHover:n,lineWidth:r,calc:o}=e,a=o(r).mul(-1).equal(),i=e=>({[`${t}-compact${e?"-vertical":""}-item${t}-primary:not([disabled])`]:{"& + &::before":{position:"absolute",top:e?a:0,insetInlineStart:e?0:a,backgroundColor:n,content:'""',width:e?"100%":r,height:e?r:"100%"}}});return Object.assign(Object.assign({},i()),i(!0))})(r)]},j);var V=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let K={default:["default","outlined"],primary:["primary","solid"],dashed:["default","dashed"],link:["primary","link"],text:["default","text"]},X=o().forwardRef((e,t)=>{var n,a,v,b;let{loading:y=!1,prefixCls:x,color:$,variant:w,type:C,danger:S=!1,shape:k="default",size:E,styles:O,disabled:M,className:N,rootClassName:I,children:j,icon:z,iconPosition:R="start",ghost:P=!1,block:T=!1,htmlType:D="button",classNames:L,style:B={},autoInsertSpace:F,autoFocus:H}=e,W=V(e,["loading","prefixCls","color","variant","type","danger","shape","size","styles","disabled","className","rootClassName","children","icon","iconPosition","ghost","block","htmlType","classNames","style","autoInsertSpace","autoFocus"]),X=C||"default",[Y,U]=(0,r.useMemo)(()=>{if($&&w)return[$,w];let e=K[X]||[];return S?["danger",e[1]]:e},[C,$,w,S]),G="danger"===Y?"dangerous":Y,{getPrefixCls:Q,direction:Z,button:J}=(0,r.useContext)(u.QO),ee=null==(n=null!=F?F:null==J?void 0:J.autoInsertSpace)||n,et=Q("btn",x),[en,er,eo]=_(et),ea=(0,r.useContext)(d.A),ei=null!=M?M:ea,el=(0,r.useContext)(m.y),ec=(0,r.useMemo)(()=>(function(e){if("object"==typeof e&&e){let t=null==e?void 0:e.delay;return{loading:(t=Number.isNaN(t)||"number"!=typeof t?0:t)<=0,delay:t}}return{loading:!!e,delay:0}})(y),[y]),[es,eu]=(0,r.useState)(ec.loading),[ed,ef]=(0,r.useState)(!1),ep=(0,r.useRef)(null),em=(0,c.xK)(t,ep),eg=1===r.Children.count(j)&&!z&&!(0,g.u1)(U),eh=(0,r.useRef)(!0);o().useEffect(()=>(eh.current=!1,()=>{eh.current=!0}),[]),(0,r.useEffect)(()=>{let e=null;return ec.delay>0?e=setTimeout(()=>{e=null,eu(!0)},ec.delay):eu(ec.loading),function(){e&&(clearTimeout(e),e=null)}},[ec]),(0,r.useEffect)(()=>{if(!ep.current||!ee)return;let e=ep.current.textContent||"";eg&&(0,g.Ap)(e)?ed||ef(!0):ed&&ef(!1)}),(0,r.useEffect)(()=>{H&&ep.current&&ep.current.focus()},[]);let ev=o().useCallback(t=>{var n;es||ei?t.preventDefault():null==(n=e.onClick)||n.call(e,t)},[e.onClick,es,ei]),{compactSize:eb,compactItemClassnames:ey}=(0,p.RQ)(et,Z),ex=(0,f.A)(e=>{var t,n;return null!=(n=null!=(t=null!=E?E:eb)?t:el)?n:e}),e$=ex&&null!=(a=({large:"lg",small:"sm",middle:void 0})[ex])?a:"",eA=es?"loading":z,ew=(0,l.A)(W,["navigate"]),eC=i()(et,er,eo,{[`${et}-${k}`]:"default"!==k&&k,[`${et}-${X}`]:X,[`${et}-dangerous`]:S,[`${et}-color-${G}`]:G,[`${et}-variant-${U}`]:U,[`${et}-${e$}`]:e$,[`${et}-icon-only`]:!j&&0!==j&&!!eA,[`${et}-background-ghost`]:P&&!(0,g.u1)(U),[`${et}-loading`]:es,[`${et}-two-chinese-chars`]:ed&&ee&&!es,[`${et}-block`]:T,[`${et}-rtl`]:"rtl"===Z,[`${et}-icon-end`]:"end"===R},ey,N,I,null==J?void 0:J.className),eS=Object.assign(Object.assign({},null==J?void 0:J.style),B),ek=i()(null==L?void 0:L.icon,null==(v=null==J?void 0:J.classNames)?void 0:v.icon),eE=Object.assign(Object.assign({},(null==O?void 0:O.icon)||{}),(null==(b=null==J?void 0:J.styles)?void 0:b.icon)||{}),eO=z&&!es?o().createElement(h,{prefixCls:et,className:ek,style:eE},z):o().createElement(A,{existIcon:!!z,prefixCls:et,loading:es,mount:eh.current}),eM=j||0===j?(0,g.uR)(j,eg&&ee):null;if(void 0!==ew.href)return en(o().createElement("a",Object.assign({},ew,{className:i()(eC,{[`${et}-disabled`]:ei}),href:ei?void 0:ew.href,style:eS,onClick:ev,ref:em,tabIndex:ei?-1:0}),eO,eM));let eN=o().createElement("button",Object.assign({},W,{type:D,className:eC,style:eS,onClick:ev,disabled:ei,ref:em}),eO,eM,ey&&o().createElement(q,{prefixCls:et}));return(0,g.u1)(U)||(eN=o().createElement(s.A,{component:"Button",disabled:es},eN)),en(eN)});X.Group=m.A,X.__ANT_BUTTON=!0;let Y=X},24685(e,t,n){"use strict";n.d(t,{A:()=>r});let r=n(53039).A},29653(e,t,n){"use strict";n.d(t,{A:()=>c});var r=n(47867),o=n(8651),a=n.n(o),i=n(62279),l=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let c=e=>{let{prefixCls:t,className:n,avatar:o,title:c,description:s}=e,u=l(e,["prefixCls","className","avatar","title","description"]),{getPrefixCls:d}=r.useContext(i.QO),f=d("card",t),p=a()(`${f}-meta`,n),m=o?r.createElement("div",{className:`${f}-meta-avatar`},o):null,g=c?r.createElement("div",{className:`${f}-meta-title`},c):null,h=s?r.createElement("div",{className:`${f}-meta-description`},s):null,v=g||h?r.createElement("div",{className:`${f}-meta-detail`},g,h):null;return r.createElement("div",Object.assign({},u,{className:p}),m,v)}},43365(e,t,n){"use strict";n.d(t,{A:()=>H});var r=n(47867),o=n.n(r),a=n(88996),i=n(8651),l=n.n(i),c=n(58168),s=n(83098),u=n(57046),d=n(82284),f=n(12533),p=n(68210),m=n(80045),g=n(82546),h=n(89379),v=n(64467),b=n(52193),y=n(16928),x=o().forwardRef(function(e,t){var n=e.prefixCls,r=e.forceRender,a=e.className,i=e.style,c=e.children,s=e.isActive,d=e.role,f=e.classNames,p=e.styles,m=o().useState(s||r),g=(0,u.A)(m,2),h=g[0],b=g[1];return(o().useEffect(function(){(r||s)&&b(!0)},[r,s]),h)?o().createElement("div",{ref:t,className:l()("".concat(n,"-content"),(0,v.A)((0,v.A)({},"".concat(n,"-content-active"),s),"".concat(n,"-content-inactive"),!s),a),style:i,role:d},o().createElement("div",{className:l()("".concat(n,"-content-box"),null==f?void 0:f.body),style:null==p?void 0:p.body},c)):null});x.displayName="PanelContent";var $=["showArrow","headerClass","isActive","onItemClick","forceRender","className","classNames","styles","prefixCls","collapsible","accordion","panelKey","extra","header","expandIcon","openMotion","destroyInactivePanel","children"],A=o().forwardRef(function(e,t){var n=e.showArrow,r=e.headerClass,a=e.isActive,i=e.onItemClick,s=e.forceRender,u=e.className,d=e.classNames,f=void 0===d?{}:d,p=e.styles,g=void 0===p?{}:p,A=e.prefixCls,w=e.collapsible,C=e.accordion,S=e.panelKey,k=e.extra,E=e.header,O=e.expandIcon,M=e.openMotion,N=e.destroyInactivePanel,I=e.children,j=(0,m.A)(e,$),z="disabled"===w,R=(0,v.A)((0,v.A)((0,v.A)({onClick:function(){null==i||i(S)},onKeyDown:function(e){("Enter"===e.key||e.keyCode===y.A.ENTER||e.which===y.A.ENTER)&&(null==i||i(S))},role:C?"tab":"button"},"aria-expanded",a),"aria-disabled",z),"tabIndex",z?-1:0),P="function"==typeof O?O(e):o().createElement("i",{className:"arrow"}),T=P&&o().createElement("div",(0,c.A)({className:"".concat(A,"-expand-icon")},["header","icon"].includes(w)?R:{}),P),D=l()("".concat(A,"-item"),(0,v.A)((0,v.A)({},"".concat(A,"-item-active"),a),"".concat(A,"-item-disabled"),z),u),L=l()(r,"".concat(A,"-header"),(0,v.A)({},"".concat(A,"-collapsible-").concat(w),!!w),f.header),B=(0,h.A)({className:L,style:g.header},["header","icon"].includes(w)?{}:R);return o().createElement("div",(0,c.A)({},j,{ref:t,className:D}),o().createElement("div",B,(void 0===n||n)&&T,o().createElement("span",(0,c.A)({className:"".concat(A,"-header-text")},"header"===w?R:{}),E),null!=k&&"boolean"!=typeof k&&o().createElement("div",{className:"".concat(A,"-extra")},k)),o().createElement(b.Ay,(0,c.A)({visible:a,leavedClassName:"".concat(A,"-content-hidden")},M,{forceRender:s,removeOnLeave:N}),function(e,t){var n=e.className,r=e.style;return o().createElement(x,{ref:t,prefixCls:A,className:n,classNames:f,style:r,styles:g,isActive:a,forceRender:s,role:C?"tabpanel":void 0},I)}))}),w=["children","label","key","collapsible","onItemClick","destroyInactivePanel"],C=function(e,t){var n=t.prefixCls,r=t.accordion,a=t.collapsible,i=t.destroyInactivePanel,l=t.onItemClick,s=t.activeKey,u=t.openMotion,d=t.expandIcon;return e.map(function(e,t){var f=e.children,p=e.label,g=e.key,h=e.collapsible,v=e.onItemClick,b=e.destroyInactivePanel,y=(0,m.A)(e,w),x=String(null!=g?g:t),$=null!=h?h:a,C=!1;return C=r?s[0]===x:s.indexOf(x)>-1,o().createElement(A,(0,c.A)({},y,{prefixCls:n,key:x,panelKey:x,isActive:C,accordion:r,openMotion:u,expandIcon:d,header:p,collapsible:$,onItemClick:function(e){"disabled"!==$&&(l(e),null==v||v(e))},destroyInactivePanel:null!=b?b:i}),f)})},S=function(e,t,n){if(!e)return null;var r=n.prefixCls,a=n.accordion,i=n.collapsible,l=n.destroyInactivePanel,c=n.onItemClick,s=n.activeKey,u=n.openMotion,d=n.expandIcon,f=e.key||String(t),p=e.props,m=p.header,g=p.headerClass,h=p.destroyInactivePanel,v=p.collapsible,b=p.onItemClick,y=!1;y=a?s[0]===f:s.indexOf(f)>-1;var x=null!=v?v:i,$={key:f,panelKey:f,header:m,headerClass:g,isActive:y,prefixCls:r,destroyInactivePanel:null!=h?h:l,openMotion:u,accordion:a,children:e.props.children,onItemClick:function(e){"disabled"!==x&&(c(e),null==b||b(e))},expandIcon:d,collapsible:x};return"string"==typeof e.type?e:(Object.keys($).forEach(function(e){void 0===$[e]&&delete $[e]}),o().cloneElement(e,$))},k=n(72065);function E(e){var t=e;if(!Array.isArray(t)){var n=(0,d.A)(t);t="number"===n||"string"===n?[t]:[]}return t.map(function(e){return String(e)})}let O=Object.assign(o().forwardRef(function(e,t){var n,r=e.prefixCls,a=void 0===r?"rc-collapse":r,i=e.destroyInactivePanel,d=e.style,m=e.accordion,h=e.className,v=e.children,b=e.collapsible,y=e.openMotion,x=e.expandIcon,$=e.activeKey,A=e.defaultActiveKey,w=e.onChange,O=e.items,M=l()(a,h),N=(0,f.A)([],{value:$,onChange:function(e){return null==w?void 0:w(e)},defaultValue:A,postState:E}),I=(0,u.A)(N,2),j=I[0],z=I[1];(0,p.Ay)(!v,"[rc-collapse] `children` will be removed in next major version. Please use `items` instead.");var R=(n={prefixCls:a,accordion:m,openMotion:y,expandIcon:x,collapsible:b,destroyInactivePanel:void 0!==i&&i,onItemClick:function(e){return z(function(){return m?j[0]===e?[]:[e]:j.indexOf(e)>-1?j.filter(function(t){return t!==e}):[].concat((0,s.A)(j),[e])})},activeKey:j},Array.isArray(O)?C(O,n):(0,g.A)(v).map(function(e,t){return S(e,t,n)}));return o().createElement("div",(0,c.A)({ref:t,className:M,style:d,role:m?"tablist":void 0},(0,k.A)(e,{aria:!0,data:!0})),R)}),{Panel:A});O.Panel;var M=n(19853),N=n(23723),I=n(40682),j=n(62279),z=n(829);let R=r.forwardRef((e,t)=>{let{getPrefixCls:n}=r.useContext(j.QO),{prefixCls:o,className:a,showArrow:i=!0}=e,c=n("collapse",o),s=l()({[`${c}-no-arrow`]:!i},a);return r.createElement(O.Panel,Object.assign({ref:t},e,{prefixCls:c,className:s}))});var P=n(96191),T=n(25905),D=n(60977),L=n(37358),B=n(10224);let F=(0,L.OF)("Collapse",e=>{let t=(0,B.oX)(e,{collapseHeaderPaddingSM:`${(0,P.zA)(e.paddingXS)} ${(0,P.zA)(e.paddingSM)}`,collapseHeaderPaddingLG:`${(0,P.zA)(e.padding)} ${(0,P.zA)(e.paddingLG)}`,collapsePanelBorderRadius:e.borderRadiusLG});return[(e=>{let{componentCls:t,contentBg:n,padding:r,headerBg:o,headerPadding:a,collapseHeaderPaddingSM:i,collapseHeaderPaddingLG:l,collapsePanelBorderRadius:c,lineWidth:s,lineType:u,colorBorder:d,colorText:f,colorTextHeading:p,colorTextDisabled:m,fontSizeLG:g,lineHeight:h,lineHeightLG:v,marginSM:b,paddingSM:y,paddingLG:x,paddingXS:$,motionDurationSlow:A,fontSizeIcon:w,contentPadding:C,fontHeight:S,fontHeightLG:k}=e,E=`${(0,P.zA)(s)} ${u} ${d}`;return{[t]:Object.assign(Object.assign({},(0,T.dF)(e)),{backgroundColor:o,border:E,borderRadius:c,"&-rtl":{direction:"rtl"},[`& > ${t}-item`]:{borderBottom:E,"&:last-child":{[` - &, - & > ${t}-header`]:{borderRadius:`0 0 ${(0,P.zA)(c)} ${(0,P.zA)(c)}`}},[`> ${t}-header`]:{position:"relative",display:"flex",flexWrap:"nowrap",alignItems:"flex-start",padding:a,color:p,lineHeight:h,cursor:"pointer",transition:`all ${A}, visibility 0s`,[`> ${t}-header-text`]:{flex:"auto"},[`${t}-expand-icon`]:{height:S,display:"flex",alignItems:"center",paddingInlineEnd:b},[`${t}-arrow`]:Object.assign(Object.assign({},(0,T.Nk)()),{fontSize:w,transition:`transform ${A}`,svg:{transition:`transform ${A}`}}),[`${t}-header-text`]:{marginInlineEnd:"auto"}},[`${t}-collapsible-header`]:{cursor:"default",[`${t}-header-text`]:{flex:"none",cursor:"pointer"}},[`${t}-collapsible-icon`]:{cursor:"unset",[`${t}-expand-icon`]:{cursor:"pointer"}}},[`${t}-content`]:{color:f,backgroundColor:n,borderTop:E,[`& > ${t}-content-box`]:{padding:C},"&-hidden":{display:"none"}},"&-small":{[`> ${t}-item`]:{[`> ${t}-header`]:{padding:i,paddingInlineStart:$,[`> ${t}-expand-icon`]:{marginInlineStart:e.calc(y).sub($).equal()}},[`> ${t}-content > ${t}-content-box`]:{padding:y}}},"&-large":{[`> ${t}-item`]:{fontSize:g,lineHeight:v,[`> ${t}-header`]:{padding:l,paddingInlineStart:r,[`> ${t}-expand-icon`]:{height:k,marginInlineStart:e.calc(x).sub(r).equal()}},[`> ${t}-content > ${t}-content-box`]:{padding:x}}},[`${t}-item:last-child`]:{borderBottom:0,[`> ${t}-content`]:{borderRadius:`0 0 ${(0,P.zA)(c)} ${(0,P.zA)(c)}`}},[`& ${t}-item-disabled > ${t}-header`]:{[` - &, - & > .arrow - `]:{color:m,cursor:"not-allowed"}},[`&${t}-icon-position-end`]:{[`& > ${t}-item`]:{[`> ${t}-header`]:{[`${t}-expand-icon`]:{order:1,paddingInlineEnd:0,paddingInlineStart:b}}}}})}})(t),(e=>{let{componentCls:t,headerBg:n,paddingXXS:r,colorBorder:o}=e;return{[`${t}-borderless`]:{backgroundColor:n,border:0,[`> ${t}-item`]:{borderBottom:`1px solid ${o}`},[` - > ${t}-item:last-child, - > ${t}-item:last-child ${t}-header - `]:{borderRadius:0},[`> ${t}-item:last-child`]:{borderBottom:0},[`> ${t}-item > ${t}-content`]:{backgroundColor:"transparent",borderTop:0},[`> ${t}-item > ${t}-content > ${t}-content-box`]:{paddingTop:r}}}})(t),(e=>{let{componentCls:t,paddingSM:n}=e;return{[`${t}-ghost`]:{backgroundColor:"transparent",border:0,[`> ${t}-item`]:{borderBottom:0,[`> ${t}-content`]:{backgroundColor:"transparent",border:0,[`> ${t}-content-box`]:{paddingBlock:n}}}}}})(t),(e=>{let{componentCls:t}=e,n=`> ${t}-item > ${t}-header ${t}-arrow`;return{[`${t}-rtl`]:{[n]:{transform:"rotate(180deg)"}}}})(t),(0,D.A)(t)]},e=>({headerPadding:`${e.paddingSM}px ${e.padding}px`,headerBg:e.colorFillAlter,contentPadding:`${e.padding}px 16px`,contentBg:e.colorBgContainer})),H=Object.assign(r.forwardRef((e,t)=>{let{getPrefixCls:n,direction:o,collapse:i}=r.useContext(j.QO),{prefixCls:c,className:s,rootClassName:u,style:d,bordered:f=!0,ghost:p,size:m,expandIconPosition:h="start",children:v,expandIcon:b}=e,y=(0,z.A)(e=>{var t;return null!=(t=null!=m?m:e)?t:"middle"}),x=n("collapse",c),$=n(),[A,w,C]=F(x),S=r.useMemo(()=>"left"===h?"start":"right"===h?"end":h,[h]),k=null!=b?b:null==i?void 0:i.expandIcon,E=r.useCallback(function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t="function"==typeof k?k(e):r.createElement(a.A,{rotate:e.isActive?90:void 0,"aria-label":e.isActive?"expanded":"collapsed"});return(0,I.Ob)(t,()=>{var e;return{className:l()(null==(e=null==t?void 0:t.props)?void 0:e.className,`${x}-arrow`)}})},[k,x]),R=l()(`${x}-icon-position-${S}`,{[`${x}-borderless`]:!f,[`${x}-rtl`]:"rtl"===o,[`${x}-ghost`]:!!p,[`${x}-${y}`]:"middle"!==y},null==i?void 0:i.className,s,u,w,C),P=Object.assign(Object.assign({},(0,N.A)($)),{motionAppear:!1,leavedClassName:`${x}-content-hidden`}),T=r.useMemo(()=>v?(0,g.A)(v).map((e,t)=>{var n,r;let o=e.props;if(null==o?void 0:o.disabled){let a=null!=(n=e.key)?n:String(t),i=Object.assign(Object.assign({},(0,M.A)(e.props,["disabled"])),{key:a,collapsible:null!=(r=o.collapsible)?r:"disabled"});return(0,I.Ob)(e,i)}return e}):null,[v]);return A(r.createElement(O,Object.assign({ref:t,openMotion:P},(0,M.A)(e,["rootClassName"]),{expandIcon:E,prefixCls:x,className:R,style:Object.assign(Object.assign({},null==i?void 0:i.style),d)}),T))}),{Panel:R})},19911(e,t,n){"use strict";n.d(t,{Ol:()=>i,kf:()=>l});var r=n(23029),o=n(92901),a=n(45802);let i=(e,t)=>(null==e?void 0:e.replace(/[^\w/]/g,"").slice(0,t?8:6))||"",l=(0,o.A)(function e(t){var n;if((0,r.A)(this,e),this.cleared=!1,t instanceof e){this.metaColor=t.metaColor.clone(),this.colors=null==(n=t.colors)?void 0:n.map(t=>({color:new e(t.color),percent:t.percent})),this.cleared=t.cleared;return}let o=Array.isArray(t);o&&t.length?(this.colors=t.map(t=>{let{color:n,percent:r}=t;return{color:new e(n),percent:r}}),this.metaColor=new a.Q1(this.colors[0].color.metaColor)):this.metaColor=new a.Q1(o?"":t),t&&(!o||this.colors)||(this.metaColor=this.metaColor.setA(0),this.cleared=!0)},[{key:"toHsb",value:function(){return this.metaColor.toHsb()}},{key:"toHsbString",value:function(){return this.metaColor.toHsbString()}},{key:"toHex",value:function(){let e,t;return e=this.toHexString(),t=this.metaColor.a<1,e?i(e,t):""}},{key:"toHexString",value:function(){return this.metaColor.toHexString()}},{key:"toRgb",value:function(){return this.metaColor.toRgb()}},{key:"toRgbString",value:function(){return this.metaColor.toRgbString()}},{key:"isGradient",value:function(){return!!this.colors&&!this.cleared}},{key:"getColors",value:function(){return this.colors||[{color:this,percent:0}]}},{key:"toCssString",value:function(){let{colors:e}=this;if(e){let t=e.map(e=>`${e.color.toRgbString()} ${e.percent}%`).join(", ");return`linear-gradient(90deg, ${t})`}return this.metaColor.toRgbString()}},{key:"equals",value:function(e){return!!e&&this.isGradient()===e.isGradient()&&(this.isGradient()?this.colors.length===e.colors.length&&this.colors.every((t,n)=>{let r=e.colors[n];return t.percent===r.percent&&t.color.equals(r.color)}):this.toHexString()===e.toHexString())}}])},53596(e,t,n){"use strict";n.d(t,{A:()=>h,z:()=>m});var r=n(47867),o=n.n(r),a=n(45802),i=n(8651),l=n.n(i),c=n(12533),s=n(43365),u=n(19155),d=n(93093),f=n(36058);let p=e=>e.map(e=>(e.colors=e.colors.map(f.Z6),e)),m=(e,t)=>{let{r:n,g:r,b:o,a:i}=e.toRgb(),l=new a.Q1(e.toRgbString()).onBackground(t).toHsv();return i<=.5?l.v>.5:.299*n+.587*r+.114*o>192},g=(e,t)=>"string"==typeof e.label||"number"==typeof e.label?`panel-${e.label}-${t}`:`panel-${t}`,h=e=>{let{prefixCls:t,presets:n,value:i,onChange:h}=e,[v]=(0,u.A)("ColorPicker"),[,b]=(0,d.Ay)(),[y]=(0,c.A)(p(n),{value:p(n),postState:p}),x=`${t}-presets`,$=(0,r.useMemo)(()=>y.reduce((e,t,n)=>{let{defaultOpen:r=!0}=t;return r&&e.push(g(t,n)),e},[]),[y]),A=y.map((e,n)=>{var r;return{key:g(e,n),label:o().createElement("div",{className:`${x}-label`},null==e?void 0:e.label),children:o().createElement("div",{className:`${x}-items`},Array.isArray(null==e?void 0:e.colors)&&(null==(r=e.colors)?void 0:r.length)>0?e.colors.map((e,n)=>o().createElement(a.ZC,{key:`preset-${n}-${e.toHexString()}`,color:(0,f.Z6)(e).toRgbString(),prefixCls:t,className:l()(`${x}-color`,{[`${x}-color-checked`]:e.toHexString()===(null==i?void 0:i.toHexString()),[`${x}-color-bright`]:m(e,b.colorBgElevated)}),onClick:()=>{null==h||h(e)}})):o().createElement("span",{className:`${x}-empty`},v.presetEmpty))}});return o().createElement("div",{className:x},o().createElement(s.A,{defaultActiveKey:$,ghost:!0,items:A}))}},36058(e,t,n){"use strict";n.d(t,{E:()=>s,Gp:()=>c,PU:()=>u,W:()=>l,Z6:()=>i});var r=n(83098),o=n(45802),a=n(19911);let i=e=>e instanceof a.kf?e:new a.kf(e),l=e=>Math.round(Number(e||0)),c=e=>l(100*e.toHsb().a),s=(e,t)=>{let n=e.toRgb();if(!n.r&&!n.g&&!n.b){let n=e.toHsb();return n.a=t||1,i(n)}return n.a=t||1,i(n)},u=(e,t)=>{let n=[{percent:0,color:e[0].color}].concat((0,r.A)(e),[{percent:100,color:e[e.length-1].color}]);for(let e=0;ei,X:()=>a});var r=n(47867);let o=r.createContext(!1),a=e=>{let{children:t,disabled:n}=e,a=r.useContext(o);return r.createElement(o.Provider,{value:null!=n?n:a},t)},i=o},48224(e,t,n){"use strict";n.d(t,{A:()=>i,c:()=>a});var r=n(47867);let o=r.createContext(void 0),a=e=>{let{children:t,size:n}=e,a=r.useContext(o);return r.createElement(o.Provider,{value:n||a},t)},i=o},99871(e,t,n){"use strict";n.d(t,{K:()=>b,L:()=>v}),n(47867);var r,o=n(25765),a=n(1079),i=n(10467),l=n(82284),c=(0,n(89379).A)({},o),s=c.version,u=c.render,d=c.unmountComponentAtNode;try{Number((s||"").split(".")[0])>=18&&(r=c.createRoot)}catch(e){}function f(e){var t=c.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;t&&"object"===(0,l.A)(t)&&(t.usingClientEntryPoint=e)}var p="__rc_react_root__";function m(){return(m=(0,i.A)((0,a.A)().mark(function e(t){return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",Promise.resolve().then(function(){var e;null==(e=t[p])||e.unmount(),delete t[p]}));case 1:case"end":return e.stop()}},e)}))).apply(this,arguments)}function g(){return(g=(0,i.A)((0,a.A)().mark(function e(t){return(0,a.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:if(void 0===r){e.next=2;break}return e.abrupt("return",function(e){return m.apply(this,arguments)}(t));case 2:d(t);case 3:case"end":return e.stop()}},e)}))).apply(this,arguments)}let h=(e,t)=>(!function(e,t){var n;if(r)return f(!0),n=t[p]||r(t),f(!1),n.render(e),t[p]=n;null==u||u(e,t)}(e,t),()=>(function(e){return g.apply(this,arguments)})(t));function v(e){h=e}function b(){return h}},62279(e,t,n){"use strict";n.d(t,{QO:()=>l,lJ:()=>i,pM:()=>a,yH:()=>o});var r=n(47867);let o="ant",a="anticon",i=["outlined","borderless","filled"],l=r.createContext({getPrefixCls:(e,t)=>t||(e?`${o}-${e}`:o),iconPrefixCls:a}),{Consumer:c}=l},20934(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(93093);let o=e=>{let[,,,,t]=(0,r.Ay)();return t?`${e}-css-var`:""}},829(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(47867),o=n.n(r),a=n(48224);let i=e=>{let t=o().useContext(a.A);return o().useMemo(()=>e?"string"==typeof e?null!=e?e:t:e instanceof Function?e(t):t:t,[e,t])}},53039(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(89379),o=(0,r.A)((0,r.A)({},{yearFormat:"YYYY",dayFormat:"D",cellMeridiemFormat:"A",monthBeforeYear:!0}),{},{locale:"en_US",today:"Today",now:"Now",backToToday:"Back to today",ok:"OK",clear:"Clear",month:"Month",year:"Year",timeSelect:"select time",dateSelect:"select date",weekSelect:"Choose a week",monthSelect:"Choose a month",yearSelect:"Choose a year",decadeSelect:"Choose a decade",dateFormat:"M/D/YYYY",dateTimeFormat:"M/D/YYYY HH:mm:ss",previousMonth:"Previous month (PageUp)",nextMonth:"Next month (PageDown)",previousYear:"Last year (Control + left)",nextYear:"Next year (Control + right)",previousDecade:"Last decade",nextDecade:"Next decade",previousCentury:"Last century",nextCentury:"Next century"}),a=n(65341);let i={lang:Object.assign({placeholder:"Select date",yearPlaceholder:"Select year",quarterPlaceholder:"Select quarter",monthPlaceholder:"Select month",weekPlaceholder:"Select week",rangePlaceholder:["Start date","End date"],rangeYearPlaceholder:["Start year","End year"],rangeQuarterPlaceholder:["Start quarter","End quarter"],rangeMonthPlaceholder:["Start month","End month"],rangeWeekPlaceholder:["Start week","End week"]},o),timePickerLocale:Object.assign({},a.A)}},94241(e,t,n){"use strict";n.d(t,{$W:()=>u,Op:()=>c,Pp:()=>f,XB:()=>d,cK:()=>i,hb:()=>s,jC:()=>l});var r=n(47867),o=n(75151),a=n(19853);let i=r.createContext({labelAlign:"right",vertical:!1,itemRef:()=>{}}),l=r.createContext(null),c=e=>{let t=(0,a.A)(e,["prefixCls"]);return r.createElement(o.Op,Object.assign({},t))},s=r.createContext({prefixCls:""}),u=r.createContext({}),d=e=>{let{children:t,status:n,override:o}=e,a=r.useContext(u),i=r.useMemo(()=>{let e=Object.assign({},a);return o&&delete e.isFormItemInput,n&&(delete e.status,delete e.hasFeedback,delete e.feedbackIcon),e},[n,o,a]);return r.createElement(u.Provider,{value:i},t)},f=r.createContext(void 0)},90124(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(47867),o=n(94241),a=n(62279);let i=function(e,t){var n,i;let l,c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,{variant:s,[e]:u}=r.useContext(a.QO),d=r.useContext(o.Pp),f=null==u?void 0:u.variant;l=void 0!==t?t:!1===c?"borderless":null!=(i=null!=(n=null!=d?d:f)?n:s)?i:"outlined";let p=a.lJ.includes(l);return[l,p]}},64530(e,t,n){"use strict";let r,o,a,i,l,c,s;n.r(t),n.d(t,{Calendar:()=>uk,Tooltip:()=>aM.A,Upload:()=>Sp,unstableSetRender:()=>tM.L,List:()=>bW,Popover:()=>aH,Anchor:()=>eS,Splitter:()=>SN,Typography:()=>C4,version:()=>Sm.A,Row:()=>xf,Switch:()=>xD,Tag:()=>wS,Skeleton:()=>nf,Descriptions:()=>g2,AutoComplete:()=>ab,FloatButton:()=>hq,Pagination:()=>bC,Result:()=>xd,Badge:()=>ir,Steps:()=>xI,Tabs:()=>u5,QRCode:()=>y2,theme:()=>wP,Modal:()=>yf,Table:()=>wm,Divider:()=>pb,Mentions:()=>b9,Col:()=>pp,ConfigProvider:()=>tO,TimePicker:()=>w_,Menu:()=>l1,Carousel:()=>ft,Flex:()=>hE,Radio:()=>y4,App:()=>rl,Collapse:()=>pm.A,Button:()=>tz.Ay,Slider:()=>m3,Form:()=>vx,Card:()=>di,Layout:()=>bo,notification:()=>yA,Statistic:()=>x$,Drawer:()=>hc,Image:()=>v6,ColorPicker:()=>gg,BackTop:()=>aX,Progress:()=>yM.A,Alert:()=>eo,Segmented:()=>pI,Select:()=>ap,Transfer:()=>Cw,Empty:()=>oR,Cascader:()=>f7,TreeSelect:()=>CX,Spin:()=>bT,Grid:()=>v$,Checkbox:()=>po,DatePicker:()=>gV,InputNumber:()=>ma,Tour:()=>Ci,Popconfirm:()=>yO,Rate:()=>xt,Watermark:()=>Sx,Tree:()=>AV,Dropdown:()=>hx,Breadcrumb:()=>ci,Affix:()=>N,Avatar:()=>aW,Input:()=>mO,Space:()=>hv,Timeline:()=>wG,message:()=>yc});var u,d,f,p=n(47867),m=n.n(p),g=n(8651),h=n.n(g),v=n(60305),b=n(19853),y=n(83098),x=n(25371);let $=function(e){let t,n=function(){if(null==t){for(var n=arguments.length,r=Array(n),o=0;o{t=null,e.apply(void 0,(0,y.A)(r))})}};return n.cancel=()=>{x.A.cancel(t),t=null},n};var A=n(62279),w=n(37358);let C=(0,w.OF)("Affix",e=>{let{componentCls:t}=e;return{[t]:{position:"fixed",zIndex:e.zIndexPopup}}},e=>({zIndexPopup:e.zIndexBase+10}));function S(e){return e!==window?e.getBoundingClientRect():{top:0,bottom:window.innerHeight}}function k(e,t,n){if(void 0!==n&&Math.round(t.top)>Math.round(e.top)-n)return n+t.top}function E(e,t,n){if(void 0!==n&&Math.round(t.bottom)typeof window?window:null}let N=m().forwardRef((e,t)=>{var n;let{style:r,offsetTop:o,offsetBottom:a,prefixCls:i,className:l,rootClassName:c,children:s,target:u,onChange:d}=e,{getPrefixCls:f,getTargetContainer:p}=m().useContext(A.QO),g=f("affix",i),[y,x]=m().useState(!1),[w,N]=m().useState(),[I,j]=m().useState(),z=m().useRef(0),R=m().useRef(null),P=m().useRef(null),T=m().useRef(null),D=m().useRef(null),L=m().useRef(null),B=null!=(n=null!=u?u:p)?n:M,F=void 0===a&&void 0===o?0:o,H=()=>{z.current=1,(()=>{if(1!==z.current||!D.current||!T.current||!B)return;let e=B();if(e){let t={status:0},n=S(T.current);if(0===n.top&&0===n.left&&0===n.width&&0===n.height)return;let r=S(e),o=k(n,r,F),i=E(n,r,a);void 0!==o?(t.affixStyle={position:"fixed",top:o,width:n.width,height:n.height},t.placeholderStyle={width:n.width,height:n.height}):void 0!==i&&(t.affixStyle={position:"fixed",bottom:i,width:n.width,height:n.height},t.placeholderStyle={width:n.width,height:n.height}),t.lastAffix=!!t.affixStyle,y!==t.lastAffix&&(null==d||d(t.lastAffix)),z.current=t.status,N(t.affixStyle),j(t.placeholderStyle),x(t.lastAffix)}})()},_=$(()=>{H()}),W=$(()=>{if(B&&w){let e=B();if(e&&T.current){let t=S(e),n=S(T.current),r=k(n,t,F),o=E(n,t,a);if(void 0!==r&&w.top===r||void 0!==o&&w.bottom===o)return}}H()}),q=()=>{let e=null==B?void 0:B();e&&(O.forEach(t=>{var n;P.current&&(null==(n=R.current)||n.removeEventListener(t,P.current)),null==e||e.addEventListener(t,W)}),R.current=e,P.current=W)};m().useImperativeHandle(t,()=>({updatePosition:_})),m().useEffect(()=>(L.current=setTimeout(q),()=>{let e;return L.current&&(clearTimeout(L.current),L.current=null),e=null==B?void 0:B(),void(O.forEach(t=>{var n;null==e||e.removeEventListener(t,W),P.current&&(null==(n=R.current)||n.removeEventListener(t,P.current))}),_.cancel(),W.cancel())}),[]),m().useEffect(()=>{q()},[u,w]),m().useEffect(()=>{_()},[u,o,a]);let[V,K,X]=C(g),Y=h()(c,K,g,X),U=h()({[Y]:w}),G=(0,b.A)(e,["prefixCls","offsetTop","offsetBottom","target","onChange","rootClassName"]);return V(m().createElement(v.A,{onResize:_},m().createElement("div",Object.assign({style:r,className:l,ref:T},G),w&&m().createElement("div",{style:I,"aria-hidden":"true"}),m().createElement("div",{className:U,ref:D,style:w},m().createElement(v.A,{onResize:_},s)))))});var I=n(46420),j=n(39159),z=n(5100),R=n(58168);let P={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm-32 232c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V296zm32 440a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"exclamation-circle",theme:"filled"};var T=n(67928),D=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:P}))});let L={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm32 664c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V456c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272zm-32-344a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"info-circle",theme:"filled"};var B=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:L}))}),F=n(52193),H=n(72065),_=n(8719),W=n(40682),q=n(96191),V=n(25905);let K=(e,t,n,r,o)=>({background:e,border:`${(0,q.zA)(r.lineWidth)} ${r.lineType} ${t}`,[`${o}-icon`]:{color:n}}),X=(0,w.OF)("Alert",e=>[(e=>{let{componentCls:t,motionDurationSlow:n,marginXS:r,marginSM:o,fontSize:a,fontSizeLG:i,lineHeight:l,borderRadiusLG:c,motionEaseInOutCirc:s,withDescriptionIconSize:u,colorText:d,colorTextHeading:f,withDescriptionPadding:p,defaultPadding:m}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",display:"flex",alignItems:"center",padding:m,wordWrap:"break-word",borderRadius:c,[`&${t}-rtl`]:{direction:"rtl"},[`${t}-content`]:{flex:1,minWidth:0},[`${t}-icon`]:{marginInlineEnd:r,lineHeight:0},"&-description":{display:"none",fontSize:a,lineHeight:l},"&-message":{color:f},[`&${t}-motion-leave`]:{overflow:"hidden",opacity:1,transition:`max-height ${n} ${s}, opacity ${n} ${s}, - padding-top ${n} ${s}, padding-bottom ${n} ${s}, - margin-bottom ${n} ${s}`},[`&${t}-motion-leave-active`]:{maxHeight:0,marginBottom:"0 !important",paddingTop:0,paddingBottom:0,opacity:0}}),[`${t}-with-description`]:{alignItems:"flex-start",padding:p,[`${t}-icon`]:{marginInlineEnd:o,fontSize:u,lineHeight:0},[`${t}-message`]:{display:"block",marginBottom:r,color:f,fontSize:i},[`${t}-description`]:{display:"block",color:d}},[`${t}-banner`]:{marginBottom:0,border:"0 !important",borderRadius:0}}})(e),(e=>{let{componentCls:t,colorSuccess:n,colorSuccessBorder:r,colorSuccessBg:o,colorWarning:a,colorWarningBorder:i,colorWarningBg:l,colorError:c,colorErrorBorder:s,colorErrorBg:u,colorInfo:d,colorInfoBorder:f,colorInfoBg:p}=e;return{[t]:{"&-success":K(o,r,n,e,t),"&-info":K(p,f,d,e,t),"&-warning":K(l,i,a,e,t),"&-error":Object.assign(Object.assign({},K(u,s,c,e,t)),{[`${t}-description > pre`]:{margin:0,padding:0}})}}})(e),(e=>{let{componentCls:t,iconCls:n,motionDurationMid:r,marginXS:o,fontSizeIcon:a,colorIcon:i,colorIconHover:l}=e;return{[t]:{"&-action":{marginInlineStart:o},[`${t}-close-icon`]:{marginInlineStart:o,padding:0,overflow:"hidden",fontSize:a,lineHeight:(0,q.zA)(a),backgroundColor:"transparent",border:"none",outline:"none",cursor:"pointer",[`${n}-close`]:{color:i,transition:`color ${r}`,"&:hover":{color:l}}},"&-close-text":{color:i,transition:`color ${r}`,"&:hover":{color:l}}}}})(e)],e=>({withDescriptionIconSize:e.fontSizeHeading3,defaultPadding:`${e.paddingContentVerticalSM}px 12px`,withDescriptionPadding:`${e.paddingMD}px ${e.paddingContentHorizontalLG}px`}));var Y=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let U={success:I.A,info:B,error:j.A,warning:D},G=e=>{let{icon:t,prefixCls:n,type:r}=e,o=U[r]||null;return t?(0,W.fx)(t,p.createElement("span",{className:`${n}-icon`},t),()=>({className:h()(`${n}-icon`,t.props.className)})):p.createElement(o,{className:`${n}-icon`})},Q=e=>{let{isClosable:t,prefixCls:n,closeIcon:r,handleClose:o,ariaProps:a}=e,i=!0===r||void 0===r?p.createElement(z.A,null):r;return t?p.createElement("button",Object.assign({type:"button",onClick:o,className:`${n}-close-icon`,tabIndex:0},a),i):null},Z=p.forwardRef((e,t)=>{let{description:n,prefixCls:r,message:o,banner:a,className:i,rootClassName:l,style:c,onMouseEnter:s,onMouseLeave:u,onClick:d,afterClose:f,showIcon:m,closable:g,closeText:v,closeIcon:b,action:y,id:x}=e,$=Y(e,["description","prefixCls","message","banner","className","rootClassName","style","onMouseEnter","onMouseLeave","onClick","afterClose","showIcon","closable","closeText","closeIcon","action","id"]),[w,C]=p.useState(!1),S=p.useRef(null);p.useImperativeHandle(t,()=>({nativeElement:S.current}));let{getPrefixCls:k,direction:E,alert:O}=p.useContext(A.QO),M=k("alert",r),[N,I,j]=X(M),z=t=>{var n;C(!0),null==(n=e.onClose)||n.call(e,t)},R=p.useMemo(()=>void 0!==e.type?e.type:a?"warning":"info",[e.type,a]),P=p.useMemo(()=>"object"==typeof g&&!!g.closeIcon||!!v||("boolean"==typeof g?g:!1!==b&&null!=b||!!(null==O?void 0:O.closable)),[v,b,g,null==O?void 0:O.closable]),T=!!a&&void 0===m||m,D=h()(M,`${M}-${R}`,{[`${M}-with-description`]:!!n,[`${M}-no-icon`]:!T,[`${M}-banner`]:!!a,[`${M}-rtl`]:"rtl"===E},null==O?void 0:O.className,i,l,j,I),L=(0,H.A)($,{aria:!0,data:!0}),B=p.useMemo(()=>{var e,t;return"object"==typeof g&&g.closeIcon?g.closeIcon:v||(void 0!==b?b:"object"==typeof(null==O?void 0:O.closable)&&(null==(e=null==O?void 0:O.closable)?void 0:e.closeIcon)?null==(t=null==O?void 0:O.closable)?void 0:t.closeIcon:null==O?void 0:O.closeIcon)},[b,g,v,null==O?void 0:O.closeIcon]),W=p.useMemo(()=>{let e=null!=g?g:null==O?void 0:O.closable;if("object"==typeof e){let{closeIcon:t}=e;return Y(e,["closeIcon"])}return{}},[g,null==O?void 0:O.closable]);return N(p.createElement(F.Ay,{visible:!w,motionName:`${M}-motion`,motionAppear:!1,motionEnter:!1,onLeaveStart:e=>({maxHeight:e.offsetHeight}),onLeaveEnd:f},(t,r)=>{let{className:a,style:i}=t;return p.createElement("div",Object.assign({id:x,ref:(0,_.K4)(S,r),"data-show":!w,className:h()(D,a),style:Object.assign(Object.assign(Object.assign({},null==O?void 0:O.style),c),i),onMouseEnter:s,onMouseLeave:u,onClick:d,role:"alert"},L),T?p.createElement(G,{description:n,icon:e.icon,prefixCls:M,type:R}):null,p.createElement("div",{className:`${M}-content`},o?p.createElement("div",{className:`${M}-message`},o):null,n?p.createElement("div",{className:`${M}-description`},n):null),y?p.createElement("div",{className:`${M}-action`},y):null,p.createElement(Q,{isClosable:P,prefixCls:M,closeIcon:B,handleClose:z,ariaProps:W}))}))});var J=n(23029),ee=n(92901),et=n(39874),en=n(85501);let er=function(e){function t(){var e;return(0,J.A)(this,t),e=(0,et.A)(this,t,arguments),e.state={error:void 0,info:{componentStack:""}},e}return(0,en.A)(t,e),(0,ee.A)(t,[{key:"componentDidCatch",value:function(e,t){this.setState({error:e,info:t})}},{key:"render",value:function(){let{message:e,description:t,id:n,children:r}=this.props,{error:o,info:a}=this.state,i=(null==a?void 0:a.componentStack)||null,l=void 0===e?(o||"").toString():e;return o?p.createElement(Z,{id:n,type:"error",message:l,description:p.createElement("pre",{style:{fontSize:"0.9em",overflowX:"auto"}},void 0===t?i:t)}):r}}])}(p.Component);Z.ErrorBoundary=er;let eo=Z;var ea=n(26956);let ei=e=>"object"==typeof e&&null!=e&&1===e.nodeType,el=(e,t)=>(!t||"hidden"!==e)&&"visible"!==e&&"clip"!==e,ec=(e,t)=>{if(e.clientHeight{if(!e.ownerDocument||!e.ownerDocument.defaultView)return null;try{return e.ownerDocument.defaultView.frameElement}catch(e){return null}})(e))&&(n.clientHeightat||a>e&&i=t&&l>=n?a-e-r:i>t&&ln?i-t+o:0,eu=e=>{let t=e.parentElement;return null==t?e.getRootNode().host||null:t},ed=(e,t)=>{var n,r,o,a;let i;if("u"e!==u;if(!ei(e))throw TypeError("Invalid target");let p=document.scrollingElement||document.documentElement,m=[],g=e;for(;ei(g)&&f(g);){if((g=eu(g))===p){m.push(g);break}null!=g&&g===document.body&&ec(g)&&!ec(document.documentElement)||null!=g&&ec(g,d)&&m.push(g)}let h=null!=(r=null==(n=window.visualViewport)?void 0:n.width)?r:innerWidth,v=null!=(a=null==(o=window.visualViewport)?void 0:o.height)?a:innerHeight,{scrollX:b,scrollY:y}=window,{height:x,width:$,top:A,right:w,bottom:C,left:S}=e.getBoundingClientRect(),{top:k,right:E,bottom:O,left:M}={top:parseFloat((i=window.getComputedStyle(e)).scrollMarginTop)||0,right:parseFloat(i.scrollMarginRight)||0,bottom:parseFloat(i.scrollMarginBottom)||0,left:parseFloat(i.scrollMarginLeft)||0},N="start"===c||"nearest"===c?A-k:"end"===c?C+O:A+x/2-k+O,I="center"===s?S+$/2-M+E:"end"===s?w+E:S-M,j=[];for(let e=0;e=0&&S>=0&&C<=v&&w<=h&&(t===p&&!ec(t)||A>=o&&C<=i&&S>=u&&w<=a))break;let d=getComputedStyle(t),f=parseInt(d.borderLeftWidth,10),g=parseInt(d.borderTopWidth,10),k=parseInt(d.borderRightWidth,10),E=parseInt(d.borderBottomWidth,10),O=0,M=0,z="offsetWidth"in t?t.offsetWidth-t.clientWidth-f-k:0,R="offsetHeight"in t?t.offsetHeight-t.clientHeight-g-E:0,P="offsetWidth"in t?0===t.offsetWidth?0:r/t.offsetWidth:0,T="offsetHeight"in t?0===t.offsetHeight?0:n/t.offsetHeight:0;if(p===t)O="start"===c?N:"end"===c?N-v:"nearest"===c?es(y,y+v,v,g,E,y+N,y+N+x,x):N-v/2,M="start"===s?I:"center"===s?I-h/2:"end"===s?I-h:es(b,b+h,h,f,k,b+I,b+I+$,$),O=Math.max(0,O+y),M=Math.max(0,M+b);else{O="start"===c?N-o-g:"end"===c?N-i+E+R:"nearest"===c?es(o,i,n,g,E+R,N,N+x,x):N-(o+n/2)+R/2,M="start"===s?I-u-f:"center"===s?I-(u+r/2)+z/2:"end"===s?I-a+k+z:es(u,a,r,f,k+z,I,I+$,$);let{scrollLeft:e,scrollTop:l}=t;O=0===T?0:Math.max(0,Math.min(l+O/T,t.scrollHeight-n/T+R)),M=0===P?0:Math.max(0,Math.min(e+M/P,t.scrollWidth-r/P+z)),N+=l-O,I+=e-M}j.push({el:t,top:O,left:M})}return j};function ef(e,t){let n;if(!e.isConnected||!(e=>{let t=e;for(;t&&t.parentNode;){if(t.parentNode===document)return!0;t=t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}return!1})(e))return;let r={top:parseFloat((n=window.getComputedStyle(e)).scrollMarginTop)||0,right:parseFloat(n.scrollMarginRight)||0,bottom:parseFloat(n.scrollMarginBottom)||0,left:parseFloat(n.scrollMarginLeft)||0};if("object"==typeof t&&"function"==typeof t.behavior)return t.behavior(ed(e,t));let o="boolean"==typeof t||null==t?void 0:t.behavior;for(let{el:n,top:a,left:i}of ed(e,!1===t?{block:"end",inline:"nearest"}:t===Object(t)&&0!==Object.keys(t).length?t:{block:"start",inline:"nearest"})){let e=a-r.top+r.bottom,t=i-r.left+r.right;n.scroll({top:e,left:t,behavior:o})}}function ep(e){return null!=e&&e===e.window}let em=e=>{var t,n;if("u"1&&void 0!==arguments[1]?arguments[1]:{},{getContainer:n=()=>window,callback:r,duration:o=450}=t,a=n(),i=em(a),l=Date.now(),c=()=>{var t;let n,s=Date.now()-l,u=(t=s>o?o:s,n=e-i,(t/=o/2)<1?n/2*t*t*t+i:n/2*((t-=2)*t*t+2)+i);ep(a)?a.scrollTo(window.pageXOffset,u):a instanceof Document||"HTMLDocument"===a.constructor.name?a.documentElement.scrollTop=u:a.scrollTop=u,s{let{href:t,title:n,prefixCls:r,children:o,className:a,target:i,replace:l}=e,{registerLink:c,unregisterLink:s,scrollTo:u,onClick:d,activeLink:f,direction:m}=p.useContext(ev)||{};p.useEffect(()=>(null==c||c(t),()=>{null==s||s(t)}),[t]);let{getPrefixCls:g}=p.useContext(A.QO),v=g("anchor",r),b=f===t,y=h()(`${v}-link`,a,{[`${v}-link-active`]:b}),x=h()(`${v}-link-title`,{[`${v}-link-title-active`]:b});return p.createElement("div",{className:y},p.createElement("a",{className:x,href:t,title:"string"==typeof n?n:"",target:i,onClick:e=>{null==d||d(e,{title:n,href:t}),null==u||u(t),l&&(e.preventDefault(),window.location.replace(t))}},n),"horizontal"!==m?o:null)};var ey=n(10224);let ex=(0,w.OF)("Anchor",e=>{let{fontSize:t,fontSizeLG:n,paddingXXS:r,calc:o}=e,a=(0,ey.oX)(e,{holderOffsetBlock:r,anchorPaddingBlockSecondary:o(r).div(2).equal(),anchorTitleBlock:o(t).div(14).mul(3).equal(),anchorBallSize:o(n).div(2).equal()});return[(e=>{let{componentCls:t,holderOffsetBlock:n,motionDurationSlow:r,lineWidthBold:o,colorPrimary:a,lineType:i,colorSplit:l,calc:c}=e;return{[`${t}-wrapper`]:{marginBlockStart:c(n).mul(-1).equal(),paddingBlockStart:n,[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",paddingInlineStart:o,[`${t}-link`]:{paddingBlock:e.linkPaddingBlock,paddingInline:`${(0,q.zA)(e.linkPaddingInlineStart)} 0`,"&-title":Object.assign(Object.assign({},V.L9),{position:"relative",display:"block",marginBlockEnd:e.anchorTitleBlock,color:e.colorText,transition:`all ${e.motionDurationSlow}`,"&:only-child":{marginBlockEnd:0}}),[`&-active > ${t}-link-title`]:{color:e.colorPrimary},[`${t}-link`]:{paddingBlock:e.anchorPaddingBlockSecondary}}}),[`&:not(${t}-wrapper-horizontal)`]:{[t]:{"&::before":{position:"absolute",insetInlineStart:0,top:0,height:"100%",borderInlineStart:`${(0,q.zA)(o)} ${i} ${l}`,content:'" "'},[`${t}-ink`]:{position:"absolute",insetInlineStart:0,display:"none",transform:"translateY(-50%)",transition:`top ${r} ease-in-out`,width:o,backgroundColor:a,[`&${t}-ink-visible`]:{display:"inline-block"}}}},[`${t}-fixed ${t}-ink ${t}-ink`]:{display:"none"}}}})(a),(e=>{let{componentCls:t,motionDurationSlow:n,lineWidthBold:r,colorPrimary:o}=e;return{[`${t}-wrapper-horizontal`]:{position:"relative","&::before":{position:"absolute",left:{_skip_check_:!0,value:0},right:{_skip_check_:!0,value:0},bottom:0,borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,content:'" "'},[t]:{overflowX:"scroll",position:"relative",display:"flex",scrollbarWidth:"none","&::-webkit-scrollbar":{display:"none"},[`${t}-link:first-of-type`]:{paddingInline:0},[`${t}-ink`]:{position:"absolute",bottom:0,transition:`left ${n} ease-in-out, width ${n} ease-in-out`,height:r,backgroundColor:o}}}}})(a)]},e=>({linkPaddingBlock:e.paddingXXS,linkPaddingInlineStart:e.padding}));function e$(){return window}function eA(e,t){if(!e.getClientRects().length)return 0;let n=e.getBoundingClientRect();return n.width||n.height?t===window?n.top-e.ownerDocument.documentElement.clientTop:n.top-t.getBoundingClientRect().top:n.top}let ew=/#([\S ]+)$/,eC=e=>{var t;let{rootClassName:n,prefixCls:r,className:o,style:a,offsetTop:i,affix:l=!0,showInkInFixed:c=!1,children:s,items:u,direction:d="vertical",bounds:f,targetOffset:m,onClick:g,onChange:v,getContainer:b,getCurrentAnchor:x,replace:$}=e,[w,C]=p.useState([]),[S,k]=p.useState(null),E=p.useRef(S),O=p.useRef(null),M=p.useRef(null),I=p.useRef(!1),{direction:j,anchor:z,getTargetContainer:R,getPrefixCls:P}=p.useContext(A.QO),T=P("anchor",r),D=(0,eh.A)(T),[L,B,F]=ex(T,D),H=null!=(t=null!=b?b:R)?t:e$,_=JSON.stringify(w),W=(0,ea.A)(e=>{w.includes(e)||C(t=>[].concat((0,y.A)(t),[e]))}),q=(0,ea.A)(e=>{w.includes(e)&&C(t=>t.filter(t=>t!==e))}),V=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:5,r=[],o=H();return(e.forEach(e=>{let a=ew.exec(null==e?void 0:e.toString());if(!a)return;let i=document.getElementById(a[1]);if(i){let a=eA(i,o);a<=t+n&&r.push({link:e,top:a})}}),r.length)?r.reduce((e,t)=>t.top>e.top?t:e).link:""},K=(0,ea.A)(e=>{if(E.current===e)return;let t="function"==typeof x?x(e):e;k(t),E.current=t,null==v||v(e)}),X=p.useCallback(()=>{I.current||K(V(w,void 0!==m?m:i||0,f))},[_,m,i]),Y=p.useCallback(e=>{K(e);let t=ew.exec(e);if(!t)return;let n=document.getElementById(t[1]);if(!n)return;let r=H(),o=em(r)+eA(n,r);o-=void 0!==m?m:i||0,I.current=!0,eg(o,{getContainer:H,callback(){I.current=!1}})},[m,i]),U=h()(B,F,D,n,`${T}-wrapper`,{[`${T}-wrapper-horizontal`]:"horizontal"===d,[`${T}-rtl`]:"rtl"===j},o,null==z?void 0:z.className),G=h()(T,{[`${T}-fixed`]:!l&&!c}),Q=h()(`${T}-ink`,{[`${T}-ink-visible`]:S}),Z=Object.assign(Object.assign({maxHeight:i?`calc(100vh - ${i}px)`:"100vh"},null==z?void 0:z.style),a),J=e=>Array.isArray(e)?e.map(e=>p.createElement(eb,Object.assign({replace:$},e,{key:e.key}),"vertical"===d&&J(e.children))):null,ee=p.createElement("div",{ref:O,className:U,style:Z},p.createElement("div",{className:G},p.createElement("span",{className:Q,ref:M}),"items"in e?J(u):s));p.useEffect(()=>{let e=H();return X(),null==e||e.addEventListener("scroll",X),()=>{null==e||e.removeEventListener("scroll",X)}},[_]),p.useEffect(()=>{"function"==typeof x&&K(x(E.current||""))},[x]),p.useEffect(()=>{(()=>{var e;let t=null==(e=O.current)?void 0:e.querySelector(`.${T}-link-title-active`);if(t&&M.current){let{style:e}=M.current,n="horizontal"===d;e.top=n?"":`${t.offsetTop+t.clientHeight/2}px`,e.height=n?"":`${t.clientHeight}px`,e.left=n?`${t.offsetLeft}px`:"",e.width=n?`${t.clientWidth}px`:"",n&&ef(t,{scrollMode:"if-needed",block:"nearest"})}})()},[d,x,_,S]);let et=p.useMemo(()=>({registerLink:W,unregisterLink:q,scrollTo:Y,activeLink:S,onClick:g,direction:d}),[S,g,Y,d]);return L(p.createElement(ev.Provider,{value:et},l?p.createElement(N,Object.assign({offsetTop:i,target:H},l&&"object"==typeof l?l:void 0),ee):ee))};eC.Link=eb;let eS=eC;var ek=n(18877),eE=n(57046),eO=n(80045),eM=n(89379),eN=n(25765),eI=n.n(eN),ej=n(64467),ez=n(82284),eR=n(16928),eP=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.style,o=e.className,a=e.duration,i=void 0===a?4.5:a,l=e.showProgress,c=e.pauseOnHover,s=void 0===c||c,u=e.eventKey,d=e.content,f=e.closable,m=e.closeIcon,g=void 0===m?"x":m,v=e.props,b=e.onClick,y=e.onNoticeClose,x=e.times,$=e.hovering,A=p.useState(!1),w=(0,eE.A)(A,2),C=w[0],S=w[1],k=p.useState(0),E=(0,eE.A)(k,2),O=E[0],M=E[1],N=p.useState(0),I=(0,eE.A)(N,2),j=I[0],z=I[1],P=$||C,T=i>0&&l,D=function(){y(u)};p.useEffect(function(){if(!P&&i>0){var e=Date.now()-j,t=setTimeout(function(){D()},1e3*i-j);return function(){s&&clearTimeout(t),z(Date.now()-e)}}},[i,P,x]),p.useEffect(function(){if(!P&&T&&(s||0===j)){var e,t=performance.now();return!function n(){cancelAnimationFrame(e),e=requestAnimationFrame(function(e){var r=Math.min((e+j-t)/(1e3*i),1);M(100*r),r<1&&n()})}(),function(){s&&cancelAnimationFrame(e)}}},[i,j,P,T,x]);var L=p.useMemo(function(){return"object"===(0,ez.A)(f)&&null!==f?f:f?{closeIcon:g}:{}},[f,g]),B=(0,H.A)(L,!0),F=100-(!O||O<0?0:O>100?100:O),_="".concat(n,"-notice");return p.createElement("div",(0,R.A)({},v,{ref:t,className:h()(_,o,(0,ej.A)({},"".concat(_,"-closable"),f)),style:r,onMouseEnter:function(e){var t;S(!0),null==v||null==(t=v.onMouseEnter)||t.call(v,e)},onMouseLeave:function(e){var t;S(!1),null==v||null==(t=v.onMouseLeave)||t.call(v,e)},onClick:b}),p.createElement("div",{className:"".concat(_,"-content")},d),f&&p.createElement("a",(0,R.A)({tabIndex:0,className:"".concat(_,"-close"),onKeyDown:function(e){("Enter"===e.key||"Enter"===e.code||e.keyCode===eR.A.ENTER)&&D()},"aria-label":"Close"},B,{onClick:function(e){e.preventDefault(),e.stopPropagation(),D()}}),L.closeIcon),T&&p.createElement("progress",{className:"".concat(_,"-progress"),max:"100",value:F},F+"%"))}),eT=m().createContext({});let eD=function(e){var t=e.children,n=e.classNames;return m().createElement(eT.Provider,{value:{classNames:n}},t)},eL=function(e){var t,n,r,o={offset:8,threshold:3,gap:16};return e&&"object"===(0,ez.A)(e)&&(o.offset=null!=(t=e.offset)?t:8,o.threshold=null!=(n=e.threshold)?n:3,o.gap=null!=(r=e.gap)?r:16),[!!e,o]};var eB=["className","style","classNames","styles"];let eF=function(e){var t=e.configList,n=e.placement,r=e.prefixCls,o=e.className,a=e.style,i=e.motion,l=e.onAllNoticeRemoved,c=e.onNoticeClose,s=e.stack,u=(0,p.useContext)(eT).classNames,d=(0,p.useRef)({}),f=(0,p.useState)(null),g=(0,eE.A)(f,2),v=g[0],b=g[1],x=(0,p.useState)([]),$=(0,eE.A)(x,2),A=$[0],w=$[1],C=t.map(function(e){return{config:e,key:String(e.key)}}),S=eL(s),k=(0,eE.A)(S,2),E=k[0],O=k[1],M=O.offset,N=O.threshold,I=O.gap,j=E&&(A.length>0||C.length<=N),z="function"==typeof i?i(n):i;return(0,p.useEffect)(function(){E&&A.length>1&&w(function(e){return e.filter(function(e){return C.some(function(t){return e===t.key})})})},[A,C,E]),(0,p.useEffect)(function(){var e,t;E&&d.current[null==(e=C[C.length-1])?void 0:e.key]&&b(d.current[null==(t=C[C.length-1])?void 0:t.key])},[C,E]),m().createElement(F.aF,(0,R.A)({key:n,className:h()(r,"".concat(r,"-").concat(n),null==u?void 0:u.list,o,(0,ej.A)((0,ej.A)({},"".concat(r,"-stack"),!!E),"".concat(r,"-stack-expanded"),j)),style:a,keys:C,motionAppear:!0},z,{onAllRemoved:function(){l(n)}}),function(e,t){var o=e.config,a=e.className,i=e.style,l=e.index,s=o.key,f=o.times,p=String(s),g=o.className,b=o.style,x=o.classNames,$=o.styles,S=(0,eO.A)(o,eB),k=C.findIndex(function(e){return e.key===p}),O={};if(E){var N=C.length-1-(k>-1?k:l-1),z="top"===n||"bottom"===n?"-50%":"0";if(N>0){O.height=j?null==(P=d.current[p])?void 0:P.offsetHeight:null==v?void 0:v.offsetHeight;for(var P,T,D,L,B=0,F=0;F-1?d.current[p]=e:delete d.current[p]},prefixCls:r,classNames:x,styles:$,className:h()(g,null==u?void 0:u.notice),style:b,times:f,key:s,eventKey:s,onNoticeClose:c,hovering:E&&A.length>0})))})};var eH=p.forwardRef(function(e,t){var n=e.prefixCls,r=void 0===n?"rc-notification":n,o=e.container,a=e.motion,i=e.maxCount,l=e.className,c=e.style,s=e.onAllRemoved,u=e.stack,d=e.renderNotifications,f=p.useState([]),m=(0,eE.A)(f,2),g=m[0],h=m[1],v=function(e){var t,n=g.find(function(t){return t.key===e});null==n||null==(t=n.onClose)||t.call(n),h(function(t){return t.filter(function(t){return t.key!==e})})};p.useImperativeHandle(t,function(){return{open:function(e){h(function(t){var n,r=(0,y.A)(t),o=r.findIndex(function(t){return t.key===e.key}),a=(0,eM.A)({},e);return o>=0?(a.times=((null==(n=t[o])?void 0:n.times)||0)+1,r[o]=a):(a.times=0,r.push(a)),i>0&&r.length>i&&(r=r.slice(-i)),r})},close:function(e){v(e)},destroy:function(){h([])}}});var b=p.useState({}),x=(0,eE.A)(b,2),$=x[0],A=x[1];p.useEffect(function(){var e={};g.forEach(function(t){var n=t.placement,r=void 0===n?"topRight":n;r&&(e[r]=e[r]||[],e[r].push(t))}),Object.keys($).forEach(function(t){e[t]=e[t]||[]}),A(e)},[g]);var w=function(e){A(function(t){var n=(0,eM.A)({},t);return(n[e]||[]).length||delete n[e],n})},C=p.useRef(!1);if(p.useEffect(function(){Object.keys($).length>0?C.current=!0:C.current&&(null==s||s(),C.current=!1)},[$]),!o)return null;var S=Object.keys($);return(0,eN.createPortal)(p.createElement(p.Fragment,null,S.map(function(e){var t=$[e],n=p.createElement(eF,{key:e,configList:t,placement:e,prefixCls:r,className:null==l?void 0:l(e),style:null==c?void 0:c(e),motion:a,onNoticeClose:v,onAllNoticeRemoved:w,stack:u});return d?d(n,{prefixCls:r,key:e}):n})),o)}),e_=n(81470),eW=["getContainer","motion","prefixCls","maxCount","className","style","onAllRemoved","stack","renderNotifications"],eq=function(){return document.body},eV=0;function eK(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.getContainer,n=void 0===t?eq:t,r=e.motion,o=e.prefixCls,a=e.maxCount,i=e.className,l=e.style,c=e.onAllRemoved,s=e.stack,u=e.renderNotifications,d=(0,eO.A)(e,eW),f=p.useState(),m=(0,eE.A)(f,2),g=m[0],h=m[1],v=p.useRef(),b=p.createElement(eH,{container:g,ref:v,prefixCls:o,motion:r,maxCount:a,className:i,style:l,onAllRemoved:c,stack:s,renderNotifications:u}),x=p.useState([]),$=(0,eE.A)(x,2),A=$[0],w=$[1],C=(0,e_._q)(function(e){var t=function(){for(var e={},t=arguments.length,n=Array(t),r=0;r[(e=>{let{componentCls:t,iconCls:n,boxShadow:r,colorText:o,colorSuccess:a,colorError:i,colorWarning:l,colorInfo:c,fontSizeLG:s,motionEaseInOutCirc:u,motionDurationSlow:d,marginXS:f,paddingXS:p,borderRadiusLG:m,zIndexPopup:g,contentPadding:h,contentBg:v}=e,b=`${t}-notice`,y=new q.Mo("MessageMoveIn",{"0%":{padding:0,transform:"translateY(-100%)",opacity:0},"100%":{padding:p,transform:"translateY(0)",opacity:1}}),x=new q.Mo("MessageMoveOut",{"0%":{maxHeight:e.height,padding:p,opacity:1},"100%":{maxHeight:0,padding:0,opacity:0}}),$={padding:p,textAlign:"center",[`${t}-custom-content`]:{display:"flex",alignItems:"center"},[`${t}-custom-content > ${n}`]:{marginInlineEnd:f,fontSize:s},[`${b}-content`]:{display:"inline-block",padding:h,background:v,borderRadius:m,boxShadow:r,pointerEvents:"all"},[`${t}-success > ${n}`]:{color:a},[`${t}-error > ${n}`]:{color:i},[`${t}-warning > ${n}`]:{color:l},[`${t}-info > ${n}, - ${t}-loading > ${n}`]:{color:c}};return[{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{color:o,position:"fixed",top:f,width:"100%",pointerEvents:"none",zIndex:g,[`${t}-move-up`]:{animationFillMode:"forwards"},[` - ${t}-move-up-appear, - ${t}-move-up-enter - `]:{animationName:y,animationDuration:d,animationPlayState:"paused",animationTimingFunction:u},[` - ${t}-move-up-appear${t}-move-up-appear-active, - ${t}-move-up-enter${t}-move-up-enter-active - `]:{animationPlayState:"running"},[`${t}-move-up-leave`]:{animationName:x,animationDuration:d,animationPlayState:"paused",animationTimingFunction:u},[`${t}-move-up-leave${t}-move-up-leave-active`]:{animationPlayState:"running"},"&-rtl":{direction:"rtl",span:{direction:"rtl"}}})},{[t]:{[`${b}-wrapper`]:Object.assign({},$)}},{[`${t}-notice-pure-panel`]:Object.assign(Object.assign({},$),{padding:0,textAlign:"start"})}]})((0,ey.oX)(e,{height:150}))],e=>({zIndexPopup:e.zIndexPopupBase+eY.jH+10,contentBg:e.colorBgElevated,contentPadding:`${(e.controlHeightLG-e.fontSize*e.lineHeight)/2}px ${e.paddingSM}px`}));var eG=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let eQ={info:p.createElement(B,null),success:p.createElement(I.A,null),error:p.createElement(j.A,null),warning:p.createElement(D,null),loading:p.createElement(eX.A,null)},eZ=e=>{let{prefixCls:t,type:n,icon:r,children:o}=e;return p.createElement("div",{className:h()(`${t}-custom-content`,`${t}-${n}`)},r||eQ[n],p.createElement("span",null,o))};function eJ(e){let t,n=new Promise(n=>{t=e(()=>{n(!0)})}),r=()=>{null==t||t()};return r.then=(e,t)=>n.then(e,t),r.promise=n,r}var e0=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let e1=e=>{let{children:t,prefixCls:n}=e,r=(0,eh.A)(n),[o,a,i]=eU(n,r);return o(p.createElement(eD,{classNames:{list:h()(a,i,r)}},t))},e2=(e,t)=>{let{prefixCls:n,key:r}=t;return p.createElement(e1,{prefixCls:n,key:r},e)},e4=p.forwardRef((e,t)=>{let{top:n,prefixCls:r,getContainer:o,maxCount:a,duration:i=3,rtl:l,transitionName:c,onAllRemoved:s}=e,{getPrefixCls:u,getPopupContainer:d,message:f,direction:m}=p.useContext(A.QO),g=r||u("message"),v=p.createElement("span",{className:`${g}-close-x`},p.createElement(z.A,{className:`${g}-close-icon`})),[b,y]=eK({prefixCls:g,style:()=>({left:"50%",transform:"translateX(-50%)",top:null!=n?n:8}),className:()=>h()({[`${g}-rtl`]:null!=l?l:"rtl"===m}),motion:()=>({motionName:null!=c?c:`${g}-move-up`}),closable:!1,closeIcon:v,duration:i,getContainer:()=>(null==o?void 0:o())||(null==d?void 0:d())||document.body,maxCount:a,onAllRemoved:s,renderNotifications:e2});return p.useImperativeHandle(t,()=>Object.assign(Object.assign({},b),{prefixCls:g,message:f})),y}),e3=0;function e6(e){let t=p.useRef(null);return(0,ek.rJ)("Message"),[p.useMemo(()=>{let e=e=>{var n;null==(n=t.current)||n.close(e)},n=n=>{if(!t.current){let e=()=>{};return e.then=()=>{},e}let{open:r,prefixCls:o,message:a}=t.current,i=`${o}-notice`,{content:l,icon:c,type:s,key:u,className:d,style:f,onClose:m}=n,g=e0(n,["content","icon","type","key","className","style","onClose"]),v=u;return null==v&&(e3+=1,v=`antd-message-${e3}`),eJ(t=>(r(Object.assign(Object.assign({},g),{key:v,content:p.createElement(eZ,{prefixCls:o,type:s,icon:c},l),placement:"top",className:h()(s&&`${i}-${s}`,d,null==a?void 0:a.className),style:Object.assign(Object.assign({},null==a?void 0:a.style),f),onClose:()=>{null==m||m(),t()}})),()=>{e(v)}))},r={open:n,destroy:n=>{var r;void 0!==n?e(n):null==(r=t.current)||r.destroy()}};return["info","success","warning","error","loading"].forEach(e=>{r[e]=(t,r,o)=>{let a,i,l;return a=t&&"object"==typeof t&&"content"in t?t:{content:t},"function"==typeof r?l=r:(i=r,l=o),n(Object.assign(Object.assign({onClose:l,duration:i},a),{type:e}))}}),r},[]),p.createElement(e4,Object.assign({key:"message-holder"},e,{ref:t}))]}var e8=n(61053),e5=n(28104),e7=n(20488);let e9=(0,p.createContext)(void 0);var te=n(8182);let tt=Object.assign({},te.A.Modal),tn=[],tr=()=>tn.reduce((e,t)=>Object.assign(Object.assign({},e),t),te.A.Modal);var to=n(60685);let ta=e=>{let{locale:t={},children:n,_ANT_MARK__:r}=e;p.useEffect(()=>(function(e){if(e){let t=Object.assign({},e);return tn.push(t),tt=tr(),()=>{tn=tn.filter(e=>e!==t),tt=tr()}}tt=Object.assign({},te.A.Modal)})(null==t?void 0:t.Modal),[t]);let o=p.useMemo(()=>Object.assign(Object.assign({},t),{exist:!0}),[t]);return p.createElement(to.A.Provider,{value:o},n)};var ti=n(49806),tl=n(50723),tc=n(16124),ts=n(29128),tu=n(20998),td=n(85089);let tf=`-ant-${Date.now()}-${Math.random()}`;var tp=n(98119),tm=n(48224),tg=n(43210);let{useId:th}=Object.assign({},p),tv=void 0===th?()=>"":th;var tb=n(93093);function ty(e){let{children:t}=e,[,n]=(0,tb.Ay)(),{motion:r}=n,o=p.useRef(!1);return(o.current=o.current||!1===r,o.current)?p.createElement(F.Kq,{motion:r},t):t}let tx=()=>null;var t$=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let tA=["getTargetContainer","getPopupContainer","renderEmpty","input","pagination","form","select","button"];function tw(){return r||A.yH}function tC(){return o||A.pM}let tS=()=>({getPrefixCls:(e,t)=>t||(e?`${tw()}-${e}`:tw()),getIconPrefixCls:tC,getRootPrefixCls:()=>r||tw(),getTheme:()=>a,holderRender:i}),tk=e=>{var t,n,r;let o,a,i,{children:l,csp:c,autoInsertSpaceInButton:s,alert:u,anchor:d,form:f,locale:m,componentSize:g,direction:h,space:v,splitter:b,virtual:y,dropdownMatchSelectWidth:x,popupMatchSelectWidth:$,popupOverflow:w,legacyLocale:C,parentContext:S,iconPrefixCls:k,theme:E,componentDisabled:O,segmented:M,statistic:N,spin:I,calendar:j,carousel:z,cascader:R,collapse:P,typography:T,checkbox:D,descriptions:L,divider:B,drawer:F,skeleton:H,steps:_,image:W,layout:K,list:X,mentions:Y,modal:U,progress:G,result:Q,slider:Z,breadcrumb:J,menu:ee,pagination:et,input:en,textArea:er,empty:eo,badge:ea,radio:ei,rate:el,switch:ec,transfer:es,avatar:eu,message:ed,tag:ef,table:ep,card:em,tabs:eg,timeline:eh,timePicker:ev,upload:eb,notification:ey,tree:ex,colorPicker:e$,datePicker:eA,rangePicker:ew,flex:eC,wave:eS,dropdown:eE,warning:eO,tour:eM,floatButtonGroup:eN,variant:eI,inputNumber:ej,treeSelect:ez}=e,eR=p.useCallback((t,n)=>{let{prefixCls:r}=e;if(n)return n;let o=r||S.getPrefixCls("");return t?`${o}-${t}`:o},[S.getPrefixCls,e.prefixCls]),eP=k||S.iconPrefixCls||A.pM,eT=c||S.csp;((e,t)=>{let[n,r]=(0,tb.Ay)();return(0,q.IV)({theme:n,token:r,hashId:"",path:["ant-design-icons",e],nonce:()=>null==t?void 0:t.nonce,layer:{name:"antd"}},()=>[(0,V.jz)(e)])})(eP,eT);let eD=(t=S.theme,n={prefixCls:eR("")},(0,ek.rJ)("ConfigProvider"),a=!1!==(o=E||{}).inherit&&t?t:Object.assign(Object.assign({},ti.sb),{hashed:null!=(r=null==t?void 0:t.hashed)?r:ti.sb.hashed,cssVar:null==t?void 0:t.cssVar}),i=tv(),(0,e5.A)(()=>{var e,r;if(!E)return t;let l=Object.assign({},a.components);Object.keys(E.components||{}).forEach(e=>{l[e]=Object.assign(Object.assign({},l[e]),E.components[e])});let c=`css-var-${i.replace(/:/g,"")}`,s=(null!=(e=o.cssVar)?e:a.cssVar)&&Object.assign(Object.assign(Object.assign({prefix:null==n?void 0:n.prefixCls},"object"==typeof a.cssVar?a.cssVar:{}),"object"==typeof o.cssVar?o.cssVar:{}),{key:"object"==typeof o.cssVar&&(null==(r=o.cssVar)?void 0:r.key)||c});return Object.assign(Object.assign(Object.assign({},a),o),{token:Object.assign(Object.assign({},a.token),o.token),components:l,cssVar:s})},[o,a],(e,t)=>e.some((e,n)=>{let r=t[n];return!(0,tg.A)(e,r,!0)}))),eL={csp:eT,autoInsertSpaceInButton:s,alert:u,anchor:d,locale:m||C,direction:h,space:v,splitter:b,virtual:y,popupMatchSelectWidth:null!=$?$:x,popupOverflow:w,getPrefixCls:eR,iconPrefixCls:eP,theme:eD,segmented:M,statistic:N,spin:I,calendar:j,carousel:z,cascader:R,collapse:P,typography:T,checkbox:D,descriptions:L,divider:B,drawer:F,skeleton:H,steps:_,image:W,input:en,textArea:er,layout:K,list:X,mentions:Y,modal:U,progress:G,result:Q,slider:Z,breadcrumb:J,menu:ee,pagination:et,empty:eo,badge:ea,radio:ei,rate:el,switch:ec,transfer:es,avatar:eu,message:ed,tag:ef,table:ep,card:em,tabs:eg,timeline:eh,timePicker:ev,upload:eb,notification:ey,tree:ex,colorPicker:e$,datePicker:eA,rangePicker:ew,flex:eC,wave:eS,dropdown:eE,warning:eO,tour:eM,floatButtonGroup:eN,variant:eI,inputNumber:ej,treeSelect:ez},eB=Object.assign({},S);Object.keys(eL).forEach(e=>{void 0!==eL[e]&&(eB[e]=eL[e])}),tA.forEach(t=>{let n=e[t];n&&(eB[t]=n)}),void 0!==s&&(eB.button=Object.assign({autoInsertSpace:s},eB.button));let eF=(0,e5.A)(()=>eB,eB,(e,t)=>{let n=Object.keys(e),r=Object.keys(t);return n.length!==r.length||n.some(n=>e[n]!==t[n])}),eH=p.useMemo(()=>({prefixCls:eP,csp:eT}),[eP,eT]),e_=p.createElement(p.Fragment,null,p.createElement(tx,{dropdownMatchSelectWidth:x}),l),eW=p.useMemo(()=>{var e,t,n,r;return(0,e7.h)((null==(e=te.A.Form)?void 0:e.defaultValidateMessages)||{},(null==(n=null==(t=eF.locale)?void 0:t.Form)?void 0:n.defaultValidateMessages)||{},(null==(r=eF.form)?void 0:r.validateMessages)||{},(null==f?void 0:f.validateMessages)||{})},[eF,null==f?void 0:f.validateMessages]);Object.keys(eW).length>0&&(e_=p.createElement(e9.Provider,{value:eW},e_)),m&&(e_=p.createElement(ta,{locale:m,_ANT_MARK__:"internalMark"},e_)),(eP||eT)&&(e_=p.createElement(e8.A.Provider,{value:eH},e_)),g&&(e_=p.createElement(tm.c,{size:g},e_)),e_=p.createElement(ty,null,e_);let eq=p.useMemo(()=>{let e=eD||{},{algorithm:t,token:n,components:r,cssVar:o}=e,a=t$(e,["algorithm","token","components","cssVar"]),i=t&&(!Array.isArray(t)||t.length>0)?(0,q.an)(t):ti.zQ,l={};Object.entries(r||{}).forEach(e=>{let[t,n]=e,r=Object.assign({},n);"algorithm"in r&&(!0===r.algorithm?r.theme=i:(Array.isArray(r.algorithm)||"function"==typeof r.algorithm)&&(r.theme=(0,q.an)(r.algorithm)),delete r.algorithm),l[t]=r});let c=Object.assign(Object.assign({},tl.A),n);return Object.assign(Object.assign({},a),{theme:i,token:c,components:l,override:Object.assign({override:c},l),cssVar:o})},[eD]);return E&&(e_=p.createElement(ti.vG.Provider,{value:eq},e_)),eF.warning&&(e_=p.createElement(ek._n.Provider,{value:eF.warning},e_)),void 0!==O&&(e_=p.createElement(tp.X,{disabled:O},e_)),p.createElement(A.QO.Provider,{value:eF},e_)},tE=e=>{let t=p.useContext(A.QO),n=p.useContext(to.A);return p.createElement(tk,Object.assign({parentContext:t,legacyLocale:n},e))};tE.ConfigContext=A.QO,tE.SizeContext=tm.A,tE.config=e=>{let{prefixCls:t,iconPrefixCls:n,theme:l,holderRender:c}=e;if(void 0!==t&&(r=t),void 0!==n&&(o=n),"holderRender"in e&&(i=c),l)if(Object.keys(l).some(e=>e.endsWith("Color"))){let e;e=function(e,t){let n={},r=(e,t)=>{let n=e.clone();return(n=(null==t?void 0:t(n))||n).toRgbString()},o=(e,t)=>{let o=new ts.q(e),a=(0,tc.generate)(o.toRgbString());n[`${t}-color`]=r(o),n[`${t}-color-disabled`]=a[1],n[`${t}-color-hover`]=a[4],n[`${t}-color-active`]=a[6],n[`${t}-color-outline`]=o.clone().setAlpha(.2).toRgbString(),n[`${t}-color-deprecated-bg`]=a[0],n[`${t}-color-deprecated-border`]=a[2]};if(t.primaryColor){o(t.primaryColor,"primary");let e=new ts.q(t.primaryColor),a=(0,tc.generate)(e.toRgbString());a.forEach((e,t)=>{n[`primary-${t+1}`]=e}),n["primary-color-deprecated-l-35"]=r(e,e=>e.lighten(35)),n["primary-color-deprecated-l-20"]=r(e,e=>e.lighten(20)),n["primary-color-deprecated-t-20"]=r(e,e=>e.tint(20)),n["primary-color-deprecated-t-50"]=r(e,e=>e.tint(50)),n["primary-color-deprecated-f-12"]=r(e,e=>e.setAlpha(.12*e.getAlpha()));let i=new ts.q(a[0]);n["primary-color-active-deprecated-f-30"]=r(i,e=>e.setAlpha(.3*e.getAlpha())),n["primary-color-active-deprecated-d-02"]=r(i,e=>e.darken(2))}t.successColor&&o(t.successColor,"success"),t.warningColor&&o(t.warningColor,"warning"),t.errorColor&&o(t.errorColor,"error"),t.infoColor&&o(t.infoColor,"info");let a=Object.keys(n).map(t=>`--${e}-${t}: ${n[t]};`);return` - :root { - ${a.join("\n")} - } - `.trim()}(tw(),l),(0,tu.A)()&&(0,td.BD)(e,`${tf}-dynamic-theme`)}else a=l},tE.useConfig=function(){return{componentDisabled:(0,p.useContext)(tp.A),componentSize:(0,p.useContext)(tm.A)}},Object.defineProperty(tE,"SizeContext",{get:()=>tm.A});let tO=tE;var tM=n(99871),tN=n(23723),tI=n(19155),tj=n(1233),tz=n(81583),tR=n(39449);function tP(e){return!!(null==e?void 0:e.then)}let tT=e=>{let{type:t,children:n,prefixCls:r,buttonProps:o,close:a,autoFocus:i,emitEvent:l,isSilent:c,quitOnNullishReturnValue:s,actionFn:u}=e,d=p.useRef(!1),f=p.useRef(null),[m,g]=(0,tj.A)(!1),h=function(){null==a||a.apply(void 0,arguments)};return p.useEffect(()=>{let e=null;return i&&(e=setTimeout(()=>{var e;null==(e=f.current)||e.focus({preventScroll:!0})})),()=>{e&&clearTimeout(e)}},[]),p.createElement(tz.Ay,Object.assign({},(0,tR.DU)(t),{onClick:e=>{let t;if(!d.current){var n;if(d.current=!0,!u)return void h();if(l){if(t=u(e),s&&!tP(t)){d.current=!1,h(e);return}}else if(u.length)t=u(a),d.current=!1;else if(!tP(t=u()))return void h();tP(n=t)&&(g(!0),n.then(function(){g(!1,!0),h.apply(void 0,arguments),d.current=!1},e=>{if(g(!1,!0),d.current=!1,null==c||!c())return Promise.reject(e)}))}},loading:m,prefixCls:r},o,{ref:f}),n)},tD=m().createContext({}),{Provider:tL}=tD,tB=()=>{let{autoFocusButton:e,cancelButtonProps:t,cancelTextLocale:n,isSilent:r,mergedOkCancel:o,rootPrefixCls:a,close:i,onCancel:l,onConfirm:c}=(0,p.useContext)(tD);return o?m().createElement(tT,{isSilent:r,actionFn:l,close:function(){null==i||i.apply(void 0,arguments),null==c||c(!1)},autoFocus:"cancel"===e,buttonProps:t,prefixCls:`${a}-btn`},n):null},tF=()=>{let{autoFocusButton:e,close:t,isSilent:n,okButtonProps:r,rootPrefixCls:o,okTextLocale:a,okType:i,onConfirm:l,onOk:c}=(0,p.useContext)(tD);return m().createElement(tT,{isSilent:n,type:i||"primary",actionFn:c,close:function(){null==t||t.apply(void 0,arguments),null==l||l(!0)},autoFocus:"ok"===e,buttonProps:r,prefixCls:`${o}-btn`},a)};var tH=n(49970),t_=p.createContext({}),tW=n(54808),tq=n(56855);function tV(e,t,n){var r=t;return!r&&n&&(r="".concat(e,"-").concat(n)),r}function tK(e,t){var n=e["page".concat(t?"Y":"X","Offset")],r="scroll".concat(t?"Top":"Left");if("number"!=typeof n){var o=e.document;"number"!=typeof(n=o.documentElement[r])&&(n=o.body[r])}return n}let tX=p.memo(function(e){return e.children},function(e,t){return!t.shouldUpdate});var tY={width:0,height:0,overflow:"hidden",outline:"none"},tU={outline:"none"},tG=m().forwardRef(function(e,t){var n=e.prefixCls,r=e.className,o=e.style,a=e.title,i=e.ariaId,l=e.footer,c=e.closable,s=e.closeIcon,u=e.onClose,d=e.children,f=e.bodyStyle,g=e.bodyProps,v=e.modalRender,b=e.onMouseDown,y=e.onMouseUp,x=e.holderRef,$=e.visible,A=e.forceRender,w=e.width,C=e.height,S=e.classNames,k=e.styles,E=m().useContext(t_).panel,O=(0,_.xK)(x,E),M=(0,p.useRef)(),N=(0,p.useRef)();m().useImperativeHandle(t,function(){return{focus:function(){var e;null==(e=M.current)||e.focus({preventScroll:!0})},changeActive:function(e){var t=document.activeElement;e&&t===N.current?M.current.focus({preventScroll:!0}):e||t!==M.current||N.current.focus({preventScroll:!0})}}});var I={};void 0!==w&&(I.width=w),void 0!==C&&(I.height=C);var j=l?m().createElement("div",{className:h()("".concat(n,"-footer"),null==S?void 0:S.footer),style:(0,eM.A)({},null==k?void 0:k.footer)},l):null,z=a?m().createElement("div",{className:h()("".concat(n,"-header"),null==S?void 0:S.header),style:(0,eM.A)({},null==k?void 0:k.header)},m().createElement("div",{className:"".concat(n,"-title"),id:i},a)):null,P=(0,p.useMemo)(function(){return"object"===(0,ez.A)(c)&&null!==c?c:c?{closeIcon:null!=s?s:m().createElement("span",{className:"".concat(n,"-close-x")})}:{}},[c,s,n]),T=(0,H.A)(P,!0),D="object"===(0,ez.A)(c)&&c.disabled,L=c?m().createElement("button",(0,R.A)({type:"button",onClick:u,"aria-label":"Close"},T,{className:"".concat(n,"-close"),disabled:D}),P.closeIcon):null,B=m().createElement("div",{className:h()("".concat(n,"-content"),null==S?void 0:S.content),style:null==k?void 0:k.content},L,z,m().createElement("div",(0,R.A)({className:h()("".concat(n,"-body"),null==S?void 0:S.body),style:(0,eM.A)((0,eM.A)({},f),null==k?void 0:k.body)},g),d),j);return m().createElement("div",{key:"dialog-element",role:"dialog","aria-labelledby":a?i:null,"aria-modal":"true",ref:O,style:(0,eM.A)((0,eM.A)({},o),I),className:h()(n,r),onMouseDown:b,onMouseUp:y},m().createElement("div",{ref:M,tabIndex:0,style:tU},m().createElement(tX,{shouldUpdate:$||A},v?v(B):B)),m().createElement("div",{tabIndex:0,ref:N,style:tY}))}),tQ=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.title,o=e.style,a=e.className,i=e.visible,l=e.forceRender,c=e.destroyOnClose,s=e.motionName,u=e.ariaId,d=e.onVisibleChanged,f=e.mousePosition,m=(0,p.useRef)(),g=p.useState(),v=(0,eE.A)(g,2),b=v[0],y=v[1],x={};function $(){var e,t,n,r,o,a=(n={left:(t=(e=m.current).getBoundingClientRect()).left,top:t.top},o=(r=e.ownerDocument).defaultView||r.parentWindow,n.left+=tK(o),n.top+=tK(o,!0),n);y(f&&(f.x||f.y)?"".concat(f.x-a.left,"px ").concat(f.y-a.top,"px"):"")}return b&&(x.transformOrigin=b),p.createElement(F.Ay,{visible:i,onVisibleChanged:d,onAppearPrepare:$,onEnterPrepare:$,forceRender:l,motionName:s,removeOnLeave:c,ref:m},function(i,l){var c=i.className,s=i.style;return p.createElement(tG,(0,R.A)({},e,{ref:t,title:r,ariaId:u,prefixCls:n,holderRef:l,style:(0,eM.A)((0,eM.A)((0,eM.A)({},s),o),x),className:h()(a,c)}))})});tQ.displayName="Content";let tZ=function(e){var t=e.prefixCls,n=e.style,r=e.visible,o=e.maskProps,a=e.motionName,i=e.className;return p.createElement(F.Ay,{key:"mask",visible:r,motionName:a,leavedClassName:"".concat(t,"-mask-hidden")},function(e,r){var a=e.className,l=e.style;return p.createElement("div",(0,R.A)({ref:r,style:(0,eM.A)((0,eM.A)({},l),n),className:h()("".concat(t,"-mask"),a,i)},o))})};var tJ=n(68210);let t0=function(e){var t=e.prefixCls,n=void 0===t?"rc-dialog":t,r=e.zIndex,o=e.visible,a=void 0!==o&&o,i=e.keyboard,l=void 0===i||i,c=e.focusTriggerAfterClose,s=void 0===c||c,u=e.wrapStyle,d=e.wrapClassName,f=e.wrapProps,m=e.onClose,g=e.afterOpenChange,v=e.afterClose,b=e.transitionName,y=e.animation,x=e.closable,$=e.mask,A=void 0===$||$,w=e.maskTransitionName,C=e.maskAnimation,S=e.maskClosable,k=e.maskStyle,E=e.maskProps,O=e.rootClassName,M=e.classNames,N=e.styles,I=(0,p.useRef)(),j=(0,p.useRef)(),z=(0,p.useRef)(),P=p.useState(a),T=(0,eE.A)(P,2),D=T[0],L=T[1],B=(0,tq.A)();function F(e){null==m||m(e)}var _=(0,p.useRef)(!1),W=(0,p.useRef)(),q=null;(void 0===S||S)&&(q=function(e){_.current?_.current=!1:j.current===e.target&&F(e)}),(0,p.useEffect)(function(){a&&(L(!0),(0,tW.A)(j.current,document.activeElement)||(I.current=document.activeElement))},[a]),(0,p.useEffect)(function(){return function(){clearTimeout(W.current)}},[]);var V=(0,eM.A)((0,eM.A)((0,eM.A)({zIndex:r},u),null==N?void 0:N.wrapper),{},{display:D?null:"none"});return p.createElement("div",(0,R.A)({className:h()("".concat(n,"-root"),O)},(0,H.A)(e,{data:!0})),p.createElement(tZ,{prefixCls:n,visible:A&&a,motionName:tV(n,w,C),style:(0,eM.A)((0,eM.A)({zIndex:r},k),null==N?void 0:N.mask),maskProps:E,className:null==M?void 0:M.mask}),p.createElement("div",(0,R.A)({tabIndex:-1,onKeyDown:function(e){if(l&&e.keyCode===eR.A.ESC){e.stopPropagation(),F(e);return}a&&e.keyCode===eR.A.TAB&&z.current.changeActive(!e.shiftKey)},className:h()("".concat(n,"-wrap"),d,null==M?void 0:M.wrapper),ref:j,onClick:q,style:V},f),p.createElement(tQ,(0,R.A)({},e,{onMouseDown:function(){clearTimeout(W.current),_.current=!0},onMouseUp:function(){W.current=setTimeout(function(){_.current=!1})},ref:z,closable:void 0===x||x,ariaId:B,prefixCls:n,visible:a&&D,onClose:F,onVisibleChanged:function(e){if(e){if(!(0,tW.A)(j.current,document.activeElement)){var t;null==(t=z.current)||t.focus()}}else{if(L(!1),A&&I.current&&s){try{I.current.focus({preventScroll:!0})}catch(e){}I.current=null}D&&(null==v||v())}null==g||g(e)},motionName:tV(n,b,y)}))))};var t1=function(e){var t=e.visible,n=e.getContainer,r=e.forceRender,o=e.destroyOnClose,a=void 0!==o&&o,i=e.afterClose,l=e.panelRef,c=p.useState(t),s=(0,eE.A)(c,2),u=s[0],d=s[1],f=p.useMemo(function(){return{panel:l}},[l]);return(p.useEffect(function(){t&&d(!0)},[t]),r||!a||u)?p.createElement(t_.Provider,{value:f},p.createElement(tH.A,{open:t||r||u,autoDestroy:!1,getContainer:n,autoLock:t||u},p.createElement(t0,(0,R.A)({},e,{destroyOnClose:a,afterClose:function(){null==i||i(),d(!1)}})))):null};t1.displayName="Dialog";var t2=n(62897);function t4(e){if(e)return{closable:e.closable,closeIcon:e.closeIcon}}function t3(e){let{closable:t,closeIcon:n}=e||{};return m().useMemo(()=>{if(!t&&(!1===t||!1===n||null===n))return!1;if(void 0===t&&void 0===n)return null;let e={closeIcon:"boolean"!=typeof n&&null!==n?n:void 0};return t&&"object"==typeof t&&(e=Object.assign(Object.assign({},e),t)),e},[t,n])}function t6(){let e={};for(var t=arguments.length,n=Array(t),r=0;r{t&&Object.keys(t).forEach(n=>{void 0!==t[n]&&(e[n]=t[n])})}),e}let t8={};function t5(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t8,r=t3(e),o=t3(t),a="boolean"!=typeof r&&!!(null==r?void 0:r.disabled),i=m().useMemo(()=>Object.assign({closeIcon:m().createElement(z.A,null)},n),[n]),l=m().useMemo(()=>!1!==r&&(r?t6(i,o,r):!1!==o&&(o?t6(i,o):!!i.closable&&i)),[r,o,i]);return m().useMemo(()=>{if(!1===l)return[!1,null,a];let{closeIconRender:e}=i,{closeIcon:t}=l,n=t;if(null!=n){e&&(n=e(t));let r=(0,H.A)(l,!0);Object.keys(r).length&&(n=m().isValidElement(n)?m().cloneElement(n,r):m().createElement("span",Object.assign({},r),n))}return[!0,n,a]},[l,i])}var t7=n(72616);let t9=e=>{let{prefixCls:t,className:n,style:r,size:o,shape:a}=e,i=h()({[`${t}-lg`]:"large"===o,[`${t}-sm`]:"small"===o}),l=h()({[`${t}-circle`]:"circle"===a,[`${t}-square`]:"square"===a,[`${t}-round`]:"round"===a}),c=p.useMemo(()=>"number"==typeof o?{width:o,height:o,lineHeight:`${o}px`}:{},[o]);return p.createElement("span",{className:h()(t,i,l,n),style:Object.assign(Object.assign({},c),r)})},ne=new q.Mo("ant-skeleton-loading",{"0%":{backgroundPosition:"100% 50%"},"100%":{backgroundPosition:"0 50%"}}),nt=e=>({height:e,lineHeight:(0,q.zA)(e)}),nn=e=>Object.assign({width:e},nt(e)),nr=(e,t)=>Object.assign({width:t(e).mul(5).equal(),minWidth:t(e).mul(5).equal()},nt(e)),no=e=>Object.assign({width:e},nt(e)),na=(e,t,n)=>{let{skeletonButtonCls:r}=e;return{[`${n}${r}-circle`]:{width:t,minWidth:t,borderRadius:"50%"},[`${n}${r}-round`]:{borderRadius:t}}},ni=(e,t)=>Object.assign({width:t(e).mul(2).equal(),minWidth:t(e).mul(2).equal()},nt(e)),nl=(0,w.OF)("Skeleton",e=>{let{componentCls:t,calc:n}=e;return[(e=>{let{componentCls:t,skeletonAvatarCls:n,skeletonTitleCls:r,skeletonParagraphCls:o,skeletonButtonCls:a,skeletonInputCls:i,skeletonImageCls:l,controlHeight:c,controlHeightLG:s,controlHeightSM:u,gradientFromColor:d,padding:f,marginSM:p,borderRadius:m,titleHeight:g,blockRadius:h,paragraphLiHeight:v,controlHeightXS:b,paragraphMarginTop:y}=e;return{[t]:{display:"table",width:"100%",[`${t}-header`]:{display:"table-cell",paddingInlineEnd:f,verticalAlign:"top",[n]:Object.assign({display:"inline-block",verticalAlign:"top",background:d},nn(c)),[`${n}-circle`]:{borderRadius:"50%"},[`${n}-lg`]:Object.assign({},nn(s)),[`${n}-sm`]:Object.assign({},nn(u))},[`${t}-content`]:{display:"table-cell",width:"100%",verticalAlign:"top",[r]:{width:"100%",height:g,background:d,borderRadius:h,[`+ ${o}`]:{marginBlockStart:u}},[o]:{padding:0,"> li":{width:"100%",height:v,listStyle:"none",background:d,borderRadius:h,"+ li":{marginBlockStart:b}}},[`${o}> li:last-child:not(:first-child):not(:nth-child(2))`]:{width:"61%"}},[`&-round ${t}-content`]:{[`${r}, ${o} > li`]:{borderRadius:m}}},[`${t}-with-avatar ${t}-content`]:{[r]:{marginBlockStart:p,[`+ ${o}`]:{marginBlockStart:y}}},[`${t}${t}-element`]:Object.assign(Object.assign(Object.assign(Object.assign({display:"inline-block",width:"auto"},(e=>{let{borderRadiusSM:t,skeletonButtonCls:n,controlHeight:r,controlHeightLG:o,controlHeightSM:a,gradientFromColor:i,calc:l}=e;return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({[n]:Object.assign({display:"inline-block",verticalAlign:"top",background:i,borderRadius:t,width:l(r).mul(2).equal(),minWidth:l(r).mul(2).equal()},ni(r,l))},na(e,r,n)),{[`${n}-lg`]:Object.assign({},ni(o,l))}),na(e,o,`${n}-lg`)),{[`${n}-sm`]:Object.assign({},ni(a,l))}),na(e,a,`${n}-sm`))})(e)),(e=>{let{skeletonAvatarCls:t,gradientFromColor:n,controlHeight:r,controlHeightLG:o,controlHeightSM:a}=e;return{[t]:Object.assign({display:"inline-block",verticalAlign:"top",background:n},nn(r)),[`${t}${t}-circle`]:{borderRadius:"50%"},[`${t}${t}-lg`]:Object.assign({},nn(o)),[`${t}${t}-sm`]:Object.assign({},nn(a))}})(e)),(e=>{let{controlHeight:t,borderRadiusSM:n,skeletonInputCls:r,controlHeightLG:o,controlHeightSM:a,gradientFromColor:i,calc:l}=e;return{[r]:Object.assign({display:"inline-block",verticalAlign:"top",background:i,borderRadius:n},nr(t,l)),[`${r}-lg`]:Object.assign({},nr(o,l)),[`${r}-sm`]:Object.assign({},nr(a,l))}})(e)),(e=>{let{skeletonImageCls:t,imageSizeBase:n,gradientFromColor:r,borderRadiusSM:o,calc:a}=e;return{[t]:Object.assign(Object.assign({display:"inline-flex",alignItems:"center",justifyContent:"center",verticalAlign:"middle",background:r,borderRadius:o},no(a(n).mul(2).equal())),{[`${t}-path`]:{fill:"#bfbfbf"},[`${t}-svg`]:Object.assign(Object.assign({},no(n)),{maxWidth:a(n).mul(4).equal(),maxHeight:a(n).mul(4).equal()}),[`${t}-svg${t}-svg-circle`]:{borderRadius:"50%"}}),[`${t}${t}-circle`]:{borderRadius:"50%"}}})(e)),[`${t}${t}-block`]:{width:"100%",[a]:{width:"100%"},[i]:{width:"100%"}},[`${t}${t}-active`]:{[` - ${r}, - ${o} > li, - ${n}, - ${a}, - ${i}, - ${l} - `]:Object.assign({},{background:e.skeletonLoadingBackground,backgroundSize:"400% 100%",animationName:ne,animationDuration:e.skeletonLoadingMotionDuration,animationTimingFunction:"ease",animationIterationCount:"infinite"})}}})((0,ey.oX)(e,{skeletonAvatarCls:`${t}-avatar`,skeletonTitleCls:`${t}-title`,skeletonParagraphCls:`${t}-paragraph`,skeletonButtonCls:`${t}-button`,skeletonInputCls:`${t}-input`,skeletonImageCls:`${t}-image`,imageSizeBase:n(e.controlHeight).mul(1.5).equal(),borderRadius:100,skeletonLoadingBackground:`linear-gradient(90deg, ${e.gradientFromColor} 25%, ${e.gradientToColor} 37%, ${e.gradientFromColor} 63%)`,skeletonLoadingMotionDuration:"1.4s"}))]},e=>{let{colorFillContent:t,colorFill:n}=e;return{color:t,colorGradientEnd:n,gradientFromColor:t,gradientToColor:n,titleHeight:e.controlHeight/2,blockRadius:e.borderRadiusSM,paragraphMarginTop:e.marginLG+e.marginXXS,paragraphLiHeight:e.controlHeight/2}},{deprecatedTokens:[["color","gradientFromColor"],["colorGradientEnd","gradientToColor"]]}),nc=e=>{let{prefixCls:t,className:n,style:r,rows:o}=e,a=(0,y.A)(Array(o)).map((t,n)=>p.createElement("li",{key:n,style:{width:((e,t)=>{let{width:n,rows:r=2}=t;return Array.isArray(n)?n[e]:r-1===e?n:void 0})(n,e)}}));return p.createElement("ul",{className:h()(t,n),style:r},a)},ns=e=>{let{prefixCls:t,className:n,width:r,style:o}=e;return p.createElement("h3",{className:h()(t,n),style:Object.assign({width:r},o)})};function nu(e){return e&&"object"==typeof e?e:{}}let nd=e=>{let{prefixCls:t,loading:n,className:r,rootClassName:o,style:a,children:i,avatar:l=!1,title:c=!0,paragraph:s=!0,active:u,round:d}=e,{getPrefixCls:f,direction:m,skeleton:g}=p.useContext(A.QO),v=f("skeleton",t),[b,y,x]=nl(v);if(n||!("loading"in e)){let e,t,n=!!l,i=!!c,f=!!s;if(n){let t=Object.assign(Object.assign({prefixCls:`${v}-avatar`},i&&!f?{size:"large",shape:"square"}:{size:"large",shape:"circle"}),nu(l));e=p.createElement("div",{className:`${v}-header`},p.createElement(t9,Object.assign({},t)))}if(i||f){let e,r;if(i){let t=Object.assign(Object.assign({prefixCls:`${v}-title`},!n&&f?{width:"38%"}:n&&f?{width:"50%"}:{}),nu(c));e=p.createElement(ns,Object.assign({},t))}if(f){let e,t=Object.assign(Object.assign({prefixCls:`${v}-paragraph`},(e={},n&&i||(e.width="61%"),!n&&i?e.rows=3:e.rows=2,e)),nu(s));r=p.createElement(nc,Object.assign({},t))}t=p.createElement("div",{className:`${v}-content`},e,r)}let $=h()(v,{[`${v}-with-avatar`]:n,[`${v}-active`]:u,[`${v}-rtl`]:"rtl"===m,[`${v}-round`]:d},null==g?void 0:g.className,r,o,y,x);return b(p.createElement("div",{className:$,style:Object.assign(Object.assign({},null==g?void 0:g.style),a)},e,t))}return null!=i?i:null};nd.Button=e=>{let{prefixCls:t,className:n,rootClassName:r,active:o,block:a=!1,size:i="default"}=e,{getPrefixCls:l}=p.useContext(A.QO),c=l("skeleton",t),[s,u,d]=nl(c),f=(0,b.A)(e,["prefixCls"]),m=h()(c,`${c}-element`,{[`${c}-active`]:o,[`${c}-block`]:a},n,r,u,d);return s(p.createElement("div",{className:m},p.createElement(t9,Object.assign({prefixCls:`${c}-button`,size:i},f))))},nd.Avatar=e=>{let{prefixCls:t,className:n,rootClassName:r,active:o,shape:a="circle",size:i="default"}=e,{getPrefixCls:l}=p.useContext(A.QO),c=l("skeleton",t),[s,u,d]=nl(c),f=(0,b.A)(e,["prefixCls","className"]),m=h()(c,`${c}-element`,{[`${c}-active`]:o},n,r,u,d);return s(p.createElement("div",{className:m},p.createElement(t9,Object.assign({prefixCls:`${c}-avatar`,shape:a,size:i},f))))},nd.Input=e=>{let{prefixCls:t,className:n,rootClassName:r,active:o,block:a,size:i="default"}=e,{getPrefixCls:l}=p.useContext(A.QO),c=l("skeleton",t),[s,u,d]=nl(c),f=(0,b.A)(e,["prefixCls"]),m=h()(c,`${c}-element`,{[`${c}-active`]:o,[`${c}-block`]:a},n,r,u,d);return s(p.createElement("div",{className:m},p.createElement(t9,Object.assign({prefixCls:`${c}-input`,size:i},f))))},nd.Image=e=>{let{prefixCls:t,className:n,rootClassName:r,style:o,active:a}=e,{getPrefixCls:i}=p.useContext(A.QO),l=i("skeleton",t),[c,s,u]=nl(l),d=h()(l,`${l}-element`,{[`${l}-active`]:a},n,r,s,u);return c(p.createElement("div",{className:d},p.createElement("div",{className:h()(`${l}-image`,n),style:o},p.createElement("svg",{viewBox:"0 0 1098 1024",xmlns:"http://www.w3.org/2000/svg",className:`${l}-image-svg`},p.createElement("title",null,"Image placeholder"),p.createElement("path",{d:"M365.714286 329.142857q0 45.714286-32.036571 77.677714t-77.677714 32.036571-77.677714-32.036571-32.036571-77.677714 32.036571-77.677714 77.677714-32.036571 77.677714 32.036571 32.036571 77.677714zM950.857143 548.571429l0 256-804.571429 0 0-109.714286 182.857143-182.857143 91.428571 91.428571 292.571429-292.571429zM1005.714286 146.285714l-914.285714 0q-7.460571 0-12.873143 5.412571t-5.412571 12.873143l0 694.857143q0 7.460571 5.412571 12.873143t12.873143 5.412571l914.285714 0q7.460571 0 12.873143-5.412571t5.412571-12.873143l0-694.857143q0-7.460571-5.412571-12.873143t-12.873143-5.412571zM1097.142857 164.571429l0 694.857143q0 37.741714-26.843429 64.585143t-64.585143 26.843429l-914.285714 0q-37.741714 0-64.585143-26.843429t-26.843429-64.585143l0-694.857143q0-37.741714 26.843429-64.585143t64.585143-26.843429l914.285714 0q37.741714 0 64.585143 26.843429t26.843429 64.585143z",className:`${l}-image-path`})))))},nd.Node=e=>{let{prefixCls:t,className:n,rootClassName:r,style:o,active:a,children:i}=e,{getPrefixCls:l}=p.useContext(A.QO),c=l("skeleton",t),[s,u,d]=nl(c),f=h()(c,`${c}-element`,{[`${c}-active`]:a},u,n,r,d);return s(p.createElement("div",{className:f},p.createElement("div",{className:h()(`${c}-image`,n),style:o},i)))};let nf=nd;function np(){}let nm=p.createContext({add:np,remove:np});function ng(e){let t=p.useContext(nm),n=p.useRef(null);return(0,ea.A)(r=>{if(r){let o=e?r.querySelector(e):r;t.add(o),n.current=o}else t.remove(n.current)})}let nh=()=>{let{cancelButtonProps:e,cancelTextLocale:t,onCancel:n}=(0,p.useContext)(tD);return m().createElement(tz.Ay,Object.assign({onClick:n},e),t)},nv=()=>{let{confirmLoading:e,okButtonProps:t,okType:n,okTextLocale:r,onOk:o}=(0,p.useContext)(tD);return m().createElement(tz.Ay,Object.assign({},(0,tR.DU)(n),{loading:e,onClick:o},t),r)};function nb(e,t){return m().createElement("span",{className:`${e}-close-x`},t||m().createElement(z.A,{className:`${e}-close-icon`}))}let ny=e=>{let t,{okText:n,okType:r="primary",cancelText:o,confirmLoading:a,onOk:i,onCancel:l,okButtonProps:c,cancelButtonProps:s,footer:u}=e,[d]=(0,tI.A)("Modal",tt),f={confirmLoading:a,okButtonProps:c,cancelButtonProps:s,okTextLocale:n||(null==d?void 0:d.okText),cancelTextLocale:o||(null==d?void 0:d.cancelText),okType:r,onOk:i,onCancel:l},p=m().useMemo(()=>f,(0,y.A)(Object.values(f)));return"function"==typeof u||void 0===u?(t=m().createElement(m().Fragment,null,m().createElement(nh,null),m().createElement(nv,null)),"function"==typeof u&&(t=u(t,{OkBtn:nv,CancelBtn:nh})),t=m().createElement(tL,{value:p},t)):t=u,m().createElement(tp.X,{disabled:!1},t)};var nx=n(14980);let n$=new q.Mo("antFadeIn",{"0%":{opacity:0},"100%":{opacity:1}}),nA=new q.Mo("antFadeOut",{"0%":{opacity:1},"100%":{opacity:0}}),nw=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],{antCls:n}=e,r=`${n}-fade`,o=t?"&":"";return[(0,nx.b)(r,n$,nA,e.motionDurationMid,t),{[` - ${o}${r}-enter, - ${o}${r}-appear - `]:{opacity:0,animationTimingFunction:"linear"},[`${o}${r}-leave`]:{animationTimingFunction:"linear"}}]};var nC=n(99077);function nS(e){return{position:e,inset:0}}let nk=e=>{let{componentCls:t,antCls:n}=e;return[{[`${t}-root`]:{[`${t}${n}-zoom-enter, ${t}${n}-zoom-appear`]:{transform:"none",opacity:0,animationDuration:e.motionDurationSlow,userSelect:"none"},[`${t}${n}-zoom-leave ${t}-content`]:{pointerEvents:"none"},[`${t}-mask`]:Object.assign(Object.assign({},nS("fixed")),{zIndex:e.zIndexPopupBase,height:"100%",backgroundColor:e.colorBgMask,pointerEvents:"none",[`${t}-hidden`]:{display:"none"}}),[`${t}-wrap`]:Object.assign(Object.assign({},nS("fixed")),{zIndex:e.zIndexPopupBase,overflow:"auto",outline:0,WebkitOverflowScrolling:"touch"})}},{[`${t}-root`]:nw(e)}]},nE=e=>{let t=e.padding,n=e.fontSizeHeading5,r=e.lineHeightHeading5;return(0,ey.oX)(e,{modalHeaderHeight:e.calc(e.calc(r).mul(n).equal()).add(e.calc(t).mul(2).equal()).equal(),modalFooterBorderColorSplit:e.colorSplit,modalFooterBorderStyle:e.lineType,modalFooterBorderWidth:e.lineWidth,modalCloseIconColor:e.colorIcon,modalCloseIconHoverColor:e.colorIconHover,modalCloseBtnSize:e.controlHeight,modalConfirmIconSize:e.fontHeight,modalTitleHeight:e.calc(e.titleFontSize).mul(e.titleLineHeight).equal()})},nO=e=>({footerBg:"transparent",headerBg:e.colorBgElevated,titleLineHeight:e.lineHeightHeading5,titleFontSize:e.fontSizeHeading5,contentBg:e.colorBgElevated,titleColor:e.colorTextHeading,contentPadding:e.wireframe?0:`${(0,q.zA)(e.paddingMD)} ${(0,q.zA)(e.paddingContentHorizontalLG)}`,headerPadding:e.wireframe?`${(0,q.zA)(e.padding)} ${(0,q.zA)(e.paddingLG)}`:0,headerBorderBottom:e.wireframe?`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`:"none",headerMarginBottom:e.wireframe?0:e.marginXS,bodyPadding:e.wireframe?e.paddingLG:0,footerPadding:e.wireframe?`${(0,q.zA)(e.paddingXS)} ${(0,q.zA)(e.padding)}`:0,footerBorderTop:e.wireframe?`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`:"none",footerBorderRadius:e.wireframe?`0 0 ${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)}`:0,footerMarginTop:e.wireframe?0:e.marginSM,confirmBodyPadding:e.wireframe?`${(0,q.zA)(2*e.padding)} ${(0,q.zA)(2*e.padding)} ${(0,q.zA)(e.paddingLG)}`:0,confirmIconMarginInlineEnd:e.wireframe?e.margin:e.marginSM,confirmBtnsMarginTop:e.wireframe?e.marginLG:e.marginSM}),nM=(0,w.OF)("Modal",e=>{let t=nE(e);return[(e=>{let{componentCls:t}=e;return[{[`${t}-root`]:{[`${t}-wrap-rtl`]:{direction:"rtl"},[`${t}-centered`]:{textAlign:"center","&::before":{display:"inline-block",width:0,height:"100%",verticalAlign:"middle",content:'""'},[t]:{top:0,display:"inline-block",paddingBottom:0,textAlign:"start",verticalAlign:"middle"}},[`@media (max-width: ${e.screenSMMax}px)`]:{[t]:{maxWidth:"calc(100vw - 16px)",margin:`${(0,q.zA)(e.marginXS)} auto`},[`${t}-centered`]:{[t]:{flex:1}}}}},{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{pointerEvents:"none",position:"relative",top:100,width:"auto",maxWidth:`calc(100vw - ${(0,q.zA)(e.calc(e.margin).mul(2).equal())})`,margin:"0 auto",paddingBottom:e.paddingLG,[`${t}-title`]:{margin:0,color:e.titleColor,fontWeight:e.fontWeightStrong,fontSize:e.titleFontSize,lineHeight:e.titleLineHeight,wordWrap:"break-word"},[`${t}-content`]:{position:"relative",backgroundColor:e.contentBg,backgroundClip:"padding-box",border:0,borderRadius:e.borderRadiusLG,boxShadow:e.boxShadow,pointerEvents:"auto",padding:e.contentPadding},[`${t}-close`]:Object.assign({position:"absolute",top:e.calc(e.modalHeaderHeight).sub(e.modalCloseBtnSize).div(2).equal(),insetInlineEnd:e.calc(e.modalHeaderHeight).sub(e.modalCloseBtnSize).div(2).equal(),zIndex:e.calc(e.zIndexPopupBase).add(10).equal(),padding:0,color:e.modalCloseIconColor,fontWeight:e.fontWeightStrong,lineHeight:1,textDecoration:"none",background:"transparent",borderRadius:e.borderRadiusSM,width:e.modalCloseBtnSize,height:e.modalCloseBtnSize,border:0,outline:0,cursor:"pointer",transition:`color ${e.motionDurationMid}, background-color ${e.motionDurationMid}`,"&-x":{display:"flex",fontSize:e.fontSizeLG,fontStyle:"normal",lineHeight:(0,q.zA)(e.modalCloseBtnSize),justifyContent:"center",textTransform:"none",textRendering:"auto"},"&:disabled":{pointerEvents:"none"},"&:hover":{color:e.modalCloseIconHoverColor,backgroundColor:e.colorBgTextHover,textDecoration:"none"},"&:active":{backgroundColor:e.colorBgTextActive}},(0,V.K8)(e)),[`${t}-header`]:{color:e.colorText,background:e.headerBg,borderRadius:`${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)} 0 0`,marginBottom:e.headerMarginBottom,padding:e.headerPadding,borderBottom:e.headerBorderBottom},[`${t}-body`]:{fontSize:e.fontSize,lineHeight:e.lineHeight,wordWrap:"break-word",padding:e.bodyPadding,[`${t}-body-skeleton`]:{width:"100%",height:"100%",display:"flex",justifyContent:"center",alignItems:"center",margin:`${(0,q.zA)(e.margin)} auto`}},[`${t}-footer`]:{textAlign:"end",background:e.footerBg,marginTop:e.footerMarginTop,padding:e.footerPadding,borderTop:e.footerBorderTop,borderRadius:e.footerBorderRadius,[`> ${e.antCls}-btn + ${e.antCls}-btn`]:{marginInlineStart:e.marginXS}},[`${t}-open`]:{overflow:"hidden"}})},{[`${t}-pure-panel`]:{top:"auto",padding:0,display:"flex",flexDirection:"column",[`${t}-content, - ${t}-body, - ${t}-confirm-body-wrapper`]:{display:"flex",flexDirection:"column",flex:"auto"},[`${t}-confirm-body`]:{marginBottom:"auto"}}}]})(t),(e=>{let{componentCls:t}=e;return{[`${t}-root`]:{[`${t}-wrap-rtl`]:{direction:"rtl",[`${t}-confirm-body`]:{direction:"rtl"}}}}})(t),nk(t),(0,nC.aB)(t,"zoom")]},nO,{unitless:{titleLineHeight:!0}});var nN=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};(0,tu.A)()&&window.document.documentElement&&document.documentElement.addEventListener("click",e=>{l={x:e.pageX,y:e.pageY},setTimeout(()=>{l=null},100)},!0);let nI=e=>{var t;let{getPopupContainer:n,getPrefixCls:r,direction:o,modal:a}=p.useContext(A.QO),i=t=>{let{onCancel:n}=e;null==n||n(t)},{prefixCls:c,className:s,rootClassName:u,open:d,wrapClassName:f,centered:m,getContainer:g,focusTriggerAfterClose:v=!0,style:b,visible:y,width:x=520,footer:$,classNames:w,styles:C,children:S,loading:k}=e,E=nN(e,["prefixCls","className","rootClassName","open","wrapClassName","centered","getContainer","focusTriggerAfterClose","style","visible","width","footer","classNames","styles","children","loading"]),O=r("modal",c),M=r(),N=(0,eh.A)(O),[I,j,R]=nM(O,N),P=h()(f,{[`${O}-centered`]:!!m,[`${O}-wrap-rtl`]:"rtl"===o}),T=null===$||k?null:p.createElement(ny,Object.assign({},e,{onOk:t=>{let{onOk:n}=e;null==n||n(t)},onCancel:i})),[D,L,B]=t5(t4(e),t4(a),{closable:!0,closeIcon:p.createElement(z.A,{className:`${O}-close-icon`}),closeIconRender:e=>nb(O,e)}),F=ng(`.${O}-content`),[H,_]=(0,eY.YK)("Modal",E.zIndex);return I(p.createElement(t2.A,{form:!0,space:!0},p.createElement(t7.A.Provider,{value:_},p.createElement(t1,Object.assign({width:x},E,{zIndex:H,getContainer:void 0===g?n:g,prefixCls:O,rootClassName:h()(j,u,R,N),footer:T,visible:null!=d?d:y,mousePosition:null!=(t=E.mousePosition)?t:l,onClose:i,closable:D?{disabled:B,closeIcon:L}:D,closeIcon:L,focusTriggerAfterClose:v,transitionName:(0,tN.b)(M,"zoom",e.transitionName),maskTransitionName:(0,tN.b)(M,"fade",e.maskTransitionName),className:h()(j,s,null==a?void 0:a.className),style:Object.assign(Object.assign({},null==a?void 0:a.style),b),classNames:Object.assign(Object.assign(Object.assign({},null==a?void 0:a.classNames),w),{wrapper:h()(P,null==w?void 0:w.wrapper)}),styles:Object.assign(Object.assign({},null==a?void 0:a.styles),C),panelRef:F}),k?p.createElement(nf,{active:!0,title:!1,paragraph:{rows:4},className:`${O}-body-skeleton`}):S))))},nj=(0,w.bf)(["Modal","confirm"],e=>[(e=>{let{componentCls:t,titleFontSize:n,titleLineHeight:r,modalConfirmIconSize:o,fontSize:a,lineHeight:i,modalTitleHeight:l,fontHeight:c,confirmBodyPadding:s}=e,u=`${t}-confirm`;return{[u]:{"&-rtl":{direction:"rtl"},[`${e.antCls}-modal-header`]:{display:"none"},[`${u}-body-wrapper`]:Object.assign({},(0,V.t6)()),[`&${t} ${t}-body`]:{padding:s},[`${u}-body`]:{display:"flex",flexWrap:"nowrap",alignItems:"start",[`> ${e.iconCls}`]:{flex:"none",fontSize:o,marginInlineEnd:e.confirmIconMarginInlineEnd,marginTop:e.calc(e.calc(c).sub(o).equal()).div(2).equal()},[`&-has-title > ${e.iconCls}`]:{marginTop:e.calc(e.calc(l).sub(o).equal()).div(2).equal()}},[`${u}-paragraph`]:{display:"flex",flexDirection:"column",flex:"auto",rowGap:e.marginXS,maxWidth:`calc(100% - ${(0,q.zA)(e.marginSM)})`},[`${e.iconCls} + ${u}-paragraph`]:{maxWidth:`calc(100% - ${(0,q.zA)(e.calc(e.modalConfirmIconSize).add(e.marginSM).equal())})`},[`${u}-title`]:{color:e.colorTextHeading,fontWeight:e.fontWeightStrong,fontSize:n,lineHeight:r},[`${u}-content`]:{color:e.colorText,fontSize:a,lineHeight:i},[`${u}-btns`]:{textAlign:"end",marginTop:e.confirmBtnsMarginTop,[`${e.antCls}-btn + ${e.antCls}-btn`]:{marginBottom:0,marginInlineStart:e.marginXS}}},[`${u}-error ${u}-body > ${e.iconCls}`]:{color:e.colorError},[`${u}-warning ${u}-body > ${e.iconCls}, - ${u}-confirm ${u}-body > ${e.iconCls}`]:{color:e.colorWarning},[`${u}-info ${u}-body > ${e.iconCls}`]:{color:e.colorInfo},[`${u}-success ${u}-body > ${e.iconCls}`]:{color:e.colorSuccess}}})(nE(e))],nO,{order:-1e3});var nz=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function nR(e){let{prefixCls:t,icon:n,okText:r,cancelText:o,confirmPrefixCls:a,type:i,okCancel:l,footer:c,locale:s}=e,u=nz(e,["prefixCls","icon","okText","cancelText","confirmPrefixCls","type","okCancel","footer","locale"]),d=n;if(!n&&null!==n)switch(i){case"info":d=p.createElement(B,null);break;case"success":d=p.createElement(I.A,null);break;case"error":d=p.createElement(j.A,null);break;default:d=p.createElement(D,null)}let f=null!=l?l:"confirm"===i,m=null!==e.autoFocusButton&&(e.autoFocusButton||"ok"),[g]=(0,tI.A)("Modal"),v=s||g,b=r||(f?null==v?void 0:v.okText:null==v?void 0:v.justOkText),x=Object.assign({autoFocusButton:m,cancelTextLocale:o||(null==v?void 0:v.cancelText),okTextLocale:b,mergedOkCancel:f},u),$=p.useMemo(()=>x,(0,y.A)(Object.values(x))),A=p.createElement(p.Fragment,null,p.createElement(tB,null),p.createElement(tF,null)),w=void 0!==e.title&&null!==e.title,C=`${a}-body`;return p.createElement("div",{className:`${a}-body-wrapper`},p.createElement("div",{className:h()(C,{[`${C}-has-title`]:w})},d,p.createElement("div",{className:`${a}-paragraph`},w&&p.createElement("span",{className:`${a}-title`},e.title),p.createElement("div",{className:`${a}-content`},e.content))),void 0===c||"function"==typeof c?p.createElement(tL,{value:$},p.createElement("div",{className:`${a}-btns`},"function"==typeof c?c(A,{OkBtn:tF,CancelBtn:tB}):A)):c,p.createElement(nj,{prefixCls:t}))}let nP=e=>{let{close:t,zIndex:n,afterClose:r,open:o,keyboard:a,centered:i,getContainer:l,maskStyle:c,direction:s,prefixCls:u,wrapClassName:d,rootPrefixCls:f,bodyStyle:m,closable:g=!1,closeIcon:v,modalRender:b,focusTriggerAfterClose:y,onConfirm:x,styles:$}=e,A=`${u}-confirm`,w=e.width||416,C=e.style||{},S=void 0===e.mask||e.mask,k=void 0!==e.maskClosable&&e.maskClosable,E=h()(A,`${A}-${e.type}`,{[`${A}-rtl`]:"rtl"===s},e.className),[,O]=(0,tb.Ay)(),M=p.useMemo(()=>void 0!==n?n:O.zIndexPopupBase+eY.jH,[n,O]);return p.createElement(nI,{prefixCls:u,className:E,wrapClassName:h()({[`${A}-centered`]:!!e.centered},d),onCancel:()=>{null==t||t({triggerCancel:!0}),null==x||x(!1)},open:o,title:"",footer:null,transitionName:(0,tN.b)(f||"","zoom",e.transitionName),maskTransitionName:(0,tN.b)(f||"","fade",e.maskTransitionName),mask:S,maskClosable:k,style:C,styles:Object.assign({body:m,mask:c},$),width:w,zIndex:M,afterClose:r,keyboard:a,centered:i,getContainer:l,closable:g,closeIcon:v,modalRender:b,focusTriggerAfterClose:y},p.createElement(nR,Object.assign({},e,{confirmPrefixCls:A})))},nT=e=>{let{rootPrefixCls:t,iconPrefixCls:n,direction:r,theme:o}=e;return p.createElement(tO,{prefixCls:t,iconPrefixCls:n,direction:r,theme:o},p.createElement(nP,Object.assign({},e)))},nD=[],nL="",nB=e=>{var t,n;let{prefixCls:r,getContainer:o,direction:a}=e,i=tt,l=(0,p.useContext)(A.QO),c=nL||l.getPrefixCls(),s=r||`${c}-modal`,u=o;return!1===u&&(u=void 0),m().createElement(nT,Object.assign({},e,{rootPrefixCls:c,prefixCls:s,iconPrefixCls:l.iconPrefixCls,theme:l.theme,direction:null!=a?a:l.direction,locale:null!=(n=null==(t=l.locale)?void 0:t.Modal)?n:i,getContainer:u}))};function nF(e){let t,n,r=tS(),o=document.createDocumentFragment(),a=Object.assign(Object.assign({},e),{close:c,open:!0});function i(){for(var t,r=arguments.length,o=Array(r),a=0;anull==e?void 0:e.triggerCancel)&&(null==(t=e.onCancel)||t.call.apply(t,[e,()=>{}].concat((0,y.A)(o.slice(1)))));for(let e=0;e{let t=r.getPrefixCls(void 0,nL),a=r.getIconPrefixCls(),i=r.getTheme(),l=m().createElement(nB,Object.assign({},e));n=(0,tM.K)()(m().createElement(tO,{prefixCls:t,iconPrefixCls:a,theme:i},r.holderRender?r.holderRender(l):l),o)})}function c(){for(var t=arguments.length,n=Array(t),r=0;r{"function"==typeof e.afterClose&&e.afterClose(),i.apply(this,n)}})).visible&&delete a.visible,l(a)}return l(a),nD.push(c),{destroy:c,update:function(e){l(a="function"==typeof e?e(a):Object.assign(Object.assign({},a),e))}}}function nH(e){return Object.assign(Object.assign({},e),{type:"warning"})}function n_(e){return Object.assign(Object.assign({},e),{type:"info"})}function nW(e){return Object.assign(Object.assign({},e),{type:"success"})}function nq(e){return Object.assign(Object.assign({},e),{type:"error"})}function nV(e){return Object.assign(Object.assign({},e),{type:"confirm"})}var nK=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let nX=p.forwardRef((e,t)=>{var n,{afterClose:r,config:o}=e,a=nK(e,["afterClose","config"]);let[i,l]=p.useState(!0),[c,s]=p.useState(o),{direction:u,getPrefixCls:d}=p.useContext(A.QO),f=d("modal"),m=d(),g=function(){l(!1);for(var e,t=arguments.length,n=Array(t),r=0;rnull==e?void 0:e.triggerCancel)&&(null==(e=c.onCancel)||e.call.apply(e,[c,()=>{}].concat((0,y.A)(n.slice(1)))))};p.useImperativeHandle(t,()=>({destroy:g,update:e=>{s(t=>Object.assign(Object.assign({},t),e))}}));let h=null!=(n=c.okCancel)?n:"confirm"===c.type,[v]=(0,tI.A)("Modal",te.A.Modal);return p.createElement(nT,Object.assign({prefixCls:f,rootPrefixCls:m},c,{close:g,open:i,afterClose:()=>{var e;r(),null==(e=c.afterClose)||e.call(c)},okText:c.okText||(h?null==v?void 0:v.okText:null==v?void 0:v.justOkText),direction:c.direction||u,cancelText:c.cancelText||(null==v?void 0:v.cancelText)},a))}),nY=0,nU=p.memo(p.forwardRef((e,t)=>{let[n,r]=function(){let[e,t]=p.useState([]);return[e,p.useCallback(e=>(t(t=>[].concat((0,y.A)(t),[e])),()=>{t(t=>t.filter(t=>t!==e))}),[])]}();return p.useImperativeHandle(t,()=>({patchElement:r}),[]),p.createElement(p.Fragment,null,n)})),nG=function(){let e=p.useRef(null),[t,n]=p.useState([]);p.useEffect(()=>{t.length&&((0,y.A)(t).forEach(e=>{e()}),n([]))},[t]);let r=p.useCallback(t=>function(r){var o;let a,i;nY+=1;let l=p.createRef(),c=new Promise(e=>{a=e}),s=!1,u=p.createElement(nX,{key:`modal-${nY}`,config:t(r),ref:l,afterClose:()=>{null==i||i()},isSilent:()=>s,onConfirm:e=>{a(e)}});return(i=null==(o=e.current)?void 0:o.patchElement(u))&&nD.push(i),{destroy:()=>{function e(){var e;null==(e=l.current)||e.destroy()}l.current?e():n(t=>[].concat((0,y.A)(t),[e]))},update:e=>{function t(){var t;null==(t=l.current)||t.update(e)}l.current?t():n(e=>[].concat((0,y.A)(e),[t]))},then:e=>(s=!0,c.then(e))}},[]);return[p.useMemo(()=>({info:r(n_),success:r(nW),error:r(nq),warning:r(nH),confirm:r(nV)}),[]),p.createElement(nU,{key:"modal-holder",ref:e})]},nQ=["top","topLeft","topRight","bottom","bottomLeft","bottomRight"],nZ={topLeft:"left",topRight:"right",bottomLeft:"left",bottomRight:"right",top:"left",bottom:"left"},nJ=e=>{let{iconCls:t,componentCls:n,boxShadow:r,fontSizeLG:o,notificationMarginBottom:a,borderRadiusLG:i,colorSuccess:l,colorInfo:c,colorWarning:s,colorError:u,colorTextHeading:d,notificationBg:f,notificationPadding:p,notificationMarginEdge:m,notificationProgressBg:g,notificationProgressHeight:h,fontSize:v,lineHeight:b,width:y,notificationIconSize:x,colorText:$}=e,A=`${n}-notice`;return{position:"relative",marginBottom:a,marginInlineStart:"auto",background:f,borderRadius:i,boxShadow:r,[A]:{padding:p,width:y,maxWidth:`calc(100vw - ${(0,q.zA)(e.calc(m).mul(2).equal())})`,overflow:"hidden",lineHeight:b,wordWrap:"break-word"},[`${A}-message`]:{marginBottom:e.marginXS,color:d,fontSize:o,lineHeight:e.lineHeightLG},[`${A}-description`]:{fontSize:v,color:$},[`${A}-closable ${A}-message`]:{paddingInlineEnd:e.paddingLG},[`${A}-with-icon ${A}-message`]:{marginBottom:e.marginXS,marginInlineStart:e.calc(e.marginSM).add(x).equal(),fontSize:o},[`${A}-with-icon ${A}-description`]:{marginInlineStart:e.calc(e.marginSM).add(x).equal(),fontSize:v},[`${A}-icon`]:{position:"absolute",fontSize:x,lineHeight:1,[`&-success${t}`]:{color:l},[`&-info${t}`]:{color:c},[`&-warning${t}`]:{color:s},[`&-error${t}`]:{color:u}},[`${A}-close`]:Object.assign({position:"absolute",top:e.notificationPaddingVertical,insetInlineEnd:e.notificationPaddingHorizontal,color:e.colorIcon,outline:"none",width:e.notificationCloseButtonSize,height:e.notificationCloseButtonSize,borderRadius:e.borderRadiusSM,transition:`background-color ${e.motionDurationMid}, color ${e.motionDurationMid}`,display:"flex",alignItems:"center",justifyContent:"center","&:hover":{color:e.colorIconHover,backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive}},(0,V.K8)(e)),[`${A}-progress`]:{position:"absolute",display:"block",appearance:"none",WebkitAppearance:"none",inlineSize:`calc(100% - ${(0,q.zA)(i)} * 2)`,left:{_skip_check_:!0,value:i},right:{_skip_check_:!0,value:i},bottom:0,blockSize:h,border:0,"&, &::-webkit-progress-bar":{borderRadius:i,backgroundColor:"rgba(0, 0, 0, 0.04)"},"&::-moz-progress-bar":{background:g},"&::-webkit-progress-value":{borderRadius:i,background:g}},[`${A}-btn`]:{float:"right",marginTop:e.marginSM}}},n0=e=>({zIndexPopup:e.zIndexPopupBase+eY.jH+50,width:384}),n1=e=>{let t=e.paddingMD,n=e.paddingLG;return(0,ey.oX)(e,{notificationBg:e.colorBgElevated,notificationPaddingVertical:t,notificationPaddingHorizontal:n,notificationIconSize:e.calc(e.fontSizeLG).mul(e.lineHeightLG).equal(),notificationCloseButtonSize:e.calc(e.controlHeightLG).mul(.55).equal(),notificationMarginBottom:e.margin,notificationPadding:`${(0,q.zA)(e.paddingMD)} ${(0,q.zA)(e.paddingContentHorizontalLG)}`,notificationMarginEdge:e.marginLG,animationMaxHeight:150,notificationStackLayer:3,notificationProgressHeight:2,notificationProgressBg:`linear-gradient(90deg, ${e.colorPrimaryBorderHover}, ${e.colorPrimary})`})},n2=(0,w.OF)("Notification",e=>{let t=n1(e);return[(e=>{let{componentCls:t,notificationMarginBottom:n,notificationMarginEdge:r,motionDurationMid:o,motionEaseInOut:a}=e,i=`${t}-notice`,l=new q.Mo("antNotificationFadeOut",{"0%":{maxHeight:e.animationMaxHeight,marginBottom:n},"100%":{maxHeight:0,marginBottom:0,paddingTop:0,paddingBottom:0,opacity:0}});return[{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"fixed",zIndex:e.zIndexPopup,marginRight:{value:r,_skip_check_:!0},[`${t}-hook-holder`]:{position:"relative"},[`${t}-fade-appear-prepare`]:{opacity:"0 !important"},[`${t}-fade-enter, ${t}-fade-appear`]:{animationDuration:e.motionDurationMid,animationTimingFunction:a,animationFillMode:"both",opacity:0,animationPlayState:"paused"},[`${t}-fade-leave`]:{animationTimingFunction:a,animationFillMode:"both",animationDuration:o,animationPlayState:"paused"},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationPlayState:"running"},[`${t}-fade-leave${t}-fade-leave-active`]:{animationName:l,animationPlayState:"running"},"&-rtl":{direction:"rtl",[`${i}-btn`]:{float:"left"}}})},{[t]:{[`${i}-wrapper`]:Object.assign({},nJ(e))}}]})(t),(e=>{let{componentCls:t,notificationMarginEdge:n,animationMaxHeight:r}=e,o=`${t}-notice`,a=new q.Mo("antNotificationFadeIn",{"0%":{transform:"translate3d(100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}});return{[t]:{[`&${t}-top, &${t}-bottom`]:{marginInline:0,[o]:{marginInline:"auto auto"}},[`&${t}-top`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new q.Mo("antNotificationTopFadeIn",{"0%":{top:-r,opacity:0},"100%":{top:0,opacity:1}})}},[`&${t}-bottom`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new q.Mo("antNotificationBottomFadeIn",{"0%":{bottom:e.calc(r).mul(-1).equal(),opacity:0},"100%":{bottom:0,opacity:1}})}},[`&${t}-topRight, &${t}-bottomRight`]:{[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:a}},[`&${t}-topLeft, &${t}-bottomLeft`]:{marginRight:{value:0,_skip_check_:!0},marginLeft:{value:n,_skip_check_:!0},[o]:{marginInlineEnd:"auto",marginInlineStart:0},[`${t}-fade-enter${t}-fade-enter-active, ${t}-fade-appear${t}-fade-appear-active`]:{animationName:new q.Mo("antNotificationLeftFadeIn",{"0%":{transform:"translate3d(-100%, 0, 0)",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",opacity:1}})}}}}})(t),(e=>{let{componentCls:t}=e;return Object.assign({[`${t}-stack`]:{[`& > ${t}-notice-wrapper`]:Object.assign({transition:`all ${e.motionDurationSlow}, backdrop-filter 0s`,position:"absolute"},(e=>{let t={};for(let n=1;n ${e.componentCls}-notice`]:{opacity:0,transition:`opacity ${e.motionDurationMid}`}};return Object.assign({[`&:not(:nth-last-child(-n+${e.notificationStackLayer}))`]:{opacity:0,overflow:"hidden",color:"transparent",pointerEvents:"none"}},t)})(e))},[`${t}-stack:not(${t}-stack-expanded)`]:{[`& > ${t}-notice-wrapper`]:Object.assign({},(e=>{let t={};for(let n=1;n ${t}-notice-wrapper`]:{"&:not(:nth-last-child(-n + 1))":{opacity:1,overflow:"unset",color:"inherit",pointerEvents:"auto",[`& > ${e.componentCls}-notice`]:{opacity:1}},"&:after":{content:'""',position:"absolute",height:e.margin,width:"100%",insetInline:0,bottom:e.calc(e.margin).mul(-1).equal(),background:"transparent",pointerEvents:"auto"}}}},nQ.map(t=>((e,t)=>{let{componentCls:n}=e;return{[`${n}-${t}`]:{[`&${n}-stack > ${n}-notice-wrapper`]:{[t.startsWith("top")?"top":"bottom"]:0,[nZ[t]]:{value:0,_skip_check_:!0}}}}})(e,t)).reduce((e,t)=>Object.assign(Object.assign({},e),t),{}))})(t)]},n0),n4=(0,w.bf)(["Notification","PurePanel"],e=>{let t=`${e.componentCls}-notice`,n=n1(e);return{[`${t}-pure-panel`]:Object.assign(Object.assign({},nJ(n)),{width:n.width,maxWidth:`calc(100vw - ${(0,q.zA)(e.calc(n.notificationMarginEdge).mul(2).equal())})`,margin:0})}},n0);var n3=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function n6(e,t){return null===t||!1===t?null:t||p.createElement(z.A,{className:`${e}-close-icon`})}I.A,j.A,eX.A;let n8={success:I.A,info:B,error:j.A,warning:D},n5=e=>{let{prefixCls:t,icon:n,type:r,message:o,description:a,btn:i,role:l="alert"}=e,c=null;return n?c=p.createElement("span",{className:`${t}-icon`},n):r&&(c=p.createElement(n8[r]||null,{className:h()(`${t}-icon`,`${t}-icon-${r}`)})),p.createElement("div",{className:h()({[`${t}-with-icon`]:c}),role:l},c,p.createElement("div",{className:`${t}-message`},o),p.createElement("div",{className:`${t}-description`},a),i&&p.createElement("div",{className:`${t}-btn`},i))};var n7=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let n9=e=>{let{children:t,prefixCls:n}=e,r=(0,eh.A)(n),[o,a,i]=n2(n,r);return o(m().createElement(eD,{classNames:{list:h()(a,i,r)}},t))},re=(e,t)=>{let{prefixCls:n,key:r}=t;return m().createElement(n9,{prefixCls:n,key:r},e)},rt=m().forwardRef((e,t)=>{let{top:n,bottom:r,prefixCls:o,getContainer:a,maxCount:i,rtl:l,onAllRemoved:c,stack:s,duration:u,pauseOnHover:d=!0,showProgress:f}=e,{getPrefixCls:g,getPopupContainer:v,notification:b,direction:y}=(0,p.useContext)(A.QO),[,x]=(0,tb.Ay)(),$=o||g("notification"),[w,C]=eK({prefixCls:$,style:e=>(function(e,t,n){let r;switch(e){case"top":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:t,bottom:"auto"};break;case"topLeft":r={left:0,top:t,bottom:"auto"};break;case"topRight":r={right:0,top:t,bottom:"auto"};break;case"bottom":r={left:"50%",transform:"translateX(-50%)",right:"auto",top:"auto",bottom:n};break;case"bottomLeft":r={left:0,top:"auto",bottom:n};break;default:r={right:0,top:"auto",bottom:n}}return r})(e,null!=n?n:24,null!=r?r:24),className:()=>h()({[`${$}-rtl`]:null!=l?l:"rtl"===y}),motion:()=>({motionName:`${$}-fade`}),closable:!0,closeIcon:n6($),duration:null!=u?u:4.5,getContainer:()=>(null==a?void 0:a())||(null==v?void 0:v())||document.body,maxCount:i,pauseOnHover:d,showProgress:f,onAllRemoved:c,renderNotifications:re,stack:!1!==s&&{threshold:"object"==typeof s?null==s?void 0:s.threshold:void 0,offset:8,gap:x.margin}});return m().useImperativeHandle(t,()=>Object.assign(Object.assign({},w),{prefixCls:$,notification:b})),C});function rn(e){let t=m().useRef(null);return(0,ek.rJ)("Notification"),[m().useMemo(()=>{let n=n=>{var r;if(!t.current)return;let{open:o,prefixCls:a,notification:i}=t.current,l=`${a}-notice`,{message:c,description:s,icon:u,type:d,btn:f,className:p,style:g,role:v="alert",closeIcon:b,closable:y}=n,x=n7(n,["message","description","icon","type","btn","className","style","role","closeIcon","closable"]),$=n6(l,void 0!==b?b:null==i?void 0:i.closeIcon);return o(Object.assign(Object.assign({placement:null!=(r=null==e?void 0:e.placement)?r:"topRight"},x),{content:m().createElement(n5,{prefixCls:l,icon:u,type:d,message:c,description:s,btn:f,role:v}),className:h()(d&&`${l}-${d}`,p,null==i?void 0:i.className),style:Object.assign(Object.assign({},null==i?void 0:i.style),g),closeIcon:$,closable:null!=y?y:!!$}))},r={open:n,destroy:e=>{var n,r;void 0!==e?null==(n=t.current)||n.close(e):null==(r=t.current)||r.destroy()}};return["success","info","warning","error"].forEach(e=>{r[e]=t=>n(Object.assign(Object.assign({},t),{type:e}))}),r},[]),m().createElement(rt,Object.assign({key:"notification-holder"},e,{ref:t}))]}let rr=m().createContext({}),ro=m().createContext({message:{},notification:{},modal:{}}),ra=(0,w.OF)("App",e=>{let{componentCls:t,colorText:n,fontSize:r,lineHeight:o,fontFamily:a}=e;return{[t]:{color:n,fontSize:r,lineHeight:o,fontFamily:a,[`&${t}-rtl`]:{direction:"rtl"}}}},()=>({})),ri=e=>{let{prefixCls:t,children:n,className:r,rootClassName:o,message:a,notification:i,style:l,component:c="div"}=e,{direction:s,getPrefixCls:u}=(0,p.useContext)(A.QO),d=u("app",t),[f,g,v]=ra(d),b=h()(g,d,r,o,v,{[`${d}-rtl`]:"rtl"===s}),y=(0,p.useContext)(rr),x=m().useMemo(()=>({message:Object.assign(Object.assign({},y.message),a),notification:Object.assign(Object.assign({},y.notification),i)}),[a,i,y.message,y.notification]),[$,w]=e6(x.message),[C,S]=rn(x.notification),[k,E]=nG(),O=m().useMemo(()=>({message:$,notification:C,modal:k}),[$,C,k]);(0,ek.rJ)("App")(!(v&&!1===c),"usage","When using cssVar, ensure `component` is assigned a valid React component string.");let M=!1===c?m().Fragment:c;return f(m().createElement(ro.Provider,{value:O},m().createElement(rr.Provider,{value:x},m().createElement(M,Object.assign({},!1===c?void 0:{className:b,style:l}),E,w,S,n))))};ri.useApp=()=>m().useContext(ro);let rl=ri;var rc=n(82546),rs=n(12533);function ru(e){return t=>p.createElement(tO,{theme:{token:{motion:!1,zIndexPopupBase:0}}},p.createElement(e,Object.assign({},t)))}let rd=(e,t,n,r)=>ru(o=>{let{prefixCls:a,style:i}=o,l=p.useRef(null),[c,s]=p.useState(0),[u,d]=p.useState(0),[f,m]=(0,rs.A)(!1,{value:o.open}),{getPrefixCls:g}=p.useContext(A.QO),h=g(t||"select",a);p.useEffect(()=>{if(m(!0),"u">typeof ResizeObserver){let e=new ResizeObserver(e=>{let t=e[0].target;s(t.offsetHeight+8),d(t.offsetWidth)}),t=setInterval(()=>{var r;let o=n?`.${n(h)}`:`.${h}-dropdown`,a=null==(r=l.current)?void 0:r.querySelector(o);a&&(clearInterval(t),e.observe(a))},10);return()=>{clearInterval(t),e.disconnect()}}},[]);let v=Object.assign(Object.assign({},o),{style:Object.assign(Object.assign({},i),{margin:0}),open:f,visible:f,getPopupContainer:()=>l.current});return r&&(v=r(v)),p.createElement("div",{ref:l,style:{paddingBottom:c,position:"relative",minWidth:u}},p.createElement(e,Object.assign({},v)))});var rf=n(30981),rp=n(68430);let rm=function(e){var t=e.className,n=e.customizeIcon,r=e.customizeIconProps,o=e.children,a=e.onMouseDown,i=e.onClick,l="function"==typeof n?n(r):n;return p.createElement("span",{className:t,onMouseDown:function(e){e.preventDefault(),null==a||a(e)},style:{userSelect:"none",WebkitUserSelect:"none"},unselectable:"on",onClick:i,"aria-hidden":!0},void 0!==l?l:p.createElement("span",{className:h()(t.split(/\s+/).map(function(e){return"".concat(e,"-icon")}))},o))};var rg=function(e,t,n,r,o){var a=arguments.length>5&&void 0!==arguments[5]&&arguments[5],i=arguments.length>6?arguments[6]:void 0,l=arguments.length>7?arguments[7]:void 0,c=m().useMemo(function(){return"object"===(0,ez.A)(r)?r.clearIcon:o||void 0},[r,o]);return{allowClear:m().useMemo(function(){return!a&&!!r&&(!!n.length||!!i)&&("combobox"!==l||""!==i)},[r,a,n.length,i,l]),clearIcon:m().createElement(rm,{className:"".concat(e,"-clear"),onMouseDown:t,customizeIcon:c},"\xd7")}},rh=p.createContext(null);function rv(){return p.useContext(rh)}function rb(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:250,t=p.useRef(null),n=p.useRef(null);return p.useEffect(function(){return function(){window.clearTimeout(n.current)}},[]),[function(){return t.current},function(r){(r||null===t.current)&&(t.current=r),window.clearTimeout(n.current),n.current=window.setTimeout(function(){t.current=null},e)}]}var ry=["prefixCls","invalidate","item","renderItem","responsive","responsiveDisabled","registerSize","itemKey","className","style","children","display","order","component"],rx=void 0,r$=p.forwardRef(function(e,t){var n,r=e.prefixCls,o=e.invalidate,a=e.item,i=e.renderItem,l=e.responsive,c=e.responsiveDisabled,s=e.registerSize,u=e.itemKey,d=e.className,f=e.style,m=e.children,g=e.display,b=e.order,y=e.component,x=(0,eO.A)(e,ry),$=l&&!g;p.useEffect(function(){return function(){s(u,null)}},[]);var A=i&&a!==rx?i(a,{index:b}):m;o||(n={opacity:+!$,height:$?0:rx,overflowY:$?"hidden":rx,order:l?b:rx,pointerEvents:$?"none":rx,position:$?"absolute":rx});var w={};$&&(w["aria-hidden"]=!0);var C=p.createElement(void 0===y?"div":y,(0,R.A)({className:h()(!o&&r,d),style:(0,eM.A)((0,eM.A)({},n),f)},w,x,{ref:t}),A);return l&&(C=p.createElement(v.A,{onResize:function(e){s(u,e.offsetWidth)},disabled:c},C)),C});function rA(e,t){var n=p.useState(t),r=(0,eE.A)(n,2),o=r[0],a=r[1];return[o,(0,ea.A)(function(t){e(function(){a(t)})})]}r$.displayName="Item";var rw=m().createContext(null),rC=["component"],rS=["className"],rk=["className"],rE=p.forwardRef(function(e,t){var n=p.useContext(rw);if(!n){var r=e.component,o=(0,eO.A)(e,rC);return p.createElement(void 0===r?"div":r,(0,R.A)({},o,{ref:t}))}var a=n.className,i=(0,eO.A)(n,rS),l=e.className,c=(0,eO.A)(e,rk);return p.createElement(rw.Provider,{value:null},p.createElement(r$,(0,R.A)({ref:t,className:h()(a,l)},i,c)))});rE.displayName="RawItem";var rO=["prefixCls","data","renderItem","renderRawItem","itemKey","itemWidth","ssr","style","className","maxCount","renderRest","renderRawRest","prefix","suffix","component","itemComponent","onVisibleChange"],rM="responsive",rN="invalidate";function rI(e){return"+ ".concat(e.length," ...")}var rj=p.forwardRef(function(e,t){var n,r=e.prefixCls,o=void 0===r?"rc-overflow":r,a=e.data,i=void 0===a?[]:a,l=e.renderItem,c=e.renderRawItem,s=e.itemKey,u=e.itemWidth,d=void 0===u?10:u,f=e.ssr,m=e.style,g=e.className,b=e.maxCount,y=e.renderRest,$=e.renderRawRest,A=e.prefix,w=e.suffix,C=e.component,S=e.itemComponent,k=e.onVisibleChange,E=(0,eO.A)(e,rO),O="full"===f,M=(n=p.useRef(null),function(e){if(!n.current){n.current=[];var t=function(){(0,eN.unstable_batchedUpdates)(function(){n.current.forEach(function(e){e()}),n.current=null})};if("u"b,e$=(0,p.useMemo)(function(){var e=i;return eb?e=null===j&&O?i:i.slice(0,Math.min(i.length,P/d)):"number"==typeof b&&(e=i.slice(0,b)),e},[i,d,j,b,eb]),eA=(0,p.useMemo)(function(){return eb?i.slice(eu+1):i.slice(e$.length)},[i,e$,eb,eu]),ew=(0,p.useCallback)(function(e,t){var n;return"function"==typeof s?s(e):null!=(n=s&&(null==e?void 0:e[s]))?n:t},[s]),eC=(0,p.useCallback)(l||function(e){return e},[l]);function eS(e,t,n){(ec!==e||void 0!==t&&t!==eo)&&(es(e),n||(em(eP){eS(r-1,e-o-ee+K);break}}w&&eI(0)+ee>P&&ea(null)}},[P,L,K,G,ee,ew,e$]);var ej=ep&&!!eA.length,ez={};null!==eo&&eb&&(ez={position:"absolute",left:eo,top:0});var eR={prefixCls:eg,responsive:eb,component:S,invalidate:ey},eP=c?function(e,t){var n=ew(e,t);return p.createElement(rw.Provider,{key:n,value:(0,eM.A)((0,eM.A)({},eR),{},{order:t,item:e,itemKey:n,registerSize:ek,display:t<=eu})},c(e,t))}:function(e,t){var n=ew(e,t);return p.createElement(r$,(0,R.A)({},eR,{order:t,key:n,item:e,renderItem:eC,itemKey:n,registerSize:ek,display:t<=eu}))},eT={order:ej?eu:Number.MAX_SAFE_INTEGER,className:"".concat(eg,"-rest"),registerSize:function(e,t){X(t),W(K)},display:ej},eD=y||rI,eL=$?p.createElement(rw.Provider,{value:(0,eM.A)((0,eM.A)({},eR),eT)},$(eA)):p.createElement(r$,(0,R.A)({},eR,eT),"function"==typeof eD?eD(eA):eD),eB=p.createElement(void 0===C?"div":C,(0,R.A)({className:h()(!ey&&o,g),style:m,ref:t},E),A&&p.createElement(r$,(0,R.A)({},eR,{responsive:ev,responsiveDisabled:!eb,order:-1,className:"".concat(eg,"-prefix"),registerSize:function(e,t){Q(t)},display:!0}),A),e$.map(eP),ex?eL:null,w&&p.createElement(r$,(0,R.A)({},eR,{responsive:ev,responsiveDisabled:!eb,order:eu,className:"".concat(eg,"-suffix"),registerSize:function(e,t){et(t)},display:!0,style:ez}),w));return ev?p.createElement(v.A,{onResize:function(e,t){z(t.clientWidth)},disabled:!eb},eB):eB});rj.displayName="Overflow",rj.Item=rE,rj.RESPONSIVE=rM,rj.INVALIDATE=rN;let rz=function(e,t,n){var r=(0,eM.A)((0,eM.A)({},e),n?t:{});return Object.keys(t).forEach(function(n){var o=t[n];"function"==typeof o&&(r[n]=function(){for(var t,r=arguments.length,a=Array(r),i=0;itypeof window&&window.document&&window.document.documentElement;function rL(e){return["string","number"].includes((0,ez.A)(e))}function rB(e){var t=void 0;return e&&(rL(e.title)?t=e.title.toString():rL(e.label)&&(t=e.label.toString())),t}function rF(e){var t;return null!=(t=e.key)?t:e.value}var rH=function(e){e.preventDefault(),e.stopPropagation()};let r_=function(e){var t,n,r=e.id,o=e.prefixCls,a=e.values,i=e.open,l=e.searchValue,c=e.autoClearSearchValue,s=e.inputRef,u=e.placeholder,d=e.disabled,f=e.mode,m=e.showSearch,g=e.autoFocus,v=e.autoComplete,b=e.activeDescendantId,y=e.tabIndex,x=e.removeIcon,$=e.maxTagCount,A=e.maxTagTextLength,w=e.maxTagPlaceholder,C=void 0===w?function(e){return"+ ".concat(e.length," ...")}:w,S=e.tagRender,k=e.onToggleOpen,E=e.onRemove,O=e.onInputChange,M=e.onInputPaste,N=e.onInputKeyDown,I=e.onInputMouseDown,j=e.onInputCompositionStart,z=e.onInputCompositionEnd,R=e.onInputBlur,P=p.useRef(null),T=(0,p.useState)(0),D=(0,eE.A)(T,2),L=D[0],B=D[1],F=(0,p.useState)(!1),_=(0,eE.A)(F,2),W=_[0],q=_[1],V="".concat(o,"-selection"),K=i||"multiple"===f&&!1===c||"tags"===f?l:"",X="tags"===f||"multiple"===f&&!1===c||m&&(i||W);t=function(){B(P.current.scrollWidth)},n=[K],rD?p.useLayoutEffect(t,n):p.useEffect(t,n);var Y=function(e,t,n,r,o){return p.createElement("span",{title:rB(e),className:h()("".concat(V,"-item"),(0,ej.A)({},"".concat(V,"-item-disabled"),n))},p.createElement("span",{className:"".concat(V,"-item-content")},t),r&&p.createElement(rm,{className:"".concat(V,"-item-remove"),onMouseDown:rH,onClick:o,customizeIcon:x},"\xd7"))},U=function(e,t,n,r,o,a){return p.createElement("span",{onMouseDown:function(e){rH(e),k(!i)}},S({label:t,value:e,disabled:n,closable:r,onClose:o,isMaxTag:!!a}))},G=p.createElement("div",{className:"".concat(V,"-search"),style:{width:L},onFocus:function(){q(!0)},onBlur:function(){q(!1)}},p.createElement(rP,{ref:s,open:i,prefixCls:o,id:r,inputElement:null,disabled:d,autoFocus:g,autoComplete:v,editable:X,activeDescendantId:b,value:K,onKeyDown:N,onMouseDown:I,onChange:O,onPaste:M,onCompositionStart:j,onCompositionEnd:z,onBlur:R,tabIndex:y,attrs:(0,H.A)(e,!0)}),p.createElement("span",{ref:P,className:"".concat(V,"-search-mirror"),"aria-hidden":!0},K,"\xa0")),Q=p.createElement(rj,{prefixCls:"".concat(V,"-overflow"),data:a,renderItem:function(e){var t=e.disabled,n=e.label,r=e.value,o=!d&&!t,a=n;if("number"==typeof A&&("string"==typeof n||"number"==typeof n)){var i=String(a);i.length>A&&(a="".concat(i.slice(0,A),"..."))}var l=function(t){t&&t.stopPropagation(),E(e)};return"function"==typeof S?U(r,a,t,o,l):Y(e,a,t,o,l)},renderRest:function(e){if(!a.length)return null;var t="function"==typeof C?C(e):C;return"function"==typeof S?U(void 0,t,!1,!1,void 0,!0):Y({title:t},t,!1)},suffix:G,itemKey:rF,maxCount:$});return p.createElement("span",{className:"".concat(V,"-wrap")},Q,!a.length&&!K&&p.createElement("span",{className:"".concat(V,"-placeholder")},u))},rW=function(e){var t=e.inputElement,n=e.prefixCls,r=e.id,o=e.inputRef,a=e.disabled,i=e.autoFocus,l=e.autoComplete,c=e.activeDescendantId,s=e.mode,u=e.open,d=e.values,f=e.placeholder,m=e.tabIndex,g=e.showSearch,h=e.searchValue,v=e.activeValue,b=e.maxLength,y=e.onInputKeyDown,x=e.onInputMouseDown,$=e.onInputChange,A=e.onInputPaste,w=e.onInputCompositionStart,C=e.onInputCompositionEnd,S=e.onInputBlur,k=e.title,E=p.useState(!1),O=(0,eE.A)(E,2),M=O[0],N=O[1],I="combobox"===s,j=I||g,z=d[0],R=h||"";I&&v&&!M&&(R=v),p.useEffect(function(){I&&N(!1)},[I,v]);var P=("combobox"===s||!!u||!!g)&&!!R,T=void 0===k?rB(z):k,D=p.useMemo(function(){return z?null:p.createElement("span",{className:"".concat(n,"-selection-placeholder"),style:P?{visibility:"hidden"}:void 0},f)},[z,P,f,n]);return p.createElement("span",{className:"".concat(n,"-selection-wrap")},p.createElement("span",{className:"".concat(n,"-selection-search")},p.createElement(rP,{ref:o,prefixCls:n,id:r,open:u,inputElement:t,disabled:a,autoFocus:i,autoComplete:l,editable:j,activeDescendantId:c,value:R,onKeyDown:y,onMouseDown:x,onChange:function(e){N(!0),$(e)},onPaste:A,onCompositionStart:w,onCompositionEnd:C,onBlur:S,tabIndex:m,attrs:(0,H.A)(e,!0),maxLength:I?b:void 0})),!I&&z?p.createElement("span",{className:"".concat(n,"-selection-item"),title:T,style:P?{visibility:"hidden"}:void 0},z.label):null,D)};var rq=p.forwardRef(function(e,t){var n=(0,p.useRef)(null),r=(0,p.useRef)(!1),o=e.prefixCls,a=e.open,i=e.mode,l=e.showSearch,c=e.tokenWithEnter,s=e.disabled,u=e.prefix,d=e.autoClearSearchValue,f=e.onSearch,m=e.onSearchSubmit,g=e.onToggleOpen,h=e.onInputKeyDown,v=e.onInputBlur,b=e.domRef;p.useImperativeHandle(t,function(){return{focus:function(e){n.current.focus(e)},blur:function(){n.current.blur()}}});var y=rb(0),x=(0,eE.A)(y,2),$=x[0],A=x[1],w=(0,p.useRef)(null),C=function(e){!1!==f(e,!0,r.current)&&g(!0)},S={inputRef:n,onInputKeyDown:function(e){var t=e.which,o=n.current instanceof HTMLTextAreaElement;!o&&a&&(t===eR.A.UP||t===eR.A.DOWN)&&e.preventDefault(),h&&h(e),t!==eR.A.ENTER||"tags"!==i||r.current||a||null==m||m(e.target.value),o&&!a&&~[eR.A.UP,eR.A.DOWN,eR.A.LEFT,eR.A.RIGHT].indexOf(t)||t&&![eR.A.ESC,eR.A.SHIFT,eR.A.BACKSPACE,eR.A.TAB,eR.A.WIN_KEY,eR.A.ALT,eR.A.META,eR.A.WIN_KEY_RIGHT,eR.A.CTRL,eR.A.SEMICOLON,eR.A.EQUALS,eR.A.CAPS_LOCK,eR.A.CONTEXT_MENU,eR.A.F1,eR.A.F2,eR.A.F3,eR.A.F4,eR.A.F5,eR.A.F6,eR.A.F7,eR.A.F8,eR.A.F9,eR.A.F10,eR.A.F11,eR.A.F12].includes(t)&&g(!0)},onInputMouseDown:function(){A(!0)},onInputChange:function(e){var t=e.target.value;if(c&&w.current&&/[\r\n]/.test(w.current)){var n=w.current.replace(/[\r\n]+$/,"").replace(/\r\n/g," ").replace(/[\r\n]/g," ");t=t.replace(n,w.current)}w.current=null,C(t)},onInputPaste:function(e){var t=e.clipboardData;w.current=(null==t?void 0:t.getData("text"))||""},onInputCompositionStart:function(){r.current=!0},onInputCompositionEnd:function(e){r.current=!1,"combobox"!==i&&C(e.target.value)},onInputBlur:v},k="multiple"===i||"tags"===i?p.createElement(r_,(0,R.A)({},e,S)):p.createElement(rW,(0,R.A)({},e,S));return p.createElement("div",{ref:b,className:"".concat(o,"-selector"),onClick:function(e){e.target!==n.current&&(void 0!==document.body.style.msTouchAction?setTimeout(function(){n.current.focus()}):n.current.focus())},onMouseDown:function(e){var t=$();e.target===n.current||t||"combobox"===i&&s||e.preventDefault(),("combobox"===i||l&&t)&&a||(a&&!1!==d&&f("",!0,!1),g())}},u&&p.createElement("div",{className:"".concat(o,"-prefix")},u),k)}),rV=n(82818),rK=["prefixCls","disabled","visible","children","popupElement","animation","transitionName","dropdownStyle","dropdownClassName","direction","placement","builtinPlacements","dropdownMatchSelectWidth","dropdownRender","dropdownAlign","getPopupContainer","empty","getTriggerDOMNode","onPopupVisibleChange","onPopupMouseEnter"],rX=function(e){var t=+(!0!==e);return{bottomLeft:{points:["tl","bl"],offset:[0,4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"},bottomRight:{points:["tr","br"],offset:[0,4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"},topLeft:{points:["bl","tl"],offset:[0,-4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"},topRight:{points:["br","tr"],offset:[0,-4],overflow:{adjustX:t,adjustY:1},htmlRegion:"scroll"}}},rY=p.forwardRef(function(e,t){var n=e.prefixCls,r=(e.disabled,e.visible),o=e.children,a=e.popupElement,i=e.animation,l=e.transitionName,c=e.dropdownStyle,s=e.dropdownClassName,u=e.direction,d=e.placement,f=e.builtinPlacements,m=e.dropdownMatchSelectWidth,g=e.dropdownRender,v=e.dropdownAlign,b=e.getPopupContainer,y=e.empty,x=e.getTriggerDOMNode,$=e.onPopupVisibleChange,A=e.onPopupMouseEnter,w=(0,eO.A)(e,rK),C="".concat(n,"-dropdown"),S=a;g&&(S=g(a));var k=p.useMemo(function(){return f||rX(m)},[f,m]),E=i?"".concat(C,"-").concat(i):l,O="number"==typeof m,M=p.useMemo(function(){return O?null:!1===m?"minWidth":"width"},[m,O]),N=c;O&&(N=(0,eM.A)((0,eM.A)({},N),{},{width:m}));var I=p.useRef(null);return p.useImperativeHandle(t,function(){return{getPopupElement:function(){var e;return null==(e=I.current)?void 0:e.popupElement}}}),p.createElement(rV.A,(0,R.A)({},w,{showAction:$?["click"]:[],hideAction:$?["click"]:[],popupPlacement:d||("rtl"===(void 0===u?"ltr":u)?"bottomRight":"bottomLeft"),builtinPlacements:k,prefixCls:C,popupTransitionName:E,popup:p.createElement("div",{onMouseEnter:A},S),ref:I,stretch:M,popupAlign:v,popupVisible:r,getPopupContainer:b,popupClassName:h()(s,(0,ej.A)({},"".concat(C,"-empty"),y)),popupStyle:N,getTriggerDOMNode:x,onPopupVisibleChange:$}),o)}),rU=n(87695);function rG(e,t){var n,r=e.key;return("value"in e&&(n=e.value),null!=r)?r:void 0!==n?n:"rc-index-key-".concat(t)}function rQ(e){return void 0!==e&&!Number.isNaN(e)}function rZ(e,t){var n=e||{},r=n.label,o=n.value,a=n.options,i=n.groupLabel,l=r||(t?"children":"label");return{label:l,value:o||"value",options:a||"options",groupLabel:i||l}}function rJ(e){var t=(0,eM.A)({},e);return"props"in t||Object.defineProperty(t,"props",{get:function(){return(0,tJ.Ay)(!1,"Return type is option instead of Option instance. Please read value directly instead of reading from `props`."),t}}),t}var r0=function(e,t,n){if(!t||!t.length)return null;var r=!1,o=function e(t,n){var o=(0,rU.A)(n),a=o[0],i=o.slice(1);if(!a)return[t];var l=t.split(a);return r=r||l.length>1,l.reduce(function(t,n){return[].concat((0,y.A)(t),(0,y.A)(e(n,i)))},[]).filter(Boolean)}(e,t);return r?void 0!==n?o.slice(0,n):o:null},r1=p.createContext(null);function r2(e){var t=e.visible,n=e.values;return t?p.createElement("span",{"aria-live":"polite",style:{width:0,height:0,position:"absolute",overflow:"hidden",opacity:0}},"".concat(n.slice(0,50).map(function(e){var t=e.label,n=e.value;return["number","string"].includes((0,ez.A)(t))?t:n}).join(", ")),n.length>50?", ...":null):null}var r4=["id","prefixCls","className","showSearch","tagRender","direction","omitDomProps","displayValues","onDisplayValuesChange","emptyOptions","notFoundContent","onClear","mode","disabled","loading","getInputElement","getRawInputElement","open","defaultOpen","onDropdownVisibleChange","activeValue","onActiveValueChange","activeDescendantId","searchValue","autoClearSearchValue","onSearch","onSearchSplit","tokenSeparators","allowClear","prefix","suffixIcon","clearIcon","OptionList","animation","transitionName","dropdownStyle","dropdownClassName","dropdownMatchSelectWidth","dropdownRender","dropdownAlign","placement","builtinPlacements","getPopupContainer","showAction","onFocus","onBlur","onKeyUp","onKeyDown","onMouseDown"],r3=["value","onChange","removeIcon","placeholder","autoFocus","maxTagCount","maxTagTextLength","maxTagPlaceholder","choiceTransitionName","onInputKeyDown","onPopupScroll","tabIndex"],r6=function(e){return"tags"===e||"multiple"===e},r8=p.forwardRef(function(e,t){var n,r,o,a,i,l,c,s=e.id,u=e.prefixCls,d=e.className,f=e.showSearch,m=e.tagRender,g=e.direction,v=e.omitDomProps,b=e.displayValues,x=e.onDisplayValuesChange,$=e.emptyOptions,A=e.notFoundContent,w=void 0===A?"Not Found":A,C=e.onClear,S=e.mode,k=e.disabled,E=e.loading,O=e.getInputElement,M=e.getRawInputElement,N=e.open,I=e.defaultOpen,j=e.onDropdownVisibleChange,z=e.activeValue,P=e.onActiveValueChange,T=e.activeDescendantId,D=e.searchValue,L=e.autoClearSearchValue,B=e.onSearch,F=e.onSearchSplit,H=e.tokenSeparators,W=e.allowClear,q=e.prefix,V=e.suffixIcon,K=e.clearIcon,X=e.OptionList,Y=e.animation,U=e.transitionName,G=e.dropdownStyle,Q=e.dropdownClassName,Z=e.dropdownMatchSelectWidth,J=e.dropdownRender,ee=e.dropdownAlign,et=e.placement,en=e.builtinPlacements,er=e.getPopupContainer,eo=e.showAction,ea=void 0===eo?[]:eo,ei=e.onFocus,el=e.onBlur,ec=e.onKeyUp,es=e.onKeyDown,eu=e.onMouseDown,ed=(0,eO.A)(e,r4),ef=r6(S),ep=(void 0!==f?f:ef)||"combobox"===S,em=(0,eM.A)({},ed);r3.forEach(function(e){delete em[e]}),null==v||v.forEach(function(e){delete em[e]});var eg=p.useState(!1),eh=(0,eE.A)(eg,2),ev=eh[0],eb=eh[1];p.useEffect(function(){eb((0,rp.A)())},[]);var ey=p.useRef(null),ex=p.useRef(null),e$=p.useRef(null),eA=p.useRef(null),ew=p.useRef(null),eC=p.useRef(!1),eS=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:10,t=p.useState(!1),n=(0,eE.A)(t,2),r=n[0],o=n[1],a=p.useRef(null),i=function(){window.clearTimeout(a.current)};return p.useEffect(function(){return i},[]),[r,function(t,n){i(),a.current=window.setTimeout(function(){o(t),n&&n()},e)},i]}(),ek=(0,eE.A)(eS,3),eN=ek[0],eI=ek[1],ez=ek[2];p.useImperativeHandle(t,function(){var e,t;return{focus:null==(e=eA.current)?void 0:e.focus,blur:null==(t=eA.current)?void 0:t.blur,scrollTo:function(e){var t;return null==(t=ew.current)?void 0:t.scrollTo(e)},nativeElement:ey.current||ex.current}});var eR=p.useMemo(function(){if("combobox"!==S)return D;var e,t=null==(e=b[0])?void 0:e.value;return"string"==typeof t||"number"==typeof t?String(t):""},[D,S,b]),eP="combobox"===S&&"function"==typeof O&&O()||null,eT="function"==typeof M&&M(),eD=(0,_.xK)(ex,null==eT||null==(a=eT.props)?void 0:a.ref),eL=p.useState(!1),eB=(0,eE.A)(eL,2),eF=eB[0],eH=eB[1];(0,rf.A)(function(){eH(!0)},[]);var e_=(0,rs.A)(!1,{defaultValue:I,value:N}),eW=(0,eE.A)(e_,2),eq=eW[0],eV=eW[1],eK=!!eF&&eq,eX=!w&&$;(k||eX&&eK&&"combobox"===S)&&(eK=!1);var eY=!eX&&eK,eU=p.useCallback(function(e){var t=void 0!==e?e:!eK;k||(eV(t),eK!==t&&(null==j||j(t)))},[k,eK,eV,j]),eG=p.useMemo(function(){return(H||[]).some(function(e){return["\n","\r\n"].includes(e)})},[H]),eQ=p.useContext(r1)||{},eZ=eQ.maxCount,eJ=eQ.rawValues,e0=function(e,t,n){if(!(ef&&rQ(eZ))||!((null==eJ?void 0:eJ.size)>=eZ)){var r=!0,o=e;null==P||P(null);var a=r0(e,H,rQ(eZ)?eZ-eJ.size:void 0),i=n?null:a;return"combobox"!==S&&i&&(o="",null==F||F(i),eU(!1),r=!1),B&&eR!==o&&B(o,{source:t?"typing":"effect"}),r}};p.useEffect(function(){eK||ef||"combobox"===S||e0("",!1,!1)},[eK]),p.useEffect(function(){eq&&k&&eV(!1),k&&!eC.current&&eI(!1)},[k]);var e1=rb(),e2=(0,eE.A)(e1,2),e4=e2[0],e3=e2[1],e6=p.useRef(!1),e8=p.useRef(!1),e5=[];p.useEffect(function(){return function(){e5.forEach(function(e){return clearTimeout(e)}),e5.splice(0,e5.length)}},[]);var e7=p.useState({}),e9=(0,eE.A)(e7,2)[1];eT&&(i=function(e){eU(e)}),n=function(){var e;return[ey.current,null==(e=e$.current)?void 0:e.getPopupElement()]},r=!!eT,(o=p.useRef(null)).current={open:eY,triggerOpen:eU,customizedTrigger:r},p.useEffect(function(){function e(e){if(null==(t=o.current)||!t.customizedTrigger){var t,r=e.target;r.shadowRoot&&e.composed&&(r=e.composedPath()[0]||r),o.current.open&&n().filter(function(e){return e}).every(function(e){return!e.contains(r)&&e!==r})&&o.current.triggerOpen(!1)}}return window.addEventListener("mousedown",e),function(){return window.removeEventListener("mousedown",e)}},[]);var te=p.useMemo(function(){return(0,eM.A)((0,eM.A)({},e),{},{notFoundContent:w,open:eK,triggerOpen:eY,id:s,showSearch:ep,multiple:ef,toggleOpen:eU})},[e,w,eY,eK,s,ep,ef,eU]),tt=!!V||E;tt&&(l=p.createElement(rm,{className:h()("".concat(u,"-arrow"),(0,ej.A)({},"".concat(u,"-arrow-loading"),E)),customizeIcon:V,customizeIconProps:{loading:E,searchValue:eR,open:eK,focused:eN,showSearch:ep}}));var tn=rg(u,function(){var e;null==C||C(),null==(e=eA.current)||e.focus(),x([],{type:"clear",values:b}),e0("",!1,!1)},b,W,K,k,eR,S),tr=tn.allowClear,to=tn.clearIcon,ta=p.createElement(X,{ref:ew}),ti=h()(u,d,(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(u,"-focused"),eN),"".concat(u,"-multiple"),ef),"".concat(u,"-single"),!ef),"".concat(u,"-allow-clear"),W),"".concat(u,"-show-arrow"),tt),"".concat(u,"-disabled"),k),"".concat(u,"-loading"),E),"".concat(u,"-open"),eK),"".concat(u,"-customize-input"),eP),"".concat(u,"-show-search"),ep)),tl=p.createElement(rY,{ref:e$,disabled:k,prefixCls:u,visible:eY,popupElement:ta,animation:Y,transitionName:U,dropdownStyle:G,dropdownClassName:Q,direction:g,dropdownMatchSelectWidth:Z,dropdownRender:J,dropdownAlign:ee,placement:et,builtinPlacements:en,getPopupContainer:er,empty:$,getTriggerDOMNode:function(e){return ex.current||e},onPopupVisibleChange:i,onPopupMouseEnter:function(){e9({})}},eT?p.cloneElement(eT,{ref:eD}):p.createElement(rq,(0,R.A)({},e,{domRef:ex,prefixCls:u,inputElement:eP,ref:eA,id:s,prefix:q,showSearch:ep,autoClearSearchValue:L,mode:S,activeDescendantId:T,tagRender:m,values:b,open:eK,onToggleOpen:eU,activeValue:z,searchValue:eR,onSearch:e0,onSearchSubmit:function(e){e&&e.trim()&&B(e,{source:"submit"})},onRemove:function(e){x(b.filter(function(t){return t!==e}),{type:"remove",values:[e]})},tokenWithEnter:eG,onInputBlur:function(){e6.current=!1}})));return c=eT?tl:p.createElement("div",(0,R.A)({className:ti},em,{ref:ey,onMouseDown:function(e){var t,n=e.target,r=null==(t=e$.current)?void 0:t.getPopupElement();if(r&&r.contains(n)){var o=setTimeout(function(){var e,t=e5.indexOf(o);-1!==t&&e5.splice(t,1),ez(),ev||r.contains(document.activeElement)||null==(e=eA.current)||e.focus()});e5.push(o)}for(var a=arguments.length,i=Array(a>1?a-1:0),l=1;l=0;l-=1){var c=a[l];if(!c.disabled){a.splice(l,1),i=c;break}}i&&x(a,{type:"remove",values:[i]})}for(var s=arguments.length,u=Array(s>1?s-1:0),d=1;d1?n-1:0),o=1;o2&&void 0!==arguments[2]&&arguments[2],r=e?t<0&&i.current.left||t>0&&i.current.right:t<0&&i.current.top||t>0&&i.current.bottom;return n&&r?(clearTimeout(a.current),o.current=!1):(!r||o.current)&&(clearTimeout(a.current),o.current=!0,a.current=setTimeout(function(){o.current=!1},50)),!o.current&&r}};var or=function(){function e(){(0,J.A)(this,e),(0,ej.A)(this,"maps",void 0),(0,ej.A)(this,"id",0),(0,ej.A)(this,"diffRecords",new Map),this.maps=Object.create(null)}return(0,ee.A)(e,[{key:"set",value:function(e,t){this.diffRecords.set(e,this.maps[e]),this.maps[e]=t,this.id+=1}},{key:"get",value:function(e){return this.maps[e]}},{key:"resetRecord",value:function(){this.diffRecords.clear()}},{key:"getRecord",value:function(){return this.diffRecords}}]),e}();function oo(e){var t=parseFloat(e);return isNaN(t)?0:t}var oa=14/15;function oi(e){return Math.floor(Math.pow(e,.5))}function ol(e,t){return("touches"in e?e.touches[0]:e)[t?"pageX":"pageY"]-window[t?"scrollX":"scrollY"]}var oc=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.rtl,o=e.scrollOffset,a=e.scrollRange,i=e.onStartMove,l=e.onStopMove,c=e.onScroll,s=e.horizontal,u=e.spinSize,d=e.containerSize,f=e.style,m=e.thumbStyle,g=e.showScrollBar,v=p.useState(!1),b=(0,eE.A)(v,2),y=b[0],$=b[1],A=p.useState(null),w=(0,eE.A)(A,2),C=w[0],S=w[1],k=p.useState(null),E=(0,eE.A)(k,2),O=E[0],M=E[1],N=!r,I=p.useRef(),j=p.useRef(),z=p.useState(g),R=(0,eE.A)(z,2),P=R[0],T=R[1],D=p.useRef(),L=function(){!0!==g&&!1!==g&&(clearTimeout(D.current),T(!0),D.current=setTimeout(function(){T(!1)},3e3))},B=a-d||0,F=d-u||0,H=p.useMemo(function(){return 0===o||0===B?0:o/B*F},[o,B,F]),_=p.useRef({top:H,dragging:y,pageY:C,startTop:O});_.current={top:H,dragging:y,pageY:C,startTop:O};var W=function(e){$(!0),S(ol(e,s)),M(_.current.top),i(),e.stopPropagation(),e.preventDefault()};p.useEffect(function(){var e=function(e){e.preventDefault()},t=I.current,n=j.current;return t.addEventListener("touchstart",e,{passive:!1}),n.addEventListener("touchstart",W,{passive:!1}),function(){t.removeEventListener("touchstart",e),n.removeEventListener("touchstart",W)}},[]);var q=p.useRef();q.current=B;var V=p.useRef();V.current=F,p.useEffect(function(){if(y){var e,t=function(t){var n=_.current,r=n.dragging,o=n.pageY,a=n.startTop;x.A.cancel(e);var i=I.current.getBoundingClientRect(),l=d/(s?i.width:i.height);if(r){var u=(ol(t,s)-o)*l,f=a;!N&&s?f-=u:f+=u;var p=q.current,m=V.current,g=Math.ceil((m?f/m:0)*p);g=Math.min(g=Math.max(g,0),p),e=(0,x.A)(function(){c(g,s)})}},n=function(){$(!1),l()};return window.addEventListener("mousemove",t,{passive:!0}),window.addEventListener("touchmove",t,{passive:!0}),window.addEventListener("mouseup",n,{passive:!0}),window.addEventListener("touchend",n,{passive:!0}),function(){window.removeEventListener("mousemove",t),window.removeEventListener("touchmove",t),window.removeEventListener("mouseup",n),window.removeEventListener("touchend",n),x.A.cancel(e)}}},[y]),p.useEffect(function(){return L(),function(){clearTimeout(D.current)}},[o]),p.useImperativeHandle(t,function(){return{delayHidden:L}});var K="".concat(n,"-scrollbar"),X={position:"absolute",visibility:P?null:"hidden"},Y={position:"absolute",borderRadius:99,background:"var(--rc-virtual-list-scrollbar-bg, rgba(0, 0, 0, 0.5))",cursor:"pointer",userSelect:"none"};return s?(Object.assign(X,{height:8,left:0,right:0,bottom:0}),Object.assign(Y,(0,ej.A)({height:"100%",width:u},N?"left":"right",H))):(Object.assign(X,(0,ej.A)({width:8,top:0,bottom:0},N?"right":"left",0)),Object.assign(Y,{width:"100%",height:u,top:H})),p.createElement("div",{ref:I,className:h()(K,(0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(K,"-horizontal"),s),"".concat(K,"-vertical"),!s),"".concat(K,"-visible"),P)),style:(0,eM.A)((0,eM.A)({},X),f),onMouseDown:function(e){e.stopPropagation(),e.preventDefault()},onMouseMove:L},p.createElement("div",{ref:j,className:h()("".concat(K,"-thumb"),(0,ej.A)({},"".concat(K,"-thumb-moving"),y)),style:(0,eM.A)((0,eM.A)({},Y),m),onMouseDown:W}))});function os(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=e/t*e;return isNaN(n)&&(n=0),Math.floor(n=Math.max(n,20))}var ou=["prefixCls","className","height","itemHeight","fullHeight","style","data","children","itemKey","virtual","direction","scrollWidth","component","onScroll","onVirtualScroll","onVisibleChange","innerProps","extraRender","styles","showScrollBar"],od=[],of={overflowY:"auto",overflowAnchor:"none"},op=p.forwardRef(function(e,t){var n,r,o,a,i,l,c,s,u,d,f,m,g,b,y,$,A,w,C,S,k,E,O,M,N,I,j,z,P,T,D,L,B,F,H,_,W,q=e.prefixCls,V=void 0===q?"rc-virtual-list":q,K=e.className,X=e.height,Y=e.itemHeight,U=e.fullHeight,G=e.style,Q=e.data,Z=e.children,J=e.itemKey,ee=e.virtual,et=e.direction,en=e.scrollWidth,er=e.component,eo=e.onScroll,ea=e.onVirtualScroll,ei=e.onVisibleChange,el=e.innerProps,ec=e.extraRender,es=e.styles,eu=e.showScrollBar,ed=void 0===eu?"optional":eu,ef=(0,eO.A)(e,ou),ep=p.useCallback(function(e){return"function"==typeof J?J(e):null==e?void 0:e[J]},[J]),em=function(e){var t=p.useState(0),n=(0,eE.A)(t,2),r=n[0],o=n[1],a=(0,p.useRef)(new Map),i=(0,p.useRef)(new or),l=(0,p.useRef)(0);function c(){l.current+=1}function s(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];c();var t=function(){var e=!1;a.current.forEach(function(t,n){if(t&&t.offsetParent){var r=t.offsetHeight,o=getComputedStyle(t),a=o.marginTop,l=o.marginBottom,c=r+oo(a)+oo(l);i.current.get(n)!==c&&(i.current.set(n,c),e=!0)}}),e&&o(function(e){return e+1})};if(e)t();else{l.current+=1;var n=l.current;Promise.resolve().then(function(){n===l.current&&t()})}}return(0,p.useEffect)(function(){return c},[]),[function(t,n){var r=e(t);a.current.get(r),n?(a.current.set(r,n),s()):a.current.delete(r)},s,i.current,r]}(ep),eg=(0,eE.A)(em,4),eh=eg[0],ev=eg[1],eb=eg[2],ey=eg[3],ex=!!(!1!==ee&&X&&Y),e$=p.useMemo(function(){return Object.values(eb.maps).reduce(function(e,t){return e+t},0)},[eb.id,eb.maps]),eA=ex&&Q&&(Math.max(Y*Q.length,e$)>X||!!en),ew="rtl"===et,eC=h()(V,(0,ej.A)({},"".concat(V,"-rtl"),ew),K),eS=Q||od,ek=(0,p.useRef)(),eI=(0,p.useRef)(),eR=(0,p.useRef)(),eP=(0,p.useState)(0),eT=(0,eE.A)(eP,2),eD=eT[0],eL=eT[1],eB=(0,p.useState)(0),eF=(0,eE.A)(eB,2),eH=eF[0],eW=eF[1],eq=(0,p.useState)(!1),eV=(0,eE.A)(eq,2),eK=eV[0],eX=eV[1],eY=function(){eX(!0)},eU=function(){eX(!1)};function eG(e){eL(function(t){var n,r=(n="function"==typeof e?e(t):e,Number.isNaN(to.current)||(n=Math.min(n,to.current)),n=Math.max(n,0));return ek.current.scrollTop=r,r})}var eQ=(0,p.useRef)({start:0,end:eS.length}),eZ=(0,p.useRef)(),eJ=(n=p.useState(eS),o=(r=(0,eE.A)(n,2))[0],a=r[1],i=p.useState(null),c=(l=(0,eE.A)(i,2))[0],s=l[1],p.useEffect(function(){var e=function(e,t,n){var r,o,a=e.length,i=t.length;if(0===a&&0===i)return null;a=eD&&void 0===t&&(t=i,n=o),s>eD+X&&void 0===r&&(r=i),o=s}return void 0===t&&(t=0,n=0,r=Math.ceil(X/Y)),void 0===r&&(r=eS.length-1),{scrollHeight:o,start:t,end:r=Math.min(r+1,eS.length-1),offset:n}},[eA,ex,eD,eS,ey,X]),e1=e0.scrollHeight,e2=e0.start,e4=e0.end,e3=e0.offset;eQ.current.start=e2,eQ.current.end=e4,p.useLayoutEffect(function(){var e=eb.getRecord();if(1===e.size){var t=Array.from(e.keys())[0],n=e.get(t),r=eS[e2];if(r&&void 0===n&&ep(r)===t){var o=eb.get(t)-Y;eG(function(e){return e+o})}}eb.resetRecord()},[e1]);var e6=p.useState({width:0,height:X}),e8=(0,eE.A)(e6,2),e5=e8[0],e7=e8[1],e9=(0,p.useRef)(),te=(0,p.useRef)(),tt=p.useMemo(function(){return os(e5.width,en)},[e5.width,en]),tn=p.useMemo(function(){return os(e5.height,e1)},[e5.height,e1]),tr=e1-X,to=(0,p.useRef)(tr);to.current=tr;var ta=eD<=0,ti=eD>=tr,tl=eH<=0,tc=eH>=en,ts=on(ta,ti,tl,tc),tu=function(){return{x:ew?-eH:eH,y:eD}},td=(0,p.useRef)(tu()),tf=(0,e_._q)(function(e){if(ea){var t=(0,eM.A)((0,eM.A)({},tu()),e);(td.current.x!==t.x||td.current.y!==t.y)&&(ea(t),td.current=t)}});function tp(e,t){t?((0,eN.flushSync)(function(){eW(e)}),tf()):eG(e)}var tm=function(e){var t=e,n=en?en-e5.width:0;return Math.min(t=Math.max(t,0),n)},tg=(0,e_._q)(function(e,t){t?((0,eN.flushSync)(function(){eW(function(t){return tm(t+(ew?-e:e))})}),tf()):eG(function(t){return t+e})}),th=(u=!!en,d=(0,p.useRef)(0),f=(0,p.useRef)(null),m=(0,p.useRef)(null),g=(0,p.useRef)(!1),b=on(ta,ti,tl,tc),y=(0,p.useRef)(null),$=(0,p.useRef)(null),[function(e){if(ex){x.A.cancel($.current),$.current=(0,x.A)(function(){y.current=null},2);var t,n,r=e.deltaX,o=e.deltaY,a=e.shiftKey,i=r,l=o;("sx"===y.current||!y.current&&a&&o&&!r)&&(i=o,l=0,y.current="sx");var c=Math.abs(i),s=Math.abs(l);if(null===y.current&&(y.current=u&&c>s?"x":"y"),"y"===y.current){t=e,n=l,x.A.cancel(f.current),!b(!1,n)&&(t._virtualHandled||(t._virtualHandled=!0,d.current+=n,m.current=n,ot||t.preventDefault(),f.current=(0,x.A)(function(){var e=g.current?10:1;tg(d.current*e,!1),d.current=0})))}else tg(i,!0),ot||e.preventDefault()}},function(e){ex&&(g.current=e.detail===m.current)}]),tv=(0,eE.A)(th,2),tb=tv[0],ty=tv[1];A=function(e,t,n,r){return!ts(e,t,n)&&(!r||!r._virtualHandled)&&(r&&(r._virtualHandled=!0),tb({preventDefault:function(){},deltaX:e?t:0,deltaY:e?0:t}),!0)},C=(0,p.useRef)(!1),S=(0,p.useRef)(0),k=(0,p.useRef)(0),E=(0,p.useRef)(null),O=(0,p.useRef)(null),M=function(e){if(C.current){var t=Math.ceil(e.touches[0].pageX),n=Math.ceil(e.touches[0].pageY),r=S.current-t,o=k.current-n,a=Math.abs(r)>Math.abs(o);a?S.current=t:k.current=n;var i=A(a,a?r:o,!1,e);i&&e.preventDefault(),clearInterval(O.current),i&&(O.current=setInterval(function(){a?r*=oa:o*=oa;var e=Math.floor(a?r:o);(!A(a,e,!0)||.1>=Math.abs(e))&&clearInterval(O.current)},16))}},N=function(){C.current=!1,w()},I=function(e){w(),1!==e.touches.length||C.current||(C.current=!0,S.current=Math.ceil(e.touches[0].pageX),k.current=Math.ceil(e.touches[0].pageY),E.current=e.target,E.current.addEventListener("touchmove",M,{passive:!1}),E.current.addEventListener("touchend",N,{passive:!0}))},w=function(){E.current&&(E.current.removeEventListener("touchmove",M),E.current.removeEventListener("touchend",N))},(0,rf.A)(function(){return ex&&ek.current.addEventListener("touchstart",I,{passive:!0}),function(){var e;null==(e=ek.current)||e.removeEventListener("touchstart",I),w(),clearInterval(O.current)}},[ex]),j=function(e){eG(function(t){return t+e})},p.useEffect(function(){var e=ek.current;if(eA&&e){var t,n,r=!1,o=function(){x.A.cancel(t)},a=function e(){o(),t=(0,x.A)(function(){j(n),e()})},i=function(){r=!1,o()},l=function(e){!e.target.draggable&&0===e.button&&(e._virtualHandled||(e._virtualHandled=!0,r=!0))},c=function(t){if(r){var i=ol(t,!1),l=e.getBoundingClientRect(),c=l.top,s=l.bottom;i<=c?(n=-oi(c-i),a()):i>=s?(n=oi(i-s),a()):o()}};return e.addEventListener("mousedown",l),e.ownerDocument.addEventListener("mouseup",i),e.ownerDocument.addEventListener("mousemove",c),e.ownerDocument.addEventListener("dragend",i),function(){e.removeEventListener("mousedown",l),e.ownerDocument.removeEventListener("mouseup",i),e.ownerDocument.removeEventListener("mousemove",c),e.ownerDocument.removeEventListener("dragend",i),o()}}},[eA]),(0,rf.A)(function(){function e(e){var t=ta&&e.detail<0,n=ti&&e.detail>0;!ex||t||n||e.preventDefault()}var t=ek.current;return t.addEventListener("wheel",tb,{passive:!1}),t.addEventListener("DOMMouseScroll",ty,{passive:!0}),t.addEventListener("MozMousePixelScroll",e,{passive:!1}),function(){t.removeEventListener("wheel",tb),t.removeEventListener("DOMMouseScroll",ty),t.removeEventListener("MozMousePixelScroll",e)}},[ex,ta,ti]),(0,rf.A)(function(){if(en){var e=tm(eH);eW(e),tf({x:e})}},[e5.width,en]);var tx=function(){var e,t;null==(e=e9.current)||e.delayHidden(),null==(t=te.current)||t.delayHidden()},t$=(z=function(){return ev(!0)},P=p.useRef(),T=p.useState(null),L=(D=(0,eE.A)(T,2))[0],B=D[1],(0,rf.A)(function(){if(L&&L.times<10){if(!ek.current)return void B(function(e){return(0,eM.A)({},e)});z();var e=L.targetAlign,t=L.originAlign,n=L.index,r=L.offset,o=ek.current.clientHeight,a=!1,i=e,l=null;if(o){for(var c=e||t,s=0,u=0,d=0,f=Math.min(eS.length-1,n),p=0;p<=f;p+=1){var m=ep(eS[p]);u=s;var g=eb.get(m);s=d=u+(void 0===g?Y:g)}for(var h="top"===c?r:o-r,v=f;v>=0;v-=1){var b=ep(eS[v]),y=eb.get(b);if(void 0===y){a=!0;break}if((h-=y)<=0)break}switch(c){case"top":l=u-r;break;case"bottom":l=d-o+r;break;default:var x=ek.current.scrollTop;ux+o&&(i="bottom")}null!==l&&eG(l),l!==L.lastTop&&(a=!0)}a&&B((0,eM.A)((0,eM.A)({},L),{},{times:L.times+1,targetAlign:i,lastTop:l}))}},[L,ek.current]),function(e){if(null==e)return void tx();if(x.A.cancel(P.current),"number"==typeof e)eG(e);else if(e&&"object"===(0,ez.A)(e)){var t,n=e.align;t="index"in e?e.index:eS.findIndex(function(t){return ep(t)===e.key});var r=e.offset;B({times:0,index:t,offset:void 0===r?0:r,originAlign:n})}});p.useImperativeHandle(t,function(){return{nativeElement:eR.current,getScrollInfo:tu,scrollTo:function(e){e&&"object"===(0,ez.A)(e)&&("left"in e||"top"in e)?(void 0!==e.left&&eW(tm(e.left)),t$(e.top)):t$(e)}}}),(0,rf.A)(function(){ei&&ei(eS.slice(e2,e4+1),eS)},[e2,e4,eS]);var tA=(F=p.useMemo(function(){return[new Map,[]]},[eS,eb.id,Y]),_=(H=(0,eE.A)(F,2))[0],W=H[1],function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e,n=_.get(e),r=_.get(t);if(void 0===n||void 0===r)for(var o=eS.length,a=W.length;aX&&p.createElement(oc,{ref:e9,prefixCls:V,scrollOffset:eD,scrollRange:e1,rtl:ew,onScroll:tp,onStartMove:eY,onStopMove:eU,spinSize:tn,containerSize:e5.height,style:null==es?void 0:es.verticalScrollBar,thumbStyle:null==es?void 0:es.verticalScrollBarThumb,showScrollBar:ed}),eA&&en>e5.width&&p.createElement(oc,{ref:te,prefixCls:V,scrollOffset:eH,scrollRange:en,rtl:ew,onScroll:tp,onStartMove:eY,onStopMove:eU,spinSize:tt,containerSize:e5.width,horizontal:!0,style:null==es?void 0:es.horizontalScrollBar,thumbStyle:null==es?void 0:es.horizontalScrollBarThumb,showScrollBar:ed}))});op.displayName="List";var om=["disabled","title","children","style","className"];function og(e){return"string"==typeof e||"number"==typeof e}var oh=p.forwardRef(function(e,t){var n=rv(),r=n.prefixCls,o=n.id,a=n.open,i=n.multiple,l=n.mode,c=n.searchValue,s=n.toggleOpen,u=n.notFoundContent,d=n.onPopupScroll,f=p.useContext(r1),m=f.maxCount,g=f.flattenOptions,v=f.onActiveValue,x=f.defaultActiveFirstOption,$=f.onSelect,A=f.menuItemSelectedIcon,w=f.rawValues,C=f.fieldNames,S=f.virtual,k=f.direction,E=f.listHeight,O=f.listItemHeight,M=f.optionRender,N="".concat(r,"-item"),I=(0,e5.A)(function(){return g},[a,g],function(e,t){return t[0]&&e[1]!==t[1]}),j=p.useRef(null),z=p.useMemo(function(){return i&&rQ(m)&&(null==w?void 0:w.size)>=m},[i,m,null==w?void 0:w.size]),P=function(e){e.preventDefault()},T=function(e){var t;null==(t=j.current)||t.scrollTo("number"==typeof e?{index:e}:e)},D=p.useCallback(function(e){return"combobox"!==l&&w.has(e)},[l,(0,y.A)(w).toString(),w.size]),L=function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=I.length,r=0;r1&&void 0!==arguments[1]&&arguments[1];W(e);var n={source:t?"keyboard":"mouse"},r=I[e];r?v(r.value,e,n):v(null,-1,n)};(0,p.useEffect)(function(){q(!1!==x?L(0):-1)},[I.length,c]);var V=p.useCallback(function(e){return"combobox"===l?String(e).toLowerCase()===c.toLowerCase():w.has(e)},[l,c,(0,y.A)(w).toString(),w.size]);(0,p.useEffect)(function(){var e,t=setTimeout(function(){if(!i&&a&&1===w.size){var e=Array.from(w)[0],t=I.findIndex(function(t){var n=t.data;return c?String(n.value).startsWith(c):n.value===e});-1!==t&&(q(t),T(t))}});return a&&(null==(e=j.current)||e.scrollTo(void 0)),function(){return clearTimeout(t)}},[a,c]);var K=function(e){void 0!==e&&$(e,{selected:!w.has(e)}),i||s(!1)};if(p.useImperativeHandle(t,function(){return{onKeyDown:function(e){var t=e.which,n=e.ctrlKey;switch(t){case eR.A.N:case eR.A.P:case eR.A.UP:case eR.A.DOWN:var r=0;if(t===eR.A.UP?r=-1:t===eR.A.DOWN?r=1:/(mac\sos|macintosh)/i.test(navigator.appVersion)&&n&&(t===eR.A.N?r=1:t===eR.A.P&&(r=-1)),0!==r){var o=L(_+r,r);T(o),q(o,!0)}break;case eR.A.TAB:case eR.A.ENTER:var i,l=I[_];!l||null!=l&&null!=(i=l.data)&&i.disabled||z?K(void 0):K(l.value),a&&e.preventDefault();break;case eR.A.ESC:s(!1),a&&e.stopPropagation()}},onKeyUp:function(){},scrollTo:function(e){T(e)}}}),0===I.length)return p.createElement("div",{role:"listbox",id:"".concat(o,"_list"),className:"".concat(N,"-empty"),onMouseDown:P},u);var X=Object.keys(C).map(function(e){return C[e]}),Y=function(e){return e.label};function U(e,t){return{role:e.group?"presentation":"option",id:"".concat(o,"_list_").concat(t)}}var G=function(e){var t=I[e];if(!t)return null;var n=t.data||{},r=n.value,o=t.group,a=(0,H.A)(n,!0),i=Y(t);return t?p.createElement("div",(0,R.A)({"aria-label":"string"!=typeof i||o?null:i},a,{key:e},U(t,e),{"aria-selected":V(r)}),r):null},Q={role:"listbox",id:"".concat(o,"_list")};return p.createElement(p.Fragment,null,S&&p.createElement("div",(0,R.A)({},Q,{style:{height:0,width:0,overflow:"hidden"}}),G(_-1),G(_),G(_+1)),p.createElement(op,{itemKey:"key",ref:j,data:I,height:E,itemHeight:O,fullHeight:!1,onMouseDown:P,onScroll:d,virtual:S,direction:k,innerProps:S?null:Q},function(e,t){var n=e.group,r=e.groupOption,o=e.data,a=e.label,i=e.value,l=o.key;if(n){var c,s=null!=(c=o.title)?c:og(a)?a.toString():void 0;return p.createElement("div",{className:h()(N,"".concat(N,"-group"),o.className),title:s},void 0!==a?a:l)}var u=o.disabled,d=o.title,f=(o.children,o.style),m=o.className,g=(0,eO.A)(o,om),v=(0,b.A)(g,X),y=D(i),x=u||!y&&z,$="".concat(N,"-option"),w=h()(N,$,m,(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat($,"-grouped"),r),"".concat($,"-active"),_===t&&!x),"".concat($,"-disabled"),x),"".concat($,"-selected"),y)),C=Y(e),k=!A||"function"==typeof A||y,E="number"==typeof C?C:C||i,O=og(E)?E.toString():void 0;return void 0!==d&&(O=d),p.createElement("div",(0,R.A)({},(0,H.A)(v),S?{}:U(e,t),{"aria-selected":V(i),className:w,title:O,onMouseMove:function(){_===t||x||q(t)},onClick:function(){x||K(i)},style:f}),p.createElement("div",{className:"".concat($,"-content")},"function"==typeof M?M(e,{index:t}):E),p.isValidElement(A)||y,k&&p.createElement(rm,{className:"".concat(N,"-option-state"),customizeIcon:A,customizeIconProps:{value:i,disabled:x,isSelected:y}},y?"✓":null))}))});let ov=function(e,t){var n=p.useRef({values:new Map,options:new Map});return[p.useMemo(function(){var r=n.current,o=r.values,a=r.options,i=e.map(function(e){if(void 0===e.label){var t;return(0,eM.A)((0,eM.A)({},e),{},{label:null==(t=o.get(e.value))?void 0:t.label})}return e}),l=new Map,c=new Map;return i.forEach(function(e){l.set(e.value,e),c.set(e.value,t.get(e.value)||a.get(e.value))}),n.current.values=l,n.current.options=c,i},[e,t]),p.useCallback(function(e){return t.get(e)||n.current.options.get(e)},[t])]};function ob(e,t){return rT(e).join("").toUpperCase().includes(t)}var oy=0,ox=(0,tu.A)();function o$(e){var t=p.useState(),n=(0,eE.A)(t,2),r=n[0],o=n[1];return p.useEffect(function(){var e;o("rc_select_".concat((ox?(e=oy,oy+=1):e="TEST_OR_SSR",e)))},[]),e||r}var oA=["children","value"],ow=["children"];function oC(e){var t=p.useRef();return t.current=e,p.useCallback(function(){return t.current.apply(t,arguments)},[])}var oS=["id","mode","prefixCls","backfill","fieldNames","inputValue","searchValue","onSearch","autoClearSearchValue","onSelect","onDeselect","dropdownMatchSelectWidth","filterOption","filterSort","optionFilterProp","optionLabelProp","options","optionRender","children","defaultActiveFirstOption","menuItemSelectedIcon","virtual","direction","listHeight","listItemHeight","labelRender","value","defaultValue","labelInValue","onChange","maxCount"],ok=["inputValue"],oE=p.forwardRef(function(e,t){var n,r=e.id,o=e.mode,a=e.prefixCls,i=e.backfill,l=e.fieldNames,c=e.inputValue,s=e.searchValue,u=e.onSearch,d=e.autoClearSearchValue,f=void 0===d||d,m=e.onSelect,g=e.onDeselect,h=e.dropdownMatchSelectWidth,v=void 0===h||h,b=e.filterOption,x=e.filterSort,$=e.optionFilterProp,A=e.optionLabelProp,w=e.options,C=e.optionRender,S=e.children,k=e.defaultActiveFirstOption,E=e.menuItemSelectedIcon,O=e.virtual,M=e.direction,N=e.listHeight,I=void 0===N?200:N,j=e.listItemHeight,z=void 0===j?20:j,P=e.labelRender,T=e.value,D=e.defaultValue,L=e.labelInValue,B=e.onChange,F=e.maxCount,H=(0,eO.A)(e,oS),_=o$(r),W=r6(o),q=!!(!w&&S),V=p.useMemo(function(){return(void 0!==b||"combobox"!==o)&&b},[b,o]),K=p.useMemo(function(){return rZ(l,q)},[JSON.stringify(l),q]),X=(0,rs.A)("",{value:void 0!==s?s:c,postState:function(e){return e||""}}),Y=(0,eE.A)(X,2),U=Y[0],G=Y[1],Q=p.useMemo(function(){var e=w;w||(e=function e(t){var n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return(0,rc.A)(t).map(function(t,r){if(!p.isValidElement(t)||!t.type)return null;var o,a,i,l,c,s=t.type.isSelectOptGroup,u=t.key,d=t.props,f=d.children,m=(0,eO.A)(d,ow);return n||!s?(o=t.key,i=(a=t.props).children,l=a.value,c=(0,eO.A)(a,oA),(0,eM.A)({key:o,value:void 0!==l?l:o,children:i},c)):(0,eM.A)((0,eM.A)({key:"__RC_SELECT_GRP__".concat(null===u?r:u,"__"),label:u},m),{},{options:e(f)})}).filter(function(e){return e})}(S));var t=new Map,n=new Map,r=function(e,t,n){n&&"string"==typeof n&&e.set(t[n],t)};return!function e(o){for(var a=arguments.length>1&&void 0!==arguments[1]&&arguments[1],i=0;i0?e(t.options):t.options}):t})}(em):em},[em,x,U]),eh=p.useMemo(function(){return function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.fieldNames,r=t.childrenAsData,o=[],a=rZ(n,!1),i=a.label,l=a.value,c=a.options,s=a.groupLabel;return!function e(t,n){Array.isArray(t)&&t.forEach(function(t){if(!n&&c in t){var a=t[s];void 0===a&&r&&(a=t.label),o.push({key:rG(t,o.length),group:!0,data:t,label:a}),e(t[c],!0)}else{var u=t[l];o.push({key:rG(t,o.length),groupOption:n,data:t,label:t[i],value:u})}})}(e,!1),o}(eg,{fieldNames:K,childrenAsData:q})},[eg,K,q]),ev=function(e){var t=et(e);if(ea(t),B&&(t.length!==ec.length||t.some(function(e,t){var n;return(null==(n=ec[t])?void 0:n.value)!==(null==e?void 0:e.value)}))){var n=L?t:t.map(function(e){return e.value}),r=t.map(function(e){return rJ(es(e.value))});B(W?n:n[0],W?r:r[0])}},eb=p.useState(null),ey=(0,eE.A)(eb,2),ex=ey[0],e$=ey[1],eA=p.useState(0),ew=(0,eE.A)(eA,2),eC=ew[0],eS=ew[1],ek=void 0!==k?k:"combobox"!==o,eN=p.useCallback(function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=n.source;eS(t),i&&"combobox"===o&&null!==e&&"keyboard"===(void 0===r?"keyboard":r)&&e$(String(e))},[i,o]),eI=function(e,t,n){var r=function(){var t,n=es(e);return[L?{label:null==n?void 0:n[K.label],value:e,key:null!=(t=null==n?void 0:n.key)?t:e}:e,rJ(n)]};if(t&&m){var o=r(),a=(0,eE.A)(o,2);m(a[0],a[1])}else if(!t&&g&&"clear"!==n){var i=r(),l=(0,eE.A)(i,2);g(l[0],l[1])}},eR=oC(function(e,t){var n=!W||t.selected;ev(n?W?[].concat((0,y.A)(ec),[e]):[e]:ec.filter(function(t){return t.value!==e})),eI(e,n),"combobox"===o?e$(""):(!r6||f)&&(G(""),e$(""))}),eP=p.useMemo(function(){var e=!1!==O&&!1!==v;return(0,eM.A)((0,eM.A)({},Q),{},{flattenOptions:eh,onActiveValue:eN,defaultActiveFirstOption:ek,onSelect:eR,menuItemSelectedIcon:E,rawValues:ed,fieldNames:K,virtual:e,direction:M,listHeight:I,listItemHeight:z,childrenAsData:q,maxCount:F,optionRender:C})},[F,Q,eh,eN,ek,eR,E,ed,K,O,v,M,I,z,q,C]);return p.createElement(r1.Provider,{value:eP},p.createElement(r8,(0,R.A)({},H,{id:_,prefixCls:void 0===a?"rc-select":a,ref:t,omitDomProps:ok,mode:o,displayValues:eu,onDisplayValuesChange:function(e,t){ev(e);var n=t.type,r=t.values;("remove"===n||"clear"===n)&&r.forEach(function(e){eI(e.value,!1,n)})},direction:M,searchValue:U,onSearch:function(e,t){if(G(e),e$(null),"submit"===t.source){var n=(e||"").trim();n&&(ev(Array.from(new Set([].concat((0,y.A)(ed),[n])))),eI(n,!0),G(""));return}"blur"!==t.source&&("combobox"===o&&ev(e),null==u||u(e))},autoClearSearchValue:f,onSearchSplit:function(e){var t=e;"tags"!==o&&(t=e.map(function(e){var t=J.get(e);return null==t?void 0:t.value}).filter(function(e){return void 0!==e}));var n=Array.from(new Set([].concat((0,y.A)(ed),(0,y.A)(t))));ev(n),n.forEach(function(e){eI(e,!0)})},dropdownMatchSelectWidth:v,OptionList:oh,emptyOptions:!eh.length,activeValue:ex,activeDescendantId:"".concat(_,"_list_").concat(eC)})))});oE.Option=r7,oE.OptGroup=r5;var oO=n(58182);let oM=(0,w.OF)("Empty",e=>{let{componentCls:t,controlHeightLG:n,calc:r}=e;return[(e=>{let{componentCls:t,margin:n,marginXS:r,marginXL:o,fontSize:a,lineHeight:i}=e;return{[t]:{marginInline:r,fontSize:a,lineHeight:i,textAlign:"center",[`${t}-image`]:{height:e.emptyImgHeight,marginBottom:r,opacity:e.opacityImage,img:{height:"100%"},svg:{maxWidth:"100%",height:"100%",margin:"auto"}},[`${t}-description`]:{color:e.colorTextDescription},[`${t}-footer`]:{marginTop:n},"&-normal":{marginBlock:o,color:e.colorTextDescription,[`${t}-description`]:{color:e.colorTextDescription},[`${t}-image`]:{height:e.emptyImgHeightMD}},"&-small":{marginBlock:r,color:e.colorTextDescription,[`${t}-image`]:{height:e.emptyImgHeightSM}}}}})((0,ey.oX)(e,{emptyImgCls:`${t}-img`,emptyImgHeight:r(n).mul(2.5).equal(),emptyImgHeightMD:n,emptyImgHeightSM:r(n).mul(.875).equal()}))]});var oN=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let oI=p.createElement(()=>{let[,e]=(0,tb.Ay)(),[t]=(0,tI.A)("Empty"),n=new ts.q(e.colorBgBase).toHsl().l<.5?{opacity:.65}:{};return p.createElement("svg",{style:n,width:"184",height:"152",viewBox:"0 0 184 152",xmlns:"http://www.w3.org/2000/svg"},p.createElement("title",null,(null==t?void 0:t.description)||"Empty"),p.createElement("g",{fill:"none",fillRule:"evenodd"},p.createElement("g",{transform:"translate(24 31.67)"},p.createElement("ellipse",{fillOpacity:".8",fill:"#F5F5F7",cx:"67.797",cy:"106.89",rx:"67.797",ry:"12.668"}),p.createElement("path",{d:"M122.034 69.674L98.109 40.229c-1.148-1.386-2.826-2.225-4.593-2.225h-51.44c-1.766 0-3.444.839-4.592 2.225L13.56 69.674v15.383h108.475V69.674z",fill:"#AEB8C2"}),p.createElement("path",{d:"M101.537 86.214L80.63 61.102c-1.001-1.207-2.507-1.867-4.048-1.867H31.724c-1.54 0-3.047.66-4.048 1.867L6.769 86.214v13.792h94.768V86.214z",fill:"url(#linearGradient-1)",transform:"translate(13.56)"}),p.createElement("path",{d:"M33.83 0h67.933a4 4 0 0 1 4 4v93.344a4 4 0 0 1-4 4H33.83a4 4 0 0 1-4-4V4a4 4 0 0 1 4-4z",fill:"#F5F5F7"}),p.createElement("path",{d:"M42.678 9.953h50.237a2 2 0 0 1 2 2V36.91a2 2 0 0 1-2 2H42.678a2 2 0 0 1-2-2V11.953a2 2 0 0 1 2-2zM42.94 49.767h49.713a2.262 2.262 0 1 1 0 4.524H42.94a2.262 2.262 0 0 1 0-4.524zM42.94 61.53h49.713a2.262 2.262 0 1 1 0 4.525H42.94a2.262 2.262 0 0 1 0-4.525zM121.813 105.032c-.775 3.071-3.497 5.36-6.735 5.36H20.515c-3.238 0-5.96-2.29-6.734-5.36a7.309 7.309 0 0 1-.222-1.79V69.675h26.318c2.907 0 5.25 2.448 5.25 5.42v.04c0 2.971 2.37 5.37 5.277 5.37h34.785c2.907 0 5.277-2.421 5.277-5.393V75.1c0-2.972 2.343-5.426 5.25-5.426h26.318v33.569c0 .617-.077 1.216-.221 1.789z",fill:"#DCE0E6"})),p.createElement("path",{d:"M149.121 33.292l-6.83 2.65a1 1 0 0 1-1.317-1.23l1.937-6.207c-2.589-2.944-4.109-6.534-4.109-10.408C138.802 8.102 148.92 0 161.402 0 173.881 0 184 8.102 184 18.097c0 9.995-10.118 18.097-22.599 18.097-4.528 0-8.744-1.066-12.28-2.902z",fill:"#DCE0E6"}),p.createElement("g",{transform:"translate(149.65 15.383)",fill:"#FFF"},p.createElement("ellipse",{cx:"20.654",cy:"3.167",rx:"2.849",ry:"2.815"}),p.createElement("path",{d:"M5.698 5.63H0L2.898.704zM9.259.704h4.985V5.63H9.259z"}))))},null),oj=p.createElement(()=>{let[,e]=(0,tb.Ay)(),[t]=(0,tI.A)("Empty"),{colorFill:n,colorFillTertiary:r,colorFillQuaternary:o,colorBgContainer:a}=e,{borderColor:i,shadowColor:l,contentColor:c}=(0,p.useMemo)(()=>({borderColor:new ts.q(n).onBackground(a).toHexShortString(),shadowColor:new ts.q(r).onBackground(a).toHexShortString(),contentColor:new ts.q(o).onBackground(a).toHexShortString()}),[n,r,o,a]);return p.createElement("svg",{width:"64",height:"41",viewBox:"0 0 64 41",xmlns:"http://www.w3.org/2000/svg"},p.createElement("title",null,(null==t?void 0:t.description)||"Empty"),p.createElement("g",{transform:"translate(0 1)",fill:"none",fillRule:"evenodd"},p.createElement("ellipse",{fill:l,cx:"32",cy:"33",rx:"32",ry:"7"}),p.createElement("g",{fillRule:"nonzero",stroke:i},p.createElement("path",{d:"M55 12.76L44.854 1.258C44.367.474 43.656 0 42.907 0H21.093c-.749 0-1.46.474-1.947 1.257L9 12.761V22h46v-9.24z"}),p.createElement("path",{d:"M41.613 15.931c0-1.605.994-2.93 2.227-2.931H55v18.137C55 33.26 53.68 35 52.05 35h-40.1C10.32 35 9 33.259 9 31.137V13h11.16c1.233 0 2.227 1.323 2.227 2.928v.022c0 1.605 1.005 2.901 2.237 2.901h14.752c1.232 0 2.237-1.308 2.237-2.913v-.007z",fill:c}))))},null),oz=e=>{var{className:t,rootClassName:n,prefixCls:r,image:o=oI,description:a,children:i,imageStyle:l,style:c}=e,s=oN(e,["className","rootClassName","prefixCls","image","description","children","imageStyle","style"]);let{getPrefixCls:u,direction:d,empty:f}=p.useContext(A.QO),m=u("empty",r),[g,v,b]=oM(m),[y]=(0,tI.A)("Empty"),x=void 0!==a?a:null==y?void 0:y.description,$="string"==typeof x?x:"empty",w=null;return w="string"==typeof o?p.createElement("img",{alt:$,src:o}):o,g(p.createElement("div",Object.assign({className:h()(v,b,m,null==f?void 0:f.className,{[`${m}-normal`]:o===oj,[`${m}-rtl`]:"rtl"===d},t,n),style:Object.assign(Object.assign({},null==f?void 0:f.style),c)},s),p.createElement("div",{className:`${m}-image`,style:l},w),x&&p.createElement("div",{className:`${m}-description`},x),i&&p.createElement("div",{className:`${m}-footer`},i)))};oz.PRESENTED_IMAGE_DEFAULT=oI,oz.PRESENTED_IMAGE_SIMPLE=oj;let oR=oz,oP=e=>{let{componentName:t}=e,{getPrefixCls:n}=(0,p.useContext)(A.QO),r=n("empty");switch(t){case"Table":case"List":return m().createElement(oR,{image:oR.PRESENTED_IMAGE_SIMPLE});case"Select":case"TreeSelect":case"Cascader":case"Transfer":case"Mentions":return m().createElement(oR,{image:oR.PRESENTED_IMAGE_SIMPLE,className:`${r}-small`});case"Table.filter":return null;default:return m().createElement(oR,null)}};var oT=n(829),oD=n(94241),oL=n(90124),oB=n(76327);let oF=function(e,t){let n;return e||{bottomLeft:Object.assign(Object.assign({},n={overflow:{adjustX:!0,adjustY:!0,shiftY:!0},htmlRegion:"scroll"===t?"scroll":"visible",dynamicInset:!0}),{points:["tl","bl"],offset:[0,4]}),bottomRight:Object.assign(Object.assign({},n),{points:["tr","br"],offset:[0,4]}),topLeft:Object.assign(Object.assign({},n),{points:["bl","tl"],offset:[0,-4]}),topRight:Object.assign(Object.assign({},n),{points:["br","tr"],offset:[0,-4]})}};var oH=n(55974);let o_=new q.Mo("antSlideUpIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1}}),oW=new q.Mo("antSlideUpOut",{"0%":{transform:"scaleY(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"0% 0%",opacity:0}}),oq=new q.Mo("antSlideDownIn",{"0%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0},"100%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1}}),oV=new q.Mo("antSlideDownOut",{"0%":{transform:"scaleY(1)",transformOrigin:"100% 100%",opacity:1},"100%":{transform:"scaleY(0.8)",transformOrigin:"100% 100%",opacity:0}}),oK={"slide-up":{inKeyframes:o_,outKeyframes:oW},"slide-down":{inKeyframes:oq,outKeyframes:oV},"slide-left":{inKeyframes:new q.Mo("antSlideLeftIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1}}),outKeyframes:new q.Mo("antSlideLeftOut",{"0%":{transform:"scaleX(1)",transformOrigin:"0% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"0% 0%",opacity:0}})},"slide-right":{inKeyframes:new q.Mo("antSlideRightIn",{"0%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0},"100%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1}}),outKeyframes:new q.Mo("antSlideRightOut",{"0%":{transform:"scaleX(1)",transformOrigin:"100% 0%",opacity:1},"100%":{transform:"scaleX(0.8)",transformOrigin:"100% 0%",opacity:0}})}},oX=(e,t)=>{let{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:o,outKeyframes:a}=oK[t];return[(0,nx.b)(r,o,a,e.motionDurationMid),{[` - ${r}-enter, - ${r}-appear - `]:{transform:"scale(0)",transformOrigin:"0% 0%",opacity:0,animationTimingFunction:e.motionEaseOutQuint,"&-prepare":{transform:"scale(1)"}},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInQuint}}]},oY=new q.Mo("antMoveDownIn",{"0%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),oU=new q.Mo("antMoveDownOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, 100%, 0)",transformOrigin:"0 0",opacity:0}}),oG=new q.Mo("antMoveLeftIn",{"0%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),oQ=new q.Mo("antMoveLeftOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(-100%, 0, 0)",transformOrigin:"0 0",opacity:0}}),oZ=new q.Mo("antMoveRightIn",{"0%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),oJ=new q.Mo("antMoveRightOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(100%, 0, 0)",transformOrigin:"0 0",opacity:0}}),o0={"move-up":{inKeyframes:new q.Mo("antMoveUpIn",{"0%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),outKeyframes:new q.Mo("antMoveUpOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:"translate3d(0, -100%, 0)",transformOrigin:"0 0",opacity:0}})},"move-down":{inKeyframes:oY,outKeyframes:oU},"move-left":{inKeyframes:oG,outKeyframes:oQ},"move-right":{inKeyframes:oZ,outKeyframes:oJ}},o1=(e,t)=>{let{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:o,outKeyframes:a}=o0[t];return[(0,nx.b)(r,o,a,e.motionDurationMid),{[` - ${r}-enter, - ${r}-appear - `]:{opacity:0,animationTimingFunction:e.motionEaseOutCirc},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInOutCirc}}]},o2=e=>{let{optionHeight:t,optionFontSize:n,optionLineHeight:r,optionPadding:o}=e;return{position:"relative",display:"block",minHeight:t,padding:o,color:e.colorText,fontWeight:"normal",fontSize:n,lineHeight:r,boxSizing:"border-box"}},o4=e=>{let{multipleSelectItemHeight:t,paddingXXS:n,lineWidth:r,INTERNAL_FIXED_ITEM_MARGIN:o}=e,a=e.max(e.calc(n).sub(r).equal(),0),i=e.max(e.calc(a).sub(o).equal(),0);return{basePadding:a,containerPadding:i,itemHeight:(0,q.zA)(t),itemLineHeight:(0,q.zA)(e.calc(t).sub(e.calc(e.lineWidth).mul(2)).equal())}},o3=e=>{let{componentCls:t,iconCls:n,borderRadiusSM:r,motionDurationSlow:o,paddingXS:a,multipleItemColorDisabled:i,multipleItemBorderColorDisabled:l,colorIcon:c,colorIconHover:s,INTERNAL_FIXED_ITEM_MARGIN:u}=e;return{[`${t}-selection-overflow`]:{position:"relative",display:"flex",flex:"auto",flexWrap:"wrap",maxWidth:"100%","&-item":{flex:"none",alignSelf:"center",maxWidth:"100%",display:"inline-flex"},[`${t}-selection-item`]:{display:"flex",alignSelf:"center",flex:"none",boxSizing:"border-box",maxWidth:"100%",marginBlock:u,borderRadius:r,cursor:"default",transition:`font-size ${o}, line-height ${o}, height ${o}`,marginInlineEnd:e.calc(u).mul(2).equal(),paddingInlineStart:a,paddingInlineEnd:e.calc(a).div(2).equal(),[`${t}-disabled&`]:{color:i,borderColor:l,cursor:"not-allowed"},"&-content":{display:"inline-block",marginInlineEnd:e.calc(a).div(2).equal(),overflow:"hidden",whiteSpace:"pre",textOverflow:"ellipsis"},"&-remove":Object.assign(Object.assign({},(0,V.Nk)()),{display:"inline-flex",alignItems:"center",color:c,fontWeight:"bold",fontSize:10,lineHeight:"inherit",cursor:"pointer",[`> ${n}`]:{verticalAlign:"-0.2em"},"&:hover":{color:s}})}}}};function o6(e,t){let{componentCls:n}=e,r=t?`${n}-${t}`:"",o={[`${n}-multiple${r}`]:{fontSize:e.fontSize,[`${n}-selector`]:{[`${n}-show-search&`]:{cursor:"text"}},[` - &${n}-show-arrow ${n}-selector, - &${n}-allow-clear ${n}-selector - `]:{paddingInlineEnd:e.calc(e.fontSizeIcon).add(e.controlPaddingHorizontal).equal()}}};return[((e,t)=>{let{componentCls:n,INTERNAL_FIXED_ITEM_MARGIN:r}=e,o=`${n}-selection-overflow`,a=e.multipleSelectItemHeight,i=(e=>{let{multipleSelectItemHeight:t,selectHeight:n,lineWidth:r}=e;return e.calc(n).sub(t).div(2).sub(r).equal()})(e),l=t?`${n}-${t}`:"",c=o4(e);return{[`${n}-multiple${l}`]:Object.assign(Object.assign({},o3(e)),{[`${n}-selector`]:{display:"flex",alignItems:"center",width:"100%",height:"100%",paddingInline:c.basePadding,paddingBlock:c.containerPadding,borderRadius:e.borderRadius,[`${n}-disabled&`]:{background:e.multipleSelectorBgDisabled,cursor:"not-allowed"},"&:after":{display:"inline-block",width:0,margin:`${(0,q.zA)(r)} 0`,lineHeight:(0,q.zA)(a),visibility:"hidden",content:'"\\a0"'}},[`${n}-selection-item`]:{height:c.itemHeight,lineHeight:(0,q.zA)(c.itemLineHeight)},[`${n}-selection-wrap`]:{alignSelf:"flex-start","&:after":{lineHeight:(0,q.zA)(a),marginBlock:r}},[`${n}-prefix`]:{marginInlineStart:e.calc(e.inputPaddingHorizontalBase).sub(c.basePadding).equal()},[`${o}-item + ${o}-item, - ${n}-prefix + ${n}-selection-wrap - `]:{[`${n}-selection-search`]:{marginInlineStart:0},[`${n}-selection-placeholder`]:{insetInlineStart:0}},[`${o}-item-suffix`]:{minHeight:c.itemHeight,marginBlock:r},[`${n}-selection-search`]:{display:"inline-flex",position:"relative",maxWidth:"100%",marginInlineStart:e.calc(e.inputPaddingHorizontalBase).sub(i).equal(),[` - &-input, - &-mirror - `]:{height:a,fontFamily:e.fontFamily,lineHeight:(0,q.zA)(a),transition:`all ${e.motionDurationSlow}`},"&-input":{width:"100%",minWidth:4.1},"&-mirror":{position:"absolute",top:0,insetInlineStart:0,insetInlineEnd:"auto",zIndex:999,whiteSpace:"pre",visibility:"hidden"}},[`${n}-selection-placeholder`]:{position:"absolute",top:"50%",insetInlineStart:e.calc(e.inputPaddingHorizontalBase).sub(c.basePadding).equal(),insetInlineEnd:e.inputPaddingHorizontalBase,transform:"translateY(-50%)",transition:`all ${e.motionDurationSlow}`}})}})(e,t),o]}function o8(e,t){let{componentCls:n,inputPaddingHorizontalBase:r,borderRadius:o}=e,a=e.calc(e.controlHeight).sub(e.calc(e.lineWidth).mul(2)).equal(),i=t?`${n}-${t}`:"";return{[`${n}-single${i}`]:{fontSize:e.fontSize,height:e.controlHeight,[`${n}-selector`]:Object.assign(Object.assign({},(0,V.dF)(e,!0)),{display:"flex",borderRadius:o,flex:"1 1 auto",[`${n}-selection-search`]:{position:"absolute",inset:0,width:"100%","&-input":{width:"100%",WebkitAppearance:"textfield"}},[` - ${n}-selection-item, - ${n}-selection-placeholder - `]:{display:"block",padding:0,lineHeight:(0,q.zA)(a),transition:`all ${e.motionDurationSlow}, visibility 0s`,alignSelf:"center"},[`${n}-selection-placeholder`]:{transition:"none",pointerEvents:"none"},[`&:after,${n}-selection-item:empty:after,${n}-selection-placeholder:empty:after`]:{display:"inline-block",width:0,visibility:"hidden",content:'"\\a0"'}}),[` - &${n}-show-arrow ${n}-selection-item, - &${n}-show-arrow ${n}-selection-search, - &${n}-show-arrow ${n}-selection-placeholder - `]:{paddingInlineEnd:e.showArrowPaddingInlineEnd},[`&${n}-open ${n}-selection-item`]:{color:e.colorTextPlaceholder},[`&:not(${n}-customize-input)`]:{[`${n}-selector`]:{width:"100%",height:"100%",alignItems:"center",padding:`0 ${(0,q.zA)(r)}`,[`${n}-selection-search-input`]:{height:a},"&:after":{lineHeight:(0,q.zA)(a)}}},[`&${n}-customize-input`]:{[`${n}-selector`]:{"&:after":{display:"none"},[`${n}-selection-search`]:{position:"static",width:"100%"},[`${n}-selection-placeholder`]:{position:"absolute",insetInlineStart:0,insetInlineEnd:0,padding:`0 ${(0,q.zA)(r)}`,"&:after":{display:"none"}}}}}}}let o5=(e,t)=>{let{componentCls:n,antCls:r,controlOutlineWidth:o}=e;return{[`&:not(${n}-customize-input) ${n}-selector`]:{border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${t.borderColor}`,background:e.selectorBg},[`&:not(${n}-disabled):not(${n}-customize-input):not(${r}-pagination-size-changer)`]:{[`&:hover ${n}-selector`]:{borderColor:t.hoverBorderHover},[`${n}-focused& ${n}-selector`]:{borderColor:t.activeBorderColor,boxShadow:`0 0 0 ${(0,q.zA)(o)} ${t.activeOutlineColor}`,outline:0},[`${n}-prefix`]:{color:t.color}}}},o7=(e,t)=>({[`&${e.componentCls}-status-${t.status}`]:Object.assign({},o5(e,t))}),o9=(e,t)=>{let{componentCls:n,antCls:r}=e;return{[`&:not(${n}-customize-input) ${n}-selector`]:{background:t.bg,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} transparent`,color:t.color},[`&:not(${n}-disabled):not(${n}-customize-input):not(${r}-pagination-size-changer)`]:{[`&:hover ${n}-selector`]:{background:t.hoverBg},[`${n}-focused& ${n}-selector`]:{background:e.selectorBg,borderColor:t.activeBorderColor,outline:0}}}},ae=(e,t)=>({[`&${e.componentCls}-status-${t.status}`]:Object.assign({},o9(e,t))}),at=(0,w.OF)("Select",(e,t)=>{let{rootPrefixCls:n}=t,r=(0,ey.oX)(e,{rootPrefixCls:n,inputPaddingHorizontalBase:e.calc(e.paddingSM).sub(1).equal(),multipleSelectItemHeight:e.multipleItemHeight,selectHeight:e.controlHeight});return[(e=>{let{componentCls:t}=e;return[{[t]:{[`&${t}-in-form-item`]:{width:"100%"}}},(e=>{let{antCls:t,componentCls:n,inputPaddingHorizontalBase:r,iconCls:o}=e;return{[n]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",display:"inline-flex",cursor:"pointer",[`&:not(${n}-customize-input) ${n}-selector`]:Object.assign(Object.assign({},(e=>{let{componentCls:t}=e;return{position:"relative",transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,input:{cursor:"pointer"},[`${t}-show-search&`]:{cursor:"text",input:{cursor:"auto",color:"inherit",height:"100%"}},[`${t}-disabled&`]:{cursor:"not-allowed",input:{cursor:"not-allowed"}}}})(e)),(e=>{let{componentCls:t}=e;return{[`${t}-selection-search-input`]:{margin:0,padding:0,background:"transparent",border:"none",outline:"none",appearance:"none",fontFamily:"inherit","&::-webkit-search-cancel-button":{display:"none","-webkit-appearance":"none"}}}})(e)),[`${n}-selection-item`]:Object.assign(Object.assign({flex:1,fontWeight:"normal",position:"relative",userSelect:"none"},V.L9),{[`> ${t}-typography`]:{display:"inline"}}),[`${n}-selection-placeholder`]:Object.assign(Object.assign({},V.L9),{flex:1,color:e.colorTextPlaceholder,pointerEvents:"none"}),[`${n}-arrow`]:Object.assign(Object.assign({},(0,V.Nk)()),{position:"absolute",top:"50%",insetInlineStart:"auto",insetInlineEnd:r,height:e.fontSizeIcon,marginTop:e.calc(e.fontSizeIcon).mul(-1).div(2).equal(),color:e.colorTextQuaternary,fontSize:e.fontSizeIcon,lineHeight:1,textAlign:"center",pointerEvents:"none",display:"flex",alignItems:"center",transition:`opacity ${e.motionDurationSlow} ease`,[o]:{verticalAlign:"top",transition:`transform ${e.motionDurationSlow}`,"> svg":{verticalAlign:"top"},[`&:not(${n}-suffix)`]:{pointerEvents:"auto"}},[`${n}-disabled &`]:{cursor:"not-allowed"},"> *:not(:last-child)":{marginInlineEnd:8}}),[`${n}-selection-wrap`]:{display:"flex",width:"100%",position:"relative",minWidth:0,"&:after":{content:'"\\a0"',width:0,overflow:"hidden"}},[`${n}-prefix`]:{flex:"none",marginInlineEnd:e.selectAffixPadding},[`${n}-clear`]:{position:"absolute",top:"50%",insetInlineStart:"auto",insetInlineEnd:r,zIndex:1,display:"inline-block",width:e.fontSizeIcon,height:e.fontSizeIcon,marginTop:e.calc(e.fontSizeIcon).mul(-1).div(2).equal(),color:e.colorTextQuaternary,fontSize:e.fontSizeIcon,fontStyle:"normal",lineHeight:1,textAlign:"center",textTransform:"none",cursor:"pointer",opacity:0,transition:`color ${e.motionDurationMid} ease, opacity ${e.motionDurationSlow} ease`,textRendering:"auto","&:before":{display:"block"},"&:hover":{color:e.colorTextTertiary}},[`&:hover ${n}-clear`]:{opacity:1,background:e.colorBgBase,borderRadius:"50%"}}),[`${n}-status`]:{"&-error, &-warning, &-success, &-validating":{[`&${n}-has-feedback`]:{[`${n}-clear`]:{insetInlineEnd:e.calc(r).add(e.fontSize).add(e.paddingXS).equal()}}}}}})(e),function(e){let{componentCls:t}=e,n=e.calc(e.controlPaddingHorizontalSM).sub(e.lineWidth).equal();return[o8(e),o8((0,ey.oX)(e,{controlHeight:e.controlHeightSM,borderRadius:e.borderRadiusSM}),"sm"),{[`${t}-single${t}-sm`]:{[`&:not(${t}-customize-input)`]:{[`${t}-selector`]:{padding:`0 ${(0,q.zA)(n)}`},[`&${t}-show-arrow ${t}-selection-search`]:{insetInlineEnd:e.calc(n).add(e.calc(e.fontSize).mul(1.5)).equal()},[` - &${t}-show-arrow ${t}-selection-item, - &${t}-show-arrow ${t}-selection-placeholder - `]:{paddingInlineEnd:e.calc(e.fontSize).mul(1.5).equal()}}}},o8((0,ey.oX)(e,{controlHeight:e.singleItemHeightLG,fontSize:e.fontSizeLG,borderRadius:e.borderRadiusLG}),"lg")]}(e),(e=>{let{componentCls:t}=e,n=(0,ey.oX)(e,{selectHeight:e.controlHeightSM,multipleSelectItemHeight:e.multipleItemHeightSM,borderRadius:e.borderRadiusSM,borderRadiusSM:e.borderRadiusXS}),r=(0,ey.oX)(e,{fontSize:e.fontSizeLG,selectHeight:e.controlHeightLG,multipleSelectItemHeight:e.multipleItemHeightLG,borderRadius:e.borderRadiusLG,borderRadiusSM:e.borderRadius});return[o6(e),o6(n,"sm"),{[`${t}-multiple${t}-sm`]:{[`${t}-selection-placeholder`]:{insetInline:e.calc(e.controlPaddingHorizontalSM).sub(e.lineWidth).equal()},[`${t}-selection-search`]:{marginInlineStart:2}}},o6(r,"lg")]})(e),(e=>{let{antCls:t,componentCls:n}=e,r=`${n}-item`,o=`&${t}-slide-up-enter${t}-slide-up-enter-active`,a=`&${t}-slide-up-appear${t}-slide-up-appear-active`,i=`&${t}-slide-up-leave${t}-slide-up-leave-active`,l=`${n}-dropdown-placement-`;return[{[`${n}-dropdown`]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"absolute",top:-9999,zIndex:e.zIndexPopup,boxSizing:"border-box",padding:e.paddingXXS,overflow:"hidden",fontSize:e.fontSize,fontVariant:"initial",backgroundColor:e.colorBgElevated,borderRadius:e.borderRadiusLG,outline:"none",boxShadow:e.boxShadowSecondary,[` - ${o}${l}bottomLeft, - ${a}${l}bottomLeft - `]:{animationName:o_},[` - ${o}${l}topLeft, - ${a}${l}topLeft, - ${o}${l}topRight, - ${a}${l}topRight - `]:{animationName:oq},[`${i}${l}bottomLeft`]:{animationName:oW},[` - ${i}${l}topLeft, - ${i}${l}topRight - `]:{animationName:oV},"&-hidden":{display:"none"},[r]:Object.assign(Object.assign({},o2(e)),{cursor:"pointer",transition:`background ${e.motionDurationSlow} ease`,borderRadius:e.borderRadiusSM,"&-group":{color:e.colorTextDescription,fontSize:e.fontSizeSM,cursor:"default"},"&-option":{display:"flex","&-content":Object.assign({flex:"auto"},V.L9),"&-state":{flex:"none",display:"flex",alignItems:"center"},[`&-active:not(${r}-option-disabled)`]:{backgroundColor:e.optionActiveBg},[`&-selected:not(${r}-option-disabled)`]:{color:e.optionSelectedColor,fontWeight:e.optionSelectedFontWeight,backgroundColor:e.optionSelectedBg,[`${r}-option-state`]:{color:e.colorPrimary},[`&:has(+ ${r}-option-selected:not(${r}-option-disabled))`]:{borderEndStartRadius:0,borderEndEndRadius:0,[`& + ${r}-option-selected:not(${r}-option-disabled)`]:{borderStartStartRadius:0,borderStartEndRadius:0}}},"&-disabled":{[`&${r}-option-selected`]:{backgroundColor:e.colorBgContainerDisabled},color:e.colorTextDisabled,cursor:"not-allowed"},"&-grouped":{paddingInlineStart:e.calc(e.controlPaddingHorizontal).mul(2).equal()}},"&-empty":Object.assign(Object.assign({},o2(e)),{color:e.colorTextDisabled})}),"&-rtl":{direction:"rtl"}})},oX(e,"slide-up"),oX(e,"slide-down"),o1(e,"move-up"),o1(e,"move-down")]})(e),{[`${t}-rtl`]:{direction:"rtl"}},(0,oH.G)(e,{borderElCls:`${t}-selector`,focusElCls:`${t}-focused`})]})(r),{[r.componentCls]:Object.assign(Object.assign(Object.assign({},{"&-outlined":Object.assign(Object.assign(Object.assign(Object.assign({},o5(r,{borderColor:r.colorBorder,hoverBorderHover:r.hoverBorderColor,activeBorderColor:r.activeBorderColor,activeOutlineColor:r.activeOutlineColor,color:r.colorText})),o7(r,{status:"error",borderColor:r.colorError,hoverBorderHover:r.colorErrorHover,activeBorderColor:r.colorError,activeOutlineColor:r.colorErrorOutline,color:r.colorError})),o7(r,{status:"warning",borderColor:r.colorWarning,hoverBorderHover:r.colorWarningHover,activeBorderColor:r.colorWarning,activeOutlineColor:r.colorWarningOutline,color:r.colorWarning})),{[`&${r.componentCls}-disabled`]:{[`&:not(${r.componentCls}-customize-input) ${r.componentCls}-selector`]:{background:r.colorBgContainerDisabled,color:r.colorTextDisabled}},[`&${r.componentCls}-multiple ${r.componentCls}-selection-item`]:{background:r.multipleItemBg,border:`${(0,q.zA)(r.lineWidth)} ${r.lineType} ${r.multipleItemBorderColor}`}})}),{"&-filled":Object.assign(Object.assign(Object.assign(Object.assign({},o9(r,{bg:r.colorFillTertiary,hoverBg:r.colorFillSecondary,activeBorderColor:r.activeBorderColor,color:r.colorText})),ae(r,{status:"error",bg:r.colorErrorBg,hoverBg:r.colorErrorBgHover,activeBorderColor:r.colorError,color:r.colorError})),ae(r,{status:"warning",bg:r.colorWarningBg,hoverBg:r.colorWarningBgHover,activeBorderColor:r.colorWarning,color:r.colorWarning})),{[`&${r.componentCls}-disabled`]:{[`&:not(${r.componentCls}-customize-input) ${r.componentCls}-selector`]:{borderColor:r.colorBorder,background:r.colorBgContainerDisabled,color:r.colorTextDisabled}},[`&${r.componentCls}-multiple ${r.componentCls}-selection-item`]:{background:r.colorBgContainer,border:`${(0,q.zA)(r.lineWidth)} ${r.lineType} ${r.colorSplit}`}})}),{"&-borderless":{[`${r.componentCls}-selector`]:{background:"transparent",border:`${(0,q.zA)(r.lineWidth)} ${r.lineType} transparent`},[`&${r.componentCls}-disabled`]:{[`&:not(${r.componentCls}-customize-input) ${r.componentCls}-selector`]:{color:r.colorTextDisabled}},[`&${r.componentCls}-multiple ${r.componentCls}-selection-item`]:{background:r.multipleItemBg,border:`${(0,q.zA)(r.lineWidth)} ${r.lineType} ${r.multipleItemBorderColor}`},[`&${r.componentCls}-status-error`]:{[`${r.componentCls}-prefix, ${r.componentCls}-selection-item`]:{color:r.colorError}},[`&${r.componentCls}-status-warning`]:{[`${r.componentCls}-prefix, ${r.componentCls}-selection-item`]:{color:r.colorWarning}}}})}]},e=>{let{fontSize:t,lineHeight:n,lineWidth:r,controlHeight:o,controlHeightSM:a,controlHeightLG:i,paddingXXS:l,controlPaddingHorizontal:c,zIndexPopupBase:s,colorText:u,fontWeightStrong:d,controlItemBgActive:f,controlItemBgHover:p,colorBgContainer:m,colorFillSecondary:g,colorBgContainerDisabled:h,colorTextDisabled:v,colorPrimaryHover:b,colorPrimary:y,controlOutline:x}=e,$=2*l,A=2*r,w=Math.min(o-$,o-A),C=Math.min(a-$,a-A),S=Math.min(i-$,i-A);return{INTERNAL_FIXED_ITEM_MARGIN:Math.floor(l/2),zIndexPopup:s+50,optionSelectedColor:u,optionSelectedFontWeight:d,optionSelectedBg:f,optionActiveBg:p,optionPadding:`${(o-t*n)/2}px ${c}px`,optionFontSize:t,optionLineHeight:n,optionHeight:o,selectorBg:m,clearBg:m,singleItemHeightLG:i,multipleItemBg:g,multipleItemBorderColor:"transparent",multipleItemHeight:w,multipleItemHeightSM:C,multipleItemHeightLG:S,multipleSelectorBgDisabled:h,multipleItemColorDisabled:v,multipleItemBorderColorDisabled:"transparent",showArrowPaddingInlineEnd:Math.ceil(1.25*e.fontSize),hoverBorderColor:b,activeBorderColor:y,activeOutlineColor:x,selectAffixPadding:l}},{unitless:{optionLineHeight:!0,optionSelectedFontWeight:!0}});var an=n(51237);let ar={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z"}}]},name:"down",theme:"outlined"};var ao=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:ar}))});let aa={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.6 854.5L649.9 594.8C690.2 542.7 712 479 712 412c0-80.2-31.3-155.4-87.9-212.1-56.6-56.7-132-87.9-212.1-87.9s-155.5 31.3-212.1 87.9C143.2 256.5 112 331.8 112 412c0 80.1 31.3 155.5 87.9 212.1C256.5 680.8 331.8 712 412 712c67 0 130.6-21.8 182.7-62l259.7 259.6a8.2 8.2 0 0011.6 0l43.6-43.5a8.2 8.2 0 000-11.6zM570.4 570.4C528 612.7 471.8 636 412 636s-116-23.3-158.4-65.6C211.3 528 188 471.8 188 412s23.3-116.1 65.6-158.4C296 211.3 352.2 188 412 188s116.1 23.2 158.4 65.6S636 352.2 636 412s-23.3 116.1-65.6 158.4z"}}]},name:"search",theme:"outlined"};var ai=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:aa}))});function al(e){let{suffixIcon:t,clearIcon:n,menuItemSelectedIcon:r,removeIcon:o,loading:a,multiple:i,hasFeedback:l,prefixCls:c,showSuffixIcon:s,feedbackIcon:u,showArrow:d,componentName:f}=e,m=null!=n?n:p.createElement(j.A,null),g=e=>null!==t||l||d?p.createElement(p.Fragment,null,!1!==s&&e,l&&u):null,h=null;if(void 0!==t)h=g(t);else if(a)h=g(p.createElement(eX.A,{spin:!0}));else{let e=`${c}-suffix`;h=t=>{let{open:n,showSearch:r}=t;return n&&r?g(p.createElement(ai,{className:e})):g(p.createElement(ao,{className:e}))}}let v=null;v=void 0!==r?r:i?p.createElement(an.A,null):null;return{clearIcon:m,suffixIcon:h,itemIcon:v,removeIcon:void 0!==o?o:p.createElement(z.A,null)}}function ac(e,t){return void 0!==t?t:null!==e}var as=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let au="SECRET_COMBOBOX_MODE_DO_NOT_USE",ad=p.forwardRef((e,t)=>{var n;let r,{prefixCls:o,bordered:a,className:i,rootClassName:l,getPopupContainer:c,popupClassName:s,dropdownClassName:u,listHeight:d=256,placement:f,listItemHeight:m,size:g,disabled:v,notFoundContent:y,status:x,builtinPlacements:$,dropdownMatchSelectWidth:w,popupMatchSelectWidth:C,direction:S,style:k,allowClear:E,variant:O,dropdownStyle:M,transitionName:N,tagRender:I,maxCount:j,prefix:z}=e,R=as(e,["prefixCls","bordered","className","rootClassName","getPopupContainer","popupClassName","dropdownClassName","listHeight","placement","listItemHeight","size","disabled","notFoundContent","status","builtinPlacements","dropdownMatchSelectWidth","popupMatchSelectWidth","direction","style","allowClear","variant","dropdownStyle","transitionName","tagRender","maxCount","prefix"]),{getPopupContainer:P,getPrefixCls:T,renderEmpty:D,direction:L,virtual:B,popupMatchSelectWidth:F,popupOverflow:H,select:_}=p.useContext(A.QO),[,W]=(0,tb.Ay)(),q=null!=m?m:null==W?void 0:W.controlHeight,V=T("select",o),K=T(),X=null!=S?S:L,{compactSize:Y,compactItemClassnames:U}=(0,oB.RQ)(V,X),[G,Q]=(0,oL.A)("select",O,a),Z=(0,eh.A)(V),[J,ee,et]=at(V,Z),en=p.useMemo(()=>{let{mode:t}=e;if("combobox"!==t)return t===au?"combobox":t},[e.mode]),er="multiple"===en||"tags"===en,eo=ac(e.suffixIcon,e.showArrow),ea=null!=(n=null!=C?C:w)?n:F,{status:ei,hasFeedback:el,isFormItemInput:ec,feedbackIcon:es}=p.useContext(oD.$W),eu=(0,oO.v)(ei,x);r=void 0!==y?y:"combobox"===en?null:(null==D?void 0:D("Select"))||p.createElement(oP,{componentName:"Select"});let{suffixIcon:ed,itemIcon:ef,removeIcon:ep,clearIcon:em}=al(Object.assign(Object.assign({},R),{multiple:er,hasFeedback:el,feedbackIcon:es,showSuffixIcon:eo,prefixCls:V,componentName:"Select"})),eg=(0,b.A)(R,["suffixIcon","itemIcon"]),ev=h()(s||u,{[`${V}-dropdown-${X}`]:"rtl"===X},l,et,Z,ee),eb=(0,oT.A)(e=>{var t;return null!=(t=null!=g?g:Y)?t:e}),ey=p.useContext(tp.A),ex=h()({[`${V}-lg`]:"large"===eb,[`${V}-sm`]:"small"===eb,[`${V}-rtl`]:"rtl"===X,[`${V}-${G}`]:Q,[`${V}-in-form-item`]:ec},(0,oO.L)(V,eu,el),U,null==_?void 0:_.className,i,l,et,Z,ee),e$=p.useMemo(()=>void 0!==f?f:"rtl"===X?"bottomRight":"bottomLeft",[f,X]),[eA]=(0,eY.YK)("SelectLike",null==M?void 0:M.zIndex);return J(p.createElement(oE,Object.assign({ref:t,virtual:B,showSearch:null==_?void 0:_.showSearch},eg,{style:Object.assign(Object.assign({},null==_?void 0:_.style),k),dropdownMatchSelectWidth:ea,transitionName:(0,tN.b)(K,"slide-up",N),builtinPlacements:oF($,H),listHeight:d,listItemHeight:q,mode:en,prefixCls:V,placement:e$,direction:X,prefix:z,suffixIcon:ed,menuItemSelectedIcon:ef,removeIcon:ep,allowClear:!0===E?{clearIcon:em}:E,notFoundContent:r,className:ex,getPopupContainer:c||P,dropdownClassName:ev,disabled:null!=v?v:ey,dropdownStyle:Object.assign(Object.assign({},M),{zIndex:eA}),maxCount:er?j:void 0,tagRender:er?I:void 0})))}),af=rd(ad);ad.SECRET_COMBOBOX_MODE_DO_NOT_USE=au,ad.Option=r7,ad.OptGroup=r5,ad._InternalPanelDoNotUseOrYouWillBeFired=af;let ap=ad,{Option:am}=ap;function ag(e){return(null==e?void 0:e.type)&&(e.type.isSelectOption||e.type.isSelectOptGroup)}let ah=p.forwardRef((e,t)=>{var n;let r,o,{prefixCls:a,className:i,popupClassName:l,dropdownClassName:c,children:s,dataSource:u}=e,d=(0,rc.A)(s);1===d.length&&p.isValidElement(d[0])&&!ag(d[0])&&([r]=d);let f=r?()=>r:void 0;o=d.length&&ag(d[0])?s:u?u.map(e=>{if(p.isValidElement(e))return e;switch(typeof e){case"string":return p.createElement(am,{key:e,value:e},e);case"object":{let{value:t}=e;return p.createElement(am,{key:t,value:t},e.text)}default:return}}):[];let{getPrefixCls:m}=p.useContext(A.QO),g=m("select",a),[v]=(0,eY.YK)("SelectLike",null==(n=e.dropdownStyle)?void 0:n.zIndex);return p.createElement(ap,Object.assign({ref:t,suffixIcon:null},(0,b.A)(e,["dataSource","dropdownClassName"]),{prefixCls:g,popupClassName:l||c,dropdownStyle:Object.assign(Object.assign({},e.dropdownStyle),{zIndex:v}),className:h()(`${g}-auto-complete`,i),mode:ap.SECRET_COMBOBOX_MODE_DO_NOT_USE,getInputElement:f}),o)}),av=rd(ah,void 0,void 0,e=>(0,b.A)(e,["visible"]));ah.Option=am,ah._InternalPanelDoNotUseOrYouWillBeFired=av;let ab=ah,ay=["xxl","xl","lg","md","sm","xs"];function ax(){let e,[,t]=(0,tb.Ay)(),n=((e=[].concat(ay).reverse()).forEach((n,r)=>{let o=n.toUpperCase(),a=`screen${o}Min`,i=`screen${o}`;if(!(t[a]<=t[i]))throw Error(`${a}<=${i} fails : !(${t[a]}<=${t[i]})`);if(r{let e=new Map,t=-1,r={};return{matchHandlers:{},dispatch:t=>(r=t,e.forEach(e=>e(r)),e.size>=1),subscribe(n){return e.size||this.register(),t+=1,e.set(t,n),n(r),t},unsubscribe(t){e.delete(t),e.size||this.unregister()},unregister(){Object.keys(n).forEach(e=>{let t=n[e],r=this.matchHandlers[t];null==r||r.mql.removeListener(null==r?void 0:r.listener)}),e.clear()},register(){Object.keys(n).forEach(e=>{let t=n[e],o=t=>{let{matches:n}=t;this.dispatch(Object.assign(Object.assign({},r),{[e]:n}))},a=window.matchMedia(t);a.addListener(o),this.matchHandlers[t]={mql:a,listener:o},o(a)})},responsiveMap:n}},[t])}let a$=(e,t)=>{if(t&&"object"==typeof t)for(let n=0;n0)||void 0===arguments[0]||arguments[0],t=(0,p.useRef)({}),n=(0,aA.A)(),r=ax();return(0,rf.A)(()=>{let o=r.subscribe(r=>{t.current=r,e&&n()});return()=>r.unsubscribe(o)},[]),t.current},aC=p.createContext({}),aS=(0,w.OF)("Avatar",e=>{let{colorTextLightSolid:t,colorTextPlaceholder:n}=e,r=(0,ey.oX)(e,{avatarBg:n,avatarColor:t});return[(e=>{let{antCls:t,componentCls:n,iconCls:r,avatarBg:o,avatarColor:a,containerSize:i,containerSizeLG:l,containerSizeSM:c,textFontSize:s,textFontSizeLG:u,textFontSizeSM:d,borderRadius:f,borderRadiusLG:p,borderRadiusSM:m,lineWidth:g,lineType:h}=e,v=(e,t,o)=>({width:e,height:e,borderRadius:"50%",[`&${n}-square`]:{borderRadius:o},[`&${n}-icon`]:{fontSize:t,[`> ${r}`]:{margin:0}}});return{[n]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",display:"inline-flex",justifyContent:"center",alignItems:"center",overflow:"hidden",color:a,whiteSpace:"nowrap",textAlign:"center",verticalAlign:"middle",background:o,border:`${(0,q.zA)(g)} ${h} transparent`,"&-image":{background:"transparent"},[`${t}-image-img`]:{display:"block"}}),v(i,s,f)),{"&-lg":Object.assign({},v(l,u,p)),"&-sm":Object.assign({},v(c,d,m)),"> img":{display:"block",width:"100%",height:"100%",objectFit:"cover"}})}})(r),(e=>{let{componentCls:t,groupBorderColor:n,groupOverlapping:r,groupSpace:o}=e;return{[`${t}-group`]:{display:"inline-flex",[t]:{borderColor:n},"> *:not(:first-child)":{marginInlineStart:r}},[`${t}-group-popover`]:{[`${t} + ${t}`]:{marginInlineStart:o}}}})(r)]},e=>{let{controlHeight:t,controlHeightLG:n,controlHeightSM:r,fontSize:o,fontSizeLG:a,fontSizeXL:i,fontSizeHeading3:l,marginXS:c,marginXXS:s,colorBorderBg:u}=e;return{containerSize:t,containerSizeLG:n,containerSizeSM:r,textFontSize:Math.round((a+i)/2),textFontSizeLG:l,textFontSizeSM:o,groupSpace:s,groupOverlapping:-c,groupBorderColor:u}});var ak=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let aE=p.forwardRef((e,t)=>{let n,[r,o]=p.useState(1),[a,i]=p.useState(!1),[l,c]=p.useState(!0),s=p.useRef(null),u=p.useRef(null),d=(0,_.K4)(t,s),{getPrefixCls:f,avatar:m}=p.useContext(A.QO),g=p.useContext(aC),b=()=>{if(!u.current||!s.current)return;let t=u.current.offsetWidth,n=s.current.offsetWidth;if(0!==t&&0!==n){let{gap:r=4}=e;2*r{i(!0)},[]),p.useEffect(()=>{c(!0),o(1)},[e.src]),p.useEffect(b,[e.gap]);let{prefixCls:y,shape:x,size:$,src:w,srcSet:C,icon:S,className:k,rootClassName:E,alt:O,draggable:M,children:N,crossOrigin:I}=e,j=ak(e,["prefixCls","shape","size","src","srcSet","icon","className","rootClassName","alt","draggable","children","crossOrigin"]),z=(0,oT.A)(e=>{var t,n;return null!=(n=null!=(t=null!=$?$:null==g?void 0:g.size)?t:e)?n:"default"}),R=aw(Object.keys("object"==typeof z&&z||{}).some(e=>["xs","sm","md","lg","xl","xxl"].includes(e))),P=p.useMemo(()=>{if("object"!=typeof z)return{};let e=z[ay.find(e=>R[e])];return e?{width:e,height:e,fontSize:e&&(S||N)?e/2:18}:{}},[R,z]),T=f("avatar",y),D=(0,eh.A)(T),[L,B,F]=aS(T,D),H=h()({[`${T}-lg`]:"large"===z,[`${T}-sm`]:"small"===z}),W=p.isValidElement(w),q=x||(null==g?void 0:g.shape)||"circle",V=h()(T,H,null==m?void 0:m.className,`${T}-${q}`,{[`${T}-image`]:W||w&&l,[`${T}-icon`]:!!S},F,D,k,E,B),K="number"==typeof z?{width:z,height:z,fontSize:S?z/2:18}:{};if("string"==typeof w&&l)n=p.createElement("img",{src:w,draggable:M,srcSet:C,onError:()=>{let{onError:t}=e;!1!==(null==t?void 0:t())&&c(!1)},alt:O,crossOrigin:I});else if(W)n=w;else if(S)n=S;else if(a||1!==r){let e=`scale(${r})`;n=p.createElement(v.A,{onResize:b},p.createElement("span",{className:`${T}-string`,ref:u,style:Object.assign({},{msTransform:e,WebkitTransform:e,transform:e})},N))}else n=p.createElement("span",{className:`${T}-string`,style:{opacity:0},ref:u},N);return delete j.onError,delete j.gap,L(p.createElement("span",Object.assign({},j,{style:Object.assign(Object.assign(Object.assign(Object.assign({},K),P),null==m?void 0:m.style),j.style),className:V,ref:d}),n))}),aO=e=>e?"function"==typeof e?e():e:null;var aM=n(42443),aN=n(47251),aI=n(95201),aj=n(20791),az=n(13950);let aR=(0,w.OF)("Popover",e=>{let{colorBgElevated:t,colorText:n}=e,r=(0,ey.oX)(e,{popoverBg:t,popoverColor:n});return[(e=>{let{componentCls:t,popoverColor:n,titleMinWidth:r,fontWeightStrong:o,innerPadding:a,boxShadowSecondary:i,colorTextHeading:l,borderRadiusLG:c,zIndexPopup:s,titleMarginBottom:u,colorBgElevated:d,popoverBg:f,titleBorderBottom:p,innerContentPadding:m,titlePadding:g}=e;return[{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"absolute",top:0,left:{_skip_check_:!0,value:0},zIndex:s,fontWeight:"normal",whiteSpace:"normal",textAlign:"start",cursor:"auto",userSelect:"text","--valid-offset-x":"var(--arrow-offset-horizontal, var(--arrow-x))",transformOrigin:"var(--valid-offset-x, 50%) var(--arrow-y, 50%)","--antd-arrow-background-color":d,width:"max-content",maxWidth:"100vw","&-rtl":{direction:"rtl"},"&-hidden":{display:"none"},[`${t}-content`]:{position:"relative"},[`${t}-inner`]:{backgroundColor:f,backgroundClip:"padding-box",borderRadius:c,boxShadow:i,padding:a},[`${t}-title`]:{minWidth:r,marginBottom:u,color:l,fontWeight:o,borderBottom:p,padding:g},[`${t}-inner-content`]:{color:n,padding:m}})},(0,aI.Ay)(e,"var(--antd-arrow-background-color)"),{[`${t}-pure`]:{position:"relative",maxWidth:"none",margin:e.sizePopupArrow,display:"inline-block",[`${t}-content`]:{display:"inline-block"}}}]})(r),(e=>{let{componentCls:t}=e;return{[t]:az.s.map(n=>{let r=e[`${n}6`];return{[`&${t}-${n}`]:{"--antd-arrow-background-color":r,[`${t}-inner`]:{backgroundColor:r},[`${t}-arrow`]:{background:"transparent"}}}})}})(r),(0,nC.aB)(r,"zoom-big")]},e=>{let{lineWidth:t,controlHeight:n,fontHeight:r,padding:o,wireframe:a,zIndexPopupBase:i,borderRadiusLG:l,marginXS:c,lineType:s,colorSplit:u,paddingSM:d}=e,f=n-r;return Object.assign(Object.assign(Object.assign({titleMinWidth:177,zIndexPopup:i+30},(0,aj.n)(e)),(0,aI.Ke)({contentRadius:l,limitVerticalRadius:!0})),{innerPadding:12*!a,titleMarginBottom:a?0:c,titlePadding:a?`${f/2}px ${o}px ${f/2-t}px`:0,titleBorderBottom:a?`${t}px ${s} ${u}`:"none",innerContentPadding:a?`${d}px ${o}px`:0})},{resetStyle:!1,deprecatedTokens:[["width","titleMinWidth"],["minWidth","titleMinWidth"]]});var aP=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let aT=e=>{let{title:t,content:n,prefixCls:r}=e;return t||n?p.createElement(p.Fragment,null,t&&p.createElement("div",{className:`${r}-title`},t),n&&p.createElement("div",{className:`${r}-inner-content`},n)):null},aD=e=>{let{hashId:t,prefixCls:n,className:r,style:o,placement:a="top",title:i,content:l,children:c}=e,s=aO(i),u=aO(l),d=h()(t,n,`${n}-pure`,`${n}-placement-${a}`,r);return p.createElement("div",{className:d,style:o},p.createElement("div",{className:`${n}-arrow`}),p.createElement(aN.z,Object.assign({},e,{className:t,prefixCls:n}),c||p.createElement(aT,{prefixCls:n,title:s,content:u})))},aL=e=>{let{prefixCls:t,className:n}=e,r=aP(e,["prefixCls","className"]),{getPrefixCls:o}=p.useContext(A.QO),a=o("popover",t),[i,l,c]=aR(a);return i(p.createElement(aD,Object.assign({},r,{prefixCls:a,hashId:l,className:h()(n,c)})))};var aB=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let aF=p.forwardRef((e,t)=>{var n,r;let{prefixCls:o,title:a,content:i,overlayClassName:l,placement:c="top",trigger:s="hover",children:u,mouseEnterDelay:d=.1,mouseLeaveDelay:f=.1,onOpenChange:m,overlayStyle:g={}}=e,v=aB(e,["prefixCls","title","content","overlayClassName","placement","trigger","children","mouseEnterDelay","mouseLeaveDelay","onOpenChange","overlayStyle"]),{getPrefixCls:b}=p.useContext(A.QO),y=b("popover",o),[x,$,w]=aR(y),C=b(),S=h()(l,$,w),[k,E]=(0,rs.A)(!1,{value:null!=(n=e.open)?n:e.visible,defaultValue:null!=(r=e.defaultOpen)?r:e.defaultVisible}),O=(e,t)=>{E(e,!0),null==m||m(e,t)},M=aO(a),N=aO(i);return x(p.createElement(aM.A,Object.assign({placement:c,trigger:s,mouseEnterDelay:d,mouseLeaveDelay:f,overlayStyle:g},v,{prefixCls:y,overlayClassName:S,ref:t,open:k,onOpenChange:e=>{O(e)},overlay:M||N?p.createElement(aT,{prefixCls:y,title:M,content:N}):null,transitionName:(0,tN.b)(C,"zoom-big",v.transitionName),"data-popover-inject":!0}),(0,W.Ob)(u,{onKeyDown:e=>{var t,n;p.isValidElement(u)&&(null==(n=null==u?void 0:(t=u.props).onKeyDown)||n.call(t,e)),e.keyCode===eR.A.ESC&&O(!1,e)}})))});aF._InternalPanelDoNotUseOrYouWillBeFired=aL;let aH=aF,a_=e=>{let{size:t,shape:n}=p.useContext(aC),r=p.useMemo(()=>({size:e.size||t,shape:e.shape||n}),[e.size,e.shape,t,n]);return p.createElement(aC.Provider,{value:r},e.children)};aE.Group=e=>{var t,n,r;let{getPrefixCls:o,direction:a}=p.useContext(A.QO),{prefixCls:i,className:l,rootClassName:c,style:s,maxCount:u,maxStyle:d,size:f,shape:m,maxPopoverPlacement:g,maxPopoverTrigger:v,children:b,max:y}=e,x=o("avatar",i),$=`${x}-group`,w=(0,eh.A)(x),[C,S,k]=aS(x,w),E=h()($,{[`${$}-rtl`]:"rtl"===a},k,w,l,c,S),O=(0,rc.A)(b).map((e,t)=>(0,W.Ob)(e,{key:`avatar-key-${t}`})),M=(null==y?void 0:y.count)||u,N=O.length;if(M&&M{let{fontSizeHeading3:t,colorTextDescription:n,colorTextLightSolid:r,colorText:o,controlHeightLG:a,calc:i}=e,l=(0,ey.oX)(e,{backTopBackground:n,backTopColor:r,backTopHoverBackground:o,backTopFontSize:t,backTopSize:a,backTopBlockEnd:i(a).mul(1.25).equal(),backTopInlineEnd:i(a).mul(2.5).equal(),backTopInlineEndMD:i(a).mul(1.5).equal(),backTopInlineEndXS:i(a).mul(.5).equal()});return[(e=>{let{componentCls:t,backTopFontSize:n,backTopSize:r,zIndexPopup:o}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"fixed",insetInlineEnd:e.backTopInlineEnd,insetBlockEnd:e.backTopBlockEnd,zIndex:o,width:40,height:40,cursor:"pointer","&:empty":{display:"none"},[`${t}-content`]:{width:r,height:r,overflow:"hidden",color:e.backTopColor,textAlign:"center",backgroundColor:e.backTopBackground,borderRadius:r,transition:`all ${e.motionDurationMid}`,"&:hover":{backgroundColor:e.backTopHoverBackground,transition:`all ${e.motionDurationMid}`}},[`${t}-icon`]:{fontSize:n,lineHeight:(0,q.zA)(r)}})}})(l),(e=>{let{componentCls:t,screenMD:n,screenXS:r,backTopInlineEndMD:o,backTopInlineEndXS:a}=e;return{[`@media (max-width: ${(0,q.zA)(n)})`]:{[t]:{insetInlineEnd:o}},[`@media (max-width: ${(0,q.zA)(r)})`]:{[t]:{insetInlineEnd:a}}}})(l)]},e=>({zIndexPopup:e.zIndexBase+10})),aX=e=>{let{prefixCls:t,className:n,rootClassName:r,visibilityHeight:o=400,target:a,onClick:i,duration:l=450}=e,[c,s]=p.useState(0===o),u=p.useRef(null),d=()=>{var e;return(null==(e=u.current)?void 0:e.ownerDocument)||window},f=$(e=>{s(em(e.target)>=o)});p.useEffect(()=>{let e=(a||d)();return f({target:e}),null==e||e.addEventListener("scroll",f),()=>{f.cancel(),null==e||e.removeEventListener("scroll",f)}},[a]);let{getPrefixCls:m,direction:g}=p.useContext(A.QO),v=m("back-top",t),y=m(),[x,w,C]=aK(v),S=h()(w,C,v,{[`${v}-rtl`]:"rtl"===g},n,r),k=(0,b.A)(e,["prefixCls","className","rootClassName","children","visibilityHeight","target"]),E=p.createElement("div",{className:`${v}-content`},p.createElement("div",{className:`${v}-icon`},p.createElement(aV,null)));return x(p.createElement("div",Object.assign({},k,{className:S,onClick:e=>{eg(0,{getContainer:a||d,duration:l}),null==i||i(e)},ref:u}),p.createElement(F.Ay,{visible:c,motionName:`${y}-fade`},t=>{let{className:n}=t;return(0,W.Ob)(e.children||E,e=>{let{className:t}=e;return{className:h()(n,t)}})})))};var aY=n(54121),aU=n(31108);let aG=new q.Mo("antStatusProcessing",{"0%":{transform:"scale(0.8)",opacity:.5},"100%":{transform:"scale(2.4)",opacity:0}}),aQ=new q.Mo("antZoomBadgeIn",{"0%":{transform:"scale(0) translate(50%, -50%)",opacity:0},"100%":{transform:"scale(1) translate(50%, -50%)"}}),aZ=new q.Mo("antZoomBadgeOut",{"0%":{transform:"scale(1) translate(50%, -50%)"},"100%":{transform:"scale(0) translate(50%, -50%)",opacity:0}}),aJ=new q.Mo("antNoWrapperZoomBadgeIn",{"0%":{transform:"scale(0)",opacity:0},"100%":{transform:"scale(1)"}}),a0=new q.Mo("antNoWrapperZoomBadgeOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0)",opacity:0}}),a1=new q.Mo("antBadgeLoadingCircle",{"0%":{transformOrigin:"50%"},"100%":{transform:"translate(50%, -50%) rotate(360deg)",transformOrigin:"50%"}}),a2=e=>{let{fontHeight:t,lineWidth:n,marginXS:r,colorBorderBg:o}=e,a=e.colorTextLightSolid,i=e.colorError,l=e.colorErrorHover;return(0,ey.oX)(e,{badgeFontHeight:t,badgeShadowSize:n,badgeTextColor:a,badgeColor:i,badgeColorHover:l,badgeShadowColor:o,badgeProcessingDuration:"1.2s",badgeRibbonOffset:r,badgeRibbonCornerTransform:"scaleY(0.75)",badgeRibbonCornerFilter:"brightness(75%)"})},a4=e=>{let{fontSize:t,lineHeight:n,fontSizeSM:r,lineWidth:o}=e;return{indicatorZIndex:"auto",indicatorHeight:Math.round(t*n)-2*o,indicatorHeightSM:t,dotSize:r/2,textFontSize:r,textFontSizeSM:r,textFontWeight:"normal",statusSize:r/2}},a3=(0,w.OF)("Badge",e=>(e=>{let{componentCls:t,iconCls:n,antCls:r,badgeShadowSize:o,textFontSize:a,textFontSizeSM:i,statusSize:l,dotSize:c,textFontWeight:s,indicatorHeight:u,indicatorHeightSM:d,marginXS:f,calc:p}=e,m=`${r}-scroll-number`,g=(0,aU.A)(e,(e,n)=>{let{darkColor:r}=n;return{[`&${t} ${t}-color-${e}`]:{background:r,[`&:not(${t}-count)`]:{color:r},"a:hover &":{background:r}}}});return{[t]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",display:"inline-block",width:"fit-content",lineHeight:1,[`${t}-count`]:{display:"inline-flex",justifyContent:"center",zIndex:e.indicatorZIndex,minWidth:u,height:u,color:e.badgeTextColor,fontWeight:s,fontSize:a,lineHeight:(0,q.zA)(u),whiteSpace:"nowrap",textAlign:"center",background:e.badgeColor,borderRadius:p(u).div(2).equal(),boxShadow:`0 0 0 ${(0,q.zA)(o)} ${e.badgeShadowColor}`,transition:`background ${e.motionDurationMid}`,a:{color:e.badgeTextColor},"a:hover":{color:e.badgeTextColor},"a:hover &":{background:e.badgeColorHover}},[`${t}-count-sm`]:{minWidth:d,height:d,fontSize:i,lineHeight:(0,q.zA)(d),borderRadius:p(d).div(2).equal()},[`${t}-multiple-words`]:{padding:`0 ${(0,q.zA)(e.paddingXS)}`,bdi:{unicodeBidi:"plaintext"}},[`${t}-dot`]:{zIndex:e.indicatorZIndex,width:c,minWidth:c,height:c,background:e.badgeColor,borderRadius:"100%",boxShadow:`0 0 0 ${(0,q.zA)(o)} ${e.badgeShadowColor}`},[`${t}-count, ${t}-dot, ${m}-custom-component`]:{position:"absolute",top:0,insetInlineEnd:0,transform:"translate(50%, -50%)",transformOrigin:"100% 0%",[`&${n}-spin`]:{animationName:a1,animationDuration:"1s",animationIterationCount:"infinite",animationTimingFunction:"linear"}},[`&${t}-status`]:{lineHeight:"inherit",verticalAlign:"baseline",[`${t}-status-dot`]:{position:"relative",top:-1,display:"inline-block",width:l,height:l,verticalAlign:"middle",borderRadius:"50%"},[`${t}-status-success`]:{backgroundColor:e.colorSuccess},[`${t}-status-processing`]:{overflow:"visible",color:e.colorInfo,backgroundColor:e.colorInfo,borderColor:"currentcolor","&::after":{position:"absolute",top:0,insetInlineStart:0,width:"100%",height:"100%",borderWidth:o,borderStyle:"solid",borderColor:"inherit",borderRadius:"50%",animationName:aG,animationDuration:e.badgeProcessingDuration,animationIterationCount:"infinite",animationTimingFunction:"ease-in-out",content:'""'}},[`${t}-status-default`]:{backgroundColor:e.colorTextPlaceholder},[`${t}-status-error`]:{backgroundColor:e.colorError},[`${t}-status-warning`]:{backgroundColor:e.colorWarning},[`${t}-status-text`]:{marginInlineStart:f,color:e.colorText,fontSize:e.fontSize}}}),g),{[`${t}-zoom-appear, ${t}-zoom-enter`]:{animationName:aQ,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack,animationFillMode:"both"},[`${t}-zoom-leave`]:{animationName:aZ,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack,animationFillMode:"both"},[`&${t}-not-a-wrapper`]:{[`${t}-zoom-appear, ${t}-zoom-enter`]:{animationName:aJ,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack},[`${t}-zoom-leave`]:{animationName:a0,animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseOutBack},[`&:not(${t}-status)`]:{verticalAlign:"middle"},[`${m}-custom-component, ${t}-count`]:{transform:"none"},[`${m}-custom-component, ${m}`]:{position:"relative",top:"auto",display:"block",transformOrigin:"50% 50%"}},[m]:{overflow:"hidden",transition:`all ${e.motionDurationMid} ${e.motionEaseOutBack}`,[`${m}-only`]:{position:"relative",display:"inline-block",height:u,transition:`all ${e.motionDurationSlow} ${e.motionEaseOutBack}`,WebkitTransformStyle:"preserve-3d",WebkitBackfaceVisibility:"hidden",[`> p${m}-only-unit`]:{height:u,margin:0,WebkitTransformStyle:"preserve-3d",WebkitBackfaceVisibility:"hidden"}},[`${m}-symbol`]:{verticalAlign:"top"}},"&-rtl":{direction:"rtl",[`${t}-count, ${t}-dot, ${m}-custom-component`]:{transform:"translate(-50%, -50%)"}}})}})(a2(e)),a4),a6=(0,w.OF)(["Badge","Ribbon"],e=>(e=>{let{antCls:t,badgeFontHeight:n,marginXS:r,badgeRibbonOffset:o,calc:a}=e,i=`${t}-ribbon`,l=`${t}-ribbon-wrapper`,c=(0,aU.A)(e,(e,t)=>{let{darkColor:n}=t;return{[`&${i}-color-${e}`]:{background:n,color:n}}});return{[l]:{position:"relative"},[i]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{position:"absolute",top:r,padding:`0 ${(0,q.zA)(e.paddingXS)}`,color:e.colorPrimary,lineHeight:(0,q.zA)(n),whiteSpace:"nowrap",backgroundColor:e.colorPrimary,borderRadius:e.borderRadiusSM,[`${i}-text`]:{color:e.badgeTextColor},[`${i}-corner`]:{position:"absolute",top:"100%",width:o,height:o,color:"currentcolor",border:`${(0,q.zA)(a(o).div(2).equal())} solid`,transform:e.badgeRibbonCornerTransform,transformOrigin:"top",filter:e.badgeRibbonCornerFilter}}),c),{[`&${i}-placement-end`]:{insetInlineEnd:a(o).mul(-1).equal(),borderEndEndRadius:0,[`${i}-corner`]:{insetInlineEnd:0,borderInlineEndColor:"transparent",borderBlockEndColor:"transparent"}},[`&${i}-placement-start`]:{insetInlineStart:a(o).mul(-1).equal(),borderEndStartRadius:0,[`${i}-corner`]:{insetInlineStart:0,borderBlockEndColor:"transparent",borderInlineStartColor:"transparent"}},"&-rtl":{direction:"rtl"}})}})(a2(e)),a4),a8=e=>{let t,{prefixCls:n,value:r,current:o,offset:a=0}=e;return a&&(t={position:"absolute",top:`${a}00%`,left:0}),p.createElement("span",{style:t,className:h()(`${n}-only-unit`,{current:o})},r)},a5=e=>{let t,n,{prefixCls:r,count:o,value:a}=e,i=Number(a),l=Math.abs(o),[c,s]=p.useState(i),[u,d]=p.useState(l),f=()=>{s(i),d(l)};if(p.useEffect(()=>{let e=setTimeout(f,1e3);return()=>clearTimeout(e)},[i]),c===i||Number.isNaN(i)||Number.isNaN(c))t=[p.createElement(a8,Object.assign({},e,{key:i,current:!0}))],n={transition:"none"};else{t=[];let r=i+10,o=[];for(let e=i;e<=r;e+=1)o.push(e);let a=ue%10===c);t=(a<0?o.slice(0,s+1):o.slice(s)).map((t,n)=>p.createElement(a8,Object.assign({},e,{key:t,value:t%10,offset:a<0?n-s:n,current:n===s}))),n={transform:`translateY(${-function(e,t,n){let r=e,o=0;for(;(r+10)%10!==t;)r+=n,o+=n;return o}(c,i,a)}00%)`}}return p.createElement("span",{className:`${r}-only`,style:n,onTransitionEnd:f},t)};var a7=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let a9=p.forwardRef((e,t)=>{let{prefixCls:n,count:r,className:o,motionClassName:a,style:i,title:l,show:c,component:s="sup",children:u}=e,d=a7(e,["prefixCls","count","className","motionClassName","style","title","show","component","children"]),{getPrefixCls:f}=p.useContext(A.QO),m=f("scroll-number",n),g=Object.assign(Object.assign({},d),{"data-show":c,style:i,className:h()(m,o,a),title:l}),v=r;if(r&&Number(r)%1==0){let e=String(r).split("");v=p.createElement("bdi",null,e.map((t,n)=>p.createElement(a5,{prefixCls:m,count:Number(r),value:t,key:e.length-n})))}return((null==i?void 0:i.borderColor)&&(g.style=Object.assign(Object.assign({},i),{boxShadow:`0 0 0 1px ${i.borderColor} inset`})),u)?(0,W.Ob)(u,e=>({className:h()(`${m}-custom-component`,null==e?void 0:e.className,a)})):p.createElement(s,Object.assign({},g,{ref:t}),v)});var ie=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let it=p.forwardRef((e,t)=>{var n,r,o,a,i;let{prefixCls:l,scrollNumberPrefixCls:c,children:s,status:u,text:d,color:f,count:m=null,overflowCount:g=99,dot:v=!1,size:b="default",title:y,offset:x,style:$,className:w,rootClassName:C,classNames:S,styles:k,showZero:E=!1}=e,O=ie(e,["prefixCls","scrollNumberPrefixCls","children","status","text","color","count","overflowCount","dot","size","title","offset","style","className","rootClassName","classNames","styles","showZero"]),{getPrefixCls:M,direction:N,badge:I}=p.useContext(A.QO),j=M("badge",l),[z,R,P]=a3(j),T=m>g?`${g}+`:m,D="0"===T||0===T,L=(null!=u||null!=f)&&(null===m||D&&!E),B=v&&!D,H=B?"":T,_=(0,p.useMemo)(()=>(null==H||""===H||D&&!E)&&!B,[H,D,E,B]),q=(0,p.useRef)(m);_||(q.current=m);let V=q.current,K=(0,p.useRef)(H);_||(K.current=H);let X=K.current,Y=(0,p.useRef)(B);_||(Y.current=B);let U=(0,p.useMemo)(()=>{if(!x)return Object.assign(Object.assign({},null==I?void 0:I.style),$);let e={marginTop:x[1]};return"rtl"===N?e.left=parseInt(x[0],10):e.right=-parseInt(x[0],10),Object.assign(Object.assign(Object.assign({},e),null==I?void 0:I.style),$)},[N,x,$,null==I?void 0:I.style]),G=null!=y?y:"string"==typeof V||"number"==typeof V?V:void 0,Q=_||!d?null:p.createElement("span",{className:`${j}-status-text`},d),Z=V&&"object"==typeof V?(0,W.Ob)(V,e=>({style:Object.assign(Object.assign({},U),e.style)})):void 0,J=(0,aY.nP)(f,!1),ee=h()(null==S?void 0:S.indicator,null==(n=null==I?void 0:I.classNames)?void 0:n.indicator,{[`${j}-status-dot`]:L,[`${j}-status-${u}`]:!!u,[`${j}-color-${f}`]:J}),et={};f&&!J&&(et.color=f,et.background=f);let en=h()(j,{[`${j}-status`]:L,[`${j}-not-a-wrapper`]:!s,[`${j}-rtl`]:"rtl"===N},w,C,null==I?void 0:I.className,null==(r=null==I?void 0:I.classNames)?void 0:r.root,null==S?void 0:S.root,R,P);if(!s&&L){let e=U.color;return z(p.createElement("span",Object.assign({},O,{className:en,style:Object.assign(Object.assign(Object.assign({},null==k?void 0:k.root),null==(o=null==I?void 0:I.styles)?void 0:o.root),U)}),p.createElement("span",{className:ee,style:Object.assign(Object.assign(Object.assign({},null==k?void 0:k.indicator),null==(a=null==I?void 0:I.styles)?void 0:a.indicator),et)}),d&&p.createElement("span",{style:{color:e},className:`${j}-status-text`},d)))}return z(p.createElement("span",Object.assign({ref:t},O,{className:en,style:Object.assign(Object.assign({},null==(i=null==I?void 0:I.styles)?void 0:i.root),null==k?void 0:k.root)}),s,p.createElement(F.Ay,{visible:!_,motionName:`${j}-zoom`,motionAppear:!1,motionDeadline:1e3},e=>{var t,n;let{className:r}=e,o=M("scroll-number",c),a=Y.current,i=h()(null==S?void 0:S.indicator,null==(t=null==I?void 0:I.classNames)?void 0:t.indicator,{[`${j}-dot`]:a,[`${j}-count`]:!a,[`${j}-count-sm`]:"small"===b,[`${j}-multiple-words`]:!a&&X&&X.toString().length>1,[`${j}-status-${u}`]:!!u,[`${j}-color-${f}`]:J}),l=Object.assign(Object.assign(Object.assign({},null==k?void 0:k.indicator),null==(n=null==I?void 0:I.styles)?void 0:n.indicator),U);return f&&!J&&((l=l||{}).background=f),p.createElement(a9,{prefixCls:o,show:!_,motionClassName:r,className:i,count:X,title:G,style:l,key:"scrollNumber"},Z)}),Q))});it.Ribbon=e=>{let{className:t,prefixCls:n,style:r,color:o,children:a,text:i,placement:l="end",rootClassName:c}=e,{getPrefixCls:s,direction:u}=p.useContext(A.QO),d=s("ribbon",n),f=`${d}-wrapper`,[m,g,v]=a6(d,f),b=(0,aY.nP)(o,!1),y=h()(d,`${d}-placement-${l}`,{[`${d}-rtl`]:"rtl"===u,[`${d}-color-${o}`]:b},t),x={},$={};return o&&!b&&(x.background=o,$.color=o),m(p.createElement("div",{className:h()(f,c,g,v)},a,p.createElement("div",{className:h()(y,g),style:Object.assign(Object.assign({},x),r)},p.createElement("span",{className:`${d}-text`},i),p.createElement("div",{className:`${d}-corner`,style:$}))))};let ir=it;var io=n(88996),ia=eR.A.ESC,ii=eR.A.TAB,il=(0,p.forwardRef)(function(e,t){var n=e.overlay,r=e.arrow,o=e.prefixCls,a=(0,p.useMemo)(function(){return"function"==typeof n?n():n},[n]),i=(0,_.K4)(t,(0,_.A9)(a));return m().createElement(m().Fragment,null,r&&m().createElement("div",{className:"".concat(o,"-arrow")}),m().cloneElement(a,{ref:(0,_.f3)(a)?i:void 0}))}),ic={adjustX:1,adjustY:1},is=[0,0];let iu={topLeft:{points:["bl","tl"],overflow:ic,offset:[0,-4],targetOffset:is},top:{points:["bc","tc"],overflow:ic,offset:[0,-4],targetOffset:is},topRight:{points:["br","tr"],overflow:ic,offset:[0,-4],targetOffset:is},bottomLeft:{points:["tl","bl"],overflow:ic,offset:[0,4],targetOffset:is},bottom:{points:["tc","bc"],overflow:ic,offset:[0,4],targetOffset:is},bottomRight:{points:["tr","br"],overflow:ic,offset:[0,4],targetOffset:is}};var id=["arrow","prefixCls","transitionName","animation","align","placement","placements","getPopupContainer","showAction","hideAction","overlayClassName","overlayStyle","visible","trigger","autoFocus","overlay","children","onVisibleChange"];let ip=m().forwardRef(function(e,t){var n,r,o,a,i,l,c,s,u,d,f,g,v,b,y=e.arrow,$=void 0!==y&&y,A=e.prefixCls,w=void 0===A?"rc-dropdown":A,C=e.transitionName,S=e.animation,k=e.align,E=e.placement,O=e.placements,M=e.getPopupContainer,N=e.showAction,I=e.hideAction,j=e.overlayClassName,z=e.overlayStyle,P=e.visible,T=e.trigger,D=void 0===T?["hover"]:T,L=e.autoFocus,B=e.overlay,F=e.children,H=e.onVisibleChange,W=(0,eO.A)(e,id),q=m().useState(),V=(0,eE.A)(q,2),K=V[0],X=V[1],Y="visible"in e?P:K,U=m().useRef(null),G=m().useRef(null),Q=m().useRef(null);m().useImperativeHandle(t,function(){return U.current});var Z=function(e){X(e),null==H||H(e)};r=(n={visible:Y,triggerRef:Q,onVisibleChange:Z,autoFocus:L,overlayRef:G}).visible,o=n.triggerRef,a=n.onVisibleChange,i=n.autoFocus,l=n.overlayRef,c=p.useRef(!1),s=function(){if(r){var e,t;null==(e=o.current)||null==(t=e.focus)||t.call(e),null==a||a(!1)}},u=function(){var e;return null!=(e=l.current)&&!!e.focus&&(l.current.focus(),c.current=!0,!0)},d=function(e){switch(e.keyCode){case ia:s();break;case ii:var t=!1;c.current||(t=u()),t?e.preventDefault():s()}},p.useEffect(function(){return r?(window.addEventListener("keydown",d),i&&(0,x.A)(u,3),function(){window.removeEventListener("keydown",d),c.current=!1}):function(){c.current=!1}},[r]);var J=function(){return m().createElement(il,{ref:G,overlay:B,prefixCls:w,arrow:$})},ee=m().cloneElement(F,{className:h()(null==(b=F.props)?void 0:b.className,Y&&(void 0!==(f=e.openClassName)?f:"".concat(w,"-open"))),ref:(0,_.f3)(F)?(0,_.K4)(Q,(0,_.A9)(F)):void 0}),et=I;return et||-1===D.indexOf("contextMenu")||(et=["click"]),m().createElement(rV.A,(0,R.A)({builtinPlacements:void 0===O?iu:O},W,{prefixCls:w,ref:U,popupClassName:h()(j,(0,ej.A)({},"".concat(w,"-show-arrow"),$)),popupStyle:z,action:D,showAction:N,hideAction:et,popupPlacement:void 0===E?"bottomLeft":E,popupAlign:k,popupTransitionName:C,popupAnimation:S,popupVisible:Y,stretch:(g=e.minOverlayWidthMatchTrigger,v=e.alignPoint,"minOverlayWidthMatchTrigger"in e?g:!v)?"minWidth":"",popup:"function"==typeof B?J:J(),onPopupVisibleChange:Z,onPopupClick:function(t){var n=e.onOverlayClick;X(!1),n&&n(t)},getPopupContainer:M}),ee)});var im=n(13257),ig=p.createContext(null);function ih(e,t){return void 0===e?null:"".concat(e,"-").concat(t)}function iv(e){return ih(p.useContext(ig),e)}var ib=["children","locked"],iy=p.createContext(null);function ix(e){var t=e.children,n=e.locked,r=(0,eO.A)(e,ib),o=p.useContext(iy),a=(0,e5.A)(function(){var e;return e=(0,eM.A)({},o),Object.keys(r).forEach(function(t){var n=r[t];void 0!==n&&(e[t]=n)}),e},[o,r],function(e,t){return!n&&(e[0]!==t[0]||!(0,tg.A)(e[1],t[1],!0))});return p.createElement(iy.Provider,{value:a},t)}var i$=p.createContext(null);function iA(){return p.useContext(i$)}var iw=p.createContext([]);function iC(e){var t=p.useContext(iw);return p.useMemo(function(){return void 0!==e?[].concat((0,y.A)(t),[e]):t},[t,e])}var iS=p.createContext(null),ik=p.createContext({}),iE=n(42467);function iO(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if((0,iE.A)(e)){var n=e.nodeName.toLowerCase(),r=["input","select","textarea","button"].includes(n)||e.isContentEditable||"a"===n&&!!e.getAttribute("href"),o=e.getAttribute("tabindex"),a=Number(o),i=null;return o&&!Number.isNaN(a)?i=a:r&&null===i&&(i=0),r&&e.disabled&&(i=null),null!==i&&(i>=0||t&&i<0)}return!1}var iM=eR.A.LEFT,iN=eR.A.RIGHT,iI=eR.A.UP,ij=eR.A.DOWN,iz=eR.A.ENTER,iR=eR.A.ESC,iP=eR.A.HOME,iT=eR.A.END,iD=[iI,ij,iM,iN];function iL(e,t){return(function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=(0,y.A)(e.querySelectorAll("*")).filter(function(e){return iO(e,t)});return iO(e,t)&&n.unshift(e),n})(e,!0).filter(function(e){return t.has(e)})}function iB(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1;if(!e)return null;var o=iL(e,t),a=o.length,i=o.findIndex(function(e){return n===e});return r<0?-1===i?i=a-1:i-=1:r>0&&(i+=1),o[i=(i+a)%a]}var iF=function(e,t){var n=new Set,r=new Map,o=new Map;return e.forEach(function(e){var a=document.querySelector("[data-menu-id='".concat(ih(t,e),"']"));a&&(n.add(a),o.set(a,e),r.set(e,a))}),{elements:n,key2element:r,element2key:o}},iH="__RC_UTIL_PATH_SPLIT__",i_=function(e){return e.join(iH)},iW="rc-menu-more";function iq(e){var t=p.useRef(e);t.current=e;var n=p.useCallback(function(){for(var e,n=arguments.length,r=Array(n),o=0;o1&&(y.motionAppear=!1);var x=y.onVisibleChanged;return(y.onVisibleChanged=function(e){return f.current||e||v(!0),null==x?void 0:x(e)},h)?null:p.createElement(ix,{mode:a,locked:!f.current},p.createElement(F.Ay,(0,R.A)({visible:b},y,{forceRender:c,removeOnLeave:!1,leavedClassName:"".concat(l,"-hidden")}),function(e){var n=e.className,r=e.style;return p.createElement(i8,{id:t,className:n,style:r},o)}))}var la=["style","className","title","eventKey","warnKey","disabled","internalPopupClose","children","itemIcon","expandIcon","popupClassName","popupOffset","popupStyle","onClick","onMouseEnter","onMouseLeave","onTitleClick","onTitleMouseEnter","onTitleMouseLeave"],li=["active"],ll=p.forwardRef(function(e,t){var n=e.style,r=e.className,o=e.title,a=e.eventKey,i=(e.warnKey,e.disabled),l=e.internalPopupClose,c=e.children,s=e.itemIcon,u=e.expandIcon,d=e.popupClassName,f=e.popupOffset,m=e.popupStyle,g=e.onClick,v=e.onMouseEnter,b=e.onMouseLeave,y=e.onTitleClick,x=e.onTitleMouseEnter,$=e.onTitleMouseLeave,A=(0,eO.A)(e,la),w=iv(a),C=p.useContext(iy),S=C.prefixCls,k=C.mode,E=C.openKeys,O=C.disabled,M=C.overflowDisabled,N=C.activeKey,I=C.selectedKeys,j=C.itemIcon,z=C.expandIcon,P=C.onItemClick,T=C.onOpenChange,D=C.onActive,L=p.useContext(ik)._internalRenderSubMenuItem,B=p.useContext(iS).isSubPathKey,F=iC(),H="".concat(S,"-submenu"),_=O||i,W=p.useRef(),q=p.useRef(),V=null!=u?u:z,K=E.includes(a),X=!M&&K,Y=B(I,a),U=iY(a,_,x,$),G=U.active,Q=(0,eO.A)(U,li),Z=p.useState(!1),J=(0,eE.A)(Z,2),ee=J[0],et=J[1],en=function(e){_||et(e)},er=p.useMemo(function(){return G||"inline"!==k&&(ee||B([N],a))},[k,G,N,ee,a,B]),eo=iU(F.length),ea=iq(function(e){null==g||g(iZ(e)),P(e)}),ei=w&&"".concat(w,"-popup"),el=p.useMemo(function(){return p.createElement(iG,{icon:"horizontal"!==k?V:void 0,props:(0,eM.A)((0,eM.A)({},e),{},{isOpen:X,isSubMenu:!0})},p.createElement("i",{className:"".concat(H,"-arrow")}))},[k,V,e,X,H]),ec=p.createElement("div",(0,R.A)({role:"menuitem",style:eo,className:"".concat(H,"-title"),tabIndex:_?null:-1,ref:W,title:"string"==typeof o?o:null,"data-menu-id":M&&w?null:w,"aria-expanded":X,"aria-haspopup":!0,"aria-controls":ei,"aria-disabled":_,onClick:function(e){_||(null==y||y({key:a,domEvent:e}),"inline"===k&&T(a,!K))},onFocus:function(){D(a)}},Q),o,el),es=p.useRef(k);if("inline"!==k&&F.length>1?es.current="vertical":es.current=k,!M){var eu=es.current;ec=p.createElement(lr,{mode:eu,prefixCls:H,visible:!l&&X&&"inline"!==k,popupClassName:d,popupOffset:f,popupStyle:m,popup:p.createElement(ix,{mode:"horizontal"===eu?"vertical":eu},p.createElement(i8,{id:ei,ref:q},c)),disabled:_,onVisibleChange:function(e){"inline"!==k&&T(a,e)}},ec)}var ed=p.createElement(rj.Item,(0,R.A)({ref:t,role:"none"},A,{component:"li",style:n,className:h()(H,"".concat(H,"-").concat(k),r,(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(H,"-open"),X),"".concat(H,"-active"),er),"".concat(H,"-selected"),Y),"".concat(H,"-disabled"),_)),onMouseEnter:function(e){en(!0),null==v||v({key:a,domEvent:e})},onMouseLeave:function(e){en(!1),null==b||b({key:a,domEvent:e})}}),ec,!M&&p.createElement(lo,{id:ei,open:X,keyPath:F},c));return L&&(ed=L(ed,e,{selected:Y,active:er,open:X,disabled:_})),p.createElement(ix,{onItemClick:ea,mode:"horizontal"===k?"vertical":k,itemIcon:null!=s?s:j,expandIcon:V},ed)}),lc=p.forwardRef(function(e,t){var n,r=e.eventKey,o=e.children,a=iC(r),i=i5(o,a),l=iA();return p.useEffect(function(){if(l)return l.registerPath(r,a),function(){l.unregisterPath(r,a)}},[a]),n=l?i:p.createElement(ll,(0,R.A)({ref:t},e),i),p.createElement(iw.Provider,{value:a},n)});function ls(e){var t=e.className,n=e.style,r=p.useContext(iy).prefixCls;return iA()?null:p.createElement("li",{role:"separator",className:h()("".concat(r,"-item-divider"),t),style:n})}var lu=["className","title","eventKey","children"],ld=p.forwardRef(function(e,t){var n=e.className,r=e.title,o=(e.eventKey,e.children),a=(0,eO.A)(e,lu),i=p.useContext(iy).prefixCls,l="".concat(i,"-item-group");return p.createElement("li",(0,R.A)({ref:t,role:"presentation"},a,{onClick:function(e){return e.stopPropagation()},className:h()(l,n)}),p.createElement("div",{role:"presentation",className:"".concat(l,"-title"),title:"string"==typeof r?r:void 0},r),p.createElement("ul",{role:"group",className:"".concat(l,"-list")},o))}),lf=p.forwardRef(function(e,t){var n=e.eventKey,r=i5(e.children,iC(n));return iA()?r:p.createElement(ld,(0,R.A)({ref:t},(0,b.A)(e,["warnKey"])),r)}),lp=["label","children","key","type","extra"];function lm(e,t,n,r,o){var a=e,i=(0,eM.A)({divider:ls,item:i3,group:lf,submenu:lc},r);return t&&(a=function e(t,n,r){var o=n.item,a=n.group,i=n.submenu,l=n.divider;return(t||[]).map(function(t,c){if(t&&"object"===(0,ez.A)(t)){var s=t.label,u=t.children,d=t.key,f=t.type,m=t.extra,g=(0,eO.A)(t,lp),h=null!=d?d:"tmp-".concat(c);return u||"group"===f?"group"===f?p.createElement(a,(0,R.A)({key:h},g,{title:s}),e(u,n,r)):p.createElement(i,(0,R.A)({key:h},g,{title:s}),e(u,n,r)):"divider"===f?p.createElement(l,(0,R.A)({key:h},g)):p.createElement(o,(0,R.A)({key:h},g,{extra:m}),s,(!!m||0===m)&&p.createElement("span",{className:"".concat(r,"-item-extra")},m))}return null}).filter(function(e){return e})}(t,i,o)),i5(a,n)}var lg=["prefixCls","rootClassName","style","className","tabIndex","items","children","direction","id","mode","inlineCollapsed","disabled","disabledOverflow","subMenuOpenDelay","subMenuCloseDelay","forceSubMenuRender","defaultOpenKeys","openKeys","activeKey","defaultActiveFirst","selectable","multiple","defaultSelectedKeys","selectedKeys","onSelect","onDeselect","inlineIndent","motion","defaultMotions","triggerSubMenuAction","builtinPlacements","itemIcon","expandIcon","overflowedIndicator","overflowedIndicatorPopupClassName","getPopupContainer","onClick","onOpenChange","onKeyDown","openAnimation","openTransitionName","_internalRenderMenuItem","_internalRenderSubMenuItem","_internalComponents"],lh=[],lv=p.forwardRef(function(e,t){var n,r,o,a,i,l,c,s,u,d,f,m,g,v,b,$,A,w,C,S,k,E,O,M,N,I,j=e.prefixCls,z=void 0===j?"rc-menu":j,P=e.rootClassName,T=e.style,D=e.className,L=e.tabIndex,B=e.items,F=e.children,H=e.direction,_=e.id,W=e.mode,q=void 0===W?"vertical":W,V=e.inlineCollapsed,K=e.disabled,X=e.disabledOverflow,Y=e.subMenuOpenDelay,U=e.subMenuCloseDelay,G=e.forceSubMenuRender,Q=e.defaultOpenKeys,Z=e.openKeys,J=e.activeKey,ee=e.defaultActiveFirst,et=e.selectable,en=void 0===et||et,er=e.multiple,eo=void 0!==er&&er,ea=e.defaultSelectedKeys,ei=e.selectedKeys,el=e.onSelect,ec=e.onDeselect,es=e.inlineIndent,eu=e.motion,ed=e.defaultMotions,ef=e.triggerSubMenuAction,ep=e.builtinPlacements,em=e.itemIcon,eg=e.expandIcon,eh=e.overflowedIndicator,ev=void 0===eh?"...":eh,eb=e.overflowedIndicatorPopupClassName,ey=e.getPopupContainer,ex=e.onClick,e$=e.onOpenChange,eA=e.onKeyDown,ew=(e.openAnimation,e.openTransitionName,e._internalRenderMenuItem),eC=e._internalRenderSubMenuItem,eS=e._internalComponents,ek=(0,eO.A)(e,lg),eI=p.useMemo(function(){return[lm(F,B,lh,eS,z),lm(F,B,lh,{},z)]},[F,B,eS]),ez=(0,eE.A)(eI,2),eR=ez[0],eP=ez[1],eT=p.useState(!1),eD=(0,eE.A)(eT,2),eL=eD[0],eB=eD[1],eF=p.useRef(),eH=(n=(0,rs.A)(_,{value:_}),o=(r=(0,eE.A)(n,2))[0],a=r[1],p.useEffect(function(){iK+=1;var e="".concat(iV,"-").concat(iK);a("rc-menu-uuid-".concat(e))},[]),o),e_="rtl"===H,eW=(0,rs.A)(Q,{value:Z,postState:function(e){return e||lh}}),eq=(0,eE.A)(eW,2),eV=eq[0],eK=eq[1],eX=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];function n(){eK(e),null==e$||e$(e)}t?(0,eN.flushSync)(n):n()},eY=p.useState(eV),eU=(0,eE.A)(eY,2),eG=eU[0],eQ=eU[1],eZ=p.useRef(!1),eJ=p.useMemo(function(){return("inline"===q||"vertical"===q)&&V?["vertical",V]:[q,!1]},[q,V]),e0=(0,eE.A)(eJ,2),e1=e0[0],e2=e0[1],e4="inline"===e1,e3=p.useState(e1),e6=(0,eE.A)(e3,2),e8=e6[0],e5=e6[1],e7=p.useState(e2),e9=(0,eE.A)(e7,2),te=e9[0],tt=e9[1];p.useEffect(function(){e5(e1),tt(e2),eZ.current&&(e4?eK(eG):eX(lh))},[e1,e2]);var tn=p.useState(0),tr=(0,eE.A)(tn,2),to=tr[0],ta=tr[1],ti=to>=eR.length-1||"horizontal"!==e8||X;p.useEffect(function(){e4&&eQ(eV)},[eV]),p.useEffect(function(){return eZ.current=!0,function(){eZ.current=!1}},[]);var tl=(i=p.useState({}),l=(0,eE.A)(i,2)[1],c=(0,p.useRef)(new Map),s=(0,p.useRef)(new Map),u=p.useState([]),f=(d=(0,eE.A)(u,2))[0],m=d[1],g=(0,p.useRef)(0),v=(0,p.useRef)(!1),b=function(){v.current||l({})},$=(0,p.useCallback)(function(e,t){var n=i_(t);s.current.set(n,e),c.current.set(e,n),g.current+=1;var r=g.current;Promise.resolve().then(function(){r===g.current&&b()})},[]),A=(0,p.useCallback)(function(e,t){var n=i_(t);s.current.delete(n),c.current.delete(e)},[]),w=(0,p.useCallback)(function(e){m(e)},[]),C=(0,p.useCallback)(function(e,t){var n=(c.current.get(e)||"").split(iH);return t&&f.includes(n[0])&&n.unshift(iW),n},[f]),S=(0,p.useCallback)(function(e,t){return e.filter(function(e){return void 0!==e}).some(function(e){return C(e,!0).includes(t)})},[C]),k=(0,p.useCallback)(function(e){var t="".concat(c.current.get(e)).concat(iH),n=new Set;return(0,y.A)(s.current.keys()).forEach(function(e){e.startsWith(t)&&n.add(s.current.get(e))}),n},[]),p.useEffect(function(){return function(){v.current=!0}},[]),{registerPath:$,unregisterPath:A,refreshOverflowKeys:w,isSubPathKey:S,getKeyPath:C,getKeys:function(){var e=(0,y.A)(c.current.keys());return f.length&&e.push(iW),e},getSubPathKeys:k}),tc=tl.registerPath,ts=tl.unregisterPath,tu=tl.refreshOverflowKeys,td=tl.isSubPathKey,tf=tl.getKeyPath,tp=tl.getKeys,tm=tl.getSubPathKeys,th=p.useMemo(function(){return{registerPath:tc,unregisterPath:ts}},[tc,ts]),tv=p.useMemo(function(){return{isSubPathKey:td}},[td]);p.useEffect(function(){tu(ti?lh:eR.slice(to+1).map(function(e){return e.key}))},[to,ti]);var tb=(0,rs.A)(J||ee&&(null==(I=eR[0])?void 0:I.key),{value:J}),ty=(0,eE.A)(tb,2),tx=ty[0],t$=ty[1],tA=iq(function(e){t$(e)}),tw=iq(function(){t$(void 0)});(0,p.useImperativeHandle)(t,function(){return{list:eF.current,focus:function(e){var t,n,r=iF(tp(),eH),o=r.elements,a=r.key2element,i=r.element2key,l=iL(eF.current,o),c=null!=tx?tx:l[0]?i.get(l[0]):null==(t=eR.find(function(e){return!e.props.disabled}))?void 0:t.key,s=a.get(c);c&&s&&(null==s||null==(n=s.focus)||n.call(s,e))}}});var tC=(0,rs.A)(ea||[],{value:ei,postState:function(e){return Array.isArray(e)?e:null==e?lh:[e]}}),tS=(0,eE.A)(tC,2),tk=tS[0],tE=tS[1],tO=function(e){if(en){var t,n=e.key,r=tk.includes(n);tE(t=eo?r?tk.filter(function(e){return e!==n}):[].concat((0,y.A)(tk),[n]):[n]);var o=(0,eM.A)((0,eM.A)({},e),{},{selectedKeys:t});r?null==ec||ec(o):null==el||el(o)}!eo&&eV.length&&"inline"!==e8&&eX(lh)},tM=iq(function(e){null==ex||ex(iZ(e)),tO(e)}),tN=iq(function(e,t){var n=eV.filter(function(t){return t!==e});if(t)n.push(e);else if("inline"!==e8){var r=tm(e);n=n.filter(function(e){return!r.has(e)})}(0,tg.A)(eV,n,!0)||eX(n,!0)}),tI=(E=function(e,t){var n=null!=t?t:!eV.includes(e);tN(e,n)},O=p.useRef(),(M=p.useRef()).current=tx,N=function(){x.A.cancel(O.current)},p.useEffect(function(){return function(){N()}},[]),function(e){var t=e.which;if([].concat(iD,[iz,iR,iP,iT]).includes(t)){var n=tp(),r=iF(n,eH),o=r,a=o.elements,i=o.key2element,l=o.element2key,c=function(e,t){for(var n=e||document.activeElement;n;){if(t.has(n))return n;n=n.parentElement}return null}(i.get(tx),a),s=l.get(c),u=function(e,t,n,r){var o,a="prev",i="next",l="children",c="parent";if("inline"===e&&r===iz)return{inlineTrigger:!0};var s=(0,ej.A)((0,ej.A)({},iI,a),ij,i),u=(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},iM,n?i:a),iN,n?a:i),ij,l),iz,l),d=(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},iI,a),ij,i),iz,l),iR,c),iM,n?l:c),iN,n?c:l);switch(null==(o=({inline:s,horizontal:u,vertical:d,inlineSub:s,horizontalSub:d,verticalSub:d})["".concat(e).concat(t?"":"Sub")])?void 0:o[r]){case a:return{offset:-1,sibling:!0};case i:return{offset:1,sibling:!0};case c:return{offset:-1,sibling:!1};case l:return{offset:1,sibling:!1};default:return null}}(e8,1===tf(s,!0).length,e_,t);if(!u&&t!==iP&&t!==iT)return;(iD.includes(t)||[iP,iT].includes(t))&&e.preventDefault();var d=function(e){if(e){var t=e,n=e.querySelector("a");null!=n&&n.getAttribute("href")&&(t=n);var r=l.get(e);t$(r),N(),O.current=(0,x.A)(function(){M.current===r&&t.focus()})}};if([iP,iT].includes(t)||u.sibling||!c){var f=c&&"inline"!==e8?function(e){for(var t=e;t;){if(t.getAttribute("data-menu-list"))return t;t=t.parentElement}return null}(c):eF.current,p=iL(f,a);d(t===iP?p[0]:t===iT?p[p.length-1]:iB(f,a,c,u.offset))}else if(u.inlineTrigger)E(s);else if(u.offset>0)E(s,!0),N(),O.current=(0,x.A)(function(){r=iF(n,eH);var e=c.getAttribute("aria-controls");d(iB(document.getElementById(e),r.elements))},5);else if(u.offset<0){var m=tf(s,!0),g=m[m.length-2],h=i.get(g);E(g,!1),d(h)}}null==eA||eA(e)});p.useEffect(function(){eB(!0)},[]);var tj=p.useMemo(function(){return{_internalRenderMenuItem:ew,_internalRenderSubMenuItem:eC}},[ew,eC]),tz="horizontal"!==e8||X?eR:eR.map(function(e,t){return p.createElement(ix,{key:e.key,overflowDisabled:t>to},e)}),tR=p.createElement(rj,(0,R.A)({id:_,ref:eF,prefixCls:"".concat(z,"-overflow"),component:"ul",itemComponent:i3,className:h()(z,"".concat(z,"-root"),"".concat(z,"-").concat(e8),D,(0,ej.A)((0,ej.A)({},"".concat(z,"-inline-collapsed"),te),"".concat(z,"-rtl"),e_),P),dir:H,style:T,role:"menu",tabIndex:void 0===L?0:L,data:tz,renderRawItem:function(e){return e},renderRawRest:function(e){var t=e.length,n=t?eR.slice(-t):null;return p.createElement(lc,{eventKey:iW,title:ev,disabled:ti,internalPopupClose:0===t,popupClassName:eb},n)},maxCount:"horizontal"!==e8||X?rj.INVALIDATE:rj.RESPONSIVE,ssr:"full","data-menu-list":!0,onVisibleChange:function(e){ta(e)},onKeyDown:tI},ek));return p.createElement(ik.Provider,{value:tj},p.createElement(ig.Provider,{value:eH},p.createElement(ix,{prefixCls:z,rootClassName:P,mode:e8,openKeys:eV,rtl:e_,disabled:K,motion:eL?eu:null,defaultMotions:eL?ed:null,activeKey:tx,onActive:tA,onInactive:tw,selectedKeys:tk,inlineIndent:void 0===es?24:es,subMenuOpenDelay:void 0===Y?.1:Y,subMenuCloseDelay:void 0===U?.1:U,forceSubMenuRender:G,builtinPlacements:ep,triggerSubMenuAction:void 0===ef?"hover":ef,getPopupContainer:ey,itemIcon:em,expandIcon:eg,onItemClick:tM,onOpenChange:tN},p.createElement(iS.Provider,{value:tv},tR),p.createElement("div",{style:{display:"none"},"aria-hidden":!0},p.createElement(i$.Provider,{value:th},eP)))))});lv.Item=i3,lv.SubMenu=lc,lv.ItemGroup=lf,lv.Divider=ls;let lb={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M912 192H328c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h584c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 284H328c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h584c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zm0 284H328c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h584c4.4 0 8-3.6 8-8v-56c0-4.4-3.6-8-8-8zM104 228a56 56 0 10112 0 56 56 0 10-112 0zm0 284a56 56 0 10112 0 56 56 0 10-112 0zm0 284a56 56 0 10112 0 56 56 0 10-112 0z"}}]},name:"bars",theme:"outlined"};var ly=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:lb}))});let lx={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M724 218.3V141c0-6.7-7.7-10.4-12.9-6.3L260.3 486.8a31.86 31.86 0 000 50.3l450.8 352.1c5.3 4.1 12.9.4 12.9-6.3v-77.3c0-4.9-2.3-9.6-6.1-12.6l-360-281 360-281.1c3.8-3 6.1-7.7 6.1-12.6z"}}]},name:"left",theme:"outlined"};var l$=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:lx}))});let lA=p.createContext({siderHook:{addSider:()=>null,removeSider:()=>null}}),lw=e=>{let{colorBgLayout:t,controlHeight:n,controlHeightLG:r,colorText:o,controlHeightSM:a,marginXXS:i,colorTextLightSolid:l,colorBgContainer:c}=e,s=1.25*r;return{colorBgHeader:"#001529",colorBgBody:t,colorBgTrigger:"#002140",bodyBg:t,headerBg:"#001529",headerHeight:2*n,headerPadding:`0 ${s}px`,headerColor:o,footerPadding:`${a}px ${s}px`,footerBg:t,siderBg:"#001529",triggerHeight:r+2*i,triggerBg:"#002140",triggerColor:l,zeroTriggerWidth:r,zeroTriggerHeight:r,lightSiderBg:c,lightTriggerBg:c,lightTriggerColor:o}},lC=[["colorBgBody","bodyBg"],["colorBgHeader","headerBg"],["colorBgTrigger","triggerBg"]],lS=(0,w.OF)("Layout",e=>[(e=>{let{antCls:t,componentCls:n,colorText:r,footerBg:o,headerHeight:a,headerPadding:i,headerColor:l,footerPadding:c,fontSize:s,bodyBg:u,headerBg:d}=e;return{[n]:{display:"flex",flex:"auto",flexDirection:"column",minHeight:0,background:u,"&, *":{boxSizing:"border-box"},[`&${n}-has-sider`]:{flexDirection:"row",[`> ${n}, > ${n}-content`]:{width:0}},[`${n}-header, &${n}-footer`]:{flex:"0 0 auto"},"&-rtl":{direction:"rtl"}},[`${n}-header`]:{height:a,padding:i,color:l,lineHeight:(0,q.zA)(a),background:d,[`${t}-menu`]:{lineHeight:"inherit"}},[`${n}-footer`]:{padding:c,color:r,fontSize:s,background:o},[`${n}-content`]:{flex:"auto",color:r,minHeight:0}}})(e)],lw,{deprecatedTokens:lC}),lk=(0,w.OF)(["Layout","Sider"],e=>[(e=>{let{componentCls:t,siderBg:n,motionDurationMid:r,motionDurationSlow:o,antCls:a,triggerHeight:i,triggerColor:l,triggerBg:c,headerHeight:s,zeroTriggerWidth:u,zeroTriggerHeight:d,borderRadius:f,lightSiderBg:p,lightTriggerColor:m,lightTriggerBg:g,bodyBg:h}=e;return{[t]:{position:"relative",minWidth:0,background:n,transition:`all ${r}, background 0s`,"&-has-trigger":{paddingBottom:i},"&-right":{order:1},[`${t}-children`]:{height:"100%",marginTop:-.1,paddingTop:.1,[`${a}-menu${a}-menu-inline-collapsed`]:{width:"auto"}},[`${t}-trigger`]:{position:"fixed",bottom:0,zIndex:1,height:i,color:l,lineHeight:(0,q.zA)(i),textAlign:"center",background:c,cursor:"pointer",transition:`all ${r}`},[`${a}-layout &-zero-width`]:{"> *":{overflow:"hidden"},"&-trigger":{position:"absolute",top:s,insetInlineEnd:e.calc(u).mul(-1).equal(),zIndex:1,width:u,height:d,color:l,fontSize:e.fontSizeXL,display:"flex",alignItems:"center",justifyContent:"center",background:n,borderStartStartRadius:0,borderStartEndRadius:f,borderEndEndRadius:f,borderEndStartRadius:0,cursor:"pointer",transition:`background ${o} ease`,"&::after":{position:"absolute",inset:0,background:"transparent",transition:`all ${o}`,content:'""'},"&:hover::after":{background:"rgba(255, 255, 255, 0.2)"},"&-right":{insetInlineStart:e.calc(u).mul(-1).equal(),borderStartStartRadius:f,borderStartEndRadius:0,borderEndEndRadius:0,borderEndStartRadius:f}}},"&-light":{background:p,[`${t}-trigger`]:{color:m,background:g},[`${t}-zero-width-trigger`]:{color:m,background:g,border:`1px solid ${h}`,borderInlineStart:0}}}}})(e)],lw,{deprecatedTokens:lC});var lE=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let lO={xs:"479.98px",sm:"575.98px",md:"767.98px",lg:"991.98px",xl:"1199.98px",xxl:"1599.98px"},lM=p.createContext({}),lN=(s=0,function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return s+=1,`${e}${s}`}),lI=p.forwardRef((e,t)=>{let n,r,o,a,i,l,c,s,{prefixCls:u,className:d,trigger:f,children:m,defaultCollapsed:g=!1,theme:v="dark",style:y={},collapsible:x=!1,reverseArrow:$=!1,width:w=200,collapsedWidth:C=80,zeroWidthTriggerStyle:S,breakpoint:k,onCollapse:E,onBreakpoint:O}=e,M=lE(e,["prefixCls","className","trigger","children","defaultCollapsed","theme","style","collapsible","reverseArrow","width","collapsedWidth","zeroWidthTriggerStyle","breakpoint","onCollapse","onBreakpoint"]),{siderHook:N}=(0,p.useContext)(lA),[I,j]=(0,p.useState)("collapsed"in e?e.collapsed:g),[z,R]=(0,p.useState)(!1);(0,p.useEffect)(()=>{"collapsed"in e&&j(e.collapsed)},[e.collapsed]);let P=(t,n)=>{"collapsed"in e||j(t),null==E||E(t,n)},{getPrefixCls:T}=(0,p.useContext)(A.QO),D=T("layout-sider",u),[L,B,F]=lk(D),H=(0,p.useRef)(null);H.current=e=>{R(e.matches),null==O||O(e.matches),I!==e.matches&&P(e.matches,"responsive")},(0,p.useEffect)(()=>{let e;function t(e){return H.current(e)}if("u">typeof window){let{matchMedia:n}=window;if(n&&k&&k in lO){e=n(`screen and (max-width: ${lO[k]})`);try{e.addEventListener("change",t)}catch(n){e.addListener(t)}t(e)}}return()=>{try{null==e||e.removeEventListener("change",t)}catch(n){null==e||e.removeListener(t)}}},[k]),(0,p.useEffect)(()=>{let e=lN("ant-sider-");return N.addSider(e),()=>N.removeSider(e)},[]);let _=()=>{P(!I,"clickTrigger")},W=p.useMemo(()=>({siderCollapsed:I}),[I]);return L(p.createElement(lM.Provider,{value:W},(n=(0,b.A)(M,["collapsed"]),o=!isNaN(parseFloat(r=I?C:w))&&isFinite(r)?`${r}px`:String(r),a=0===parseFloat(String(C||0))?p.createElement("span",{onClick:_,className:h()(`${D}-zero-width-trigger`,`${D}-zero-width-trigger-${$?"right":"left"}`),style:S},f||p.createElement(ly,null)):null,i=({expanded:$?p.createElement(io.A,null):p.createElement(l$,null),collapsed:$?p.createElement(l$,null):p.createElement(io.A,null)})[I?"collapsed":"expanded"],l=null!==f?a||p.createElement("div",{className:`${D}-trigger`,onClick:_,style:{width:o}},f||i):null,c=Object.assign(Object.assign({},y),{flex:`0 0 ${o}`,maxWidth:o,minWidth:o,width:o}),s=h()(D,`${D}-${v}`,{[`${D}-collapsed`]:!!I,[`${D}-has-trigger`]:x&&null!==f&&!a,[`${D}-below`]:!!z,[`${D}-zero-width`]:0===parseFloat(o)},d,B,F),p.createElement("aside",Object.assign({className:s},n,{style:c,ref:t}),p.createElement("div",{className:`${D}-children`},m),x||z&&a?l:null))))}),lj={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M176 511a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0z"}}]},name:"ellipsis",theme:"outlined"};var lz=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:lj}))});let lR=(0,p.createContext)({prefixCls:"",firstLevel:!0,inlineCollapsed:!1});var lP=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let lT=e=>{let{prefixCls:t,className:n,dashed:r}=e,o=lP(e,["prefixCls","className","dashed"]),{getPrefixCls:a}=p.useContext(A.QO),i=a("menu",t),l=h()({[`${i}-item-divider-dashed`]:!!r},n);return p.createElement(ls,Object.assign({className:l},o))},lD=e=>{var t;let n,r,{className:o,children:a,icon:i,title:l,danger:c,extra:s}=e,{prefixCls:u,firstLevel:d,direction:f,disableMenuItemTitleTooltip:m,inlineCollapsed:g}=p.useContext(lR),{siderCollapsed:v}=p.useContext(lM),y=l;void 0===l?y=d?a:"":!1===l&&(y="");let x={title:y};v||g||(x.title=null,x.open=!1);let $=(0,rc.A)(a).length,A=p.createElement(i3,Object.assign({},(0,b.A)(e,["title","icon","danger"]),{className:h()({[`${u}-item-danger`]:c,[`${u}-item-only-child`]:(i?$+1:$)===1},o),title:"string"==typeof l?l:void 0}),(0,W.Ob)(i,{className:h()(p.isValidElement(i)?null==(t=i.props)?void 0:t.className:"",`${u}-item-icon`)}),(n=null==a?void 0:a[0],r=p.createElement("span",{className:h()(`${u}-title-content`,{[`${u}-title-content-with-extra`]:!!s||0===s})},a),(!i||p.isValidElement(a)&&"span"===a.type)&&a&&g&&d&&"string"==typeof n?p.createElement("div",{className:`${u}-inline-collapsed-noicon`},n.charAt(0)):r));return m||(A=p.createElement(aM.A,Object.assign({},x,{placement:"rtl"===f?"left":"right",overlayClassName:`${u}-inline-collapsed-tooltip`}),A)),A};var lL=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let lB=p.createContext(null),lF=p.forwardRef((e,t)=>{let{children:n}=e,r=lL(e,["children"]),o=p.useContext(lB),a=p.useMemo(()=>Object.assign(Object.assign({},o),r),[o,r.prefixCls,r.mode,r.selectable,r.rootClassName]),i=(0,_.H3)(n),l=(0,_.xK)(t,i?(0,_.A9)(n):null);return p.createElement(lB.Provider,{value:a},p.createElement(t2.A,{space:!0},i?p.cloneElement(n,{ref:l}):n))});var lH=n(60977);let l_=e=>Object.assign({},(0,V.jk)(e)),lW=(e,t)=>{let{componentCls:n,itemColor:r,itemSelectedColor:o,groupTitleColor:a,itemBg:i,subMenuItemBg:l,itemSelectedBg:c,activeBarHeight:s,activeBarWidth:u,activeBarBorderWidth:d,motionDurationSlow:f,motionEaseInOut:p,motionEaseOut:m,itemPaddingInline:g,motionDurationMid:h,itemHoverColor:v,lineType:b,colorSplit:y,itemDisabledColor:x,dangerItemColor:$,dangerItemHoverColor:A,dangerItemSelectedColor:w,dangerItemActiveBg:C,dangerItemSelectedBg:S,popupBg:k,itemHoverBg:E,itemActiveBg:O,menuSubMenuBg:M,horizontalItemSelectedColor:N,horizontalItemSelectedBg:I,horizontalItemBorderRadius:j,horizontalItemHoverBg:z}=e;return{[`${n}-${t}, ${n}-${t} > ${n}`]:{color:r,background:i,[`&${n}-root:focus-visible`]:Object.assign({},l_(e)),[`${n}-item`]:{"&-group-title, &-extra":{color:a}},[`${n}-submenu-selected`]:{[`> ${n}-submenu-title`]:{color:o}},[`${n}-item, ${n}-submenu-title`]:{color:r,[`&:not(${n}-item-disabled):focus-visible`]:Object.assign({},l_(e))},[`${n}-item-disabled, ${n}-submenu-disabled`]:{color:`${x} !important`},[`${n}-item:not(${n}-item-selected):not(${n}-submenu-selected)`]:{[`&:hover, > ${n}-submenu-title:hover`]:{color:v}},[`&:not(${n}-horizontal)`]:{[`${n}-item:not(${n}-item-selected)`]:{"&:hover":{backgroundColor:E},"&:active":{backgroundColor:O}},[`${n}-submenu-title`]:{"&:hover":{backgroundColor:E},"&:active":{backgroundColor:O}}},[`${n}-item-danger`]:{color:$,[`&${n}-item:hover`]:{[`&:not(${n}-item-selected):not(${n}-submenu-selected)`]:{color:A}},[`&${n}-item:active`]:{background:C}},[`${n}-item a`]:{"&, &:hover":{color:"inherit"}},[`${n}-item-selected`]:{color:o,[`&${n}-item-danger`]:{color:w},"a, a:hover":{color:"inherit"}},[`& ${n}-item-selected`]:{backgroundColor:c,[`&${n}-item-danger`]:{backgroundColor:S}},[`&${n}-submenu > ${n}`]:{backgroundColor:M},[`&${n}-popup > ${n}`]:{backgroundColor:k},[`&${n}-submenu-popup > ${n}`]:{backgroundColor:k},[`&${n}-horizontal`]:Object.assign(Object.assign({},"dark"===t?{borderBottom:0}:{}),{[`> ${n}-item, > ${n}-submenu`]:{top:d,marginTop:e.calc(d).mul(-1).equal(),marginBottom:0,borderRadius:j,"&::after":{position:"absolute",insetInline:g,bottom:0,borderBottom:`${(0,q.zA)(s)} solid transparent`,transition:`border-color ${f} ${p}`,content:'""'},"&:hover, &-active, &-open":{background:z,"&::after":{borderBottomWidth:s,borderBottomColor:N}},"&-selected":{color:N,backgroundColor:I,"&:hover":{backgroundColor:I},"&::after":{borderBottomWidth:s,borderBottomColor:N}}}}),[`&${n}-root`]:{[`&${n}-inline, &${n}-vertical`]:{borderInlineEnd:`${(0,q.zA)(d)} ${b} ${y}`}},[`&${n}-inline`]:{[`${n}-sub${n}-inline`]:{background:l},[`${n}-item`]:{position:"relative","&::after":{position:"absolute",insetBlock:0,insetInlineEnd:0,borderInlineEnd:`${(0,q.zA)(u)} solid ${o}`,transform:"scaleY(0.0001)",opacity:0,transition:`transform ${h} ${m},opacity ${h} ${m}`,content:'""'},[`&${n}-item-danger`]:{"&::after":{borderInlineEndColor:w}}},[`${n}-selected, ${n}-item-selected`]:{"&::after":{transform:"scaleY(1)",opacity:1,transition:`transform ${h} ${p},opacity ${h} ${p}`}}}}}},lq=e=>{let{componentCls:t,itemHeight:n,itemMarginInline:r,padding:o,menuArrowSize:a,marginXS:i,itemMarginBlock:l,itemWidth:c,itemPaddingInline:s}=e,u=e.calc(a).add(o).add(i).equal();return{[`${t}-item`]:{position:"relative",overflow:"hidden"},[`${t}-item, ${t}-submenu-title`]:{height:n,lineHeight:(0,q.zA)(n),paddingInline:s,overflow:"hidden",textOverflow:"ellipsis",marginInline:r,marginBlock:l,width:c},[`> ${t}-item, - > ${t}-submenu > ${t}-submenu-title`]:{height:n,lineHeight:(0,q.zA)(n)},[`${t}-item-group-list ${t}-submenu-title, - ${t}-submenu-title`]:{paddingInlineEnd:u}}},lV=e=>{let{componentCls:t,motionDurationSlow:n,motionDurationMid:r,motionEaseInOut:o,motionEaseOut:a,iconCls:i,iconSize:l,iconMarginInlineEnd:c}=e;return{[`${t}-item, ${t}-submenu-title`]:{position:"relative",display:"block",margin:0,whiteSpace:"nowrap",cursor:"pointer",transition:`border-color ${n},background ${n},padding calc(${n} + 0.1s) ${o}`,[`${t}-item-icon, ${i}`]:{minWidth:l,fontSize:l,transition:`font-size ${r} ${a},margin ${n} ${o},color ${n}`,"+ span":{marginInlineStart:c,opacity:1,transition:`opacity ${n} ${o},margin ${n},color ${n}`}},[`${t}-item-icon`]:Object.assign({},(0,V.Nk)()),[`&${t}-item-only-child`]:{[`> ${i}, > ${t}-item-icon`]:{marginInlineEnd:0}}},[`${t}-item-disabled, ${t}-submenu-disabled`]:{background:"none !important",cursor:"not-allowed","&::after":{borderColor:"transparent !important"},a:{color:"inherit !important"},[`> ${t}-submenu-title`]:{color:"inherit !important",cursor:"not-allowed"}}}},lK=e=>{let{componentCls:t,motionDurationSlow:n,motionEaseInOut:r,borderRadius:o,menuArrowSize:a,menuArrowOffset:i}=e;return{[`${t}-submenu`]:{"&-expand-icon, &-arrow":{position:"absolute",top:"50%",insetInlineEnd:e.margin,width:a,color:"currentcolor",transform:"translateY(-50%)",transition:`transform ${n} ${r}, opacity ${n}`},"&-arrow":{"&::before, &::after":{position:"absolute",width:e.calc(a).mul(.6).equal(),height:e.calc(a).mul(.15).equal(),backgroundColor:"currentcolor",borderRadius:o,transition:`background ${n} ${r},transform ${n} ${r},top ${n} ${r},color ${n} ${r}`,content:'""'},"&::before":{transform:`rotate(45deg) translateY(${(0,q.zA)(e.calc(i).mul(-1).equal())})`},"&::after":{transform:`rotate(-45deg) translateY(${(0,q.zA)(i)})`}}}}},lX=e=>{var t,n,r;let{colorPrimary:o,colorError:a,colorTextDisabled:i,colorErrorBg:l,colorText:c,colorTextDescription:s,colorBgContainer:u,colorFillAlter:d,colorFillContent:f,lineWidth:p,lineWidthBold:m,controlItemBgActive:g,colorBgTextHover:h,controlHeightLG:v,lineHeight:b,colorBgElevated:y,marginXXS:x,padding:$,fontSize:A,controlHeightSM:w,fontSizeLG:C,colorTextLightSolid:S,colorErrorHover:k}=e,E=null!=(t=e.activeBarWidth)?t:0,O=null!=(n=e.activeBarBorderWidth)?n:p,M=null!=(r=e.itemMarginInline)?r:e.marginXXS,N=new ts.q(S).setAlpha(.65).toRgbString();return{dropdownWidth:160,zIndexPopup:e.zIndexPopupBase+50,radiusItem:e.borderRadiusLG,itemBorderRadius:e.borderRadiusLG,radiusSubMenuItem:e.borderRadiusSM,subMenuItemBorderRadius:e.borderRadiusSM,colorItemText:c,itemColor:c,colorItemTextHover:c,itemHoverColor:c,colorItemTextHoverHorizontal:o,horizontalItemHoverColor:o,colorGroupTitle:s,groupTitleColor:s,colorItemTextSelected:o,itemSelectedColor:o,colorItemTextSelectedHorizontal:o,horizontalItemSelectedColor:o,colorItemBg:u,itemBg:u,colorItemBgHover:h,itemHoverBg:h,colorItemBgActive:f,itemActiveBg:g,colorSubItemBg:d,subMenuItemBg:d,colorItemBgSelected:g,itemSelectedBg:g,colorItemBgSelectedHorizontal:"transparent",horizontalItemSelectedBg:"transparent",colorActiveBarWidth:0,activeBarWidth:E,colorActiveBarHeight:m,activeBarHeight:m,colorActiveBarBorderSize:p,activeBarBorderWidth:O,colorItemTextDisabled:i,itemDisabledColor:i,colorDangerItemText:a,dangerItemColor:a,colorDangerItemTextHover:a,dangerItemHoverColor:a,colorDangerItemTextSelected:a,dangerItemSelectedColor:a,colorDangerItemBgActive:l,dangerItemActiveBg:l,colorDangerItemBgSelected:l,dangerItemSelectedBg:l,itemMarginInline:M,horizontalItemBorderRadius:0,horizontalItemHoverBg:"transparent",itemHeight:v,groupTitleLineHeight:b,collapsedWidth:2*v,popupBg:y,itemMarginBlock:x,itemPaddingInline:$,horizontalLineHeight:`${1.15*v}px`,iconSize:A,iconMarginInlineEnd:w-A,collapsedIconSize:C,groupTitleFontSize:A,darkItemDisabledColor:new ts.q(S).setAlpha(.25).toRgbString(),darkItemColor:N,darkDangerItemColor:a,darkItemBg:"#001529",darkPopupBg:"#001529",darkSubMenuItemBg:"#000c17",darkItemSelectedColor:S,darkItemSelectedBg:o,darkDangerItemSelectedBg:a,darkItemHoverBg:"transparent",darkGroupTitleColor:N,darkItemHoverColor:S,darkDangerItemHoverColor:k,darkDangerItemSelectedColor:S,darkDangerItemActiveBg:a,itemWidth:E?`calc(100% + ${O}px)`:`calc(100% - ${2*M}px)`}},lY=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:e,n=!(arguments.length>2)||void 0===arguments[2]||arguments[2];return(0,w.OF)("Menu",e=>{let{colorBgElevated:t,controlHeightLG:n,fontSize:r,darkItemColor:o,darkDangerItemColor:a,darkItemBg:i,darkSubMenuItemBg:l,darkItemSelectedColor:c,darkItemSelectedBg:s,darkDangerItemSelectedBg:u,darkItemHoverBg:d,darkGroupTitleColor:f,darkItemHoverColor:p,darkItemDisabledColor:m,darkDangerItemHoverColor:g,darkDangerItemSelectedColor:h,darkDangerItemActiveBg:v,popupBg:b,darkPopupBg:y}=e,x=e.calc(r).div(7).mul(5).equal(),$=(0,ey.oX)(e,{menuArrowSize:x,menuHorizontalHeight:e.calc(n).mul(1.15).equal(),menuArrowOffset:e.calc(x).mul(.25).equal(),menuSubMenuBg:t,calc:e.calc,popupBg:b}),A=(0,ey.oX)($,{itemColor:o,itemHoverColor:p,groupTitleColor:f,itemSelectedColor:c,itemBg:i,popupBg:y,subMenuItemBg:l,itemActiveBg:"transparent",itemSelectedBg:s,activeBarHeight:0,activeBarBorderWidth:0,itemHoverBg:d,itemDisabledColor:m,dangerItemColor:a,dangerItemHoverColor:g,dangerItemSelectedColor:h,dangerItemActiveBg:v,dangerItemSelectedBg:u,menuSubMenuBg:l,horizontalItemSelectedColor:c,horizontalItemSelectedBg:s});return[(e=>{let{antCls:t,componentCls:n,fontSize:r,motionDurationSlow:o,motionDurationMid:a,motionEaseInOut:i,paddingXS:l,padding:c,colorSplit:s,lineWidth:u,zIndexPopup:d,borderRadiusLG:f,subMenuItemBorderRadius:p,menuArrowSize:m,menuArrowOffset:g,lineType:h,groupTitleLineHeight:v,groupTitleFontSize:b}=e;return[{"":{[n]:Object.assign(Object.assign({},(0,V.t6)()),{"&-hidden":{display:"none"}})},[`${n}-submenu-hidden`]:{display:"none"}},{[n]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),(0,V.t6)()),{marginBottom:0,paddingInlineStart:0,fontSize:r,lineHeight:0,listStyle:"none",outline:"none",transition:`width ${o} cubic-bezier(0.2, 0, 0, 1) 0s`,"ul, ol":{margin:0,padding:0,listStyle:"none"},"&-overflow":{display:"flex",[`${n}-item`]:{flex:"none"}},[`${n}-item, ${n}-submenu, ${n}-submenu-title`]:{borderRadius:e.itemBorderRadius},[`${n}-item-group-title`]:{padding:`${(0,q.zA)(l)} ${(0,q.zA)(c)}`,fontSize:b,lineHeight:v,transition:`all ${o}`},[`&-horizontal ${n}-submenu`]:{transition:`border-color ${o} ${i},background ${o} ${i}`},[`${n}-submenu, ${n}-submenu-inline`]:{transition:`border-color ${o} ${i},background ${o} ${i},padding ${a} ${i}`},[`${n}-submenu ${n}-sub`]:{cursor:"initial",transition:`background ${o} ${i},padding ${o} ${i}`},[`${n}-title-content`]:{transition:`color ${o}`,"&-with-extra":{display:"inline-flex",alignItems:"center",width:"100%"},[`> ${t}-typography-ellipsis-single-line`]:{display:"inline",verticalAlign:"unset"},[`${n}-item-extra`]:{marginInlineStart:"auto",paddingInlineStart:e.padding,fontSize:e.fontSizeSM}},[`${n}-item a`]:{"&::before":{position:"absolute",inset:0,backgroundColor:"transparent",content:'""'}},[`${n}-item-divider`]:{overflow:"hidden",lineHeight:0,borderColor:s,borderStyle:h,borderWidth:0,borderTopWidth:u,marginBlock:u,padding:0,"&-dashed":{borderStyle:"dashed"}}}),lV(e)),{[`${n}-item-group`]:{[`${n}-item-group-list`]:{margin:0,padding:0,[`${n}-item, ${n}-submenu-title`]:{paddingInline:`${(0,q.zA)(e.calc(r).mul(2).equal())} ${(0,q.zA)(c)}`}}},"&-submenu":{"&-popup":{position:"absolute",zIndex:d,borderRadius:f,boxShadow:"none",transformOrigin:"0 0",[`&${n}-submenu`]:{background:"transparent"},"&::before":{position:"absolute",inset:0,zIndex:-1,width:"100%",height:"100%",opacity:0,content:'""'},[`> ${n}`]:Object.assign(Object.assign(Object.assign({borderRadius:f},lV(e)),lK(e)),{[`${n}-item, ${n}-submenu > ${n}-submenu-title`]:{borderRadius:p},[`${n}-submenu-title::after`]:{transition:`transform ${o} ${i}`}})},[` - &-placement-leftTop, - &-placement-bottomRight, - `]:{transformOrigin:"100% 0"},[` - &-placement-leftBottom, - &-placement-topRight, - `]:{transformOrigin:"100% 100%"},[` - &-placement-rightBottom, - &-placement-topLeft, - `]:{transformOrigin:"0 100%"},[` - &-placement-bottomLeft, - &-placement-rightTop, - `]:{transformOrigin:"0 0"},[` - &-placement-leftTop, - &-placement-leftBottom - `]:{paddingInlineEnd:e.paddingXS},[` - &-placement-rightTop, - &-placement-rightBottom - `]:{paddingInlineStart:e.paddingXS},[` - &-placement-topRight, - &-placement-topLeft - `]:{paddingBottom:e.paddingXS},[` - &-placement-bottomRight, - &-placement-bottomLeft - `]:{paddingTop:e.paddingXS}}}),lK(e)),{[`&-inline-collapsed ${n}-submenu-arrow, - &-inline ${n}-submenu-arrow`]:{"&::before":{transform:`rotate(-45deg) translateX(${(0,q.zA)(g)})`},"&::after":{transform:`rotate(45deg) translateX(${(0,q.zA)(e.calc(g).mul(-1).equal())})`}},[`${n}-submenu-open${n}-submenu-inline > ${n}-submenu-title > ${n}-submenu-arrow`]:{transform:`translateY(${(0,q.zA)(e.calc(m).mul(.2).mul(-1).equal())})`,"&::after":{transform:`rotate(-45deg) translateX(${(0,q.zA)(e.calc(g).mul(-1).equal())})`},"&::before":{transform:`rotate(45deg) translateX(${(0,q.zA)(g)})`}}})},{[`${t}-layout-header`]:{[n]:{lineHeight:"inherit"}}}]})($),(e=>{let{componentCls:t,motionDurationSlow:n,horizontalLineHeight:r,colorSplit:o,lineWidth:a,lineType:i,itemPaddingInline:l}=e;return{[`${t}-horizontal`]:{lineHeight:r,border:0,borderBottom:`${(0,q.zA)(a)} ${i} ${o}`,boxShadow:"none","&::after":{display:"block",clear:"both",height:0,content:'"\\20"'},[`${t}-item, ${t}-submenu`]:{position:"relative",display:"inline-block",verticalAlign:"bottom",paddingInline:l},[`> ${t}-item:hover, - > ${t}-item-active, - > ${t}-submenu ${t}-submenu-title:hover`]:{backgroundColor:"transparent"},[`${t}-item, ${t}-submenu-title`]:{transition:`border-color ${n},background ${n}`},[`${t}-submenu-arrow`]:{display:"none"}}}})($),(e=>{let{componentCls:t,iconCls:n,itemHeight:r,colorTextLightSolid:o,dropdownWidth:a,controlHeightLG:i,motionEaseOut:l,paddingXL:c,itemMarginInline:s,fontSizeLG:u,motionDurationFast:d,motionDurationSlow:f,paddingXS:p,boxShadowSecondary:m,collapsedWidth:g,collapsedIconSize:h}=e,v={height:r,lineHeight:(0,q.zA)(r),listStylePosition:"inside",listStyleType:"disc"};return[{[t]:{"&-inline, &-vertical":Object.assign({[`&${t}-root`]:{boxShadow:"none"}},lq(e))},[`${t}-submenu-popup`]:{[`${t}-vertical`]:Object.assign(Object.assign({},lq(e)),{boxShadow:m})}},{[`${t}-submenu-popup ${t}-vertical${t}-sub`]:{minWidth:a,maxHeight:`calc(100vh - ${(0,q.zA)(e.calc(i).mul(2.5).equal())})`,padding:"0",overflow:"hidden",borderInlineEnd:0,"&:not([class*='-active'])":{overflowX:"hidden",overflowY:"auto"}}},{[`${t}-inline`]:{width:"100%",[`&${t}-root`]:{[`${t}-item, ${t}-submenu-title`]:{display:"flex",alignItems:"center",transition:`border-color ${f},background ${f},padding ${d} ${l}`,[`> ${t}-title-content`]:{flex:"auto",minWidth:0,overflow:"hidden",textOverflow:"ellipsis"},"> *":{flex:"none"}}},[`${t}-sub${t}-inline`]:{padding:0,border:0,borderRadius:0,boxShadow:"none",[`& > ${t}-submenu > ${t}-submenu-title`]:v,[`& ${t}-item-group-title`]:{paddingInlineStart:c}},[`${t}-item`]:v}},{[`${t}-inline-collapsed`]:{width:g,[`&${t}-root`]:{[`${t}-item, ${t}-submenu ${t}-submenu-title`]:{[`> ${t}-inline-collapsed-noicon`]:{fontSize:u,textAlign:"center"}}},[`> ${t}-item, - > ${t}-item-group > ${t}-item-group-list > ${t}-item, - > ${t}-item-group > ${t}-item-group-list > ${t}-submenu > ${t}-submenu-title, - > ${t}-submenu > ${t}-submenu-title`]:{insetInlineStart:0,paddingInline:`calc(50% - ${(0,q.zA)(e.calc(h).div(2).equal())} - ${(0,q.zA)(s)})`,textOverflow:"clip",[` - ${t}-submenu-arrow, - ${t}-submenu-expand-icon - `]:{opacity:0},[`${t}-item-icon, ${n}`]:{margin:0,fontSize:h,lineHeight:(0,q.zA)(r),"+ span":{display:"inline-block",opacity:0}}},[`${t}-item-icon, ${n}`]:{display:"inline-block"},"&-tooltip":{pointerEvents:"none",[`${t}-item-icon, ${n}`]:{display:"none"},"a, a:hover":{color:o}},[`${t}-item-group-title`]:Object.assign(Object.assign({},V.L9),{paddingInline:p})}}]})($),lW($,"light"),lW(A,"dark"),(e=>{let{componentCls:t,menuArrowOffset:n,calc:r}=e;return{[`${t}-rtl`]:{direction:"rtl"},[`${t}-submenu-rtl`]:{transformOrigin:"100% 0"},[`${t}-rtl${t}-vertical, - ${t}-submenu-rtl ${t}-vertical`]:{[`${t}-submenu-arrow`]:{"&::before":{transform:`rotate(-45deg) translateY(${(0,q.zA)(r(n).mul(-1).equal())})`},"&::after":{transform:`rotate(45deg) translateY(${(0,q.zA)(n)})`}}}}})($),(0,lH.A)($),oX($,"slide-up"),oX($,"slide-down"),(0,nC.aB)($,"zoom-big")]},lX,{deprecatedTokens:[["colorGroupTitle","groupTitleColor"],["radiusItem","itemBorderRadius"],["radiusSubMenuItem","subMenuItemBorderRadius"],["colorItemText","itemColor"],["colorItemTextHover","itemHoverColor"],["colorItemTextHoverHorizontal","horizontalItemHoverColor"],["colorItemTextSelected","itemSelectedColor"],["colorItemTextSelectedHorizontal","horizontalItemSelectedColor"],["colorItemTextDisabled","itemDisabledColor"],["colorDangerItemText","dangerItemColor"],["colorDangerItemTextHover","dangerItemHoverColor"],["colorDangerItemTextSelected","dangerItemSelectedColor"],["colorDangerItemBgActive","dangerItemActiveBg"],["colorDangerItemBgSelected","dangerItemSelectedBg"],["colorItemBg","itemBg"],["colorItemBgHover","itemHoverBg"],["colorSubItemBg","subMenuItemBg"],["colorItemBgActive","itemActiveBg"],["colorItemBgSelectedHorizontal","horizontalItemSelectedBg"],["colorActiveBarWidth","activeBarWidth"],["colorActiveBarHeight","activeBarHeight"],["colorActiveBarBorderSize","activeBarBorderWidth"],["colorItemBgSelected","itemSelectedBg"]],injectStyle:n,unitless:{groupTitleLineHeight:!0}})(e,t)},lU=e=>{var t;let n,{popupClassName:r,icon:o,title:a,theme:i}=e,l=p.useContext(lR),{prefixCls:c,inlineCollapsed:s,theme:u}=l,d=iC();if(o){let e=p.isValidElement(a)&&"span"===a.type;n=p.createElement(p.Fragment,null,(0,W.Ob)(o,{className:h()(p.isValidElement(o)?null==(t=o.props)?void 0:t.className:"",`${c}-item-icon`)}),e?a:p.createElement("span",{className:`${c}-title-content`},a))}else n=s&&!d.length&&a&&"string"==typeof a?p.createElement("div",{className:`${c}-inline-collapsed-noicon`},a.charAt(0)):p.createElement("span",{className:`${c}-title-content`},a);let f=p.useMemo(()=>Object.assign(Object.assign({},l),{firstLevel:!1}),[l]),[m]=(0,eY.YK)("Menu");return p.createElement(lR.Provider,{value:f},p.createElement(lc,Object.assign({},(0,b.A)(e,["icon"]),{title:n,popupClassName:h()(c,r,`${c}-${i||u}`),popupStyle:Object.assign({zIndex:m},e.popupStyle)})))};var lG=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function lQ(e){return null===e||!1===e}let lZ={item:lD,submenu:lU,divider:lT},lJ=(0,p.forwardRef)((e,t)=>{var n;let r=p.useContext(lB),o=r||{},{getPrefixCls:a,getPopupContainer:i,direction:l,menu:c}=p.useContext(A.QO),s=a(),{prefixCls:u,className:d,style:f,theme:m="light",expandIcon:g,_internalDisableMenuItemTitleTooltip:v,inlineCollapsed:y,siderCollapsed:x,rootClassName:$,mode:w,selectable:C,onClick:S,overflowedIndicatorPopupClassName:k}=e,E=lG(e,["prefixCls","className","style","theme","expandIcon","_internalDisableMenuItemTitleTooltip","inlineCollapsed","siderCollapsed","rootClassName","mode","selectable","onClick","overflowedIndicatorPopupClassName"]),O=(0,b.A)(E,["collapsedWidth"]);null==(n=o.validator)||n.call(o,{mode:w});let M=(0,ea.A)(function(){var e;null==S||S.apply(void 0,arguments),null==(e=o.onClick)||e.call(o)}),N=o.mode||w,I=null!=C?C:o.selectable,j=null!=y?y:x,z={horizontal:{motionName:`${s}-slide-up`},inline:(0,tN.A)(s),other:{motionName:`${s}-zoom-big`}},R=a("menu",u||o.prefixCls),P=(0,eh.A)(R),[T,D,L]=lY(R,P,!r),B=h()(`${R}-${m}`,null==c?void 0:c.className,d),F=p.useMemo(()=>{var e,t;if("function"==typeof g||lQ(g))return g||null;if("function"==typeof o.expandIcon||lQ(o.expandIcon))return o.expandIcon||null;if("function"==typeof(null==c?void 0:c.expandIcon)||lQ(null==c?void 0:c.expandIcon))return(null==c?void 0:c.expandIcon)||null;let n=null!=(e=null!=g?g:null==o?void 0:o.expandIcon)?e:null==c?void 0:c.expandIcon;return(0,W.Ob)(n,{className:h()(`${R}-submenu-expand-icon`,p.isValidElement(n)?null==(t=n.props)?void 0:t.className:void 0)})},[g,null==o?void 0:o.expandIcon,null==c?void 0:c.expandIcon,R]),H=p.useMemo(()=>({prefixCls:R,inlineCollapsed:j||!1,direction:l,firstLevel:!0,theme:m,mode:N,disableMenuItemTitleTooltip:v}),[R,j,l,v,m]);return T(p.createElement(lB.Provider,{value:null},p.createElement(lR.Provider,{value:H},p.createElement(lv,Object.assign({getPopupContainer:i,overflowedIndicator:p.createElement(lz,null),overflowedIndicatorPopupClassName:h()(R,`${R}-${m}`,k),mode:N,selectable:I,onClick:M},O,{inlineCollapsed:j,style:Object.assign(Object.assign({},null==c?void 0:c.style),f),className:B,prefixCls:R,direction:l,defaultMotions:z,expandIcon:F,ref:t,rootClassName:h()($,D,o.rootClassName,L,P),_internalComponents:lZ})))))}),l0=(0,p.forwardRef)((e,t)=>{let n=(0,p.useRef)(null),r=p.useContext(lM);return(0,p.useImperativeHandle)(t,()=>({menu:n.current,focus:e=>{var t;null==(t=n.current)||t.focus(e)}})),p.createElement(lJ,Object.assign({ref:n},e,r))});l0.Item=lD,l0.SubMenu=lU,l0.Divider=lT,l0.ItemGroup=lf;let l1=l0,l2=(0,w.OF)("Dropdown",e=>{let{marginXXS:t,sizePopupArrow:n,paddingXXS:r,componentCls:o}=e,a=(0,ey.oX)(e,{menuCls:`${o}-menu`,dropdownArrowDistance:e.calc(n).div(2).add(t).equal(),dropdownEdgeChildPadding:r});return[(e=>{let{componentCls:t,menuCls:n,zIndexPopup:r,dropdownArrowDistance:o,sizePopupArrow:a,antCls:i,iconCls:l,motionDurationMid:c,paddingBlock:s,fontSize:u,dropdownEdgeChildPadding:d,colorTextDisabled:f,fontSizeIcon:p,controlPaddingHorizontal:m,colorBgElevated:g}=e;return[{[t]:{position:"absolute",top:-9999,left:{_skip_check_:!0,value:-9999},zIndex:r,display:"block","&::before":{position:"absolute",insetBlock:e.calc(a).div(2).sub(o).equal(),zIndex:-9999,opacity:1e-4,content:'""'},"&-menu-vertical":{maxHeight:"100vh",overflowY:"auto"},[`&-trigger${i}-btn`]:{[`& > ${l}-down, & > ${i}-btn-icon > ${l}-down`]:{fontSize:p}},[`${t}-wrap`]:{position:"relative",[`${i}-btn > ${l}-down`]:{fontSize:p},[`${l}-down::before`]:{transition:`transform ${c}`}},[`${t}-wrap-open`]:{[`${l}-down::before`]:{transform:"rotate(180deg)"}},[` - &-hidden, - &-menu-hidden, - &-menu-submenu-hidden - `]:{display:"none"},[`&${i}-slide-down-enter${i}-slide-down-enter-active${t}-placement-bottomLeft, - &${i}-slide-down-appear${i}-slide-down-appear-active${t}-placement-bottomLeft, - &${i}-slide-down-enter${i}-slide-down-enter-active${t}-placement-bottom, - &${i}-slide-down-appear${i}-slide-down-appear-active${t}-placement-bottom, - &${i}-slide-down-enter${i}-slide-down-enter-active${t}-placement-bottomRight, - &${i}-slide-down-appear${i}-slide-down-appear-active${t}-placement-bottomRight`]:{animationName:o_},[`&${i}-slide-up-enter${i}-slide-up-enter-active${t}-placement-topLeft, - &${i}-slide-up-appear${i}-slide-up-appear-active${t}-placement-topLeft, - &${i}-slide-up-enter${i}-slide-up-enter-active${t}-placement-top, - &${i}-slide-up-appear${i}-slide-up-appear-active${t}-placement-top, - &${i}-slide-up-enter${i}-slide-up-enter-active${t}-placement-topRight, - &${i}-slide-up-appear${i}-slide-up-appear-active${t}-placement-topRight`]:{animationName:oq},[`&${i}-slide-down-leave${i}-slide-down-leave-active${t}-placement-bottomLeft, - &${i}-slide-down-leave${i}-slide-down-leave-active${t}-placement-bottom, - &${i}-slide-down-leave${i}-slide-down-leave-active${t}-placement-bottomRight`]:{animationName:oW},[`&${i}-slide-up-leave${i}-slide-up-leave-active${t}-placement-topLeft, - &${i}-slide-up-leave${i}-slide-up-leave-active${t}-placement-top, - &${i}-slide-up-leave${i}-slide-up-leave-active${t}-placement-topRight`]:{animationName:oV}}},(0,aI.Ay)(e,g,{arrowPlacement:{top:!0,bottom:!0}}),{[`${t} ${n}`]:{position:"relative",margin:0},[`${n}-submenu-popup`]:{position:"absolute",zIndex:r,background:"transparent",boxShadow:"none",transformOrigin:"0 0","ul, li":{listStyle:"none",margin:0}},[`${t}, ${t}-menu-submenu`]:Object.assign(Object.assign({},(0,V.dF)(e)),{[n]:Object.assign(Object.assign({padding:d,listStyleType:"none",backgroundColor:g,backgroundClip:"padding-box",borderRadius:e.borderRadiusLG,outline:"none",boxShadow:e.boxShadowSecondary},(0,V.K8)(e)),{"&:empty":{padding:0,boxShadow:"none"},[`${n}-item-group-title`]:{padding:`${(0,q.zA)(s)} ${(0,q.zA)(m)}`,color:e.colorTextDescription,transition:`all ${c}`},[`${n}-item`]:{position:"relative",display:"flex",alignItems:"center"},[`${n}-item-icon`]:{minWidth:u,marginInlineEnd:e.marginXS,fontSize:e.fontSizeSM},[`${n}-title-content`]:{flex:"auto","&-with-extra":{display:"inline-flex",alignItems:"center",width:"100%"},"> a":{color:"inherit",transition:`all ${c}`,"&:hover":{color:"inherit"},"&::after":{position:"absolute",inset:0,content:'""'}},[`${n}-item-extra`]:{paddingInlineStart:e.padding,marginInlineStart:"auto",fontSize:e.fontSizeSM,color:e.colorTextDescription}},[`${n}-item, ${n}-submenu-title`]:Object.assign(Object.assign({display:"flex",margin:0,padding:`${(0,q.zA)(s)} ${(0,q.zA)(m)}`,color:e.colorText,fontWeight:"normal",fontSize:u,lineHeight:e.lineHeight,cursor:"pointer",transition:`all ${c}`,borderRadius:e.borderRadiusSM,"&:hover, &-active":{backgroundColor:e.controlItemBgHover}},(0,V.K8)(e)),{"&-selected":{color:e.colorPrimary,backgroundColor:e.controlItemBgActive,"&:hover, &-active":{backgroundColor:e.controlItemBgActiveHover}},"&-disabled":{color:f,cursor:"not-allowed","&:hover":{color:f,backgroundColor:g,cursor:"not-allowed"},a:{pointerEvents:"none"}},"&-divider":{height:1,margin:`${(0,q.zA)(e.marginXXS)} 0`,overflow:"hidden",lineHeight:0,backgroundColor:e.colorSplit},[`${t}-menu-submenu-expand-icon`]:{position:"absolute",insetInlineEnd:e.paddingXS,[`${t}-menu-submenu-arrow-icon`]:{marginInlineEnd:"0 !important",color:e.colorTextDescription,fontSize:p,fontStyle:"normal"}}}),[`${n}-item-group-list`]:{margin:`0 ${(0,q.zA)(e.marginXS)}`,padding:0,listStyle:"none"},[`${n}-submenu-title`]:{paddingInlineEnd:e.calc(m).add(e.fontSizeSM).equal()},[`${n}-submenu-vertical`]:{position:"relative"},[`${n}-submenu${n}-submenu-disabled ${t}-menu-submenu-title`]:{[`&, ${t}-menu-submenu-arrow-icon`]:{color:f,backgroundColor:g,cursor:"not-allowed"}},[`${n}-submenu-selected ${t}-menu-submenu-title`]:{color:e.colorPrimary}})})},[oX(e,"slide-up"),oX(e,"slide-down"),o1(e,"move-up"),o1(e,"move-down"),(0,nC.aB)(e,"zoom-big")]]})(a),(e=>{let{componentCls:t,menuCls:n,colorError:r,colorTextLightSolid:o}=e,a=`${n}-item`;return{[`${t}, ${t}-menu-submenu`]:{[`${n} ${a}`]:{[`&${a}-danger:not(${a}-disabled)`]:{color:r,"&:hover":{color:o,backgroundColor:r}}}}}})(a)]},e=>Object.assign(Object.assign({zIndexPopup:e.zIndexPopupBase+50,paddingBlock:(e.controlHeight-e.fontSize*e.lineHeight)/2},(0,aI.Ke)({contentRadius:e.borderRadiusLG,limitVerticalRadius:!0})),(0,aj.n)(e)),{resetStyle:!1}),l4=e=>{var t;let{menu:n,arrow:r,prefixCls:o,children:a,trigger:i,disabled:l,dropdownRender:c,getPopupContainer:s,overlayClassName:u,rootClassName:d,overlayStyle:f,open:m,onOpenChange:g,visible:v,onVisibleChange:y,mouseEnterDelay:x=.15,mouseLeaveDelay:$=.1,autoAdjustOverflow:w=!0,placement:C="",overlay:S,transitionName:k}=e,{getPopupContainer:E,getPrefixCls:O,direction:M,dropdown:N}=p.useContext(A.QO);(0,ek.rJ)("Dropdown");let I=p.useMemo(()=>{let e=O();return void 0!==k?k:C.includes("top")?`${e}-slide-down`:`${e}-slide-up`},[O,C,k]),j=p.useMemo(()=>C?C.includes("Center")?C.slice(0,C.indexOf("Center")):C:"rtl"===M?"bottomRight":"bottomLeft",[C,M]),z=O("dropdown",o),R=(0,eh.A)(z),[P,T,D]=l2(z,R),[,L]=(0,tb.Ay)(),B=p.Children.only("object"!=typeof a&&"function"!=typeof a||null===a?p.createElement("span",null,a):a),F=(0,W.Ob)(B,{className:h()(`${z}-trigger`,{[`${z}-rtl`]:"rtl"===M},B.props.className),disabled:null!=(t=B.props.disabled)?t:l}),H=l?[]:i,_=!!(null==H?void 0:H.includes("contextMenu")),[q,V]=(0,rs.A)(!1,{value:null!=m?m:v}),K=(0,ea.A)(e=>{null==g||g(e,{source:"trigger"}),null==y||y(e),V(e)}),X=h()(u,d,T,D,R,null==N?void 0:N.className,{[`${z}-rtl`]:"rtl"===M}),Y=(0,im.A)({arrowPointAtCenter:"object"==typeof r&&r.pointAtCenter,autoAdjustOverflow:w,offset:L.marginXXS,arrowWidth:r?L.sizePopupArrow:0,borderRadius:L.borderRadius}),U=p.useCallback(()=>{null!=n&&n.selectable&&null!=n&&n.multiple||(null==g||g(!1,{source:"menu"}),V(!1))},[null==n?void 0:n.selectable,null==n?void 0:n.multiple]),[G,Q]=(0,eY.YK)("Dropdown",null==f?void 0:f.zIndex),Z=p.createElement(ip,Object.assign({alignPoint:_},(0,b.A)(e,["rootClassName"]),{mouseEnterDelay:x,mouseLeaveDelay:$,visible:q,builtinPlacements:Y,arrow:!!r,overlayClassName:X,prefixCls:z,getPopupContainer:s||E,transitionName:I,trigger:H,overlay:()=>{let e;return e=(null==n?void 0:n.items)?p.createElement(l1,Object.assign({},n)):"function"==typeof S?S():S,c&&(e=c(e)),e=p.Children.only("string"==typeof e?p.createElement("span",null,e):e),p.createElement(lF,{prefixCls:`${z}-menu`,rootClassName:h()(D,R),expandIcon:p.createElement("span",{className:`${z}-menu-submenu-arrow`},p.createElement(io.A,{className:`${z}-menu-submenu-arrow-icon`})),mode:"vertical",selectable:!1,onClick:U,validator:e=>{let{mode:t}=e}},e)},placement:j,onVisibleChange:K,overlayStyle:Object.assign(Object.assign(Object.assign({},null==N?void 0:N.style),f),{zIndex:G})}),F);return G&&(Z=p.createElement(t7.A.Provider,{value:Q},Z)),P(Z)},l3=rd(l4,"dropdown",e=>e,function(e){return Object.assign(Object.assign({},e),{align:{overflow:{adjustX:!1,adjustY:!1}}})});l4._InternalPanelDoNotUseOrYouWillBeFired=e=>p.createElement(l3,Object.assign({},e),p.createElement("span",null));let l6=e=>{let{children:t}=e,{getPrefixCls:n}=p.useContext(A.QO),r=n("breadcrumb");return p.createElement("li",{className:`${r}-separator`,"aria-hidden":"true"},""===t?t:t||"/")};l6.__ANT_BREADCRUMB_SEPARATOR=!0;var l8=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function l5(e,t,n,r){if(null==n)return null;let{className:o,onClick:a}=t,i=l8(t,["className","onClick"]),l=Object.assign(Object.assign({},(0,H.A)(i,{data:!0,aria:!0})),{onClick:a});return void 0!==r?p.createElement("a",Object.assign({},l,{className:h()(`${e}-link`,o),href:r}),n):p.createElement("span",Object.assign({},l,{className:h()(`${e}-link`,o)}),n)}var l7=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let l9=e=>{let{prefixCls:t,separator:n="/",children:r,menu:o,overlay:a,dropdownProps:i,href:l}=e,c=(e=>{if(o||a){let n=Object.assign({},i);if(o){let e=o||{},{items:t}=e;n.menu=Object.assign(Object.assign({},l7(e,["items"])),{items:null==t?void 0:t.map((e,t)=>{var{key:n,title:r,label:o,path:a}=e,i=l7(e,["key","title","label","path"]);let c=null!=o?o:r;return a&&(c=p.createElement("a",{href:`${l}${a}`},c)),Object.assign(Object.assign({},i),{key:null!=n?n:t,label:c})})})}else a&&(n.overlay=a);return p.createElement(l4,Object.assign({placement:"bottom"},n),p.createElement("span",{className:`${t}-overlay-link`},e,p.createElement(ao,null)))}return e})(r);return null!=c?p.createElement(p.Fragment,null,p.createElement("li",null,c),n&&p.createElement(l6,null,n)):null},ce=e=>{let{prefixCls:t,children:n,href:r}=e,o=l7(e,["prefixCls","children","href"]),{getPrefixCls:a}=p.useContext(A.QO),i=a("breadcrumb",t);return p.createElement(l9,Object.assign({},o,{prefixCls:i}),l5(i,o,n,r))};ce.__ANT_BREADCRUMB_ITEM=!0;let ct=(0,w.OF)("Breadcrumb",e=>(e=>{let{componentCls:t,iconCls:n,calc:r}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{color:e.itemColor,fontSize:e.fontSize,[n]:{fontSize:e.iconFontSize},ol:{display:"flex",flexWrap:"wrap",margin:0,padding:0,listStyle:"none"},a:Object.assign({color:e.linkColor,transition:`color ${e.motionDurationMid}`,padding:`0 ${(0,q.zA)(e.paddingXXS)}`,borderRadius:e.borderRadiusSM,height:e.fontHeight,display:"inline-block",marginInline:r(e.marginXXS).mul(-1).equal(),"&:hover":{color:e.linkHoverColor,backgroundColor:e.colorBgTextHover}},(0,V.K8)(e)),"li:last-child":{color:e.lastItemColor},[`${t}-separator`]:{marginInline:e.separatorMargin,color:e.separatorColor},[`${t}-link`]:{[` - > ${n} + span, - > ${n} + a - `]:{marginInlineStart:e.marginXXS}},[`${t}-overlay-link`]:{borderRadius:e.borderRadiusSM,height:e.fontHeight,display:"inline-block",padding:`0 ${(0,q.zA)(e.paddingXXS)}`,marginInline:r(e.marginXXS).mul(-1).equal(),[`> ${n}`]:{marginInlineStart:e.marginXXS,fontSize:e.fontSizeIcon},"&:hover":{color:e.linkHoverColor,backgroundColor:e.colorBgTextHover,a:{color:e.linkHoverColor}},a:{"&:hover":{backgroundColor:"transparent"}}},[`&${e.componentCls}-rtl`]:{direction:"rtl"}})}})((0,ey.oX)(e,{})),e=>({itemColor:e.colorTextDescription,lastItemColor:e.colorText,iconFontSize:e.fontSize,linkColor:e.colorTextDescription,linkHoverColor:e.colorText,separatorColor:e.colorTextDescription,separatorMargin:e.marginXS}));var cn=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function cr(e){let{breadcrumbName:t,children:n}=e,r=Object.assign({title:t},cn(e,["breadcrumbName","children"]));return n&&(r.menu={items:n.map(e=>{var{breadcrumbName:t}=e;return Object.assign(Object.assign({},cn(e,["breadcrumbName"])),{title:t})})}),r}var co=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let ca=e=>{let t,{prefixCls:n,separator:r="/",style:o,className:a,rootClassName:i,routes:l,items:c,children:s,itemRender:u,params:d={}}=e,f=co(e,["prefixCls","separator","style","className","rootClassName","routes","items","children","itemRender","params"]),{getPrefixCls:m,direction:g,breadcrumb:v}=p.useContext(A.QO),b=m("breadcrumb",n),[y,x,$]=ct(b),w=(0,p.useMemo)(()=>c||(l?l.map(cr):null),[c,l]),C=(e,t,n,r,o)=>{if(u)return u(e,t,n,r);let a=function(e,t){if(void 0===e.title||null===e.title)return null;let n=Object.keys(t).join("|");return"object"==typeof e.title?e.title:String(e.title).replace(RegExp(`:(${n})`,"g"),(e,n)=>t[n]||e)}(e,t);return l5(b,e,a,o)};if(w&&w.length>0){let e=[],n=c||l;t=w.map((t,o)=>{let{path:a,key:i,type:l,menu:c,overlay:s,onClick:u,className:f,separator:m,dropdownProps:g}=t,h=((e,t)=>{if(void 0===t)return t;let n=(t||"").replace(/^\//,"");return Object.keys(e).forEach(t=>{n=n.replace(`:${t}`,e[t])}),n})(d,a);void 0!==h&&e.push(h);let v=null!=i?i:o;if("separator"===l)return p.createElement(l6,{key:v},m);let y={},x=o===w.length-1;c?y.menu=c:s&&(y.overlay=s);let{href:$}=t;return e.length&&void 0!==h&&($=`#/${e.join("/")}`),p.createElement(l9,Object.assign({key:v},y,(0,H.A)(t,{data:!0,aria:!0}),{className:f,dropdownProps:g,href:$,separator:x?"":r,onClick:u,prefixCls:b}),C(t,d,n,e,$))})}else if(s){let e=(0,rc.A)(s).length;t=(0,rc.A)(s).map((t,n)=>{if(!t)return t;let o=n===e-1;return(0,W.Ob)(t,{separator:o?"":r,key:n})})}let S=h()(b,null==v?void 0:v.className,{[`${b}-rtl`]:"rtl"===g},a,i,x,$),k=Object.assign(Object.assign({},null==v?void 0:v.style),o);return y(p.createElement("nav",Object.assign({className:S,style:k},f),p.createElement("ol",null,t)))};ca.Item=ce,ca.Separator=l6;let ci=ca;var cl=n(74353),cc=n.n(cl),cs=n(46986),cu=n.n(cs),cd=n(21840),cf=n.n(cd),cp=n(8134),cm=n.n(cp),cg=n(28623),ch=n.n(cg),cv=n(97375),cb=n.n(cv),cy=n(90445),cx=n.n(cy);cc().extend(cx()),cc().extend(cb()),cc().extend(cu()),cc().extend(cf()),cc().extend(cm()),cc().extend(ch()),cc().extend(function(e,t){var n=t.prototype,r=n.format;n.format=function(e){var t=(e||"").replace("Wo","wo");return r.bind(this)(t)}});var c$={bn_BD:"bn-bd",by_BY:"be",en_GB:"en-gb",en_US:"en",fr_BE:"fr",fr_CA:"fr-ca",hy_AM:"hy-am",kmr_IQ:"ku",nl_BE:"nl-be",pt_BR:"pt-br",zh_CN:"zh-cn",zh_HK:"zh-hk",zh_TW:"zh-tw"},cA=function(e){return c$[e]||e.split("_")[0]},cw=function(){};let cC={getNow:function(){var e=cc()();return"function"==typeof e.tz?e.tz():e},getFixedDate:function(e){return cc()(e,["YYYY-M-DD","YYYY-MM-DD"])},getEndDate:function(e){return e.endOf("month")},getWeekDay:function(e){var t=e.locale("en");return t.weekday()+t.localeData().firstDayOfWeek()},getYear:function(e){return e.year()},getMonth:function(e){return e.month()},getDate:function(e){return e.date()},getHour:function(e){return e.hour()},getMinute:function(e){return e.minute()},getSecond:function(e){return e.second()},getMillisecond:function(e){return e.millisecond()},addYear:function(e,t){return e.add(t,"year")},addMonth:function(e,t){return e.add(t,"month")},addDate:function(e,t){return e.add(t,"day")},setYear:function(e,t){return e.year(t)},setMonth:function(e,t){return e.month(t)},setDate:function(e,t){return e.date(t)},setHour:function(e,t){return e.hour(t)},setMinute:function(e,t){return e.minute(t)},setSecond:function(e,t){return e.second(t)},setMillisecond:function(e,t){return e.millisecond(t)},isAfter:function(e,t){return e.isAfter(t)},isValidate:function(e){return e.isValid()},locale:{getWeekFirstDay:function(e){return cc()().locale(cA(e)).localeData().firstDayOfWeek()},getWeekFirstDate:function(e,t){return t.locale(cA(e)).weekday(0)},getWeek:function(e,t){return t.locale(cA(e)).week()},getShortWeekDays:function(e){return cc()().locale(cA(e)).localeData().weekdaysMin()},getShortMonths:function(e){return cc()().locale(cA(e)).localeData().monthsShort()},format:function(e,t,n){return t.locale(cA(e)).format(n)},parse:function(e,t,n){for(var r=cA(e),o=0;o2&&void 0!==arguments[2]?arguments[2]:"0",r=String(e);r.length2&&void 0!==arguments[2]?arguments[2]:[],r=p.useState([!1,!1]),o=(0,eE.A)(r,2),a=o[0],i=o[1];return[p.useMemo(function(){return a.map(function(r,o){if(r)return!0;var a=e[o];return!!a&&!!(!n[o]&&!a||a&&t(a,{activeIndex:o}))})},[e,a,t,n]),function(e,t){i(function(n){return cj(n,t,e)})}]}function cB(e,t,n,r,o){var a="",i=[];return e&&i.push(o?"hh":"HH"),t&&i.push("mm"),n&&i.push("ss"),a=i.join(":"),r&&(a+=".SSS"),o&&(a+=" A"),a}function cF(e,t){var n=t.showHour,r=t.showMinute,o=t.showSecond,a=t.showMillisecond,i=t.use12Hours;return m().useMemo(function(){var t,l,c,s,u,d,f,p,m,g,h,v,b;return t=e.fieldDateTimeFormat,l=e.fieldDateFormat,c=e.fieldTimeFormat,s=e.fieldMonthFormat,u=e.fieldYearFormat,d=e.fieldWeekFormat,f=e.fieldQuarterFormat,p=e.yearFormat,m=e.cellYearFormat,g=e.cellQuarterFormat,h=e.dayFormat,v=e.cellDateFormat,b=cB(n,r,o,a,i),(0,eM.A)((0,eM.A)({},e),{},{fieldDateTimeFormat:t||"YYYY-MM-DD ".concat(b),fieldDateFormat:l||"YYYY-MM-DD",fieldTimeFormat:c||b,fieldMonthFormat:s||"YYYY-MM",fieldYearFormat:u||"YYYY",fieldWeekFormat:d||"gggg-wo",fieldQuarterFormat:f||"YYYY-[Q]Q",yearFormat:p||"YYYY",cellYearFormat:m||"YYYY",cellQuarterFormat:g||"[Q]Q",cellDateFormat:v||h||"D"})},[e,n,r,o,a,i])}function cH(e,t,n){return null!=n?n:t.some(function(t){return e.includes(t)})}var c_=["showNow","showHour","showMinute","showSecond","showMillisecond","use12Hours","hourStep","minuteStep","secondStep","millisecondStep","hideDisabledOptions","defaultValue","disabledHours","disabledMinutes","disabledSeconds","disabledMilliseconds","disabledTime","changeOnScroll","defaultOpenValue"];function cW(e,t,n,r){return[e,t,n,r].some(function(e){return void 0!==e})}function cq(e,t,n,r,o){var a=t,i=n,l=r;if(e||a||i||l||o){if(e){var c,s,u,d=[a,i,l].some(function(e){return!1===e}),f=[a,i,l].some(function(e){return!0===e}),p=!!d||!f;a=null!=(c=a)?c:p,i=null!=(s=i)?s:p,l=null!=(u=l)?u:p}}else a=!0,i=!0,l=!0;return[a,i,l,o]}function cV(e){var t,n,r,o,a=e.showTime,i=(t=cz(e,c_),n=e.format,r=e.picker,o=null,n&&(Array.isArray(o=n)&&(o=o[0]),o="object"===(0,ez.A)(o)?o.format:o),"time"===r&&(t.format=o),[t,o]),l=(0,eE.A)(i,2),c=l[0],s=l[1],u=a&&"object"===(0,ez.A)(a)?a:{},d=(0,eM.A)((0,eM.A)({defaultOpenValue:u.defaultOpenValue||u.defaultValue},c),u),f=d.showMillisecond,p=d.showHour,m=d.showMinute,g=d.showSecond,h=cq(cW(p,m,g,f),p,m,g,f),v=(0,eE.A)(h,3);return p=v[0],m=v[1],g=v[2],[d,(0,eM.A)((0,eM.A)({},d),{},{showHour:p,showMinute:m,showSecond:g,showMillisecond:f}),d.format,s]}function cK(e,t,n,r,o){var a="time"===e;if("datetime"===e||a){for(var i=cR(e,o,null),l=[t,n],c=0;c1&&void 0!==arguments[1]&&arguments[1];return p.useMemo(function(){var n=e?cI(e):e;return t&&n&&(n[1]=n[1]||n[0]),n},[e,t])}function c7(e,t){var n=e.generateConfig,r=e.locale,o=e.picker,a=void 0===o?"date":o,i=e.prefixCls,l=void 0===i?"rc-picker":i,c=e.styles,s=void 0===c?{}:c,u=e.classNames,d=void 0===u?{}:u,f=e.order,m=void 0===f||f,g=e.components,h=void 0===g?{}:g,v=e.inputRender,b=e.allowClear,y=e.clearIcon,x=e.needConfirm,$=e.multiple,A=e.format,w=e.inputReadOnly,C=e.disabledDate,S=e.minDate,k=e.maxDate,E=e.showTime,O=e.value,M=e.defaultValue,N=e.pickerValue,I=e.defaultPickerValue,j=c5(O),z=c5(M),R=c5(N),P=c5(I),T="date"===a&&E?"datetime":a,D="time"===T||"datetime"===T,L=D||$,B=null!=x?x:D,F=cV(e),H=(0,eE.A)(F,4),_=H[0],W=H[1],q=H[2],V=H[3],K=cF(r,W),X=p.useMemo(function(){return cK(T,q,V,_,K)},[T,q,V,_,K]),Y=p.useMemo(function(){return(0,eM.A)((0,eM.A)({},e),{},{prefixCls:l,locale:K,picker:a,styles:s,classNames:d,order:m,components:(0,eM.A)({input:v},h),clearIcon:!1===b?null:(b&&"object"===(0,ez.A)(b)?b:{}).clearIcon||y||p.createElement("span",{className:"".concat(l,"-clear-btn")}),showTime:X,value:j,defaultValue:z,pickerValue:R,defaultPickerValue:P},null==t?void 0:t())},[e]),U=p.useMemo(function(){var e=cI(cR(T,K,A)),t=e[0],n="object"===(0,ez.A)(t)&&"mask"===t.type?t.format:null;return[e.map(function(e){return"string"==typeof e||"function"==typeof e?e:e.format}),n]},[T,K,A]),G=(0,eE.A)(U,2),Q=G[0],Z=G[1],J="function"==typeof Q[0]||!!$||w,ee=(0,e_._q)(function(e,t){return!!(C&&C(e,t)||S&&n.isAfter(S,e)&&!c2(n,r,S,e,t.type)||k&&n.isAfter(e,k)&&!c2(n,r,k,e,t.type))}),et=(0,e_._q)(function(e,t){var r=(0,eM.A)({type:a},t);if(delete r.activeIndex,!n.isValidate(e)||ee&&ee(e,r))return!0;if(("date"===a||"time"===a)&&X){var o,i=t&&1===t.activeIndex?"end":"start",l=(null==(o=X.disabledTime)?void 0:o.call(X,e,i,{from:r.from}))||{},c=l.disabledHours,s=l.disabledMinutes,u=l.disabledSeconds,d=l.disabledMilliseconds,f=X.disabledHours,p=X.disabledMinutes,m=X.disabledSeconds,g=c||f,h=s||p,v=u||m,b=n.getHour(e),y=n.getMinute(e),x=n.getSecond(e),$=n.getMillisecond(e);if(g&&g().includes(b)||h&&h(b).includes(y)||v&&v(b,y).includes(x)||d&&d(b,y,x).includes($))return!0}return!1});return[p.useMemo(function(){return(0,eM.A)((0,eM.A)({},Y),{},{needConfirm:B,inputReadOnly:J,disabledDate:ee})},[Y,B,J,ee]),T,L,Q,Z,et]}function c9(e,t){var n,r,o,a,i,l,c,s,u,d,f,p=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[],g=arguments.length>3?arguments[3]:void 0,h=(n=!p.every(function(e){return e})&&e,r=t||!1,o=(0,e_.vz)(r,{value:n}),i=(a=(0,eE.A)(o,2))[0],l=a[1],c=m().useRef(n),s=m().useRef(),u=function(){x.A.cancel(s.current)},d=(0,e_._q)(function(){l(c.current),g&&i!==c.current&&g(c.current)}),f=(0,e_._q)(function(e,t){u(),c.current=e,e||t?d():s.current=(0,x.A)(d)}),m().useEffect(function(){return u},[]),[i,f]),v=(0,eE.A)(h,2),b=v[0],y=v[1];return[b,function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};(!t.inherit||b)&&y(e,t.force)}]}function se(e){var t=p.useRef();return p.useImperativeHandle(e,function(){var e;return{nativeElement:null==(e=t.current)?void 0:e.nativeElement,focus:function(e){var n;null==(n=t.current)||n.focus(e)},blur:function(){var e;null==(e=t.current)||e.blur()}}}),t}function st(e,t){return p.useMemo(function(){return e||(t?((0,tJ.Ay)(!1,"`ranges` is deprecated. Please use `presets` instead."),Object.entries(t).map(function(e){var t=(0,eE.A)(e,2);return{label:t[0],value:t[1]}})):[])},[e,t])}function sn(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,r=p.useRef(t);r.current=t,(0,rf.o)(function(){if(e)r.current(e);else{var t=(0,x.A)(function(){r.current(e)},n);return function(){x.A.cancel(t)}}},[e])}function sr(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=p.useState(0),o=(0,eE.A)(r,2),a=o[0],i=o[1],l=p.useState(!1),c=(0,eE.A)(l,2),s=c[0],u=c[1],d=p.useRef([]),f=p.useRef(null);return sn(s||n,function(){s||(d.current=[])}),p.useEffect(function(){s&&d.current.push(a)},[s,a]),[s,function(e){u(e)},function(e){return e&&(f.current=e),f.current},a,i,function(n){var r=d.current,o=new Set(r.filter(function(e){return n[e]||t[e]})),a=+(0===r[r.length-1]);return o.size>=2||e[a]?null:a},d.current]}function so(e,t,n,r){switch(t){case"date":case"week":return e.addMonth(n,r);case"month":case"quarter":return e.addYear(n,r);case"year":return e.addYear(n,10*r);case"decade":return e.addYear(n,100*r);default:return n}}var sa=[];function si(e,t,n,r,o,a,i,l){var c=arguments.length>8&&void 0!==arguments[8]?arguments[8]:sa,s=arguments.length>9&&void 0!==arguments[9]?arguments[9]:sa,u=arguments.length>10&&void 0!==arguments[10]?arguments[10]:sa,d=arguments.length>11?arguments[11]:void 0,f=arguments.length>12?arguments[12]:void 0,m=arguments.length>13?arguments[13]:void 0,g="time"===i,h=a||0,v=function(t){var r=e.getNow();return g&&(r=c8(e,r)),c[t]||n[t]||r},b=(0,eE.A)(s,2),y=b[0],x=b[1],$=(0,e_.vz)(function(){return v(0)},{value:y}),A=(0,eE.A)($,2),w=A[0],C=A[1],S=(0,e_.vz)(function(){return v(1)},{value:x}),k=(0,eE.A)(S,2),E=k[0],O=k[1],M=p.useMemo(function(){var t=[w,E][h];return g?t:c8(e,t,u[h])},[g,w,E,h,e,u]),N=function(n){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"panel";(0,[C,O][h])(n);var a=[w,E];a[h]=n,!d||c2(e,t,w,a[0],i)&&c2(e,t,E,a[1],i)||d(a,{source:o,range:1===h?"end":"start",mode:r})},I=function(n,r){if(l){var o={date:"month",week:"month",month:"year",quarter:"year"}[i];if(o&&!c2(e,t,n,r,o)||"year"===i&&n&&Math.floor(e.getYear(n)/10)!==Math.floor(e.getYear(r)/10))return so(e,i,r,-1)}return r},j=p.useRef(null);return(0,rf.A)(function(){if(o&&!c[h]){var t=g?null:e.getNow();if(null!==j.current&&j.current!==h?t=[w,E][1^h]:n[h]?t=0===h?n[0]:I(n[0],n[1]):n[1^h]&&(t=n[1^h]),t){f&&e.isAfter(f,t)&&(t=f);var r=l?so(e,i,t,1):t;m&&e.isAfter(r,m)&&(t=l?so(e,i,m,-1):m),N(t,"reset")}}},[o,h,n[h]]),p.useEffect(function(){o?j.current=h:j.current=null},[o,h]),(0,rf.A)(function(){o&&c&&c[h]&&N(c[h],"reset")},[o,h]),[M,N]}function sl(e,t){var n=p.useRef(e),r=p.useState({}),o=(0,eE.A)(r,2)[1],a=function(e){return e&&void 0!==t?t:n.current};return[a,function(e){n.current=e,o({})},a(!0)]}var sc=[];function ss(e,t,n){return[function(r){return r.map(function(r){return c6(r,{generateConfig:e,locale:t,format:n[0]})})},function(t,n){for(var r=Math.max(t.length,n.length),o=-1,a=0;a2&&void 0!==arguments[2]?arguments[2]:1,r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:[],a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:2,i=[],l=n>=1?0|n:1,c=e;c<=t;c+=l){var s=o.includes(c);s&&r||i.push({label:cN(c,a),value:c,disabled:s})}return i}function sh(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2?arguments[2]:void 0,r=t||{},o=r.use12Hours,a=r.hourStep,i=void 0===a?1:a,l=r.minuteStep,c=void 0===l?1:l,s=r.secondStep,u=void 0===s?1:s,d=r.millisecondStep,f=void 0===d?100:d,m=r.hideDisabledOptions,g=r.disabledTime,h=r.disabledHours,v=r.disabledMinutes,b=r.disabledSeconds,x=p.useMemo(function(){return n||e.getNow()},[n,e]),$=p.useCallback(function(e){var t=(null==g?void 0:g(e))||{};return[t.disabledHours||h||sm,t.disabledMinutes||v||sm,t.disabledSeconds||b||sm,t.disabledMilliseconds||sm]},[g,h,v,b]),A=p.useMemo(function(){return $(x)},[x,$]),w=(0,eE.A)(A,4),C=w[0],S=w[1],k=w[2],E=w[3],O=p.useCallback(function(e,t,n,r){var a=sg(0,23,i,m,e());return[o?a.map(function(e){return(0,eM.A)((0,eM.A)({},e),{},{label:cN(e.value%12||12,2)})}):a,function(e){return sg(0,59,c,m,t(e))},function(e,t){return sg(0,59,u,m,n(e,t))},function(e,t,n){return sg(0,999,f,m,r(e,t,n),3)}]},[m,i,o,f,c,u]),M=p.useMemo(function(){return O(C,S,k,E)},[O,C,S,k,E]),N=(0,eE.A)(M,4),I=N[0],j=N[1],z=N[2],R=N[3];return[function(t,n){var r=function(){return I},o=j,a=z,i=R;if(n){var l=$(n),c=(0,eE.A)(l,4),s=O(c[0],c[1],c[2],c[3]),u=(0,eE.A)(s,4),d=u[0],f=u[1],p=u[2],m=u[3];r=function(){return d},o=f,a=p,i=m}return function(e,t,n,r,o,a){var i=e;function l(e,t,n){var r=a[e](i),o=n.find(function(e){return e.value===r});if(!o||o.disabled){var l=n.filter(function(e){return!e.disabled}),c=(0,y.A)(l).reverse().find(function(e){return e.value<=r})||l[0];c&&(r=c.value,i=a[t](i,r))}return r}var c=l("getHour","setHour",t()),s=l("getMinute","setMinute",n(c)),u=l("getSecond","setSecond",r(c,s));return l("getMillisecond","setMillisecond",o(c,s,u)),i}(t,r,o,a,i,e)},I,j,z,R]}function sv(e){var t=e.mode,n=e.internalMode,r=e.renderExtraFooter,o=e.showNow,a=e.showTime,i=e.onSubmit,l=e.onNow,c=e.invalid,s=e.needConfirm,u=e.generateConfig,d=e.disabledDate,f=p.useContext(cE),m=f.prefixCls,g=f.locale,v=f.button,b=u.getNow(),y=sh(u,a,b),x=(0,eE.A)(y,1)[0],$=null==r?void 0:r(t),A=d(b,{type:t}),w="".concat(m,"-now"),C="".concat(w,"-btn"),S=o&&p.createElement("li",{className:w},p.createElement("a",{className:h()(C,A&&"".concat(C,"-disabled")),"aria-disabled":A,onClick:function(){A||l(x(b))}},"date"===n?g.today:g.now)),k=s&&p.createElement("li",{className:"".concat(m,"-ok")},p.createElement(void 0===v?"button":v,{disabled:c,onClick:i},g.ok)),E=(S||k)&&p.createElement("ul",{className:"".concat(m,"-ranges")},S,k);return $||E?p.createElement("div",{className:"".concat(m,"-footer")},$&&p.createElement("div",{className:"".concat(m,"-footer-extra")},$),E):null}function sb(e,t,n){return function(r,o){var a=r.findIndex(function(r){return c2(e,t,r,o,n)});if(-1===a)return[].concat((0,y.A)(r),[o]);var i=(0,y.A)(r);return i.splice(a,1),i}}var sy=p.createContext(null);function sx(){return p.useContext(sy)}function s$(e,t){var n=e.prefixCls,r=e.generateConfig,o=e.locale,a=e.disabledDate,i=e.minDate,l=e.maxDate,c=e.cellRender,s=e.hoverValue,u=e.hoverRangeValue,d=e.onHover,f=e.values,p=e.pickerValue,m=e.onSelect,g=e.prevIcon,h=e.nextIcon,v=e.superPrevIcon,b=e.superNextIcon,y=r.getNow();return[{now:y,values:f,pickerValue:p,prefixCls:n,disabledDate:a,minDate:i,maxDate:l,cellRender:c,hoverValue:s,hoverRangeValue:u,onHover:d,locale:o,generateConfig:r,onSelect:m,panelType:t,prevIcon:g,nextIcon:h,superPrevIcon:v,superNextIcon:b},y]}var sA=p.createContext({});function sw(e){for(var t=e.rowNum,n=e.colNum,r=e.baseDate,o=e.getCellDate,a=e.prefixColumn,i=e.rowClassName,l=e.titleFormat,c=e.getCellText,s=e.getCellClassName,u=e.headerCells,d=e.cellSelection,f=void 0===d||d,m=e.disabledDate,g=sx(),v=g.prefixCls,b=g.panelType,y=g.now,x=g.disabledDate,$=g.cellRender,A=g.onHover,w=g.hoverValue,C=g.hoverRangeValue,S=g.generateConfig,k=g.values,E=g.locale,O=g.onSelect,M=m||x,N="".concat(v,"-cell"),I=p.useContext(sA).onCellDblClick,j=function(e){return k.some(function(t){return t&&c2(S,E,e,t,b)})},z=[],R=0;R1&&(a=s.addDate(a,-7)),a),I=s.getMonth(u),j=(void 0===x?w:x)?function(e){var t=null==v?void 0:v(e,{type:"week"});return p.createElement("td",{key:"week",className:h()(A,"".concat(A,"-week"),(0,ej.A)({},"".concat(A,"-disabled"),t)),onClick:function(){t||b(e)},onMouseEnter:function(){t||null==y||y(e)},onMouseLeave:function(){t||null==y||y(null)}},p.createElement("div",{className:"".concat(A,"-inner")},s.locale.getWeek(c.locale,e)))}:null,z=[],P=c.shortWeekDays||(s.locale.getShortWeekDays?s.locale.getShortWeekDays(c.locale):[]);j&&z.push(p.createElement("th",{key:"empty","aria-label":"empty cell"}));for(var T=0;T<7;T+=1)z.push(p.createElement("th",{key:T},P[(T+O)%7]));var D=c.shortMonths||(s.locale.getShortMonths?s.locale.getShortMonths(c.locale):[]),L=p.createElement("button",{type:"button","aria-label":"year panel",key:"year",onClick:function(){f("year",u)},tabIndex:-1,className:"".concat(i,"-year-btn")},c6(u,{locale:c,format:c.yearFormat,generateConfig:s})),B=p.createElement("button",{type:"button","aria-label":"month panel",key:"month",onClick:function(){f("month",u)},tabIndex:-1,className:"".concat(i,"-month-btn")},c.monthFormat?c6(u,{locale:c,format:c.monthFormat,generateConfig:s}):D[I]),F=c.monthBeforeYear?[B,L]:[L,B];return p.createElement(sy.Provider,{value:k},p.createElement("div",{className:h()($,x&&"".concat($,"-show-week"))},p.createElement(sS,{offset:function(e){return s.addMonth(u,e)},superOffset:function(e){return s.addYear(u,e)},onChange:d,getStart:function(e){return s.setDate(e,1)},getEnd:function(e){var t=s.setDate(e,1);return t=s.addMonth(t,1),s.addDate(t,-1)}},F),p.createElement(sw,(0,R.A)({titleFormat:c.fieldDateFormat},e,{colNum:7,rowNum:6,baseDate:N,headerCells:z,getCellDate:function(e,t){return s.addDate(e,t)},getCellText:function(e){return c6(e,{locale:c,format:c.cellDateFormat,generateConfig:s})},getCellClassName:function(e){return(0,ej.A)((0,ej.A)({},"".concat(i,"-cell-in-view"),cQ(s,e,u)),"".concat(i,"-cell-today"),cZ(s,e,E))},prefixColumn:j,cellSelection:!w}))))}var sE=1/3;function sO(e){var t,n,r,o,a,i,l=e.units,c=e.value,s=e.optionalValue,u=e.type,d=e.onChange,f=e.onHover,m=e.onDblClick,g=e.changeOnScroll,v=sx(),b=v.prefixCls,$=v.cellRender,A=v.now,w=v.locale,C="".concat(b,"-time-panel-cell"),S=p.useRef(null),k=p.useRef(),E=function(){clearTimeout(k.current)},O=(t=null!=c?c:s,n=p.useRef(!1),r=p.useRef(null),o=p.useRef(null),a=function(){x.A.cancel(r.current),n.current=!1},i=p.useRef(),[(0,e_._q)(function(){var e=S.current;if(o.current=null,i.current=0,e){var l=e.querySelector('[data-value="'.concat(t,'"]')),c=e.querySelector("li");l&&c&&function t(){a(),n.current=!0,i.current+=1;var s=e.scrollTop,u=c.offsetTop,d=l.offsetTop,f=d-u;if(0===d&&l!==c||!(0,iE.A)(e)){i.current<=5&&(r.current=(0,x.A)(t));return}var p=s+(f-s)*sE,m=Math.abs(f-p);if(null!==o.current&&o.current1&&void 0!==arguments[1]&&arguments[1];ei(e),null==v||v(e),t&&el(e)},es=function(e,t){X(e),t&&ec(t),el(t,e)},eu=p.useMemo(function(){if(Array.isArray(S)){var e,t,n=(0,eE.A)(S,2);e=n[0],t=n[1]}else e=S;return e||t?(e=e||t,t=t||e,o.isAfter(e,t)?[t,e]:[e,t]):null},[S,o]),ed=cD(k,E,O),ef=(void 0===M?{}:M)[Y]||sI[Y]||sk,ep=p.useContext(sA),em=p.useMemo(function(){return(0,eM.A)((0,eM.A)({},ep),{},{hideHeader:N})},[ep,N]),eg="".concat(I,"-panel"),eh=cz(e,["showWeek","prevIcon","nextIcon","superPrevIcon","superNextIcon","disabledDate","minDate","maxDate","onHover"]);return p.createElement(sA.Provider,{value:em},p.createElement("div",{ref:j,tabIndex:void 0===l?0:l,className:h()(eg,(0,ej.A)({},"".concat(eg,"-rtl"),"rtl"===a))},p.createElement(ef,(0,R.A)({},eh,{showTime:_,prefixCls:I,locale:F,generateConfig:o,onModeChange:es,pickerValue:ea,onPickerValueChange:function(e){ec(e,!0)},value:ee[0],onSelect:function(e){if(en(e),ec(e),K!==A){var t=["decade","year"],n=[].concat(t,["month"]),r={quarter:[].concat(t,["quarter"]),week:[].concat((0,y.A)(n),["week"]),date:[].concat((0,y.A)(n),["date"])}[A]||n,o=r.indexOf(K),a=r[o+1];a&&es(a,e)}},values:ee,cellRender:ed,hoverRangeValue:eu,hoverValue:C}))))}));function sz(e){var t=e.picker,n=e.multiplePanel,r=e.pickerValue,o=e.onPickerValueChange,a=e.needConfirm,i=e.onSubmit,l=e.range,c=e.hoverValue,s=p.useContext(cE),u=s.prefixCls,d=s.generateConfig,f=p.useCallback(function(e,n){return so(d,t,e,n)},[d,t]),m=p.useMemo(function(){return f(r,1)},[r,f]),g={onCellDblClick:function(){a&&i()}},h=(0,eM.A)((0,eM.A)({},e),{},{hoverValue:null,hoverRangeValue:null,hideHeader:"time"===t});return(l?h.hoverRangeValue=c:h.hoverValue=c,n)?p.createElement("div",{className:"".concat(u,"-panels")},p.createElement(sA.Provider,{value:(0,eM.A)((0,eM.A)({},g),{},{hideNext:!0})},p.createElement(sj,h)),p.createElement(sA.Provider,{value:(0,eM.A)((0,eM.A)({},g),{},{hidePrev:!0})},p.createElement(sj,(0,R.A)({},h,{pickerValue:m,onPickerValueChange:function(e){o(f(e,-1))}})))):p.createElement(sA.Provider,{value:(0,eM.A)({},g)},p.createElement(sj,h))}function sR(e){return"function"==typeof e?e():e}function sP(e){var t=e.prefixCls,n=e.presets,r=e.onClick,o=e.onHover;return n.length?p.createElement("div",{className:"".concat(t,"-presets")},p.createElement("ul",null,n.map(function(e,t){var n=e.label,a=e.value;return p.createElement("li",{key:t,onClick:function(){r(sR(a))},onMouseEnter:function(){o(sR(a))},onMouseLeave:function(){o(null)}},n)}))):null}function sT(e){var t=e.panelRender,n=e.internalMode,r=e.picker,o=e.showNow,a=e.range,i=e.multiple,l=e.activeOffset,c=void 0===l?0:l,s=e.placement,u=e.presets,d=e.onPresetHover,f=e.onPresetSubmit,m=e.onFocus,g=e.onBlur,b=e.onPanelMouseDown,y=e.direction,x=e.value,$=e.onSelect,A=e.isInvalid,w=e.defaultOpenValue,C=e.onOk,S=e.onSubmit,k=p.useContext(cE).prefixCls,E="".concat(k,"-panel"),O="rtl"===y,M=p.useRef(null),N=p.useRef(null),I=p.useState(0),j=(0,eE.A)(I,2),z=j[0],P=j[1],T=p.useState(0),D=(0,eE.A)(T,2),L=D[0],B=D[1];function F(e){return e.filter(function(e){return e})}p.useEffect(function(){if(a){var e,t=(null==(e=M.current)?void 0:e.offsetWidth)||0;c<=z-t?B(0):B(c+t-z)}},[z,c,a]);var H=p.useMemo(function(){return F(cI(x))},[x]),_="time"===r&&!H.length,W=p.useMemo(function(){return _?F([w]):H},[_,H,w]),q=_?w:H,V=p.useMemo(function(){return!W.length||W.some(function(e){return A(e)})},[W,A]),K=p.createElement("div",{className:"".concat(k,"-panel-layout")},p.createElement(sP,{prefixCls:k,presets:u,onClick:f,onHover:d}),p.createElement("div",null,p.createElement(sz,(0,R.A)({},e,{value:q})),p.createElement(sv,(0,R.A)({},e,{showNow:!i&&o,invalid:V,onSubmit:function(){_&&$(w),C(),S()}}))));t&&(K=t(K));var X="marginLeft",Y="marginRight",U=p.createElement("div",{onMouseDown:b,tabIndex:-1,className:h()("".concat(E,"-container"),"".concat(k,"-").concat(n,"-panel-container")),style:(0,ej.A)((0,ej.A)({},O?Y:X,L),O?X:Y,"auto"),onFocus:m,onBlur:g},K);if(a){var G=ck(cS(s,O),O);U=p.createElement("div",{onMouseDown:b,ref:N,className:h()("".concat(k,"-range-wrapper"),"".concat(k,"-").concat(r,"-range-wrapper"))},p.createElement("div",{ref:M,className:"".concat(k,"-range-arrow"),style:(0,ej.A)({},G,c)}),p.createElement(v.A,{onResize:function(e){e.offsetWidth&&P(e.offsetWidth)}},U))}return U}function sD(e,t){var n=e.format,r=e.maskFormat,o=e.generateConfig,a=e.locale,i=e.preserveInvalidOnBlur,l=e.inputReadOnly,c=e.required,s=e["aria-required"],u=e.onSubmit,d=e.onFocus,f=e.onBlur,m=e.onInputChange,g=e.onInvalid,h=e.open,v=e.onOpenChange,b=e.onKeyDown,y=e.onChange,x=e.activeHelp,$=e.name,A=e.autoComplete,w=e.id,C=e.value,S=e.invalid,k=e.placeholder,E=e.disabled,O=e.activeIndex,M=e.allHelp,N=e.picker,I=function(e,t){var n=o.locale.parse(a.locale,e,[t]);return n&&o.isValidate(n)?n:null},j=n[0],z=p.useCallback(function(e){return c6(e,{locale:a,format:j,generateConfig:o})},[a,o,j]),R=p.useMemo(function(){return C.map(z)},[C,z]),P=p.useMemo(function(){return Math.max("time"===N?8:10,"function"==typeof j?j(o.getNow()).length:j.length)+2},[j,N,o]),T=function(e){for(var t=0;t=a&&e<=i)return r;var l=Math.min(Math.abs(e-a),Math.abs(e-i));l0?r:o));var c=o-r+1;return String(r+(c+(l+e)-r)%c)};switch(t){case"Backspace":case"Delete":n="",r=i;break;case"ArrowLeft":n="",l(-1);break;case"ArrowRight":n="",l(1);break;case"ArrowUp":n="",r=c(1);break;case"ArrowDown":n="",r=c(-1);break;default:isNaN(Number(t))||(r=n=B+t)}null!==n&&(F(n),n.length>=o&&(l(1),F(""))),null!==r&&eo((U.slice(0,et)+cN(r,o)+U.slice(en)).slice(0,a.length)),Y({})},onMouseDown:function(){ea.current=!0},onMouseUp:function(e){var t=e.target.selectionStart;q(Z.getMaskCellIndex(t)),Y({}),null==w||w(e),ea.current=!1},onPaste:function(e){var t=e.clipboardData.getData("text");i(t)&&eo(t)}}:{};return p.createElement("div",{ref:G,className:h()(E,(0,ej.A)((0,ej.A)({},"".concat(E,"-active"),n&&(void 0===r||r)),"".concat(E,"-placeholder"),c))},p.createElement(void 0===k?"input":k,(0,R.A)({ref:Q,"aria-invalid":g,autoComplete:"off"},b,{onKeyDown:el,onBlur:ei},es,{value:U,onChange:function(e){if(!a){var t=e.target.value;er(t),T(t),l(t)}}})),p.createElement(s_,{type:"suffix",icon:o}),v)}),sY=["id","prefix","clearIcon","suffixIcon","separator","activeIndex","activeHelp","allHelp","focused","onFocus","onBlur","onKeyDown","locale","generateConfig","placeholder","className","style","onClick","onClear","value","onChange","onSubmit","onInputChange","format","maskFormat","preserveInvalidOnBlur","onInvalid","disabled","invalid","inputReadOnly","direction","onOpenChange","onActiveOffset","placement","onMouseDown","required","aria-required","autoFocus","tabIndex"],sU=["index"],sG=["insetInlineStart","insetInlineEnd"],sQ=p.forwardRef(function(e,t){var n=e.id,r=e.prefix,o=e.clearIcon,a=e.suffixIcon,i=e.separator,l=e.activeIndex,c=(e.activeHelp,e.allHelp,e.focused),s=(e.onFocus,e.onBlur,e.onKeyDown,e.locale,e.generateConfig,e.placeholder),u=e.className,d=e.style,f=e.onClick,m=e.onClear,g=e.value,b=(e.onChange,e.onSubmit,e.onInputChange,e.format,e.maskFormat,e.preserveInvalidOnBlur,e.onInvalid,e.disabled),y=e.invalid,x=(e.inputReadOnly,e.direction),$=(e.onOpenChange,e.onActiveOffset),A=e.placement,w=e.onMouseDown,C=(e.required,e["aria-required"],e.autoFocus),S=e.tabIndex,k=(0,eO.A)(e,sY),E="rtl"===x,O=p.useContext(cE).prefixCls,M=p.useMemo(function(){if("string"==typeof n)return[n];var e=n||{};return[e.start,e.end]},[n]),N=p.useRef(),I=p.useRef(),j=p.useRef(),z=function(e){var t;return null==(t=[I,j][e])?void 0:t.current};p.useImperativeHandle(t,function(){return{nativeElement:N.current,focus:function(e){if("object"===(0,ez.A)(e)){var t,n,r=e||{},o=r.index,a=(0,eO.A)(r,sU);null==(n=z(void 0===o?0:o))||n.focus(a)}else null==(t=z(null!=e?e:0))||t.focus()},blur:function(){var e,t;null==(e=z(0))||e.blur(),null==(t=z(1))||t.blur()}}});var P=sB(k),T=p.useMemo(function(){return Array.isArray(s)?s:[s,s]},[s]),D=sD((0,eM.A)((0,eM.A)({},e),{},{id:M,placeholder:T})),L=(0,eE.A)(D,1)[0],B=cS(A,E),F=ck(B,E),H=null==B?void 0:B.toLowerCase().endsWith("right"),_=p.useState({position:"absolute",width:0}),W=(0,eE.A)(_,2),q=W[0],V=W[1],K=(0,e_._q)(function(){var e=z(l);if(e){var t=e.nativeElement,n=t.offsetWidth,r=t.offsetLeft,o=t.offsetParent,a=(null==o?void 0:o.offsetWidth)||0,i=H?a-n-r:r;V(function(e){e.insetInlineStart,e.insetInlineEnd;var t=(0,eO.A)(e,sG);return(0,eM.A)((0,eM.A)({},t),{},(0,ej.A)({width:n},F,i))}),$(i)}});p.useEffect(function(){K()},[l]);var X=o&&(g[0]&&!b[0]||g[1]&&!b[1]),Y=C&&!b[0],U=C&&!Y&&!b[1];return p.createElement(v.A,{onResize:K},p.createElement("div",(0,R.A)({},P,{className:h()(O,"".concat(O,"-range"),(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(O,"-focused"),c),"".concat(O,"-disabled"),b.every(function(e){return e})),"".concat(O,"-invalid"),y.some(function(e){return e})),"".concat(O,"-rtl"),E),u),style:d,ref:N,onClick:f,onMouseDown:function(e){var t=e.target;t!==I.current.inputElement&&t!==j.current.inputElement&&e.preventDefault(),null==w||w(e)}}),r&&p.createElement("div",{className:"".concat(O,"-prefix")},r),p.createElement(sX,(0,R.A)({ref:I},L(0),{autoFocus:Y,tabIndex:S,"date-range":"start"})),p.createElement("div",{className:"".concat(O,"-range-separator")},void 0===i?"~":i),p.createElement(sX,(0,R.A)({ref:j},L(1),{autoFocus:U,tabIndex:S,"date-range":"end"})),p.createElement("div",{className:"".concat(O,"-active-bar"),style:q}),p.createElement(s_,{type:"suffix",icon:a}),X&&p.createElement(sW,{icon:o,onClear:m})))});function sZ(e,t){var n=null!=e?e:t;return Array.isArray(n)?n:[n,n]}function sJ(e){return 1===e?"end":"start"}var s0=p.forwardRef(function(e,t){var n,r=c7(e,function(){var t=e.disabled,n=e.allowEmpty;return{disabled:sZ(t,!1),allowEmpty:sZ(n,!1)}}),o=(0,eE.A)(r,6),a=o[0],i=o[1],l=o[2],c=o[3],s=o[4],u=o[5],d=a.prefixCls,f=a.styles,m=a.classNames,g=a.placement,h=a.defaultValue,v=a.value,x=a.needConfirm,$=a.onKeyDown,A=a.disabled,w=a.allowEmpty,C=a.disabledDate,S=a.minDate,k=a.maxDate,E=a.defaultOpen,O=a.open,M=a.onOpenChange,N=a.locale,I=a.generateConfig,j=a.picker,z=a.showNow,P=a.showToday,T=a.showTime,D=a.mode,L=a.onPanelChange,B=a.onCalendarChange,F=a.onOk,_=a.defaultPickerValue,W=a.pickerValue,q=a.onPickerValueChange,V=a.inputReadOnly,K=a.suffixIcon,X=a.onFocus,Y=a.onBlur,U=a.presets,G=a.ranges,Q=a.components,Z=a.cellRender,J=a.dateRender,ee=a.monthCellRender,et=a.onClick,en=se(t),er=c9(O,E,A,M),eo=(0,eE.A)(er,2),ea=eo[0],ei=eo[1],el=function(e,t){(A.some(function(e){return!e})||!e)&&ei(e,t)},ec=sd(I,N,c,!0,!1,h,v,B,F),es=(0,eE.A)(ec,5),eu=es[0],ed=es[1],ef=es[2],ep=es[3],em=es[4],eg=ef(),eh=sr(A,w,ea),ev=(0,eE.A)(eh,7),eb=ev[0],ey=ev[1],ex=ev[2],e$=ev[3],eA=ev[4],ew=ev[5],eC=ev[6],eS=function(e,t){ey(!0),null==X||X(e,{range:sJ(null!=t?t:e$)})},ek=function(e,t){ey(!1),null==Y||Y(e,{range:sJ(null!=t?t:e$)})},eO=p.useMemo(function(){if(!T)return null;var e=T.disabledTime,t=e?function(t){return e(t,sJ(e$),{from:cP(eg,eC,e$)})}:void 0;return(0,eM.A)((0,eM.A)({},T),{},{disabledTime:t})},[T,e$,eg,eC]),eN=(0,e_.vz)([j,j],{value:D}),eI=(0,eE.A)(eN,2),ej=eI[0],ez=eI[1],eR=ej[e$]||j,eP="date"===eR&&eO?"datetime":eR,eT=eP===j&&"time"!==eP,eD=sp(j,eR,z,P,!0),eL=sf(a,eu,ed,ef,ep,A,c,eb,ea,u),eB=(0,eE.A)(eL,3),eF=eB[0],eH=eB[1],eW=eB[2],eq=(n=eC[eC.length-1],function(e,t){var r=(0,eE.A)(eg,2),o=r[0],a=r[1],i=(0,eM.A)((0,eM.A)({},t),{},{from:cP(eg,eC)});return!!(1===n&&A[0]&&o&&!c2(I,N,o,e,i.type)&&I.isAfter(o,e)||0===n&&A[1]&&a&&!c2(I,N,a,e,i.type)&&I.isAfter(e,a))||(null==C?void 0:C(e,i))}),eV=cL(eg,u,w),eK=(0,eE.A)(eV,2),eX=eK[0],eY=eK[1],eU=si(I,N,eg,ej,ea,e$,i,eT,_,W,null==eO?void 0:eO.defaultOpenValue,q,S,k),eG=(0,eE.A)(eU,2),eQ=eG[0],eZ=eG[1],eJ=(0,e_._q)(function(e,t,n){var r=cj(ej,e$,t);if((r[0]!==ej[0]||r[1]!==ej[1])&&ez(r),L&&!1!==n){var o=(0,y.A)(eg);e&&(o[e$]=e),L(o,r)}}),e0=function(e,t){return cj(eg,t,e)},e1=function(e,t){var n=eg;e&&(n=e0(e,e$));var r=ew(n);ep(n),eF(e$,null===r),null===r?el(!1,{force:!0}):t||en.current.focus({index:r})},e2=p.useState(null),e4=(0,eE.A)(e2,2),e3=e4[0],e6=e4[1],e8=p.useState(null),e5=(0,eE.A)(e8,2),e7=e5[0],e9=e5[1],te=p.useMemo(function(){return e7||eg},[eg,e7]);p.useEffect(function(){ea||e9(null)},[ea]);var tt=p.useState(0),tn=(0,eE.A)(tt,2),tr=tn[0],to=tn[1],ta=st(U,G),ti=cD(Z,J,ee,sJ(e$)),tl=eg[e$]||null,tc=(0,e_._q)(function(e){return u(e,{activeIndex:e$})}),ts=p.useMemo(function(){var e=(0,H.A)(a,!1);return(0,b.A)(a,[].concat((0,y.A)(Object.keys(e)),["onChange","onCalendarChange","style","className","onPanelChange","disabledTime"]))},[a]),tu=p.createElement(sT,(0,R.A)({},ts,{showNow:eD,showTime:eO,range:!0,multiplePanel:eT,activeOffset:tr,placement:g,disabledDate:eq,onFocus:function(e){el(!0),eS(e)},onBlur:ek,onPanelMouseDown:function(){ex("panel")},picker:j,mode:eR,internalMode:eP,onPanelChange:eJ,format:s,value:tl,isInvalid:tc,onChange:null,onSelect:function(e){ep(cj(eg,e$,e)),x||l||i!==eP||e1(e)},pickerValue:eQ,defaultOpenValue:cI(null==T?void 0:T.defaultOpenValue)[e$],onPickerValueChange:eZ,hoverValue:te,onHover:function(e){e9(e?e0(e,e$):null),e6("cell")},needConfirm:x,onSubmit:e1,onOk:em,presets:ta,onPresetHover:function(e){e9(e),e6("preset")},onPresetSubmit:function(e){eH(e)&&el(!1,{force:!0})},onNow:function(e){e1(e)},cellRender:ti})),td=p.useMemo(function(){return{prefixCls:d,locale:N,generateConfig:I,button:Q.button,input:Q.input}},[d,N,I,Q.button,Q.input]);return(0,rf.A)(function(){ea&&void 0!==e$&&eJ(null,j,!1)},[ea,e$,j]),(0,rf.A)(function(){var e=ex();ea||"input"!==e||(el(!1),e1(null,!0)),ea||!l||x||"panel"!==e||(el(!0),e1())},[ea]),p.createElement(cE.Provider,{value:td},p.createElement(cM,(0,R.A)({},cT(a),{popupElement:tu,popupStyle:f.popup,popupClassName:m.popup,visible:ea,onClose:function(){el(!1)},range:!0}),p.createElement(sQ,(0,R.A)({},a,{ref:en,suffixIcon:K,activeIndex:eb||ea?e$:null,activeHelp:!!e7,allHelp:!!e7&&"preset"===e3,focused:eb,onFocus:function(e,t){var n=eC.length,r=eC[n-1];n&&r!==t&&x&&!w[r]&&!eW(r)&&eg[r]?en.current.focus({index:r}):(ex("input"),el(!0,{inherit:!0}),e$!==t&&ea&&!x&&l&&e1(null,!0),eA(t),eS(e,t))},onBlur:function(e,t){el(!1),x||"input"!==ex()||eF(e$,null===ew(eg)),ek(e,t)},onKeyDown:function(e,t){"Tab"===e.key&&e1(null,!0),null==$||$(e,t)},onSubmit:e1,value:te,maskFormat:s,onChange:function(e,t){ep(e0(e,t))},onInputChange:function(){ex("input")},format:c,inputReadOnly:V,disabled:A,open:ea,onOpenChange:el,onClick:function(e){var t,n=e.target.getRootNode();if(!en.current.nativeElement.contains(null!=(t=n.activeElement)?t:document.activeElement)){var r=A.findIndex(function(e){return!e});r>=0&&en.current.focus({index:r})}el(!0),null==et||et(e)},onClear:function(){eH(null),el(!1,{force:!0})},invalid:eX,onInvalid:eY,onActiveOffset:to}))))});function s1(e){var t=e.prefixCls,n=e.value,r=e.onRemove,o=e.removeIcon,a=void 0===o?"\xd7":o,i=e.formatDate,l=e.disabled,c=e.maxTagCount,s=e.placeholder,u="".concat(t,"-selection");function d(e,t){return p.createElement("span",{className:h()("".concat(u,"-item")),title:"string"==typeof e?e:null},p.createElement("span",{className:"".concat(u,"-item-content")},e),!l&&t&&p.createElement("span",{onMouseDown:function(e){e.preventDefault()},onClick:t,className:"".concat(u,"-item-remove")},a))}return p.createElement("div",{className:"".concat(t,"-selector")},p.createElement(rj,{prefixCls:"".concat(u,"-overflow"),data:n,renderItem:function(e){return d(i(e),function(t){t&&t.stopPropagation(),r(e)})},renderRest:function(e){return d("+ ".concat(e.length," ..."))},itemKey:function(e){return i(e)},maxCount:c}),!n.length&&p.createElement("span",{className:"".concat(t,"-selection-placeholder")},s))}var s2=["id","open","prefix","clearIcon","suffixIcon","activeHelp","allHelp","focused","onFocus","onBlur","onKeyDown","locale","generateConfig","placeholder","className","style","onClick","onClear","internalPicker","value","onChange","onSubmit","onInputChange","multiple","maxTagCount","format","maskFormat","preserveInvalidOnBlur","onInvalid","disabled","invalid","inputReadOnly","direction","onOpenChange","onMouseDown","required","aria-required","autoFocus","tabIndex","removeIcon"],s4=p.forwardRef(function(e,t){e.id;var n=e.open,r=e.prefix,o=e.clearIcon,a=e.suffixIcon,i=(e.activeHelp,e.allHelp,e.focused),l=(e.onFocus,e.onBlur,e.onKeyDown,e.locale),c=e.generateConfig,s=e.placeholder,u=e.className,d=e.style,f=e.onClick,m=e.onClear,g=e.internalPicker,v=e.value,b=e.onChange,y=e.onSubmit,x=(e.onInputChange,e.multiple),$=e.maxTagCount,A=(e.format,e.maskFormat,e.preserveInvalidOnBlur,e.onInvalid,e.disabled),w=e.invalid,C=(e.inputReadOnly,e.direction),S=(e.onOpenChange,e.onMouseDown),k=(e.required,e["aria-required"],e.autoFocus),E=e.tabIndex,O=e.removeIcon,M=(0,eO.A)(e,s2),N=p.useContext(cE).prefixCls,I=p.useRef(),j=p.useRef();p.useImperativeHandle(t,function(){return{nativeElement:I.current,focus:function(e){var t;null==(t=j.current)||t.focus(e)},blur:function(){var e;null==(e=j.current)||e.blur()}}});var z=sB(M),P=sD((0,eM.A)((0,eM.A)({},e),{},{onChange:function(e){b([e])}}),function(e){return{value:e.valueTexts[0]||"",active:i}}),T=(0,eE.A)(P,2),D=T[0],L=T[1],B=!!(o&&v.length&&!A),F=x?p.createElement(p.Fragment,null,p.createElement(s1,{prefixCls:N,value:v,onRemove:function(e){b(v.filter(function(t){return t&&!c2(c,l,t,e,g)})),n||y()},formatDate:L,maxTagCount:$,disabled:A,removeIcon:O,placeholder:s}),p.createElement("input",{className:"".concat(N,"-multiple-input"),value:v.map(L).join(","),ref:j,readOnly:!0,autoFocus:k,tabIndex:E}),p.createElement(s_,{type:"suffix",icon:a}),B&&p.createElement(sW,{icon:o,onClear:m})):p.createElement(sX,(0,R.A)({ref:j},D(),{autoFocus:k,tabIndex:E,suffixIcon:a,clearIcon:B&&p.createElement(sW,{icon:o,onClear:m}),showActiveCls:!1}));return p.createElement("div",(0,R.A)({},z,{className:h()(N,(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(N,"-multiple"),x),"".concat(N,"-focused"),i),"".concat(N,"-disabled"),A),"".concat(N,"-invalid"),w),"".concat(N,"-rtl"),"rtl"===C),u),style:d,ref:I,onClick:f,onMouseDown:function(e){var t;e.target!==(null==(t=j.current)?void 0:t.inputElement)&&e.preventDefault(),null==S||S(e)}}),r&&p.createElement("div",{className:"".concat(N,"-prefix")},r),F)}),s3=p.forwardRef(function(e,t){var n=c7(e),r=(0,eE.A)(n,6),o=r[0],a=r[1],i=r[2],l=r[3],c=r[4],s=r[5],u=o.prefixCls,d=o.styles,f=o.classNames,m=o.order,g=o.defaultValue,h=o.value,v=o.needConfirm,x=o.onChange,$=o.onKeyDown,A=o.disabled,w=o.disabledDate,C=o.minDate,S=o.maxDate,k=o.defaultOpen,E=o.open,O=o.onOpenChange,M=o.locale,N=o.generateConfig,I=o.picker,j=o.showNow,z=o.showToday,P=o.showTime,T=o.mode,D=o.onPanelChange,L=o.onCalendarChange,B=o.onOk,F=o.multiple,_=o.defaultPickerValue,W=o.pickerValue,q=o.onPickerValueChange,V=o.inputReadOnly,K=o.suffixIcon,X=o.removeIcon,Y=o.onFocus,U=o.onBlur,G=o.presets,Q=o.components,Z=o.cellRender,J=o.dateRender,ee=o.monthCellRender,et=o.onClick,en=se(t);function er(e){return null===e?null:F?e:e[0]}var eo=sb(N,M,a),ea=c9(E,k,[A],O),ei=(0,eE.A)(ea,2),el=ei[0],ec=ei[1],es=sd(N,M,l,!1,m,g,h,function(e,t,n){if(L){var r=(0,eM.A)({},n);delete r.range,L(er(e),er(t),r)}},function(e){null==B||B(er(e))}),eu=(0,eE.A)(es,5),ed=eu[0],ef=eu[1],ep=eu[2],em=eu[3],eg=eu[4],eh=ep(),ev=sr([A]),eb=(0,eE.A)(ev,4),ey=eb[0],ex=eb[1],e$=eb[2],eA=eb[3],ew=function(e){ex(!0),null==Y||Y(e,{})},eC=function(e){ex(!1),null==U||U(e,{})},eS=(0,e_.vz)(I,{value:T}),ek=(0,eE.A)(eS,2),eO=ek[0],eN=ek[1],eI="date"===eO&&P?"datetime":eO,ej=sp(I,eO,j,z),ez=sf((0,eM.A)((0,eM.A)({},o),{},{onChange:x&&function(e,t){x(er(e),er(t))}}),ed,ef,ep,em,[],l,ey,el,s),eR=(0,eE.A)(ez,2)[1],eP=cL(eh,s),eT=(0,eE.A)(eP,2),eD=eT[0],eL=eT[1],eB=p.useMemo(function(){return eD.some(function(e){return e})},[eD]),eF=si(N,M,eh,[eO],el,eA,a,!1,_,W,cI(null==P?void 0:P.defaultOpenValue),function(e,t){if(q){var n=(0,eM.A)((0,eM.A)({},t),{},{mode:t.mode[0]});delete n.range,q(e[0],n)}},C,S),eH=(0,eE.A)(eF,2),eW=eH[0],eq=eH[1],eV=(0,e_._q)(function(e,t,n){eN(t),D&&!1!==n&&D(e||eh[eh.length-1],t)}),eK=function(){eR(ep()),ec(!1,{force:!0})},eX=p.useState(null),eY=(0,eE.A)(eX,2),eU=eY[0],eG=eY[1],eQ=p.useState(null),eZ=(0,eE.A)(eQ,2),eJ=eZ[0],e0=eZ[1],e1=p.useMemo(function(){var e=[eJ].concat((0,y.A)(eh)).filter(function(e){return e});return F?e:e.slice(0,1)},[eh,eJ,F]),e2=p.useMemo(function(){return!F&&eJ?[eJ]:eh.filter(function(e){return e})},[eh,eJ,F]);p.useEffect(function(){el||e0(null)},[el]);var e4=st(G),e3=function(e){eR(F?eo(ep(),e):[e])&&!F&&ec(!1,{force:!0})},e6=cD(Z,J,ee),e8=p.useMemo(function(){var e=(0,H.A)(o,!1),t=(0,b.A)(o,[].concat((0,y.A)(Object.keys(e)),["onChange","onCalendarChange","style","className","onPanelChange"]));return(0,eM.A)((0,eM.A)({},t),{},{multiple:o.multiple})},[o]),e5=p.createElement(sT,(0,R.A)({},e8,{showNow:ej,showTime:P,disabledDate:w,onFocus:function(e){ec(!0),ew(e)},onBlur:eC,picker:I,mode:eO,internalMode:eI,onPanelChange:eV,format:c,value:eh,isInvalid:s,onChange:null,onSelect:function(e){e$("panel"),(!F||eI===I)&&(em(F?eo(ep(),e):[e]),v||i||a!==eI||eK())},pickerValue:eW,defaultOpenValue:null==P?void 0:P.defaultOpenValue,onPickerValueChange:eq,hoverValue:e1,onHover:function(e){e0(e),eG("cell")},needConfirm:v,onSubmit:eK,onOk:eg,presets:e4,onPresetHover:function(e){e0(e),eG("preset")},onPresetSubmit:e3,onNow:function(e){e3(e)},cellRender:e6})),e7=p.useMemo(function(){return{prefixCls:u,locale:M,generateConfig:N,button:Q.button,input:Q.input}},[u,M,N,Q.button,Q.input]);return(0,rf.A)(function(){el&&void 0!==eA&&eV(null,I,!1)},[el,eA,I]),(0,rf.A)(function(){var e=e$();el||"input"!==e||(ec(!1),eK()),el||!i||v||"panel"!==e||(ec(!0),eK())},[el]),p.createElement(cE.Provider,{value:e7},p.createElement(cM,(0,R.A)({},cT(o),{popupElement:e5,popupStyle:d.popup,popupClassName:f.popup,visible:el,onClose:function(){ec(!1)}}),p.createElement(s4,(0,R.A)({},o,{ref:en,suffixIcon:K,removeIcon:X,activeHelp:!!eJ,allHelp:!!eJ&&"preset"===eU,focused:ey,onFocus:function(e){e$("input"),ec(!0,{inherit:!0}),ew(e)},onBlur:function(e){ec(!1),eC(e)},onKeyDown:function(e,t){"Tab"===e.key&&eK(),null==$||$(e,t)},onSubmit:eK,value:e2,maskFormat:c,onChange:function(e){em(e)},onInputChange:function(){e$("input")},internalPicker:a,format:l,inputReadOnly:V,disabled:A,open:el,onOpenChange:ec,onClick:function(e){A||en.current.nativeElement.contains(document.activeElement)||en.current.focus(),ec(!0),null==et||et(e)},onClear:function(){eR(null),ec(!1,{force:!0})},invalid:eB,onInvalid:function(e){eL(e,0)}}))))});let s6=p.createContext(null),s8=s6.Provider,s5=p.createContext(null),s7=s5.Provider;var s9=["prefixCls","className","style","checked","disabled","defaultChecked","type","title","onChange"],ue=(0,p.forwardRef)(function(e,t){var n=e.prefixCls,r=void 0===n?"rc-checkbox":n,o=e.className,a=e.style,i=e.checked,l=e.disabled,c=e.defaultChecked,s=e.type,u=void 0===s?"checkbox":s,d=e.title,f=e.onChange,m=(0,eO.A)(e,s9),g=(0,p.useRef)(null),v=(0,p.useRef)(null),b=(0,rs.A)(void 0!==c&&c,{value:i}),y=(0,eE.A)(b,2),x=y[0],$=y[1];(0,p.useImperativeHandle)(t,function(){return{focus:function(e){var t;null==(t=g.current)||t.focus(e)},blur:function(){var e;null==(e=g.current)||e.blur()},input:g.current,nativeElement:v.current}});var A=h()(r,o,(0,ej.A)((0,ej.A)({},"".concat(r,"-checked"),x),"".concat(r,"-disabled"),l));return p.createElement("span",{className:A,title:d,style:a,ref:v},p.createElement("input",(0,R.A)({},m,{className:"".concat(r,"-input"),ref:g,onChange:function(t){l||("checked"in e||$(t.target.checked),null==f||f({target:(0,eM.A)((0,eM.A)({},e),{},{type:u,checked:t.target.checked}),stopPropagation:function(){t.stopPropagation()},preventDefault:function(){t.preventDefault()},nativeEvent:t.nativeEvent}))},disabled:l,checked:!!x,type:u})),p.createElement("span",{className:"".concat(r,"-inner")}))}),ut=n(54556),un=n(4424);function ur(e){let t=m().useRef(null),n=()=>{x.A.cancel(t.current),t.current=null};return[()=>{n(),t.current=(0,x.A)(()=>{t.current=null})},r=>{t.current&&(r.stopPropagation(),n()),null==e||e(r)}]}let uo=(0,w.OF)("Radio",e=>{let{controlOutline:t,controlOutlineWidth:n}=e,r=`0 0 0 ${(0,q.zA)(n)} ${t}`,o=(0,ey.oX)(e,{radioFocusShadow:r,radioButtonFocusShadow:r});return[(e=>{let{componentCls:t,antCls:n}=e,r=`${t}-group`;return{[r]:Object.assign(Object.assign({},(0,V.dF)(e)),{display:"inline-block",fontSize:0,[`&${r}-rtl`]:{direction:"rtl"},[`&${r}-block`]:{display:"flex"},[`${n}-badge ${n}-badge-count`]:{zIndex:1},[`> ${n}-badge:not(:first-child) > ${n}-button-wrapper`]:{borderInlineStart:"none"}})}})(o),(e=>{let{componentCls:t,wrapperMarginInlineEnd:n,colorPrimary:r,radioSize:o,motionDurationSlow:a,motionDurationMid:i,motionEaseInOutCirc:l,colorBgContainer:c,colorBorder:s,lineWidth:u,colorBgContainerDisabled:d,colorTextDisabled:f,paddingXS:p,dotColorDisabled:m,lineType:g,radioColor:h,radioBgColor:v,calc:b}=e,y=`${t}-inner`,x=b(o).sub(b(4).mul(2)),$=b(1).mul(o).equal({unit:!0});return{[`${t}-wrapper`]:Object.assign(Object.assign({},(0,V.dF)(e)),{display:"inline-flex",alignItems:"baseline",marginInlineStart:0,marginInlineEnd:n,cursor:"pointer",[`&${t}-wrapper-rtl`]:{direction:"rtl"},"&-disabled":{cursor:"not-allowed",color:e.colorTextDisabled},"&::after":{display:"inline-block",width:0,overflow:"hidden",content:'"\\a0"'},"&-block":{flex:1,justifyContent:"center"},[`${t}-checked::after`]:{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:"100%",height:"100%",border:`${(0,q.zA)(u)} ${g} ${r}`,borderRadius:"50%",visibility:"hidden",opacity:0,content:'""'},[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",display:"inline-block",outline:"none",cursor:"pointer",alignSelf:"center",borderRadius:"50%"}),[`${t}-wrapper:hover &, - &:hover ${y}`]:{borderColor:r},[`${t}-input:focus-visible + ${y}`]:Object.assign({},(0,V.jk)(e)),[`${t}:hover::after, ${t}-wrapper:hover &::after`]:{visibility:"visible"},[`${t}-inner`]:{"&::after":{boxSizing:"border-box",position:"absolute",insetBlockStart:"50%",insetInlineStart:"50%",display:"block",width:$,height:$,marginBlockStart:b(1).mul(o).div(-2).equal({unit:!0}),marginInlineStart:b(1).mul(o).div(-2).equal({unit:!0}),backgroundColor:h,borderBlockStart:0,borderInlineStart:0,borderRadius:$,transform:"scale(0)",opacity:0,transition:`all ${a} ${l}`,content:'""'},boxSizing:"border-box",position:"relative",insetBlockStart:0,insetInlineStart:0,display:"block",width:$,height:$,backgroundColor:c,borderColor:s,borderStyle:"solid",borderWidth:u,borderRadius:"50%",transition:`all ${i}`},[`${t}-input`]:{position:"absolute",inset:0,zIndex:1,cursor:"pointer",opacity:0},[`${t}-checked`]:{[y]:{borderColor:r,backgroundColor:v,"&::after":{transform:`scale(${e.calc(e.dotSize).div(o).equal()})`,opacity:1,transition:`all ${a} ${l}`}}},[`${t}-disabled`]:{cursor:"not-allowed",[y]:{backgroundColor:d,borderColor:s,cursor:"not-allowed","&::after":{backgroundColor:m}},[`${t}-input`]:{cursor:"not-allowed"},[`${t}-disabled + span`]:{color:f,cursor:"not-allowed"},[`&${t}-checked`]:{[y]:{"&::after":{transform:`scale(${b(x).div(o).equal()})`}}}},[`span${t} + *`]:{paddingInlineStart:p,paddingInlineEnd:p}})}})(o),(e=>{let{buttonColor:t,controlHeight:n,componentCls:r,lineWidth:o,lineType:a,colorBorder:i,motionDurationSlow:l,motionDurationMid:c,buttonPaddingInline:s,fontSize:u,buttonBg:d,fontSizeLG:f,controlHeightLG:p,controlHeightSM:m,paddingXS:g,borderRadius:h,borderRadiusSM:v,borderRadiusLG:b,buttonCheckedBg:y,buttonSolidCheckedColor:x,colorTextDisabled:$,colorBgContainerDisabled:A,buttonCheckedBgDisabled:w,buttonCheckedColorDisabled:C,colorPrimary:S,colorPrimaryHover:k,colorPrimaryActive:E,buttonSolidCheckedBg:O,buttonSolidCheckedHoverBg:M,buttonSolidCheckedActiveBg:N,calc:I}=e;return{[`${r}-button-wrapper`]:{position:"relative",display:"inline-block",height:n,margin:0,paddingInline:s,paddingBlock:0,color:t,fontSize:u,lineHeight:(0,q.zA)(I(n).sub(I(o).mul(2)).equal()),background:d,border:`${(0,q.zA)(o)} ${a} ${i}`,borderBlockStartWidth:I(o).add(.02).equal(),borderInlineStartWidth:0,borderInlineEndWidth:o,cursor:"pointer",transition:`color ${c},background ${c},box-shadow ${c}`,a:{color:t},[`> ${r}-button`]:{position:"absolute",insetBlockStart:0,insetInlineStart:0,zIndex:-1,width:"100%",height:"100%"},"&:not(:first-child)":{"&::before":{position:"absolute",insetBlockStart:I(o).mul(-1).equal(),insetInlineStart:I(o).mul(-1).equal(),display:"block",boxSizing:"content-box",width:1,height:"100%",paddingBlock:o,paddingInline:0,backgroundColor:i,transition:`background-color ${l}`,content:'""'}},"&:first-child":{borderInlineStart:`${(0,q.zA)(o)} ${a} ${i}`,borderStartStartRadius:h,borderEndStartRadius:h},"&:last-child":{borderStartEndRadius:h,borderEndEndRadius:h},"&:first-child:last-child":{borderRadius:h},[`${r}-group-large &`]:{height:p,fontSize:f,lineHeight:(0,q.zA)(I(p).sub(I(o).mul(2)).equal()),"&:first-child":{borderStartStartRadius:b,borderEndStartRadius:b},"&:last-child":{borderStartEndRadius:b,borderEndEndRadius:b}},[`${r}-group-small &`]:{height:m,paddingInline:I(g).sub(o).equal(),paddingBlock:0,lineHeight:(0,q.zA)(I(m).sub(I(o).mul(2)).equal()),"&:first-child":{borderStartStartRadius:v,borderEndStartRadius:v},"&:last-child":{borderStartEndRadius:v,borderEndEndRadius:v}},"&:hover":{position:"relative",color:S},"&:has(:focus-visible)":Object.assign({},(0,V.jk)(e)),[`${r}-inner, input[type='checkbox'], input[type='radio']`]:{width:0,height:0,opacity:0,pointerEvents:"none"},[`&-checked:not(${r}-button-wrapper-disabled)`]:{zIndex:1,color:S,background:y,borderColor:S,"&::before":{backgroundColor:S},"&:first-child":{borderColor:S},"&:hover":{color:k,borderColor:k,"&::before":{backgroundColor:k}},"&:active":{color:E,borderColor:E,"&::before":{backgroundColor:E}}},[`${r}-group-solid &-checked:not(${r}-button-wrapper-disabled)`]:{color:x,background:O,borderColor:O,"&:hover":{color:x,background:M,borderColor:M},"&:active":{color:x,background:N,borderColor:N}},"&-disabled":{color:$,backgroundColor:A,borderColor:i,cursor:"not-allowed","&:first-child, &:hover":{color:$,backgroundColor:A,borderColor:i}},[`&-disabled${r}-button-wrapper-checked`]:{color:C,backgroundColor:w,borderColor:i,boxShadow:"none"},"&-block":{flex:1,textAlign:"center"}}}})(o)]},e=>{let{wireframe:t,padding:n,marginXS:r,lineWidth:o,fontSizeLG:a,colorText:i,colorBgContainer:l,colorTextDisabled:c,controlItemBgActiveDisabled:s,colorTextLightSolid:u,colorPrimary:d,colorPrimaryHover:f,colorPrimaryActive:p,colorWhite:m}=e;return{radioSize:a,dotSize:t?a-8:a-(4+o)*2,dotColorDisabled:c,buttonSolidCheckedColor:u,buttonSolidCheckedBg:d,buttonSolidCheckedHoverBg:f,buttonSolidCheckedActiveBg:p,buttonBg:l,buttonCheckedBg:l,buttonColor:i,buttonCheckedBgDisabled:s,buttonCheckedColorDisabled:c,buttonPaddingInline:n-o,wrapperMarginInlineEnd:r,radioColor:t?d:m,radioBgColor:t?l:d}},{unitless:{radioSize:!0,dotSize:!0}});var ua=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let ui=p.forwardRef((e,t)=>{var n,r;let o=p.useContext(s6),a=p.useContext(s5),{getPrefixCls:i,direction:l,radio:c}=p.useContext(A.QO),s=p.useRef(null),u=(0,_.K4)(t,s),{isFormItemInput:d}=p.useContext(oD.$W),{prefixCls:f,className:m,rootClassName:g,children:v,style:b,title:y}=e,x=ua(e,["prefixCls","className","rootClassName","children","style","title"]),$=i("radio",f),w="button"===((null==o?void 0:o.optionType)||a),C=w?`${$}-button`:$,S=(0,eh.A)($),[k,E,O]=uo($,S),M=Object.assign({},x),N=p.useContext(tp.A);o&&(M.name=o.name,M.onChange=t=>{var n,r;null==(n=e.onChange)||n.call(e,t),null==(r=null==o?void 0:o.onChange)||r.call(o,t)},M.checked=e.value===o.value,M.disabled=null!=(n=M.disabled)?n:o.disabled),M.disabled=null!=(r=M.disabled)?r:N;let I=h()(`${C}-wrapper`,{[`${C}-wrapper-checked`]:M.checked,[`${C}-wrapper-disabled`]:M.disabled,[`${C}-wrapper-rtl`]:"rtl"===l,[`${C}-wrapper-in-form-item`]:d,[`${C}-wrapper-block`]:!!(null==o?void 0:o.block)},null==c?void 0:c.className,m,g,E,O,S),[j,z]=ur(M.onClick);return k(p.createElement(ut.A,{component:"Radio",disabled:M.disabled},p.createElement("label",{className:I,style:Object.assign(Object.assign({},null==c?void 0:c.style),b),onMouseEnter:e.onMouseEnter,onMouseLeave:e.onMouseLeave,title:y,onClick:j},p.createElement(ue,Object.assign({},M,{className:h()(M.className,{[un.D]:!w}),type:"radio",prefixCls:C,ref:u,onClick:z})),void 0!==v?p.createElement("span",null,v):null)))}),ul=p.forwardRef((e,t)=>{let{getPrefixCls:n,direction:r}=p.useContext(A.QO),{prefixCls:o,className:a,rootClassName:i,options:l,buttonStyle:c="outline",disabled:s,children:u,size:d,style:f,id:m,optionType:g,name:v,defaultValue:b,value:y,block:x=!1,onChange:$,onMouseEnter:w,onMouseLeave:C,onFocus:S,onBlur:k}=e,[E,O]=(0,rs.A)(b,{value:y}),M=p.useCallback(t=>{let n=t.target.value;"value"in e||O(n),n!==E&&(null==$||$(t))},[E,O,$]),N=n("radio",o),I=`${N}-group`,j=(0,eh.A)(N),[z,R,P]=uo(N,j),T=u;l&&l.length>0&&(T=l.map(e=>"string"==typeof e||"number"==typeof e?p.createElement(ui,{key:e.toString(),prefixCls:N,disabled:s,value:e,checked:E===e},e):p.createElement(ui,{key:`radio-group-value-options-${e.value}`,prefixCls:N,disabled:e.disabled||s,value:e.value,checked:E===e.value,title:e.title,style:e.style,id:e.id,required:e.required},e.label)));let D=(0,oT.A)(d),L=h()(I,`${I}-${c}`,{[`${I}-${D}`]:D,[`${I}-rtl`]:"rtl"===r,[`${I}-block`]:x},a,i,R,P,j),B=p.useMemo(()=>({onChange:M,value:E,disabled:s,name:v,optionType:g,block:x}),[M,E,s,v,g,x]);return z(p.createElement("div",Object.assign({},(0,H.A)(e,{aria:!0,data:!0}),{className:L,style:f,onMouseEnter:w,onMouseLeave:C,onFocus:S,onBlur:k,id:m,ref:t}),p.createElement(s8,{value:B},T)))}),uc=p.memo(ul);var us=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let uu=p.forwardRef((e,t)=>{let{getPrefixCls:n}=p.useContext(A.QO),{prefixCls:r}=e,o=us(e,["prefixCls"]),a=n("radio",r);return p.createElement(s7,{value:"button"},p.createElement(ui,Object.assign({prefixCls:a},o,{type:"radio",ref:t})))});function ud(e){let{fullscreen:t,validRange:n,generateConfig:r,locale:o,prefixCls:a,value:i,onChange:l,divRef:c}=e,s=r.getYear(i||r.getNow()),u=s-10,d=u+20;n&&(u=r.getYear(n[0]),d=r.getYear(n[1])+1);let f=o&&"年"===o.year?"年":"",m=[];for(let e=u;e{let t=r.setYear(i,e);if(n){let[e,o]=n,a=r.getYear(t),i=r.getMonth(t);a===r.getYear(o)&&i>r.getMonth(o)&&(t=r.setMonth(t,r.getMonth(o))),a===r.getYear(e)&&ic.current})}function uf(e){let{prefixCls:t,fullscreen:n,validRange:r,value:o,generateConfig:a,locale:i,onChange:l,divRef:c}=e,s=a.getMonth(o||a.getNow()),u=0,d=11;if(r){let[e,t]=r,n=a.getYear(o);a.getYear(t)===n&&(d=a.getMonth(t)),a.getYear(e)===n&&(u=a.getMonth(e))}let f=i.shortMonths||a.locale.getShortMonths(i.locale),m=[];for(let e=u;e<=d;e+=1)m.push({label:f[e],value:e});return p.createElement(ap,{size:n?void 0:"small",className:`${t}-month-select`,value:s,options:m,onChange:e=>{l(a.setMonth(o,e))},getPopupContainer:()=>c.current})}function up(e){let{prefixCls:t,locale:n,mode:r,fullscreen:o,onModeChange:a}=e;return p.createElement(uc,{onChange:e=>{let{target:{value:t}}=e;a(t)},value:r,size:o?void 0:"small",className:`${t}-mode-switch`},p.createElement(uu,{value:"month"},n.month),p.createElement(uu,{value:"year"},n.year))}let um=function(e){let{prefixCls:t,fullscreen:n,mode:r,onChange:o,onModeChange:a}=e,i=p.useRef(null),l=(0,p.useContext)(oD.$W),c=(0,p.useMemo)(()=>Object.assign(Object.assign({},l),{isFormItemInput:!1}),[l]),s=Object.assign(Object.assign({},e),{fullscreen:n,divRef:i});return p.createElement("div",{className:`${t}-header`,ref:i},p.createElement(oD.$W.Provider,{value:c},p.createElement(ud,Object.assign({},s,{onChange:e=>{o(e,"year")}})),"month"===r&&p.createElement(uf,Object.assign({},s,{onChange:e=>{o(e,"month")}}))),p.createElement(up,Object.assign({},s,{onModeChange:a})))};var ug=n(24685);let uh=e=>{let{componentCls:t,pickerCellCls:n,pickerCellInnerCls:r,pickerYearMonthCellWidth:o,pickerControlIconSize:a,cellWidth:i,paddingSM:l,paddingXS:c,paddingXXS:s,colorBgContainer:u,lineWidth:d,lineType:f,borderRadiusLG:p,colorPrimary:m,colorTextHeading:g,colorSplit:h,pickerControlIconBorderWidth:v,colorIcon:b,textHeight:y,motionDurationMid:x,colorIconHover:$,fontWeightStrong:A,cellHeight:w,pickerCellPaddingVertical:C,colorTextDisabled:S,colorText:k,fontSize:E,motionDurationSlow:O,withoutTimeCellHeight:M,pickerQuarterPanelContentHeight:N,borderRadiusSM:I,colorTextLightSolid:j,cellHoverBg:z,timeColumnHeight:R,timeColumnWidth:P,timeCellHeight:T,controlItemBgActive:D,marginXXS:L,pickerDatePanelPaddingHorizontal:B,pickerControlIconMargin:F}=e;return{[t]:{"&-panel":{display:"inline-flex",flexDirection:"column",textAlign:"center",background:u,borderRadius:p,outline:"none","&-focused":{borderColor:m},"&-rtl":{[`${t}-prev-icon, - ${t}-super-prev-icon`]:{transform:"rotate(45deg)"},[`${t}-next-icon, - ${t}-super-next-icon`]:{transform:"rotate(-135deg)"},[`${t}-time-panel`]:{[`${t}-content`]:{direction:"ltr","> *":{direction:"rtl"}}}}},[`&-decade-panel, - &-year-panel, - &-quarter-panel, - &-month-panel, - &-week-panel, - &-date-panel, - &-time-panel`]:{display:"flex",flexDirection:"column",width:e.calc(i).mul(7).add(e.calc(B).mul(2)).equal()},"&-header":{display:"flex",padding:`0 ${(0,q.zA)(c)}`,color:g,borderBottom:`${(0,q.zA)(d)} ${f} ${h}`,"> *":{flex:"none"},button:{padding:0,color:b,lineHeight:(0,q.zA)(y),background:"transparent",border:0,cursor:"pointer",transition:`color ${x}`,fontSize:"inherit",display:"inline-flex",alignItems:"center",justifyContent:"center"},"> button":{minWidth:"1.6em",fontSize:E,"&:hover":{color:$},"&:disabled":{opacity:.25,pointerEvents:"none"}},"&-view":{flex:"auto",fontWeight:A,lineHeight:(0,q.zA)(y),"> button":{color:"inherit",fontWeight:"inherit","&:not(:first-child)":{marginInlineStart:c},"&:hover":{color:m}}}},[`&-prev-icon, - &-next-icon, - &-super-prev-icon, - &-super-next-icon`]:{position:"relative",width:a,height:a,"&::before":{position:"absolute",top:0,insetInlineStart:0,width:a,height:a,border:"0 solid currentcolor",borderBlockWidth:`${(0,q.zA)(v)} 0`,borderInlineWidth:`${(0,q.zA)(v)} 0`,content:'""'}},[`&-super-prev-icon, - &-super-next-icon`]:{"&::after":{position:"absolute",top:F,insetInlineStart:F,display:"inline-block",width:a,height:a,border:"0 solid currentcolor",borderBlockWidth:`${(0,q.zA)(v)} 0`,borderInlineWidth:`${(0,q.zA)(v)} 0`,content:'""'}},"&-prev-icon, &-super-prev-icon":{transform:"rotate(-45deg)"},"&-next-icon, &-super-next-icon":{transform:"rotate(135deg)"},"&-content":{width:"100%",tableLayout:"fixed",borderCollapse:"collapse","th, td":{position:"relative",minWidth:w,fontWeight:"normal"},th:{height:e.calc(w).add(e.calc(C).mul(2)).equal(),color:k,verticalAlign:"middle"}},"&-cell":Object.assign({padding:`${(0,q.zA)(C)} 0`,color:S,cursor:"pointer","&-in-view":{color:k}},(e=>{let{pickerCellCls:t,pickerCellInnerCls:n,cellHeight:r,borderRadiusSM:o,motionDurationMid:a,cellHoverBg:i,lineWidth:l,lineType:c,colorPrimary:s,cellActiveWithRangeBg:u,colorTextLightSolid:d,colorTextDisabled:f,cellBgDisabled:p,colorFillSecondary:m}=e;return{"&::before":{position:"absolute",top:"50%",insetInlineStart:0,insetInlineEnd:0,zIndex:1,height:r,transform:"translateY(-50%)",content:'""',pointerEvents:"none"},[n]:{position:"relative",zIndex:2,display:"inline-block",minWidth:r,height:r,lineHeight:(0,q.zA)(r),borderRadius:o,transition:`background ${a}`},[`&:hover:not(${t}-in-view):not(${t}-disabled), - &:hover:not(${t}-selected):not(${t}-range-start):not(${t}-range-end):not(${t}-disabled)`]:{[n]:{background:i}},[`&-in-view${t}-today ${n}`]:{"&::before":{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,zIndex:1,border:`${(0,q.zA)(l)} ${c} ${s}`,borderRadius:o,content:'""'}},[`&-in-view${t}-in-range, - &-in-view${t}-range-start, - &-in-view${t}-range-end`]:{position:"relative",[`&:not(${t}-disabled):before`]:{background:u}},[`&-in-view${t}-selected, - &-in-view${t}-range-start, - &-in-view${t}-range-end`]:{[`&:not(${t}-disabled) ${n}`]:{color:d,background:s},[`&${t}-disabled ${n}`]:{background:m}},[`&-in-view${t}-range-start:not(${t}-disabled):before`]:{insetInlineStart:"50%"},[`&-in-view${t}-range-end:not(${t}-disabled):before`]:{insetInlineEnd:"50%"},[`&-in-view${t}-range-start:not(${t}-range-end) ${n}`]:{borderStartStartRadius:o,borderEndStartRadius:o,borderStartEndRadius:0,borderEndEndRadius:0},[`&-in-view${t}-range-end:not(${t}-range-start) ${n}`]:{borderStartStartRadius:0,borderEndStartRadius:0,borderStartEndRadius:o,borderEndEndRadius:o},"&-disabled":{color:f,cursor:"not-allowed",[n]:{background:"transparent"},"&::before":{background:p}},[`&-disabled${t}-today ${n}::before`]:{borderColor:f}}})(e)),[`&-decade-panel, - &-year-panel, - &-quarter-panel, - &-month-panel`]:{[`${t}-content`]:{height:e.calc(M).mul(4).equal()},[r]:{padding:`0 ${(0,q.zA)(c)}`}},"&-quarter-panel":{[`${t}-content`]:{height:N}},"&-decade-panel":{[r]:{padding:`0 ${(0,q.zA)(e.calc(c).div(2).equal())}`},[`${t}-cell::before`]:{display:"none"}},[`&-year-panel, - &-quarter-panel, - &-month-panel`]:{[`${t}-body`]:{padding:`0 ${(0,q.zA)(c)}`},[r]:{width:o}},"&-date-panel":{[`${t}-body`]:{padding:`${(0,q.zA)(c)} ${(0,q.zA)(B)}`},[`${t}-content th`]:{boxSizing:"border-box",padding:0}},"&-week-panel":{[`${t}-cell`]:{[`&:hover ${r}, - &-selected ${r}, - ${r}`]:{background:"transparent !important"}},"&-row":{td:{"&:before":{transition:`background ${x}`},"&:first-child:before":{borderStartStartRadius:I,borderEndStartRadius:I},"&:last-child:before":{borderStartEndRadius:I,borderEndEndRadius:I}},"&:hover td:before":{background:z},"&-range-start td, &-range-end td, &-selected td, &-hover td":{[`&${n}`]:{"&:before":{background:m},[`&${t}-cell-week`]:{color:new ts.q(j).setAlpha(.5).toHexString()},[r]:{color:j}}},"&-range-hover td:before":{background:D}}},"&-week-panel, &-date-panel-show-week":{[`${t}-body`]:{padding:`${(0,q.zA)(c)} ${(0,q.zA)(l)}`},[`${t}-content th`]:{width:"auto"}},"&-datetime-panel":{display:"flex",[`${t}-time-panel`]:{borderInlineStart:`${(0,q.zA)(d)} ${f} ${h}`},[`${t}-date-panel, - ${t}-time-panel`]:{transition:`opacity ${O}`},"&-active":{[`${t}-date-panel, - ${t}-time-panel`]:{opacity:.3,"&-active":{opacity:1}}}},"&-time-panel":{width:"auto",minWidth:"auto",[`${t}-content`]:{display:"flex",flex:"auto",height:R},"&-column":{flex:"1 0 auto",width:P,margin:`${(0,q.zA)(s)} 0`,padding:0,overflowY:"hidden",textAlign:"start",listStyle:"none",transition:`background ${x}`,overflowX:"hidden","&::-webkit-scrollbar":{width:8,backgroundColor:"transparent"},"&::-webkit-scrollbar-thumb":{backgroundColor:e.colorTextTertiary,borderRadius:e.borderRadiusSM},"&":{scrollbarWidth:"thin",scrollbarColor:`${e.colorTextTertiary} transparent`},"&::after":{display:"block",height:`calc(100% - ${(0,q.zA)(T)})`,content:'""'},"&:not(:first-child)":{borderInlineStart:`${(0,q.zA)(d)} ${f} ${h}`},"&-active":{background:new ts.q(D).setAlpha(.2).toHexString()},"&:hover":{overflowY:"auto"},"> li":{margin:0,padding:0,[`&${t}-time-panel-cell`]:{marginInline:L,[`${t}-time-panel-cell-inner`]:{display:"block",width:e.calc(P).sub(e.calc(L).mul(2)).equal(),height:T,margin:0,paddingBlock:0,paddingInlineEnd:0,paddingInlineStart:e.calc(P).sub(T).div(2).equal(),color:k,lineHeight:(0,q.zA)(T),borderRadius:I,cursor:"pointer",transition:`background ${x}`,"&:hover":{background:z}},"&-selected":{[`${t}-time-panel-cell-inner`]:{background:D}},"&-disabled":{[`${t}-time-panel-cell-inner`]:{color:S,background:"transparent",cursor:"not-allowed"}}}}}}}}};var uv=n(44335);let ub=e=>{let{componentCls:t,controlHeightLG:n,paddingXXS:r,padding:o}=e;return{pickerCellCls:`${t}-cell`,pickerCellInnerCls:`${t}-cell-inner`,pickerYearMonthCellWidth:e.calc(n).mul(1.5).equal(),pickerQuarterPanelContentHeight:e.calc(n).mul(1.4).equal(),pickerCellPaddingVertical:e.calc(r).add(e.calc(r).div(2)).equal(),pickerCellBorderGap:2,pickerControlIconSize:7,pickerControlIconMargin:4,pickerControlIconBorderWidth:1.5,pickerDatePanelPaddingHorizontal:e.calc(o).add(e.calc(r).div(2)).equal()}},uy=e=>{let{colorBgContainerDisabled:t,controlHeight:n,controlHeightSM:r,controlHeightLG:o,paddingXXS:a,lineWidth:i}=e,l=2*a,c=2*i,s=Math.min(n-l,n-c),u=Math.min(r-l,r-c),d=Math.min(o-l,o-c);return{INTERNAL_FIXED_ITEM_MARGIN:Math.floor(a/2),cellHoverBg:e.controlItemBgHover,cellActiveWithRangeBg:e.controlItemBgActive,cellHoverWithRangeBg:new ts.q(e.colorPrimary).lighten(35).toHexString(),cellRangeBorderColor:new ts.q(e.colorPrimary).lighten(20).toHexString(),cellBgDisabled:t,timeColumnWidth:1.4*o,timeColumnHeight:224,timeCellHeight:28,cellWidth:1.5*r,cellHeight:r,textHeight:o,withoutTimeCellHeight:1.65*o,multipleItemBg:e.colorFillSecondary,multipleItemBorderColor:"transparent",multipleItemHeight:s,multipleItemHeightSM:u,multipleItemHeightLG:d,multipleSelectorBgDisabled:t,multipleItemColorDisabled:e.colorTextDisabled,multipleItemBorderColorDisabled:"transparent"}},ux=(0,w.OF)("Calendar",e=>{let t=`${e.componentCls}-calendar`;return[(e=>{let{calendarCls:t,componentCls:n,fullBg:r,fullPanelBg:o,itemActiveBg:a}=e;return{[t]:Object.assign(Object.assign(Object.assign({},uh(e)),(0,V.dF)(e)),{background:r,"&-rtl":{direction:"rtl"},[`${t}-header`]:{display:"flex",justifyContent:"flex-end",padding:`${(0,q.zA)(e.paddingSM)} 0`,[`${t}-year-select`]:{minWidth:e.yearControlWidth},[`${t}-month-select`]:{minWidth:e.monthControlWidth,marginInlineStart:e.marginXS},[`${t}-mode-switch`]:{marginInlineStart:e.marginXS}}}),[`${t} ${n}-panel`]:{background:o,border:0,borderTop:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,borderRadius:0,[`${n}-month-panel, ${n}-date-panel`]:{width:"auto"},[`${n}-body`]:{padding:`${(0,q.zA)(e.paddingXS)} 0`},[`${n}-content`]:{width:"100%"}},[`${t}-mini`]:{borderRadius:e.borderRadiusLG,[`${t}-header`]:{paddingInlineEnd:e.paddingXS,paddingInlineStart:e.paddingXS},[`${n}-panel`]:{borderRadius:`0 0 ${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)}`},[`${n}-content`]:{height:e.miniContentHeight,th:{height:"auto",padding:0,lineHeight:(0,q.zA)(e.weekHeight)}},[`${n}-cell::before`]:{pointerEvents:"none"}},[`${t}${t}-full`]:{[`${n}-panel`]:{display:"block",width:"100%",textAlign:"end",background:r,border:0,[`${n}-body`]:{"th, td":{padding:0},th:{height:"auto",paddingInlineEnd:e.paddingSM,paddingBottom:e.paddingXXS,lineHeight:(0,q.zA)(e.weekHeight)}}},[`${n}-cell`]:{"&::before":{display:"none"},"&:hover":{[`${t}-date`]:{background:e.controlItemBgHover}},[`${t}-date-today::before`]:{display:"none"},[`&-in-view${n}-cell-selected`]:{[`${t}-date, ${t}-date-today`]:{background:a}},"&-selected, &-selected:hover":{[`${t}-date, ${t}-date-today`]:{[`${t}-date-value`]:{color:e.colorPrimary}}}},[`${t}-date`]:{display:"block",width:"auto",height:"auto",margin:`0 ${(0,q.zA)(e.calc(e.marginXS).div(2).equal())}`,padding:`${(0,q.zA)(e.calc(e.paddingXS).div(2).equal())} ${(0,q.zA)(e.paddingXS)} 0`,border:0,borderTop:`${(0,q.zA)(e.lineWidthBold)} ${e.lineType} ${e.colorSplit}`,borderRadius:0,transition:`background ${e.motionDurationSlow}`,"&-value":{lineHeight:(0,q.zA)(e.dateValueHeight),transition:`color ${e.motionDurationSlow}`},"&-content":{position:"static",width:"auto",height:e.dateContentHeight,overflowY:"auto",color:e.colorText,lineHeight:e.lineHeight,textAlign:"start"},"&-today":{borderColor:e.colorPrimary,[`${t}-date-value`]:{color:e.colorText}}}},[`@media only screen and (max-width: ${(0,q.zA)(e.screenXS)}) `]:{[t]:{[`${t}-header`]:{display:"block",[`${t}-year-select`]:{width:"50%"},[`${t}-month-select`]:{width:`calc(50% - ${(0,q.zA)(e.paddingXS)})`},[`${t}-mode-switch`]:{width:"100%",marginTop:e.marginXS,marginInlineStart:0,"> label":{width:"50%",textAlign:"center"}}}}}}})((0,ey.oX)(e,ub(e),{calendarCls:t,pickerCellInnerCls:`${e.componentCls}-cell-inner`,dateValueHeight:e.controlHeightSM,weekHeight:e.calc(e.controlHeightSM).mul(.75).equal(),dateContentHeight:e.calc(e.calc(e.fontHeightSM).add(e.marginXS)).mul(3).add(e.calc(e.lineWidth).mul(2)).equal()}))]},e=>Object.assign({fullBg:e.colorBgContainer,fullPanelBg:e.colorBgContainer,itemActiveBg:e.controlItemBgActive,yearControlWidth:80,monthControlWidth:70,miniContentHeight:256},uy(e))),u$=(e,t,n)=>{let{getYear:r}=n;return e&&t&&r(e)===r(t)},uA=(e,t,n)=>{let{getMonth:r}=n;return u$(e,t,n)&&r(e)===r(t)},uw=(e,t,n)=>{let{getDate:r}=n;return uA(e,t,n)&&r(e)===r(t)},uC=e=>t=>{let{prefixCls:n,className:r,rootClassName:o,style:a,dateFullCellRender:i,dateCellRender:l,monthFullCellRender:c,monthCellRender:s,cellRender:u,fullCellRender:d,headerRender:f,value:m,defaultValue:g,disabledDate:v,mode:b,validRange:y,fullscreen:x=!0,onChange:$,onPanelChange:w,onSelect:C}=t,{getPrefixCls:S,direction:k,calendar:E}=p.useContext(A.QO),O=S("picker",n),M=`${O}-calendar`,[N,I,j]=ux(O,M),z=e.getNow(),[R,P]=(0,rs.A)(()=>m||e.getNow(),{defaultValue:g,value:m}),[T,D]=(0,rs.A)("month",{value:b}),L=p.useMemo(()=>"year"===T?"month":"date",[T]),B=p.useCallback(t=>!!y&&(e.isAfter(y[0],t)||e.isAfter(t,y[1]))||!!(null==v?void 0:v(t)),[v,y]),F=(e,t)=>{null==w||w(e,t)},H=e=>{D(e),F(R,e)},_=(t,n)=>{P(t),uw(t,R,e)||(("date"!==L||uA(t,R,e))&&("month"!==L||u$(t,R,e))||F(t,T),null==$||$(t)),null==C||C(t,{source:n})},W=p.useCallback((t,n)=>d?d(t,n):i?i(t):p.createElement("div",{className:h()(`${O}-cell-inner`,`${M}-date`,{[`${M}-date-today`]:uw(z,t,e)})},p.createElement("div",{className:`${M}-date-value`},String(e.getDate(t)).padStart(2,"0")),p.createElement("div",{className:`${M}-date-content`},u?u(t,n):null==l?void 0:l(t))),[i,l,u,d]),q=p.useCallback((t,n)=>{if(d)return d(t,n);if(c)return c(t);let r=n.locale.shortMonths||e.locale.getShortMonths(n.locale.locale);return p.createElement("div",{className:h()(`${O}-cell-inner`,`${M}-date`,{[`${M}-date-today`]:uA(z,t,e)})},p.createElement("div",{className:`${M}-date-value`},r[e.getMonth(t)]),p.createElement("div",{className:`${M}-date-content`},u?u(t,n):null==s?void 0:s(t)))},[c,s,u,d]),[V]=(0,tI.A)("Calendar",ug.A),K=Object.assign(Object.assign({},V),t.locale);return N(p.createElement("div",{className:h()(M,{[`${M}-full`]:x,[`${M}-mini`]:!x,[`${M}-rtl`]:"rtl"===k},null==E?void 0:E.className,r,o,I,j),style:Object.assign(Object.assign({},null==E?void 0:E.style),a)},f?f({value:R,type:T,onChange:e=>{_(e,"customize")},onTypeChange:H}):p.createElement(um,{prefixCls:M,value:R,generateConfig:e,mode:T,fullscreen:x,locale:null==K?void 0:K.lang,validRange:y,onChange:_,onModeChange:H}),p.createElement(sj,{value:R,prefixCls:O,locale:null==K?void 0:K.lang,generateConfig:e,cellRender:(e,t)=>"date"===t.type?W(e,t):"month"===t.type?q(e,Object.assign(Object.assign({},t),{locale:null==K?void 0:K.lang})):void 0,onSelect:e=>{_(e,L)},mode:L,picker:L,disabledDate:B,hideHeader:!0})))},uS=uC(cC);uS.generateCalendar=uC;let uk=uS,uE={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z"}},{tag:"path",attrs:{d:"M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z"}}]},name:"plus",theme:"outlined"};var uO=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:uE}))});let uM=(0,p.createContext)(null),uN=function(e){var t=e.activeTabOffset,n=e.horizontal,r=e.rtl,o=e.indicator,a=void 0===o?{}:o,i=a.size,l=a.align,c=void 0===l?"center":l,s=(0,p.useState)(),u=(0,eE.A)(s,2),d=u[0],f=u[1],g=(0,p.useRef)(),h=m().useCallback(function(e){return"function"==typeof i?i(e):"number"==typeof i?i:e},[i]);function v(){x.A.cancel(g.current)}return(0,p.useEffect)(function(){var e={};if(t)if(n){e.width=h(t.width);var o=r?"right":"left";"start"===c&&(e[o]=t[o]),"center"===c&&(e[o]=t[o]+t.width/2,e.transform=r?"translateX(50%)":"translateX(-50%)"),"end"===c&&(e[o]=t[o]+t.width,e.transform="translateX(-100%)")}else e.height=h(t.height),"start"===c&&(e.top=t.top),"center"===c&&(e.top=t.top+t.height/2,e.transform="translateY(-50%)"),"end"===c&&(e.top=t.top+t.height,e.transform="translateY(-100%)");return v(),g.current=(0,x.A)(function(){f(e)}),v},[t,n,r,c,h]),{style:d}};var uI={width:0,height:0,left:0,top:0};function uj(e,t){var n=p.useRef(e),r=p.useState({}),o=(0,eE.A)(r,2)[1];return[n.current,function(e){var r="function"==typeof e?e(n.current):e;r!==n.current&&t(r,n.current),n.current=r,o({})}]}function uz(e){var t=(0,p.useState)(0),n=(0,eE.A)(t,2),r=n[0],o=n[1],a=(0,p.useRef)(0),i=(0,p.useRef)();return i.current=e,(0,rf.o)(function(){var e;null==(e=i.current)||e.call(i)},[r]),function(){a.current===r&&(a.current+=1,o(a.current))}}var uR={width:0,height:0,left:0,top:0,right:0};function uP(e){var t;return e instanceof Map?(t={},e.forEach(function(e,n){t[n]=e})):t=e,JSON.stringify(t)}function uT(e){return String(e).replace(/"/g,"TABS_DQ")}function uD(e,t,n,r){return!!n&&!r&&!1!==e&&(void 0!==e||!1!==t&&null!==t)}var uL=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.editable,o=e.locale,a=e.style;return r&&!1!==r.showAdd?p.createElement("button",{ref:t,type:"button",className:"".concat(n,"-nav-add"),style:a,"aria-label":(null==o?void 0:o.addAriaLabel)||"Add tab",onClick:function(e){r.onEdit("add",{event:e})}},r.addIcon||"+"):null}),uB=p.forwardRef(function(e,t){var n,r=e.position,o=e.prefixCls,a=e.extra;if(!a)return null;var i={};return"object"!==(0,ez.A)(a)||p.isValidElement(a)?i.right=a:i=a,"right"===r&&(n=i.right),"left"===r&&(n=i.left),n?p.createElement("div",{className:"".concat(o,"-extra-content"),ref:t},n):null}),uF=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.id,o=e.tabs,a=e.locale,i=e.mobile,l=e.more,c=void 0===l?{}:l,s=e.style,u=e.className,d=e.editable,f=e.tabBarGutter,m=e.rtl,g=e.removeAriaLabel,v=e.onTabClick,b=e.getPopupContainer,y=e.popupClassName,x=(0,p.useState)(!1),$=(0,eE.A)(x,2),A=$[0],w=$[1],C=(0,p.useState)(null),S=(0,eE.A)(C,2),k=S[0],E=S[1],O=c.icon,M="".concat(r,"-more-popup"),N="".concat(n,"-dropdown"),I=null!==k?"".concat(M,"-").concat(k):null,j=null==a?void 0:a.dropdownAriaLabel,z=p.createElement(lv,{onClick:function(e){v(e.key,e.domEvent),w(!1)},prefixCls:"".concat(N,"-menu"),id:M,tabIndex:-1,role:"listbox","aria-activedescendant":I,selectedKeys:[k],"aria-label":void 0!==j?j:"expanded dropdown"},o.map(function(e){var t=e.closable,n=e.disabled,o=e.closeIcon,a=e.key,i=e.label,l=uD(t,o,d,n);return p.createElement(i3,{key:a,id:"".concat(M,"-").concat(a),role:"option","aria-controls":r&&"".concat(r,"-panel-").concat(a),disabled:n},p.createElement("span",null,i),l&&p.createElement("button",{type:"button","aria-label":g||"remove",tabIndex:0,className:"".concat(N,"-menu-item-remove"),onClick:function(e){e.stopPropagation(),e.preventDefault(),e.stopPropagation(),d.onEdit("remove",{key:a,event:e})}},o||d.removeIcon||"\xd7"))}));function P(e){for(var t=o.filter(function(e){return!e.disabled}),n=t.findIndex(function(e){return e.key===k})||0,r=t.length,a=0;aMath.abs(l-n)?[l,c,s-t.left,u-t.top]:[n,r,a,o]},uq=function(e){var t=e.current||{},n=t.offsetWidth,r=void 0===n?0:n,o=t.offsetHeight;if(e.current){var a=e.current.getBoundingClientRect(),i=a.width,l=a.height;if(1>Math.abs(i-r))return[i,l]}return[r,void 0===o?0:o]},uV=function(e,t){return e[+!t]},uK=p.forwardRef(function(e,t){var n,r,o,a,i,l,c,s,u,d,f,m,g,b,x,$,A,w,C,S,k,E,O,M,N,I,j,z,P,T,D,L,B,F,H,W,q,V,K,X=e.className,Y=e.style,U=e.id,G=e.animated,Q=e.activeKey,Z=e.rtl,J=e.extra,ee=e.editable,et=e.locale,en=e.tabPosition,er=e.tabBarGutter,eo=e.children,ei=e.onTabClick,el=e.onTabScroll,ec=e.indicator,es=p.useContext(uM),eu=es.prefixCls,ed=es.tabs,ef=(0,p.useRef)(null),ep=(0,p.useRef)(null),em=(0,p.useRef)(null),eg=(0,p.useRef)(null),eh=(0,p.useRef)(null),ev=(0,p.useRef)(null),eb=(0,p.useRef)(null),ey="top"===en||"bottom"===en,ex=uj(0,function(e,t){ey&&el&&el({direction:e>t?"left":"right"})}),e$=(0,eE.A)(ex,2),eA=e$[0],ew=e$[1],eC=uj(0,function(e,t){!ey&&el&&el({direction:e>t?"top":"bottom"})}),eS=(0,eE.A)(eC,2),ek=eS[0],eO=eS[1],eN=(0,p.useState)([0,0]),eI=(0,eE.A)(eN,2),ez=eI[0],eR=eI[1],eP=(0,p.useState)([0,0]),eT=(0,eE.A)(eP,2),eD=eT[0],eL=eT[1],eB=(0,p.useState)([0,0]),eF=(0,eE.A)(eB,2),eH=eF[0],e_=eF[1],eW=(0,p.useState)([0,0]),eq=(0,eE.A)(eW,2),eV=eq[0],eK=eq[1],eX=(n=new Map,r=(0,p.useRef)([]),o=(0,p.useState)({}),a=(0,eE.A)(o,2)[1],i=(0,p.useRef)("function"==typeof n?n():n),l=uz(function(){var e=i.current;r.current.forEach(function(t){e=t(e)}),r.current=[],i.current=e,a({})}),[i.current,function(e){r.current.push(e),l()}]),eY=(0,eE.A)(eX,2),eU=eY[0],eG=eY[1],eQ=(c=eD[0],(0,p.useMemo)(function(){for(var e=new Map,t=eU.get(null==(o=ed[0])?void 0:o.key)||uI,n=t.left+t.width,r=0;re8?e8:e}ey&&Z?(e6=0,e8=Math.max(0,eJ-e4)):(e6=Math.min(0,e4-eJ),e8=0);var e7=(0,p.useRef)(null),e9=(0,p.useState)(),te=(0,eE.A)(e9,2),tt=te[0],tn=te[1];function tr(){tn(Date.now())}function to(){e7.current&&clearTimeout(e7.current)}s=function(e,t){function n(e,t){e(function(e){return e5(e+t)})}return!!e2&&(ey?n(ew,e):n(eO,t),to(),tr(),!0)},u=(0,p.useState)(),f=(d=(0,eE.A)(u,2))[0],m=d[1],g=(0,p.useState)(0),x=(b=(0,eE.A)(g,2))[0],$=b[1],A=(0,p.useState)(0),C=(w=(0,eE.A)(A,2))[0],S=w[1],k=(0,p.useState)(),O=(E=(0,eE.A)(k,2))[0],M=E[1],N=(0,p.useRef)(),I=(0,p.useRef)(),(j=(0,p.useRef)(null)).current={onTouchStart:function(e){var t=e.touches[0];m({x:t.screenX,y:t.screenY}),window.clearInterval(N.current)},onTouchMove:function(e){if(f){var t=e.touches[0],n=t.screenX,r=t.screenY;m({x:n,y:r});var o=n-f.x,a=r-f.y;s(o,a);var i=Date.now();$(i),S(i-x),M({x:o,y:a})}},onTouchEnd:function(){if(f&&(m(null),M(null),O)){var e=O.x/C,t=O.y/C;if(!(.1>Math.max(Math.abs(e),Math.abs(t)))){var n=e,r=t;N.current=window.setInterval(function(){.01>Math.abs(n)&&.01>Math.abs(r)?window.clearInterval(N.current):(n*=.9046104802746175,r*=.9046104802746175,s(20*n,20*r))},20)}}},onWheel:function(e){var t=e.deltaX,n=e.deltaY,r=0,o=Math.abs(t),a=Math.abs(n);o===a?r="x"===I.current?t:n:o>a?(r=t,I.current="x"):(r=n,I.current="y"),s(-r,-r)&&e.preventDefault()}},p.useEffect(function(){function e(e){j.current.onTouchMove(e)}function t(e){j.current.onTouchEnd(e)}return document.addEventListener("touchmove",e,{passive:!1}),document.addEventListener("touchend",t,{passive:!0}),eg.current.addEventListener("touchstart",function(e){j.current.onTouchStart(e)},{passive:!0}),eg.current.addEventListener("wheel",function(e){j.current.onWheel(e)},{passive:!1}),function(){document.removeEventListener("touchmove",e),document.removeEventListener("touchend",t)}},[]),(0,p.useEffect)(function(){return to(),tt&&(e7.current=setTimeout(function(){tn(0)},100)),to},[tt]);var ta=(z=ey?eA:ek,B=(P=(0,eM.A)((0,eM.A)({},e),{},{tabs:ed})).tabs,F=P.tabPosition,H=P.rtl,["top","bottom"].includes(F)?(T="width",D=H?"right":"left",L=Math.abs(z)):(T="height",D="top",L=-z),(0,p.useMemo)(function(){if(!B.length)return[0,0];for(var e=B.length,t=e,n=0;nMath.floor(L+e4)){t=n-1;break}}for(var o=0,a=e-1;a>=0;a-=1)if((eQ.get(B[a].key)||uR)[D]=t?[0,0]:[o,t]},[eQ,e4,eJ,e0,e1,L,F,B.map(function(e){return e.key}).join("_"),H])),ti=(0,eE.A)(ta,2),tl=ti[0],tc=ti[1],ts=(0,ea.A)(function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Q,t=eQ.get(e)||{width:0,height:0,left:0,right:0,top:0};if(ey){var n=eA;Z?t.righteA+e4&&(n=t.right+t.width-e4):t.left<-eA?n=-t.left:t.left+t.width>-eA+e4&&(n=-(t.left+t.width-e4)),eO(0),ew(e5(n))}else{var r=ek;t.top<-ek?r=-t.top:t.top+t.height>-ek+e4&&(r=-(t.top+t.height-e4)),ew(0),eO(e5(r))}}),tu={};"top"===en||"bottom"===en?tu[Z?"marginRight":"marginLeft"]=er:tu.marginTop=er;var td=ed.map(function(e,t){var n=e.key;return p.createElement(u_,{id:U,prefixCls:eu,key:n,tab:e,style:0===t?void 0:tu,closable:e.closable,editable:ee,active:n===Q,renderWrapper:eo,removeAriaLabel:null==et?void 0:et.removeAriaLabel,onClick:function(e){ei(n,e)},onFocus:function(){ts(n),tr(),eg.current&&(Z||(eg.current.scrollLeft=0),eg.current.scrollTop=0)}})}),tf=function(){return eG(function(){var e,t=new Map,n=null==(e=eh.current)?void 0:e.getBoundingClientRect();return ed.forEach(function(e){var r,o=e.key,a=null==(r=eh.current)?void 0:r.querySelector('[data-node-key="'.concat(uT(o),'"]'));if(a){var i=uW(a,n),l=(0,eE.A)(i,4),c=l[0],s=l[1],u=l[2],d=l[3];t.set(o,{width:c,height:s,left:u,top:d})}}),t})};(0,p.useEffect)(function(){tf()},[ed.map(function(e){return e.key}).join("_")]);var tp=uz(function(){var e=uq(ef),t=uq(ep),n=uq(em);eR([e[0]-t[0]-n[0],e[1]-t[1]-n[1]]);var r=uq(eb);e_(r),eK(uq(ev));var o=uq(eh);eL([o[0]-r[0],o[1]-r[1]]),tf()}),tm=ed.slice(0,tl),tg=ed.slice(tc+1),th=[].concat((0,y.A)(tm),(0,y.A)(tg)),tv=eQ.get(Q),tb=uN({activeTabOffset:tv,horizontal:ey,indicator:ec,rtl:Z}).style;(0,p.useEffect)(function(){ts()},[Q,e6,e8,uP(tv),uP(eQ),ey]),(0,p.useEffect)(function(){tp()},[Z]);var ty=!!th.length,tx="".concat(eu,"-nav-wrap");return ey?Z?(q=eA>0,W=eA!==e8):(W=eA<0,q=eA!==e6):(V=ek<0,K=ek!==e6),p.createElement(v.A,{onResize:tp},p.createElement("div",{ref:(0,_.xK)(t,ef),role:"tablist",className:h()("".concat(eu,"-nav"),X),style:Y,onKeyDown:function(){tr()}},p.createElement(uB,{ref:ep,position:"left",extra:J,prefixCls:eu}),p.createElement(v.A,{onResize:tp},p.createElement("div",{className:h()(tx,(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(tx,"-ping-left"),W),"".concat(tx,"-ping-right"),q),"".concat(tx,"-ping-top"),V),"".concat(tx,"-ping-bottom"),K)),ref:eg},p.createElement(v.A,{onResize:tp},p.createElement("div",{ref:eh,className:"".concat(eu,"-nav-list"),style:{transform:"translate(".concat(eA,"px, ").concat(ek,"px)"),transition:tt?"none":void 0}},td,p.createElement(uL,{ref:eb,prefixCls:eu,locale:et,editable:ee,style:(0,eM.A)((0,eM.A)({},0===td.length?void 0:tu),{},{visibility:ty?"hidden":null})}),p.createElement("div",{className:h()("".concat(eu,"-ink-bar"),(0,ej.A)({},"".concat(eu,"-ink-bar-animated"),G.inkBar)),style:tb}))))),p.createElement(uH,(0,R.A)({},e,{removeAriaLabel:null==et?void 0:et.removeAriaLabel,ref:ev,prefixCls:eu,tabs:th,className:!ty&&e3,tabMoving:!!tt})),p.createElement(uB,{ref:em,position:"right",extra:J,prefixCls:eu})))}),uX=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.className,o=e.style,a=e.id,i=e.active,l=e.tabKey,c=e.children;return p.createElement("div",{id:a&&"".concat(a,"-panel-").concat(l),role:"tabpanel",tabIndex:i?0:-1,"aria-labelledby":a&&"".concat(a,"-tab-").concat(l),"aria-hidden":!i,style:o,className:h()(n,i&&"".concat(n,"-active"),r),ref:t},c)}),uY=["renderTabBar"],uU=["label","key"];let uG=function(e){var t=e.renderTabBar,n=(0,eO.A)(e,uY),r=p.useContext(uM).tabs;return t?t((0,eM.A)((0,eM.A)({},n),{},{panes:r.map(function(e){var t=e.label,n=e.key,r=(0,eO.A)(e,uU);return p.createElement(uX,(0,R.A)({tab:t,key:n,tabKey:n},r))})}),uK):p.createElement(uK,n)};var uQ=["key","forceRender","style","className","destroyInactiveTabPane"];let uZ=function(e){var t=e.id,n=e.activeKey,r=e.animated,o=e.tabPosition,a=e.destroyInactiveTabPane,i=p.useContext(uM),l=i.prefixCls,c=i.tabs,s=r.tabPane,u="".concat(l,"-tabpane");return p.createElement("div",{className:h()("".concat(l,"-content-holder"))},p.createElement("div",{className:h()("".concat(l,"-content"),"".concat(l,"-content-").concat(o),(0,ej.A)({},"".concat(l,"-content-animated"),s))},c.map(function(e){var o=e.key,i=e.forceRender,l=e.style,c=e.className,d=e.destroyInactiveTabPane,f=(0,eO.A)(e,uQ),m=o===n;return p.createElement(F.Ay,(0,R.A)({key:o,visible:m,forceRender:i,removeOnLeave:!!(a||d),leavedClassName:"".concat(u,"-hidden")},r.tabPaneMotion),function(e,n){var r=e.style,a=e.className;return p.createElement(uX,(0,R.A)({},f,{prefixCls:u,id:t,tabKey:o,animated:s,active:m,style:(0,eM.A)((0,eM.A)({},l),r),className:h()(c,a),ref:n}))})})))};var uJ=["id","prefixCls","className","items","direction","activeKey","defaultActiveKey","editable","animated","tabPosition","tabBarGutter","tabBarStyle","tabBarExtraContent","locale","more","destroyInactiveTabPane","renderTabBar","onChange","onTabClick","onTabScroll","getPopupContainer","popupClassName","indicator"],u0=0,u1=p.forwardRef(function(e,t){var n=e.id,r=e.prefixCls,o=void 0===r?"rc-tabs":r,a=e.className,i=e.items,l=e.direction,c=e.activeKey,s=e.defaultActiveKey,u=e.editable,d=e.animated,f=e.tabPosition,m=void 0===f?"top":f,g=e.tabBarGutter,v=e.tabBarStyle,b=e.tabBarExtraContent,y=e.locale,x=e.more,$=e.destroyInactiveTabPane,A=e.renderTabBar,w=e.onChange,C=e.onTabClick,S=e.onTabScroll,k=e.getPopupContainer,E=e.popupClassName,O=e.indicator,M=(0,eO.A)(e,uJ),N=p.useMemo(function(){return(i||[]).filter(function(e){return e&&"object"===(0,ez.A)(e)&&"key"in e})},[i]),I="rtl"===l,j=function(){var e,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{inkBar:!0,tabPane:!1};return(e=!1===t?{inkBar:!1,tabPane:!1}:!0===t?{inkBar:!0,tabPane:!1}:(0,eM.A)({inkBar:!0},"object"===(0,ez.A)(t)?t:{})).tabPaneMotion&&void 0===e.tabPane&&(e.tabPane=!0),!e.tabPaneMotion&&e.tabPane&&(e.tabPane=!1),e}(d),z=(0,p.useState)(!1),P=(0,eE.A)(z,2),T=P[0],D=P[1];(0,p.useEffect)(function(){D((0,rp.A)())},[]);var L=(0,rs.A)(function(){var e;return null==(e=N[0])?void 0:e.key},{value:c,defaultValue:s}),B=(0,eE.A)(L,2),F=B[0],H=B[1],_=(0,p.useState)(function(){return N.findIndex(function(e){return e.key===F})}),W=(0,eE.A)(_,2),q=W[0],V=W[1];(0,p.useEffect)(function(){var e,t=N.findIndex(function(e){return e.key===F});-1===t&&(t=Math.max(0,Math.min(q,N.length-1)),H(null==(e=N[t])?void 0:e.key)),V(t)},[N.map(function(e){return e.key}).join("_"),F,q]);var K=(0,rs.A)(null,{value:n}),X=(0,eE.A)(K,2),Y=X[0],U=X[1];(0,p.useEffect)(function(){n||(U("rc-tabs-".concat(u0)),u0+=1)},[]);var G={id:Y,activeKey:F,animated:j,tabPosition:m,rtl:I,mobile:T},Q=(0,eM.A)((0,eM.A)({},G),{},{editable:u,locale:y,more:x,tabBarGutter:g,onTabClick:function(e,t){null==C||C(e,t);var n=e!==F;H(e),n&&(null==w||w(e))},onTabScroll:S,extra:b,style:v,panes:null,getPopupContainer:k,popupClassName:E,indicator:O});return p.createElement(uM.Provider,{value:{tabs:N,prefixCls:o}},p.createElement("div",(0,R.A)({ref:t,id:n,className:h()(o,"".concat(o,"-").concat(m),(0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(o,"-mobile"),T),"".concat(o,"-editable"),u),"".concat(o,"-rtl"),I),a)},M),p.createElement(uG,(0,R.A)({},Q,{renderTabBar:A})),p.createElement(uZ,(0,R.A)({destroyInactiveTabPane:$},G,{animated:j}))))});let u2={motionAppear:!1,motionEnter:!0,motionLeave:!0};var u4=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let u3=(0,w.OF)("Tabs",e=>{let t=(0,ey.oX)(e,{tabsCardPadding:e.cardPadding,dropdownEdgeChildVerticalPadding:e.paddingXXS,tabsActiveTextShadow:"0 0 0.25px currentcolor",tabsDropdownHeight:200,tabsDropdownWidth:120,tabsHorizontalItemMargin:`0 0 0 ${(0,q.zA)(e.horizontalItemGutter)}`,tabsHorizontalItemMarginRTL:`0 0 0 ${(0,q.zA)(e.horizontalItemGutter)}`});return[(e=>{let{componentCls:t,cardPaddingSM:n,cardPaddingLG:r,horizontalItemPaddingSM:o,horizontalItemPaddingLG:a}=e;return{[t]:{"&-small":{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:o,fontSize:e.titleFontSizeSM}}},"&-large":{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:a,fontSize:e.titleFontSizeLG}}}},[`${t}-card`]:{[`&${t}-small`]:{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:n}},[`&${t}-bottom`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:`0 0 ${(0,q.zA)(e.borderRadius)} ${(0,q.zA)(e.borderRadius)}`}},[`&${t}-top`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:`${(0,q.zA)(e.borderRadius)} ${(0,q.zA)(e.borderRadius)} 0 0`}},[`&${t}-right`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`0 ${(0,q.zA)(e.borderRadius)} ${(0,q.zA)(e.borderRadius)} 0`}}},[`&${t}-left`]:{[`> ${t}-nav ${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`${(0,q.zA)(e.borderRadius)} 0 0 ${(0,q.zA)(e.borderRadius)}`}}}},[`&${t}-large`]:{[`> ${t}-nav`]:{[`${t}-tab`]:{padding:r}}}}}})(t),(e=>{let{componentCls:t,tabsHorizontalItemMarginRTL:n,iconCls:r,cardGutter:o,calc:a}=e;return{[`${t}-rtl`]:{direction:"rtl",[`${t}-nav`]:{[`${t}-tab`]:{margin:{_skip_check_:!0,value:n},[`${t}-tab:last-of-type`]:{marginLeft:{_skip_check_:!0,value:0}},[r]:{marginRight:{_skip_check_:!0,value:0},marginLeft:{_skip_check_:!0,value:(0,q.zA)(e.marginSM)}},[`${t}-tab-remove`]:{marginRight:{_skip_check_:!0,value:(0,q.zA)(e.marginXS)},marginLeft:{_skip_check_:!0,value:(0,q.zA)(a(e.marginXXS).mul(-1).equal())},[r]:{margin:0}}}},[`&${t}-left`]:{[`> ${t}-nav`]:{order:1},[`> ${t}-content-holder`]:{order:0}},[`&${t}-right`]:{[`> ${t}-nav`]:{order:0},[`> ${t}-content-holder`]:{order:1}},[`&${t}-card${t}-top, &${t}-card${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab + ${t}-tab`]:{marginRight:{_skip_check_:!0,value:o},marginLeft:{_skip_check_:!0,value:0}}}}},[`${t}-dropdown-rtl`]:{direction:"rtl"},[`${t}-menu-item`]:{[`${t}-dropdown-rtl`]:{textAlign:{_skip_check_:!0,value:"right"}}}}})(t),(e=>{let{componentCls:t,margin:n,colorBorderSecondary:r,horizontalMargin:o,verticalItemPadding:a,verticalItemMargin:i,calc:l}=e;return{[`${t}-top, ${t}-bottom`]:{flexDirection:"column",[`> ${t}-nav, > div > ${t}-nav`]:{margin:o,"&::before":{position:"absolute",right:{_skip_check_:!0,value:0},left:{_skip_check_:!0,value:0},borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${r}`,content:"''"},[`${t}-ink-bar`]:{height:e.lineWidthBold,"&-animated":{transition:`width ${e.motionDurationSlow}, left ${e.motionDurationSlow}, - right ${e.motionDurationSlow}`}},[`${t}-nav-wrap`]:{"&::before, &::after":{top:0,bottom:0,width:e.controlHeight},"&::before":{left:{_skip_check_:!0,value:0},boxShadow:e.boxShadowTabsOverflowLeft},"&::after":{right:{_skip_check_:!0,value:0},boxShadow:e.boxShadowTabsOverflowRight},[`&${t}-nav-wrap-ping-left::before`]:{opacity:1},[`&${t}-nav-wrap-ping-right::after`]:{opacity:1}}}},[`${t}-top`]:{[`> ${t}-nav, - > div > ${t}-nav`]:{"&::before":{bottom:0},[`${t}-ink-bar`]:{bottom:0}}},[`${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{order:1,marginTop:n,marginBottom:0,"&::before":{top:0},[`${t}-ink-bar`]:{top:0}},[`> ${t}-content-holder, > div > ${t}-content-holder`]:{order:0}},[`${t}-left, ${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{flexDirection:"column",minWidth:l(e.controlHeight).mul(1.25).equal(),[`${t}-tab`]:{padding:a,textAlign:"center"},[`${t}-tab + ${t}-tab`]:{margin:i},[`${t}-nav-wrap`]:{flexDirection:"column","&::before, &::after":{right:{_skip_check_:!0,value:0},left:{_skip_check_:!0,value:0},height:e.controlHeight},"&::before":{top:0,boxShadow:e.boxShadowTabsOverflowTop},"&::after":{bottom:0,boxShadow:e.boxShadowTabsOverflowBottom},[`&${t}-nav-wrap-ping-top::before`]:{opacity:1},[`&${t}-nav-wrap-ping-bottom::after`]:{opacity:1}},[`${t}-ink-bar`]:{width:e.lineWidthBold,"&-animated":{transition:`height ${e.motionDurationSlow}, top ${e.motionDurationSlow}`}},[`${t}-nav-list, ${t}-nav-operations`]:{flex:"1 0 auto",flexDirection:"column"}}},[`${t}-left`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-ink-bar`]:{right:{_skip_check_:!0,value:0}}},[`> ${t}-content-holder, > div > ${t}-content-holder`]:{marginLeft:{_skip_check_:!0,value:(0,q.zA)(l(e.lineWidth).mul(-1).equal())},borderLeft:{_skip_check_:!0,value:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},[`> ${t}-content > ${t}-tabpane`]:{paddingLeft:{_skip_check_:!0,value:e.paddingLG}}}},[`${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{order:1,[`${t}-ink-bar`]:{left:{_skip_check_:!0,value:0}}},[`> ${t}-content-holder, > div > ${t}-content-holder`]:{order:0,marginRight:{_skip_check_:!0,value:l(e.lineWidth).mul(-1).equal()},borderRight:{_skip_check_:!0,value:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},[`> ${t}-content > ${t}-tabpane`]:{paddingRight:{_skip_check_:!0,value:e.paddingLG}}}}}})(t),(e=>{let{componentCls:t,itemHoverColor:n,dropdownEdgeChildVerticalPadding:r}=e;return{[`${t}-dropdown`]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"absolute",top:-9999,left:{_skip_check_:!0,value:-9999},zIndex:e.zIndexPopup,display:"block","&-hidden":{display:"none"},[`${t}-dropdown-menu`]:{maxHeight:e.tabsDropdownHeight,margin:0,padding:`${(0,q.zA)(r)} 0`,overflowX:"hidden",overflowY:"auto",textAlign:{_skip_check_:!0,value:"left"},listStyleType:"none",backgroundColor:e.colorBgContainer,backgroundClip:"padding-box",borderRadius:e.borderRadiusLG,outline:"none",boxShadow:e.boxShadowSecondary,"&-item":Object.assign(Object.assign({},V.L9),{display:"flex",alignItems:"center",minWidth:e.tabsDropdownWidth,margin:0,padding:`${(0,q.zA)(e.paddingXXS)} ${(0,q.zA)(e.paddingSM)}`,color:e.colorText,fontWeight:"normal",fontSize:e.fontSize,lineHeight:e.lineHeight,cursor:"pointer",transition:`all ${e.motionDurationSlow}`,"> span":{flex:1,whiteSpace:"nowrap"},"&-remove":{flex:"none",marginLeft:{_skip_check_:!0,value:e.marginSM},color:e.colorTextDescription,fontSize:e.fontSizeSM,background:"transparent",border:0,cursor:"pointer","&:hover":{color:n}},"&:hover":{background:e.controlItemBgHover},"&-disabled":{"&, &:hover":{color:e.colorTextDisabled,background:"transparent",cursor:"not-allowed"}}})}})}})(t),(e=>{let{componentCls:t,tabsCardPadding:n,cardBg:r,cardGutter:o,colorBorderSecondary:a,itemSelectedColor:i}=e;return{[`${t}-card`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{margin:0,padding:n,background:r,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${a}`,transition:`all ${e.motionDurationSlow} ${e.motionEaseInOut}`},[`${t}-tab-active`]:{color:i,background:e.colorBgContainer},[`${t}-ink-bar`]:{visibility:"hidden"}},[`&${t}-top, &${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab + ${t}-tab`]:{marginLeft:{_skip_check_:!0,value:(0,q.zA)(o)}}}},[`&${t}-top`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:`${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)} 0 0`},[`${t}-tab-active`]:{borderBottomColor:e.colorBgContainer}}},[`&${t}-bottom`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:`0 0 ${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)}`},[`${t}-tab-active`]:{borderTopColor:e.colorBgContainer}}},[`&${t}-left, &${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab + ${t}-tab`]:{marginTop:(0,q.zA)(o)}}},[`&${t}-left`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`${(0,q.zA)(e.borderRadiusLG)} 0 0 ${(0,q.zA)(e.borderRadiusLG)}`}},[`${t}-tab-active`]:{borderRightColor:{_skip_check_:!0,value:e.colorBgContainer}}}},[`&${t}-right`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-tab`]:{borderRadius:{_skip_check_:!0,value:`0 ${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)} 0`}},[`${t}-tab-active`]:{borderLeftColor:{_skip_check_:!0,value:e.colorBgContainer}}}}}}})(t),(e=>{let{componentCls:t,tabsCardPadding:n,cardHeight:r,cardGutter:o,itemHoverColor:a,itemActiveColor:i,colorBorderSecondary:l}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{display:"flex",[`> ${t}-nav, > div > ${t}-nav`]:{position:"relative",display:"flex",flex:"none",alignItems:"center",[`${t}-nav-wrap`]:{position:"relative",display:"flex",flex:"auto",alignSelf:"stretch",overflow:"hidden",whiteSpace:"nowrap",transform:"translate(0)","&::before, &::after":{position:"absolute",zIndex:1,opacity:0,transition:`opacity ${e.motionDurationSlow}`,content:"''",pointerEvents:"none"}},[`${t}-nav-list`]:{position:"relative",display:"flex",transition:`opacity ${e.motionDurationSlow}`},[`${t}-nav-operations`]:{display:"flex",alignSelf:"stretch"},[`${t}-nav-operations-hidden`]:{position:"absolute",visibility:"hidden",pointerEvents:"none"},[`${t}-nav-more`]:{position:"relative",padding:n,background:"transparent",border:0,color:e.colorText,"&::after":{position:"absolute",right:{_skip_check_:!0,value:0},bottom:0,left:{_skip_check_:!0,value:0},height:e.calc(e.controlHeightLG).div(8).equal(),transform:"translateY(100%)",content:"''"}},[`${t}-nav-add`]:Object.assign({minWidth:r,marginLeft:{_skip_check_:!0,value:o},padding:(0,q.zA)(e.paddingXS),background:"transparent",border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${l}`,borderRadius:`${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)} 0 0`,outline:"none",cursor:"pointer",color:e.colorText,transition:`all ${e.motionDurationSlow} ${e.motionEaseInOut}`,"&:hover":{color:a},"&:active, &:focus:not(:focus-visible)":{color:i}},(0,V.K8)(e))},[`${t}-extra-content`]:{flex:"none"},[`${t}-ink-bar`]:{position:"absolute",background:e.inkBarColor,pointerEvents:"none"}}),(e=>{let{componentCls:t,itemActiveColor:n,itemHoverColor:r,iconCls:o,tabsHorizontalItemMargin:a,horizontalItemPadding:i,itemSelectedColor:l,itemColor:c}=e,s=`${t}-tab`;return{[s]:{position:"relative",WebkitTouchCallout:"none",WebkitTapHighlightColor:"transparent",display:"inline-flex",alignItems:"center",padding:i,fontSize:e.titleFontSize,background:"transparent",border:0,outline:"none",cursor:"pointer",color:c,"&-btn, &-remove":Object.assign({"&:focus:not(:focus-visible), &:active":{color:n}},(0,V.K8)(e)),"&-btn":{outline:"none",transition:`all ${e.motionDurationSlow}`,[`${s}-icon:not(:last-child)`]:{marginInlineEnd:e.marginSM}},"&-remove":{flex:"none",marginRight:{_skip_check_:!0,value:e.calc(e.marginXXS).mul(-1).equal()},marginLeft:{_skip_check_:!0,value:e.marginXS},color:e.colorTextDescription,fontSize:e.fontSizeSM,background:"transparent",border:"none",outline:"none",cursor:"pointer",transition:`all ${e.motionDurationSlow}`,"&:hover":{color:e.colorTextHeading}},"&:hover":{color:r},[`&${s}-active ${s}-btn`]:{color:l,textShadow:e.tabsActiveTextShadow},[`&${s}-disabled`]:{color:e.colorTextDisabled,cursor:"not-allowed"},[`&${s}-disabled ${s}-btn, &${s}-disabled ${t}-remove`]:{"&:focus, &:active":{color:e.colorTextDisabled}},[`& ${s}-remove ${o}`]:{margin:0},[`${o}:not(:last-child)`]:{marginRight:{_skip_check_:!0,value:e.marginSM}}},[`${s} + ${s}`]:{margin:{_skip_check_:!0,value:a}}}})(e)),{[`${t}-content`]:{position:"relative",width:"100%"},[`${t}-content-holder`]:{flex:"auto",minWidth:0,minHeight:0},[`${t}-tabpane`]:{outline:"none","&-hidden":{display:"none"}}}),[`${t}-centered`]:{[`> ${t}-nav, > div > ${t}-nav`]:{[`${t}-nav-wrap`]:{[`&:not([class*='${t}-nav-wrap-ping']) > ${t}-nav-list`]:{margin:"auto"}}}}}})(t),(e=>{let{componentCls:t,motionDurationSlow:n}=e;return[{[t]:{[`${t}-switch`]:{"&-appear, &-enter":{transition:"none","&-start":{opacity:0},"&-active":{opacity:1,transition:`opacity ${n}`}},"&-leave":{position:"absolute",transition:"none",inset:0,"&-start":{opacity:1},"&-active":{opacity:0,transition:`opacity ${n}`}}}}},[oX(e,"slide-up"),oX(e,"slide-down")]]})(t)]},e=>{let t=e.controlHeightLG;return{zIndexPopup:e.zIndexPopupBase+50,cardBg:e.colorFillAlter,cardHeight:t,cardPadding:`${(t-Math.round(e.fontSize*e.lineHeight))/2-e.lineWidth}px ${e.padding}px`,cardPaddingSM:`${1.5*e.paddingXXS}px ${e.padding}px`,cardPaddingLG:`${e.paddingXS}px ${e.padding}px ${1.5*e.paddingXXS}px`,titleFontSize:e.fontSize,titleFontSizeLG:e.fontSizeLG,titleFontSizeSM:e.fontSize,inkBarColor:e.colorPrimary,horizontalMargin:`0 0 ${e.margin}px 0`,horizontalItemGutter:32,horizontalItemMargin:"",horizontalItemMarginRTL:"",horizontalItemPadding:`${e.paddingSM}px 0`,horizontalItemPaddingSM:`${e.paddingXS}px 0`,horizontalItemPaddingLG:`${e.padding}px 0`,verticalItemPadding:`${e.paddingXS}px ${e.paddingLG}px`,verticalItemMargin:`${e.margin}px 0 0 0`,itemColor:e.colorText,itemSelectedColor:e.colorPrimary,itemHoverColor:e.colorPrimaryHover,itemActiveColor:e.colorPrimaryActive,cardGutter:e.marginXXS/2}});var u6=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let u8=e=>{var t,n,r,o,a,i,l,c,s,u,d,f,m;let g,{type:v,className:b,rootClassName:y,size:x,onEdit:$,hideAdd:w,centered:C,addIcon:S,removeIcon:k,moreIcon:E,more:O,popupClassName:M,children:N,items:I,animated:j,style:R,indicatorSize:P,indicator:T}=e,D=u6(e,["type","className","rootClassName","size","onEdit","hideAdd","centered","addIcon","removeIcon","moreIcon","more","popupClassName","children","items","animated","style","indicatorSize","indicator"]),{prefixCls:L}=D,{direction:B,tabs:F,getPrefixCls:H,getPopupContainer:_}=p.useContext(A.QO),W=H("tabs",L),q=(0,eh.A)(W),[V,K,X]=u3(W,q);"editable-card"===v&&(g={onEdit:(e,t)=>{let{key:n,event:r}=t;null==$||$("add"===e?r:n,e)},removeIcon:null!=(t=null!=k?k:null==F?void 0:F.removeIcon)?t:p.createElement(z.A,null),addIcon:(null!=S?S:null==F?void 0:F.addIcon)||p.createElement(uO,null),showAdd:!0!==w});let Y=H(),U=(0,oT.A)(x),G=(f=I,m=N,f?f:(0,rc.A)(m).map(e=>{if(p.isValidElement(e)){let{key:t,props:n}=e,r=n||{},{tab:o}=r,a=u4(r,["tab"]);return Object.assign(Object.assign({key:String(t)},a),{label:o})}return null}).filter(e=>e)),Q=function(e){let t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{inkBar:!0,tabPane:!1};return(t=!1===n?{inkBar:!1,tabPane:!1}:!0===n?{inkBar:!0,tabPane:!0}:Object.assign({inkBar:!0},"object"==typeof n?n:{})).tabPane&&(t.tabPaneMotion=Object.assign(Object.assign({},u2),{motionName:(0,tN.b)(e,"switch")})),t}(W,j),Z=Object.assign(Object.assign({},null==F?void 0:F.style),R),J={align:null!=(n=null==T?void 0:T.align)?n:null==(r=null==F?void 0:F.indicator)?void 0:r.align,size:null!=(l=null!=(a=null!=(o=null==T?void 0:T.size)?o:P)?a:null==(i=null==F?void 0:F.indicator)?void 0:i.size)?l:null==F?void 0:F.indicatorSize};return V(p.createElement(u1,Object.assign({direction:B,getPopupContainer:_},D,{items:G,className:h()({[`${W}-${U}`]:U,[`${W}-card`]:["card","editable-card"].includes(v),[`${W}-editable-card`]:"editable-card"===v,[`${W}-centered`]:C},null==F?void 0:F.className,b,y,K,X,q),popupClassName:h()(M,K,X,q),style:Z,editable:g,more:Object.assign({icon:null!=(d=null!=(u=null!=(s=null==(c=null==F?void 0:F.more)?void 0:c.icon)?s:null==F?void 0:F.moreIcon)?u:E)?d:p.createElement(lz,null),transitionName:`${Y}-slide-up`},O),prefixCls:W,animated:Q,indicator:J})))};u8.TabPane=()=>null;let u5=u8;var u7=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let u9=e=>{var{prefixCls:t,className:n,hoverable:r=!0}=e,o=u7(e,["prefixCls","className","hoverable"]);let{getPrefixCls:a}=p.useContext(A.QO),i=a("card",t),l=h()(`${i}-grid`,n,{[`${i}-grid-hoverable`]:r});return p.createElement("div",Object.assign({},o,{className:l}))},de=(0,w.OF)("Card",e=>{let t=(0,ey.oX)(e,{cardShadow:e.boxShadowCard,cardHeadPadding:e.padding,cardPaddingBase:e.paddingLG,cardActionsIconSize:e.fontSize,cardPaddingSM:12});return[(e=>{let{componentCls:t,cardShadow:n,cardHeadPadding:r,colorBorderSecondary:o,boxShadowTertiary:a,cardPaddingBase:i,extraColor:l}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",background:e.colorBgContainer,borderRadius:e.borderRadiusLG,[`&:not(${t}-bordered)`]:{boxShadow:a},[`${t}-head`]:(e=>{let{antCls:t,componentCls:n,headerHeight:r,cardPaddingBase:o,tabsMarginBottom:a}=e;return Object.assign(Object.assign({display:"flex",justifyContent:"center",flexDirection:"column",minHeight:r,marginBottom:-1,padding:`0 ${(0,q.zA)(o)}`,color:e.colorTextHeading,fontWeight:e.fontWeightStrong,fontSize:e.headerFontSize,background:e.headerBg,borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorderSecondary}`,borderRadius:`${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)} 0 0`},(0,V.t6)()),{"&-wrapper":{width:"100%",display:"flex",alignItems:"center"},"&-title":Object.assign(Object.assign({display:"inline-block",flex:1},V.L9),{[` - > ${n}-typography, - > ${n}-typography-edit-content - `]:{insetInlineStart:0,marginTop:0,marginBottom:0}}),[`${t}-tabs-top`]:{clear:"both",marginBottom:a,color:e.colorText,fontWeight:"normal",fontSize:e.fontSize,"&-bar":{borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorderSecondary}`}}})})(e),[`${t}-extra`]:{marginInlineStart:"auto",color:l,fontWeight:"normal",fontSize:e.fontSize},[`${t}-body`]:Object.assign({padding:i,borderRadius:`0 0 ${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)}`},(0,V.t6)()),[`${t}-grid`]:(e=>{let{cardPaddingBase:t,colorBorderSecondary:n,cardShadow:r,lineWidth:o}=e;return{width:"33.33%",padding:t,border:0,borderRadius:0,boxShadow:` - ${(0,q.zA)(o)} 0 0 0 ${n}, - 0 ${(0,q.zA)(o)} 0 0 ${n}, - ${(0,q.zA)(o)} ${(0,q.zA)(o)} 0 0 ${n}, - ${(0,q.zA)(o)} 0 0 0 ${n} inset, - 0 ${(0,q.zA)(o)} 0 0 ${n} inset; - `,transition:`all ${e.motionDurationMid}`,"&-hoverable:hover":{position:"relative",zIndex:1,boxShadow:r}}})(e),[`${t}-cover`]:{"> *":{display:"block",width:"100%",borderRadius:`${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)} 0 0`}},[`${t}-actions`]:(e=>{let{componentCls:t,iconCls:n,actionsLiMargin:r,cardActionsIconSize:o,colorBorderSecondary:a,actionsBg:i}=e;return Object.assign(Object.assign({margin:0,padding:0,listStyle:"none",background:i,borderTop:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${a}`,display:"flex",borderRadius:`0 0 ${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)}`},(0,V.t6)()),{"& > li":{margin:r,color:e.colorTextDescription,textAlign:"center","> span":{position:"relative",display:"block",minWidth:e.calc(e.cardActionsIconSize).mul(2).equal(),fontSize:e.fontSize,lineHeight:e.lineHeight,cursor:"pointer","&:hover":{color:e.colorPrimary,transition:`color ${e.motionDurationMid}`},[`a:not(${t}-btn), > ${n}`]:{display:"inline-block",width:"100%",color:e.colorTextDescription,lineHeight:(0,q.zA)(e.fontHeight),transition:`color ${e.motionDurationMid}`,"&:hover":{color:e.colorPrimary}},[`> ${n}`]:{fontSize:o,lineHeight:(0,q.zA)(e.calc(o).mul(e.lineHeight).equal())}},"&:not(:last-child)":{borderInlineEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${a}`}}})})(e),[`${t}-meta`]:Object.assign(Object.assign({margin:`${(0,q.zA)(e.calc(e.marginXXS).mul(-1).equal())} 0`,display:"flex"},(0,V.t6)()),{"&-avatar":{paddingInlineEnd:e.padding},"&-detail":{overflow:"hidden",flex:1,"> div:not(:last-child)":{marginBottom:e.marginXS}},"&-title":Object.assign({color:e.colorTextHeading,fontWeight:e.fontWeightStrong,fontSize:e.fontSizeLG},V.L9),"&-description":{color:e.colorTextDescription}})}),[`${t}-bordered`]:{border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${o}`,[`${t}-cover`]:{marginTop:-1,marginInlineStart:-1,marginInlineEnd:-1}},[`${t}-hoverable`]:{cursor:"pointer",transition:`box-shadow ${e.motionDurationMid}, border-color ${e.motionDurationMid}`,"&:hover":{borderColor:"transparent",boxShadow:n}},[`${t}-contain-grid`]:{borderRadius:`${(0,q.zA)(e.borderRadiusLG)} ${(0,q.zA)(e.borderRadiusLG)} 0 0 `,[`${t}-body`]:{display:"flex",flexWrap:"wrap"},[`&:not(${t}-loading) ${t}-body`]:{marginBlockStart:e.calc(e.lineWidth).mul(-1).equal(),marginInlineStart:e.calc(e.lineWidth).mul(-1).equal(),padding:0}},[`${t}-contain-tabs`]:{[`> div${t}-head`]:{minHeight:0,[`${t}-head-title, ${t}-extra`]:{paddingTop:r}}},[`${t}-type-inner`]:(e=>{let{componentCls:t,cardPaddingBase:n,colorFillAlter:r}=e;return{[`${t}-head`]:{padding:`0 ${(0,q.zA)(n)}`,background:r,"&-title":{fontSize:e.fontSize}},[`${t}-body`]:{padding:`${(0,q.zA)(e.padding)} ${(0,q.zA)(n)}`}}})(e),[`${t}-loading`]:(e=>{let{componentCls:t}=e;return{overflow:"hidden",[`${t}-body`]:{userSelect:"none"}}})(e),[`${t}-rtl`]:{direction:"rtl"}}})(t),(e=>{let{componentCls:t,cardPaddingSM:n,headerHeightSM:r,headerFontSizeSM:o}=e;return{[`${t}-small`]:{[`> ${t}-head`]:{minHeight:r,padding:`0 ${(0,q.zA)(n)}`,fontSize:o,[`> ${t}-head-wrapper`]:{[`> ${t}-extra`]:{fontSize:e.fontSize}}},[`> ${t}-body`]:{padding:n}},[`${t}-small${t}-contain-tabs`]:{[`> ${t}-head`]:{[`${t}-head-title, ${t}-extra`]:{paddingTop:0,display:"flex",alignItems:"center"}}}}})(t)]},e=>({headerBg:"transparent",headerFontSize:e.fontSizeLG,headerFontSizeSM:e.fontSize,headerHeight:e.fontSizeLG*e.lineHeightLG+2*e.padding,headerHeightSM:e.fontSize*e.lineHeight+2*e.paddingXS,actionsBg:e.colorBgContainer,actionsLiMargin:`${e.paddingSM}px 0`,tabsMarginBottom:-e.padding-e.lineWidth,extraColor:e.colorText}));var dt=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let dn=e=>{let{actionClasses:t,actions:n=[],actionStyle:r}=e;return p.createElement("ul",{className:t,style:r},n.map((e,t)=>{let r=`action-${t}`;return p.createElement("li",{style:{width:`${100/n.length}%`},key:r},p.createElement("span",null,e))}))},dr=p.forwardRef((e,t)=>{let n,{prefixCls:r,className:o,rootClassName:a,style:i,extra:l,headStyle:c={},bodyStyle:s={},title:u,loading:d,bordered:f=!0,size:m,type:g,cover:v,actions:y,tabList:x,children:$,activeTabKey:w,defaultActiveTabKey:C,tabBarExtraContent:S,hoverable:k,tabProps:E={},classNames:O,styles:M}=e,N=dt(e,["prefixCls","className","rootClassName","style","extra","headStyle","bodyStyle","title","loading","bordered","size","type","cover","actions","tabList","children","activeTabKey","defaultActiveTabKey","tabBarExtraContent","hoverable","tabProps","classNames","styles"]),{getPrefixCls:I,direction:j,card:z}=p.useContext(A.QO),R=e=>{var t;return h()(null==(t=null==z?void 0:z.classNames)?void 0:t[e],null==O?void 0:O[e])},P=e=>{var t;return Object.assign(Object.assign({},null==(t=null==z?void 0:z.styles)?void 0:t[e]),null==M?void 0:M[e])},T=p.useMemo(()=>{let e=!1;return p.Children.forEach($,t=>{(null==t?void 0:t.type)===u9&&(e=!0)}),e},[$]),D=I("card",r),[L,B,F]=de(D),H=p.createElement(nf,{loading:!0,active:!0,paragraph:{rows:4},title:!1},$),_=void 0!==w,W=Object.assign(Object.assign({},E),{[_?"activeKey":"defaultActiveKey"]:_?w:C,tabBarExtraContent:S}),q=(0,oT.A)(m),V=q&&"default"!==q?q:"large",K=x?p.createElement(u5,Object.assign({size:V},W,{className:`${D}-head-tabs`,onChange:t=>{var n;null==(n=e.onTabChange)||n.call(e,t)},items:x.map(e=>{var{tab:t}=e;return Object.assign({label:t},dt(e,["tab"]))})})):null;if(u||l||K){let e=h()(`${D}-head`,R("header")),t=h()(`${D}-head-title`,R("title")),r=h()(`${D}-extra`,R("extra")),o=Object.assign(Object.assign({},c),P("header"));n=p.createElement("div",{className:e,style:o},p.createElement("div",{className:`${D}-head-wrapper`},u&&p.createElement("div",{className:t,style:P("title")},u),l&&p.createElement("div",{className:r,style:P("extra")},l)),K)}let X=h()(`${D}-cover`,R("cover")),Y=v?p.createElement("div",{className:X,style:P("cover")},v):null,U=h()(`${D}-body`,R("body")),G=Object.assign(Object.assign({},s),P("body")),Q=p.createElement("div",{className:U,style:G},d?H:$),Z=h()(`${D}-actions`,R("actions")),J=(null==y?void 0:y.length)?p.createElement(dn,{actionClasses:Z,actionStyle:P("actions"),actions:y}):null,ee=(0,b.A)(N,["onTabChange"]),et=h()(D,null==z?void 0:z.className,{[`${D}-loading`]:d,[`${D}-bordered`]:f,[`${D}-hoverable`]:k,[`${D}-contain-grid`]:T,[`${D}-contain-tabs`]:null==x?void 0:x.length,[`${D}-${q}`]:q,[`${D}-type-${g}`]:!!g,[`${D}-rtl`]:"rtl"===j},o,a,B,F),en=Object.assign(Object.assign({},null==z?void 0:z.style),i);return L(p.createElement("div",Object.assign({ref:t},ee,{className:et,style:en}),n,Y,Q,J))});var da=n(29653);dr.Grid=u9,dr.Meta=da.A;let di=dr;var dl=n(56822),dc=n(52176),ds=n(53954);let du={animating:!1,autoplaying:null,currentDirection:0,currentLeft:null,currentSlide:0,direction:1,dragging:!1,edgeDragged:!1,initialized:!1,lazyLoadedList:[],listHeight:null,listWidth:null,scrolling:!1,slideCount:null,slideHeight:null,slideWidth:null,swipeLeft:null,swiped:!1,swiping:!1,touchObject:{startX:0,startY:0,curX:0,curY:0},trackStyle:{},trackWidth:0,targetSlide:0};function dd(e,t,n){var r=(n||{}).atBegin;return function(e,t,n){var r,o=n||{},a=o.noTrailing,i=void 0!==a&&a,l=o.noLeading,c=void 0!==l&&l,s=o.debounceMode,u=void 0===s?void 0:s,d=!1,f=0;function p(){r&&clearTimeout(r)}function m(){for(var n=arguments.length,o=Array(n),a=0;ae?c?(f=Date.now(),i||(r=setTimeout(u?g:m,e))):m():!0!==i&&(r=setTimeout(u?g:m,void 0===u?e-s:e)))}return m.cancel=function(e){var t=(e||{}).upcomingOnly;p(),d=!(void 0!==t&&t)},m}(e,t,{debounceMode:!1!==(void 0!==r&&r)})}let df={accessibility:!0,adaptiveHeight:!1,afterChange:null,appendDots:function(e){return m().createElement("ul",{style:{display:"block"}},e)},arrows:!0,autoplay:!1,autoplaySpeed:3e3,beforeChange:null,centerMode:!1,centerPadding:"50px",className:"",cssEase:"ease",customPaging:function(e){return m().createElement("button",null,e+1)},dots:!1,dotsClass:"slick-dots",draggable:!0,easing:"linear",edgeFriction:.35,fade:!1,focusOnSelect:!1,infinite:!0,initialSlide:0,lazyLoad:null,nextArrow:null,onEdge:null,onInit:null,onLazyLoadError:null,onReInit:null,pauseOnDotsHover:!1,pauseOnFocus:!1,pauseOnHover:!0,prevArrow:null,responsive:null,rows:1,rtl:!1,slide:"div",slidesPerRow:1,slidesToScroll:1,slidesToShow:1,speed:500,swipe:!0,swipeEvent:null,swipeToSlide:!1,touchMove:!0,touchThreshold:5,useCSS:!0,useTransform:!0,variableWidth:!1,vertical:!1,waitForAnimate:!0,asNavFor:null};function dp(e,t,n){return Math.max(t,Math.min(e,n))}var dm=function(e){["onTouchStart","onTouchMove","onWheel"].includes(e._reactName)||e.preventDefault()},dg=function(e){for(var t=[],n=dh(e),r=dv(e),o=n;oe.lazyLoadedList.indexOf(o)&&t.push(o);return t},dh=function(e){return e.currentSlide-db(e)},dv=function(e){return e.currentSlide+dy(e)},db=function(e){return e.centerMode?Math.floor(e.slidesToShow/2)+ +(parseInt(e.centerPadding)>0):0},dy=function(e){return e.centerMode?Math.floor((e.slidesToShow-1)/2)+1+ +(parseInt(e.centerPadding)>0):e.slidesToShow},dx=function(e){return e&&e.offsetWidth||0},d$=function(e){return e&&e.offsetHeight||0},dA=function(e){var t,n,r=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(t=e.startX-e.curX,(n=Math.round(180*Math.atan2(e.startY-e.curY,t)/Math.PI))<0&&(n=360-Math.abs(n)),n<=45&&n>=0||n<=360&&n>=315)return"left";if(n>=135&&n<=225)return"right";if(!0===r)if(n>=35&&n<=135)return"up";else return"down";return"vertical"},dw=function(e){var t=!0;return!e.infinite&&(e.centerMode&&e.currentSlide>=e.slideCount-1?t=!1:(e.slideCount<=e.slidesToShow||e.currentSlide>=e.slideCount-e.slidesToShow)&&(t=!1)),t},dC=function(e,t){var n={};return t.forEach(function(t){return n[t]=e[t]}),n},dS=function(e){var t,n=m().Children.count(e.children),r=e.listRef,o=Math.ceil(dx(r)),a=Math.ceil(dx(e.trackRef&&e.trackRef.node));if(e.vertical)t=o;else{var i=e.centerMode&&2*parseInt(e.centerPadding);"string"==typeof e.centerPadding&&"%"===e.centerPadding.slice(-1)&&(i*=o/100),t=Math.ceil((o-i)/e.slidesToShow)}var l=r&&d$(r.querySelector('[data-index="0"]')),c=l*e.slidesToShow,s=void 0===e.currentSlide?e.initialSlide:e.currentSlide;e.rtl&&void 0===e.currentSlide&&(s=n-1-e.initialSlide);var u=e.lazyLoadedList||[],d=dg((0,eM.A)((0,eM.A)({},e),{},{currentSlide:s,lazyLoadedList:u})),f={slideCount:n,slideWidth:t,listWidth:o,trackWidth:a,currentSlide:s,slideHeight:l,listHeight:c,lazyLoadedList:u=u.concat(d)};return null===e.autoplaying&&e.autoplay&&(f.autoplaying="playing"),f},dk=function(e){var t=e.waitForAnimate,n=e.animating,r=e.fade,o=e.infinite,a=e.index,i=e.slideCount,l=e.lazyLoad,c=e.currentSlide,s=e.centerMode,u=e.slidesToScroll,d=e.slidesToShow,f=e.useCSS,p=e.lazyLoadedList;if(t&&n)return{};var m,g,h,v=a,b={},y={},x=o?a:dp(a,0,i-1);if(r){if(!o&&(a<0||a>=i))return{};a<0?v=a+i:a>=i&&(v=a-i),l&&0>p.indexOf(v)&&(p=p.concat(v)),b={animating:!0,currentSlide:v,lazyLoadedList:p,targetSlide:v},y={animating:!1,targetSlide:v}}else m=v,v<0?(m=v+i,o?i%u!=0&&(m=i-i%u):m=0):!dw(e)&&v>c?v=m=c:s&&v>=i?(v=o?i:i-1,m=o?0:i-1):v>=i&&(m=v-i,o?i%u!=0&&(m=0):m=i-d),!o&&v+d>=i&&(m=i-d),g=dT((0,eM.A)((0,eM.A)({},e),{},{slideIndex:v})),h=dT((0,eM.A)((0,eM.A)({},e),{},{slideIndex:m})),o||(g===h&&(v=m),g=h),l&&(p=p.concat(dg((0,eM.A)((0,eM.A)({},e),{},{currentSlide:v})))),f?(b={animating:!0,currentSlide:m,trackStyle:dP((0,eM.A)((0,eM.A)({},e),{},{left:g})),lazyLoadedList:p,targetSlide:x},y={animating:!1,currentSlide:m,trackStyle:dR((0,eM.A)((0,eM.A)({},e),{},{left:h})),swipeLeft:null,targetSlide:x}):b={currentSlide:m,trackStyle:dR((0,eM.A)((0,eM.A)({},e),{},{left:h})),lazyLoadedList:p,targetSlide:x};return{state:b,nextState:y}},dE=function(e,t){var n,r,o,a,i=e.slidesToScroll,l=e.slidesToShow,c=e.slideCount,s=e.currentSlide,u=e.targetSlide,d=e.lazyLoad,f=e.infinite;if(n=c%i!=0?0:(c-s)%i,"previous"===t.message)a=s-(o=0===n?i:l-n),d&&!f&&(a=-1==(r=s-o)?c-1:r),f||(a=u-i);else if("next"===t.message)a=s+(o=0===n?i:n),d&&!f&&(a=(s+i)%c+n),f||(a=u+i);else if("dots"===t.message)a=t.index*t.slidesToScroll;else if("children"===t.message){if(a=t.index,f){var p=dF((0,eM.A)((0,eM.A)({},e),{},{targetSlide:a}));a>t.currentSlide&&"left"===p?a-=c:a10)return{scrolling:!0};i&&(v.swipeLength=C);var S=(l?-1:1)*(v.curX>v.startX?1:-1);i&&(S=v.curY>v.startY?1:-1);var k=Math.ceil(m/g),E=dA(t.touchObject,i),O=v.swipeLength;return!h&&(0===c&&("right"===E||"down"===E)||c+1>=k&&("left"===E||"up"===E)||!dw(t)&&("left"===E||"up"===E))&&(O=v.swipeLength*s,!1===u&&d&&(d(E),A.edgeDragged=!0)),!f&&b&&(b(E),A.swiped=!0),$=o?w+y/x*O*S:l?w-O*S:w+O*S,i&&($=w+O*S),A=(0,eM.A)((0,eM.A)({},A),{},{touchObject:v,swipeLeft:$,trackStyle:dR((0,eM.A)((0,eM.A)({},t),{},{left:$}))}),Math.abs(v.curX-v.startX)<.8*Math.abs(v.curY-v.startY)||v.swipeLength>10&&(A.swiping=!0,dm(e)),A}},dM=function(e,t){var n=t.dragging,r=t.swipe,o=t.touchObject,a=t.listWidth,i=t.touchThreshold,l=t.verticalSwiping,c=t.listHeight,s=t.swipeToSlide,u=t.scrolling,d=t.onSwipe,f=t.targetSlide,p=t.currentSlide,m=t.infinite;if(!n)return r&&dm(e),{};var g=l?c/i:a/i,h=dA(o,l),v={dragging:!1,edgeDragged:!1,scrolling:!1,swiping:!1,swiped:!1,swipeLeft:null,touchObject:{}};if(u||!o.swipeLength)return v;if(o.swipeLength>g){dm(e),d&&d(h);var b,y,x=m?p:f;switch(h){case"left":case"up":y=x+dj(t),b=s?dI(t,y):y,v.currentDirection=0;break;case"right":case"down":y=x-dj(t),b=s?dI(t,y):y,v.currentDirection=1;break;default:b=x}v.triggerSlideHandler=b}else{var $=dT(t);v.trackStyle=dP((0,eM.A)((0,eM.A)({},t),{},{left:$}))}return v},dN=function(e){for(var t=e.infinite?2*e.slideCount:e.slideCount,n=e.infinite?-1*e.slidesToShow:0,r=e.infinite?-1*e.slidesToShow:0,o=[];nn[n.length-1])t=n[n.length-1];else for(var o in n){if(t-1*e.swipeLeft)return n=r,!1}else if(r.offsetLeft-t+dx(r)/2>-1*e.swipeLeft)return n=r,!1;return!0}),!n)return 0;var o=!0===e.rtl?e.slideCount-e.currentSlide:e.currentSlide;return Math.abs(n.dataset.index-o)||1},dz=function(e,t){return t.reduce(function(t,n){return t&&e.hasOwnProperty(n)},!0)?null:console.error("Keys Missing:",e)},dR=function(e){if(dz(e,["left","variableWidth","slideCount","slidesToShow","slideWidth"]),e.vertical){var t,n;n=(e.unslick?e.slideCount:e.slideCount+2*e.slidesToShow)*e.slideHeight}else t=dB(e)*e.slideWidth;var r={opacity:1,transition:"",WebkitTransition:""};if(e.useTransform){var o=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",a=e.vertical?"translate3d(0px, "+e.left+"px, 0px)":"translate3d("+e.left+"px, 0px, 0px)",i=e.vertical?"translateY("+e.left+"px)":"translateX("+e.left+"px)";r=(0,eM.A)((0,eM.A)({},r),{},{WebkitTransform:o,transform:a,msTransform:i})}else e.vertical?r.top=e.left:r.left=e.left;return e.fade&&(r={opacity:1}),t&&(r.width=t),n&&(r.height=n),window&&!window.addEventListener&&window.attachEvent&&(e.vertical?r.marginTop=e.left+"px":r.marginLeft=e.left+"px"),r},dP=function(e){dz(e,["left","variableWidth","slideCount","slidesToShow","slideWidth","speed","cssEase"]);var t=dR(e);return e.useTransform?(t.WebkitTransition="-webkit-transform "+e.speed+"ms "+e.cssEase,t.transition="transform "+e.speed+"ms "+e.cssEase):e.vertical?t.transition="top "+e.speed+"ms "+e.cssEase:t.transition="left "+e.speed+"ms "+e.cssEase,t},dT=function(e){if(e.unslick)return 0;dz(e,["slideIndex","trackRef","infinite","centerMode","slideCount","slidesToShow","slidesToScroll","slideWidth","listWidth","variableWidth","slideHeight"]);var t=e.slideIndex,n=e.trackRef,r=e.infinite,o=e.centerMode,a=e.slideCount,i=e.slidesToShow,l=e.slidesToScroll,c=e.slideWidth,s=e.listWidth,u=e.variableWidth,d=e.slideHeight,f=e.fade,p=e.vertical,m=0,g=0;if(f||1===e.slideCount)return 0;var h=0;if(r?(h=-dD(e),a%l!=0&&t+l>a&&(h=-(t>a?i-(t-a):a%l)),o&&(h+=parseInt(i/2))):(a%l!=0&&t+l>a&&(h=i-a%l),o&&(h=parseInt(i/2))),m=h*c,g=h*d,v=p?-(t*d*1)+g:-(t*c*1)+m,!0===u){var v,b,y,x=n&&n.node;if(y=t+dD(e),v=(b=x&&x.childNodes[y])?-1*b.offsetLeft:0,!0===o){y=r?t+dD(e):t,b=x&&x.children[y],v=0;for(var $=0;$e.currentSlide?e.targetSlide>e.currentSlide+dH(e)?"left":"right":e.targetSlide0&&(a+=1),r&&t%2==0&&(a+=1),a}return r?0:t-1},d_=function(e){var t=e.slidesToShow,n=e.centerMode,r=e.rtl,o=e.centerPadding;if(n){var a=(t-1)/2+1;return parseInt(o)>0&&(a+=1),r||t%2!=0||(a+=1),a}return r?t-1:0},dW=function(){return!!("u">typeof window&&window.document&&window.document.createElement)},dq=Object.keys(df),dV=function(e){var t,n,r,o,a;return r=(a=e.rtl?e.slideCount-1-e.index:e.index)<0||a>=e.slideCount,e.centerMode?(o=Math.floor(e.slidesToShow/2),n=(a-e.currentSlide)%e.slideCount==0,a>e.currentSlide-o-1&&a<=e.currentSlide+o&&(t=!0)):t=e.currentSlide<=a&&a=e.slideCount?e.targetSlide-e.slideCount:e.targetSlide)}},dK=function(e){var t={};return(void 0===e.variableWidth||!1===e.variableWidth)&&(t.width=e.slideWidth),e.fade&&(t.position="relative",e.vertical&&e.slideHeight?t.top=-e.index*parseInt(e.slideHeight):t.left=-e.index*parseInt(e.slideWidth),t.opacity=+(e.currentSlide===e.index),t.zIndex=e.currentSlide===e.index?999:998,e.useCSS&&(t.transition="opacity "+e.speed+"ms "+e.cssEase+", visibility "+e.speed+"ms "+e.cssEase)),t},dX=function(e,t){return e.key+"-"+t},dY=function(e){var t,n=[],r=[],o=[],a=m().Children.count(e.children),i=dh(e),l=dv(e);return(m().Children.forEach(e.children,function(c,s){var u,d={message:"children",index:s,slidesToScroll:e.slidesToScroll,currentSlide:e.currentSlide};u=!e.lazyLoad||e.lazyLoad&&e.lazyLoadedList.indexOf(s)>=0?c:m().createElement("div",null);var f=dK((0,eM.A)((0,eM.A)({},e),{},{index:s})),p=u.props.className||"",g=dV((0,eM.A)((0,eM.A)({},e),{},{index:s}));if(n.push(m().cloneElement(u,{key:"original"+dX(u,s),"data-index":s,className:h()(g,p),tabIndex:"-1","aria-hidden":!g["slick-active"],style:(0,eM.A)((0,eM.A)({outline:"none"},u.props.style||{}),f),onClick:function(t){u.props&&u.props.onClick&&u.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(d)}})),e.infinite&&a>1&&!1===e.fade&&!e.unslick){var v=a-s;v<=dD(e)&&((t=-v)>=i&&(u=c),g=dV((0,eM.A)((0,eM.A)({},e),{},{index:t})),r.push(m().cloneElement(u,{key:"precloned"+dX(u,t),"data-index":t,tabIndex:"-1",className:h()(g,p),"aria-hidden":!g["slick-active"],style:(0,eM.A)((0,eM.A)({},u.props.style||{}),f),onClick:function(t){u.props&&u.props.onClick&&u.props.onClick(t),e.focusOnSelect&&e.focusOnSelect(d)}}))),(t=a+s)=v&&c<=p:c===v}),y={message:"dots",index:d,slidesToScroll:a,currentSlide:c},x=this.clickHandler.bind(this,y);u=u.concat(m().createElement("li",{key:d,className:b},m().cloneElement(this.props.customPaging(d),{onClick:x})))}return m().cloneElement(this.props.appendDots(u),(0,eM.A)({className:this.props.dotsClass},{onMouseEnter:t,onMouseOver:n,onMouseLeave:r}))}}])}(m().PureComponent);function dZ(e,t,n){return t=(0,ds.A)(t),(0,dl.A)(e,(0,dc.A)()?Reflect.construct(t,n||[],(0,ds.A)(e).constructor):t.apply(e,n))}var dJ=function(e){function t(){return(0,J.A)(this,t),dZ(this,t,arguments)}return(0,en.A)(t,e),(0,ee.A)(t,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-prev":!0},t=this.clickHandler.bind(this,{message:"previous"});!this.props.infinite&&(0===this.props.currentSlide||this.props.slideCount<=this.props.slidesToShow)&&(e["slick-disabled"]=!0,t=null);var n={key:"0","data-role":"none",className:h()(e),style:{display:"block"},onClick:t},r={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.prevArrow?m().cloneElement(this.props.prevArrow,(0,eM.A)((0,eM.A)({},n),r)):m().createElement("button",(0,R.A)({key:"0",type:"button"},n)," ","Previous")}}])}(m().PureComponent),d0=function(e){function t(){return(0,J.A)(this,t),dZ(this,t,arguments)}return(0,en.A)(t,e),(0,ee.A)(t,[{key:"clickHandler",value:function(e,t){t&&t.preventDefault(),this.props.clickHandler(e,t)}},{key:"render",value:function(){var e={"slick-arrow":!0,"slick-next":!0},t=this.clickHandler.bind(this,{message:"next"});dw(this.props)||(e["slick-disabled"]=!0,t=null);var n={key:"1","data-role":"none",className:h()(e),style:{display:"block"},onClick:t},r={currentSlide:this.props.currentSlide,slideCount:this.props.slideCount};return this.props.nextArrow?m().cloneElement(this.props.nextArrow,(0,eM.A)((0,eM.A)({},n),r)):m().createElement("button",(0,R.A)({key:"1",type:"button"},n)," ","Next")}}])}(m().PureComponent),d1=n(43591),d2=["animating"],d4=function(e){function t(e){(0,J.A)(this,t),n=t,r=[e],n=(0,ds.A)(n),o=(0,dl.A)(this,(0,dc.A)()?Reflect.construct(n,r||[],(0,ds.A)(this).constructor):n.apply(this,r)),(0,ej.A)(o,"listRefHandler",function(e){return o.list=e}),(0,ej.A)(o,"trackRefHandler",function(e){return o.track=e}),(0,ej.A)(o,"adaptHeight",function(){if(o.props.adaptiveHeight&&o.list){var e=o.list.querySelector('[data-index="'.concat(o.state.currentSlide,'"]'));o.list.style.height=d$(e)+"px"}}),(0,ej.A)(o,"componentDidMount",function(){if(o.props.onInit&&o.props.onInit(),o.props.lazyLoad){var e=dg((0,eM.A)((0,eM.A)({},o.props),o.state));e.length>0&&(o.setState(function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}}),o.props.onLazyLoad&&o.props.onLazyLoad(e))}var t=(0,eM.A)({listRef:o.list,trackRef:o.track},o.props);o.updateState(t,!0,function(){o.adaptHeight(),o.props.autoplay&&o.autoPlay("playing")}),"progressive"===o.props.lazyLoad&&(o.lazyLoadTimer=setInterval(o.progressiveLazyLoad,1e3)),o.ro=new d1.A(function(){o.state.animating?(o.onWindowResized(!1),o.callbackTimers.push(setTimeout(function(){return o.onWindowResized()},o.props.speed))):o.onWindowResized()}),o.ro.observe(o.list),document.querySelectorAll&&Array.prototype.forEach.call(document.querySelectorAll(".slick-slide"),function(e){e.onfocus=o.props.pauseOnFocus?o.onSlideFocus:null,e.onblur=o.props.pauseOnFocus?o.onSlideBlur:null}),window.addEventListener?window.addEventListener("resize",o.onWindowResized):window.attachEvent("onresize",o.onWindowResized)}),(0,ej.A)(o,"componentWillUnmount",function(){o.animationEndCallback&&clearTimeout(o.animationEndCallback),o.lazyLoadTimer&&clearInterval(o.lazyLoadTimer),o.callbackTimers.length&&(o.callbackTimers.forEach(function(e){return clearTimeout(e)}),o.callbackTimers=[]),window.addEventListener?window.removeEventListener("resize",o.onWindowResized):window.detachEvent("onresize",o.onWindowResized),o.autoplayTimer&&clearInterval(o.autoplayTimer),o.ro.disconnect()}),(0,ej.A)(o,"componentDidUpdate",function(e){if(o.checkImagesLoad(),o.props.onReInit&&o.props.onReInit(),o.props.lazyLoad){var t=dg((0,eM.A)((0,eM.A)({},o.props),o.state));t.length>0&&(o.setState(function(e){return{lazyLoadedList:e.lazyLoadedList.concat(t)}}),o.props.onLazyLoad&&o.props.onLazyLoad(t))}o.adaptHeight();var n=(0,eM.A)((0,eM.A)({listRef:o.list,trackRef:o.track},o.props),o.state),r=o.didPropsChange(e);r&&o.updateState(n,r,function(){o.state.currentSlide>=m().Children.count(o.props.children)&&o.changeSlide({message:"index",index:m().Children.count(o.props.children)-o.props.slidesToShow,currentSlide:o.state.currentSlide}),(e.autoplay!==o.props.autoplay||e.autoplaySpeed!==o.props.autoplaySpeed)&&(!e.autoplay&&o.props.autoplay?o.autoPlay("playing"):o.props.autoplay?o.autoPlay("update"):o.pause("paused"))})}),(0,ej.A)(o,"onWindowResized",function(e){o.debouncedResize&&o.debouncedResize.cancel(),o.debouncedResize=dd(50,function(){return o.resizeWindow(e)}),o.debouncedResize()}),(0,ej.A)(o,"resizeWindow",function(){var e=!(arguments.length>0)||void 0===arguments[0]||arguments[0];if(o.track&&o.track.node){var t=(0,eM.A)((0,eM.A)({listRef:o.list,trackRef:o.track},o.props),o.state);o.updateState(t,e,function(){o.props.autoplay?o.autoPlay("update"):o.pause("paused")}),o.setState({animating:!1}),clearTimeout(o.animationEndCallback),delete o.animationEndCallback}}),(0,ej.A)(o,"updateState",function(e,t,n){var r=dS(e),a=dT(e=(0,eM.A)((0,eM.A)((0,eM.A)({},e),r),{},{slideIndex:r.currentSlide})),i=dR(e=(0,eM.A)((0,eM.A)({},e),{},{left:a}));(t||m().Children.count(o.props.children)!==m().Children.count(e.children))&&(r.trackStyle=i),o.setState(r,n)}),(0,ej.A)(o,"ssrInit",function(){if(o.props.variableWidth){var e=0,t=0,n=[],r=dD((0,eM.A)((0,eM.A)((0,eM.A)({},o.props),o.state),{},{slideCount:o.props.children.length})),a=dL((0,eM.A)((0,eM.A)((0,eM.A)({},o.props),o.state),{},{slideCount:o.props.children.length}));o.props.children.forEach(function(t){n.push(t.props.style.width),e+=t.props.style.width});for(var i=0;i=t&&o.onWindowResized()};if(e.onclick){var a=e.onclick;e.onclick=function(t){a(t),e.parentNode.focus()}}else e.onclick=function(){return e.parentNode.focus()};e.onload||(o.props.lazyLoad?e.onload=function(){o.adaptHeight(),o.callbackTimers.push(setTimeout(o.onWindowResized,o.props.speed))}:(e.onload=r,e.onerror=function(){r(),o.props.onLazyLoadError&&o.props.onLazyLoadError()}))})}),(0,ej.A)(o,"progressiveLazyLoad",function(){for(var e=[],t=(0,eM.A)((0,eM.A)({},o.props),o.state),n=o.state.currentSlide;no.state.lazyLoadedList.indexOf(n)){e.push(n);break}for(var r=o.state.currentSlide-1;r>=-dD(t);r--)if(0>o.state.lazyLoadedList.indexOf(r)){e.push(r);break}e.length>0?(o.setState(function(t){return{lazyLoadedList:t.lazyLoadedList.concat(e)}}),o.props.onLazyLoad&&o.props.onLazyLoad(e)):o.lazyLoadTimer&&(clearInterval(o.lazyLoadTimer),delete o.lazyLoadTimer)}),(0,ej.A)(o,"slideHandler",function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=o.props,r=n.asNavFor,a=n.beforeChange,i=n.onLazyLoad,l=n.speed,c=n.afterChange,s=o.state.currentSlide,u=dk((0,eM.A)((0,eM.A)((0,eM.A)({index:e},o.props),o.state),{},{trackRef:o.track,useCSS:o.props.useCSS&&!t})),d=u.state,f=u.nextState;if(d){a&&a(s,d.currentSlide);var p=d.lazyLoadedList.filter(function(e){return 0>o.state.lazyLoadedList.indexOf(e)});i&&p.length>0&&i(p),!o.props.waitForAnimate&&o.animationEndCallback&&(clearTimeout(o.animationEndCallback),c&&c(s),delete o.animationEndCallback),o.setState(d,function(){r&&o.asNavForIndex!==e&&(o.asNavForIndex=e,r.innerSlider.slideHandler(e)),f&&(o.animationEndCallback=setTimeout(function(){var e=f.animating,t=(0,eO.A)(f,d2);o.setState(t,function(){o.callbackTimers.push(setTimeout(function(){return o.setState({animating:e})},10)),c&&c(d.currentSlide),delete o.animationEndCallback})},l))})}}),(0,ej.A)(o,"changeSlide",function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=dE((0,eM.A)((0,eM.A)({},o.props),o.state),e);if((0===n||n)&&(!0===t?o.slideHandler(n,t):o.slideHandler(n),o.props.autoplay&&o.autoPlay("update"),o.props.focusOnSelect)){var r=o.list.querySelectorAll(".slick-current");r[0]&&r[0].focus()}}),(0,ej.A)(o,"clickHandler",function(e){!1===o.clickable&&(e.stopPropagation(),e.preventDefault()),o.clickable=!0}),(0,ej.A)(o,"keyHandler",function(e){var t,n,r=(t=o.props.accessibility,n=o.props.rtl,e.target.tagName.match("TEXTAREA|INPUT|SELECT")||!t?"":37===e.keyCode?n?"next":"previous":39===e.keyCode?n?"previous":"next":"");""!==r&&o.changeSlide({message:r})}),(0,ej.A)(o,"selectHandler",function(e){o.changeSlide(e)}),(0,ej.A)(o,"disableBodyScroll",function(){window.ontouchmove=function(e){(e=e||window.event).preventDefault&&e.preventDefault(),e.returnValue=!1}}),(0,ej.A)(o,"enableBodyScroll",function(){window.ontouchmove=null}),(0,ej.A)(o,"swipeStart",function(e){o.props.verticalSwiping&&o.disableBodyScroll();var t,n,r=(t=o.props.swipe,n=o.props.draggable,("IMG"===e.target.tagName&&dm(e),t&&(n||-1===e.type.indexOf("mouse")))?{dragging:!0,touchObject:{startX:e.touches?e.touches[0].pageX:e.clientX,startY:e.touches?e.touches[0].pageY:e.clientY,curX:e.touches?e.touches[0].pageX:e.clientX,curY:e.touches?e.touches[0].pageY:e.clientY}}:"");""!==r&&o.setState(r)}),(0,ej.A)(o,"swipeMove",function(e){var t=dO(e,(0,eM.A)((0,eM.A)((0,eM.A)({},o.props),o.state),{},{trackRef:o.track,listRef:o.list,slideIndex:o.state.currentSlide}));t&&(t.swiping&&(o.clickable=!1),o.setState(t))}),(0,ej.A)(o,"swipeEnd",function(e){var t=dM(e,(0,eM.A)((0,eM.A)((0,eM.A)({},o.props),o.state),{},{trackRef:o.track,listRef:o.list,slideIndex:o.state.currentSlide}));if(t){var n=t.triggerSlideHandler;delete t.triggerSlideHandler,o.setState(t),void 0!==n&&(o.slideHandler(n),o.props.verticalSwiping&&o.enableBodyScroll())}}),(0,ej.A)(o,"touchEnd",function(e){o.swipeEnd(e),o.clickable=!0}),(0,ej.A)(o,"slickPrev",function(){o.callbackTimers.push(setTimeout(function(){return o.changeSlide({message:"previous"})},0))}),(0,ej.A)(o,"slickNext",function(){o.callbackTimers.push(setTimeout(function(){return o.changeSlide({message:"next"})},0))}),(0,ej.A)(o,"slickGoTo",function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(isNaN(e=Number(e)))return"";o.callbackTimers.push(setTimeout(function(){return o.changeSlide({message:"index",index:e,currentSlide:o.state.currentSlide},t)},0))}),(0,ej.A)(o,"play",function(){var e;if(o.props.rtl)e=o.state.currentSlide-o.props.slidesToScroll;else{if(!dw((0,eM.A)((0,eM.A)({},o.props),o.state)))return!1;e=o.state.currentSlide+o.props.slidesToScroll}o.slideHandler(e)}),(0,ej.A)(o,"autoPlay",function(e){o.autoplayTimer&&clearInterval(o.autoplayTimer);var t=o.state.autoplaying;if("update"===e){if("hovered"===t||"focused"===t||"paused"===t)return}else if("leave"===e){if("paused"===t||"focused"===t)return}else if("blur"===e&&("paused"===t||"hovered"===t))return;o.autoplayTimer=setInterval(o.play,o.props.autoplaySpeed+50),o.setState({autoplaying:"playing"})}),(0,ej.A)(o,"pause",function(e){o.autoplayTimer&&(clearInterval(o.autoplayTimer),o.autoplayTimer=null);var t=o.state.autoplaying;"paused"===e?o.setState({autoplaying:"paused"}):"focused"===e?("hovered"===t||"playing"===t)&&o.setState({autoplaying:"focused"}):"playing"===t&&o.setState({autoplaying:"hovered"})}),(0,ej.A)(o,"onDotsOver",function(){return o.props.autoplay&&o.pause("hovered")}),(0,ej.A)(o,"onDotsLeave",function(){return o.props.autoplay&&"hovered"===o.state.autoplaying&&o.autoPlay("leave")}),(0,ej.A)(o,"onTrackOver",function(){return o.props.autoplay&&o.pause("hovered")}),(0,ej.A)(o,"onTrackLeave",function(){return o.props.autoplay&&"hovered"===o.state.autoplaying&&o.autoPlay("leave")}),(0,ej.A)(o,"onSlideFocus",function(){return o.props.autoplay&&o.pause("focused")}),(0,ej.A)(o,"onSlideBlur",function(){return o.props.autoplay&&"focused"===o.state.autoplaying&&o.autoPlay("blur")}),(0,ej.A)(o,"render",function(){var e,t,n,r=h()("slick-slider",o.props.className,{"slick-vertical":o.props.vertical,"slick-initialized":!0}),a=(0,eM.A)((0,eM.A)({},o.props),o.state),i=dC(a,["fade","cssEase","speed","infinite","centerMode","focusOnSelect","currentSlide","lazyLoad","lazyLoadedList","rtl","slideWidth","slideHeight","listHeight","vertical","slidesToShow","slidesToScroll","slideCount","trackStyle","variableWidth","unslick","centerPadding","targetSlide","useCSS"]),l=o.props.pauseOnHover;if(i=(0,eM.A)((0,eM.A)({},i),{},{onMouseEnter:l?o.onTrackOver:null,onMouseLeave:l?o.onTrackLeave:null,onMouseOver:l?o.onTrackOver:null,focusOnSelect:o.props.focusOnSelect&&o.clickable?o.selectHandler:null}),!0===o.props.dots&&o.state.slideCount>=o.props.slidesToShow){var c=dC(a,["dotsClass","slideCount","slidesToShow","currentSlide","slidesToScroll","clickHandler","children","customPaging","infinite","appendDots"]),s=o.props.pauseOnDotsHover;c=(0,eM.A)((0,eM.A)({},c),{},{clickHandler:o.changeSlide,onMouseEnter:s?o.onDotsLeave:null,onMouseOver:s?o.onDotsOver:null,onMouseLeave:s?o.onDotsLeave:null}),e=m().createElement(dQ,c)}var u=dC(a,["infinite","centerMode","currentSlide","slideCount","slidesToShow","prevArrow","nextArrow"]);u.clickHandler=o.changeSlide,o.props.arrows&&(t=m().createElement(dJ,u),n=m().createElement(d0,u));var d=null;o.props.vertical&&(d={height:o.state.listHeight});var f=null;!1===o.props.vertical?!0===o.props.centerMode&&(f={padding:"0px "+o.props.centerPadding}):!0===o.props.centerMode&&(f={padding:o.props.centerPadding+" 0px"});var p=(0,eM.A)((0,eM.A)({},d),f),g=o.props.touchMove,v={className:"slick-list",style:p,onClick:o.clickHandler,onMouseDown:g?o.swipeStart:null,onMouseMove:o.state.dragging&&g?o.swipeMove:null,onMouseUp:g?o.swipeEnd:null,onMouseLeave:o.state.dragging&&g?o.swipeEnd:null,onTouchStart:g?o.swipeStart:null,onTouchMove:o.state.dragging&&g?o.swipeMove:null,onTouchEnd:g?o.touchEnd:null,onTouchCancel:o.state.dragging&&g?o.swipeEnd:null,onKeyDown:o.props.accessibility?o.keyHandler:null},b={className:r,dir:"ltr",style:o.props.style};return o.props.unslick&&(v={className:"slick-list"},b={className:r,style:o.props.style}),m().createElement("div",b,o.props.unslick?"":t,m().createElement("div",(0,R.A)({ref:o.listRefHandler},v),m().createElement(dU,(0,R.A)({ref:o.trackRefHandler},i),o.props.children)),o.props.unslick?"":n,o.props.unslick?"":e)}),o.list=null,o.track=null,o.state=(0,eM.A)((0,eM.A)({},du),{},{currentSlide:o.props.initialSlide,targetSlide:o.props.initialSlide?o.props.initialSlide:0,slideCount:m().Children.count(o.props.children)}),o.callbackTimers=[],o.clickable=!0,o.debouncedResize=null;var n,r,o,a=o.ssrInit();return o.state=(0,eM.A)((0,eM.A)({},o.state),a),o}return(0,en.A)(t,e),(0,ee.A)(t,[{key:"didPropsChange",value:function(e){for(var t=!1,n=0,r=Object.keys(this.props);n1&&void 0!==arguments[1]&&arguments[1];return n.innerSlider.slickGoTo(e,t)}),(0,ej.A)(n,"slickPause",function(){return n.innerSlider.pause("paused")}),(0,ej.A)(n,"slickPlay",function(){return n.innerSlider.autoPlay("play")}),n.state={breakpoint:null},n._responsiveMediaHandlers=[],n}return(0,en.A)(t,e),(0,ee.A)(t,[{key:"media",value:function(e,t){var n=window.matchMedia(e),r=function(e){e.matches&&t()};n.addListener(r),r(n),this._responsiveMediaHandlers.push({mql:n,query:e,listener:r})}},{key:"componentDidMount",value:function(){var e=this;if(this.props.responsive){var t=this.props.responsive.map(function(e){return e.breakpoint});t.sort(function(e,t){return e-t}),t.forEach(function(n,r){var o;o=0===r?d6()({minWidth:0,maxWidth:n}):d6()({minWidth:t[r-1]+1,maxWidth:n}),dW()&&e.media(o,function(){e.setState({breakpoint:n})})});var n=d6()({minWidth:t.slice(-1)[0]});dW()&&this.media(n,function(){e.setState({breakpoint:null})})}}},{key:"componentWillUnmount",value:function(){this._responsiveMediaHandlers.forEach(function(e){e.mql.removeListener(e.listener)})}},{key:"render",value:function(){var e,t,n=this;(e=this.state.breakpoint?"unslick"===(t=this.props.responsive.filter(function(e){return e.breakpoint===n.state.breakpoint}))[0].settings?"unslick":(0,eM.A)((0,eM.A)((0,eM.A)({},df),this.props),t[0].settings):(0,eM.A)((0,eM.A)({},df),this.props)).centerMode&&(e.slidesToScroll,e.slidesToScroll=1),e.fade&&(e.slidesToShow,e.slidesToScroll,e.slidesToShow=1,e.slidesToScroll=1);var r=m().Children.toArray(this.props.children);r=r.filter(function(e){return"string"==typeof e?!!e.trim():!!e}),e.variableWidth&&(e.rows>1||e.slidesPerRow>1)&&(console.warn("variableWidth is not supported in case of rows > 1 or slidesPerRow > 1"),e.variableWidth=!1);for(var o=[],a=null,i=0;i=r.length));u+=1)s.push(m().cloneElement(r[u],{key:100*i+10*c+u,tabIndex:-1,style:{width:"".concat(100/e.slidesPerRow,"%"),display:"inline-block"}}));l.push(m().createElement("div",{key:10*i+c},s))}e.variableWidth?o.push(m().createElement("div",{key:i,style:{width:a}},l)):o.push(m().createElement("div",{key:i},l))}if("unslick"===e){var d="regular slider "+(this.props.className||"");return m().createElement("div",{className:d},r)}return o.length<=e.slidesToShow&&!e.infinite&&(e.unslick=!0),m().createElement(d4,(0,R.A)({style:this.props.style,ref:this.innerSliderRefHandler},dq.reduce(function(t,n){return e.hasOwnProperty(n)&&(t[n]=e[n]),t},{})),o)}}])}(m().Component);let d5=(0,w.OF)("Carousel",e=>[(e=>{let{componentCls:t,antCls:n}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{".slick-slider":{position:"relative",display:"block",boxSizing:"border-box",touchAction:"pan-y",WebkitTouchCallout:"none",WebkitTapHighlightColor:"transparent",".slick-track, .slick-list":{transform:"translate3d(0, 0, 0)",touchAction:"pan-y"}},".slick-list":{position:"relative",display:"block",margin:0,padding:0,overflow:"hidden","&:focus":{outline:"none"},"&.dragging":{cursor:"pointer"},".slick-slide":{pointerEvents:"none",[`input${n}-radio-input, input${n}-checkbox-input`]:{visibility:"hidden"},"&.slick-active":{pointerEvents:"auto",[`input${n}-radio-input, input${n}-checkbox-input`]:{visibility:"visible"}},"> div > div":{verticalAlign:"bottom"}}},".slick-track":{position:"relative",top:0,insetInlineStart:0,display:"block","&::before, &::after":{display:"table",content:'""'},"&::after":{clear:"both"}},".slick-slide":{display:"none",float:"left",height:"100%",minHeight:1,img:{display:"block"},"&.dragging img":{pointerEvents:"none"}},".slick-initialized .slick-slide":{display:"block"},".slick-vertical .slick-slide":{display:"block",height:"auto"}})}})(e),(e=>{let{componentCls:t,motionDurationSlow:n,arrowSize:r,arrowOffset:o}=e,a=e.calc(r).div(Math.SQRT2).equal();return[{[t]:{".slick-prev, .slick-next":{position:"absolute",top:"50%",width:r,height:r,transform:"translateY(-50%)",color:"#fff",opacity:.4,background:"transparent",padding:0,lineHeight:0,border:0,outline:"none",cursor:"pointer",zIndex:1,transition:`opacity ${n}`,"&:hover, &:focus":{opacity:1},"&.slick-disabled":{pointerEvents:"none",opacity:0},"&::after":{boxSizing:"border-box",position:"absolute",top:e.calc(r).sub(a).div(2).equal(),insetInlineStart:e.calc(r).sub(a).div(2).equal(),display:"inline-block",width:a,height:a,border:"0 solid currentcolor",borderInlineWidth:"2px 0",borderBlockWidth:"2px 0",borderRadius:1,content:'""'}},".slick-prev":{insetInlineStart:o,"&::after":{transform:"rotate(-45deg)"}},".slick-next":{insetInlineEnd:o,"&::after":{transform:"rotate(135deg)"}}}}]})(e),(e=>{let{componentCls:t,dotOffset:n,dotWidth:r,dotHeight:o,dotGap:a,colorBgContainer:i,motionDurationSlow:l}=e;return[{[t]:{".slick-dots":{position:"absolute",insetInlineEnd:0,bottom:0,insetInlineStart:0,zIndex:15,display:"flex !important",justifyContent:"center",paddingInlineStart:0,margin:0,listStyle:"none","&-bottom":{bottom:n},"&-top":{top:n,bottom:"auto"},li:{position:"relative",display:"inline-block",flex:"0 1 auto",boxSizing:"content-box",width:r,height:o,marginInline:a,padding:0,textAlign:"center",textIndent:-999,verticalAlign:"top",transition:`all ${l}`,button:{position:"relative",display:"block",width:"100%",height:o,padding:0,color:"transparent",fontSize:0,background:i,border:0,borderRadius:o,outline:"none",cursor:"pointer",opacity:.2,transition:`all ${l}`,"&: hover, &:focus":{opacity:.75},"&::after":{position:"absolute",inset:e.calc(a).mul(-1).equal(),content:'""'}},"&.slick-active":{width:e.dotActiveWidth,"& button":{background:i,opacity:1},"&: hover, &:focus":{opacity:1}}}}}}]})(e),(e=>{let{componentCls:t,dotOffset:n,arrowOffset:r,marginXXS:o}=e,a={width:e.dotHeight,height:e.dotWidth};return{[`${t}-vertical`]:{".slick-prev, .slick-next":{insetInlineStart:"50%",marginBlockStart:"unset",transform:"translateX(-50%)"},".slick-prev":{insetBlockStart:r,insetInlineStart:"50%","&::after":{transform:"rotate(45deg)"}},".slick-next":{insetBlockStart:"auto",insetBlockEnd:r,"&::after":{transform:"rotate(-135deg)"}},".slick-dots":{top:"50%",bottom:"auto",flexDirection:"column",width:e.dotHeight,height:"auto",margin:0,transform:"translateY(-50%)","&-left":{insetInlineEnd:"auto",insetInlineStart:n},"&-right":{insetInlineEnd:n,insetInlineStart:"auto"},li:Object.assign(Object.assign({},a),{margin:`${(0,q.zA)(o)} 0`,verticalAlign:"baseline",button:a,"&.slick-active":Object.assign(Object.assign({},a),{button:a})})}}}})(e),(e=>{let{componentCls:t}=e;return[{[`${t}-rtl`]:{direction:"rtl",".slick-dots":{[`${t}-rtl&`]:{flexDirection:"row-reverse"}}}},{[`${t}-vertical`]:{".slick-dots":{[`${t}-rtl&`]:{flexDirection:"column"}}}}]})(e)],e=>({arrowSize:16,arrowOffset:e.marginXS,dotWidth:16,dotHeight:3,dotGap:e.marginXXS,dotOffset:12,dotWidthActive:24,dotActiveWidth:24}),{deprecatedTokens:[["dotWidthActive","dotActiveWidth"]]});var d7=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let d9="slick-dots",fe=e=>{var{currentSlide:t,slideCount:n}=e,r=d7(e,["currentSlide","slideCount"]);return p.createElement("button",Object.assign({type:"button"},r))},ft=p.forwardRef((e,t)=>{let{dots:n=!0,arrows:r=!1,prevArrow:o=p.createElement(fe,{"aria-label":"prev"}),nextArrow:a=p.createElement(fe,{"aria-label":"next"}),draggable:i=!1,waitForAnimate:l=!1,dotPosition:c="bottom",vertical:s="left"===c||"right"===c,rootClassName:u,className:d,style:f,id:m}=e,g=d7(e,["dots","arrows","prevArrow","nextArrow","draggable","waitForAnimate","dotPosition","vertical","rootClassName","className","style","id"]),{getPrefixCls:v,direction:b,carousel:y}=p.useContext(A.QO),x=p.useRef(null),$=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];x.current.slickGoTo(e,t)};p.useImperativeHandle(t,()=>({goTo:$,autoPlay:x.current.innerSlider.autoPlay,innerSlider:x.current.innerSlider,prev:x.current.slickPrev,next:x.current.slickNext}),[x.current]);let w=p.useRef(p.Children.count(e.children));p.useEffect(()=>{w.current!==p.Children.count(e.children)&&($(e.initialSlide||0,!1),w.current=p.Children.count(e.children))},[e.children]);let C=Object.assign({vertical:s,className:h()(d,null==y?void 0:y.className),style:Object.assign(Object.assign({},null==y?void 0:y.style),f)},g);"fade"===C.effect&&(C.fade=!0);let S=v("carousel",C.prefixCls),k=!!n,E=h()(d9,`${d9}-${c}`,"boolean"!=typeof n&&(null==n?void 0:n.className)),[O,M,N]=d5(S),I=h()(S,{[`${S}-rtl`]:"rtl"===b,[`${S}-vertical`]:C.vertical},M,N,u);return O(p.createElement("div",{className:I,id:m},p.createElement(d8,Object.assign({ref:x},C,{dots:k,dotsClass:E,arrows:r,prevArrow:o,nextArrow:a,draggable:i,verticalSwiping:s,waitForAnimate:l}))))});var fn=p.createContext({}),fr="__rc_cascader_search_mark__",fo=function(e,t,n){var r=n.label,o=void 0===r?"":r;return t.some(function(t){return String(t[o]).toLowerCase().includes(e.toLowerCase())})},fa=function(e,t,n,r){return t.map(function(e){return e[r.label]}).join(" / ")};let fi=function(e,t,n,r,o,a){var i=o.filter,l=void 0===i?fo:i,c=o.render,s=void 0===c?fa:c,u=o.limit,d=void 0===u?50:u,f=o.sort;return p.useMemo(function(){var o=[];return e?(!function t(i,c){var u=arguments.length>2&&void 0!==arguments[2]&&arguments[2];i.forEach(function(i){if(f||!1===d||!(d>0)||!(o.length>=d)){var p,m=[].concat((0,y.A)(c),[i]),g=i[n.children],h=u||i.disabled;(!g||0===g.length||a)&&l(e,m,{label:n.label})&&o.push((0,eM.A)((0,eM.A)({},i),{},(p={disabled:h},(0,ej.A)(p,n.label,s(e,m,r,n)),(0,ej.A)(p,fr,m),(0,ej.A)(p,n.children,void 0),p))),g&&t(i[n.children],m,h)}})}(t,[]),f&&o.sort(function(t,r){return f(t[fr],r[fr],e,n)}),!1!==d&&d>0?o.slice(0,d):o):[]},[e,t,n,r,s,a,l,f,d])};var fl="__RC_CASCADER_SPLIT__",fc="SHOW_PARENT",fs="SHOW_CHILD";function fu(e){return e.join(fl)}function fd(e){return e.map(fu)}function ff(e){var t=e||{},n=t.label,r=t.value,o=t.children,a=r||"value";return{label:n||"label",value:a,key:a,children:o||"children"}}function fp(e,t){var n,r;return null!=(n=e.isLeaf)?n:!(null!=(r=e[t.children])&&r.length)}function fm(e,t){return e.map(function(e){var n;return null==(n=e[fr])?void 0:n.map(function(e){return e[t.value]})})}function fg(e){return e?Array.isArray(e)&&Array.isArray(e[0])?e:(0===e.length?[]:[e]).map(function(e){return Array.isArray(e)?e:[e]}):[]}function fh(e,t,n){var r=new Set(e),o=t();return e.filter(function(e){var t=o[e],a=t?t.parent:null,i=t?t.children:null;return!!t&&!!t.node.disabled||(n===fs?!(i&&i.some(function(e){return e.key&&r.has(e.key)})):!(a&&!a.node.disabled&&r.has(a.key)))})}function fv(e,t,n){for(var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3],o=t,a=[],i=0;i1&&void 0!==arguments[1]?arguments[1]:null;return n.map(function(s,u){for(var d,f=fx(r?r.pos:"0",u),p=f$(s[a],f),m=0;m1&&void 0!==arguments[1]?arguments[1]:{},f=d.initWrapper,p=d.processEntity,m=d.onProcessFinished,g=d.externalGetKey,h=d.childrenPropName,v=d.fieldNames,b=arguments.length>2?arguments[2]:void 0,x={},$={},A={posEntities:x,keyEntities:$};return f&&(A=f(A)||A),t=function(e){var t=e.node,n=e.index,r=e.pos,o=e.key,a=e.parentPos,i=e.level,l={node:t,nodes:e.nodes,index:n,key:o,pos:r,level:i},c=f$(o,r);x[r]=l,$[c]=l,l.parent=x[a],l.parent&&(l.parent.children=l.parent.children||[],l.parent.children.push(l)),p&&p(l,A)},n={externalGetKey:g||b,childrenPropName:h,fieldNames:v},a=(o=("object"===(0,ez.A)(n)?n:{externalGetKey:n})||{}).childrenPropName,i=o.externalGetKey,c=(l=fA(o.fieldNames)).key,s=l.children,u=a||s,i?"string"==typeof i?r=function(e){return e[i]}:"function"==typeof i&&(r=function(e){return i(e)}):r=function(e,t){return f$(e[c],t)},function n(o,a,i,l){var c=o?o[u]:e,s=o?fx(i.pos,a):"0",d=o?[].concat((0,y.A)(l),[o]):[];if(o){var f=r(o,s);t({node:o,index:a,pos:s,key:f,parentPos:i.node?i.pos:null,level:i.level+1,nodes:d})}c&&c.forEach(function(e,t){n(e,t,{node:o,pos:s,level:i?i.level+1:-1},d)})}(null),m&&m(A),A}function fk(e,t){var n=t.expandedKeys,r=t.selectedKeys,o=t.loadedKeys,a=t.loadingKeys,i=t.checkedKeys,l=t.halfCheckedKeys,c=t.dragOverNodeKey,s=t.dropPosition,u=t.keyEntities[e];return{eventKey:e,expanded:-1!==n.indexOf(e),selected:-1!==r.indexOf(e),loaded:-1!==o.indexOf(e),loading:-1!==a.indexOf(e),checked:-1!==i.indexOf(e),halfChecked:-1!==l.indexOf(e),pos:String(u?u.pos:""),dragOver:c===e&&0===s,dragOverGapTop:c===e&&-1===s,dragOverGapBottom:c===e&&1===s}}function fE(e){var t=e.data,n=e.expanded,r=e.selected,o=e.checked,a=e.loaded,i=e.loading,l=e.halfChecked,c=e.dragOver,s=e.dragOverGapTop,u=e.dragOverGapBottom,d=e.pos,f=e.active,p=e.eventKey,m=(0,eM.A)((0,eM.A)({},t),{},{expanded:n,selected:r,checked:o,loaded:a,loading:i,halfChecked:l,dragOver:c,dragOverGapTop:s,dragOverGapBottom:u,pos:d,active:f,key:p});return"props"in m||Object.defineProperty(m,"props",{get:function(){return(0,tJ.Ay)(!1,"Second param return from event is node data instead of TreeNode instance. Please read value directly instead of reading from `props`."),e}}),m}let fO=function(e,t){var n=p.useRef({options:[],info:{keyEntities:{},pathKeyEntities:{}}});return p.useCallback(function(){return n.current.options!==e&&(n.current.options=e,n.current.info=fS(e,{fieldNames:t,initWrapper:function(e){return(0,eM.A)((0,eM.A)({},e),{},{pathKeyEntities:{}})},processEntity:function(e,n){var r=e.nodes.map(function(e){return e[t.value]}).join(fl);n.pathKeyEntities[r]=e,e.key=r}})),n.current.info.pathKeyEntities},[t,e])};function fM(e,t){var n=p.useMemo(function(){return t||[]},[t]),r=fO(n,e),o=p.useCallback(function(t){var n=r();return t.map(function(t){return n[t].nodes.map(function(t){return t[e.value]})})},[r,e]);return[n,r,o]}function fN(e,t){var n=new Set;return e.forEach(function(e){t.has(e)||n.add(e)}),n}function fI(e){var t=e||{},n=t.disabled,r=t.disableCheckbox,o=t.checkable;return!!(n||r)||!1===o}function fj(e,t,n,r){var o,a=[];o=r||fI;var i=new Set(e.filter(function(e){var t=!!n[e];return t||a.push(e),t})),l=new Map,c=0;return Object.keys(n).forEach(function(e){var t=n[e],r=t.level,o=l.get(r);o||(o=new Set,l.set(r,o)),o.add(t),c=Math.max(c,r)}),(0,tJ.Ay)(!a.length,"Tree missing follow keys: ".concat(a.slice(0,100).map(function(e){return"'".concat(e,"'")}).join(", "))),!0===t?function(e,t,n,r){for(var o=new Set(e),a=new Set,i=0;i<=n;i+=1)(t.get(i)||new Set).forEach(function(e){var t=e.key,n=e.node,a=e.children,i=void 0===a?[]:a;o.has(t)&&!r(n)&&i.filter(function(e){return!r(e.node)}).forEach(function(e){o.add(e.key)})});for(var l=new Set,c=n;c>=0;c-=1)(t.get(c)||new Set).forEach(function(e){var t=e.parent;if(!(r(e.node)||!e.parent||l.has(e.parent.key))){if(r(e.parent.node))return void l.add(t.key);var n=!0,i=!1;(t.children||[]).filter(function(e){return!r(e.node)}).forEach(function(e){var t=e.key,r=o.has(t);n&&!r&&(n=!1),!i&&(r||a.has(t))&&(i=!0)}),n&&o.add(t.key),i&&a.add(t.key),l.add(t.key)}});return{checkedKeys:Array.from(o),halfCheckedKeys:Array.from(fN(a,o))}}(i,l,c,o):function(e,t,n,r,o){for(var a=new Set(e),i=new Set(t),l=0;l<=r;l+=1)(n.get(l)||new Set).forEach(function(e){var t=e.key,n=e.node,r=e.children,l=void 0===r?[]:r;a.has(t)||i.has(t)||o(n)||l.filter(function(e){return!o(e.node)}).forEach(function(e){a.delete(e.key)})});i=new Set;for(var c=new Set,s=r;s>=0;s-=1)(n.get(s)||new Set).forEach(function(e){var t=e.parent;if(!(o(e.node)||!e.parent||c.has(e.parent.key))){if(o(e.parent.node))return void c.add(t.key);var n=!0,r=!1;(t.children||[]).filter(function(e){return!o(e.node)}).forEach(function(e){var t=e.key,o=a.has(t);n&&!o&&(n=!1),!r&&(o||i.has(t))&&(r=!0)}),n||a.delete(t.key),r&&i.add(t.key),c.add(t.key)}});return{checkedKeys:Array.from(a),halfCheckedKeys:Array.from(fN(i,a))}}(i,t.halfCheckedKeys,l,c,o)}function fz(e,t,n,r,o,a,i,l){return function(c){if(e){var s=fu(c),u=fd(n),d=fd(r),f=u.includes(s),p=o.some(function(e){return fu(e)===s}),m=n,g=o;if(p&&!f)g=o.filter(function(e){return fu(e)!==s});else{var h=f?u.filter(function(e){return e!==s}):[].concat((0,y.A)(u),[s]),v=a();m=i(fh(f?fj(h,{checked:!1,halfCheckedKeys:d},v).checkedKeys:fj(h,!0,v).checkedKeys,a,l))}t([].concat((0,y.A)(g),(0,y.A)(m)))}else t(c)}}function fR(e,t,n,r,o){return p.useMemo(function(){var a=o(t),i=(0,eE.A)(a,2),l=i[0],c=i[1];if(!e||!t.length)return[l,[],c];var s=fj(fd(l),!0,n()),u=s.checkedKeys,d=s.halfCheckedKeys;return[r(u),r(d),c]},[e,t,n,r,o])}var fP=p.memo(function(e){return e.children},function(e,t){return!t.open});function fT(e){var t,n=e.prefixCls,r=e.checked,o=e.halfChecked,a=e.disabled,i=e.onClick,l=e.disableCheckbox,c=p.useContext(fn).checkable;return p.createElement("span",{className:h()("".concat(n),(t={},(0,ej.A)(t,"".concat(n,"-checked"),r),(0,ej.A)(t,"".concat(n,"-indeterminate"),!r&&o),(0,ej.A)(t,"".concat(n,"-disabled"),a||l),t)),onClick:i},"boolean"!=typeof c?c:null)}var fD="__cascader_fix_label__";function fL(e){var t=e.prefixCls,n=e.multiple,r=e.options,o=e.activeValue,a=e.prevValuePath,i=e.onToggleOpen,l=e.onSelect,c=e.onActive,s=e.checkedSet,u=e.halfCheckedSet,d=e.loadingKeys,f=e.isSelectable,m=e.disabled,g="".concat(t,"-menu-item"),v=p.useContext(fn),b=v.fieldNames,x=v.changeOnSelect,$=v.expandTrigger,A=v.expandIcon,w=v.loadingIcon,C=v.dropdownMenuColumnStyle,S=v.optionRender,k="hover"===$,E=function(e){return m||e},O=p.useMemo(function(){return r.map(function(e){var t,n=e.disabled,r=e.disableCheckbox,o=e[fr],i=null!=(t=e[fD])?t:e[b.label],l=e[b.value],c=fp(e,b),f=o?o.map(function(e){return e[b.value]}):[].concat((0,y.A)(a),[l]),p=fu(f);return{disabled:n,label:i,value:l,isLeaf:c,isLoading:d.includes(p),checked:s.has(p),halfChecked:u.has(p),option:e,disableCheckbox:r,fullPath:f,fullPathKey:p}})},[r,s,b,u,d,a]);return p.createElement("ul",{className:"".concat(t,"-menu"),role:"menu"},O.map(function(e){var r,a,s=e.disabled,u=e.label,d=e.value,m=e.isLeaf,v=e.isLoading,b=e.checked,$=e.halfChecked,O=e.option,M=e.fullPath,N=e.fullPathKey,I=e.disableCheckbox,j=function(){if(!E(s)){var e=(0,y.A)(M);k&&m&&e.pop(),c(e)}},z=function(){f(O)&&!E(s)&&l(M,m)};return"string"==typeof O.title?a=O.title:"string"==typeof u&&(a=u),p.createElement("li",{key:N,className:h()(g,(r={},(0,ej.A)(r,"".concat(g,"-expand"),!m),(0,ej.A)(r,"".concat(g,"-active"),o===d||o===N),(0,ej.A)(r,"".concat(g,"-disabled"),E(s)),(0,ej.A)(r,"".concat(g,"-loading"),v),r)),style:C,role:"menuitemcheckbox",title:a,"aria-checked":b,"data-path-key":N,onClick:function(){j(),I||(!n||m)&&z()},onDoubleClick:function(){x&&i(!1)},onMouseEnter:function(){k&&j()},onMouseDown:function(e){e.preventDefault()}},n&&p.createElement(fT,{prefixCls:"".concat(t,"-checkbox"),checked:b,halfChecked:$,disabled:E(s)||I,disableCheckbox:I,onClick:function(e){I||(e.stopPropagation(),z())}}),p.createElement("div",{className:"".concat(g,"-content")},S?S(O):u),!v&&A&&!m&&p.createElement("div",{className:"".concat(g,"-expand-icon")},A),v&&w&&p.createElement("div",{className:"".concat(g,"-loading-icon")},w))}))}let fB=function(e,t){var n=p.useContext(fn).values[0],r=p.useState([]),o=(0,eE.A)(r,2),a=o[0],i=o[1];return p.useEffect(function(){e||i(n||[])},[t,n]),[a,i]},fF=function(e,t,n,r,o,a,i){var l=i.direction,c=i.searchValue,s=i.toggleOpen,u=i.open,d="rtl"===l,f=p.useMemo(function(){for(var e=-1,o=t,a=[],i=[],l=r.length,c=fm(t,n),s=function(t){var l=o.findIndex(function(e,o){return(c[o]?fu(c[o]):e[n.value])===r[t]});if(-1===l)return 1;e=l,a.push(e),i.push(r[t]),o=o[e][n.children]},u=0;u1?x(g.slice(0,-1)):s(!1)},w=function(){var e,t=((null==(e=v[h])?void 0:e[n.children])||[]).find(function(e){return!e.disabled});t&&x([].concat((0,y.A)(g),[t[n.value]]))};p.useImperativeHandle(e,function(){return{onKeyDown:function(e){var t=e.which;switch(t){case eR.A.UP:case eR.A.DOWN:var r=0;t===eR.A.UP?r=-1:t===eR.A.DOWN&&(r=1),0!==r&&$(r);break;case eR.A.LEFT:if(c)break;d?w():A();break;case eR.A.RIGHT:if(c)break;d?A():w();break;case eR.A.BACKSPACE:c||A();break;case eR.A.ENTER:if(g.length){var o=v[h],i=(null==o?void 0:o[fr])||[];i.length?a(i.map(function(e){return e[n.value]}),i[i.length-1]):a(g,v[h])}break;case eR.A.ESC:s(!1),u&&e.stopPropagation()}},onKeyUp:function(){}}})};var fH=p.forwardRef(function(e,t){var n,r,o,a=e.prefixCls,i=e.multiple,l=e.searchValue,c=e.toggleOpen,s=e.notFoundContent,u=e.direction,d=e.open,f=e.disabled,m=p.useRef(null),g=p.useContext(fn),v=g.options,b=g.values,x=g.halfValues,$=g.fieldNames,A=g.changeOnSelect,w=g.onSelect,C=g.searchOptions,S=g.dropdownPrefixCls,k=g.loadData,E=g.expandTrigger,O=S||a,M=p.useState([]),N=(0,eE.A)(M,2),I=N[0],j=N[1],z=function(e){if(k&&!l){var t=fv(e,v,$).map(function(e){return e.option}),n=t[t.length-1];if(n&&!fp(n,$)){var r=fu(e);j(function(e){return[].concat((0,y.A)(e),[r])}),k(t)}}};p.useEffect(function(){I.length&&I.forEach(function(e){var t=fv(e.split(fl),v,$,!0).map(function(e){return e.option}),n=t[t.length-1];(!n||n[$.children]||fp(n,$))&&j(function(t){return t.filter(function(t){return t!==e})})})},[v,I,$]);var P=p.useMemo(function(){return new Set(fd(b))},[b]),T=p.useMemo(function(){return new Set(fd(x))},[x]),D=fB(i,d),L=(0,eE.A)(D,2),B=L[0],F=L[1],H=function(e){F(e),z(e)},_=function(e){if(f)return!1;var t=e.disabled,n=fp(e,$);return!t&&(n||A||i)},W=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];w(e),!i&&(t||A&&("hover"===E||n))&&c(!1)},q=p.useMemo(function(){return l?C:v},[l,C,v]),V=p.useMemo(function(){for(var e=[{options:q}],t=q,n=fm(t,$),r=0;rt.offsetHeight&&t.scrollTo({top:n+e.offsetHeight-t.offsetHeight})}}(r)}},[B,l]);var K=!(null!=(n=V[0])&&null!=(n=n.options)&&n.length),X=[(r={},(0,ej.A)(r,$.value,"__EMPTY__"),(0,ej.A)(r,fD,s),(0,ej.A)(r,"disabled",!0),r)],Y=(0,eM.A)((0,eM.A)({},e),{},{multiple:!K&&i,onSelect:W,onActive:H,onToggleOpen:c,checkedSet:P,halfCheckedSet:T,loadingKeys:I,isSelectable:_}),U=(K?[{options:X}]:V).map(function(e,t){var n=B.slice(0,t),r=B[t];return p.createElement(fL,(0,R.A)({key:t},Y,{prefixCls:O,options:e.options,prevValuePath:n,activeValue:r}))});return p.createElement(fP,{open:d},p.createElement("div",{className:h()("".concat(O,"-menus"),(o={},(0,ej.A)(o,"".concat(O,"-menu-empty"),K),(0,ej.A)(o,"".concat(O,"-rtl"),"rtl"===u),o)),ref:m},U))}),f_=p.forwardRef(function(e,t){var n=rv();return p.createElement(fH,(0,R.A)({},e,n,{ref:t}))});function fW(){}function fq(e){var t,n=e.prefixCls,r=void 0===n?"rc-cascader":n,o=e.style,a=e.className,i=e.options,l=e.checkable,c=e.defaultValue,s=e.value,u=e.fieldNames,d=e.changeOnSelect,f=e.onChange,m=e.showCheckedStrategy,g=e.loadData,v=e.expandTrigger,b=e.expandIcon,y=void 0===b?">":b,x=e.loadingIcon,$=e.direction,A=e.notFoundContent,w=e.disabled,C=!!l,S=(0,e_.vz)(c,{value:s,postState:fg}),k=(0,eE.A)(S,2),E=k[0],O=k[1],M=p.useMemo(function(){return ff(u)},[JSON.stringify(u)]),N=fM(M,i),I=(0,eE.A)(N,3),j=I[0],z=I[1],R=I[2],P=fR(C,E,z,R,fb(j,M)),T=(0,eE.A)(P,3),D=T[0],L=T[1],B=T[2],F=(0,e_._q)(function(e){if(O(e),f){var t=fg(e),n=t.map(function(e){return fv(e,j,M).map(function(e){return e.option})});f(C?t:t[0],C?n:n[0])}}),H=fz(C,F,D,L,B,z,R,m),_=(0,e_._q)(function(e){H(e)}),W=p.useMemo(function(){return{options:j,fieldNames:M,values:D,halfValues:L,changeOnSelect:d,onSelect:_,checkable:l,searchOptions:[],dropdownPrefixCls:void 0,loadData:g,expandTrigger:v,expandIcon:y,loadingIcon:x,dropdownMenuColumnStyle:void 0}},[j,M,D,L,d,_,l,g,v,y,x]),q="".concat(r,"-panel"),V=!j.length;return p.createElement(fn.Provider,{value:W},p.createElement("div",{className:h()(q,(t={},(0,ej.A)(t,"".concat(q,"-rtl"),"rtl"===$),(0,ej.A)(t,"".concat(q,"-empty"),V),t),a),style:o},V?void 0===A?"Not Found":A:p.createElement(fH,{prefixCls:r,searchValue:"",multiple:C,toggleOpen:fW,open:!0,direction:$,disabled:w})))}var fV=["id","prefixCls","fieldNames","defaultValue","value","changeOnSelect","onChange","displayRender","checkable","autoClearSearchValue","searchValue","onSearch","showSearch","expandTrigger","options","dropdownPrefixCls","loadData","popupVisible","open","popupClassName","dropdownClassName","dropdownMenuColumnStyle","dropdownStyle","popupPlacement","placement","onDropdownVisibleChange","onPopupVisibleChange","expandIcon","loadingIcon","children","dropdownMatchSelectWidth","showCheckedStrategy","optionRender"],fK=p.forwardRef(function(e,t){var n,r=e.id,o=e.prefixCls,a=void 0===o?"rc-cascader":o,i=e.fieldNames,l=e.defaultValue,c=e.value,s=e.changeOnSelect,u=e.onChange,d=e.displayRender,f=e.checkable,m=e.autoClearSearchValue,g=void 0===m||m,h=e.searchValue,v=e.onSearch,b=e.showSearch,x=e.expandTrigger,$=e.options,A=e.dropdownPrefixCls,w=e.loadData,C=e.popupVisible,S=e.open,k=e.popupClassName,E=e.dropdownClassName,O=e.dropdownMenuColumnStyle,M=e.dropdownStyle,N=e.popupPlacement,I=e.placement,j=e.onDropdownVisibleChange,z=e.onPopupVisibleChange,P=e.expandIcon,T=void 0===P?">":P,D=e.loadingIcon,L=e.children,B=e.dropdownMatchSelectWidth,F=e.showCheckedStrategy,H=void 0===F?fc:F,_=e.optionRender,W=(0,eO.A)(e,fV),q=o$(r),V=!!f,K=(0,rs.A)(l,{value:c,postState:fg}),X=(0,eE.A)(K,2),Y=X[0],U=X[1],G=p.useMemo(function(){return ff(i)},[JSON.stringify(i)]),Q=fM(G,$),Z=(0,eE.A)(Q,3),J=Z[0],ee=Z[1],et=Z[2],en=(0,rs.A)("",{value:h,postState:function(e){return e||""}}),er=(0,eE.A)(en,2),eo=er[0],ei=er[1],el=p.useMemo(function(){if(!b)return[!1,{}];var e={matchInputWidth:!0,limit:50};return b&&"object"===(0,ez.A)(b)&&(e=(0,eM.A)((0,eM.A)({},e),b)),e.limit<=0&&(e.limit=!1),[!0,e]},[b]),ec=(0,eE.A)(el,2),es=ec[0],eu=ec[1],ed=fi(eo,J,G,A||a,eu,s||V),ef=fR(V,Y,ee,et,fb(J,G)),ep=(0,eE.A)(ef,3),em=ep[0],eg=ep[1],eh=ep[2],ev=(n=p.useMemo(function(){var e=fh(fd(em),ee,H);return[].concat((0,y.A)(eh),(0,y.A)(et(e)))},[em,ee,et,eh,H]),p.useMemo(function(){var e=d||function(e){var t=V?e.slice(-1):e;return t.every(function(e){return["string","number"].includes((0,ez.A)(e))})?t.join(" / "):t.reduce(function(e,t,n){var r=p.isValidElement(t)?p.cloneElement(t,{key:n}):t;return 0===n?[r]:[].concat((0,y.A)(e),[" / ",r])},[])};return n.map(function(t){var n,r=fv(t,J,G),o=e(r.map(function(e){var t,n=e.option,r=e.value;return null!=(t=null==n?void 0:n[G.label])?t:r}),r.map(function(e){return e.option})),a=fu(t);return{label:o,value:a,key:a,valueCells:t,disabled:null==(n=r[r.length-1])||null==(n=n.option)?void 0:n.disabled}})},[n,J,G,d,V])),eb=(0,ea.A)(function(e){if(U(e),u){var t=fg(e),n=t.map(function(e){return fv(e,J,G).map(function(e){return e.option})});u(V?t:t[0],V?n:n[0])}}),ey=fz(V,eb,em,eg,eh,ee,et,H),ex=(0,ea.A)(function(e){(!V||g)&&ei(""),ey(e)}),e$=p.useMemo(function(){return{options:J,fieldNames:G,values:em,halfValues:eg,changeOnSelect:s,onSelect:ex,checkable:f,searchOptions:ed,dropdownPrefixCls:A,loadData:w,expandTrigger:x,expandIcon:T,loadingIcon:D,dropdownMenuColumnStyle:O,optionRender:_}},[J,G,em,eg,s,ex,f,ed,A,w,x,T,D,O,_]),eA=!(eo?ed:J).length,ew=eo&&eu.matchInputWidth||eA?{}:{minWidth:"auto"};return p.createElement(fn.Provider,{value:e$},p.createElement(r8,(0,R.A)({},W,{ref:t,id:q,prefixCls:a,autoClearSearchValue:g,dropdownMatchSelectWidth:void 0!==B&&B,dropdownStyle:(0,eM.A)((0,eM.A)({},ew),M),displayValues:ev,onDisplayValuesChange:function(e,t){"clear"===t.type?eb([]):ex(t.values[0].valueCells)},mode:V?"multiple":void 0,searchValue:eo,onSearch:function(e,t){ei(e),"blur"!==t.source&&v&&v(e)},showSearch:es,OptionList:f_,emptyOptions:eA,open:void 0!==S?S:C,dropdownClassName:E||k,placement:I||N,onDropdownVisibleChange:function(e){null==j||j(e),null==z||z(e)},getRawInputElement:function(){return L}})))});fK.SHOW_PARENT=fc,fK.SHOW_CHILD=fs,fK.Panel=fq;let fX=function(e,t){let{getPrefixCls:n,direction:r,renderEmpty:o}=p.useContext(A.QO);return[n("select",e),n("cascader",e),t||r,o]};function fY(e,t){return p.useMemo(()=>!!t&&p.createElement("span",{className:`${e}-checkbox-inner`}),[t])}let fU=(e,t,n)=>{let r=n;n||(r=t?p.createElement(l$,null):p.createElement(io.A,null));let o=p.createElement("span",{className:`${e}-menu-item-loading-icon`},p.createElement(eX.A,{spin:!0}));return p.useMemo(()=>[r,o],[r])};function fG(e,t){return[(e=>{let{checkboxCls:t}=e,n=`${t}-wrapper`;return[{[`${t}-group`]:Object.assign(Object.assign({},(0,V.dF)(e)),{display:"inline-flex",flexWrap:"wrap",columnGap:e.marginXS,[`> ${e.antCls}-row`]:{flex:1}}),[n]:Object.assign(Object.assign({},(0,V.dF)(e)),{display:"inline-flex",alignItems:"baseline",cursor:"pointer","&:after":{display:"inline-block",width:0,overflow:"hidden",content:"'\\a0'"},[`& + ${n}`]:{marginInlineStart:0},[`&${n}-in-form-item`]:{'input[type="checkbox"]':{width:14,height:14}}}),[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",whiteSpace:"nowrap",lineHeight:1,cursor:"pointer",borderRadius:e.borderRadiusSM,alignSelf:"center",[`${t}-input`]:{position:"absolute",inset:0,zIndex:1,cursor:"pointer",opacity:0,margin:0,[`&:focus-visible + ${t}-inner`]:Object.assign({},(0,V.jk)(e))},[`${t}-inner`]:{boxSizing:"border-box",display:"block",width:e.checkboxSize,height:e.checkboxSize,direction:"ltr",backgroundColor:e.colorBgContainer,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderRadius:e.borderRadiusSM,borderCollapse:"separate",transition:`all ${e.motionDurationSlow}`,"&:after":{boxSizing:"border-box",position:"absolute",top:"50%",insetInlineStart:"25%",display:"table",width:e.calc(e.checkboxSize).div(14).mul(5).equal(),height:e.calc(e.checkboxSize).div(14).mul(8).equal(),border:`${(0,q.zA)(e.lineWidthBold)} solid ${e.colorWhite}`,borderTop:0,borderInlineStart:0,transform:"rotate(45deg) scale(0) translate(-50%,-50%)",opacity:0,content:'""',transition:`all ${e.motionDurationFast} ${e.motionEaseInBack}, opacity ${e.motionDurationFast}`}},"& + span":{paddingInlineStart:e.paddingXS,paddingInlineEnd:e.paddingXS}})},{[` - ${n}:not(${n}-disabled), - ${t}:not(${t}-disabled) - `]:{[`&:hover ${t}-inner`]:{borderColor:e.colorPrimary}},[`${n}:not(${n}-disabled)`]:{[`&:hover ${t}-checked:not(${t}-disabled) ${t}-inner`]:{backgroundColor:e.colorPrimaryHover,borderColor:"transparent"},[`&:hover ${t}-checked:not(${t}-disabled):after`]:{borderColor:e.colorPrimaryHover}}},{[`${t}-checked`]:{[`${t}-inner`]:{backgroundColor:e.colorPrimary,borderColor:e.colorPrimary,"&:after":{opacity:1,transform:"rotate(45deg) scale(1) translate(-50%,-50%)",transition:`all ${e.motionDurationMid} ${e.motionEaseOutBack} ${e.motionDurationFast}`}}},[` - ${n}-checked:not(${n}-disabled), - ${t}-checked:not(${t}-disabled) - `]:{[`&:hover ${t}-inner`]:{backgroundColor:e.colorPrimaryHover,borderColor:"transparent"}}},{[t]:{"&-indeterminate":{[`${t}-inner`]:{backgroundColor:`${e.colorBgContainer} !important`,borderColor:`${e.colorBorder} !important`,"&:after":{top:"50%",insetInlineStart:"50%",width:e.calc(e.fontSizeLG).div(2).equal(),height:e.calc(e.fontSizeLG).div(2).equal(),backgroundColor:e.colorPrimary,border:0,transform:"translate(-50%, -50%) scale(1)",opacity:1,content:'""'}},[`&:hover ${t}-inner`]:{backgroundColor:`${e.colorBgContainer} !important`,borderColor:`${e.colorPrimary} !important`}}}},{[`${n}-disabled`]:{cursor:"not-allowed"},[`${t}-disabled`]:{[`&, ${t}-input`]:{cursor:"not-allowed",pointerEvents:"none"},[`${t}-inner`]:{background:e.colorBgContainerDisabled,borderColor:e.colorBorder,"&:after":{borderColor:e.colorTextDisabled}},"&:after":{display:"none"},"& + span":{color:e.colorTextDisabled},[`&${t}-indeterminate ${t}-inner::after`]:{background:e.colorTextDisabled}}}]})((0,ey.oX)(t,{checkboxCls:`.${e}`,checkboxSize:t.controlInteractiveSize}))]}let fQ=(0,w.OF)("Checkbox",(e,t)=>{let{prefixCls:n}=t;return[fG(n,e)]}),fZ=e=>{let{prefixCls:t,componentCls:n}=e,r=`${n}-menu-item`,o=` - &${r}-expand ${r}-expand-icon, - ${r}-loading-icon -`;return[fG(`${t}-checkbox`,e),{[n]:{"&-checkbox":{top:0,marginInlineEnd:e.paddingXS},"&-menus":{display:"flex",flexWrap:"nowrap",alignItems:"flex-start",[`&${n}-menu-empty`]:{[`${n}-menu`]:{width:"100%",height:"auto",[r]:{color:e.colorTextDisabled}}}},"&-menu":{flexGrow:1,flexShrink:0,minWidth:e.controlItemWidth,height:e.dropdownHeight,margin:0,padding:e.menuPadding,overflow:"auto",verticalAlign:"top",listStyle:"none","-ms-overflow-style":"-ms-autohiding-scrollbar","&:not(:last-child)":{borderInlineEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`},"&-item":Object.assign(Object.assign({},V.L9),{display:"flex",flexWrap:"nowrap",alignItems:"center",padding:e.optionPadding,lineHeight:e.lineHeight,cursor:"pointer",transition:`all ${e.motionDurationMid}`,borderRadius:e.borderRadiusSM,"&:hover":{background:e.controlItemBgHover},"&-disabled":{color:e.colorTextDisabled,cursor:"not-allowed","&:hover":{background:"transparent"},[o]:{color:e.colorTextDisabled}},[`&-active:not(${r}-disabled)`]:{"&, &:hover":{fontWeight:e.optionSelectedFontWeight,backgroundColor:e.optionSelectedBg}},"&-content":{flex:"auto"},[o]:{marginInlineStart:e.paddingXXS,color:e.colorTextDescription,fontSize:e.fontSizeIcon},"&-keyword":{color:e.colorHighlight}})}}}]},fJ=e=>{let t=Math.round((e.controlHeight-e.fontSize*e.lineHeight)/2);return{controlWidth:184,controlItemWidth:111,dropdownHeight:180,optionSelectedBg:e.controlItemBgActive,optionSelectedFontWeight:e.fontWeightStrong,optionPadding:`${t}px ${e.paddingSM}px`,menuPadding:e.paddingXXS}},f0=(0,w.OF)("Cascader",e=>[(e=>{let{componentCls:t,antCls:n}=e;return[{[t]:{width:e.controlWidth}},{[`${t}-dropdown`]:[{[`&${n}-select-dropdown`]:{padding:0}},fZ(e)]},{[`${t}-dropdown-rtl`]:{direction:"rtl"}},(0,oH.G)(e)]})(e)],fJ),f1=(0,w.Or)(["Cascader","Panel"],e=>(e=>{let{componentCls:t}=e;return{[`${t}-panel`]:[fZ(e),{display:"inline-flex",border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,borderRadius:e.borderRadiusLG,overflowX:"auto",maxWidth:"100%",[`${t}-menus`]:{alignItems:"stretch"},[`${t}-menu`]:{height:"auto"},"&-empty":{padding:e.paddingXXS}}]}})(e),fJ);var f2=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let{SHOW_CHILD:f4,SHOW_PARENT:f3}=fK,f6=(e,t,n,r)=>{let o=[],a=e.toLowerCase();return t.forEach((e,t)=>{var i;let l,c,s;0!==t&&o.push(" / ");let u=e[r.label],d=typeof u;("string"===d||"number"===d)&&(i=String(u),l=i.toLowerCase().split(a).reduce((e,t,n)=>0===n?[t]:[].concat((0,y.A)(e),[a,t]),[]),c=[],s=0,l.forEach((e,t)=>{let r=s+e.length,o=i.slice(s,r);s=r,t%2==1&&(o=p.createElement("span",{className:`${n}-menu-item-keyword`,key:`separator-${t}`},o)),c.push(o)}),u=c),o.push(u)}),o},f8=p.forwardRef((e,t)=>{var n;let{prefixCls:r,size:o,disabled:a,className:i,rootClassName:l,multiple:c,bordered:s=!0,transitionName:u,choiceTransitionName:d="",popupClassName:f,dropdownClassName:m,expandIcon:g,placement:v,showSearch:y,allowClear:x=!0,notFoundContent:$,direction:w,getPopupContainer:C,status:S,showArrow:k,builtinPlacements:E,style:O,variant:M}=e,N=f2(e,["prefixCls","size","disabled","className","rootClassName","multiple","bordered","transitionName","choiceTransitionName","popupClassName","dropdownClassName","expandIcon","placement","showSearch","allowClear","notFoundContent","direction","getPopupContainer","status","showArrow","builtinPlacements","style","variant"]),I=(0,b.A)(N,["suffixIcon"]),{getPopupContainer:j,getPrefixCls:z,popupOverflow:R,cascader:P}=p.useContext(A.QO),{status:T,hasFeedback:D,isFormItemInput:L,feedbackIcon:B}=p.useContext(oD.$W),F=(0,oO.v)(T,S),[H,_,W,q]=fX(r,w),V="rtl"===W,K=z(),X=(0,eh.A)(H),[Y,U,G]=at(H,X),Q=(0,eh.A)(_),[Z]=f0(_,Q),{compactSize:J,compactItemClassnames:ee}=(0,oB.RQ)(H,w),[et,en]=(0,oL.A)("cascader",M,s),er=$||(null==q?void 0:q("Cascader"))||p.createElement(oP,{componentName:"Cascader"}),eo=h()(f||m,`${_}-dropdown`,{[`${_}-dropdown-rtl`]:"rtl"===W},l,X,Q,U,G),ea=p.useMemo(()=>{if(!y)return y;let e={render:f6};return"object"==typeof y&&(e=Object.assign(Object.assign({},e),y)),e},[y]),ei=(0,oT.A)(e=>{var t;return null!=(t=null!=o?o:J)?t:e}),el=p.useContext(tp.A),[ec,es]=fU(H,V,g),eu=fY(_,c),ed=ac(e.suffixIcon,k),{suffixIcon:ef,removeIcon:ep,clearIcon:em}=al(Object.assign(Object.assign({},e),{hasFeedback:D,feedbackIcon:B,showSuffixIcon:ed,multiple:c,prefixCls:H,componentName:"Cascader"})),eg=p.useMemo(()=>void 0!==v?v:V?"bottomRight":"bottomLeft",[v,V]),[ev]=(0,eY.YK)("SelectLike",null==(n=I.dropdownStyle)?void 0:n.zIndex);return Z(Y(p.createElement(fK,Object.assign({prefixCls:H,className:h()(!r&&_,{[`${H}-lg`]:"large"===ei,[`${H}-sm`]:"small"===ei,[`${H}-rtl`]:V,[`${H}-${et}`]:en,[`${H}-in-form-item`]:L},(0,oO.L)(H,F,D),ee,null==P?void 0:P.className,i,l,X,Q,U,G),disabled:null!=a?a:el,style:Object.assign(Object.assign({},null==P?void 0:P.style),O)},I,{builtinPlacements:oF(E,R),direction:W,placement:eg,notFoundContent:er,allowClear:!0===x?{clearIcon:em}:x,showSearch:ea,expandIcon:ec,suffixIcon:ef,removeIcon:ep,loadingIcon:es,checkable:eu,dropdownClassName:eo,dropdownPrefixCls:r||_,dropdownStyle:Object.assign(Object.assign({},I.dropdownStyle),{zIndex:ev}),choiceTransitionName:(0,tN.b)(K,"",d),transitionName:(0,tN.b)(K,"slide-up",u),getPopupContainer:C||j,ref:t}))))}),f5=rd(f8,void 0,void 0,e=>(0,b.A)(e,["visible"]));f8.SHOW_PARENT=f3,f8.SHOW_CHILD=f4,f8.Panel=function(e){let{prefixCls:t,className:n,multiple:r,rootClassName:o,notFoundContent:a,direction:i,expandIcon:l,disabled:c}=e,s=p.useContext(tp.A),[u,d,f,m]=fX(t,i),g=(0,eh.A)(d),[v,b,y]=f0(d,g);f1(d);let[x,$]=fU(u,"rtl"===f,l),A=a||(null==m?void 0:m("Cascader"))||p.createElement(oP,{componentName:"Cascader"}),w=fY(d,r);return v(p.createElement(fq,Object.assign({},e,{checkable:w,prefixCls:d,className:h()(n,b,o,y,g),notFoundContent:A,direction:f,expandIcon:x,loadingIcon:$,disabled:null!=c?c:s})))},f8._InternalPanelDoNotUseOrYouWillBeFired=f5;let f7=f8,f9=m().createContext(null);var pe=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let pt=p.forwardRef((e,t)=>{var n;let{prefixCls:r,className:o,rootClassName:a,children:i,indeterminate:l=!1,style:c,onMouseEnter:s,onMouseLeave:u,skipGroup:d=!1,disabled:f}=e,m=pe(e,["prefixCls","className","rootClassName","children","indeterminate","style","onMouseEnter","onMouseLeave","skipGroup","disabled"]),{getPrefixCls:g,direction:v,checkbox:b}=p.useContext(A.QO),y=p.useContext(f9),{isFormItemInput:x}=p.useContext(oD.$W),$=p.useContext(tp.A),w=null!=(n=(null==y?void 0:y.disabled)||f)?n:$,C=p.useRef(m.value),S=p.useRef(null),k=(0,_.K4)(t,S);p.useEffect(()=>{null==y||y.registerValue(m.value)},[]),p.useEffect(()=>{if(!d)return m.value!==C.current&&(null==y||y.cancelValue(C.current),null==y||y.registerValue(m.value),C.current=m.value),()=>null==y?void 0:y.cancelValue(m.value)},[m.value]),p.useEffect(()=>{var e;(null==(e=S.current)?void 0:e.input)&&(S.current.input.indeterminate=l)},[l]);let E=g("checkbox",r),O=(0,eh.A)(E),[M,N,I]=fQ(E,O),j=Object.assign({},m);y&&!d&&(j.onChange=function(){m.onChange&&m.onChange.apply(m,arguments),y.toggleOption&&y.toggleOption({label:i,value:m.value})},j.name=y.name,j.checked=y.value.includes(m.value));let z=h()(`${E}-wrapper`,{[`${E}-rtl`]:"rtl"===v,[`${E}-wrapper-checked`]:j.checked,[`${E}-wrapper-disabled`]:w,[`${E}-wrapper-in-form-item`]:x},null==b?void 0:b.className,o,a,I,O,N),R=h()({[`${E}-indeterminate`]:l},un.D,N),[P,T]=ur(j.onClick);return M(p.createElement(ut.A,{component:"Checkbox",disabled:w},p.createElement("label",{className:z,style:Object.assign(Object.assign({},null==b?void 0:b.style),c),onMouseEnter:s,onMouseLeave:u,onClick:P},p.createElement(ue,Object.assign({},j,{onClick:T,prefixCls:E,className:R,disabled:w,ref:k})),void 0!==i&&p.createElement("span",null,i))))});var pn=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let pr=p.forwardRef((e,t)=>{let{defaultValue:n,children:r,options:o=[],prefixCls:a,className:i,rootClassName:l,style:c,onChange:s}=e,u=pn(e,["defaultValue","children","options","prefixCls","className","rootClassName","style","onChange"]),{getPrefixCls:d,direction:f}=p.useContext(A.QO),[m,g]=p.useState(u.value||n||[]),[v,x]=p.useState([]);p.useEffect(()=>{"value"in u&&g(u.value||[])},[u.value]);let $=p.useMemo(()=>o.map(e=>"string"==typeof e||"number"==typeof e?{label:e,value:e}:e),[o]),w=d("checkbox",a),C=`${w}-group`,S=(0,eh.A)(w),[k,E,O]=fQ(w,S),M=(0,b.A)(u,["value","disabled"]),N=o.length?$.map(e=>p.createElement(pt,{prefixCls:w,key:e.value.toString(),disabled:"disabled"in e?e.disabled:u.disabled,value:e.value,checked:m.includes(e.value),onChange:e.onChange,className:`${C}-item`,style:e.style,title:e.title,id:e.id,required:e.required},e.label)):r,I={toggleOption:e=>{let t=m.indexOf(e.value),n=(0,y.A)(m);-1===t?n.push(e.value):n.splice(t,1),"value"in u||g(n),null==s||s(n.filter(e=>v.includes(e)).sort((e,t)=>$.findIndex(t=>t.value===e)-$.findIndex(e=>e.value===t)))},value:m,disabled:u.disabled,name:u.name,registerValue:e=>{x(t=>[].concat((0,y.A)(t),[e]))},cancelValue:e=>{x(t=>t.filter(t=>t!==e))}},j=h()(C,{[`${C}-rtl`]:"rtl"===f},i,l,O,S,E);return k(p.createElement("div",Object.assign({className:j,style:c},M,{ref:t}),p.createElement(f9.Provider,{value:I},N)))});pt.Group=pr,pt.__ANT_CHECKBOX=!0;let po=pt,pa=(0,p.createContext)({}),pi=(e,t)=>((e,t)=>{let{prefixCls:n,componentCls:r,gridColumns:o}=e,a={};for(let e=o;e>=0;e--)0===e?(a[`${r}${t}-${e}`]={display:"none"},a[`${r}-push-${e}`]={insetInlineStart:"auto"},a[`${r}-pull-${e}`]={insetInlineEnd:"auto"},a[`${r}${t}-push-${e}`]={insetInlineStart:"auto"},a[`${r}${t}-pull-${e}`]={insetInlineEnd:"auto"},a[`${r}${t}-offset-${e}`]={marginInlineStart:0},a[`${r}${t}-order-${e}`]={order:0}):(a[`${r}${t}-${e}`]=[{"--ant-display":"block",display:"block"},{display:"var(--ant-display)",flex:`0 0 ${e/o*100}%`,maxWidth:`${e/o*100}%`}],a[`${r}${t}-push-${e}`]={insetInlineStart:`${e/o*100}%`},a[`${r}${t}-pull-${e}`]={insetInlineEnd:`${e/o*100}%`},a[`${r}${t}-offset-${e}`]={marginInlineStart:`${e/o*100}%`},a[`${r}${t}-order-${e}`]={order:e});return a[`${r}${t}-flex`]={flex:`var(--${n}${t}-flex)`},a})(e,t),pl=(0,w.OF)("Grid",e=>{let{componentCls:t}=e;return{[t]:{display:"flex",flexFlow:"row wrap",minWidth:0,"&::before, &::after":{display:"flex"},"&-no-wrap":{flexWrap:"nowrap"},"&-start":{justifyContent:"flex-start"},"&-center":{justifyContent:"center"},"&-end":{justifyContent:"flex-end"},"&-space-between":{justifyContent:"space-between"},"&-space-around":{justifyContent:"space-around"},"&-space-evenly":{justifyContent:"space-evenly"},"&-top":{alignItems:"flex-start"},"&-middle":{alignItems:"center"},"&-bottom":{alignItems:"flex-end"}}}},()=>({})),pc=(0,w.OF)("Grid",e=>{let t=(0,ey.oX)(e,{gridColumns:24}),n={"-sm":t.screenSMMin,"-md":t.screenMDMin,"-lg":t.screenLGMin,"-xl":t.screenXLMin,"-xxl":t.screenXXLMin};return[(e=>{let{componentCls:t}=e;return{[t]:{position:"relative",maxWidth:"100%",minHeight:1}}})(t),pi(t,""),pi(t,"-xs"),Object.keys(n).map(e=>{let r;return r=n[e],{[`@media (min-width: ${(0,q.zA)(r)})`]:Object.assign({},pi(t,e))}}).reduce((e,t)=>Object.assign(Object.assign({},e),t),{})]},()=>({}));var ps=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function pu(e){return"number"==typeof e?`${e} ${e} auto`:/^\d+(\.\d+)?(px|em|rem|%)$/.test(e)?`0 0 ${e}`:e}let pd=["xs","sm","md","lg","xl","xxl"],pf=p.forwardRef((e,t)=>{let{getPrefixCls:n,direction:r}=p.useContext(A.QO),{gutter:o,wrap:a}=p.useContext(pa),{prefixCls:i,span:l,order:c,offset:s,push:u,pull:d,className:f,children:m,flex:g,style:v}=e,b=ps(e,["prefixCls","span","order","offset","push","pull","className","children","flex","style"]),y=n("col",i),[x,$,w]=pc(y),C={},S={};pd.forEach(t=>{let n={},o=e[t];"number"==typeof o?n.span=o:"object"==typeof o&&(n=o||{}),delete b[t],S=Object.assign(Object.assign({},S),{[`${y}-${t}-${n.span}`]:void 0!==n.span,[`${y}-${t}-order-${n.order}`]:n.order||0===n.order,[`${y}-${t}-offset-${n.offset}`]:n.offset||0===n.offset,[`${y}-${t}-push-${n.push}`]:n.push||0===n.push,[`${y}-${t}-pull-${n.pull}`]:n.pull||0===n.pull,[`${y}-rtl`]:"rtl"===r}),n.flex&&(S[`${y}-${t}-flex`]=!0,C[`--${y}-${t}-flex`]=pu(n.flex))});let k=h()(y,{[`${y}-${l}`]:void 0!==l,[`${y}-order-${c}`]:c,[`${y}-offset-${s}`]:s,[`${y}-push-${u}`]:u,[`${y}-pull-${d}`]:d},f,S,$,w),E={};if(o&&o[0]>0){let e=o[0]/2;E.paddingLeft=e,E.paddingRight=e}return g&&(E.flex=pu(g),!1!==a||E.minWidth||(E.minWidth=0)),x(p.createElement("div",Object.assign({},b,{style:Object.assign(Object.assign(Object.assign({},E),v),C),className:k,ref:t}),m))}),pp=pf;var pm=n(43365),pg=n(19911);let ph=(0,w.OF)("Divider",e=>[(e=>{let{componentCls:t,sizePaddingEdgeHorizontal:n,colorSplit:r,lineWidth:o,textPaddingInline:a,orientationMargin:i,verticalMarginInline:l}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{borderBlockStart:`${(0,q.zA)(o)} solid ${r}`,"&-vertical":{position:"relative",top:"-0.06em",display:"inline-block",height:"0.9em",marginInline:l,marginBlock:0,verticalAlign:"middle",borderTop:0,borderInlineStart:`${(0,q.zA)(o)} solid ${r}`},"&-horizontal":{display:"flex",clear:"both",width:"100%",minWidth:"100%",margin:`${(0,q.zA)(e.dividerHorizontalGutterMargin)} 0`},[`&-horizontal${t}-with-text`]:{display:"flex",alignItems:"center",margin:`${(0,q.zA)(e.dividerHorizontalWithTextGutterMargin)} 0`,color:e.colorTextHeading,fontWeight:500,fontSize:e.fontSizeLG,whiteSpace:"nowrap",textAlign:"center",borderBlockStart:`0 ${r}`,"&::before, &::after":{position:"relative",width:"50%",borderBlockStart:`${(0,q.zA)(o)} solid transparent`,borderBlockStartColor:"inherit",borderBlockEnd:0,transform:"translateY(50%)",content:"''"}},[`&-horizontal${t}-with-text-left`]:{"&::before":{width:`calc(${i} * 100%)`},"&::after":{width:`calc(100% - ${i} * 100%)`}},[`&-horizontal${t}-with-text-right`]:{"&::before":{width:`calc(100% - ${i} * 100%)`},"&::after":{width:`calc(${i} * 100%)`}},[`${t}-inner-text`]:{display:"inline-block",paddingBlock:0,paddingInline:a},"&-dashed":{background:"none",borderColor:r,borderStyle:"dashed",borderWidth:`${(0,q.zA)(o)} 0 0`},[`&-horizontal${t}-with-text${t}-dashed`]:{"&::before, &::after":{borderStyle:"dashed none none"}},[`&-vertical${t}-dashed`]:{borderInlineStartWidth:o,borderInlineEnd:0,borderBlockStart:0,borderBlockEnd:0},"&-dotted":{background:"none",borderColor:r,borderStyle:"dotted",borderWidth:`${(0,q.zA)(o)} 0 0`},[`&-horizontal${t}-with-text${t}-dotted`]:{"&::before, &::after":{borderStyle:"dotted none none"}},[`&-vertical${t}-dotted`]:{borderInlineStartWidth:o,borderInlineEnd:0,borderBlockStart:0,borderBlockEnd:0},[`&-plain${t}-with-text`]:{color:e.colorText,fontWeight:"normal",fontSize:e.fontSize},[`&-horizontal${t}-with-text-left${t}-no-default-orientation-margin-left`]:{"&::before":{width:0},"&::after":{width:"100%"},[`${t}-inner-text`]:{paddingInlineStart:n}},[`&-horizontal${t}-with-text-right${t}-no-default-orientation-margin-right`]:{"&::before":{width:"100%"},"&::after":{width:0},[`${t}-inner-text`]:{paddingInlineEnd:n}}})}})((0,ey.oX)(e,{dividerHorizontalWithTextGutterMargin:e.margin,dividerHorizontalGutterMargin:e.marginLG,sizePaddingEdgeHorizontal:0}))],e=>({textPaddingInline:"1em",orientationMargin:.05,verticalMarginInline:e.marginXS}),{unitless:{orientationMargin:!0}});var pv=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let pb=e=>{let{getPrefixCls:t,direction:n,divider:r}=p.useContext(A.QO),{prefixCls:o,type:a="horizontal",orientation:i="center",orientationMargin:l,className:c,rootClassName:s,children:u,dashed:d,variant:f="solid",plain:m,style:g}=e,v=pv(e,["prefixCls","type","orientation","orientationMargin","className","rootClassName","children","dashed","variant","plain","style"]),b=t("divider",o),[y,x,$]=ph(b),w=!!u,C="left"===i&&null!=l,S="right"===i&&null!=l,k=h()(b,null==r?void 0:r.className,x,$,`${b}-${a}`,{[`${b}-with-text`]:w,[`${b}-with-text-${i}`]:w,[`${b}-dashed`]:!!d,[`${b}-${f}`]:"solid"!==f,[`${b}-plain`]:!!m,[`${b}-rtl`]:"rtl"===n,[`${b}-no-default-orientation-margin-left`]:C,[`${b}-no-default-orientation-margin-right`]:S},c,s),E=p.useMemo(()=>"number"==typeof l?l:/^\d+$/.test(l)?Number(l):l,[l]),O=Object.assign(Object.assign({},C&&{marginLeft:E}),S&&{marginRight:E});return y(p.createElement("div",Object.assign({className:k,style:Object.assign(Object.assign({},null==r?void 0:r.style),g)},v,{role:"separator"}),u&&"vertical"!==a&&p.createElement("span",{className:`${b}-inner-text`,style:O},u)))};var py=n(45802),px=function(e,t){if(!e)return null;var n={left:e.offsetLeft,right:e.parentElement.clientWidth-e.clientWidth-e.offsetLeft,width:e.clientWidth,top:e.offsetTop,bottom:e.parentElement.clientHeight-e.clientHeight-e.offsetTop,height:e.clientHeight};return t?{left:0,right:0,width:0,top:n.top,bottom:n.bottom,height:n.height}:{left:n.left,right:n.right,width:n.width,top:0,bottom:0,height:0}},p$=function(e){return void 0!==e?"".concat(e,"px"):void 0};function pA(e){var t=e.prefixCls,n=e.containerRef,r=e.value,o=e.getValueIndex,a=e.motionName,i=e.onMotionStart,l=e.onMotionEnd,c=e.direction,s=e.vertical,u=void 0!==s&&s,d=p.useRef(null),f=p.useState(r),m=(0,eE.A)(f,2),g=m[0],v=m[1],b=function(e){var r,a=o(e),i=null==(r=n.current)?void 0:r.querySelectorAll(".".concat(t,"-item"))[a];return(null==i?void 0:i.offsetParent)&&i},y=p.useState(null),x=(0,eE.A)(y,2),$=x[0],A=x[1],w=p.useState(null),C=(0,eE.A)(w,2),S=C[0],k=C[1];(0,rf.A)(function(){if(g!==r){var e=b(g),t=b(r),n=px(e,u),o=px(t,u);v(r),A(n),k(o),e&&t?i():l()}},[r]);var E=p.useMemo(function(){if(u){var e;return p$(null!=(e=null==$?void 0:$.top)?e:0)}return"rtl"===c?p$(-(null==$?void 0:$.right)):p$(null==$?void 0:$.left)},[u,c,$]),O=p.useMemo(function(){if(u){var e;return p$(null!=(e=null==S?void 0:S.top)?e:0)}return"rtl"===c?p$(-(null==S?void 0:S.right)):p$(null==S?void 0:S.left)},[u,c,S]);return $&&S?p.createElement(F.Ay,{visible:!0,motionName:a,motionAppear:!0,onAppearStart:function(){return u?{transform:"translateY(var(--thumb-start-top))",height:"var(--thumb-start-height)"}:{transform:"translateX(var(--thumb-start-left))",width:"var(--thumb-start-width)"}},onAppearActive:function(){return u?{transform:"translateY(var(--thumb-active-top))",height:"var(--thumb-active-height)"}:{transform:"translateX(var(--thumb-active-left))",width:"var(--thumb-active-width)"}},onVisibleChanged:function(){A(null),k(null),l()}},function(e,n){var r=e.className,o=e.style,a=(0,eM.A)((0,eM.A)({},o),{},{"--thumb-start-left":E,"--thumb-start-width":p$(null==$?void 0:$.width),"--thumb-active-left":O,"--thumb-active-width":p$(null==S?void 0:S.width),"--thumb-start-top":E,"--thumb-start-height":p$(null==$?void 0:$.height),"--thumb-active-top":O,"--thumb-active-height":p$(null==S?void 0:S.height)}),i={ref:(0,_.K4)(d,n),style:a,className:h()("".concat(t,"-thumb"),r)};return p.createElement("div",i)}):null}var pw=["prefixCls","direction","vertical","options","disabled","defaultValue","value","onChange","className","motionName"],pC=function(e){var t=e.prefixCls,n=e.className,r=e.disabled,o=e.checked,a=e.label,i=e.title,l=e.value,c=e.onChange;return p.createElement("label",{className:h()(n,(0,ej.A)({},"".concat(t,"-item-disabled"),r))},p.createElement("input",{className:"".concat(t,"-item-input"),type:"radio",disabled:r,checked:o,onChange:function(e){r||c(e,l)}}),p.createElement("div",{className:"".concat(t,"-item-label"),title:i,role:"option","aria-selected":o},a))},pS=p.forwardRef(function(e,t){var n,r,o=e.prefixCls,a=void 0===o?"rc-segmented":o,i=e.direction,l=e.vertical,c=e.options,s=void 0===c?[]:c,u=e.disabled,d=e.defaultValue,f=e.value,m=e.onChange,g=e.className,v=e.motionName,y=(0,eO.A)(e,pw),x=p.useRef(null),$=p.useMemo(function(){return(0,_.K4)(x,t)},[x,t]),A=p.useMemo(function(){return s.map(function(e){if("object"===(0,ez.A)(e)&&null!==e){var t=function(e){if(void 0!==e.title)return e.title;if("object"!==(0,ez.A)(e.label)){var t;return null==(t=e.label)?void 0:t.toString()}}(e);return(0,eM.A)((0,eM.A)({},e),{},{title:t})}return{label:null==e?void 0:e.toString(),title:null==e?void 0:e.toString(),value:e}})},[s]),w=(0,rs.A)(null==(n=A[0])?void 0:n.value,{value:f,defaultValue:d}),C=(0,eE.A)(w,2),S=C[0],k=C[1],E=p.useState(!1),O=(0,eE.A)(E,2),M=O[0],N=O[1],I=function(e,t){u||(k(t),null==m||m(t))},j=(0,b.A)(y,["children"]);return p.createElement("div",(0,R.A)({role:"listbox","aria-label":"segmented control"},j,{className:h()(a,(r={},(0,ej.A)(r,"".concat(a,"-rtl"),"rtl"===i),(0,ej.A)(r,"".concat(a,"-disabled"),u),(0,ej.A)(r,"".concat(a,"-vertical"),l),r),void 0===g?"":g),ref:$}),p.createElement("div",{className:"".concat(a,"-group")},p.createElement(pA,{vertical:l,prefixCls:a,value:S,containerRef:x,motionName:"".concat(a,"-").concat(void 0===v?"thumb-motion":v),direction:i,getValueIndex:function(e){return A.findIndex(function(t){return t.value===e})},onMotionStart:function(){N(!0)},onMotionEnd:function(){N(!1)}}),A.map(function(e){return p.createElement(pC,(0,R.A)({},e,{key:e.value,prefixCls:a,className:h()(e.className,"".concat(a,"-item"),(0,ej.A)({},"".concat(a,"-item-selected"),e.value===S&&!M)),checked:e.value===S,onChange:I,disabled:!!u||!!e.disabled}))})))});function pk(e,t){return{[`${e}, ${e}:hover, ${e}:focus`]:{color:t.colorTextDisabled,cursor:"not-allowed"}}}function pE(e){return{backgroundColor:e.itemSelectedBg,boxShadow:e.boxShadowTertiary}}let pO=Object.assign({overflow:"hidden"},V.L9),pM=(0,w.OF)("Segmented",e=>{let{lineWidth:t,calc:n}=e;return[(e=>{let{componentCls:t}=e,n=e.calc(e.controlHeight).sub(e.calc(e.trackPadding).mul(2)).equal(),r=e.calc(e.controlHeightLG).sub(e.calc(e.trackPadding).mul(2)).equal(),o=e.calc(e.controlHeightSM).sub(e.calc(e.trackPadding).mul(2)).equal();return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{display:"inline-block",padding:e.trackPadding,color:e.itemColor,background:e.trackBg,borderRadius:e.borderRadius,transition:`all ${e.motionDurationMid} ${e.motionEaseInOut}`,[`${t}-group`]:{position:"relative",display:"flex",alignItems:"stretch",justifyItems:"flex-start",flexDirection:"row",width:"100%"},[`&${t}-rtl`]:{direction:"rtl"},[`&${t}-vertical`]:{[`${t}-group`]:{flexDirection:"column"},[`${t}-thumb`]:{width:"100%",height:0,padding:`0 ${(0,q.zA)(e.paddingXXS)}`}},[`&${t}-block`]:{display:"flex"},[`&${t}-block ${t}-item`]:{flex:1,minWidth:0},[`${t}-item`]:{position:"relative",textAlign:"center",cursor:"pointer",transition:`color ${e.motionDurationMid} ${e.motionEaseInOut}`,borderRadius:e.borderRadiusSM,transform:"translateZ(0)","&-selected":Object.assign(Object.assign({},pE(e)),{color:e.itemSelectedColor}),"&::after":{content:'""',position:"absolute",zIndex:-1,width:"100%",height:"100%",top:0,insetInlineStart:0,borderRadius:"inherit",transition:`background-color ${e.motionDurationMid}`,pointerEvents:"none"},[`&:hover:not(${t}-item-selected):not(${t}-item-disabled)`]:{color:e.itemHoverColor,"&::after":{backgroundColor:e.itemHoverBg}},[`&:active:not(${t}-item-selected):not(${t}-item-disabled)`]:{color:e.itemHoverColor,"&::after":{backgroundColor:e.itemActiveBg}},"&-label":Object.assign({minHeight:n,lineHeight:(0,q.zA)(n),padding:`0 ${(0,q.zA)(e.segmentedPaddingHorizontal)}`},pO),"&-icon + *":{marginInlineStart:e.calc(e.marginSM).div(2).equal()},"&-input":{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:0,opacity:0,pointerEvents:"none"}},[`${t}-thumb`]:Object.assign(Object.assign({},pE(e)),{position:"absolute",insetBlockStart:0,insetInlineStart:0,width:0,height:"100%",padding:`${(0,q.zA)(e.paddingXXS)} 0`,borderRadius:e.borderRadiusSM,transition:`transform ${e.motionDurationSlow} ${e.motionEaseInOut}, height ${e.motionDurationSlow} ${e.motionEaseInOut}`,[`& ~ ${t}-item:not(${t}-item-selected):not(${t}-item-disabled)::after`]:{backgroundColor:"transparent"}}),[`&${t}-lg`]:{borderRadius:e.borderRadiusLG,[`${t}-item-label`]:{minHeight:r,lineHeight:(0,q.zA)(r),padding:`0 ${(0,q.zA)(e.segmentedPaddingHorizontal)}`,fontSize:e.fontSizeLG},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadius}},[`&${t}-sm`]:{borderRadius:e.borderRadiusSM,[`${t}-item-label`]:{minHeight:o,lineHeight:(0,q.zA)(o),padding:`0 ${(0,q.zA)(e.segmentedPaddingHorizontalSM)}`},[`${t}-item, ${t}-thumb`]:{borderRadius:e.borderRadiusXS}}}),pk(`&-disabled ${t}-item`,e)),pk(`${t}-item-disabled`,e)),{[`${t}-thumb-motion-appear-active`]:{transition:`transform ${e.motionDurationSlow} ${e.motionEaseInOut}, width ${e.motionDurationSlow} ${e.motionEaseInOut}`,willChange:"transform, width"}})}})((0,ey.oX)(e,{segmentedPaddingHorizontal:n(e.controlPaddingHorizontal).sub(t).equal(),segmentedPaddingHorizontalSM:n(e.controlPaddingHorizontalSM).sub(t).equal()}))]},e=>{let{colorTextLabel:t,colorText:n,colorFillSecondary:r,colorBgElevated:o,colorFill:a,lineWidthBold:i,colorBgLayout:l}=e;return{trackPadding:i,trackBg:l,itemColor:t,itemHoverColor:n,itemHoverBg:r,itemSelectedBg:o,itemActiveBg:a,itemSelectedColor:n}});var pN=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let pI=p.forwardRef((e,t)=>{let{prefixCls:n,className:r,rootClassName:o,block:a,options:i=[],size:l="middle",style:c,vertical:s}=e,u=pN(e,["prefixCls","className","rootClassName","block","options","size","style","vertical"]),{getPrefixCls:d,direction:f,segmented:m}=p.useContext(A.QO),g=d("segmented",n),[v,b,y]=pM(g),x=(0,oT.A)(l),$=p.useMemo(()=>i.map(e=>{if("object"==typeof e&&(null==e?void 0:e.icon)){let{icon:t,label:n}=e;return Object.assign(Object.assign({},pN(e,["icon","label"])),{label:p.createElement(p.Fragment,null,p.createElement("span",{className:`${g}-item-icon`},t),n&&p.createElement("span",null,n))})}return e}),[i,g]),w=h()(r,o,null==m?void 0:m.className,{[`${g}-block`]:a,[`${g}-sm`]:"small"===x,[`${g}-lg`]:"large"===x,[`${g}-vertical`]:s},b,y),C=Object.assign(Object.assign({},null==m?void 0:m.style),c);return v(p.createElement(pS,Object.assign({},u,{className:w,style:C,options:$,ref:t,prefixCls:g,direction:f,vertical:s})))}),pj=m().createContext({}),pz=m().createContext({});var pR=n(36058);let pP=e=>{let{prefixCls:t,value:n,onChange:r}=e;return m().createElement("div",{className:`${t}-clear`,onClick:()=>{if(r&&n&&!n.cleared){let e=n.toHsb();e.a=0;let t=(0,pR.Z6)(e);t.cleared=!0,r(t)}}})};(u=f||(f={})).hex="hex",u.rgb="rgb",u.hsb="hsb";let pT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M890.5 755.3L537.9 269.2c-12.8-17.6-39-17.6-51.7 0L133.5 755.3A8 8 0 00140 768h75c5.1 0 9.9-2.5 12.9-6.6L512 369.8l284.1 391.6c3 4.1 7.8 6.6 12.9 6.6h75c6.5 0 10.3-7.4 6.5-12.7z"}}]},name:"up",theme:"outlined"};var pD=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:pT}))});function pL(){return"function"==typeof BigInt}function pB(e){return!e&&0!==e&&!Number.isNaN(e)||!String(e).trim()}function pF(e){var t=e.trim(),n=t.startsWith("-");n&&(t=t.slice(1)),(t=t.replace(/(\.\d*[^0])0*$/,"$1").replace(/\.0*$/,"").replace(/^0+/,"")).startsWith(".")&&(t="0".concat(t));var r=t||"0",o=r.split("."),a=o[0]||"0",i=o[1]||"0";"0"===a&&"0"===i&&(n=!1);var l=n?"-":"";return{negative:n,negativeStr:l,trimStr:r,integerStr:a,decimalStr:i,fullStr:"".concat(l).concat(r)}}function pH(e){var t=String(e);return!Number.isNaN(Number(t))&&t.includes("e")}function p_(e){var t=e.toLowerCase().split("e"),n=(0,eE.A)(t,2),r=n[0],o=n[1],a=r.startsWith("-"),i=(a?r.slice(1):r).split("."),l=(0,eE.A)(i,2),c=l[0],s=void 0===c?"0":c,u=l[1],d=void 0===u?"":u,f="".concat(s).concat(d).replace(/^0+/,"")||"0";return{decimal:d,digits:f,exponent:Number(void 0===o?"0":o),integer:s,negative:a}}function pW(e){return e.exponent>=0?Math.max(0,e.decimal.length-e.exponent):Math.abs(e.exponent)+e.decimal.length}function pq(e){var t=String(e);return pH(e)?pW(p_(t)):t.includes(".")&&pK(t)?t.length-t.indexOf(".")-1:0}function pV(e){var t=String(e);if(pH(e)){if(e>Number.MAX_SAFE_INTEGER)return String(pL()?BigInt(e).toString():Number.MAX_SAFE_INTEGER);if(e100?function(e){var t=e.decimal,n=e.digits,r=e.exponent,o=e.integer,a=e.negative;if("0"===n)return"0";var i=o.replace(/^0+/,"").length,l=(t.match(/^0*/)||[""])[0].length,c=(i||-l)+r,s="";return s=c<=0?"0.".concat("0".repeat(-c)).concat(n):c>=n.length?"".concat(n).concat("0".repeat(c-n.length)):"".concat(n.slice(0,c),".").concat(n.slice(c)),"".concat(a?"-":"").concat(s)}(n):e.toFixed(r)}return pF(t).fullStr}function pK(e){return"number"==typeof e?!Number.isNaN(e):!!e&&(/^\s*-?\d+(\.\d+)?\s*$/.test(e)||/^\s*-?\d+\.\s*$/.test(e)||/^\s*-?\.\d+\s*$/.test(e))}var pX=function(){function e(t){if((0,J.A)(this,e),(0,ej.A)(this,"origin",""),(0,ej.A)(this,"negative",void 0),(0,ej.A)(this,"integer",void 0),(0,ej.A)(this,"decimal",void 0),(0,ej.A)(this,"decimalLen",void 0),(0,ej.A)(this,"empty",void 0),(0,ej.A)(this,"nan",void 0),pB(t)){this.empty=!0;return}if(this.origin=String(t),"-"===t||Number.isNaN(t)){this.nan=!0;return}var n=t;if(pH(n)&&(n=Number(n)),pK(n="string"==typeof n?n:pV(n))){var r=pF(n);this.negative=r.negative;var o=r.trimStr.split(".");this.integer=BigInt(o[0]);var a=o[1]||"0";this.decimal=BigInt(a),this.decimalLen=a.length}else this.nan=!0}return(0,ee.A)(e,[{key:"getMark",value:function(){return this.negative?"-":""}},{key:"getIntegerStr",value:function(){return this.integer.toString()}},{key:"getDecimalStr",value:function(){return this.decimal.toString().padStart(this.decimalLen,"0")}},{key:"alignDecimal",value:function(e){return BigInt("".concat(this.getMark()).concat(this.getIntegerStr()).concat(this.getDecimalStr().padEnd(e,"0")))}},{key:"negate",value:function(){var t=new e(this.toString());return t.negative=!t.negative,t}},{key:"cal",value:function(t,n,r){var o=Math.max(this.getDecimalStr().length,t.getDecimalStr().length),a=n(this.alignDecimal(o),t.alignDecimal(o)).toString(),i=r(o),l=pF(a),c=l.negativeStr,s=l.trimStr,u="".concat(c).concat(s.padStart(i+1,"0"));return new e("".concat(u.slice(0,-i),".").concat(u.slice(-i)))}},{key:"add",value:function(t){if(this.isInvalidate())return new e(t);var n=new e(t);return n.isInvalidate()?this:this.cal(n,function(e,t){return e+t},function(e){return e})}},{key:"multi",value:function(t){var n=new e(t);return this.isInvalidate()||n.isInvalidate()?new e(NaN):this.cal(n,function(e,t){return e*t},function(e){return 2*e})}},{key:"isEmpty",value:function(){return this.empty}},{key:"isNaN",value:function(){return this.nan}},{key:"isInvalidate",value:function(){return this.isEmpty()||this.isNaN()}},{key:"equals",value:function(e){return this.toString()===(null==e?void 0:e.toString())}},{key:"lessEquals",value:function(e){return 0>=this.add(e.negate().toString()).toNumber()}},{key:"toNumber",value:function(){return this.isNaN()?NaN:Number(this.toString())}},{key:"toString",value:function(){var e=!(arguments.length>0)||void 0===arguments[0]||arguments[0];return e?this.isInvalidate()?"":pF("".concat(this.getMark()).concat(this.getIntegerStr(),".").concat(this.getDecimalStr())).fullStr:this.origin}}]),e}(),pY=function(){function e(t){if((0,J.A)(this,e),(0,ej.A)(this,"origin",""),(0,ej.A)(this,"number",void 0),(0,ej.A)(this,"empty",void 0),pB(t)){this.empty=!0;return}this.origin=String(t),this.number=Number(t)}return(0,ee.A)(e,[{key:"negate",value:function(){return new e(-this.toNumber())}},{key:"add",value:function(t){if(this.isInvalidate())return new e(t);var n=Number(t);if(Number.isNaN(n))return this;var r=this.number+n;if(r>Number.MAX_SAFE_INTEGER)return new e(Number.MAX_SAFE_INTEGER);if(rNumber.MAX_SAFE_INTEGER)return new e(Number.MAX_SAFE_INTEGER);if(r=this.add(e.negate().toString()).toNumber()}},{key:"toNumber",value:function(){return this.number}},{key:"toString",value:function(){var e=!(arguments.length>0)||void 0===arguments[0]||arguments[0];return e?this.isInvalidate()?"":pH(this.number)&&pq(this.number)>100?String(this.number):pV(this.number):this.origin}}]),e}();function pU(e){return pL()?new pX(e):new pY(e)}function pG(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(""===e)return"";var o=pF(e),a=o.negativeStr,i=o.integerStr,l=o.decimalStr,c="".concat(t).concat(l),s="".concat(a).concat(i);if(n>=0){var u=Number(l[n]);return u>=5&&!r?pG(pU(e).add("".concat(a,"0.").concat("0".repeat(n)).concat(10-u)).toString(),t,n,r):0===n?s:"".concat(s).concat(t).concat(l.padEnd(n,"0").slice(0,n))}return".0"===c?s:"".concat(s).concat(c)}var pQ=n(89018);let pZ=function(){var e=(0,p.useState)(!1),t=(0,eE.A)(e,2),n=t[0],r=t[1];return(0,rf.A)(function(){r((0,rp.A)())},[]),n};function pJ(e){var t=e.prefixCls,n=e.upNode,r=e.downNode,o=e.upDisabled,a=e.downDisabled,i=e.onStep,l=p.useRef(),c=p.useRef([]),s=p.useRef();s.current=i;var u=function(){clearTimeout(l.current)},d=function(e,t){e.preventDefault(),u(),s.current(t),l.current=setTimeout(function e(){s.current(t),l.current=setTimeout(e,200)},600)};if(p.useEffect(function(){return function(){u(),c.current.forEach(function(e){return x.A.cancel(e)})}},[]),pZ())return null;var f="".concat(t,"-handler"),m=h()(f,"".concat(f,"-up"),(0,ej.A)({},"".concat(f,"-up-disabled"),o)),g=h()(f,"".concat(f,"-down"),(0,ej.A)({},"".concat(f,"-down-disabled"),a)),v=function(){return c.current.push((0,x.A)(u))},b={unselectable:"on",role:"button",onMouseUp:v,onMouseLeave:v};return p.createElement("div",{className:"".concat(f,"-wrap")},p.createElement("span",(0,R.A)({},b,{onMouseDown:function(e){d(e,!0)},"aria-label":"Increase Value","aria-disabled":o,className:m}),n||p.createElement("span",{unselectable:"on",className:"".concat(t,"-handler-up-inner")})),p.createElement("span",(0,R.A)({},b,{onMouseDown:function(e){d(e,!1)},"aria-label":"Decrease Value","aria-disabled":a,className:g}),r||p.createElement("span",{unselectable:"on",className:"".concat(t,"-handler-down-inner")})))}function p0(e){var t="number"==typeof e?pV(e):pF(e).fullStr;return t.includes(".")?pF(t.replace(/(\d)\.(\d)/g,"$1$2.")).fullStr:e+"0"}var p1=n(11980);let p2=function(){var e=(0,p.useRef)(0),t=function(){x.A.cancel(e.current)};return(0,p.useEffect)(function(){return t},[]),function(n){t(),e.current=(0,x.A)(function(){n()})}};var p4=["prefixCls","className","style","min","max","step","defaultValue","value","disabled","readOnly","upHandler","downHandler","keyboard","changeOnWheel","controls","classNames","stringMode","parser","formatter","precision","decimalSeparator","onChange","onInput","onPressEnter","onStep","changeOnBlur","domRef"],p3=["disabled","style","prefixCls","value","prefix","suffix","addonBefore","addonAfter","className","classNames"],p6=function(e,t){return e||t.isEmpty()?t.toString():t.toNumber()},p8=function(e){var t=pU(e);return t.isInvalidate()?null:t},p5=p.forwardRef(function(e,t){var n,r,o=e.prefixCls,a=e.className,i=e.style,l=e.min,c=e.max,s=e.step,u=void 0===s?1:s,d=e.defaultValue,f=e.value,m=e.disabled,g=e.readOnly,v=e.upHandler,b=e.downHandler,y=e.keyboard,x=e.changeOnWheel,$=void 0!==x&&x,A=e.controls,w=(e.classNames,e.stringMode),C=e.parser,S=e.formatter,k=e.precision,E=e.decimalSeparator,O=e.onChange,M=e.onInput,N=e.onPressEnter,I=e.onStep,j=e.changeOnBlur,z=void 0===j||j,P=e.domRef,T=(0,eO.A)(e,p4),D="".concat(o,"-input"),L=p.useRef(null),B=p.useState(!1),F=(0,eE.A)(B,2),H=F[0],W=F[1],q=p.useRef(!1),V=p.useRef(!1),K=p.useRef(!1),X=p.useState(function(){return pU(null!=f?f:d)}),Y=(0,eE.A)(X,2),U=Y[0],G=Y[1],Q=p.useCallback(function(e,t){if(!t)return k>=0?k:Math.max(pq(e),pq(u))},[k,u]),Z=p.useCallback(function(e){var t=String(e);if(C)return C(t);var n=t;return E&&(n=n.replace(E,".")),n.replace(/[^\w.-]+/g,"")},[C,E]),J=p.useRef(""),ee=p.useCallback(function(e,t){if(S)return S(e,{userTyping:t,input:String(J.current)});var n="number"==typeof e?pV(e):e;if(!t){var r=Q(n,t);pK(n)&&(E||r>=0)&&(n=pG(n,E||".",r))}return n},[S,Q,E]),et=p.useState(function(){var e=null!=d?d:f;return U.isInvalidate()&&["string","number"].includes((0,ez.A)(e))?Number.isNaN(e)?"":e:ee(U.toString(),!1)}),en=(0,eE.A)(et,2),er=en[0],eo=en[1];function ea(e,t){eo(ee(e.isInvalidate()?e.toString(!1):e.toString(!t),t))}J.current=er;var ei=p.useMemo(function(){return p8(c)},[c,k]),el=p.useMemo(function(){return p8(l)},[l,k]),ec=p.useMemo(function(){return!(!ei||!U||U.isInvalidate())&&ei.lessEquals(U)},[ei,U]),es=p.useMemo(function(){return!(!el||!U||U.isInvalidate())&&U.lessEquals(el)},[el,U]),eu=(n=L.current,r=(0,p.useRef)(null),[function(){try{var e=n.selectionStart,t=n.selectionEnd,o=n.value,a=o.substring(0,e),i=o.substring(t);r.current={start:e,end:t,value:o,beforeTxt:a,afterTxt:i}}catch(e){}},function(){if(n&&r.current&&H)try{var e=n.value,t=r.current,o=t.beforeTxt,a=t.afterTxt,i=t.start,l=e.length;if(e.startsWith(o))l=o.length;else if(e.endsWith(a))l=e.length-r.current.afterTxt.length;else{var c=o[i-1],s=e.indexOf(c,i-1);-1!==s&&(l=s+1)}n.setSelectionRange(l,l)}catch(e){(0,tJ.Ay)(!1,"Something warning of cursor restore. Please fire issue about this: ".concat(e.message))}}]),ed=(0,eE.A)(eu,2),ef=ed[0],ep=ed[1],em=function(e){return ei&&!e.lessEquals(ei)?ei:el&&!el.lessEquals(e)?el:null},eg=function(e){return!em(e)},eh=function(e,t){var n=e,r=eg(n)||n.isEmpty();if(n.isEmpty()||t||(n=em(n)||n,r=!0),!g&&!m&&r){var o,a=n.toString(),i=Q(a,t);return i>=0&&(eg(n=pU(pG(a,".",i)))||(n=pU(pG(a,".",i,!0)))),n.equals(U)||(o=n,void 0===f&&G(o),null==O||O(n.isEmpty()?null:p6(w,n)),void 0===f&&ea(n,t)),n}return U},ev=p2(),eb=function e(t){if(ef(),J.current=t,eo(t),!V.current){var n=pU(Z(t));n.isNaN()||eh(n,!0)}null==M||M(t),ev(function(){var n=t;C||(n=t.replace(/。/g,".")),n!==t&&e(n)})},ey=function(e){if((!e||!ec)&&(e||!es)){q.current=!1;var t,n=pU(K.current?p0(u):u);e||(n=n.negate());var r=eh((U||pU(0)).add(n.toString()),!1);null==I||I(p6(w,r),{offset:K.current?p0(u):u,type:e?"up":"down"}),null==(t=L.current)||t.focus()}},ex=function(e){var t,n=pU(Z(er));t=n.isNaN()?eh(U,e):eh(n,e),void 0!==f?ea(U,!1):t.isNaN()||ea(t,!1)};return p.useEffect(function(){if($&&H){var e=function(e){ey(e.deltaY<0),e.preventDefault()},t=L.current;if(t)return t.addEventListener("wheel",e,{passive:!1}),function(){return t.removeEventListener("wheel",e)}}}),(0,rf.o)(function(){U.isInvalidate()||ea(U,!1)},[k,S]),(0,rf.o)(function(){var e=pU(f);G(e);var t=pU(Z(er));e.equals(t)&&q.current&&!S||ea(e,q.current)},[f]),(0,rf.o)(function(){S&&ep()},[er]),p.createElement("div",{ref:P,className:h()(o,a,(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(o,"-focused"),H),"".concat(o,"-disabled"),m),"".concat(o,"-readonly"),g),"".concat(o,"-not-a-number"),U.isNaN()),"".concat(o,"-out-of-range"),!U.isInvalidate()&&!eg(U))),style:i,onFocus:function(){W(!0)},onBlur:function(){z&&ex(!1),W(!1),q.current=!1},onKeyDown:function(e){var t=e.key,n=e.shiftKey;q.current=!0,K.current=n,"Enter"===t&&(V.current||(q.current=!1),ex(!1),null==N||N(e)),!1!==y&&!V.current&&["Up","ArrowUp","Down","ArrowDown"].includes(t)&&(ey("Up"===t||"ArrowUp"===t),e.preventDefault())},onKeyUp:function(){q.current=!1,K.current=!1},onCompositionStart:function(){V.current=!0},onCompositionEnd:function(){V.current=!1,eb(L.current.value)},onBeforeInput:function(){q.current=!0}},(void 0===A||A)&&p.createElement(pJ,{prefixCls:o,upNode:v,downNode:b,upDisabled:ec,downDisabled:es,onStep:ey}),p.createElement("div",{className:"".concat(D,"-wrap")},p.createElement("input",(0,R.A)({autoComplete:"off",role:"spinbutton","aria-valuemin":l,"aria-valuemax":c,"aria-valuenow":U.isInvalidate()?null:U.toString(),step:u},T,{ref:(0,_.K4)(L,t),className:D,value:er,onChange:function(e){eb(e.target.value)},disabled:m,readOnly:g}))))}),p7=p.forwardRef(function(e,t){var n=e.disabled,r=e.style,o=e.prefixCls,a=void 0===o?"rc-input-number":o,i=e.value,l=e.prefix,c=e.suffix,s=e.addonBefore,u=e.addonAfter,d=e.className,f=e.classNames,m=(0,eO.A)(e,p3),g=p.useRef(null),h=p.useRef(null),v=p.useRef(null),b=function(e){v.current&&(0,p1.F4)(v.current,e)};return p.useImperativeHandle(t,function(){var e,t;return e=v.current,t={focus:b,nativeElement:g.current.nativeElement||h.current},"u">typeof Proxy&&e?new Proxy(e,{get:function(e,n){if(t[n])return t[n];var r=e[n];return"function"==typeof r?r.bind(e):r}}):e}),p.createElement(pQ.a,{className:d,triggerFocus:b,prefixCls:a,value:i,disabled:n,style:r,prefix:l,suffix:c,addonAfter:u,addonBefore:s,classNames:f,components:{affixWrapper:"div",groupWrapper:"div",wrapper:"div",groupAddon:"div"},ref:g},p.createElement(p5,(0,R.A)({prefixCls:a,disabled:n,ref:v,domRef:h,className:null==f?void 0:f.input},m)))}),p9=n(81594),me=n(89222);let mt=(e,t)=>{let{componentCls:n,borderRadiusSM:r,borderRadiusLG:o}=e,a="lg"===t?o:r;return{[`&-${t}`]:{[`${n}-handler-wrap`]:{borderStartEndRadius:a,borderEndEndRadius:a},[`${n}-handler-up`]:{borderStartEndRadius:a},[`${n}-handler-down`]:{borderEndEndRadius:a}}}},mn=(0,w.OF)("InputNumber",e=>{let t=(0,ey.oX)(e,(0,uv.C)(e));return[(e=>{let{componentCls:t,lineWidth:n,lineType:r,borderRadius:o,inputFontSizeSM:a,inputFontSizeLG:i,controlHeightLG:l,controlHeightSM:c,colorError:s,paddingInlineSM:u,paddingBlockSM:d,paddingBlockLG:f,paddingInlineLG:p,colorTextDescription:m,motionDurationMid:g,handleHoverColor:h,handleOpacity:v,paddingInline:b,paddingBlock:y,handleBg:x,handleActiveBg:$,colorTextDisabled:A,borderRadiusSM:w,borderRadiusLG:C,controlWidth:S,handleBorderColor:k,filledHandleBg:E,lineHeightLG:O,calc:M}=e;return[{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),(0,p9.wj)(e)),{display:"inline-block",width:S,margin:0,padding:0,borderRadius:o}),(0,me.Eb)(e,{[`${t}-handler-wrap`]:{background:x,[`${t}-handler-down`]:{borderBlockStart:`${(0,q.zA)(n)} ${r} ${k}`}}})),(0,me.sA)(e,{[`${t}-handler-wrap`]:{background:E,[`${t}-handler-down`]:{borderBlockStart:`${(0,q.zA)(n)} ${r} ${k}`}},"&:focus-within":{[`${t}-handler-wrap`]:{background:x}}})),(0,me.lB)(e)),{"&-rtl":{direction:"rtl",[`${t}-input`]:{direction:"rtl"}},"&-lg":{padding:0,fontSize:i,lineHeight:O,borderRadius:C,[`input${t}-input`]:{height:M(l).sub(M(n).mul(2)).equal(),padding:`${(0,q.zA)(f)} ${(0,q.zA)(p)}`}},"&-sm":{padding:0,fontSize:a,borderRadius:w,[`input${t}-input`]:{height:M(c).sub(M(n).mul(2)).equal(),padding:`${(0,q.zA)(d)} ${(0,q.zA)(u)}`}},"&-out-of-range":{[`${t}-input-wrap`]:{input:{color:s}}},"&-group":Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),(0,p9.XM)(e)),{"&-wrapper":Object.assign(Object.assign(Object.assign({display:"inline-block",textAlign:"start",verticalAlign:"top",[`${t}-affix-wrapper`]:{width:"100%"},"&-lg":{[`${t}-group-addon`]:{borderRadius:C,fontSize:e.fontSizeLG}},"&-sm":{[`${t}-group-addon`]:{borderRadius:w}}},(0,me.nm)(e)),(0,me.Vy)(e)),{[`&:not(${t}-compact-first-item):not(${t}-compact-last-item)${t}-compact-item`]:{[`${t}, ${t}-group-addon`]:{borderRadius:0}},[`&:not(${t}-compact-last-item)${t}-compact-first-item`]:{[`${t}, ${t}-group-addon`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&:not(${t}-compact-first-item)${t}-compact-last-item`]:{[`${t}, ${t}-group-addon`]:{borderStartStartRadius:0,borderEndStartRadius:0}}})}),[`&-disabled ${t}-input`]:{cursor:"not-allowed"},[t]:{"&-input":Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{width:"100%",padding:`${(0,q.zA)(y)} ${(0,q.zA)(b)}`,textAlign:"start",backgroundColor:"transparent",border:0,borderRadius:o,outline:0,transition:`all ${g} linear`,appearance:"textfield",fontSize:"inherit"}),(0,p9.j_)(e.colorTextPlaceholder)),{'&[type="number"]::-webkit-inner-spin-button, &[type="number"]::-webkit-outer-spin-button':{margin:0,webkitAppearance:"none",appearance:"none"}})},[`&:hover ${t}-handler-wrap, &-focused ${t}-handler-wrap`]:{width:e.handleWidth,opacity:1}})},{[t]:Object.assign(Object.assign(Object.assign({[`${t}-handler-wrap`]:{position:"absolute",insetBlockStart:0,insetInlineEnd:0,width:e.handleVisibleWidth,opacity:v,height:"100%",borderStartStartRadius:0,borderStartEndRadius:o,borderEndEndRadius:o,borderEndStartRadius:0,display:"flex",flexDirection:"column",alignItems:"stretch",transition:`all ${g}`,overflow:"hidden",[`${t}-handler`]:{display:"flex",alignItems:"center",justifyContent:"center",flex:"auto",height:"40%",[` - ${t}-handler-up-inner, - ${t}-handler-down-inner - `]:{marginInlineEnd:0,fontSize:e.handleFontSize}}},[`${t}-handler`]:{height:"50%",overflow:"hidden",color:m,fontWeight:"bold",lineHeight:0,textAlign:"center",cursor:"pointer",borderInlineStart:`${(0,q.zA)(n)} ${r} ${k}`,transition:`all ${g} linear`,"&:active":{background:$},"&:hover":{height:"60%",[` - ${t}-handler-up-inner, - ${t}-handler-down-inner - `]:{color:h}},"&-up-inner, &-down-inner":Object.assign(Object.assign({},(0,V.Nk)()),{color:m,transition:`all ${g} linear`,userSelect:"none"})},[`${t}-handler-up`]:{borderStartEndRadius:o},[`${t}-handler-down`]:{borderEndEndRadius:o}},mt(e,"lg")),mt(e,"sm")),{"&-disabled, &-readonly":{[`${t}-handler-wrap`]:{display:"none"},[`${t}-input`]:{color:"inherit"}},[` - ${t}-handler-up-disabled, - ${t}-handler-down-disabled - `]:{cursor:"not-allowed"},[` - ${t}-handler-up-disabled:hover &-handler-up-inner, - ${t}-handler-down-disabled:hover &-handler-down-inner - `]:{color:A}})}]})(t),(e=>{let{componentCls:t,paddingBlock:n,paddingInline:r,inputAffixPadding:o,controlWidth:a,borderRadiusLG:i,borderRadiusSM:l,paddingInlineLG:c,paddingInlineSM:s,paddingBlockLG:u,paddingBlockSM:d,motionDurationMid:f}=e;return{[`${t}-affix-wrapper`]:Object.assign(Object.assign({[`input${t}-input`]:{padding:`${(0,q.zA)(n)} 0`}},(0,p9.wj)(e)),{position:"relative",display:"inline-flex",alignItems:"center",width:a,padding:0,paddingInlineStart:r,"&-lg":{borderRadius:i,paddingInlineStart:c,[`input${t}-input`]:{padding:`${(0,q.zA)(u)} 0`}},"&-sm":{borderRadius:l,paddingInlineStart:s,[`input${t}-input`]:{padding:`${(0,q.zA)(d)} 0`}},[`&:not(${t}-disabled):hover`]:{zIndex:1},"&-focused, &:focus":{zIndex:1},[`&-disabled > ${t}-disabled`]:{background:"transparent"},[`> div${t}`]:{width:"100%",border:"none",outline:"none",[`&${t}-focused`]:{boxShadow:"none !important"}},"&::before":{display:"inline-block",width:0,visibility:"hidden",content:'"\\a0"'},[`${t}-handler-wrap`]:{zIndex:2},[t]:{position:"static",color:"inherit","&-prefix, &-suffix":{display:"flex",flex:"none",alignItems:"center",pointerEvents:"none"},"&-prefix":{marginInlineEnd:o},"&-suffix":{insetBlockStart:0,insetInlineEnd:0,height:"100%",marginInlineEnd:r,marginInlineStart:o,transition:`margin ${f}`}},[`&:hover ${t}-handler-wrap, &-focused ${t}-handler-wrap`]:{width:e.handleWidth,opacity:1},[`&:not(${t}-affix-wrapper-without-controls):hover ${t}-suffix`]:{marginInlineEnd:e.calc(e.handleWidth).add(r).equal()}})}})(t),(0,oH.G)(t)]},e=>{var t;let n=null!=(t=e.handleVisible)?t:"auto",r=e.controlHeightSM-2*e.lineWidth;return Object.assign(Object.assign({},(0,uv.b)(e)),{controlWidth:90,handleWidth:r,handleFontSize:e.fontSize/2,handleVisible:n,handleActiveBg:e.colorFillAlter,handleBg:e.colorBgContainer,filledHandleBg:new ts.q(e.colorFillSecondary).onBackground(e.colorBgContainer).toHexString(),handleHoverColor:e.colorPrimary,handleBorderColor:e.colorBorder,handleOpacity:+(!0===n),handleVisibleWidth:!0===n?r:0})},{unitless:{handleOpacity:!0}});var mr=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let mo=p.forwardRef((e,t)=>{let{getPrefixCls:n,direction:r}=p.useContext(A.QO),o=p.useRef(null);p.useImperativeHandle(t,()=>o.current);let{className:a,rootClassName:i,size:l,disabled:c,prefixCls:s,addonBefore:u,addonAfter:d,prefix:f,suffix:m,bordered:g,readOnly:v,status:b,controls:y,variant:x}=e,$=mr(e,["className","rootClassName","size","disabled","prefixCls","addonBefore","addonAfter","prefix","suffix","bordered","readOnly","status","controls","variant"]),w=n("input-number",s),C=(0,eh.A)(w),[S,k,E]=mn(w,C),{compactSize:O,compactItemClassnames:M}=(0,oB.RQ)(w,r),N=p.createElement(pD,{className:`${w}-handler-up-inner`}),I=p.createElement(ao,{className:`${w}-handler-down-inner`}),j="boolean"==typeof y?y:void 0;"object"==typeof y&&(N=void 0===y.upIcon?N:p.createElement("span",{className:`${w}-handler-up-inner`},y.upIcon),I=void 0===y.downIcon?I:p.createElement("span",{className:`${w}-handler-down-inner`},y.downIcon));let{hasFeedback:z,status:R,isFormItemInput:P,feedbackIcon:T}=p.useContext(oD.$W),D=(0,oO.v)(R,b),L=(0,oT.A)(e=>{var t;return null!=(t=null!=l?l:O)?t:e}),B=p.useContext(tp.A),[F,H]=(0,oL.A)("inputNumber",x,g),_=z&&p.createElement(p.Fragment,null,T),W=h()({[`${w}-lg`]:"large"===L,[`${w}-sm`]:"small"===L,[`${w}-rtl`]:"rtl"===r,[`${w}-in-form-item`]:P},k),q=`${w}-group`;return S(p.createElement(p7,Object.assign({ref:o,disabled:null!=c?c:B,className:h()(E,C,a,i,M),upHandler:N,downHandler:I,prefixCls:w,readOnly:v,controls:j,prefix:f,suffix:_||m,addonBefore:u&&p.createElement(t2.A,{form:!0,space:!0},u),addonAfter:d&&p.createElement(t2.A,{form:!0,space:!0},d),classNames:{input:W,variant:h()({[`${w}-${F}`]:H},(0,oO.L)(w,D,z)),affixWrapper:h()({[`${w}-affix-wrapper-sm`]:"small"===L,[`${w}-affix-wrapper-lg`]:"large"===L,[`${w}-affix-wrapper-rtl`]:"rtl"===r,[`${w}-affix-wrapper-without-controls`]:!1===y},k),wrapper:h()({[`${q}-rtl`]:"rtl"===r},k),groupWrapper:h()({[`${w}-group-wrapper-sm`]:"small"===L,[`${w}-group-wrapper-lg`]:"large"===L,[`${w}-group-wrapper-rtl`]:"rtl"===r,[`${w}-group-wrapper-${F}`]:H},(0,oO.L)(`${w}-group-wrapper`,D,z),k)}},$)))});mo._InternalPanelDoNotUseOrYouWillBeFired=e=>p.createElement(tO,{theme:{components:{InputNumber:{handleVisible:!0}}}},p.createElement(mo,Object.assign({},e)));let ma=mo,mi=e=>{let{prefixCls:t,min:n=0,max:r=100,value:o,onChange:a,className:i,formatter:l}=e,c=`${t}-steppers`,[s,u]=(0,p.useState)(o);return(0,p.useEffect)(()=>{Number.isNaN(o)||u(o)},[o]),m().createElement(ma,{className:h()(c,i),min:n,max:r,value:s,formatter:l,size:"small",onChange:e=>{o||u(e||0),null==a||a(e)}})},ml=e=>{let{prefixCls:t,value:n,onChange:r}=e,o=`${t}-alpha-input`,[a,i]=(0,p.useState)((0,pR.Z6)(n||"#000"));return(0,p.useEffect)(()=>{n&&i(n)},[n]),m().createElement(mi,{value:(0,pR.Gp)(a),prefixCls:t,formatter:e=>`${e}%`,className:o,onChange:e=>{let t=a.toHsb();t.a=(e||0)/100;let o=(0,pR.Z6)(t);n||i(o),null==r||r(o)}})};var mc=n(96311);function ms(e,t){let n=(0,p.useRef)([]),r=()=>{n.current.push(setTimeout(()=>{var t,n,r,o;(null==(t=e.current)?void 0:t.input)&&(null==(n=e.current)?void 0:n.input.getAttribute("type"))==="password"&&(null==(r=e.current)?void 0:r.input.hasAttribute("value"))&&(null==(o=e.current)||o.input.removeAttribute("value"))}))};return(0,p.useEffect)(()=>(t&&r(),()=>n.current.forEach(e=>{e&&clearTimeout(e)})),[]),r}var mu=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let md=(0,p.forwardRef)((e,t)=>{var n;let{prefixCls:r,bordered:o=!0,status:a,size:i,disabled:l,onBlur:c,onFocus:s,suffix:u,allowClear:d,addonAfter:f,addonBefore:g,className:v,style:b,styles:y,rootClassName:x,onChange:$,classNames:w,variant:C}=e,S=mu(e,["prefixCls","bordered","status","size","disabled","onBlur","onFocus","suffix","allowClear","addonAfter","addonBefore","className","style","styles","rootClassName","onChange","classNames","variant"]),{getPrefixCls:k,direction:E,input:O}=m().useContext(A.QO),M=k("input",r),N=(0,p.useRef)(null),I=(0,eh.A)(M),[j,z,R]=(0,p9.Ay)(M,I),{compactSize:P,compactItemClassnames:T}=(0,oB.RQ)(M,E),D=(0,oT.A)(e=>{var t;return null!=(t=null!=i?i:P)?t:e}),L=m().useContext(tp.A),{status:B,hasFeedback:F,feedbackIcon:H}=(0,p.useContext)(oD.$W),W=(0,oO.v)(B,a),q=!!(e.prefix||e.suffix||e.allowClear||e.showCount)||!!F;(0,p.useRef)(q);let V=ms(N,!0),K=(F||u)&&m().createElement(m().Fragment,null,u,F&&H),X=(0,mc.A)(null!=d?d:null==O?void 0:O.allowClear),[Y,U]=(0,oL.A)("input",C,o);return j(m().createElement(pQ.A,Object.assign({ref:(0,_.K4)(t,N),prefixCls:M,autoComplete:null==O?void 0:O.autoComplete},S,{disabled:null!=l?l:L,onBlur:e=>{V(),null==c||c(e)},onFocus:e=>{V(),null==s||s(e)},style:Object.assign(Object.assign({},null==O?void 0:O.style),b),styles:Object.assign(Object.assign({},null==O?void 0:O.styles),y),suffix:K,allowClear:X,className:h()(v,x,R,I,T,null==O?void 0:O.className),onChange:e=>{V(),null==$||$(e)},addonBefore:g&&m().createElement(t2.A,{form:!0,space:!0},g),addonAfter:f&&m().createElement(t2.A,{form:!0,space:!0},f),classNames:Object.assign(Object.assign(Object.assign({},w),null==O?void 0:O.classNames),{input:h()({[`${M}-sm`]:"small"===D,[`${M}-lg`]:"large"===D,[`${M}-rtl`]:"rtl"===E},null==w?void 0:w.input,null==(n=null==O?void 0:O.classNames)?void 0:n.input,z),variant:h()({[`${M}-${Y}`]:U},(0,oO.L)(M,W)),affixWrapper:h()({[`${M}-affix-wrapper-sm`]:"small"===D,[`${M}-affix-wrapper-lg`]:"large"===D,[`${M}-affix-wrapper-rtl`]:"rtl"===E},z),wrapper:h()({[`${M}-group-rtl`]:"rtl"===E},z),groupWrapper:h()({[`${M}-group-wrapper-sm`]:"small"===D,[`${M}-group-wrapper-lg`]:"large"===D,[`${M}-group-wrapper-rtl`]:"rtl"===E,[`${M}-group-wrapper-${Y}`]:U},(0,oO.L)(`${M}-group-wrapper`,W,F),z)})})))}),mf=(0,w.OF)(["Input","OTP"],e=>[(e=>{let{componentCls:t,paddingXS:n}=e;return{[t]:{display:"inline-flex",alignItems:"center",flexWrap:"nowrap",columnGap:n,"&-rtl":{direction:"rtl"},[`${t}-input`]:{textAlign:"center",paddingInline:e.paddingXXS},[`&${t}-sm ${t}-input`]:{paddingInline:e.calc(e.paddingXXS).div(2).equal()},[`&${t}-lg ${t}-input`]:{paddingInline:e.paddingXS}}}})((0,ey.oX)(e,(0,uv.C)(e)))],uv.b);var mp=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let mm=p.forwardRef((e,t)=>{let{value:n,onChange:r,onActiveChange:o,index:a,mask:i}=e,l=mp(e,["value","onChange","onActiveChange","index","mask"]),c=p.useRef(null);p.useImperativeHandle(t,()=>c.current);let s=()=>{(0,x.A)(()=>{var e;let t=null==(e=c.current)?void 0:e.input;document.activeElement===t&&t&&t.select()})};return p.createElement(md,Object.assign({type:!0===i?"password":"text"},l,{ref:c,value:n&&"string"==typeof i?i:n,onInput:e=>{r(a,e.target.value)},onFocus:s,onKeyDown:e=>{let{key:t,ctrlKey:n,metaKey:r}=e;"ArrowLeft"===t?o(a-1):"ArrowRight"===t?o(a+1):"z"===t&&(n||r)&&e.preventDefault(),s()},onKeyUp:e=>{"Backspace"!==e.key||n||o(a-1),s()},onMouseDown:s,onMouseUp:s}))});var mg=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function mh(e){return(e||"").split("")}let mv=p.forwardRef((e,t)=>{let{prefixCls:n,length:r=6,size:o,defaultValue:a,value:i,onChange:l,formatter:c,variant:s,disabled:u,status:d,autoFocus:f,mask:m,type:g,onInput:v,inputMode:b}=e,x=mg(e,["prefixCls","length","size","defaultValue","value","onChange","formatter","variant","disabled","status","autoFocus","mask","type","onInput","inputMode"]),{getPrefixCls:$,direction:w}=p.useContext(A.QO),C=$("otp",n),S=(0,H.A)(x,{aria:!0,data:!0,attr:!0}),k=(0,eh.A)(C),[E,O,M]=mf(C,k),N=(0,oT.A)(e=>null!=o?o:e),I=p.useContext(oD.$W),j=(0,oO.v)(I.status,d),z=p.useMemo(()=>Object.assign(Object.assign({},I),{status:j,hasFeedback:!1,feedbackIcon:null}),[I,j]),R=p.useRef(null),P=p.useRef({});p.useImperativeHandle(t,()=>({focus:()=>{var e;null==(e=P.current[0])||e.focus()},blur:()=>{var e;for(let t=0;tc?c(e):e,[D,L]=p.useState(mh(T(a||"")));p.useEffect(()=>{void 0!==i&&L(mh(i))},[i]);let B=(0,ea.A)(e=>{L(e),v&&v(e),l&&e.length===r&&e.every(e=>e)&&e.some((e,t)=>D[t]!==e)&&l(e.join(""))}),F=(0,ea.A)((e,t)=>{let n=(0,y.A)(D);for(let t=0;t=0&&!n[e];e-=1)n.pop();return n=mh(T(n.map(e=>e||" ").join(""))).map((e,t)=>" "!==e||n[t]?e:n[t])}),_=(e,t)=>{var n;let o=F(e,t),a=Math.min(e+t.length,r-1);a!==e&&void 0!==o[e]&&(null==(n=P.current[a])||n.focus()),B(o)},W=e=>{var t;null==(t=P.current[e])||t.focus()},q={variant:s,disabled:u,status:j,mask:m,type:g,inputMode:b};return E(p.createElement("div",Object.assign({},S,{ref:R,className:h()(C,{[`${C}-sm`]:"small"===N,[`${C}-lg`]:"large"===N,[`${C}-rtl`]:"rtl"===w},M,O)}),p.createElement(oD.$W.Provider,{value:z},Array.from({length:r}).map((e,t)=>{let n=`otp-${t}`,r=D[t]||"";return p.createElement(mm,Object.assign({ref:e=>{P.current[t]=e},key:n,index:t,size:N,htmlSize:1,className:`${C}-input`,onChange:_,value:r,onActiveChange:W,autoFocus:0===t&&f},q))}))))}),mb={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M942.2 486.2Q889.47 375.11 816.7 305l-50.88 50.88C807.31 395.53 843.45 447.4 874.7 512 791.5 684.2 673.4 766 512 766q-72.67 0-133.87-22.38L323 798.75Q408 838 512 838q288.3 0 430.2-300.3a60.29 60.29 0 000-51.5zm-63.57-320.64L836 122.88a8 8 0 00-11.32 0L715.31 232.2Q624.86 186 512 186q-288.3 0-430.2 300.3a60.3 60.3 0 000 51.5q56.69 119.4 136.5 191.41L112.48 835a8 8 0 000 11.31L155.17 889a8 8 0 0011.31 0l712.15-712.12a8 8 0 000-11.32zM149.3 512C232.6 339.8 350.7 258 512 258c54.54 0 104.13 9.36 149.12 28.39l-70.3 70.3a176 176 0 00-238.13 238.13l-83.42 83.42C223.1 637.49 183.3 582.28 149.3 512zm246.7 0a112.11 112.11 0 01146.2-106.69L401.31 546.2A112 112 0 01396 512z"}},{tag:"path",attrs:{d:"M508 624c-3.46 0-6.87-.16-10.25-.47l-52.82 52.82a176.09 176.09 0 00227.42-227.42l-52.82 52.82c.31 3.38.47 6.79.47 10.25a111.94 111.94 0 01-112 112z"}}]},name:"eye-invisible",theme:"outlined"};var my=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:mb}))}),mx=n(7532),m$=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let mA=e=>e?p.createElement(mx.A,null):p.createElement(my,null),mw={click:"onClick",hover:"onMouseOver"},mC=p.forwardRef((e,t)=>{let n,r,o,{disabled:a,action:i="click",visibilityToggle:l=!0,iconRender:c=mA}=e,s=p.useContext(tp.A),u=null!=a?a:s,d="object"==typeof l&&void 0!==l.visible,[f,m]=(0,p.useState)(()=>!!d&&l.visible),g=(0,p.useRef)(null);p.useEffect(()=>{d&&m(l.visible)},[d,l]);let v=ms(g),{className:y,prefixCls:x,inputPrefixCls:$,size:w}=e,C=m$(e,["className","prefixCls","inputPrefixCls","size"]),{getPrefixCls:S}=p.useContext(A.QO),k=S("input",$),E=S("input-password",x),O=l&&(n=mw[i]||"",r=c(f),o={[n]:()=>{var e;if(u)return;f&&v();let t=!f;m(t),"object"==typeof l&&(null==(e=l.onVisibleChange)||e.call(l,t))},className:`${E}-icon`,key:"passwordIcon",onMouseDown:e=>{e.preventDefault()},onMouseUp:e=>{e.preventDefault()}},p.cloneElement(p.isValidElement(r)?r:p.createElement("span",null,r),o)),M=h()(E,y,{[`${E}-${w}`]:!!w}),N=Object.assign(Object.assign({},(0,b.A)(C,["suffix","iconRender","visibilityToggle"])),{type:f?"text":"password",className:M,prefixCls:k,suffix:O});return w&&(N.size=w),p.createElement(md,Object.assign({ref:(0,_.K4)(t,g)},N))});var mS=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let mk=p.forwardRef((e,t)=>{let n,{prefixCls:r,inputPrefixCls:o,className:a,size:i,suffix:l,enterButton:c=!1,addonAfter:s,loading:u,disabled:d,onSearch:f,onChange:m,onCompositionStart:g,onCompositionEnd:v}=e,b=mS(e,["prefixCls","inputPrefixCls","className","size","suffix","enterButton","addonAfter","loading","disabled","onSearch","onChange","onCompositionStart","onCompositionEnd"]),{getPrefixCls:y,direction:x}=p.useContext(A.QO),$=p.useRef(!1),w=y("input-search",r),C=y("input",o),{compactSize:S}=(0,oB.RQ)(w,x),k=(0,oT.A)(e=>{var t;return null!=(t=null!=i?i:S)?t:e}),E=p.useRef(null),O=e=>{var t;document.activeElement===(null==(t=E.current)?void 0:t.input)&&e.preventDefault()},M=e=>{var t,n;f&&f(null==(n=null==(t=E.current)?void 0:t.input)?void 0:n.value,e,{source:"input"})},N="boolean"==typeof c?p.createElement(ai,null):null,I=`${w}-button`,j=c||{},z=j.type&&!0===j.type.__ANT_BUTTON;n=z||"button"===j.type?(0,W.Ob)(j,Object.assign({onMouseDown:O,onClick:e=>{var t,n;null==(n=null==(t=null==j?void 0:j.props)?void 0:t.onClick)||n.call(t,e),M(e)},key:"enterButton"},z?{className:I,size:k}:{})):p.createElement(tz.Ay,{className:I,type:c?"primary":void 0,size:k,disabled:d,key:"enterButton",onMouseDown:O,onClick:M,loading:u,icon:N},c),s&&(n=[n,(0,W.Ob)(s,{key:"addonAfter"})]);let R=h()(w,{[`${w}-rtl`]:"rtl"===x,[`${w}-${k}`]:!!k,[`${w}-with-button`]:!!c},a);return p.createElement(md,Object.assign({ref:(0,_.K4)(E,t),onPressEnter:e=>{$.current||u||M(e)}},b,{size:k,onCompositionStart:e=>{$.current=!0,null==g||g(e)},onCompositionEnd:e=>{$.current=!1,null==v||v(e)},prefixCls:C,addonAfter:n,suffix:l,onChange:e=>{(null==e?void 0:e.target)&&"click"===e.type&&f&&f(e.target.value,e,{source:"clear"}),null==m||m(e)},className:R,disabled:d}))});var mE=n(88592);md.Group=e=>{let{getPrefixCls:t,direction:n}=(0,p.useContext)(A.QO),{prefixCls:r,className:o}=e,a=t("input-group",r),i=t("input"),[l,c]=(0,p9.Ay)(i),s=h()(a,{[`${a}-lg`]:"large"===e.size,[`${a}-sm`]:"small"===e.size,[`${a}-compact`]:e.compact,[`${a}-rtl`]:"rtl"===n},c,o),u=(0,p.useContext)(oD.$W),d=(0,p.useMemo)(()=>Object.assign(Object.assign({},u),{isFormItemInput:!1}),[u]);return l(p.createElement("span",{className:s,style:e.style,onMouseEnter:e.onMouseEnter,onMouseLeave:e.onMouseLeave,onFocus:e.onFocus,onBlur:e.onBlur},p.createElement(oD.$W.Provider,{value:d},e.children)))},md.Search=mk,md.TextArea=mE.A,md.Password=mC,md.OTP=mv;let mO=md,mM=/(^#[\da-f]{6}$)|(^#[\da-f]{8}$)/i,mN=e=>{let{prefixCls:t,value:n,onChange:r}=e,o=`${t}-hex-input`,[a,i]=(0,p.useState)(()=>n?(0,pg.Ol)(n.toHexString()):void 0);return(0,p.useEffect)(()=>{n&&i((0,pg.Ol)(n.toHexString()))},[n]),m().createElement(mO,{className:o,value:a,prefix:"#",onChange:e=>{let t,n=e.target.value;i((0,pg.Ol)(n)),t=(0,pg.Ol)(n,!0),mM.test(`#${t}`)&&(null==r||r((0,pR.Z6)(n)))},size:"small"})},mI=e=>{let{prefixCls:t,value:n,onChange:r}=e,o=`${t}-hsb-input`,[a,i]=(0,p.useState)((0,pR.Z6)(n||"#000"));(0,p.useEffect)(()=>{n&&i(n)},[n]);let l=(e,t)=>{let o=a.toHsb();o[t]="h"===t?e:(e||0)/100;let l=(0,pR.Z6)(o);n||i(l),null==r||r(l)};return m().createElement("div",{className:o},m().createElement(mi,{max:360,min:0,value:Number(a.toHsb().h),prefixCls:t,className:o,formatter:e=>(0,pR.W)(e||0).toString(),onChange:e=>l(Number(e),"h")}),m().createElement(mi,{max:100,min:0,value:100*Number(a.toHsb().s),prefixCls:t,className:o,formatter:e=>`${(0,pR.W)(e||0)}%`,onChange:e=>l(Number(e),"s")}),m().createElement(mi,{max:100,min:0,value:100*Number(a.toHsb().b),prefixCls:t,className:o,formatter:e=>`${(0,pR.W)(e||0)}%`,onChange:e=>l(Number(e),"b")}))},mj=e=>{let{prefixCls:t,value:n,onChange:r}=e,o=`${t}-rgb-input`,[a,i]=(0,p.useState)((0,pR.Z6)(n||"#000"));(0,p.useEffect)(()=>{n&&i(n)},[n]);let l=(e,t)=>{let o=a.toRgb();o[t]=e||0;let l=(0,pR.Z6)(o);n||i(l),null==r||r(l)};return m().createElement("div",{className:o},m().createElement(mi,{max:255,min:0,value:Number(a.toRgb().r),prefixCls:t,className:o,onChange:e=>l(Number(e),"r")}),m().createElement(mi,{max:255,min:0,value:Number(a.toRgb().g),prefixCls:t,className:o,onChange:e=>l(Number(e),"g")}),m().createElement(mi,{max:255,min:0,value:Number(a.toRgb().b),prefixCls:t,className:o,onChange:e=>l(Number(e),"b")}))},mz=[f.hex,f.hsb,f.rgb].map(e=>({value:e,label:e.toLocaleUpperCase()})),mR=e=>{let{prefixCls:t,format:n,value:r,disabledAlpha:o,onFormatChange:a,onChange:i,disabledFormat:l}=e,[c,s]=(0,rs.A)(f.hex,{value:n,onChange:a}),u=`${t}-input`,d=(0,p.useMemo)(()=>{let e={value:r,prefixCls:t,onChange:i};switch(c){case f.hsb:return m().createElement(mI,Object.assign({},e));case f.rgb:return m().createElement(mj,Object.assign({},e));default:return m().createElement(mN,Object.assign({},e))}},[c,t,r,i]);return m().createElement("div",{className:`${u}-container`},!l&&m().createElement(ap,{value:c,variant:"borderless",getPopupContainer:e=>e,popupMatchSelectWidth:68,placement:"bottomRight",onChange:e=>{s(e)},className:`${t}-format-select`,size:"small",options:mz}),m().createElement("div",{className:u},d),!o&&m().createElement(ml,{prefixCls:t,value:r,onChange:i}))};function mP(e,t,n,r){var o=(t-n)/(r-n),a={};switch(e){case"rtl":a.right="".concat(100*o,"%"),a.transform="translateX(50%)";break;case"btt":a.bottom="".concat(100*o,"%"),a.transform="translateY(50%)";break;case"ttb":a.top="".concat(100*o,"%"),a.transform="translateY(-50%)";break;default:a.left="".concat(100*o,"%"),a.transform="translateX(-50%)"}return a}function mT(e,t){return Array.isArray(e)?e[t]:e}var mD=p.createContext({min:0,max:0,direction:"ltr",step:1,includedStart:0,includedEnd:0,tabIndex:0,keyboard:!0,styles:{},classNames:{}}),mL=p.createContext({}),mB=["prefixCls","value","valueIndex","onStartMove","onDelete","style","render","dragging","draggingDelete","onOffsetChange","onChangeComplete","onFocus","onMouseEnter"],mF=p.forwardRef(function(e,t){var n,r=e.prefixCls,o=e.value,a=e.valueIndex,i=e.onStartMove,l=e.onDelete,c=e.style,s=e.render,u=e.dragging,d=e.draggingDelete,f=e.onOffsetChange,m=e.onChangeComplete,g=e.onFocus,v=e.onMouseEnter,b=(0,eO.A)(e,mB),y=p.useContext(mD),x=y.min,$=y.max,A=y.direction,w=y.disabled,C=y.keyboard,S=y.range,k=y.tabIndex,E=y.ariaLabelForHandle,O=y.ariaLabelledByForHandle,M=y.ariaRequired,N=y.ariaValueTextFormatterForHandle,I=y.styles,j=y.classNames,z="".concat(r,"-handle"),P=function(e){w||i(e,a)},T=mP(A,o,x,$),D={};null!==a&&(D={tabIndex:w?null:mT(k,a),role:"slider","aria-valuemin":x,"aria-valuemax":$,"aria-valuenow":o,"aria-disabled":w,"aria-label":mT(E,a),"aria-labelledby":mT(O,a),"aria-required":mT(M,a),"aria-valuetext":null==(n=mT(N,a))?void 0:n(o),"aria-orientation":"ltr"===A||"rtl"===A?"horizontal":"vertical",onMouseDown:P,onTouchStart:P,onFocus:function(e){null==g||g(e,a)},onMouseEnter:function(e){v(e,a)},onKeyDown:function(e){if(!w&&C){var t=null;switch(e.which||e.keyCode){case eR.A.LEFT:t="ltr"===A||"btt"===A?-1:1;break;case eR.A.RIGHT:t="ltr"===A||"btt"===A?1:-1;break;case eR.A.UP:t="ttb"!==A?1:-1;break;case eR.A.DOWN:t="ttb"!==A?-1:1;break;case eR.A.HOME:t="min";break;case eR.A.END:t="max";break;case eR.A.PAGE_UP:t=2;break;case eR.A.PAGE_DOWN:t=-2;break;case eR.A.BACKSPACE:case eR.A.DELETE:null==l||l(a)}null!==t&&(e.preventDefault(),f(t,a))}},onKeyUp:function(e){switch(e.which||e.keyCode){case eR.A.LEFT:case eR.A.RIGHT:case eR.A.UP:case eR.A.DOWN:case eR.A.HOME:case eR.A.END:case eR.A.PAGE_UP:case eR.A.PAGE_DOWN:null==m||m()}}});var L=p.createElement("div",(0,R.A)({ref:t,className:h()(z,(0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(z,"-").concat(a+1),null!==a&&S),"".concat(z,"-dragging"),u),"".concat(z,"-dragging-delete"),d),j.handle),style:(0,eM.A)((0,eM.A)((0,eM.A)({},T),c),I.handle)},D,b));return s&&(L=s(L,{index:a,prefixCls:r,value:o,dragging:u,draggingDelete:d})),L}),mH=["prefixCls","style","onStartMove","onOffsetChange","values","handleRender","activeHandleRender","draggingIndex","draggingDelete","onFocus"],m_=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.style,o=e.onStartMove,a=e.onOffsetChange,i=e.values,l=e.handleRender,c=e.activeHandleRender,s=e.draggingIndex,u=e.draggingDelete,d=e.onFocus,f=(0,eO.A)(e,mH),m=p.useRef({}),g=p.useState(!1),h=(0,eE.A)(g,2),v=h[0],b=h[1],y=p.useState(-1),x=(0,eE.A)(y,2),$=x[0],A=x[1],w=function(e){A(e),b(!0)};p.useImperativeHandle(t,function(){return{focus:function(e){var t;null==(t=m.current[e])||t.focus()},hideHelp:function(){(0,eN.flushSync)(function(){b(!1)})}}});var C=(0,eM.A)({prefixCls:n,onStartMove:o,onOffsetChange:a,render:l,onFocus:function(e,t){w(t),null==d||d(e)},onMouseEnter:function(e,t){w(t)}},f);return p.createElement(p.Fragment,null,i.map(function(e,t){var n=s===t;return p.createElement(mF,(0,R.A)({ref:function(e){e?m.current[t]=e:delete m.current[t]},dragging:n,draggingDelete:n&&u,style:mT(r,t),key:t,value:e,valueIndex:t},C))}),c&&v&&p.createElement(mF,(0,R.A)({key:"a11y"},C,{value:i[$],valueIndex:null,dragging:-1!==s,draggingDelete:u,render:c,style:{pointerEvents:"none"},tabIndex:null,"aria-hidden":!0})))});let mW=function(e){var t=e.prefixCls,n=e.style,r=e.children,o=e.value,a=e.onClick,i=p.useContext(mD),l=i.min,c=i.max,s=i.direction,u=i.includedStart,d=i.includedEnd,f=i.included,m="".concat(t,"-text"),g=mP(s,o,l,c);return p.createElement("span",{className:h()(m,(0,ej.A)({},"".concat(m,"-active"),f&&u<=o&&o<=d)),style:(0,eM.A)((0,eM.A)({},g),n),onMouseDown:function(e){e.stopPropagation()},onClick:function(){a(o)}},r)},mq=function(e){var t=e.prefixCls,n=e.marks,r=e.onClick,o="".concat(t,"-mark");return n.length?p.createElement("div",{className:o},n.map(function(e){var t=e.value,n=e.style,a=e.label;return p.createElement(mW,{key:t,prefixCls:o,style:n,value:t,onClick:r},a)})):null},mV=function(e){var t=e.prefixCls,n=e.value,r=e.style,o=e.activeStyle,a=p.useContext(mD),i=a.min,l=a.max,c=a.direction,s=a.included,u=a.includedStart,d=a.includedEnd,f="".concat(t,"-dot"),m=s&&u<=n&&n<=d,g=(0,eM.A)((0,eM.A)({},mP(c,n,i,l)),"function"==typeof r?r(n):r);return m&&(g=(0,eM.A)((0,eM.A)({},g),"function"==typeof o?o(n):o)),p.createElement("span",{className:h()(f,(0,ej.A)({},"".concat(f,"-active"),m)),style:g})},mK=function(e){var t=e.prefixCls,n=e.marks,r=e.dots,o=e.style,a=e.activeStyle,i=p.useContext(mD),l=i.min,c=i.max,s=i.step,u=p.useMemo(function(){var e=new Set;if(n.forEach(function(t){e.add(t.value)}),r&&null!==s)for(var t=l;t<=c;)e.add(t),t+=s;return Array.from(e)},[l,c,s,r,n]);return p.createElement("div",{className:"".concat(t,"-step")},u.map(function(e){return p.createElement(mV,{prefixCls:t,key:e,value:e,style:o,activeStyle:a})}))},mX=function(e){var t=e.prefixCls,n=e.style,r=e.start,o=e.end,a=e.index,i=e.onStartMove,l=e.replaceCls,c=p.useContext(mD),s=c.direction,u=c.min,d=c.max,f=c.disabled,m=c.range,g=c.classNames,v="".concat(t,"-track"),b=(r-u)/(d-u),y=(o-u)/(d-u),x=function(e){!f&&i&&i(e,-1)},$={};switch(s){case"rtl":$.right="".concat(100*b,"%"),$.width="".concat(100*y-100*b,"%");break;case"btt":$.bottom="".concat(100*b,"%"),$.height="".concat(100*y-100*b,"%");break;case"ttb":$.top="".concat(100*b,"%"),$.height="".concat(100*y-100*b,"%");break;default:$.left="".concat(100*b,"%"),$.width="".concat(100*y-100*b,"%")}var A=l||h()(v,(0,ej.A)((0,ej.A)({},"".concat(v,"-").concat(a+1),null!==a&&m),"".concat(t,"-track-draggable"),i),g.track);return p.createElement("div",{className:A,style:(0,eM.A)((0,eM.A)({},$),n),onMouseDown:x,onTouchStart:x})},mY=function(e){var t=e.prefixCls,n=e.style,r=e.values,o=e.startPoint,a=e.onStartMove,i=p.useContext(mD),l=i.included,c=i.range,s=i.min,u=i.styles,d=i.classNames,f=p.useMemo(function(){if(!c){if(0===r.length)return[];var e=null!=o?o:s,t=r[0];return[{start:Math.min(e,t),end:Math.max(e,t)}]}for(var n=[],a=0;a130&&u=0&&_},[_,ew]),eS=p.useMemo(function(){return Object.keys(J||{}).map(function(e){var t=J[e],n={value:Number(e)};return t&&"object"===(0,ez.A)(t)&&!p.isValidElement(t)&&("label"in t||"style"in t)?(n.style=t.style,n.label=t.label):n.label=t,n}).filter(function(e){var t=e.label;return t||"number"==typeof t}).sort(function(e,t){return e.value-t.value})},[J]),ek=(n=void 0===F||F,r=p.useCallback(function(e){return Math.max(e$,Math.min(eA,e))},[e$,eA]),o=p.useCallback(function(e){if(null!==ew){var t=e$+Math.round((r(e)-e$)/ew)*ew,n=function(e){return(String(e).split(".")[1]||"").length},o=Math.max(n(ew),n(eA),n(e$)),a=Number(t.toFixed(o));return e$<=a&&a<=eA?a:null}return null},[ew,e$,eA,r]),a=p.useCallback(function(e){var t=r(e),n=eS.map(function(e){return e.value});null!==ew&&n.push(o(e)),n.push(e$,eA);var a=n[0],i=eA-e$;return n.forEach(function(e){var n=Math.abs(t-e);n<=i&&(a=e,i=n)}),a},[e$,eA,eS,ew,r,o]),i=function e(t,n,r){var a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"unit";if("number"==typeof n){var i,l=t[r],c=l+n,s=[];eS.forEach(function(e){s.push(e.value)}),s.push(e$,eA),s.push(o(l));var u=n>0?1:-1;"unit"===a?s.push(o(l+u*ew)):s.push(o(c)),s=s.filter(function(e){return null!==e}).filter(function(e){return n<0?e<=l:e>=l}),"unit"===a&&(s=s.filter(function(e){return e!==l}));var d="unit"===a?l:c,f=Math.abs((i=s[0])-d);if(s.forEach(function(e){var t=Math.abs(e-d);t1){var p=(0,y.A)(t);return p[r]=i,e(p,n-u,r,a)}return i}return"min"===n?e$:"max"===n?eA:void 0},l=function(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"unit",o=e[n],a=i(e,t,n,r);return{value:a,changed:a!==o}},c=function(e){return null===eC&&0===e||"number"==typeof eC&&e3&&void 0!==arguments[3]?arguments[3]:"unit",s=e.map(a),u=s[r],d=i(s,t,r,o);if(s[r]=d,!1===n){var f=eC||0;r>0&&s[r-1]!==u&&(s[r]=Math.max(s[r],s[r-1]+f)),r0;h-=1)for(var v=!0;c(s[h]-s[h-1])&&v;){var b=l(s,-1,h-1);s[h-1]=b.value,v=b.changed}for(var y=s.length-1;y>0;y-=1)for(var x=!0;c(s[y]-s[y-1])&&x;){var $=l(s,-1,y-1);s[y-1]=$.value,x=$.changed}for(var A=0;A=0?P+1:2;for(r=r.slice(0,a);r.length=0&&ed.current.focus(e)}eJ(null)},[eZ]);var e0=p.useMemo(function(){return(!eb||null!==ew)&&eb},[eb,ew]),e1=(0,ea.A)(function(e,t){eY(e,t),null==D||D(eB(eL))}),e2=-1!==eq;p.useEffect(function(){if(!e2){var e=eL.lastIndexOf(eV);ed.current.focus(e)}},[e2]);var e4=p.useMemo(function(){return(0,y.A)(eX).sort(function(e,t){return e-t})},[eX]),e3=p.useMemo(function(){return eh?[e4[0],e4[e4.length-1]]:[e$,e4[0]]},[e4,eh,e$]),e6=(0,eE.A)(e3,2),e8=e6[0],e5=e6[1];p.useImperativeHandle(t,function(){return{focus:function(){ed.current.focus(0)},blur:function(){var e,t=document.activeElement;null!=(e=ef.current)&&e.contains(t)&&(null==t||t.blur())}}}),p.useEffect(function(){w&&ed.current.focus(0)},[]);var e7=p.useMemo(function(){return{min:e$,max:eA,direction:ep,disabled:x,keyboard:A,step:ew,included:K,includedStart:e8,includedEnd:e5,range:eh,tabIndex:ei,ariaLabelForHandle:el,ariaLabelledByForHandle:ec,ariaRequired:es,ariaValueTextFormatterForHandle:eu,styles:g||{},classNames:m||{}}},[e$,eA,ep,x,A,ew,K,e8,e5,eh,ei,el,ec,es,eu,g,m]);return p.createElement(mD.Provider,{value:e7},p.createElement("div",{ref:ef,className:h()(u,d,(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(u,"-disabled"),x),"".concat(u,"-vertical"),q),"".concat(u,"-horizontal"),!q),"".concat(u,"-with-marks"),eS.length)),style:f,onMouseDown:function(e){e.preventDefault();var t,n=ef.current.getBoundingClientRect(),r=n.width,o=n.height,a=n.left,i=n.top,l=n.bottom,c=n.right,s=e.clientX,u=e.clientY;switch(ep){case"btt":t=(l-u)/o;break;case"ttb":t=(u-i)/o;break;case"rtl":t=(c-s)/r;break;default:t=(s-a)/r}eU(eN(e$+t*(eA-e$)),e)},id:v},p.createElement("div",{className:h()("".concat(u,"-rail"),null==m?void 0:m.rail),style:(0,eM.A)((0,eM.A)({},G),null==g?void 0:g.rail)}),!1!==er&&p.createElement(mY,{prefixCls:u,style:Y,values:eL,startPoint:X,onStartMove:e0?e1:void 0}),p.createElement(mK,{prefixCls:u,marks:eS,dots:ee,style:Q,activeStyle:Z}),p.createElement(m_,{ref:ed,prefixCls:u,style:U,values:eX,draggingIndex:eq,draggingDelete:eK,onStartMove:e1,onOffsetChange:function(e,t){if(!x){var n=eI(eL,e,t);null==D||D(eB(eL)),eF(n.values),eJ(n.value)}},onFocus:C,onBlur:S,handleRender:et,activeHandleRender:en,onChangeComplete:eH,onDelete:ev?function(e){if(!x&&ev&&!(eL.length<=ey)){var t=(0,y.A)(eL);t.splice(e,1),null==D||D(eB(t)),eF(t);var n=Math.max(0,e-1);ed.current.hideHelp(),ed.current.focus(n)}}:void 0}),p.createElement(mq,{prefixCls:u,marks:eS,onClick:eU})))});let mZ=p.forwardRef((e,t)=>{let{open:n,draggingDelete:r}=e,o=(0,p.useRef)(null),a=n&&!r,i=(0,p.useRef)(null);function l(){x.A.cancel(i.current),i.current=null}return p.useEffect(()=>(a?i.current=(0,x.A)(()=>{var e;null==(e=o.current)||e.forceAlign(),i.current=null}):l(),l),[a,e.title]),p.createElement(aM.A,Object.assign({ref:(0,_.K4)(o,t)},e,{open:a}))}),mJ=(e,t)=>{let{componentCls:n,railSize:r,handleSize:o,dotSize:a,marginFull:i,calc:l}=e,c=t?"width":"height",s=t?"height":"width",u=t?"insetBlockStart":"insetInlineStart",d=t?"top":"insetInlineStart",f=l(r).mul(3).sub(o).div(2).equal(),p=l(o).sub(r).div(2).equal(),m=t?{borderWidth:`${(0,q.zA)(p)} 0`,transform:`translateY(${(0,q.zA)(l(p).mul(-1).equal())})`}:{borderWidth:`0 ${(0,q.zA)(p)}`,transform:`translateX(${(0,q.zA)(e.calc(p).mul(-1).equal())})`};return{[t?"paddingBlock":"paddingInline"]:r,[s]:l(r).mul(3).equal(),[`${n}-rail`]:{[c]:"100%",[s]:r},[`${n}-track,${n}-tracks`]:{[s]:r},[`${n}-track-draggable`]:Object.assign({},m),[`${n}-handle`]:{[u]:f},[`${n}-mark`]:{insetInlineStart:0,top:0,[d]:l(r).mul(3).add(t?0:i).equal(),[c]:"100%"},[`${n}-step`]:{insetInlineStart:0,top:0,[d]:r,[c]:"100%",[s]:r},[`${n}-dot`]:{position:"absolute",[u]:l(r).sub(a).div(2).equal()}}},m0=(0,w.OF)("Slider",e=>{let t=(0,ey.oX)(e,{marginPart:e.calc(e.controlHeight).sub(e.controlSize).div(2).equal(),marginFull:e.calc(e.controlSize).div(2).equal(),marginPartWithMark:e.calc(e.controlHeightLG).sub(e.controlSize).equal()});return[(e=>{let{componentCls:t,antCls:n,controlSize:r,dotSize:o,marginFull:a,marginPart:i,colorFillContentHover:l,handleColorDisabled:c,calc:s,handleSize:u,handleSizeHover:d,handleActiveColor:f,handleActiveOutlineColor:p,handleLineWidth:m,handleLineWidthHover:g,motionDurationMid:h}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",height:r,margin:`${(0,q.zA)(i)} ${(0,q.zA)(a)}`,padding:0,cursor:"pointer",touchAction:"none","&-vertical":{margin:`${(0,q.zA)(a)} ${(0,q.zA)(i)}`},[`${t}-rail`]:{position:"absolute",backgroundColor:e.railBg,borderRadius:e.borderRadiusXS,transition:`background-color ${h}`},[`${t}-track,${t}-tracks`]:{position:"absolute",transition:`background-color ${h}`},[`${t}-track`]:{backgroundColor:e.trackBg,borderRadius:e.borderRadiusXS},[`${t}-track-draggable`]:{boxSizing:"content-box",backgroundClip:"content-box",border:"solid rgba(0,0,0,0)"},"&:hover":{[`${t}-rail`]:{backgroundColor:e.railHoverBg},[`${t}-track`]:{backgroundColor:e.trackHoverBg},[`${t}-dot`]:{borderColor:l},[`${t}-handle::after`]:{boxShadow:`0 0 0 ${(0,q.zA)(m)} ${e.colorPrimaryBorderHover}`},[`${t}-dot-active`]:{borderColor:e.dotActiveBorderColor}},[`${t}-handle`]:{position:"absolute",width:u,height:u,outline:"none",userSelect:"none","&-dragging-delete":{opacity:0},"&::before":{content:'""',position:"absolute",insetInlineStart:s(m).mul(-1).equal(),insetBlockStart:s(m).mul(-1).equal(),width:s(u).add(s(m).mul(2)).equal(),height:s(u).add(s(m).mul(2)).equal(),backgroundColor:"transparent"},"&::after":{content:'""',position:"absolute",insetBlockStart:0,insetInlineStart:0,width:u,height:u,backgroundColor:e.colorBgElevated,boxShadow:`0 0 0 ${(0,q.zA)(m)} ${e.handleColor}`,outline:"0px solid transparent",borderRadius:"50%",cursor:"pointer",transition:` - inset-inline-start ${h}, - inset-block-start ${h}, - width ${h}, - height ${h}, - box-shadow ${h}, - outline ${h} - `},"&:hover, &:active, &:focus":{"&::before":{insetInlineStart:s(d).sub(u).div(2).add(g).mul(-1).equal(),insetBlockStart:s(d).sub(u).div(2).add(g).mul(-1).equal(),width:s(d).add(s(g).mul(2)).equal(),height:s(d).add(s(g).mul(2)).equal()},"&::after":{boxShadow:`0 0 0 ${(0,q.zA)(g)} ${f}`,outline:`6px solid ${p}`,width:d,height:d,insetInlineStart:e.calc(u).sub(d).div(2).equal(),insetBlockStart:e.calc(u).sub(d).div(2).equal()}}},[`&-lock ${t}-handle`]:{"&::before, &::after":{transition:"none"}},[`${t}-mark`]:{position:"absolute",fontSize:e.fontSize},[`${t}-mark-text`]:{position:"absolute",display:"inline-block",color:e.colorTextDescription,textAlign:"center",wordBreak:"keep-all",cursor:"pointer",userSelect:"none","&-active":{color:e.colorText}},[`${t}-step`]:{position:"absolute",background:"transparent",pointerEvents:"none"},[`${t}-dot`]:{position:"absolute",width:o,height:o,backgroundColor:e.colorBgElevated,border:`${(0,q.zA)(m)} solid ${e.dotBorderColor}`,borderRadius:"50%",cursor:"pointer",transition:`border-color ${e.motionDurationSlow}`,pointerEvents:"auto","&-active":{borderColor:e.dotActiveBorderColor}},[`&${t}-disabled`]:{cursor:"not-allowed",[`${t}-rail`]:{backgroundColor:`${e.railBg} !important`},[`${t}-track`]:{backgroundColor:`${e.trackBgDisabled} !important`},[` - ${t}-dot - `]:{backgroundColor:e.colorBgElevated,borderColor:e.trackBgDisabled,boxShadow:"none",cursor:"not-allowed"},[`${t}-handle::after`]:{backgroundColor:e.colorBgElevated,cursor:"not-allowed",width:u,height:u,boxShadow:`0 0 0 ${(0,q.zA)(m)} ${c}`,insetInlineStart:0,insetBlockStart:0},[` - ${t}-mark-text, - ${t}-dot - `]:{cursor:"not-allowed !important"}},[`&-tooltip ${n}-tooltip-inner`]:{minWidth:"unset"}})}})(t),(e=>{let{componentCls:t,marginPartWithMark:n}=e;return{[`${t}-horizontal`]:Object.assign(Object.assign({},mJ(e,!0)),{[`&${t}-with-marks`]:{marginBottom:n}})}})(t),(e=>{let{componentCls:t}=e;return{[`${t}-vertical`]:Object.assign(Object.assign({},mJ(e,!1)),{height:"100%"})}})(t)]},e=>{let t=e.controlHeightLG/4,n=e.controlHeightSM/2,r=e.lineWidth+1,o=e.lineWidth+1.5,a=e.colorPrimary,i=new ts.q(a).setAlpha(.2).toRgbString();return{controlSize:t,railSize:4,handleSize:t,handleSizeHover:n,dotSize:8,handleLineWidth:r,handleLineWidthHover:o,railBg:e.colorFillTertiary,railHoverBg:e.colorFillSecondary,trackBg:e.colorPrimaryBorder,trackHoverBg:e.colorPrimaryBorderHover,handleColor:e.colorPrimaryBorder,handleActiveColor:a,handleActiveOutlineColor:i,handleColorDisabled:new ts.q(e.colorTextDisabled).onBackground(e.colorBgContainer).toHexShortString(),dotBorderColor:e.colorBorderSecondary,dotActiveBorderColor:e.colorPrimaryBorder,trackBgDisabled:e.colorBgContainerDisabled}}),m1=(0,p.createContext)({});function m2(){let[e,t]=p.useState(!1),n=p.useRef(null),r=()=>{x.A.cancel(n.current)};return p.useEffect(()=>r,[]),[e,e=>{r(),e?t(e):n.current=(0,x.A)(()=>{t(e)})}]}var m4=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let m3=m().forwardRef((e,t)=>{let{prefixCls:n,range:r,className:o,rootClassName:a,style:i,disabled:l,tooltipPrefixCls:c,tipFormatter:s,tooltipVisible:u,getTooltipPopupContainer:d,tooltipPlacement:f,tooltip:p={},onChangeComplete:g}=e,v=m4(e,["prefixCls","range","className","rootClassName","style","disabled","tooltipPrefixCls","tipFormatter","tooltipVisible","getTooltipPopupContainer","tooltipPlacement","tooltip","onChangeComplete"]),{vertical:b}=e,{direction:y,slider:$,getPrefixCls:w,getPopupContainer:C}=m().useContext(A.QO),S=m().useContext(tp.A),{handleRender:k,direction:E}=m().useContext(m1),O="rtl"===(E||y),[M,N]=m2(),[I,j]=m2(),z=Object.assign({},p),{open:R,placement:P,getPopupContainer:T,prefixCls:D,formatter:L}=z,B=null!=R?R:u,F=(M||I)&&!1!==B,H=L||null===L?L:s||null===s?s:e=>"number"==typeof e?e.toString():"",[_,W]=m2(),q=(e,t)=>e||(t?O?"left":"right":"top"),V=w("slider",n),[K,X,Y]=m0(V),U=h()(o,null==$?void 0:$.className,a,{[`${V}-rtl`]:O,[`${V}-lock`]:_},X,Y);O&&!v.vertical&&(v.reverse=!v.reverse),m().useEffect(()=>{let e=()=>{(0,x.A)(()=>{j(!1)},1)};return document.addEventListener("mouseup",e),()=>{document.removeEventListener("mouseup",e)}},[]);let G=r&&!B,Q=k||((e,t)=>{let{index:n}=t,r=e.props;function o(e,t,n){var o,a;n&&(null==(o=v[e])||o.call(v,t)),null==(a=r[e])||a.call(r,t)}let a=Object.assign(Object.assign({},r),{onMouseEnter:e=>{N(!0),o("onMouseEnter",e)},onMouseLeave:e=>{N(!1),o("onMouseLeave",e)},onMouseDown:e=>{j(!0),W(!0),o("onMouseDown",e)},onFocus:e=>{var t;j(!0),null==(t=v.onFocus)||t.call(v,e),o("onFocus",e,!0)},onBlur:e=>{var t;j(!1),null==(t=v.onBlur)||t.call(v,e),o("onBlur",e,!0)}}),i=m().cloneElement(e,a),l=(!!B||F)&&null!==H;return G?i:m().createElement(mZ,Object.assign({},z,{prefixCls:w("tooltip",null!=D?D:c),title:H?H(t.value):"",open:l,placement:q(null!=P?P:f,b),key:n,overlayClassName:`${V}-tooltip`,getPopupContainer:T||d||C}),i)}),Z=G?(e,t)=>{let n=m().cloneElement(e,{style:Object.assign(Object.assign({},e.props.style),{visibility:"hidden"})});return m().createElement(mZ,Object.assign({},z,{prefixCls:w("tooltip",null!=D?D:c),title:H?H(t.value):"",open:null!==H&&F,placement:q(null!=P?P:f,b),key:"tooltip",overlayClassName:`${V}-tooltip`,getPopupContainer:T||d||C,draggingDelete:t.draggingDelete}),n)}:void 0,J=Object.assign(Object.assign({},null==$?void 0:$.style),i);return K(m().createElement(mQ,Object.assign({},v,{step:v.step,range:r,className:U,style:J,disabled:null!=l?l:S,ref:t,prefixCls:V,handleRender:Q,activeHandleRender:Z,onChangeComplete:e=>{null==g||g(e),W(!1)}})))});var m6=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let m8=e=>{let{prefixCls:t,colors:n,type:r,color:o,range:a=!1,className:i,activeIndex:l,onActive:c,onDragStart:s,onDragChange:u,onKeyDelete:d}=e,f=Object.assign(Object.assign({},m6(e,["prefixCls","colors","type","color","range","className","activeIndex","onActive","onDragStart","onDragChange","onKeyDelete"])),{track:!1}),m=p.useMemo(()=>{let e=n.map(e=>`${e.color} ${e.percent}%`).join(", ");return`linear-gradient(90deg, ${e})`},[n]),g=p.useMemo(()=>o&&r?"alpha"===r?o.toRgbString():`hsl(${o.toHsb().h}, 100%, 50%)`:null,[o,r]),v=(0,ea.A)(s),b=(0,ea.A)(u),y=p.useMemo(()=>({onDragStart:v,onDragChange:b}),[]),x=(0,ea.A)((e,o)=>{let{onFocus:a,style:i,className:s,onKeyDown:u}=e.props,f=Object.assign({},i);return"gradient"===r&&(f.background=(0,pR.PU)(n,o.value)),p.cloneElement(e,{onFocus:e=>{null==c||c(o.index),null==a||a(e)},style:f,className:h()(s,{[`${t}-slider-handle-active`]:l===o.index}),onKeyDown:e=>{("Delete"===e.key||"Backspace"===e.key)&&d&&d(o.index),null==u||u(e)}})}),$=p.useMemo(()=>({direction:"ltr",handleRender:x}),[]);return p.createElement(m1.Provider,{value:$},p.createElement(mL.Provider,{value:y},p.createElement(m3,Object.assign({},f,{className:h()(i,`${t}-slider`),tooltip:{open:!1},range:{editable:a,minCount:2},styles:{rail:{background:m},handle:g?{background:g}:{}},classNames:{rail:`${t}-slider-rail`,handle:`${t}-slider-handle`}}))))};function m5(e){return(0,y.A)(e).sort((e,t)=>e.percent-t.percent)}let m7=p.memo(e=>{let{prefixCls:t,mode:n,onChange:r,onChangeComplete:o,onActive:a,activeIndex:i,onGradientDragging:l,colors:c}=e,s=p.useMemo(()=>c.map(e=>({percent:e.percent,color:e.color.toRgbString()})),[c]),u=p.useMemo(()=>s.map(e=>e.percent),[s]),d=p.useRef(s);return"gradient"!==n?null:p.createElement(m8,{min:0,max:100,prefixCls:t,className:`${t}-gradient-slider`,colors:s,color:null,value:u,range:!0,onChangeComplete:e=>{o(new pg.kf(s)),i>=e.length&&a(e.length-1),l(!1)},disabled:!1,type:"gradient",activeIndex:i,onActive:a,onDragStart:e=>{let{rawValues:t,draggingIndex:n,draggingValue:o}=e;if(t.length>s.length){let e=(0,pR.PU)(s,o),t=(0,y.A)(s);t.splice(n,0,{percent:o,color:e}),d.current=t}else d.current=s;l(!0),r(new pg.kf(m5(d.current)),!0)},onDragChange:e=>{let{deleteIndex:t,draggingIndex:n,draggingValue:o}=e,a=(0,y.A)(d.current);-1!==t?a.splice(t,1):(a[n]=Object.assign(Object.assign({},a[n]),{percent:o}),a=m5(a)),r(new pg.kf(a),!0)},onKeyDelete:e=>{let t=(0,y.A)(s);t.splice(e,1);let n=new pg.kf(t);r(n),o(n)}})});var m9=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let ge={slider:e=>{let{value:t,onChange:n,onChangeComplete:r}=e;return p.createElement(m8,Object.assign({},e,{value:[t],onChange:e=>n(e[0]),onChangeComplete:e=>r(e[0])}))}},gt=()=>{let e=(0,p.useContext)(pj),{mode:t,onModeChange:n,modeOptions:r,prefixCls:o,allowClear:a,value:i,disabledAlpha:l,onChange:c,onClear:s,onChangeComplete:u,activeIndex:d,gradientDragging:f}=e,g=m9(e,["mode","onModeChange","modeOptions","prefixCls","allowClear","value","disabledAlpha","onChange","onClear","onChangeComplete","activeIndex","gradientDragging"]),h=m().useMemo(()=>i.cleared?[{percent:0,color:new pg.kf("")},{percent:100,color:new pg.kf("")}]:i.getColors(),[i]),v=!i.isGradient(),[b,x]=m().useState(i);(0,rf.A)(()=>{var e;v||x(null==(e=h[d])?void 0:e.color)},[f,d]);let $=m().useMemo(()=>{var e;return v?i:f?b:null==(e=h[d])?void 0:e.color},[i,d,v,b,f]),[A,w]=m().useState($),[C,S]=m().useState(0),k=(null==A?void 0:A.equals($))?$:A;(0,rf.A)(()=>{w($)},[C,null==$?void 0:$.toHexString()]);let E=(e,n)=>{let r=(0,pR.Z6)(e);if(i.cleared){let e=r.toRgb();if(e.r||e.g||e.b||!n)r=(0,pR.E)(r);else{let{type:e,value:t=0}=n;r=new pg.kf({h:"hue"===e?t:0,s:1,b:1,a:"alpha"===e?t/100:1})}}if("single"===t)return r;let o=(0,y.A)(h);return o[d]=Object.assign(Object.assign({},o[d]),{color:r}),new pg.kf(o)},O=null,M=r.length>1;return(a||M)&&(O=m().createElement("div",{className:`${o}-operation`},M&&m().createElement(pI,{size:"small",options:r,value:t,onChange:n}),m().createElement(pP,Object.assign({prefixCls:o,value:i,onChange:e=>{c(e),null==s||s()}},g)))),m().createElement(m().Fragment,null,O,m().createElement(m7,Object.assign({},e,{colors:h})),m().createElement(py.Ay,{prefixCls:o,value:null==k?void 0:k.toHsb(),disabledAlpha:l,onChange:(e,t)=>{let n;w((n=E(e,t)).isGradient()?n.getColors()[d].color:n),c(n,!0)},onChangeComplete:(e,t)=>{u(E(e,t)),S(e=>e+1)},components:ge}),m().createElement(mR,Object.assign({value:$,onChange:e=>{c(E(e))},prefixCls:o,disabledAlpha:l},g)))};var gn=n(53596);let gr=()=>{let{prefixCls:e,value:t,presets:n,onChange:r}=(0,p.useContext)(pz);return Array.isArray(n)?m().createElement(gn.A,{value:t,presets:n,prefixCls:e,onChange:r}):null},go=e=>{let{prefixCls:t,presets:n,panelRender:r,value:o,onChange:a,onClear:i,allowClear:l,disabledAlpha:c,mode:s,onModeChange:u,modeOptions:d,onChangeComplete:f,activeIndex:p,onActive:g,format:h,onFormatChange:v,gradientDragging:b,onGradientDragging:y,disabledFormat:x}=e,$=`${t}-inner`,A=m().useMemo(()=>({prefixCls:t,value:o,onChange:a,onClear:i,allowClear:l,disabledAlpha:c,mode:s,onModeChange:u,modeOptions:d,onChangeComplete:f,activeIndex:p,onActive:g,format:h,onFormatChange:v,gradientDragging:b,onGradientDragging:y,disabledFormat:x}),[t,o,a,i,l,c,s,u,d,f,p,g,h,v,b,y,x]),w=m().useMemo(()=>({prefixCls:t,value:o,presets:n,onChange:a}),[t,o,n,a]),C=m().createElement("div",{className:`${$}-content`},m().createElement(gt,null),Array.isArray(n)&&m().createElement(pb,null),m().createElement(gr,null));return m().createElement(pj.Provider,{value:A},m().createElement(pz.Provider,{value:w},m().createElement("div",{className:$},"function"==typeof r?r(C,{components:{Picker:gt,Presets:gr}}):C)))};var ga=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let gi=(0,p.forwardRef)((e,t)=>{let{color:n,prefixCls:r,open:o,disabled:a,format:i,className:l,showText:c,activeIndex:s}=e,u=ga(e,["color","prefixCls","open","disabled","format","className","showText","activeIndex"]),d=`${r}-trigger`,f=`${d}-text`,g=`${f}-cell`,[v]=(0,tI.A)("ColorPicker"),b=m().useMemo(()=>{if(!c)return"";if("function"==typeof c)return c(n);if(n.cleared)return v.transparent;if(n.isGradient())return n.getColors().map((e,t)=>{let n=-1!==s&&s!==t;return m().createElement("span",{key:t,className:h()(g,n&&`${g}-inactive`)},e.color.toRgbString()," ",e.percent,"%")});let e=n.toHexString().toUpperCase(),t=(0,pR.Gp)(n);switch(i){case"rgb":return n.toRgbString();case"hsb":return n.toHsbString();default:return t<100?`${e.slice(0,7)},${t}%`:e}},[n,i,c,s]),y=(0,p.useMemo)(()=>n.cleared?m().createElement(pP,{prefixCls:r}):m().createElement(py.ZC,{prefixCls:r,color:n.toCssString()}),[n,r]);return m().createElement("div",Object.assign({ref:t,className:h()(d,l,{[`${d}-active`]:o,[`${d}-disabled`]:a})},(0,H.A)(u)),y,c&&m().createElement("div",{className:f},b))}),gl=(e,t)=>({backgroundImage:`conic-gradient(${t} 0 25%, transparent 0 50%, ${t} 0 75%, transparent 0)`,backgroundSize:`${e} ${e}`}),gc=(e,t)=>{let{componentCls:n,borderRadiusSM:r,colorPickerInsetShadow:o,lineWidth:a,colorFillSecondary:i}=e;return{[`${n}-color-block`]:Object.assign(Object.assign({position:"relative",borderRadius:r,width:t,height:t,boxShadow:o,flex:"none"},gl("50%",e.colorFillSecondary)),{[`${n}-color-block-inner`]:{width:"100%",height:"100%",boxShadow:`inset 0 0 0 ${(0,q.zA)(a)} ${i}`,borderRadius:"inherit"}})}},gs=(e,t,n)=>({borderInlineEndWidth:e.lineWidth,borderColor:t,boxShadow:`0 0 0 ${(0,q.zA)(e.controlOutlineWidth)} ${n}`,outline:0}),gu=(e,t,n)=>{let{componentCls:r,borderRadiusSM:o,lineWidth:a,colorSplit:i,colorBorder:l,red6:c}=e;return{[`${r}-clear`]:Object.assign(Object.assign({width:t,height:t,borderRadius:o,border:`${(0,q.zA)(a)} solid ${i}`,position:"relative",overflow:"hidden",cursor:"inherit",transition:`all ${e.motionDurationFast}`},n),{"&::after":{content:'""',position:"absolute",insetInlineEnd:e.calc(a).mul(-1).equal(),top:e.calc(a).mul(-1).equal(),display:"block",width:40,height:2,transformOrigin:"calc(100% - 1px) 1px",transform:"rotate(-45deg)",backgroundColor:c},"&:hover":{borderColor:l}})}},gd=(0,w.OF)("ColorPicker",e=>{let{colorTextQuaternary:t,marginSM:n}=e;return[(e=>{let{antCls:t,componentCls:n,colorPickerWidth:r,colorPrimary:o,motionDurationMid:a,colorBgElevated:i,colorTextDisabled:l,colorText:c,colorBgContainerDisabled:s,borderRadius:u,marginXS:d,marginSM:f,controlHeight:p,controlHeightSM:m,colorBgTextActive:g,colorPickerPresetColorSize:h,colorPickerPreviewSize:v,lineWidth:b,colorBorder:y,paddingXXS:x,fontSize:$,colorPrimaryHover:A,controlOutline:w}=e;return[{[n]:Object.assign({[`${n}-inner`]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({"&-content":{display:"flex",flexDirection:"column",width:r,[`& > ${t}-divider`]:{margin:`${(0,q.zA)(f)} 0 ${(0,q.zA)(d)}`}},[`${n}-panel`]:Object.assign({},(e=>{let{componentCls:t,controlHeightLG:n,borderRadiusSM:r,colorPickerInsetShadow:o,marginSM:a,colorBgElevated:i,colorFillSecondary:l,lineWidthBold:c,colorPickerHandlerSize:s}=e;return{userSelect:"none",[`${t}-select`]:{[`${t}-palette`]:{minHeight:e.calc(n).mul(4).equal(),overflow:"hidden",borderRadius:r},[`${t}-saturation`]:{position:"absolute",borderRadius:"inherit",boxShadow:o,inset:0},marginBottom:a},[`${t}-handler`]:{width:s,height:s,border:`${(0,q.zA)(c)} solid ${i}`,position:"relative",borderRadius:"50%",cursor:"pointer",boxShadow:`${o}, 0 0 0 1px ${l}`}}})(e))},(e=>{let{componentCls:t,colorPickerInsetShadow:n,colorBgElevated:r,colorFillSecondary:o,lineWidthBold:a,colorPickerHandlerSizeSM:i,colorPickerSliderHeight:l,marginSM:c,marginXS:s}=e,u=e.calc(i).sub(e.calc(a).mul(2).equal()).equal(),d=e.calc(i).add(e.calc(a).mul(2).equal()).equal(),f={"&:after":{transform:"scale(1)",boxShadow:`${n}, 0 0 0 1px ${e.colorPrimaryActive}`}};return{[`${t}-slider`]:[gl((0,q.zA)(l),e.colorFillSecondary),{margin:0,padding:0,height:l,borderRadius:e.calc(l).div(2).equal(),"&-rail":{height:l,borderRadius:e.calc(l).div(2).equal(),boxShadow:n},[`& ${t}-slider-handle`]:{width:u,height:u,top:0,borderRadius:"100%","&:before":{display:"block",position:"absolute",background:"transparent",left:{_skip_check_:!0,value:"50%"},top:"50%",transform:"translate(-50%, -50%)",width:d,height:d,borderRadius:"100%"},"&:after":{width:i,height:i,border:`${(0,q.zA)(a)} solid ${r}`,boxShadow:`${n}, 0 0 0 1px ${o}`,outline:"none",insetInlineStart:e.calc(a).mul(-1).equal(),top:e.calc(a).mul(-1).equal(),background:"transparent",transition:"none"},"&:focus":f}}],[`${t}-slider-container`]:{display:"flex",gap:c,marginBottom:c,[`${t}-slider-group`]:{flex:1,flexDirection:"column",justifyContent:"space-between",display:"flex","&-disabled-alpha":{justifyContent:"center"}}},[`${t}-gradient-slider`]:{marginBottom:s,[`& ${t}-slider-handle`]:{"&:after":{transform:"scale(0.8)"},"&-active, &:focus":f}}}})(e)),gc(e,v)),(e=>{let{componentCls:t,antCls:n,fontSizeSM:r,lineHeightSM:o,colorPickerAlphaInputWidth:a,marginXXS:i,paddingXXS:l,controlHeightSM:c,marginXS:s,fontSizeIcon:u,paddingXS:d,colorTextPlaceholder:f,colorPickerInputNumberHandleWidth:p,lineWidth:m}=e;return{[`${t}-input-container`]:{display:"flex",[`${t}-steppers${n}-input-number`]:{fontSize:r,lineHeight:o,[`${n}-input-number-input`]:{paddingInlineStart:l,paddingInlineEnd:0},[`${n}-input-number-handler-wrap`]:{width:p}},[`${t}-steppers${t}-alpha-input`]:{flex:`0 0 ${(0,q.zA)(a)}`,marginInlineStart:i},[`${t}-format-select${n}-select`]:{marginInlineEnd:s,width:"auto","&-single":{[`${n}-select-selector`]:{padding:0,border:0},[`${n}-select-arrow`]:{insetInlineEnd:0},[`${n}-select-selection-item`]:{paddingInlineEnd:e.calc(u).add(i).equal(),fontSize:r,lineHeight:(0,q.zA)(c)},[`${n}-select-item-option-content`]:{fontSize:r,lineHeight:o},[`${n}-select-dropdown`]:{[`${n}-select-item`]:{minHeight:"auto"}}}},[`${t}-input`]:{gap:i,alignItems:"center",flex:1,width:0,[`${t}-hsb-input,${t}-rgb-input`]:{display:"flex",gap:i,alignItems:"center"},[`${t}-steppers`]:{flex:1},[`${t}-hex-input${n}-input-affix-wrapper`]:{flex:1,padding:`0 ${(0,q.zA)(d)}`,[`${n}-input`]:{fontSize:r,textTransform:"uppercase",lineHeight:(0,q.zA)(e.calc(c).sub(e.calc(m).mul(2)).equal())},[`${n}-input-prefix`]:{color:f}}}}}})(e)),(e=>{let{componentCls:t,antCls:n,colorTextQuaternary:r,paddingXXS:o,colorPickerPresetColorSize:a,fontSizeSM:i,colorText:l,lineHeightSM:c,lineWidth:s,borderRadius:u,colorFill:d,colorWhite:f,marginXXS:p,paddingXS:m,fontHeightSM:g}=e;return{[`${t}-presets`]:{[`${n}-collapse-item > ${n}-collapse-header`]:{padding:0,[`${n}-collapse-expand-icon`]:{height:g,color:r,paddingInlineEnd:o}},[`${n}-collapse`]:{display:"flex",flexDirection:"column",gap:p},[`${n}-collapse-item > ${n}-collapse-content > ${n}-collapse-content-box`]:{padding:`${(0,q.zA)(m)} 0`},"&-label":{fontSize:i,color:l,lineHeight:c},"&-items":{display:"flex",flexWrap:"wrap",gap:e.calc(p).mul(1.5).equal(),[`${t}-presets-color`]:{position:"relative",cursor:"pointer",width:a,height:a,"&::before":{content:'""',pointerEvents:"none",width:e.calc(a).add(e.calc(s).mul(4)).equal(),height:e.calc(a).add(e.calc(s).mul(4)).equal(),position:"absolute",top:e.calc(s).mul(-2).equal(),insetInlineStart:e.calc(s).mul(-2).equal(),borderRadius:u,border:`${(0,q.zA)(s)} solid transparent`,transition:`border-color ${e.motionDurationMid} ${e.motionEaseInBack}`},"&:hover::before":{borderColor:d},"&::after":{boxSizing:"border-box",position:"absolute",top:"50%",insetInlineStart:"21.5%",display:"table",width:e.calc(a).div(13).mul(5).equal(),height:e.calc(a).div(13).mul(8).equal(),border:`${(0,q.zA)(e.lineWidthBold)} solid ${e.colorWhite}`,borderTop:0,borderInlineStart:0,transform:"rotate(45deg) scale(0) translate(-50%,-50%)",opacity:0,content:'""',transition:`all ${e.motionDurationFast} ${e.motionEaseInBack}, opacity ${e.motionDurationFast}`},[`&${t}-presets-color-checked`]:{"&::after":{opacity:1,borderColor:f,transform:"rotate(45deg) scale(1) translate(-50%,-50%)",transition:`transform ${e.motionDurationMid} ${e.motionEaseOutBack} ${e.motionDurationFast}`},[`&${t}-presets-color-bright`]:{"&::after":{borderColor:"rgba(0, 0, 0, 0.45)"}}}}},"&-empty":{fontSize:i,color:r}}}})(e)),gu(e,h,{marginInlineStart:"auto"})),{[`${n}-operation`]:{display:"flex",justifyContent:"space-between",marginBottom:d}}),"&-trigger":Object.assign(Object.assign(Object.assign(Object.assign({minWidth:p,minHeight:p,borderRadius:u,border:`${(0,q.zA)(b)} solid ${y}`,cursor:"pointer",display:"inline-flex",alignItems:"flex-start",justifyContent:"center",transition:`all ${a}`,background:i,padding:e.calc(x).sub(b).equal(),[`${n}-trigger-text`]:{marginInlineStart:d,marginInlineEnd:e.calc(d).sub(e.calc(x).sub(b)).equal(),fontSize:$,color:c,alignSelf:"center","&-cell":{"&:not(:last-child):after":{content:'", "'},"&-inactive":{color:l}}},"&:hover":{borderColor:A},[`&${n}-trigger-active`]:Object.assign({},gs(e,o,w)),"&-disabled":{color:l,background:s,cursor:"not-allowed","&:hover":{borderColor:g},[`${n}-trigger-text`]:{color:l}}},gu(e,m)),gc(e,m)),(e=>{let{componentCls:t,colorError:n,colorWarning:r,colorErrorHover:o,colorWarningHover:a,colorErrorOutline:i,colorWarningOutline:l}=e;return{[`&${t}-status-error`]:{borderColor:n,"&:hover":{borderColor:o},[`&${t}-trigger-active`]:Object.assign({},gs(e,n,i))},[`&${t}-status-warning`]:{borderColor:r,"&:hover":{borderColor:a},[`&${t}-trigger-active`]:Object.assign({},gs(e,r,l))}}})(e)),(e=>{let{componentCls:t,controlHeightLG:n,controlHeightSM:r,controlHeight:o,controlHeightXS:a,borderRadius:i,borderRadiusSM:l,borderRadiusXS:c,borderRadiusLG:s,fontSizeLG:u}=e;return{[`&${t}-lg`]:{minWidth:n,minHeight:n,borderRadius:s,[`${t}-color-block, ${t}-clear`]:{width:o,height:o,borderRadius:i},[`${t}-trigger-text`]:{fontSize:u}},[`&${t}-sm`]:{minWidth:r,minHeight:r,borderRadius:l,[`${t}-color-block, ${t}-clear`]:{width:a,height:a,borderRadius:c},[`${t}-trigger-text`]:{lineHeight:(0,q.zA)(a)}}}})(e))},(e=>{let{componentCls:t}=e;return{"&-rtl":{[`${t}-presets-color`]:{"&::after":{direction:"ltr"}},[`${t}-clear`]:{"&::after":{direction:"ltr"}}}}})(e))},(0,oH.G)(e,{focusElCls:`${n}-trigger-active`})]})((0,ey.oX)(e,{colorPickerWidth:234,colorPickerHandlerSize:16,colorPickerHandlerSizeSM:12,colorPickerAlphaInputWidth:44,colorPickerInputNumberHandleWidth:16,colorPickerPresetColorSize:24,colorPickerInsetShadow:`inset 0 0 1px 0 ${t}`,colorPickerSliderHeight:8,colorPickerPreviewSize:e.calc(8).mul(2).add(n).equal()}))]});var gf=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let gp=e=>{let{mode:t,value:n,defaultValue:r,format:o,defaultFormat:a,allowClear:i=!1,presets:l,children:c,trigger:s="click",open:u,disabled:d,placement:f="bottomLeft",arrow:g=!0,panelRender:v,showText:b,style:y,className:x,size:$,rootClassName:w,prefixCls:C,styles:S,disabledAlpha:k=!1,onFormatChange:E,onChange:O,onClear:M,onOpenChange:N,onChangeComplete:I,getPopupContainer:j,autoAdjustOverflow:z=!0,destroyTooltipOnHide:R,disabledFormat:P}=e,T=gf(e,["mode","value","defaultValue","format","defaultFormat","allowClear","presets","children","trigger","open","disabled","placement","arrow","panelRender","showText","style","className","size","rootClassName","prefixCls","styles","disabledAlpha","onFormatChange","onChange","onClear","onOpenChange","onChangeComplete","getPopupContainer","autoAdjustOverflow","destroyTooltipOnHide","disabledFormat"]),{getPrefixCls:D,direction:L,colorPicker:B}=(0,p.useContext)(A.QO),F=(0,p.useContext)(tp.A),H=null!=d?d:F,[_,W]=(0,rs.A)(!1,{value:u,postState:e=>!H&&e,onChange:N}),[q,V]=(0,rs.A)(o,{value:o,defaultValue:a,onChange:E}),K=D("color-picker",C),[X,Y,U,G,Q]=function(e,t,n){let[r]=(0,tI.A)("ColorPicker"),[o,a]=(0,rs.A)(e,{value:t}),[i,l]=p.useState("single"),[c,s]=p.useMemo(()=>{let e=(Array.isArray(n)?n:[n]).filter(e=>e);e.length||e.push("single");let t=new Set(e),o=[],a=(e,n)=>{t.has(e)&&o.push({label:n,value:e})};return a("single",r.singleColor),a("gradient",r.gradientColor),[o,t]},[n]),[u,d]=p.useState(null),f=(0,ea.A)(e=>{d(e),a(e)}),m=p.useMemo(()=>{let e=(0,pR.Z6)(o||"");return e.equals(u)?u:e},[o,u]),g=p.useMemo(()=>{var e;return s.has(i)?i:null==(e=c[0])?void 0:e.value},[s,i,c]);return p.useEffect(()=>{l(m.isGradient()?"gradient":"single")},[m]),[m,f,g,l,c]}(r,n,t),Z=(0,p.useMemo)(()=>100>(0,pR.Gp)(X),[X]),[J,ee]=m().useState(null),et=e=>{if(I){let t=(0,pR.Z6)(e);k&&Z&&(t=(0,pR.E)(e)),I(t)}},en=(e,t)=>{let n=(0,pR.Z6)(e);k&&Z&&(n=(0,pR.E)(n)),Y(n),ee(null),O&&O(n,n.toCssString()),t||et(n)},[er,eo]=m().useState(0),[ei,el]=m().useState(!1),{status:ec}=m().useContext(oD.$W),{compactSize:es,compactItemClassnames:eu}=(0,oB.RQ)(K,L),ed=(0,oT.A)(e=>{var t;return null!=(t=null!=$?$:es)?t:e}),ef=(0,eh.A)(K),[ep,em,eg]=gd(K,ef),ev={[`${K}-rtl`]:L},eb=h()(w,eg,ef,ev),ey=h()((0,oO.L)(K,ec),{[`${K}-sm`]:"small"===ed,[`${K}-lg`]:"large"===ed},eu,null==B?void 0:B.className,eb,x,em),ex=h()(K,eb),e$=Object.assign(Object.assign({},null==B?void 0:B.style),y);return ep(m().createElement(aH,Object.assign({style:null==S?void 0:S.popup,overlayInnerStyle:null==S?void 0:S.popupOverlayInner,onOpenChange:e=>{e&&H||W(e)},content:m().createElement(t2.A,{form:!0},m().createElement(go,{mode:U,onModeChange:e=>{if(G(e),"single"===e&&X.isGradient())eo(0),en(new pg.kf(X.getColors()[0].color)),ee(X);else if("gradient"===e&&!X.isGradient()){let e=Z?(0,pR.E)(X):X;en(new pg.kf(J||[{percent:0,color:e},{percent:100,color:e}]))}},modeOptions:Q,prefixCls:K,value:X,allowClear:i,disabled:H,disabledAlpha:k,presets:l,panelRender:v,format:q,onFormatChange:V,onChange:en,onChangeComplete:et,onClear:M,activeIndex:er,onActive:eo,gradientDragging:ei,onGradientDragging:el,disabledFormat:P})),overlayClassName:ex},{open:_,trigger:s,placement:f,arrow:g,rootClassName:w,getPopupContainer:j,autoAdjustOverflow:z,destroyTooltipOnHide:R}),c||m().createElement(gi,Object.assign({activeIndex:_?er:-1,open:_,className:ey,style:e$,prefixCls:K,disabled:H,showText:b,format:q},T,{color:X}))))},gm=rd(gp,"color-picker",e=>e,e=>Object.assign(Object.assign({},e),{placement:"bottom",autoAdjustOverflow:!1}));gp._InternalPanelDoNotUseOrYouWillBeFired=gm;let gg=gp,gh={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880 184H712v-64c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v64H384v-64c0-4.4-3.6-8-8-8h-56c-4.4 0-8 3.6-8 8v64H144c-17.7 0-32 14.3-32 32v664c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V216c0-17.7-14.3-32-32-32zm-40 656H184V460h656v380zM184 392V256h128v48c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-48h256v48c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8v-48h128v136H184z"}}]},name:"calendar",theme:"outlined"};var gv=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:gh}))});let gb={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm0 820c-205.4 0-372-166.6-372-372s166.6-372 372-372 372 166.6 372 372-166.6 372-372 372z"}},{tag:"path",attrs:{d:"M686.7 638.6L544.1 535.5V288c0-4.4-3.6-8-8-8H488c-4.4 0-8 3.6-8 8v275.4c0 2.6 1.2 5 3.3 6.5l165.4 120.6c3.6 2.6 8.6 1.8 11.2-1.7l28.6-39c2.6-3.7 1.8-8.7-1.8-11.2z"}}]},name:"clock-circle",theme:"outlined"};var gy=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:gb}))});let gx={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M873.1 596.2l-164-208A32 32 0 00684 376h-64.8c-6.7 0-10.4 7.7-6.3 13l144.3 183H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h695.9c26.8 0 41.7-30.8 25.2-51.8z"}}]},name:"swap-right",theme:"outlined"};var g$=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:gx}))}),gA=n(53039);let gw=(e,t)=>{let{componentCls:n,controlHeight:r}=e,o=t?`${n}-${t}`:"",a=o4(e);return[{[`${n}-multiple${o}`]:{paddingBlock:a.containerPadding,paddingInlineStart:a.basePadding,minHeight:r,[`${n}-selection-item`]:{height:a.itemHeight,lineHeight:(0,q.zA)(a.itemLineHeight)}}}]},gC=(e,t,n,r)=>{let o=e.calc(n).add(2).equal(),a=e.max(e.calc(t).sub(o).div(2).equal(),0),i=e.max(e.calc(t).sub(o).sub(a).equal(),0);return{padding:`${(0,q.zA)(a)} ${(0,q.zA)(r)} ${(0,q.zA)(i)}`}},gS=(0,w.OF)("DatePicker",e=>{let t=(0,ey.oX)((0,uv.C)(e),ub(e),{inputPaddingHorizontalBase:e.calc(e.paddingSM).sub(1).equal(),multipleSelectItemHeight:e.multipleItemHeight,selectHeight:e.controlHeight});return[(e=>{let{componentCls:t,textHeight:n,lineWidth:r,paddingSM:o,antCls:a,colorPrimary:i,cellActiveWithRangeBg:l,colorPrimaryBorder:c,lineType:s,colorSplit:u}=e;return{[`${t}-dropdown`]:{[`${t}-footer`]:{borderTop:`${(0,q.zA)(r)} ${s} ${u}`,"&-extra":{padding:`0 ${(0,q.zA)(o)}`,lineHeight:(0,q.zA)(e.calc(n).sub(e.calc(r).mul(2)).equal()),textAlign:"start","&:not(:last-child)":{borderBottom:`${(0,q.zA)(r)} ${s} ${u}`}}},[`${t}-panels + ${t}-footer ${t}-ranges`]:{justifyContent:"space-between"},[`${t}-ranges`]:{marginBlock:0,paddingInline:(0,q.zA)(o),overflow:"hidden",textAlign:"start",listStyle:"none",display:"flex",justifyContent:"center",alignItems:"center","> li":{lineHeight:(0,q.zA)(e.calc(n).sub(e.calc(r).mul(2)).equal()),display:"inline-block"},[`${t}-now-btn-disabled`]:{pointerEvents:"none",color:e.colorTextDisabled},[`${t}-preset > ${a}-tag-blue`]:{color:i,background:l,borderColor:c,cursor:"pointer"},[`${t}-ok`]:{paddingBlock:e.calc(r).mul(2).equal(),marginInlineStart:"auto"}}}}})(t),(e=>{let{componentCls:t,antCls:n,controlHeight:r,paddingInline:o,lineWidth:a,lineType:i,colorBorder:l,borderRadius:c,motionDurationMid:s,colorTextDisabled:u,colorTextPlaceholder:d,controlHeightLG:f,fontSizeLG:p,controlHeightSM:m,paddingInlineSM:g,paddingXS:h,marginXS:v,colorTextDescription:b,lineWidthBold:y,colorPrimary:x,motionDurationSlow:$,zIndexPopup:A,paddingXXS:w,sizePopupArrow:C,colorBgElevated:S,borderRadiusLG:k,boxShadowSecondary:E,borderRadiusSM:O,colorSplit:M,cellHoverBg:N,presetsWidth:I,presetsMaxWidth:j,boxShadowPopoverArrow:z,fontHeight:R,fontHeightLG:P,lineHeightLG:T}=e;return[{[t]:Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),gC(e,r,R,o)),{position:"relative",display:"inline-flex",alignItems:"center",lineHeight:1,borderRadius:c,transition:`border ${s}, box-shadow ${s}, background ${s}`,[`${t}-prefix`]:{marginInlineEnd:e.inputAffixPadding},[`${t}-input`]:{position:"relative",display:"inline-flex",alignItems:"center",width:"100%","> input":Object.assign(Object.assign({position:"relative",display:"inline-block",width:"100%",color:"inherit",fontSize:e.fontSize,lineHeight:e.lineHeight,transition:`all ${s}`},(0,p9.j_)(d)),{flex:"auto",minWidth:1,height:"auto",padding:0,background:"transparent",border:0,fontFamily:"inherit","&:focus":{boxShadow:"none",outline:0},"&[disabled]":{background:"transparent",color:u,cursor:"not-allowed"}}),"&-placeholder":{"> input":{color:d}}},"&-large":Object.assign(Object.assign({},gC(e,f,P,o)),{[`${t}-input > input`]:{fontSize:p,lineHeight:T}}),"&-small":Object.assign({},gC(e,m,R,g)),[`${t}-suffix`]:{display:"flex",flex:"none",alignSelf:"center",marginInlineStart:e.calc(h).div(2).equal(),color:u,lineHeight:1,pointerEvents:"none",transition:`opacity ${s}, color ${s}`,"> *":{verticalAlign:"top","&:not(:last-child)":{marginInlineEnd:v}}},[`${t}-clear`]:{position:"absolute",top:"50%",insetInlineEnd:0,color:u,lineHeight:1,transform:"translateY(-50%)",cursor:"pointer",opacity:0,transition:`opacity ${s}, color ${s}`,"> *":{verticalAlign:"top"},"&:hover":{color:b}},"&:hover":{[`${t}-clear`]:{opacity:1},[`${t}-suffix:not(:last-child)`]:{opacity:0}},[`${t}-separator`]:{position:"relative",display:"inline-block",width:"1em",height:p,color:u,fontSize:p,verticalAlign:"top",cursor:"default",[`${t}-focused &`]:{color:b},[`${t}-range-separator &`]:{[`${t}-disabled &`]:{cursor:"not-allowed"}}},"&-range":{position:"relative",display:"inline-flex",[`${t}-active-bar`]:{bottom:e.calc(a).mul(-1).equal(),height:y,background:x,opacity:0,transition:`all ${$} ease-out`,pointerEvents:"none"},[`&${t}-focused`]:{[`${t}-active-bar`]:{opacity:1}},[`${t}-range-separator`]:{alignItems:"center",padding:`0 ${(0,q.zA)(h)}`,lineHeight:1}},"&-range, &-multiple":{[`${t}-clear`]:{insetInlineEnd:o},[`&${t}-small`]:{[`${t}-clear`]:{insetInlineEnd:g}}},"&-dropdown":Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),uh(e)),{pointerEvents:"none",position:"absolute",top:-9999,left:{_skip_check_:!0,value:-9999},zIndex:A,[`&${t}-dropdown-hidden`]:{display:"none"},"&-rtl":{direction:"rtl"},[`&${t}-dropdown-placement-bottomLeft, - &${t}-dropdown-placement-bottomRight`]:{[`${t}-range-arrow`]:{top:0,display:"block",transform:"translateY(-100%)"}},[`&${t}-dropdown-placement-topLeft, - &${t}-dropdown-placement-topRight`]:{[`${t}-range-arrow`]:{bottom:0,display:"block",transform:"translateY(100%) rotate(180deg)"}},[`&${n}-slide-up-enter${n}-slide-up-enter-active${t}-dropdown-placement-topLeft, - &${n}-slide-up-enter${n}-slide-up-enter-active${t}-dropdown-placement-topRight, - &${n}-slide-up-appear${n}-slide-up-appear-active${t}-dropdown-placement-topLeft, - &${n}-slide-up-appear${n}-slide-up-appear-active${t}-dropdown-placement-topRight`]:{animationName:oq},[`&${n}-slide-up-enter${n}-slide-up-enter-active${t}-dropdown-placement-bottomLeft, - &${n}-slide-up-enter${n}-slide-up-enter-active${t}-dropdown-placement-bottomRight, - &${n}-slide-up-appear${n}-slide-up-appear-active${t}-dropdown-placement-bottomLeft, - &${n}-slide-up-appear${n}-slide-up-appear-active${t}-dropdown-placement-bottomRight`]:{animationName:o_},[`&${n}-slide-up-leave ${t}-panel-container`]:{pointerEvents:"none"},[`&${n}-slide-up-leave${n}-slide-up-leave-active${t}-dropdown-placement-topLeft, - &${n}-slide-up-leave${n}-slide-up-leave-active${t}-dropdown-placement-topRight`]:{animationName:oV},[`&${n}-slide-up-leave${n}-slide-up-leave-active${t}-dropdown-placement-bottomLeft, - &${n}-slide-up-leave${n}-slide-up-leave-active${t}-dropdown-placement-bottomRight`]:{animationName:oW},[`${t}-panel > ${t}-time-panel`]:{paddingTop:w},[`${t}-range-wrapper`]:{display:"flex",position:"relative"},[`${t}-range-arrow`]:Object.assign(Object.assign({position:"absolute",zIndex:1,display:"none",paddingInline:e.calc(o).mul(1.5).equal(),boxSizing:"content-box",transition:`all ${$} ease-out`},(0,aj.j)(e,S,z)),{"&:before":{insetInlineStart:e.calc(o).mul(1.5).equal()}}),[`${t}-panel-container`]:{overflow:"hidden",verticalAlign:"top",background:S,borderRadius:k,boxShadow:E,transition:`margin ${$}`,display:"inline-block",pointerEvents:"auto",[`${t}-panel-layout`]:{display:"flex",flexWrap:"nowrap",alignItems:"stretch"},[`${t}-presets`]:{display:"flex",flexDirection:"column",minWidth:I,maxWidth:j,ul:{height:0,flex:"auto",listStyle:"none",overflow:"auto",margin:0,padding:h,borderInlineEnd:`${(0,q.zA)(a)} ${i} ${M}`,li:Object.assign(Object.assign({},V.L9),{borderRadius:O,paddingInline:h,paddingBlock:e.calc(m).sub(R).div(2).equal(),cursor:"pointer",transition:`all ${$}`,"+ li":{marginTop:v},"&:hover":{background:N}})}},[`${t}-panels`]:{display:"inline-flex",flexWrap:"nowrap","&:last-child":{[`${t}-panel`]:{borderWidth:0}}},[`${t}-panel`]:{verticalAlign:"top",background:"transparent",borderRadius:0,borderWidth:0,[`${t}-content, table`]:{textAlign:"center"},"&-focused":{borderColor:l}}}}),"&-dropdown-range":{padding:`${(0,q.zA)(e.calc(C).mul(2).div(3).equal())} 0`,"&-hidden":{display:"none"}},"&-rtl":{direction:"rtl",[`${t}-separator`]:{transform:"rotate(180deg)"},[`${t}-footer`]:{"&-extra":{direction:"rtl"}}}})},oX(e,"slide-up"),oX(e,"slide-down"),o1(e,"move-up"),o1(e,"move-down")]})(t),(e=>{let{componentCls:t}=e;return{[t]:[Object.assign(Object.assign(Object.assign({},(0,me.Eb)(e)),(0,me.sA)(e)),(0,me.lB)(e)),{"&-outlined":{[`&${t}-multiple ${t}-selection-item`]:{background:e.multipleItemBg,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.multipleItemBorderColor}`}},"&-filled":{[`&${t}-multiple ${t}-selection-item`]:{background:e.colorBgContainer,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`}},"&-borderless":{[`&${t}-multiple ${t}-selection-item`]:{background:e.multipleItemBg,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.multipleItemBorderColor}`}}}]}})(t),(e=>{let{componentCls:t,colorError:n,colorWarning:r}=e;return{[`${t}:not(${t}-disabled):not([disabled])`]:{[`&${t}-status-error`]:{[`${t}-active-bar`]:{background:n}},[`&${t}-status-warning`]:{[`${t}-active-bar`]:{background:r}}}}})(t),(e=>{let{componentCls:t,calc:n,lineWidth:r}=e,o=(0,ey.oX)(e,{fontHeight:e.fontSize,selectHeight:e.controlHeightSM,multipleSelectItemHeight:e.multipleItemHeightSM,borderRadius:e.borderRadiusSM,borderRadiusSM:e.borderRadiusXS,controlHeight:e.controlHeightSM}),a=(0,ey.oX)(e,{fontHeight:n(e.multipleItemHeightLG).sub(n(r).mul(2).equal()).equal(),fontSize:e.fontSizeLG,selectHeight:e.controlHeightLG,multipleSelectItemHeight:e.multipleItemHeightLG,borderRadius:e.borderRadiusLG,borderRadiusSM:e.borderRadius,controlHeight:e.controlHeightLG});return[gw(o,"small"),gw(e),gw(a,"large"),{[`${t}${t}-multiple`]:Object.assign(Object.assign({width:"100%",cursor:"text",[`${t}-selector`]:{flex:"auto",padding:0,position:"relative","&:after":{margin:0},[`${t}-selection-placeholder`]:{position:"absolute",top:"50%",insetInlineStart:e.inputPaddingHorizontalBase,insetInlineEnd:0,transform:"translateY(-50%)",transition:`all ${e.motionDurationSlow}`,overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis",flex:1,color:e.colorTextPlaceholder,pointerEvents:"none"}}},o3(e)),{[`${t}-multiple-input`]:{width:0,height:0,border:0,visibility:"hidden",position:"absolute",zIndex:-1}})}]})(t),(0,oH.G)(e,{focusElCls:`${e.componentCls}-focused`})]},e=>Object.assign(Object.assign(Object.assign(Object.assign({},(0,uv.b)(e)),uy(e)),(0,aj.n)(e)),{presetsWidth:120,presetsMaxWidth:200,zIndexPopup:e.zIndexPopupBase+50}));function gk(e,t){let{allowClear:n=!0}=e,{clearIcon:r,removeIcon:o}=al(Object.assign(Object.assign({},e),{prefixCls:t,componentName:"DatePicker"}));return[p.useMemo(()=>!1!==n&&Object.assign({clearIcon:r},!0===n?{}:n),[n,r]),o]}let[gE,gO]=["week","WeekPicker"],[gM,gN]=["month","MonthPicker"],[gI,gj]=["year","YearPicker"],[gz,gR]=["quarter","QuarterPicker"],[gP,gT]=["time","TimePicker"],gD=e=>p.createElement(tz.Ay,Object.assign({size:"small",type:"primary"},e));function gL(e){return(0,p.useMemo)(()=>Object.assign({button:gD},e),[e])}var gB=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n},gF=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let gH=e=>{let t,n,r,o,a,i,{DatePicker:l,WeekPicker:c,MonthPicker:s,YearPicker:u,TimePicker:d,QuarterPicker:f}=(n=(t=(t,n)=>{let r=n===gT?"timePicker":"datePicker";return(0,p.forwardRef)((n,o)=>{var a;let{prefixCls:i,getPopupContainer:l,components:c,style:s,className:u,rootClassName:d,size:f,bordered:m,placement:g,placeholder:v,popupClassName:b,dropdownClassName:y,disabled:x,status:$,variant:w,onCalendarChange:C}=n,S=gF(n,["prefixCls","getPopupContainer","components","style","className","rootClassName","size","bordered","placement","placeholder","popupClassName","dropdownClassName","disabled","status","variant","onCalendarChange"]),{getPrefixCls:k,direction:E,getPopupContainer:O,[r]:M}=(0,p.useContext)(A.QO),N=k("picker",i),{compactSize:I,compactItemClassnames:j}=(0,oB.RQ)(N,E),z=p.useRef(null),[R,P]=(0,oL.A)("datePicker",w,m),T=(0,eh.A)(N),[D,L,B]=gS(N,T);(0,p.useImperativeHandle)(o,()=>z.current);let F=t||n.picker,H=k(),{onSelect:_,multiple:W}=S,q=_&&"time"===t&&!W,[V,K]=gk(n,N),X=gL(c),Y=(0,oT.A)(e=>{var t;return null!=(t=null!=f?f:I)?t:e}),U=p.useContext(tp.A),{hasFeedback:G,status:Q,feedbackIcon:Z}=(0,p.useContext)(oD.$W),J=p.createElement(p.Fragment,null,"time"===F?p.createElement(gy,null):p.createElement(gv,null),G&&Z),[ee]=(0,tI.A)("DatePicker",gA.A),et=Object.assign(Object.assign({},ee),n.locale),[en]=(0,eY.YK)("DatePicker",null==(a=n.popupStyle)?void 0:a.zIndex);return D(p.createElement(t2.A,{space:!0},p.createElement(s3,Object.assign({ref:z,placeholder:void 0!==v?v:"year"===F&&et.lang.yearPlaceholder?et.lang.yearPlaceholder:"quarter"===F&&et.lang.quarterPlaceholder?et.lang.quarterPlaceholder:"month"===F&&et.lang.monthPlaceholder?et.lang.monthPlaceholder:"week"===F&&et.lang.weekPlaceholder?et.lang.weekPlaceholder:"time"===F&&et.timePickerLocale.placeholder?et.timePickerLocale.placeholder:et.lang.placeholder,suffixIcon:J,placement:g,prevIcon:p.createElement("span",{className:`${N}-prev-icon`}),nextIcon:p.createElement("span",{className:`${N}-next-icon`}),superPrevIcon:p.createElement("span",{className:`${N}-super-prev-icon`}),superNextIcon:p.createElement("span",{className:`${N}-super-next-icon`}),transitionName:`${H}-slide-up`,picker:t,onCalendarChange:(e,t,n)=>{null==C||C(e,t,n),q&&_(e)}},{showToday:!0},S,{locale:et.lang,className:h()({[`${N}-${Y}`]:Y,[`${N}-${R}`]:P},(0,oO.L)(N,(0,oO.v)(Q,$),G),L,j,null==M?void 0:M.className,u,B,T,d),style:Object.assign(Object.assign({},null==M?void 0:M.style),s),prefixCls:N,getPopupContainer:l||O,generateConfig:e,components:X,direction:E,disabled:null!=x?x:U,classNames:{popup:h()(L,B,T,d,b||y)},styles:{popup:Object.assign(Object.assign({},n.popupStyle),{zIndex:en})},allowClear:V,removeIcon:K}))))})})(),r=t(gE,gO),o=t(gM,gN),a=t(gI,gj),i=t(gz,gR),{DatePicker:n,WeekPicker:r,MonthPicker:o,YearPicker:a,TimePicker:t(gP,gT),QuarterPicker:i}),m=(0,p.forwardRef)((t,n)=>{var r;let{prefixCls:o,getPopupContainer:a,components:i,className:l,style:c,placement:s,size:u,disabled:d,bordered:f=!0,placeholder:m,popupClassName:g,dropdownClassName:v,status:b,rootClassName:y,variant:x,picker:$}=t,w=gB(t,["prefixCls","getPopupContainer","components","className","style","placement","size","disabled","bordered","placeholder","popupClassName","dropdownClassName","status","rootClassName","variant","picker"]),C=p.useRef(null),{getPrefixCls:S,direction:k,getPopupContainer:E,rangePicker:O}=(0,p.useContext)(A.QO),M=S("picker",o),{compactSize:N,compactItemClassnames:I}=(0,oB.RQ)(M,k),j=S(),[z,R]=(0,oL.A)("rangePicker",x,f),P=(0,eh.A)(M),[T,D,L]=gS(M,P),[B]=gk(t,M),F=gL(i),H=(0,oT.A)(e=>{var t;return null!=(t=null!=u?u:N)?t:e}),_=p.useContext(tp.A),{hasFeedback:W,status:q,feedbackIcon:V}=(0,p.useContext)(oD.$W),K=p.createElement(p.Fragment,null,$===gP?p.createElement(gy,null):p.createElement(gv,null),W&&V);(0,p.useImperativeHandle)(n,()=>C.current);let[X]=(0,tI.A)("Calendar",gA.A),Y=Object.assign(Object.assign({},X),t.locale),[U]=(0,eY.YK)("DatePicker",null==(r=t.popupStyle)?void 0:r.zIndex);return T(p.createElement(t2.A,{space:!0},p.createElement(s0,Object.assign({separator:p.createElement("span",{"aria-label":"to",className:`${M}-separator`},p.createElement(g$,null)),disabled:null!=d?d:_,ref:C,placement:s,placeholder:void 0!==m?m:"year"===$&&Y.lang.yearPlaceholder?Y.lang.rangeYearPlaceholder:"quarter"===$&&Y.lang.quarterPlaceholder?Y.lang.rangeQuarterPlaceholder:"month"===$&&Y.lang.monthPlaceholder?Y.lang.rangeMonthPlaceholder:"week"===$&&Y.lang.weekPlaceholder?Y.lang.rangeWeekPlaceholder:"time"===$&&Y.timePickerLocale.placeholder?Y.timePickerLocale.rangePlaceholder:Y.lang.rangePlaceholder,suffixIcon:K,prevIcon:p.createElement("span",{className:`${M}-prev-icon`}),nextIcon:p.createElement("span",{className:`${M}-next-icon`}),superPrevIcon:p.createElement("span",{className:`${M}-super-prev-icon`}),superNextIcon:p.createElement("span",{className:`${M}-super-next-icon`}),transitionName:`${j}-slide-up`,picker:$},w,{className:h()({[`${M}-${H}`]:H,[`${M}-${z}`]:R},(0,oO.L)(M,(0,oO.v)(q,b),W),D,I,l,null==O?void 0:O.className,L,P,y),style:Object.assign(Object.assign({},null==O?void 0:O.style),c),locale:Y.lang,prefixCls:M,getPopupContainer:a||E,generateConfig:e,components:F,direction:k,classNames:{popup:h()(D,g||v,L,P,y)},styles:{popup:Object.assign(Object.assign({},t.popupStyle),{zIndex:U})},allowClear:B}))))});return l.WeekPicker=c,l.MonthPicker=s,l.YearPicker=u,l.RangePicker=m,l.TimePicker=d,l.QuarterPicker=f,l},g_=gH(cC),gW=rd(g_,"picker",null);g_._InternalPanelDoNotUseOrYouWillBeFired=gW;let gq=rd(g_.RangePicker,"picker",null);g_._InternalRangePanelDoNotUseOrYouWillBeFired=gq,g_.generatePicker=gH;let gV=g_,gK={xxl:3,xl:3,lg:3,md:3,sm:2,xs:1},gX=m().createContext({});var gY=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n},gU=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let gG=e=>{let{itemPrefixCls:t,component:n,span:r,className:o,style:a,labelStyle:i,contentStyle:l,bordered:c,label:s,content:u,colon:d,type:f}=e;if(c)return p.createElement(n,{className:h()({[`${t}-item-label`]:"label"===f,[`${t}-item-content`]:"content"===f},o),style:a,colSpan:r},null!=s&&p.createElement("span",{style:i},s),null!=u&&p.createElement("span",{style:l},u));return p.createElement(n,{className:h()(`${t}-item`,o),style:a,colSpan:r},p.createElement("div",{className:`${t}-item-container`},(s||0===s)&&p.createElement("span",{className:h()(`${t}-item-label`,{[`${t}-item-no-colon`]:!d}),style:i},s),(u||0===u)&&p.createElement("span",{className:h()(`${t}-item-content`),style:l},u)))};function gQ(e,t,n){let{colon:r,prefixCls:o,bordered:a}=t,{component:i,type:l,showLabel:c,showContent:s,labelStyle:u,contentStyle:d}=n;return e.map((e,t)=>{let{label:n,children:f,prefixCls:m=o,className:g,style:h,labelStyle:v,contentStyle:b,span:y=1,key:x}=e;return"string"==typeof i?p.createElement(gG,{key:`${l}-${x||t}`,className:g,style:h,labelStyle:Object.assign(Object.assign({},u),v),contentStyle:Object.assign(Object.assign({},d),b),span:y,colon:r,component:i,itemPrefixCls:m,bordered:a,label:c?n:null,content:s?f:null,type:l}):[p.createElement(gG,{key:`label-${x||t}`,className:g,style:Object.assign(Object.assign(Object.assign({},u),h),v),span:1,colon:r,component:i[0],itemPrefixCls:m,bordered:a,label:n,type:"label"}),p.createElement(gG,{key:`content-${x||t}`,className:g,style:Object.assign(Object.assign(Object.assign({},d),h),b),span:2*y-1,component:i[1],itemPrefixCls:m,bordered:a,content:f,type:"content"})]})}let gZ=e=>{let t=p.useContext(gX),{prefixCls:n,vertical:r,row:o,index:a,bordered:i}=e;return r?p.createElement(p.Fragment,null,p.createElement("tr",{key:`label-${a}`,className:`${n}-row`},gQ(o,e,Object.assign({component:"th",type:"label",showLabel:!0},t))),p.createElement("tr",{key:`content-${a}`,className:`${n}-row`},gQ(o,e,Object.assign({component:"td",type:"content",showContent:!0},t)))):p.createElement("tr",{key:a,className:`${n}-row`},gQ(o,e,Object.assign({component:i?["th","td"]:"td",type:"item",showLabel:!0,showContent:!0},t)))},gJ=(0,w.OF)("Descriptions",e=>(e=>{let{componentCls:t,extraColor:n,itemPaddingBottom:r,itemPaddingEnd:o,colonMarginRight:a,colonMarginLeft:i,titleMarginBottom:l}=e;return{[t]:Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),(e=>{let{componentCls:t,labelBg:n}=e;return{[`&${t}-bordered`]:{[`> ${t}-view`]:{border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,"> table":{tableLayout:"auto"},[`${t}-row`]:{borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,"&:last-child":{borderBottom:"none"},[`> ${t}-item-label, > ${t}-item-content`]:{padding:`${(0,q.zA)(e.padding)} ${(0,q.zA)(e.paddingLG)}`,borderInlineEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,"&:last-child":{borderInlineEnd:"none"}},[`> ${t}-item-label`]:{color:e.colorTextSecondary,backgroundColor:n,"&::after":{display:"none"}}}},[`&${t}-middle`]:{[`${t}-row`]:{[`> ${t}-item-label, > ${t}-item-content`]:{padding:`${(0,q.zA)(e.paddingSM)} ${(0,q.zA)(e.paddingLG)}`}}},[`&${t}-small`]:{[`${t}-row`]:{[`> ${t}-item-label, > ${t}-item-content`]:{padding:`${(0,q.zA)(e.paddingXS)} ${(0,q.zA)(e.padding)}`}}}}}})(e)),{"&-rtl":{direction:"rtl"},[`${t}-header`]:{display:"flex",alignItems:"center",marginBottom:l},[`${t}-title`]:Object.assign(Object.assign({},V.L9),{flex:"auto",color:e.titleColor,fontWeight:e.fontWeightStrong,fontSize:e.fontSizeLG,lineHeight:e.lineHeightLG}),[`${t}-extra`]:{marginInlineStart:"auto",color:n,fontSize:e.fontSize},[`${t}-view`]:{width:"100%",borderRadius:e.borderRadiusLG,table:{width:"100%",tableLayout:"fixed",borderCollapse:"collapse"}},[`${t}-row`]:{"> th, > td":{paddingBottom:r,paddingInlineEnd:o},"> th:last-child, > td:last-child":{paddingInlineEnd:0},"&:last-child":{borderBottom:"none","> th, > td":{paddingBottom:0}}},[`${t}-item-label`]:{color:e.colorTextTertiary,fontWeight:"normal",fontSize:e.fontSize,lineHeight:e.lineHeight,textAlign:"start","&::after":{content:'":"',position:"relative",top:-.5,marginInline:`${(0,q.zA)(i)} ${(0,q.zA)(a)}`},[`&${t}-item-no-colon::after`]:{content:'""'}},[`${t}-item-no-label`]:{"&::after":{margin:0,content:'""'}},[`${t}-item-content`]:{display:"table-cell",flex:1,color:e.contentColor,fontSize:e.fontSize,lineHeight:e.lineHeight,wordBreak:"break-word",overflowWrap:"break-word"},[`${t}-item`]:{paddingBottom:0,verticalAlign:"top","&-container":{display:"flex",[`${t}-item-label`]:{display:"inline-flex",alignItems:"baseline"},[`${t}-item-content`]:{display:"inline-flex",alignItems:"baseline",minWidth:"1em"}}},"&-middle":{[`${t}-row`]:{"> th, > td":{paddingBottom:e.paddingSM}}},"&-small":{[`${t}-row`]:{"> th, > td":{paddingBottom:e.paddingXS}}}})}})((0,ey.oX)(e,{})),e=>({labelBg:e.colorFillAlter,titleColor:e.colorText,titleMarginBottom:e.fontSizeSM*e.lineHeightSM,itemPaddingBottom:e.padding,itemPaddingEnd:e.padding,colonMarginRight:e.marginXS,colonMarginLeft:e.marginXXS/2,contentColor:e.colorText,extraColor:e.colorText}));var g0=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let g1=e=>{let t,{prefixCls:n,title:r,extra:o,column:a,colon:i=!0,bordered:l,layout:c,children:s,className:u,rootClassName:d,style:f,size:m,labelStyle:g,contentStyle:v,items:b}=e,y=g0(e,["prefixCls","title","extra","column","colon","bordered","layout","children","className","rootClassName","style","size","labelStyle","contentStyle","items"]),{getPrefixCls:x,direction:$,descriptions:w}=p.useContext(A.QO),C=x("descriptions",n),S=aw(),k=p.useMemo(()=>{var e;return"number"==typeof a?a:null!=(e=a$(S,Object.assign(Object.assign({},gK),a)))?e:3},[S,a]),E=(t=p.useMemo(()=>b||(0,rc.A)(s).map(e=>Object.assign(Object.assign({},null==e?void 0:e.props),{key:e.key})),[b,s]),p.useMemo(()=>t.map(e=>{var{span:t}=e,n=gY(e,["span"]);return"filled"===t?Object.assign(Object.assign({},n),{filled:!0}):Object.assign(Object.assign({},n),{span:"number"==typeof t?t:a$(S,t)})}),[t,S])),O=(0,oT.A)(m),M=((e,t)=>{let[n,r]=(0,p.useMemo)(()=>{let n,r,o,a;return n=[],r=[],o=!1,a=0,t.filter(e=>e).forEach(t=>{let{filled:i}=t,l=gU(t,["filled"]);if(i){r.push(l),n.push(r),r=[],a=0;return}let c=e-a;(a+=t.span||1)>=e?(a>e?(o=!0,r.push(Object.assign(Object.assign({},l),{span:c}))):r.push(l),n.push(r),r=[],a=0):r.push(l)}),r.length>0&&n.push(r),[n=n.map(t=>{let n=t.reduce((e,t)=>e+(t.span||1),0);return n({labelStyle:g,contentStyle:v}),[g,v]);return N(p.createElement(gX.Provider,{value:z},p.createElement("div",Object.assign({className:h()(C,null==w?void 0:w.className,{[`${C}-${O}`]:O&&"default"!==O,[`${C}-bordered`]:!!l,[`${C}-rtl`]:"rtl"===$},u,d,I,j),style:Object.assign(Object.assign({},null==w?void 0:w.style),f)},y),(r||o)&&p.createElement("div",{className:`${C}-header`},r&&p.createElement("div",{className:`${C}-title`},r),o&&p.createElement("div",{className:`${C}-extra`},o)),p.createElement("div",{className:`${C}-view`},p.createElement("table",null,p.createElement("tbody",null,M.map((e,t)=>p.createElement(gZ,{key:t,index:t,colon:i,prefixCls:C,vertical:"vertical"===c,bordered:l,row:e}))))))))};g1.Item=e=>{let{children:t}=e;return t};let g2=g1;var g4=p.createContext(null),g3=p.createContext({}),g6=["prefixCls","className","containerRef"];let g8=function(e){var t=e.prefixCls,n=e.className,r=e.containerRef,o=(0,eO.A)(e,g6),a=p.useContext(g3).panel,i=(0,_.xK)(a,r);return p.createElement("div",(0,R.A)({className:h()("".concat(t,"-content"),n),role:"dialog",ref:i},(0,H.A)(e,{aria:!0}),{"aria-modal":"true"},o))};function g5(e){return"string"==typeof e&&String(Number(e))===e?((0,tJ.Ay)(!1,"Invalid value type of `width` or `height` which should be number type instead."),Number(e)):e}var g7={width:0,height:0,overflow:"hidden",outline:"none",position:"absolute"},g9=p.forwardRef(function(e,t){var n,r,o,a=e.prefixCls,i=e.open,l=e.placement,c=e.inline,s=e.push,u=e.forceRender,d=e.autoFocus,f=e.keyboard,m=e.classNames,g=e.rootClassName,v=e.rootStyle,b=e.zIndex,y=e.className,x=e.id,$=e.style,A=e.motion,w=e.width,C=e.height,S=e.children,k=e.mask,E=e.maskClosable,O=e.maskMotion,M=e.maskClassName,N=e.maskStyle,I=e.afterOpenChange,j=e.onClose,z=e.onMouseEnter,P=e.onMouseOver,T=e.onMouseLeave,D=e.onClick,L=e.onKeyDown,B=e.onKeyUp,_=e.styles,W=e.drawerRender,q=p.useRef(),V=p.useRef(),K=p.useRef();p.useImperativeHandle(t,function(){return q.current}),p.useEffect(function(){if(i&&d){var e;null==(e=q.current)||e.focus({preventScroll:!0})}},[i]);var X=p.useState(!1),Y=(0,eE.A)(X,2),U=Y[0],G=Y[1],Q=p.useContext(g4),Z=null!=(n=null!=(r=null==(o="boolean"==typeof s?s?{}:{distance:0}:s||{})?void 0:o.distance)?r:null==Q?void 0:Q.pushDistance)?n:180,J=p.useMemo(function(){return{pushDistance:Z,push:function(){G(!0)},pull:function(){G(!1)}}},[Z]);p.useEffect(function(){var e,t;i?null==Q||null==(e=Q.push)||e.call(Q):null==Q||null==(t=Q.pull)||t.call(Q)},[i]),p.useEffect(function(){return function(){var e;null==Q||null==(e=Q.pull)||e.call(Q)}},[]);var ee=k&&p.createElement(F.Ay,(0,R.A)({key:"mask"},O,{visible:i}),function(e,t){var n=e.className,r=e.style;return p.createElement("div",{className:h()("".concat(a,"-mask"),n,null==m?void 0:m.mask,M),style:(0,eM.A)((0,eM.A)((0,eM.A)({},r),N),null==_?void 0:_.mask),onClick:E&&i?j:void 0,ref:t})}),et="function"==typeof A?A(l):A,en={};if(U&&Z)switch(l){case"top":en.transform="translateY(".concat(Z,"px)");break;case"bottom":en.transform="translateY(".concat(-Z,"px)");break;case"left":en.transform="translateX(".concat(Z,"px)");break;default:en.transform="translateX(".concat(-Z,"px)")}"left"===l||"right"===l?en.width=g5(w):en.height=g5(C);var er={onMouseEnter:z,onMouseOver:P,onMouseLeave:T,onClick:D,onKeyDown:L,onKeyUp:B},eo=p.createElement(F.Ay,(0,R.A)({key:"panel"},et,{visible:i,forceRender:u,onVisibleChanged:function(e){null==I||I(e)},removeOnLeave:!1,leavedClassName:"".concat(a,"-content-wrapper-hidden")}),function(t,n){var r=t.className,o=t.style,i=p.createElement(g8,(0,R.A)({id:x,containerRef:n,prefixCls:a,className:h()(y,null==m?void 0:m.content),style:(0,eM.A)((0,eM.A)({},$),null==_?void 0:_.content)},(0,H.A)(e,{aria:!0}),er),S);return p.createElement("div",(0,R.A)({className:h()("".concat(a,"-content-wrapper"),null==m?void 0:m.wrapper,r),style:(0,eM.A)((0,eM.A)((0,eM.A)({},en),o),null==_?void 0:_.wrapper)},(0,H.A)(e,{data:!0})),W?W(i):i)}),ea=(0,eM.A)({},v);return b&&(ea.zIndex=b),p.createElement(g4.Provider,{value:J},p.createElement("div",{className:h()(a,"".concat(a,"-").concat(l),g,(0,ej.A)((0,ej.A)({},"".concat(a,"-open"),i),"".concat(a,"-inline"),c)),style:ea,tabIndex:-1,ref:q,onKeyDown:function(e){var t,n,r=e.keyCode,o=e.shiftKey;switch(r){case eR.A.TAB:r===eR.A.TAB&&(o||document.activeElement!==K.current?o&&document.activeElement===V.current&&(null==(n=K.current)||n.focus({preventScroll:!0})):null==(t=V.current)||t.focus({preventScroll:!0}));break;case eR.A.ESC:j&&f&&(e.stopPropagation(),j(e))}}},ee,p.createElement("div",{tabIndex:0,ref:V,style:g7,"aria-hidden":"true","data-sentinel":"start"}),eo,p.createElement("div",{tabIndex:0,ref:K,style:g7,"aria-hidden":"true","data-sentinel":"end"})))});let he=function(e){var t=e.open,n=e.prefixCls,r=e.placement,o=e.autoFocus,a=e.keyboard,i=e.width,l=e.mask,c=void 0===l||l,s=e.maskClosable,u=e.getContainer,d=e.forceRender,f=e.afterOpenChange,m=e.destroyOnClose,g=e.onMouseEnter,h=e.onMouseOver,v=e.onMouseLeave,b=e.onClick,y=e.onKeyDown,x=e.onKeyUp,$=e.panelRef,A=p.useState(!1),w=(0,eE.A)(A,2),C=w[0],S=w[1],k=p.useState(!1),E=(0,eE.A)(k,2),O=E[0],M=E[1];(0,rf.A)(function(){M(!0)},[]);var N=!!O&&void 0!==t&&t,I=p.useRef(),j=p.useRef();(0,rf.A)(function(){N&&(j.current=document.activeElement)},[N]);var z=p.useMemo(function(){return{panel:$}},[$]);if(!d&&!C&&!N&&m)return null;var R=(0,eM.A)((0,eM.A)({},e),{},{open:N,prefixCls:void 0===n?"rc-drawer":n,placement:void 0===r?"right":r,autoFocus:void 0===o||o,keyboard:void 0===a||a,width:void 0===i?378:i,mask:c,maskClosable:void 0===s||s,inline:!1===u,afterOpenChange:function(e){var t,n;S(e),null==f||f(e),e||!j.current||null!=(t=I.current)&&t.contains(j.current)||null==(n=j.current)||n.focus({preventScroll:!0})},ref:I},{onMouseEnter:g,onMouseOver:h,onMouseLeave:v,onClick:b,onKeyDown:y,onKeyUp:x});return p.createElement(g3.Provider,{value:z},p.createElement(tH.A,{open:N||d||C,autoDestroy:!1,getContainer:u,autoLock:c&&(N||C)},p.createElement(g9,R)))},ht=e=>{var t,n;let{prefixCls:r,title:o,footer:a,extra:i,loading:l,onClose:c,headerStyle:s,bodyStyle:u,footerStyle:d,children:f,classNames:m,styles:g}=e,{drawer:v}=p.useContext(A.QO),b=p.useCallback(e=>p.createElement("button",{type:"button",onClick:c,"aria-label":"Close",className:`${r}-close`},e),[c]),[y,x]=t5(t4(e),t4(v),{closable:!0,closeIconRender:b}),$=p.useMemo(()=>{var e,t;return o||y?p.createElement("div",{style:Object.assign(Object.assign(Object.assign({},null==(e=null==v?void 0:v.styles)?void 0:e.header),s),null==g?void 0:g.header),className:h()(`${r}-header`,{[`${r}-header-close-only`]:y&&!o&&!i},null==(t=null==v?void 0:v.classNames)?void 0:t.header,null==m?void 0:m.header)},p.createElement("div",{className:`${r}-header-title`},x,o&&p.createElement("div",{className:`${r}-title`},o)),i&&p.createElement("div",{className:`${r}-extra`},i)):null},[y,x,i,s,r,o]),w=p.useMemo(()=>{var e,t;if(!a)return null;let n=`${r}-footer`;return p.createElement("div",{className:h()(n,null==(e=null==v?void 0:v.classNames)?void 0:e.footer,null==m?void 0:m.footer),style:Object.assign(Object.assign(Object.assign({},null==(t=null==v?void 0:v.styles)?void 0:t.footer),d),null==g?void 0:g.footer)},a)},[a,d,r]);return p.createElement(p.Fragment,null,$,p.createElement("div",{className:h()(`${r}-body`,null==m?void 0:m.body,null==(t=null==v?void 0:v.classNames)?void 0:t.body),style:Object.assign(Object.assign(Object.assign({},null==(n=null==v?void 0:v.styles)?void 0:n.body),u),null==g?void 0:g.body)},l?p.createElement(nf,{active:!0,title:!1,paragraph:{rows:5},className:`${r}-body-skeleton`}):f),w)},hn=(e,t)=>({"&-enter, &-appear":Object.assign(Object.assign({},e),{"&-active":t}),"&-leave":Object.assign(Object.assign({},t),{"&-active":e})}),hr=(e,t)=>Object.assign({"&-enter, &-appear, &-leave":{"&-start":{transition:"none"},"&-active":{transition:`all ${t}`}}},hn({opacity:e},{opacity:1})),ho=(0,w.OF)("Drawer",e=>{let t=(0,ey.oX)(e,{});return[(e=>{let{borderRadiusSM:t,componentCls:n,zIndexPopup:r,colorBgMask:o,colorBgElevated:a,motionDurationSlow:i,motionDurationMid:l,paddingXS:c,padding:s,paddingLG:u,fontSizeLG:d,lineHeightLG:f,lineWidth:p,lineType:m,colorSplit:g,marginXS:h,colorIcon:v,colorIconHover:b,colorBgTextHover:y,colorBgTextActive:x,colorText:$,fontWeightStrong:A,footerPaddingBlock:w,footerPaddingInline:C,calc:S}=e,k=`${n}-content-wrapper`;return{[n]:{position:"fixed",inset:0,zIndex:r,pointerEvents:"none",color:$,"&-pure":{position:"relative",background:a,display:"flex",flexDirection:"column",[`&${n}-left`]:{boxShadow:e.boxShadowDrawerLeft},[`&${n}-right`]:{boxShadow:e.boxShadowDrawerRight},[`&${n}-top`]:{boxShadow:e.boxShadowDrawerUp},[`&${n}-bottom`]:{boxShadow:e.boxShadowDrawerDown}},"&-inline":{position:"absolute"},[`${n}-mask`]:{position:"absolute",inset:0,zIndex:r,background:o,pointerEvents:"auto"},[k]:{position:"absolute",zIndex:r,maxWidth:"100vw",transition:`all ${i}`,"&-hidden":{display:"none"}},[`&-left > ${k}`]:{top:0,bottom:0,left:{_skip_check_:!0,value:0},boxShadow:e.boxShadowDrawerLeft},[`&-right > ${k}`]:{top:0,right:{_skip_check_:!0,value:0},bottom:0,boxShadow:e.boxShadowDrawerRight},[`&-top > ${k}`]:{top:0,insetInline:0,boxShadow:e.boxShadowDrawerUp},[`&-bottom > ${k}`]:{bottom:0,insetInline:0,boxShadow:e.boxShadowDrawerDown},[`${n}-content`]:{display:"flex",flexDirection:"column",width:"100%",height:"100%",overflow:"auto",background:a,pointerEvents:"auto"},[`${n}-header`]:{display:"flex",flex:0,alignItems:"center",padding:`${(0,q.zA)(s)} ${(0,q.zA)(u)}`,fontSize:d,lineHeight:f,borderBottom:`${(0,q.zA)(p)} ${m} ${g}`,"&-title":{display:"flex",flex:1,alignItems:"center",minWidth:0,minHeight:0}},[`${n}-extra`]:{flex:"none"},[`${n}-close`]:Object.assign({display:"inline-flex",width:S(d).add(c).equal(),height:S(d).add(c).equal(),borderRadius:t,justifyContent:"center",alignItems:"center",marginInlineEnd:h,color:v,fontWeight:A,fontSize:d,fontStyle:"normal",lineHeight:1,textAlign:"center",textTransform:"none",textDecoration:"none",background:"transparent",border:0,cursor:"pointer",transition:`all ${l}`,textRendering:"auto","&:hover":{color:b,backgroundColor:y,textDecoration:"none"},"&:active":{backgroundColor:x}},(0,V.K8)(e)),[`${n}-title`]:{flex:1,margin:0,fontWeight:e.fontWeightStrong,fontSize:d,lineHeight:f},[`${n}-body`]:{flex:1,minWidth:0,minHeight:0,padding:u,overflow:"auto",[`${n}-body-skeleton`]:{width:"100%",height:"100%",display:"flex",justifyContent:"center"}},[`${n}-footer`]:{flexShrink:0,padding:`${(0,q.zA)(w)} ${(0,q.zA)(C)}`,borderTop:`${(0,q.zA)(p)} ${m} ${g}`},"&-rtl":{direction:"rtl"}}}})(t),(e=>{let{componentCls:t,motionDurationSlow:n}=e;return{[t]:{[`${t}-mask-motion`]:hr(0,n),[`${t}-panel-motion`]:["left","right","top","bottom"].reduce((e,t)=>{let r;return Object.assign(Object.assign({},e),{[`&-${t}`]:[hr(.7,n),hn({transform:(r="100%",({left:`translateX(-${r})`,right:`translateX(${r})`,top:`translateY(-${r})`,bottom:`translateY(${r})`})[t])},{transform:"none"})]})},{})}}})(t)]},e=>({zIndexPopup:e.zIndexPopupBase,footerPaddingBlock:e.paddingXS,footerPaddingInline:e.padding}));var ha=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hi={distance:180},hl=e=>{let{rootClassName:t,width:n,height:r,size:o="default",mask:a=!0,push:i=hi,open:l,afterOpenChange:c,onClose:s,prefixCls:u,getContainer:d,style:f,className:m,visible:g,afterVisibleChange:v,maskStyle:b,drawerStyle:y,contentWrapperStyle:x}=e,$=ha(e,["rootClassName","width","height","size","mask","push","open","afterOpenChange","onClose","prefixCls","getContainer","style","className","visible","afterVisibleChange","maskStyle","drawerStyle","contentWrapperStyle"]),{getPopupContainer:w,getPrefixCls:C,direction:S,drawer:k}=p.useContext(A.QO),E=C("drawer",u),[O,M,N]=ho(E),I=void 0===d&&w?()=>w(document.body):d,j=h()({"no-mask":!a,[`${E}-rtl`]:"rtl"===S},t,M,N),z=p.useMemo(()=>null!=n?n:"large"===o?736:378,[n,o]),R=p.useMemo(()=>null!=r?r:"large"===o?736:378,[r,o]),P={motionName:(0,tN.b)(E,"mask-motion"),motionAppear:!0,motionEnter:!0,motionLeave:!0,motionDeadline:500},T=ng(),[D,L]=(0,eY.YK)("Drawer",$.zIndex),{classNames:B={},styles:F={}}=$,{classNames:H={},styles:_={}}=k||{};return O(p.createElement(t2.A,{form:!0,space:!0},p.createElement(t7.A.Provider,{value:L},p.createElement(he,Object.assign({prefixCls:E,onClose:s,maskMotion:P,motion:e=>({motionName:(0,tN.b)(E,`panel-motion-${e}`),motionAppear:!0,motionEnter:!0,motionLeave:!0,motionDeadline:500})},$,{classNames:{mask:h()(B.mask,H.mask),content:h()(B.content,H.content),wrapper:h()(B.wrapper,H.wrapper)},styles:{mask:Object.assign(Object.assign(Object.assign({},F.mask),b),_.mask),content:Object.assign(Object.assign(Object.assign({},F.content),y),_.content),wrapper:Object.assign(Object.assign(Object.assign({},F.wrapper),x),_.wrapper)},open:null!=l?l:g,mask:a,push:i,width:z,height:R,style:Object.assign(Object.assign({},null==k?void 0:k.style),f),className:h()(null==k?void 0:k.className,m),rootClassName:j,getContainer:I,afterOpenChange:null!=c?c:v,panelRef:T,zIndex:D}),p.createElement(ht,Object.assign({prefixCls:E},$,{onClose:s}))))))};hl._InternalPanelDoNotUseOrYouWillBeFired=e=>{let{prefixCls:t,style:n,className:r,placement:o="right"}=e,a=ha(e,["prefixCls","style","className","placement"]),{getPrefixCls:i}=p.useContext(A.QO),l=i("drawer",t),[c,s,u]=ho(l),d=h()(l,`${l}-pure`,`${l}-${o}`,s,u,r);return c(p.createElement("div",{className:d,style:n},p.createElement(ht,Object.assign({prefixCls:l},a))))};let hc=hl;function hs(e){return["small","middle","large"].includes(e)}function hu(e){return!!e&&"number"==typeof e&&!Number.isNaN(e)}let hd=m().createContext({latestIndex:0}),hf=hd.Provider,hp=e=>{let{className:t,index:n,children:r,split:o,style:a}=e,{latestIndex:i}=p.useContext(hd);return null==r?null:p.createElement(p.Fragment,null,p.createElement("div",{className:t,style:a},r),nt.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hh=p.forwardRef((e,t)=>{var n,r,o;let{getPrefixCls:a,space:i,direction:l}=p.useContext(A.QO),{size:c=null!=(n=null==i?void 0:i.size)?n:"small",align:s,className:u,rootClassName:d,children:f,direction:m="horizontal",prefixCls:g,split:v,style:b,wrap:y=!1,classNames:x,styles:$}=e,w=hg(e,["size","align","className","rootClassName","children","direction","prefixCls","split","style","wrap","classNames","styles"]),[C,S]=Array.isArray(c)?c:[c,c],k=hs(S),E=hs(C),O=hu(S),M=hu(C),N=(0,rc.A)(f,{keepEmpty:!0}),I=void 0===s&&"horizontal"===m?"center":s,j=a("space",g),[z,R,P]=(0,hm.A)(j),T=h()(j,null==i?void 0:i.className,R,`${j}-${m}`,{[`${j}-rtl`]:"rtl"===l,[`${j}-align-${I}`]:I,[`${j}-gap-row-${S}`]:k,[`${j}-gap-col-${C}`]:E},u,d,P),D=h()(`${j}-item`,null!=(r=null==x?void 0:x.item)?r:null==(o=null==i?void 0:i.classNames)?void 0:o.item),L=0,B=N.map((e,t)=>{var n,r;null!=e&&(L=t);let o=(null==e?void 0:e.key)||`${D}-${t}`;return p.createElement(hp,{className:D,key:o,index:t,split:v,style:null!=(n=null==$?void 0:$.item)?n:null==(r=null==i?void 0:i.styles)?void 0:r.item},e)}),F=p.useMemo(()=>({latestIndex:L}),[L]);if(0===N.length)return null;let H={};return y&&(H.flexWrap="wrap"),!E&&M&&(H.columnGap=C),!k&&O&&(H.rowGap=S),z(p.createElement("div",Object.assign({ref:t,className:T,style:Object.assign(Object.assign(Object.assign({},H),null==i?void 0:i.style),b)},w),p.createElement(hf,{value:F},B)))});hh.Compact=oB.Ay;let hv=hh;var hb=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hy=e=>{let{getPopupContainer:t,getPrefixCls:n,direction:r}=p.useContext(A.QO),{prefixCls:o,type:a="default",danger:i,disabled:l,loading:c,onClick:s,htmlType:u,children:d,className:f,menu:m,arrow:g,autoFocus:v,overlay:b,trigger:y,align:x,open:$,onOpenChange:w,placement:C,getPopupContainer:S,href:k,icon:E=p.createElement(lz,null),title:O,buttonsRender:M=e=>e,mouseEnterDelay:N,mouseLeaveDelay:I,overlayClassName:j,overlayStyle:z,destroyPopupOnHide:R,dropdownRender:P}=e,T=hb(e,["prefixCls","type","danger","disabled","loading","onClick","htmlType","children","className","menu","arrow","autoFocus","overlay","trigger","align","open","onOpenChange","placement","getPopupContainer","href","icon","title","buttonsRender","mouseEnterDelay","mouseLeaveDelay","overlayClassName","overlayStyle","destroyPopupOnHide","dropdownRender"]),D=n("dropdown",o),L=`${D}-button`,B={menu:m,arrow:g,autoFocus:v,align:x,disabled:l,trigger:l?[]:y,onOpenChange:w,getPopupContainer:S||t,mouseEnterDelay:N,mouseLeaveDelay:I,overlayClassName:j,overlayStyle:z,destroyPopupOnHide:R,dropdownRender:P},{compactSize:F,compactItemClassnames:H}=(0,oB.RQ)(D,r),_=h()(L,H,f);"overlay"in e&&(B.overlay=b),"open"in e&&(B.open=$),"placement"in e?B.placement=C:B.placement="rtl"===r?"bottomLeft":"bottomRight";let[W,q]=M([p.createElement(tz.Ay,{type:a,danger:i,disabled:l,loading:c,onClick:s,htmlType:u,href:k,title:O},d),p.createElement(tz.Ay,{type:a,danger:i,icon:E})]);return p.createElement(hv.Compact,Object.assign({className:_,size:F,block:!0},T),W,p.createElement(l4,Object.assign({},B),q))};hy.__ANT_BUTTON=!0,l4.Button=hy;let hx=l4,h$=["wrap","nowrap","wrap-reverse"],hA=["flex-start","flex-end","start","end","center","space-between","space-around","space-evenly","stretch","normal","left","right"],hw=["center","start","end","flex-start","flex-end","self-start","self-end","baseline","normal","stretch"],hC=function(e,t){let n,r,o;return h()(Object.assign(Object.assign(Object.assign({},(n=!0===t.wrap?"wrap":t.wrap,{[`${e}-wrap-${n}`]:n&&h$.includes(n)})),(r={},hw.forEach(n=>{r[`${e}-align-${n}`]=t.align===n}),r[`${e}-align-stretch`]=!t.align&&!!t.vertical,r)),(o={},hA.forEach(n=>{o[`${e}-justify-${n}`]=t.justify===n}),o)))},hS=(0,w.OF)("Flex",e=>{let{paddingXS:t,padding:n,paddingLG:r}=e,o=(0,ey.oX)(e,{flexGapSM:t,flexGap:n,flexGapLG:r});return[(e=>{let{componentCls:t}=e;return{[t]:{display:"flex","&-vertical":{flexDirection:"column"},"&-rtl":{direction:"rtl"},"&:empty":{display:"none"}}}})(o),(e=>{let{componentCls:t}=e;return{[t]:{"&-gap-small":{gap:e.flexGapSM},"&-gap-middle":{gap:e.flexGap},"&-gap-large":{gap:e.flexGapLG}}}})(o),(e=>{let{componentCls:t}=e,n={};return h$.forEach(e=>{n[`${t}-wrap-${e}`]={flexWrap:e}}),n})(o),(e=>{let{componentCls:t}=e,n={};return hw.forEach(e=>{n[`${t}-align-${e}`]={alignItems:e}}),n})(o),(e=>{let{componentCls:t}=e,n={};return hA.forEach(e=>{n[`${t}-justify-${e}`]={justifyContent:e}}),n})(o)]},()=>({}),{resetStyle:!1});var hk=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hE=m().forwardRef((e,t)=>{let{prefixCls:n,rootClassName:r,className:o,style:a,flex:i,gap:l,children:c,vertical:s=!1,component:u="div"}=e,d=hk(e,["prefixCls","rootClassName","className","style","flex","gap","children","vertical","component"]),{flex:f,direction:p,getPrefixCls:g}=m().useContext(A.QO),v=g("flex",n),[y,x,$]=hS(v),w=null!=s?s:null==f?void 0:f.vertical,C=h()(o,r,null==f?void 0:f.className,v,x,$,hC(v,e),{[`${v}-rtl`]:"rtl"===p,[`${v}-gap-${l}`]:hs(l),[`${v}-vertical`]:w}),S=Object.assign(Object.assign({},null==f?void 0:f.style),a);return i&&(S.flex=i),l&&!hs(l)&&(S.gap=l),y(m().createElement(u,Object.assign({ref:t,className:C,style:S},(0,b.A)(d,["justify","wrap","align"])),c))}),hO=m().createContext(void 0),{Provider:hM}=hO,hN={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0042 42h216v494zM504 618H320c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h184c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8zM312 490v48c0 4.4 3.6 8 8 8h384c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H320c-4.4 0-8 3.6-8 8z"}}]},name:"file-text",theme:"outlined"};var hI=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:hN}))});let hj=(0,p.memo)(e=>{let{icon:t,description:n,prefixCls:r,className:o}=e,a=m().createElement("div",{className:`${r}-icon`},m().createElement(hI,null));return m().createElement("div",{onClick:e.onClick,onFocus:e.onFocus,onMouseEnter:e.onMouseEnter,onMouseLeave:e.onMouseLeave,className:h()(o,`${r}-content`)},t||n?m().createElement(m().Fragment,null,t&&m().createElement("div",{className:`${r}-icon`},t),n&&m().createElement("div",{className:`${r}-description`},n)):a)}),hz=e=>0===e?0:e-Math.sqrt(Math.pow(e,2)/2),hR=(0,w.OF)("FloatButton",e=>{let{colorTextLightSolid:t,colorBgElevated:n,controlHeightLG:r,marginXXL:o,marginLG:a,fontSize:i,fontSizeIcon:l,controlItemBgHover:c,paddingXXS:s,calc:u}=e,d=(0,ey.oX)(e,{floatButtonBackgroundColor:n,floatButtonColor:t,floatButtonHoverBackgroundColor:c,floatButtonFontSize:i,floatButtonIconSize:u(l).mul(1.5).equal(),floatButtonSize:r,floatButtonInsetBlockEnd:o,floatButtonInsetInlineEnd:a,floatButtonBodySize:u(r).sub(u(s).mul(2)).equal(),floatButtonBodyPadding:s,badgeOffset:u(s).mul(1.5).equal()});return[(e=>{let{antCls:t,componentCls:n,floatButtonSize:r,margin:o,borderRadiusLG:a,borderRadiusSM:i,badgeOffset:l,floatButtonBodyPadding:c,zIndexPopupBase:s,calc:u}=e,d=`${n}-group`;return{[d]:Object.assign(Object.assign({},(0,V.dF)(e)),{zIndex:s,display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",border:"none",position:"fixed",height:"auto",boxShadow:"none",minWidth:r,minHeight:r,insetInlineEnd:e.floatButtonInsetInlineEnd,bottom:e.floatButtonInsetBlockEnd,borderRadius:a,[`${d}-wrap`]:{zIndex:-1,display:"flex",justifyContent:"center",alignItems:"center",position:"absolute"},[`&${d}-rtl`]:{direction:"rtl"},[n]:{position:"static"}}),[`${d}-top > ${d}-wrap`]:{flexDirection:"column",top:"auto",bottom:u(r).add(o).equal(),"&::after":{content:'""',position:"absolute",width:"100%",height:o,bottom:u(o).mul(-1).equal()}},[`${d}-bottom > ${d}-wrap`]:{flexDirection:"column",top:u(r).add(o).equal(),bottom:"auto","&::after":{content:'""',position:"absolute",width:"100%",height:o,top:u(o).mul(-1).equal()}},[`${d}-right > ${d}-wrap`]:{flexDirection:"row",left:{_skip_check_:!0,value:u(r).add(o).equal()},right:{_skip_check_:!0,value:"auto"},"&::after":{content:'""',position:"absolute",width:o,height:"100%",left:{_skip_check_:!0,value:u(o).mul(-1).equal()}}},[`${d}-left > ${d}-wrap`]:{flexDirection:"row",left:{_skip_check_:!0,value:"auto"},right:{_skip_check_:!0,value:u(r).add(o).equal()},"&::after":{content:'""',position:"absolute",width:o,height:"100%",right:{_skip_check_:!0,value:u(o).mul(-1).equal()}}},[`${d}-circle`]:{gap:o,[`${d}-wrap`]:{gap:o}},[`${d}-square`]:{[`${n}-square`]:{padding:0,borderRadius:0,[`&${d}-trigger`]:{borderRadius:a},"&:first-child":{borderStartStartRadius:a,borderStartEndRadius:a},"&:last-child":{borderEndStartRadius:a,borderEndEndRadius:a},"&:not(:last-child)":{borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`},[`${t}-badge`]:{[`${t}-badge-count`]:{top:u(u(c).add(l)).mul(-1).equal(),insetInlineEnd:u(u(c).add(l)).mul(-1).equal()}}},[`${d}-wrap`]:{borderRadius:a,boxShadow:e.boxShadowSecondary,[`${n}-square`]:{boxShadow:"none",borderRadius:0,padding:c,[`${n}-body`]:{width:e.floatButtonBodySize,height:e.floatButtonBodySize,borderRadius:i}}}},[`${d}-top > ${d}-wrap, ${d}-bottom > ${d}-wrap`]:{[`> ${n}-square`]:{"&:first-child":{borderStartStartRadius:a,borderStartEndRadius:a},"&:last-child":{borderEndStartRadius:a,borderEndEndRadius:a},"&:not(:last-child)":{borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`}}},[`${d}-left > ${d}-wrap, ${d}-right > ${d}-wrap`]:{[`> ${n}-square`]:{"&:first-child":{borderStartStartRadius:a,borderEndStartRadius:a},"&:last-child":{borderStartEndRadius:a,borderEndEndRadius:a},"&:not(:last-child)":{borderInlineEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`}}},[`${d}-circle-shadow`]:{boxShadow:"none"},[`${d}-square-shadow`]:{boxShadow:e.boxShadowSecondary,[`${n}-square`]:{boxShadow:"none",padding:c,[`${n}-body`]:{width:e.floatButtonBodySize,height:e.floatButtonBodySize,borderRadius:i}}}}})(d),(e=>{let{antCls:t,componentCls:n,floatButtonBodyPadding:r,floatButtonIconSize:o,floatButtonSize:a,borderRadiusLG:i,badgeOffset:l,dotOffsetInSquare:c,dotOffsetInCircle:s,zIndexPopupBase:u,calc:d}=e;return{[n]:Object.assign(Object.assign({},(0,V.dF)(e)),{border:"none",position:"fixed",cursor:"pointer",zIndex:u,display:"block",width:a,height:a,insetInlineEnd:e.floatButtonInsetInlineEnd,bottom:e.floatButtonInsetBlockEnd,boxShadow:e.boxShadowSecondary,"&-pure":{position:"relative",inset:"auto"},"&:empty":{display:"none"},[`${t}-badge`]:{width:"100%",height:"100%",[`${t}-badge-count`]:{transform:"translate(0, 0)",transformOrigin:"center",top:d(l).mul(-1).equal(),insetInlineEnd:d(l).mul(-1).equal()}},[`${n}-body`]:{width:"100%",height:"100%",display:"flex",justifyContent:"center",alignItems:"center",transition:`all ${e.motionDurationMid}`,[`${n}-content`]:{overflow:"hidden",textAlign:"center",minHeight:a,display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",padding:`${(0,q.zA)(d(r).div(2).equal())} ${(0,q.zA)(r)}`,[`${n}-icon`]:{textAlign:"center",margin:"auto",width:o,fontSize:o,lineHeight:1}}}}),[`${n}-rtl`]:{direction:"rtl"},[`${n}-circle`]:{height:a,borderRadius:"50%",[`${t}-badge`]:{[`${t}-badge-dot`]:{top:s,insetInlineEnd:s}},[`${n}-body`]:{borderRadius:"50%"}},[`${n}-square`]:{height:"auto",minHeight:a,borderRadius:i,[`${t}-badge`]:{[`${t}-badge-dot`]:{top:c,insetInlineEnd:c}},[`${n}-body`]:{height:"auto",borderRadius:i}},[`${n}-default`]:{backgroundColor:e.floatButtonBackgroundColor,transition:`background-color ${e.motionDurationMid}`,[`${n}-body`]:{backgroundColor:e.floatButtonBackgroundColor,transition:`background-color ${e.motionDurationMid}`,"&:hover":{backgroundColor:e.colorFillContent},[`${n}-content`]:{[`${n}-icon`]:{color:e.colorText},[`${n}-description`]:{display:"flex",alignItems:"center",lineHeight:(0,q.zA)(e.fontSizeLG),color:e.colorText,fontSize:e.fontSizeSM}}}},[`${n}-primary`]:{backgroundColor:e.colorPrimary,[`${n}-body`]:{backgroundColor:e.colorPrimary,transition:`background-color ${e.motionDurationMid}`,"&:hover":{backgroundColor:e.colorPrimaryHover},[`${n}-content`]:{[`${n}-icon`]:{color:e.colorTextLightSolid},[`${n}-description`]:{display:"flex",alignItems:"center",lineHeight:(0,q.zA)(e.fontSizeLG),color:e.colorTextLightSolid,fontSize:e.fontSizeSM}}}}}})(d),nw(e),(e=>{let{componentCls:t,floatButtonSize:n,motionDurationSlow:r,motionEaseInOutCirc:o,calc:a}=e,i=new q.Mo("antFloatButtonMoveTopIn",{"0%":{transform:`translate3d(0, ${(0,q.zA)(n)}, 0)`,transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),l=new q.Mo("antFloatButtonMoveTopOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:`translate3d(0, ${(0,q.zA)(n)}, 0)`,transformOrigin:"0 0",opacity:0}}),c=new q.Mo("antFloatButtonMoveRightIn",{"0%":{transform:`translate3d(${a(n).mul(-1).equal()}, 0, 0)`,transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),s=new q.Mo("antFloatButtonMoveRightOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:`translate3d(${a(n).mul(-1).equal()}, 0, 0)`,transformOrigin:"0 0",opacity:0}}),u=new q.Mo("antFloatButtonMoveBottomIn",{"0%":{transform:`translate3d(0, ${a(n).mul(-1).equal()}, 0)`,transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),d=new q.Mo("antFloatButtonMoveBottomOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:`translate3d(0, ${a(n).mul(-1).equal()}, 0)`,transformOrigin:"0 0",opacity:0}}),f=new q.Mo("antFloatButtonMoveLeftIn",{"0%":{transform:`translate3d(${(0,q.zA)(n)}, 0, 0)`,transformOrigin:"0 0",opacity:0},"100%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1}}),p=new q.Mo("antFloatButtonMoveLeftOut",{"0%":{transform:"translate3d(0, 0, 0)",transformOrigin:"0 0",opacity:1},"100%":{transform:`translate3d(${(0,q.zA)(n)}, 0, 0)`,transformOrigin:"0 0",opacity:0}}),m=`${t}-group`;return[{[m]:{[`&${m}-top ${m}-wrap`]:(0,nx.b)(`${m}-wrap`,i,l,r,!0),[`&${m}-bottom ${m}-wrap`]:(0,nx.b)(`${m}-wrap`,u,d,r,!0),[`&${m}-left ${m}-wrap`]:(0,nx.b)(`${m}-wrap`,f,p,r,!0),[`&${m}-right ${m}-wrap`]:(0,nx.b)(`${m}-wrap`,c,s,r,!0)}},{[`${m}-wrap`]:{[`&${m}-wrap-enter, &${m}-wrap-appear`]:{opacity:0,animationTimingFunction:o},[`&${m}-wrap-leave`]:{opacity:1,animationTimingFunction:o}}}]})(d)]},e=>({dotOffsetInCircle:hz(e.controlHeightLG/2),dotOffsetInSquare:hz(e.borderRadiusLG)}));var hP=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hT="float-btn",hD=m().forwardRef((e,t)=>{let{prefixCls:n,className:r,rootClassName:o,style:a,type:i="default",shape:l="circle",icon:c,description:s,tooltip:u,htmlType:d="button",badge:f={}}=e,g=hP(e,["prefixCls","className","rootClassName","style","type","shape","icon","description","tooltip","htmlType","badge"]),{getPrefixCls:v,direction:y}=(0,p.useContext)(A.QO),x=(0,p.useContext)(hO),$=v(hT,n),w=(0,eh.A)($),[C,S,k]=hR($,w),E=h()(S,k,w,$,r,o,`${$}-${i}`,`${$}-${x||l}`,{[`${$}-rtl`]:"rtl"===y}),[O]=(0,eY.YK)("FloatButton",null==a?void 0:a.zIndex),M=Object.assign(Object.assign({},a),{zIndex:O}),N=(0,b.A)(f,["title","children","status","text"]),I=(0,p.useMemo)(()=>({prefixCls:$,description:s,icon:c,type:i}),[$,s,c,i]),j=m().createElement("div",{className:`${$}-body`},m().createElement(hj,Object.assign({},I)));return"badge"in e&&(j=m().createElement(ir,Object.assign({},N),j)),"tooltip"in e&&(j=m().createElement(aM.A,{title:u,placement:"rtl"===y?"right":"left"},j)),C(e.href?m().createElement("a",Object.assign({ref:t},g,{className:E,style:M}),j):m().createElement("button",Object.assign({ref:t},g,{className:E,style:M,type:d}),j))});var hL=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hB=m().forwardRef((e,t)=>{let{prefixCls:n,className:r,type:o="default",shape:a="circle",visibilityHeight:i=400,icon:l=m().createElement(aV,null),target:c,onClick:s,duration:u=450}=e,d=hL(e,["prefixCls","className","type","shape","visibilityHeight","icon","target","onClick","duration"]),[f,g]=(0,p.useState)(0===i),v=m().useRef(null);m().useImperativeHandle(t,()=>({nativeElement:v.current}));let b=()=>{var e;return(null==(e=v.current)?void 0:e.ownerDocument)||window},y=$(e=>{g(em(e.target)>=i)});(0,p.useEffect)(()=>{let e=(c||b)();return y({target:e}),null==e||e.addEventListener("scroll",y),()=>{y.cancel(),null==e||e.removeEventListener("scroll",y)}},[c]);let x=e=>{eg(0,{getContainer:c||b,duration:u}),null==s||s(e)},{getPrefixCls:w}=(0,p.useContext)(A.QO),C=w(hT,n),S=w(),k=Object.assign({prefixCls:C,icon:l,type:o,shape:(0,p.useContext)(hO)||a},d);return m().createElement(F.Ay,{visible:f,motionName:`${S}-fade`},(e,t)=>{let{className:n}=e;return m().createElement(hD,Object.assign({ref:(0,_.K4)(v,t)},k,{onClick:x,className:h()(r,n)}))})});var hF=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hH=e=>{var t;let{prefixCls:n,className:r,style:o,shape:a="circle",type:i="default",placement:l="top",icon:c=m().createElement(hI,null),closeIcon:s,description:u,trigger:d,children:f,onOpenChange:p,open:g,onClick:v}=e,b=hF(e,["prefixCls","className","style","shape","type","placement","icon","closeIcon","description","trigger","children","onOpenChange","open","onClick"]),{direction:y,getPrefixCls:x,floatButtonGroup:$}=m().useContext(A.QO),w=null!=(t=null!=s?s:null==$?void 0:$.closeIcon)?t:m().createElement(z.A,null),C=x(hT,n),S=(0,eh.A)(C),[k,E,O]=hR(C,S),M=`${C}-group`,N=d&&["click","hover"].includes(d),I=l&&["top","left","right","bottom"].includes(l),j=h()(M,E,O,S,r,{[`${M}-rtl`]:"rtl"===y,[`${M}-${a}`]:a,[`${M}-${a}-shadow`]:!N,[`${M}-${l}`]:N&&I}),[R]=(0,eY.YK)("FloatButton",null==o?void 0:o.zIndex),P=Object.assign(Object.assign({},o),{zIndex:R}),T=h()(E,`${M}-wrap`),[D,L]=(0,rs.A)(!1,{value:g}),B=m().useRef(null),H="hover"===d,_="click"===d,W=(0,ea.A)(e=>{D!==e&&(L(e),null==p||p(e))});return m().useEffect(()=>{if(_){let e=e=>{var t;null!=(t=B.current)&&t.contains(e.target)||W(!1)};return document.addEventListener("click",e,{capture:!0}),()=>document.removeEventListener("click",e,{capture:!0})}},[_]),k(m().createElement(hM,{value:a},m().createElement("div",{ref:B,className:j,style:P,onMouseEnter:()=>{H&&W(!0)},onMouseLeave:()=>{H&&W(!1)}},N?m().createElement(m().Fragment,null,m().createElement(F.Ay,{visible:D,motionName:`${M}-wrap`},e=>{let{className:t}=e;return m().createElement("div",{className:h()(t,T)},f)}),m().createElement(hD,Object.assign({type:i,icon:D?w:c,description:u,"aria-label":e["aria-label"],className:`${M}-trigger`,onClick:e=>{_&&W(!D),null==v||v(e)}},b))):f)))};var h_=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let hW=e=>{var{backTop:t}=e,n=h_(e,["backTop"]);return t?p.createElement(hB,Object.assign({},n,{visibilityHeight:0})):p.createElement(hD,Object.assign({},n))};hD.BackTop=hB,hD.Group=hH,hD._InternalPanelDoNotUseOrYouWillBeFired=e=>{var{className:t,items:n}=e,r=h_(e,["className","items"]);let{prefixCls:o}=r,{getPrefixCls:a}=p.useContext(A.QO),i=a(hT,o),l=`${i}-pure`;return n?p.createElement(hH,Object.assign({className:h()(t,l)},r),n.map((e,t)=>p.createElement(hW,Object.assign({key:t},e)))):p.createElement(hW,Object.assign({className:h()(t,l)},r))};let hq=hD;function hV(e){let[t,n]=p.useState(e);return p.useEffect(()=>{let t=setTimeout(()=>{n(e)},10*!e.length);return()=>{clearTimeout(t)}},[e]),t}let hK=(e,t)=>{let{formItemCls:n}=e;return{[n]:{[`${n}-label > label`]:{height:t},[`${n}-control-input`]:{minHeight:t}}}},hX=(e,t)=>{let{formItemCls:n}=e;return{[`${t}-horizontal`]:{[`${n}-label`]:{flexGrow:0},[`${n}-control`]:{flex:"1 1 0",minWidth:0},[`${n}-label[class$='-24'], ${n}-label[class*='-24 ']`]:{[`& + ${n}-control`]:{minWidth:"unset"}}}}},hY=e=>({padding:e.verticalLabelPadding,margin:e.verticalLabelMargin,whiteSpace:"initial",textAlign:"start","> label":{margin:0,"&::after":{visibility:"hidden"}}}),hU=e=>{let{componentCls:t,formItemCls:n,rootPrefixCls:r}=e;return{[`${n} ${n}-label`]:hY(e),[`${t}:not(${t}-inline)`]:{[n]:{flexWrap:"wrap",[`${n}-label, ${n}-control`]:{[`&:not([class*=" ${r}-col-xs"])`]:{flex:"0 0 100%",maxWidth:"100%"}}}}}},hG=(e,t)=>(0,ey.oX)(e,{formItemCls:`${e.componentCls}-item`,rootPrefixCls:t}),hQ=(0,w.OF)("Form",(e,t)=>{let{rootPrefixCls:n}=t,r=hG(e,n);return[(e=>{let{componentCls:t}=e;return{[e.componentCls]:Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{legend:{display:"block",width:"100%",marginBottom:e.marginLG,padding:0,color:e.colorTextDescription,fontSize:e.fontSizeLG,lineHeight:"inherit",border:0,borderBottom:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},'input[type="search"]':{boxSizing:"border-box"},'input[type="radio"], input[type="checkbox"]':{lineHeight:"normal"},'input[type="file"]':{display:"block"},'input[type="range"]':{display:"block",width:"100%"},"select[multiple], select[size]":{height:"auto"},[`input[type='file']:focus, - input[type='radio']:focus, - input[type='checkbox']:focus`]:{outline:0,boxShadow:`0 0 0 ${(0,q.zA)(e.controlOutlineWidth)} ${e.controlOutline}`},output:{display:"block",paddingTop:15,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight}}),{[`${t}-text`]:{display:"inline-block",paddingInlineEnd:e.paddingSM},"&-small":Object.assign({},hK(e,e.controlHeightSM)),"&-large":Object.assign({},hK(e,e.controlHeightLG))})}})(r),(e=>{let{formItemCls:t,iconCls:n,componentCls:r,rootPrefixCls:o,antCls:a,labelRequiredMarkColor:i,labelColor:l,labelFontSize:c,labelHeight:s,labelColonMarginInlineStart:u,labelColonMarginInlineEnd:d,itemMarginBottom:f}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{marginBottom:f,verticalAlign:"top","&-with-help":{transition:"none"},[`&-hidden, - &-hidden${a}-row`]:{display:"none"},"&-has-warning":{[`${t}-split`]:{color:e.colorError}},"&-has-error":{[`${t}-split`]:{color:e.colorWarning}},[`${t}-label`]:{flexGrow:0,overflow:"hidden",whiteSpace:"nowrap",textAlign:"end",verticalAlign:"middle","&-left":{textAlign:"start"},"&-wrap":{overflow:"unset",lineHeight:e.lineHeight,whiteSpace:"unset"},"> label":{position:"relative",display:"inline-flex",alignItems:"center",maxWidth:"100%",height:s,color:l,fontSize:c,[`> ${n}`]:{fontSize:e.fontSize,verticalAlign:"top"},[`&${t}-required:not(${t}-required-mark-optional)::before`]:{display:"inline-block",marginInlineEnd:e.marginXXS,color:i,fontSize:e.fontSize,fontFamily:"SimSun, sans-serif",lineHeight:1,content:'"*"',[`${r}-hide-required-mark &`]:{display:"none"}},[`${t}-optional`]:{display:"inline-block",marginInlineStart:e.marginXXS,color:e.colorTextDescription,[`${r}-hide-required-mark &`]:{display:"none"}},[`${t}-tooltip`]:{color:e.colorTextDescription,cursor:"help",writingMode:"horizontal-tb",marginInlineStart:e.marginXXS},"&::after":{content:'":"',position:"relative",marginBlock:0,marginInlineStart:u,marginInlineEnd:d},[`&${t}-no-colon::after`]:{content:'"\\a0"'}}},[`${t}-control`]:{"--ant-display":"flex",flexDirection:"column",flexGrow:1,[`&:first-child:not([class^="'${o}-col-'"]):not([class*="' ${o}-col-'"])`]:{width:"100%"},"&-input":{position:"relative",display:"flex",alignItems:"center",minHeight:e.controlHeight,"&-content":{flex:"auto",maxWidth:"100%"}}},[t]:{"&-additional":{display:"flex",flexDirection:"column"},"&-explain, &-extra":{clear:"both",color:e.colorTextDescription,fontSize:e.fontSize,lineHeight:e.lineHeight},"&-explain-connected":{width:"100%"},"&-extra":{minHeight:e.controlHeightSM,transition:`color ${e.motionDurationMid} ${e.motionEaseOut}`},"&-explain":{"&-error":{color:e.colorError},"&-warning":{color:e.colorWarning}}},[`&-with-help ${t}-explain`]:{height:"auto",opacity:1},[`${t}-feedback-icon`]:{fontSize:e.fontSize,textAlign:"center",visibility:"visible",animationName:nC.nF,animationDuration:e.motionDurationMid,animationTimingFunction:e.motionEaseOutBack,pointerEvents:"none","&-success":{color:e.colorSuccess},"&-error":{color:e.colorError},"&-warning":{color:e.colorWarning},"&-validating":{color:e.colorPrimary}}})}})(r),(e=>{let{componentCls:t}=e,n=`${t}-show-help`,r=`${t}-show-help-item`;return{[n]:{transition:`opacity ${e.motionDurationFast} ${e.motionEaseInOut}`,"&-appear, &-enter":{opacity:0,"&-active":{opacity:1}},"&-leave":{opacity:1,"&-active":{opacity:0}},[r]:{overflow:"hidden",transition:`height ${e.motionDurationFast} ${e.motionEaseInOut}, - opacity ${e.motionDurationFast} ${e.motionEaseInOut}, - transform ${e.motionDurationFast} ${e.motionEaseInOut} !important`,[`&${r}-appear, &${r}-enter`]:{transform:"translateY(-5px)",opacity:0,"&-active":{transform:"translateY(0)",opacity:1}},[`&${r}-leave-active`]:{transform:"translateY(-5px)"}}}}})(r),hX(r,r.componentCls),hX(r,r.formItemCls),(e=>{let{componentCls:t,formItemCls:n,inlineItemMarginBottom:r}=e;return{[`${t}-inline`]:{display:"flex",flexWrap:"wrap",[n]:{flex:"none",marginInlineEnd:e.margin,marginBottom:r,"&-row":{flexWrap:"nowrap"},[`> ${n}-label, - > ${n}-control`]:{display:"inline-block",verticalAlign:"top"},[`> ${n}-label`]:{flex:"none"},[`${t}-text`]:{display:"inline-block"},[`${n}-has-feedback`]:{display:"inline-block"}}}}})(r),(e=>{let{componentCls:t,formItemCls:n,antCls:r}=e;return{[`${t}-vertical`]:{[`${n}:not(${n}-horizontal)`]:{[`${n}-row`]:{flexDirection:"column"},[`${n}-label > label`]:{height:"auto"},[`${n}-control`]:{width:"100%"},[`${n}-label, - ${r}-col-24${n}-label, - ${r}-col-xl-24${n}-label`]:hY(e)}},[`@media (max-width: ${(0,q.zA)(e.screenXSMax)})`]:[hU(e),{[t]:{[`${n}:not(${n}-horizontal)`]:{[`${r}-col-xs-24${n}-label`]:hY(e)}}}],[`@media (max-width: ${(0,q.zA)(e.screenSMMax)})`]:{[t]:{[`${n}:not(${n}-horizontal)`]:{[`${r}-col-sm-24${n}-label`]:hY(e)}}},[`@media (max-width: ${(0,q.zA)(e.screenMDMax)})`]:{[t]:{[`${n}:not(${n}-horizontal)`]:{[`${r}-col-md-24${n}-label`]:hY(e)}}},[`@media (max-width: ${(0,q.zA)(e.screenLGMax)})`]:{[t]:{[`${n}:not(${n}-horizontal)`]:{[`${r}-col-lg-24${n}-label`]:hY(e)}}}}})(r),(e=>{let{formItemCls:t,antCls:n}=e;return{[`${t}-vertical`]:{[`${t}-row`]:{flexDirection:"column"},[`${t}-label > label`]:{height:"auto"},[`${t}-control`]:{width:"100%"}},[`${t}-vertical ${t}-label, - ${n}-col-24${t}-label, - ${n}-col-xl-24${t}-label`]:hY(e),[`@media (max-width: ${(0,q.zA)(e.screenXSMax)})`]:[hU(e),{[t]:{[`${n}-col-xs-24${t}-label`]:hY(e)}}],[`@media (max-width: ${(0,q.zA)(e.screenSMMax)})`]:{[t]:{[`${n}-col-sm-24${t}-label`]:hY(e)}},[`@media (max-width: ${(0,q.zA)(e.screenMDMax)})`]:{[t]:{[`${n}-col-md-24${t}-label`]:hY(e)}},[`@media (max-width: ${(0,q.zA)(e.screenLGMax)})`]:{[t]:{[`${n}-col-lg-24${t}-label`]:hY(e)}}}})(r),(0,lH.A)(r),nC.nF]},e=>({labelRequiredMarkColor:e.colorError,labelColor:e.colorTextHeading,labelFontSize:e.fontSize,labelHeight:e.controlHeight,labelColonMarginInlineStart:e.marginXXS/2,labelColonMarginInlineEnd:e.marginXS,itemMarginBottom:e.marginLG,verticalLabelPadding:`0 0 ${e.paddingXS}px`,verticalLabelMargin:0,inlineItemMarginBottom:0}),{order:-1e3}),hZ=[];function hJ(e,t,n){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;return{key:"string"==typeof e?e:`${t}-${r}`,error:e,errorStatus:n}}let h0=e=>{let{help:t,helpStatus:n,errors:r=hZ,warnings:o=hZ,className:a,fieldId:i,onVisibleChanged:l}=e,{prefixCls:c}=p.useContext(oD.hb),s=`${c}-item-explain`,u=(0,eh.A)(c),[d,f,m]=hQ(c,u),g=p.useMemo(()=>(0,tN.A)(c),[c]),v=hV(r),b=hV(o),x=p.useMemo(()=>null!=t?[hJ(t,"help",n)]:[].concat((0,y.A)(v.map((e,t)=>hJ(e,"error","error",t))),(0,y.A)(b.map((e,t)=>hJ(e,"warning","warning",t)))),[t,n,v,b]),$=p.useMemo(()=>{let e={};return x.forEach(t=>{let{key:n}=t;e[n]=(e[n]||0)+1}),x.map((t,n)=>Object.assign(Object.assign({},t),{key:e[t.key]>1?`${t.key}-fallback-${n}`:t.key}))},[x]),A={};return i&&(A.id=`${i}_help`),d(p.createElement(F.Ay,{motionDeadline:g.motionDeadline,motionName:`${c}-show-help`,visible:!!$.length,onVisibleChanged:l},e=>{let{className:t,style:n}=e;return p.createElement("div",Object.assign({},A,{className:h()(s,t,m,u,a,f),style:n,role:"alert"}),p.createElement(F.aF,Object.assign({keys:$},(0,tN.A)(c),{motionName:`${c}-show-help-item`,component:!1}),e=>{let{key:t,error:n,errorStatus:r,className:o,style:a}=e;return p.createElement("div",{key:t,className:h()(o,{[`${s}-${r}`]:r}),style:a},n)}))}))};var h1=n(75151),h2=n(66588);let h4=["parentNode"];function h3(e){return void 0===e||!1===e?[]:Array.isArray(e)?e:[e]}function h6(e,t){if(!e.length)return;let n=e.join("_");return t?`${t}_${n}`:h4.includes(n)?`form_item_${n}`:n}function h8(e,t,n,r,o,a){let i=r;return void 0!==a?i=a:n.validating?i="validating":e.length?i="error":t.length?i="warning":(n.touched||o&&n.validated)&&(i="success"),i}function h5(e){return h3(e).join("_")}function h7(e,t){let n=t.getFieldInstance(e),r=(0,h2.rb)(n);if(r)return r;let o=h6(h3(e),t.__INTERNAL__.name);if(o)return document.getElementById(o)}function h9(e){let[t]=(0,h1.mN)(),n=p.useRef({}),r=p.useMemo(()=>null!=e?e:Object.assign(Object.assign({},t),{__INTERNAL__:{itemRef:e=>t=>{let r=h5(e);t?n.current[r]=t:delete n.current[r]}},scrollToField:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=h7(e,r);n&&ef(n,Object.assign({scrollMode:"if-needed",block:"nearest"},t))},focusField:e=>{var t;let n=h7(e,r);n&&(null==(t=n.focus)||t.call(n))},getFieldInstance:e=>{let t=h5(e);return n.current[t]}}),[e,t]);return[r]}var ve=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let vt=p.forwardRef((e,t)=>{let n=p.useContext(tp.A),{getPrefixCls:r,direction:o,form:a}=p.useContext(A.QO),{prefixCls:i,className:l,rootClassName:c,size:s,disabled:u=n,form:d,colon:f,labelAlign:m,labelWrap:g,labelCol:v,wrapperCol:b,hideRequiredMark:y,layout:x="horizontal",scrollToFirstError:$,requiredMark:w,onFinishFailed:C,name:S,style:k,feedbackIcons:E,variant:O}=e,M=ve(e,["prefixCls","className","rootClassName","size","disabled","form","colon","labelAlign","labelWrap","labelCol","wrapperCol","hideRequiredMark","layout","scrollToFirstError","requiredMark","onFinishFailed","name","style","feedbackIcons","variant"]),N=(0,oT.A)(s),I=p.useContext(e9),j=p.useMemo(()=>void 0!==w?w:!y&&(!a||void 0===a.requiredMark||a.requiredMark),[y,w,a]),z=null!=f?f:null==a?void 0:a.colon,R=r("form",i),P=(0,eh.A)(R),[T,D,L]=hQ(R,P),B=h()(R,`${R}-${x}`,{[`${R}-hide-required-mark`]:!1===j,[`${R}-rtl`]:"rtl"===o,[`${R}-${N}`]:N},L,P,D,null==a?void 0:a.className,l,c),[F]=h9(d),{__INTERNAL__:H}=F;H.name=S;let _=p.useMemo(()=>({name:S,labelAlign:m,labelCol:v,labelWrap:g,wrapperCol:b,vertical:"vertical"===x,colon:z,requiredMark:j,itemRef:H.itemRef,form:F,feedbackIcons:E}),[S,m,v,b,x,z,j,F,E]),W=p.useRef(null);p.useImperativeHandle(t,()=>{var e;return Object.assign(Object.assign({},F),{nativeElement:null==(e=W.current)?void 0:e.nativeElement})});let q=(e,t)=>{if(e){let n={block:"nearest"};"object"==typeof e&&(n=Object.assign(Object.assign({},n),e)),F.scrollToField(t,n),n.focus&&F.focusField(t)}};return T(p.createElement(oD.Pp.Provider,{value:O},p.createElement(tp.X,{disabled:u},p.createElement(tm.A.Provider,{value:N},p.createElement(oD.Op,{validateMessages:I},p.createElement(oD.cK.Provider,{value:_},p.createElement(h1.Ay,Object.assign({id:S},M,{name:S,onFinishFailed:e=>{if(null==C||C(e),e.errorFields.length){let t=e.errorFields[0].name;if(void 0!==$)return void q($,t);a&&void 0!==a.scrollToFirstError&&q(a.scrollToFirstError,t)}},form:F,ref:W,style:Object.assign(Object.assign({},null==a?void 0:a.style),k),className:B}))))))))}),vn=()=>{let{status:e,errors:t=[],warnings:n=[]}=p.useContext(oD.$W);return{status:e,errors:t,warnings:n}};vn.Context=oD.$W;var vr=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function vo(e,t){let[n,r]=p.useState("string"==typeof e?e:"");return p.useEffect(()=>{(()=>{if("string"==typeof e&&r(e),"object"==typeof e)for(let n=0;n{let n,{prefixCls:r,justify:o,align:a,className:i,style:l,children:c,gutter:s=0,wrap:u}=e,d=vr(e,["prefixCls","justify","align","className","style","children","gutter","wrap"]),{getPrefixCls:f,direction:m}=p.useContext(A.QO),[g,v]=p.useState({xs:!0,sm:!0,md:!0,lg:!0,xl:!0,xxl:!0}),[b,y]=p.useState({xs:!1,sm:!1,md:!1,lg:!1,xl:!1,xxl:!1}),x=vo(a,b),$=vo(o,b),w=p.useRef(s),C=ax();p.useEffect(()=>{let e=C.subscribe(e=>{y(e);let t=w.current||0;(!Array.isArray(t)&&"object"==typeof t||Array.isArray(t)&&("object"==typeof t[0]||"object"==typeof t[1]))&&v(e)});return()=>C.unsubscribe(e)},[]);let S=f("row",r),[k,E,O]=pl(S),M=(n=[void 0,void 0],(Array.isArray(s)?s:[s,void 0]).forEach((e,t)=>{if("object"==typeof e)for(let r=0;r0?-(M[0]/2):void 0;j&&(I.marginLeft=j,I.marginRight=j);let[z,R]=M;I.rowGap=R;let P=p.useMemo(()=>({gutter:[z,R],wrap:u}),[z,R,u]);return k(p.createElement(pa.Provider,{value:P},p.createElement("div",Object.assign({},d,{className:N,style:Object.assign(Object.assign({},I),l),ref:t}),c)))}),vi=(0,w.bf)(["Form","item-item"],(e,t)=>{let{rootPrefixCls:n}=t;return[(e=>{let{formItemCls:t}=e;return{"@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)":{[`${t}-control`]:{display:"flex"}}}})(hG(e,n))]});var vl=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let vc=e=>{let{prefixCls:t,status:n,labelCol:r,wrapperCol:o,children:a,errors:i,warnings:l,_internalItemRender:c,extra:s,help:u,fieldId:d,marginBottom:f,onErrorVisibleChanged:m,label:g}=e,v=`${t}-item`,b=p.useContext(oD.cK),y=p.useMemo(()=>{let e=Object.assign({},o||b.wrapperCol||{});return null!==g||r||o||!b.labelCol||[void 0,"xs","sm","md","lg","xl","xxl"].forEach(t=>{let n=t?[t]:[],r=(0,e_.Jt)(b.labelCol,n),o="object"==typeof r?r:{},a=(0,e_.Jt)(e,n);"span"in o&&!("offset"in("object"==typeof a?a:{}))&&o.span<24&&(e=(0,e_.hZ)(e,[].concat(n,["offset"]),o.span))}),e},[o,b]),x=h()(`${v}-control`,y.className),$=p.useMemo(()=>{let{labelCol:e,wrapperCol:t}=b;return vl(b,["labelCol","wrapperCol"])},[b]),A=p.useRef(null),[w,C]=p.useState(0);(0,rf.A)(()=>{s&&A.current?C(A.current.clientHeight):C(0)},[s]);let S=p.createElement("div",{className:`${v}-control-input`},p.createElement("div",{className:`${v}-control-input-content`},a)),k=p.useMemo(()=>({prefixCls:t,status:n}),[t,n]),E=null!==f||i.length||l.length?p.createElement(oD.hb.Provider,{value:k},p.createElement(h0,{fieldId:d,errors:i,warnings:l,help:u,helpStatus:n,className:`${v}-explain-connected`,onVisibleChanged:m})):null,O={};d&&(O.id=`${d}_extra`);let M=s?p.createElement("div",Object.assign({},O,{className:`${v}-extra`,ref:A}),s):null,N=E||M?p.createElement("div",{className:`${v}-additional`,style:f?{minHeight:f+w}:{}},E,M):null,I=c&&"pro_table_render"===c.mark&&c.render?c.render(e,{input:S,errorList:E,extra:M}):p.createElement(p.Fragment,null,S,N);return p.createElement(oD.cK.Provider,{value:$},p.createElement(pf,Object.assign({},y,{className:x}),I),p.createElement(vi,{prefixCls:t}))};var vs=n(61646),vu=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let vd=e=>{var t;let{prefixCls:n,label:r,htmlFor:o,labelCol:a,labelAlign:i,colon:l,required:c,requiredMark:s,tooltip:u,vertical:d}=e,[f]=(0,tI.A)("Form"),{labelAlign:m,labelCol:g,labelWrap:v,colon:b}=p.useContext(oD.cK);if(!r)return null;let y=a||g||{},x=`${n}-item-label`,$=h()(x,"left"===(i||m)&&`${x}-left`,y.className,{[`${x}-wrap`]:!!v}),A=r,w=!0===l||!1!==b&&!1!==l;w&&!d&&"string"==typeof r&&r.trim()&&(A=r.replace(/[:|:]\s*$/,""));let C=u?"object"!=typeof u||p.isValidElement(u)?{title:u}:u:null;if(C){let{icon:e=p.createElement(vs.A,null)}=C,t=vu(C,["icon"]),r=p.createElement(aM.A,Object.assign({},t),p.cloneElement(e,{className:`${n}-item-tooltip`,title:"",onClick:e=>{e.preventDefault()},tabIndex:null}));A=p.createElement(p.Fragment,null,A,r)}let S="optional"===s,k="function"==typeof s;k?A=s(A,{required:!!c}):S&&!c&&(A=p.createElement(p.Fragment,null,A,p.createElement("span",{className:`${n}-item-optional`,title:""},(null==f?void 0:f.optional)||(null==(t=te.A.Form)?void 0:t.optional))));let E=h()({[`${n}-item-required`]:c,[`${n}-item-required-mark-optional`]:S||k,[`${n}-item-no-colon`]:!w});return p.createElement(pf,Object.assign({},y,{className:$}),p.createElement("label",{htmlFor:o,className:E,title:"string"==typeof r?r:""},A))},vf={success:I.A,warning:D,error:j.A,validating:eX.A};function vp(e){let{children:t,errors:n,warnings:r,hasFeedback:o,validateStatus:a,prefixCls:i,meta:l,noStyle:c}=e,s=`${i}-item`,{feedbackIcons:u}=p.useContext(oD.cK),d=h8(n,r,l,null,!!o,a),{isFormItemInput:f,status:m,hasFeedback:g,feedbackIcon:v}=p.useContext(oD.$W),b=p.useMemo(()=>{var e;let t;if(o){let a=!0!==o&&o.icons||u,i=d&&(null==(e=null==a?void 0:a({status:d,errors:n,warnings:r}))?void 0:e[d]),l=d&&vf[d];t=!1!==i&&l?p.createElement("span",{className:h()(`${s}-feedback-icon`,`${s}-feedback-icon-${d}`)},i||p.createElement(l,null)):null}let a={status:d||"",errors:n,warnings:r,hasFeedback:!!o,feedbackIcon:t,isFormItemInput:!0};return c&&(a.status=(null!=d?d:m)||"",a.isFormItemInput=f,a.hasFeedback=!!(null!=o?o:g),a.feedbackIcon=void 0!==o?a.feedbackIcon:v),a},[d,o,c,f,m]);return p.createElement(oD.$W.Provider,{value:b},t)}var vm=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function vg(e){let{prefixCls:t,className:n,rootClassName:r,style:o,help:a,errors:i,warnings:l,validateStatus:c,meta:s,hasFeedback:u,hidden:d,children:f,fieldId:m,required:g,isRequired:v,onSubItemMetaChange:y,layout:x}=e,$=vm(e,["prefixCls","className","rootClassName","style","help","errors","warnings","validateStatus","meta","hasFeedback","hidden","children","fieldId","required","isRequired","onSubItemMetaChange","layout"]),A=`${t}-item`,{requiredMark:w,vertical:C}=p.useContext(oD.cK),S=C||"vertical"===x,k=p.useRef(null),E=hV(i),O=hV(l),M=null!=a,N=!!(M||i.length||l.length),I=!!k.current&&(0,iE.A)(k.current),[j,z]=p.useState(null);(0,rf.A)(()=>{N&&k.current&&z(parseInt(getComputedStyle(k.current).marginBottom,10))},[N,I]);let R=function(){let e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return h8(e?E:s.errors,e?O:s.warnings,s,"",!!u,c)}(),P=h()(A,n,r,{[`${A}-with-help`]:M||E.length||O.length,[`${A}-has-feedback`]:R&&u,[`${A}-has-success`]:"success"===R,[`${A}-has-warning`]:"warning"===R,[`${A}-has-error`]:"error"===R,[`${A}-is-validating`]:"validating"===R,[`${A}-hidden`]:d,[`${A}-${x}`]:x});return p.createElement("div",{className:P,style:o,ref:k},p.createElement(va,Object.assign({className:`${A}-row`},(0,b.A)($,["_internalItemRender","colon","dependencies","extra","fieldKey","getValueFromEvent","getValueProps","htmlFor","id","initialValue","isListField","label","labelAlign","labelCol","labelWrap","messageVariables","name","normalize","noStyle","preserve","requiredMark","rules","shouldUpdate","trigger","tooltip","validateFirst","validateTrigger","valuePropName","wrapperCol","validateDebounce"])),p.createElement(vd,Object.assign({htmlFor:m},e,{requiredMark:w,required:null!=g?g:v,prefixCls:t,vertical:S})),p.createElement(vc,Object.assign({},e,s,{errors:E,warnings:O,prefixCls:t,status:R,help:a,marginBottom:j,onErrorVisibleChanged:e=>{e||z(null)}}),p.createElement(oD.jC.Provider,{value:y},p.createElement(vp,{prefixCls:t,meta:s,errors:s.errors,warnings:s.warnings,hasFeedback:u,validateStatus:R},f)))),!!j&&p.createElement("div",{className:`${A}-margin-offset`,style:{marginBottom:-j}}))}let vh=p.memo(e=>{let{children:t}=e;return t},(e,t)=>{var n,r;let o,a;return n=e.control,r=t.control,o=Object.keys(n),a=Object.keys(r),o.length===a.length&&o.every(e=>{let t=n[e],o=r[e];return t===o||"function"==typeof t||"function"==typeof o})&&e.update===t.update&&e.childProps.length===t.childProps.length&&e.childProps.every((e,n)=>e===t.childProps[n])});function vv(){return{errors:[],warnings:[],touched:!1,validating:!1,name:[],validated:!1}}let vb=function(e){let{name:t,noStyle:n,className:r,dependencies:o,prefixCls:a,shouldUpdate:i,rules:l,children:c,required:s,label:u,messageVariables:d,trigger:f="onChange",validateTrigger:m,hidden:g,help:v,layout:b}=e,{getPrefixCls:$}=p.useContext(A.QO),{name:w}=p.useContext(oD.cK),C=function(e){if("function"==typeof e)return e;let t=(0,rc.A)(e);return t.length<=1?t[0]:t}(c),S="function"==typeof C,k=p.useContext(oD.jC),{validateTrigger:E}=p.useContext(h1._z),O=void 0!==m?m:E,M=null!=t,N=$("form",a),I=(0,eh.A)(N),[j,z,R]=hQ(N,I);(0,ek.rJ)("Form.Item");let P=p.useContext(h1.EF),T=p.useRef(null),[D,L]=function(e){let[t,n]=p.useState(e),r=p.useRef(null),o=p.useRef([]),a=p.useRef(!1);return p.useEffect(()=>(a.current=!1,()=>{a.current=!0,x.A.cancel(r.current),r.current=null}),[]),[t,function(e){a.current||(null===r.current&&(o.current=[],r.current=(0,x.A)(()=>{r.current=null,n(e=>{let t=e;return o.current.forEach(e=>{t=e(t)}),t})})),o.current.push(e))}]}({}),[B,F]=(0,tj.A)(()=>vv()),H=(e,t)=>{L(n=>{let r=Object.assign({},n),o=[].concat((0,y.A)(e.name.slice(0,-1)),(0,y.A)(t)).join("__SPLIT__");return e.destroy?delete r[o]:r[o]=e,r})},[q,V]=p.useMemo(()=>{let e=(0,y.A)(B.errors),t=(0,y.A)(B.warnings);return Object.values(D).forEach(n=>{e.push.apply(e,(0,y.A)(n.errors||[])),t.push.apply(t,(0,y.A)(n.warnings||[]))}),[e,t]},[D,B.errors,B.warnings]),K=function(){let{itemRef:e}=p.useContext(oD.cK),t=p.useRef({});return function(n,r){let o=r&&"object"==typeof r&&(0,_.A9)(r),a=n.join("_");return(t.current.name!==a||t.current.originRef!==o)&&(t.current.name=a,t.current.originRef=o,t.current.ref=(0,_.K4)(e(n),o)),t.current.ref}}();function X(t,o,a){return n&&!g?p.createElement(vp,{prefixCls:N,hasFeedback:e.hasFeedback,validateStatus:e.validateStatus,meta:B,errors:q,warnings:V,noStyle:!0},t):p.createElement(vg,Object.assign({key:"row"},e,{className:h()(r,R,I,z),prefixCls:N,fieldId:o,isRequired:a,errors:q,warnings:V,meta:B,onSubItemMetaChange:H,layout:b}),t)}if(!M&&!S&&!o)return j(X(C));let Y={};return"string"==typeof u?Y.label=u:t&&(Y.label=String(t)),d&&(Y=Object.assign(Object.assign({},Y),d)),j(p.createElement(h1.D0,Object.assign({},e,{messageVariables:Y,trigger:f,validateTrigger:O,onMetaChange:e=>{let t=null==P?void 0:P.getKey(e.name);if(F(e.destroy?vv():e,!0),n&&!1!==v&&k){let n=e.name;if(e.destroy)n=T.current||n;else if(void 0!==t){let[e,r]=t;T.current=n=[e].concat((0,y.A)(r))}k(e,n)}}}),(n,r,a)=>{let c=h3(t).length&&r?r.name:[],u=h6(c,w),d=void 0!==s?s:!!(null==l?void 0:l.some(e=>{if(e&&"object"==typeof e&&e.required&&!e.warningOnly)return!0;if("function"==typeof e){let t=e(a);return(null==t?void 0:t.required)&&!(null==t?void 0:t.warningOnly)}return!1})),m=Object.assign({},n),g=null;if(Array.isArray(C)&&M)g=C;else if(S&&(!(i||o)||M));else if(!o||S||M)if(p.isValidElement(C)){let t=Object.assign(Object.assign({},C.props),m);if(t.id||(t.id=u),v||q.length>0||V.length>0||e.extra){let n=[];(v||q.length>0)&&n.push(`${u}_help`),e.extra&&n.push(`${u}_extra`),t["aria-describedby"]=n.join(" ")}q.length>0&&(t["aria-invalid"]="true"),d&&(t["aria-required"]="true"),(0,_.f3)(C)&&(t.ref=K(c,C)),new Set([].concat((0,y.A)(h3(f)),(0,y.A)(h3(O)))).forEach(e=>{t[e]=function(){for(var t,n,r,o=arguments.length,a=Array(o),i=0;it.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};vt.Item=vb,vt.List=e=>{var{prefixCls:t,children:n}=e,r=vy(e,["prefixCls","children"]);let{getPrefixCls:o}=p.useContext(A.QO),a=o("form",t),i=p.useMemo(()=>({prefixCls:a,status:"error"}),[a]);return p.createElement(h1.B8,Object.assign({},r),(e,t,r)=>p.createElement(oD.hb.Provider,{value:i},n(e.map(e=>Object.assign(Object.assign({},e),{fieldKey:e.key})),t,{errors:r.errors,warnings:r.warnings})))},vt.ErrorList=h0,vt.useForm=h9,vt.useFormInstance=function(){let{form:e}=p.useContext(oD.cK);return e},vt.useWatch=h1.FH,vt.Provider=oD.Op,vt.create=()=>{};let vx=vt,v$={useBreakpoint:function(){return aw()}};function vA(){return{width:document.documentElement.clientWidth,height:window.innerHeight||document.documentElement.clientHeight}}function vw(e){var t=e.getBoundingClientRect(),n=document.documentElement;return{left:t.left+(window.pageXOffset||n.scrollLeft)-(n.clientLeft||document.body.clientLeft||0),top:t.top+(window.pageYOffset||n.scrollTop)-(n.clientTop||document.body.clientTop||0)}}function vC(e,t,n,r){var o=eI().unstable_batchedUpdates?function(e){eI().unstable_batchedUpdates(n,e)}:n;return null!=e&&e.addEventListener&&e.addEventListener(t,o,r),{remove:function(){null!=e&&e.removeEventListener&&e.removeEventListener(t,o,r)}}}var vS=p.createContext(null);let vk=function(e){var t=e.visible,n=e.maskTransitionName,r=e.getContainer,o=e.prefixCls,a=e.rootClassName,i=e.icons,l=e.countRender,c=e.showSwitch,s=e.showProgress,u=e.current,d=e.transform,f=e.count,m=e.scale,g=e.minScale,v=e.maxScale,b=e.closeIcon,y=e.onActive,x=e.onClose,$=e.onZoomIn,A=e.onZoomOut,w=e.onRotateRight,C=e.onRotateLeft,S=e.onFlipX,k=e.onFlipY,E=e.onReset,O=e.toolbarRender,M=e.zIndex,N=e.image,I=(0,p.useContext)(vS),j=i.rotateLeft,z=i.rotateRight,R=i.zoomIn,P=i.zoomOut,T=i.close,D=i.left,L=i.right,B=i.flipX,H=i.flipY,_="".concat(o,"-operations-operation");p.useEffect(function(){var e=function(e){e.keyCode===eR.A.ESC&&x()};return t&&window.addEventListener("keydown",e),function(){window.removeEventListener("keydown",e)}},[t]);var W=function(e,t){e.preventDefault(),e.stopPropagation(),y(t)},q=p.useCallback(function(e){var t=e.type,n=e.disabled,r=e.onClick,a=e.icon;return p.createElement("div",{key:t,className:h()(_,"".concat(o,"-operations-operation-").concat(t),(0,ej.A)({},"".concat(o,"-operations-operation-disabled"),!!n)),onClick:r},a)},[_,o]),V=c?q({icon:D,onClick:function(e){return W(e,-1)},type:"prev",disabled:0===u}):void 0,K=c?q({icon:L,onClick:function(e){return W(e,1)},type:"next",disabled:u===f-1}):void 0,X=q({icon:H,onClick:k,type:"flipY"}),Y=q({icon:B,onClick:S,type:"flipX"}),U=q({icon:j,onClick:C,type:"rotateLeft"}),G=q({icon:z,onClick:w,type:"rotateRight"}),Q=q({icon:P,onClick:A,type:"zoomOut",disabled:m<=g}),Z=q({icon:R,onClick:$,type:"zoomIn",disabled:m===v}),J=p.createElement("div",{className:"".concat(o,"-operations")},X,Y,U,G,Q,Z);return p.createElement(F.Ay,{visible:t,motionName:n},function(e){var t=e.className,n=e.style;return p.createElement(tH.A,{open:!0,getContainer:null!=r?r:document.body},p.createElement("div",{className:h()("".concat(o,"-operations-wrapper"),t,a),style:(0,eM.A)((0,eM.A)({},n),{},{zIndex:M})},null===b?null:p.createElement("button",{className:"".concat(o,"-close"),onClick:x},b||T),c&&p.createElement(p.Fragment,null,p.createElement("div",{className:h()("".concat(o,"-switch-left"),(0,ej.A)({},"".concat(o,"-switch-left-disabled"),0===u)),onClick:function(e){return W(e,-1)}},D),p.createElement("div",{className:h()("".concat(o,"-switch-right"),(0,ej.A)({},"".concat(o,"-switch-right-disabled"),u===f-1)),onClick:function(e){return W(e,1)}},L)),p.createElement("div",{className:"".concat(o,"-footer")},s&&p.createElement("div",{className:"".concat(o,"-progress")},l?l(u+1,f):"".concat(u+1," / ").concat(f)),O?O(J,(0,eM.A)((0,eM.A)({icons:{prevIcon:V,nextIcon:K,flipYIcon:X,flipXIcon:Y,rotateLeftIcon:U,rotateRightIcon:G,zoomOutIcon:Q,zoomInIcon:Z},actions:{onActive:y,onFlipY:k,onFlipX:S,onRotateLeft:C,onRotateRight:w,onZoomOut:A,onZoomIn:$,onReset:E,onClose:x},transform:d},I?{current:u,total:f}:{}),{},{image:N})):J)))})};var vE={x:0,y:0,rotate:0,scale:1,flipX:!1,flipY:!1};function vO(e,t,n,r){var o=t+n,a=(n-r)/2;if(n>r){if(t>0)return(0,ej.A)({},e,a);if(t<0&&or)return(0,ej.A)({},e,t<0?a:-a);return{}}function vM(e,t,n,r){var o=vA(),a=o.width,i=o.height,l=null;return e<=a&&t<=i?l={x:0,y:0}:(e>a||t>i)&&(l=(0,eM.A)((0,eM.A)({},vO("x",n,e,a)),vO("y",r,t,i))),l}function vN(e){var t=e.src,n=e.isCustomPlaceholder,r=e.fallback,o=(0,p.useState)(n?"loading":"normal"),a=(0,eE.A)(o,2),i=a[0],l=a[1],c=(0,p.useRef)(!1),s="error"===i;(0,p.useEffect)(function(){var e=!0;return new Promise(function(e){if(!t)return void e(!1);var n=document.createElement("img");n.onerror=function(){return e(!1)},n.onload=function(){return e(!0)},n.src=t}).then(function(t){!t&&e&&l("error")}),function(){e=!1}},[t]),(0,p.useEffect)(function(){n&&!c.current?l("loading"):s&&l("normal")},[t]);var u=function(){l("normal")};return[function(e){c.current=!1,"loading"===i&&null!=e&&e.complete&&(e.naturalWidth||e.naturalHeight)&&(c.current=!0,u())},s&&r?{src:r}:{onLoad:u,src:t},i]}function vI(e,t){return Math.hypot(e.x-t.x,e.y-t.y)}var vj=["fallback","src","imgRef"],vz=["prefixCls","src","alt","imageInfo","fallback","movable","onClose","visible","icons","rootClassName","closeIcon","getContainer","current","count","countRender","scaleStep","minScale","maxScale","transitionName","maskTransitionName","imageRender","imgCommonProps","toolbarRender","onTransform","onChange"],vR=function(e){var t=e.fallback,n=e.src,r=e.imgRef,o=(0,eO.A)(e,vj),a=vN({src:n,fallback:t}),i=(0,eE.A)(a,2),l=i[0],c=i[1];return m().createElement("img",(0,R.A)({ref:function(e){r.current=e,l(e)}},o,c))};let vP=function(e){var t,n,r,o,a,i,l,c,s,u,d,f,g,v,b,y,$,A,w,C,S,k,E,O,M,N,I,j,z=e.prefixCls,P=e.src,T=e.alt,D=e.imageInfo,L=e.fallback,B=e.movable,F=void 0===B||B,H=e.onClose,_=e.visible,W=e.icons,q=e.rootClassName,V=e.closeIcon,K=e.getContainer,X=e.current,Y=void 0===X?0:X,U=e.count,G=void 0===U?1:U,Q=e.countRender,Z=e.scaleStep,J=void 0===Z?.5:Z,ee=e.minScale,et=void 0===ee?1:ee,en=e.maxScale,er=void 0===en?50:en,eo=e.transitionName,ea=e.maskTransitionName,ei=void 0===ea?"fade":ea,el=e.imageRender,ec=e.imgCommonProps,es=e.toolbarRender,eu=e.onTransform,ed=e.onChange,ef=(0,eO.A)(e,vz),ep=(0,p.useRef)(),em=(0,p.useContext)(vS),eg=em&&G>1,eh=em&&G>=1,ev=(0,p.useState)(!0),eb=(0,eE.A)(ev,2),ey=eb[0],ex=eb[1],e$=(t=(0,p.useRef)(null),n=(0,p.useRef)([]),r=(0,p.useState)(vE),a=(o=(0,eE.A)(r,2))[0],i=o[1],l=function(e,r){null===t.current&&(n.current=[],t.current=(0,x.A)(function(){i(function(e){var o=e;return n.current.forEach(function(e){o=(0,eM.A)((0,eM.A)({},o),e)}),t.current=null,null==eu||eu({transform:o,action:r}),o})})),n.current.push((0,eM.A)((0,eM.A)({},a),e))},{transform:a,resetTransform:function(e){i(vE),(0,tg.A)(vE,a)||null==eu||eu({transform:vE,action:e})},updateTransform:l,dispatchZoomChange:function(e,t,n,r,o){var i=ep.current,c=i.width,s=i.height,u=i.offsetWidth,d=i.offsetHeight,f=i.offsetLeft,p=i.offsetTop,m=e,g=a.scale*e;g>er?(g=er,m=er/a.scale):g0&&(t=1/t),eS(t,"wheel",e.clientX,e.clientY)}}}),eN=ek.isMoving,eI=ek.onMouseDown,ez=ek.onWheel,eP=(w=eA.rotate,C=eA.scale,S=eA.x,k=eA.y,E=(0,p.useState)(!1),M=(O=(0,eE.A)(E,2))[0],N=O[1],I=(0,p.useRef)({point1:{x:0,y:0},point2:{x:0,y:0},eventType:"none"}),j=function(e){I.current=(0,eM.A)((0,eM.A)({},I.current),e)},(0,p.useEffect)(function(){var e;return _&&F&&(e=vC(window,"touchmove",function(e){return e.preventDefault()},{passive:!1})),function(){var t;null==(t=e)||t.remove()}},[_,F]),{isTouching:M,onTouchStart:function(e){if(F){e.stopPropagation(),N(!0);var t=e.touches,n=void 0===t?[]:t;n.length>1?j({point1:{x:n[0].clientX,y:n[0].clientY},point2:{x:n[1].clientX,y:n[1].clientY},eventType:"touchZoom"}):j({point1:{x:n[0].clientX-S,y:n[0].clientY-k},eventType:"move"})}},onTouchMove:function(e){var t=e.touches,n=void 0===t?[]:t,r=I.current,o=r.point1,a=r.point2,i=r.eventType;if(n.length>1&&"touchZoom"===i){var l={x:n[0].clientX,y:n[0].clientY},c={x:n[1].clientX,y:n[1].clientY},s=function(e,t,n,r){var o=vI(e,n),a=vI(t,r);if(0===o&&0===a)return[e.x,e.y];var i=o/(o+a);return[e.x+i*(t.x-e.x),e.y+i*(t.y-e.y)]}(o,a,l,c),u=(0,eE.A)(s,2),d=u[0],f=u[1];eS(vI(l,c)/vI(o,a),"touchZoom",d,f,!0),j({point1:l,point2:c,eventType:"touchZoom"})}else"move"===i&&(eC({x:n[0].clientX-o.x,y:n[0].clientY-o.y},"move"),j({eventType:"move"}))},onTouchEnd:function(){if(_){if(M&&N(!1),j({eventType:"none"}),et>C)return eC({x:0,y:0,scale:et},"touchZoom");var e=ep.current.offsetWidth*C,t=ep.current.offsetHeight*C,n=ep.current.getBoundingClientRect(),r=n.left,o=n.top,a=w%180!=0,i=vM(a?t:e,a?e:t,r,o);i&&eC((0,eM.A)({},i),"dragRebound")}}}),eT=eP.isTouching,eD=eP.onTouchStart,eL=eP.onTouchMove,eB=eP.onTouchEnd,eF=eA.rotate,eH=eA.scale,e_=h()((0,ej.A)({},"".concat(z,"-moving"),eN));(0,p.useEffect)(function(){ey||ex(!0)},[ey]);var eW=function(e){var t=Y+e;!Number.isInteger(t)||t<0||t>G-1||(ex(!1),ew(e<0?"prev":"next"),null==ed||ed(t,Y))},eq=function(e){_&&eg&&(e.keyCode===eR.A.LEFT?eW(-1):e.keyCode===eR.A.RIGHT&&eW(1))};(0,p.useEffect)(function(){var e=vC(window,"keydown",eq,!1);return function(){e.remove()}},[_,eg,Y]);var eV=m().createElement(vR,(0,R.A)({},ec,{width:e.width,height:e.height,imgRef:ep,className:"".concat(z,"-img"),alt:T,style:{transform:"translate3d(".concat(eA.x,"px, ").concat(eA.y,"px, 0) scale3d(").concat(eA.flipX?"-":"").concat(eH,", ").concat(eA.flipY?"-":"").concat(eH,", 1) rotate(").concat(eF,"deg)"),transitionDuration:(!ey||eT)&&"0s"},fallback:L,src:P,onWheel:ez,onMouseDown:eI,onDoubleClick:function(e){_&&(1!==eH?eC({x:0,y:0,scale:1},"doubleClick"):eS(1+J,"doubleClick",e.clientX,e.clientY))},onTouchStart:eD,onTouchMove:eL,onTouchEnd:eB,onTouchCancel:eB})),eK=(0,eM.A)({url:P,alt:T},D);return m().createElement(m().Fragment,null,m().createElement(t1,(0,R.A)({transitionName:void 0===eo?"zoom":eo,maskTransitionName:ei,closable:!1,keyboard:!0,prefixCls:z,onClose:H,visible:_,classNames:{wrapper:e_},rootClassName:q,getContainer:K},ef,{afterClose:function(){ew("close")}}),m().createElement("div",{className:"".concat(z,"-img-wrapper")},el?el(eV,(0,eM.A)({transform:eA,image:eK},em?{current:Y}:{})):eV)),m().createElement(vk,{visible:_,transform:eA,maskTransitionName:ei,closeIcon:V,getContainer:K,prefixCls:z,rootClassName:q,icons:void 0===W?{}:W,countRender:Q,showSwitch:eg,showProgress:eh,current:Y,count:G,scale:eH,minScale:et,maxScale:er,toolbarRender:es,onActive:eW,onZoomIn:function(){eS(1+J,"zoomIn")},onZoomOut:function(){eS(1/(1+J),"zoomOut")},onRotateRight:function(){eC({rotate:eF+90},"rotateRight")},onRotateLeft:function(){eC({rotate:eF-90},"rotateLeft")},onFlipX:function(){eC({flipX:!eA.flipX},"flipX")},onFlipY:function(){eC({flipY:!eA.flipY},"flipY")},onClose:H,onReset:function(){ew("reset")},zIndex:void 0!==ef.zIndex?ef.zIndex+1:void 0,image:eK}))};var vT=["crossOrigin","decoding","draggable","loading","referrerPolicy","sizes","srcSet","useMap","alt"],vD=["visible","onVisibleChange","getContainer","current","movable","minScale","maxScale","countRender","closeIcon","onChange","onTransform","toolbarRender","imageRender"],vL=["src"],vB=0,vF=["src","alt","onPreviewClose","prefixCls","previewPrefixCls","placeholder","fallback","width","height","style","preview","className","onClick","onError","wrapperClassName","wrapperStyle","rootClassName"],vH=["src","visible","onVisibleChange","getContainer","mask","maskClassName","movable","icons","scaleStep","minScale","maxScale","imageRender","toolbarRender"],v_=function(e){var t,n,r,o,a=e.src,i=e.alt,l=e.onPreviewClose,c=e.prefixCls,s=void 0===c?"rc-image":c,u=e.previewPrefixCls,d=void 0===u?"".concat(s,"-preview"):u,f=e.placeholder,m=e.fallback,g=e.width,v=e.height,b=e.style,y=e.preview,x=void 0===y||y,$=e.className,A=e.onClick,w=e.onError,C=e.wrapperClassName,S=e.wrapperStyle,k=e.rootClassName,E=(0,eO.A)(e,vF),O="object"===(0,ez.A)(x)?x:{},M=O.src,N=O.visible,I=void 0===N?void 0:N,j=O.onVisibleChange,z=O.getContainer,P=O.mask,T=O.maskClassName,D=O.movable,L=O.icons,B=O.scaleStep,F=O.minScale,H=O.maxScale,_=O.imageRender,W=O.toolbarRender,q=(0,eO.A)(O,vH),V=null!=M?M:a,K=(0,rs.A)(!!I,{value:I,onChange:void 0===j?l:j}),X=(0,eE.A)(K,2),Y=X[0],U=X[1],G=vN({src:a,isCustomPlaceholder:f&&!0!==f,fallback:m}),Q=(0,eE.A)(G,3),Z=Q[0],J=Q[1],ee=Q[2],et=(0,p.useState)(null),en=(0,eE.A)(et,2),er=en[0],eo=en[1],ea=(0,p.useContext)(vS),ei=!!x,el=h()(s,C,k,(0,ej.A)({},"".concat(s,"-error"),"error"===ee)),ec=(0,p.useMemo)(function(){var t={};return vT.forEach(function(n){void 0!==e[n]&&(t[n]=e[n])}),t},vT.map(function(t){return e[t]})),es=(0,p.useMemo)(function(){return(0,eM.A)((0,eM.A)({},ec),{},{src:V})},[V,ec]),eu=(t=p.useState(function(){return String(vB+=1)}),n=(0,eE.A)(t,1)[0],r=p.useContext(vS),o={data:es,canPreview:ei},p.useEffect(function(){if(r)return r.register(n,o)},[]),p.useEffect(function(){r&&r.register(n,o)},[ei,es]),n);return p.createElement(p.Fragment,null,p.createElement("div",(0,R.A)({},E,{className:el,onClick:ei?function(e){var t=vw(e.target),n=t.left,r=t.top;ea?ea.onPreview(eu,V,n,r):(eo({x:n,y:r}),U(!0)),null==A||A(e)}:A,style:(0,eM.A)({width:g,height:v},S)}),p.createElement("img",(0,R.A)({},ec,{className:h()("".concat(s,"-img"),(0,ej.A)({},"".concat(s,"-img-placeholder"),!0===f),$),style:(0,eM.A)({height:v},b),ref:Z},J,{width:g,height:v,onError:w})),"loading"===ee&&p.createElement("div",{"aria-hidden":"true",className:"".concat(s,"-placeholder")},f),P&&ei&&p.createElement("div",{className:h()("".concat(s,"-mask"),T),style:{display:(null==b?void 0:b.display)==="none"?"none":void 0}},P)),!ea&&ei&&p.createElement(vP,(0,R.A)({"aria-hidden":!Y,visible:Y,prefixCls:d,onClose:function(){U(!1),eo(null)},mousePosition:er,src:V,alt:i,imageInfo:{width:g,height:v},fallback:m,getContainer:void 0===z?void 0:z,icons:L,movable:D,scaleStep:B,minScale:F,maxScale:H,rootClassName:k,imageRender:_,imgCommonProps:ec,toolbarRender:W},q)))};v_.PreviewGroup=function(e){var t,n,r,o,a,i,l=e.previewPrefixCls,c=e.children,s=e.icons,u=e.items,d=e.preview,f=e.fallback,m="object"===(0,ez.A)(d)?d:{},g=m.visible,h=m.onVisibleChange,v=m.getContainer,b=m.current,x=m.movable,$=m.minScale,A=m.maxScale,w=m.countRender,C=m.closeIcon,S=m.onChange,k=m.onTransform,E=m.toolbarRender,O=m.imageRender,M=(0,eO.A)(m,vD),N=(t=p.useState({}),r=(n=(0,eE.A)(t,2))[0],o=n[1],a=p.useCallback(function(e,t){return o(function(n){return(0,eM.A)((0,eM.A)({},n),{},(0,ej.A)({},e,t))}),function(){o(function(t){var n=(0,eM.A)({},t);return delete n[e],n})}},[]),[p.useMemo(function(){return u?u.map(function(e){if("string"==typeof e)return{data:{src:e}};var t={};return Object.keys(e).forEach(function(n){["src"].concat((0,y.A)(vT)).includes(n)&&(t[n]=e[n])}),{data:t}}):Object.keys(r).reduce(function(e,t){var n=r[t],o=n.canPreview,a=n.data;return o&&e.push({data:a,id:t}),e},[])},[u,r]),a,!!u]),I=(0,eE.A)(N,3),j=I[0],z=I[1],P=I[2],T=(0,rs.A)(0,{value:b}),D=(0,eE.A)(T,2),L=D[0],B=D[1],F=(0,p.useState)(!1),H=(0,eE.A)(F,2),_=H[0],W=H[1],q=(null==(i=j[L])?void 0:i.data)||{},V=q.src,K=(0,eO.A)(q,vL),X=(0,rs.A)(!!g,{value:g,onChange:function(e,t){null==h||h(e,t,L)}}),Y=(0,eE.A)(X,2),U=Y[0],G=Y[1],Q=(0,p.useState)(null),Z=(0,eE.A)(Q,2),J=Z[0],ee=Z[1],et=p.useCallback(function(e,t,n,r){var o=P?j.findIndex(function(e){return e.data.src===t}):j.findIndex(function(t){return t.id===e});B(o<0?0:o),G(!0),ee({x:n,y:r}),W(!0)},[j,P]);p.useEffect(function(){U?_||B(0):W(!1)},[U]);var en=p.useMemo(function(){return{register:z,onPreview:et}},[z,et]);return p.createElement(vS.Provider,{value:en},c,p.createElement(vP,(0,R.A)({"aria-hidden":!U,movable:x,visible:U,prefixCls:void 0===l?"rc-image-preview":l,closeIcon:C,onClose:function(){G(!1),ee(null)},mousePosition:J,imgCommonProps:K,src:V,fallback:f,icons:void 0===s?{}:s,minScale:$,maxScale:A,getContainer:v,current:L,count:j.length,countRender:w,onTransform:k,toolbarRender:E,imageRender:O,onChange:function(e,t){B(e),null==S||S(e,t)}},M)))};var vW={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"defs",attrs:{},children:[{tag:"style",attrs:{}}]},{tag:"path",attrs:{d:"M672 418H144c-17.7 0-32 14.3-32 32v414c0 17.7 14.3 32 32 32h528c17.7 0 32-14.3 32-32V450c0-17.7-14.3-32-32-32zm-44 402H188V494h440v326z"}},{tag:"path",attrs:{d:"M819.3 328.5c-78.8-100.7-196-153.6-314.6-154.2l-.2-64c0-6.5-7.6-10.1-12.6-6.1l-128 101c-4 3.1-3.9 9.1 0 12.3L492 318.6c5.1 4 12.7.4 12.6-6.1v-63.9c12.9.1 25.9.9 38.8 2.5 42.1 5.2 82.1 18.2 119 38.7 38.1 21.2 71.2 49.7 98.4 84.3 27.1 34.7 46.7 73.7 58.1 115.8a325.95 325.95 0 016.5 140.9h74.9c14.8-103.6-11.3-213-81-302.3z"}}]},name:"rotate-left",theme:"outlined"},vq=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:vW}))}),vV={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"defs",attrs:{},children:[{tag:"style",attrs:{}}]},{tag:"path",attrs:{d:"M480.5 251.2c13-1.6 25.9-2.4 38.8-2.5v63.9c0 6.5 7.5 10.1 12.6 6.1L660 217.6c4-3.2 4-9.2 0-12.3l-128-101c-5.1-4-12.6-.4-12.6 6.1l-.2 64c-118.6.5-235.8 53.4-314.6 154.2A399.75 399.75 0 00123.5 631h74.9c-.9-5.3-1.7-10.7-2.4-16.1-5.1-42.1-2.1-84.1 8.9-124.8 11.4-42.2 31-81.1 58.1-115.8 27.2-34.7 60.3-63.2 98.4-84.3 37-20.6 76.9-33.6 119.1-38.8z"}},{tag:"path",attrs:{d:"M880 418H352c-17.7 0-32 14.3-32 32v414c0 17.7 14.3 32 32 32h528c17.7 0 32-14.3 32-32V450c0-17.7-14.3-32-32-32zm-44 402H396V494h440v326z"}}]},name:"rotate-right",theme:"outlined"},vK=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:vV}))});let vX={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M847.9 592H152c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h605.2L612.9 851c-4.1 5.2-.4 13 6.3 13h72.5c4.9 0 9.5-2.2 12.6-6.1l168.8-214.1c16.5-21 1.6-51.8-25.2-51.8zM872 356H266.8l144.3-183c4.1-5.2.4-13-6.3-13h-72.5c-4.9 0-9.5 2.2-12.6 6.1L150.9 380.2c-16.5 21-1.6 51.8 25.1 51.8h696c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8z"}}]},name:"swap",theme:"outlined"};var vY=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:vX}))});let vU={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M637 443H519V309c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v134H325c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h118v134c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V519h118c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8zm284 424L775 721c122.1-148.9 113.6-369.5-26-509-148-148.1-388.4-148.1-537 0-148.1 148.6-148.1 389 0 537 139.5 139.6 360.1 148.1 509 26l146 146c3.2 2.8 8.3 2.8 11 0l43-43c2.8-2.7 2.8-7.8 0-11zM696 696c-118.8 118.7-311.2 118.7-430 0-118.7-118.8-118.7-311.2 0-430 118.8-118.7 311.2-118.7 430 0 118.7 118.8 118.7 311.2 0 430z"}}]},name:"zoom-in",theme:"outlined"};var vG=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:vU}))});let vQ={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M637 443H325c-4.4 0-8 3.6-8 8v60c0 4.4 3.6 8 8 8h312c4.4 0 8-3.6 8-8v-60c0-4.4-3.6-8-8-8zm284 424L775 721c122.1-148.9 113.6-369.5-26-509-148-148.1-388.4-148.1-537 0-148.1 148.6-148.1 389 0 537 139.5 139.6 360.1 148.1 509 26l146 146c3.2 2.8 8.3 2.8 11 0l43-43c2.8-2.7 2.8-7.8 0-11zM696 696c-118.8 118.7-311.2 118.7-430 0-118.7-118.8-118.7-311.2 0-430 118.8-118.7 311.2-118.7 430 0 118.7 118.8 118.7 311.2 0 430z"}}]},name:"zoom-out",theme:"outlined"};var vZ=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:vQ}))});let vJ=e=>({position:e||"absolute",inset:0}),v0=(0,w.OF)("Image",e=>{let t=`${e.componentCls}-preview`,n=(0,ey.oX)(e,{previewCls:t,modalMaskBg:new ts.q("#000").setAlpha(.45).toRgbString(),imagePreviewSwitchSize:e.controlHeightLG});return[(e=>{let{componentCls:t}=e;return{[t]:{position:"relative",display:"inline-block",[`${t}-img`]:{width:"100%",height:"auto",verticalAlign:"middle"},[`${t}-img-placeholder`]:{backgroundColor:e.colorBgContainerDisabled,backgroundImage:"url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTQuNSAyLjVoLTEzQS41LjUgMCAwIDAgMSAzdjEwYS41LjUgMCAwIDAgLjUuNWgxM2EuNS41IDAgMCAwIC41LS41VjNhLjUuNSAwIDAgMC0uNS0uNXpNNS4yODEgNC43NWExIDEgMCAwIDEgMCAyIDEgMSAwIDAgMSAwLTJ6bTguMDMgNi44M2EuMTI3LjEyNyAwIDAgMS0uMDgxLjAzSDIuNzY5YS4xMjUuMTI1IDAgMCAxLS4wOTYtLjIwN2wyLjY2MS0zLjE1NmEuMTI2LjEyNiAwIDAgMSAuMTc3LS4wMTZsLjAxNi4wMTZMNy4wOCAxMC4wOWwyLjQ3LTIuOTNhLjEyNi4xMjYgMCAwIDEgLjE3Ny0uMDE2bC4wMTUuMDE2IDMuNTg4IDQuMjQ0YS4xMjcuMTI3IDAgMCAxLS4wMi4xNzV6IiBmaWxsPSIjOEM4QzhDIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=')",backgroundRepeat:"no-repeat",backgroundPosition:"center center",backgroundSize:"30%"},[`${t}-mask`]:Object.assign({},(e=>{let{iconCls:t,motionDurationSlow:n,paddingXXS:r,marginXXS:o,prefixCls:a,colorTextLightSolid:i}=e;return{position:"absolute",inset:0,display:"flex",alignItems:"center",justifyContent:"center",color:i,background:new ts.q("#000").setAlpha(.5).toRgbString(),cursor:"pointer",opacity:0,transition:`opacity ${n}`,[`.${a}-mask-info`]:Object.assign(Object.assign({},V.L9),{padding:`0 ${(0,q.zA)(r)}`,[t]:{marginInlineEnd:o,svg:{verticalAlign:"baseline"}}})}})(e)),[`${t}-mask:hover`]:{opacity:1},[`${t}-placeholder`]:Object.assign({},vJ())}}})(n),(e=>{let{motionEaseOut:t,previewCls:n,motionDurationSlow:r,componentCls:o}=e;return[{[`${o}-preview-root`]:{[n]:{height:"100%",textAlign:"center",pointerEvents:"none"},[`${n}-body`]:Object.assign(Object.assign({},vJ()),{overflow:"hidden"}),[`${n}-img`]:{maxWidth:"100%",maxHeight:"70%",verticalAlign:"middle",transform:"scale3d(1, 1, 1)",cursor:"grab",transition:`transform ${r} ${t} 0s`,userSelect:"none","&-wrapper":Object.assign(Object.assign({},vJ()),{transition:`transform ${r} ${t} 0s`,display:"flex",justifyContent:"center",alignItems:"center","& > *":{pointerEvents:"auto"},"&::before":{display:"inline-block",width:1,height:"50%",marginInlineEnd:-1,content:'""'}})},[`${n}-moving`]:{[`${n}-preview-img`]:{cursor:"grabbing","&-wrapper":{transitionDuration:"0s"}}}}},{[`${o}-preview-root`]:{[`${n}-wrap`]:{zIndex:e.zIndexPopup}}},{[`${o}-preview-operations-wrapper`]:{position:"fixed",zIndex:e.calc(e.zIndexPopup).add(1).equal()},"&":[(e=>{let{previewCls:t,modalMaskBg:n,paddingSM:r,marginXL:o,margin:a,paddingLG:i,previewOperationColorDisabled:l,previewOperationHoverColor:c,motionDurationSlow:s,iconCls:u,colorTextLightSolid:d}=e,f=new ts.q(n).setAlpha(.1),p=f.clone().setAlpha(.2);return{[`${t}-footer`]:{position:"fixed",bottom:o,left:{_skip_check_:!0,value:"50%"},display:"flex",flexDirection:"column",alignItems:"center",color:e.previewOperationColor,transform:"translateX(-50%)"},[`${t}-progress`]:{marginBottom:a},[`${t}-close`]:{position:"fixed",top:o,right:{_skip_check_:!0,value:o},display:"flex",color:d,backgroundColor:f.toRgbString(),borderRadius:"50%",padding:r,outline:0,border:0,cursor:"pointer",transition:`all ${s}`,"&:hover":{backgroundColor:p.toRgbString()},[`& > ${u}`]:{fontSize:e.previewOperationSize}},[`${t}-operations`]:{display:"flex",alignItems:"center",padding:`0 ${(0,q.zA)(i)}`,backgroundColor:f.toRgbString(),borderRadius:100,"&-operation":{marginInlineStart:r,padding:r,cursor:"pointer",transition:`all ${s}`,userSelect:"none",[`&:not(${t}-operations-operation-disabled):hover > ${u}`]:{color:c},"&-disabled":{color:l,cursor:"not-allowed"},"&:first-of-type":{marginInlineStart:0},[`& > ${u}`]:{fontSize:e.previewOperationSize}}}}})(e),(e=>{let{modalMaskBg:t,iconCls:n,previewOperationColorDisabled:r,previewCls:o,zIndexPopup:a,motionDurationSlow:i}=e,l=new ts.q(t).setAlpha(.1),c=l.clone().setAlpha(.2);return{[`${o}-switch-left, ${o}-switch-right`]:{position:"fixed",insetBlockStart:"50%",zIndex:e.calc(a).add(1).equal(),display:"flex",alignItems:"center",justifyContent:"center",width:e.imagePreviewSwitchSize,height:e.imagePreviewSwitchSize,marginTop:e.calc(e.imagePreviewSwitchSize).mul(-1).div(2).equal(),color:e.previewOperationColor,background:l.toRgbString(),borderRadius:"50%",transform:"translateY(-50%)",cursor:"pointer",transition:`all ${i}`,userSelect:"none","&:hover":{background:c.toRgbString()},"&-disabled":{"&, &:hover":{color:r,background:"transparent",cursor:"not-allowed",[`> ${n}`]:{cursor:"not-allowed"}}},[`> ${n}`]:{fontSize:e.previewOperationSize}},[`${o}-switch-left`]:{insetInlineStart:e.marginSM},[`${o}-switch-right`]:{insetInlineEnd:e.marginSM}}})(e)]}]})(n),nk((0,ey.oX)(n,{componentCls:t})),(e=>{let{previewCls:t}=e;return{[`${t}-root`]:(0,nC.aB)(e,"zoom"),"&":nw(e,!0)}})(n)]},e=>({zIndexPopup:e.zIndexPopupBase+80,previewOperationColor:new ts.q(e.colorTextLightSolid).setAlpha(.65).toRgbString(),previewOperationHoverColor:new ts.q(e.colorTextLightSolid).setAlpha(.85).toRgbString(),previewOperationColorDisabled:new ts.q(e.colorTextLightSolid).setAlpha(.25).toRgbString(),previewOperationSize:1.5*e.fontSizeIcon}));var v1=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let v2={rotateLeft:p.createElement(vq,null),rotateRight:p.createElement(vK,null),zoomIn:p.createElement(vG,null),zoomOut:p.createElement(vZ,null),close:p.createElement(z.A,null),left:p.createElement(l$,null),right:p.createElement(io.A,null),flipX:p.createElement(vY,null),flipY:p.createElement(vY,{rotate:90})};var v4=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let v3=e=>{var t;let{prefixCls:n,preview:r,className:o,rootClassName:a,style:i}=e,l=v4(e,["prefixCls","preview","className","rootClassName","style"]),{getPrefixCls:c,locale:s=te.A,getPopupContainer:u,image:d}=p.useContext(A.QO),f=c("image",n),m=c(),g=s.Image||te.A.Image,v=(0,eh.A)(f),[b,y,x]=v0(f,v),$=h()(a,y,x,v),w=h()(o,y,null==d?void 0:d.className),[C]=(0,eY.YK)("ImagePreview","object"==typeof r?r.zIndex:void 0),S=p.useMemo(()=>{var e;if(!1===r)return r;let t="object"==typeof r?r:{},{getContainer:n,closeIcon:o,rootClassName:a}=t,i=v4(t,["getContainer","closeIcon","rootClassName"]);return Object.assign(Object.assign({mask:p.createElement("div",{className:`${f}-mask-info`},p.createElement(mx.A,null),null==g?void 0:g.preview),icons:v2},i),{rootClassName:h()($,a),getContainer:null!=n?n:u,transitionName:(0,tN.b)(m,"zoom",t.transitionName),maskTransitionName:(0,tN.b)(m,"fade",t.maskTransitionName),zIndex:C,closeIcon:null!=o?o:null==(e=null==d?void 0:d.preview)?void 0:e.closeIcon})},[r,g,null==(t=null==d?void 0:d.preview)?void 0:t.closeIcon]),k=Object.assign(Object.assign({},null==d?void 0:d.style),i);return b(p.createElement(v_,Object.assign({prefixCls:f,preview:S,rootClassName:$,className:w,style:k},l)))};v3.PreviewGroup=e=>{var{previewPrefixCls:t,preview:n}=e,r=v1(e,["previewPrefixCls","preview"]);let{getPrefixCls:o}=p.useContext(A.QO),a=o("image",t),i=`${a}-preview`,l=o(),c=(0,eh.A)(a),[s,u,d]=v0(a,c),[f]=(0,eY.YK)("ImagePreview","object"==typeof n?n.zIndex:void 0),m=p.useMemo(()=>{var e;if(!1===n)return n;let t="object"==typeof n?n:{},r=h()(u,d,c,null!=(e=t.rootClassName)?e:"");return Object.assign(Object.assign({},t),{transitionName:(0,tN.b)(l,"zoom",t.transitionName),maskTransitionName:(0,tN.b)(l,"fade",t.maskTransitionName),rootClassName:r,zIndex:f})},[n]);return s(p.createElement(v_.PreviewGroup,Object.assign({preview:m,previewPrefixCls:i,icons:v2},r)))};let v6=v3;var v8=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function v5(e){let{suffixCls:t,tagName:n,displayName:r}=e;return e=>p.forwardRef((r,o)=>p.createElement(e,Object.assign({ref:o,suffixCls:t,tagName:n},r)))}let v7=p.forwardRef((e,t)=>{let{prefixCls:n,suffixCls:r,className:o,tagName:a}=e,i=v8(e,["prefixCls","suffixCls","className","tagName"]),{getPrefixCls:l}=p.useContext(A.QO),c=l("layout",n),[s,u,d]=lS(c),f=r?`${c}-${r}`:c;return s(p.createElement(a,Object.assign({className:h()(n||f,o,u,d),ref:t},i)))}),v9=p.forwardRef((e,t)=>{let{direction:n}=p.useContext(A.QO),[r,o]=p.useState([]),{prefixCls:a,className:i,rootClassName:l,children:c,hasSider:s,tagName:u,style:d}=e,f=v8(e,["prefixCls","className","rootClassName","children","hasSider","tagName","style"]),m=(0,b.A)(f,["suffixCls"]),{getPrefixCls:g,layout:v}=p.useContext(A.QO),x=g("layout",a),$="boolean"==typeof s?s:!!r.length||(0,rc.A)(c).some(e=>e.type===lI),[w,C,S]=lS(x),k=h()(x,{[`${x}-has-sider`]:$,[`${x}-rtl`]:"rtl"===n},null==v?void 0:v.className,i,l,C,S),E=p.useMemo(()=>({siderHook:{addSider:e=>{o(t=>[].concat((0,y.A)(t),[e]))},removeSider:e=>{o(t=>t.filter(t=>t!==e))}}}),[]);return w(p.createElement(lA.Provider,{value:E},p.createElement(u,Object.assign({ref:t,className:k,style:Object.assign(Object.assign({},null==v?void 0:v.style),d)},m),c)))}),be=v5({tagName:"div",displayName:"Layout"})(v9),bt=v5({suffixCls:"header",tagName:"header",displayName:"Header"})(v7),bn=v5({suffixCls:"footer",tagName:"footer",displayName:"Footer"})(v7),br=v5({suffixCls:"content",tagName:"main",displayName:"Content"})(v7);be.Header=bt,be.Footer=bn,be.Content=br,be.Sider=lI,be._InternalSiderContext=lM;let bo=be,ba=function(){let e=Object.assign({},arguments.length<=0?void 0:arguments[0]);for(let t=1;t{let r=n[t];void 0!==r&&(e[t]=r)})}return e},bi={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M272.9 512l265.4-339.1c4.1-5.2.4-12.9-6.3-12.9h-77.3c-4.9 0-9.6 2.3-12.6 6.1L186.8 492.3a31.99 31.99 0 000 39.5l255.3 326.1c3 3.9 7.7 6.1 12.6 6.1H532c6.7 0 10.4-7.7 6.3-12.9L272.9 512zm304 0l265.4-339.1c4.1-5.2.4-12.9-6.3-12.9h-77.3c-4.9 0-9.6 2.3-12.6 6.1L490.8 492.3a31.99 31.99 0 000 39.5l255.3 326.1c3 3.9 7.7 6.1 12.6 6.1H836c6.7 0 10.4-7.7 6.3-12.9L576.9 512z"}}]},name:"double-left",theme:"outlined"};var bl=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:bi}))});let bc={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M533.2 492.3L277.9 166.1c-3-3.9-7.7-6.1-12.6-6.1H188c-6.7 0-10.4 7.7-6.3 12.9L447.1 512 181.7 851.1A7.98 7.98 0 00188 864h77.3c4.9 0 9.6-2.3 12.6-6.1l255.3-326.1c9.1-11.7 9.1-27.9 0-39.5zm304 0L581.9 166.1c-3-3.9-7.7-6.1-12.6-6.1H492c-6.7 0-10.4 7.7-6.3 12.9L751.1 512 485.7 851.1A7.98 7.98 0 00492 864h77.3c4.9 0 9.6-2.3 12.6-6.1l255.3-326.1c9.1-11.7 9.1-27.9 0-39.5z"}}]},name:"double-right",theme:"outlined"};var bs=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:bc}))});let bu={items_per_page:"条/页",jump_to:"跳至",jump_to_confirm:"确定",page:"页",prev_page:"上一页",next_page:"下一页",prev_5:"向前 5 页",next_5:"向后 5 页",prev_3:"向前 3 页",next_3:"向后 3 页",page_size:"页码"};var bd=[10,20,50,100];let bf=function(e){var t=e.pageSizeOptions,n=void 0===t?bd:t,r=e.locale,o=e.changeSize,a=e.pageSize,i=e.goButton,l=e.quickGo,c=e.rootPrefixCls,s=e.disabled,u=e.buildOptionText,d=e.showSizeChanger,f=e.sizeChangerRender,p=m().useState(""),g=(0,eE.A)(p,2),h=g[0],v=g[1],b=function(){return!h||Number.isNaN(h)?void 0:Number(h)},y="function"==typeof u?u:function(e){return"".concat(e," ").concat(r.items_per_page)},x=function(e){""!==h&&(e.keyCode===eR.A.ENTER||"click"===e.type)&&(v(""),null==l||l(b()))},$="".concat(c,"-options");if(!d&&!l)return null;var A=null,w=null,C=null;return d&&f&&(A=f({disabled:s,size:a,onSizeChange:function(e){null==o||o(Number(e))},"aria-label":r.page_size,className:"".concat($,"-size-changer"),options:(n.some(function(e){return e.toString()===a.toString()})?n:n.concat([a]).sort(function(e,t){return(Number.isNaN(Number(e))?0:Number(e))-(Number.isNaN(Number(t))?0:Number(t))})).map(function(e){return{label:y(e),value:e}})})),l&&(i&&(C="boolean"==typeof i?m().createElement("button",{type:"button",onClick:x,onKeyUp:x,disabled:s,className:"".concat($,"-quick-jumper-button")},r.jump_to_confirm):m().createElement("span",{onClick:x,onKeyUp:x},i)),w=m().createElement("div",{className:"".concat($,"-quick-jumper")},r.jump_to,m().createElement("input",{disabled:s,type:"text",value:h,onChange:function(e){v(e.target.value)},onKeyUp:x,onBlur:function(e){i||""===h||(v(""),e.relatedTarget&&(e.relatedTarget.className.indexOf("".concat(c,"-item-link"))>=0||e.relatedTarget.className.indexOf("".concat(c,"-item"))>=0)||null==l||l(b()))},"aria-label":r.page}),r.page,C)),m().createElement("li",{className:$},A,w)},bp=function(e){var t,n=e.rootPrefixCls,r=e.page,o=e.active,a=e.className,i=e.showTitle,l=e.onClick,c=e.onKeyPress,s=e.itemRender,u="".concat(n,"-item"),d=h()(u,"".concat(u,"-").concat(r),(t={},(0,ej.A)(t,"".concat(u,"-active"),o),(0,ej.A)(t,"".concat(u,"-disabled"),!r),t),a),f=s(r,"page",m().createElement("a",{rel:"nofollow"},r));return f?m().createElement("li",{title:i?String(r):null,className:d,onClick:function(){l(r)},onKeyDown:function(e){c(e,l,r)},tabIndex:0},f):null};var bm=function(e,t,n){return n};function bg(){}function bh(e){var t=Number(e);return"number"==typeof t&&!Number.isNaN(t)&&isFinite(t)&&Math.floor(t)===t}function bv(e,t,n){return Math.floor((n-1)/(void 0===e?t:e))+1}let bb=function(e){var t,n,r,o,a,i=e.prefixCls,l=void 0===i?"rc-pagination":i,c=e.selectPrefixCls,s=e.className,u=e.current,d=e.defaultCurrent,f=e.total,g=void 0===f?0:f,v=e.pageSize,b=e.defaultPageSize,y=e.onChange,x=void 0===y?bg:y,$=e.hideOnSinglePage,A=e.align,w=e.showPrevNextJumpers,C=e.showQuickJumper,S=e.showLessItems,k=e.showTitle,E=void 0===k||k,O=e.onShowSizeChange,M=void 0===O?bg:O,N=e.locale,I=void 0===N?bu:N,j=e.style,z=e.totalBoundaryShowSizeChanger,P=e.disabled,T=e.simple,D=e.showTotal,L=e.showSizeChanger,B=void 0===L?g>(void 0===z?50:z):L,F=e.sizeChangerRender,_=e.pageSizeOptions,W=e.itemRender,q=void 0===W?bm:W,V=e.jumpPrevIcon,K=e.jumpNextIcon,X=e.prevIcon,Y=e.nextIcon,U=m().useRef(null),G=(0,rs.A)(10,{value:v,defaultValue:void 0===b?10:b}),Q=(0,eE.A)(G,2),Z=Q[0],J=Q[1],ee=(0,rs.A)(1,{value:u,defaultValue:void 0===d?1:d,postState:function(e){return Math.max(1,Math.min(e,bv(void 0,Z,g)))}}),et=(0,eE.A)(ee,2),en=et[0],er=et[1],eo=m().useState(en),ea=(0,eE.A)(eo,2),ei=ea[0],el=ea[1];(0,p.useEffect)(function(){el(en)},[en]);var ec=Math.max(1,en-(S?3:5)),es=Math.min(bv(void 0,Z,g),en+(S?3:5));function eu(t,n){var r=t||m().createElement("button",{type:"button","aria-label":n,className:"".concat(l,"-item-link")});return"function"==typeof t&&(r=m().createElement(t,(0,eM.A)({},e))),r}function ed(e){var t=e.target.value,n=bv(void 0,Z,g);return""===t?t:Number.isNaN(Number(t))?ei:t>=n?n:Number(t)}var ef=g>Z&&C;function ep(e){var t=ed(e);switch(t!==ei&&el(t),e.keyCode){case eR.A.ENTER:em(t);break;case eR.A.UP:em(t-1);break;case eR.A.DOWN:em(t+1)}}function em(e){if(bh(e)&&e!==en&&bh(g)&&g>0&&!P){var t=bv(void 0,Z,g),n=e;return e>t?n=t:e<1&&(n=1),n!==ei&&el(n),er(n),null==x||x(n,Z),n}return en}var eg=en>1,eh=en2?n-2:0),o=2;og?g:en*Z])),ek=null,eO=bv(void 0,Z,g);if($&&g<=Z)return null;var eN=[],eI={rootPrefixCls:l,onClick:em,onKeyPress:e$,showTitle:E,itemRender:q,page:-1},eP=en-1>0?en-1:0,eT=en+1=2*eH&&3!==en&&(eN[0]=m().cloneElement(eN[0],{className:h()("".concat(l,"-item-after-jump-prev"),eN[0].props.className)}),eN.unshift(ew)),eO-en>=2*eH&&en!==eO-2){var eG=eN[eN.length-1];eN[eN.length-1]=m().cloneElement(eG,{className:h()("".concat(l,"-item-before-jump-next"),eG.props.className)}),eN.push(ek)}1!==eX&&eN.unshift(m().createElement(bp,(0,R.A)({},eI,{key:1,page:1}))),eY!==eO&&eN.push(m().createElement(bp,(0,R.A)({},eI,{key:eO,page:eO})))}var eQ=(t=q(eP,"prev",eu(X,"prev page")),m().isValidElement(t)?m().cloneElement(t,{disabled:!eg}):t);if(eQ){var eZ=!eg||!eO;eQ=m().createElement("li",{title:E?I.prev_page:null,onClick:ev,tabIndex:eZ?null:0,onKeyDown:function(e){e$(e,ev)},className:h()("".concat(l,"-prev"),(0,ej.A)({},"".concat(l,"-disabled"),eZ)),"aria-disabled":eZ},eQ)}var eJ=(n=q(eT,"next",eu(Y,"next page")),m().isValidElement(n)?m().cloneElement(n,{disabled:!eh}):n);eJ&&(T?(o=!eh,a=eg?0:null):a=(o=!eh||!eO)?null:0,eJ=m().createElement("li",{title:E?I.next_page:null,onClick:eb,tabIndex:a,onKeyDown:function(e){e$(e,eb)},className:h()("".concat(l,"-next"),(0,ej.A)({},"".concat(l,"-disabled"),o)),"aria-disabled":o},eJ));var e0=h()(l,s,(r={},(0,ej.A)(r,"".concat(l,"-start"),"start"===A),(0,ej.A)(r,"".concat(l,"-center"),"center"===A),(0,ej.A)(r,"".concat(l,"-end"),"end"===A),(0,ej.A)(r,"".concat(l,"-simple"),T),(0,ej.A)(r,"".concat(l,"-disabled"),P),r));return m().createElement("ul",(0,R.A)({className:e0,style:j,ref:U},eC),eS,eQ,T?eF:eN,eJ,m().createElement(bf,{locale:I,rootPrefixCls:l,disabled:P,selectPrefixCls:void 0===c?"rc-select":c,changeSize:function(e){var t=bv(e,Z,g),n=en>t&&0!==t?t:en;J(e),el(n),null==M||M(en,e),er(n),null==x||x(n,e)},pageSize:Z,pageSizeOptions:_,quickGo:ef?em:null,goButton:eB,showSizeChanger:B,sizeChangerRender:F}))};var by=n(96069),bx=n(37414);let b$=(0,w.bf)(["Pagination","bordered"],e=>[(e=>{let{componentCls:t}=e;return{[`${t}${t}-bordered${t}-disabled:not(${t}-mini)`]:{"&, &:hover":{[`${t}-item-link`]:{borderColor:e.colorBorder}},"&:focus-visible":{[`${t}-item-link`]:{borderColor:e.colorBorder}},[`${t}-item, ${t}-item-link`]:{backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder,[`&:hover:not(${t}-item-active)`]:{backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder,a:{color:e.colorTextDisabled}},[`&${t}-item-active`]:{backgroundColor:e.itemActiveBgDisabled}},[`${t}-prev, ${t}-next`]:{"&:hover button":{backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder,color:e.colorTextDisabled},[`${t}-item-link`]:{backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder}}},[`${t}${t}-bordered:not(${t}-mini)`]:{[`${t}-prev, ${t}-next`]:{"&:hover button":{borderColor:e.colorPrimaryHover,backgroundColor:e.itemBg},[`${t}-item-link`]:{backgroundColor:e.itemLinkBg,borderColor:e.colorBorder},[`&:hover ${t}-item-link`]:{borderColor:e.colorPrimary,backgroundColor:e.itemBg,color:e.colorPrimary},[`&${t}-disabled`]:{[`${t}-item-link`]:{borderColor:e.colorBorder,color:e.colorTextDisabled}}},[`${t}-item`]:{backgroundColor:e.itemBg,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,[`&:hover:not(${t}-item-active)`]:{borderColor:e.colorPrimary,backgroundColor:e.itemBg,a:{color:e.colorPrimary}},"&-active":{borderColor:e.colorPrimary}}}}})((0,bx.FY)(e))],bx.cH);function bA(e){return(0,p.useMemo)(()=>"boolean"==typeof e?[e,{}]:e&&"object"==typeof e?[!0,e]:[void 0,void 0],[e])}var bw=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let bC=e=>{let{align:t,prefixCls:n,selectPrefixCls:r,className:o,rootClassName:a,style:i,size:l,locale:c,responsive:s,showSizeChanger:u,selectComponentClass:d,pageSizeOptions:f}=e,m=bw(e,["align","prefixCls","selectPrefixCls","className","rootClassName","style","size","locale","responsive","showSizeChanger","selectComponentClass","pageSizeOptions"]),{xs:g}=aw(s),[,v]=(0,tb.Ay)(),{getPrefixCls:b,direction:y,pagination:x={}}=p.useContext(A.QO),$=b("pagination",n),[w,C,S]=(0,bx.Ay)($),k=(0,oT.A)(l),E="small"===k||!!(g&&!k&&s),[O]=(0,tI.A)("Pagination",by.A),M=Object.assign(Object.assign({},O),c),[N,I]=bA(u),[j,z]=bA(x.showSizeChanger),R=null!=I?I:z,P=d||ap,T=p.useMemo(()=>f?f.map(e=>Number(e)):void 0,[f]),D=p.useMemo(()=>{let e=p.createElement("span",{className:`${$}-item-ellipsis`},"•••"),t=p.createElement("button",{className:`${$}-item-link`,type:"button",tabIndex:-1},"rtl"===y?p.createElement(io.A,null):p.createElement(l$,null)),n=p.createElement("button",{className:`${$}-item-link`,type:"button",tabIndex:-1},"rtl"===y?p.createElement(l$,null):p.createElement(io.A,null));return{prevIcon:t,nextIcon:n,jumpPrevIcon:p.createElement("a",{className:`${$}-item-link`},p.createElement("div",{className:`${$}-item-container`},"rtl"===y?p.createElement(bs,{className:`${$}-item-link-icon`}):p.createElement(bl,{className:`${$}-item-link-icon`}),e)),jumpNextIcon:p.createElement("a",{className:`${$}-item-link`},p.createElement("div",{className:`${$}-item-container`},"rtl"===y?p.createElement(bl,{className:`${$}-item-link-icon`}):p.createElement(bs,{className:`${$}-item-link-icon`}),e))}},[y,$]),L=b("select",r),B=h()({[`${$}-${t}`]:!!t,[`${$}-mini`]:E,[`${$}-rtl`]:"rtl"===y,[`${$}-bordered`]:v.wireframe},null==x?void 0:x.className,o,a,C,S),F=Object.assign(Object.assign({},null==x?void 0:x.style),i);return w(p.createElement(p.Fragment,null,v.wireframe&&p.createElement(b$,{prefixCls:$}),p.createElement(bb,Object.assign({},D,m,{style:F,prefixCls:$,selectPrefixCls:L,className:B,locale:M,pageSizeOptions:T,showSizeChanger:null!=N?N:j,sizeChangerRender:e=>{var t;let{disabled:n,size:r,onSizeChange:o,"aria-label":a,className:i,options:l}=e,{className:c,onChange:s}=R||{},u=null==(t=l.find(e=>String(e.value)===String(r)))?void 0:t.value;return p.createElement(P,Object.assign({disabled:n,showSearch:!0,popupMatchSelectWidth:!1,getPopupContainer:e=>e.parentNode,"aria-label":a,options:l},R,{value:u,onChange:(e,t)=>{null==o||o(e),null==s||s(e,t)},size:E?"small":"middle",className:h()(i,c)}))}}))))},bS=80*Math.PI,bk=e=>{let{dotClassName:t,style:n,hasCircleCls:r}=e;return p.createElement("circle",{className:h()(`${t}-circle`,{[`${t}-circle-bg`]:r}),r:40,cx:50,cy:50,strokeWidth:20,style:n})},bE=e=>{let{percent:t,prefixCls:n}=e,r=`${n}-dot`,o=`${r}-holder`,a=`${o}-hidden`,[i,l]=p.useState(!1);(0,rf.A)(()=>{0!==t&&l(!0)},[0!==t]);let c=Math.max(Math.min(t,100),0);if(!i)return null;let s={strokeDashoffset:`${bS/4}`,strokeDasharray:`${bS*c/100} ${bS*(100-c)/100}`};return p.createElement("span",{className:h()(o,`${r}-progress`,c<=0&&a)},p.createElement("svg",{viewBox:"0 0 100 100",role:"progressbar","aria-valuemin":0,"aria-valuemax":100,"aria-valuenow":c},p.createElement(bk,{dotClassName:r,hasCircleCls:!0}),p.createElement(bk,{dotClassName:r,style:s})))};function bO(e){let{prefixCls:t,percent:n=0}=e,r=`${t}-dot`,o=`${r}-holder`,a=`${o}-hidden`;return p.createElement(p.Fragment,null,p.createElement("span",{className:h()(o,n>0&&a)},p.createElement("span",{className:h()(r,`${t}-dot-spin`)},[1,2,3,4].map(e=>p.createElement("i",{className:`${t}-dot-item`,key:e})))),p.createElement(bE,{prefixCls:t,percent:n}))}function bM(e){let{prefixCls:t,indicator:n,percent:r}=e,o=`${t}-dot`;return n&&p.isValidElement(n)?(0,W.Ob)(n,{className:h()(n.props.className,o),percent:r}):p.createElement(bO,{prefixCls:t,percent:r})}let bN=new q.Mo("antSpinMove",{to:{opacity:1}}),bI=new q.Mo("antRotate",{to:{transform:"rotate(405deg)"}}),bj=(0,w.OF)("Spin",e=>[(e=>{let{componentCls:t,calc:n}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"absolute",display:"none",color:e.colorPrimary,fontSize:0,textAlign:"center",verticalAlign:"middle",opacity:0,transition:`transform ${e.motionDurationSlow} ${e.motionEaseInOutCirc}`,"&-spinning":{position:"relative",display:"inline-block",opacity:1},[`${t}-text`]:{fontSize:e.fontSize,paddingTop:n(n(e.dotSize).sub(e.fontSize)).div(2).add(2).equal()},"&-fullscreen":{position:"fixed",width:"100vw",height:"100vh",backgroundColor:e.colorBgMask,zIndex:e.zIndexPopupBase,inset:0,display:"flex",alignItems:"center",flexDirection:"column",justifyContent:"center",opacity:0,visibility:"hidden",transition:`all ${e.motionDurationMid}`,"&-show":{opacity:1,visibility:"visible"},[t]:{[`${t}-dot-holder`]:{color:e.colorWhite},[`${t}-text`]:{color:e.colorTextLightSolid}}},"&-nested-loading":{position:"relative",[`> div > ${t}`]:{position:"absolute",top:0,insetInlineStart:0,zIndex:4,display:"block",width:"100%",height:"100%",maxHeight:e.contentHeight,[`${t}-dot`]:{position:"absolute",top:"50%",insetInlineStart:"50%",margin:n(e.dotSize).mul(-1).div(2).equal()},[`${t}-text`]:{position:"absolute",top:"50%",width:"100%",textShadow:`0 1px 2px ${e.colorBgContainer}`},[`&${t}-show-text ${t}-dot`]:{marginTop:n(e.dotSize).div(2).mul(-1).sub(10).equal()},"&-sm":{[`${t}-dot`]:{margin:n(e.dotSizeSM).mul(-1).div(2).equal()},[`${t}-text`]:{paddingTop:n(n(e.dotSizeSM).sub(e.fontSize)).div(2).add(2).equal()},[`&${t}-show-text ${t}-dot`]:{marginTop:n(e.dotSizeSM).div(2).mul(-1).sub(10).equal()}},"&-lg":{[`${t}-dot`]:{margin:n(e.dotSizeLG).mul(-1).div(2).equal()},[`${t}-text`]:{paddingTop:n(n(e.dotSizeLG).sub(e.fontSize)).div(2).add(2).equal()},[`&${t}-show-text ${t}-dot`]:{marginTop:n(e.dotSizeLG).div(2).mul(-1).sub(10).equal()}}},[`${t}-container`]:{position:"relative",transition:`opacity ${e.motionDurationSlow}`,"&::after":{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,zIndex:10,width:"100%",height:"100%",background:e.colorBgContainer,opacity:0,transition:`all ${e.motionDurationSlow}`,content:'""',pointerEvents:"none"}},[`${t}-blur`]:{clear:"both",opacity:.5,userSelect:"none",pointerEvents:"none","&::after":{opacity:.4,pointerEvents:"auto"}}},"&-tip":{color:e.spinDotDefault},[`${t}-dot-holder`]:{width:"1em",height:"1em",fontSize:e.dotSize,display:"inline-block",transition:`transform ${e.motionDurationSlow} ease, opacity ${e.motionDurationSlow} ease`,transformOrigin:"50% 50%",lineHeight:1,color:e.colorPrimary,"&-hidden":{transform:"scale(0.3)",opacity:0}},[`${t}-dot-progress`]:{position:"absolute",top:"50%",transform:"translate(-50%, -50%)",insetInlineStart:"50%"},[`${t}-dot`]:{position:"relative",display:"inline-block",fontSize:e.dotSize,width:"1em",height:"1em","&-item":{position:"absolute",display:"block",width:n(e.dotSize).sub(n(e.marginXXS).div(2)).div(2).equal(),height:n(e.dotSize).sub(n(e.marginXXS).div(2)).div(2).equal(),background:"currentColor",borderRadius:"100%",transform:"scale(0.75)",transformOrigin:"50% 50%",opacity:.3,animationName:bN,animationDuration:"1s",animationIterationCount:"infinite",animationTimingFunction:"linear",animationDirection:"alternate","&:nth-child(1)":{top:0,insetInlineStart:0,animationDelay:"0s"},"&:nth-child(2)":{top:0,insetInlineEnd:0,animationDelay:"0.4s"},"&:nth-child(3)":{insetInlineEnd:0,bottom:0,animationDelay:"0.8s"},"&:nth-child(4)":{bottom:0,insetInlineStart:0,animationDelay:"1.2s"}},"&-spin":{transform:"rotate(45deg)",animationName:bI,animationDuration:"1.2s",animationIterationCount:"infinite",animationTimingFunction:"linear"},"&-circle":{strokeLinecap:"round",transition:["stroke-dashoffset","stroke-dasharray","stroke","stroke-width","opacity"].map(t=>`${t} ${e.motionDurationSlow} ease`).join(","),fillOpacity:0,stroke:"currentcolor"},"&-circle-bg":{stroke:e.colorFillSecondary}},[`&-sm ${t}-dot`]:{"&, &-holder":{fontSize:e.dotSizeSM}},[`&-sm ${t}-dot-holder`]:{i:{width:n(n(e.dotSizeSM).sub(n(e.marginXXS).div(2))).div(2).equal(),height:n(n(e.dotSizeSM).sub(n(e.marginXXS).div(2))).div(2).equal()}},[`&-lg ${t}-dot`]:{"&, &-holder":{fontSize:e.dotSizeLG}},[`&-lg ${t}-dot-holder`]:{i:{width:n(n(e.dotSizeLG).sub(e.marginXXS)).div(2).equal(),height:n(n(e.dotSizeLG).sub(e.marginXXS)).div(2).equal()}},[`&${t}-show-text ${t}-text`]:{display:"block"}})}})((0,ey.oX)(e,{spinDotDefault:e.colorTextDescription}))],e=>{let{controlHeightLG:t,controlHeight:n}=e;return{contentHeight:400,dotSize:t/2,dotSizeSM:.35*t,dotSizeLG:n}}),bz=[[30,.05],[70,.03],[96,.01]];var bR=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let bP=e=>{var t;let{prefixCls:n,spinning:r=!0,delay:o=0,className:a,rootClassName:i,size:l="default",tip:s,wrapperClassName:u,style:d,children:f,fullscreen:m=!1,indicator:g,percent:v}=e,b=bR(e,["prefixCls","spinning","delay","className","rootClassName","size","tip","wrapperClassName","style","children","fullscreen","indicator","percent"]),{getPrefixCls:y,direction:x,spin:$}=p.useContext(A.QO),w=y("spin",n),[C,S,k]=bj(w),[E,O]=p.useState(()=>r&&(!r||!o||!!isNaN(Number(o)))),M=function(e,t){let[n,r]=p.useState(0),o=p.useRef(null),a="auto"===t;return p.useEffect(()=>(a&&e&&(r(0),o.current=setInterval(()=>{r(e=>{let t=100-e;for(let n=0;n{clearInterval(o.current)}),[a,e]),a?n:t}(E,v);p.useEffect(()=>{if(r){let e=dd(o,()=>{O(!0)});return e(),()=>{var t;null==(t=null==e?void 0:e.cancel)||t.call(e)}}O(!1)},[o,r]);let N=p.useMemo(()=>void 0!==f&&!m,[f,m]),I=h()(w,null==$?void 0:$.className,{[`${w}-sm`]:"small"===l,[`${w}-lg`]:"large"===l,[`${w}-spinning`]:E,[`${w}-show-text`]:!!s,[`${w}-rtl`]:"rtl"===x},a,!m&&i,S,k),j=h()(`${w}-container`,{[`${w}-blur`]:E}),z=null!=(t=null!=g?g:null==$?void 0:$.indicator)?t:c,R=Object.assign(Object.assign({},null==$?void 0:$.style),d),P=p.createElement("div",Object.assign({},b,{style:R,className:I,"aria-live":"polite","aria-busy":E}),p.createElement(bM,{prefixCls:w,indicator:z,percent:M}),s&&(N||m)?p.createElement("div",{className:`${w}-text`},s):null);return C(N?p.createElement("div",Object.assign({},b,{className:h()(`${w}-nested-loading`,u,S,k)}),E&&p.createElement("div",{key:"loading"},P),p.createElement("div",{className:j,key:"container"},f)):m?p.createElement("div",{className:h()(`${w}-fullscreen`,{[`${w}-fullscreen-show`]:E},i,S,k)},P):P)};bP.setDefaultIndicator=e=>{c=e};let bT=bP,bD=m().createContext({});bD.Consumer;var bL=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let bB=m().forwardRef((e,t)=>{let n,{prefixCls:r,children:o,actions:a,extra:i,styles:l,className:c,classNames:s,colStyle:u}=e,d=bL(e,["prefixCls","children","actions","extra","styles","className","classNames","colStyle"]),{grid:f,itemLayout:g}=(0,p.useContext)(bD),{getPrefixCls:v,list:b}=(0,p.useContext)(A.QO),y=e=>{var t,n;return h()(null==(n=null==(t=null==b?void 0:b.item)?void 0:t.classNames)?void 0:n[e],null==s?void 0:s[e])},x=e=>{var t,n;return Object.assign(Object.assign({},null==(n=null==(t=null==b?void 0:b.item)?void 0:t.styles)?void 0:n[e]),null==l?void 0:l[e])},$=v("list",r),w=a&&a.length>0&&m().createElement("ul",{className:h()(`${$}-item-action`,y("actions")),key:"actions",style:x("actions")},a.map((e,t)=>m().createElement("li",{key:`${$}-item-action-${t}`},e,t!==a.length-1&&m().createElement("em",{className:`${$}-item-action-split`})))),C=m().createElement(f?"div":"li",Object.assign({},d,f?{}:{ref:t},{className:h()(`${$}-item`,{[`${$}-item-no-flex`]:!("vertical"===g?!!i:(n=!1,p.Children.forEach(o,e=>{"string"==typeof e&&(n=!0)}),!(n&&p.Children.count(o)>1)))},c)}),"vertical"===g&&i?[m().createElement("div",{className:`${$}-item-main`,key:"content"},o,w),m().createElement("div",{className:h()(`${$}-item-extra`,y("extra")),key:"extra",style:x("extra")},i)]:[o,w,(0,W.Ob)(i,{key:"extra"})]);return f?m().createElement(pf,{ref:t,flex:1,style:u},C):C});bB.Meta=e=>{var{prefixCls:t,className:n,avatar:r,title:o,description:a}=e,i=bL(e,["prefixCls","className","avatar","title","description"]);let{getPrefixCls:l}=(0,p.useContext)(A.QO),c=l("list",t),s=h()(`${c}-item-meta`,n),u=m().createElement("div",{className:`${c}-item-meta-content`},o&&m().createElement("h4",{className:`${c}-item-meta-title`},o),a&&m().createElement("div",{className:`${c}-item-meta-description`},a));return m().createElement("div",Object.assign({},i,{className:s}),r&&m().createElement("div",{className:`${c}-item-meta-avatar`},r),(o||a)&&u)};let bF=(0,w.OF)("List",e=>{let t=(0,ey.oX)(e,{listBorderedCls:`${e.componentCls}-bordered`,minHeight:e.controlHeightLG});return[(e=>{let{componentCls:t,antCls:n,controlHeight:r,minHeight:o,paddingSM:a,marginLG:i,padding:l,itemPadding:c,colorPrimary:s,itemPaddingSM:u,itemPaddingLG:d,paddingXS:f,margin:p,colorText:m,colorTextDescription:g,motionDurationSlow:h,lineWidth:v,headerBg:b,footerBg:y,emptyTextPadding:x,metaMarginBottom:$,avatarMarginRight:A,titleMarginBottom:w,descriptionFontSize:C}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative","*":{outline:"none"},[`${t}-header`]:{background:b},[`${t}-footer`]:{background:y},[`${t}-header, ${t}-footer`]:{paddingBlock:a},[`${t}-pagination`]:{marginBlockStart:i,[`${n}-pagination-options`]:{textAlign:"start"}},[`${t}-spin`]:{minHeight:o,textAlign:"center"},[`${t}-items`]:{margin:0,padding:0,listStyle:"none"},[`${t}-item`]:{display:"flex",alignItems:"center",justifyContent:"space-between",padding:c,color:m,[`${t}-item-meta`]:{display:"flex",flex:1,alignItems:"flex-start",maxWidth:"100%",[`${t}-item-meta-avatar`]:{marginInlineEnd:A},[`${t}-item-meta-content`]:{flex:"1 0",width:0,color:m},[`${t}-item-meta-title`]:{margin:`0 0 ${(0,q.zA)(e.marginXXS)} 0`,color:m,fontSize:e.fontSize,lineHeight:e.lineHeight,"> a":{color:m,transition:`all ${h}`,"&:hover":{color:s}}},[`${t}-item-meta-description`]:{color:g,fontSize:C,lineHeight:e.lineHeight}},[`${t}-item-action`]:{flex:"0 0 auto",marginInlineStart:e.marginXXL,padding:0,fontSize:0,listStyle:"none","& > li":{position:"relative",display:"inline-block",padding:`0 ${(0,q.zA)(f)}`,color:g,fontSize:e.fontSize,lineHeight:e.lineHeight,textAlign:"center","&:first-child":{paddingInlineStart:0}},[`${t}-item-action-split`]:{position:"absolute",insetBlockStart:"50%",insetInlineEnd:0,width:v,height:e.calc(e.fontHeight).sub(e.calc(e.marginXXS).mul(2)).equal(),transform:"translateY(-50%)",backgroundColor:e.colorSplit}}},[`${t}-empty`]:{padding:`${(0,q.zA)(l)} 0`,color:g,fontSize:e.fontSizeSM,textAlign:"center"},[`${t}-empty-text`]:{padding:x,color:e.colorTextDisabled,fontSize:e.fontSize,textAlign:"center"},[`${t}-item-no-flex`]:{display:"block"}}),[`${t}-grid ${n}-col > ${t}-item`]:{display:"block",maxWidth:"100%",marginBlockEnd:p,paddingBlock:0,borderBlockEnd:"none"},[`${t}-vertical ${t}-item`]:{alignItems:"initial",[`${t}-item-main`]:{display:"block",flex:1},[`${t}-item-extra`]:{marginInlineStart:i},[`${t}-item-meta`]:{marginBlockEnd:$,[`${t}-item-meta-title`]:{marginBlockStart:0,marginBlockEnd:w,color:m,fontSize:e.fontSizeLG,lineHeight:e.lineHeightLG}},[`${t}-item-action`]:{marginBlockStart:l,marginInlineStart:"auto","> li":{padding:`0 ${(0,q.zA)(l)}`,"&:first-child":{paddingInlineStart:0}}}},[`${t}-split ${t}-item`]:{borderBlockEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`,"&:last-child":{borderBlockEnd:"none"}},[`${t}-split ${t}-header`]:{borderBlockEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`},[`${t}-split${t}-empty ${t}-footer`]:{borderTop:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`},[`${t}-loading ${t}-spin-nested-loading`]:{minHeight:r},[`${t}-split${t}-something-after-last-item ${n}-spin-container > ${t}-items > ${t}-item:last-child`]:{borderBlockEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`},[`${t}-lg ${t}-item`]:{padding:d},[`${t}-sm ${t}-item`]:{padding:u},[`${t}:not(${t}-vertical)`]:{[`${t}-item-no-flex`]:{[`${t}-item-action`]:{float:"right"}}}}})(t),(e=>{let{listBorderedCls:t,componentCls:n,paddingLG:r,margin:o,itemPaddingSM:a,itemPaddingLG:i,marginLG:l,borderRadiusLG:c}=e;return{[t]:{border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderRadius:c,[`${n}-header,${n}-footer,${n}-item`]:{paddingInline:r},[`${n}-pagination`]:{margin:`${(0,q.zA)(o)} ${(0,q.zA)(l)}`}},[`${t}${n}-sm`]:{[`${n}-item,${n}-header,${n}-footer`]:{padding:a}},[`${t}${n}-lg`]:{[`${n}-item,${n}-header,${n}-footer`]:{padding:i}}}})(t),(e=>{let{componentCls:t,screenSM:n,screenMD:r,marginLG:o,marginSM:a,margin:i}=e;return{[`@media screen and (max-width:${r}px)`]:{[t]:{[`${t}-item`]:{[`${t}-item-action`]:{marginInlineStart:o}}},[`${t}-vertical`]:{[`${t}-item`]:{[`${t}-item-extra`]:{marginInlineStart:o}}}},[`@media screen and (max-width: ${n}px)`]:{[t]:{[`${t}-item`]:{flexWrap:"wrap",[`${t}-action`]:{marginInlineStart:a}}},[`${t}-vertical`]:{[`${t}-item`]:{flexWrap:"wrap-reverse",[`${t}-item-main`]:{minWidth:e.contentWidth},[`${t}-item-extra`]:{margin:`auto auto ${(0,q.zA)(i)}`}}}}}})(t)]},e=>({contentWidth:220,itemPadding:`${(0,q.zA)(e.paddingContentVertical)} 0`,itemPaddingSM:`${(0,q.zA)(e.paddingContentVerticalSM)} ${(0,q.zA)(e.paddingContentHorizontal)}`,itemPaddingLG:`${(0,q.zA)(e.paddingContentVerticalLG)} ${(0,q.zA)(e.paddingContentHorizontalLG)}`,headerBg:"transparent",footerBg:"transparent",emptyTextPadding:e.padding,metaMarginBottom:e.padding,avatarMarginRight:e.padding,titleMarginBottom:e.paddingSM,descriptionFontSize:e.fontSize}));var bH=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let b_=p.forwardRef(function(e,t){var{pagination:n=!1,prefixCls:r,bordered:o=!1,split:a=!0,className:i,rootClassName:l,style:c,children:s,itemLayout:u,loadMore:d,grid:f,dataSource:m=[],size:g,header:v,footer:b,loading:x=!1,rowKey:$,renderItem:w,locale:C}=e,S=bH(e,["pagination","prefixCls","bordered","split","className","rootClassName","style","children","itemLayout","loadMore","grid","dataSource","size","header","footer","loading","rowKey","renderItem","locale"]);let k=n&&"object"==typeof n?n:{},[E,O]=p.useState(k.defaultCurrent||1),[M,N]=p.useState(k.defaultPageSize||10),{getPrefixCls:I,renderEmpty:j,direction:z,list:R}=p.useContext(A.QO),P=e=>(t,r)=>{var o;O(t),N(r),n&&(null==(o=null==n?void 0:n[e])||o.call(n,t,r))},T=P("onChange"),D=P("onShowSizeChange"),L=I("list",r),[B,F,H]=bF(L),_=x;"boolean"==typeof _&&(_={spinning:_});let W=!!(null==_?void 0:_.spinning),q=(0,oT.A)(g),V="";switch(q){case"large":V="lg";break;case"small":V="sm"}let K=h()(L,{[`${L}-vertical`]:"vertical"===u,[`${L}-${V}`]:V,[`${L}-split`]:a,[`${L}-bordered`]:o,[`${L}-loading`]:W,[`${L}-grid`]:!!f,[`${L}-something-after-last-item`]:!!(d||n||b),[`${L}-rtl`]:"rtl"===z},null==R?void 0:R.className,i,l,F,H),X=ba({current:1,total:0},{total:m.length,current:E,pageSize:M},n||{}),Y=Math.ceil(X.total/X.pageSize);X.current>Y&&(X.current=Y);let U=n&&p.createElement("div",{className:h()(`${L}-pagination`)},p.createElement(bC,Object.assign({align:"end"},X,{onChange:T,onShowSizeChange:D}))),G=(0,y.A)(m);n&&m.length>(X.current-1)*X.pageSize&&(G=(0,y.A)(m).splice((X.current-1)*X.pageSize,X.pageSize));let Q=aw(Object.keys(f||{}).some(e=>["xs","sm","md","lg","xl","xxl"].includes(e))),Z=p.useMemo(()=>{for(let e=0;e{if(!f)return;let e=Z&&f[Z]?f[Z]:f.column;if(e)return{width:`${100/e}%`,maxWidth:`${100/e}%`}},[JSON.stringify(f),Z]),ee=W&&p.createElement("div",{style:{minHeight:53}});if(G.length>0){let e=G.map((e,t)=>{let n;return w?((n="function"==typeof $?$(e):$?e[$]:e.key)||(n=`list-item-${t}`),p.createElement(p.Fragment,{key:n},w(e,t))):null});ee=f?p.createElement(va,{gutter:f.gutter},p.Children.map(e,e=>p.createElement("div",{key:null==e?void 0:e.key,style:J},e))):p.createElement("ul",{className:`${L}-items`},e)}else s||W||(ee=p.createElement("div",{className:`${L}-empty-text`},(null==C?void 0:C.emptyText)||(null==j?void 0:j("List"))||p.createElement(oP,{componentName:"List"})));let et=X.position||"bottom",en=p.useMemo(()=>({grid:f,itemLayout:u}),[JSON.stringify(f),u]);return B(p.createElement(bD.Provider,{value:en},p.createElement("div",Object.assign({ref:t,style:Object.assign(Object.assign({},null==R?void 0:R.style),c),className:K},S),("top"===et||"both"===et)&&U,v&&p.createElement("div",{className:`${L}-header`},v),p.createElement(bT,Object.assign({},_),ee,s),b&&p.createElement("div",{className:`${L}-footer`},b),d||("bottom"===et||"both"===et)&&U)))});b_.Item=bB;let bW=b_;var bq=n(45903),bV=p.createContext(null);let bK=function(e){var t=p.useContext(bV),n=t.notFoundContent,r=t.activeIndex,o=t.setActiveIndex,a=t.selectOption,i=t.onFocus,l=t.onBlur,c=e.prefixCls,s=e.options,u=s[r]||{};return p.createElement(lv,{prefixCls:"".concat(c,"-menu"),activeKey:u.key,onSelect:function(e){var t=e.key;a(s.find(function(e){return e.key===t}))},onFocus:i,onBlur:l},s.map(function(e,t){var n=e.key,r=e.disabled,a=e.className,i=e.style,l=e.label;return p.createElement(i3,{key:n,disabled:r,className:a,style:i,onMouseEnter:function(){o(t)}},l)}),!s.length&&p.createElement(i3,{disabled:!0},n))};var bX={bottomRight:{points:["tl","br"],offset:[0,4],overflow:{adjustX:1,adjustY:1}},bottomLeft:{points:["tr","bl"],offset:[0,4],overflow:{adjustX:1,adjustY:1}},topRight:{points:["bl","tr"],offset:[0,-4],overflow:{adjustX:1,adjustY:1}},topLeft:{points:["br","tl"],offset:[0,-4],overflow:{adjustX:1,adjustY:1}}};let bY=function(e){var t=e.prefixCls,n=e.options,r=e.children,o=e.visible,a=e.transitionName,i=e.getPopupContainer,l=e.dropdownClassName,c=e.direction,s=e.placement,u="".concat(t,"-dropdown"),d=p.createElement(bK,{prefixCls:u,options:n}),f=(0,p.useMemo)(function(){return"rtl"===c?"top"===s?"topLeft":"bottomLeft":"top"===s?"topRight":"bottomRight"},[c,s]);return p.createElement(rV.A,{prefixCls:u,popupVisible:o,popup:d,popupPlacement:f,popupTransitionName:a,builtinPlacements:bX,getPopupContainer:i,popupClassName:l},r)};function bU(e){return(e||"").toLowerCase()}function bG(e,t){return!t||-1===e.indexOf(t)}function bQ(e,t){var n=t.value,r=e.toLowerCase();return -1!==(void 0===n?"":n).toLowerCase().indexOf(r)}var bZ=["prefixCls","className","style","prefix","split","notFoundContent","value","defaultValue","children","options","open","allowClear","silent","validateSearch","filterOption","onChange","onKeyDown","onKeyUp","onPressEnter","onSearch","onSelect","onFocus","onBlur","transitionName","placement","direction","getPopupContainer","dropdownClassName","rows","visible"],bJ=["suffix","prefixCls","defaultValue","value","allowClear","onChange","classNames","className","disabled","onClear"],b0=(0,p.forwardRef)(function(e,t){var n,r,o,a,i,l=e.prefixCls,c=e.className,s=e.style,u=e.prefix,d=void 0===u?"@":u,f=e.split,g=void 0===f?" ":f,v=e.notFoundContent,b=e.value,y=e.defaultValue,x=e.children,$=e.options,A=e.open,w=(e.allowClear,e.silent),C=e.validateSearch,S=void 0===C?bG:C,k=e.filterOption,E=void 0===k?bQ:k,O=e.onChange,M=e.onKeyDown,N=e.onKeyUp,I=e.onPressEnter,j=e.onSearch,z=e.onSelect,P=e.onFocus,T=e.onBlur,D=e.transitionName,L=e.placement,B=e.direction,F=e.getPopupContainer,H=e.dropdownClassName,_=e.rows,W=(e.visible,(0,eO.A)(e,bZ)),q=(0,p.useMemo)(function(){return Array.isArray(d)?d:[d]},[d]),V=(0,p.useRef)(null),K=(0,p.useRef)(null),X=(0,p.useRef)(null),Y=function(){var e;return null==(e=K.current)||null==(e=e.resizableTextArea)?void 0:e.textArea};m().useImperativeHandle(t,function(){var e;return{focus:function(){var e;return null==(e=K.current)?void 0:e.focus()},blur:function(){var e;return null==(e=K.current)?void 0:e.blur()},textarea:null==(e=K.current)||null==(e=e.resizableTextArea)?void 0:e.textArea,nativeElement:V.current}});var U=(0,p.useState)(!1),G=(0,eE.A)(U,2),Q=G[0],Z=G[1],J=(0,p.useState)(""),ee=(0,eE.A)(J,2),et=ee[0],en=ee[1],er=(0,p.useState)(""),eo=(0,eE.A)(er,2),ea=eo[0],ei=eo[1],el=(0,p.useState)(0),ec=(0,eE.A)(el,2),es=ec[0],eu=ec[1],ed=(0,p.useState)(0),ef=(0,eE.A)(ed,2),ep=ef[0],em=ef[1],eg=(0,p.useState)(!1),eh=(0,eE.A)(eg,2),ev=eh[0],eb=eh[1],ey=(0,rs.A)("",{defaultValue:y,value:b}),ex=(0,eE.A)(ey,2),e$=ex[0],eA=ex[1];(0,p.useEffect)(function(){Q&&X.current&&(X.current.scrollTop=Y().scrollTop)},[Q]);var ew=m().useMemo(function(){if(A)for(var e=0;e=0)return[!0,"",t,n]}return[Q,et,ea,es]},[A,Q,q,e$,et,ea,es]),eC=(0,eE.A)(ew,4),eS=eC[0],ek=eC[1],eN=eC[2],eI=eC[3],ej=m().useCallback(function(e){return($&&$.length>0?$.map(function(e){var t;return(0,eM.A)((0,eM.A)({},e),{},{key:null!=(t=null==e?void 0:e.key)?t:e.value})}):(0,rc.A)(x).map(function(e){var t=e.props,n=e.key;return(0,eM.A)((0,eM.A)({},t),{},{label:t.children,key:n||t.value})})).filter(function(t){return!1===E||E(e,t)})},[x,$,E]),ez=m().useMemo(function(){return ej(ek)},[ej,ek]),eP=(n=(0,p.useState)({id:0,callback:null}),o=(r=(0,eE.A)(n,2))[0],a=r[1],i=(0,p.useCallback)(function(e){a(function(t){return{id:t.id+1,callback:e}})},[]),(0,p.useEffect)(function(){var e;null==(e=o.callback)||e.call(o)},[o]),i),eT=function(e,t,n){Z(!0),en(e),ei(t),eu(n),em(0)},eD=function(e){Z(!1),eu(0),en(""),eP(e)},eL=function(e){eA(e),null==O||O(e)},eB=function(e){var t,n,r,o,a,i,l,c,s,u,d=e.value,f=(n=(t={measureLocation:eI,targetText:void 0===d?"":d,prefix:eN,selectionStart:null==(u=Y())?void 0:u.selectionStart,split:g}).measureLocation,r=t.prefix,o=t.targetText,a=t.selectionStart,i=t.split,(l=e$.slice(0,n))[l.length-i.length]===i&&(l=l.slice(0,l.length-i.length)),l&&(l="".concat(l).concat(i)),(c=function(e,t,n){var r=e[0];if(!r||r===n)return e;for(var o=e,a=t.length,i=0;ie.location?{location:n,prefix:t}:e},{location:-1,prefix:""}),l=i.location,c=i.prefix;if(null==N||N(e),-1===[eR.A.ESC,eR.A.UP,eR.A.DOWN,eR.A.ENTER].indexOf(o))if(-1!==l){var s=a.slice(l+c.length),u=S(s,g),d=!!ej(s).length;u?(r===c||"Shift"===r||o===eR.A.ALT||"AltGraph"===r||eS||s!==ek&&d)&&eT(s,c,l):eS&&eD(),j&&u&&j(s,c)}else eS&&eD()},onPressEnter:function(e){!eS&&I&&I(e)},onFocus:eH,onBlur:e_})),eS&&m().createElement("div",{ref:X,className:"".concat(l,"-measure")},e$.slice(0,eI),m().createElement(bV.Provider,{value:{notFoundContent:void 0===v?"Not Found":v,activeIndex:ep,setActiveIndex:em,selectOption:eB,onFocus:function(){eH()},onBlur:function(){e_()}}},m().createElement(bY,{prefixCls:l,transitionName:D,placement:L,direction:B,options:ez,visible:!0,getPopupContainer:F,dropdownClassName:H},m().createElement("span",null,eN))),e$.slice(eI+eN.length)))}),b1=(0,p.forwardRef)(function(e,t){var n=e.suffix,r=e.prefixCls,o=void 0===r?"rc-mentions":r,a=e.defaultValue,i=e.value,l=e.allowClear,c=e.onChange,s=e.classNames,u=e.className,d=e.disabled,f=e.onClear,g=(0,eO.A)(e,bJ),h=(0,p.useRef)(null),v=(0,p.useRef)(null);(0,p.useImperativeHandle)(t,function(){var e,t;return(0,eM.A)((0,eM.A)({},v.current),{},{nativeElement:(null==(e=h.current)?void 0:e.nativeElement)||(null==(t=v.current)?void 0:t.nativeElement)})});var b=(0,rs.A)("",{defaultValue:a,value:i}),y=(0,eE.A)(b,2),x=y[0],$=y[1],A=function(e){$(e),null==c||c(e)};return m().createElement(pQ.a,{suffix:n,prefixCls:o,value:x,allowClear:l,handleReset:function(){A("")},className:u,classNames:s,disabled:d,ref:h,onClear:f},m().createElement(b0,(0,R.A)({className:null==s?void 0:s.mentions,prefixCls:o,ref:v,onChange:A,disabled:d},g)))});b1.Option=function(){return null};var b2=n(81168);let b4=(0,w.OF)("Mentions",e=>[(e=>{let{componentCls:t,colorTextDisabled:n,controlItemBgHover:r,controlPaddingHorizontal:o,colorText:a,motionDurationSlow:i,lineHeight:l,controlHeight:c,paddingInline:s,paddingBlock:u,fontSize:d,fontSizeIcon:f,colorTextTertiary:p,colorTextQuaternary:m,colorBgElevated:g,paddingXXS:h,paddingLG:v,borderRadius:b,borderRadiusLG:y,boxShadowSecondary:x,itemPaddingVertical:$,calc:A}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),(0,p9.wj)(e)),{position:"relative",display:"inline-block",height:"auto",padding:0,overflow:"hidden",lineHeight:l,whiteSpace:"pre-wrap",verticalAlign:"bottom"}),(0,me.Eb)(e)),(0,me.sA)(e)),(0,me.lB)(e)),{"&-affix-wrapper":Object.assign(Object.assign({},(0,p9.wj)(e)),{display:"inline-flex",padding:0,"&::before":{display:"inline-block",width:0,visibility:"hidden",content:'"\\a0"'},[`${t}-suffix`]:{position:"absolute",top:0,insetInlineEnd:s,bottom:0,zIndex:1,display:"inline-flex",alignItems:"center",margin:"auto"},[`&:has(${t}-suffix) > ${t} > textarea`]:{paddingInlineEnd:v},[`${t}-clear-icon`]:{position:"absolute",insetInlineEnd:0,insetBlockStart:A(d).mul(l).mul(.5).add(u).equal(),transform:"translateY(-50%)",margin:0,color:m,fontSize:f,verticalAlign:-1,cursor:"pointer",transition:`color ${i}`,"&:hover":{color:p},"&:active":{color:a},"&-hidden":{visibility:"hidden"}}}),"&-disabled":{"> textarea":Object.assign({},(0,me.eT)(e))},[`&, &-affix-wrapper > ${t}`]:{[`> textarea, ${t}-measure`]:{color:a,boxSizing:"border-box",minHeight:e.calc(c).sub(2),margin:0,padding:`${(0,q.zA)(u)} ${(0,q.zA)(s)}`,overflow:"inherit",overflowX:"hidden",overflowY:"auto",fontWeight:"inherit",fontSize:"inherit",fontFamily:"inherit",fontStyle:"inherit",fontVariant:"inherit",fontSizeAdjust:"inherit",fontStretch:"inherit",lineHeight:"inherit",direction:"inherit",letterSpacing:"inherit",whiteSpace:"inherit",textAlign:"inherit",verticalAlign:"top",wordWrap:"break-word",wordBreak:"inherit",tabSize:"inherit"},"> textarea":Object.assign({width:"100%",border:"none",outline:"none",resize:"none",backgroundColor:"transparent"},(0,p9.j_)(e.colorTextPlaceholder)),[`${t}-measure`]:{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,zIndex:-1,color:"transparent",pointerEvents:"none","> span":{display:"inline-block",minHeight:"1em"}}},"&-dropdown":Object.assign(Object.assign({},(0,V.dF)(e)),{position:"absolute",top:-9999,insetInlineStart:-9999,zIndex:e.zIndexPopup,boxSizing:"border-box",fontSize:d,fontVariant:"initial",padding:h,backgroundColor:g,borderRadius:y,outline:"none",boxShadow:x,"&-hidden":{display:"none"},[`${t}-dropdown-menu`]:{maxHeight:e.dropdownHeight,margin:0,paddingInlineStart:0,overflow:"auto",listStyle:"none",outline:"none","&-item":Object.assign(Object.assign({},V.L9),{position:"relative",display:"block",minWidth:e.controlItemWidth,padding:`${(0,q.zA)($)} ${(0,q.zA)(o)}`,color:a,borderRadius:b,fontWeight:"normal",lineHeight:l,cursor:"pointer",transition:`background ${i} ease`,"&:hover":{backgroundColor:r},"&-disabled":{color:n,cursor:"not-allowed","&:hover":{color:n,backgroundColor:r,cursor:"not-allowed"}},"&-selected":{color:a,fontWeight:e.fontWeightStrong,backgroundColor:r},"&-active":{backgroundColor:r}})}})})}})((0,ey.oX)(e,(0,uv.C)(e)))],e=>Object.assign(Object.assign({},(0,uv.b)(e)),{dropdownHeight:250,controlItemWidth:100,zIndexPopup:e.zIndexPopupBase+50,itemPaddingVertical:(e.controlHeight-e.fontHeight)/2}));var b3=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let{Option:b6}=b1;function b8(){return!0}let b5=p.forwardRef((e,t)=>{let{prefixCls:n,className:r,rootClassName:o,disabled:a,loading:i,filterOption:l,children:c,notFoundContent:s,options:u,status:d,allowClear:f=!1,popupClassName:m,style:g,variant:v}=e,b=b3(e,["prefixCls","className","rootClassName","disabled","loading","filterOption","children","notFoundContent","options","status","allowClear","popupClassName","style","variant"]),[y,x]=p.useState(!1),$=p.useRef(null),w=(0,_.K4)(t,$),{getPrefixCls:C,renderEmpty:S,direction:k,mentions:E}=p.useContext(A.QO),{status:O,hasFeedback:M,feedbackIcon:N}=p.useContext(oD.$W),I=(0,oO.v)(O,d),j=p.useMemo(()=>void 0!==s?s:(null==S?void 0:S("Select"))||p.createElement(oP,{componentName:"Select"}),[s,S]),z=p.useMemo(()=>i?p.createElement(b6,{value:"ANTD_SEARCHING",disabled:!0},p.createElement(bT,{size:"small"})):c,[i,c]),R=i?[{value:"ANTD_SEARCHING",disabled:!0,label:p.createElement(bT,{size:"small"})}]:u,P=i?b8:l,T=C("mentions",n),D=(0,mc.A)(f),L=(0,eh.A)(T),[B,F,H]=b4(T,L),[W,q]=(0,oL.A)("mentions",v),V=M&&p.createElement(p.Fragment,null,N),K=h()(null==E?void 0:E.className,r,o,H,L);return B(p.createElement(b1,Object.assign({silent:i,prefixCls:T,notFoundContent:j,className:K,disabled:a,allowClear:D,direction:k,style:Object.assign(Object.assign({},null==E?void 0:E.style),g)},b,{filterOption:P,onFocus:function(){b.onFocus&&b.onFocus.apply(b,arguments),x(!0)},onBlur:function(){b.onBlur&&b.onBlur.apply(b,arguments),x(!1)},dropdownClassName:h()(m,o,F,H,L),ref:w,options:R,suffix:V,classNames:{mentions:h()({[`${T}-disabled`]:a,[`${T}-focused`]:y,[`${T}-rtl`]:"rtl"===k},F),variant:h()({[`${T}-${W}`]:q},(0,oO.L)(T,I)),affixWrapper:F}}),z))});b5.Option=b6;let b7=rd(b5,"mentions");b5._InternalPanelDoNotUseOrYouWillBeFired=b7,b5.getMentions=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{prefix:n="@",split:r=" "}=t,o=(0,b2.A)(n);return e.split(r).map(function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=null;return(o.some(n=>e.slice(0,n.length)===n&&(t=n,!0)),null!==t)?{prefix:t,value:e.slice(t.length)}:null}).filter(e=>!!e&&!!e.value)};let b9=b5,ye=null,yt=[],yn={};function yr(){let{getContainer:e,duration:t,rtl:n,maxCount:r,top:o}=yn,a=(null==e?void 0:e())||document.body;return{getContainer:()=>a,duration:t,rtl:n,maxCount:r,top:o}}let yo=m().forwardRef((e,t)=>{let{messageConfig:n,sync:r}=e,{getPrefixCls:o}=(0,p.useContext)(A.QO),a=yn.prefixCls||o("message"),i=(0,p.useContext)(rr),[l,c]=e6(Object.assign(Object.assign(Object.assign({},n),{prefixCls:a}),i.message));return m().useImperativeHandle(t,()=>{let e=Object.assign({},l);return Object.keys(e).forEach(t=>{e[t]=function(){return r(),l[t].apply(l,arguments)}}),{instance:e,sync:r}}),c}),ya=m().forwardRef((e,t)=>{let[n,r]=m().useState(yr),o=()=>{r(yr)};m().useEffect(o,[]);let a=tS(),i=a.getRootPrefixCls(),l=a.getIconPrefixCls(),c=a.getTheme(),s=m().createElement(yo,{ref:t,sync:o,messageConfig:n});return m().createElement(tO,{prefixCls:i,iconPrefixCls:l,theme:c},a.holderRender?a.holderRender(s):s)});function yi(){if(!ye){let e=document.createDocumentFragment(),t={fragment:e};ye=t,(0,tM.K)()(m().createElement(ya,{ref:e=>{let{instance:n,sync:r}=e||{};Promise.resolve().then(()=>{!t.instance&&n&&(t.instance=n,t.sync=r,yi())})}}),e);return}ye.instance&&(yt.forEach(e=>{let{type:t,skipped:n}=e;if(!n)switch(t){case"open":let r=ye.instance.open(Object.assign(Object.assign({},yn),e.config));null==r||r.then(e.resolve),e.setCloseFn(r);break;case"destroy":null==ye||ye.instance.destroy(e.key);break;default:var o;let a=(o=ye.instance)[t].apply(o,(0,y.A)(e.args));null==a||a.then(e.resolve),e.setCloseFn(a)}}),yt=[])}let yl={open:function(e){let t=eJ(t=>{let n,r={type:"open",config:e,resolve:t,setCloseFn:e=>{n=e}};return yt.push(r),()=>{n?n():r.skipped=!0}});return yi(),t},destroy:e=>{yt.push({type:"destroy",key:e}),yi()},config:function(e){var t;yn=Object.assign(Object.assign({},yn),e),null==(t=null==ye?void 0:ye.sync)||t.call(ye)},useMessage:function(e){return e6(e)},_InternalPanelDoNotUseOrYouWillBeFired:e=>{let{prefixCls:t,className:n,type:r,icon:o,content:a}=e,i=eG(e,["prefixCls","className","type","icon","content"]),{getPrefixCls:l}=p.useContext(A.QO),c=t||l("message"),s=(0,eh.A)(c),[u,d,f]=eU(c,s);return u(p.createElement(eP,Object.assign({},i,{prefixCls:c,className:h()(n,d,`${c}-notice-pure-panel`,f,s),eventKey:"pure",duration:null,content:p.createElement(eZ,{prefixCls:c,type:r,icon:o},a)})))}};["success","info","warning","error","loading"].forEach(e=>{yl[e]=function(){let t;for(var n=arguments.length,r=Array(n),o=0;o{let n,o={type:e,args:r,resolve:t,setCloseFn:e=>{n=e}};return yt.push(o),()=>{n?n():o.skipped=!0}}),yi(),t}});let yc=yl;var ys=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let yu=ru(e=>{let{prefixCls:t,className:n,closeIcon:r,closable:o,type:a,title:i,children:l,footer:c}=e,s=ys(e,["prefixCls","className","closeIcon","closable","type","title","children","footer"]),{getPrefixCls:u}=p.useContext(A.QO),d=u(),f=t||u("modal"),m=(0,eh.A)(d),[g,v,b]=nM(f,m),y=`${f}-confirm`,x={};return x=a?{closable:null!=o&&o,title:"",footer:"",children:p.createElement(nR,Object.assign({},e,{prefixCls:f,confirmPrefixCls:y,rootPrefixCls:d,content:l}))}:{closable:null==o||o,title:i,footer:null!==c&&p.createElement(ny,Object.assign({},e)),children:l},g(p.createElement(tG,Object.assign({prefixCls:f,className:h()(v,`${f}-pure-panel`,a&&y,a&&`${y}-${a}`,n,b,m)},s,{closeIcon:nb(f,r),closable:o},x)))});function yd(e){return nF(nH(e))}nI.useModal=nG,nI.info=function(e){return nF(n_(e))},nI.success=function(e){return nF(nW(e))},nI.error=function(e){return nF(nq(e))},nI.warning=yd,nI.warn=yd,nI.confirm=function(e){return nF(nV(e))},nI.destroyAll=function(){for(;nD.length;){let e=nD.pop();e&&e()}},nI.config=function(e){let{rootPrefixCls:t}=e;nL=t},nI._InternalPanelDoNotUseOrYouWillBeFired=yu;let yf=nI,yp=null,ym=[],yg={};function yh(){let{getContainer:e,rtl:t,maxCount:n,top:r,bottom:o,showProgress:a,pauseOnHover:i}=yg,l=(null==e?void 0:e())||document.body;return{getContainer:()=>l,rtl:t,maxCount:n,top:r,bottom:o,showProgress:a,pauseOnHover:i}}let yv=m().forwardRef((e,t)=>{let{notificationConfig:n,sync:r}=e,{getPrefixCls:o}=(0,p.useContext)(A.QO),a=yg.prefixCls||o("notification"),i=(0,p.useContext)(rr),[l,c]=rn(Object.assign(Object.assign(Object.assign({},n),{prefixCls:a}),i.notification));return m().useEffect(r,[]),m().useImperativeHandle(t,()=>{let e=Object.assign({},l);return Object.keys(e).forEach(t=>{e[t]=function(){return r(),l[t].apply(l,arguments)}}),{instance:e,sync:r}}),c}),yb=m().forwardRef((e,t)=>{let[n,r]=m().useState(yh),o=()=>{r(yh)};m().useEffect(o,[]);let a=tS(),i=a.getRootPrefixCls(),l=a.getIconPrefixCls(),c=a.getTheme(),s=m().createElement(yv,{ref:t,sync:o,notificationConfig:n});return m().createElement(tO,{prefixCls:i,iconPrefixCls:l,theme:c},a.holderRender?a.holderRender(s):s)});function yy(){if(!yp){let e=document.createDocumentFragment(),t={fragment:e};yp=t,(0,tM.K)()(m().createElement(yb,{ref:e=>{let{instance:n,sync:r}=e||{};Promise.resolve().then(()=>{!t.instance&&n&&(t.instance=n,t.sync=r,yy())})}}),e);return}yp.instance&&(ym.forEach(e=>{switch(e.type){case"open":yp.instance.open(Object.assign(Object.assign({},yg),e.config));break;case"destroy":null==yp||yp.instance.destroy(e.key)}}),ym=[])}function yx(e){tS(),ym.push({type:"open",config:e}),yy()}let y$={open:yx,destroy:e=>{ym.push({type:"destroy",key:e}),yy()},config:function(e){var t;yg=Object.assign(Object.assign({},yg),e),null==(t=null==yp?void 0:yp.sync)||t.call(yp)},useNotification:function(e){return rn(e)},_InternalPanelDoNotUseOrYouWillBeFired:e=>{let{prefixCls:t,className:n,icon:r,type:o,message:a,description:i,btn:l,closable:c=!0,closeIcon:s,className:u}=e,d=n3(e,["prefixCls","className","icon","type","message","description","btn","closable","closeIcon","className"]),{getPrefixCls:f}=p.useContext(A.QO),m=t||f("notification"),g=`${m}-notice`,v=(0,eh.A)(m),[b,y,x]=n2(m,v);return b(p.createElement("div",{className:h()(`${g}-pure-panel`,y,n,x,v)},p.createElement(n4,{prefixCls:m}),p.createElement(eP,Object.assign({},d,{prefixCls:m,eventKey:"pure",duration:null,closable:c,className:h()({notificationClassName:u}),closeIcon:n6(m,s),content:p.createElement(n5,{prefixCls:g,icon:r,type:o,message:a,description:i,btn:l})}))))}};["success","info","warning","error"].forEach(e=>{y$[e]=t=>yx(Object.assign(Object.assign({},t),{type:e}))});let yA=y$,yw=(0,w.OF)("Popconfirm",e=>(e=>{let{componentCls:t,iconCls:n,antCls:r,zIndexPopup:o,colorText:a,colorWarning:i,marginXXS:l,marginXS:c,fontSize:s,fontWeightStrong:u,colorTextHeading:d}=e;return{[t]:{zIndex:o,[`&${r}-popover`]:{fontSize:s},[`${t}-message`]:{marginBottom:c,display:"flex",flexWrap:"nowrap",alignItems:"start",[`> ${t}-message-icon ${n}`]:{color:i,fontSize:s,lineHeight:1,marginInlineEnd:c},[`${t}-title`]:{fontWeight:u,color:d,"&:only-child":{fontWeight:"normal"}},[`${t}-description`]:{marginTop:l,color:a}},[`${t}-buttons`]:{textAlign:"end",whiteSpace:"nowrap",button:{marginInlineStart:c}}}}})(e),e=>{let{zIndexPopupBase:t}=e;return{zIndexPopup:t+60}},{resetStyle:!1});var yC=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let yS=e=>{let{prefixCls:t,okButtonProps:n,cancelButtonProps:r,title:o,description:a,cancelText:i,okText:l,okType:c="primary",icon:s=p.createElement(D,null),showCancel:u=!0,close:d,onConfirm:f,onCancel:m,onPopupClick:g}=e,{getPrefixCls:h}=p.useContext(A.QO),[v]=(0,tI.A)("Popconfirm",te.A.Popconfirm),b=aO(o),y=aO(a);return p.createElement("div",{className:`${t}-inner-content`,onClick:g},p.createElement("div",{className:`${t}-message`},s&&p.createElement("span",{className:`${t}-message-icon`},s),p.createElement("div",{className:`${t}-message-text`},b&&p.createElement("div",{className:`${t}-title`},b),y&&p.createElement("div",{className:`${t}-description`},y))),p.createElement("div",{className:`${t}-buttons`},u&&p.createElement(tz.Ay,Object.assign({onClick:m,size:"small"},r),i||(null==v?void 0:v.cancelText)),p.createElement(tT,{buttonProps:Object.assign(Object.assign({size:"small"},(0,tR.DU)(c)),n),actionFn:f,close:d,prefixCls:h("btn"),quitOnNullishReturnValue:!0,emitEvent:!0},l||(null==v?void 0:v.okText))))};var yk=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let yE=p.forwardRef((e,t)=>{var n,r;let{prefixCls:o,placement:a="top",trigger:i="click",okType:l="primary",icon:c=p.createElement(D,null),children:s,overlayClassName:u,onOpenChange:d,onVisibleChange:f}=e,m=yk(e,["prefixCls","placement","trigger","okType","icon","children","overlayClassName","onOpenChange","onVisibleChange"]),{getPrefixCls:g}=p.useContext(A.QO),[v,y]=(0,rs.A)(!1,{value:null!=(n=e.open)?n:e.visible,defaultValue:null!=(r=e.defaultOpen)?r:e.defaultVisible}),x=(e,t)=>{y(e,!0),null==f||f(e),null==d||d(e,t)},$=g("popconfirm",o),w=h()($,u),[C]=yw($);return C(p.createElement(aH,Object.assign({},(0,b.A)(m,["title"]),{trigger:i,placement:a,onOpenChange:(t,n)=>{let{disabled:r=!1}=e;r||x(t,n)},open:v,ref:t,overlayClassName:w,content:p.createElement(yS,Object.assign({okType:l,icon:c},e,{prefixCls:$,close:e=>{x(!1,e)},onConfirm:t=>{var n;return null==(n=e.onConfirm)?void 0:n.call(void 0,t)},onCancel:t=>{var n;x(!1,t),null==(n=e.onCancel)||n.call(void 0,t)}})),"data-popover-inject":!0}),s))});yE._InternalPanelDoNotUseOrYouWillBeFired=e=>{let{prefixCls:t,placement:n,className:r,style:o}=e,a=yC(e,["prefixCls","placement","className","style"]),{getPrefixCls:i}=p.useContext(A.QO),l=i("popconfirm",t),[c]=yw(l);return c(p.createElement(aL,{placement:n,className:h()(l,r),style:o,content:p.createElement(yS,Object.assign({prefixCls:l},a))}))};let yO=yE;var yM=n(20464),yN=n(24765);function yI(e,t,n){if(t<0||t>31||e>>>t!=0)throw RangeError("Value out of range");for(var r=t-1;r>=0;r--)n.push(e>>>r&1)}function yj(e,t){return(e>>>t&1)!=0}function yz(e){if(!e)throw Error("Assertion error")}var yR=function(){function e(t,n){(0,J.A)(this,e),(0,ej.A)(this,"modeBits",void 0),(0,ej.A)(this,"numBitsCharCount",void 0),this.modeBits=t,this.numBitsCharCount=n}return(0,ee.A)(e,[{key:"numCharCountBits",value:function(e){return this.numBitsCharCount[Math.floor((e+7)/17)]}}]),e}();(0,ej.A)(yR,"NUMERIC",new yR(1,[10,12,14])),(0,ej.A)(yR,"ALPHANUMERIC",new yR(2,[9,11,13])),(0,ej.A)(yR,"BYTE",new yR(4,[8,16,16])),(0,ej.A)(yR,"KANJI",new yR(8,[8,10,12])),(0,ej.A)(yR,"ECI",new yR(7,[0,0,0]));var yP=(0,ee.A)(function e(t,n){(0,J.A)(this,e),(0,ej.A)(this,"ordinal",void 0),(0,ej.A)(this,"formatBits",void 0),this.ordinal=t,this.formatBits=n});(0,ej.A)(yP,"LOW",new yP(0,1)),(0,ej.A)(yP,"MEDIUM",new yP(1,0)),(0,ej.A)(yP,"QUARTILE",new yP(2,3)),(0,ej.A)(yP,"HIGH",new yP(3,2));var yT=function(){function e(t,n,r){if((0,J.A)(this,e),(0,ej.A)(this,"mode",void 0),(0,ej.A)(this,"numChars",void 0),(0,ej.A)(this,"bitData",void 0),this.mode=t,this.numChars=n,this.bitData=r,n<0)throw RangeError("Invalid argument");this.bitData=r.slice()}return(0,ee.A)(e,[{key:"getData",value:function(){return this.bitData.slice()}}],[{key:"makeBytes",value:function(t){var n,r=[],o=(0,yN.A)(t);try{for(o.s();!(n=o.n()).done;){var a=n.value;yI(a,8,r)}}catch(e){o.e(e)}finally{o.f()}return new e(yR.BYTE,t.length,r)}},{key:"makeNumeric",value:function(t){if(!e.isNumeric(t))throw RangeError("String contains non-numeric characters");for(var n=[],r=0;r=1<e.MAX_VERSION)throw RangeError("Version value out of range");if(a<-1||a>7)throw RangeError("Mask value out of range");this.size=4*t+17;for(var i=[],l=0;l>>9)*1335;var o=(t<<10|n)^21522;yz(o>>>15==0);for(var a=0;a<=5;a++)this.setFunctionModule(8,a,yj(o,a));this.setFunctionModule(8,7,yj(o,6)),this.setFunctionModule(8,8,yj(o,7)),this.setFunctionModule(7,8,yj(o,8));for(var i=9;i<15;i++)this.setFunctionModule(14-i,8,yj(o,i));for(var l=0;l<8;l++)this.setFunctionModule(this.size-1-l,8,yj(o,l));for(var c=8;c<15;c++)this.setFunctionModule(8,this.size-15+c,yj(o,c));this.setFunctionModule(8,this.size-8,!0)}},{key:"drawVersion",value:function(){if(!(this.version<7)){for(var e=this.version,t=0;t<12;t++)e=e<<1^(e>>>11)*7973;var n=this.version<<12|e;yz(n>>>18==0);for(var r=0;r<18;r++){var o=yj(n,r),a=this.size-11+r%3,i=Math.floor(r/3);this.setFunctionModule(a,i,o),this.setFunctionModule(i,a,o)}}}},{key:"drawFinderPattern",value:function(e,t){for(var n=-4;n<=4;n++)for(var r=-4;r<=4;r++){var o=Math.max(Math.abs(r),Math.abs(n)),a=e+r,i=t+n;0<=a&&a=l)&&g.push(t[e])})},v=0;v=1;r-=2){6==r&&(r=5);for(var o=0;o>>3],7-(7&n)),n++)}}yz(n==8*t.length)}},{key:"applyMask",value:function(e){if(e<0||e>7)throw RangeError("Mask value out of range");for(var t=0;t5&&t++:(this.finderPenaltyAddHistory(o,a),r||(t+=this.finderPenaltyCountPatterns(a)*e.PENALTY_N3),r=this.modules[n][i],o=1);t+=this.finderPenaltyTerminateAndCount(r,o,a)*e.PENALTY_N3}for(var l=0;l5&&t++:(this.finderPenaltyAddHistory(s,u),c||(t+=this.finderPenaltyCountPatterns(u)*e.PENALTY_N3),c=this.modules[d][l],s=1);t+=this.finderPenaltyTerminateAndCount(c,s,u)*e.PENALTY_N3}for(var f=0;f0&&e[2]==t&&e[3]==3*t&&e[4]==t&&e[5]==t;return(n&&e[0]>=4*t&&e[6]>=t?1:0)+(n&&e[6]>=4*t&&e[0]>=t?1:0)}},{key:"finderPenaltyTerminateAndCount",value:function(e,t,n){var r=t;return e&&(this.finderPenaltyAddHistory(r,n),r=0),r+=this.size,this.finderPenaltyAddHistory(r,n),this.finderPenaltyCountPatterns(n)}},{key:"finderPenaltyAddHistory",value:function(e,t){var n=e;0==t[0]&&(n+=this.size),t.pop(),t.unshift(n)}}],[{key:"encodeText",value:function(t,n){var r=yT.makeSegments(t);return e.encodeSegments(r,n)}},{key:"encodeBinary",value:function(t,n){var r=yT.makeBytes(t);return e.encodeSegments([r],n)}},{key:"encodeSegments",value:function(t,n){var r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:40,a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:-1,i=!(arguments.length>5)||void 0===arguments[5]||arguments[5];if(!(e.MIN_VERSION<=r&&r<=o&&o<=e.MAX_VERSION)||a<-1||a>7)throw RangeError("Invalid value");for(p=r;;p++){var l=8*e.getNumDataCodewords(p,n),c=yT.getTotalBits(t,p);if(c<=l){m=c;break}if(p>=o)throw RangeError("Data too long")}for(var s=n,u=0,d=[yP.MEDIUM,yP.QUARTILE,yP.HIGH];u>>3]|=e<<7-(7&t)}),new e(p,s,C,a)}},{key:"getNumRawDataModules",value:function(t){if(te.MAX_VERSION)throw RangeError("Version number out of range");var n=(16*t+128)*t+64;if(t>=2){var r=Math.floor(t/7)+2;n-=(25*r-10)*r-55,t>=7&&(n-=36)}return yz(208<=n&&n<=29648),n}},{key:"getNumDataCodewords",value:function(t,n){return Math.floor(e.getNumRawDataModules(t)/8)-e.ECC_CODEWORDS_PER_BLOCK[n.ordinal][t]*e.NUM_ERROR_CORRECTION_BLOCKS[n.ordinal][t]}},{key:"reedSolomonComputeDivisor",value:function(t){if(t<1||t>255)throw RangeError("Degree out of range");for(var n=[],r=0;r>>8!=0||t>>>8!=0)throw RangeError("Byte out of range");for(var n=0,r=7;r>=0;r--)n=n<<1^(n>>>7)*285^(t>>>r&1)*e;return yz(n>>>8==0),n}}]),e}();(0,ej.A)(yD,"MIN_VERSION",1),(0,ej.A)(yD,"MAX_VERSION",40),(0,ej.A)(yD,"PENALTY_N1",3),(0,ej.A)(yD,"PENALTY_N2",3),(0,ej.A)(yD,"PENALTY_N3",40),(0,ej.A)(yD,"PENALTY_N4",10),(0,ej.A)(yD,"ECC_CODEWORDS_PER_BLOCK",[[-1,7,10,15,20,26,18,20,24,30,18,20,24,26,30,22,24,28,30,28,28,28,28,30,30,26,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,10,16,26,18,24,16,18,22,22,26,30,22,22,24,24,28,28,26,26,26,26,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28,28],[-1,13,22,18,26,18,24,18,22,20,24,28,26,24,20,30,24,28,28,26,30,28,30,30,30,30,28,30,30,30,30,30,30,30,30,30,30,30,30,30,30],[-1,17,28,22,16,22,28,26,26,24,28,24,28,22,24,24,30,28,28,26,28,30,24,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30,30]]),(0,ej.A)(yD,"NUM_ERROR_CORRECTION_BLOCKS",[[-1,1,1,1,1,1,2,2,2,2,4,4,4,4,4,6,6,6,6,7,8,8,9,9,10,12,12,12,13,14,15,16,17,18,19,19,20,21,22,24,25],[-1,1,1,1,2,2,4,4,4,5,5,5,8,9,9,10,10,11,13,14,16,17,17,18,20,21,23,25,26,28,29,31,33,35,37,38,40,43,45,47,49],[-1,1,1,2,2,4,4,6,6,8,8,8,10,12,16,12,17,16,18,21,20,23,23,25,27,29,34,34,35,38,40,43,45,48,51,53,56,59,62,65,68],[-1,1,1,2,4,4,4,5,6,8,8,11,11,16,16,18,16,19,21,25,25,25,34,30,32,35,37,40,42,45,48,51,54,57,60,63,66,70,74,77,81]]);var yL={L:yP.LOW,M:yP.MEDIUM,Q:yP.QUARTILE,H:yP.HIGH},yB="#FFFFFF",yF="#000000",yH=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[];return e.forEach(function(e,r){var o=null;e.forEach(function(a,i){if(!a&&null!==o){n.push("M".concat(o+t," ").concat(r+t,"h").concat(i-o,"v1H").concat(o+t,"z")),o=null;return}if(i===e.length-1){if(!a)return;null===o?n.push("M".concat(i+t,",").concat(r+t," h1v1H").concat(i+t,"z")):n.push("M".concat(o+t,",").concat(r+t," h").concat(i+1-o,"v1H").concat(o+t,"z"));return}a&&null===o&&(o=i)})}),n.join("")},y_=function(e,t){return e.slice().map(function(e,n){return n=t.y+t.h?e:e.map(function(e,n){return(n=t.x+t.w)&&e})})},yW=function(e,t,n,r){if(null==r)return null;var o=e.length+2*n,a=Math.floor(.1*t),i=o/t,l=(r.width||a)*i,c=(r.height||a)*i,s=null==r.x?e.length/2-l/2:r.x*i,u=null==r.y?e.length/2-c/2:r.y*i,d=null==r.opacity?1:r.opacity,f=null;if(r.excavate){var p=Math.floor(s),m=Math.floor(u),g=Math.ceil(l+s-p),h=Math.ceil(c+u-m);f={x:p,y:m,w:g,h:h}}return{x:s,y:u,h:c,w:l,excavation:f,opacity:d,crossOrigin:r.crossOrigin}},yq=function(){try{new Path2D().addPath(new Path2D)}catch(e){return!1}return!0}(),yV=function(e){var t=e.value,n=e.level,r=e.minVersion,o=e.includeMargin,a=e.marginSize,i=e.imageSettings,l=e.size,c=m().useMemo(function(){var e=yT.makeSegments(t);return yD.encodeSegments(e,yL[n],r)},[t,n,r]);return m().useMemo(function(){var e=c.getModules(),t=null!=a?Math.max(Math.floor(a),0):4*!!o,n=e.length+2*t,r=yW(e,l,t,i);return{cells:e,margin:t,numCells:n,calculatedImageSettings:r,qrcode:c}},[c,l,i,o,a])},yK=["value","size","level","bgColor","fgColor","includeMargin","minVersion","marginSize","style","imageSettings"],yX=m().forwardRef(function(e,t){var n=e.value,r=e.size,o=void 0===r?128:r,a=e.level,i=e.bgColor,l=void 0===i?yB:i,c=e.fgColor,s=void 0===c?yF:c,u=e.includeMargin,d=e.minVersion,f=e.marginSize,p=e.style,g=e.imageSettings,h=(0,eO.A)(e,yK),v=null==g?void 0:g.src,b=m().useRef(null),y=m().useRef(null),x=m().useCallback(function(e){b.current=e,"function"==typeof t?t(e):t&&(t.current=e)},[t]),$=m().useState(!1),A=(0,eE.A)($,2)[1],w=yV({value:n,level:void 0===a?"L":a,minVersion:void 0===d?1:d,includeMargin:void 0!==u&&u,marginSize:f,imageSettings:g,size:o}),C=w.margin,S=w.cells,k=w.numCells,E=w.calculatedImageSettings;m().useEffect(function(){if(b.current){var e=b.current,t=e.getContext("2d");if(t){var n=S,r=y.current,a=null!=E&&null!==r&&r.complete&&0!==r.naturalHeight&&0!==r.naturalWidth;a&&null!=E.excavation&&(n=y_(S,E.excavation));var i=window.devicePixelRatio||1;e.height=e.width=o*i;var c=o/k*i;t.scale(c,c),t.fillStyle=l,t.fillRect(0,0,k,k),t.fillStyle=s,yq?t.fill(new Path2D(yH(n,C))):S.forEach(function(e,n){e.forEach(function(e,r){e&&t.fillRect(r+C,n+C,1,1)})}),E&&(t.globalAlpha=E.opacity),a&&t.drawImage(r,E.x+C,E.y+C,E.w,E.h)}}}),m().useEffect(function(){A(!1)},[v]);var O=(0,eM.A)({height:o,width:o},p),M=null;return null!=v&&(M=m().createElement("img",{src:v,key:v,style:{display:"none"},onLoad:function(){A(!0)},ref:y,crossOrigin:null==E?void 0:E.crossOrigin})),m().createElement(m().Fragment,null,m().createElement("canvas",(0,R.A)({style:O,height:o,width:o,ref:x,role:"img"},h)),M)}),yY=["value","size","level","bgColor","fgColor","includeMargin","minVersion","title","marginSize","imageSettings"],yU=m().forwardRef(function(e,t){var n=e.value,r=e.size,o=void 0===r?128:r,a=e.level,i=e.bgColor,l=e.fgColor,c=e.includeMargin,s=e.minVersion,u=e.title,d=e.marginSize,f=e.imageSettings,p=(0,eO.A)(e,yY),g=yV({value:n,level:void 0===a?"L":a,minVersion:void 0===s?1:s,includeMargin:void 0!==c&&c,marginSize:d,imageSettings:f,size:o}),h=g.margin,v=g.cells,b=g.numCells,y=g.calculatedImageSettings,x=v,$=null;null!=f&&null!=y&&(null!=y.excavation&&(x=y_(v,y.excavation)),$=m().createElement("image",{href:f.src,height:y.h,width:y.w,x:y.x+h,y:y.y+h,preserveAspectRatio:"none",opacity:y.opacity,crossOrigin:y.crossOrigin}));var A=yH(x,h);return m().createElement("svg",(0,R.A)({height:o,width:o,viewBox:"0 0 ".concat(b," ").concat(b),ref:t,role:"img"},p),!!u&&m().createElement("title",null,u),m().createElement("path",{fill:void 0===i?yB:i,d:"M0,0 h".concat(b,"v").concat(b,"H0z"),shapeRendering:"crispEdges"}),m().createElement("path",{fill:void 0===l?yF:l,d:A,shapeRendering:"crispEdges"}),$)});let yG={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M909.1 209.3l-56.4 44.1C775.8 155.1 656.2 92 521.9 92 290 92 102.3 279.5 102 511.5 101.7 743.7 289.8 932 521.9 932c181.3 0 335.8-115 394.6-276.1 1.5-4.2-.7-8.9-4.9-10.3l-56.7-19.5a8 8 0 00-10.1 4.8c-1.8 5-3.8 10-5.9 14.9-17.3 41-42.1 77.8-73.7 109.4A344.77 344.77 0 01655.9 829c-42.3 17.9-87.4 27-133.8 27-46.5 0-91.5-9.1-133.8-27A341.5 341.5 0 01279 755.2a342.16 342.16 0 01-73.7-109.4c-17.9-42.4-27-87.4-27-133.9s9.1-91.5 27-133.9c17.3-41 42.1-77.8 73.7-109.4 31.6-31.6 68.4-56.4 109.3-73.8 42.3-17.9 87.4-27 133.8-27 46.5 0 91.5 9.1 133.8 27a341.5 341.5 0 01109.3 73.8c9.9 9.9 19.2 20.4 27.8 31.4l-60.2 47a8 8 0 003 14.1l175.6 43c5 1.2 9.9-2.6 9.9-7.7l.8-180.9c-.1-6.6-7.8-10.3-13-6.2z"}}]},name:"reload",theme:"outlined"};var yQ=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:yG}))});let yZ=m().createElement(bT,null);function yJ(e){let{prefixCls:t,locale:n,onRefresh:r,statusRender:o,status:a}=e,i={expired:m().createElement(m().Fragment,null,m().createElement("p",{className:`${t}-expired`},null==n?void 0:n.expired),r&&m().createElement(tz.Ay,{type:"link",icon:m().createElement(yQ,null),onClick:r},null==n?void 0:n.refresh)),loading:yZ,scanned:m().createElement("p",{className:`${t}-scanned`},null==n?void 0:n.scanned)};return(null!=o?o:e=>i[e.status])({status:a,locale:n,onRefresh:r})}let y0=(0,w.OF)("QRCode",e=>(e=>{let{componentCls:t,lineWidth:n,lineType:r,colorSplit:o}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{display:"flex",justifyContent:"center",alignItems:"center",padding:e.paddingSM,backgroundColor:e.colorWhite,borderRadius:e.borderRadiusLG,border:`${(0,q.zA)(n)} ${r} ${o}`,position:"relative",overflow:"hidden",[`& > ${t}-mask`]:{position:"absolute",insetBlockStart:0,insetInlineStart:0,zIndex:10,display:"flex",flexDirection:"column",justifyContent:"center",alignItems:"center",width:"100%",height:"100%",color:e.colorText,lineHeight:e.lineHeight,background:e.QRCodeMaskBackgroundColor,textAlign:"center",[`& > ${t}-expired, & > ${t}-scanned`]:{color:e.QRCodeTextColor}},"> canvas":{alignSelf:"stretch",flex:"auto",minWidth:0},"&-icon":{marginBlockEnd:e.marginXS,fontSize:e.controlHeight}}),[`${t}-borderless`]:{borderColor:"transparent",padding:0,borderRadius:0}}})((0,ey.oX)(e,{QRCodeTextColor:e.colorText})),e=>({QRCodeMaskBackgroundColor:new ts.q(e.colorBgContainer).setAlpha(.96).toRgbString()}));var y1=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let y2=e=>{var t,n,r,o;let[,a]=(0,tb.Ay)(),{value:i,type:l="canvas",icon:c="",size:s=160,iconSize:u,color:d=a.colorText,errorLevel:f="M",status:g="active",bordered:v=!0,onRefresh:y,style:x,className:$,rootClassName:w,prefixCls:C,bgColor:S="transparent",statusRender:k}=e,E=y1(e,["value","type","icon","size","iconSize","color","errorLevel","status","bordered","onRefresh","style","className","rootClassName","prefixCls","bgColor","statusRender"]),{getPrefixCls:O}=(0,p.useContext)(A.QO),M=O("qrcode",C),[N,I,j]=y0(M),z={src:c,x:void 0,y:void 0,height:"number"==typeof u?u:null!=(t=null==u?void 0:u.height)?t:40,width:"number"==typeof u?u:null!=(n=null==u?void 0:u.width)?n:40,excavate:!0,crossOrigin:"anonymous"},R=(0,H.A)(E,!0),P=(0,b.A)(E,Object.keys(R)),T=Object.assign({value:i,size:s,level:f,bgColor:S,fgColor:d,style:{width:null==x?void 0:x.width,height:null==x?void 0:x.height},imageSettings:c?z:void 0},R),[D]=(0,tI.A)("QRCode");if(!i)return null;let L=h()(M,$,w,I,j,{[`${M}-borderless`]:!v}),B=Object.assign(Object.assign({backgroundColor:S},x),{width:null!=(r=null==x?void 0:x.width)?r:s,height:null!=(o=null==x?void 0:x.height)?o:s});return N(m().createElement("div",Object.assign({},P,{className:L,style:B}),"active"!==g&&m().createElement("div",{className:`${M}-mask`},m().createElement(yJ,{prefixCls:M,locale:D,status:g,onRefresh:y,statusRender:k})),"canvas"===l?m().createElement(yX,Object.assign({},T)):m().createElement(yU,Object.assign({},T))))};ui.Button=uu,ui.Group=uc,ui.__ANT_RADIO=!0;let y4=ui,y3={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M908.1 353.1l-253.9-36.9L540.7 86.1c-3.1-6.3-8.2-11.4-14.5-14.5-15.8-7.8-35-1.3-42.9 14.5L369.8 316.2l-253.9 36.9c-7 1-13.4 4.3-18.3 9.3a32.05 32.05 0 00.6 45.3l183.7 179.1-43.4 252.9a31.95 31.95 0 0046.4 33.7L512 754l227.1 119.4c6.2 3.3 13.4 4.4 20.3 3.2 17.4-3 29.1-19.5 26.1-36.9l-43.4-252.9 183.7-179.1c5-4.9 8.3-11.3 9.3-18.3 2.7-17.5-9.5-33.7-27-36.3z"}}]},name:"star",theme:"filled"};var y6=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:y3}))});let y8=m().forwardRef(function(e,t){var n=e.disabled,r=e.prefixCls,o=e.character,a=e.characterRender,i=e.index,l=e.count,c=e.value,s=e.allowHalf,u=e.focused,d=e.onHover,f=e.onClick,p=i+1,g=new Set([r]);0===c&&0===i&&u?g.add("".concat(r,"-focused")):s&&c+.5>=p&&ci?"true":"false","aria-posinset":i+1,"aria-setsize":l,tabIndex:n?-1:0},m().createElement("div",{className:"".concat(r,"-first")},v),m().createElement("div",{className:"".concat(r,"-second")},v)));return a&&(b=a(b,e)),b});var y5=["prefixCls","className","defaultValue","value","count","allowHalf","allowClear","keyboard","character","characterRender","disabled","direction","tabIndex","autoFocus","onHoverChange","onChange","onFocus","onBlur","onKeyDown","onMouseLeave"];let y7=m().forwardRef(function(e,t){var n,r=e.prefixCls,o=void 0===r?"rc-rate":r,a=e.className,i=e.defaultValue,l=e.value,c=e.count,s=void 0===c?5:c,u=e.allowHalf,d=void 0!==u&&u,f=e.allowClear,g=void 0===f||f,v=e.keyboard,b=void 0===v||v,y=e.character,x=void 0===y?"★":y,$=e.characterRender,A=e.disabled,w=e.direction,C=void 0===w?"ltr":w,S=e.tabIndex,k=e.autoFocus,E=e.onHoverChange,O=e.onChange,M=e.onFocus,N=e.onBlur,I=e.onKeyDown,j=e.onMouseLeave,z=(0,eO.A)(e,y5),P=(n=p.useRef({}),[function(e){return n.current[e]},function(e){return function(t){n.current[e]=t}}]),T=(0,eE.A)(P,2),D=T[0],L=T[1],B=m().useRef(null),F=function(){if(!A){var e;null==(e=B.current)||e.focus()}};m().useImperativeHandle(t,function(){return{focus:F,blur:function(){if(!A){var e;null==(e=B.current)||e.blur()}}}});var _=(0,rs.A)(i||0,{value:l}),W=(0,eE.A)(_,2),q=W[0],V=W[1],K=(0,rs.A)(null),X=(0,eE.A)(K,2),Y=X[0],U=X[1],G=function(e,t){var n="rtl"===C,r=e+1;if(d){var o,a,i,l,c,s,u,f,p,m=D(e),g=(l=(i=m.ownerDocument).body,c=i&&i.documentElement,o=(s=m.getBoundingClientRect()).left,a=s.top,u={left:o-=c.clientLeft||l.clientLeft||0,top:a-=c.clientTop||l.clientTop||0},p=(f=m.ownerDocument).defaultView||f.parentWindow,u.left+=function(e){var t=e.pageXOffset,n="scrollLeft";if("number"!=typeof t){var r=e.document;"number"!=typeof(t=r.documentElement[n])&&(t=r.body[n])}return t}(p),u.left),h=m.clientWidth;n&&t-g>h/2?r-=.5:!n&&t-g0&&!n||t===eR.A.RIGHT&&q>0&&n?(Q(q-r),e.preventDefault()):t===eR.A.LEFT&&q[(e=>{let{componentCls:t}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{display:"inline-block",margin:0,padding:0,color:e.starColor,fontSize:e.starSize,lineHeight:1,listStyle:"none",outline:"none",[`&-disabled${t} ${t}-star`]:{cursor:"default","> div:hover":{transform:"scale(1)"}}}),(e=>{let{componentCls:t}=e;return{[`${t}-star`]:{position:"relative",display:"inline-block",color:"inherit",cursor:"pointer","&:not(:last-child)":{marginInlineEnd:e.marginXS},"> div":{transition:`all ${e.motionDurationMid}, outline 0s`,"&:hover":{transform:e.starHoverScale},"&:focus":{outline:0},"&:focus-visible":{outline:`${(0,q.zA)(e.lineWidth)} dashed ${e.starColor}`,transform:e.starHoverScale}},"&-first, &-second":{color:e.starBg,transition:`all ${e.motionDurationMid}`,userSelect:"none"},"&-first":{position:"absolute",top:0,insetInlineStart:0,width:"50%",height:"100%",overflow:"hidden",opacity:0},[`&-half ${t}-star-first, &-half ${t}-star-second`]:{opacity:1},[`&-half ${t}-star-first, &-full ${t}-star-second`]:{color:"inherit"}}}})(e)),{[`&-rtl${e.componentCls}`]:{direction:"rtl"}})}})((0,ey.oX)(e,{}))],e=>({starColor:e.yellow6,starSize:.5*e.controlHeightLG,starHoverScale:"scale(1.1)",starBg:e.colorFillContent}));var xe=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let xt=p.forwardRef((e,t)=>{let{prefixCls:n,className:r,rootClassName:o,style:a,tooltips:i,character:l=p.createElement(y6,null),disabled:c}=e,s=xe(e,["prefixCls","className","rootClassName","style","tooltips","character","disabled"]),{getPrefixCls:u,direction:d,rate:f}=p.useContext(A.QO),m=u("rate",n),[g,v,b]=y9(m),y=Object.assign(Object.assign({},null==f?void 0:f.style),a),x=p.useContext(tp.A);return g(p.createElement(y7,Object.assign({ref:t,character:l,characterRender:(e,t)=>{let{index:n}=t;return i?p.createElement(aM.A,{title:i[n]},e):e},disabled:null!=c?c:x},s,{className:h()(r,o,v,b,null==f?void 0:f.className),style:y,prefixCls:m,direction:d})))}),xn={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M955.7 856l-416-720c-6.2-10.7-16.9-16-27.7-16s-21.6 5.3-27.7 16l-416 720C56 877.4 71.4 904 96 904h832c24.6 0 40-26.6 27.7-48zM480 416c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v184c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V416zm32 352a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"}}]},name:"warning",theme:"filled"};var xr=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:xn}))});let xo=(0,w.OF)("Result",e=>{let t,n=e.colorInfo,r=e.colorError,o=e.colorSuccess,a=e.colorWarning;return[[(e=>{let{componentCls:t,lineHeightHeading3:n,iconCls:r,padding:o,paddingXL:a,paddingXS:i,paddingLG:l,marginXS:c,lineHeight:s}=e;return{[t]:{padding:`${(0,q.zA)(e.calc(l).mul(2).equal())} ${(0,q.zA)(a)}`,"&-rtl":{direction:"rtl"}},[`${t} ${t}-image`]:{width:e.imageWidth,height:e.imageHeight,margin:"auto"},[`${t} ${t}-icon`]:{marginBottom:l,textAlign:"center",[`& > ${r}`]:{fontSize:e.iconFontSize}},[`${t} ${t}-title`]:{color:e.colorTextHeading,fontSize:e.titleFontSize,lineHeight:n,marginBlock:c,textAlign:"center"},[`${t} ${t}-subtitle`]:{color:e.colorTextDescription,fontSize:e.subtitleFontSize,lineHeight:s,textAlign:"center"},[`${t} ${t}-content`]:{marginTop:l,padding:`${(0,q.zA)(l)} ${(0,q.zA)(e.calc(o).mul(2.5).equal())}`,backgroundColor:e.colorFillAlter},[`${t} ${t}-extra`]:{margin:e.extraMargin,textAlign:"center","& > *":{marginInlineEnd:i,"&:last-child":{marginInlineEnd:0}}}}})(t=(0,ey.oX)(e,{resultInfoIconColor:n,resultErrorIconColor:r,resultSuccessIconColor:o,resultWarningIconColor:a,imageWidth:250,imageHeight:295})),(e=>{let{componentCls:t,iconCls:n}=e;return{[`${t}-success ${t}-icon > ${n}`]:{color:e.resultSuccessIconColor},[`${t}-error ${t}-icon > ${n}`]:{color:e.resultErrorIconColor},[`${t}-info ${t}-icon > ${n}`]:{color:e.resultInfoIconColor},[`${t}-warning ${t}-icon > ${n}`]:{color:e.resultWarningIconColor}}})(t)]]},e=>({titleFontSize:e.fontSizeHeading3,subtitleFontSize:e.fontSize,iconFontSize:3*e.fontSizeHeading3,extraMargin:`${e.paddingLG}px 0 0 0`})),xa={success:I.A,error:j.A,info:D,warning:xr},xi={404:()=>p.createElement("svg",{width:"252",height:"294"},p.createElement("title",null,"No Found"),p.createElement("defs",null,p.createElement("path",{d:"M0 .387h251.772v251.772H0z"})),p.createElement("g",{fill:"none",fillRule:"evenodd"},p.createElement("g",{transform:"translate(0 .012)"},p.createElement("mask",{fill:"#fff"}),p.createElement("path",{d:"M0 127.32v-2.095C0 56.279 55.892.387 124.838.387h2.096c68.946 0 124.838 55.892 124.838 124.838v2.096c0 68.946-55.892 124.838-124.838 124.838h-2.096C55.892 252.16 0 196.267 0 127.321",fill:"#E4EBF7",mask:"url(#b)"})),p.createElement("path",{d:"M39.755 130.84a8.276 8.276 0 1 1-16.468-1.66 8.276 8.276 0 0 1 16.468 1.66",fill:"#FFF"}),p.createElement("path",{d:"M36.975 134.297l10.482 5.943M48.373 146.508l-12.648 10.788",stroke:"#FFF",strokeWidth:"2"}),p.createElement("path",{d:"M39.875 159.352a5.667 5.667 0 1 1-11.277-1.136 5.667 5.667 0 0 1 11.277 1.136M57.588 143.247a5.708 5.708 0 1 1-11.358-1.145 5.708 5.708 0 0 1 11.358 1.145M99.018 26.875l29.82-.014a4.587 4.587 0 1 0-.003-9.175l-29.82.013a4.587 4.587 0 1 0 .003 9.176M110.424 45.211l29.82-.013a4.588 4.588 0 0 0-.004-9.175l-29.82.013a4.587 4.587 0 1 0 .004 9.175",fill:"#FFF"}),p.createElement("path",{d:"M112.798 26.861v-.002l15.784-.006a4.588 4.588 0 1 0 .003 9.175l-15.783.007v-.002a4.586 4.586 0 0 0-.004-9.172M184.523 135.668c-.553 5.485-5.447 9.483-10.931 8.93-5.485-.553-9.483-5.448-8.93-10.932.552-5.485 5.447-9.483 10.932-8.93 5.485.553 9.483 5.447 8.93 10.932",fill:"#FFF"}),p.createElement("path",{d:"M179.26 141.75l12.64 7.167M193.006 156.477l-15.255 13.011",stroke:"#FFF",strokeWidth:"2"}),p.createElement("path",{d:"M184.668 170.057a6.835 6.835 0 1 1-13.6-1.372 6.835 6.835 0 0 1 13.6 1.372M203.34 153.325a6.885 6.885 0 1 1-13.7-1.382 6.885 6.885 0 0 1 13.7 1.382",fill:"#FFF"}),p.createElement("path",{d:"M151.931 192.324a2.222 2.222 0 1 1-4.444 0 2.222 2.222 0 0 1 4.444 0zM225.27 116.056a2.222 2.222 0 1 1-4.445 0 2.222 2.222 0 0 1 4.444 0zM216.38 151.08a2.223 2.223 0 1 1-4.446-.001 2.223 2.223 0 0 1 4.446 0zM176.917 107.636a2.223 2.223 0 1 1-4.445 0 2.223 2.223 0 0 1 4.445 0zM195.291 92.165a2.223 2.223 0 1 1-4.445 0 2.223 2.223 0 0 1 4.445 0zM202.058 180.711a2.223 2.223 0 1 1-4.446 0 2.223 2.223 0 0 1 4.446 0z",stroke:"#FFF",strokeWidth:"2"}),p.createElement("path",{stroke:"#FFF",strokeWidth:"2",d:"M214.404 153.302l-1.912 20.184-10.928 5.99M173.661 174.792l-6.356 9.814h-11.36l-4.508 6.484M174.941 125.168v-15.804M220.824 117.25l-12.84 7.901-15.31-7.902V94.39"}),p.createElement("path",{d:"M166.588 65.936h-3.951a4.756 4.756 0 0 1-4.743-4.742 4.756 4.756 0 0 1 4.743-4.743h3.951a4.756 4.756 0 0 1 4.743 4.743 4.756 4.756 0 0 1-4.743 4.742",fill:"#FFF"}),p.createElement("path",{d:"M174.823 30.03c0-16.281 13.198-29.48 29.48-29.48 16.28 0 29.48 13.199 29.48 29.48 0 16.28-13.2 29.48-29.48 29.48-16.282 0-29.48-13.2-29.48-29.48",fill:"#1677ff"}),p.createElement("path",{d:"M205.952 38.387c.5.5.785 1.142.785 1.928s-.286 1.465-.785 1.964c-.572.5-1.214.75-2 .75-.785 0-1.429-.285-1.929-.785-.572-.5-.82-1.143-.82-1.929s.248-1.428.82-1.928c.5-.5 1.144-.75 1.93-.75.785 0 1.462.25 1.999.75m4.285-19.463c1.428 1.249 2.143 2.963 2.143 5.142 0 1.712-.427 3.13-1.219 4.25-.067.096-.137.18-.218.265-.416.429-1.41 1.346-2.956 2.699a5.07 5.07 0 0 0-1.428 1.75 5.207 5.207 0 0 0-.536 2.357v.5h-4.107v-.5c0-1.357.215-2.536.714-3.5.464-.964 1.857-2.464 4.178-4.536l.43-.5c.643-.785.964-1.643.964-2.535 0-1.18-.358-2.108-1-2.785-.678-.68-1.643-1.001-2.858-1.001-1.536 0-2.642.464-3.357 1.43-.37.5-.621 1.135-.76 1.904a1.999 1.999 0 0 1-1.971 1.63h-.004c-1.277 0-2.257-1.183-1.98-2.43.337-1.518 1.02-2.78 2.073-3.784 1.536-1.5 3.607-2.25 6.25-2.25 2.32 0 4.214.607 5.642 1.894",fill:"#FFF"}),p.createElement("path",{d:"M52.04 76.131s21.81 5.36 27.307 15.945c5.575 10.74-6.352 9.26-15.73 4.935-10.86-5.008-24.7-11.822-11.577-20.88",fill:"#FFB594"}),p.createElement("path",{d:"M90.483 67.504l-.449 2.893c-.753.49-4.748-2.663-4.748-2.663l-1.645.748-1.346-5.684s6.815-4.589 8.917-5.018c2.452-.501 9.884.94 10.7 2.278 0 0 1.32.486-2.227.69-3.548.203-5.043.447-6.79 3.132-1.747 2.686-2.412 3.624-2.412 3.624",fill:"#FFC6A0"}),p.createElement("path",{d:"M128.055 111.367c-2.627-7.724-6.15-13.18-8.917-15.478-3.5-2.906-9.34-2.225-11.366-4.187-1.27-1.231-3.215-1.197-3.215-1.197s-14.98-3.158-16.828-3.479c-2.37-.41-2.124-.714-6.054-1.405-1.57-1.907-2.917-1.122-2.917-1.122l-7.11-1.383c-.853-1.472-2.423-1.023-2.423-1.023l-2.468-.897c-1.645 9.976-7.74 13.796-7.74 13.796 1.795 1.122 15.703 8.3 15.703 8.3l5.107 37.11s-3.321 5.694 1.346 9.109c0 0 19.883-3.743 34.921-.329 0 0 3.047-2.546.972-8.806.523-3.01 1.394-8.263 1.736-11.622.385.772 2.019 1.918 3.14 3.477 0 0 9.407-7.365 11.052-14.012-.832-.723-1.598-1.585-2.267-2.453-.567-.736-.358-2.056-.765-2.717-.669-1.084-1.804-1.378-1.907-1.682",fill:"#FFF"}),p.createElement("path",{d:"M101.09 289.998s4.295 2.041 7.354 1.021c2.821-.94 4.53.668 7.08 1.178 2.55.51 6.874 1.1 11.686-1.26-.103-5.51-6.889-3.98-11.96-6.713-2.563-1.38-3.784-4.722-3.598-8.799h-9.402s-1.392 10.52-1.16 14.573",fill:"#CBD1D1"}),p.createElement("path",{d:"M101.067 289.826s2.428 1.271 6.759.653c3.058-.437 3.712.481 7.423 1.031 3.712.55 10.724-.069 11.823-.894.413 1.1-.343 2.063-.343 2.063s-1.512.603-4.812.824c-2.03.136-5.8.291-7.607-.503-1.787-1.375-5.247-1.903-5.728-.241-3.918.95-7.355-.286-7.355-.286l-.16-2.647z",fill:"#2B0849"}),p.createElement("path",{d:"M108.341 276.044h3.094s-.103 6.702 4.536 8.558c-4.64.618-8.558-2.303-7.63-8.558",fill:"#A4AABA"}),p.createElement("path",{d:"M57.542 272.401s-2.107 7.416-4.485 12.306c-1.798 3.695-4.225 7.492 5.465 7.492 6.648 0 8.953-.48 7.423-6.599-1.53-6.12.266-13.199.266-13.199h-8.669z",fill:"#CBD1D1"}),p.createElement("path",{d:"M51.476 289.793s2.097 1.169 6.633 1.169c6.083 0 8.249-1.65 8.249-1.65s.602 1.114-.619 2.165c-.993.855-3.597 1.591-7.39 1.546-4.145-.048-5.832-.566-6.736-1.168-.825-.55-.687-1.58-.137-2.062",fill:"#2B0849"}),p.createElement("path",{d:"M58.419 274.304s.033 1.519-.314 2.93c-.349 1.42-1.078 3.104-1.13 4.139-.058 1.151 4.537 1.58 5.155.034.62-1.547 1.294-6.427 1.913-7.252.619-.825-4.903-2.119-5.624.15",fill:"#A4AABA"}),p.createElement("path",{d:"M99.66 278.514l13.378.092s1.298-54.52 1.853-64.403c.554-9.882 3.776-43.364 1.002-63.128l-12.547-.644-22.849.78s-.434 3.966-1.195 9.976c-.063.496-.682.843-.749 1.365-.075.585.423 1.354.32 1.966-2.364 14.08-6.377 33.104-8.744 46.677-.116.666-1.234 1.009-1.458 2.691-.04.302.211 1.525.112 1.795-6.873 18.744-10.949 47.842-14.277 61.885l14.607-.014s2.197-8.57 4.03-16.97c2.811-12.886 23.111-85.01 23.111-85.01l3.016-.521 1.043 46.35s-.224 1.234.337 2.02c.56.785-.56 1.123-.392 2.244l.392 1.794s-.449 7.178-.898 11.89c-.448 4.71-.092 39.165-.092 39.165",fill:"#7BB2F9"}),p.createElement("path",{d:"M76.085 221.626c1.153.094 4.038-2.019 6.955-4.935M106.36 225.142s2.774-1.11 6.103-3.883",stroke:"#648BD8",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M107.275 222.1s2.773-1.11 6.102-3.884",stroke:"#648BD8",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M74.74 224.767s2.622-.591 6.505-3.365M86.03 151.634c-.27 3.106.3 8.525-4.336 9.123M103.625 149.88s.11 14.012-1.293 15.065c-2.219 1.664-2.99 1.944-2.99 1.944M99.79 150.438s.035 12.88-1.196 24.377M93.673 175.911s7.212-1.664 9.431-1.664M74.31 205.861a212.013 212.013 0 0 1-.979 4.56s-1.458 1.832-1.009 3.776c.449 1.944-.947 2.045-4.985 15.355-1.696 5.59-4.49 18.591-6.348 27.597l-.231 1.12M75.689 197.807a320.934 320.934 0 0 1-.882 4.754M82.591 152.233L81.395 162.7s-1.097.15-.5 2.244c.113 1.346-2.674 15.775-5.18 30.43M56.12 274.418h13.31",stroke:"#648BD8",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M116.241 148.22s-17.047-3.104-35.893.2c.158 2.514-.003 4.15-.003 4.15s14.687-2.818 35.67-.312c.252-2.355.226-4.038.226-4.038",fill:"#192064"}),p.createElement("path",{d:"M106.322 151.165l.003-4.911a.81.81 0 0 0-.778-.815c-2.44-.091-5.066-.108-7.836-.014a.818.818 0 0 0-.789.815l-.003 4.906a.81.81 0 0 0 .831.813c2.385-.06 4.973-.064 7.73.017a.815.815 0 0 0 .842-.81",fill:"#FFF"}),p.createElement("path",{d:"M105.207 150.233l.002-3.076a.642.642 0 0 0-.619-.646 94.321 94.321 0 0 0-5.866-.01.65.65 0 0 0-.63.647v3.072a.64.64 0 0 0 .654.644 121.12 121.12 0 0 1 5.794.011c.362.01.665-.28.665-.642",fill:"#192064"}),p.createElement("path",{d:"M100.263 275.415h12.338M101.436 270.53c.006 3.387.042 5.79.111 6.506M101.451 264.548a915.75 915.75 0 0 0-.015 4.337M100.986 174.965l.898 44.642s.673 1.57-.225 2.692c-.897 1.122 2.468.673.898 2.243-1.57 1.57.897 1.122 0 3.365-.596 1.489-.994 21.1-1.096 35.146",stroke:"#648BD8",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M46.876 83.427s-.516 6.045 7.223 5.552c11.2-.712 9.218-9.345 31.54-21.655-.786-2.708-2.447-4.744-2.447-4.744s-11.068 3.11-22.584 8.046c-6.766 2.9-13.395 6.352-13.732 12.801M104.46 91.057l.941-5.372-8.884-11.43-5.037 5.372-1.74 7.834a.321.321 0 0 0 .108.32c.965.8 6.5 5.013 14.347 3.544a.332.332 0 0 0 .264-.268",fill:"#FFC6A0"}),p.createElement("path",{d:"M93.942 79.387s-4.533-2.853-2.432-6.855c1.623-3.09 4.513 1.133 4.513 1.133s.52-3.642 3.121-3.642c.52-1.04 1.561-4.162 1.561-4.162s11.445 2.601 13.526 3.121c0 5.203-2.304 19.424-7.84 19.861-8.892.703-12.449-9.456-12.449-9.456",fill:"#FFC6A0"}),p.createElement("path",{d:"M113.874 73.446c2.601-2.081 3.47-9.722 3.47-9.722s-2.479-.49-6.64-2.05c-4.683-2.081-12.798-4.747-17.48.976-9.668 3.223-2.05 19.823-2.05 19.823l2.713-3.021s-3.935-3.287-2.08-6.243c2.17-3.462 3.92 1.073 3.92 1.073s.637-2.387 3.581-3.342c.355-.71 1.036-2.674 1.432-3.85a1.073 1.073 0 0 1 1.263-.704c2.4.558 8.677 2.019 11.356 2.662.522.125.871.615.82 1.15l-.305 3.248z",fill:"#520038"}),p.createElement("path",{d:"M104.977 76.064c-.103.61-.582 1.038-1.07.956-.489-.083-.801-.644-.698-1.254.103-.61.582-1.038 1.07-.956.488.082.8.644.698 1.254M112.132 77.694c-.103.61-.582 1.038-1.07.956-.488-.083-.8-.644-.698-1.254.103-.61.582-1.038 1.07-.956.488.082.8.643.698 1.254",fill:"#552950"}),p.createElement("path",{stroke:"#DB836E",strokeWidth:"1.118",strokeLinecap:"round",strokeLinejoin:"round",d:"M110.13 74.84l-.896 1.61-.298 4.357h-2.228"}),p.createElement("path",{d:"M110.846 74.481s1.79-.716 2.506.537",stroke:"#5C2552",strokeWidth:"1.118",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M92.386 74.282s.477-1.114 1.113-.716c.637.398 1.274 1.433.558 1.99-.717.556.159 1.67.159 1.67",stroke:"#DB836E",strokeWidth:"1.118",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M103.287 72.93s1.83 1.113 4.137.954",stroke:"#5C2552",strokeWidth:"1.118",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M103.685 81.762s2.227 1.193 4.376 1.193M104.64 84.308s.954.398 1.511.318M94.693 81.205s2.308 7.4 10.424 7.639",stroke:"#DB836E",strokeWidth:"1.118",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M81.45 89.384s.45 5.647-4.935 12.787M69 82.654s-.726 9.282-8.204 14.206",stroke:"#E4EBF7",strokeWidth:"1.101",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M129.405 122.865s-5.272 7.403-9.422 10.768",stroke:"#E4EBF7",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M119.306 107.329s.452 4.366-2.127 32.062",stroke:"#E4EBF7",strokeWidth:"1.101",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M150.028 151.232h-49.837a1.01 1.01 0 0 1-1.01-1.01v-31.688c0-.557.452-1.01 1.01-1.01h49.837c.558 0 1.01.453 1.01 1.01v31.688a1.01 1.01 0 0 1-1.01 1.01",fill:"#F2D7AD"}),p.createElement("path",{d:"M150.29 151.232h-19.863v-33.707h20.784v32.786a.92.92 0 0 1-.92.92",fill:"#F4D19D"}),p.createElement("path",{d:"M123.554 127.896H92.917a.518.518 0 0 1-.425-.816l6.38-9.113c.193-.277.51-.442.85-.442h31.092l-7.26 10.371z",fill:"#F2D7AD"}),p.createElement("path",{fill:"#CC9B6E",d:"M123.689 128.447H99.25v-.519h24.169l7.183-10.26.424.298z"}),p.createElement("path",{d:"M158.298 127.896h-18.669a2.073 2.073 0 0 1-1.659-.83l-7.156-9.541h19.965c.49 0 .95.23 1.244.622l6.69 8.92a.519.519 0 0 1-.415.83",fill:"#F4D19D"}),p.createElement("path",{fill:"#CC9B6E",d:"M157.847 128.479h-19.384l-7.857-10.475.415-.31 7.7 10.266h19.126zM130.554 150.685l-.032-8.177.519-.002.032 8.177z"}),p.createElement("path",{fill:"#CC9B6E",d:"M130.511 139.783l-.08-21.414.519-.002.08 21.414zM111.876 140.932l-.498-.143 1.479-5.167.498.143zM108.437 141.06l-2.679-2.935 2.665-3.434.41.318-2.397 3.089 2.384 2.612zM116.607 141.06l-.383-.35 2.383-2.612-2.397-3.089.41-.318 2.665 3.434z"}),p.createElement("path",{d:"M154.316 131.892l-3.114-1.96.038 3.514-1.043.092c-1.682.115-3.634.23-4.789.23-1.902 0-2.693 2.258 2.23 2.648l-2.645-.596s-2.168 1.317.504 2.3c0 0-1.58 1.217.561 2.58-.584 3.504 5.247 4.058 7.122 3.59 1.876-.47 4.233-2.359 4.487-5.16.28-3.085-.89-5.432-3.35-7.238",fill:"#FFC6A0"}),p.createElement("path",{d:"M153.686 133.577s-6.522.47-8.36.372c-1.836-.098-1.904 2.19 2.359 2.264 3.739.15 5.451-.044 5.451-.044",stroke:"#DB836E",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M145.16 135.877c-1.85 1.346.561 2.355.561 2.355s3.478.898 6.73.617",stroke:"#DB836E",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M151.89 141.71s-6.28.111-6.73-2.132c-.223-1.346.45-1.402.45-1.402M146.114 140.868s-1.103 3.16 5.44 3.533M151.202 129.932v3.477M52.838 89.286c3.533-.337 8.423-1.248 13.582-7.754",stroke:"#DB836E",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M168.567 248.318a6.647 6.647 0 0 1-6.647-6.647v-66.466a6.647 6.647 0 1 1 13.294 0v66.466a6.647 6.647 0 0 1-6.647 6.647",fill:"#5BA02E"}),p.createElement("path",{d:"M176.543 247.653a6.647 6.647 0 0 1-6.646-6.647v-33.232a6.647 6.647 0 1 1 13.293 0v33.232a6.647 6.647 0 0 1-6.647 6.647",fill:"#92C110"}),p.createElement("path",{d:"M186.443 293.613H158.92a3.187 3.187 0 0 1-3.187-3.187v-46.134a3.187 3.187 0 0 1 3.187-3.187h27.524a3.187 3.187 0 0 1 3.187 3.187v46.134a3.187 3.187 0 0 1-3.187 3.187",fill:"#F2D7AD"}),p.createElement("path",{d:"M88.979 89.48s7.776 5.384 16.6 2.842",stroke:"#E4EBF7",strokeWidth:"1.101",strokeLinecap:"round",strokeLinejoin:"round"}))),500:()=>p.createElement("svg",{width:"254",height:"294"},p.createElement("title",null,"Server Error"),p.createElement("defs",null,p.createElement("path",{d:"M0 .335h253.49v253.49H0z"}),p.createElement("path",{d:"M0 293.665h253.49V.401H0z"})),p.createElement("g",{fill:"none",fillRule:"evenodd"},p.createElement("g",{transform:"translate(0 .067)"},p.createElement("mask",{fill:"#fff"}),p.createElement("path",{d:"M0 128.134v-2.11C0 56.608 56.273.334 125.69.334h2.11c69.416 0 125.69 56.274 125.69 125.69v2.11c0 69.417-56.274 125.69-125.69 125.69h-2.11C56.273 253.824 0 197.551 0 128.134",fill:"#E4EBF7",mask:"url(#b)"})),p.createElement("path",{d:"M39.989 132.108a8.332 8.332 0 1 1-16.581-1.671 8.332 8.332 0 0 1 16.58 1.671",fill:"#FFF"}),p.createElement("path",{d:"M37.19 135.59l10.553 5.983M48.665 147.884l-12.734 10.861",stroke:"#FFF",strokeWidth:"2"}),p.createElement("path",{d:"M40.11 160.816a5.706 5.706 0 1 1-11.354-1.145 5.706 5.706 0 0 1 11.354 1.145M57.943 144.6a5.747 5.747 0 1 1-11.436-1.152 5.747 5.747 0 0 1 11.436 1.153M99.656 27.434l30.024-.013a4.619 4.619 0 1 0-.004-9.238l-30.024.013a4.62 4.62 0 0 0 .004 9.238M111.14 45.896l30.023-.013a4.62 4.62 0 1 0-.004-9.238l-30.024.013a4.619 4.619 0 1 0 .004 9.238",fill:"#FFF"}),p.createElement("path",{d:"M113.53 27.421v-.002l15.89-.007a4.619 4.619 0 1 0 .005 9.238l-15.892.007v-.002a4.618 4.618 0 0 0-.004-9.234M150.167 70.091h-3.979a4.789 4.789 0 0 1-4.774-4.775 4.788 4.788 0 0 1 4.774-4.774h3.979a4.789 4.789 0 0 1 4.775 4.774 4.789 4.789 0 0 1-4.775 4.775",fill:"#FFF"}),p.createElement("path",{d:"M171.687 30.234c0-16.392 13.289-29.68 29.681-29.68 16.392 0 29.68 13.288 29.68 29.68 0 16.393-13.288 29.681-29.68 29.681s-29.68-13.288-29.68-29.68",fill:"#FF603B"}),p.createElement("path",{d:"M203.557 19.435l-.676 15.035a1.514 1.514 0 0 1-3.026 0l-.675-15.035a2.19 2.19 0 1 1 4.377 0m-.264 19.378c.513.477.77 1.1.77 1.87s-.257 1.393-.77 1.907c-.55.476-1.21.733-1.943.733a2.545 2.545 0 0 1-1.87-.77c-.55-.514-.806-1.136-.806-1.87 0-.77.256-1.393.806-1.87.513-.513 1.137-.733 1.87-.733.77 0 1.43.22 1.943.733",fill:"#FFF"}),p.createElement("path",{d:"M119.3 133.275c4.426-.598 3.612-1.204 4.079-4.778.675-5.18-3.108-16.935-8.262-25.118-1.088-10.72-12.598-11.24-12.598-11.24s4.312 4.895 4.196 16.199c1.398 5.243.804 14.45.804 14.45s5.255 11.369 11.78 10.487",fill:"#FFB594"}),p.createElement("path",{d:"M100.944 91.61s1.463-.583 3.211.582c8.08 1.398 10.368 6.706 11.3 11.368 1.864 1.282 1.864 2.33 1.864 3.496.365.777 1.515 3.03 1.515 3.03s-7.225 1.748-10.954 6.758c-1.399-6.41-6.936-25.235-6.936-25.235",fill:"#FFF"}),p.createElement("path",{d:"M94.008 90.5l1.019-5.815-9.23-11.874-5.233 5.581-2.593 9.863s8.39 5.128 16.037 2.246",fill:"#FFB594"}),p.createElement("path",{d:"M82.931 78.216s-4.557-2.868-2.445-6.892c1.632-3.107 4.537 1.139 4.537 1.139s.524-3.662 3.139-3.662c.523-1.046 1.569-4.184 1.569-4.184s11.507 2.615 13.6 3.138c-.001 5.23-2.317 19.529-7.884 19.969-8.94.706-12.516-9.508-12.516-9.508",fill:"#FFC6A0"}),p.createElement("path",{d:"M102.971 72.243c2.616-2.093 3.489-9.775 3.489-9.775s-2.492-.492-6.676-2.062c-4.708-2.092-12.867-4.771-17.575.982-9.54 4.41-2.062 19.93-2.062 19.93l2.729-3.037s-3.956-3.304-2.092-6.277c2.183-3.48 3.943 1.08 3.943 1.08s.64-2.4 3.6-3.36c.356-.714 1.04-2.69 1.44-3.872a1.08 1.08 0 0 1 1.27-.707c2.41.56 8.723 2.03 11.417 2.676.524.126.876.619.825 1.156l-.308 3.266z",fill:"#520038"}),p.createElement("path",{d:"M101.22 76.514c-.104.613-.585 1.044-1.076.96-.49-.082-.805-.646-.702-1.26.104-.613.585-1.044 1.076-.961.491.083.805.647.702 1.26M94.26 75.074c-.104.613-.585 1.044-1.076.96-.49-.082-.805-.646-.702-1.26.104-.613.585-1.044 1.076-.96.491.082.805.646.702 1.26",fill:"#552950"}),p.createElement("path",{stroke:"#DB836E",strokeWidth:"1.063",strokeLinecap:"round",strokeLinejoin:"round",d:"M99.206 73.644l-.9 1.62-.3 4.38h-2.24"}),p.createElement("path",{d:"M99.926 73.284s1.8-.72 2.52.54",stroke:"#5C2552",strokeWidth:"1.117",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M81.367 73.084s.48-1.12 1.12-.72c.64.4 1.28 1.44.56 2s.16 1.68.16 1.68",stroke:"#DB836E",strokeWidth:"1.117",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M92.326 71.724s1.84 1.12 4.16.96",stroke:"#5C2552",strokeWidth:"1.117",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M92.726 80.604s2.24 1.2 4.4 1.2M93.686 83.164s.96.4 1.52.32M83.687 80.044s1.786 6.547 9.262 7.954",stroke:"#DB836E",strokeWidth:"1.063",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M95.548 91.663s-1.068 2.821-8.298 2.105c-7.23-.717-10.29-5.044-10.29-5.044",stroke:"#E4EBF7",strokeWidth:"1.136",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M78.126 87.478s6.526 4.972 16.47 2.486c0 0 9.577 1.02 11.536 5.322 5.36 11.77.543 36.835 0 39.962 3.496 4.055-.466 8.483-.466 8.483-15.624-3.548-35.81-.6-35.81-.6-4.849-3.546-1.223-9.044-1.223-9.044L62.38 110.32c-2.485-15.227.833-19.803 3.549-20.743 3.03-1.049 8.04-1.282 8.04-1.282.496-.058 1.08-.076 1.37-.233 2.36-1.282 2.787-.583 2.787-.583",fill:"#FFF"}),p.createElement("path",{d:"M65.828 89.81s-6.875.465-7.59 8.156c-.466 8.857 3.03 10.954 3.03 10.954s6.075 22.102 16.796 22.957c8.39-2.176 4.758-6.702 4.661-11.42-.233-11.304-7.108-16.897-7.108-16.897s-4.212-13.75-9.789-13.75",fill:"#FFC6A0"}),p.createElement("path",{d:"M71.716 124.225s.855 11.264 9.828 6.486c4.765-2.536 7.581-13.828 9.789-22.568 1.456-5.768 2.58-12.197 2.58-12.197l-4.973-1.709s-2.408 5.516-7.769 12.275c-4.335 5.467-9.144 11.11-9.455 17.713",fill:"#FFC6A0"}),p.createElement("path",{d:"M108.463 105.191s1.747 2.724-2.331 30.535c2.376 2.216 1.053 6.012-.233 7.51",stroke:"#E4EBF7",strokeWidth:"1.085",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M123.262 131.527s-.427 2.732-11.77 1.981c-15.187-1.006-25.326-3.25-25.326-3.25l.933-5.8s.723.215 9.71-.068c11.887-.373 18.714-6.07 24.964-1.022 4.039 3.263 1.489 8.16 1.489 8.16",fill:"#FFC6A0"}),p.createElement("path",{d:"M70.24 90.974s-5.593-4.739-11.054 2.68c-3.318 7.223.517 15.284 2.664 19.578-.31 3.729 2.33 4.311 2.33 4.311s.108.895 1.516 2.68c4.078-7.03 6.72-9.166 13.711-12.546-.328-.656-1.877-3.265-1.825-3.767.175-1.69-1.282-2.623-1.282-2.623s-.286-.156-1.165-2.738c-.788-2.313-2.036-5.177-4.895-7.575",fill:"#FFF"}),p.createElement("path",{d:"M90.232 288.027s4.855 2.308 8.313 1.155c3.188-1.063 5.12.755 8.002 1.331 2.881.577 7.769 1.243 13.207-1.424-.117-6.228-7.786-4.499-13.518-7.588-2.895-1.56-4.276-5.336-4.066-9.944H91.544s-1.573 11.89-1.312 16.47",fill:"#CBD1D1"}),p.createElement("path",{d:"M90.207 287.833s2.745 1.437 7.639.738c3.456-.494 3.223.66 7.418 1.282 4.195.621 13.092-.194 14.334-1.126.466 1.242-.388 2.33-.388 2.33s-1.709.682-5.438.932c-2.295.154-8.098.276-10.14-.621-2.02-1.554-4.894-1.515-6.06-.234-4.427 1.075-7.184-.31-7.184-.31l-.181-2.991z",fill:"#2B0849"}),p.createElement("path",{d:"M98.429 272.257h3.496s-.117 7.574 5.127 9.671c-5.244.7-9.672-2.602-8.623-9.671",fill:"#A4AABA"}),p.createElement("path",{d:"M44.425 272.046s-2.208 7.774-4.702 12.899c-1.884 3.874-4.428 7.854 5.729 7.854 6.97 0 9.385-.503 7.782-6.917-1.604-6.415.279-13.836.279-13.836h-9.088z",fill:"#CBD1D1"}),p.createElement("path",{d:"M38.066 290.277s2.198 1.225 6.954 1.225c6.376 0 8.646-1.73 8.646-1.73s.63 1.168-.649 2.27c-1.04.897-3.77 1.668-7.745 1.621-4.347-.05-6.115-.593-7.062-1.224-.864-.577-.72-1.657-.144-2.162",fill:"#2B0849"}),p.createElement("path",{d:"M45.344 274.041s.035 1.592-.329 3.07c-.365 1.49-1.13 3.255-1.184 4.34-.061 1.206 4.755 1.657 5.403.036.65-1.622 1.357-6.737 2.006-7.602.648-.865-5.14-2.222-5.896.156",fill:"#A4AABA"}),p.createElement("path",{d:"M89.476 277.57l13.899.095s1.349-56.643 1.925-66.909c.576-10.267 3.923-45.052 1.042-65.585l-13.037-.669-23.737.81s-.452 4.12-1.243 10.365c-.065.515-.708.874-.777 1.417-.078.608.439 1.407.332 2.044-2.455 14.627-5.797 32.736-8.256 46.837-.121.693-1.282 1.048-1.515 2.796-.042.314.22 1.584.116 1.865-7.14 19.473-12.202 52.601-15.66 67.19l15.176-.015s2.282-10.145 4.185-18.871c2.922-13.389 24.012-88.32 24.012-88.32l3.133-.954-.158 48.568s-.233 1.282.35 2.098c.583.815-.581 1.167-.408 2.331l.408 1.864s-.466 7.458-.932 12.352c-.467 4.895 1.145 40.69 1.145 40.69",fill:"#7BB2F9"}),p.createElement("path",{d:"M64.57 218.881c1.197.099 4.195-2.097 7.225-5.127M96.024 222.534s2.881-1.152 6.34-4.034",stroke:"#648BD8",strokeWidth:"1.085",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M96.973 219.373s2.882-1.153 6.34-4.034",stroke:"#648BD8",strokeWidth:"1.032",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M63.172 222.144s2.724-.614 6.759-3.496M74.903 146.166c-.281 3.226.31 8.856-4.506 9.478M93.182 144.344s.115 14.557-1.344 15.65c-2.305 1.73-3.107 2.02-3.107 2.02M89.197 144.923s.269 13.144-1.01 25.088M83.525 170.71s6.81-1.051 9.116-1.051M46.026 270.045l-.892 4.538M46.937 263.289l-.815 4.157M62.725 202.503c-.33 1.618-.102 1.904-.449 3.438 0 0-2.756 1.903-2.29 3.923.466 2.02-.31 3.424-4.505 17.252-1.762 5.807-4.233 18.922-6.165 28.278-.03.144-.521 2.646-1.14 5.8M64.158 194.136c-.295 1.658-.6 3.31-.917 4.938M71.33 146.787l-1.244 10.877s-1.14.155-.519 2.33c.117 1.399-2.778 16.39-5.382 31.615M44.242 273.727H58.07",stroke:"#648BD8",strokeWidth:"1.085",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M106.18 142.117c-3.028-.489-18.825-2.744-36.219.2a.625.625 0 0 0-.518.644c.063 1.307.044 2.343.015 2.995a.617.617 0 0 0 .716.636c3.303-.534 17.037-2.412 35.664-.266.347.04.66-.214.692-.56.124-1.347.16-2.425.17-3.029a.616.616 0 0 0-.52-.62",fill:"#192064"}),p.createElement("path",{d:"M96.398 145.264l.003-5.102a.843.843 0 0 0-.809-.847 114.104 114.104 0 0 0-8.141-.014.85.85 0 0 0-.82.847l-.003 5.097c0 .476.388.857.864.845 2.478-.064 5.166-.067 8.03.017a.848.848 0 0 0 .876-.843",fill:"#FFF"}),p.createElement("path",{d:"M95.239 144.296l.002-3.195a.667.667 0 0 0-.643-.672c-1.9-.061-3.941-.073-6.094-.01a.675.675 0 0 0-.654.672l-.002 3.192c0 .376.305.677.68.669 1.859-.042 3.874-.043 6.02.012.376.01.69-.291.691-.668",fill:"#192064"}),p.createElement("path",{d:"M90.102 273.522h12.819M91.216 269.761c.006 3.519-.072 5.55 0 6.292M90.923 263.474c-.009 1.599-.016 2.558-.016 4.505M90.44 170.404l.932 46.38s.7 1.631-.233 2.796c-.932 1.166 2.564.7.932 2.33-1.63 1.633.933 1.166 0 3.497-.618 1.546-1.031 21.921-1.138 36.513",stroke:"#648BD8",strokeWidth:"1.085",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M73.736 98.665l2.214 4.312s2.098.816 1.865 2.68l.816 2.214M64.297 116.611c.233-.932 2.176-7.147 12.585-10.488M77.598 90.042s7.691 6.137 16.547 2.72",stroke:"#E4EBF7",strokeWidth:"1.085",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M91.974 86.954s5.476-.816 7.574-4.545c1.297-.345.72 2.212-.33 3.671-.7.971-1.01 1.554-1.01 1.554s.194.31.155.816c-.053.697-.175.653-.272 1.048-.081.335.108.657 0 1.049-.046.17-.198.5-.382.878-.12.249-.072.687-.2.948-.231.469-1.562 1.87-2.622 2.855-3.826 3.554-5.018 1.644-6.001-.408-.894-1.865-.661-5.127-.874-6.875-.35-2.914-2.622-3.03-1.923-4.429.343-.685 2.87.69 3.263 1.748.757 2.04 2.952 1.807 2.622 1.69",fill:"#FFC6A0"}),p.createElement("path",{d:"M99.8 82.429c-.465.077-.35.272-.97 1.243-.622.971-4.817 2.932-6.39 3.224-2.589.48-2.278-1.56-4.254-2.855-1.69-1.107-3.562-.638-1.398 1.398.99.932.932 1.107 1.398 3.205.335 1.506-.64 3.67.7 5.593",stroke:"#DB836E",strokeWidth:".774",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M79.543 108.673c-2.1 2.926-4.266 6.175-5.557 8.762",stroke:"#E59788",strokeWidth:".774",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M87.72 124.768s-2.098-1.942-5.127-2.719c-3.03-.777-3.574-.155-5.516.078-1.942.233-3.885-.932-3.652.7.233 1.63 5.05 1.01 5.206 2.097.155 1.087-6.37 2.796-8.313 2.175-.777.777.466 1.864 2.02 2.175.233 1.554 2.253 1.554 2.253 1.554s.699 1.01 2.641 1.088c2.486 1.32 8.934-.7 10.954-1.554 2.02-.855-.466-5.594-.466-5.594",fill:"#FFC6A0"}),p.createElement("path",{d:"M73.425 122.826s.66 1.127 3.167 1.418c2.315.27 2.563.583 2.563.583s-2.545 2.894-9.07 2.272M72.416 129.274s3.826.097 4.933-.718M74.98 130.75s1.961.136 3.36-.505M77.232 131.916s1.748.019 2.914-.505M73.328 122.321s-.595-1.032 1.262-.427c1.671.544 2.833.055 5.128.155 1.389.061 3.067-.297 3.982.15 1.606.784 3.632 2.181 3.632 2.181s10.526 1.204 19.033-1.127M78.864 108.104s-8.39 2.758-13.168 12.12",stroke:"#E59788",strokeWidth:".774",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M109.278 112.533s3.38-3.613 7.575-4.662",stroke:"#E4EBF7",strokeWidth:"1.085",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M107.375 123.006s9.697-2.745 11.445-.88",stroke:"#E59788",strokeWidth:".774",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M194.605 83.656l3.971-3.886M187.166 90.933l3.736-3.655M191.752 84.207l-4.462-4.56M198.453 91.057l-4.133-4.225M129.256 163.074l3.718-3.718M122.291 170.039l3.498-3.498M126.561 163.626l-4.27-4.27M132.975 170.039l-3.955-3.955",stroke:"#BFCDDD",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M190.156 211.779h-1.604a4.023 4.023 0 0 1-4.011-4.011V175.68a4.023 4.023 0 0 1 4.01-4.01h1.605a4.023 4.023 0 0 1 4.011 4.01v32.088a4.023 4.023 0 0 1-4.01 4.01",fill:"#A3B4C6"}),p.createElement("path",{d:"M237.824 212.977a4.813 4.813 0 0 1-4.813 4.813h-86.636a4.813 4.813 0 0 1 0-9.626h86.636a4.813 4.813 0 0 1 4.813 4.813",fill:"#A3B4C6"}),p.createElement("mask",{fill:"#fff"}),p.createElement("path",{fill:"#A3B4C6",mask:"url(#d)",d:"M154.098 190.096h70.513v-84.617h-70.513z"}),p.createElement("path",{d:"M224.928 190.096H153.78a3.219 3.219 0 0 1-3.208-3.209V167.92a3.219 3.219 0 0 1 3.208-3.21h71.148a3.219 3.219 0 0 1 3.209 3.21v18.967a3.219 3.219 0 0 1-3.21 3.209M224.928 130.832H153.78a3.218 3.218 0 0 1-3.208-3.208v-18.968a3.219 3.219 0 0 1 3.208-3.209h71.148a3.219 3.219 0 0 1 3.209 3.21v18.967a3.218 3.218 0 0 1-3.21 3.208",fill:"#BFCDDD",mask:"url(#d)"}),p.createElement("path",{d:"M159.563 120.546a2.407 2.407 0 1 1 0-4.813 2.407 2.407 0 0 1 0 4.813M166.98 120.546a2.407 2.407 0 1 1 0-4.813 2.407 2.407 0 0 1 0 4.813M174.397 120.546a2.407 2.407 0 1 1 0-4.813 2.407 2.407 0 0 1 0 4.813M222.539 120.546h-22.461a.802.802 0 0 1-.802-.802v-3.208c0-.443.359-.803.802-.803h22.46c.444 0 .803.36.803.803v3.208c0 .443-.36.802-.802.802",fill:"#FFF",mask:"url(#d)"}),p.createElement("path",{d:"M224.928 160.464H153.78a3.218 3.218 0 0 1-3.208-3.209v-18.967a3.219 3.219 0 0 1 3.208-3.209h71.148a3.219 3.219 0 0 1 3.209 3.209v18.967a3.218 3.218 0 0 1-3.21 3.209",fill:"#BFCDDD",mask:"url(#d)"}),p.createElement("path",{d:"M173.455 130.832h49.301M164.984 130.832h6.089M155.952 130.832h6.75M173.837 160.613h49.3M165.365 160.613h6.089M155.57 160.613h6.751",stroke:"#7C90A5",strokeWidth:"1.124",strokeLinecap:"round",strokeLinejoin:"round",mask:"url(#d)"}),p.createElement("path",{d:"M159.563 151.038a2.407 2.407 0 1 1 0-4.814 2.407 2.407 0 0 1 0 4.814M166.98 151.038a2.407 2.407 0 1 1 0-4.814 2.407 2.407 0 0 1 0 4.814M174.397 151.038a2.407 2.407 0 1 1 .001-4.814 2.407 2.407 0 0 1 0 4.814M222.539 151.038h-22.461a.802.802 0 0 1-.802-.802v-3.209c0-.443.359-.802.802-.802h22.46c.444 0 .803.36.803.802v3.209c0 .443-.36.802-.802.802M159.563 179.987a2.407 2.407 0 1 1 0-4.813 2.407 2.407 0 0 1 0 4.813M166.98 179.987a2.407 2.407 0 1 1 0-4.813 2.407 2.407 0 0 1 0 4.813M174.397 179.987a2.407 2.407 0 1 1 0-4.813 2.407 2.407 0 0 1 0 4.813M222.539 179.987h-22.461a.802.802 0 0 1-.802-.802v-3.209c0-.443.359-.802.802-.802h22.46c.444 0 .803.36.803.802v3.209c0 .443-.36.802-.802.802",fill:"#FFF",mask:"url(#d)"}),p.createElement("path",{d:"M203.04 221.108h-27.372a2.413 2.413 0 0 1-2.406-2.407v-11.448a2.414 2.414 0 0 1 2.406-2.407h27.372a2.414 2.414 0 0 1 2.407 2.407V218.7a2.413 2.413 0 0 1-2.407 2.407",fill:"#BFCDDD",mask:"url(#d)"}),p.createElement("path",{d:"M177.259 207.217v11.52M201.05 207.217v11.52",stroke:"#A3B4C6",strokeWidth:"1.124",strokeLinecap:"round",strokeLinejoin:"round",mask:"url(#d)"}),p.createElement("path",{d:"M162.873 267.894a9.422 9.422 0 0 1-9.422-9.422v-14.82a9.423 9.423 0 0 1 18.845 0v14.82a9.423 9.423 0 0 1-9.423 9.422",fill:"#5BA02E",mask:"url(#d)"}),p.createElement("path",{d:"M171.22 267.83a9.422 9.422 0 0 1-9.422-9.423v-3.438a9.423 9.423 0 0 1 18.845 0v3.438a9.423 9.423 0 0 1-9.422 9.423",fill:"#92C110",mask:"url(#d)"}),p.createElement("path",{d:"M181.31 293.666h-27.712a3.209 3.209 0 0 1-3.209-3.21V269.79a3.209 3.209 0 0 1 3.209-3.21h27.711a3.209 3.209 0 0 1 3.209 3.21v20.668a3.209 3.209 0 0 1-3.209 3.209",fill:"#F2D7AD",mask:"url(#d)"}))),403:()=>p.createElement("svg",{width:"251",height:"294"},p.createElement("title",null,"Unauthorized"),p.createElement("g",{fill:"none",fillRule:"evenodd"},p.createElement("path",{d:"M0 129.023v-2.084C0 58.364 55.591 2.774 124.165 2.774h2.085c68.574 0 124.165 55.59 124.165 124.165v2.084c0 68.575-55.59 124.166-124.165 124.166h-2.085C55.591 253.189 0 197.598 0 129.023",fill:"#E4EBF7"}),p.createElement("path",{d:"M41.417 132.92a8.231 8.231 0 1 1-16.38-1.65 8.231 8.231 0 0 1 16.38 1.65",fill:"#FFF"}),p.createElement("path",{d:"M38.652 136.36l10.425 5.91M49.989 148.505l-12.58 10.73",stroke:"#FFF",strokeWidth:"2"}),p.createElement("path",{d:"M41.536 161.28a5.636 5.636 0 1 1-11.216-1.13 5.636 5.636 0 0 1 11.216 1.13M59.154 145.261a5.677 5.677 0 1 1-11.297-1.138 5.677 5.677 0 0 1 11.297 1.138M100.36 29.516l29.66-.013a4.562 4.562 0 1 0-.004-9.126l-29.66.013a4.563 4.563 0 0 0 .005 9.126M111.705 47.754l29.659-.013a4.563 4.563 0 1 0-.004-9.126l-29.66.013a4.563 4.563 0 1 0 .005 9.126",fill:"#FFF"}),p.createElement("path",{d:"M114.066 29.503V29.5l15.698-.007a4.563 4.563 0 1 0 .004 9.126l-15.698.007v-.002a4.562 4.562 0 0 0-.004-9.122M185.405 137.723c-.55 5.455-5.418 9.432-10.873 8.882-5.456-.55-9.432-5.418-8.882-10.873.55-5.455 5.418-9.432 10.873-8.882 5.455.55 9.432 5.418 8.882 10.873",fill:"#FFF"}),p.createElement("path",{d:"M180.17 143.772l12.572 7.129M193.841 158.42L178.67 171.36",stroke:"#FFF",strokeWidth:"2"}),p.createElement("path",{d:"M185.55 171.926a6.798 6.798 0 1 1-13.528-1.363 6.798 6.798 0 0 1 13.527 1.363M204.12 155.285a6.848 6.848 0 1 1-13.627-1.375 6.848 6.848 0 0 1 13.626 1.375",fill:"#FFF"}),p.createElement("path",{d:"M152.988 194.074a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0zM225.931 118.217a2.21 2.21 0 1 1-4.421 0 2.21 2.21 0 0 1 4.421 0zM217.09 153.051a2.21 2.21 0 1 1-4.421 0 2.21 2.21 0 0 1 4.42 0zM177.84 109.842a2.21 2.21 0 1 1-4.422 0 2.21 2.21 0 0 1 4.421 0zM196.114 94.454a2.21 2.21 0 1 1-4.421 0 2.21 2.21 0 0 1 4.421 0zM202.844 182.523a2.21 2.21 0 1 1-4.42 0 2.21 2.21 0 0 1 4.42 0z",stroke:"#FFF",strokeWidth:"2"}),p.createElement("path",{stroke:"#FFF",strokeWidth:"2",d:"M215.125 155.262l-1.902 20.075-10.87 5.958M174.601 176.636l-6.322 9.761H156.98l-4.484 6.449M175.874 127.28V111.56M221.51 119.404l-12.77 7.859-15.228-7.86V96.668"}),p.createElement("path",{d:"M180.68 29.32C180.68 13.128 193.806 0 210 0c16.193 0 29.32 13.127 29.32 29.32 0 16.194-13.127 29.322-29.32 29.322-16.193 0-29.32-13.128-29.32-29.321",fill:"#A26EF4"}),p.createElement("path",{d:"M221.45 41.706l-21.563-.125a1.744 1.744 0 0 1-1.734-1.754l.071-12.23a1.744 1.744 0 0 1 1.754-1.734l21.562.125c.964.006 1.74.791 1.735 1.755l-.071 12.229a1.744 1.744 0 0 1-1.754 1.734",fill:"#FFF"}),p.createElement("path",{d:"M215.106 29.192c-.015 2.577-2.049 4.654-4.543 4.64-2.494-.014-4.504-2.115-4.489-4.693l.04-6.925c.016-2.577 2.05-4.654 4.543-4.64 2.494.015 4.504 2.116 4.49 4.693l-.04 6.925zm-4.53-14.074a6.877 6.877 0 0 0-6.916 6.837l-.043 7.368a6.877 6.877 0 0 0 13.754.08l.042-7.368a6.878 6.878 0 0 0-6.837-6.917zM167.566 68.367h-3.93a4.73 4.73 0 0 1-4.717-4.717 4.73 4.73 0 0 1 4.717-4.717h3.93a4.73 4.73 0 0 1 4.717 4.717 4.73 4.73 0 0 1-4.717 4.717",fill:"#FFF"}),p.createElement("path",{d:"M168.214 248.838a6.611 6.611 0 0 1-6.61-6.611v-66.108a6.611 6.611 0 0 1 13.221 0v66.108a6.611 6.611 0 0 1-6.61 6.61",fill:"#5BA02E"}),p.createElement("path",{d:"M176.147 248.176a6.611 6.611 0 0 1-6.61-6.61v-33.054a6.611 6.611 0 1 1 13.221 0v33.053a6.611 6.611 0 0 1-6.61 6.611",fill:"#92C110"}),p.createElement("path",{d:"M185.994 293.89h-27.376a3.17 3.17 0 0 1-3.17-3.17v-45.887a3.17 3.17 0 0 1 3.17-3.17h27.376a3.17 3.17 0 0 1 3.17 3.17v45.886a3.17 3.17 0 0 1-3.17 3.17",fill:"#F2D7AD"}),p.createElement("path",{d:"M81.972 147.673s6.377-.927 17.566-1.28c11.729-.371 17.57 1.086 17.57 1.086s3.697-3.855.968-8.424c1.278-12.077 5.982-32.827.335-48.273-1.116-1.339-3.743-1.512-7.536-.62-1.337.315-7.147-.149-7.983-.1l-15.311-.347s-3.487-.17-8.035-.508c-1.512-.113-4.227-1.683-5.458-.338-.406.443-2.425 5.669-1.97 16.077l8.635 35.642s-3.141 3.61 1.219 7.085",fill:"#FFF"}),p.createElement("path",{d:"M75.768 73.325l-.9-6.397 11.982-6.52s7.302-.118 8.038 1.205c.737 1.324-5.616.993-5.616.993s-1.836 1.388-2.615 2.5c-1.654 2.363-.986 6.471-8.318 5.986-1.708.284-2.57 2.233-2.57 2.233",fill:"#FFC6A0"}),p.createElement("path",{d:"M52.44 77.672s14.217 9.406 24.973 14.444c1.061.497-2.094 16.183-11.892 11.811-7.436-3.318-20.162-8.44-21.482-14.496-.71-3.258 2.543-7.643 8.401-11.76M141.862 80.113s-6.693 2.999-13.844 6.876c-3.894 2.11-10.137 4.704-12.33 7.988-6.224 9.314 3.536 11.22 12.947 7.503 6.71-2.651 28.999-12.127 13.227-22.367",fill:"#FFB594"}),p.createElement("path",{d:"M76.166 66.36l3.06 3.881s-2.783 2.67-6.31 5.747c-7.103 6.195-12.803 14.296-15.995 16.44-3.966 2.662-9.754 3.314-12.177-.118-3.553-5.032.464-14.628 31.422-25.95",fill:"#FFC6A0"}),p.createElement("path",{d:"M64.674 85.116s-2.34 8.413-8.912 14.447c.652.548 18.586 10.51 22.144 10.056 5.238-.669 6.417-18.968 1.145-20.531-.702-.208-5.901-1.286-8.853-2.167-.87-.26-1.611-1.71-3.545-.936l-1.98-.869zM128.362 85.826s5.318 1.956 7.325 13.734c-.546.274-17.55 12.35-21.829 7.805-6.534-6.94-.766-17.393 4.275-18.61 4.646-1.121 5.03-1.37 10.23-2.929",fill:"#FFF"}),p.createElement("path",{d:"M78.18 94.656s.911 7.41-4.914 13.078",stroke:"#E4EBF7",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M87.397 94.68s3.124 2.572 10.263 2.572c7.14 0 9.074-3.437 9.074-3.437",stroke:"#E4EBF7",strokeWidth:".932",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M117.184 68.639l-6.781-6.177s-5.355-4.314-9.223-.893c-3.867 3.422 4.463 2.083 5.653 4.165 1.19 2.082.848 1.143-2.083.446-5.603-1.331-2.082.893 2.975 5.355 2.091 1.845 6.992.955 6.992.955l2.467-3.851z",fill:"#FFC6A0"}),p.createElement("path",{d:"M105.282 91.315l-.297-10.937-15.918-.027-.53 10.45c-.026.403.17.788.515.999 2.049 1.251 9.387 5.093 15.799.424.287-.21.443-.554.431-.91",fill:"#FFB594"}),p.createElement("path",{d:"M107.573 74.24c.817-1.147.982-9.118 1.015-11.928a1.046 1.046 0 0 0-.965-1.055l-4.62-.365c-7.71-1.044-17.071.624-18.253 6.346-5.482 5.813-.421 13.244-.421 13.244s1.963 3.566 4.305 6.791c.756 1.041.398-3.731 3.04-5.929 5.524-4.594 15.899-7.103 15.899-7.103",fill:"#5C2552"}),p.createElement("path",{d:"M88.426 83.206s2.685 6.202 11.602 6.522c7.82.28 8.973-7.008 7.434-17.505l-.909-5.483c-6.118-2.897-15.478.54-15.478.54s-.576 2.044-.19 5.504c-2.276 2.066-1.824 5.618-1.824 5.618s-.905-1.922-1.98-2.321c-.86-.32-1.897.089-2.322 1.98-1.04 4.632 3.667 5.145 3.667 5.145",fill:"#FFC6A0"}),p.createElement("path",{stroke:"#DB836E",strokeWidth:"1.145",strokeLinecap:"round",strokeLinejoin:"round",d:"M100.843 77.099l1.701-.928-1.015-4.324.674-1.406"}),p.createElement("path",{d:"M105.546 74.092c-.022.713-.452 1.279-.96 1.263-.51-.016-.904-.607-.882-1.32.021-.713.452-1.278.96-1.263.51.016.904.607.882 1.32M97.592 74.349c-.022.713-.452 1.278-.961 1.263-.509-.016-.904-.607-.882-1.32.022-.713.452-1.279.961-1.263.51.016.904.606.882 1.32",fill:"#552950"}),p.createElement("path",{d:"M91.132 86.786s5.269 4.957 12.679 2.327",stroke:"#DB836E",strokeWidth:"1.145",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M99.776 81.903s-3.592.232-1.44-2.79c1.59-1.496 4.897-.46 4.897-.46s1.156 3.906-3.457 3.25",fill:"#DB836E"}),p.createElement("path",{d:"M102.88 70.6s2.483.84 3.402.715M93.883 71.975s2.492-1.144 4.778-1.073",stroke:"#5C2552",strokeWidth:"1.526",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M86.32 77.374s.961.879 1.458 2.106c-.377.48-1.033 1.152-.236 1.809M99.337 83.719s1.911.151 2.509-.254",stroke:"#DB836E",strokeWidth:"1.145",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M87.782 115.821l15.73-3.012M100.165 115.821l10.04-2.008",stroke:"#E4EBF7",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M66.508 86.763s-1.598 8.83-6.697 14.078",stroke:"#E4EBF7",strokeWidth:"1.114",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M128.31 87.934s3.013 4.121 4.06 11.785",stroke:"#E4EBF7",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M64.09 84.816s-6.03 9.912-13.607 9.903",stroke:"#DB836E",strokeWidth:".795",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M112.366 65.909l-.142 5.32s5.993 4.472 11.945 9.202c4.482 3.562 8.888 7.455 10.985 8.662 4.804 2.766 8.9 3.355 11.076 1.808 4.071-2.894 4.373-9.878-8.136-15.263-4.271-1.838-16.144-6.36-25.728-9.73",fill:"#FFC6A0"}),p.createElement("path",{d:"M130.532 85.488s4.588 5.757 11.619 6.214",stroke:"#DB836E",strokeWidth:".75",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M121.708 105.73s-.393 8.564-1.34 13.612",stroke:"#E4EBF7",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M115.784 161.512s-3.57-1.488-2.678-7.14",stroke:"#648BD8",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M101.52 290.246s4.326 2.057 7.408 1.03c2.842-.948 4.564.673 7.132 1.186 2.57.514 6.925 1.108 11.772-1.269-.104-5.551-6.939-4.01-12.048-6.763-2.582-1.39-3.812-4.757-3.625-8.863h-9.471s-1.402 10.596-1.169 14.68",fill:"#CBD1D1"}),p.createElement("path",{d:"M101.496 290.073s2.447 1.281 6.809.658c3.081-.44 3.74.485 7.479 1.039 3.739.554 10.802-.07 11.91-.9.415 1.108-.347 2.077-.347 2.077s-1.523.608-4.847.831c-2.045.137-5.843.293-7.663-.507-1.8-1.385-5.286-1.917-5.77-.243-3.947.958-7.41-.288-7.41-.288l-.16-2.667z",fill:"#2B0849"}),p.createElement("path",{d:"M108.824 276.19h3.116s-.103 6.751 4.57 8.62c-4.673.624-8.62-2.32-7.686-8.62",fill:"#A4AABA"}),p.createElement("path",{d:"M57.65 272.52s-2.122 7.47-4.518 12.396c-1.811 3.724-4.255 7.548 5.505 7.548 6.698 0 9.02-.483 7.479-6.648-1.541-6.164.268-13.296.268-13.296H57.65z",fill:"#CBD1D1"}),p.createElement("path",{d:"M51.54 290.04s2.111 1.178 6.682 1.178c6.128 0 8.31-1.662 8.31-1.662s.605 1.122-.624 2.18c-1 .862-3.624 1.603-7.444 1.559-4.177-.049-5.876-.57-6.786-1.177-.831-.554-.692-1.593-.138-2.078",fill:"#2B0849"}),p.createElement("path",{d:"M58.533 274.438s.034 1.529-.315 2.95c-.352 1.431-1.087 3.127-1.139 4.17-.058 1.16 4.57 1.592 5.194.035.623-1.559 1.303-6.475 1.927-7.306.622-.831-4.94-2.135-5.667.15",fill:"#A4AABA"}),p.createElement("path",{d:"M100.885 277.015l13.306.092s1.291-54.228 1.843-64.056c.552-9.828 3.756-43.13.997-62.788l-12.48-.64-22.725.776s-.433 3.944-1.19 9.921c-.062.493-.677.838-.744 1.358-.075.582.42 1.347.318 1.956-2.35 14.003-6.343 32.926-8.697 46.425-.116.663-1.227 1.004-1.45 2.677-.04.3.21 1.516.112 1.785-6.836 18.643-10.89 47.584-14.2 61.551l14.528-.014s2.185-8.524 4.008-16.878c2.796-12.817 22.987-84.553 22.987-84.553l3-.517 1.037 46.1s-.223 1.228.334 2.008c.558.782-.556 1.117-.39 2.233l.39 1.784s-.446 7.14-.892 11.826c-.446 4.685-.092 38.954-.092 38.954",fill:"#7BB2F9"}),p.createElement("path",{d:"M77.438 220.434c1.146.094 4.016-2.008 6.916-4.91M107.55 223.931s2.758-1.103 6.069-3.862",stroke:"#648BD8",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M108.459 220.905s2.759-1.104 6.07-3.863",stroke:"#648BD8",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M76.099 223.557s2.608-.587 6.47-3.346M87.33 150.82c-.27 3.088.297 8.478-4.315 9.073M104.829 149.075s.11 13.936-1.286 14.983c-2.207 1.655-2.975 1.934-2.975 1.934M101.014 149.63s.035 12.81-1.19 24.245M94.93 174.965s7.174-1.655 9.38-1.655M75.671 204.754c-.316 1.55-.64 3.067-.973 4.535 0 0-1.45 1.822-1.003 3.756.446 1.934-.943 2.034-4.96 15.273-1.686 5.559-4.464 18.49-6.313 27.447-.078.38-4.018 18.06-4.093 18.423M77.043 196.743a313.269 313.269 0 0 1-.877 4.729M83.908 151.414l-1.19 10.413s-1.091.148-.496 2.23c.111 1.34-2.66 15.692-5.153 30.267M57.58 272.94h13.238",stroke:"#648BD8",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"}),p.createElement("path",{d:"M117.377 147.423s-16.955-3.087-35.7.199c.157 2.501-.002 4.128-.002 4.128s14.607-2.802 35.476-.31c.251-2.342.226-4.017.226-4.017",fill:"#192064"}),p.createElement("path",{d:"M107.511 150.353l.004-4.885a.807.807 0 0 0-.774-.81c-2.428-.092-5.04-.108-7.795-.014a.814.814 0 0 0-.784.81l-.003 4.88c0 .456.371.82.827.808a140.76 140.76 0 0 1 7.688.017.81.81 0 0 0 .837-.806",fill:"#FFF"}),p.createElement("path",{d:"M106.402 149.426l.002-3.06a.64.64 0 0 0-.616-.643 94.135 94.135 0 0 0-5.834-.009.647.647 0 0 0-.626.643l-.001 3.056c0 .36.291.648.651.64 1.78-.04 3.708-.041 5.762.012.36.009.662-.279.662-.64",fill:"#192064"}),p.createElement("path",{d:"M101.485 273.933h12.272M102.652 269.075c.006 3.368.04 5.759.11 6.47M102.667 263.125c-.009 1.53-.015 2.98-.016 4.313M102.204 174.024l.893 44.402s.669 1.561-.224 2.677c-.892 1.116 2.455.67.893 2.231-1.562 1.562.893 1.116 0 3.347-.592 1.48-.988 20.987-1.09 34.956",stroke:"#648BD8",strokeWidth:"1.051",strokeLinecap:"round",strokeLinejoin:"round"})))},xl=Object.keys(xi),xc=e=>{let{prefixCls:t,icon:n,status:r}=e,o=h()(`${t}-icon`);if(xl.includes(`${r}`)){let e=xi[r];return p.createElement("div",{className:`${o} ${t}-image`},p.createElement(e,null))}let a=p.createElement(xa[r]);return null===n||!1===n?null:p.createElement("div",{className:o},n||a)},xs=e=>{let{prefixCls:t,extra:n}=e;return n?p.createElement("div",{className:`${t}-extra`},n):null},xu=e=>{let{prefixCls:t,className:n,rootClassName:r,subTitle:o,title:a,style:i,children:l,status:c="info",icon:s,extra:u}=e,{getPrefixCls:d,direction:f,result:m}=p.useContext(A.QO),g=d("result",t),[v,b,y]=xo(g),x=h()(g,`${g}-${c}`,n,null==m?void 0:m.className,r,{[`${g}-rtl`]:"rtl"===f},b,y),$=Object.assign(Object.assign({},null==m?void 0:m.style),i);return v(p.createElement("div",{className:x,style:$},p.createElement(xc,{prefixCls:g,status:c,icon:s}),p.createElement("div",{className:`${g}-title`},a),o&&p.createElement("div",{className:`${g}-subtitle`},o),p.createElement(xs,{prefixCls:g,extra:u}),l&&p.createElement("div",{className:`${g}-content`},l)))};xu.PRESENTED_IMAGE_403=xi["403"],xu.PRESENTED_IMAGE_404=xi["404"],xu.PRESENTED_IMAGE_500=xi["500"];let xd=xu,xf=va,xp=e=>{let t,{value:n,formatter:r,precision:o,decimalSeparator:a,groupSeparator:i="",prefixCls:l}=e;if("function"==typeof r)t=r(n);else{let e=String(n),r=e.match(/^(-?)(\d*)(\.(\d+))?$/);if(r&&"-"!==e){let e=r[1],n=r[2]||"0",c=r[4]||"";n=n.replace(/\B(?=(\d{3})+(?!\d))/g,i),"number"==typeof o&&(c=c.padEnd(o,"0").slice(0,o>0?o:0)),c&&(c=`${a}${c}`),t=[p.createElement("span",{key:"int",className:`${l}-content-value-int`},e,n),c&&p.createElement("span",{key:"decimal",className:`${l}-content-value-decimal`},c)]}else t=e}return p.createElement("span",{className:`${l}-content-value`},t)},xm=(0,w.OF)("Statistic",e=>[(e=>{let{componentCls:t,marginXXS:n,padding:r,colorTextDescription:o,titleFontSize:a,colorTextHeading:i,contentFontSize:l,fontFamily:c}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{[`${t}-title`]:{marginBottom:n,color:o,fontSize:a},[`${t}-skeleton`]:{paddingTop:r},[`${t}-content`]:{color:i,fontSize:l,fontFamily:c,[`${t}-content-value`]:{display:"inline-block",direction:"ltr"},[`${t}-content-prefix, ${t}-content-suffix`]:{display:"inline-block"},[`${t}-content-prefix`]:{marginInlineEnd:n},[`${t}-content-suffix`]:{marginInlineStart:n}}})}})((0,ey.oX)(e,{}))],e=>{let{fontSizeHeading3:t,fontSize:n}=e;return{titleFontSize:n,contentFontSize:t}});var xg=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let xh=e=>{let{prefixCls:t,className:n,rootClassName:r,style:o,valueStyle:a,value:i=0,title:l,valueRender:c,prefix:s,suffix:u,loading:d=!1,formatter:f,precision:m,decimalSeparator:g=".",groupSeparator:v=",",onMouseEnter:b,onMouseLeave:y}=e,x=xg(e,["prefixCls","className","rootClassName","style","valueStyle","value","title","valueRender","prefix","suffix","loading","formatter","precision","decimalSeparator","groupSeparator","onMouseEnter","onMouseLeave"]),{getPrefixCls:$,direction:w,statistic:C}=p.useContext(A.QO),S=$("statistic",t),[k,E,O]=xm(S),M=p.createElement(xp,{decimalSeparator:g,groupSeparator:v,prefixCls:S,formatter:f,precision:m,value:i}),N=h()(S,{[`${S}-rtl`]:"rtl"===w},null==C?void 0:C.className,n,r,E,O),I=(0,H.A)(x,{aria:!0,data:!0});return k(p.createElement("div",Object.assign({},I,{className:N,style:Object.assign(Object.assign({},null==C?void 0:C.style),o),onMouseEnter:b,onMouseLeave:y}),l&&p.createElement("div",{className:`${S}-title`},l),p.createElement(nf,{paragraph:!1,loading:d,className:`${S}-skeleton`},p.createElement("div",{style:a,className:`${S}-content`},s&&p.createElement("span",{className:`${S}-content-prefix`},s),c?c(M):M,u&&p.createElement("span",{className:`${S}-content-suffix`},u)))))},xv=[["Y",31536e6],["M",2592e6],["D",864e5],["H",36e5],["m",6e4],["s",1e3],["S",1]];var xb=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let xy=1e3/30,xx=p.memo(e=>{let{value:t,format:n="HH:mm:ss",onChange:r,onFinish:o}=e,a=xb(e,["value","format","onChange","onFinish"]),i=(0,aA.A)(),l=p.useRef(null);return p.useEffect(()=>{let e=new Date(t).getTime();return e>=Date.now()&&(l.current=setInterval(()=>{i(),null==r||r(e-Date.now()),e{l.current&&(clearInterval(l.current),l.current=null)}},[t]),p.createElement(xh,Object.assign({},a,{value:t,valueRender:e=>(0,W.Ob)(e,{title:void 0}),formatter:(e,t)=>(function(e,t){var n;let r,o,a,i,l,c,{format:s=""}=t;return n=Math.max(new Date(e).getTime()-Date.now(),0),r=n,o=/\[[^\]]*]/g,a=(s.match(o)||[]).map(e=>e.slice(1,-1)),i=s.replace(o,"[]"),l=xv.reduce((e,t)=>{let[n,o]=t;if(e.includes(n)){let t=Math.floor(r/o);return r-=t*o,e.replace(RegExp(`${n}+`,"g"),e=>{let n=e.length;return t.toString().padStart(n,"0")})}return e},i),c=0,l.replace(o,()=>{let e=a[c];return c+=1,e})})(e,Object.assign(Object.assign({},t),{format:n}))}))});xh.Countdown=xx;let x$=xh;var xA=["className","prefixCls","style","active","status","iconPrefix","icon","wrapperStyle","stepNumber","disabled","description","title","subTitle","progressDot","stepIcon","tailContent","icons","stepIndex","onStepClick","onClick","render"];function xw(e){return"string"==typeof e}let xC=function(e){var t,n,r,o,a,i=e.className,l=e.prefixCls,c=e.style,s=e.active,u=e.status,d=e.iconPrefix,f=e.icon,m=(e.wrapperStyle,e.stepNumber),g=e.disabled,v=e.description,b=e.title,y=e.subTitle,x=e.progressDot,$=e.stepIcon,A=e.tailContent,w=e.icons,C=e.stepIndex,S=e.onStepClick,k=e.onClick,E=e.render,O=(0,eO.A)(e,xA),M={};S&&!g&&(M.role="button",M.tabIndex=0,M.onClick=function(e){null==k||k(e),S(C)},M.onKeyDown=function(e){var t=e.which;(t===eR.A.ENTER||t===eR.A.SPACE)&&S(C)});var N=u||"wait",I=h()("".concat(l,"-item"),"".concat(l,"-item-").concat(N),i,(a={},(0,ej.A)(a,"".concat(l,"-item-custom"),f),(0,ej.A)(a,"".concat(l,"-item-active"),s),(0,ej.A)(a,"".concat(l,"-item-disabled"),!0===g),a)),j=(0,eM.A)({},c),z=p.createElement("div",(0,R.A)({},O,{className:I,style:j}),p.createElement("div",(0,R.A)({onClick:k},M,{className:"".concat(l,"-item-container")}),p.createElement("div",{className:"".concat(l,"-item-tail")},A),p.createElement("div",{className:"".concat(l,"-item-icon")},(r=h()("".concat(l,"-icon"),"".concat(d,"icon"),(t={},(0,ej.A)(t,"".concat(d,"icon-").concat(f),f&&xw(f)),(0,ej.A)(t,"".concat(d,"icon-check"),!f&&"finish"===u&&(w&&!w.finish||!w)),(0,ej.A)(t,"".concat(d,"icon-cross"),!f&&"error"===u&&(w&&!w.error||!w)),t)),o=p.createElement("span",{className:"".concat(l,"-icon-dot")}),n=x?"function"==typeof x?p.createElement("span",{className:"".concat(l,"-icon")},x(o,{index:m-1,status:u,title:b,description:v})):p.createElement("span",{className:"".concat(l,"-icon")},o):f&&!xw(f)?p.createElement("span",{className:"".concat(l,"-icon")},f):w&&w.finish&&"finish"===u?p.createElement("span",{className:"".concat(l,"-icon")},w.finish):w&&w.error&&"error"===u?p.createElement("span",{className:"".concat(l,"-icon")},w.error):f||"finish"===u||"error"===u?p.createElement("span",{className:r}):p.createElement("span",{className:"".concat(l,"-icon")},m),$&&(n=$({index:m-1,status:u,title:b,description:v,node:n})),n)),p.createElement("div",{className:"".concat(l,"-item-content")},p.createElement("div",{className:"".concat(l,"-item-title")},b,y&&p.createElement("div",{title:"string"==typeof y?y:void 0,className:"".concat(l,"-item-subtitle")},y)),v&&p.createElement("div",{className:"".concat(l,"-item-description")},v))));return E&&(z=E(z)||null),z};var xS=["prefixCls","style","className","children","direction","type","labelPlacement","iconPrefix","status","size","current","progressDot","stepIcon","initial","icons","onChange","itemRender","items"];function xk(e){var t,n=e.prefixCls,r=void 0===n?"rc-steps":n,o=e.style,a=void 0===o?{}:o,i=e.className,l=(e.children,e.direction),c=e.type,s=void 0===c?"default":c,u=e.labelPlacement,d=e.iconPrefix,f=void 0===d?"rc":d,p=e.status,g=void 0===p?"process":p,v=e.size,b=e.current,y=void 0===b?0:b,x=e.progressDot,$=e.stepIcon,A=e.initial,w=void 0===A?0:A,C=e.icons,S=e.onChange,k=e.itemRender,E=e.items,O=(0,eO.A)(e,xS),M="inline"===s,N=M||void 0!==x&&x,I=M||void 0===l?"horizontal":l,j=M?void 0:v,z=h()(r,"".concat(r,"-").concat(I),i,(t={},(0,ej.A)(t,"".concat(r,"-").concat(j),j),(0,ej.A)(t,"".concat(r,"-label-").concat(N?"vertical":void 0===u?"horizontal":u),"horizontal"===I),(0,ej.A)(t,"".concat(r,"-dot"),!!N),(0,ej.A)(t,"".concat(r,"-navigation"),"navigation"===s),(0,ej.A)(t,"".concat(r,"-inline"),M),t)),P=function(e){S&&y!==e&&S(e)};return m().createElement("div",(0,R.A)({className:z,style:a},O),(void 0===E?[]:E).filter(function(e){return e}).map(function(e,t){var n=(0,eM.A)({},e),o=w+t;return"error"===g&&t===y-1&&(n.className="".concat(r,"-next-error")),n.status||(o===y?n.status=g:o{let n=`${t.componentCls}-item`,r=`${e}IconColor`,o=`${e}TitleColor`,a=`${e}DescriptionColor`,i=`${e}TailColor`,l=`${e}IconBgColor`,c=`${e}IconBorderColor`,s=`${e}DotColor`;return{[`${n}-${e} ${n}-icon`]:{backgroundColor:t[l],borderColor:t[c],[`> ${t.componentCls}-icon`]:{color:t[r],[`${t.componentCls}-icon-dot`]:{background:t[s]}}},[`${n}-${e}${n}-custom ${n}-icon`]:{[`> ${t.componentCls}-icon`]:{color:t[s]}},[`${n}-${e} > ${n}-container > ${n}-content > ${n}-title`]:{color:t[o],"&::after":{backgroundColor:t[i]}},[`${n}-${e} > ${n}-container > ${n}-content > ${n}-description`]:{color:t[a]},[`${n}-${e} > ${n}-container > ${n}-tail::after`]:{backgroundColor:t[i]}}},xO=(0,w.OF)("Steps",e=>{let{colorTextDisabled:t,controlHeightLG:n,colorTextLightSolid:r,colorText:o,colorPrimary:a,colorTextDescription:i,colorTextQuaternary:l,colorError:c,colorBorderSecondary:s,colorSplit:u}=e;return[(e=>{let{componentCls:t}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{display:"flex",width:"100%",fontSize:0,textAlign:"initial"}),(e=>{let{componentCls:t,motionDurationSlow:n}=e,r=`${t}-item`,o=`${r}-icon`;return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({[r]:{position:"relative",display:"inline-block",flex:1,overflow:"hidden",verticalAlign:"top","&:last-child":{flex:"none",[`> ${r}-container > ${r}-tail, > ${r}-container > ${r}-content > ${r}-title::after`]:{display:"none"}}},[`${r}-container`]:{outline:"none","&:focus-visible":{[o]:Object.assign({},(0,V.jk)(e))}},[`${o}, ${r}-content`]:{display:"inline-block",verticalAlign:"top"},[o]:{width:e.iconSize,height:e.iconSize,marginTop:0,marginBottom:0,marginInlineStart:0,marginInlineEnd:e.marginXS,fontSize:e.iconFontSize,fontFamily:e.fontFamily,lineHeight:(0,q.zA)(e.iconSize),textAlign:"center",borderRadius:e.iconSize,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} transparent`,transition:`background-color ${n}, border-color ${n}`,[`${t}-icon`]:{position:"relative",top:e.iconTop,color:e.colorPrimary,lineHeight:1}},[`${r}-tail`]:{position:"absolute",top:e.calc(e.iconSize).div(2).equal(),insetInlineStart:0,width:"100%","&::after":{display:"inline-block",width:"100%",height:e.lineWidth,background:e.colorSplit,borderRadius:e.lineWidth,transition:`background ${n}`,content:'""'}},[`${r}-title`]:{position:"relative",display:"inline-block",paddingInlineEnd:e.padding,color:e.colorText,fontSize:e.fontSizeLG,lineHeight:(0,q.zA)(e.titleLineHeight),"&::after":{position:"absolute",top:e.calc(e.titleLineHeight).div(2).equal(),insetInlineStart:"100%",display:"block",width:9999,height:e.lineWidth,background:e.processTailColor,content:'""'}},[`${r}-subtitle`]:{display:"inline",marginInlineStart:e.marginXS,color:e.colorTextDescription,fontWeight:"normal",fontSize:e.fontSize},[`${r}-description`]:{color:e.colorTextDescription,fontSize:e.fontSize}},xE("wait",e)),xE("process",e)),{[`${r}-process > ${r}-container > ${r}-title`]:{fontWeight:e.fontWeightStrong}}),xE("finish",e)),xE("error",e)),{[`${r}${t}-next-error > ${t}-item-title::after`]:{background:e.colorError},[`${r}-disabled`]:{cursor:"not-allowed"}})})(e)),(e=>{let{componentCls:t,motionDurationSlow:n}=e;return{[`& ${t}-item`]:{[`&:not(${t}-item-active)`]:{[`& > ${t}-item-container[role='button']`]:{cursor:"pointer",[`${t}-item`]:{[`&-title, &-subtitle, &-description, &-icon ${t}-icon`]:{transition:`color ${n}`}},"&:hover":{[`${t}-item`]:{"&-title, &-subtitle, &-description":{color:e.colorPrimary}}}},[`&:not(${t}-item-process)`]:{[`& > ${t}-item-container[role='button']:hover`]:{[`${t}-item`]:{"&-icon":{borderColor:e.colorPrimary,[`${t}-icon`]:{color:e.colorPrimary}}}}}}},[`&${t}-horizontal:not(${t}-label-vertical)`]:{[`${t}-item`]:{paddingInlineStart:e.padding,whiteSpace:"nowrap","&:first-child":{paddingInlineStart:0},[`&:last-child ${t}-item-title`]:{paddingInlineEnd:0},"&-tail":{display:"none"},"&-description":{maxWidth:e.descriptionMaxWidth,whiteSpace:"normal"}}}}})(e)),(e=>{let{componentCls:t,customIconTop:n,customIconSize:r,customIconFontSize:o}=e;return{[`${t}-item-custom`]:{[`> ${t}-item-container > ${t}-item-icon`]:{height:"auto",background:"none",border:0,[`> ${t}-icon`]:{top:n,width:r,height:r,fontSize:o,lineHeight:(0,q.zA)(r)}}},[`&:not(${t}-vertical)`]:{[`${t}-item-custom`]:{[`${t}-item-icon`]:{width:"auto",background:"none"}}}}})(e)),(e=>{let{componentCls:t,iconSizeSM:n,fontSizeSM:r,fontSize:o,colorTextDescription:a}=e;return{[`&${t}-small`]:{[`&${t}-horizontal:not(${t}-label-vertical) ${t}-item`]:{paddingInlineStart:e.paddingSM,"&:first-child":{paddingInlineStart:0}},[`${t}-item-icon`]:{width:n,height:n,marginTop:0,marginBottom:0,marginInline:`0 ${(0,q.zA)(e.marginXS)}`,fontSize:r,lineHeight:(0,q.zA)(n),textAlign:"center",borderRadius:n},[`${t}-item-title`]:{paddingInlineEnd:e.paddingSM,fontSize:o,lineHeight:(0,q.zA)(n),"&::after":{top:e.calc(n).div(2).equal()}},[`${t}-item-description`]:{color:a,fontSize:o},[`${t}-item-tail`]:{top:e.calc(n).div(2).sub(e.paddingXXS).equal()},[`${t}-item-custom ${t}-item-icon`]:{width:"inherit",height:"inherit",lineHeight:"inherit",background:"none",border:0,borderRadius:0,[`> ${t}-icon`]:{fontSize:n,lineHeight:(0,q.zA)(n),transform:"none"}}}}})(e)),(e=>{let{componentCls:t,iconSizeSM:n,iconSize:r}=e;return{[`&${t}-vertical`]:{display:"flex",flexDirection:"column",[`> ${t}-item`]:{display:"block",flex:"1 0 auto",paddingInlineStart:0,overflow:"visible",[`${t}-item-icon`]:{float:"left",marginInlineEnd:e.margin},[`${t}-item-content`]:{display:"block",minHeight:e.calc(e.controlHeight).mul(1.5).equal(),overflow:"hidden"},[`${t}-item-title`]:{lineHeight:(0,q.zA)(r)},[`${t}-item-description`]:{paddingBottom:e.paddingSM}},[`> ${t}-item > ${t}-item-container > ${t}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(r).div(2).sub(e.lineWidth).equal(),width:e.lineWidth,height:"100%",padding:`${(0,q.zA)(e.calc(e.marginXXS).mul(1.5).add(r).equal())} 0 ${(0,q.zA)(e.calc(e.marginXXS).mul(1.5).equal())}`,"&::after":{width:e.lineWidth,height:"100%"}},[`> ${t}-item:not(:last-child) > ${t}-item-container > ${t}-item-tail`]:{display:"block"},[` > ${t}-item > ${t}-item-container > ${t}-item-content > ${t}-item-title`]:{"&::after":{display:"none"}},[`&${t}-small ${t}-item-container`]:{[`${t}-item-tail`]:{position:"absolute",top:0,insetInlineStart:e.calc(n).div(2).sub(e.lineWidth).equal(),padding:`${(0,q.zA)(e.calc(e.marginXXS).mul(1.5).add(n).equal())} 0 ${(0,q.zA)(e.calc(e.marginXXS).mul(1.5).equal())}`},[`${t}-item-title`]:{lineHeight:(0,q.zA)(n)}}}}})(e)),(e=>{let{componentCls:t}=e,n=`${t}-item`;return{[`${t}-horizontal`]:{[`${n}-tail`]:{transform:"translateY(-50%)"}}}})(e)),(e=>{let{componentCls:t,iconSize:n,lineHeight:r,iconSizeSM:o}=e;return{[`&${t}-label-vertical`]:{[`${t}-item`]:{overflow:"visible","&-tail":{marginInlineStart:e.calc(n).div(2).add(e.controlHeightLG).equal(),padding:`0 ${(0,q.zA)(e.paddingLG)}`},"&-content":{display:"block",width:e.calc(n).div(2).add(e.controlHeightLG).mul(2).equal(),marginTop:e.marginSM,textAlign:"center"},"&-icon":{display:"inline-block",marginInlineStart:e.controlHeightLG},"&-title":{paddingInlineEnd:0,paddingInlineStart:0,"&::after":{display:"none"}},"&-subtitle":{display:"block",marginBottom:e.marginXXS,marginInlineStart:0,lineHeight:r}},[`&${t}-small:not(${t}-dot)`]:{[`${t}-item`]:{"&-icon":{marginInlineStart:e.calc(n).sub(o).div(2).add(e.controlHeightLG).equal()}}}}}})(e)),(e=>{let{componentCls:t,descriptionMaxWidth:n,lineHeight:r,dotCurrentSize:o,dotSize:a,motionDurationSlow:i}=e;return{[`&${t}-dot, &${t}-dot${t}-small`]:{[`${t}-item`]:{"&-title":{lineHeight:r},"&-tail":{top:e.calc(e.dotSize).sub(e.calc(e.lineWidth).mul(3).equal()).div(2).equal(),width:"100%",marginTop:0,marginBottom:0,marginInline:`${(0,q.zA)(e.calc(n).div(2).equal())} 0`,padding:0,"&::after":{width:`calc(100% - ${(0,q.zA)(e.calc(e.marginSM).mul(2).equal())})`,height:e.calc(e.lineWidth).mul(3).equal(),marginInlineStart:e.marginSM}},"&-icon":{width:a,height:a,marginInlineStart:e.calc(e.descriptionMaxWidth).sub(a).div(2).equal(),paddingInlineEnd:0,lineHeight:(0,q.zA)(a),background:"transparent",border:0,[`${t}-icon-dot`]:{position:"relative",float:"left",width:"100%",height:"100%",borderRadius:100,transition:`all ${i}`,"&::after":{position:"absolute",top:e.calc(e.marginSM).mul(-1).equal(),insetInlineStart:e.calc(a).sub(e.calc(e.controlHeightLG).mul(1.5).equal()).div(2).equal(),width:e.calc(e.controlHeightLG).mul(1.5).equal(),height:e.controlHeight,background:"transparent",content:'""'}}},"&-content":{width:n},[`&-process ${t}-item-icon`]:{position:"relative",top:e.calc(a).sub(o).div(2).equal(),width:o,height:o,lineHeight:(0,q.zA)(o),background:"none",marginInlineStart:e.calc(e.descriptionMaxWidth).sub(o).div(2).equal()},[`&-process ${t}-icon`]:{[`&:first-child ${t}-icon-dot`]:{insetInlineStart:0}}}},[`&${t}-vertical${t}-dot`]:{[`${t}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(a).div(2).equal(),marginInlineStart:0,background:"none"},[`${t}-item-process ${t}-item-icon`]:{marginTop:e.calc(e.controlHeight).sub(o).div(2).equal(),top:0,insetInlineStart:e.calc(a).sub(o).div(2).equal(),marginInlineStart:0},[`${t}-item > ${t}-item-container > ${t}-item-tail`]:{top:e.calc(e.controlHeight).sub(a).div(2).equal(),insetInlineStart:0,margin:0,padding:`${(0,q.zA)(e.calc(a).add(e.paddingXS).equal())} 0 ${(0,q.zA)(e.paddingXS)}`,"&::after":{marginInlineStart:e.calc(a).sub(e.lineWidth).div(2).equal()}},[`&${t}-small`]:{[`${t}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(a).div(2).equal()},[`${t}-item-process ${t}-item-icon`]:{marginTop:e.calc(e.controlHeightSM).sub(o).div(2).equal()},[`${t}-item > ${t}-item-container > ${t}-item-tail`]:{top:e.calc(e.controlHeightSM).sub(a).div(2).equal()}},[`${t}-item:first-child ${t}-icon-dot`]:{insetInlineStart:0},[`${t}-item-content`]:{width:"inherit"}}}})(e)),(e=>{let{componentCls:t,navContentMaxWidth:n,navArrowColor:r,stepsNavActiveColor:o,motionDurationSlow:a}=e;return{[`&${t}-navigation`]:{paddingTop:e.paddingSM,[`&${t}-small`]:{[`${t}-item`]:{"&-container":{marginInlineStart:e.calc(e.marginSM).mul(-1).equal()}}},[`${t}-item`]:{overflow:"visible",textAlign:"center","&-container":{display:"inline-block",height:"100%",marginInlineStart:e.calc(e.margin).mul(-1).equal(),paddingBottom:e.paddingSM,textAlign:"start",transition:`opacity ${a}`,[`${t}-item-content`]:{maxWidth:n},[`${t}-item-title`]:Object.assign(Object.assign({maxWidth:"100%",paddingInlineEnd:0},V.L9),{"&::after":{display:"none"}})},[`&:not(${t}-item-active)`]:{[`${t}-item-container[role='button']`]:{cursor:"pointer","&:hover":{opacity:.85}}},"&:last-child":{flex:1,"&::after":{display:"none"}},"&::after":{position:"absolute",top:`calc(50% - ${(0,q.zA)(e.calc(e.paddingSM).div(2).equal())})`,insetInlineStart:"100%",display:"inline-block",width:e.fontSizeIcon,height:e.fontSizeIcon,borderTop:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${r}`,borderBottom:"none",borderInlineStart:"none",borderInlineEnd:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${r}`,transform:"translateY(-50%) translateX(-50%) rotate(45deg)",content:'""'},"&::before":{position:"absolute",bottom:0,insetInlineStart:"50%",display:"inline-block",width:0,height:e.lineWidthBold,backgroundColor:o,transition:`width ${a}, inset-inline-start ${a}`,transitionTimingFunction:"ease-out",content:'""'}},[`${t}-item${t}-item-active::before`]:{insetInlineStart:0,width:"100%"}},[`&${t}-navigation${t}-vertical`]:{[`> ${t}-item`]:{marginInlineEnd:0,"&::before":{display:"none"},[`&${t}-item-active::before`]:{top:0,insetInlineEnd:0,insetInlineStart:"unset",display:"block",width:e.calc(e.lineWidth).mul(3).equal(),height:`calc(100% - ${(0,q.zA)(e.marginLG)})`},"&::after":{position:"relative",insetInlineStart:"50%",display:"block",width:e.calc(e.controlHeight).mul(.25).equal(),height:e.calc(e.controlHeight).mul(.25).equal(),marginBottom:e.marginXS,textAlign:"center",transform:"translateY(-50%) translateX(-50%) rotate(135deg)"},"&:last-child":{"&::after":{display:"none"}},[`> ${t}-item-container > ${t}-item-tail`]:{visibility:"hidden"}}},[`&${t}-navigation${t}-horizontal`]:{[`> ${t}-item > ${t}-item-container > ${t}-item-tail`]:{visibility:"hidden"}}}})(e)),(e=>{let{componentCls:t}=e;return{[`&${t}-rtl`]:{direction:"rtl",[`${t}-item`]:{"&-subtitle":{float:"left"}},[`&${t}-navigation`]:{[`${t}-item::after`]:{transform:"rotate(-45deg)"}},[`&${t}-vertical`]:{[`> ${t}-item`]:{"&::after":{transform:"rotate(225deg)"},[`${t}-item-icon`]:{float:"right"}}},[`&${t}-dot`]:{[`${t}-item-icon ${t}-icon-dot, &${t}-small ${t}-item-icon ${t}-icon-dot`]:{float:"right"}}}}})(e)),(e=>{let{antCls:t,componentCls:n,iconSize:r,iconSizeSM:o,processIconColor:a,marginXXS:i,lineWidthBold:l,lineWidth:c,paddingXXS:s}=e,u=e.calc(r).add(e.calc(l).mul(4).equal()).equal(),d=e.calc(o).add(e.calc(e.lineWidth).mul(4).equal()).equal();return{[`&${n}-with-progress`]:{[`${n}-item`]:{paddingTop:s,[`&-process ${n}-item-container ${n}-item-icon ${n}-icon`]:{color:a}},[`&${n}-vertical > ${n}-item `]:{paddingInlineStart:s,[`> ${n}-item-container > ${n}-item-tail`]:{top:i,insetInlineStart:e.calc(r).div(2).sub(c).add(s).equal()}},[`&, &${n}-small`]:{[`&${n}-horizontal ${n}-item:first-child`]:{paddingBottom:s,paddingInlineStart:s}},[`&${n}-small${n}-vertical > ${n}-item > ${n}-item-container > ${n}-item-tail`]:{insetInlineStart:e.calc(o).div(2).sub(c).add(s).equal()},[`&${n}-label-vertical ${n}-item ${n}-item-tail`]:{top:e.calc(r).div(2).add(s).equal()},[`${n}-item-icon`]:{position:"relative",[`${t}-progress`]:{position:"absolute",insetInlineStart:"50%",top:"50%",transform:"translate(-50%, -50%)","&-inner":{width:`${(0,q.zA)(u)} !important`,height:`${(0,q.zA)(u)} !important`}}},[`&${n}-small`]:{[`&${n}-label-vertical ${n}-item ${n}-item-tail`]:{top:e.calc(o).div(2).add(s).equal()},[`${n}-item-icon ${t}-progress-inner`]:{width:`${(0,q.zA)(d)} !important`,height:`${(0,q.zA)(d)} !important`}}}}})(e)),(e=>{let{componentCls:t,inlineDotSize:n,inlineTitleColor:r,inlineTailColor:o}=e,a=e.calc(e.paddingXS).add(e.lineWidth).equal(),i={[`${t}-item-container ${t}-item-content ${t}-item-title`]:{color:r}};return{[`&${t}-inline`]:{width:"auto",display:"inline-flex",[`${t}-item`]:{flex:"none","&-container":{padding:`${(0,q.zA)(a)} ${(0,q.zA)(e.paddingXXS)} 0`,margin:`0 ${(0,q.zA)(e.calc(e.marginXXS).div(2).equal())}`,borderRadius:e.borderRadiusSM,cursor:"pointer",transition:`background-color ${e.motionDurationMid}`,"&:hover":{background:e.controlItemBgHover},"&[role='button']:hover":{opacity:1}},"&-icon":{width:n,height:n,marginInlineStart:`calc(50% - ${(0,q.zA)(e.calc(n).div(2).equal())})`,[`> ${t}-icon`]:{top:0},[`${t}-icon-dot`]:{borderRadius:e.calc(e.fontSizeSM).div(4).equal(),"&::after":{display:"none"}}},"&-content":{width:"auto",marginTop:e.calc(e.marginXS).sub(e.lineWidth).equal()},"&-title":{color:r,fontSize:e.fontSizeSM,lineHeight:e.lineHeightSM,fontWeight:"normal",marginBottom:e.calc(e.marginXXS).div(2).equal()},"&-description":{display:"none"},"&-tail":{marginInlineStart:0,top:e.calc(n).div(2).add(a).equal(),transform:"translateY(-50%)","&:after":{width:"100%",height:e.lineWidth,borderRadius:0,marginInlineStart:0,background:o}},[`&:first-child ${t}-item-tail`]:{width:"50%",marginInlineStart:"50%"},[`&:last-child ${t}-item-tail`]:{display:"block",width:"50%"},"&-wait":Object.assign({[`${t}-item-icon ${t}-icon ${t}-icon-dot`]:{backgroundColor:e.colorBorderBg,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${o}`}},i),"&-finish":Object.assign({[`${t}-item-tail::after`]:{backgroundColor:o},[`${t}-item-icon ${t}-icon ${t}-icon-dot`]:{backgroundColor:o,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${o}`}},i),"&-error":i,"&-active, &-process":Object.assign({[`${t}-item-icon`]:{width:n,height:n,marginInlineStart:`calc(50% - ${(0,q.zA)(e.calc(n).div(2).equal())})`,top:0}},i),[`&:not(${t}-item-active) > ${t}-item-container[role='button']:hover`]:{[`${t}-item-title`]:{color:r}}}}}})(e))}})((0,ey.oX)(e,{processIconColor:r,processTitleColor:o,processDescriptionColor:o,processIconBgColor:a,processIconBorderColor:a,processDotColor:a,processTailColor:u,waitTitleColor:i,waitDescriptionColor:i,waitTailColor:u,waitDotColor:t,finishIconColor:a,finishTitleColor:o,finishDescriptionColor:i,finishTailColor:a,finishDotColor:a,errorIconColor:r,errorTitleColor:c,errorDescriptionColor:c,errorTailColor:u,errorIconBgColor:c,errorIconBorderColor:c,errorDotColor:c,stepsNavActiveColor:a,stepsProgressSize:n,inlineDotSize:6,inlineTitleColor:l,inlineTailColor:s}))]},e=>({titleLineHeight:e.controlHeight,customIconSize:e.controlHeight,customIconTop:0,customIconFontSize:e.controlHeightSM,iconSize:e.controlHeight,iconTop:-.5,iconFontSize:e.fontSize,iconSizeSM:e.fontSizeHeading3,dotSize:e.controlHeight/4,dotCurrentSize:e.controlHeightLG/4,navArrowColor:e.colorTextDisabled,navContentMaxWidth:"auto",descriptionMaxWidth:140,waitIconColor:e.wireframe?e.colorTextDisabled:e.colorTextLabel,waitIconBgColor:e.wireframe?e.colorBgContainer:e.colorFillContent,waitIconBorderColor:e.wireframe?e.colorTextDisabled:"transparent",finishIconBgColor:e.wireframe?e.colorBgContainer:e.controlItemBgActive,finishIconBorderColor:e.wireframe?e.colorPrimary:e.controlItemBgActive}));var xM=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let xN=e=>{var t,n;let{percent:r,size:o,className:a,rootClassName:i,direction:l,items:c,responsive:s=!0,current:u=0,children:d,style:f}=e,m=xM(e,["percent","size","className","rootClassName","direction","items","responsive","current","children","style"]),{xs:g}=aw(s),{getPrefixCls:v,direction:b,steps:y}=p.useContext(A.QO),x=p.useMemo(()=>s&&g?"vertical":l,[g,l]),$=(0,oT.A)(o),w=v("steps",e.prefixCls),[C,S,k]=xO(w),E="inline"===e.type,O=v("",e.iconPrefix),M=(t=c,n=d,t?t:(0,rc.A)(n).map(e=>{if(p.isValidElement(e)){let{props:t}=e;return Object.assign({},t)}return null}).filter(e=>e)),N=E?void 0:r,I=Object.assign(Object.assign({},null==y?void 0:y.style),f),j=h()(null==y?void 0:y.className,{[`${w}-rtl`]:"rtl"===b,[`${w}-with-progress`]:void 0!==N},a,i,S,k),R={finish:p.createElement(an.A,{className:`${w}-finish-icon`}),error:p.createElement(z.A,{className:`${w}-error-icon`})};return C(p.createElement(xk,Object.assign({icons:R},m,{style:I,current:u,size:$,items:M,itemRender:E?(e,t)=>e.description?p.createElement(aM.A,{title:e.description},t):t:void 0,stepIcon:e=>{let{node:t,status:n}=e;return"process"===n&&void 0!==N?p.createElement("div",{className:`${w}-progress-icon`},p.createElement(yM.A,{type:"circle",percent:N,size:"small"===$?32:40,strokeWidth:4,format:()=>null}),t):t},direction:x,prefixCls:w,iconPrefix:O,className:j})))};xN.Step=xk.Step;let xI=xN;var xj=["prefixCls","className","checked","defaultChecked","disabled","loadingIcon","checkedChildren","unCheckedChildren","onClick","onChange","onKeyDown"],xz=p.forwardRef(function(e,t){var n,r=e.prefixCls,o=void 0===r?"rc-switch":r,a=e.className,i=e.checked,l=e.defaultChecked,c=e.disabled,s=e.loadingIcon,u=e.checkedChildren,d=e.unCheckedChildren,f=e.onClick,m=e.onChange,g=e.onKeyDown,v=(0,eO.A)(e,xj),b=(0,rs.A)(!1,{value:i,defaultValue:l}),y=(0,eE.A)(b,2),x=y[0],$=y[1];function A(e,t){var n=x;return c||($(n=e),null==m||m(n,t)),n}var w=h()(o,a,(n={},(0,ej.A)(n,"".concat(o,"-checked"),x),(0,ej.A)(n,"".concat(o,"-disabled"),c),n));return p.createElement("button",(0,R.A)({},v,{type:"button",role:"switch","aria-checked":x,disabled:c,className:w,ref:t,onKeyDown:function(e){e.which===eR.A.LEFT?A(!1,e):e.which===eR.A.RIGHT&&A(!0,e),null==g||g(e)},onClick:function(e){var t=A(!x,e);null==f||f(t,e)}}),s,p.createElement("span",{className:"".concat(o,"-inner")},p.createElement("span",{className:"".concat(o,"-inner-checked")},u),p.createElement("span",{className:"".concat(o,"-inner-unchecked")},d)))});xz.displayName="Switch";let xR=(0,w.OF)("Switch",e=>{let t=(0,ey.oX)(e,{switchDuration:e.motionDurationMid,switchColor:e.colorPrimary,switchDisabledOpacity:e.opacityLoading,switchLoadingIconSize:e.calc(e.fontSizeIcon).mul(.75).equal(),switchLoadingIconColor:`rgba(0, 0, 0, ${e.opacityLoading})`,switchHandleActiveInset:"-30%"});return[(e=>{let{componentCls:t,trackHeight:n,trackMinWidth:r}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",display:"inline-block",boxSizing:"border-box",minWidth:r,height:n,lineHeight:(0,q.zA)(n),verticalAlign:"middle",background:e.colorTextQuaternary,border:"0",borderRadius:100,cursor:"pointer",transition:`all ${e.motionDurationMid}`,userSelect:"none",[`&:hover:not(${t}-disabled)`]:{background:e.colorTextTertiary}}),(0,V.K8)(e)),{[`&${t}-checked`]:{background:e.switchColor,[`&:hover:not(${t}-disabled)`]:{background:e.colorPrimaryHover}},[`&${t}-loading, &${t}-disabled`]:{cursor:"not-allowed",opacity:e.switchDisabledOpacity,"*":{boxShadow:"none",cursor:"not-allowed"}},[`&${t}-rtl`]:{direction:"rtl"}})}})(t),(e=>{let{componentCls:t,trackHeight:n,trackPadding:r,innerMinMargin:o,innerMaxMargin:a,handleSize:i,calc:l}=e,c=`${t}-inner`,s=(0,q.zA)(l(i).add(l(r).mul(2)).equal()),u=(0,q.zA)(l(a).mul(2).equal());return{[t]:{[c]:{display:"block",overflow:"hidden",borderRadius:100,height:"100%",paddingInlineStart:a,paddingInlineEnd:o,transition:`padding-inline-start ${e.switchDuration} ease-in-out, padding-inline-end ${e.switchDuration} ease-in-out`,[`${c}-checked, ${c}-unchecked`]:{display:"block",color:e.colorTextLightSolid,fontSize:e.fontSizeSM,transition:`margin-inline-start ${e.switchDuration} ease-in-out, margin-inline-end ${e.switchDuration} ease-in-out`,pointerEvents:"none",minHeight:n},[`${c}-checked`]:{marginInlineStart:`calc(-100% + ${s} - ${u})`,marginInlineEnd:`calc(100% - ${s} + ${u})`},[`${c}-unchecked`]:{marginTop:l(n).mul(-1).equal(),marginInlineStart:0,marginInlineEnd:0}},[`&${t}-checked ${c}`]:{paddingInlineStart:o,paddingInlineEnd:a,[`${c}-checked`]:{marginInlineStart:0,marginInlineEnd:0},[`${c}-unchecked`]:{marginInlineStart:`calc(100% - ${s} + ${u})`,marginInlineEnd:`calc(-100% + ${s} - ${u})`}},[`&:not(${t}-disabled):active`]:{[`&:not(${t}-checked) ${c}`]:{[`${c}-unchecked`]:{marginInlineStart:l(r).mul(2).equal(),marginInlineEnd:l(r).mul(-1).mul(2).equal()}},[`&${t}-checked ${c}`]:{[`${c}-checked`]:{marginInlineStart:l(r).mul(-1).mul(2).equal(),marginInlineEnd:l(r).mul(2).equal()}}}}}})(t),(e=>{let{componentCls:t,trackPadding:n,handleBg:r,handleShadow:o,handleSize:a,calc:i}=e,l=`${t}-handle`;return{[t]:{[l]:{position:"absolute",top:n,insetInlineStart:n,width:a,height:a,transition:`all ${e.switchDuration} ease-in-out`,"&::before":{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,backgroundColor:r,borderRadius:i(a).div(2).equal(),boxShadow:o,transition:`all ${e.switchDuration} ease-in-out`,content:'""'}},[`&${t}-checked ${l}`]:{insetInlineStart:`calc(100% - ${(0,q.zA)(i(a).add(n).equal())})`},[`&:not(${t}-disabled):active`]:{[`${l}::before`]:{insetInlineEnd:e.switchHandleActiveInset,insetInlineStart:0},[`&${t}-checked ${l}::before`]:{insetInlineEnd:0,insetInlineStart:e.switchHandleActiveInset}}}}})(t),(e=>{let{componentCls:t,handleSize:n,calc:r}=e;return{[t]:{[`${t}-loading-icon${e.iconCls}`]:{position:"relative",top:r(r(n).sub(e.fontSize)).div(2).equal(),color:e.switchLoadingIconColor,verticalAlign:"top"},[`&${t}-checked ${t}-loading-icon`]:{color:e.switchColor}}}})(t),(e=>{let{componentCls:t,trackHeightSM:n,trackPadding:r,trackMinWidthSM:o,innerMinMarginSM:a,innerMaxMarginSM:i,handleSizeSM:l,calc:c}=e,s=`${t}-inner`,u=(0,q.zA)(c(l).add(c(r).mul(2)).equal()),d=(0,q.zA)(c(i).mul(2).equal());return{[t]:{[`&${t}-small`]:{minWidth:o,height:n,lineHeight:(0,q.zA)(n),[`${t}-inner`]:{paddingInlineStart:i,paddingInlineEnd:a,[`${s}-checked, ${s}-unchecked`]:{minHeight:n},[`${s}-checked`]:{marginInlineStart:`calc(-100% + ${u} - ${d})`,marginInlineEnd:`calc(100% - ${u} + ${d})`},[`${s}-unchecked`]:{marginTop:c(n).mul(-1).equal(),marginInlineStart:0,marginInlineEnd:0}},[`${t}-handle`]:{width:l,height:l},[`${t}-loading-icon`]:{top:c(c(l).sub(e.switchLoadingIconSize)).div(2).equal(),fontSize:e.switchLoadingIconSize},[`&${t}-checked`]:{[`${t}-inner`]:{paddingInlineStart:a,paddingInlineEnd:i,[`${s}-checked`]:{marginInlineStart:0,marginInlineEnd:0},[`${s}-unchecked`]:{marginInlineStart:`calc(100% - ${u} + ${d})`,marginInlineEnd:`calc(-100% + ${u} - ${d})`}},[`${t}-handle`]:{insetInlineStart:`calc(100% - ${(0,q.zA)(c(l).add(r).equal())})`}},[`&:not(${t}-disabled):active`]:{[`&:not(${t}-checked) ${s}`]:{[`${s}-unchecked`]:{marginInlineStart:c(e.marginXXS).div(2).equal(),marginInlineEnd:c(e.marginXXS).mul(-1).div(2).equal()}},[`&${t}-checked ${s}`]:{[`${s}-checked`]:{marginInlineStart:c(e.marginXXS).mul(-1).div(2).equal(),marginInlineEnd:c(e.marginXXS).div(2).equal()}}}}}}})(t)]},e=>{let{fontSize:t,lineHeight:n,controlHeight:r,colorWhite:o}=e,a=t*n,i=r/2,l=a-4,c=i-4;return{trackHeight:a,trackHeightSM:i,trackMinWidth:2*l+8,trackMinWidthSM:2*c+4,trackPadding:2,handleBg:o,handleSize:l,handleSizeSM:c,handleShadow:`0 2px 4px 0 ${new ts.q("#00230b").setAlpha(.2).toRgbString()}`,innerMinMargin:l/2,innerMaxMargin:l+2+4,innerMinMarginSM:c/2,innerMaxMarginSM:c+2+4}});var xP=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let xT=p.forwardRef((e,t)=>{let{prefixCls:n,size:r,disabled:o,loading:a,className:i,rootClassName:l,style:c,checked:s,value:u,defaultChecked:d,defaultValue:f,onChange:m}=e,g=xP(e,["prefixCls","size","disabled","loading","className","rootClassName","style","checked","value","defaultChecked","defaultValue","onChange"]),[v,b]=(0,rs.A)(!1,{value:null!=s?s:u,defaultValue:null!=d?d:f}),{getPrefixCls:y,direction:x,switch:$}=p.useContext(A.QO),w=p.useContext(tp.A),C=(null!=o?o:w)||a,S=y("switch",n),k=p.createElement("div",{className:`${S}-handle`},a&&p.createElement(eX.A,{className:`${S}-loading-icon`})),[E,O,M]=xR(S),N=(0,oT.A)(r),I=h()(null==$?void 0:$.className,{[`${S}-small`]:"small"===N,[`${S}-loading`]:a,[`${S}-rtl`]:"rtl"===x},i,l,O,M),j=Object.assign(Object.assign({},null==$?void 0:$.style),c);return E(p.createElement(ut.A,{component:"Switch"},p.createElement(xz,Object.assign({},g,{checked:v,onChange:function(){b(arguments.length<=0?void 0:arguments[0]),null==m||m.apply(void 0,arguments)},prefixCls:S,className:I,style:j,disabled:C,ref:t,loadingIcon:k}))))});xT.__ANT_SWITCH=!0;let xD=xT;var xL={},xB="rc-table-internal-hook";function xF(e){var t=p.createContext(void 0);return{Context:t,Provider:function(e){var n=e.value,r=e.children,o=p.useRef(n);o.current=n;var a=p.useState(function(){return{getValue:function(){return o.current},listeners:new Set}}),i=(0,eE.A)(a,1)[0];return(0,rf.A)(function(){(0,eN.unstable_batchedUpdates)(function(){i.listeners.forEach(function(e){e(n)})})},[n]),p.createElement(t.Provider,{value:i},r)},defaultValue:e}}function xH(e,t){var n=(0,ea.A)("function"==typeof t?t:function(e){if(void 0===t)return e;if(!Array.isArray(t))return e[t];var n={};return t.forEach(function(t){n[t]=e[t]}),n}),r=p.useContext(null==e?void 0:e.Context),o=r||{},a=o.listeners,i=o.getValue,l=p.useRef();l.current=n(r?i():null==e?void 0:e.defaultValue);var c=p.useState({}),s=(0,eE.A)(c,2)[1];return(0,rf.A)(function(){if(r)return a.add(e),function(){a.delete(e)};function e(e){var t=n(e);(0,tg.A)(l.current,t,!0)||s({})}},[r]),l.current}function x_(){var e=p.createContext(null);function t(){return p.useContext(e)}return{makeImmutable:function(n,r){var o=(0,_.f3)(n),a=function(a,i){var l=o?{ref:i}:{},c=p.useRef(0),s=p.useRef(a);return null!==t()?p.createElement(n,(0,R.A)({},a,l)):((!r||r(s.current,a))&&(c.current+=1),s.current=a,p.createElement(e.Provider,{value:c.current},p.createElement(n,(0,R.A)({},a,l))))};return o?p.forwardRef(a):a},responseImmutable:function(e,n){var r=(0,_.f3)(e),o=function(n,o){return t(),p.createElement(e,(0,R.A)({},n,r?{ref:o}:{}))};return r?p.memo(p.forwardRef(o),n):p.memo(o,n)},useImmutableMark:t}}var xW=x_();xW.makeImmutable,xW.responseImmutable,xW.useImmutableMark;var xq=x_(),xV=xq.makeImmutable,xK=xq.responseImmutable,xX=xq.useImmutableMark,xY=xF(),xU=n(16300),xG=p.createContext({renderWithProps:!1});function xQ(e){var t=[],n={};return e.forEach(function(e){for(var r=e||{},o=r.key,a=r.dataIndex,i=o||(null==a?[]:Array.isArray(a)?a:[a]).join("-")||"RC_TABLE_KEY";n[i];)i="".concat(i,"_next");n[i]=!0,t.push(i)}),t}var xZ=function(e){var t,n=e.ellipsis,r=e.rowType,o=e.children,a=!0===n?{showTitle:!0}:n;return a&&(a.showTitle||"header"===r)&&("string"==typeof o||"number"==typeof o?t=o.toString():p.isValidElement(o)&&"string"==typeof o.props.children&&(t=o.props.children)),t};let xJ=p.memo(function(e){var t,n,r,o,a,i,l,c,s,u,d=e.component,f=e.children,m=e.ellipsis,g=e.scope,v=e.prefixCls,b=e.className,y=e.align,x=e.record,$=e.render,A=e.dataIndex,w=e.renderIndex,C=e.shouldCellUpdate,S=e.index,k=e.rowType,E=e.colSpan,O=e.rowSpan,M=e.fixLeft,N=e.fixRight,I=e.firstFixLeft,j=e.lastFixLeft,z=e.firstFixRight,P=e.lastFixRight,T=e.appendNode,D=e.additionalProps,L=void 0===D?{}:D,B=e.isSticky,F="".concat(v,"-cell"),H=xH(xY,["supportSticky","allColumnsFixedLeft","rowHoverable"]),_=H.supportSticky,W=H.allColumnsFixedLeft,q=H.rowHoverable,V=(t=p.useContext(xG),n=xX(),(0,e5.A)(function(){if(null!=f)return[f];var e=null==A||""===A?[]:Array.isArray(A)?A:[A],n=(0,xU.A)(x,e),r=n,o=void 0;if($){var a=$(n,x,w);!a||"object"!==(0,ez.A)(a)||Array.isArray(a)||p.isValidElement(a)?r=a:(r=a.children,o=a.props,t.renderWithProps=!0)}return[r,o]},[n,x,f,A,$,w],function(e,n){if(C){var r=(0,eE.A)(e,2)[1];return C((0,eE.A)(n,2)[1],r)}return!!t.renderWithProps||!(0,tg.A)(e,n,!0)})),K=(0,eE.A)(V,2),X=K[0],Y=K[1],U={},G="number"==typeof M&&_,Q="number"==typeof N&&_;G&&(U.position="sticky",U.left=M),Q&&(U.position="sticky",U.right=N);var Z=null!=(r=null!=(o=null!=(a=null==Y?void 0:Y.colSpan)?a:L.colSpan)?o:E)?r:1,J=null!=(i=null!=(l=null!=(c=null==Y?void 0:Y.rowSpan)?c:L.rowSpan)?l:O)?i:1,ee=xH(xY,function(e){var t,n;return[(t=J||1,n=e.hoverStartRow,S<=e.hoverEndRow&&S+t-1>=n),e.onHover]}),et=(0,eE.A)(ee,2),en=et[0],er=et[1],eo=(0,e_._q)(function(e){var t;x&&er(S,S+J-1),null==L||null==(t=L.onMouseEnter)||t.call(L,e)}),ea=(0,e_._q)(function(e){var t;x&&er(-1,-1),null==L||null==(t=L.onMouseLeave)||t.call(L,e)});if(0===Z||0===J)return null;var ei=null!=(s=L.title)?s:xZ({rowType:k,ellipsis:m,children:X}),el=h()(F,b,(u={},(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)(u,"".concat(F,"-fix-left"),G&&_),"".concat(F,"-fix-left-first"),I&&_),"".concat(F,"-fix-left-last"),j&&_),"".concat(F,"-fix-left-all"),j&&W&&_),"".concat(F,"-fix-right"),Q&&_),"".concat(F,"-fix-right-first"),z&&_),"".concat(F,"-fix-right-last"),P&&_),"".concat(F,"-ellipsis"),m),"".concat(F,"-with-append"),T),"".concat(F,"-fix-sticky"),(G||Q)&&B&&_),(0,ej.A)(u,"".concat(F,"-row-hover"),!Y&&en)),L.className,null==Y?void 0:Y.className),ec={};y&&(ec.textAlign=y);var es=(0,eM.A)((0,eM.A)((0,eM.A)((0,eM.A)({},null==Y?void 0:Y.style),U),ec),L.style),eu=X;return"object"!==(0,ez.A)(eu)||Array.isArray(eu)||p.isValidElement(eu)||(eu=null),m&&(j||z)&&(eu=p.createElement("span",{className:"".concat(F,"-content")},eu)),p.createElement(d,(0,R.A)({},Y,L,{className:el,style:es,title:ei,scope:g,onMouseEnter:q?eo:void 0,onMouseLeave:q?ea:void 0,colSpan:1!==Z?Z:null,rowSpan:1!==J?J:null}),T,eu)});function x0(e,t,n,r,o){var a,i,l=n[e]||{},c=n[t]||{};"left"===l.fixed?a=r.left["rtl"===o?t:e]:"right"===c.fixed&&(i=r.right["rtl"===o?e:t]);var s=!1,u=!1,d=!1,f=!1,p=n[t+1],m=n[e-1],g=p&&!p.fixed||m&&!m.fixed||n.every(function(e){return"left"===e.fixed});return"rtl"===o?void 0!==a?f=!(m&&"left"===m.fixed)&&g:void 0!==i&&(d=!(p&&"right"===p.fixed)&&g):void 0!==a?s=!(p&&"left"===p.fixed)&&g:void 0!==i&&(u=!(m&&"right"===m.fixed)&&g),{fixLeft:a,fixRight:i,lastFixLeft:s,firstFixRight:u,lastFixRight:d,firstFixLeft:f,isSticky:r.isSticky}}var x1=p.createContext({}),x2=["children"];function x4(e){return e.children}x4.Row=function(e){var t=e.children,n=(0,eO.A)(e,x2);return p.createElement("tr",n,t)},x4.Cell=function(e){var t=e.className,n=e.index,r=e.children,o=e.colSpan,a=void 0===o?1:o,i=e.rowSpan,l=e.align,c=xH(xY,["prefixCls","direction"]),s=c.prefixCls,u=c.direction,d=p.useContext(x1),f=d.scrollColumnIndex,m=d.stickyOffsets,g=d.flattenColumns,h=n+a-1+1===f?a+1:a,v=x0(n,n+h-1,g,m,u);return p.createElement(xJ,(0,R.A)({className:t,index:n,component:"td",prefixCls:s,record:null,dataIndex:null,align:l,colSpan:h,rowSpan:i,render:function(){return r}},v))};let x3=xK(function(e){var t=e.children,n=e.stickyOffsets,r=e.flattenColumns,o=xH(xY,"prefixCls"),a=r.length-1,i=r[a],l=p.useMemo(function(){return{stickyOffsets:n,flattenColumns:r,scrollColumnIndex:null!=i&&i.scrollbar?a:null}},[i,r,a,n]);return p.createElement(x1.Provider,{value:l},p.createElement("tfoot",{className:"".concat(o,"-summary")},t))});var x6=n(99777),x8=n(82987);function x5(e,t,n,r){return p.useMemo(function(){if(null!=n&&n.size){for(var o=[],a=0;a<(null==e?void 0:e.length);a+=1)!function e(t,n,r,o,a,i,l){t.push({record:n,indent:r,index:l});var c=i(n),s=null==a?void 0:a.has(c);if(n&&Array.isArray(n[o])&&s)for(var u=0;u1?n-1:0),o=1;o=1)),style:(0,eM.A)((0,eM.A)({},r),null==x?void 0:x.style)}),v.map(function(e,t){var n=e.render,r=e.dataIndex,l=e.className,c=$n(m,e,t,s,a),u=c.key,h=c.fixedInfo,v=c.appendCellNode,b=c.additionalCellProps;return p.createElement(xJ,(0,R.A)({className:l,ellipsis:e.ellipsis,align:e.align,scope:e.rowScope,component:e.rowScope?f:d,prefixCls:g,key:u,record:o,index:a,renderIndex:i,dataIndex:r,render:n,shouldCellUpdate:e.shouldCellUpdate},h,{appendNode:v,additionalProps:b}))}));if(A&&(w.current||$)){var k=y(o,a,s+1,$);t=p.createElement(x9,{expanded:$,className:h()("".concat(g,"-expanded-row"),"".concat(g,"-expanded-row-level-").concat(s+1),C),prefixCls:g,component:u,cellComponent:d,colSpan:v.length,isEmpty:!1},k)}return p.createElement(p.Fragment,null,S,t)});function $o(e){var t=e.columnKey,n=e.onColumnResize,r=p.useRef();return p.useEffect(function(){r.current&&n(t,r.current.offsetWidth)},[]),p.createElement(v.A,{data:t},p.createElement("td",{ref:r,style:{padding:0,border:0,height:0}},p.createElement("div",{style:{height:0,overflow:"hidden"}},"\xa0")))}function $a(e){var t=e.prefixCls,n=e.columnsKey,r=e.onColumnResize;return p.createElement("tr",{"aria-hidden":"true",className:"".concat(t,"-measure-row"),style:{height:0,fontSize:0}},p.createElement(v.A.Collection,{onBatchResize:function(e){e.forEach(function(e){r(e.data,e.size.offsetWidth)})}},n.map(function(e){return p.createElement($o,{key:e,columnKey:e,onColumnResize:r})})))}let $i=xK(function(e){var t,n=e.data,r=e.measureColumnWidth,o=xH(xY,["prefixCls","getComponent","onColumnResize","flattenColumns","getRowKey","expandedKeys","childrenColumnName","emptyNode"]),a=o.prefixCls,i=o.getComponent,l=o.onColumnResize,c=o.flattenColumns,s=o.getRowKey,u=o.expandedKeys,d=o.childrenColumnName,f=o.emptyNode,m=x5(n,d,u,s),g=p.useRef({renderWithProps:!1}),h=i(["body","wrapper"],"tbody"),v=i(["body","row"],"tr"),b=i(["body","cell"],"td"),y=i(["body","cell"],"th");t=n.length?m.map(function(e,t){var n=e.record,r=e.indent,o=e.index,a=s(n,t);return p.createElement($r,{key:a,rowKey:a,record:n,index:t,renderIndex:o,rowComponent:v,cellComponent:b,scopeCellComponent:y,getRowKey:s,indent:r})}):p.createElement(x9,{expanded:!0,className:"".concat(a,"-placeholder"),prefixCls:a,component:v,cellComponent:b,colSpan:c.length,isEmpty:!0},f);var x=xQ(c);return p.createElement(xG.Provider,{value:g.current},p.createElement(h,{className:"".concat(a,"-tbody")},r&&p.createElement($a,{prefixCls:a,columnsKey:x,onColumnResize:l}),t))});var $l=["expandable"],$c="RC_TABLE_INTERNAL_COL_DEFINE",$s=["columnType"];let $u=function(e){for(var t=e.colWidths,n=e.columns,r=e.columCount,o=xH(xY,["tableLayout"]).tableLayout,a=[],i=r||n.length,l=!1,c=i-1;c>=0;c-=1){var s=t[c],u=n&&n[c],d=void 0,f=void 0;if(u&&(d=u[$c],"auto"===o&&(f=u.minWidth)),s||f||d||l){var m=d||{},g=(m.columnType,(0,eO.A)(m,$s));a.unshift(p.createElement("col",(0,R.A)({key:c,style:{width:s,minWidth:f}},g))),l=!0}}return p.createElement("colgroup",null,a)};var $d=["className","noData","columns","flattenColumns","colWidths","columCount","stickyOffsets","direction","fixHeader","stickyTopOffset","stickyBottomOffset","stickyClassName","onScroll","maxContentScroll","children"],$f=p.forwardRef(function(e,t){var n=e.className,r=e.noData,o=e.columns,a=e.flattenColumns,i=e.colWidths,l=e.columCount,c=e.stickyOffsets,s=e.direction,u=e.fixHeader,d=e.stickyTopOffset,f=e.stickyBottomOffset,m=e.stickyClassName,g=e.onScroll,v=e.maxContentScroll,b=e.children,x=(0,eO.A)(e,$d),$=xH(xY,["prefixCls","scrollbarSize","isSticky","getComponent"]),A=$.prefixCls,w=$.scrollbarSize,C=$.isSticky,S=(0,$.getComponent)(["header","table"],"table"),k=C&&!u?0:w,E=p.useRef(null),O=p.useCallback(function(e){(0,_.Xf)(t,e),(0,_.Xf)(E,e)},[]);p.useEffect(function(){var e;function t(e){var t=e.currentTarget,n=e.deltaX;n&&(g({currentTarget:t,scrollLeft:t.scrollLeft+n}),e.preventDefault())}return null==(e=E.current)||e.addEventListener("wheel",t,{passive:!1}),function(){var e;null==(e=E.current)||e.removeEventListener("wheel",t)}},[]);var M=p.useMemo(function(){return a.every(function(e){return e.width})},[a]),N=a[a.length-1],I={fixed:N?N.fixed:null,scrollbar:!0,onHeaderCell:function(){return{className:"".concat(A,"-cell-scrollbar")}}},j=(0,p.useMemo)(function(){return k?[].concat((0,y.A)(o),[I]):o},[k,o]),z=(0,p.useMemo)(function(){return k?[].concat((0,y.A)(a),[I]):a},[k,a]),R=(0,p.useMemo)(function(){var e=c.right,t=c.left;return(0,eM.A)((0,eM.A)({},c),{},{left:"rtl"===s?[].concat((0,y.A)(t.map(function(e){return e+k})),[0]):t,right:"rtl"===s?e:[].concat((0,y.A)(e.map(function(e){return e+k})),[0]),isSticky:C})},[k,c,C]),P=(0,p.useMemo)(function(){for(var e=[],t=0;t1?"colgroup":"col":null,ellipsis:a.ellipsis,align:a.align,component:i,prefixCls:u,key:f[t]},l,{additionalProps:n,rowType:"header"}))}))},$g=xK(function(e){var t=e.stickyOffsets,n=e.columns,r=e.flattenColumns,o=e.onHeaderRow,a=xH(xY,["prefixCls","getComponent"]),i=a.prefixCls,l=a.getComponent,c=p.useMemo(function(){var e=[];!function t(n,r){var o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;e[o]=e[o]||[];var a=r;return n.filter(Boolean).map(function(n){var r={key:n.key,className:n.className||"",children:n.title,column:n,colStart:a},i=1,l=n.children;return l&&l.length>0&&(i=t(l,a,o+1).reduce(function(e,t){return e+t},0),r.hasSubColumns=!0),"colSpan"in n&&(i=n.colSpan),"rowSpan"in n&&(r.rowSpan=n.rowSpan),r.colSpan=i,r.colEnd=r.colStart+i-1,e[o].push(r),a+=i,i})}(n,0);for(var t=e.length,r=function(n){e[n].forEach(function(e){"rowSpan"in e||e.hasSubColumns||(e.rowSpan=t-n)})},o=0;o1&&void 0!==arguments[1]?arguments[1]:"";return"number"==typeof t?t:t.endsWith("%")?e*parseFloat(t)/100:null}var $v=["children"],$b=["fixed"];function $y(e){return(0,rc.A)(e).filter(function(e){return p.isValidElement(e)}).map(function(e){var t=e.key,n=e.props,r=n.children,o=(0,eO.A)(n,$v),a=(0,eM.A)({key:t},o);return r&&(a.children=$y(r)),a})}function $x(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"key";return e.filter(function(e){return e&&"object"===(0,ez.A)(e)}).reduce(function(e,n,r){var o=n.fixed,a=!0===o?"left":o,i="".concat(t,"-").concat(r),l=n.children;return l&&l.length>0?[].concat((0,y.A)(e),(0,y.A)($x(l,i).map(function(e){return(0,eM.A)({fixed:a},e)}))):[].concat((0,y.A)(e),[(0,eM.A)((0,eM.A)({key:i},n),{},{fixed:a})])},[])}let $$=function(e,t){var n=e.prefixCls,r=e.columns,o=e.children,a=e.expandable,i=e.expandedKeys,l=e.columnTitle,c=e.getRowKey,s=e.onTriggerExpand,u=e.expandIcon,d=e.rowExpandable,f=e.expandIconColumnIndex,m=e.direction,g=e.expandRowByClick,h=e.columnWidth,v=e.fixed,b=e.scrollWidth,y=e.clientWidth,x=p.useMemo(function(){return function e(t){return t.filter(function(e){return e&&"object"===(0,ez.A)(e)&&!e.hidden}).map(function(t){var n=t.children;return n&&n.length>0?(0,eM.A)((0,eM.A)({},t),{},{children:e(n)}):t})}((r||$y(o)||[]).slice())},[r,o]),$=p.useMemo(function(){if(a){var e,t=x.slice();if(!t.includes(xL)){var r=f||0;r>=0&&t.splice(r,0,xL)}var o=t.indexOf(xL);t=t.filter(function(e,t){return e!==xL||t===o});var m=x[o];e=("left"===v||v)&&!f?"left":("right"===v||v)&&f===x.length?"right":m?m.fixed:null;var b=(0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)((0,ej.A)({},$c,{className:"".concat(n,"-expand-icon-col"),columnType:"EXPAND_COLUMN"}),"title",l),"fixed",e),"className","".concat(n,"-row-expand-icon-cell")),"width",h),"render",function(e,t,r){var o=c(t,r),a=u({prefixCls:n,expanded:i.has(o),expandable:!d||d(t),record:t,onExpand:s});return g?p.createElement("span",{onClick:function(e){return e.stopPropagation()}},a):a});return t.map(function(e){return e===xL?b:e})}return x.filter(function(e){return e!==xL})},[a,x,c,i,u,m]),A=p.useMemo(function(){var e=$;return t&&(e=t(e)),e.length||(e=[{render:function(){return null}}]),e},[t,$,m]),w=p.useMemo(function(){return"rtl"===m?$x(A).map(function(e){var t=e.fixed,n=(0,eO.A)(e,$b),r=t;return"left"===t?r="right":"right"===t&&(r="left"),(0,eM.A)({fixed:r},n)}):$x(A)},[A,m,b]),C=p.useMemo(function(){for(var e=-1,t=w.length-1;t>=0;t-=1){var n=w[t].fixed;if("left"===n||!0===n){e=t;break}}if(e>=0)for(var r=0;r<=e;r+=1){var o=w[r].fixed;if("left"!==o&&!0!==o)return!0}var a=w.findIndex(function(e){return"right"===e.fixed});if(a>=0){for(var i=a;i0){var e=0,t=0;w.forEach(function(n){var r=$h(b,n.width);r?e+=r:t+=1});var n=Math.max(b,y),r=Math.max(n-e,t),o=t,a=r/t,i=0,l=w.map(function(e){var t=(0,eM.A)({},e),n=$h(b,t.width);if(n)t.width=n;else{var l=Math.floor(a);t.width=1===o?r:l,r-=l,o-=1}return i+=t.width,t});if(i=u&&(r=u-d),a({scrollLeft:r/u*(s+2)}),y.current.x=e.pageX},O=function(){S.current=(0,x.A)(function(){if(o.current){var e=vw(o.current).top,t=e+o.current.offsetHeight,n=l===window?document.documentElement.scrollTop+window.innerHeight:vw(l).top+l.clientHeight;t-(0,x8.A)()<=n||e>=n-i?b(function(e){return(0,eM.A)((0,eM.A)({},e),{},{isHiddenScrollBar:!0})}):b(function(e){return(0,eM.A)((0,eM.A)({},e),{},{isHiddenScrollBar:!1})})}})},M=function(e){b(function(t){return(0,eM.A)((0,eM.A)({},t),{},{scrollLeft:e/s*u||0})})};return(p.useImperativeHandle(t,function(){return{setScrollLeft:M,checkScrollBarVisible:O}}),p.useEffect(function(){var e=vC(document.body,"mouseup",k,!1),t=vC(document.body,"mousemove",E,!1);return O(),function(){e.remove(),t.remove()}},[d,w]),p.useEffect(function(){var e=vC(l,"scroll",O,!1),t=vC(window,"resize",O,!1);return function(){e.remove(),t.remove()}},[l]),p.useEffect(function(){v.isHiddenScrollBar||b(function(e){var t=o.current;return t?(0,eM.A)((0,eM.A)({},e),{},{scrollLeft:t.scrollLeft/t.scrollWidth*t.clientWidth}):e})},[v.isHiddenScrollBar]),s<=u||!d||v.isHiddenScrollBar)?null:p.createElement("div",{style:{height:(0,x8.A)(),width:u,bottom:i},className:"".concat(c,"-sticky-scroll")},p.createElement("div",{onMouseDown:function(e){e.persist(),y.current.delta=e.pageX-v.scrollLeft,y.current.x=0,C(!0),e.preventDefault()},ref:f,className:h()("".concat(c,"-sticky-scroll-bar"),(0,ej.A)({},"".concat(c,"-sticky-scroll-bar-active"),w)),style:{width:"".concat(d,"px"),transform:"translate3d(".concat(v.scrollLeft,"px, 0, 0)")}}))});var $k="rc-table",$E=[],$O={};function $M(){return"No Data"}var $N=p.forwardRef(function(e,t){var n,r=(0,eM.A)({rowKey:"key",prefixCls:$k,emptyText:$M},e),o=r.prefixCls,a=r.className,i=r.rowClassName,l=r.style,c=r.data,s=r.rowKey,u=r.scroll,d=r.tableLayout,f=r.direction,m=r.title,g=r.footer,b=r.summary,x=r.caption,$=r.id,A=r.showHeader,w=r.components,C=r.emptyText,S=r.onRow,k=r.onHeaderRow,E=r.onScroll,O=r.internalHooks,M=r.transformColumns,N=r.internalRefs,I=r.tailor,j=r.getContainerWidth,z=r.sticky,P=r.rowHoverable,T=void 0===P||P,D=c||$E,L=!!D.length,B=O===xB,F=p.useCallback(function(e,t){return(0,xU.A)(w,e)||t},[w]),_=p.useMemo(function(){return"function"==typeof s?s:function(e){return e&&e[s]}},[s]),W=F(["body"]),q=(tA=p.useState(-1),tC=(tw=(0,eE.A)(tA,2))[0],tS=tw[1],tk=p.useState(-1),tO=(tE=(0,eE.A)(tk,2))[0],tM=tE[1],[tC,tO,p.useCallback(function(e,t){tS(e),tM(t)},[])]),V=(0,eE.A)(q,3),K=V[0],X=V[1],Y=V[2],U=(tR=(tI=r.expandable,tj=(0,eO.A)(r,$l),!1===(tN="expandable"in r?(0,eM.A)((0,eM.A)({},tj),tI):tj).showExpandColumn&&(tN.expandIconColumnIndex=-1),tz=tN).expandIcon,tP=tz.expandedRowKeys,tT=tz.defaultExpandedRowKeys,tD=tz.defaultExpandAllRows,tL=tz.expandedRowRender,tB=tz.onExpand,tF=tz.onExpandedRowsChange,tH=tz.childrenColumnName||"children",t_=p.useMemo(function(){return tL?"row":!!(r.expandable&&r.internalHooks===xB&&r.expandable.__PARENT_RENDER_ICON__||D.some(function(e){return e&&"object"===(0,ez.A)(e)&&e[tH]}))&&"nest"},[!!tL,D]),tW=p.useState(function(){if(tT)return tT;if(tD){var e;return e=[],!function t(n){(n||[]).forEach(function(n,r){e.push(_(n,r)),t(n[tH])})}(D),e}return[]}),tV=(tq=(0,eE.A)(tW,2))[0],tK=tq[1],tX=p.useMemo(function(){return new Set(tP||tV||[])},[tP,tV]),tY=p.useCallback(function(e){var t,n=_(e,D.indexOf(e)),r=tX.has(n);r?(tX.delete(n),t=(0,y.A)(tX)):t=[].concat((0,y.A)(tX),[n]),tK(t),tB&&tB(!r,e),tF&&tF(t)},[_,tX,D,tB,tF]),[tz,t_,tX,tR||$e,tH,tY]),G=(0,eE.A)(U,6),Q=G[0],Z=G[1],J=G[2],ee=G[3],et=G[4],en=G[5],er=null==u?void 0:u.x,eo=p.useState(0),ei=(0,eE.A)(eo,2),el=ei[0],ec=ei[1],es=$$((0,eM.A)((0,eM.A)((0,eM.A)({},r),Q),{},{expandable:!!Q.expandedRowRender,columnTitle:Q.columnTitle,expandedKeys:J,getRowKey:_,onTriggerExpand:en,expandIcon:ee,expandIconColumnIndex:Q.expandIconColumnIndex,direction:f,scrollWidth:B&&I&&"number"==typeof er?er:null,clientWidth:el}),B?M:null),eu=(0,eE.A)(es,4),ed=eu[0],ef=eu[1],ep=eu[2],em=eu[3],eg=null!=ep?ep:er,eh=p.useMemo(function(){return{columns:ed,flattenColumns:ef}},[ed,ef]),ev=p.useRef(),eb=p.useRef(),ey=p.useRef(),ex=p.useRef();p.useImperativeHandle(t,function(){return{nativeElement:ev.current,scrollTo:function(e){var t;if(ey.current instanceof HTMLElement){var n=e.index,r=e.top,o=e.key;if("number"!=typeof r||Number.isNaN(r)){var a,i,l=null!=o?o:_(D[n]);null==(i=ey.current.querySelector('[data-row-key="'.concat(l,'"]')))||i.scrollIntoView()}else null==(a=ey.current)||a.scrollTo({top:r})}else null!=(t=ey.current)&&t.scrollTo&&ey.current.scrollTo(e)}}});var e$=p.useRef(),eA=p.useState(!1),ew=(0,eE.A)(eA,2),eC=ew[0],eS=ew[1],ek=p.useState(!1),eN=(0,eE.A)(ek,2),eI=eN[0],eR=eN[1],eP=$A(new Map),eT=(0,eE.A)(eP,2),eD=eT[0],eL=eT[1],eB=xQ(ef).map(function(e){return eD.get(e)}),eF=p.useMemo(function(){return eB},[eB.join("_")]),eH=(0,p.useMemo)(function(){var e=ef.length,t=function(e,t,n){for(var r=[],o=0,a=e;a!==t;a+=n)r.push(o),ef[a].fixed&&(o+=eF[a]||0);return r},n=t(0,e,1),r=t(e-1,-1,-1).reverse();return"rtl"===f?{left:r,right:n}:{left:n,right:r}},[eF,ef,f]),e_=u&&null!=u.y,eW=u&&null!=eg||!!Q.fixed,eq=eW&&ef.some(function(e){return e.fixed}),eV=p.useRef(),eK=(tQ=void 0===(tG=(tU="object"===(0,ez.A)(z)?z:{}).offsetHeader)?0:tG,tJ=void 0===(tZ=tU.offsetSummary)?0:tZ,t1=void 0===(t0=tU.offsetScroll)?0:t0,t4=(void 0===(t2=tU.getContainer)?function(){return $w}:t2)()||$w,t3=!!z,p.useMemo(function(){return{isSticky:t3,stickyClassName:t3?"".concat(o,"-sticky-holder"):"",offsetHeader:tQ,offsetSummary:tJ,offsetScroll:t1,container:t4}},[t3,t1,tQ,tJ,o,t4])),eX=eK.isSticky,eY=eK.offsetHeader,eU=eK.offsetSummary,eG=eK.offsetScroll,eQ=eK.stickyClassName,eZ=eK.container,eJ=p.useMemo(function(){return null==b?void 0:b(D)},[b,D]),e0=(e_||eX)&&p.isValidElement(eJ)&&eJ.type===x4&&eJ.props.fixed;e_&&(t8={overflowY:L?"scroll":"auto",maxHeight:u.y}),eW&&(t6={overflowX:"auto"},e_||(t8={overflowY:"hidden"}),t5={width:!0===eg?"auto":eg,minWidth:"100%"});var e1=p.useCallback(function(e,t){(0,iE.A)(ev.current)&&eL(function(n){if(n.get(e)!==t){var r=new Map(n);return r.set(e,t),r}return n})},[]),e2=function(){var e=(0,p.useRef)(null),t=(0,p.useRef)();function n(){window.clearTimeout(t.current)}return(0,p.useEffect)(function(){return n},[]),[function(r){e.current=r,n(),t.current=window.setTimeout(function(){e.current=null,t.current=void 0},100)},function(){return e.current}]}(),e4=(0,eE.A)(e2,2),e3=e4[0],e6=e4[1];function e8(e,t){t&&("function"==typeof t?t(e):t.scrollLeft!==e&&(t.scrollLeft=e,t.scrollLeft!==e&&setTimeout(function(){t.scrollLeft=e},0)))}var e7=(0,ea.A)(function(e){var t,n=e.currentTarget,r=e.scrollLeft,o="rtl"===f,a="number"==typeof r?r:n.scrollLeft,i=n||$O;e6()&&e6()!==i||(e3(i),e8(a,eb.current),e8(a,ey.current),e8(a,e$.current),e8(a,null==(t=eV.current)?void 0:t.setScrollLeft));var l=n||eb.current;if(l){var c=B&&I&&"number"==typeof eg?eg:l.scrollWidth,s=l.clientWidth;if(c===s){eS(!1),eR(!1);return}o?(eS(-a0)):(eS(a>0),eR(a1?y-I:0,pointerEvents:"auto"}),z=p.useMemo(function(){return f?N<=1:0===O||0===N||N>1},[N,O,f]);z?j.visibility="hidden":f&&(j.height=null==m?void 0:m(N));var P={};return(0===N||0===O)&&(P.rowSpan=1,P.colSpan=1),p.createElement(xJ,(0,R.A)({className:h()(b,d),ellipsis:r.ellipsis,align:r.align,scope:r.rowScope,component:l,prefixCls:n.prefixCls,key:A,record:s,index:i,renderIndex:c,dataIndex:v,render:z?function(){return null}:g,shouldCellUpdate:r.shouldCellUpdate},w,{appendNode:C,additionalProps:(0,eM.A)((0,eM.A)({},S),{},{style:j},P)}))};var $P=["data","index","className","rowKey","style","extra","getHeight"],$T=xK(p.forwardRef(function(e,t){var n,r=e.data,o=e.index,a=e.className,i=e.rowKey,l=e.style,c=e.extra,s=e.getHeight,u=(0,eO.A)(e,$P),d=r.record,f=r.indent,m=r.index,g=xH(xY,["prefixCls","flattenColumns","fixColumn","componentWidth","scrollX"]),v=g.scrollX,b=g.flattenColumns,y=g.prefixCls,x=g.fixColumn,$=g.componentWidth,A=xH($j,["getComponent"]).getComponent,w=x7(d,i,o,f),C=A(["body","row"],"div"),S=A(["body","cell"],"div"),k=w.rowSupportExpand,E=w.expanded,O=w.rowProps,M=w.expandedRowRender,N=w.expandedRowClassName;if(k&&E){var I=M(d,o,f+1,E),j=$t(N,d,o,f),z={};x&&(z={style:(0,ej.A)({},"--virtual-width","".concat($,"px"))});var P="".concat(y,"-expanded-row-cell");n=p.createElement(C,{className:h()("".concat(y,"-expanded-row"),"".concat(y,"-expanded-row-level-").concat(f+1),j)},p.createElement(xJ,{component:S,prefixCls:y,className:h()(P,(0,ej.A)({},"".concat(P,"-fixed"),x)),additionalProps:z},I))}var T=(0,eM.A)((0,eM.A)({},l),{},{width:v});c&&(T.position="absolute",T.pointerEvents="none");var D=p.createElement(C,(0,R.A)({},O,u,{"data-row-key":i,ref:k?null:t,className:h()(a,"".concat(y,"-row"),null==O?void 0:O.className,(0,ej.A)({},"".concat(y,"-row-extra"),c)),style:(0,eM.A)((0,eM.A)({},T),null==O?void 0:O.style)}),b.map(function(e,t){return p.createElement($R,{key:t,component:S,rowInfo:w,column:e,colIndex:t,indent:f,index:o,renderIndex:m,record:d,inverse:c,getHeight:s})}));return k?p.createElement("div",{ref:t},D,n):D})),$D=xK(p.forwardRef(function(e,t){var n=e.data,r=e.onScroll,o=xH(xY,["flattenColumns","onColumnResize","getRowKey","prefixCls","expandedKeys","childrenColumnName","scrollX","direction"]),a=o.flattenColumns,i=o.onColumnResize,l=o.getRowKey,c=o.expandedKeys,s=o.prefixCls,u=o.childrenColumnName,d=o.scrollX,f=o.direction,m=xH($j),g=m.sticky,h=m.scrollY,v=m.listItemHeight,b=m.getComponent,y=m.onScroll,x=p.useRef(),$=x5(n,u,c,l),A=p.useMemo(function(){var e=0;return a.map(function(t){var n=t.width,r=t.key;return e+=n,[r,n,e]})},[a]),w=p.useMemo(function(){return A.map(function(e){return e[2]})},[A]);p.useEffect(function(){A.forEach(function(e){var t=(0,eE.A)(e,2);i(t[0],t[1])})},[A]),p.useImperativeHandle(t,function(){var e,t={scrollTo:function(e){var t;null==(t=x.current)||t.scrollTo(e)},nativeElement:null==(e=x.current)?void 0:e.nativeElement};return Object.defineProperty(t,"scrollLeft",{get:function(){var e;return(null==(e=x.current)?void 0:e.getScrollInfo().x)||0},set:function(e){var t;null==(t=x.current)||t.scrollTo({left:e})}}),t});var C=function(e,t){var n=null==(o=$[t])?void 0:o.record,r=e.onCell;if(r){var o,a,i=r(n,t);return null!=(a=null==i?void 0:i.rowSpan)?a:1}return 1},S=p.useMemo(function(){return{columnsOffset:w}},[w]),k="".concat(s,"-tbody"),E=b(["body","wrapper"]),O={};return g&&(O.position="sticky",O.bottom=0,"object"===(0,ez.A)(g)&&g.offsetScroll&&(O.bottom=g.offsetScroll)),p.createElement($z.Provider,{value:S},p.createElement(op,{fullHeight:!1,ref:x,prefixCls:"".concat(k,"-virtual"),styles:{horizontalScrollBar:O},className:k,height:h,itemHeight:v||24,data:$,itemKey:function(e){return l(e.record)},component:E,scrollWidth:d,direction:f,onVirtualScroll:function(e){var t,n=e.x;r({currentTarget:null==(t=x.current)?void 0:t.nativeElement,scrollLeft:n})},onScroll:y,extraRender:function(e){var t=e.start,n=e.end,r=e.getSize,o=e.offsetY;if(n<0)return null;for(var i=a.filter(function(e){return 0===C(e,t)}),c=t,s=function(e){if(!(i=i.filter(function(t){return 0===C(t,e)})).length)return c=e,1},u=t;u>=0&&!s(u);u-=1);for(var d=a.filter(function(e){return 1!==C(e,n)}),f=n,m=function(e){if(!(d=d.filter(function(t){return 1!==C(t,e)})).length)return f=Math.max(e-1,n),1},g=n;g<$.length&&!m(g);g+=1);for(var h=[],v=function(e){if(!$[e])return 1;a.some(function(t){return C(t,e)>1})&&h.push(e)},b=c;b<=f;b+=1)if(v(b))continue;return h.map(function(e){var t=$[e],n=l(t.record,e),a=r(n);return p.createElement($T,{key:e,data:t,rowKey:n,index:e,style:{top:-o+a.top},extra:!0,getHeight:function(t){var o=e+t-1,a=r(n,l($[o].record,o));return a.bottom-a.top}})})}},function(e,t,n){var r=l(e.record,t);return p.createElement($T,{data:e,rowKey:r,index:t,style:n.style})}))})),$L=function(e,t){var n=t.ref,r=t.onScroll;return p.createElement($D,{ref:n,data:e,onScroll:r})},$B=p.forwardRef(function(e,t){var n=e.data,r=e.columns,o=e.scroll,a=e.sticky,i=e.prefixCls,l=void 0===i?$k:i,c=e.className,s=e.listItemHeight,u=e.components,d=e.onScroll,f=o||{},m=f.x,g=f.y;"number"!=typeof m&&(m=1),"number"!=typeof g&&(g=500);var v=(0,e_._q)(function(e,t){return(0,xU.A)(u,e)||t}),b=(0,e_._q)(d),y=p.useMemo(function(){return{sticky:a,scrollY:g,listItemHeight:s,getComponent:v,onScroll:b}},[a,g,s,v,b]);return p.createElement($j.Provider,{value:y},p.createElement($I,(0,R.A)({},e,{className:h()(c,"".concat(l,"-virtual")),scroll:(0,eM.A)((0,eM.A)({},o),{},{x:m}),components:(0,eM.A)((0,eM.A)({},u),{},{body:null!=n&&n.length?$L:void 0}),columns:r,internalHooks:xB,tailor:!0,ref:t})))});xV($B,void 0);var $F=n(9417),$H=p.createContext(null);let $_=p.memo(function(e){for(var t=e.prefixCls,n=e.level,r=e.isStart,o=e.isEnd,a="".concat(t,"-indent-unit"),i=[],l=0;l=0&&n.splice(r,1),n}function $U(e,t){var n=(e||[]).slice();return -1===n.indexOf(t)&&n.push(t),n}function $G(e){return e.split("-")}function $Q(e,t,n,r,o,a,i,l,c,s){var u,d,f=e.clientX,p=e.clientY,m=e.target.getBoundingClientRect(),g=m.top,h=m.height,v=(("rtl"===s?-1:1)*(((null==o?void 0:o.x)||0)-f)-12)/r,b=c.filter(function(e){var t;return null==(t=l[e])||null==(t=t.children)?void 0:t.length}),y=l[n.props.eventKey];if(p-1.5?a({dragNode:E,dropNode:O,dropPosition:1})?C=1:M=!1:a({dragNode:E,dropNode:O,dropPosition:0})?C=0:a({dragNode:E,dropNode:O,dropPosition:1})?C=1:M=!1:a({dragNode:E,dropNode:O,dropPosition:1})?C=1:M=!1,{dropPosition:C,dropLevelOffset:S,dropTargetKey:y.key,dropTargetPos:y.pos,dragOverNodeKey:w,dropContainerKey:0===C?null:(null==(d=y.parent)?void 0:d.key)||null,dropAllowed:M}}function $Z(e,t){if(e)return t.multiple?e.slice():e.length?[e[0]]:e}function $J(e){var t;if(!e)return null;if(Array.isArray(e))t={checkedKeys:e,halfCheckedKeys:void 0};else{if("object"!==(0,ez.A)(e))return(0,tJ.Ay)(!1,"`checkedKeys` is not an array or an object"),null;t={checkedKeys:e.checked||void 0,halfCheckedKeys:e.halfChecked||void 0}}return t}function $0(e,t){var n=new Set;return(e||[]).forEach(function(e){!function e(r){if(!n.has(r)){var o=t[r];if(o){n.add(r);var a=o.parent;!o.node.disabled&&a&&e(a.key)}}}(e)}),(0,y.A)(n)}function $1(e){let[t,n]=(0,p.useState)(null);return[(0,p.useCallback)((r,o,a)=>{let i=null!=t?t:r,l=Math.min(i||0,r),c=Math.max(i||0,r),s=o.slice(l,c+1).map(t=>e(t)),u=s.some(e=>!a.has(e)),d=[];return s.forEach(e=>{u?(a.has(e)||d.push(e),a.add(e)):(a.delete(e),d.push(e))}),n(u?c:null),d},[t]),e=>{n(e)}]}$X.displayName="TreeNode",$X.isTreeNode=1;let $2={},$4="SELECT_ALL",$3="SELECT_INVERT",$6="SELECT_NONE",$8=[],$5=(e,t)=>{let n=[];return(t||[]).forEach(t=>{n.push(t),t&&"object"==typeof t&&e in t&&(n=[].concat((0,y.A)(n),(0,y.A)($5(e,t[e]))))}),n},$7=(e,t)=>"key"in e&&void 0!==e.key&&null!==e.key?e.key:e.dataIndex?Array.isArray(e.dataIndex)?e.dataIndex.join("."):e.dataIndex:t;function $9(e,t){return t?`${t}-${e}`:`${e}`}let Ae=(e,t)=>"function"==typeof e?e(t):e,At={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M349 838c0 17.7 14.2 32 31.8 32h262.4c17.6 0 31.8-14.3 31.8-32V642H349v196zm531.1-684H143.9c-24.5 0-39.8 26.7-27.5 48l221.3 376h348.8l221.3-376c12.1-21.3-3.2-48-27.7-48z"}}]},name:"filter",theme:"filled"};var An=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:At}))});function Ar(e){if(null==e)throw TypeError("Cannot destructure "+e)}var Ao=["className","style","motion","motionNodes","motionType","onMotionStart","onMotionEnd","active","treeNodeRequiredProps"],Aa=function(e,t){var n,r,o,a,i,l=e.className,c=e.style,s=e.motion,u=e.motionNodes,d=e.motionType,f=e.onMotionStart,m=e.onMotionEnd,g=e.active,v=e.treeNodeRequiredProps,b=(0,eO.A)(e,Ao),y=p.useState(!0),x=(0,eE.A)(y,2),$=x[0],A=x[1],w=p.useContext($H).prefixCls,C=u&&"hide"!==d;(0,rf.A)(function(){u&&C!==$&&A(C)},[u]);var S=p.useRef(!1),k=function(){u&&!S.current&&(S.current=!0,m())};return(n=function(){u&&f()},r=p.useState(!1),a=(o=(0,eE.A)(r,2))[0],i=o[1],(0,rf.A)(function(){if(a)return n(),function(){k()}},[a]),(0,rf.A)(function(){return i(!0),function(){i(!1)}},[]),u)?p.createElement(F.Ay,(0,R.A)({ref:t,visible:$},s,{motionAppear:"show"===d,onVisibleChanged:function(e){C===e&&k()}}),function(e,t){var n=e.className,r=e.style;return p.createElement("div",{ref:t,className:h()("".concat(w,"-treenode-motion"),n),style:r},u.map(function(e){var t=Object.assign({},(Ar(e.data),e.data)),n=e.title,r=e.key,o=e.isStart,a=e.isEnd;delete t.children;var i=fk(r,v);return p.createElement($X,(0,R.A)({},t,i,{title:n,active:g,data:e.data,key:r,isStart:o,isEnd:a}))}))}):p.createElement($X,(0,R.A)({domRef:t,className:l,style:c},b,{active:g}))};Aa.displayName="MotionTreeNode";var Ai=p.forwardRef(Aa);function Al(e,t,n){var r=e.findIndex(function(e){return e.key===n}),o=e[r+1],a=t.findIndex(function(e){return e.key===n});if(o){var i=t.findIndex(function(e){return e.key===o.key});return t.slice(a+1,i)}return t.slice(a+1)}var Ac=["prefixCls","data","selectable","checkable","expandedKeys","selectedKeys","checkedKeys","loadedKeys","loadingKeys","halfCheckedKeys","keyEntities","disabled","dragging","dragOverNodeKey","dropPosition","motion","height","itemHeight","virtual","focusable","activeItem","focused","tabIndex","onKeyDown","onFocus","onBlur","onActiveChange","onListChangeStart","onListChangeEnd"],As={width:0,height:0,display:"flex",overflow:"hidden",opacity:0,border:0,padding:0,margin:0},Au=function(){},Ad="RC_TREE_MOTION_".concat(Math.random()),Af={key:Ad},Ap={key:Ad,level:0,index:0,pos:"0",node:Af,nodes:[Af]},Am={parent:null,children:[],pos:Ap.pos,data:Af,title:null,key:Ad,isStart:[],isEnd:[]};function Ag(e,t,n,r){return!1!==t&&n?e.slice(0,Math.ceil(n/r)+1):e}function Ah(e){return f$(e.key,e.pos)}var Av=p.forwardRef(function(e,t){var n=e.prefixCls,r=e.data,o=(e.selectable,e.checkable,e.expandedKeys),a=e.selectedKeys,i=e.checkedKeys,l=e.loadedKeys,c=e.loadingKeys,s=e.halfCheckedKeys,u=e.keyEntities,d=e.disabled,f=e.dragging,m=e.dragOverNodeKey,g=e.dropPosition,h=e.motion,v=e.height,b=e.itemHeight,y=e.virtual,x=e.focusable,$=e.activeItem,A=e.focused,w=e.tabIndex,C=e.onKeyDown,S=e.onFocus,k=e.onBlur,E=e.onActiveChange,O=e.onListChangeStart,M=e.onListChangeEnd,N=(0,eO.A)(e,Ac),I=p.useRef(null),j=p.useRef(null);p.useImperativeHandle(t,function(){return{scrollTo:function(e){I.current.scrollTo(e)},getIndentWidth:function(){return j.current.offsetWidth}}});var z=p.useState(o),P=(0,eE.A)(z,2),T=P[0],D=P[1],L=p.useState(r),B=(0,eE.A)(L,2),F=B[0],H=B[1],_=p.useState(r),W=(0,eE.A)(_,2),q=W[0],V=W[1],K=p.useState([]),X=(0,eE.A)(K,2),Y=X[0],U=X[1],G=p.useState(null),Q=(0,eE.A)(G,2),Z=Q[0],J=Q[1],ee=p.useRef(r);function et(){var e=ee.current;H(e),V(e),U([]),J(null),M()}ee.current=r,(0,rf.A)(function(){D(o);var e=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=e.length,r=t.length;if(1!==Math.abs(n-r))return{add:!1,key:null};function o(e,t){var n=new Map;e.forEach(function(e){n.set(e,!0)});var r=t.filter(function(e){return!n.has(e)});return 1===r.length?r[0]:null}return n ").concat(t);return t}($)),p.createElement("div",null,p.createElement("input",{style:As,disabled:!1===x||d,tabIndex:!1!==x?w:null,onKeyDown:C,onFocus:S,onBlur:k,value:"",onChange:Au,"aria-label":"for screen reader"})),p.createElement("div",{className:"".concat(n,"-treenode"),"aria-hidden":!0,style:{position:"absolute",pointerEvents:"none",visibility:"hidden",height:0,overflow:"hidden",border:0,padding:0}},p.createElement("div",{className:"".concat(n,"-indent")},p.createElement("div",{ref:j,className:"".concat(n,"-indent-unit")}))),p.createElement(op,(0,R.A)({},N,{data:en,itemKey:Ah,height:v,fullHeight:!1,virtual:y,itemHeight:b,prefixCls:"".concat(n,"-list"),ref:I,onVisibleChange:function(e){e.every(function(e){return Ah(e)!==Ad})&&et()}}),function(e){var t=e.pos,n=Object.assign({},(Ar(e.data),e.data)),r=e.title,o=e.key,a=e.isStart,i=e.isEnd,l=f$(o,t);delete n.key,delete n.children;var c=fk(l,er);return p.createElement(Ai,(0,R.A)({},n,c,{title:r,active:!!$&&o===$.key,pos:t,data:e.data,isStart:a,isEnd:i,motion:h,motionNodes:o===Ad?Y:null,motionType:Z,onMotionStart:O,onMotionEnd:et,treeNodeRequiredProps:er,onMouseMove:function(){E(null)}}))}))});Av.displayName="NodeList";var Ab=function(e){(0,en.A)(n,e);var t=(0,iX.A)(n);function n(){var e;(0,J.A)(this,n);for(var r=arguments.length,o=Array(r),a=0;a0&&void 0!==arguments[0]?arguments[0]:[];t.forEach(function(t){var n=t.key,o=t.children;r.push(n),e(o)})}(i[c].children),r),indent:e.listRef.current.getIndentWidth()}),e.setExpandedKeys(s),window.addEventListener("dragend",e.onWindowDragEnd),null==l||l({event:t,node:fE(n.props)})}),(0,ej.A)((0,$F.A)(e),"onNodeDragEnter",function(t,n){var r=e.state,o=r.expandedKeys,a=r.keyEntities,i=r.dragChildrenKeys,l=r.flattenNodes,c=r.indent,s=e.props,u=s.onDragEnter,d=s.onExpand,f=s.allowDrop,p=s.direction,m=n.props,g=m.pos,h=m.eventKey,v=(0,$F.A)(e).dragNode;if(e.currentMouseOverDroppableNodeKey!==h&&(e.currentMouseOverDroppableNodeKey=h),!v)return void e.resetDragState();var b=$Q(t,v,n,c,e.dragStartMousePosition,f,l,a,o,p),x=b.dropPosition,$=b.dropLevelOffset,A=b.dropTargetKey,w=b.dropContainerKey,C=b.dropTargetPos,S=b.dropAllowed,k=b.dragOverNodeKey;-1===i.indexOf(A)&&S?(e.delayedDragEnterLogic||(e.delayedDragEnterLogic={}),Object.keys(e.delayedDragEnterLogic).forEach(function(t){clearTimeout(e.delayedDragEnterLogic[t])}),v.props.eventKey!==n.props.eventKey&&(t.persist(),e.delayedDragEnterLogic[g]=window.setTimeout(function(){if(null!==e.state.draggingNodeKey){var r=(0,y.A)(o),i=a[n.props.eventKey];i&&(i.children||[]).length&&(r=$U(o,n.props.eventKey)),e.props.hasOwnProperty("expandedKeys")||e.setExpandedKeys(r),null==d||d(r,{node:fE(n.props),expanded:!0,nativeEvent:t.nativeEvent})}},800)),v.props.eventKey===A&&0===$)?e.resetDragState():(e.setState({dragOverNodeKey:k,dropPosition:x,dropLevelOffset:$,dropTargetKey:A,dropContainerKey:w,dropTargetPos:C,dropAllowed:S}),null==u||u({event:t,node:fE(n.props),expandedKeys:o})):e.resetDragState()}),(0,ej.A)((0,$F.A)(e),"onNodeDragOver",function(t,n){var r=e.state,o=r.dragChildrenKeys,a=r.flattenNodes,i=r.keyEntities,l=r.expandedKeys,c=r.indent,s=e.props,u=s.onDragOver,d=s.allowDrop,f=s.direction,p=(0,$F.A)(e).dragNode;if(p){var m=$Q(t,p,n,c,e.dragStartMousePosition,d,a,i,l,f),g=m.dropPosition,h=m.dropLevelOffset,v=m.dropTargetKey,b=m.dropContainerKey,y=m.dropAllowed,x=m.dropTargetPos,$=m.dragOverNodeKey;-1===o.indexOf(v)&&y&&(p.props.eventKey===v&&0===h?(null!==e.state.dropPosition||null!==e.state.dropLevelOffset||null!==e.state.dropTargetKey||null!==e.state.dropContainerKey||null!==e.state.dropTargetPos||!1!==e.state.dropAllowed||null!==e.state.dragOverNodeKey)&&e.resetDragState():(g!==e.state.dropPosition||h!==e.state.dropLevelOffset||v!==e.state.dropTargetKey||b!==e.state.dropContainerKey||x!==e.state.dropTargetPos||y!==e.state.dropAllowed||$!==e.state.dragOverNodeKey)&&e.setState({dropPosition:g,dropLevelOffset:h,dropTargetKey:v,dropContainerKey:b,dropTargetPos:x,dropAllowed:y,dragOverNodeKey:$}),null==u||u({event:t,node:fE(n.props)}))}}),(0,ej.A)((0,$F.A)(e),"onNodeDragLeave",function(t,n){e.currentMouseOverDroppableNodeKey!==n.props.eventKey||t.currentTarget.contains(t.relatedTarget)||(e.resetDragState(),e.currentMouseOverDroppableNodeKey=null);var r=e.props.onDragLeave;null==r||r({event:t,node:fE(n.props)})}),(0,ej.A)((0,$F.A)(e),"onWindowDragEnd",function(t){e.onNodeDragEnd(t,null,!0),window.removeEventListener("dragend",e.onWindowDragEnd)}),(0,ej.A)((0,$F.A)(e),"onNodeDragEnd",function(t,n){var r=e.props.onDragEnd;e.setState({dragOverNodeKey:null}),e.cleanDragState(),null==r||r({event:t,node:fE(n.props)}),e.dragNode=null,window.removeEventListener("dragend",e.onWindowDragEnd)}),(0,ej.A)((0,$F.A)(e),"onNodeDrop",function(t,n){var r,o=arguments.length>2&&void 0!==arguments[2]&&arguments[2],a=e.state,i=a.dragChildrenKeys,l=a.dropPosition,c=a.dropTargetKey,s=a.dropTargetPos;if(a.dropAllowed){var u=e.props.onDrop;if(e.setState({dragOverNodeKey:null}),e.cleanDragState(),null!==c){var d=(0,eM.A)((0,eM.A)({},fk(c,e.getTreeNodeRequiredProps())),{},{active:(null==(r=e.getActiveItem())?void 0:r.key)===c,data:e.state.keyEntities[c].node}),f=-1!==i.indexOf(c);(0,tJ.Ay)(!f,"Can not drop to dragNode's children node. This is a bug of rc-tree. Please report an issue.");var p=$G(s),m={event:t,node:fE(d),dragNode:e.dragNode?fE(e.dragNode.props):null,dragNodesKeys:[e.dragNode.props.eventKey].concat(i),dropToGap:0!==l,dropPosition:l+Number(p[p.length-1])};o||null==u||u(m),e.dragNode=null}}}),(0,ej.A)((0,$F.A)(e),"cleanDragState",function(){null!==e.state.draggingNodeKey&&e.setState({draggingNodeKey:null,dropPosition:null,dropContainerKey:null,dropTargetKey:null,dropLevelOffset:null,dropAllowed:!0,dragOverNodeKey:null}),e.dragStartMousePosition=null,e.currentMouseOverDroppableNodeKey=null}),(0,ej.A)((0,$F.A)(e),"triggerExpandActionExpand",function(t,n){var r=e.state,o=r.expandedKeys,a=r.flattenNodes,i=n.expanded,l=n.key;if(!n.isLeaf&&!t.shiftKey&&!t.metaKey&&!t.ctrlKey){var c=a.filter(function(e){return e.key===l})[0],s=fE((0,eM.A)((0,eM.A)({},fk(l,e.getTreeNodeRequiredProps())),{},{data:c.data}));e.setExpandedKeys(i?$Y(o,l):$U(o,l)),e.onNodeExpand(t,s)}}),(0,ej.A)((0,$F.A)(e),"onNodeClick",function(t,n){var r=e.props,o=r.onClick;"click"===r.expandAction&&e.triggerExpandActionExpand(t,n),null==o||o(t,n)}),(0,ej.A)((0,$F.A)(e),"onNodeDoubleClick",function(t,n){var r=e.props,o=r.onDoubleClick;"doubleClick"===r.expandAction&&e.triggerExpandActionExpand(t,n),null==o||o(t,n)}),(0,ej.A)((0,$F.A)(e),"onNodeSelect",function(t,n){var r=e.state.selectedKeys,o=e.state,a=o.keyEntities,i=o.fieldNames,l=e.props,c=l.onSelect,s=l.multiple,u=n.selected,d=n[i.key],f=!u,p=(r=f?s?$U(r,d):[d]:$Y(r,d)).map(function(e){var t=a[e];return t?t.node:null}).filter(function(e){return e});e.setUncontrolledState({selectedKeys:r}),null==c||c(r,{event:"select",selected:f,node:n,selectedNodes:p,nativeEvent:t.nativeEvent})}),(0,ej.A)((0,$F.A)(e),"onNodeCheck",function(t,n,r){var o,a=e.state,i=a.keyEntities,l=a.checkedKeys,c=a.halfCheckedKeys,s=e.props,u=s.checkStrictly,d=s.onCheck,f=n.key,p={event:"check",node:n,checked:r,nativeEvent:t.nativeEvent};if(u){var m=r?$U(l,f):$Y(l,f);o={checked:m,halfChecked:$Y(c,f)},p.checkedNodes=m.map(function(e){return i[e]}).filter(function(e){return e}).map(function(e){return e.node}),e.setUncontrolledState({checkedKeys:m})}else{var g=fj([].concat((0,y.A)(l),[f]),!0,i),h=g.checkedKeys,v=g.halfCheckedKeys;if(!r){var b=new Set(h);b.delete(f);var x=fj(Array.from(b),{checked:!1,halfCheckedKeys:v},i);h=x.checkedKeys,v=x.halfCheckedKeys}o=h,p.checkedNodes=[],p.checkedNodesPositions=[],p.halfCheckedKeys=v,h.forEach(function(e){var t=i[e];if(t){var n=t.node,r=t.pos;p.checkedNodes.push(n),p.checkedNodesPositions.push({node:n,pos:r})}}),e.setUncontrolledState({checkedKeys:h},!1,{halfCheckedKeys:v})}null==d||d(o,p)}),(0,ej.A)((0,$F.A)(e),"onNodeLoad",function(t){var n,r=t.key,o=e.state.keyEntities[r];if(null==o||null==(n=o.children)||!n.length){var a=new Promise(function(n,o){e.setState(function(a){var i=a.loadedKeys,l=a.loadingKeys,c=void 0===l?[]:l,s=e.props,u=s.loadData,d=s.onLoad;return u&&-1===(void 0===i?[]:i).indexOf(r)&&-1===c.indexOf(r)?(u(t).then(function(){var o=$U(e.state.loadedKeys,r);null==d||d(o,{event:"load",node:t}),e.setUncontrolledState({loadedKeys:o}),e.setState(function(e){return{loadingKeys:$Y(e.loadingKeys,r)}}),n()}).catch(function(t){if(e.setState(function(e){return{loadingKeys:$Y(e.loadingKeys,r)}}),e.loadingRetryTimes[r]=(e.loadingRetryTimes[r]||0)+1,e.loadingRetryTimes[r]>=10){var a=e.state.loadedKeys;(0,tJ.Ay)(!1,"Retry for `loadData` many times but still failed. No more retry."),e.setUncontrolledState({loadedKeys:$U(a,r)}),n()}o(t)}),{loadingKeys:$U(c,r)}):null})});return a.catch(function(){}),a}}),(0,ej.A)((0,$F.A)(e),"onNodeMouseEnter",function(t,n){var r=e.props.onMouseEnter;null==r||r({event:t,node:n})}),(0,ej.A)((0,$F.A)(e),"onNodeMouseLeave",function(t,n){var r=e.props.onMouseLeave;null==r||r({event:t,node:n})}),(0,ej.A)((0,$F.A)(e),"onNodeContextMenu",function(t,n){var r=e.props.onRightClick;r&&(t.preventDefault(),r({event:t,node:n}))}),(0,ej.A)((0,$F.A)(e),"onFocus",function(){var t=e.props.onFocus;e.setState({focused:!0});for(var n=arguments.length,r=Array(n),o=0;o1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(!e.destroyed){var o=!1,a=!0,i={};Object.keys(t).forEach(function(n){if(e.props.hasOwnProperty(n)){a=!1;return}o=!0,i[n]=t[n]}),o&&(!n||a)&&e.setState((0,eM.A)((0,eM.A)({},i),r))}}),(0,ej.A)((0,$F.A)(e),"scrollTo",function(t){e.listRef.current.scrollTo(t)}),e}return(0,ee.A)(n,[{key:"componentDidMount",value:function(){this.destroyed=!1,this.onUpdated()}},{key:"componentDidUpdate",value:function(){this.onUpdated()}},{key:"onUpdated",value:function(){var e=this.props,t=e.activeKey,n=e.itemScrollOffset;void 0!==t&&t!==this.state.activeKey&&(this.setState({activeKey:t}),null!==t&&this.scrollTo({key:t,offset:void 0===n?0:n}))}},{key:"componentWillUnmount",value:function(){window.removeEventListener("dragend",this.onWindowDragEnd),this.destroyed=!0}},{key:"resetDragState",value:function(){this.setState({dragOverNodeKey:null,dropPosition:null,dropLevelOffset:null,dropTargetKey:null,dropContainerKey:null,dropTargetPos:null,dropAllowed:!1})}},{key:"render",value:function(){var e,t=this.state,n=t.focused,r=t.flattenNodes,o=t.keyEntities,a=t.draggingNodeKey,i=t.activeKey,l=t.dropLevelOffset,c=t.dropContainerKey,s=t.dropTargetKey,u=t.dropPosition,d=t.dragOverNodeKey,f=t.indent,m=this.props,g=m.prefixCls,v=m.className,b=m.style,y=m.showLine,x=m.focusable,$=m.tabIndex,A=m.selectable,w=m.showIcon,C=m.icon,S=m.switcherIcon,k=m.draggable,E=m.checkable,O=m.checkStrictly,M=m.disabled,N=m.motion,I=m.loadData,j=m.filterTreeNode,z=m.height,P=m.itemHeight,T=m.virtual,D=m.titleRender,L=m.dropIndicatorRender,B=m.onContextMenu,F=m.onScroll,_=m.direction,W=m.rootClassName,q=m.rootStyle,V=(0,H.A)(this.props,{aria:!0,data:!0});return k&&(e="object"===(0,ez.A)(k)?k:"function"==typeof k?{nodeDraggable:k}:{}),p.createElement($H.Provider,{value:{prefixCls:g,selectable:A,showIcon:w,icon:C,switcherIcon:S,draggable:e,draggingNodeKey:a,checkable:E,checkStrictly:O,disabled:M,keyEntities:o,dropLevelOffset:l,dropContainerKey:c,dropTargetKey:s,dropPosition:u,dragOverNodeKey:d,indent:f,direction:_,dropIndicatorRender:L,loadData:I,filterTreeNode:j,titleRender:D,onNodeClick:this.onNodeClick,onNodeDoubleClick:this.onNodeDoubleClick,onNodeExpand:this.onNodeExpand,onNodeSelect:this.onNodeSelect,onNodeCheck:this.onNodeCheck,onNodeLoad:this.onNodeLoad,onNodeMouseEnter:this.onNodeMouseEnter,onNodeMouseLeave:this.onNodeMouseLeave,onNodeContextMenu:this.onNodeContextMenu,onNodeDragStart:this.onNodeDragStart,onNodeDragEnter:this.onNodeDragEnter,onNodeDragOver:this.onNodeDragOver,onNodeDragLeave:this.onNodeDragLeave,onNodeDragEnd:this.onNodeDragEnd,onNodeDrop:this.onNodeDrop}},p.createElement("div",{role:"tree",className:h()(g,v,W,(0,ej.A)((0,ej.A)((0,ej.A)({},"".concat(g,"-show-line"),y),"".concat(g,"-focused"),n),"".concat(g,"-active-focused"),null!==i)),style:q},p.createElement(Av,(0,R.A)({ref:this.listRef,prefixCls:g,style:b,data:r,disabled:M,selectable:A,checkable:!!E,motion:N,dragging:null!==a,height:z,itemHeight:P,virtual:T,focusable:x,focused:n,tabIndex:void 0===$?0:$,activeItem:this.getActiveItem(),onFocus:this.onFocus,onBlur:this.onBlur,onKeyDown:this.onKeyDown,onActiveChange:this.onActiveChange,onListChangeStart:this.onListChangeStart,onListChangeEnd:this.onListChangeEnd,onContextMenu:B,onScroll:F},this.getTreeNodeRequiredProps(),V))))}}],[{key:"getDerivedStateFromProps",value:function(e,t){var n,r,o=t.prevProps,a={prevProps:e};function i(t){return!o&&e.hasOwnProperty(t)||o&&o[t]!==e[t]}var l=t.fieldNames;if(i("fieldNames")&&(a.fieldNames=l=fA(e.fieldNames)),i("treeData")?n=e.treeData:i("children")&&((0,tJ.Ay)(!1,"`children` of Tree is deprecated. Please use `treeData` instead."),n=fw(e.children)),n){a.treeData=n;var c=fS(n,{fieldNames:l});a.keyEntities=(0,eM.A)((0,ej.A)({},Ad,Ap),c.keyEntities)}var s=a.keyEntities||t.keyEntities;if(i("expandedKeys")||o&&i("autoExpandParent"))a.expandedKeys=e.autoExpandParent||!o&&e.defaultExpandParent?$0(e.expandedKeys,s):e.expandedKeys;else if(!o&&e.defaultExpandAll){var u=(0,eM.A)({},s);delete u[Ad];var d=[];Object.keys(u).forEach(function(e){var t=u[e];t.children&&t.children.length&&d.push(t.key)}),a.expandedKeys=d}else!o&&e.defaultExpandedKeys&&(a.expandedKeys=e.autoExpandParent||e.defaultExpandParent?$0(e.defaultExpandedKeys,s):e.defaultExpandedKeys);if(a.expandedKeys||delete a.expandedKeys,n||a.expandedKeys){var f=fC(n||t.treeData,a.expandedKeys||t.expandedKeys,l);a.flattenNodes=f}if(e.selectable&&(i("selectedKeys")?a.selectedKeys=$Z(e.selectedKeys,e):!o&&e.defaultSelectedKeys&&(a.selectedKeys=$Z(e.defaultSelectedKeys,e))),e.checkable&&(i("checkedKeys")?r=$J(e.checkedKeys)||{}:!o&&e.defaultCheckedKeys?r=$J(e.defaultCheckedKeys)||{}:n&&(r=$J(e.checkedKeys)||{checkedKeys:t.checkedKeys,halfCheckedKeys:t.halfCheckedKeys}),r)){var p=r,m=p.checkedKeys,g=void 0===m?[]:m,h=p.halfCheckedKeys,v=void 0===h?[]:h;if(!e.checkStrictly){var b=fj(g,!0,s);g=b.checkedKeys,v=b.halfCheckedKeys}a.checkedKeys=g,a.halfCheckedKeys=v}return i("loadedKeys")&&(a.loadedKeys=e.loadedKeys),a}}]),n}(p.Component);(0,ej.A)(Ab,"defaultProps",{prefixCls:"rc-tree",showLine:!1,showIcon:!0,selectable:!0,multiple:!1,checkable:!1,disabled:!1,checkStrictly:!1,draggable:!1,defaultExpandParent:!0,autoExpandParent:!1,defaultExpandAll:!1,defaultExpandedKeys:[],defaultCheckedKeys:[],defaultSelectedKeys:[],dropIndicatorRender:function(e){var t=e.dropPosition,n=e.dropLevelOffset,r=e.indent,o={pointerEvents:"none",position:"absolute",right:0,backgroundColor:"red",height:2};switch(t){case -1:o.top=0,o.left=-n*r;break;case 1:o.bottom=0,o.left=-n*r;break;case 0:o.bottom=0,o.left=r}return p.createElement("div",{style:o})},allowDrop:function(){return!0},expandAction:!1}),(0,ej.A)(Ab,"TreeNode",$X);let Ay={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM790.2 326H602V137.8L790.2 326zm1.8 562H232V136h302v216a42 42 0 0042 42h216v494z"}}]},name:"file",theme:"outlined"};var Ax=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:Ay}))});let A$={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 444H820V330.4c0-17.7-14.3-32-32-32H473L355.7 186.2a8.15 8.15 0 00-5.5-2.2H96c-17.7 0-32 14.3-32 32v592c0 17.7 14.3 32 32 32h698c13 0 24.8-7.9 29.7-20l134-332c1.5-3.8 2.3-7.9 2.3-12 0-17.7-14.3-32-32-32zM136 256h188.5l119.6 114.4H748V444H238c-13 0-24.8 7.9-29.7 20L136 643.2V256zm635.3 512H159l103.3-256h612.4L771.3 768z"}}]},name:"folder-open",theme:"outlined"};var AA=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:A$}))});let Aw={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M880 298.4H521L403.7 186.2a8.15 8.15 0 00-5.5-2.2H144c-17.7 0-32 14.3-32 32v592c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V330.4c0-17.7-14.3-32-32-32zM840 768H184V256h188.5l119.6 114.4H840V768z"}}]},name:"folder",theme:"outlined"};var AC=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:Aw}))});let AS={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M300 276.5a56 56 0 1056-97 56 56 0 00-56 97zm0 284a56 56 0 1056-97 56 56 0 00-56 97zM640 228a56 56 0 10112 0 56 56 0 00-112 0zm0 284a56 56 0 10112 0 56 56 0 00-112 0zM300 844.5a56 56 0 1056-97 56 56 0 00-56 97zM640 796a56 56 0 10112 0 56 56 0 00-112 0z"}}]},name:"holder",theme:"outlined"};var Ak=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:AS}))});let AE=new q.Mo("ant-tree-node-fx-do-not-use",{"0%":{opacity:0},"100%":{opacity:1}}),AO=(e,t)=>{let n=`.${e}`,r=`${n}-treenode`,o=t.calc(t.paddingXS).div(2).equal(),a=(0,ey.oX)(t,{treeCls:n,treeNodeCls:r,treeNodePadding:o});return[((e,t)=>{let{treeCls:n,treeNodeCls:r,treeNodePadding:o,titleHeight:a,indentSize:i,nodeSelectedBg:l,nodeHoverBg:c,colorTextQuaternary:s}=t;return{[n]:Object.assign(Object.assign({},(0,V.dF)(t)),{background:t.colorBgContainer,borderRadius:t.borderRadius,transition:`background-color ${t.motionDurationSlow}`,"&-rtl":{direction:"rtl"},[`&${n}-rtl ${n}-switcher_close ${n}-switcher-icon svg`]:{transform:"rotate(90deg)"},[`&-focused:not(:hover):not(${n}-active-focused)`]:Object.assign({},(0,V.jk)(t)),[`${n}-list-holder-inner`]:{alignItems:"flex-start"},[`&${n}-block-node`]:{[`${n}-list-holder-inner`]:{alignItems:"stretch",[`${n}-node-content-wrapper`]:{flex:"auto"},[`${r}.dragging:after`]:{position:"absolute",inset:0,border:`1px solid ${t.colorPrimary}`,opacity:0,animationName:AE,animationDuration:t.motionDurationSlow,animationPlayState:"running",animationFillMode:"forwards",content:'""',pointerEvents:"none",borderRadius:t.borderRadius}}},[r]:{display:"flex",alignItems:"flex-start",marginBottom:o,lineHeight:(0,q.zA)(a),position:"relative","&:before":{content:'""',position:"absolute",zIndex:1,insetInlineStart:0,width:"100%",top:"100%",height:o},[`&-disabled ${n}-node-content-wrapper`]:{color:t.colorTextDisabled,cursor:"not-allowed","&:hover":{background:"transparent"}},[`&:not(${r}-disabled)`]:{[`${n}-node-content-wrapper`]:{"&:hover":{color:t.nodeHoverColor}}},[`&-active ${n}-node-content-wrapper`]:{background:t.controlItemBgHover},[`&:not(${r}-disabled).filter-node ${n}-title`]:{color:t.colorPrimary,fontWeight:500},"&-draggable":{cursor:"grab",[`${n}-draggable-icon`]:{flexShrink:0,width:a,textAlign:"center",visibility:"visible",color:s},[`&${r}-disabled ${n}-draggable-icon`]:{visibility:"hidden"}}},[`${n}-indent`]:{alignSelf:"stretch",whiteSpace:"nowrap",userSelect:"none","&-unit":{display:"inline-block",width:i}},[`${n}-draggable-icon`]:{visibility:"hidden"},[`${n}-switcher, ${n}-checkbox`]:{marginInlineEnd:t.calc(t.calc(a).sub(t.controlInteractiveSize)).div(2).equal()},[`${n}-switcher`]:Object.assign(Object.assign({},{[`.${e}-switcher-icon`]:{display:"inline-block",fontSize:10,verticalAlign:"baseline",svg:{transition:`transform ${t.motionDurationSlow}`}}}),{position:"relative",flex:"none",alignSelf:"stretch",width:a,textAlign:"center",cursor:"pointer",userSelect:"none",transition:`all ${t.motionDurationSlow}`,"&-noop":{cursor:"unset"},"&:before":{pointerEvents:"none",content:'""',width:a,height:a,position:"absolute",left:{_skip_check_:!0,value:0},top:0,borderRadius:t.borderRadius,transition:`all ${t.motionDurationSlow}`},[`&:not(${n}-switcher-noop):hover:before`]:{backgroundColor:t.colorBgTextHover},[`&_close ${n}-switcher-icon svg`]:{transform:"rotate(-90deg)"},"&-loading-icon":{color:t.colorPrimary},"&-leaf-line":{position:"relative",zIndex:1,display:"inline-block",width:"100%",height:"100%","&:before":{position:"absolute",top:0,insetInlineEnd:t.calc(a).div(2).equal(),bottom:t.calc(o).mul(-1).equal(),marginInlineStart:-1,borderInlineEnd:`1px solid ${t.colorBorder}`,content:'""'},"&:after":{position:"absolute",width:t.calc(t.calc(a).div(2).equal()).mul(.8).equal(),height:t.calc(a).div(2).equal(),borderBottom:`1px solid ${t.colorBorder}`,content:'""'}}}),[`${n}-node-content-wrapper`]:Object.assign(Object.assign({position:"relative",minHeight:a,paddingBlock:0,paddingInline:t.paddingXS,background:"transparent",borderRadius:t.borderRadius,cursor:"pointer",transition:`all ${t.motionDurationMid}, border 0s, line-height 0s, box-shadow 0s`},{[`.${e}-drop-indicator`]:{position:"absolute",zIndex:1,height:2,backgroundColor:t.colorPrimary,borderRadius:1,pointerEvents:"none","&:after":{position:"absolute",top:-3,insetInlineStart:-6,width:8,height:8,backgroundColor:"transparent",border:`${(0,q.zA)(t.lineWidthBold)} solid ${t.colorPrimary}`,borderRadius:"50%",content:'""'}}}),{"&:hover":{backgroundColor:c},[`&${n}-node-selected`]:{color:t.nodeSelectedColor,backgroundColor:l},[`${n}-iconEle`]:{display:"inline-block",width:a,height:a,textAlign:"center",verticalAlign:"top","&:empty":{display:"none"}}}),[`${n}-unselectable ${n}-node-content-wrapper:hover`]:{backgroundColor:"transparent"},[`${r}.drop-container > [draggable]`]:{boxShadow:`0 0 0 2px ${t.colorPrimary}`},"&-show-line":{[`${n}-indent-unit`]:{position:"relative",height:"100%","&:before":{position:"absolute",top:0,insetInlineEnd:t.calc(a).div(2).equal(),bottom:t.calc(o).mul(-1).equal(),borderInlineEnd:`1px solid ${t.colorBorder}`,content:'""'},"&-end:before":{display:"none"}},[`${n}-switcher`]:{background:"transparent","&-line-icon":{verticalAlign:"-0.15em"}}},[`${r}-leaf-last ${n}-switcher-leaf-line:before`]:{top:"auto !important",bottom:"auto !important",height:`${(0,q.zA)(t.calc(a).div(2).equal())} !important`}})}})(e,a),(e=>{let{treeCls:t,treeNodeCls:n,directoryNodeSelectedBg:r,directoryNodeSelectedColor:o,motionDurationMid:a,borderRadius:i,controlItemBgHover:l}=e;return{[`${t}${t}-directory ${n}`]:{[`${t}-node-content-wrapper`]:{position:"static",[`> *:not(${t}-drop-indicator)`]:{position:"relative"},"&:hover":{background:"transparent"},"&:before":{position:"absolute",inset:0,transition:`background-color ${a}`,content:'""',borderRadius:i},"&:hover:before":{background:l}},[`${t}-switcher, ${t}-checkbox, ${t}-draggable-icon`]:{zIndex:1},"&-selected":{[`${t}-switcher, ${t}-draggable-icon`]:{color:o},[`${t}-node-content-wrapper`]:{color:o,background:"transparent","&:before, &:hover:before":{background:r}}}}}})(a)]},AM=e=>{let{controlHeightSM:t,controlItemBgHover:n,controlItemBgActive:r}=e;return{titleHeight:t,indentSize:t,nodeHoverBg:n,nodeHoverColor:e.colorText,nodeSelectedBg:r,nodeSelectedColor:e.colorText}},AN=(0,w.OF)("Tree",(e,t)=>{let{prefixCls:n}=t;return[{[e.componentCls]:fG(`${n}-checkbox`,e)},AO(n,e),(0,lH.A)(e)]},e=>{let{colorTextLightSolid:t,colorPrimary:n}=e;return Object.assign(Object.assign({},AM(e)),{directoryNodeSelectedColor:t,directoryNodeSelectedBg:n})}),AI=function(e){let{dropPosition:t,dropLevelOffset:n,prefixCls:r,indent:o,direction:a="ltr"}=e,i="ltr"===a?"left":"right",l={[i]:-n*o+4,["ltr"===a?"right":"left"]:0};switch(t){case -1:l.top=-3;break;case 1:l.bottom=-3;break;default:l.bottom=-3,l[i]=o+4}return m().createElement("div",{style:l,className:`${r}-drop-indicator`})},Aj={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M840.4 300H183.6c-19.7 0-30.7 20.8-18.5 35l328.4 380.8c9.4 10.9 27.5 10.9 37 0L858.9 335c12.2-14.2 1.2-35-18.5-35z"}}]},name:"caret-down",theme:"filled"};var Az=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:Aj}))});let AR={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M328 544h368c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z"}},{tag:"path",attrs:{d:"M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z"}}]},name:"minus-square",theme:"outlined"};var AP=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:AR}))});let AT={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M328 544h152v152c0 4.4 3.6 8 8 8h48c4.4 0 8-3.6 8-8V544h152c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H544V328c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v152H328c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8z"}},{tag:"path",attrs:{d:"M880 112H144c-17.7 0-32 14.3-32 32v736c0 17.7 14.3 32 32 32h736c17.7 0 32-14.3 32-32V144c0-17.7-14.3-32-32-32zm-40 728H184V184h656v656z"}}]},name:"plus-square",theme:"outlined"};var AD=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:AT}))});let AL=e=>{let t,{prefixCls:n,switcherIcon:r,treeNodeProps:o,showLine:a,switcherLoadingIcon:i}=e,{isLeaf:l,expanded:c,loading:s}=o;if(s)return p.isValidElement(i)?i:p.createElement(eX.A,{className:`${n}-switcher-loading-icon`});if(a&&"object"==typeof a&&(t=a.showLeafIcon),l){if(!a)return null;if("boolean"!=typeof t&&t){let e="function"==typeof t?t(o):t,r=`${n}-switcher-line-custom-icon`;return p.isValidElement(e)?(0,W.Ob)(e,{className:h()(e.props.className||"",r)}):e}return t?p.createElement(Ax,{className:`${n}-switcher-line-icon`}):p.createElement("span",{className:`${n}-switcher-leaf-line`})}let u=`${n}-switcher-icon`,d="function"==typeof r?r(o):r;return p.isValidElement(d)?(0,W.Ob)(d,{className:h()(d.props.className||"",u)}):void 0!==d?d:a?c?p.createElement(AP,{className:`${n}-switcher-line-icon`}):p.createElement(AD,{className:`${n}-switcher-line-icon`}):p.createElement(Az,{className:u})},AB=m().forwardRef((e,t)=>{var n;let{getPrefixCls:r,direction:o,virtual:a,tree:i}=m().useContext(A.QO),{prefixCls:l,className:c,showIcon:s=!1,showLine:u,switcherIcon:d,switcherLoadingIcon:f,blockNode:p=!1,children:g,checkable:v=!1,selectable:b=!0,draggable:y,motion:x,style:$}=e,w=r("tree",l),C=r(),S=null!=x?x:Object.assign(Object.assign({},(0,tN.A)(C)),{motionAppear:!1}),k=Object.assign(Object.assign({},e),{checkable:v,selectable:b,showIcon:s,motion:S,blockNode:p,showLine:!!u,dropIndicatorRender:AI}),[E,O,M]=AN(w),[,N]=(0,tb.Ay)(),I=N.paddingXS/2+((null==(n=N.Tree)?void 0:n.titleHeight)||N.controlHeightSM),j=m().useMemo(()=>{if(!y)return!1;let e={};switch(typeof y){case"function":e.nodeDraggable=y;break;case"object":e=Object.assign({},y)}return!1!==e.icon&&(e.icon=e.icon||m().createElement(Ak,null)),e},[y]);return E(m().createElement(Ab,Object.assign({itemHeight:I,ref:t,virtual:a},k,{style:Object.assign(Object.assign({},null==i?void 0:i.style),$),prefixCls:w,className:h()({[`${w}-icon-hide`]:!s,[`${w}-block-node`]:p,[`${w}-unselectable`]:!b,[`${w}-rtl`]:"rtl"===o},null==i?void 0:i.className,c,O,M),direction:o,checkable:v?m().createElement("span",{className:`${w}-checkbox-inner`}):v,selectable:b,switcherIcon:e=>m().createElement(AL,{prefixCls:w,switcherIcon:d,switcherLoadingIcon:f,treeNodeProps:e,showLine:u}),draggable:j}),g))});function AF(e,t,n){let{key:r,children:o}=n;e.forEach(function(e){let a=e[r],i=e[o];!1!==t(a,e)&&AF(i||[],t,n)})}var AH=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function A_(e){let{isLeaf:t,expanded:n}=e;return t?p.createElement(Ax,null):n?p.createElement(AA,null):p.createElement(AC,null)}function AW(e){let{treeData:t,children:n}=e;return t||fw(n)}let Aq=p.forwardRef((e,t)=>{var{defaultExpandAll:n,defaultExpandParent:r,defaultExpandedKeys:o}=e,a=AH(e,["defaultExpandAll","defaultExpandParent","defaultExpandedKeys"]);let i=p.useRef(null),l=p.useRef(null),[c,s]=p.useState(a.selectedKeys||a.defaultSelectedKeys||[]),[u,d]=p.useState(()=>(()=>{let{keyEntities:e}=fS(AW(a));return n?Object.keys(e):r?$0(a.expandedKeys||o||[],e):a.expandedKeys||o||[]})());p.useEffect(()=>{"selectedKeys"in a&&s(a.selectedKeys)},[a.selectedKeys]),p.useEffect(()=>{"expandedKeys"in a&&d(a.expandedKeys)},[a.expandedKeys]);let{getPrefixCls:f,direction:m}=p.useContext(A.QO),{prefixCls:g,className:v,showIcon:b=!0,expandAction:x="click"}=a,$=AH(a,["prefixCls","className","showIcon","expandAction"]),w=f("tree",g),C=h()(`${w}-directory`,{[`${w}-directory-rtl`]:"rtl"===m},v);return p.createElement(AB,Object.assign({icon:A_,ref:t,blockNode:!0},$,{showIcon:b,expandAction:x,prefixCls:w,className:C,expandedKeys:u,selectedKeys:c,onSelect:(e,t)=>{var n,r,o,c;let d,f,p,{multiple:m,fieldNames:g}=a,{node:h,nativeEvent:v}=t,{key:b=""}=h,x=AW(a),$=Object.assign(Object.assign({},t),{selected:!0}),A=(null==v?void 0:v.ctrlKey)||(null==v?void 0:v.metaKey),w=null==v?void 0:v.shiftKey;m&&A?(p=e,i.current=b,l.current=p):m&&w?p=Array.from(new Set([].concat((0,y.A)(l.current||[]),(0,y.A)(function(e){let{treeData:t,expandedKeys:n,startKey:r,endKey:o,fieldNames:a}=e,i=[],l=0;return r&&r===o?[r]:r&&o?(AF(t,e=>{if(2===l)return!1;if(e===r||e===o){if(i.push(e),0===l)l=1;else if(1===l)return l=2,!1}else 1===l&&i.push(e);return n.includes(e)},fA(a)),i):[]}({treeData:x,expandedKeys:u,startKey:b,endKey:i.current,fieldNames:g}))))):(p=[b],i.current=b,l.current=p),r=x,o=p,c=g,d=(0,y.A)(o),f=[],AF(r,(e,t)=>{let n=d.indexOf(e);return -1!==n&&(f.push(t),d.splice(n,1)),!!d.length},fA(c)),$.selectedNodes=f,null==(n=a.onSelect)||n.call(a,p,$),"selectedKeys"in a||s(p)},onExpand:(e,t)=>{var n;return"expandedKeys"in a||d(e),null==(n=a.onExpand)?void 0:n.call(a,e,t)}}))});AB.DirectoryTree=Aq,AB.TreeNode=$X;let AV=AB,AK=e=>{let{value:t,filterSearch:n,tablePrefixCls:r,locale:o,onChange:a}=e;return n?p.createElement("div",{className:`${r}-filter-dropdown-search`},p.createElement(mO,{prefix:p.createElement(ai,null),placeholder:o.filterSearchPlaceholder,onChange:a,value:t,htmlSize:1,className:`${r}-filter-dropdown-search-input`})):null},AX=e=>{let{keyCode:t}=e;t===eR.A.ENTER&&e.stopPropagation()},AY=p.forwardRef((e,t)=>p.createElement("div",{className:e.className,onClick:e=>e.stopPropagation(),onKeyDown:AX,ref:t},e.children));function AU(e){let t=[];return(e||[]).forEach(e=>{let{value:n,children:r}=e;t.push(n),r&&(t=[].concat((0,y.A)(t),(0,y.A)(AU(r))))}),t}function AG(e,t){return("string"==typeof t||"number"==typeof t)&&(null==t?void 0:t.toString().toLowerCase().includes(e.trim().toLowerCase()))}let AQ=e=>{var t,n,r,o,a;let i,l,c,s,{tablePrefixCls:u,prefixCls:d,column:f,dropdownPrefixCls:m,columnKey:g,filterOnClose:v,filterMultiple:b,filterMode:y="menu",filterSearch:x=!1,filterState:$,triggerFilter:w,locale:C,children:S,getPopupContainer:k,rootClassName:E}=e,{filterResetToDefaultFilteredValue:O,defaultFilteredValue:M,filterDropdownProps:N={},filterDropdownOpen:I,filterDropdownVisible:j,onFilterDropdownVisibleChange:z,onFilterDropdownOpenChange:R}=f,[P,T]=p.useState(!1),D=!!($&&((null==(t=$.filteredKeys)?void 0:t.length)||$.forceFiltered)),L=e=>{var t;T(e),null==(t=N.onOpenChange)||t.call(N,e),null==R||R(e),null==z||z(e)},B=null!=(o=null!=(r=null!=(n=N.open)?n:I)?r:j)?o:P,F=null==$?void 0:$.filteredKeys,[H,_]=(a=F||[],l=p.useRef(a),c=(0,aA.A)(),[()=>l.current,e=>{l.current=e,c()}]),W=e=>{let{selectedKeys:t}=e;_(t)},q=(e,t)=>{let{node:n,checked:r}=t;b?W({selectedKeys:e}):W({selectedKeys:r&&n.key?[n.key]:[]})};p.useEffect(()=>{P&&W({selectedKeys:F||[]})},[F]);let[V,K]=p.useState([]),X=e=>{K(e)},[Y,U]=p.useState(""),G=e=>{let{value:t}=e.target;U(t)};p.useEffect(()=>{P||U("")},[P]);let Q=e=>{let t=(null==e?void 0:e.length)?e:null;if(null===t&&(!$||!$.filteredKeys)||(0,tg.A)(t,null==$?void 0:$.filteredKeys,!0))return null;w({column:f,key:g,filteredKeys:t})},Z=()=>{L(!1),Q(H())},J=function(){let{confirm:e,closeDropdown:t}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{confirm:!1,closeDropdown:!1};e&&Q([]),t&&L(!1),U(""),O?_((M||[]).map(e=>String(e))):_([])},ee=h()({[`${m}-menu-without-submenu`]:!(f.filters||[]).some(e=>{let{children:t}=e;return t})}),et=e=>{e.target.checked?_(AU(null==f?void 0:f.filters).map(e=>String(e))):_([])},en=e=>{let{filters:t}=e;return(t||[]).map((e,t)=>{let n=String(e.value),r={title:e.text,key:void 0!==e.value?n:String(t)};return e.children&&(r.children=en({filters:e.children})),r})},er=e=>{var t;return Object.assign(Object.assign({},e),{text:e.title,value:e.key,children:(null==(t=e.children)?void 0:t.map(e=>er(e)))||[]})},{direction:eo,renderEmpty:ea}=p.useContext(A.QO);if("function"==typeof f.filterDropdown)i=f.filterDropdown({prefixCls:`${m}-custom`,setSelectedKeys:e=>W({selectedKeys:e}),selectedKeys:H(),confirm:function(){let{closeDropdown:e}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{closeDropdown:!0};e&&L(!1),Q(H())},clearFilters:J,filters:f.filters,visible:B,close:()=>{L(!1)}});else if(f.filterDropdown)i=f.filterDropdown;else{let e=H()||[];i=p.createElement(p.Fragment,null,(()=>{var t;let n=null!=(t=null==ea?void 0:ea("Table.filter"))?t:p.createElement(oR,{image:oR.PRESENTED_IMAGE_SIMPLE,description:C.filterEmptyText,imageStyle:{height:24},style:{margin:0,padding:"16px 0"}});if(0===(f.filters||[]).length)return n;if("tree"===y)return p.createElement(p.Fragment,null,p.createElement(AK,{filterSearch:x,value:Y,onChange:G,tablePrefixCls:u,locale:C}),p.createElement("div",{className:`${u}-filter-dropdown-tree`},b?p.createElement(po,{checked:e.length===AU(f.filters).length,indeterminate:e.length>0&&e.length"function"==typeof x?x(Y,er(e)):AG(Y,e.title):void 0})));let r=function e(t){let{filters:n,prefixCls:r,filteredKeys:o,filterMultiple:a,searchValue:i,filterSearch:l}=t;return n.map((t,n)=>{let c=String(t.value);if(t.children)return{key:c||n,label:t.text,popupClassName:`${r}-dropdown-submenu`,children:e({filters:t.children,prefixCls:r,filteredKeys:o,filterMultiple:a,searchValue:i,filterSearch:l})};let s=a?po:y4,u={key:void 0!==t.value?c:n,label:p.createElement(p.Fragment,null,p.createElement(s,{checked:o.includes(c)}),p.createElement("span",null,t.text))};return i.trim()?"function"==typeof l?l(i,t)?u:null:AG(i,t.text)?u:null:u})}({filters:f.filters||[],filterSearch:x,prefixCls:d,filteredKeys:H(),filterMultiple:b,searchValue:Y}),o=r.every(e=>null===e);return p.createElement(p.Fragment,null,p.createElement(AK,{filterSearch:x,value:Y,onChange:G,tablePrefixCls:u,locale:C}),o?n:p.createElement(l1,{selectable:!0,multiple:b,prefixCls:`${m}-menu`,className:ee,onSelect:W,onDeselect:W,selectedKeys:e,getPopupContainer:k,openKeys:V,onOpenChange:X,items:r}))})(),p.createElement("div",{className:`${d}-dropdown-btns`},p.createElement(tz.Ay,{type:"link",size:"small",disabled:O?(0,tg.A)((M||[]).map(e=>String(e)),e,!0):0===e.length,onClick:()=>J()},C.filterReset),p.createElement(tz.Ay,{type:"primary",size:"small",onClick:Z},C.filterConfirm)))}f.filterDropdown&&(i=p.createElement(lF,{selectable:void 0},i)),i=p.createElement(AY,{className:`${d}-dropdown`},i);let ei=ba({trigger:["click"],placement:"rtl"===eo?"bottomLeft":"bottomRight",children:(s="function"==typeof f.filterIcon?f.filterIcon(D):f.filterIcon?f.filterIcon:p.createElement(An,null),p.createElement("span",{role:"button",tabIndex:-1,className:h()(`${d}-trigger`,{active:D}),onClick:e=>{e.stopPropagation()}},s)),getPopupContainer:k},Object.assign(Object.assign({},N),{rootClassName:h()(E,N.rootClassName),open:B,onOpenChange:(e,t)=>{"trigger"===t.source&&(e&&void 0!==F&&_(F||[]),L(e),e||f.filterDropdown||!v||Z())},dropdownRender:()=>"function"==typeof(null==N?void 0:N.dropdownRender)?N.dropdownRender(i):i}));return p.createElement("div",{className:`${d}-column`},p.createElement("span",{className:`${u}-column-title`},S),p.createElement(hx,Object.assign({},ei)))},AZ=(e,t,n)=>{let r=[];return(e||[]).forEach((e,o)=>{var a;let i=$9(o,n);if(e.filters||"filterDropdown"in e||"onFilter"in e)if("filteredValue"in e){let t=e.filteredValue;"filterDropdown"in e||(t=null!=(a=null==t?void 0:t.map(String))?a:t),r.push({column:e,key:$7(e,i),filteredKeys:t,forceFiltered:e.filtered})}else r.push({column:e,key:$7(e,i),filteredKeys:t&&e.defaultFilteredValue?e.defaultFilteredValue:void 0,forceFiltered:e.filtered});"children"in e&&(r=[].concat((0,y.A)(r),(0,y.A)(AZ(e.children,t,i))))}),r},AJ=e=>{let t={};return e.forEach(e=>{let{key:n,filteredKeys:r,column:o}=e,{filters:a,filterDropdown:i}=o;if(i)t[n]=r||null;else if(Array.isArray(r)){let e=AU(a);t[n]=e.filter(e=>r.includes(String(e)))}else t[n]=null}),t},A0=(e,t,n)=>t.reduce((e,r)=>{let{column:{onFilter:o,filters:a},filteredKeys:i}=r;return o&&i&&i.length?e.map(e=>Object.assign({},e)).filter(e=>i.some(r=>{let i=AU(a),l=i.findIndex(e=>String(e)===String(r)),c=-1!==l?i[l]:r;return e[n]&&(e[n]=A0(e[n],t,n)),o(c,e)})):e},e),A1=e=>e.flatMap(e=>"children"in e?[e].concat((0,y.A)(A1(e.children||[]))):[e]);var A2=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let A4=function(e,t,n){let r=n&&"object"==typeof n?n:{},{total:o=0}=r,a=A2(r,["total"]),[i,l]=(0,p.useState)(()=>({current:"defaultCurrent"in a?a.defaultCurrent:1,pageSize:"defaultPageSize"in a?a.defaultPageSize:10})),c=ba(i,a,{total:o>0?o:e}),s=Math.ceil((o||e)/c.pageSize);c.current>s&&(c.current=s||1);let u=(e,t)=>{l({current:null!=e?e:1,pageSize:t||c.pageSize})};return!1===n?[{},()=>{}]:[Object.assign(Object.assign({},c),{onChange:(e,r)=>{var o;n&&(null==(o=n.onChange)||o.call(n,e,r)),u(e,r),t(e,r||(null==c?void 0:c.pageSize))}}),u]},A3={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M840.4 300H183.6c-19.7 0-30.7 20.8-18.5 35l328.4 380.8c9.4 10.9 27.5 10.9 37 0L858.9 335c12.2-14.2 1.2-35-18.5-35z"}}]},name:"caret-down",theme:"outlined"};var A6=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:A3}))});let A8={icon:{tag:"svg",attrs:{viewBox:"0 0 1024 1024",focusable:"false"},children:[{tag:"path",attrs:{d:"M858.9 689L530.5 308.2c-9.4-10.9-27.5-10.9-37 0L165.1 689c-12.2 14.2-1.2 35 18.5 35h656.8c19.7 0 30.7-20.8 18.5-35z"}}]},name:"caret-up",theme:"outlined"};var A5=p.forwardRef(function(e,t){return p.createElement(T.A,(0,R.A)({},e,{ref:t,icon:A8}))});let A7="ascend",A9="descend",we=e=>"object"==typeof e.sorter&&"number"==typeof e.sorter.multiple&&e.sorter.multiple,wt=e=>"function"==typeof e?e:!!e&&"object"==typeof e&&!!e.compare&&e.compare,wn=(e,t,n)=>{let r=[],o=(e,t)=>{r.push({column:e,key:$7(e,t),multiplePriority:we(e),sortOrder:e.sortOrder})};return(e||[]).forEach((e,a)=>{let i=$9(a,n);e.children?("sortOrder"in e&&o(e,i),r=[].concat((0,y.A)(r),(0,y.A)(wn(e.children,t,i)))):e.sorter&&("sortOrder"in e?o(e,i):t&&e.defaultSortOrder&&r.push({column:e,key:$7(e,i),multiplePriority:we(e),sortOrder:e.defaultSortOrder}))}),r},wr=(e,t,n,r,o,a,i,l)=>(t||[]).map((t,c)=>{let s=$9(c,l),u=t;if(u.sorter){let l,c=u.sortDirections||o,d=void 0===u.showSorterTooltip?i:u.showSorterTooltip,f=$7(u,s),m=n.find(e=>{let{key:t}=e;return t===f}),g=m?m.sortOrder:null,v=g?c[c.indexOf(g)+1]:c[0];if(t.sortIcon)l=t.sortIcon({sortOrder:g});else{let t=c.includes(A7)&&p.createElement(A5,{className:h()(`${e}-column-sorter-up`,{active:g===A7})}),n=c.includes(A9)&&p.createElement(A6,{className:h()(`${e}-column-sorter-down`,{active:g===A9})});l=p.createElement("span",{className:h()(`${e}-column-sorter`,{[`${e}-column-sorter-full`]:!!(t&&n)})},p.createElement("span",{className:`${e}-column-sorter-inner`,"aria-hidden":"true"},t,n))}let{cancelSort:b,triggerAsc:y,triggerDesc:x}=a||{},$=b;v===A9?$=x:v===A7&&($=y);let A="object"==typeof d?Object.assign({title:$},d):{title:$};u=Object.assign(Object.assign({},u),{className:h()(u.className,{[`${e}-column-sort`]:g}),title:n=>{let r=`${e}-column-sorters`,o=p.createElement("span",{className:`${e}-column-title`},Ae(t.title,n)),a=p.createElement("div",{className:r},o,l);return d?"boolean"!=typeof d&&(null==d?void 0:d.target)==="sorter-icon"?p.createElement("div",{className:`${r} ${e}-column-sorters-tooltip-target-sorter`},o,p.createElement(aM.A,Object.assign({},A),l)):p.createElement(aM.A,Object.assign({},A),a):a},onHeaderCell:n=>{var o;let a,i=(null==(o=t.onHeaderCell)?void 0:o.call(t,n))||{},l=i.onClick,c=i.onKeyDown;i.onClick=e=>{r({column:t,key:f,sortOrder:v,multiplePriority:we(t)}),null==l||l(e)},i.onKeyDown=e=>{e.keyCode===eR.A.ENTER&&(r({column:t,key:f,sortOrder:v,multiplePriority:we(t)}),null==c||c(e))};let s=(a=Ae(t.title,{}),"[object Object]"===Object.prototype.toString.call(a)?"":a),u=null==s?void 0:s.toString();return g?i["aria-sort"]="ascend"===g?"ascending":"descending":i["aria-label"]=u||"",i.className=h()(i.className,`${e}-column-has-sorters`),i.tabIndex=0,t.ellipsis&&(i.title=(null!=s?s:"").toString()),i}})}return"children"in u&&(u=Object.assign(Object.assign({},u),{children:wr(e,u.children,n,r,o,a,i,s)})),u}),wo=e=>{let{column:t,sortOrder:n}=e;return{column:t,order:n,field:t.dataIndex,columnKey:t.key}},wa=e=>{let t=e.filter(e=>{let{sortOrder:t}=e;return t}).map(wo);if(0===t.length&&e.length){let t=e.length-1;return Object.assign(Object.assign({},wo(e[t])),{column:void 0,order:void 0,field:void 0,columnKey:void 0})}return t.length<=1?t[0]||{}:t},wi=(e,t,n)=>{let r=t.slice().sort((e,t)=>t.multiplePriority-e.multiplePriority),o=e.slice(),a=r.filter(e=>{let{column:{sorter:t},sortOrder:n}=e;return wt(t)&&n});return a.length?o.sort((e,t)=>{for(let n=0;n{let r=e[n];return r?Object.assign(Object.assign({},e),{[n]:wi(r,t,n)}):e}):o},wl=(e,t)=>e.map(e=>{let n=Object.assign({},e);return n.title=Ae(e.title,t),"children"in n&&(n.children=wl(n.children,t)),n}),wc=xV($N,(e,t)=>{let{_renderTimes:n}=e,{_renderTimes:r}=t;return n!==r}),ws=xV($B,(e,t)=>{let{_renderTimes:n}=e,{_renderTimes:r}=t;return n!==r});var wu=n(26639);let wd=[],wf=p.forwardRef((e,t)=>{var n,r,o;let a,i,l,c,s,{prefixCls:u,className:d,rootClassName:f,style:m,size:g,bordered:v,dropdownPrefixCls:x,dataSource:$,pagination:w,rowSelection:C,rowKey:S="key",rowClassName:k,columns:E,children:O,childrenColumnName:M,onChange:N,getPopupContainer:I,loading:j,expandIcon:z,expandable:R,expandedRowRender:P,expandIconColumnIndex:T,indentSize:D,scroll:L,sortDirections:B,locale:F,showSorterTooltip:H={target:"full-header"},virtual:_}=e;(0,ek.rJ)("Table");let W=p.useMemo(()=>E||$y(O),[E,O]),q=aw(p.useMemo(()=>W.some(e=>e.responsive),[W])),V=p.useMemo(()=>{let e=new Set(Object.keys(q).filter(e=>q[e]));return W.filter(t=>!t.responsive||t.responsive.some(t=>e.has(t)))},[W,q]),K=(0,b.A)(e,["className","style","columns"]),{locale:X=te.A,direction:Y,table:U,renderEmpty:G,getPrefixCls:Q,getPopupContainer:Z}=p.useContext(A.QO),J=(0,oT.A)(g),ee=Object.assign(Object.assign({},X.Table),F),et=$||wd,en=Q("table",u),er=Q("dropdown",x),[,eo]=(0,tb.Ay)(),ea=(0,eh.A)(en),[ei,el,ec]=(0,wu.A)(en,ea),es=Object.assign(Object.assign({childrenColumnName:M,expandIconColumnIndex:T},R),{expandIcon:null!=(n=null==R?void 0:R.expandIcon)?n:null==(r=null==U?void 0:U.expandable)?void 0:r.expandIcon}),{childrenColumnName:eu="children"}=es,ed=p.useMemo(()=>et.some(e=>null==e?void 0:e[eu])?"nest":P||(null==R?void 0:R.expandedRowRender)?"row":null,[et]),ef={body:p.useRef(null)},ep=(e,t)=>{let n=e.querySelector(`.${en}-container`),r=t;if(n){let e=getComputedStyle(n);r=t-parseInt(e.borderLeftWidth,10)-parseInt(e.borderRightWidth,10)}return r},em=p.useRef(null),ev=p.useRef(null);(0,p.useImperativeHandle)(t,()=>{let e=(()=>Object.assign(Object.assign({},ev.current),{nativeElement:em.current}))(),{nativeElement:t}=e;return"u">typeof Proxy?new Proxy(t,{get:(t,n)=>e[n]?e[n]:Reflect.get(t,n)}):(t._antProxy=t._antProxy||{},Object.keys(e).forEach(n=>{if(!(n in t._antProxy)){let r=t[n];t._antProxy[n]=r,t[n]=e[n]}}),t)});let eb=p.useMemo(()=>"function"==typeof S?S:e=>null==e?void 0:e[S],[S]),[ey]=(c=p.useRef({}),[function(e){var t;if(!c.current||c.current.data!==et||c.current.childrenColumnName!==eu||c.current.getRowKey!==eb){let e=new Map;!function t(n){n.forEach((n,r)=>{let o=eb(n,r);e.set(o,n),n&&"object"==typeof n&&eu in n&&t(n[eu]||[])})}(et),c.current={data:et,childrenColumnName:eu,kvMap:e,getRowKey:eb}}return null==(t=c.current.kvMap)?void 0:t.get(e)}]),ex={},e$=function(e,t){var n,r,o,a;let i=arguments.length>2&&void 0!==arguments[2]&&arguments[2],l=Object.assign(Object.assign({},ex),e);i&&(null==(n=ex.resetPagination)||n.call(ex),(null==(r=l.pagination)?void 0:r.current)&&(l.pagination.current=1),w&&(null==(o=w.onChange)||o.call(w,1,null==(a=l.pagination)?void 0:a.pageSize))),L&&!1!==L.scrollToFirstRowOnChange&&ef.body.current&&eg(0,{getContainer:()=>ef.body.current}),null==N||N(l.pagination,l.filters,l.sorter,{currentDataSource:A0(wi(et,l.sorterStates,eu),l.filterStates,eu),action:t})},[eA,ew,eC,eS]=(e=>{let{prefixCls:t,mergedColumns:n,sortDirections:r,tableLocale:o,showSorterTooltip:a,onSorterChange:i}=e,[l,c]=p.useState(wn(n,!0)),s=(e,t)=>{let n=[];return e.forEach((e,r)=>{let o=$9(r,t);if(n.push($7(e,o)),Array.isArray(e.children)){let t=s(e.children,o);n.push.apply(n,(0,y.A)(t))}}),n},u=p.useMemo(()=>{let e=!0,t=wn(n,!1);if(!t.length){let e=s(n);return l.filter(t=>{let{key:n}=t;return e.includes(n)})}let r=[];function o(t){e?r.push(t):r.push(Object.assign(Object.assign({},t),{sortOrder:null}))}let a=null;return t.forEach(t=>{null===a?(o(t),t.sortOrder&&(!1===t.multiplePriority?e=!1:a=!0)):(a&&!1!==t.multiplePriority||(e=!1),o(t))}),r},[n,l]),d=p.useMemo(()=>{var e,t;let n=u.map(e=>{let{column:t,sortOrder:n}=e;return{column:t,order:n}});return{sortColumns:n,sortColumn:null==(e=n[0])?void 0:e.column,sortOrder:null==(t=n[0])?void 0:t.order}},[u]),f=e=>{let t;c(t=!1!==e.multiplePriority&&u.length&&!1!==u[0].multiplePriority?[].concat((0,y.A)(u.filter(t=>{let{key:n}=t;return n!==e.key})),[e]):[e]),i(wa(t),t)};return[e=>wr(t,e,u,f,r,o,a),u,d,()=>wa(u)]})({prefixCls:en,mergedColumns:V,onSorterChange:(e,t)=>{e$({sorter:e,sorterStates:t},"sort",!1)},sortDirections:B||["ascend","descend"],tableLocale:ee,showSorterTooltip:H}),eE=p.useMemo(()=>wi(et,ew,eu),[et,ew]);ex.sorter=eS(),ex.sorterStates=ew;let[eO,eM,eN]=(e=>{let{prefixCls:t,dropdownPrefixCls:n,mergedColumns:r,onFilterChange:o,getPopupContainer:a,locale:i,rootClassName:l}=e;(0,ek.rJ)("Table");let c=p.useMemo(()=>A1(r||[]),[r]),[s,u]=p.useState(()=>AZ(c,!0)),d=p.useMemo(()=>{let e=AZ(c,!1);if(0===e.length)return e;let t=!0;if(e.forEach(e=>{let{filteredKeys:n}=e;void 0!==n&&(t=!1)}),t){let e=(c||[]).map((e,t)=>$7(e,$9(t)));return s.filter(t=>{let{key:n}=t;return e.includes(n)}).map(t=>{let n=c[e.findIndex(e=>e===t.key)];return Object.assign(Object.assign({},t),{column:Object.assign(Object.assign({},t.column),n),forceFiltered:n.filtered})})}return e},[c,s]),f=p.useMemo(()=>AJ(d),[d]),m=e=>{let t=d.filter(t=>{let{key:n}=t;return n!==e.key});t.push(e),u(t),o(AJ(t),t)};return[e=>(function e(t,n,r,o,a,i,l,c,s){return r.map((r,u)=>{let d=$9(u,c),{filterOnClose:f=!0,filterMultiple:m=!0,filterMode:g,filterSearch:h}=r,v=r;if(v.filters||v.filterDropdown){let e=$7(v,d),c=o.find(t=>{let{key:n}=t;return e===n});v=Object.assign(Object.assign({},v),{title:o=>p.createElement(AQ,{tablePrefixCls:t,prefixCls:`${t}-filter`,dropdownPrefixCls:n,column:v,columnKey:e,filterState:c,filterOnClose:f,filterMultiple:m,filterMode:g,filterSearch:h,triggerFilter:i,locale:a,getPopupContainer:l,rootClassName:s},Ae(r.title,o))})}return"children"in v&&(v=Object.assign(Object.assign({},v),{children:e(t,n,v.children,o,a,i,l,d,s)})),v})})(t,n,e,d,i,m,a,void 0,l),d,f]})({prefixCls:en,locale:ee,dropdownPrefixCls:er,mergedColumns:V,onFilterChange:(e,t)=>{e$({filters:e,filterStates:t},"filter",!0)},getPopupContainer:I||Z,rootClassName:h()(f,ea)}),eI=A0(eE,eM,eu);ex.filters=eN,ex.filterStates=eM;let[ej]=(o=p.useMemo(()=>{let e={};return Object.keys(eN).forEach(t=>{null!==eN[t]&&(e[t]=eN[t])}),Object.assign(Object.assign({},eC),{filters:e})},[eC,eN]),[p.useCallback(e=>wl(e,o),[o])]),[ez,eR]=A4(eI.length,(e,t)=>{e$({pagination:Object.assign(Object.assign({},ex.pagination),{current:e,pageSize:t})},"paginate")},w);ex.pagination=!1===w?{}:(s={current:ez.current,pageSize:ez.pageSize},Object.keys(w&&"object"==typeof w?w:{}).forEach(e=>{let t=ez[e];"function"!=typeof t&&(s[e]=t)}),s),ex.resetPagination=eR;let eP=p.useMemo(()=>{if(!1===w||!ez.pageSize)return eI;let{current:e=1,total:t,pageSize:n=10}=ez;return eI.lengthn?eI.slice((e-1)*n,e*n):eI:eI.slice((e-1)*n,e*n)},[!!w,eI,null==ez?void 0:ez.current,null==ez?void 0:ez.pageSize,null==ez?void 0:ez.total]),[eT,eD]=((e,t)=>{let{preserveSelectedRowKeys:n,selectedRowKeys:r,defaultSelectedRowKeys:o,getCheckboxProps:a,onChange:i,onSelect:l,onSelectAll:c,onSelectInvert:s,onSelectNone:u,onSelectMultiple:d,columnWidth:f,type:m,selections:g,fixed:v,renderCell:b,hideSelectAll:x,checkStrictly:$=!0}=t||{},{prefixCls:A,data:w,pageData:C,getRecordByKey:S,getRowKey:k,expandType:E,childrenColumnName:O,locale:M,getPopupContainer:N}=e,I=(0,ek.rJ)("Table"),[j,z]=$1(e=>e),[R,P]=(0,rs.A)(r||o||$8,{value:r}),T=p.useRef(new Map),D=(0,p.useCallback)(e=>{if(n){let t=new Map;e.forEach(e=>{let n=S(e);!n&&T.current.has(e)&&(n=T.current.get(e)),t.set(e,n)}),T.current=t}},[S,n]);p.useEffect(()=>{D(R)},[R]);let L=(0,p.useMemo)(()=>$5(O,C),[O,C]),{keyEntities:B}=(0,p.useMemo)(()=>{if($)return{keyEntities:null};let e=w;if(n){let t=new Set(L.map((e,t)=>k(e,t))),n=Array.from(T.current).reduce((e,n)=>{let[r,o]=n;return t.has(r)?e:e.concat(o)},[]);e=[].concat((0,y.A)(e),(0,y.A)(n))}return fS(e,{externalGetKey:k,childrenPropName:O})},[w,k,$,O,n,L]),F=(0,p.useMemo)(()=>{let e=new Map;return L.forEach((t,n)=>{let r=k(t,n),o=(a?a(t):null)||{};e.set(r,o)}),e},[L,k,a]),H=(0,p.useCallback)(e=>{var t;return!!(null==(t=F.get(k(e)))?void 0:t.disabled)},[F,k]),[_,W]=(0,p.useMemo)(()=>{if($)return[R||[],[]];let{checkedKeys:e,halfCheckedKeys:t}=fj(R,!0,B,H);return[e||[],t]},[R,$,B,H]),q=(0,p.useMemo)(()=>new Set("radio"===m?_.slice(0,1):_),[_,m]),V=(0,p.useMemo)(()=>"radio"===m?new Set:new Set(W),[W,m]);p.useEffect(()=>{t||P($8)},[!!t]);let K=(0,p.useCallback)((e,t)=>{let r,o;D(e),n?(r=e,o=e.map(e=>T.current.get(e))):(r=[],o=[],e.forEach(e=>{let t=S(e);void 0!==t&&(r.push(e),o.push(t))})),P(r),null==i||i(r,o,{type:t})},[P,S,i,n]),X=(0,p.useCallback)((e,t,n,r)=>{if(l){let o=n.map(e=>S(e));l(S(e),t,o,r)}K(n,"single")},[l,S,K]),Y=(0,p.useMemo)(()=>!g||x?null:(!0===g?[$4,$3,$6]:g).map(e=>e===$4?{key:"all",text:M.selectionAll,onSelect(){K(w.map((e,t)=>k(e,t)).filter(e=>{let t=F.get(e);return!(null==t?void 0:t.disabled)||q.has(e)}),"all")}}:e===$3?{key:"invert",text:M.selectInvert,onSelect(){let e=new Set(q);C.forEach((t,n)=>{let r=k(t,n),o=F.get(r);(null==o?void 0:o.disabled)||(e.has(r)?e.delete(r):e.add(r))});let t=Array.from(e);s&&(I.deprecated(!1,"onSelectInvert","onChange"),s(t)),K(t,"invert")}}:e===$6?{key:"none",text:M.selectNone,onSelect(){null==u||u(),K(Array.from(q).filter(e=>{let t=F.get(e);return null==t?void 0:t.disabled}),"none")}}:e).map(e=>Object.assign(Object.assign({},e),{onSelect:function(){for(var t,n=arguments.length,r=Array(n),o=0;o{var n;let r,o,a;if(!t)return e.filter(e=>e!==$2);let i=(0,y.A)(e),l=new Set(q),s=L.map(k).filter(e=>!F.get(e).disabled),u=s.every(e=>l.has(e)),w=s.some(e=>l.has(e));if("radio"!==m){let e;if(Y){let t={getPopupContainer:N,items:Y.map((e,t)=>{let{key:n,text:r,onSelect:o}=e;return{key:null!=n?n:t,onClick:()=>{null==o||o(s)},label:r}})};e=p.createElement("div",{className:`${A}-selection-extra`},p.createElement(hx,{menu:t,getPopupContainer:N},p.createElement("span",null,p.createElement(ao,null))))}let t=L.map((e,t)=>{let n=k(e,t),r=F.get(n)||{};return Object.assign({checked:l.has(n)},r)}).filter(e=>{let{disabled:t}=e;return t}),n=!!t.length&&t.length===L.length,a=n&&t.every(e=>{let{checked:t}=e;return t}),i=n&&t.some(e=>{let{checked:t}=e;return t});o=p.createElement(po,{checked:n?a:!!L.length&&u,indeterminate:n?!a&&i:!u&&w,onChange:()=>{let e=[];u?s.forEach(t=>{l.delete(t),e.push(t)}):s.forEach(t=>{l.has(t)||(l.add(t),e.push(t))});let t=Array.from(l);null==c||c(!u,t.map(e=>S(e)),e.map(e=>S(e))),K(t,"all"),z(null)},disabled:0===L.length||n,"aria-label":e?"Custom selection":"Select all",skipGroup:!0}),r=!x&&p.createElement("div",{className:`${A}-selection`},o,e)}if(a="radio"===m?(e,t,n)=>{let r=k(t,n),o=l.has(r),a=F.get(r);return{node:p.createElement(y4,Object.assign({},a,{checked:o,onClick:e=>{var t;e.stopPropagation(),null==(t=null==a?void 0:a.onClick)||t.call(a,e)},onChange:e=>{var t;l.has(r)||X(r,!0,[r],e.nativeEvent),null==(t=null==a?void 0:a.onChange)||t.call(a,e)}})),checked:o}}:(e,t,n)=>{var r;let o,a=k(t,n),i=l.has(a),c=V.has(a),u=F.get(a);return o="nest"===E?c:null!=(r=null==u?void 0:u.indeterminate)?r:c,{node:p.createElement(po,Object.assign({},u,{indeterminate:o,checked:i,skipGroup:!0,onClick:e=>{var t;e.stopPropagation(),null==(t=null==u?void 0:u.onClick)||t.call(u,e)},onChange:e=>{var t;let{nativeEvent:n}=e,{shiftKey:r}=n,o=s.findIndex(e=>e===a),c=_.some(e=>s.includes(e));if(r&&$&&c){let e=j(o,s,l),t=Array.from(l);null==d||d(!i,t.map(e=>S(e)),e.map(e=>S(e))),K(t,"multiple")}else if($){let e=i?$Y(_,a):$U(_,a);X(a,!i,e,n)}else{let{checkedKeys:e,halfCheckedKeys:t}=fj([].concat((0,y.A)(_),[a]),!0,B,H),r=e;if(i){let n=new Set(e);n.delete(a),r=fj(Array.from(n),{checked:!1,halfCheckedKeys:t},B,H).checkedKeys}X(a,!i,r,n)}i?z(null):z(o),null==(t=null==u?void 0:u.onChange)||t.call(u,e)}})),checked:i}},!i.includes($2))if(0===i.findIndex(e=>{var t;return(null==(t=e[$c])?void 0:t.columnType)==="EXPAND_COLUMN"})){let[e,...t]=i;i=[e,$2].concat((0,y.A)(t))}else i=[$2].concat((0,y.A)(i));let C=i.indexOf($2),O=(i=i.filter((e,t)=>e!==$2||t===C))[C-1],M=i[C+1],I=v;void 0===I&&((null==M?void 0:M.fixed)!==void 0?I=M.fixed:(null==O?void 0:O.fixed)!==void 0&&(I=O.fixed)),I&&O&&(null==(n=O[$c])?void 0:n.columnType)==="EXPAND_COLUMN"&&void 0===O.fixed&&(O.fixed=I);let R=h()(`${A}-selection-col`,{[`${A}-selection-col-with-dropdown`]:g&&"checkbox"===m}),P={fixed:I,width:f,className:`${A}-selection-column`,title:(null==t?void 0:t.columnTitle)?"function"==typeof t.columnTitle?t.columnTitle(o):t.columnTitle:r,render:(e,t,n)=>{let{node:r,checked:o}=a(e,t,n);return b?b(o,t,n,r):r},onCell:t.onCell,[$c]:{className:R}};return i.map(e=>e===$2?P:e)},[k,L,t,_,q,V,f,Y,E,F,d,X,H]),q]})({prefixCls:en,data:eI,pageData:eP,getRowKey:eb,getRecordByKey:ey,expandType:ed,childrenColumnName:eu,locale:ee,getPopupContainer:I||Z},C);es.__PARENT_RENDER_ICON__=es.expandIcon,es.expandIcon=es.expandIcon||z||(e=>{let{prefixCls:t,onExpand:n,record:r,expanded:o,expandable:a}=e,i=`${t}-row-expand-icon`;return p.createElement("button",{type:"button",onClick:e=>{n(r,e),e.stopPropagation()},className:h()(i,{[`${i}-spaced`]:!a,[`${i}-expanded`]:a&&o,[`${i}-collapsed`]:a&&!o}),"aria-label":o?ee.collapse:ee.expand,"aria-expanded":o})}),"nest"===ed&&void 0===es.expandIconColumnIndex?es.expandIconColumnIndex=+!!C:es.expandIconColumnIndex>0&&C&&(es.expandIconColumnIndex-=1),"number"!=typeof es.indentSize&&(es.indentSize="number"==typeof D?D:15);let eL=p.useCallback(e=>ej(eT(eO(eA(e)))),[eA,eO,eT]);if(!1!==w&&(null==ez?void 0:ez.total)){let e;e=ez.size?ez.size:"small"===J||"middle"===J?"small":void 0;let t=t=>p.createElement(bC,Object.assign({},ez,{className:h()(`${en}-pagination ${en}-pagination-${t}`,ez.className),size:e})),n="rtl"===Y?"left":"right",{position:r}=ez;if(null!==r&&Array.isArray(r)){let e=r.find(e=>e.includes("top")),o=r.find(e=>e.includes("bottom")),l=r.every(e=>"none"==`${e}`);e||o||l||(i=t(n)),e&&(a=t(e.toLowerCase().replace("top",""))),o&&(i=t(o.toLowerCase().replace("bottom","")))}else i=t(n)}"boolean"==typeof j?l={spinning:j}:"object"==typeof j&&(l=Object.assign({spinning:!0},j));let eB=h()(ec,ea,`${en}-wrapper`,null==U?void 0:U.className,{[`${en}-wrapper-rtl`]:"rtl"===Y},d,f,el),eF=Object.assign(Object.assign({},null==U?void 0:U.style),m),eH=void 0!==(null==F?void 0:F.emptyText)?F.emptyText:(null==G?void 0:G("Table"))||p.createElement(oP,{componentName:"Table"}),e_={},eW=p.useMemo(()=>{let{fontSize:e,lineHeight:t,padding:n,paddingXS:r,paddingSM:o}=eo,a=Math.floor(e*t);switch(J){case"large":return 2*n+a;case"small":return 2*r+a;default:return 2*o+a}},[eo,J]);return _&&(e_.listItemHeight=eW),ei(p.createElement("div",{ref:em,className:eB,style:eF},p.createElement(bT,Object.assign({spinning:!1},l),a,p.createElement(_?ws:wc,Object.assign({},e_,K,{ref:ev,columns:V,direction:Y,expandable:es,prefixCls:en,className:h()({[`${en}-middle`]:"middle"===J,[`${en}-small`]:"small"===J,[`${en}-bordered`]:v,[`${en}-empty`]:0===et.length},ec,ea,el),data:eP,rowKey:eb,rowClassName:(e,t,n)=>{let r;return r="function"==typeof k?h()(k(e,t,n)):h()(k),h()({[`${en}-row-selected`]:eD.has(eb(e,t))},r)},emptyText:eH,internalHooks:xB,internalRefs:ef,transformColumns:eL,getContainerWidth:ep})),i)))}),wp=p.forwardRef((e,t)=>{let n=p.useRef(0);return n.current+=1,p.createElement(wf,Object.assign({},e,{ref:t,_renderTimes:n.current}))});wp.SELECTION_COLUMN=$2,wp.EXPAND_COLUMN=xL,wp.SELECTION_ALL=$4,wp.SELECTION_INVERT=$3,wp.SELECTION_NONE=$6,wp.Column=e=>null,wp.ColumnGroup=e=>null,wp.Summary=x4;let wm=wp,wg=e=>{let{lineWidth:t,fontSizeIcon:n,calc:r}=e,o=e.fontSizeSM;return(0,ey.oX)(e,{tagFontSize:o,tagLineHeight:(0,q.zA)(r(e.lineHeightSM).mul(o).equal()),tagIconSize:r(n).sub(r(t).mul(2)).equal(),tagPaddingHorizontal:8,tagBorderlessBg:e.defaultBg})},wh=e=>({defaultBg:new ts.q(e.colorFillQuaternary).onBackground(e.colorBgContainer).toHexString(),defaultColor:e.colorText}),wv=(0,w.OF)("Tag",e=>(e=>{let{paddingXXS:t,lineWidth:n,tagPaddingHorizontal:r,componentCls:o,calc:a}=e,i=a(r).sub(n).equal(),l=a(t).sub(n).equal();return{[o]:Object.assign(Object.assign({},(0,V.dF)(e)),{display:"inline-block",height:"auto",marginInlineEnd:e.marginXS,paddingInline:i,fontSize:e.tagFontSize,lineHeight:e.tagLineHeight,whiteSpace:"nowrap",background:e.defaultBg,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderRadius:e.borderRadiusSM,opacity:1,transition:`all ${e.motionDurationMid}`,textAlign:"start",position:"relative",[`&${o}-rtl`]:{direction:"rtl"},"&, a, a:hover":{color:e.defaultColor},[`${o}-close-icon`]:{marginInlineStart:l,fontSize:e.tagIconSize,color:e.colorTextDescription,cursor:"pointer",transition:`all ${e.motionDurationMid}`,"&:hover":{color:e.colorTextHeading}},[`&${o}-has-color`]:{borderColor:"transparent",[`&, a, a:hover, ${e.iconCls}-close, ${e.iconCls}-close:hover`]:{color:e.colorTextLightSolid}},"&-checkable":{backgroundColor:"transparent",borderColor:"transparent",cursor:"pointer",[`&:not(${o}-checkable-checked):hover`]:{color:e.colorPrimary,backgroundColor:e.colorFillSecondary},"&:active, &-checked":{color:e.colorTextLightSolid},"&-checked":{backgroundColor:e.colorPrimary,"&:hover":{backgroundColor:e.colorPrimaryHover}},"&:active":{backgroundColor:e.colorPrimaryActive}},"&-hidden":{display:"none"},[`> ${e.iconCls} + span, > span + ${e.iconCls}`]:{marginInlineStart:i}}),[`${o}-borderless`]:{borderColor:"transparent",background:e.tagBorderlessBg}}})(wg(e)),wh);var wb=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let wy=p.forwardRef((e,t)=>{let{prefixCls:n,style:r,className:o,checked:a,onChange:i,onClick:l}=e,c=wb(e,["prefixCls","style","className","checked","onChange","onClick"]),{getPrefixCls:s,tag:u}=p.useContext(A.QO),d=s("tag",n),[f,m,g]=wv(d),v=h()(d,`${d}-checkable`,{[`${d}-checkable-checked`]:a},null==u?void 0:u.className,o,m,g);return f(p.createElement("span",Object.assign({},c,{ref:t,style:Object.assign(Object.assign({},r),null==u?void 0:u.style),className:v,onClick:e=>{null==i||i(!a),null==l||l(e)}})))}),wx=(0,w.bf)(["Tag","preset"],e=>{let t;return t=wg(e),(0,aU.A)(t,(e,n)=>{let{textColor:r,lightBorderColor:o,lightColor:a,darkColor:i}=n;return{[`${t.componentCls}${t.componentCls}-${e}`]:{color:r,background:a,borderColor:o,"&-inverse":{color:t.colorTextLightSolid,background:i,borderColor:i},[`&${t.componentCls}-borderless`]:{borderColor:"transparent"}}}})},wh),w$=(e,t,n)=>{let r="string"!=typeof n?n:n.charAt(0).toUpperCase()+n.slice(1);return{[`${e.componentCls}${e.componentCls}-${t}`]:{color:e[`color${n}`],background:e[`color${r}Bg`],borderColor:e[`color${r}Border`],[`&${e.componentCls}-borderless`]:{borderColor:"transparent"}}}},wA=(0,w.bf)(["Tag","status"],e=>{let t=wg(e);return[w$(t,"success","Success"),w$(t,"processing","Info"),w$(t,"error","Error"),w$(t,"warning","Warning")]},wh);var ww=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let wC=p.forwardRef((e,t)=>{let{prefixCls:n,className:r,rootClassName:o,style:a,children:i,icon:l,color:c,onClose:s,bordered:u=!0,visible:d}=e,f=ww(e,["prefixCls","className","rootClassName","style","children","icon","color","onClose","bordered","visible"]),{getPrefixCls:m,direction:g,tag:v}=p.useContext(A.QO),[y,x]=p.useState(!0),$=(0,b.A)(f,["closeIcon","closable"]);p.useEffect(()=>{void 0!==d&&x(d)},[d]);let w=(0,aY.nP)(c),C=(0,aY.ZZ)(c),S=w||C,k=Object.assign(Object.assign({backgroundColor:c&&!S?c:void 0},null==v?void 0:v.style),a),E=m("tag",n),[O,M,N]=wv(E),I=h()(E,null==v?void 0:v.className,{[`${E}-${c}`]:S,[`${E}-has-color`]:c&&!S,[`${E}-hidden`]:!y,[`${E}-rtl`]:"rtl"===g,[`${E}-borderless`]:!u},r,o,M,N),j=e=>{e.stopPropagation(),null==s||s(e),e.defaultPrevented||x(!1)},[,z]=t5(t4(e),t4(v),{closable:!1,closeIconRender:e=>{let t=p.createElement("span",{className:`${E}-close-icon`,onClick:j},e);return(0,W.fx)(e,t,e=>({onClick:t=>{var n;null==(n=null==e?void 0:e.onClick)||n.call(e,t),j(t)},className:h()(null==e?void 0:e.className,`${E}-close-icon`)}))}}),R="function"==typeof f.onClick||i&&"a"===i.type,P=l||null,T=P?p.createElement(p.Fragment,null,P,i&&p.createElement("span",null,i)):i,D=p.createElement("span",Object.assign({},$,{ref:t,className:I,style:k}),T,z,w&&p.createElement(wx,{key:"preset",prefixCls:E}),C&&p.createElement(wA,{key:"status",prefixCls:E}));return O(R?p.createElement(ut.A,{component:"Tag"},D):D)});wC.CheckableTag=wy;let wS=wC;var wk=n(65924),wE=n(43596),wO=n(78690),wM=n(51892),wN=n(27484);let wI=(e,t)=>new ts.q(e).setAlpha(t).toRgbString(),wj=(e,t)=>new ts.q(e).lighten(t).toHexString(),wz=e=>{let t=(0,tc.generate)(e,{theme:"dark"});return{1:t[0],2:t[1],3:t[2],4:t[3],5:t[6],6:t[5],7:t[4],8:t[6],9:t[5],10:t[4]}},wR=(e,t)=>{let n=e||"#000",r=t||"#fff";return{colorBgBase:n,colorTextBase:r,colorText:wI(r,.85),colorTextSecondary:wI(r,.65),colorTextTertiary:wI(r,.45),colorTextQuaternary:wI(r,.25),colorFill:wI(r,.18),colorFillSecondary:wI(r,.12),colorFillTertiary:wI(r,.08),colorFillQuaternary:wI(r,.04),colorBgSolid:wI(r,.95),colorBgSolidHover:wI(r,1),colorBgSolidActive:wI(r,.9),colorBgElevated:wj(n,12),colorBgContainer:wj(n,8),colorBgLayout:wj(n,0),colorBgSpotlight:wj(n,26),colorBgBlur:wI(r,.04),colorBorder:wj(n,26),colorBorderSecondary:wj(n,19)}},wP={defaultSeed:ti.sb.token,useToken:function(){let[e,t,n]=(0,tb.Ay)();return{theme:e,token:t,hashId:n}},defaultAlgorithm:wk.A,darkAlgorithm:(e,t)=>{let n=Object.keys(tl.r).map(t=>{let n=(0,tc.generate)(e[t],{theme:"dark"});return Array(10).fill(1).reduce((e,r,o)=>(e[`${t}-${o+1}`]=n[o],e[`${t}${o+1}`]=n[o],e),{})}).reduce((e,t)=>e=Object.assign(Object.assign({},e),t),{});return Object.assign(Object.assign(Object.assign({},null!=t?t:(0,wk.A)(e)),n),(0,wN.A)(e,{generateColorPalettes:wz,generateNeutralColorPalettes:wR}))},compactAlgorithm:(e,t)=>{let n=null!=t?t:(0,wk.A)(e),r=n.fontSizeSM,o=n.controlHeight-4;return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},n),function(e){let{sizeUnit:t,sizeStep:n}=e,r=n-2;return{sizeXXL:t*(r+10),sizeXL:t*(r+6),sizeLG:t*(r+2),sizeMD:t*(r+2),sizeMS:t*(r+1),size:t*r,sizeSM:t*r,sizeXS:t*(r-1),sizeXXS:t*(r-1)}}(null!=t?t:e)),(0,wM.A)(r)),{controlHeight:o}),(0,wO.A)(Object.assign(Object.assign({},n),{controlHeight:o})))},getDesignToken:e=>{let t=(null==e?void 0:e.algorithm)?(0,q.an)(e.algorithm):(0,q.an)(wk.A),n=Object.assign(Object.assign({},tl.A),null==e?void 0:e.token);return(0,q.lO)(n,{override:null==e?void 0:e.token},t,wE.A)},defaultConfig:ti.sb,_internalContext:ti.vG};var wT=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let{TimePicker:wD,RangePicker:wL}=gV,wB=p.forwardRef((e,t)=>p.createElement(wL,Object.assign({},e,{picker:"time",mode:void 0,ref:t}))),wF=p.forwardRef((e,t)=>{var{addon:n,renderExtraFooter:r,variant:o,bordered:a}=e,i=wT(e,["addon","renderExtraFooter","variant","bordered"]);let[l]=(0,oL.A)("timePicker",o,a),c=p.useMemo(()=>r||n||void 0,[n,r]);return p.createElement(wD,Object.assign({},i,{mode:void 0,ref:t,renderExtraFooter:c,variant:l}))}),wH=rd(wF,"picker");wF._InternalPanelDoNotUseOrYouWillBeFired=wH,wF.RangePicker=wB,wF._InternalPanelDoNotUseOrYouWillBeFired=wH;let w_=wF,wW=(0,w.OF)("Timeline",e=>[(e=>{let{componentCls:t,calc:n}=e;return{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{margin:0,padding:0,listStyle:"none",[`${t}-item`]:{position:"relative",margin:0,paddingBottom:e.itemPaddingBottom,fontSize:e.fontSize,listStyle:"none","&-tail":{position:"absolute",insetBlockStart:e.itemHeadSize,insetInlineStart:n(n(e.itemHeadSize).sub(e.tailWidth)).div(2).equal(),height:`calc(100% - ${(0,q.zA)(e.itemHeadSize)})`,borderInlineStart:`${(0,q.zA)(e.tailWidth)} ${e.lineType} ${e.tailColor}`},"&-pending":{[`${t}-item-head`]:{fontSize:e.fontSizeSM,backgroundColor:"transparent"},[`${t}-item-tail`]:{display:"none"}},"&-head":{position:"absolute",width:e.itemHeadSize,height:e.itemHeadSize,backgroundColor:e.dotBg,border:`${(0,q.zA)(e.dotBorderWidth)} ${e.lineType} transparent`,borderRadius:"50%","&-blue":{color:e.colorPrimary,borderColor:e.colorPrimary},"&-red":{color:e.colorError,borderColor:e.colorError},"&-green":{color:e.colorSuccess,borderColor:e.colorSuccess},"&-gray":{color:e.colorTextDisabled,borderColor:e.colorTextDisabled}},"&-head-custom":{position:"absolute",insetBlockStart:n(e.itemHeadSize).div(2).equal(),insetInlineStart:n(e.itemHeadSize).div(2).equal(),width:"auto",height:"auto",marginBlockStart:0,paddingBlock:e.customHeadPaddingVertical,lineHeight:1,textAlign:"center",border:0,borderRadius:0,transform:"translate(-50%, -50%)"},"&-content":{position:"relative",insetBlockStart:n(n(e.fontSize).mul(e.lineHeight).sub(e.fontSize)).mul(-1).add(e.lineWidth).equal(),marginInlineStart:n(e.margin).add(e.itemHeadSize).equal(),marginInlineEnd:0,marginBlockStart:0,marginBlockEnd:0,wordBreak:"break-word"},"&-last":{[`> ${t}-item-tail`]:{display:"none"},[`> ${t}-item-content`]:{minHeight:n(e.controlHeightLG).mul(1.2).equal()}}},[`&${t}-alternate, - &${t}-right, - &${t}-label`]:{[`${t}-item`]:{"&-tail, &-head, &-head-custom":{insetInlineStart:"50%"},"&-head":{marginInlineStart:n(e.marginXXS).mul(-1).equal(),"&-custom":{marginInlineStart:n(e.tailWidth).div(2).equal()}},"&-left":{[`${t}-item-content`]:{insetInlineStart:`calc(50% - ${(0,q.zA)(e.marginXXS)})`,width:`calc(50% - ${(0,q.zA)(e.marginSM)})`,textAlign:"start"}},"&-right":{[`${t}-item-content`]:{width:`calc(50% - ${(0,q.zA)(e.marginSM)})`,margin:0,textAlign:"end"}}}},[`&${t}-right`]:{[`${t}-item-right`]:{[`${t}-item-tail, - ${t}-item-head, - ${t}-item-head-custom`]:{insetInlineStart:`calc(100% - ${(0,q.zA)(n(n(e.itemHeadSize).add(e.tailWidth)).div(2).equal())})`},[`${t}-item-content`]:{width:`calc(100% - ${(0,q.zA)(n(e.itemHeadSize).add(e.marginXS).equal())})`}}},[`&${t}-pending - ${t}-item-last - ${t}-item-tail`]:{display:"block",height:`calc(100% - ${(0,q.zA)(e.margin)})`,borderInlineStart:`${(0,q.zA)(e.tailWidth)} dotted ${e.tailColor}`},[`&${t}-reverse - ${t}-item-last - ${t}-item-tail`]:{display:"none"},[`&${t}-reverse ${t}-item-pending`]:{[`${t}-item-tail`]:{insetBlockStart:e.margin,display:"block",height:`calc(100% - ${(0,q.zA)(e.margin)})`,borderInlineStart:`${(0,q.zA)(e.tailWidth)} dotted ${e.tailColor}`},[`${t}-item-content`]:{minHeight:n(e.controlHeightLG).mul(1.2).equal()}},[`&${t}-label`]:{[`${t}-item-label`]:{position:"absolute",insetBlockStart:n(n(e.fontSize).mul(e.lineHeight).sub(e.fontSize)).mul(-1).add(e.tailWidth).equal(),width:`calc(50% - ${(0,q.zA)(e.marginSM)})`,textAlign:"end"},[`${t}-item-right`]:{[`${t}-item-label`]:{insetInlineStart:`calc(50% + ${(0,q.zA)(e.marginSM)})`,width:`calc(50% - ${(0,q.zA)(e.marginSM)})`,textAlign:"start"}}},"&-rtl":{direction:"rtl",[`${t}-item-head-custom`]:{transform:"translate(50%, -50%)"}}})}})((0,ey.oX)(e,{itemHeadSize:10,customHeadPaddingVertical:e.paddingXXS,paddingInlineEnd:2}))],e=>({tailColor:e.colorSplit,tailWidth:e.lineWidthBold,dotBorderWidth:e.wireframe?e.lineWidthBold:3*e.lineWidth,dotBg:e.colorBgContainer,itemPaddingBottom:1.25*e.padding}));var wq=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let wV=e=>{var{prefixCls:t,className:n,color:r="blue",dot:o,pending:a=!1,position:i,label:l,children:c}=e,s=wq(e,["prefixCls","className","color","dot","pending","position","label","children"]);let{getPrefixCls:u}=p.useContext(A.QO),d=u("timeline",t),f=h()(`${d}-item`,{[`${d}-item-pending`]:a},n),m=/blue|red|green|gray/.test(r||"")?void 0:r,g=h()(`${d}-item-head`,{[`${d}-item-head-custom`]:!!o,[`${d}-item-head-${r}`]:!m});return p.createElement("li",Object.assign({},s,{className:f}),l&&p.createElement("div",{className:`${d}-item-label`},l),p.createElement("div",{className:`${d}-item-tail`}),p.createElement("div",{className:g,style:{borderColor:m,color:m}},o),p.createElement("div",{className:`${d}-item-content`},c))};var wK=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let wX=e=>{var{prefixCls:t,className:n,pending:r=!1,children:o,items:a,rootClassName:i,reverse:l=!1,direction:c,hashId:s,pendingDot:u,mode:d=""}=e,f=wK(e,["prefixCls","className","pending","children","items","rootClassName","reverse","direction","hashId","pendingDot","mode"]);let m=(0,y.A)(a||[]),g="boolean"==typeof r?null:r;r&&m.push({pending:!!r,dot:u||p.createElement(eX.A,null),children:g}),l&&m.reverse();let v=m.length,b=`${t}-item-last`,x=m.filter(e=>!!e).map((e,n)=>{var o,a,i;let c=n===v-2?b:"",s=n===v-1?b:"",{className:u}=e,f=wK(e,["className"]);return p.createElement(wV,Object.assign({},f,{className:h()([u,!l&&r?c:s,(a=null!=(o=null==e?void 0:e.position)?o:"",i=n,"alternate"===d?"right"===a?`${t}-item-right`:"left"===a||i%2==0?`${t}-item-left`:`${t}-item-right`:"left"===d?`${t}-item-left`:"right"===d||"right"===a?`${t}-item-right`:"")]),key:(null==e?void 0:e.key)||n}))}),$=m.some(e=>!!(null==e?void 0:e.label)),A=h()(t,{[`${t}-pending`]:!!r,[`${t}-reverse`]:!!l,[`${t}-${d}`]:!!d&&!$,[`${t}-label`]:$,[`${t}-rtl`]:"rtl"===c},n,i,s);return p.createElement("ul",Object.assign({},f,{className:A}),x)};var wY=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let wU=e=>{let{getPrefixCls:t,direction:n,timeline:r}=p.useContext(A.QO),{prefixCls:o,children:a,items:i,className:l,style:c}=e,s=wY(e,["prefixCls","children","items","className","style"]),u=t("timeline",o),d=(0,eh.A)(u),[f,m,g]=wW(u,d),v=i&&Array.isArray(i)?i:(0,rc.A)(a).map(e=>{var t,n;return Object.assign({children:null!=(n=null==(t=null==e?void 0:e.props)?void 0:t.children)?n:""},e.props)});return f(p.createElement(wX,Object.assign({},s,{className:h()(null==r?void 0:r.className,l,g,d),style:Object.assign(Object.assign({},null==r?void 0:r.style),c),prefixCls:u,direction:n,items:v,hashId:m})))};wU.Item=wV;let wG=wU;function wQ(e){return null!==e&&"object"===(0,ez.A)(e)}function wZ(e,t,n){if(!1===e||!1===t&&(!wQ(e)||!e.closeIcon))return null;var r,o="boolean"!=typeof t?t:void 0;return wQ(e)?(0,eM.A)((0,eM.A)({},e),{},{closeIcon:null!=(r=e.closeIcon)?r:o}):n||e||t?{closeIcon:o}:"empty"}var wJ={fill:"transparent",pointerEvents:"auto"};let w0=function(e){var t=e.prefixCls,n=e.rootClassName,r=e.pos,o=e.showMask,a=e.style,i=e.fill,l=e.open,c=e.animated,s=e.zIndex,u=e.disabledInteraction,d=(0,tq.A)(),f="".concat(t,"-mask-").concat(d),p="object"===(0,ez.A)(c)?null==c?void 0:c.placeholder:c,g="u">typeof navigator&&/^((?!chrome|android).)*safari/i.test(navigator.userAgent);return m().createElement(tH.A,{open:l,autoLock:!0},m().createElement("div",{className:h()("".concat(t,"-mask"),n),style:(0,eM.A)({position:"fixed",left:0,right:0,top:0,bottom:0,zIndex:s,pointerEvents:r&&!u?"none":"auto"},void 0===a?{}:a)},o?m().createElement("svg",{style:{width:"100%",height:"100%"}},m().createElement("defs",null,m().createElement("mask",{id:f},m().createElement("rect",(0,R.A)({x:"0",y:"0"},g?{width:"100%",height:"100%"}:{width:"100vw",height:"100vh"},{fill:"white"})),r&&m().createElement("rect",{x:r.left,y:r.top,rx:r.radius,width:r.width,height:r.height,fill:"black",className:p?"".concat(t,"-placeholder-animated"):""}))),m().createElement("rect",{x:"0",y:"0",width:"100%",height:"100%",fill:void 0===i?"rgba(0,0,0,0.5)":i,mask:"url(#".concat(f,")")}),r&&m().createElement(m().Fragment,null,m().createElement("rect",(0,R.A)({},wJ,{x:"0",y:"0",width:"100%",height:r.top})),m().createElement("rect",(0,R.A)({},wJ,{x:"0",y:"0",width:r.left,height:"100%"})),m().createElement("rect",(0,R.A)({},wJ,{x:"0",y:r.top+r.height,width:"100%",height:"calc(100vh - ".concat(r.top+r.height,"px)")})),m().createElement("rect",(0,R.A)({},wJ,{x:r.left+r.width,y:"0",width:"calc(100vw - ".concat(r.left+r.width,"px)"),height:"100%"})))):null))};var w1=[0,0],w2={left:{points:["cr","cl"],offset:[-8,0]},right:{points:["cl","cr"],offset:[8,0]},top:{points:["bc","tc"],offset:[0,-8]},bottom:{points:["tc","bc"],offset:[0,8]},topLeft:{points:["bl","tl"],offset:[0,-8]},leftTop:{points:["tr","tl"],offset:[-8,0]},topRight:{points:["br","tr"],offset:[0,-8]},rightTop:{points:["tl","tr"],offset:[8,0]},bottomRight:{points:["tr","br"],offset:[0,8]},rightBottom:{points:["bl","br"],offset:[8,0]},bottomLeft:{points:["tl","bl"],offset:[0,8]},leftBottom:{points:["br","bl"],offset:[-8,0]}};function w4(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t={};return Object.keys(w2).forEach(function(n){t[n]=(0,eM.A)((0,eM.A)({},w2[n]),{},{autoArrow:e,targetOffset:w1})}),t}function w3(e){var t,n=e.prefixCls,r=e.current,o=e.total,a=e.title,i=e.description,l=e.onClose,c=e.onPrev,s=e.onNext,u=e.onFinish,d=e.className,f=e.closable,m=(0,H.A)(f||{},!0),g=null!=(t=null==f?void 0:f.closeIcon)?t:p.createElement("span",{className:"".concat(n,"-close-x")},"\xd7"),v=!!f;return p.createElement("div",{className:h()("".concat(n,"-content"),d)},p.createElement("div",{className:"".concat(n,"-inner")},v&&p.createElement("button",(0,R.A)({type:"button",onClick:l,"aria-label":"Close"},m,{className:"".concat(n,"-close")}),g),p.createElement("div",{className:"".concat(n,"-header")},p.createElement("div",{className:"".concat(n,"-title")},a)),p.createElement("div",{className:"".concat(n,"-description")},i),p.createElement("div",{className:"".concat(n,"-footer")},p.createElement("div",{className:"".concat(n,"-sliders")},o>1?(0,y.A)(Array.from({length:o}).keys()).map(function(e,t){return p.createElement("span",{key:e,className:t===r?"active":""})}):null),p.createElement("div",{className:"".concat(n,"-buttons")},0!==r?p.createElement("button",{className:"".concat(n,"-prev-btn"),onClick:c},"Prev"):null,r===o-1?p.createElement("button",{className:"".concat(n,"-finish-btn"),onClick:u},"Finish"):p.createElement("button",{className:"".concat(n,"-next-btn"),onClick:s},"Next")))))}w4();let w6=function(e){var t=e.current,n=e.renderPanel;return p.createElement(p.Fragment,null,"function"==typeof n?n(e,t):p.createElement(w3,e))};var w8=["prefixCls","steps","defaultCurrent","current","onChange","onClose","onFinish","open","mask","arrow","rootClassName","placement","renderPanel","gap","animated","scrollIntoViewOptions","zIndex","closeIcon","closable","builtinPlacements","disabledInteraction"],w5={left:"50%",top:"50%",width:1,height:1},w7={block:"center",inline:"center"};let w9=function(e){var t,n,r,o,a,i,l,c,s,u,d,f,m,g=e.prefixCls,v=void 0===g?"rc-tour":g,b=e.steps,y=void 0===b?[]:b,x=e.defaultCurrent,$=e.current,A=e.onChange,w=e.onClose,C=e.onFinish,S=e.open,k=e.mask,E=e.arrow,O=e.rootClassName,M=e.placement,N=e.renderPanel,I=e.gap,j=e.animated,z=e.scrollIntoViewOptions,P=e.zIndex,T=void 0===P?1001:P,D=e.closeIcon,L=e.closable,B=e.builtinPlacements,F=e.disabledInteraction,H=(0,eO.A)(e,w8),_=p.useRef(),W=(0,rs.A)(0,{value:$,defaultValue:x}),q=(0,eE.A)(W,2),V=q[0],K=q[1],X=(0,rs.A)(void 0,{value:S,postState:function(e){return!(V<0)&&!(V>=y.length)&&(null==e||e)}}),Y=(0,eE.A)(X,2),U=Y[0],G=Y[1],Q=p.useState(U),Z=(0,eE.A)(Q,2),J=Z[0],ee=Z[1],et=p.useRef(U);(0,rf.A)(function(){U&&(et.current||K(0),ee(!0)),et.current=U},[U]);var en=y[V]||{},er=en.target,eo=en.placement,ei=en.style,el=en.arrow,ec=en.className,es=en.mask,eu=en.scrollIntoViewOptions,ed=void 0===eu?w7:eu,ef=en.closeIcon,ep=(t=en.closable,p.useMemo(function(){var e=wZ(t,ef,!1),n=wZ(L,D,!0);return"empty"!==e?e:n},[L,D,t,ef])),em=U&&(null!=es?es:void 0===k||k),eg=(n=null!=ed?ed:void 0===z?w7:z,r=(0,p.useState)(void 0),a=(o=(0,eE.A)(r,2))[0],i=o[1],(0,rf.A)(function(){i(("function"==typeof er?er():er)||null)}),l=(0,p.useState)(null),s=(c=(0,eE.A)(l,2))[0],u=c[1],d=(0,ea.A)(function(){if(a){e=window.innerWidth||document.documentElement.clientWidth,t=window.innerHeight||document.documentElement.clientHeight,o=(r=a.getBoundingClientRect()).top,i=r.right,l=r.bottom,c=r.left,o>=0&&c>=0&&i<=e&&l<=t||!S||a.scrollIntoView(n);var e,t,r,o,i,l,c,s=a.getBoundingClientRect(),d={left:s.left,top:s.top,width:s.width,height:s.height,radius:0};u(function(e){return JSON.stringify(e)!==JSON.stringify(d)?d:e})}else u(null)}),f=function(e){var t;return null!=(t=Array.isArray(null==I?void 0:I.offset)?null==I?void 0:I.offset[e]:null==I?void 0:I.offset)?t:6},(0,rf.A)(function(){return d(),window.addEventListener("resize",d),function(){window.removeEventListener("resize",d)}},[a,S,d]),[(0,p.useMemo)(function(){if(!s)return s;var e,t=f(0),n=f(1),r="number"!=typeof(e=null==I?void 0:I.radius)||Number.isNaN(e)?2:null==I?void 0:I.radius;return{left:s.left-t,top:s.top-n,width:s.width+2*t,height:s.height+2*n,radius:r}},[s,I]),a]),eh=(0,eE.A)(eg,2),ev=eh[0],eb=eh[1],ey=null!=(m=null!=eo?eo:M)?m:null===eb?"center":"bottom",ex=!!eb&&(void 0===el?void 0===E||E:el),e$="object"===(0,ez.A)(ex)&&ex.pointAtCenter;(0,rf.A)(function(){var e;null==(e=_.current)||e.forceAlign()},[e$,V]);var eA=function(e){K(e),null==A||A(e)},ew=(0,p.useMemo)(function(){return B?"function"==typeof B?B({arrowPointAtCenter:e$}):B:w4(e$)},[B,e$]);if(void 0===eb||!J)return null;var eC=function(){G(!1),null==w||w(V)},eS="boolean"==typeof em?void 0:em;return p.createElement(p.Fragment,null,p.createElement(w0,{zIndex:T,prefixCls:v,pos:ev,showMask:"boolean"==typeof em?em:!!em,style:null==eS?void 0:eS.style,fill:null==eS?void 0:eS.color,open:U,animated:j,rootClassName:O,disabledInteraction:F}),p.createElement(rV.A,(0,R.A)({},H,{builtinPlacements:ew,ref:_,popupStyle:ei,popupPlacement:ey,popupVisible:U,popupClassName:h()(O,ec),prefixCls:v,popup:function(){return p.createElement(w6,(0,R.A)({arrow:ex,key:"content",prefixCls:v,total:y.length,renderPanel:N,onPrev:function(){eA(V-1)},onNext:function(){eA(V+1)},onClose:eC,current:V,onFinish:function(){eC(),null==C||C()}},y[V],{closable:ep}))},forceRender:!1,destroyPopupOnHide:!0,zIndex:T,getTriggerDOMNode:function(e){return e||eb||document.body},arrow:!!ex}),p.createElement(tH.A,{open:U,autoLock:!0},p.createElement("div",{className:h()(O,"".concat(v,"-target-placeholder")),style:(0,eM.A)((0,eM.A)({},ev||w5),{},{position:"fixed",pointerEvents:"none"})}))))},Ce=e=>{var t,n;let r,{stepProps:o,current:a,type:i,indicatorsRender:l}=e,{prefixCls:c,total:s=1,title:u,onClose:d,onPrev:f,onNext:p,onFinish:g,cover:v,description:b,nextButtonProps:x,prevButtonProps:$,type:A,closable:w}=o,C=null!=A?A:i,S=m().createElement("button",{type:"button",onClick:d,className:`${c}-close`},(null==w?void 0:w.closeIcon)||m().createElement(z.A,{className:`${c}-close-icon`})),k=a===s-1,E=null!=u?m().createElement("div",{className:`${c}-header`},m().createElement("div",{className:`${c}-title`},u)):null,O=null!=b?m().createElement("div",{className:`${c}-description`},b):null,M=null!=v?m().createElement("div",{className:`${c}-cover`},v):null;r=l?l(a,s):(0,y.A)(Array.from({length:s}).keys()).map((e,t)=>m().createElement("span",{key:e,className:h()(t===a&&`${c}-indicator-active`,`${c}-indicator`)}));let[N]=(0,tI.A)("Tour",te.A.Tour);return m().createElement("div",{className:`${c}-content`},m().createElement("div",{className:`${c}-inner`},w&&S,M,E,O,m().createElement("div",{className:`${c}-footer`},s>1&&m().createElement("div",{className:`${c}-indicators`},r),m().createElement("div",{className:`${c}-buttons`},0!==a?m().createElement(tz.Ay,Object.assign({},{type:"default",ghost:"primary"===C},$,{onClick:()=>{var e;null==f||f(),null==(e=null==$?void 0:$.onClick)||e.call($)},size:"small",className:h()(`${c}-prev-btn`,null==$?void 0:$.className)}),null!=(t=null==$?void 0:$.children)?t:null==N?void 0:N.Previous):null,m().createElement(tz.Ay,Object.assign({type:"primary"===C?"default":"primary"},x,{onClick:()=>{var e;k?null==g||g():null==p||p(),null==(e=null==x?void 0:x.onClick)||e.call(x)},size:"small",className:h()(`${c}-next-btn`,null==x?void 0:x.className)}),null!=(n=null==x?void 0:x.children)?n:k?null==N?void 0:N.Finish:null==N?void 0:N.Next)))))},Ct=(0,w.OF)("Tour",e=>{let{borderRadiusLG:t}=e;return[(e=>{let{componentCls:t,padding:n,paddingXS:r,borderRadius:o,borderRadiusXS:a,colorPrimary:i,colorFill:l,indicatorHeight:c,indicatorWidth:s,boxShadowTertiary:u,zIndexPopup:d,colorBgElevated:f,fontWeightStrong:p,marginXS:m,colorTextLightSolid:g,tourBorderRadius:h,colorWhite:v,primaryNextBtnHoverBg:b,closeBtnSize:y,motionDurationSlow:x,antCls:$,primaryPrevBtnBg:A}=e;return[{[t]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"absolute",zIndex:d,maxWidth:"fit-content",visibility:"visible",width:520,"--antd-arrow-background-color":f,"&-pure":{maxWidth:"100%",position:"relative"},[`&${t}-hidden`]:{display:"none"},[`${t}-content`]:{position:"relative"},[`${t}-inner`]:{textAlign:"start",textDecoration:"none",borderRadius:h,boxShadow:u,position:"relative",backgroundColor:f,border:"none",backgroundClip:"padding-box",[`${t}-close`]:Object.assign({position:"absolute",top:n,insetInlineEnd:n,color:e.colorIcon,background:"none",border:"none",width:y,height:y,borderRadius:e.borderRadiusSM,transition:`background-color ${e.motionDurationMid}, color ${e.motionDurationMid}`,display:"flex",alignItems:"center",justifyContent:"center",cursor:"pointer","&:hover":{color:e.colorIconHover,backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive}},(0,V.K8)(e)),[`${t}-cover`]:{textAlign:"center",padding:`${(0,q.zA)(e.calc(n).add(y).add(r).equal())} ${(0,q.zA)(n)} 0`,img:{width:"100%"}},[`${t}-header`]:{padding:`${(0,q.zA)(n)} ${(0,q.zA)(n)} ${(0,q.zA)(r)}`,width:`calc(100% - ${(0,q.zA)(y)})`,wordBreak:"break-word",[`${t}-title`]:{fontWeight:p}},[`${t}-description`]:{padding:`0 ${(0,q.zA)(n)}`,wordWrap:"break-word"},[`${t}-footer`]:{padding:`${(0,q.zA)(r)} ${(0,q.zA)(n)} ${(0,q.zA)(n)}`,textAlign:"end",borderRadius:`0 0 ${(0,q.zA)(a)} ${(0,q.zA)(a)}`,display:"flex",[`${t}-indicators`]:{display:"inline-block",[`${t}-indicator`]:{width:s,height:c,display:"inline-block",borderRadius:"50%",background:l,"&:not(:last-child)":{marginInlineEnd:c},"&-active":{background:i}}},[`${t}-buttons`]:{marginInlineStart:"auto",[`${$}-btn`]:{marginInlineStart:m}}}},[`${t}-primary, &${t}-primary`]:{"--antd-arrow-background-color":i,[`${t}-inner`]:{color:g,textAlign:"start",textDecoration:"none",backgroundColor:i,borderRadius:o,boxShadow:u,[`${t}-close`]:{color:g},[`${t}-indicators`]:{[`${t}-indicator`]:{background:A,"&-active":{background:g}}},[`${t}-prev-btn`]:{color:g,borderColor:A,backgroundColor:i,"&:hover":{backgroundColor:A,borderColor:"transparent"}},[`${t}-next-btn`]:{color:i,borderColor:"transparent",background:v,"&:hover":{background:b}}}}}),[`${t}-mask`]:{[`${t}-placeholder-animated`]:{transition:`all ${x}`}},"&-placement-left,&-placement-leftTop,&-placement-leftBottom,&-placement-right,&-placement-rightTop,&-placement-rightBottom":{[`${t}-inner`]:{borderRadius:e.min(h,aI.Zs)}}},(0,aI.Ay)(e,"var(--antd-arrow-background-color)")]})((0,ey.oX)(e,{indicatorWidth:6,indicatorHeight:6,tourBorderRadius:t}))]},e=>Object.assign(Object.assign({zIndexPopup:e.zIndexPopupBase+70,closeBtnSize:e.fontSize*e.lineHeight,primaryPrevBtnBg:new ts.q(e.colorTextLightSolid).setAlpha(.15).toRgbString(),primaryNextBtnHoverBg:new ts.q(e.colorBgTextHover).onBackground(e.colorWhite).toRgbString()},(0,aI.Ke)({contentRadius:e.borderRadiusLG,limitVerticalRadius:!0})),(0,aj.n)(e)));var Cn=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let Cr=ru(e=>{let{prefixCls:t,current:n=0,total:r=6,className:o,style:a,type:i,closable:l,closeIcon:c}=e,s=Cn(e,["prefixCls","current","total","className","style","type","closable","closeIcon"]),{getPrefixCls:u}=p.useContext(A.QO),d=u("tour",t),[f,m,g]=Ct(d),[v,b]=t5({closable:l,closeIcon:c},null,{closable:!0,closeIconRender:e=>p.isValidElement(e)?(0,W.Ob)(e,{className:h()(e.props.className,`${d}-close-icon`)}):e});return f(p.createElement(aD,{prefixCls:d,hashId:m,className:h()(o,`${d}-pure`,i&&`${d}-${i}`,g),style:a},p.createElement(Ce,{stepProps:Object.assign(Object.assign({},s),{prefixCls:d,total:r,closable:v?{closeIcon:b}:void 0}),current:n,type:i})))});var Co=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let Ca=e=>{let{prefixCls:t,type:n,rootClassName:r,indicatorsRender:o,steps:a,closeIcon:i}=e,l=Co(e,["prefixCls","type","rootClassName","indicatorsRender","steps","closeIcon"]),{getPrefixCls:c,direction:s,tour:u}=(0,p.useContext)(A.QO),d=c("tour",t),[f,g,v]=Ct(d),[,b]=(0,tb.Ay)(),y=m().useMemo(()=>null==a?void 0:a.map(e=>{var t;return Object.assign(Object.assign({},e),{className:h()(e.className,{[`${d}-primary`]:(null!=(t=e.type)?t:n)==="primary"})})}),[a,n]),x=h()({[`${d}-rtl`]:"rtl"===s},g,v,r),[$,w]=(0,eY.YK)("Tour",l.zIndex);return f(m().createElement(t7.A.Provider,{value:w},m().createElement(w9,Object.assign({},l,{closeIcon:null!=i?i:null==u?void 0:u.closeIcon,zIndex:$,rootClassName:x,prefixCls:d,animated:!0,renderPanel:(e,t)=>m().createElement(Ce,{type:n,stepProps:e,current:t,indicatorsRender:o}),builtinPlacements:e=>{var t;return(0,im.A)({arrowPointAtCenter:null==(t=null==e?void 0:e.arrowPointAtCenter)||t,autoAdjustOverflow:!0,offset:b.marginXXS,arrowWidth:b.sizePopupArrow,borderRadius:b.borderRadius})},steps:y}))))};Ca._InternalPanelDoNotUseOrYouWillBeFired=Cr;let Ci=Ca,Cl=e=>{let t=new Map;return e.forEach((e,n)=>{t.set(e,n)}),t},Cc=[];function Cs(e,t){let n=e.filter(e=>t.has(e));return e.length===n.length?e:n}function Cu(e){return Array.from(e).join(";")}var Cd=n(46029);let Cf=p.memo(e=>{let t,{renderedText:n,renderedEl:r,item:o,checked:a,disabled:i,prefixCls:l,onClick:c,onRemove:s,showRemove:u}=e,d=h()(`${l}-content-item`,{[`${l}-content-item-disabled`]:i||o.disabled,[`${l}-content-item-checked`]:a&&!o.disabled});("string"==typeof n||"number"==typeof n)&&(t=String(n));let[f]=(0,tI.A)("Transfer",te.A.Transfer),m={className:d,title:t},g=p.createElement("span",{className:`${l}-content-item-text`},r);return u?p.createElement("li",Object.assign({},m),g,p.createElement("button",{type:"button",disabled:i||o.disabled,className:`${l}-content-item-remove`,"aria-label":null==f?void 0:f.remove,onClick:()=>null==s?void 0:s(o)},p.createElement(Cd.A,null))):(m.onClick=i||o.disabled?void 0:e=>c(o,e),p.createElement("li",Object.assign({},m),p.createElement(po,{className:`${l}-checkbox`,checked:a,disabled:i||o.disabled}),g))}),Cp=["handleFilter","handleClear","checkedKeys"],Cm=p.forwardRef((e,t)=>{let{prefixCls:n,filteredRenderItems:r,selectedKeys:o,disabled:a,showRemove:i,pagination:l,onScroll:c,onItemSelect:s,onItemRemove:u}=e,[d,f]=p.useState(1),m=p.useMemo(()=>{var e;return l?(e="object"==typeof l?l:{},Object.assign(Object.assign({},{simple:!0,showSizeChanger:!1,showLessItems:!1}),e)):null},[l]),[g,v]=(0,rs.A)(10,{value:null==m?void 0:m.pageSize});p.useEffect(()=>{m&&f(Math.min(d,Math.ceil(r.length/g)))},[r,m,g]);let b=(e,t)=>{s(e.key,!o.includes(e.key),t)},y=e=>{null==u||u([e.key])},x=p.useMemo(()=>m?r.slice((d-1)*g,d*g):r,[d,r,m,g]);p.useImperativeHandle(t,()=>({items:x}));let $=m?p.createElement(bC,{size:"small",disabled:a,simple:m.simple,pageSize:g,showLessItems:m.showLessItems,showSizeChanger:m.showSizeChanger,className:`${n}-pagination`,total:r.length,current:d,onChange:e=>{f(e)},onShowSizeChange:(e,t)=>{f(e),v(t)}}):null,A=h()(`${n}-content`,{[`${n}-content-show-remove`]:i});return p.createElement(p.Fragment,null,p.createElement("ul",{className:A,onScroll:c},(x||[]).map(e=>{let{renderedEl:t,renderedText:r,item:l}=e;return p.createElement(Cf,{key:l.key,item:l,renderedText:r,renderedEl:t,prefixCls:n,showRemove:i,onClick:b,onRemove:y,checked:o.includes(l.key),disabled:a||l.disabled})})),$)}),Cg=e=>{let{placeholder:t="",value:n,prefixCls:r,disabled:o,onChange:a,handleClear:i}=e,l=p.useCallback(e=>{null==a||a(e),""===e.target.value&&(null==i||i())},[a]);return p.createElement(mO,{placeholder:t,className:r,value:n,onChange:l,disabled:o,allowClear:!0,prefix:p.createElement(ai,null)})},Ch=()=>null;function Cv(e){return e.filter(e=>!e.disabled).map(e=>e.key)}let Cb=e=>{var t,n;let r,{prefixCls:o,dataSource:a=[],titleText:i="",checkedKeys:l,disabled:c,showSearch:s=!1,style:u,searchPlaceholder:d,notFoundContent:f,selectAll:g,deselectAll:v,selectCurrent:y,selectInvert:x,removeAll:$,removeCurrent:A,showSelectAll:w=!0,showRemove:C,pagination:S,direction:k,itemsUnit:E,itemUnit:O,selectAllLabel:M,selectionsIcon:N,footer:I,renderList:j,onItemSelectAll:z,onItemRemove:R,handleFilter:P,handleClear:T,filterOption:D,render:L=Ch}=e,[B,F]=(0,p.useState)(""),H=(0,p.useRef)({}),_=e=>{F(e.target.value),P(e)},W=()=>{F(""),T()},q=(0,p.useMemo)(()=>Array.isArray(f)?f[+("left"!==k)]:f,[f,k]),[V,K]=(0,p.useMemo)(()=>{let e=[],t=[];return a.forEach(n=>{var r;let o,a,i={item:n,renderedEl:(a=!!((o=L(n))&&!m().isValidElement(o)&&"[object Object]"===Object.prototype.toString.call(o)))?o.label:o,renderedText:a?o.value:o};(!B||(r=i.renderedText,D?D(B,n,k):r.includes(B)))&&(e.push(n),t.push(i))}),[e,t]},[a,B]),X=(0,p.useMemo)(()=>V.filter(e=>l.includes(e.key)&&!e.disabled),[l,V]),Y=(0,p.useMemo)(()=>{if(0===X.length)return"none";let e=Cl(l);return V.every(t=>e.has(t.key)||!!t.disabled)?"all":"part"},[l,X]),U=(0,p.useMemo)(()=>{var t;let n,r,a,i=s?m().createElement("div",{className:`${o}-body-search-wrapper`},m().createElement(Cg,{prefixCls:`${o}-search`,onChange:_,handleClear:W,placeholder:d,value:B,disabled:c})):null,{customize:u,bodyContent:f}=(t=Object.assign(Object.assign({},(0,b.A)(e,Cp)),{filteredItems:V,filteredRenderItems:K,selectedKeys:l}),(a=!!(r=j?j(Object.assign(Object.assign({},t),{onItemSelect:(e,n)=>t.onItemSelect(e,n)})):null))||(r=m().createElement(Cm,Object.assign({ref:H},t))),{customize:a,bodyContent:r});return n=u?m().createElement("div",{className:`${o}-body-customize-wrapper`},f):V.length?f:m().createElement("div",{className:`${o}-body-not-found`},q),m().createElement("div",{className:h()(s?`${o}-body ${o}-body-with-search`:`${o}-body`)},i,n)},[s,o,d,B,c,l,V,K,q]),G=m().createElement(po,{disabled:0===a.filter(e=>!e.disabled).length||c,checked:"all"===Y,indeterminate:"part"===Y,className:`${o}-checkbox`,onChange:()=>{null==z||z(V.filter(e=>!e.disabled).map(e=>{let{key:t}=e;return t}),"all"!==Y)}}),Q=I&&(I.length<2?I(e):I(e,{direction:k})),Z=h()(o,{[`${o}-with-pagination`]:!!S,[`${o}-with-footer`]:!!Q}),J=Q?m().createElement("div",{className:`${o}-footer`},Q):null;r=C?[S?{key:"removeCurrent",label:A,onClick(){var e;let t=Cv(((null==(e=H.current)?void 0:e.items)||[]).map(e=>e.item));null==R||R(t)}}:null,{key:"removeAll",label:$,onClick(){null==R||R(Cv(V))}}].filter(Boolean):[{key:"selectAll",label:"all"===Y?v:g,onClick(){let e=Cv(V);null==z||z(e,e.length!==l.length)}},S?{key:"selectCurrent",label:y,onClick(){var e;let t=(null==(e=H.current)?void 0:e.items)||[];null==z||z(Cv(t.map(e=>e.item)),!0)}}:null,{key:"selectInvert",label:x,onClick(){var e;let t=Cv(((null==(e=H.current)?void 0:e.items)||[]).map(e=>e.item)),n=new Set(l),r=new Set(n);t.forEach(e=>{n.has(e)?r.delete(e):r.add(e)}),null==z||z(Array.from(r),"replace")}}];let ee=m().createElement(hx,{className:`${o}-header-dropdown`,menu:{items:r},disabled:c},void 0!==N?N:m().createElement(ao,null));return m().createElement("div",{className:Z,style:u},m().createElement("div",{className:`${o}-header`},w?m().createElement(m().Fragment,null,!C&&!S&&G,ee):null,m().createElement("span",{className:`${o}-header-selected`},(t=X.length,n=V.length,M?"function"==typeof M?M({selectedCount:t,totalCount:n}):M:m().createElement(m().Fragment,null,(t>0?`${t}/`:"")+n," ",n>1?E:O))),m().createElement("span",{className:`${o}-header-title`},i)),U,J)},Cy=e=>{let{disabled:t,moveToLeft:n,moveToRight:r,leftArrowText:o="",rightArrowText:a="",leftActive:i,rightActive:l,className:c,style:s,direction:u,oneWay:d}=e;return p.createElement("div",{className:c,style:s},p.createElement(tz.Ay,{type:"primary",size:"small",disabled:t||!l,onClick:r,icon:"rtl"!==u?p.createElement(io.A,null):p.createElement(l$,null)},a),!d&&p.createElement(tz.Ay,{type:"primary",size:"small",disabled:t||!i,onClick:n,icon:"rtl"!==u?p.createElement(l$,null):p.createElement(io.A,null)},o))},Cx=(e,t)=>{let{componentCls:n,colorBorder:r}=e;return{[`${n}-list`]:{borderColor:t,"&-search:not([disabled])":{borderColor:r}}}},C$=(0,w.OF)("Transfer",e=>{let t=(0,ey.oX)(e);return[(e=>{let{antCls:t,iconCls:n,componentCls:r,marginXS:o,marginXXS:a,fontSizeIcon:i,colorBgContainerDisabled:l}=e;return{[r]:Object.assign(Object.assign({},(0,V.dF)(e)),{position:"relative",display:"flex",alignItems:"stretch",[`${r}-disabled`]:{[`${r}-list`]:{background:l}},[`${r}-list`]:(e=>{let{componentCls:t,colorBorder:n,colorSplit:r,lineWidth:o,itemHeight:a,headerHeight:i,transferHeaderVerticalPadding:l,itemPaddingBlock:c,controlItemBgActive:s,colorTextDisabled:u,colorTextSecondary:d,listHeight:f,listWidth:p,listWidthLG:m,fontSizeIcon:g,marginXS:h,paddingSM:v,lineType:b,antCls:y,iconCls:x,motionDurationSlow:$,controlItemBgHover:A,borderRadiusLG:w,colorBgContainer:C,colorText:S,controlItemBgActiveHover:k}=e,E=(0,q.zA)(e.calc(w).sub(o).equal());return{display:"flex",flexDirection:"column",width:p,height:f,border:`${(0,q.zA)(o)} ${b} ${n}`,borderRadius:e.borderRadiusLG,"&-with-pagination":{width:m,height:"auto"},"&-search":{[`${x}-search`]:{color:u}},"&-header":{display:"flex",flex:"none",alignItems:"center",height:i,padding:`${(0,q.zA)(e.calc(l).sub(o).equal())} ${(0,q.zA)(v)} ${(0,q.zA)(l)}`,color:S,background:C,borderBottom:`${(0,q.zA)(o)} ${b} ${r}`,borderRadius:`${(0,q.zA)(w)} ${(0,q.zA)(w)} 0 0`,"> *:not(:last-child)":{marginInlineEnd:4},"> *":{flex:"none"},"&-title":Object.assign(Object.assign({},V.L9),{flex:"auto",textAlign:"end"}),"&-dropdown":Object.assign(Object.assign({},(0,V.Nk)()),{fontSize:g,transform:"translateY(10%)",cursor:"pointer","&[disabled]":{cursor:"not-allowed"}})},"&-body":{display:"flex",flex:"auto",flexDirection:"column",fontSize:e.fontSize,minHeight:0,"&-search-wrapper":{position:"relative",flex:"none",padding:v}},"&-content":{flex:"auto",margin:0,padding:0,overflow:"auto",listStyle:"none",borderRadius:`0 0 ${E} ${E}`,"&-item":{display:"flex",alignItems:"center",minHeight:a,padding:`${(0,q.zA)(c)} ${(0,q.zA)(v)}`,transition:`all ${$}`,"> *:not(:last-child)":{marginInlineEnd:h},"> *":{flex:"none"},"&-text":Object.assign(Object.assign({},V.L9),{flex:"auto"}),"&-remove":Object.assign(Object.assign({},(0,V.Y1)(e)),{color:n,"&:hover, &:focus":{color:d}}),[`&:not(${t}-list-content-item-disabled)`]:{"&:hover":{backgroundColor:A,cursor:"pointer"},[`&${t}-list-content-item-checked:hover`]:{backgroundColor:k}},"&-checked":{backgroundColor:s},"&-disabled":{color:u,cursor:"not-allowed"}},[`&-show-remove ${t}-list-content-item:not(${t}-list-content-item-disabled):hover`]:{background:"transparent",cursor:"default"}},"&-pagination":{padding:e.paddingXS,textAlign:"end",borderTop:`${(0,q.zA)(o)} ${b} ${r}`,[`${y}-pagination-options`]:{paddingInlineEnd:e.paddingXS}},"&-body-not-found":{flex:"none",width:"100%",margin:"auto 0",color:u,textAlign:"center"},"&-footer":{borderTop:`${(0,q.zA)(o)} ${b} ${r}`},"&-checkbox":{lineHeight:1}}})(e),[`${r}-operation`]:{display:"flex",flex:"none",flexDirection:"column",alignSelf:"center",margin:`0 ${(0,q.zA)(o)}`,verticalAlign:"middle",gap:a,[`${t}-btn ${n}`]:{fontSize:i}}})}})(t),(e=>{let{antCls:t,componentCls:n,listHeight:r,controlHeightLG:o}=e,a=`${t}-table`,i=`${t}-input`;return{[`${n}-customize-list`]:{[`${n}-list`]:{flex:"1 1 50%",width:"auto",height:"auto",minHeight:r,minWidth:0},[`${a}-wrapper`]:{[`${a}-small`]:{border:0,borderRadius:0,[`${a}-selection-column`]:{width:o,minWidth:o}},[`${a}-pagination${a}-pagination`]:{margin:0,padding:e.paddingXS}},[`${i}[disabled]`]:{backgroundColor:"transparent"}}}})(t),(e=>{let{componentCls:t}=e;return{[`${t}-status-error`]:Object.assign({},Cx(e,e.colorError)),[`${t}-status-warning`]:Object.assign({},Cx(e,e.colorWarning))}})(t),(e=>{let{componentCls:t}=e;return{[`${t}-rtl`]:{direction:"rtl"}}})(t)]},e=>{let{fontSize:t,lineHeight:n,controlHeight:r,controlHeightLG:o,lineWidth:a}=e,i=Math.round(t*n);return{listWidth:180,listHeight:200,listWidthLG:250,headerHeight:o,itemHeight:r,itemPaddingBlock:(r-i)/2,transferHeaderVerticalPadding:Math.ceil((o-a-i)/2)}}),CA=e=>{var t;let{dataSource:n,targetKeys:r=[],selectedKeys:o,selectAllLabels:a=[],operations:i=[],style:l={},listStyle:c={},locale:s={},titles:u,disabled:d,showSearch:f=!1,operationStyle:g,showSelectAll:v,oneWay:b,pagination:x,status:$,prefixCls:w,className:C,rootClassName:S,selectionsIcon:k,filterOption:E,render:O,footer:M,children:N,rowKey:I,onScroll:j,onChange:z,onSearch:R,onSelectChange:P}=e,{getPrefixCls:T,renderEmpty:D,direction:L,transfer:B}=(0,p.useContext)(A.QO),F=T("transfer",w),[H,_,W]=C$(F),[q,V,K]=((e,t,n)=>{let r=p.useMemo(()=>(e||[]).map(e=>t?Object.assign(Object.assign({},e),{key:t(e)}):e),[e,t]),[o,a]=p.useMemo(()=>{let e=[],t=Array((n||[]).length),o=Cl(n||[]);return r.forEach(n=>{o.has(n.key)?t[o.get(n.key)]=n:e.push(n)}),[e,t]},[r,n,t]);return[r,o,a]})(n,I,r),[X,Y,U,G]=function(e,t,n){let[r,o]=p.useMemo(()=>[new Set(e.map(e=>e.key)),new Set(t.map(e=>e.key))],[e,t]),[a,i]=(0,e_.vz)(Cc,{value:n}),l=p.useMemo(()=>Cs(a,r),[a,r]),c=p.useMemo(()=>Cs(a,o),[a,o]);p.useEffect(()=>{i([].concat((0,y.A)(Cs(a,r)),(0,y.A)(Cs(a,o))))},[Cu(r),Cu(o)]);let s=(0,e_._q)(e=>{i([].concat((0,y.A)(e),(0,y.A)(c)))}),u=(0,e_._q)(e=>{i([].concat((0,y.A)(l),(0,y.A)(e)))});return[l,c,s,u]}(V,K,o),[Q,Z]=$1(e=>e.key),[J,ee]=$1(e=>e.key),et=(0,p.useCallback)((e,t)=>{"left"===e?U("function"==typeof t?t(X||[]):t):G("function"==typeof t?t(Y||[]):t)},[X,Y]),en=(e,t)=>{("left"===e?Z:ee)(t)},er=(0,p.useCallback)((e,t)=>{"left"===e?null==P||P(t,Y):null==P||P(X,t)},[X,Y]),eo=e=>{let t,n="right"===e?X:Y,o=(t=new Map,q.forEach((e,n)=>{let{disabled:r,key:o}=e;r&&t.set(o,n)}),t),a=n.filter(e=>!o.has(e)),i=Cl(a),l="right"===e?a.concat(r):r.filter(e=>!i.has(e)),c="right"===e?"left":"right";et(c,[]),er(c,[]),null==z||z(l,e,a)},ea=(e,t,n)=>{et(e,r=>{let o=[];if("replace"===n)o=t;else if(n)o=Array.from(new Set([].concat((0,y.A)(r),(0,y.A)(t))));else{let e=Cl(t);o=r.filter(t=>!e.has(t))}return er(e,o),o}),en(e,null)},ei=(t,n,r,o)=>{let a="left"===t,i=(0,y.A)(a?X:Y),l=new Set(i),c=(0,y.A)(a?V:K).filter(e=>!(null==e?void 0:e.disabled)),s=c.findIndex(e=>e.key===n);if(o&&i.length>0)("left"===t?Q:J)(s,c,l);else l.has(n)&&(l.delete(n),en(t,null)),r&&(l.add(n),en(t,s));let u=Array.from(l);er(t,u),e.selectedKeys||et(t,u)},el=e=>"function"==typeof c?c({direction:e}):c||{},{hasFeedback:ec,status:es}=(0,p.useContext)(oD.$W),eu=(0,oO.v)(es,$),ed=!N&&x,ef=K.filter(e=>Y.includes(e.key)&&!e.disabled).length>0,ep=V.filter(e=>X.includes(e.key)&&!e.disabled).length>0,em=h()(F,{[`${F}-disabled`]:d,[`${F}-customize-list`]:!!N,[`${F}-rtl`]:"rtl"===L},(0,oO.L)(F,eu,ec),null==B?void 0:B.className,C,S,_,W),[eg]=(0,tI.A)("Transfer",te.A.Transfer),eh=Object.assign(Object.assign(Object.assign({},eg),{notFoundContent:(null==D?void 0:D("Transfer"))||m().createElement(oP,{componentName:"Transfer"})}),s),[ev,eb]=null!=(t=null!=u?u:eh.titles)?t:[],ey=null!=k?k:null==B?void 0:B.selectionsIcon;return H(m().createElement("div",{className:em,style:Object.assign(Object.assign({},null==B?void 0:B.style),l)},m().createElement(Cb,Object.assign({prefixCls:`${F}-list`,titleText:ev,dataSource:V,filterOption:E,style:el("left"),checkedKeys:X,handleFilter:e=>null==R?void 0:R("left",e.target.value),handleClear:()=>null==R?void 0:R("left",""),onItemSelect:(e,t,n)=>{ei("left",e,t,null==n?void 0:n.shiftKey)},onItemSelectAll:(e,t)=>{ea("left",e,t)},render:O,showSearch:f,renderList:N,footer:M,onScroll:e=>{null==j||j("left",e)},disabled:d,direction:"rtl"===L?"right":"left",showSelectAll:v,selectAllLabel:a[0],pagination:ed,selectionsIcon:ey},eh)),m().createElement(Cy,{className:`${F}-operation`,rightActive:ep,rightArrowText:i[0],moveToRight:()=>{eo("right"),en("right",null)},leftActive:ef,leftArrowText:i[1],moveToLeft:()=>{eo("left"),en("left",null)},style:g,disabled:d,direction:L,oneWay:b}),m().createElement(Cb,Object.assign({prefixCls:`${F}-list`,titleText:eb,dataSource:K,filterOption:E,style:el("right"),checkedKeys:Y,handleFilter:e=>null==R?void 0:R("right",e.target.value),handleClear:()=>null==R?void 0:R("right",""),onItemSelect:(e,t,n)=>{ei("right",e,t,null==n?void 0:n.shiftKey)},onItemSelectAll:(e,t)=>{ea("right",e,t)},onItemRemove:e=>{et("right",[]),null==z||z(r.filter(t=>!e.includes(t)),"left",(0,y.A)(e))},render:O,showSearch:f,renderList:N,footer:M,onScroll:e=>{null==j||j("right",e)},disabled:d,direction:"rtl"===L?"left":"right",showSelectAll:v,selectAllLabel:a[1],showRemove:b,pagination:ed,selectionsIcon:ey},eh))))};CA.List=Cb,CA.Search=Cg,CA.Operation=Cy;let Cw=CA,CC=function(e){var t=p.useRef({valueLabels:new Map});return p.useMemo(function(){var n=t.current.valueLabels,r=new Map,o=e.map(function(e){var t=e.value,o=e.label,a=null!=o?o:n.get(t);return r.set(t,a),(0,eM.A)((0,eM.A)({},e),{},{label:a})});return t.current.valueLabels=r,[o]},[e])},CS=function(){return null};var Ck=["children","value"];function CE(e){if(!e)return e;var t=(0,eM.A)({},e);return"props"in t||Object.defineProperty(t,"props",{get:function(){return(0,tJ.Ay)(!1,"New `rc-tree-select` not support return node instance as argument anymore. Please consider to remove `props` access."),t}}),t}let CO=function(e,t,n){var r=n.fieldNames,o=n.treeNodeFilterProp,a=n.filterTreeNode,i=r.children;return p.useMemo(function(){if(!t||!1===a)return e;var n="function"==typeof a?a:function(e,n){return String(n[o]).toUpperCase().includes(t.toUpperCase())};return function e(r){var o=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return r.reduce(function(r,a){var l=a[i],c=o||n(t,CE(a)),s=e(l||[],c);return(c||s.length)&&r.push((0,eM.A)((0,eM.A)({},a),{},(0,ej.A)({isLeaf:void 0},i,s))),r},[])}(e)},[e,t,i,o,a])};function CM(e){var t=p.useRef();return t.current=e,p.useCallback(function(){return t.current.apply(t,arguments)},[])}var CN=p.createContext(null),CI=p.createContext(null),Cj=function(e){var t=e||{},n=t.label,r=t.value;return{_title:n?[n]:["title","label"],value:r||"value",key:r||"value",children:t.children||"children"}},Cz=function(e){return!e||e.disabled||e.disableCheckbox||!1===e.checkable},CR=function(e,t){var n=[];return!function e(r){r.forEach(function(r){var o=r[t.children];o&&(n.push(r[t.value]),e(o))})}(e),n},CP=function(e){return null==e},CT={width:0,height:0,display:"flex",overflow:"hidden",opacity:0,border:0,padding:0,margin:0},CD=p.forwardRef(function(e,t){var n=rv(),r=n.prefixCls,o=n.multiple,a=n.searchValue,i=n.toggleOpen,l=n.open,c=n.notFoundContent,s=p.useContext(CI),u=s.virtual,d=s.listHeight,f=s.listItemHeight,m=s.listItemScrollOffset,g=s.treeData,h=s.fieldNames,v=s.onSelect,b=s.dropdownMatchSelectWidth,x=s.treeExpandAction,$=s.treeTitleRender,A=s.onPopupScroll,w=p.useContext(CN),C=w.checkable,S=w.checkedKeys,k=w.halfCheckedKeys,E=w.treeExpandedKeys,O=w.treeDefaultExpandAll,M=w.treeDefaultExpandedKeys,N=w.onTreeExpand,I=w.treeIcon,j=w.showTreeIcon,z=w.switcherIcon,P=w.treeLine,T=w.treeNodeFilterProp,D=w.loadData,L=w.treeLoadedKeys,B=w.treeMotion,F=w.onTreeLoad,H=w.keyEntities,_=p.useRef(),W=(0,e5.A)(function(){return g},[l,g],function(e,t){return t[0]&&e[1]!==t[1]}),q=p.useMemo(function(){return C?{checked:S,halfChecked:k}:null},[C,S,k]);p.useEffect(function(){if(l&&!o&&S.length){var e;null==(e=_.current)||e.scrollTo({key:S[0]})}},[l]);var V=function(e){e.preventDefault()},K=function(e,t){var n=t.node;!(C&&Cz(n))&&(v(n.key,{selected:!S.includes(n.key)}),o||i(!1))},X=p.useState(M),Y=(0,eE.A)(X,2),U=Y[0],G=Y[1],Q=p.useState(null),Z=(0,eE.A)(Q,2),J=Z[0],ee=Z[1],et=p.useMemo(function(){return E?(0,y.A)(E):a?J:U},[U,J,E,a]),en=String(a).toLowerCase(),er=function(e){return!!en&&String(e[T]).toLowerCase().includes(en)};p.useEffect(function(){a&&ee(CR(g,h))},[a]);var eo=function e(t){var n,r=(0,yN.A)(t);try{for(r.s();!(n=r.n()).done;){var o=n.value;if(!o.disabled&&!1!==o.selectable){if(!a||er(o))return o;if(o[h.children]){var i=e(o[h.children]);if(i)return i}}}}catch(e){r.e(e)}finally{r.f()}return null},ea=p.useState(null),ei=(0,eE.A)(ea,2),el=ei[0],ec=ei[1],es=H[el];p.useEffect(function(){if(l){var e,t=null;ec(t=o||!S.length||a?(e=eo(W))?e[h.value]:null:S[0])}},[l,a]),p.useImperativeHandle(t,function(){var e;return{scrollTo:null==(e=_.current)?void 0:e.scrollTo,onKeyDown:function(e){var t;switch(e.which){case eR.A.UP:case eR.A.DOWN:case eR.A.LEFT:case eR.A.RIGHT:null==(t=_.current)||t.onKeyDown(e);break;case eR.A.ENTER:if(es){var n=(null==es?void 0:es.node)||{},r=n.selectable,o=n.value,a=n.disabled;!1===r||a||K(null,{node:{key:el},selected:!S.includes(o)})}break;case eR.A.ESC:i(!1)}},onKeyUp:function(){}}});var eu=(0,e5.A)(function(){return!a},[a,E||U],function(e,t){var n=(0,eE.A)(e,1)[0],r=(0,eE.A)(t,2),o=r[0],a=r[1];return n!==o&&!!(o||a)});if(0===W.length)return p.createElement("div",{role:"listbox",className:"".concat(r,"-empty"),onMouseDown:V},c);var ed={fieldNames:h};return L&&(ed.loadedKeys=L),et&&(ed.expandedKeys=et),p.createElement("div",{onMouseDown:V},es&&l&&p.createElement("span",{style:CT,"aria-live":"assertive"},es.node.value),p.createElement(Ab,(0,R.A)({ref:_,focusable:!1,prefixCls:"".concat(r,"-tree"),treeData:W,height:d,itemHeight:f,itemScrollOffset:m,virtual:!1!==u&&!1!==b,multiple:o,icon:I,showIcon:j,switcherIcon:z,showLine:P,loadData:eu?D:null,motion:B,activeKey:el,checkable:C,checkStrictly:!0,checkedKeys:q,selectedKeys:C?[]:S,defaultExpandAll:O,titleRender:$},ed,{onActiveChange:ec,onSelect:K,onCheck:K,onExpand:function(e){G(e),ee(e),N&&N(e)},onLoad:F,filterTreeNode:er,expandAction:x,onScroll:A})))}),CL="SHOW_ALL",CB="SHOW_PARENT",CF="SHOW_CHILD";function CH(e,t,n,r){var o=new Set(e);return t===CF?e.filter(function(e){var t=n[e];return!t||!t.children||!t.children.some(function(e){var t=e.node;return o.has(t[r.value])})||!t.children.every(function(e){var t=e.node;return Cz(t)||o.has(t[r.value])})}):t===CB?e.filter(function(e){var t=n[e],r=t?t.parent:null;return!r||Cz(r.node)||!o.has(r.key)}):e}var C_=["id","prefixCls","value","defaultValue","onChange","onSelect","onDeselect","searchValue","inputValue","onSearch","autoClearSearchValue","filterTreeNode","treeNodeFilterProp","showCheckedStrategy","treeNodeLabelProp","multiple","treeCheckable","treeCheckStrictly","labelInValue","fieldNames","treeDataSimpleMode","treeData","children","loadData","treeLoadedKeys","onTreeLoad","treeDefaultExpandAll","treeExpandedKeys","treeDefaultExpandedKeys","onTreeExpand","treeExpandAction","virtual","listHeight","listItemHeight","listItemScrollOffset","onDropdownVisibleChange","dropdownMatchSelectWidth","treeLine","treeIcon","showTreeIcon","switcherIcon","treeMotion","treeTitleRender","onPopupScroll"],CW=p.forwardRef(function(e,t){var n=e.id,r=e.prefixCls,o=e.value,a=e.defaultValue,i=e.onChange,l=e.onSelect,c=e.onDeselect,s=e.searchValue,u=e.inputValue,d=e.onSearch,f=e.autoClearSearchValue,m=void 0===f||f,g=e.filterTreeNode,h=e.treeNodeFilterProp,v=void 0===h?"value":h,b=e.showCheckedStrategy,x=e.treeNodeLabelProp,$=e.multiple,A=e.treeCheckable,w=e.treeCheckStrictly,C=e.labelInValue,S=e.fieldNames,k=e.treeDataSimpleMode,E=e.treeData,O=e.children,M=e.loadData,N=e.treeLoadedKeys,I=e.onTreeLoad,j=e.treeDefaultExpandAll,z=e.treeExpandedKeys,P=e.treeDefaultExpandedKeys,T=e.onTreeExpand,D=e.treeExpandAction,L=e.virtual,B=e.listHeight,F=void 0===B?200:B,H=e.listItemHeight,_=void 0===H?20:H,W=e.listItemScrollOffset,q=void 0===W?0:W,V=e.onDropdownVisibleChange,K=e.dropdownMatchSelectWidth,X=void 0===K||K,Y=e.treeLine,U=e.treeIcon,G=e.showTreeIcon,Q=e.switcherIcon,Z=e.treeMotion,J=e.treeTitleRender,ee=e.onPopupScroll,et=(0,eO.A)(e,C_),en=o$(n),er=A&&!w,eo=A||w,ea=w||C,ei=eo||$,el=(0,rs.A)(a,{value:o}),ec=(0,eE.A)(el,2),es=ec[0],eu=ec[1],ed=p.useMemo(function(){return A?b||CF:CL},[b,A]),ef=p.useMemo(function(){return Cj(S)},[JSON.stringify(S)]),ep=(0,rs.A)("",{value:void 0!==s?s:u,postState:function(e){return e||""}}),em=(0,eE.A)(ep,2),eg=em[0],eh=em[1],ev=p.useMemo(function(){if(E){if(k){var e,t,n,r,o,a=(0,eM.A)({id:"id",pId:"pId",rootPId:null},"object"===(0,ez.A)(k)?k:{});return e=a.id,t=a.pId,n=a.rootPId,r=new Map,o=[],E.forEach(function(t){var n=t[e],o=(0,eM.A)((0,eM.A)({},t),{},{key:t.key||n});r.set(n,o)}),r.forEach(function(e){var a=e[t],i=r.get(a);i?(i.children=i.children||[],i.children.push(e)):(a===n||null===n)&&o.push(e)}),o}return E}return function e(t){return(0,rc.A)(t).map(function(t){if(!p.isValidElement(t)||!t.type)return null;var n=t.key,r=t.props,o=r.children,a=r.value,i=(0,eO.A)(r,Ck),l=(0,eM.A)({key:n,value:a},i),c=e(o);return c.length&&(l.children=c),l}).filter(function(e){return e})}(O)},[O,k,E]),eb=p.useMemo(function(){return fS(ev,{fieldNames:ef,initWrapper:function(e){return(0,eM.A)((0,eM.A)({},e),{},{valueEntities:new Map})},processEntity:function(e,t){var n=e.node[ef.value];t.valueEntities.set(n,e)}})},[ev,ef]),ey=eb.keyEntities,ex=eb.valueEntities,e$=p.useCallback(function(e){var t=[],n=[];return e.forEach(function(e){ex.has(e)?n.push(e):t.push(e)}),{missingRawValues:t,existRawValues:n}},[ex]),eA=CO(ev,eg,{fieldNames:ef,treeNodeFilterProp:v,filterTreeNode:g}),ew=p.useCallback(function(e){if(e){if(x)return e[x];for(var t=ef._title,n=0;n1&&void 0!==arguments[1]?arguments[1]:"0",o=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return n.map(function(n,i){var l="".concat(r,"-").concat(i),c=n[ef.value],s=e.includes(c),u=t(n[ef.children]||[],l,s),d=p.createElement(CS,n,u.map(function(e){return e.node}));if(a===c&&(h=d),s){var f={pos:l,node:d,children:u};return o||v.push(f),f}return null}).filter(function(e){return e})}(ev),v.sort(function(t,n){var r=t.node.props.value,o=n.node.props.value;return e.indexOf(r)-e.indexOf(o)}))}Object.defineProperty(d,"triggerNode",{get:function(){return(0,tJ.Ay)(!1,"`triggerNode` is deprecated. Please consider decoupling data with node."),b(),h}}),Object.defineProperty(d,"allCheckedNodes",{get:function(){return((0,tJ.Ay)(!1,"`allCheckedNodes` is deprecated. Please consider decoupling data with node."),b(),g)?v:v.map(function(e){return e.node})}}),eo?d.checked=l:d.selected=l;var x=ea?u:u.map(function(e){return e.value});i(ei?x:x[0],ea?null:u.map(function(e){return e.label}),d)}}),eW=p.useCallback(function(e,t){var n=t.selected,r=t.source,o=ey[e],a=null==o?void 0:o.node,i=null!=(u=null==a?void 0:a[ef.value])?u:e;if(ei){var s=n?[].concat((0,y.A)(eP),[i]):eL.filter(function(e){return e!==i});if(er){var u,d,f=e$(s),p=f.missingRawValues,m=f.existRawValues.map(function(e){return ex.get(e).key});d=n?fj(m,!0,ey).checkedKeys:fj(m,{checked:!1,halfCheckedKeys:eB},ey).checkedKeys,s=[].concat((0,y.A)(p),(0,y.A)(d.map(function(e){return ey[e].node[ef.value]})))}e_(s,{selected:n,triggerValue:i},r||"option")}else e_([i],{selected:!0,triggerValue:i},"option");n||!ei?null==l||l(i,CE(a)):null==c||c(i,CE(a))},[e$,ex,ey,ef,ei,eP,e_,er,l,c,eL,eB]),eq=p.useCallback(function(e){if(V){var t={};Object.defineProperty(t,"documentClickClose",{get:function(){return(0,tJ.Ay)(!1,"Second param of `onDropdownVisibleChange` has been removed."),!1}}),V(e,t)}},[V]),eV=CM(function(e,t){var n=e.map(function(e){return e.value});"clear"===t.type?e_(n,{},"selection"):t.values.length&&eW(t.values[0].value,{selected:!1,source:"selection"})}),eK=p.useMemo(function(){return{virtual:L,dropdownMatchSelectWidth:X,listHeight:F,listItemHeight:_,listItemScrollOffset:q,treeData:eA,fieldNames:ef,onSelect:eW,treeExpandAction:D,treeTitleRender:J,onPopupScroll:ee}},[L,X,F,_,q,eA,ef,eW,D,J,ee]),eX=p.useMemo(function(){return{checkable:eo,loadData:M,treeLoadedKeys:N,onTreeLoad:I,checkedKeys:eL,halfCheckedKeys:eB,treeDefaultExpandAll:j,treeExpandedKeys:z,treeDefaultExpandedKeys:P,onTreeExpand:T,treeIcon:U,treeMotion:Z,showTreeIcon:G,switcherIcon:Q,treeLine:Y,treeNodeFilterProp:v,keyEntities:ey}},[eo,M,N,I,eL,eB,j,z,P,T,U,Z,G,Q,Y,v,ey]);return p.createElement(CI.Provider,{value:eK},p.createElement(CN.Provider,{value:eX},p.createElement(r8,(0,R.A)({ref:t},et,{id:en,prefixCls:void 0===r?"rc-tree-select":r,mode:ei?"multiple":void 0,displayValues:eH,onDisplayValuesChange:eV,searchValue:eg,onSearch:function(e){eh(e),null==d||d(e)},OptionList:CD,emptyOptions:!ev.length,onDropdownVisibleChange:eq,dropdownMatchSelectWidth:X}))))});CW.TreeNode=CS,CW.SHOW_ALL=CL,CW.SHOW_PARENT=CB,CW.SHOW_CHILD=CF;var Cq=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let CV=p.forwardRef((e,t)=>{var n;let r,{prefixCls:o,size:a,disabled:i,bordered:l=!0,className:c,rootClassName:s,treeCheckable:u,multiple:d,listHeight:f=256,listItemHeight:m,placement:g,notFoundContent:v,switcherIcon:y,treeLine:x,getPopupContainer:$,popupClassName:C,dropdownClassName:S,treeIcon:k=!1,transitionName:E,choiceTransitionName:O="",status:M,treeExpandAction:N,builtinPlacements:I,dropdownMatchSelectWidth:j,popupMatchSelectWidth:z,allowClear:R,variant:P,dropdownStyle:T,tagRender:D}=e,L=Cq(e,["prefixCls","size","disabled","bordered","className","rootClassName","treeCheckable","multiple","listHeight","listItemHeight","placement","notFoundContent","switcherIcon","treeLine","getPopupContainer","popupClassName","dropdownClassName","treeIcon","transitionName","choiceTransitionName","status","treeExpandAction","builtinPlacements","dropdownMatchSelectWidth","popupMatchSelectWidth","allowClear","variant","dropdownStyle","tagRender"]),{getPopupContainer:B,getPrefixCls:F,renderEmpty:H,direction:_,virtual:W,popupMatchSelectWidth:V,popupOverflow:K}=p.useContext(A.QO),[,X]=(0,tb.Ay)(),Y=null!=m?m:(null==X?void 0:X.controlHeightSM)+(null==X?void 0:X.paddingXXS),U=F(),G=F("select",o),Q=F("select-tree",o),Z=F("tree-select",o),{compactSize:J,compactItemClassnames:ee}=(0,oB.RQ)(G,_),et=(0,eh.A)(G),en=(0,eh.A)(Z),[er,eo,ea]=at(G,et),[ei]=(0,w.OF)("TreeSelect",e=>[(e=>{let{componentCls:t,treePrefixCls:n,colorBgElevated:r}=e,o=`.${n}`;return[{[`${t}-dropdown`]:[{padding:`${(0,q.zA)(e.paddingXS)} ${(0,q.zA)(e.calc(e.paddingXS).div(2).equal())}`},AO(n,(0,ey.oX)(e,{colorBgContainer:r})),{[o]:{borderRadius:0,[`${o}-list-holder-inner`]:{alignItems:"stretch",[`${o}-treenode`]:{[`${o}-node-content-wrapper`]:{flex:"auto"}}}}},fG(`${n}-checkbox`,e),{"&-rtl":{direction:"rtl",[`${o}-switcher${o}-switcher_close`]:{[`${o}-switcher-icon svg`]:{transform:"rotate(90deg)"}}}}]}]})((0,ey.oX)(e,{treePrefixCls:Q}))],AM)(Z,en),[el,ec]=(0,oL.A)("treeSelect",P,l),es=h()(C||S,`${Z}-dropdown`,{[`${Z}-dropdown-rtl`]:"rtl"===_},s,ea,et,en,eo),eu=!!(u||d),ed=ac(e.suffixIcon,e.showArrow),ef=null!=(n=null!=z?z:j)?n:V,{status:ep,hasFeedback:em,isFormItemInput:eg,feedbackIcon:ev}=p.useContext(oD.$W),eb=(0,oO.v)(ep,M),{suffixIcon:ex,removeIcon:e$,clearIcon:eA}=al(Object.assign(Object.assign({},L),{multiple:eu,showSuffixIcon:ed,hasFeedback:em,feedbackIcon:ev,prefixCls:G,componentName:"TreeSelect"}));r=void 0!==v?v:(null==H?void 0:H("Select"))||p.createElement(oP,{componentName:"Select"});let ew=(0,b.A)(L,["suffixIcon","removeIcon","clearIcon","itemIcon","switcherIcon"]),eC=p.useMemo(()=>void 0!==g?g:"rtl"===_?"bottomRight":"bottomLeft",[g,_]),eS=(0,oT.A)(e=>{var t;return null!=(t=null!=a?a:J)?t:e}),ek=p.useContext(tp.A),eE=h()(!o&&Z,{[`${G}-lg`]:"large"===eS,[`${G}-sm`]:"small"===eS,[`${G}-rtl`]:"rtl"===_,[`${G}-${el}`]:ec,[`${G}-in-form-item`]:eg},(0,oO.L)(G,eb,em),ee,c,s,ea,et,en,eo),[eO]=(0,eY.YK)("SelectLike",null==T?void 0:T.zIndex);return er(ei(p.createElement(CW,Object.assign({virtual:W,disabled:null!=i?i:ek},ew,{dropdownMatchSelectWidth:ef,builtinPlacements:oF(I,K),ref:t,prefixCls:G,className:eE,listHeight:f,listItemHeight:Y,treeCheckable:u?p.createElement("span",{className:`${G}-tree-checkbox-inner`}):u,treeLine:!!x,suffixIcon:ex,multiple:eu,placement:eC,removeIcon:e$,allowClear:!0===R?{clearIcon:eA}:R,switcherIcon:e=>p.createElement(AL,{prefixCls:Q,switcherIcon:y,treeNodeProps:e,showLine:x}),showTreeIcon:k,notFoundContent:r,getPopupContainer:$||B,treeMotion:null,dropdownClassName:es,dropdownStyle:Object.assign(Object.assign({},T),{zIndex:eO}),choiceTransitionName:(0,tN.b)(U,"",O),transitionName:(0,tN.b)(U,"slide-up",E),treeExpandAction:N,tagRender:eu?D:void 0}))))}),CK=rd(CV,void 0,void 0,e=>(0,b.A)(e,["visible"]));CV.TreeNode=CS,CV.SHOW_ALL=CL,CV.SHOW_PARENT=CB,CV.SHOW_CHILD=CF,CV._InternalPanelDoNotUseOrYouWillBeFired=CK;let CX=CV;var CY=n(26317),CU=n(49501);let CG=p.forwardRef((e,t)=>p.createElement(CU.A,Object.assign({ref:t},e,{component:"div"})));var CQ=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let CZ=p.forwardRef((e,t)=>{var{ellipsis:n}=e,r=CQ(e,["ellipsis"]);let o=p.useMemo(()=>n&&"object"==typeof n?(0,b.A)(n,["expandable","rows"]):n,[n]);return p.createElement(CU.A,Object.assign({ref:t},r,{ellipsis:o,component:"span"}))});var CJ=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let C0=[1,2,3,4,5],C1=p.forwardRef((e,t)=>{let{level:n=1}=e,r=CJ(e,["level"]),o=C0.includes(n)?`h${n}`:"h1";return p.createElement(CU.A,Object.assign({ref:t},r,{component:o}))}),C2=n(64560).A;C2.Text=CZ,C2.Link=CY.A,C2.Title=C1,C2.Paragraph=CG;let C4=C2;var C3=n(1079),C6=n(10467);let C8=function(e,t){if(e&&t){var n=Array.isArray(t)?t:t.split(","),r=e.name||"",o=e.type||"",a=o.replace(/\/.*$/,"");return n.some(function(e){var t=e.trim();if(/^\*(\/\*)?$/.test(e))return!0;if("."===t.charAt(0)){var n=r.toLowerCase(),i=t.toLowerCase(),l=[i];return(".jpg"===i||".jpeg"===i)&&(l=[".jpg",".jpeg"]),l.some(function(e){return n.endsWith(e)})}return/\/\*$/.test(t)?a===t.replace(/\/.*$/,""):o===t||!!/^\w+$/.test(t)&&((0,tJ.Ay)(!1,"Upload takes an invalidate 'accept' type '".concat(t,"'.Skip for check.")),!0)})}return!0};function C5(e){var t=e.responseText||e.response;if(!t)return t;try{return JSON.parse(t)}catch(e){return t}}var C7=(d=(0,C6.A)((0,C3.A)().mark(function e(t,n){var r,o,a,i,l,c;return(0,C3.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:i=function(){return(i=(0,C6.A)((0,C3.A)().mark(function e(t){return(0,C3.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",new Promise(function(e){t.file(function(r){n(r)?(t.fullPath&&!r.webkitRelativePath&&(Object.defineProperties(r,{webkitRelativePath:{writable:!0}}),r.webkitRelativePath=t.fullPath.replace(/^\//,""),Object.defineProperties(r,{webkitRelativePath:{writable:!1}})),e(r)):e(null)})}));case 1:case"end":return e.stop()}},e)}))).apply(this,arguments)},a=function(){return(a=(0,C6.A)((0,C3.A)().mark(function e(t){var n,r,o,a,i;return(0,C3.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:n=t.createReader(),r=[];case 2:return e.next=5,new Promise(function(e){n.readEntries(e,function(){return e([])})});case 5:if(a=(o=e.sent).length){e.next=9;break}return e.abrupt("break",12);case 9:for(i=0;i0&&(t.percent=t.loaded/t.total*100),e.onProgress(t)});var n=new FormData;e.data&&Object.keys(e.data).forEach(function(t){var r=e.data[t];Array.isArray(r)?r.forEach(function(e){n.append("".concat(t,"[]"),e)}):n.append(t,r)}),e.file instanceof Blob?n.append(e.filename,e.file,e.file.name):n.append(e.filename,e.file),t.onerror=function(t){e.onError(t)},t.onload=function(){if(t.status<200||t.status>=300){var n;return e.onError(((n=Error("cannot ".concat(e.method," ").concat(e.action," ").concat(t.status,"'"))).status=t.status,n.method=e.method,n.url=e.action,n),C5(t))}return e.onSuccess(C5(t),t)},t.open(e.method,e.action,!0),e.withCredentials&&"withCredentials"in t&&(t.withCredentials=!0);var r=e.headers||{};return null!==r["X-Requested-With"]&&t.setRequestHeader("X-Requested-With","XMLHttpRequest"),Object.keys(r).forEach(function(e){null!==r[e]&&t.setRequestHeader(e,r[e])}),t.send(n),{abort:function(){t.abort()}}})({action:o,filename:s,data:n,file:a,headers:u,withCredentials:d,method:f||"post",onProgress:function(e){var n=t.props.onProgress;null==n||n(e,a)},onSuccess:function(e,n){var r=t.props.onSuccess;null==r||r(e,a,n),delete t.reqs[p]},onError:function(e,n){var r=t.props.onError;null==r||r(e,n,a),delete t.reqs[p]}})}}},{key:"reset",value:function(){this.setState({uid:St()})}},{key:"abort",value:function(e){var t=this.reqs;if(e){var n=e.uid?e.uid:e;t[n]&&t[n].abort&&t[n].abort(),delete t[n]}else Object.keys(t).forEach(function(e){t[e]&&t[e].abort&&t[e].abort(),delete t[e]})}},{key:"render",value:function(){var e=this.props,t=e.component,n=e.prefixCls,r=e.className,o=e.classNames,a=e.disabled,i=e.id,l=e.name,c=e.style,s=e.styles,u=e.multiple,d=e.accept,f=e.capture,p=e.children,g=e.directory,v=e.openFileDialogOnClick,b=e.onMouseEnter,y=e.onMouseLeave,x=e.hasControlInside,$=(0,eO.A)(e,Sn),A=h()((0,ej.A)((0,ej.A)((0,ej.A)({},n,!0),"".concat(n,"-disabled"),a),r,r)),w=a?{}:{onClick:v?this.onClick:function(){},onKeyDown:v?this.onKeyDown:function(){},onMouseEnter:b,onMouseLeave:y,onDrop:this.onFileDrop,onDragOver:this.onFileDrop,tabIndex:x?void 0:"0"};return m().createElement(t,(0,R.A)({},w,{className:A,role:x?void 0:"button",style:c}),m().createElement("input",(0,R.A)({},(0,H.A)($,{aria:!0,data:!0}),{id:i,name:l,disabled:a,type:"file",ref:this.saveFileInput,onClick:function(e){return e.stopPropagation()},key:this.state.uid,style:(0,eM.A)({display:"none"},(void 0===s?{}:s).input),className:(void 0===o?{}:o).input,accept:d},g?{directory:"directory",webkitdirectory:"webkitdirectory"}:{},{multiple:u,onChange:this.onChange},null!=f?{capture:f}:{})),p)}}]),n}(p.Component);function So(){}var Sa=function(e){(0,en.A)(n,e);var t=(0,iX.A)(n);function n(){var e;(0,J.A)(this,n);for(var r=arguments.length,o=Array(r),a=0;a{let{fontSizeHeading3:t,fontHeight:n,lineWidth:r,controlHeightLG:o,calc:a}=e,i=(0,ey.oX)(e,{uploadThumbnailSize:a(t).mul(2).equal(),uploadProgressOffset:a(a(n).div(2)).add(r).equal(),uploadPicCardSize:a(o).mul(2.55).equal()});return[(e=>{let{componentCls:t,colorTextDisabled:n}=e;return{[`${t}-wrapper`]:Object.assign(Object.assign({},(0,V.dF)(e)),{[t]:{outline:0,"input[type='file']":{cursor:"pointer"}},[`${t}-select`]:{display:"inline-block"},[`${t}-hidden`]:{display:"none"},[`${t}-disabled`]:{color:n,cursor:"not-allowed"}})}})(i),(e=>{let{componentCls:t,iconCls:n}=e;return{[`${t}-wrapper`]:{[`${t}-drag`]:{position:"relative",width:"100%",height:"100%",textAlign:"center",background:e.colorFillAlter,border:`${(0,q.zA)(e.lineWidth)} dashed ${e.colorBorder}`,borderRadius:e.borderRadiusLG,cursor:"pointer",transition:`border-color ${e.motionDurationSlow}`,[t]:{padding:e.padding},[`${t}-btn`]:{display:"table",width:"100%",height:"100%",outline:"none",borderRadius:e.borderRadiusLG,"&:focus-visible":{outline:`${(0,q.zA)(e.lineWidthFocus)} solid ${e.colorPrimaryBorder}`}},[`${t}-drag-container`]:{display:"table-cell",verticalAlign:"middle"},[` - &:not(${t}-disabled):hover, - &-hover:not(${t}-disabled) - `]:{borderColor:e.colorPrimaryHover},[`p${t}-drag-icon`]:{marginBottom:e.margin,[n]:{color:e.colorPrimary,fontSize:e.uploadThumbnailSize}},[`p${t}-text`]:{margin:`0 0 ${(0,q.zA)(e.marginXXS)}`,color:e.colorTextHeading,fontSize:e.fontSizeLG},[`p${t}-hint`]:{color:e.colorTextDescription,fontSize:e.fontSize},[`&${t}-disabled`]:{[`p${t}-drag-icon ${n}, - p${t}-text, - p${t}-hint - `]:{color:e.colorTextDisabled}}}}}})(i),(e=>{let{componentCls:t,iconCls:n,uploadThumbnailSize:r,uploadProgressOffset:o,calc:a}=e,i=`${t}-list`,l=`${i}-item`;return{[`${t}-wrapper`]:{[` - ${i}${i}-picture, - ${i}${i}-picture-card, - ${i}${i}-picture-circle - `]:{[l]:{position:"relative",height:a(r).add(a(e.lineWidth).mul(2)).add(a(e.paddingXS).mul(2)).equal(),padding:e.paddingXS,border:`${(0,q.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderRadius:e.borderRadiusLG,"&:hover":{background:"transparent"},[`${l}-thumbnail`]:Object.assign(Object.assign({},V.L9),{width:r,height:r,lineHeight:(0,q.zA)(a(r).add(e.paddingSM).equal()),textAlign:"center",flex:"none",[n]:{fontSize:e.fontSizeHeading2,color:e.colorPrimary},img:{display:"block",width:"100%",height:"100%",overflow:"hidden"}}),[`${l}-progress`]:{bottom:o,width:`calc(100% - ${(0,q.zA)(a(e.paddingSM).mul(2).equal())})`,marginTop:0,paddingInlineStart:a(r).add(e.paddingXS).equal()}},[`${l}-error`]:{borderColor:e.colorError,[`${l}-thumbnail ${n}`]:{[`svg path[fill='${tc.blue["0"]}']`]:{fill:e.colorErrorBg},[`svg path[fill='${tc.blue.primary}']`]:{fill:e.colorError}}},[`${l}-uploading`]:{borderStyle:"dashed",[`${l}-name`]:{marginBottom:o}}},[`${i}${i}-picture-circle ${l}`]:{[`&, &::before, ${l}-thumbnail`]:{borderRadius:"50%"}}}}})(i),(e=>{let{componentCls:t,iconCls:n,fontSizeLG:r,colorTextLightSolid:o,calc:a}=e,i=`${t}-list`,l=`${i}-item`,c=e.uploadPicCardSize;return{[` - ${t}-wrapper${t}-picture-card-wrapper, - ${t}-wrapper${t}-picture-circle-wrapper - `]:Object.assign(Object.assign({},(0,V.t6)()),{display:"block",[`${t}${t}-select`]:{width:c,height:c,textAlign:"center",verticalAlign:"top",backgroundColor:e.colorFillAlter,border:`${(0,q.zA)(e.lineWidth)} dashed ${e.colorBorder}`,borderRadius:e.borderRadiusLG,cursor:"pointer",transition:`border-color ${e.motionDurationSlow}`,[`> ${t}`]:{display:"flex",alignItems:"center",justifyContent:"center",height:"100%",textAlign:"center"},[`&:not(${t}-disabled):hover`]:{borderColor:e.colorPrimary}},[`${i}${i}-picture-card, ${i}${i}-picture-circle`]:{display:"flex",flexWrap:"wrap","@supports not (gap: 1px)":{"& > *":{marginBlockEnd:e.marginXS,marginInlineEnd:e.marginXS}},"@supports (gap: 1px)":{gap:e.marginXS},[`${i}-item-container`]:{display:"inline-block",width:c,height:c,verticalAlign:"top"},"&::after":{display:"none"},"&::before":{display:"none"},[l]:{height:"100%",margin:0,"&::before":{position:"absolute",zIndex:1,width:`calc(100% - ${(0,q.zA)(a(e.paddingXS).mul(2).equal())})`,height:`calc(100% - ${(0,q.zA)(a(e.paddingXS).mul(2).equal())})`,backgroundColor:e.colorBgMask,opacity:0,transition:`all ${e.motionDurationSlow}`,content:'" "'}},[`${l}:hover`]:{[`&::before, ${l}-actions`]:{opacity:1}},[`${l}-actions`]:{position:"absolute",insetInlineStart:0,zIndex:10,width:"100%",whiteSpace:"nowrap",textAlign:"center",opacity:0,transition:`all ${e.motionDurationSlow}`,[` - ${n}-eye, - ${n}-download, - ${n}-delete - `]:{zIndex:10,width:r,margin:`0 ${(0,q.zA)(e.marginXXS)}`,fontSize:r,cursor:"pointer",transition:`all ${e.motionDurationSlow}`,color:o,"&:hover":{color:o},svg:{verticalAlign:"baseline"}}},[`${l}-thumbnail, ${l}-thumbnail img`]:{position:"static",display:"block",width:"100%",height:"100%",objectFit:"contain"},[`${l}-name`]:{display:"none",textAlign:"center"},[`${l}-file + ${l}-name`]:{position:"absolute",bottom:e.margin,display:"block",width:`calc(100% - ${(0,q.zA)(a(e.paddingXS).mul(2).equal())})`},[`${l}-uploading`]:{[`&${l}`]:{backgroundColor:e.colorFillAlter},[`&::before, ${n}-eye, ${n}-download, ${n}-delete`]:{display:"none"}},[`${l}-progress`]:{bottom:e.marginXL,width:`calc(100% - ${(0,q.zA)(a(e.paddingXS).mul(2).equal())})`,paddingInlineStart:0}}}),[`${t}-wrapper${t}-picture-circle-wrapper`]:{[`${t}${t}-select`]:{borderRadius:"50%"}}}})(i),(e=>{let{componentCls:t,iconCls:n,fontSize:r,lineHeight:o,calc:a}=e,i=`${t}-list-item`,l=`${i}-actions`,c=`${i}-action`;return{[`${t}-wrapper`]:{[`${t}-list`]:Object.assign(Object.assign({},(0,V.t6)()),{lineHeight:e.lineHeight,[i]:{position:"relative",height:a(e.lineHeight).mul(r).equal(),marginTop:e.marginXS,fontSize:r,display:"flex",alignItems:"center",transition:`background-color ${e.motionDurationSlow}`,borderRadius:e.borderRadiusSM,"&:hover":{backgroundColor:e.controlItemBgHover},[`${i}-name`]:Object.assign(Object.assign({},V.L9),{padding:`0 ${(0,q.zA)(e.paddingXS)}`,lineHeight:o,flex:"auto",transition:`all ${e.motionDurationSlow}`}),[l]:{whiteSpace:"nowrap",[c]:{opacity:0},[n]:{color:e.actionsColor,transition:`all ${e.motionDurationSlow}`},[` - ${c}:focus-visible, - &.picture ${c} - `]:{opacity:1}},[`${t}-icon ${n}`]:{color:e.colorTextDescription,fontSize:r},[`${i}-progress`]:{position:"absolute",bottom:e.calc(e.uploadProgressOffset).mul(-1).equal(),width:"100%",paddingInlineStart:a(r).add(e.paddingXS).equal(),fontSize:r,lineHeight:0,pointerEvents:"none","> div":{margin:0}}},[`${i}:hover ${c}`]:{opacity:1},[`${i}-error`]:{color:e.colorError,[`${i}-name, ${t}-icon ${n}`]:{color:e.colorError},[l]:{[`${n}, ${n}:hover`]:{color:e.colorError},[c]:{opacity:1}}},[`${t}-list-item-container`]:{transition:`opacity ${e.motionDurationSlow}, height ${e.motionDurationSlow}`,"&::before":{display:"table",width:0,height:0,content:'""'}}})}}})(i),(e=>{let{componentCls:t}=e,n=new q.Mo("uploadAnimateInlineIn",{from:{width:0,height:0,padding:0,opacity:0,margin:e.calc(e.marginXS).div(-2).equal()}}),r=new q.Mo("uploadAnimateInlineOut",{to:{width:0,height:0,padding:0,opacity:0,margin:e.calc(e.marginXS).div(-2).equal()}}),o=`${t}-animate-inline`;return[{[`${t}-wrapper`]:{[`${o}-appear, ${o}-enter, ${o}-leave`]:{animationDuration:e.motionDurationSlow,animationTimingFunction:e.motionEaseInOutCirc,animationFillMode:"forwards"},[`${o}-appear, ${o}-enter`]:{animationName:n},[`${o}-leave`]:{animationName:r}}},{[`${t}-wrapper`]:nw(e)},n,r]})(i),(e=>{let{componentCls:t}=e;return{[`${t}-rtl`]:{direction:"rtl"}}})(i),(0,lH.A)(i)]},e=>({actionsColor:e.colorTextDescription}));var Sl=n(31141),Sc=n(58464);let Ss=`__LIST_IGNORE_${Date.now()}__`,Su=p.forwardRef((e,t)=>{let{fileList:n,defaultFileList:r,onRemove:o,showUploadList:a=!0,listType:i="text",onPreview:l,onDownload:c,onChange:s,onDrop:u,previewFile:d,disabled:f,locale:m,iconRender:g,isImageUrl:v,progress:b,prefixCls:x,className:$,type:w="select",children:C,style:S,itemRender:k,maxCount:E,data:O={},multiple:M=!1,hasControlInside:N=!0,action:I="",accept:j="",supportServerRender:z=!0,rootClassName:R}=e,P=p.useContext(tp.A),T=null!=f?f:P,[D,L]=(0,rs.A)(r||[],{value:n,postState:e=>null!=e?e:[]}),[B,F]=p.useState("drop"),H=p.useRef(null),_=p.useRef(null);p.useMemo(()=>{let e=Date.now();(n||[]).forEach((t,n)=>{t.uid||Object.isFrozen(t)||(t.uid=`__AUTO__${e}_${n}__`)})},[n]);let W=(e,t,n)=>{let r=(0,y.A)(t),o=!1;1===E?r=r.slice(-1):E&&(o=r.length>E,r=r.slice(0,E)),(0,eN.flushSync)(()=>{L(r)});let a={file:e,fileList:r};n&&(a.event=n),(!o||"removed"===e.status||r.some(t=>t.uid===e.uid))&&(0,eN.flushSync)(()=>{null==s||s(a)})},q=e=>{let t=e.filter(e=>!e.file[Ss]);if(!t.length)return;let n=t.map(e=>(0,Sc.qu)(e.file)),r=(0,y.A)(D);n.forEach(e=>{r=(0,Sc.IC)(e,r)}),n.forEach((e,n)=>{let o=e;if(t[n].parsedFile)e.status="uploading";else{let t,{originFileObj:n}=e;try{t=new File([n],n.name,{type:n.type})}catch(e){(t=new Blob([n],{type:n.type})).name=n.name,t.lastModifiedDate=new Date,t.lastModified=new Date().getTime()}t.uid=e.uid,o=t}W(o,r)})},V=(e,t,n)=>{try{"string"==typeof e&&(e=JSON.parse(e))}catch(e){}if(!(0,Sc.cU)(t,D))return;let r=(0,Sc.qu)(t);r.status="done",r.percent=100,r.response=e,r.xhr=n;let o=(0,Sc.IC)(r,D);W(r,o)},K=(e,t)=>{if(!(0,Sc.cU)(t,D))return;let n=(0,Sc.qu)(t);n.status="uploading",n.percent=e.percent;let r=(0,Sc.IC)(n,D);W(n,r,e)},X=(e,t,n)=>{if(!(0,Sc.cU)(n,D))return;let r=(0,Sc.qu)(n);r.error=e,r.response=t,r.status="error";let o=(0,Sc.IC)(r,D);W(r,o)},Y=e=>{let t;Promise.resolve("function"==typeof o?o(e):o).then(n=>{var r;if(!1===n)return;let o=(0,Sc.iQ)(e,D);o&&(t=Object.assign(Object.assign({},e),{status:"removed"}),null==D||D.forEach(e=>{let n=void 0!==t.uid?"uid":"name";e[n]!==t[n]||Object.isFrozen(e)||(e.status="removed")}),null==(r=H.current)||r.abort(t),W(t,o))})},U=e=>{F(e.type),"drop"===e.type&&(null==u||u(e))};p.useImperativeHandle(t,()=>({onBatchStart:q,onSuccess:V,onProgress:K,onError:X,fileList:D,upload:H.current,nativeElement:_.current}));let{getPrefixCls:G,direction:Q,upload:Z}=p.useContext(A.QO),J=G("upload",x),ee=Object.assign(Object.assign({onBatchStart:q,onError:X,onProgress:K,onSuccess:V},e),{data:O,multiple:M,action:I,accept:j,supportServerRender:z,prefixCls:J,disabled:T,beforeUpload:(t,n)=>{var r,o,a,i;return r=void 0,o=void 0,a=void 0,i=function*(){let{beforeUpload:r,transformFile:o}=e,a=t;if(r){let e=yield r(t,n);if(!1===e)return!1;if(delete t[Ss],e===Ss)return Object.defineProperty(t,Ss,{value:!0,configurable:!0}),!1;"object"==typeof e&&e&&(a=e)}return o&&(a=yield o(a)),a},new(a||(a=Promise))(function(e,t){function n(e){try{c(i.next(e))}catch(e){t(e)}}function l(e){try{c(i.throw(e))}catch(e){t(e)}}function c(t){var r;t.done?e(t.value):((r=t.value)instanceof a?r:new a(function(e){e(r)})).then(n,l)}c((i=i.apply(r,o||[])).next())})},onChange:void 0,hasControlInside:N});delete ee.className,delete ee.style,(!C||T)&&delete ee.id;let et=`${J}-wrapper`,[en,er,eo]=Si(J,et),[ea]=(0,tI.A)("Upload",te.A.Upload),{showRemoveIcon:ei,showPreviewIcon:el,showDownloadIcon:ec,removeIcon:es,previewIcon:eu,downloadIcon:ed,extra:ef}="boolean"==typeof a?{}:a,ep=void 0===ei?!T:ei,em=(e,t)=>a?p.createElement(Sl.A,{prefixCls:J,listType:i,items:D,previewFile:d,onPreview:l,onDownload:c,onRemove:Y,showRemoveIcon:ep,showPreviewIcon:el,showDownloadIcon:ec,removeIcon:es,previewIcon:eu,downloadIcon:ed,iconRender:g,extra:ef,locale:Object.assign(Object.assign({},ea),m),isImageUrl:v,progress:b,appendAction:e,appendActionVisible:t,itemRender:k,disabled:T}):e,eg=h()(et,$,R,er,eo,null==Z?void 0:Z.className,{[`${J}-rtl`]:"rtl"===Q,[`${J}-picture-card-wrapper`]:"picture-card"===i,[`${J}-picture-circle-wrapper`]:"picture-circle"===i}),eh=Object.assign(Object.assign({},null==Z?void 0:Z.style),S);if("drag"===w){let e=h()(er,J,`${J}-drag`,{[`${J}-drag-uploading`]:D.some(e=>"uploading"===e.status),[`${J}-drag-hover`]:"dragover"===B,[`${J}-disabled`]:T,[`${J}-rtl`]:"rtl"===Q});return en(p.createElement("span",{className:eg,ref:_},p.createElement("div",{className:e,style:eh,onDrop:U,onDragOver:U,onDragLeave:U},p.createElement(Sa,Object.assign({},ee,{ref:H,className:`${J}-btn`}),p.createElement("div",{className:`${J}-drag-container`},C))),em()))}let ev=h()(J,`${J}-select`,{[`${J}-disabled`]:T,[`${J}-hidden`]:!C}),eb=p.createElement("div",{className:ev},p.createElement(Sa,Object.assign({},ee,{ref:H})));return en("picture-card"===i||"picture-circle"===i?p.createElement("span",{className:eg,ref:_},em(eb,!!C)):p.createElement("span",{className:eg,ref:_},eb,em()))});var Sd=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let Sf=p.forwardRef((e,t)=>{var{style:n,height:r,hasControlInside:o=!1}=e,a=Sd(e,["style","height","hasControlInside"]);return p.createElement(Su,Object.assign({ref:t,hasControlInside:o},a,{type:"drag",style:Object.assign(Object.assign({},n),{height:r})}))});Su.Dragger=Sf,Su.LIST_IGNORE=Ss;let Sp=Su;var Sm=n(11031);m().Component;var Sg={subtree:!0,childList:!0,attributeFilter:["style","class"]};function Sh(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,r=document.createElement("canvas"),o=r.getContext("2d"),a=e*n,i=t*n;return r.setAttribute("width",`${a}px`),r.setAttribute("height",`${i}px`),o.save(),[o,r,a,i]}let Sv={visibility:"visible !important"};function Sb(e,t){return e.size===t.size?e:t}let Sy={position:"relative",overflow:"hidden"},Sx=e=>{var t,n,r;let o,a,i,l,{zIndex:c=9,rotate:s=-22,width:u,height:d,image:f,content:g,font:v={},style:b,className:$,rootClassName:A,gap:w=[100,100],offset:C,children:S,inherit:k=!0}=e,E=Object.assign(Object.assign({},Sy),b),[,O]=(0,tb.Ay)(),{color:M=O.colorFill,fontSize:N=O.fontSizeLG,fontWeight:I="normal",fontStyle:j="normal",fontFamily:z="sans-serif",textAlign:R="center"}=v,[P=100,T=100]=w,D=P/2,L=T/2,B=null!=(t=null==C?void 0:C[0])?t:D,F=null!=(n=null==C?void 0:C[1])?n:L,H=m().useMemo(()=>{let e={zIndex:c,position:"absolute",left:0,top:0,width:"100%",height:"100%",pointerEvents:"none",backgroundRepeat:"repeat"},t=B-D,n=F-L;return t>0&&(e.left=`${t}px`,e.width=`calc(100% - ${t}px)`,t=0),n>0&&(e.top=`${n}px`,e.height=`calc(100% - ${n}px)`,n=0),e.backgroundPosition=`${t}px ${n}px`,e},[c,B,D,F,L]),[_,W]=m().useState(),[q,V]=m().useState(new Set),K=m().useMemo(()=>[].concat(_?[_]:[],(0,y.A)(Array.from(q))),[_,q]),X=function(e,t,n,r,o,a,i,l){let[c,s,u,d]=Sh(r,o,n);if(e instanceof HTMLImageElement)c.drawImage(e,0,0,u,d);else{let{color:t,fontSize:r,fontStyle:i,fontWeight:l,fontFamily:s,textAlign:d}=a,f=Number(r)*n;c.font=`${i} normal ${l} ${f}px/${o}px ${s}`,c.fillStyle=t,c.textAlign=d,c.textBaseline="top";let p=(0,b2.A)(e);null==p||p.forEach((e,t)=>{c.fillText(null!=e?e:"",u/2,t*(f+3*n))})}let f=Math.PI/180*Number(t),p=Math.max(r,o),[m,g,h]=Sh(p,p,n);m.translate(h/2,h/2),m.rotate(f),u>0&&d>0&&m.drawImage(s,-u/2,-d/2);let v=0,b=0,y=0,x=0,$=u/2,A=d/2;[[0-$,0-A],[0+$,0-A],[0+$,0+A],[0-$,0+A]].forEach(e=>{let[t,n]=e,[r,o]=[t*Math.cos(f)-n*Math.sin(f),t*Math.sin(f)+n*Math.cos(f)];v=Math.min(v,r),b=Math.max(b,r),y=Math.min(y,o),x=Math.max(x,o)});let w=v+h/2,C=y+h/2,S=b-v,k=x-y,E=i*n,O=l*n,M=(S+E)*2,N=k+O,[I,j]=Sh(M,N);function z(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;I.drawImage(g,w,C,S,k,e,t,S,k)}return z(),z(S+E,-k/2-O/2),z(S+E,k/2+O/2),[j.toDataURL(),M/n,N/n]},[Y,U]=m().useState(null),G=(r=()=>{let e=document.createElement("canvas").getContext("2d");if(e){let t=window.devicePixelRatio||1,[n,r]=(e=>{let t=120,n=64;if(!f&&e.measureText){e.font=`${Number(N)}px ${z}`;let r=(0,b2.A)(g),o=r.map(t=>{let n=e.measureText(t);return[n.width,n.fontBoundingBoxAscent+n.fontBoundingBoxDescent]});t=Math.ceil(Math.max.apply(Math,(0,y.A)(o.map(e=>e[0])))),n=Math.ceil(Math.max.apply(Math,(0,y.A)(o.map(e=>e[1]))))*r.length+(r.length-1)*3}return[null!=u?u:t,null!=d?d:n]})(e),o=e=>{let[o,a]=X(e||"",s,t,n,r,{color:M,fontSize:N,fontStyle:j,fontWeight:I,fontFamily:z,textAlign:R},P,T);U([o,a])};if(f){let e=new Image;e.onload=()=>{o(e)},e.onerror=()=>{o(g)},e.crossOrigin="anonymous",e.referrerPolicy="no-referrer",e.src=f}else o(g)}},o=m().useRef(!1),a=m().useRef(null),i=(0,ea.A)(r),()=>{o.current||(o.current=!0,i(),a.current=(0,x.A)(()=>{o.current=!1}))}),[Q,Z,J]=(l=p.useRef(new Map),[(e,t,n)=>{if(n){var r;if(!l.current.get(n)){let e=document.createElement("div");l.current.set(n,e)}let o=l.current.get(n);o.setAttribute("style",Object.keys(r=Object.assign(Object.assign(Object.assign({},H),{backgroundImage:`url('${e}')`,backgroundSize:`${Math.floor(t)}px`}),Sv)).map(e=>`${e.replace(/([A-Z])/g,"-$1").toLowerCase()}: ${r[e]};`).join(" ")),o.removeAttribute("class"),o.parentElement!==n&&n.append(o)}return l.current.get(n)},e=>{let t=l.current.get(e);t&&e&&e.removeChild(t),l.current.delete(e)},e=>Array.from(l.current.values()).includes(e)]);(0,p.useEffect)(()=>{Y&&K.forEach(e=>{Q(Y[0],Y[1],e)})},[Y,K]),function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Sg;p.useEffect(function(){if((0,tu.A)()&&e){var r,o=Array.isArray(e)?e:[e];return"MutationObserver"in window&&(r=new MutationObserver(t),o.forEach(function(e){r.observe(e,n)})),function(){var e,t;null==(e=r)||e.takeRecords(),null==(t=r)||t.disconnect()}}},[n,e])}(K,(0,ea.A)(e=>{e.forEach(e=>{let t;if(t=!1,e.removedNodes.length&&(t=Array.from(e.removedNodes).some(e=>J(e))),"attributes"===e.type&&J(e.target)&&(t=!0),t)G();else if(e.target===_&&"style"===e.attributeName){let e=Object.keys(Sy);for(let t=0;t({add:e=>{V(t=>{let n=new Set(t);return n.add(e),Sb(t,n)})},remove:e=>{Z(e),V(t=>{let n=new Set(t);return n.delete(e),Sb(t,n)})}}),[]),et=k?m().createElement(nm.Provider,{value:ee},S):S;return m().createElement("div",{ref:W,className:h()($,A),style:E},et)},S$=(0,p.forwardRef)((e,t)=>{let{prefixCls:n,className:r,children:o,size:a,style:i={}}=e,l=h()(`${n}-panel`,{[`${n}-panel-hidden`]:0===a},r),c=void 0!==a;return m().createElement("div",{ref:t,className:l,style:Object.assign(Object.assign({},i),{flexBasis:c?a:"auto",flexGrow:+!c})},o)});var SA=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function Sw(e){return Number(e.slice(0,-1))/100}function SC(e){return"string"==typeof e&&e.endsWith("%")}function SS(e){return"number"!=typeof e||Number.isNaN(e)?0:Math.round(e)}let Sk=e=>{let{prefixCls:t,vertical:n,index:r,active:o,ariaNow:a,ariaMin:i,ariaMax:l,resizable:c,startCollapsible:s,endCollapsible:u,onOffsetStart:d,onOffsetUpdate:f,onOffsetEnd:g,onCollapse:v}=e,b=`${t}-bar`,[y,x]=(0,p.useState)(null);m().useEffect(()=>{if(y){let e=e=>{let{pageX:t,pageY:n}=e;f(r,t-y[0],n-y[1])},t=()=>{x(null),g()},n=e=>{if(1===e.touches.length){let t=e.touches[0];f(r,t.pageX-y[0],t.pageY-y[1])}},o=()=>{x(null),g()};return window.addEventListener("touchmove",n),window.addEventListener("touchend",o),window.addEventListener("mousemove",e),window.addEventListener("mouseup",t),()=>{window.removeEventListener("mousemove",e),window.removeEventListener("mouseup",t),window.removeEventListener("touchmove",n),window.removeEventListener("touchend",o)}}},[y]);let $=n?pD:l$,A=n?ao:io.A;return m().createElement("div",{className:b,role:"separator","aria-valuenow":SS(a),"aria-valuemin":SS(i),"aria-valuemax":SS(l)},m().createElement("div",{className:h()(`${b}-dragger`,{[`${b}-dragger-disabled`]:!c,[`${b}-dragger-active`]:o}),onMouseDown:e=>{c&&e.currentTarget&&(x([e.pageX,e.pageY]),d(r))},onTouchStart:e=>{if(c&&1===e.touches.length){let t=e.touches[0];x([t.pageX,t.pageY]),d(r)}}}),s&&m().createElement("div",{className:h()(`${b}-collapse-bar`,`${b}-collapse-bar-start`),onClick:()=>v(r,"start")},m().createElement($,{className:h()(`${b}-collapse-icon`,`${b}-collapse-start`)})),u&&m().createElement("div",{className:h()(`${b}-collapse-bar`,`${b}-collapse-bar-end`),onClick:()=>v(r,"end")},m().createElement(A,{className:h()(`${b}-collapse-icon`,`${b}-collapse-end`)})))},SE={position:"absolute",top:"50%",left:{_skip_check_:!0,value:"50%"},transform:"translate(-50%, -50%)"},SO=(0,w.OF)("Splitter",e=>[(e=>{let{componentCls:t,colorFill:n,splitBarDraggableSize:r,splitBarSize:o,splitTriggerSize:a,controlItemBgHover:i,controlItemBgActive:l,controlItemBgActiveHover:c}=e,s=`${t}-bar`,u=`${t}-mask`,d=`${t}-panel`,f=e.calc(a).div(2).equal();return{[t]:Object.assign(Object.assign(Object.assign({},(0,V.dF)(e)),{display:"flex",width:"100%",height:"100%",alignItems:"stretch",[`> ${s}`]:{flex:"none",position:"relative",userSelect:"none",[`${s}-dragger`]:Object.assign(Object.assign({},SE),{zIndex:1,"&::before":Object.assign({content:'""',background:i},SE),"&::after":Object.assign({content:'""',background:n},SE),[`&:hover:not(${s}-dragger-active)`]:{"&::before":{background:l}},"&-active":{zIndex:2,"&::before":{background:c}},[`&-disabled${s}-dragger`]:{zIndex:0,"&, &:hover, &-active":{cursor:"default","&::before":{background:i}},"&::after":{display:"none"}}}),[`${s}-collapse-bar`]:Object.assign(Object.assign({},SE),{zIndex:e.zIndexPopupBase,background:i,fontSize:e.fontSizeSM,borderRadius:e.borderRadiusXS,color:e.colorText,cursor:"pointer",opacity:0,display:"flex",alignItems:"center",justifyContent:"center","&:hover":{background:l},"&:active":{background:c}}),"&:hover, &:active":{[`${s}-collapse-bar`]:{opacity:1}}},[u]:{position:"fixed",zIndex:e.zIndexPopupBase,inset:0,"&-horizontal":{cursor:"col-resize"},"&-vertical":{cursor:"row-resize"}},"&-horizontal":{flexDirection:"row",[`> ${s}`]:{width:0,[`${s}-dragger`]:{cursor:"col-resize",height:"100%",width:a,"&::before":{height:"100%",width:o},"&::after":{height:r,width:o}},[`${s}-collapse-bar`]:{width:e.fontSizeSM,height:e.controlHeightSM,"&-start":{left:{_skip_check_:!0,value:"auto"},right:{_skip_check_:!0,value:f},transform:"translateY(-50%)"},"&-end":{left:{_skip_check_:!0,value:f},right:{_skip_check_:!0,value:"auto"},transform:"translateY(-50%)"}}}},"&-vertical":{flexDirection:"column",[`> ${s}`]:{height:0,[`${s}-dragger`]:{cursor:"row-resize",width:"100%",height:a,"&::before":{width:"100%",height:o},"&::after":{width:r,height:o}},[`${s}-collapse-bar`]:{height:e.fontSizeSM,width:e.controlHeightSM,"&-start":{top:"auto",bottom:f,transform:"translateX(-50%)"},"&-end":{top:f,bottom:"auto",transform:"translateX(-50%)"}}}},[d]:{overflow:"auto",padding:"0 1px",scrollbarWidth:"thin",boxSizing:"border-box","&-hidden":{padding:0,overflow:"hidden"},[`&:has(${t}:only-child)`]:{overflow:"hidden"}}}),(e=>{let{componentCls:t}=e;return{[`&-rtl${t}-horizontal`]:{[`> ${t}-bar`]:{[`${t}-bar-collapse-previous`]:{insetInlineEnd:0,insetInlineStart:"unset"},[`${t}-bar-collapse-next`]:{insetInlineEnd:"unset",insetInlineStart:0}}},[`&-rtl${t}-vertical`]:{[`> ${t}-bar`]:{[`${t}-bar-collapse-previous`]:{insetInlineEnd:"50%",insetInlineStart:"unset"},[`${t}-bar-collapse-next`]:{insetInlineEnd:"50%",insetInlineStart:"unset"}}}}})(e))}})(e)],e=>{var t;let n=e.splitBarSize||2,r=e.splitTriggerSize||6,o=e.resizeSpinnerSize||20;return{splitBarSize:n,splitTriggerSize:r,splitBarDraggableSize:null!=(t=e.splitBarDraggableSize)?t:o,resizeSpinnerSize:o}}),SM=e=>{let{prefixCls:t,className:n,style:r,layout:o="horizontal",children:a,rootClassName:i,onResizeStart:l,onResize:c,onResizeEnd:s}=e,{getPrefixCls:u,direction:d,splitter:f}=m().useContext(A.QO),g=u("splitter",t),b=(0,eh.A)(g),[x,$,w]=SO(g,b),C="vertical"===o,S="rtl"===d,k=!C&&S,E=p.useMemo(()=>(0,rc.A)(a).filter(p.isValidElement).map(e=>{let{props:t}=e,{collapsible:n}=t;return Object.assign(Object.assign({},SA(t,["collapsible"])),{collapsible:function(e){if(e&&"object"==typeof e)return e;let t=!!e;return{start:t,end:t}}(n)})}),[a]),[O,M]=(0,p.useState)(),[N,I,j,z,R,P]=function(e,t){let n=e.map(e=>e.size),r=e.length,o=t||0,a=e=>e*o,[i,l]=m().useState(()=>e.map(e=>e.defaultSize)),c=m().useMemo(()=>{var e;let t=[];for(let o=0;o{let e=[],t=0;for(let n=0;ne+(t||0),0);if(n>1||!t){let t=1/n;e=e.map(e=>void 0===e?0:e*t)}else{let r=(1-n)/t;e=e.map(e=>void 0===e?r:e)}return e},[c,o]),u=m().useMemo(()=>s.map(a),[s,o]),d=m().useMemo(()=>e.map(e=>SC(e.min)?Sw(e.min):(e.min||0)/o),[e,o]),f=m().useMemo(()=>e.map(e=>SC(e.max)?Sw(e.max):(e.max||o)/o),[e,o]);return[m().useMemo(()=>t?u:c,[u,t]),u,s,d,f,l]}(E,O),T=p.useMemo(()=>{let e=[];for(let t=0;t0||d.start&&0===a&&o>0,m=d.start&&a>0||c.end&&0===o&&a>0;e[t]={resizable:f,startCollapsible:!!p,endCollapsible:!!m}}return e},[I,E]),[D,L,B,F,H]=function(e,t,n,r,o){let a=e.map(e=>[e.min,e.max]),i=r||0,l=e=>e*i;function c(e,t){return"string"==typeof e?l(Sw(e)):null!=e?e:t}let[s,u]=p.useState([]),[d,f]=p.useState(null);return[e=>{u(n.map(l)),f({index:e,confirmed:!1})},(e,n)=>{var r;let l=null;if((!d||!d.confirmed)&&0!==n){if(n>0)l=e,f({index:e,confirmed:!0});else for(let n=e;n>=0;n-=1)if(s[n]>0&&t[n].resizable){l=n,f({index:n,confirmed:!0});break}}let u=null!=(r=null!=l?l:null==d?void 0:d.index)?r:e,p=(0,y.A)(s),m=u+1,g=c(a[u][0],0),h=c(a[m][0],0),v=c(a[u][1],i),b=c(a[m][1],i),x=n;return p[u]+xv&&(x=v-p[u]),p[m]-x>b&&(x=p[m]-b),p[u]+=x,p[m]-=x,o(p),p},()=>{f(null)},(e,t)=>{let r=n.map(l),s="start"===t?e:e+1,u="start"===t?e+1:e,d=r[s],f=r[u];if(0!==d&&0!==f)r[s]=0,r[u]+=d;else{let e=d+f,t=c(a[s][0],0),n=c(a[s][1],i),o=c(a[u][0],0),l=Math.max(t,e-c(a[u][1],i)),p=(Math.min(n,e-o)-l)/2;r[s]-=p,r[u]+=p}return o(r),r},null==d?void 0:d.index]}(E,T,j,O,P),_=(0,ea.A)(e=>{D(e),null==l||l(I)}),W=(0,ea.A)((e,t)=>{let n=L(e,t);null==c||c(n)}),q=(0,ea.A)(()=>{B(),null==s||s(I)}),V=(0,ea.A)((e,t)=>{let n=F(e,t);null==c||c(n),null==s||s(n)}),K=h()(g,n,`${g}-${o}`,{[`${g}-rtl`]:S},i,null==f?void 0:f.className,w,b,$),X=`${g}-mask`,Y=m().useMemo(()=>{let e=[],t=0;for(let n=0;n{let{offsetWidth:t,offsetHeight:n}=e,r=C?n:t;0!==r&&M(r)}},m().createElement("div",{style:U,className:K},E.map((e,t)=>{let n=m().createElement(S$,Object.assign({},e,{prefixCls:g,size:N[t]})),r=null,o=T[t];if(o){let e=(Y[t-1]||0)+z[t],n=(Y[t+1]||100)-R[t+1],a=(Y[t-1]||0)+R[t],i=(Y[t+1]||100)-z[t+1];r=m().createElement(Sk,{index:t,active:H===t,prefixCls:g,vertical:C,resizable:o.resizable,ariaNow:100*Y[t],ariaMin:100*Math.max(e,n),ariaMax:100*Math.min(a,i),startCollapsible:o.startCollapsible,endCollapsible:o.endCollapsible,onOffsetStart:_,onOffsetUpdate:(e,t,n)=>{let r=C?n:t;k&&(r=-r),W(e,r)},onOffsetEnd:q,onCollapse:V})}return m().createElement(m().Fragment,{key:`split-panel-${t}`},n,r)}),"number"==typeof H&&m().createElement("div",{"aria-hidden":!0,className:h()(X,`${X}-${o}`)}))))};SM.Panel=()=>null;let SN=SM},88592(e,t,n){"use strict";n.d(t,{A:()=>b});var r=n(47867),o=n(8651),a=n.n(o),i=n(45903),l=n(96311),c=n(58182),s=n(62279),u=n(98119),d=n(20934),f=n(829),p=n(94241),m=n(90124),g=n(11980),h=n(81594),v=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let b=(0,r.forwardRef)((e,t)=>{var n,o;let{prefixCls:b,bordered:y=!0,size:x,disabled:$,status:A,allowClear:w,classNames:C,rootClassName:S,className:k,style:E,styles:O,variant:M}=e,N=v(e,["prefixCls","bordered","size","disabled","status","allowClear","classNames","rootClassName","className","style","styles","variant"]),{getPrefixCls:I,direction:j,textArea:z}=r.useContext(s.QO),R=(0,f.A)(x),P=r.useContext(u.A),{status:T,hasFeedback:D,feedbackIcon:L}=r.useContext(p.$W),B=(0,c.v)(T,A),F=r.useRef(null);r.useImperativeHandle(t,()=>{var e;return{resizableTextArea:null==(e=F.current)?void 0:e.resizableTextArea,focus:e=>{var t,n;(0,g.F4)(null==(n=null==(t=F.current)?void 0:t.resizableTextArea)?void 0:n.textArea,e)},blur:()=>{var e;return null==(e=F.current)?void 0:e.blur()}}});let H=I("input",b),_=(0,d.A)(H),[W,q,V]=(0,h.Ay)(H,_),[K,X]=(0,m.A)("textArea",M,y),Y=(0,l.A)(null!=w?w:null==z?void 0:z.allowClear);return W(r.createElement(i.A,Object.assign({autoComplete:null==z?void 0:z.autoComplete},N,{style:Object.assign(Object.assign({},null==z?void 0:z.style),E),styles:Object.assign(Object.assign({},null==z?void 0:z.styles),O),disabled:null!=$?$:P,allowClear:Y,className:a()(V,_,k,S,null==z?void 0:z.className),classNames:Object.assign(Object.assign(Object.assign({},C),null==z?void 0:z.classNames),{textarea:a()({[`${H}-sm`]:"small"===R,[`${H}-lg`]:"large"===R},q,null==C?void 0:C.textarea,null==(n=null==z?void 0:z.classNames)?void 0:n.textarea),variant:a()({[`${H}-${K}`]:X},(0,c.L)(H,B)),affixWrapper:a()(`${H}-textarea-affix-wrapper`,{[`${H}-affix-wrapper-rtl`]:"rtl"===j,[`${H}-affix-wrapper-sm`]:"small"===R,[`${H}-affix-wrapper-lg`]:"large"===R,[`${H}-textarea-show-count`]:e.showCount||(null==(o=e.count)?void 0:o.show)},q)}),prefixCls:H,suffix:D&&r.createElement("span",{className:`${H}-textarea-suffix`},L),ref:F})))})},81594(e,t,n){"use strict";n.d(t,{Ay:()=>g,BZ:()=>f,XM:()=>m,j_:()=>u,wj:()=>p});var r=n(96191),o=n(25905),a=n(55974),i=n(37358),l=n(10224),c=n(44335),s=n(89222);let u=e=>({"&::-moz-placeholder":{opacity:1},"&::placeholder":{color:e,userSelect:"none"},"&:placeholder-shown":{textOverflow:"ellipsis"}}),d=e=>{let{paddingBlockLG:t,lineHeightLG:n,borderRadiusLG:o,paddingInlineLG:a}=e;return{padding:`${(0,r.zA)(t)} ${(0,r.zA)(a)}`,fontSize:e.inputFontSizeLG,lineHeight:n,borderRadius:o}},f=e=>({padding:`${(0,r.zA)(e.paddingBlockSM)} ${(0,r.zA)(e.paddingInlineSM)}`,fontSize:e.inputFontSizeSM,borderRadius:e.borderRadiusSM}),p=e=>Object.assign(Object.assign({position:"relative",display:"inline-block",width:"100%",minWidth:0,padding:`${(0,r.zA)(e.paddingBlock)} ${(0,r.zA)(e.paddingInline)}`,color:e.colorText,fontSize:e.inputFontSize,lineHeight:e.lineHeight,borderRadius:e.borderRadius,transition:`all ${e.motionDurationMid}`},u(e.colorTextPlaceholder)),{"textarea&":{maxWidth:"100%",height:"auto",minHeight:e.controlHeight,lineHeight:e.lineHeight,verticalAlign:"bottom",transition:`all ${e.motionDurationSlow}, height 0s`,resize:"vertical"},"&-lg":Object.assign({},d(e)),"&-sm":Object.assign({},f(e)),"&-rtl, &-textarea-rtl":{direction:"rtl"}}),m=e=>{let{componentCls:t,antCls:n}=e;return{position:"relative",display:"table",width:"100%",borderCollapse:"separate",borderSpacing:0,"&[class*='col-']":{paddingInlineEnd:e.paddingXS,"&:last-child":{paddingInlineEnd:0}},[`&-lg ${t}, &-lg > ${t}-group-addon`]:Object.assign({},d(e)),[`&-sm ${t}, &-sm > ${t}-group-addon`]:Object.assign({},f(e)),[`&-lg ${n}-select-single ${n}-select-selector`]:{height:e.controlHeightLG},[`&-sm ${n}-select-single ${n}-select-selector`]:{height:e.controlHeightSM},[`> ${t}`]:{display:"table-cell","&:not(:first-child):not(:last-child)":{borderRadius:0}},[`${t}-group`]:{"&-addon, &-wrap":{display:"table-cell",width:1,whiteSpace:"nowrap",verticalAlign:"middle","&:not(:first-child):not(:last-child)":{borderRadius:0}},"&-wrap > *":{display:"block !important"},"&-addon":{position:"relative",padding:`0 ${(0,r.zA)(e.paddingInline)}`,color:e.colorText,fontWeight:"normal",fontSize:e.inputFontSize,textAlign:"center",borderRadius:e.borderRadius,transition:`all ${e.motionDurationSlow}`,lineHeight:1,[`${n}-select`]:{margin:`${(0,r.zA)(e.calc(e.paddingBlock).add(1).mul(-1).equal())} ${(0,r.zA)(e.calc(e.paddingInline).mul(-1).equal())}`,[`&${n}-select-single:not(${n}-select-customize-input):not(${n}-pagination-size-changer)`]:{[`${n}-select-selector`]:{backgroundColor:"inherit",border:`${(0,r.zA)(e.lineWidth)} ${e.lineType} transparent`,boxShadow:"none"}}},[`${n}-cascader-picker`]:{margin:`-9px ${(0,r.zA)(e.calc(e.paddingInline).mul(-1).equal())}`,backgroundColor:"transparent",[`${n}-cascader-input`]:{textAlign:"start",border:0,boxShadow:"none"}}}},[t]:{width:"100%",marginBottom:0,textAlign:"inherit","&:focus":{zIndex:1,borderInlineEndWidth:1},"&:hover":{zIndex:1,borderInlineEndWidth:1,[`${t}-search-with-button &`]:{zIndex:0}}},[`> ${t}:first-child, ${t}-group-addon:first-child`]:{borderStartEndRadius:0,borderEndEndRadius:0,[`${n}-select ${n}-select-selector`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`> ${t}-affix-wrapper`]:{[`&:not(:first-child) ${t}`]:{borderStartStartRadius:0,borderEndStartRadius:0},[`&:not(:last-child) ${t}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`> ${t}:last-child, ${t}-group-addon:last-child`]:{borderStartStartRadius:0,borderEndStartRadius:0,[`${n}-select ${n}-select-selector`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`${t}-affix-wrapper`]:{"&:not(:last-child)":{borderStartEndRadius:0,borderEndEndRadius:0,[`${t}-search &`]:{borderStartStartRadius:e.borderRadius,borderEndStartRadius:e.borderRadius}},[`&:not(:first-child), ${t}-search &:not(:first-child)`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`&${t}-group-compact`]:Object.assign(Object.assign({display:"block"},(0,o.t6)()),{[`${t}-group-addon, ${t}-group-wrap, > ${t}`]:{"&:not(:first-child):not(:last-child)":{borderInlineEndWidth:e.lineWidth,"&:hover, &:focus":{zIndex:1}}},"& > *":{display:"inline-flex",float:"none",verticalAlign:"top",borderRadius:0},[` - & > ${t}-affix-wrapper, - & > ${t}-number-affix-wrapper, - & > ${n}-picker-range - `]:{display:"inline-flex"},"& > *:not(:last-child)":{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal(),borderInlineEndWidth:e.lineWidth},[t]:{float:"none"},[`& > ${n}-select > ${n}-select-selector, - & > ${n}-select-auto-complete ${t}, - & > ${n}-cascader-picker ${t}, - & > ${t}-group-wrapper ${t}`]:{borderInlineEndWidth:e.lineWidth,borderRadius:0,"&:hover, &:focus":{zIndex:1}},[`& > ${n}-select-focused`]:{zIndex:1},[`& > ${n}-select > ${n}-select-arrow`]:{zIndex:1},[`& > *:first-child, - & > ${n}-select:first-child > ${n}-select-selector, - & > ${n}-select-auto-complete:first-child ${t}, - & > ${n}-cascader-picker:first-child ${t}`]:{borderStartStartRadius:e.borderRadius,borderEndStartRadius:e.borderRadius},[`& > *:last-child, - & > ${n}-select:last-child > ${n}-select-selector, - & > ${n}-cascader-picker:last-child ${t}, - & > ${n}-cascader-picker-focused:last-child ${t}`]:{borderInlineEndWidth:e.lineWidth,borderStartEndRadius:e.borderRadius,borderEndEndRadius:e.borderRadius},[`& > ${n}-select-auto-complete ${t}`]:{verticalAlign:"top"},[`${t}-group-wrapper + ${t}-group-wrapper`]:{marginInlineStart:e.calc(e.lineWidth).mul(-1).equal(),[`${t}-affix-wrapper`]:{borderRadius:0}},[`${t}-group-wrapper:not(:last-child)`]:{[`&${t}-search > ${t}-group`]:{[`& > ${t}-group-addon > ${t}-search-button`]:{borderRadius:0},[`& > ${t}`]:{borderStartStartRadius:e.borderRadius,borderStartEndRadius:0,borderEndEndRadius:0,borderEndStartRadius:e.borderRadius}}}})}},g=(0,i.OF)("Input",e=>{let t=(0,l.oX)(e,(0,c.C)(e));return[(e=>{let{componentCls:t,controlHeightSM:n,lineWidth:r,calc:a}=e,i=a(n).sub(a(r).mul(2)).sub(16).div(2).equal();return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,o.dF)(e)),p(e)),(0,s.Eb)(e)),(0,s.sA)(e)),(0,s.lB)(e)),{'&[type="color"]':{height:e.controlHeight,[`&${t}-lg`]:{height:e.controlHeightLG},[`&${t}-sm`]:{height:n,paddingTop:i,paddingBottom:i}},'&[type="search"]::-webkit-search-cancel-button, &[type="search"]::-webkit-search-decoration':{"-webkit-appearance":"none"}})}})(t),(e=>{let{componentCls:t,paddingLG:n}=e,r=`${t}-textarea`;return{[r]:{position:"relative","&-show-count":{[`> ${t}`]:{height:"100%"},[`${t}-data-count`]:{position:"absolute",bottom:e.calc(e.fontSize).mul(e.lineHeight).mul(-1).equal(),insetInlineEnd:0,color:e.colorTextDescription,whiteSpace:"nowrap",pointerEvents:"none"}},[` - &-allow-clear > ${t}, - &-affix-wrapper${r}-has-feedback ${t} - `]:{paddingInlineEnd:n},[`&-affix-wrapper${t}-affix-wrapper`]:{padding:0,[`> textarea${t}`]:{fontSize:"inherit",border:"none",outline:"none",background:"transparent","&:focus":{boxShadow:"none !important"}},[`${t}-suffix`]:{margin:0,"> *:not(:last-child)":{marginInline:0},[`${t}-clear-icon`]:{position:"absolute",insetInlineEnd:e.paddingInline,insetBlockStart:e.paddingXS},[`${r}-suffix`]:{position:"absolute",top:0,insetInlineEnd:e.paddingInline,bottom:0,zIndex:1,display:"inline-flex",alignItems:"center",margin:"auto",pointerEvents:"none"}}},[`&-affix-wrapper${t}-affix-wrapper-sm`]:{[`${t}-suffix`]:{[`${t}-clear-icon`]:{insetInlineEnd:e.paddingInlineSM}}}}}})(t),(e=>{let{componentCls:t,inputAffixPadding:n,colorTextDescription:o,motionDurationSlow:a,colorIcon:i,colorIconHover:l,iconCls:c}=e,s=`${t}-affix-wrapper`,u=`${t}-affix-wrapper-disabled`;return{[s]:Object.assign(Object.assign(Object.assign(Object.assign({},p(e)),{display:"inline-flex",[`&:not(${t}-disabled):hover`]:{zIndex:1,[`${t}-search-with-button &`]:{zIndex:0}},"&-focused, &:focus":{zIndex:1},[`> input${t}`]:{padding:0},[`> input${t}, > textarea${t}`]:{fontSize:"inherit",border:"none",borderRadius:0,outline:"none",background:"transparent",color:"inherit","&::-ms-reveal":{display:"none"},"&:focus":{boxShadow:"none !important"}},"&::before":{display:"inline-block",width:0,visibility:"hidden",content:'"\\a0"'},[t]:{"&-prefix, &-suffix":{display:"flex",flex:"none",alignItems:"center","> *:not(:last-child)":{marginInlineEnd:e.paddingXS}},"&-show-count-suffix":{color:o},"&-show-count-has-suffix":{marginInlineEnd:e.paddingXXS},"&-prefix":{marginInlineEnd:n},"&-suffix":{marginInlineStart:n}}}),(e=>{let{componentCls:t}=e;return{[`${t}-clear-icon`]:{margin:0,lineHeight:0,color:e.colorTextQuaternary,fontSize:e.fontSizeIcon,verticalAlign:-1,cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"&:hover":{color:e.colorTextTertiary},"&:active":{color:e.colorText},"&-hidden":{visibility:"hidden"},"&-has-suffix":{margin:`0 ${(0,r.zA)(e.inputAffixPadding)}`}}}})(e)),{[`${c}${t}-password-icon`]:{color:i,cursor:"pointer",transition:`all ${a}`,"&:hover":{color:l}}}),[u]:{[`${c}${t}-password-icon`]:{color:i,cursor:"not-allowed","&:hover":{color:i}}}}})(t),(e=>{let{componentCls:t,borderRadiusLG:n,borderRadiusSM:r}=e;return{[`${t}-group`]:Object.assign(Object.assign(Object.assign({},(0,o.dF)(e)),m(e)),{"&-rtl":{direction:"rtl"},"&-wrapper":Object.assign(Object.assign(Object.assign({display:"inline-block",width:"100%",textAlign:"start",verticalAlign:"top","&-rtl":{direction:"rtl"},"&-lg":{[`${t}-group-addon`]:{borderRadius:n,fontSize:e.inputFontSizeLG}},"&-sm":{[`${t}-group-addon`]:{borderRadius:r}}},(0,s.nm)(e)),(0,s.Vy)(e)),{[`&:not(${t}-compact-first-item):not(${t}-compact-last-item)${t}-compact-item`]:{[`${t}, ${t}-group-addon`]:{borderRadius:0}},[`&:not(${t}-compact-last-item)${t}-compact-first-item`]:{[`${t}, ${t}-group-addon`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&:not(${t}-compact-first-item)${t}-compact-last-item`]:{[`${t}, ${t}-group-addon`]:{borderStartStartRadius:0,borderEndStartRadius:0}},[`&:not(${t}-compact-last-item)${t}-compact-item`]:{[`${t}-affix-wrapper`]:{borderStartEndRadius:0,borderEndEndRadius:0}}})})}})(t),(e=>{let{componentCls:t,antCls:n}=e,r=`${t}-search`;return{[r]:{[t]:{"&:hover, &:focus":{[`+ ${t}-group-addon ${r}-button:not(${n}-btn-primary)`]:{borderInlineStartColor:e.colorPrimaryHover}}},[`${t}-affix-wrapper`]:{height:e.controlHeight,borderRadius:0},[`${t}-lg`]:{lineHeight:e.calc(e.lineHeightLG).sub(2e-4).equal()},[`> ${t}-group`]:{[`> ${t}-group-addon:last-child`]:{insetInlineStart:-1,padding:0,border:0,[`${r}-button`]:{marginInlineEnd:-1,borderStartStartRadius:0,borderEndStartRadius:0,boxShadow:"none"},[`${r}-button:not(${n}-btn-primary)`]:{color:e.colorTextDescription,"&:hover":{color:e.colorPrimaryHover},"&:active":{color:e.colorPrimaryActive},[`&${n}-btn-loading::before`]:{insetInlineStart:0,insetInlineEnd:0,insetBlockStart:0,insetBlockEnd:0}}}},[`${r}-button`]:{height:e.controlHeight,"&:hover, &:focus":{zIndex:1}},"&-large":{[`${t}-affix-wrapper, ${r}-button`]:{height:e.controlHeightLG}},"&-small":{[`${t}-affix-wrapper, ${r}-button`]:{height:e.controlHeightSM}},"&-rtl":{direction:"rtl"},[`&${t}-compact-item`]:{[`&:not(${t}-compact-last-item)`]:{[`${t}-group-addon`]:{[`${t}-search-button`]:{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal(),borderRadius:0}}},[`&:not(${t}-compact-first-item)`]:{[`${t},${t}-affix-wrapper`]:{borderRadius:0}},[`> ${t}-group-addon ${t}-search-button, - > ${t}, - ${t}-affix-wrapper`]:{"&:hover, &:focus, &:active":{zIndex:2}},[`> ${t}-affix-wrapper-focused`]:{zIndex:2}}}}})(t),(e=>{let{componentCls:t}=e;return{[`${t}-out-of-range`]:{[`&, & input, & textarea, ${t}-show-count-suffix, ${t}-data-count`]:{color:e.colorError}}}})(t),(0,a.G)(t)]},c.b,{resetFont:!1})},44335(e,t,n){"use strict";n.d(t,{C:()=>o,b:()=>a});var r=n(10224);function o(e){return(0,r.oX)(e,{inputAffixPadding:e.paddingXXS})}let a=e=>{let{controlHeight:t,fontSize:n,lineHeight:r,lineWidth:o,controlHeightSM:a,controlHeightLG:i,fontSizeLG:l,lineHeightLG:c,paddingSM:s,controlPaddingHorizontalSM:u,controlPaddingHorizontal:d,colorFillAlter:f,colorPrimaryHover:p,colorPrimary:m,controlOutlineWidth:g,controlOutline:h,colorErrorOutline:v,colorWarningOutline:b,colorBgContainer:y}=e;return{paddingBlock:Math.max(Math.round((t-n*r)/2*10)/10-o,0),paddingBlockSM:Math.max(Math.round((a-n*r)/2*10)/10-o,0),paddingBlockLG:Math.ceil((i-l*c)/2*10)/10-o,paddingInline:s-o,paddingInlineSM:u-o,paddingInlineLG:d-o,addonBg:f,activeBorderColor:m,hoverBorderColor:p,activeShadow:`0 0 0 ${g}px ${h}`,errorActiveShadow:`0 0 0 ${g}px ${v}`,warningActiveShadow:`0 0 0 ${g}px ${b}`,hoverBg:y,activeBg:y,inputFontSize:n,inputFontSizeLG:l,inputFontSizeSM:n}}},89222(e,t,n){"use strict";n.d(t,{Eb:()=>c,Vy:()=>h,eT:()=>a,lB:()=>d,nI:()=>i,nm:()=>u,sA:()=>m});var r=n(96191),o=n(10224);let a=e=>{let t;return{color:e.colorTextDisabled,backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder,boxShadow:"none",cursor:"not-allowed",opacity:1,"input[disabled], textarea[disabled]":{cursor:"not-allowed"},"&:hover:not([disabled])":Object.assign({},{borderColor:(t=(0,o.oX)(e,{hoverBorderColor:e.colorBorder,hoverBg:e.colorBgContainerDisabled})).hoverBorderColor,backgroundColor:t.hoverBg})}},i=(e,t)=>({background:e.colorBgContainer,borderWidth:e.lineWidth,borderStyle:e.lineType,borderColor:t.borderColor,"&:hover":{borderColor:t.hoverBorderColor,backgroundColor:e.hoverBg},"&:focus, &:focus-within":{borderColor:t.activeBorderColor,boxShadow:t.activeShadow,outline:0,backgroundColor:e.activeBg}}),l=(e,t)=>({[`&${e.componentCls}-status-${t.status}:not(${e.componentCls}-disabled)`]:Object.assign(Object.assign({},i(e,t)),{[`${e.componentCls}-prefix, ${e.componentCls}-suffix`]:{color:t.affixColor}}),[`&${e.componentCls}-status-${t.status}${e.componentCls}-disabled`]:{borderColor:t.borderColor}}),c=(e,t)=>({"&-outlined":Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},i(e,{borderColor:e.colorBorder,hoverBorderColor:e.hoverBorderColor,activeBorderColor:e.activeBorderColor,activeShadow:e.activeShadow})),{[`&${e.componentCls}-disabled, &[disabled]`]:Object.assign({},a(e))}),l(e,{status:"error",borderColor:e.colorError,hoverBorderColor:e.colorErrorBorderHover,activeBorderColor:e.colorError,activeShadow:e.errorActiveShadow,affixColor:e.colorError})),l(e,{status:"warning",borderColor:e.colorWarning,hoverBorderColor:e.colorWarningBorderHover,activeBorderColor:e.colorWarning,activeShadow:e.warningActiveShadow,affixColor:e.colorWarning})),t)}),s=(e,t)=>({[`&${e.componentCls}-group-wrapper-status-${t.status}`]:{[`${e.componentCls}-group-addon`]:{borderColor:t.addonBorderColor,color:t.addonColor}}}),u=e=>({"&-outlined":Object.assign(Object.assign(Object.assign({[`${e.componentCls}-group`]:{"&-addon":{background:e.addonBg,border:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},"&-addon:first-child":{borderInlineEnd:0},"&-addon:last-child":{borderInlineStart:0}}},s(e,{status:"error",addonBorderColor:e.colorError,addonColor:e.colorErrorText})),s(e,{status:"warning",addonBorderColor:e.colorWarning,addonColor:e.colorWarningText})),{[`&${e.componentCls}-group-wrapper-disabled`]:{[`${e.componentCls}-group-addon`]:Object.assign({},a(e))}})}),d=(e,t)=>{let{componentCls:n}=e;return{"&-borderless":Object.assign({background:"transparent",border:"none","&:focus, &:focus-within":{outline:"none"},[`&${n}-disabled, &[disabled]`]:{color:e.colorTextDisabled,cursor:"not-allowed"},[`&${n}-status-error`]:{"&, & input, & textarea":{color:e.colorError}},[`&${n}-status-warning`]:{"&, & input, & textarea":{color:e.colorWarning}}},t)}},f=(e,t)=>({background:t.bg,borderWidth:e.lineWidth,borderStyle:e.lineType,borderColor:"transparent","input&, & input, textarea&, & textarea":{color:null==t?void 0:t.inputColor},"&:hover":{background:t.hoverBg},"&:focus, &:focus-within":{outline:0,borderColor:t.activeBorderColor,backgroundColor:e.activeBg}}),p=(e,t)=>({[`&${e.componentCls}-status-${t.status}:not(${e.componentCls}-disabled)`]:Object.assign(Object.assign({},f(e,t)),{[`${e.componentCls}-prefix, ${e.componentCls}-suffix`]:{color:t.affixColor}})}),m=(e,t)=>({"&-filled":Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},f(e,{bg:e.colorFillTertiary,hoverBg:e.colorFillSecondary,activeBorderColor:e.activeBorderColor})),{[`&${e.componentCls}-disabled, &[disabled]`]:Object.assign({},a(e))}),p(e,{status:"error",bg:e.colorErrorBg,hoverBg:e.colorErrorBgHover,activeBorderColor:e.colorError,inputColor:e.colorErrorText,affixColor:e.colorError})),p(e,{status:"warning",bg:e.colorWarningBg,hoverBg:e.colorWarningBgHover,activeBorderColor:e.colorWarning,inputColor:e.colorWarningText,affixColor:e.colorWarning})),t)}),g=(e,t)=>({[`&${e.componentCls}-group-wrapper-status-${t.status}`]:{[`${e.componentCls}-group-addon`]:{background:t.addonBg,color:t.addonColor}}}),h=e=>({"&-filled":Object.assign(Object.assign(Object.assign({[`${e.componentCls}-group`]:{"&-addon":{background:e.colorFillTertiary},[`${e.componentCls}-filled:not(:focus):not(:focus-within)`]:{"&:not(:first-child)":{borderInlineStart:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`},"&:not(:last-child)":{borderInlineEnd:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorSplit}`}}}},g(e,{status:"error",addonBg:e.colorErrorBg,addonColor:e.colorErrorText})),g(e,{status:"warning",addonBg:e.colorWarningBg,addonColor:e.colorWarningText})),{[`&${e.componentCls}-group-wrapper-disabled`]:{[`${e.componentCls}-group`]:{"&-addon":{background:e.colorFillTertiary,color:e.colorTextDisabled},"&-addon:first-child":{borderInlineStart:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderTop:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderBottom:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`},"&-addon:last-child":{borderInlineEnd:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderTop:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderBottom:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`}}}})})},60685(e,t,n){"use strict";n.d(t,{A:()=>r});let r=(0,n(47867).createContext)(void 0)},8182(e,t,n){"use strict";n.d(t,{A:()=>c});var r=n(96069),o=n(24685),a=n(53039),i=n(65341);let l="${label} is not a valid ${type}",c={locale:"en",Pagination:r.A,DatePicker:a.A,TimePicker:i.A,Calendar:o.A,global:{placeholder:"Please select"},Table:{filterTitle:"Filter menu",filterConfirm:"OK",filterReset:"Reset",filterEmptyText:"No filters",filterCheckall:"Select all items",filterSearchPlaceholder:"Search in filters",emptyText:"No data",selectAll:"Select current page",selectInvert:"Invert current page",selectNone:"Clear all data",selectionAll:"Select all data",sortTitle:"Sort",expand:"Expand row",collapse:"Collapse row",triggerDesc:"Click to sort descending",triggerAsc:"Click to sort ascending",cancelSort:"Click to cancel sorting"},Tour:{Next:"Next",Previous:"Previous",Finish:"Finish"},Modal:{okText:"OK",cancelText:"Cancel",justOkText:"OK"},Popconfirm:{okText:"OK",cancelText:"Cancel"},Transfer:{titles:["",""],searchPlaceholder:"Search here",itemUnit:"item",itemsUnit:"items",remove:"Remove",selectCurrent:"Select current page",removeCurrent:"Remove current page",selectAll:"Select all data",deselectAll:"Deselect all data",removeAll:"Remove all data",selectInvert:"Invert current page"},Upload:{uploading:"Uploading...",removeFile:"Remove file",uploadError:"Upload error",previewFile:"Preview file",downloadFile:"Download file"},Empty:{description:"No data"},Icon:{icon:"icon"},Text:{edit:"Edit",copy:"Copy",copied:"Copied",expand:"Expand",collapse:"Collapse"},Form:{optional:"(optional)",defaultValidateMessages:{default:"Field validation error for ${label}",required:"Please enter ${label}",enum:"${label} must be one of [${enum}]",whitespace:"${label} cannot be a blank character",date:{format:"${label} date format is invalid",parse:"${label} cannot be converted to a date",invalid:"${label} is an invalid date"},types:{string:l,method:l,array:l,object:l,number:l,date:l,boolean:l,integer:l,float:l,regexp:l,email:l,url:l,hex:l},string:{len:"${label} must be ${len} characters",min:"${label} must be at least ${min} characters",max:"${label} must be up to ${max} characters",range:"${label} must be between ${min}-${max} characters"},number:{len:"${label} must be equal to ${len}",min:"${label} must be minimum ${min}",max:"${label} must be maximum ${max}",range:"${label} must be between ${min}-${max}"},array:{len:"Must be ${len} ${label}",min:"At least ${min} ${label}",max:"At most ${max} ${label}",range:"The amount of ${label} must be between ${min}-${max}"},pattern:{mismatch:"${label} does not match the pattern ${pattern}"}}},Image:{preview:"Preview"},QRCode:{expired:"QR code expired",refresh:"Refresh",scanned:"Scanned"},ColorPicker:{presetEmpty:"Empty",transparent:"Transparent",singleColor:"Single",gradientColor:"Gradient"}}},19155(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(47867),o=n(60685),a=n(8182);let i=(e,t)=>{let n=r.useContext(o.A);return[r.useMemo(()=>{var r;let o=t||a.A[e],i=null!=(r=null==n?void 0:n[e])?r:{};return Object.assign(Object.assign({},"function"==typeof o?o():o),i||{})},[e,t,n]),r.useMemo(()=>{let e=null==n?void 0:n.locale;return(null==n?void 0:n.exist)&&!e?a.A.locale:e},[n])]}},37414(e,t,n){"use strict";n.d(t,{Ay:()=>f,FY:()=>d,cH:()=>u});var r=n(96191),o=n(81594),a=n(44335),i=n(89222),l=n(25905),c=n(10224),s=n(37358);let u=e=>Object.assign({itemBg:e.colorBgContainer,itemSize:e.controlHeight,itemSizeSM:e.controlHeightSM,itemActiveBg:e.colorBgContainer,itemLinkBg:e.colorBgContainer,itemActiveColorDisabled:e.colorTextDisabled,itemActiveBgDisabled:e.controlItemBgActiveDisabled,itemInputBg:e.colorBgContainer,miniOptionsSizeChangerTop:0},(0,a.b)(e)),d=e=>(0,c.oX)(e,{inputOutlineOffset:0,paginationMiniOptionsMarginInlineStart:e.calc(e.marginXXS).div(2).equal(),paginationMiniQuickJumperInputWidth:e.calc(e.controlHeightLG).mul(1.1).equal(),paginationItemPaddingInline:e.calc(e.marginXXS).mul(1.5).equal(),paginationEllipsisLetterSpacing:e.calc(e.marginXXS).div(2).equal(),paginationSlashMarginInlineStart:e.marginSM,paginationSlashMarginInlineEnd:e.marginSM,paginationEllipsisTextIndent:"0.13em"},(0,a.C)(e)),f=(0,s.OF)("Pagination",e=>{let t=d(e);return[(e=>{let{componentCls:t}=e;return{[t]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},(0,l.dF)(e)),{display:"flex","&-start":{justifyContent:"start"},"&-center":{justifyContent:"center"},"&-end":{justifyContent:"end"},"ul, ol":{margin:0,padding:0,listStyle:"none"},"&::after":{display:"block",clear:"both",height:0,overflow:"hidden",visibility:"hidden",content:'""'},[`${t}-total-text`]:{display:"inline-block",height:e.itemSize,marginInlineEnd:e.marginXS,lineHeight:(0,r.zA)(e.calc(e.itemSize).sub(2).equal()),verticalAlign:"middle"}}),(e=>{let{componentCls:t}=e;return{[`${t}-item`]:{display:"inline-block",minWidth:e.itemSize,height:e.itemSize,marginInlineEnd:e.marginXS,fontFamily:e.fontFamily,lineHeight:(0,r.zA)(e.calc(e.itemSize).sub(2).equal()),textAlign:"center",verticalAlign:"middle",listStyle:"none",backgroundColor:e.itemBg,border:`${(0,r.zA)(e.lineWidth)} ${e.lineType} transparent`,borderRadius:e.borderRadius,outline:0,cursor:"pointer",userSelect:"none",a:{display:"block",padding:`0 ${(0,r.zA)(e.paginationItemPaddingInline)}`,color:e.colorText,"&:hover":{textDecoration:"none"}},[`&:not(${t}-item-active)`]:{"&:hover":{transition:`all ${e.motionDurationMid}`,backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive}},"&-active":{fontWeight:e.fontWeightStrong,backgroundColor:e.itemActiveBg,borderColor:e.colorPrimary,a:{color:e.colorPrimary},"&:hover":{borderColor:e.colorPrimaryHover},"&:hover a":{color:e.colorPrimaryHover}}}}})(e)),(e=>{let{componentCls:t}=e;return{[`${t}-jump-prev, ${t}-jump-next`]:{outline:0,[`${t}-item-container`]:{position:"relative",[`${t}-item-link-icon`]:{color:e.colorPrimary,fontSize:e.fontSizeSM,opacity:0,transition:`all ${e.motionDurationMid}`,"&-svg":{top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,margin:"auto"}},[`${t}-item-ellipsis`]:{position:"absolute",top:0,insetInlineEnd:0,bottom:0,insetInlineStart:0,display:"block",margin:"auto",color:e.colorTextDisabled,letterSpacing:e.paginationEllipsisLetterSpacing,textAlign:"center",textIndent:e.paginationEllipsisTextIndent,opacity:1,transition:`all ${e.motionDurationMid}`}},"&:hover":{[`${t}-item-link-icon`]:{opacity:1},[`${t}-item-ellipsis`]:{opacity:0}}},[` - ${t}-prev, - ${t}-jump-prev, - ${t}-jump-next - `]:{marginInlineEnd:e.marginXS},[` - ${t}-prev, - ${t}-next, - ${t}-jump-prev, - ${t}-jump-next - `]:{display:"inline-block",minWidth:e.itemSize,height:e.itemSize,color:e.colorText,fontFamily:e.fontFamily,lineHeight:(0,r.zA)(e.itemSize),textAlign:"center",verticalAlign:"middle",listStyle:"none",borderRadius:e.borderRadius,cursor:"pointer",transition:`all ${e.motionDurationMid}`},[`${t}-prev, ${t}-next`]:{outline:0,button:{color:e.colorText,cursor:"pointer",userSelect:"none"},[`${t}-item-link`]:{display:"block",width:"100%",height:"100%",padding:0,fontSize:e.fontSizeSM,textAlign:"center",backgroundColor:"transparent",border:`${(0,r.zA)(e.lineWidth)} ${e.lineType} transparent`,borderRadius:e.borderRadius,outline:"none",transition:`all ${e.motionDurationMid}`},[`&:hover ${t}-item-link`]:{backgroundColor:e.colorBgTextHover},[`&:active ${t}-item-link`]:{backgroundColor:e.colorBgTextActive},[`&${t}-disabled:hover`]:{[`${t}-item-link`]:{backgroundColor:"transparent"}}},[`${t}-slash`]:{marginInlineEnd:e.paginationSlashMarginInlineEnd,marginInlineStart:e.paginationSlashMarginInlineStart},[`${t}-options`]:{display:"inline-block",marginInlineStart:e.margin,verticalAlign:"middle","&-size-changer":{display:"inline-block",width:"auto"},"&-quick-jumper":{display:"inline-block",height:e.controlHeight,marginInlineStart:e.marginXS,lineHeight:(0,r.zA)(e.controlHeight),verticalAlign:"top",input:Object.assign(Object.assign(Object.assign({},(0,o.wj)(e)),(0,i.nI)(e,{borderColor:e.colorBorder,hoverBorderColor:e.colorPrimaryHover,activeBorderColor:e.colorPrimary,activeShadow:e.activeShadow})),{"&[disabled]":Object.assign({},(0,i.eT)(e)),width:e.calc(e.controlHeightLG).mul(1.25).equal(),height:e.controlHeight,boxSizing:"border-box",margin:0,marginInlineStart:e.marginXS,marginInlineEnd:e.marginXS})}}}})(e)),(e=>{let{componentCls:t}=e;return{[` - &${t}-simple ${t}-prev, - &${t}-simple ${t}-next - `]:{height:e.itemSizeSM,lineHeight:(0,r.zA)(e.itemSizeSM),verticalAlign:"top",[`${t}-item-link`]:{height:e.itemSizeSM,backgroundColor:"transparent",border:0,"&:hover":{backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive},"&::after":{height:e.itemSizeSM,lineHeight:(0,r.zA)(e.itemSizeSM)}}},[`&${t}-simple ${t}-simple-pager`]:{display:"inline-block",height:e.itemSizeSM,marginInlineEnd:e.marginXS,input:{boxSizing:"border-box",height:"100%",padding:`0 ${(0,r.zA)(e.paginationItemPaddingInline)}`,textAlign:"center",backgroundColor:e.itemInputBg,border:`${(0,r.zA)(e.lineWidth)} ${e.lineType} ${e.colorBorder}`,borderRadius:e.borderRadius,outline:"none",transition:`border-color ${e.motionDurationMid}`,color:"inherit","&:hover":{borderColor:e.colorPrimary},"&:focus":{borderColor:e.colorPrimaryHover,boxShadow:`${(0,r.zA)(e.inputOutlineOffset)} 0 ${(0,r.zA)(e.controlOutlineWidth)} ${e.controlOutline}`},"&[disabled]":{color:e.colorTextDisabled,backgroundColor:e.colorBgContainerDisabled,borderColor:e.colorBorder,cursor:"not-allowed"}}}}})(e)),(e=>{let{componentCls:t}=e;return{[`&${t}-mini ${t}-total-text, &${t}-mini ${t}-simple-pager`]:{height:e.itemSizeSM,lineHeight:(0,r.zA)(e.itemSizeSM)},[`&${t}-mini ${t}-item`]:{minWidth:e.itemSizeSM,height:e.itemSizeSM,margin:0,lineHeight:(0,r.zA)(e.calc(e.itemSizeSM).sub(2).equal())},[`&${t}-mini:not(${t}-disabled) ${t}-item:not(${t}-item-active)`]:{backgroundColor:"transparent",borderColor:"transparent","&:hover":{backgroundColor:e.colorBgTextHover},"&:active":{backgroundColor:e.colorBgTextActive}},[`&${t}-mini ${t}-prev, &${t}-mini ${t}-next`]:{minWidth:e.itemSizeSM,height:e.itemSizeSM,margin:0,lineHeight:(0,r.zA)(e.itemSizeSM)},[`&${t}-mini:not(${t}-disabled)`]:{[`${t}-prev, ${t}-next`]:{[`&:hover ${t}-item-link`]:{backgroundColor:e.colorBgTextHover},[`&:active ${t}-item-link`]:{backgroundColor:e.colorBgTextActive},[`&${t}-disabled:hover ${t}-item-link`]:{backgroundColor:"transparent"}}},[` - &${t}-mini ${t}-prev ${t}-item-link, - &${t}-mini ${t}-next ${t}-item-link - `]:{backgroundColor:"transparent",borderColor:"transparent","&::after":{height:e.itemSizeSM,lineHeight:(0,r.zA)(e.itemSizeSM)}},[`&${t}-mini ${t}-jump-prev, &${t}-mini ${t}-jump-next`]:{height:e.itemSizeSM,marginInlineEnd:0,lineHeight:(0,r.zA)(e.itemSizeSM)},[`&${t}-mini ${t}-options`]:{marginInlineStart:e.paginationMiniOptionsMarginInlineStart,"&-size-changer":{top:e.miniOptionsSizeChangerTop},"&-quick-jumper":{height:e.itemSizeSM,lineHeight:(0,r.zA)(e.itemSizeSM),input:Object.assign(Object.assign({},(0,o.BZ)(e)),{width:e.paginationMiniQuickJumperInputWidth,height:e.controlHeightSM})}}}})(e)),(e=>{let{componentCls:t}=e;return{[`${t}-disabled`]:{"&, &:hover":{cursor:"not-allowed",[`${t}-item-link`]:{color:e.colorTextDisabled,cursor:"not-allowed"}},"&:focus-visible":{cursor:"not-allowed",[`${t}-item-link`]:{color:e.colorTextDisabled,cursor:"not-allowed"}}},[`&${t}-disabled`]:{cursor:"not-allowed",[`${t}-item`]:{cursor:"not-allowed","&:hover, &:active":{backgroundColor:"transparent"},a:{color:e.colorTextDisabled,backgroundColor:"transparent",border:"none",cursor:"not-allowed"},"&-active":{borderColor:e.colorBorder,backgroundColor:e.itemActiveBgDisabled,"&:hover, &:active":{backgroundColor:e.itemActiveBgDisabled},a:{color:e.itemActiveColorDisabled}}},[`${t}-item-link`]:{color:e.colorTextDisabled,cursor:"not-allowed","&:hover, &:active":{backgroundColor:"transparent"},[`${t}-simple&`]:{backgroundColor:"transparent","&:hover, &:active":{backgroundColor:"transparent"}}},[`${t}-simple-pager`]:{color:e.colorTextDisabled},[`${t}-jump-prev, ${t}-jump-next`]:{[`${t}-item-link-icon`]:{opacity:0},[`${t}-item-ellipsis`]:{opacity:1}}},[`&${t}-simple`]:{[`${t}-prev, ${t}-next`]:{[`&${t}-disabled ${t}-item-link`]:{"&:hover, &:active":{backgroundColor:"transparent"}}}}}})(e)),{[`@media only screen and (max-width: ${e.screenLG}px)`]:{[`${t}-item`]:{"&-after-jump-prev, &-before-jump-next":{display:"none"}}},[`@media only screen and (max-width: ${e.screenSM}px)`]:{[`${t}-options`]:{display:"none"}}}),[`&${e.componentCls}-rtl`]:{direction:"rtl"}}})(t),(e=>{let{componentCls:t}=e;return{[`${t}:not(${t}-disabled)`]:{[`${t}-item`]:Object.assign({},(0,l.K8)(e)),[`${t}-jump-prev, ${t}-jump-next`]:{"&:focus-visible":Object.assign({[`${t}-item-link-icon`]:{opacity:1},[`${t}-item-ellipsis`]:{opacity:0}},(0,l.jk)(e))},[`${t}-prev, ${t}-next`]:{[`&:focus-visible ${t}-item-link`]:Object.assign({},(0,l.jk)(e))}}}})(t)]},u)},20464(e,t,n){"use strict";n.d(t,{A:()=>G});var r=n(47867),o=n(46420),a=n(51237),i=n(39159),l=n(5100),c=n(29128),s=n(8651),u=n.n(s),d=n(19853),f=n(62279),p={percent:0,prefixCls:"rc-progress",strokeColor:"#2db7f5",strokeLinecap:"round",strokeWidth:1,trailColor:"#D9D9D9",trailWidth:1,gapPosition:"bottom"},m=function(){var e=(0,r.useRef)([]),t=(0,r.useRef)(null);return(0,r.useEffect)(function(){var n=Date.now(),r=!1;e.current.forEach(function(e){if(e){r=!0;var o=e.style;o.transitionDuration=".3s, .3s, .3s, .06s",t.current&&n-t.current<100&&(o.transitionDuration="0s, 0s")}}),r&&(t.current=Date.now())}),e.current},g=n(58168),h=n(82284),v=n(89379),b=n(80045),y=n(57046),x=n(20998),$=0,A=(0,x.A)();let w=function(e){var t=r.useState(),n=(0,y.A)(t,2),o=n[0],a=n[1];return r.useEffect(function(){var e;a("rc_progress_".concat((A?(e=$,$+=1):e="TEST_OR_SSR",e)))},[]),e||o};var C=function(e){var t=e.bg,n=e.children;return r.createElement("div",{style:{width:"100%",height:"100%",background:t}},n)};function S(e,t){return Object.keys(e).map(function(n){var r=parseFloat(n),o="".concat(Math.floor(r*t),"%");return"".concat(e[n]," ").concat(o)})}var k=r.forwardRef(function(e,t){var n=e.prefixCls,o=e.color,a=e.gradientId,i=e.radius,l=e.style,c=e.ptg,s=e.strokeLinecap,u=e.strokeWidth,d=e.size,f=e.gapDegree,p=o&&"object"===(0,h.A)(o),m=d/2,g=r.createElement("circle",{className:"".concat(n,"-circle-path"),r:i,cx:m,cy:m,stroke:p?"#FFF":void 0,strokeLinecap:s,strokeWidth:u,opacity:+(0!==c),style:l,ref:t});if(!p)return g;var v="".concat(a,"-conic"),b=S(o,(360-f)/360),y=S(o,1),x="conic-gradient(from ".concat(f?"".concat(180+f/2,"deg"):"0deg",", ").concat(b.join(", "),")"),$="linear-gradient(to ".concat(f?"bottom":"top",", ").concat(y.join(", "),")");return r.createElement(r.Fragment,null,r.createElement("mask",{id:v},g),r.createElement("foreignObject",{x:0,y:0,width:d,height:d,mask:"url(#".concat(v,")")},r.createElement(C,{bg:$},r.createElement(C,{bg:x}))))}),E=function(e,t,n,r,o,a,i,l,c,s){var u=arguments.length>10&&void 0!==arguments[10]?arguments[10]:0,d=(100-r)/100*t;return"round"===c&&100!==r&&(d+=s/2)>=t&&(d=t-.01),{stroke:"string"==typeof l?l:void 0,strokeDasharray:"".concat(t,"px ").concat(e),strokeDashoffset:d+u,transform:"rotate(".concat(o+n/100*360*((360-a)/360)+(0===a?0:({bottom:0,top:180,left:90,right:-90})[i]),"deg)"),transformOrigin:"".concat(50,"px ").concat(50,"px"),transition:"stroke-dashoffset .3s ease 0s, stroke-dasharray .3s ease 0s, stroke .3s, stroke-width .06s ease .3s, opacity .3s ease 0s",fillOpacity:0}},O=["id","prefixCls","steps","strokeWidth","trailWidth","gapDegree","gapPosition","trailColor","strokeLinecap","style","className","strokeColor","percent"];function M(e){var t=null!=e?e:[];return Array.isArray(t)?t:[t]}let N=function(e){var t,n,o,a,i=(0,v.A)((0,v.A)({},p),e),l=i.id,c=i.prefixCls,s=i.steps,d=i.strokeWidth,f=i.trailWidth,y=i.gapDegree,x=void 0===y?0:y,$=i.gapPosition,A=i.trailColor,C=i.strokeLinecap,S=i.style,N=i.className,I=i.strokeColor,j=i.percent,z=(0,b.A)(i,O),R=w(l),P="".concat(R,"-gradient"),T=50-d/2,D=2*Math.PI*T,L=x>0?90+x/2:-90,B=(360-x)/360*D,F="object"===(0,h.A)(s)?s:{count:s,gap:2},H=F.count,_=F.gap,W=M(j),q=M(I),V=q.find(function(e){return e&&"object"===(0,h.A)(e)}),K=V&&"object"===(0,h.A)(V)?"butt":C,X=E(D,B,0,100,L,x,$,A,K,d),Y=m();return r.createElement("svg",(0,g.A)({className:u()("".concat(c,"-circle"),N),viewBox:"0 0 ".concat(100," ").concat(100),style:S,id:l,role:"presentation"},z),!H&&r.createElement("circle",{className:"".concat(c,"-circle-trail"),r:T,cx:50,cy:50,stroke:A,strokeLinecap:K,strokeWidth:f||d,style:X}),H?(t=Math.round(H*(W[0]/100)),n=100/H,o=0,Array(H).fill(null).map(function(e,a){var i=a<=t-1?q[0]:A,l=i&&"object"===(0,h.A)(i)?"url(#".concat(P,")"):void 0,s=E(D,B,o,n,L,x,$,i,"butt",d,_);return o+=(B-s.strokeDashoffset+_)*100/B,r.createElement("circle",{key:a,className:"".concat(c,"-circle-path"),r:T,cx:50,cy:50,stroke:l,strokeWidth:d,opacity:1,style:s,ref:function(e){Y[a]=e}})})):(a=0,W.map(function(e,t){var n=q[t]||q[q.length-1],o=E(D,B,a,e,L,x,$,n,K,d);return a+=e,r.createElement(k,{key:t,color:n,ptg:e,radius:T,prefixCls:c,gradientId:P,style:o,strokeLinecap:K,strokeWidth:d,gapDegree:x,ref:function(e){Y[t]=e},size:100})}).reverse()))};var I=n(42443),j=n(16124);function z(e){return!e||e<0?0:e>100?100:e}function R(e){let{success:t,successPercent:n}=e,r=n;return t&&"progress"in t&&(r=t.progress),t&&"percent"in t&&(r=t.percent),r}let P=(e,t,n)=>{var r,o,a,i;let l=-1,c=-1;if("step"===t){let t=n.steps,r=n.strokeWidth;"string"==typeof e||void 0===e?(l="small"===e?2:14,c=null!=r?r:8):"number"==typeof e?[l,c]=[e,e]:[l=14,c=8]=Array.isArray(e)?e:[e.width,e.height],l*=t}else if("line"===t){let t=null==n?void 0:n.strokeWidth;"string"==typeof e||void 0===e?c=t||("small"===e?6:8):"number"==typeof e?[l,c]=[e,e]:[l=-1,c=8]=Array.isArray(e)?e:[e.width,e.height]}else("circle"===t||"dashboard"===t)&&("string"==typeof e||void 0===e?[l,c]="small"===e?[60,60]:[120,120]:"number"==typeof e?[l,c]=[e,e]:Array.isArray(e)&&(l=null!=(o=null!=(r=e[0])?r:e[1])?o:120,c=null!=(i=null!=(a=e[0])?a:e[1])?i:120));return[l,c]},T=e=>{let{prefixCls:t,trailColor:n=null,strokeLinecap:o="round",gapPosition:a,gapDegree:i,width:l=120,type:c,children:s,success:d,size:f=l,steps:p}=e,[m,g]=P(f,"circle"),{strokeWidth:h}=e;void 0===h&&(h=Math.max(3/m*100,6));let v=r.useMemo(()=>i||0===i?i:"dashboard"===c?75:void 0,[i,c]),b=(e=>{let{percent:t,success:n,successPercent:r}=e,o=z(R({success:n,successPercent:r}));return[o,z(z(t)-o)]})(e),y="[object Object]"===Object.prototype.toString.call(e.strokeColor),x=(e=>{let{success:t={},strokeColor:n}=e,{strokeColor:r}=t;return[r||j.presetPrimaryColors.green,n||null]})({success:d,strokeColor:e.strokeColor}),$=u()(`${t}-inner`,{[`${t}-circle-gradient`]:y}),A=r.createElement(N,{steps:p,percent:p?b[1]:b,strokeWidth:h,trailWidth:h,strokeColor:p?x[1]:x,strokeLinecap:o,trailColor:n,prefixCls:t,gapDegree:v,gapPosition:a||"dashboard"===c&&"bottom"||void 0}),w=m<=20,C=r.createElement("div",{className:$,style:{width:m,height:g,fontSize:.15*m+6}},A,!w&&s);return w?r.createElement(I.A,{title:s},C):C};var D=n(96191),L=n(25905),B=n(37358),F=n(10224);let H="--progress-line-stroke-color",_="--progress-percent",W=e=>{let t=e?"100%":"-100%";return new D.Mo(`antProgress${e?"RTL":"LTR"}Active`,{"0%":{transform:`translateX(${t}) scaleX(0)`,opacity:.1},"20%":{transform:`translateX(${t}) scaleX(0)`,opacity:.5},to:{transform:"translateX(0) scaleX(1)",opacity:0}})},q=(0,B.OF)("Progress",e=>{let t=e.calc(e.marginXXS).div(2).equal(),n=(0,F.oX)(e,{progressStepMarginInlineEnd:t,progressStepMinWidth:t,progressActiveMotionDuration:"2.4s"});return[(e=>{let{componentCls:t,iconCls:n}=e;return{[t]:Object.assign(Object.assign({},(0,L.dF)(e)),{display:"inline-block","&-rtl":{direction:"rtl"},"&-line":{position:"relative",width:"100%",fontSize:e.fontSize},[`${t}-outer`]:{display:"inline-flex",alignItems:"center",width:"100%"},[`${t}-inner`]:{position:"relative",display:"inline-block",width:"100%",flex:1,overflow:"hidden",verticalAlign:"middle",backgroundColor:e.remainingColor,borderRadius:e.lineBorderRadius},[`${t}-inner:not(${t}-circle-gradient)`]:{[`${t}-circle-path`]:{stroke:e.defaultColor}},[`${t}-success-bg, ${t}-bg`]:{position:"relative",background:e.defaultColor,borderRadius:e.lineBorderRadius,transition:`all ${e.motionDurationSlow} ${e.motionEaseInOutCirc}`},[`${t}-layout-bottom`]:{display:"flex",flexDirection:"column",alignItems:"center",justifyContent:"center",[`${t}-text`]:{width:"max-content",marginInlineStart:0,marginTop:e.marginXXS}},[`${t}-bg`]:{overflow:"hidden","&::after":{content:'""',background:{_multi_value_:!0,value:["inherit",`var(${H})`]},height:"100%",width:`calc(1 / var(${_}) * 100%)`,display:"block"},[`&${t}-bg-inner`]:{minWidth:"max-content","&::after":{content:"none"},[`${t}-text-inner`]:{color:e.colorWhite,[`&${t}-text-bright`]:{color:"rgba(0, 0, 0, 0.45)"}}}},[`${t}-success-bg`]:{position:"absolute",insetBlockStart:0,insetInlineStart:0,backgroundColor:e.colorSuccess},[`${t}-text`]:{display:"inline-block",marginInlineStart:e.marginXS,color:e.colorText,lineHeight:1,width:"2em",whiteSpace:"nowrap",textAlign:"start",verticalAlign:"middle",wordBreak:"normal",[n]:{fontSize:e.fontSize},[`&${t}-text-outer`]:{width:"max-content"},[`&${t}-text-outer${t}-text-start`]:{width:"max-content",marginInlineStart:0,marginInlineEnd:e.marginXS}},[`${t}-text-inner`]:{display:"flex",justifyContent:"center",alignItems:"center",width:"100%",height:"100%",marginInlineStart:0,padding:`0 ${(0,D.zA)(e.paddingXXS)}`,[`&${t}-text-start`]:{justifyContent:"start"},[`&${t}-text-end`]:{justifyContent:"end"}},[`&${t}-status-active`]:{[`${t}-bg::before`]:{position:"absolute",inset:0,backgroundColor:e.colorBgContainer,borderRadius:e.lineBorderRadius,opacity:0,animationName:W(),animationDuration:e.progressActiveMotionDuration,animationTimingFunction:e.motionEaseOutQuint,animationIterationCount:"infinite",content:'""'}},[`&${t}-rtl${t}-status-active`]:{[`${t}-bg::before`]:{animationName:W(!0)}},[`&${t}-status-exception`]:{[`${t}-bg`]:{backgroundColor:e.colorError},[`${t}-text`]:{color:e.colorError}},[`&${t}-status-exception ${t}-inner:not(${t}-circle-gradient)`]:{[`${t}-circle-path`]:{stroke:e.colorError}},[`&${t}-status-success`]:{[`${t}-bg`]:{backgroundColor:e.colorSuccess},[`${t}-text`]:{color:e.colorSuccess}},[`&${t}-status-success ${t}-inner:not(${t}-circle-gradient)`]:{[`${t}-circle-path`]:{stroke:e.colorSuccess}}})}})(n),(e=>{let{componentCls:t,iconCls:n}=e;return{[t]:{[`${t}-circle-trail`]:{stroke:e.remainingColor},[`&${t}-circle ${t}-inner`]:{position:"relative",lineHeight:1,backgroundColor:"transparent"},[`&${t}-circle ${t}-text`]:{position:"absolute",insetBlockStart:"50%",insetInlineStart:0,width:"100%",margin:0,padding:0,color:e.circleTextColor,fontSize:e.circleTextFontSize,lineHeight:1,whiteSpace:"normal",textAlign:"center",transform:"translateY(-50%)",[n]:{fontSize:e.circleIconFontSize}},[`${t}-circle&-status-exception`]:{[`${t}-text`]:{color:e.colorError}},[`${t}-circle&-status-success`]:{[`${t}-text`]:{color:e.colorSuccess}}},[`${t}-inline-circle`]:{lineHeight:1,[`${t}-inner`]:{verticalAlign:"bottom"}}}})(n),(e=>{let{componentCls:t}=e;return{[t]:{[`${t}-steps`]:{display:"inline-block","&-outer":{display:"flex",flexDirection:"row",alignItems:"center"},"&-item":{flexShrink:0,minWidth:e.progressStepMinWidth,marginInlineEnd:e.progressStepMarginInlineEnd,backgroundColor:e.remainingColor,transition:`all ${e.motionDurationSlow}`,"&-active":{backgroundColor:e.defaultColor}}}}}})(n),(e=>{let{componentCls:t,iconCls:n}=e;return{[t]:{[`${t}-small&-line, ${t}-small&-line ${t}-text ${n}`]:{fontSize:e.fontSizeSM}}}})(n)]},e=>({circleTextColor:e.colorText,defaultColor:e.colorInfo,remainingColor:e.colorFillSecondary,lineBorderRadius:100,circleTextFontSize:"1em",circleIconFontSize:`${e.fontSize/e.fontSizeSM}em`}));var V=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let K=e=>{let{prefixCls:t,direction:n,percent:o,size:a,strokeWidth:i,strokeColor:l,strokeLinecap:c="round",children:s,trailColor:d=null,percentPosition:f,success:p}=e,{align:m,type:g}=f,h=l&&"string"!=typeof l?((e,t)=>{let{from:n=j.presetPrimaryColors.blue,to:r=j.presetPrimaryColors.blue,direction:o="rtl"===t?"to left":"to right"}=e,a=V(e,["from","to","direction"]);if(0!==Object.keys(a).length){let e,t=(e=[],Object.keys(a).forEach(t=>{let n=parseFloat(t.replace(/%/g,""));Number.isNaN(n)||e.push({key:n,value:a[t]})}),(e=e.sort((e,t)=>e.key-t.key)).map(e=>{let{key:t,value:n}=e;return`${n} ${t}%`}).join(", ")),n=`linear-gradient(${o}, ${t})`;return{background:n,[H]:n}}let i=`linear-gradient(${o}, ${n}, ${r})`;return{background:i,[H]:i}})(l,n):{[H]:l,background:l},v="square"===c||"butt"===c?0:void 0,[b,y]=P(null!=a?a:[-1,i||("small"===a?6:8)],"line",{strokeWidth:i}),x=Object.assign(Object.assign({width:`${z(o)}%`,height:y,borderRadius:v},h),{[_]:z(o)/100}),$=R(e),A={width:`${z($)}%`,height:y,borderRadius:v,backgroundColor:null==p?void 0:p.strokeColor},w=r.createElement("div",{className:`${t}-inner`,style:{backgroundColor:d||void 0,borderRadius:v}},r.createElement("div",{className:u()(`${t}-bg`,`${t}-bg-${g}`),style:x},"inner"===g&&s),void 0!==$&&r.createElement("div",{className:`${t}-success-bg`,style:A})),C="outer"===g&&"start"===m,S="outer"===g&&"end"===m;return"outer"===g&&"center"===m?r.createElement("div",{className:`${t}-layout-bottom`},w,s):r.createElement("div",{className:`${t}-outer`,style:{width:b<0?"100%":b}},C&&s,w,S&&s)},X=e=>{let{size:t,steps:n,percent:o=0,strokeWidth:a=8,strokeColor:i,trailColor:l=null,prefixCls:c,children:s}=e,d=Math.round(o/100*n),[f,p]=P(null!=t?t:["small"===t?2:14,a],"step",{steps:n,strokeWidth:a}),m=f/n,g=Array(n);for(let e=0;et.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let U=["normal","exception","active","success"],G=r.forwardRef((e,t)=>{let n,{prefixCls:s,className:p,rootClassName:m,steps:g,strokeColor:h,percent:v=0,size:b="default",showInfo:y=!0,type:x="line",status:$,format:A,style:w,percentPosition:C={}}=e,S=Y(e,["prefixCls","className","rootClassName","steps","strokeColor","percent","size","showInfo","type","status","format","style","percentPosition"]),{align:k="end",type:E="outer"}=C,O=Array.isArray(h)?h[0]:h,M="string"==typeof h||Array.isArray(h)?h:void 0,N=r.useMemo(()=>{if(O){let e="string"==typeof O?O:Object.values(O)[0];return new c.q(e).isLight()}return!1},[h]),I=r.useMemo(()=>{var t,n;let r=R(e);return parseInt(void 0!==r?null==(t=null!=r?r:0)?void 0:t.toString():null==(n=null!=v?v:0)?void 0:n.toString(),10)},[v,e.success,e.successPercent]),j=r.useMemo(()=>!U.includes($)&&I>=100?"success":$||"normal",[$,I]),{getPrefixCls:D,direction:L,progress:B}=r.useContext(f.QO),F=D("progress",s),[H,_,W]=q(F),V="line"===x,G=V&&!g,Q=r.useMemo(()=>{let t;if(!y)return null;let n=R(e),c=A||(e=>`${e}%`),s=V&&N&&"inner"===E;return"inner"===E||A||"exception"!==j&&"success"!==j?t=c(z(v),z(n)):"exception"===j?t=V?r.createElement(i.A,null):r.createElement(l.A,null):"success"===j&&(t=V?r.createElement(o.A,null):r.createElement(a.A,null)),r.createElement("span",{className:u()(`${F}-text`,{[`${F}-text-bright`]:s,[`${F}-text-${k}`]:G,[`${F}-text-${E}`]:G}),title:"string"==typeof t?t:void 0},t)},[y,v,I,j,x,F,A]);"line"===x?n=g?r.createElement(X,Object.assign({},e,{strokeColor:M,prefixCls:F,steps:"object"==typeof g?g.count:g}),Q):r.createElement(K,Object.assign({},e,{strokeColor:O,prefixCls:F,direction:L,percentPosition:{align:k,type:E}}),Q):("circle"===x||"dashboard"===x)&&(n=r.createElement(T,Object.assign({},e,{strokeColor:O,prefixCls:F,progressStatus:j}),Q));let Z=u()(F,`${F}-status-${j}`,{[`${F}-${"dashboard"===x&&"circle"||x}`]:"line"!==x,[`${F}-inline-circle`]:"circle"===x&&P(b,"circle")[0]<=20,[`${F}-line`]:G,[`${F}-line-align-${k}`]:G,[`${F}-line-position-${E}`]:G,[`${F}-steps`]:g,[`${F}-show-info`]:y,[`${F}-${b}`]:"string"==typeof b,[`${F}-rtl`]:"rtl"===L},null==B?void 0:B.className,p,m,_,W);return H(r.createElement("div",Object.assign({ref:t,style:Object.assign(Object.assign({},null==B?void 0:B.style),w),className:Z,role:"progressbar","aria-valuenow":I,"aria-valuemin":0,"aria-valuemax":100},(0,d.A)(S,["trailColor","strokeWidth","width","gapDegree","gapPosition","strokeLinecap","success","successPercent"])),n))})},76327(e,t,n){"use strict";n.d(t,{Ay:()=>g,K6:()=>p,RQ:()=>f});var r=n(47867),o=n(8651),a=n.n(o),i=n(82546),l=n(62279),c=n(829),s=n(58090),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let d=r.createContext(null),f=(e,t)=>{let n=r.useContext(d),o=r.useMemo(()=>{if(!n)return"";let{compactDirection:r,isFirstItem:o,isLastItem:i}=n,l="vertical"===r?"-vertical-":"-";return a()(`${e}-compact${l}item`,{[`${e}-compact${l}first-item`]:o,[`${e}-compact${l}last-item`]:i,[`${e}-compact${l}item-rtl`]:"rtl"===t})},[e,t,n]);return{compactSize:null==n?void 0:n.compactSize,compactDirection:null==n?void 0:n.compactDirection,compactItemClassnames:o}},p=e=>{let{children:t}=e;return r.createElement(d.Provider,{value:null},t)},m=e=>{var{children:t}=e,n=u(e,["children"]);return r.createElement(d.Provider,{value:n},t)},g=e=>{let{getPrefixCls:t,direction:n}=r.useContext(l.QO),{size:o,direction:f,block:p,prefixCls:g,className:h,rootClassName:v,children:b}=e,y=u(e,["size","direction","block","prefixCls","className","rootClassName","children"]),x=(0,c.A)(e=>null!=o?o:e),$=t("space-compact",g),[A,w]=(0,s.A)($),C=a()($,w,{[`${$}-rtl`]:"rtl"===n,[`${$}-block`]:p,[`${$}-vertical`]:"vertical"===f},h,v),S=r.useContext(d),k=(0,i.A)(b),E=r.useMemo(()=>k.map((e,t)=>{let n=(null==e?void 0:e.key)||`${$}-item-${t}`;return r.createElement(m,{key:n,compactSize:x,compactDirection:f,isFirstItem:0===t&&(!S||(null==S?void 0:S.isFirstItem)),isLastItem:t===k.length-1&&(!S||(null==S?void 0:S.isLastItem))},e)}),[o,k,S]);return 0===k.length?null:A(r.createElement("div",Object.assign({className:C},y),E))}},58090(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(37358),o=n(10224);let a=(0,r.OF)("Space",e=>{let t=(0,o.oX)(e,{spaceGapSmallSize:e.paddingXS,spaceGapMiddleSize:e.padding,spaceGapLargeSize:e.paddingLG});return[(e=>{let{componentCls:t,antCls:n}=e;return{[t]:{display:"inline-flex","&-rtl":{direction:"rtl"},"&-vertical":{flexDirection:"column"},"&-align":{flexDirection:"column","&-center":{alignItems:"center"},"&-start":{alignItems:"flex-start"},"&-end":{alignItems:"flex-end"},"&-baseline":{alignItems:"baseline"}},[`${t}-item:empty`]:{display:"none"},[`${t}-item > ${n}-badge-not-a-wrapper:only-child`]:{display:"block"}}}})(t),(e=>{let{componentCls:t}=e;return{[t]:{"&-gap-row-small":{rowGap:e.spaceGapSmallSize},"&-gap-row-middle":{rowGap:e.spaceGapMiddleSize},"&-gap-row-large":{rowGap:e.spaceGapLargeSize},"&-gap-col-small":{columnGap:e.spaceGapSmallSize},"&-gap-col-middle":{columnGap:e.spaceGapMiddleSize},"&-gap-col-large":{columnGap:e.spaceGapLargeSize}}}})(t),(e=>{let{componentCls:t}=e;return{[t]:{"&-block":{display:"flex",width:"100%"},"&-vertical":{flexDirection:"column"}}}})(t)]},()=>({}),{resetStyle:!1})},55974(e,t,n){"use strict";function r(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{focus:!0},{componentCls:n}=e,r=`${n}-compact`;return{[r]:Object.assign(Object.assign({},function(e,t,n){let{focusElCls:r,focus:o,borderElCls:a}=n,i=a?"> *":"",l=["hover",o?"focus":null,"active"].filter(Boolean).map(e=>`&:${e} ${i}`).join(",");return{[`&-item:not(${t}-last-item)`]:{marginInlineEnd:e.calc(e.lineWidth).mul(-1).equal()},"&-item":Object.assign(Object.assign({[l]:{zIndex:2}},r?{[`&${r}`]:{zIndex:2}}:{}),{[`&[disabled] ${i}`]:{zIndex:0}})}}(e,r,t)),function(e,t,n){let{borderElCls:r}=n,o=r?`> ${r}`:"";return{[`&-item:not(${t}-first-item):not(${t}-last-item) ${o}`]:{borderRadius:0},[`&-item:not(${t}-last-item)${t}-first-item`]:{[`& ${o}, &${e}-sm ${o}, &${e}-lg ${o}`]:{borderStartEndRadius:0,borderEndEndRadius:0}},[`&-item:not(${t}-first-item)${t}-last-item`]:{[`& ${o}, &${e}-sm ${o}, &${e}-lg ${o}`]:{borderStartStartRadius:0,borderEndStartRadius:0}}}}(n,r,t))}}n.d(t,{G:()=>r})},25905(e,t,n){"use strict";n.d(t,{K8:()=>d,L9:()=>o,Nk:()=>i,Y1:()=>p,av:()=>c,dF:()=>a,jk:()=>u,jz:()=>f,t6:()=>l,vj:()=>s});var r=n(96191);let o={overflow:"hidden",whiteSpace:"nowrap",textOverflow:"ellipsis"},a=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return{boxSizing:"border-box",margin:0,padding:0,color:e.colorText,fontSize:e.fontSize,lineHeight:e.lineHeight,listStyle:"none",fontFamily:t?"inherit":e.fontFamily}},i=()=>({display:"inline-flex",alignItems:"center",color:"inherit",fontStyle:"normal",lineHeight:0,textAlign:"center",textTransform:"none",verticalAlign:"-0.125em",textRendering:"optimizeLegibility","-webkit-font-smoothing":"antialiased","-moz-osx-font-smoothing":"grayscale","> *":{lineHeight:1},svg:{display:"inline-block"}}),l=()=>({"&::before":{display:"table",content:'""'},"&::after":{display:"table",clear:"both",content:'""'}}),c=e=>({a:{color:e.colorLink,textDecoration:e.linkDecoration,backgroundColor:"transparent",outline:"none",cursor:"pointer",transition:`color ${e.motionDurationSlow}`,"-webkit-text-decoration-skip":"objects","&:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive},"&:active, &:hover":{textDecoration:e.linkHoverDecoration,outline:0},"&:focus":{textDecoration:e.linkFocusDecoration,outline:0},"&[disabled]":{color:e.colorTextDisabled,cursor:"not-allowed"}}}),s=(e,t,n,r)=>{let o=`[class^="${t}"], [class*=" ${t}"]`,a=n?`.${n}`:o,i={boxSizing:"border-box","&::before, &::after":{boxSizing:"border-box"}},l={};return!1!==r&&(l={fontFamily:e.fontFamily,fontSize:e.fontSize}),{[a]:Object.assign(Object.assign(Object.assign({},l),i),{[o]:i})}},u=e=>({outline:`${(0,r.zA)(e.lineWidthFocus)} solid ${e.colorPrimaryBorder}`,outlineOffset:1,transition:"outline-offset 0s, outline 0s"}),d=e=>({"&:focus-visible":Object.assign({},u(e))}),f=e=>({[`.${e}`]:Object.assign(Object.assign({},i()),{[`.${e} .${e}-icon`]:{display:"block"}})}),p=e=>Object.assign(Object.assign({color:e.colorLink,textDecoration:e.linkDecoration,outline:"none",cursor:"pointer",transition:`all ${e.motionDurationSlow}`,border:0,padding:0,background:"none",userSelect:"none"},d(e)),{"&:focus, &:hover":{color:e.colorLinkHover},"&:active":{color:e.colorLinkActive}})},60977(e,t,n){"use strict";n.d(t,{A:()=>r});let r=e=>({[e.componentCls]:{[`${e.antCls}-motion-collapse-legacy`]:{overflow:"hidden","&-active":{transition:`height ${e.motionDurationMid} ${e.motionEaseInOut}, - opacity ${e.motionDurationMid} ${e.motionEaseInOut} !important`}},[`${e.antCls}-motion-collapse`]:{overflow:"hidden",transition:`height ${e.motionDurationMid} ${e.motionEaseInOut}, - opacity ${e.motionDurationMid} ${e.motionEaseInOut} !important`}}})},14980(e,t,n){"use strict";n.d(t,{b:()=>r});let r=function(e,t,n,r){let o=arguments.length>4&&void 0!==arguments[4]&&arguments[4],a=o?"&":"";return{[` - ${a}${e}-enter, - ${a}${e}-appear - `]:Object.assign(Object.assign({},{animationDuration:r,animationFillMode:"both"}),{animationPlayState:"paused"}),[`${a}${e}-leave`]:Object.assign(Object.assign({},{animationDuration:r,animationFillMode:"both"}),{animationPlayState:"paused"}),[` - ${a}${e}-enter${e}-enter-active, - ${a}${e}-appear${e}-appear-active - `]:{animationName:t,animationPlayState:"running"},[`${a}${e}-leave${e}-leave-active`]:{animationName:n,animationPlayState:"running",pointerEvents:"none"}}}},99077(e,t,n){"use strict";n.d(t,{aB:()=>f,nF:()=>a});var r=n(96191),o=n(14980);let a=new r.Mo("antZoomIn",{"0%":{transform:"scale(0.2)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),i=new r.Mo("antZoomOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.2)",opacity:0}}),l=new r.Mo("antZoomBigIn",{"0%":{transform:"scale(0.8)",opacity:0},"100%":{transform:"scale(1)",opacity:1}}),c=new r.Mo("antZoomBigOut",{"0%":{transform:"scale(1)"},"100%":{transform:"scale(0.8)",opacity:0}}),s=new r.Mo("antZoomUpIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 0%"}}),u=new r.Mo("antZoomUpOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 0%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 0%",opacity:0}}),d={zoom:{inKeyframes:a,outKeyframes:i},"zoom-big":{inKeyframes:l,outKeyframes:c},"zoom-big-fast":{inKeyframes:l,outKeyframes:c},"zoom-left":{inKeyframes:new r.Mo("antZoomLeftIn",{"0%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"0% 50%"}}),outKeyframes:new r.Mo("antZoomLeftOut",{"0%":{transform:"scale(1)",transformOrigin:"0% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"0% 50%",opacity:0}})},"zoom-right":{inKeyframes:new r.Mo("antZoomRightIn",{"0%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"100% 50%"}}),outKeyframes:new r.Mo("antZoomRightOut",{"0%":{transform:"scale(1)",transformOrigin:"100% 50%"},"100%":{transform:"scale(0.8)",transformOrigin:"100% 50%",opacity:0}})},"zoom-up":{inKeyframes:s,outKeyframes:u},"zoom-down":{inKeyframes:new r.Mo("antZoomDownIn",{"0%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0},"100%":{transform:"scale(1)",transformOrigin:"50% 100%"}}),outKeyframes:new r.Mo("antZoomDownOut",{"0%":{transform:"scale(1)",transformOrigin:"50% 100%"},"100%":{transform:"scale(0.8)",transformOrigin:"50% 100%",opacity:0}})}},f=(e,t)=>{let{antCls:n}=e,r=`${n}-${t}`,{inKeyframes:a,outKeyframes:i}=d[t];return[(0,o.b)(r,a,i,"zoom-big-fast"===t?e.motionDurationFast:e.motionDurationMid),{[` - ${r}-enter, - ${r}-appear - `]:{transform:"scale(0)",opacity:0,animationTimingFunction:e.motionEaseOutCirc,"&-prepare":{transform:"none"}},[`${r}-leave`]:{animationTimingFunction:e.motionEaseInOutCirc}}]}},95201(e,t,n){"use strict";n.d(t,{Ay:()=>l,Ke:()=>i,Zs:()=>a});var r=n(96191),o=n(20791);let a=8;function i(e){let{contentRadius:t,limitVerticalRadius:n}=e,r=t>12?t+2:12;return{arrowOffsetHorizontal:r,arrowOffsetVertical:n?a:r}}function l(e,t,n){var a,i,l,c,s,u,d,f;let{componentCls:p,boxShadowPopoverArrow:m,arrowOffsetVertical:g,arrowOffsetHorizontal:h}=e,{arrowDistance:v=0,arrowPlacement:b={left:!0,right:!0,top:!0,bottom:!0}}=n||{};return{[p]:Object.assign(Object.assign(Object.assign(Object.assign({[`${p}-arrow`]:[Object.assign(Object.assign({position:"absolute",zIndex:1,display:"block"},(0,o.j)(e,t,m)),{"&:before":{background:t}})]},(a=!!b.top,i={[`&-placement-top > ${p}-arrow,&-placement-topLeft > ${p}-arrow,&-placement-topRight > ${p}-arrow`]:{bottom:v,transform:"translateY(100%) rotate(180deg)"},[`&-placement-top > ${p}-arrow`]:{left:{_skip_check_:!0,value:"50%"},transform:"translateX(-50%) translateY(100%) rotate(180deg)"},"&-placement-topLeft":{"--arrow-offset-horizontal":h,[`> ${p}-arrow`]:{left:{_skip_check_:!0,value:h}}},"&-placement-topRight":{"--arrow-offset-horizontal":`calc(100% - ${(0,r.zA)(h)})`,[`> ${p}-arrow`]:{right:{_skip_check_:!0,value:h}}}},a?i:{})),(l=!!b.bottom,c={[`&-placement-bottom > ${p}-arrow,&-placement-bottomLeft > ${p}-arrow,&-placement-bottomRight > ${p}-arrow`]:{top:v,transform:"translateY(-100%)"},[`&-placement-bottom > ${p}-arrow`]:{left:{_skip_check_:!0,value:"50%"},transform:"translateX(-50%) translateY(-100%)"},"&-placement-bottomLeft":{"--arrow-offset-horizontal":h,[`> ${p}-arrow`]:{left:{_skip_check_:!0,value:h}}},"&-placement-bottomRight":{"--arrow-offset-horizontal":`calc(100% - ${(0,r.zA)(h)})`,[`> ${p}-arrow`]:{right:{_skip_check_:!0,value:h}}}},l?c:{})),(s=!!b.left,u={[`&-placement-left > ${p}-arrow,&-placement-leftTop > ${p}-arrow,&-placement-leftBottom > ${p}-arrow`]:{right:{_skip_check_:!0,value:v},transform:"translateX(100%) rotate(90deg)"},[`&-placement-left > ${p}-arrow`]:{top:{_skip_check_:!0,value:"50%"},transform:"translateY(-50%) translateX(100%) rotate(90deg)"},[`&-placement-leftTop > ${p}-arrow`]:{top:g},[`&-placement-leftBottom > ${p}-arrow`]:{bottom:g}},s?u:{})),(d=!!b.right,f={[`&-placement-right > ${p}-arrow,&-placement-rightTop > ${p}-arrow,&-placement-rightBottom > ${p}-arrow`]:{left:{_skip_check_:!0,value:v},transform:"translateX(-100%) rotate(-90deg)"},[`&-placement-right > ${p}-arrow`]:{top:{_skip_check_:!0,value:"50%"},transform:"translateY(-50%) translateX(-100%) rotate(-90deg)"},[`&-placement-rightTop > ${p}-arrow`]:{top:g},[`&-placement-rightBottom > ${p}-arrow`]:{bottom:g}},d?f:{}))}}},20791(e,t,n){"use strict";n.d(t,{j:()=>a,n:()=>o});var r=n(96191);function o(e){let{sizePopupArrow:t,borderRadiusXS:n,borderRadiusOuter:r}=e,o=t/2,a=r/Math.sqrt(2),i=o-r*(1-1/Math.sqrt(2)),l=o-1/Math.sqrt(2)*n,c=r*(Math.sqrt(2)-1)+1/Math.sqrt(2)*n,s=o*Math.sqrt(2)+r*(Math.sqrt(2)-2),u=r*(Math.sqrt(2)-1),d=`polygon(${u}px 100%, 50% ${u}px, ${2*o-u}px 100%, ${u}px 100%)`;return{arrowShadowWidth:s,arrowPath:`path('M 0 ${o} A ${r} ${r} 0 0 0 ${a} ${i} L ${l} ${c} A ${n} ${n} 0 0 1 ${2*o-l} ${c} L ${2*o-a} ${i} A ${r} ${r} 0 0 0 ${2*o-0} ${o} Z')`,arrowPolygon:d}}let a=(e,t,n)=>{let{sizePopupArrow:o,arrowPolygon:a,arrowPath:i,arrowShadowWidth:l,borderRadiusXS:c,calc:s}=e;return{pointerEvents:"none",width:o,height:o,overflow:"hidden","&::before":{position:"absolute",bottom:0,insetInlineStart:0,width:o,height:s(o).div(2).equal(),background:t,clipPath:{_multi_value_:!0,value:[a,i]},content:'""'},"&::after":{content:'""',position:"absolute",width:l,height:l,bottom:0,insetInline:0,margin:"auto",borderRadius:{_skip_check_:!0,value:`0 0 ${(0,r.zA)(c)} 0`},transform:"translateY(50%) rotate(-135deg)",boxShadow:n,zIndex:0,background:"transparent"}}}},26639(e,t,n){"use strict";n.d(t,{A:()=>s});var r=n(96191),o=n(29128),a=n(25905),i=n(37358),l=n(10224);let c=e=>{let{componentCls:t,lineWidth:n,tableBorderColor:o,calc:a}=e,i=`${(0,r.zA)(n)} ${e.lineType} ${o}`;return{[`${t}-wrapper`]:{[`${t}-summary`]:{position:"relative",zIndex:e.zIndexTableFixed,background:e.tableBg,"> tr":{"> th, > td":{borderBottom:i}}},[`div${t}-summary`]:{boxShadow:`0 ${(0,r.zA)(a(n).mul(-1).equal())} 0 ${o}`}}}},s=(0,i.OF)("Table",e=>{let{colorTextHeading:t,colorSplit:n,colorBgContainer:o,controlInteractiveSize:i,headerBg:s,headerColor:u,headerSortActiveBg:d,headerSortHoverBg:f,bodySortBg:p,rowHoverBg:m,rowSelectedBg:g,rowSelectedHoverBg:h,rowExpandedBg:v,cellPaddingBlock:b,cellPaddingInline:y,cellPaddingBlockMD:x,cellPaddingInlineMD:$,cellPaddingBlockSM:A,cellPaddingInlineSM:w,borderColor:C,footerBg:S,footerColor:k,headerBorderRadius:E,cellFontSize:O,cellFontSizeMD:M,cellFontSizeSM:N,headerSplitColor:I,fixedHeaderSortActiveBg:j,headerFilterHoverBg:z,filterDropdownBg:R,expandIconBg:P,selectionColumnWidth:T,stickyScrollBarBg:D,calc:L}=e,B=(0,l.oX)(e,{tableFontSize:O,tableBg:o,tableRadius:E,tablePaddingVertical:b,tablePaddingHorizontal:y,tablePaddingVerticalMiddle:x,tablePaddingHorizontalMiddle:$,tablePaddingVerticalSmall:A,tablePaddingHorizontalSmall:w,tableBorderColor:C,tableHeaderTextColor:u,tableHeaderBg:s,tableFooterTextColor:k,tableFooterBg:S,tableHeaderCellSplitColor:I,tableHeaderSortBg:d,tableHeaderSortHoverBg:f,tableBodySortBg:p,tableFixedHeaderSortActiveBg:j,tableHeaderFilterActiveBg:z,tableFilterDropdownBg:R,tableRowHoverBg:m,tableSelectedRowBg:g,tableSelectedRowHoverBg:h,zIndexTableFixed:2,zIndexTableSticky:L(2).add(1).equal({unit:!1}),tableFontSizeMiddle:M,tableFontSizeSmall:N,tableSelectionColumnWidth:T,tableExpandIconBg:P,tableExpandColumnWidth:L(i).add(L(e.padding).mul(2)).equal(),tableExpandedRowBg:v,tableFilterDropdownWidth:120,tableFilterDropdownHeight:264,tableFilterDropdownSearchWidth:140,tableScrollThumbSize:8,tableScrollThumbBg:D,tableScrollThumbBgHover:t,tableScrollBg:n});return[(e=>{let{componentCls:t,fontWeightStrong:n,tablePaddingVertical:o,tablePaddingHorizontal:i,tableExpandColumnWidth:l,lineWidth:c,lineType:s,tableBorderColor:u,tableFontSize:d,tableBg:f,tableRadius:p,tableHeaderTextColor:m,motionDurationMid:g,tableHeaderBg:h,tableHeaderCellSplitColor:v,tableFooterTextColor:b,tableFooterBg:y,calc:x}=e,$=`${(0,r.zA)(c)} ${s} ${u}`;return{[`${t}-wrapper`]:Object.assign(Object.assign({clear:"both",maxWidth:"100%"},(0,a.t6)()),{[t]:Object.assign(Object.assign({},(0,a.dF)(e)),{fontSize:d,background:f,borderRadius:`${(0,r.zA)(p)} ${(0,r.zA)(p)} 0 0`,scrollbarColor:`${e.tableScrollThumbBg} ${e.tableScrollBg}`}),table:{width:"100%",textAlign:"start",borderRadius:`${(0,r.zA)(p)} ${(0,r.zA)(p)} 0 0`,borderCollapse:"separate",borderSpacing:0},[` - ${t}-cell, - ${t}-thead > tr > th, - ${t}-tbody > tr > th, - ${t}-tbody > tr > td, - tfoot > tr > th, - tfoot > tr > td - `]:{position:"relative",padding:`${(0,r.zA)(o)} ${(0,r.zA)(i)}`,overflowWrap:"break-word"},[`${t}-title`]:{padding:`${(0,r.zA)(o)} ${(0,r.zA)(i)}`},[`${t}-thead`]:{[` - > tr > th, - > tr > td - `]:{position:"relative",color:m,fontWeight:n,textAlign:"start",background:h,borderBottom:$,transition:`background ${g} ease`,"&[colspan]:not([colspan='1'])":{textAlign:"center"},[`&:not(:last-child):not(${t}-selection-column):not(${t}-row-expand-icon-cell):not([colspan])::before`]:{position:"absolute",top:"50%",insetInlineEnd:0,width:1,height:"1.6em",backgroundColor:v,transform:"translateY(-50%)",transition:`background-color ${g}`,content:'""'}},"> tr:not(:last-child) > th[colspan]":{borderBottom:0}},[`${t}-tbody`]:{"> tr":{"> th, > td":{transition:`background ${g}, border-color ${g}`,borderBottom:$,[` - > ${t}-wrapper:only-child, - > ${t}-expanded-row-fixed > ${t}-wrapper:only-child - `]:{[t]:{marginBlock:(0,r.zA)(x(o).mul(-1).equal()),marginInline:`${(0,r.zA)(x(l).sub(i).equal())} - ${(0,r.zA)(x(i).mul(-1).equal())}`,[`${t}-tbody > tr:last-child > td`]:{borderBottom:0,"&:first-child, &:last-child":{borderRadius:0}}}}},"> th":{position:"relative",color:m,fontWeight:n,textAlign:"start",background:h,borderBottom:$,transition:`background ${g} ease`}}},[`${t}-footer`]:{padding:`${(0,r.zA)(o)} ${(0,r.zA)(i)}`,color:b,background:y}})}})(B),(e=>{let{componentCls:t,antCls:n,margin:o}=e;return{[`${t}-wrapper`]:{[`${t}-pagination${n}-pagination`]:{margin:`${(0,r.zA)(o)} 0`},[`${t}-pagination`]:{display:"flex",flexWrap:"wrap",rowGap:e.paddingXS,"> *":{flex:"none"},"&-left":{justifyContent:"flex-start"},"&-center":{justifyContent:"center"},"&-right":{justifyContent:"flex-end"}}}}})(B),c(B),(e=>{let{componentCls:t,marginXXS:n,fontSizeIcon:r,headerIconColor:o,headerIconHoverColor:a}=e;return{[`${t}-wrapper`]:{[`${t}-thead th${t}-column-has-sorters`]:{outline:"none",cursor:"pointer",transition:`all ${e.motionDurationSlow}, left 0s`,"&:hover":{background:e.tableHeaderSortHoverBg,"&::before":{backgroundColor:"transparent !important"}},"&:focus-visible":{color:e.colorPrimary},[` - &${t}-cell-fix-left:hover, - &${t}-cell-fix-right:hover - `]:{background:e.tableFixedHeaderSortActiveBg}},[`${t}-thead th${t}-column-sort`]:{background:e.tableHeaderSortBg,"&::before":{backgroundColor:"transparent !important"}},[`td${t}-column-sort`]:{background:e.tableBodySortBg},[`${t}-column-title`]:{position:"relative",zIndex:1,flex:1},[`${t}-column-sorters`]:{display:"flex",flex:"auto",alignItems:"center",justifyContent:"space-between","&::after":{position:"absolute",inset:0,width:"100%",height:"100%",content:'""'}},[`${t}-column-sorters-tooltip-target-sorter`]:{"&::after":{content:"none"}},[`${t}-column-sorter`]:{marginInlineStart:n,color:o,fontSize:0,transition:`color ${e.motionDurationSlow}`,"&-inner":{display:"inline-flex",flexDirection:"column",alignItems:"center"},"&-up, &-down":{fontSize:r,"&.active":{color:e.colorPrimary}},[`${t}-column-sorter-up + ${t}-column-sorter-down`]:{marginTop:"-0.3em"}},[`${t}-column-sorters:hover ${t}-column-sorter`]:{color:a}}}})(B),(e=>{let{componentCls:t,antCls:n,iconCls:o,tableFilterDropdownWidth:i,tableFilterDropdownSearchWidth:l,paddingXXS:c,paddingXS:s,colorText:u,lineWidth:d,lineType:f,tableBorderColor:p,headerIconColor:m,fontSizeSM:g,tablePaddingHorizontal:h,borderRadius:v,motionDurationSlow:b,colorTextDescription:y,colorPrimary:x,tableHeaderFilterActiveBg:$,colorTextDisabled:A,tableFilterDropdownBg:w,tableFilterDropdownHeight:C,controlItemBgHover:S,controlItemBgActive:k,boxShadowSecondary:E,filterDropdownMenuBg:O,calc:M}=e,N=`${n}-dropdown`,I=`${t}-filter-dropdown`,j=`${n}-tree`,z=`${(0,r.zA)(d)} ${f} ${p}`;return[{[`${t}-wrapper`]:{[`${t}-filter-column`]:{display:"flex",justifyContent:"space-between"},[`${t}-filter-trigger`]:{position:"relative",display:"flex",alignItems:"center",marginBlock:M(c).mul(-1).equal(),marginInline:`${(0,r.zA)(c)} ${(0,r.zA)(M(h).div(2).mul(-1).equal())}`,padding:`0 ${(0,r.zA)(c)}`,color:m,fontSize:g,borderRadius:v,cursor:"pointer",transition:`all ${b}`,"&:hover":{color:y,background:$},"&.active":{color:x}}}},{[`${n}-dropdown`]:{[I]:Object.assign(Object.assign({},(0,a.dF)(e)),{minWidth:i,backgroundColor:w,borderRadius:v,boxShadow:E,overflow:"hidden",[`${N}-menu`]:{maxHeight:C,overflowX:"hidden",border:0,boxShadow:"none",borderRadius:"unset",backgroundColor:O,"&:empty::after":{display:"block",padding:`${(0,r.zA)(s)} 0`,color:A,fontSize:g,textAlign:"center",content:'"Not Found"'}},[`${I}-tree`]:{paddingBlock:`${(0,r.zA)(s)} 0`,paddingInline:s,[j]:{padding:0},[`${j}-treenode ${j}-node-content-wrapper:hover`]:{backgroundColor:S},[`${j}-treenode-checkbox-checked ${j}-node-content-wrapper`]:{"&, &:hover":{backgroundColor:k}}},[`${I}-search`]:{padding:s,borderBottom:z,"&-input":{input:{minWidth:l},[o]:{color:A}}},[`${I}-checkall`]:{width:"100%",marginBottom:c,marginInlineStart:c},[`${I}-btns`]:{display:"flex",justifyContent:"space-between",padding:`${(0,r.zA)(M(s).sub(d).equal())} ${(0,r.zA)(s)}`,overflow:"hidden",borderTop:z}})}},{[`${n}-dropdown ${I}, ${I}-submenu`]:{[`${n}-checkbox-wrapper + span`]:{paddingInlineStart:s,color:u},"> ul":{maxHeight:"calc(100vh - 130px)",overflowX:"hidden",overflowY:"auto"}}}]})(B),(e=>{let{componentCls:t,lineWidth:n,lineType:o,tableBorderColor:a,tableHeaderBg:i,tablePaddingVertical:l,tablePaddingHorizontal:c,calc:s}=e,u=`${(0,r.zA)(n)} ${o} ${a}`,d=(e,o,a)=>({[`&${t}-${e}`]:{[`> ${t}-container`]:{[`> ${t}-content, > ${t}-body`]:{[` - > table > tbody > tr > th, - > table > tbody > tr > td - `]:{[`> ${t}-expanded-row-fixed`]:{margin:`${(0,r.zA)(s(o).mul(-1).equal())} - ${(0,r.zA)(s(s(a).add(n)).mul(-1).equal())}`}}}}}});return{[`${t}-wrapper`]:{[`${t}${t}-bordered`]:Object.assign(Object.assign(Object.assign({[`> ${t}-title`]:{border:u,borderBottom:0},[`> ${t}-container`]:{borderInlineStart:u,borderTop:u,[` - > ${t}-content, - > ${t}-header, - > ${t}-body, - > ${t}-summary - `]:{"> table":{[` - > thead > tr > th, - > thead > tr > td, - > tbody > tr > th, - > tbody > tr > td, - > tfoot > tr > th, - > tfoot > tr > td - `]:{borderInlineEnd:u},"> thead":{"> tr:not(:last-child) > th":{borderBottom:u},"> tr > th::before":{backgroundColor:"transparent !important"}},[` - > thead > tr, - > tbody > tr, - > tfoot > tr - `]:{[`> ${t}-cell-fix-right-first::after`]:{borderInlineEnd:u}},[` - > tbody > tr > th, - > tbody > tr > td - `]:{[`> ${t}-expanded-row-fixed`]:{margin:`${(0,r.zA)(s(l).mul(-1).equal())} ${(0,r.zA)(s(s(c).add(n)).mul(-1).equal())}`,"&::after":{position:"absolute",top:0,insetInlineEnd:n,bottom:0,borderInlineEnd:u,content:'""'}}}}}},[`&${t}-scroll-horizontal`]:{[`> ${t}-container > ${t}-body`]:{"> table > tbody":{[` - > tr${t}-expanded-row, - > tr${t}-placeholder - `]:{"> th, > td":{borderInlineEnd:0}}}}}},d("middle",e.tablePaddingVerticalMiddle,e.tablePaddingHorizontalMiddle)),d("small",e.tablePaddingVerticalSmall,e.tablePaddingHorizontalSmall)),{[`> ${t}-footer`]:{border:u,borderTop:0}}),[`${t}-cell`]:{[`${t}-container:first-child`]:{borderTop:0},"&-scrollbar:not([rowspan])":{boxShadow:`0 ${(0,r.zA)(n)} 0 ${(0,r.zA)(n)} ${i}`}},[`${t}-bordered ${t}-cell-scrollbar`]:{borderInlineEnd:u}}}})(B),(e=>{let{componentCls:t,tableRadius:n}=e;return{[`${t}-wrapper`]:{[t]:{[`${t}-title, ${t}-header`]:{borderRadius:`${(0,r.zA)(n)} ${(0,r.zA)(n)} 0 0`},[`${t}-title + ${t}-container`]:{borderStartStartRadius:0,borderStartEndRadius:0,[`${t}-header, table`]:{borderRadius:0},"table > thead > tr:first-child":{"th:first-child, th:last-child, td:first-child, td:last-child":{borderRadius:0}}},"&-container":{borderStartStartRadius:n,borderStartEndRadius:n,"table > thead > tr:first-child":{"> *:first-child":{borderStartStartRadius:n},"> *:last-child":{borderStartEndRadius:n}}},"&-footer":{borderRadius:`0 0 ${(0,r.zA)(n)} ${(0,r.zA)(n)}`}}}}})(B),(e=>{let{componentCls:t,antCls:n,motionDurationSlow:o,lineWidth:i,paddingXS:l,lineType:c,tableBorderColor:s,tableExpandIconBg:u,tableExpandColumnWidth:d,borderRadius:f,tablePaddingVertical:p,tablePaddingHorizontal:m,tableExpandedRowBg:g,paddingXXS:h,expandIconMarginTop:v,expandIconSize:b,expandIconHalfInner:y,expandIconScale:x,calc:$}=e,A=`${(0,r.zA)(i)} ${c} ${s}`,w=$(h).sub(i).equal();return{[`${t}-wrapper`]:{[`${t}-expand-icon-col`]:{width:d},[`${t}-row-expand-icon-cell`]:{textAlign:"center",[`${t}-row-expand-icon`]:{display:"inline-flex",float:"none",verticalAlign:"sub"}},[`${t}-row-indent`]:{height:1,float:"left"},[`${t}-row-expand-icon`]:Object.assign(Object.assign({},(0,a.Y1)(e)),{position:"relative",float:"left",width:b,height:b,color:"inherit",lineHeight:(0,r.zA)(b),background:u,border:A,borderRadius:f,transform:`scale(${x})`,"&:focus, &:hover, &:active":{borderColor:"currentcolor"},"&::before, &::after":{position:"absolute",background:"currentcolor",transition:`transform ${o} ease-out`,content:'""'},"&::before":{top:y,insetInlineEnd:w,insetInlineStart:w,height:i},"&::after":{top:w,bottom:w,insetInlineStart:y,width:i,transform:"rotate(90deg)"},"&-collapsed::before":{transform:"rotate(-180deg)"},"&-collapsed::after":{transform:"rotate(0deg)"},"&-spaced":{"&::before, &::after":{display:"none",content:"none"},background:"transparent",border:0,visibility:"hidden"}}),[`${t}-row-indent + ${t}-row-expand-icon`]:{marginTop:v,marginInlineEnd:l},[`tr${t}-expanded-row`]:{"&, &:hover":{"> th, > td":{background:g}},[`${n}-descriptions-view`]:{display:"flex",table:{flex:"auto",width:"100%"}}},[`${t}-expanded-row-fixed`]:{position:"relative",margin:`${(0,r.zA)($(p).mul(-1).equal())} ${(0,r.zA)($(m).mul(-1).equal())}`,padding:`${(0,r.zA)(p)} ${(0,r.zA)(m)}`}}}})(B),c(B),(e=>{let{componentCls:t}=e;return{[`${t}-wrapper`]:{[`${t}-tbody > tr${t}-placeholder`]:{textAlign:"center",color:e.colorTextDisabled,[` - &:hover > th, - &:hover > td, - `]:{background:e.colorBgContainer}}}}})(B),(e=>{let{componentCls:t,antCls:n,iconCls:o,fontSizeIcon:a,padding:i,paddingXS:l,headerIconColor:c,headerIconHoverColor:s,tableSelectionColumnWidth:u,tableSelectedRowBg:d,tableSelectedRowHoverBg:f,tableRowHoverBg:p,tablePaddingHorizontal:m,calc:g}=e;return{[`${t}-wrapper`]:{[`${t}-selection-col`]:{width:u,[`&${t}-selection-col-with-dropdown`]:{width:g(u).add(a).add(g(i).div(4)).equal()}},[`${t}-bordered ${t}-selection-col`]:{width:g(u).add(g(l).mul(2)).equal(),[`&${t}-selection-col-with-dropdown`]:{width:g(u).add(a).add(g(i).div(4)).add(g(l).mul(2)).equal()}},[` - table tr th${t}-selection-column, - table tr td${t}-selection-column, - ${t}-selection-column - `]:{paddingInlineEnd:e.paddingXS,paddingInlineStart:e.paddingXS,textAlign:"center",[`${n}-radio-wrapper`]:{marginInlineEnd:0}},[`table tr th${t}-selection-column${t}-cell-fix-left`]:{zIndex:g(e.zIndexTableFixed).add(1).equal({unit:!1})},[`table tr th${t}-selection-column::after`]:{backgroundColor:"transparent !important"},[`${t}-selection`]:{position:"relative",display:"inline-flex",flexDirection:"column"},[`${t}-selection-extra`]:{position:"absolute",top:0,zIndex:1,cursor:"pointer",transition:`all ${e.motionDurationSlow}`,marginInlineStart:"100%",paddingInlineStart:(0,r.zA)(g(m).div(4).equal()),[o]:{color:c,fontSize:a,verticalAlign:"baseline","&:hover":{color:s}}},[`${t}-tbody`]:{[`${t}-row`]:{[`&${t}-row-selected`]:{[`> ${t}-cell`]:{background:d,"&-row-hover":{background:f}}},[`> ${t}-cell-row-hover`]:{background:p}}}}}})(B),(e=>{let{componentCls:t,lineWidth:n,colorSplit:r,motionDurationSlow:o,zIndexTableFixed:a,tableBg:i,zIndexTableSticky:l,calc:c}=e;return{[`${t}-wrapper`]:{[` - ${t}-cell-fix-left, - ${t}-cell-fix-right - `]:{position:"sticky !important",zIndex:a,background:i},[` - ${t}-cell-fix-left-first::after, - ${t}-cell-fix-left-last::after - `]:{position:"absolute",top:0,right:{_skip_check_:!0,value:0},bottom:c(n).mul(-1).equal(),width:30,transform:"translateX(100%)",transition:`box-shadow ${o}`,content:'""',pointerEvents:"none"},[`${t}-cell-fix-left-all::after`]:{display:"none"},[` - ${t}-cell-fix-right-first::after, - ${t}-cell-fix-right-last::after - `]:{position:"absolute",top:0,bottom:c(n).mul(-1).equal(),left:{_skip_check_:!0,value:0},width:30,transform:"translateX(-100%)",transition:`box-shadow ${o}`,content:'""',pointerEvents:"none"},[`${t}-container`]:{position:"relative","&::before, &::after":{position:"absolute",top:0,bottom:0,zIndex:c(l).add(1).equal({unit:!1}),width:30,transition:`box-shadow ${o}`,content:'""',pointerEvents:"none"},"&::before":{insetInlineStart:0},"&::after":{insetInlineEnd:0}},[`${t}-ping-left`]:{[`&:not(${t}-has-fix-left) ${t}-container::before`]:{boxShadow:`inset 10px 0 8px -8px ${r}`},[` - ${t}-cell-fix-left-first::after, - ${t}-cell-fix-left-last::after - `]:{boxShadow:`inset 10px 0 8px -8px ${r}`},[`${t}-cell-fix-left-last::before`]:{backgroundColor:"transparent !important"}},[`${t}-ping-right`]:{[`&:not(${t}-has-fix-right) ${t}-container::after`]:{boxShadow:`inset -10px 0 8px -8px ${r}`},[` - ${t}-cell-fix-right-first::after, - ${t}-cell-fix-right-last::after - `]:{boxShadow:`inset -10px 0 8px -8px ${r}`}},[`${t}-fixed-column-gapped`]:{[` - ${t}-cell-fix-left-first::after, - ${t}-cell-fix-left-last::after, - ${t}-cell-fix-right-first::after, - ${t}-cell-fix-right-last::after - `]:{boxShadow:"none"}}}}})(B),(e=>{let{componentCls:t,opacityLoading:n,tableScrollThumbBg:o,tableScrollThumbBgHover:a,tableScrollThumbSize:i,tableScrollBg:l,zIndexTableSticky:c,stickyScrollBarBorderRadius:s,lineWidth:u,lineType:d,tableBorderColor:f}=e,p=`${(0,r.zA)(u)} ${d} ${f}`;return{[`${t}-wrapper`]:{[`${t}-sticky`]:{"&-holder":{position:"sticky",zIndex:c,background:e.colorBgContainer},"&-scroll":{position:"sticky",bottom:0,height:`${(0,r.zA)(i)} !important`,zIndex:c,display:"flex",alignItems:"center",background:l,borderTop:p,opacity:n,"&:hover":{transformOrigin:"center bottom"},"&-bar":{height:i,backgroundColor:o,borderRadius:s,transition:`all ${e.motionDurationSlow}, transform none`,position:"absolute",bottom:0,"&:hover, &-active":{backgroundColor:a}}}}}}})(B),(e=>{let{componentCls:t}=e;return{[`${t}-wrapper`]:{[`${t}-cell-ellipsis`]:Object.assign(Object.assign({},a.L9),{wordBreak:"keep-all",[` - &${t}-cell-fix-left-last, - &${t}-cell-fix-right-first - `]:{overflow:"visible",[`${t}-cell-content`]:{display:"block",overflow:"hidden",textOverflow:"ellipsis"}},[`${t}-column-title`]:{overflow:"hidden",textOverflow:"ellipsis",wordBreak:"keep-all"}})}}})(B),(e=>{let{componentCls:t,tableExpandColumnWidth:n,calc:o}=e,a=(e,a,i,l)=>({[`${t}${t}-${e}`]:{fontSize:l,[` - ${t}-title, - ${t}-footer, - ${t}-cell, - ${t}-thead > tr > th, - ${t}-tbody > tr > th, - ${t}-tbody > tr > td, - tfoot > tr > th, - tfoot > tr > td - `]:{padding:`${(0,r.zA)(a)} ${(0,r.zA)(i)}`},[`${t}-filter-trigger`]:{marginInlineEnd:(0,r.zA)(o(i).div(2).mul(-1).equal())},[`${t}-expanded-row-fixed`]:{margin:`${(0,r.zA)(o(a).mul(-1).equal())} ${(0,r.zA)(o(i).mul(-1).equal())}`},[`${t}-tbody`]:{[`${t}-wrapper:only-child ${t}`]:{marginBlock:(0,r.zA)(o(a).mul(-1).equal()),marginInline:`${(0,r.zA)(o(n).sub(i).equal())} ${(0,r.zA)(o(i).mul(-1).equal())}`}},[`${t}-selection-extra`]:{paddingInlineStart:(0,r.zA)(o(i).div(4).equal())}}});return{[`${t}-wrapper`]:Object.assign(Object.assign({},a("middle",e.tablePaddingVerticalMiddle,e.tablePaddingHorizontalMiddle,e.tableFontSizeMiddle)),a("small",e.tablePaddingVerticalSmall,e.tablePaddingHorizontalSmall,e.tableFontSizeSmall))}})(B),(e=>{let{componentCls:t}=e;return{[`${t}-wrapper-rtl`]:{direction:"rtl",table:{direction:"rtl"},[`${t}-pagination-left`]:{justifyContent:"flex-end"},[`${t}-pagination-right`]:{justifyContent:"flex-start"},[`${t}-row-expand-icon`]:{float:"right","&::after":{transform:"rotate(-90deg)"},"&-collapsed::before":{transform:"rotate(180deg)"},"&-collapsed::after":{transform:"rotate(0deg)"}},[`${t}-container`]:{"&::before":{insetInlineStart:"unset",insetInlineEnd:0},"&::after":{insetInlineStart:0,insetInlineEnd:"unset"},[`${t}-row-indent`]:{float:"right"}}}}})(B),(e=>{let{componentCls:t,motionDurationMid:n,lineWidth:o,lineType:a,tableBorderColor:i,calc:l}=e,c=`${(0,r.zA)(o)} ${a} ${i}`,s=`${t}-expanded-row-cell`;return{[`${t}-wrapper`]:{[`${t}-tbody-virtual`]:{[`${t}-tbody-virtual-holder-inner`]:{[` - & > ${t}-row, - & > div:not(${t}-row) > ${t}-row - `]:{display:"flex",boxSizing:"border-box",width:"100%"}},[`${t}-cell`]:{borderBottom:c,transition:`background ${n}`},[`${t}-expanded-row`]:{[`${s}${s}-fixed`]:{position:"sticky",insetInlineStart:0,overflow:"hidden",width:`calc(var(--virtual-width) - ${(0,r.zA)(o)})`,borderInlineEnd:"none"}}},[`${t}-bordered`]:{[`${t}-tbody-virtual`]:{"&:after":{content:'""',insetInline:0,bottom:0,borderBottom:c,position:"absolute"},[`${t}-cell`]:{borderInlineEnd:c,[`&${t}-cell-fix-right-first:before`]:{content:'""',position:"absolute",insetBlock:0,insetInlineStart:l(o).mul(-1).equal(),borderInlineStart:c}}},[`&${t}-virtual`]:{[`${t}-placeholder ${t}-cell`]:{borderInlineEnd:c,borderBottom:c}}}}}})(B)]},e=>{let{colorFillAlter:t,colorBgContainer:n,colorTextHeading:r,colorFillSecondary:a,colorFillContent:i,controlItemBgActive:l,controlItemBgActiveHover:c,padding:s,paddingSM:u,paddingXS:d,colorBorderSecondary:f,borderRadiusLG:p,controlHeight:m,colorTextPlaceholder:g,fontSize:h,fontSizeSM:v,lineHeight:b,lineWidth:y,colorIcon:x,colorIconHover:$,opacityLoading:A,controlInteractiveSize:w}=e,C=new o.q(a).onBackground(n).toHexShortString(),S=new o.q(i).onBackground(n).toHexShortString(),k=new o.q(t).onBackground(n).toHexShortString(),E=new o.q(x),O=new o.q($),M=w/2-y,N=2*M+3*y;return{headerBg:k,headerColor:r,headerSortActiveBg:C,headerSortHoverBg:S,bodySortBg:k,rowHoverBg:k,rowSelectedBg:l,rowSelectedHoverBg:c,rowExpandedBg:t,cellPaddingBlock:s,cellPaddingInline:s,cellPaddingBlockMD:u,cellPaddingInlineMD:d,cellPaddingBlockSM:d,cellPaddingInlineSM:d,borderColor:f,headerBorderRadius:p,footerBg:k,footerColor:r,cellFontSize:h,cellFontSizeMD:h,cellFontSizeSM:h,headerSplitColor:f,fixedHeaderSortActiveBg:C,headerFilterHoverBg:i,filterDropdownMenuBg:n,filterDropdownBg:n,expandIconBg:n,selectionColumnWidth:m,stickyScrollBarBg:g,stickyScrollBarBorderRadius:100,expandIconMarginTop:(h*b-3*y)/2-Math.ceil((1.4*v-3*y)/2),headerIconColor:E.clone().setAlpha(E.getAlpha()*A).toRgbString(),headerIconHoverColor:O.clone().setAlpha(O.getAlpha()*A).toRgbString(),expandIconHalfInner:M,expandIconSize:N,expandIconScale:w/N}},{unitless:{expandIconScale:!0}})},49806(e,t,n){"use strict";n.d(t,{sb:()=>s,vG:()=>u,zQ:()=>c});var r=n(47867),o=n.n(r),a=n(96191),i=n(65924),l=n(50723);let c=(0,a.an)(i.A),s={token:l.A,override:{override:l.A},hashed:!0},u=o().createContext(s)},13950(e,t,n){"use strict";n.d(t,{s:()=>r});let r=["blue","purple","cyan","green","magenta","pink","red","orange","yellow","volcano","geekblue","lime","gold"]},65924(e,t,n){"use strict";n.d(t,{A:()=>p});var r=n(16124),o=n(50723),a=n(27484),i=n(78690),l=n(51892),c=n(29128);let s=(e,t)=>new c.q(e).setAlpha(t).toRgbString(),u=(e,t)=>new c.q(e).darken(t).toHexString(),d=e=>{let t=(0,r.generate)(e);return{1:t[0],2:t[1],3:t[2],4:t[3],5:t[4],6:t[5],7:t[6],8:t[4],9:t[5],10:t[6]}},f=(e,t)=>{let n=e||"#fff",r=t||"#000";return{colorBgBase:n,colorTextBase:r,colorText:s(r,.88),colorTextSecondary:s(r,.65),colorTextTertiary:s(r,.45),colorTextQuaternary:s(r,.25),colorFill:s(r,.15),colorFillSecondary:s(r,.06),colorFillTertiary:s(r,.04),colorFillQuaternary:s(r,.02),colorBgSolid:s(r,1),colorBgSolidHover:s(r,.75),colorBgSolidActive:s(r,.95),colorBgLayout:u(n,4),colorBgContainer:u(n,0),colorBgElevated:u(n,0),colorBgSpotlight:s(r,.85),colorBgBlur:"transparent",colorBorder:u(n,15),colorBorderSecondary:u(n,6)}};function p(e){r.presetPrimaryColors.pink=r.presetPrimaryColors.magenta,r.presetPalettes.pink=r.presetPalettes.magenta;let t=Object.keys(o.r).map(t=>{let n=e[t]===r.presetPrimaryColors[t]?r.presetPalettes[t]:(0,r.generate)(e[t]);return Array(10).fill(1).reduce((e,r,o)=>(e[`${t}-${o+1}`]=n[o],e[`${t}${o+1}`]=n[o],e),{})}).reduce((e,t)=>e=Object.assign(Object.assign({},e),t),{});return Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},e),t),(0,a.A)(e,{generateColorPalettes:d,generateNeutralColorPalettes:f})),(0,l.A)(e.fontSize)),function(e){let{sizeUnit:t,sizeStep:n}=e;return{sizeXXL:t*(n+8),sizeXL:t*(n+4),sizeLG:t*(n+2),sizeMD:t*(n+1),sizeMS:t*n,size:t*n,sizeSM:t*(n-1),sizeXS:t*(n-2),sizeXXS:t*(n-3)}}(e)),(0,i.A)(e)),function(e){let t,n,r,o,{motionUnit:a,motionBase:i,borderRadius:l,lineWidth:c}=e;return Object.assign({motionDurationFast:`${(i+a).toFixed(1)}s`,motionDurationMid:`${(i+2*a).toFixed(1)}s`,motionDurationSlow:`${(i+3*a).toFixed(1)}s`,lineWidthBold:c+1},(t=l,n=l,r=l,o=l,l<6&&l>=5?t=l+1:l<16&&l>=6?t=l+2:l>=16&&(t=16),l<7&&l>=5?n=4:l<8&&l>=7?n=5:l<14&&l>=8?n=6:l<16&&l>=14?n=7:l>=16&&(n=8),l<6&&l>=2?r=1:l>=6&&(r=2),l>4&&l<8?o=4:l>=8&&(o=6),{borderRadius:l,borderRadiusXS:r,borderRadiusSM:n,borderRadiusLG:t,borderRadiusOuter:o}))}(e))}},50723(e,t,n){"use strict";n.d(t,{A:()=>o,r:()=>r});let r={blue:"#1677FF",purple:"#722ED1",cyan:"#13C2C2",green:"#52C41A",magenta:"#EB2F96",pink:"#EB2F96",red:"#F5222D",orange:"#FA8C16",yellow:"#FADB14",volcano:"#FA541C",geekblue:"#2F54EB",gold:"#FAAD14",lime:"#A0D911"},o=Object.assign(Object.assign({},r),{colorPrimary:"#1677ff",colorSuccess:"#52c41a",colorWarning:"#faad14",colorError:"#ff4d4f",colorInfo:"#1677ff",colorLink:"",colorTextBase:"",colorBgBase:"",fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, -'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', -'Noto Color Emoji'`,fontFamilyCode:"'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace",fontSize:14,lineWidth:1,lineType:"solid",motionUnit:.1,motionBase:0,motionEaseOutCirc:"cubic-bezier(0.08, 0.82, 0.17, 1)",motionEaseInOutCirc:"cubic-bezier(0.78, 0.14, 0.15, 0.86)",motionEaseOut:"cubic-bezier(0.215, 0.61, 0.355, 1)",motionEaseInOut:"cubic-bezier(0.645, 0.045, 0.355, 1)",motionEaseOutBack:"cubic-bezier(0.12, 0.4, 0.29, 1.46)",motionEaseInBack:"cubic-bezier(0.71, -0.46, 0.88, 0.6)",motionEaseInQuint:"cubic-bezier(0.755, 0.05, 0.855, 0.06)",motionEaseOutQuint:"cubic-bezier(0.23, 1, 0.32, 1)",borderRadius:6,sizeUnit:4,sizeStep:4,sizePopupArrow:16,controlHeight:32,zIndexBase:0,zIndexPopupBase:1e3,opacityImage:1,wireframe:!1,motion:!0})},27484(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(29128);function o(e,t){let{generateColorPalettes:n,generateNeutralColorPalettes:o}=t,{colorSuccess:a,colorWarning:i,colorError:l,colorInfo:c,colorPrimary:s,colorBgBase:u,colorTextBase:d}=e,f=n(s),p=n(a),m=n(i),g=n(l),h=n(c),v=o(u,d),b=n(e.colorLink||e.colorInfo),y=new r.q(g[1]).mix(new r.q(g[3]),50).toHexString();return Object.assign(Object.assign({},v),{colorPrimaryBg:f[1],colorPrimaryBgHover:f[2],colorPrimaryBorder:f[3],colorPrimaryBorderHover:f[4],colorPrimaryHover:f[5],colorPrimary:f[6],colorPrimaryActive:f[7],colorPrimaryTextHover:f[8],colorPrimaryText:f[9],colorPrimaryTextActive:f[10],colorSuccessBg:p[1],colorSuccessBgHover:p[2],colorSuccessBorder:p[3],colorSuccessBorderHover:p[4],colorSuccessHover:p[4],colorSuccess:p[6],colorSuccessActive:p[7],colorSuccessTextHover:p[8],colorSuccessText:p[9],colorSuccessTextActive:p[10],colorErrorBg:g[1],colorErrorBgHover:g[2],colorErrorBgFilledHover:y,colorErrorBgActive:g[3],colorErrorBorder:g[3],colorErrorBorderHover:g[4],colorErrorHover:g[5],colorError:g[6],colorErrorActive:g[7],colorErrorTextHover:g[8],colorErrorText:g[9],colorErrorTextActive:g[10],colorWarningBg:m[1],colorWarningBgHover:m[2],colorWarningBorder:m[3],colorWarningBorderHover:m[4],colorWarningHover:m[4],colorWarning:m[6],colorWarningActive:m[7],colorWarningTextHover:m[8],colorWarningText:m[9],colorWarningTextActive:m[10],colorInfoBg:h[1],colorInfoBgHover:h[2],colorInfoBorder:h[3],colorInfoBorderHover:h[4],colorInfoHover:h[4],colorInfo:h[6],colorInfoActive:h[7],colorInfoTextHover:h[8],colorInfoText:h[9],colorInfoTextActive:h[10],colorLinkHover:b[4],colorLink:b[6],colorLinkActive:b[7],colorBgMask:new r.q("#000").setAlpha(.45).toRgbString(),colorWhite:"#fff"})}},78690(e,t,n){"use strict";n.d(t,{A:()=>r});let r=e=>{let{controlHeight:t}=e;return{controlHeightSM:.75*t,controlHeightXS:.5*t,controlHeightLG:1.25*t}}},51892(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(94925);let o=e=>{let t=(0,r.A)(e),n=t.map(e=>e.size),o=t.map(e=>e.lineHeight),a=n[1],i=n[0],l=n[2],c=o[1],s=o[0],u=o[2];return{fontSizeSM:i,fontSize:a,fontSizeLG:l,fontSizeXL:n[3],fontSizeHeading1:n[6],fontSizeHeading2:n[5],fontSizeHeading3:n[4],fontSizeHeading4:n[3],fontSizeHeading5:n[2],lineHeight:c,lineHeightLG:u,lineHeightSM:s,fontHeight:Math.round(c*a),fontHeightLG:Math.round(u*l),fontHeightSM:Math.round(s*i),lineHeightHeading1:o[6],lineHeightHeading2:o[5],lineHeightHeading3:o[4],lineHeightHeading4:o[3],lineHeightHeading5:o[2]}}},94925(e,t,n){"use strict";function r(e){return(e+8)/e}function o(e){let t=Array(10).fill(null).map((t,n)=>{let r=e*Math.pow(Math.E,(n-1)/5);return 2*Math.floor((n>1?Math.floor(r):Math.ceil(r))/2)});return t[1]=e,t.map(e=>({size:e,lineHeight:r(e)}))}n.d(t,{A:()=>o,k:()=>r})},93093(e,t,n){"use strict";n.d(t,{Ay:()=>g,Is:()=>d});var r=n(47867),o=n.n(r),a=n(96191),i=n(11031),l=n(49806),c=n(50723),s=n(43596),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let d={lineHeight:!0,lineHeightSM:!0,lineHeightLG:!0,lineHeightHeading1:!0,lineHeightHeading2:!0,lineHeightHeading3:!0,lineHeightHeading4:!0,lineHeightHeading5:!0,opacityLoading:!0,fontWeightStrong:!0,zIndexPopupBase:!0,zIndexBase:!0,opacityImage:!0},f={size:!0,sizeSM:!0,sizeLG:!0,sizeMD:!0,sizeXS:!0,sizeXXS:!0,sizeMS:!0,sizeXL:!0,sizeXXL:!0,sizeUnit:!0,sizeStep:!0,motionBase:!0,motionUnit:!0},p={screenXS:!0,screenXSMin:!0,screenXSMax:!0,screenSM:!0,screenSMMin:!0,screenSMMax:!0,screenMD:!0,screenMDMin:!0,screenMDMax:!0,screenLG:!0,screenLGMin:!0,screenLGMax:!0,screenXL:!0,screenXLMin:!0,screenXLMax:!0,screenXXL:!0,screenXXLMin:!0},m=(e,t,n)=>{let r=n.getDerivativeToken(e),{override:o}=t,a=u(t,["override"]),i=Object.assign(Object.assign({},r),{override:o});return i=(0,s.A)(i),a&&Object.entries(a).forEach(e=>{let[t,n]=e,{theme:r}=n,o=u(n,["theme"]),a=o;r&&(a=m(Object.assign(Object.assign({},i),o),{override:o},r)),i[t]=a}),i};function g(){let{token:e,hashed:t,theme:n,override:r,cssVar:u}=o().useContext(l.vG),g=`${i.A}-${t||""}`,h=n||l.zQ,[v,b,y]=(0,a.hV)(h,[c.A,e],{salt:g,override:r,getComputedToken:m,formatToken:s.A,cssVar:u&&{prefix:u.prefix,key:u.key,unitless:d,ignore:f,preserve:p}});return[h,y,t?b:"",v,u]}},43596(e,t,n){"use strict";n.d(t,{A:()=>c});var r=n(29128),o=n(50723);function a(e){return e>=0&&e<=255}let i=function(e,t){let{r:n,g:o,b:i,a:l}=new r.q(e).toRgb();if(l<1)return e;let{r:c,g:s,b:u}=new r.q(t).toRgb();for(let e=.01;e<=1;e+=.01){let t=Math.round((n-c*(1-e))/e),l=Math.round((o-s*(1-e))/e),d=Math.round((i-u*(1-e))/e);if(a(t)&&a(l)&&a(d))return new r.q({r:t,g:l,b:d,a:Math.round(100*e)/100}).toRgbString()}return new r.q({r:n,g:o,b:i,a:1}).toRgbString()};var l=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};function c(e){let{override:t}=e,n=l(e,["override"]),a=Object.assign({},t);Object.keys(o.A).forEach(e=>{delete a[e]});let c=Object.assign(Object.assign({},n),a);return!1===c.motion&&(c.motionDurationFast="0s",c.motionDurationMid="0s",c.motionDurationSlow="0s"),Object.assign(Object.assign(Object.assign({},c),{colorFillContent:c.colorFillSecondary,colorFillContentHover:c.colorFill,colorFillAlter:c.colorFillQuaternary,colorBgContainerDisabled:c.colorFillTertiary,colorBorderBg:c.colorBgContainer,colorSplit:i(c.colorBorderSecondary,c.colorBgContainer),colorTextPlaceholder:c.colorTextQuaternary,colorTextDisabled:c.colorTextQuaternary,colorTextHeading:c.colorText,colorTextLabel:c.colorTextSecondary,colorTextDescription:c.colorTextTertiary,colorTextLightSolid:c.colorWhite,colorHighlight:c.colorError,colorBgTextHover:c.colorFillSecondary,colorBgTextActive:c.colorFill,colorIcon:c.colorTextTertiary,colorIconHover:c.colorText,colorErrorOutline:i(c.colorErrorBg,c.colorBgContainer),colorWarningOutline:i(c.colorWarningBg,c.colorBgContainer),fontSizeIcon:c.fontSizeSM,lineWidthFocus:3*c.lineWidth,lineWidth:c.lineWidth,controlOutlineWidth:2*c.lineWidth,controlInteractiveSize:c.controlHeight/2,controlItemBgHover:c.colorFillTertiary,controlItemBgActive:c.colorPrimaryBg,controlItemBgActiveHover:c.colorPrimaryBgHover,controlItemBgActiveDisabled:c.colorFill,controlTmpOutline:c.colorFillQuaternary,controlOutline:i(c.colorPrimaryBg,c.colorBgContainer),lineType:c.lineType,borderRadius:c.borderRadius,borderRadiusXS:c.borderRadiusXS,borderRadiusSM:c.borderRadiusSM,borderRadiusLG:c.borderRadiusLG,fontWeightStrong:600,opacityLoading:.65,linkDecoration:"none",linkHoverDecoration:"none",linkFocusDecoration:"none",controlPaddingHorizontal:12,controlPaddingHorizontalSM:8,paddingXXS:c.sizeXXS,paddingXS:c.sizeXS,paddingSM:c.sizeSM,padding:c.size,paddingMD:c.sizeMD,paddingLG:c.sizeLG,paddingXL:c.sizeXL,paddingContentHorizontalLG:c.sizeLG,paddingContentVerticalLG:c.sizeMS,paddingContentHorizontal:c.sizeMS,paddingContentVertical:c.sizeSM,paddingContentHorizontalSM:c.size,paddingContentVerticalSM:c.sizeXS,marginXXS:c.sizeXXS,marginXS:c.sizeXS,marginSM:c.sizeSM,margin:c.size,marginMD:c.sizeMD,marginLG:c.sizeLG,marginXL:c.sizeXL,marginXXL:c.sizeXXL,boxShadow:` - 0 6px 16px 0 rgba(0, 0, 0, 0.08), - 0 3px 6px -4px rgba(0, 0, 0, 0.12), - 0 9px 28px 8px rgba(0, 0, 0, 0.05) - `,boxShadowSecondary:` - 0 6px 16px 0 rgba(0, 0, 0, 0.08), - 0 3px 6px -4px rgba(0, 0, 0, 0.12), - 0 9px 28px 8px rgba(0, 0, 0, 0.05) - `,boxShadowTertiary:` - 0 1px 2px 0 rgba(0, 0, 0, 0.03), - 0 1px 6px -1px rgba(0, 0, 0, 0.02), - 0 2px 4px 0 rgba(0, 0, 0, 0.02) - `,screenXS:480,screenXSMin:480,screenXSMax:575,screenSM:576,screenSMMin:576,screenSMMax:767,screenMD:768,screenMDMin:768,screenMDMax:991,screenLG:992,screenLGMin:992,screenLGMax:1199,screenXL:1200,screenXLMin:1200,screenXLMax:1599,screenXXL:1600,screenXXLMin:1600,boxShadowPopoverArrow:"2px 2px 5px rgba(0, 0, 0, 0.05)",boxShadowCard:` - 0 1px 2px -2px ${new r.q("rgba(0, 0, 0, 0.16)").toRgbString()}, - 0 3px 6px 0 ${new r.q("rgba(0, 0, 0, 0.12)").toRgbString()}, - 0 5px 12px 4px ${new r.q("rgba(0, 0, 0, 0.09)").toRgbString()} - `,boxShadowDrawerRight:` - -6px 0 16px 0 rgba(0, 0, 0, 0.08), - -3px 0 6px -4px rgba(0, 0, 0, 0.12), - -9px 0 28px 8px rgba(0, 0, 0, 0.05) - `,boxShadowDrawerLeft:` - 6px 0 16px 0 rgba(0, 0, 0, 0.08), - 3px 0 6px -4px rgba(0, 0, 0, 0.12), - 9px 0 28px 8px rgba(0, 0, 0, 0.05) - `,boxShadowDrawerUp:` - 0 6px 16px 0 rgba(0, 0, 0, 0.08), - 0 3px 6px -4px rgba(0, 0, 0, 0.12), - 0 9px 28px 8px rgba(0, 0, 0, 0.05) - `,boxShadowDrawerDown:` - 0 -6px 16px 0 rgba(0, 0, 0, 0.08), - 0 -3px 6px -4px rgba(0, 0, 0, 0.12), - 0 -9px 28px 8px rgba(0, 0, 0, 0.05) - `,boxShadowTabsOverflowLeft:"inset 10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowRight:"inset -10px 0 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowTop:"inset 0 10px 8px -8px rgba(0, 0, 0, 0.08)",boxShadowTabsOverflowBottom:"inset 0 -10px 8px -8px rgba(0, 0, 0, 0.08)"}),a)}},31108(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(13950);function o(e,t){return r.s.reduce((n,r)=>{let o=e[`${r}1`],a=e[`${r}3`],i=e[`${r}6`],l=e[`${r}7`];return Object.assign(Object.assign({},n),t(r,{lightColor:o,lightBorderColor:a,darkColor:i,textColor:l}))},{})}},37358(e,t,n){"use strict";n.d(t,{OF:()=>c,Or:()=>s,bf:()=>u});var r=n(47867),o=n(10224),a=n(62279),i=n(25905),l=n(93093);let{genStyleHooks:c,genComponentStyleHook:s,genSubStyleComponent:u}=(0,o.L_)({usePrefix:()=>{let{getPrefixCls:e,iconPrefixCls:t}=(0,r.useContext)(a.QO);return{rootPrefixCls:e(),iconPrefixCls:t}},useToken:()=>{let[e,t,n,r,o]=(0,l.Ay)();return{theme:e,realToken:t,hashId:n,token:r,cssVar:o}},useCSP:()=>{let{csp:e}=(0,r.useContext)(a.QO);return null!=e?e:{}},getResetStyles:(e,t)=>{var n;return[{"&":(0,i.av)(e)},(0,i.jz)(null!=(n=null==t?void 0:t.prefix.iconPrefixCls)?n:a.pM)]},getCommonStyle:i.vj,getCompUnitless:()=>l.Is})},65341(e,t,n){"use strict";n.d(t,{A:()=>r});let r={placeholder:"Select time",rangePlaceholder:["Start time","End time"]}},42443(e,t,n){"use strict";n.d(t,{A:()=>I});var r=n(47867),o=n(8651),a=n.n(o),i=n(47251),l=n(12533),c=n(62897),s=n(60275),u=n(23723),d=n(13257),f=n(40682),p=n(18877),m=n(72616),g=n(62279),h=n(93093),v=n(96191),b=n(25905),y=n(99077),x=n(95201),$=n(20791),A=n(31108),w=n(10224),C=n(37358);let S=e=>Object.assign(Object.assign({zIndexPopup:e.zIndexPopupBase+70},(0,x.Ke)({contentRadius:e.borderRadius,limitVerticalRadius:!0})),(0,$.n)((0,w.oX)(e,{borderRadiusOuter:Math.min(e.borderRadiusOuter,4)}))),k=function(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return(0,C.OF)("Tooltip",e=>{let{borderRadius:t,colorTextLightSolid:n,colorBgSpotlight:r}=e;return[(e=>{let{calc:t,componentCls:n,tooltipMaxWidth:r,tooltipColor:o,tooltipBg:a,tooltipBorderRadius:i,zIndexPopup:l,controlHeight:c,boxShadowSecondary:s,paddingSM:u,paddingXS:d,arrowOffsetHorizontal:f,sizePopupArrow:p}=e,m=t(i).add(p).add(f).equal(),g=t(i).mul(2).add(p).equal();return[{[n]:Object.assign(Object.assign(Object.assign(Object.assign({},(0,b.dF)(e)),{position:"absolute",zIndex:l,display:"block",width:"max-content",maxWidth:r,visibility:"visible","--valid-offset-x":"var(--arrow-offset-horizontal, var(--arrow-x))",transformOrigin:"var(--valid-offset-x, 50%) var(--arrow-y, 50%)","&-hidden":{display:"none"},"--antd-arrow-background-color":a,[`${n}-inner`]:{minWidth:g,minHeight:c,padding:`${(0,v.zA)(e.calc(u).div(2).equal())} ${(0,v.zA)(d)}`,color:o,textAlign:"start",textDecoration:"none",wordWrap:"break-word",backgroundColor:a,borderRadius:i,boxShadow:s,boxSizing:"border-box"},"&-placement-topLeft,&-placement-topRight,&-placement-bottomLeft,&-placement-bottomRight":{minWidth:m},"&-placement-left,&-placement-leftTop,&-placement-leftBottom,&-placement-right,&-placement-rightTop,&-placement-rightBottom":{[`${n}-inner`]:{borderRadius:e.min(i,x.Zs)}},[`${n}-content`]:{position:"relative"}}),(0,A.A)(e,(e,t)=>{let{darkColor:r}=t;return{[`&${n}-${e}`]:{[`${n}-inner`]:{backgroundColor:r},[`${n}-arrow`]:{"--antd-arrow-background-color":r}}}})),{"&-rtl":{direction:"rtl"}})},(0,x.Ay)(e,"var(--antd-arrow-background-color)"),{[`${n}-pure`]:{position:"relative",maxWidth:"none",margin:e.sizePopupArrow}}]})((0,w.oX)(e,{tooltipMaxWidth:250,tooltipColor:n,tooltipBorderRadius:t,tooltipBg:r})),(0,y.aB)(e,"zoom-big-fast")]},S,{resetStyle:!1,injectStyle:t})(e)};var E=n(54121);function O(e,t){let n=(0,E.nP)(t),r=a()({[`${e}-${t}`]:t&&n}),o={},i={};return t&&!n&&(o.background=t,i["--antd-arrow-background-color"]=t),{className:r,overlayStyle:o,arrowStyle:i}}var M=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let N=r.forwardRef((e,t)=>{var n,o;let{prefixCls:v,openClassName:b,getTooltipContainer:y,overlayClassName:x,color:$,overlayInnerStyle:A,children:w,afterOpenChange:C,afterVisibleChange:S,destroyTooltipOnHide:E,arrow:N=!0,title:I,overlay:j,builtinPlacements:z,arrowPointAtCenter:R=!1,autoAdjustOverflow:P=!0}=e,T=!!N,[,D]=(0,h.Ay)(),{getPopupContainer:L,getPrefixCls:B,direction:F}=r.useContext(g.QO),H=(0,p.rJ)("Tooltip"),_=r.useRef(null),W=()=>{var e;null==(e=_.current)||e.forceAlign()};r.useImperativeHandle(t,()=>{var e;return{forceAlign:W,forcePopupAlign:()=>{H.deprecated(!1,"forcePopupAlign","forceAlign"),W()},nativeElement:null==(e=_.current)?void 0:e.nativeElement}});let[q,V]=(0,l.A)(!1,{value:null!=(n=e.open)?n:e.visible,defaultValue:null!=(o=e.defaultOpen)?o:e.defaultVisible}),K=!I&&!j&&0!==I,X=r.useMemo(()=>{var e,t;let n=R;return"object"==typeof N&&(n=null!=(t=null!=(e=N.pointAtCenter)?e:N.arrowPointAtCenter)?t:R),z||(0,d.A)({arrowPointAtCenter:n,autoAdjustOverflow:P,arrowWidth:T?D.sizePopupArrow:0,borderRadius:D.borderRadius,offset:D.marginXXS,visibleFirst:!0})},[R,N,z,D]),Y=r.useMemo(()=>0===I?I:j||I||"",[j,I]),U=r.createElement(c.A,{space:!0},"function"==typeof Y?Y():Y),{getPopupContainer:G,placement:Q="top",mouseEnterDelay:Z=.1,mouseLeaveDelay:J=.1,overlayStyle:ee,rootClassName:et}=e,en=M(e,["getPopupContainer","placement","mouseEnterDelay","mouseLeaveDelay","overlayStyle","rootClassName"]),er=B("tooltip",v),eo=B(),ea=e["data-popover-inject"],ei=q;"open"in e||"visible"in e||!K||(ei=!1);let el=r.isValidElement(w)&&!(0,f.zv)(w)?w:r.createElement("span",null,w),ec=el.props,es=ec.className&&"string"!=typeof ec.className?ec.className:a()(ec.className,b||`${er}-open`),[eu,ed,ef]=k(er,!ea),ep=O(er,$),em=ep.arrowStyle,eg=Object.assign(Object.assign({},A),ep.overlayStyle),eh=a()(x,{[`${er}-rtl`]:"rtl"===F},ep.className,et,ed,ef),[ev,eb]=(0,s.YK)("Tooltip",en.zIndex),ey=r.createElement(i.A,Object.assign({},en,{zIndex:ev,showArrow:T,placement:Q,mouseEnterDelay:Z,mouseLeaveDelay:J,prefixCls:er,overlayClassName:eh,overlayStyle:Object.assign(Object.assign({},em),ee),getTooltipContainer:G||y||L,ref:_,builtinPlacements:X,overlay:U,visible:ei,onVisibleChange:t=>{var n,r;V(!K&&t),K||(null==(n=e.onOpenChange)||n.call(e,t),null==(r=e.onVisibleChange)||r.call(e,t))},afterVisibleChange:null!=C?C:S,overlayInnerStyle:eg,arrowContent:r.createElement("span",{className:`${er}-arrow-content`}),motion:{motionName:(0,u.b)(eo,"zoom-big-fast",e.transitionName),motionDeadline:1e3},destroyTooltipOnHide:!!E}),ei?(0,f.Ob)(el,{className:es}):el);return eu(r.createElement(m.A.Provider,{value:eb},ey))});N._InternalPanelDoNotUseOrYouWillBeFired=e=>{let{prefixCls:t,className:n,placement:o="top",title:l,color:c,overlayInnerStyle:s}=e,{getPrefixCls:u}=r.useContext(g.QO),d=u("tooltip",t),[f,p,m]=k(d),h=O(d,c),v=h.arrowStyle,b=Object.assign(Object.assign({},s),h.overlayStyle),y=a()(p,m,d,`${d}-pure`,`${d}-placement-${o}`,n,h.className);return f(r.createElement("div",{className:y,style:v},r.createElement("div",{className:`${d}-arrow`}),r.createElement(i.z,Object.assign({},e,{className:p,prefixCls:d,overlayInnerStyle:b}),l)))};let I=N},49501(e,t,n){"use strict";n.d(t,{A:()=>Y});var r=n(47867),o=n(58168);let a={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z"}}]},name:"edit",theme:"outlined"};var i=n(67928),l=r.forwardRef(function(e,t){return r.createElement(i.A,(0,o.A)({},e,{ref:t,icon:a}))}),c=n(8651),s=n.n(c),u=n(60305),d=n(82546),f=n(30981),p=n(12533),m=n(19853),g=n(8719),h=n(99777),v=n(62279),b=n(19155),y=n(42443);let x={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M864 170h-60c-4.4 0-8 3.6-8 8v518H310v-73c0-6.7-7.8-10.5-13-6.3l-141.9 112a8 8 0 000 12.6l141.9 112c5.3 4.2 13 .4 13-6.3v-75h498c35.3 0 64-28.7 64-64V178c0-4.4-3.6-8-8-8z"}}]},name:"enter",theme:"outlined"};var $=r.forwardRef(function(e,t){return r.createElement(i.A,(0,o.A)({},e,{ref:t,icon:x}))}),A=n(16928),w=n(40682),C=n(88592),S=n(85161);let k=e=>{let{prefixCls:t,"aria-label":n,className:o,style:a,direction:i,maxLength:l,autoSize:c=!0,value:u,onSave:d,onCancel:f,onEnd:p,component:m,enterIcon:g=r.createElement($,null)}=e,h=r.useRef(null),v=r.useRef(!1),b=r.useRef(null),[y,x]=r.useState(u);r.useEffect(()=>{x(u)},[u]),r.useEffect(()=>{var e;if(null==(e=h.current)?void 0:e.resizableTextArea){let{textArea:e}=h.current.resizableTextArea;e.focus();let{length:t}=e.value;e.setSelectionRange(t,t)}},[]);let k=()=>{d(y.trim())},[E,O,M]=(0,S.A)(t),N=s()(t,`${t}-edit-content`,{[`${t}-rtl`]:"rtl"===i,[`${t}-${m}`]:!!m},o,O,M);return E(r.createElement("div",{className:N,style:a},r.createElement(C.A,{ref:h,maxLength:l,value:y,onChange:e=>{let{target:t}=e;x(t.value.replace(/[\n\r]/g,""))},onKeyDown:e=>{let{keyCode:t}=e;v.current||(b.current=t)},onKeyUp:e=>{let{keyCode:t,ctrlKey:n,altKey:r,metaKey:o,shiftKey:a}=e;b.current!==t||v.current||n||r||o||a||(t===A.A.ENTER?(k(),null==p||p()):t===A.A.ESC&&f())},onCompositionStart:()=>{v.current=!0},onCompositionEnd:()=>{v.current=!1},onBlur:()=>{k()},"aria-label":n,rows:1,autoSize:c}),null!==g?(0,w.Ob)(g,{className:`${t}-edit-content-confirm`}):null))};var E=n(17965),O=n.n(E),M=n(26956),N=n(81168);function I(e,t){return r.useMemo(()=>{let n=!!e;return[n,Object.assign(Object.assign({},t),n&&"object"==typeof e?e:null)]},[e])}var j=n(64560),z=n(51237);let R={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M832 64H296c-4.4 0-8 3.6-8 8v56c0 4.4 3.6 8 8 8h496v688c0 4.4 3.6 8 8 8h56c4.4 0 8-3.6 8-8V96c0-17.7-14.3-32-32-32zM704 192H192c-17.7 0-32 14.3-32 32v530.7c0 8.5 3.4 16.6 9.4 22.6l173.3 173.3c2.2 2.2 4.7 4 7.4 5.5v1.9h4.2c3.5 1.3 7.2 2 11 2H704c17.7 0 32-14.3 32-32V224c0-17.7-14.3-32-32-32zM350 856.2L263.9 770H350v86.2zM664 888H414V746c0-22.1-17.9-40-40-40H232V264h432v624z"}}]},name:"copy",theme:"outlined"};var P=r.forwardRef(function(e,t){return r.createElement(i.A,(0,o.A)({},e,{ref:t,icon:R}))}),T=n(66514);function D(e){return!1===e?[!1,!1]:Array.isArray(e)?e:[e]}function L(e,t,n){return!0===e||void 0===e?t:e||n&&t}let B=e=>["string","number"].includes(typeof e),F=e=>{let{prefixCls:t,copied:n,locale:o,iconOnly:a,tooltips:i,icon:l,tabIndex:c,onCopy:u,loading:d}=e,f=D(i),p=D(l),{copied:m,copy:g}=null!=o?o:{},h=n?m:g,v=L(f[+!!n],h),b="string"==typeof v?v:h;return r.createElement(y.A,{title:v},r.createElement("button",{type:"button",className:s()(`${t}-copy`,{[`${t}-copy-success`]:n,[`${t}-copy-icon-only`]:a}),onClick:u,"aria-label":b,tabIndex:c},n?L(p[1],r.createElement(z.A,null),!0):L(p[0],d?r.createElement(T.A,null):r.createElement(P,null),!0)))};var H=n(83098);let _=r.forwardRef((e,t)=>{let{style:n,children:o}=e,a=r.useRef(null);return r.useImperativeHandle(t,()=>({isExceed:()=>{let e=a.current;return e.scrollHeight>e.clientHeight},getHeight:()=>a.current.clientHeight})),r.createElement("span",{"aria-hidden":!0,ref:a,style:Object.assign({position:"fixed",display:"block",left:0,top:0,pointerEvents:"none",backgroundColor:"rgba(255, 0, 0, 0.65)"},n)},o)});function W(e,t){let n=0,r=[];for(let o=0;ot){let e=t-n;return r.push(String(a).slice(0,e)),r}r.push(a),n=i}return e}let q={display:"-webkit-box",overflow:"hidden",WebkitBoxOrient:"vertical"};function V(e){let{enableMeasure:t,width:n,text:o,children:a,rows:i,expanded:l,miscDeps:c,onEllipsis:s}=e,u=r.useMemo(()=>(0,d.A)(o),[o]),p=r.useMemo(()=>u.reduce((e,t)=>e+(B(t)?String(t).length:1),0),[o]),m=r.useMemo(()=>a(u,!1),[o]),[g,h]=r.useState(null),v=r.useRef(null),b=r.useRef(null),y=r.useRef(null),x=r.useRef(null),$=r.useRef(null),[A,w]=r.useState(!1),[C,S]=r.useState(0),[k,E]=r.useState(0),[O,M]=r.useState(null);(0,f.A)(()=>{t&&n&&p?S(1):S(0)},[n,o,i,t,u]),(0,f.A)(()=>{var e,t,n,r;if(1===C)S(2),M(b.current&&getComputedStyle(b.current).whiteSpace);else if(2===C){let o=!!(null==(e=y.current)?void 0:e.isExceed());S(o?3:4),h(o?[0,p]:null),w(o),E(Math.max((null==(t=y.current)?void 0:t.getHeight())||0,(1===i?0:(null==(n=x.current)?void 0:n.getHeight())||0)+((null==(r=$.current)?void 0:r.getHeight())||0))+1),s(o)}},[C]);let N=g?Math.ceil((g[0]+g[1])/2):0;(0,f.A)(()=>{var e;let[t,n]=g||[0,0];if(t!==n){let r=((null==(e=v.current)?void 0:e.getHeight())||0)>k,o=N;n-t==1&&(o=r?t:n),h(r?[t,o]:[o,n])}},[g,N]);let I=r.useMemo(()=>{if(!t)return a(u,!1);if(3!==C||!g||g[0]!==g[1]){let e=a(u,!1);return[4,0].includes(C)?e:r.createElement("span",{style:Object.assign(Object.assign({},q),{WebkitLineClamp:i})},e)}return a(l?u:W(u,g[0]),A)},[l,C,g,u].concat((0,H.A)(c))),j={width:n,margin:0,padding:0,whiteSpace:"nowrap"===O?"normal":"inherit"};return r.createElement(r.Fragment,null,I,2===C&&r.createElement(r.Fragment,null,r.createElement(_,{style:Object.assign(Object.assign(Object.assign({},j),q),{WebkitLineClamp:i}),ref:y},m),r.createElement(_,{style:Object.assign(Object.assign(Object.assign({},j),q),{WebkitLineClamp:i-1}),ref:x},m),r.createElement(_,{style:Object.assign(Object.assign(Object.assign({},j),q),{WebkitLineClamp:1}),ref:$},a([],!0))),3===C&&g&&g[0]!==g[1]&&r.createElement(_,{style:Object.assign(Object.assign({},j),{top:400}),ref:v},a(W(u,N),!0)),1===C&&r.createElement("span",{style:{whiteSpace:"inherit"},ref:b}))}let K=e=>{let{enableEllipsis:t,isEllipsis:n,children:o,tooltipProps:a}=e;return(null==a?void 0:a.title)&&t?r.createElement(y.A,Object.assign({open:!!n&&void 0},a),o):o};var X=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let Y=r.forwardRef((e,t)=>{var n;let o,a,i,{prefixCls:c,className:x,style:$,type:A,disabled:w,children:C,ellipsis:S,editable:E,copyable:z,component:R,title:P}=e,T=X(e,["prefixCls","className","style","type","disabled","children","ellipsis","editable","copyable","component","title"]),{getPrefixCls:D,direction:L}=r.useContext(v.QO),[H]=(0,b.A)("Text"),_=r.useRef(null),W=r.useRef(null),q=D("typography",c),Y=(0,m.A)(T,["mark","code","delete","underline","strong","keyboard","italic"]),[U,G]=I(E),[Q,Z]=(0,p.A)(!1,{value:G.editing}),{triggerType:J=["icon"]}=G,ee=e=>{var t;e&&(null==(t=G.onStart)||t.call(G)),Z(e)},et=(o=(0,r.useRef)(void 0),(0,r.useEffect)(()=>{o.current=Q}),o.current);(0,f.A)(()=>{var e;!Q&&et&&(null==(e=W.current)||e.focus())},[Q]);let en=e=>{null==e||e.preventDefault(),ee(!0)},[er,eo]=I(z),{copied:ea,copyLoading:ei,onClick:el}=(e=>{let{copyConfig:t,children:n}=e,[o,a]=r.useState(!1),[i,l]=r.useState(!1),c=r.useRef(null),s=()=>{c.current&&clearTimeout(c.current)},u={};t.format&&(u.format=t.format),r.useEffect(()=>s,[]);let d=(0,M.A)(e=>{var r,o,i,d;return r=void 0,o=void 0,i=void 0,d=function*(){var r;null==e||e.preventDefault(),null==e||e.stopPropagation(),l(!0);try{let o="function"==typeof t.text?yield t.text():t.text;O()(o||(0,N.A)(n,!0).join("")||"",u),l(!1),a(!0),s(),c.current=setTimeout(()=>{a(!1)},3e3),null==(r=t.onCopy)||r.call(t,e)}catch(e){throw l(!1),e}},new(i||(i=Promise))(function(e,t){function n(e){try{l(d.next(e))}catch(e){t(e)}}function a(e){try{l(d.throw(e))}catch(e){t(e)}}function l(t){var r;t.done?e(t.value):((r=t.value)instanceof i?r:new i(function(e){e(r)})).then(n,a)}l((d=d.apply(r,o||[])).next())})});return{copied:o,copyLoading:i,onClick:d}})({copyConfig:eo,children:C}),[ec,es]=r.useState(!1),[eu,ed]=r.useState(!1),[ef,ep]=r.useState(!1),[em,eg]=r.useState(!1),[eh,ev]=r.useState(!0),[eb,ey]=I(S,{expandable:!1,symbol:e=>e?null==H?void 0:H.collapse:null==H?void 0:H.expand}),[ex,e$]=(0,p.A)(ey.defaultExpanded||!1,{value:ey.expanded}),eA=eb&&(!ex||"collapsible"===ey.expandable),{rows:ew=1}=ey,eC=r.useMemo(()=>eA&&(void 0!==ey.suffix||ey.onEllipsis||ey.expandable||U||er),[eA,ey,U,er]);(0,f.A)(()=>{eb&&!eC&&(es((0,h.F)("webkitLineClamp")),ed((0,h.F)("textOverflow")))},[eC,eb]);let[eS,ek]=r.useState(eA),eE=r.useMemo(()=>!eC&&(1===ew?eu:ec),[eC,eu,ec]);(0,f.A)(()=>{ek(eE&&eA)},[eE,eA]);let eO=eA&&(eS?em:ef),eM=eA&&1===ew&&eS,eN=eA&&ew>1&&eS,[eI,ej]=r.useState(0),ez=e=>{var t;ep(e),ef!==e&&(null==(t=ey.onEllipsis)||t.call(ey,e))};r.useEffect(()=>{let e=_.current;if(eb&&eS&&e){let t,n,r,o=(t=document.createElement("em"),e.appendChild(t),n=e.getBoundingClientRect(),r=t.getBoundingClientRect(),e.removeChild(t),n.left>r.left||r.right>n.right||n.top>r.top||r.bottom>n.bottom);em!==o&&eg(o)}},[eb,eS,C,eN,eh,eI]),r.useEffect(()=>{let e=_.current;if("u"{ev(!!e.offsetParent)});return t.observe(e),()=>{t.disconnect()}},[eS,eA]);let eR=(a=ey.tooltip,i=G.text,(0,r.useMemo)(()=>!0===a?{title:null!=i?i:C}:(0,r.isValidElement)(a)?{title:a}:"object"==typeof a?Object.assign({title:null!=i?i:C},a):{title:a},[a,i,C])),eP=r.useMemo(()=>{if(eb&&!eS)return[G.text,C,P,eR.title].find(B)},[eb,eS,P,eR.title,eO]);return Q?r.createElement(k,{value:null!=(n=G.text)?n:"string"==typeof C?C:"",onSave:e=>{var t;null==(t=G.onChange)||t.call(G,e),ee(!1)},onCancel:()=>{var e;null==(e=G.onCancel)||e.call(G),ee(!1)},onEnd:G.onEnd,prefixCls:q,className:x,style:$,direction:L,component:R,maxLength:G.maxLength,autoSize:G.autoSize,enterIcon:G.enterIcon}):r.createElement(u.A,{onResize:e=>{let{offsetWidth:t}=e;ej(t)},disabled:!eA},n=>r.createElement(K,{tooltipProps:eR,enableEllipsis:eA,isEllipsis:eO},r.createElement(j.A,Object.assign({className:s()({[`${q}-${A}`]:A,[`${q}-disabled`]:w,[`${q}-ellipsis`]:eb,[`${q}-ellipsis-single-line`]:eM,[`${q}-ellipsis-multiple-line`]:eN},x),prefixCls:c,style:Object.assign(Object.assign({},$),{WebkitLineClamp:eN?ew:void 0}),component:R,ref:(0,g.K4)(n,_,t),direction:L,onClick:J.includes("text")?en:void 0,"aria-label":null==eP?void 0:eP.toString(),title:P},Y),r.createElement(V,{enableMeasure:eA&&!eS,text:C,rows:ew,width:eI,onEllipsis:ez,expanded:ex,miscDeps:[ea,ex,ei,U,er,H]},(t,n)=>{let o;return function(e,t){let{mark:n,code:o,underline:a,delete:i,strong:l,keyboard:c,italic:s}=e,u=t;function d(e,t){t&&(u=r.createElement(e,{},u))}return d("strong",l),d("u",a),d("del",i),d("code",o),d("mark",n),d("kbd",c),d("i",s),u}(e,r.createElement(r.Fragment,null,t.length>0&&n&&!ex&&eP?r.createElement("span",{key:"show-content","aria-hidden":!0},t):t,[(o=n)&&!ex&&r.createElement("span",{"aria-hidden":!0,key:"ellipsis"},"..."),ey.suffix,[o&&(()=>{let{expandable:e,symbol:t}=ey;return e?r.createElement("button",{type:"button",key:"expand",className:`${q}-${ex?"collapse":"expand"}`,onClick:e=>{var t,n;e$((t={expanded:!ex}).expanded),null==(n=ey.onExpand)||n.call(ey,e,t)},"aria-label":ex?H.collapse:null==H?void 0:H.expand},"function"==typeof t?t(ex):t):null})(),(()=>{if(!U)return;let{icon:e,tooltip:t,tabIndex:n}=G,o=(0,d.A)(t)[0]||(null==H?void 0:H.edit),a="string"==typeof o?o:"";return J.includes("icon")?r.createElement(y.A,{key:"edit",title:!1===t?"":o},r.createElement("button",{type:"button",ref:W,className:`${q}-edit`,onClick:en,"aria-label":a,tabIndex:n},e||r.createElement(l,{role:"button"}))):null})(),er?r.createElement(F,Object.assign({key:"copy"},eo,{prefixCls:q,copied:ea,locale:H,onCopy:el,loading:ei,iconOnly:null==C})):null]]))}))))})},26317(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(47867),o=n(49501),a=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let i=r.forwardRef((e,t)=>{var{ellipsis:n,rel:i}=e,l=a(e,["ellipsis","rel"]);let c=Object.assign(Object.assign({},l),{rel:void 0===i&&"_blank"===l.target?"noopener noreferrer":i});return delete c.navigate,r.createElement(o.A,Object.assign({},c,{ref:t,ellipsis:!!n,component:"a"}))})},64560(e,t,n){"use strict";n.d(t,{A:()=>u});var r=n(47867),o=n(8651),a=n.n(o),i=n(8719),l=n(62279),c=n(85161),s=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&0>t.indexOf(r)&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols)for(var o=0,r=Object.getOwnPropertySymbols(e);ot.indexOf(r[o])&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n};let u=r.forwardRef((e,t)=>{let{prefixCls:n,component:o="article",className:u,rootClassName:d,setContentRef:f,children:p,direction:m,style:g}=e,h=s(e,["prefixCls","component","className","rootClassName","setContentRef","children","direction","style"]),{getPrefixCls:v,direction:b,typography:y}=r.useContext(l.QO),x=f?(0,i.K4)(t,f):t,$=v("typography",n),[A,w,C]=(0,c.A)($),S=a()($,null==y?void 0:y.className,{[`${$}-rtl`]:"rtl"===(null!=m?m:b)},u,d,w,C),k=Object.assign(Object.assign({},null==y?void 0:y.style),g);return A(r.createElement(o,Object.assign({className:S,style:k,ref:x},h),p))})},85161(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(25905),o=n(37358),a=n(16124),i=n(96191);let l=(0,o.OF)("Typography",e=>[(e=>{let t,{componentCls:n,titleMarginTop:o}=e;return{[n]:Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({color:e.colorText,wordBreak:"break-word",lineHeight:e.lineHeight,[`&${n}-secondary`]:{color:e.colorTextDescription},[`&${n}-success`]:{color:e.colorSuccess},[`&${n}-warning`]:{color:e.colorWarning},[`&${n}-danger`]:{color:e.colorError,"a&:active, a&:focus":{color:e.colorErrorActive},"a&:hover":{color:e.colorErrorHover}},[`&${n}-disabled`]:{color:e.colorTextDisabled,cursor:"not-allowed",userSelect:"none"},[` - div&, - p - `]:{marginBottom:"1em"}},(t={},[1,2,3,4,5].forEach(n=>{t[` - h${n}&, - div&-h${n}, - div&-h${n} > textarea, - h${n} - `]=((e,t,n,r)=>{let{titleMarginBottom:o,fontWeightStrong:a}=r;return{marginBottom:o,color:n,fontWeight:a,fontSize:e,lineHeight:t}})(e[`fontSizeHeading${n}`],e[`lineHeightHeading${n}`],e.colorTextHeading,e)}),t)),{[` - & + h1${n}, - & + h2${n}, - & + h3${n}, - & + h4${n}, - & + h5${n} - `]:{marginTop:o},[` - div, - ul, - li, - p, - h1, - h2, - h3, - h4, - h5`]:{[` - + h1, - + h2, - + h3, - + h4, - + h5 - `]:{marginTop:o}}}),{code:{margin:"0 0.2em",paddingInline:"0.4em",paddingBlock:"0.2em 0.1em",fontSize:"85%",fontFamily:e.fontFamilyCode,background:"rgba(150, 150, 150, 0.1)",border:"1px solid rgba(100, 100, 100, 0.2)",borderRadius:3},kbd:{margin:"0 0.2em",paddingInline:"0.4em",paddingBlock:"0.15em 0.1em",fontSize:"90%",fontFamily:e.fontFamilyCode,background:"rgba(150, 150, 150, 0.06)",border:"1px solid rgba(100, 100, 100, 0.2)",borderBottomWidth:2,borderRadius:3},mark:{padding:0,backgroundColor:a.gold["2"]},"u, ins":{textDecoration:"underline",textDecorationSkipInk:"auto"},"s, del":{textDecoration:"line-through"},strong:{fontWeight:600},"ul, ol":{marginInline:0,marginBlock:"0 1em",padding:0,li:{marginInline:"20px 0",marginBlock:0,paddingInline:"4px 0",paddingBlock:0}},ul:{listStyleType:"circle",ul:{listStyleType:"disc"}},ol:{listStyleType:"decimal"},"pre, blockquote":{margin:"1em 0"},pre:{padding:"0.4em 0.6em",whiteSpace:"pre-wrap",wordWrap:"break-word",background:"rgba(150, 150, 150, 0.1)",border:"1px solid rgba(100, 100, 100, 0.2)",borderRadius:3,fontFamily:e.fontFamilyCode,code:{display:"inline",margin:0,padding:0,fontSize:"inherit",fontFamily:"inherit",background:"transparent",border:0}},blockquote:{paddingInline:"0.6em 0",paddingBlock:0,borderInlineStart:"4px solid rgba(100, 100, 100, 0.2)",opacity:.85}}),(e=>{let{componentCls:t}=e;return{"a&, a":Object.assign(Object.assign({},(0,r.Y1)(e)),{userSelect:"text",[`&[disabled], &${t}-disabled`]:{color:e.colorTextDisabled,cursor:"not-allowed","&:active, &:hover":{color:e.colorTextDisabled},"&:active":{pointerEvents:"none"}}})}})(e)),{[` - ${n}-expand, - ${n}-collapse, - ${n}-edit, - ${n}-copy - `]:Object.assign(Object.assign({},(0,r.Y1)(e)),{marginInlineStart:e.marginXXS})}),(e=>{let{componentCls:t,paddingSM:n}=e;return{"&-edit-content":{position:"relative","div&":{insetInlineStart:e.calc(e.paddingSM).mul(-1).equal(),marginTop:e.calc(n).mul(-1).equal(),marginBottom:`calc(1em - ${(0,i.zA)(n)})`},[`${t}-edit-content-confirm`]:{position:"absolute",insetInlineEnd:e.calc(e.marginXS).add(2).equal(),insetBlockEnd:e.marginXS,color:e.colorTextDescription,fontWeight:"normal",fontSize:e.fontSize,fontStyle:"normal",pointerEvents:"none"},textarea:{margin:"0!important",MozTransition:"none",height:"1em"}}}})(e)),{[`${e.componentCls}-copy-success`]:{[` - &, - &:hover, - &:focus`]:{color:e.colorSuccess}},[`${e.componentCls}-copy-icon-only`]:{marginInlineStart:0}}),{[` - a&-ellipsis, - span&-ellipsis - `]:{display:"inline-block",maxWidth:"100%"},"&-ellipsis-single-line":{whiteSpace:"nowrap",overflow:"hidden",textOverflow:"ellipsis","a&, span&":{verticalAlign:"bottom"},"> code":{paddingBlock:0,maxWidth:"calc(100% - 1.2em)",display:"inline-block",overflow:"hidden",textOverflow:"ellipsis",verticalAlign:"bottom",boxSizing:"content-box"}},"&-ellipsis-multiple-line":{display:"-webkit-box",overflow:"hidden",WebkitLineClamp:3,WebkitBoxOrient:"vertical"}}),{"&-rtl":{direction:"rtl"}})}})(e)],()=>({titleMarginTop:"1.2em",titleMarginBottom:"0.5em"}))},31141(e,t,n){"use strict";n.d(t,{A:()=>I});var r=n(83098),o=n(47867),a=n(58168);let i={icon:function(e,t){return{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M534 352V136H232v752h560V394H576a42 42 0 01-42-42z",fill:t}},{tag:"path",attrs:{d:"M854.6 288.6L639.4 73.4c-6-6-14.1-9.4-22.6-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.7-9.4-22.7zM602 137.8L790.2 326H602V137.8zM792 888H232V136h302v216a42 42 0 0042 42h216v494z",fill:e}}]}},name:"file",theme:"twotone"};var l=n(67928),c=o.forwardRef(function(e,t){return o.createElement(l.A,(0,a.A)({},e,{ref:t,icon:i}))}),s=n(66514);let u={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M779.3 196.6c-94.2-94.2-247.6-94.2-341.7 0l-261 260.8c-1.7 1.7-2.6 4-2.6 6.4s.9 4.7 2.6 6.4l36.9 36.9a9 9 0 0012.7 0l261-260.8c32.4-32.4 75.5-50.2 121.3-50.2s88.9 17.8 121.2 50.2c32.4 32.4 50.2 75.5 50.2 121.2 0 45.8-17.8 88.8-50.2 121.2l-266 265.9-43.1 43.1c-40.3 40.3-105.8 40.3-146.1 0-19.5-19.5-30.2-45.4-30.2-73s10.7-53.5 30.2-73l263.9-263.8c6.7-6.6 15.5-10.3 24.9-10.3h.1c9.4 0 18.1 3.7 24.7 10.3 6.7 6.7 10.3 15.5 10.3 24.9 0 9.3-3.7 18.1-10.3 24.7L372.4 653c-1.7 1.7-2.6 4-2.6 6.4s.9 4.7 2.6 6.4l36.9 36.9a9 9 0 0012.7 0l215.6-215.6c19.9-19.9 30.8-46.3 30.8-74.4s-11-54.6-30.8-74.4c-41.1-41.1-107.9-41-149 0L463 364 224.8 602.1A172.22 172.22 0 00174 724.8c0 46.3 18.1 89.8 50.8 122.5 33.9 33.8 78.3 50.7 122.7 50.7 44.4 0 88.8-16.9 122.6-50.7l309.2-309C824.8 492.7 850 432 850 367.5c.1-64.6-25.1-125.3-70.7-170.9z"}}]},name:"paper-clip",theme:"outlined"};var d=o.forwardRef(function(e,t){return o.createElement(l.A,(0,a.A)({},e,{ref:t,icon:u}))});let f={icon:function(e,t){return{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M928 160H96c-17.7 0-32 14.3-32 32v640c0 17.7 14.3 32 32 32h832c17.7 0 32-14.3 32-32V192c0-17.7-14.3-32-32-32zm-40 632H136v-39.9l138.5-164.3 150.1 178L658.1 489 888 761.6V792zm0-129.8L664.2 396.8c-3.2-3.8-9-3.8-12.2 0L424.6 666.4l-144-170.7c-3.2-3.8-9-3.8-12.2 0L136 652.7V232h752v430.2z",fill:e}},{tag:"path",attrs:{d:"M424.6 765.8l-150.1-178L136 752.1V792h752v-30.4L658.1 489z",fill:t}},{tag:"path",attrs:{d:"M136 652.7l132.4-157c3.2-3.8 9-3.8 12.2 0l144 170.7L652 396.8c3.2-3.8 9-3.8 12.2 0L888 662.2V232H136v420.7zM304 280a88 88 0 110 176 88 88 0 010-176z",fill:t}},{tag:"path",attrs:{d:"M276 368a28 28 0 1056 0 28 28 0 10-56 0z",fill:t}},{tag:"path",attrs:{d:"M304 456a88 88 0 100-176 88 88 0 000 176zm0-116c15.5 0 28 12.5 28 28s-12.5 28-28 28-28-12.5-28-28 12.5-28 28-28z",fill:e}}]}},name:"picture",theme:"twotone"};var p=o.forwardRef(function(e,t){return o.createElement(l.A,(0,a.A)({},e,{ref:t,icon:f}))}),m=n(8651),g=n.n(m),h=n(52193),v=n(19853),b=n(47447),y=n(23723),x=n(40682),$=n(81583),A=n(62279),w=n(58464),C=n(46029);let S={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M505.7 661a8 8 0 0012.6 0l112-141.7c4.1-5.2.4-12.9-6.3-12.9h-74.1V168c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v338.3H400c-6.7 0-10.4 7.7-6.3 12.9l112 141.8zM878 626h-60c-4.4 0-8 3.6-8 8v154H214V634c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8v198c0 17.7 14.3 32 32 32h684c17.7 0 32-14.3 32-32V634c0-4.4-3.6-8-8-8z"}}]},name:"download",theme:"outlined"};var k=o.forwardRef(function(e,t){return o.createElement(l.A,(0,a.A)({},e,{ref:t,icon:S}))}),E=n(7532),O=n(20464),M=n(42443);let N=o.forwardRef((e,t)=>{var n,r;let{prefixCls:a,className:i,style:l,locale:c,listType:s,file:u,items:d,progress:f,iconRender:p,actionIconRender:m,itemRender:v,isImgUrl:b,showPreviewIcon:y,showRemoveIcon:x,showDownloadIcon:$,previewIcon:w,removeIcon:S,downloadIcon:N,extra:I,onPreview:j,onDownload:z,onClose:R}=e,{status:P}=u,[T,D]=o.useState(P);o.useEffect(()=>{"removed"!==P&&D(P)},[P]);let[L,B]=o.useState(!1);o.useEffect(()=>{let e=setTimeout(()=>{B(!0)},300);return()=>{clearTimeout(e)}},[]);let F=p(u),H=o.createElement("div",{className:`${a}-icon`},F);if("picture"===s||"picture-card"===s||"picture-circle"===s)if("uploading"!==T&&(u.thumbUrl||u.url)){let e=(null==b?void 0:b(u))?o.createElement("img",{src:u.thumbUrl||u.url,alt:u.name,className:`${a}-list-item-image`,crossOrigin:u.crossOrigin}):F,t=g()(`${a}-list-item-thumbnail`,{[`${a}-list-item-file`]:b&&!b(u)});H=o.createElement("a",{className:t,onClick:e=>j(u,e),href:u.url||u.thumbUrl,target:"_blank",rel:"noopener noreferrer"},e)}else{let e=g()(`${a}-list-item-thumbnail`,{[`${a}-list-item-file`]:"uploading"!==T});H=o.createElement("div",{className:e},F)}let _=g()(`${a}-list-item`,`${a}-list-item-${T}`),W="string"==typeof u.linkProps?JSON.parse(u.linkProps):u.linkProps,q=("function"==typeof x?x(u):x)?m(("function"==typeof S?S(u):S)||o.createElement(C.A,null),()=>R(u),a,c.removeFile,!0):null,V=("function"==typeof $?$(u):$)&&"done"===T?m(("function"==typeof N?N(u):N)||o.createElement(k,null),()=>z(u),a,c.downloadFile):null,K="picture-card"!==s&&"picture-circle"!==s&&o.createElement("span",{key:"download-delete",className:g()(`${a}-list-item-actions`,{picture:"picture"===s})},V,q),X="function"==typeof I?I(u):I,Y=X&&o.createElement("span",{className:`${a}-list-item-extra`},X),U=g()(`${a}-list-item-name`),G=u.url?o.createElement("a",Object.assign({key:"view",target:"_blank",rel:"noopener noreferrer",className:U,title:u.name},W,{href:u.url,onClick:e=>j(u,e)}),u.name,Y):o.createElement("span",{key:"view",className:U,onClick:e=>j(u,e),title:u.name},u.name,Y),Q=("function"==typeof y?y(u):y)&&(u.url||u.thumbUrl)?o.createElement("a",{href:u.url||u.thumbUrl,target:"_blank",rel:"noopener noreferrer",onClick:e=>j(u,e),title:c.previewFile},"function"==typeof w?w(u):w||o.createElement(E.A,null)):null,Z=("picture-card"===s||"picture-circle"===s)&&"uploading"!==T&&o.createElement("span",{className:`${a}-list-item-actions`},Q,"done"===T&&V,q),{getPrefixCls:J}=o.useContext(A.QO),ee=J(),et=o.createElement("div",{className:_},H,G,K,Z,L&&o.createElement(h.Ay,{motionName:`${ee}-fade`,visible:"uploading"===T,motionDeadline:2e3},e=>{let{className:t}=e,n="percent"in u?o.createElement(O.A,Object.assign({},f,{type:"line",percent:u.percent,"aria-label":u["aria-label"],"aria-labelledby":u["aria-labelledby"]})):null;return o.createElement("div",{className:g()(`${a}-list-item-progress`,t)},n)})),en=u.response&&"string"==typeof u.response?u.response:(null==(n=u.error)?void 0:n.statusText)||(null==(r=u.error)?void 0:r.message)||c.uploadError,er="error"===T?o.createElement(M.A,{title:en,getPopupContainer:e=>e.parentNode},et):et;return o.createElement("div",{className:g()(`${a}-list-item-container`,i),style:l,ref:t},v?v(er,u,d,{download:z.bind(null,u),preview:j.bind(null,u),remove:R.bind(null,u)}):er)}),I=o.forwardRef((e,t)=>{let{listType:n="text",previewFile:a=w.oz,onPreview:i,onDownload:l,onRemove:u,locale:f,iconRender:m,isImageUrl:C=w.Zj,prefixCls:S,items:k=[],showPreviewIcon:E=!0,showRemoveIcon:O=!0,showDownloadIcon:M=!1,removeIcon:I,previewIcon:j,downloadIcon:z,extra:R,progress:P={size:[-1,2],showInfo:!1},appendAction:T,appendActionVisible:D=!0,itemRender:L,disabled:B}=e,F=(0,b.A)(),[H,_]=o.useState(!1),W=["picture-card","picture-circle"].includes(n);o.useEffect(()=>{n.startsWith("picture")&&(k||[]).forEach(e=>{(e.originFileObj instanceof File||e.originFileObj instanceof Blob)&&void 0===e.thumbUrl&&(e.thumbUrl="",null==a||a(e.originFileObj).then(t=>{e.thumbUrl=t||"",F()}))})},[n,k,a]),o.useEffect(()=>{_(!0)},[]);let q=(e,t)=>{if(i)return null==t||t.preventDefault(),i(e)},V=e=>{"function"==typeof l?l(e):e.url&&window.open(e.url)},K=e=>{null==u||u(e)},X=e=>{if(m)return m(e,n);let t="uploading"===e.status;if(n.startsWith("picture")){let r="picture"===n?o.createElement(s.A,null):f.uploading,a=(null==C?void 0:C(e))?o.createElement(p,null):o.createElement(c,null);return t?r:a}return t?o.createElement(s.A,null):o.createElement(d,null)},Y=(e,t,n,r,a)=>{let i={type:"text",size:"small",title:r,onClick:n=>{var r,a;t(),o.isValidElement(e)&&(null==(a=(r=e.props).onClick)||a.call(r,n))},className:`${n}-list-item-action`};return a&&(i.disabled=B),o.isValidElement(e)?o.createElement($.Ay,Object.assign({},i,{icon:(0,x.Ob)(e,Object.assign(Object.assign({},e.props),{onClick:()=>{}}))})):o.createElement($.Ay,Object.assign({},i),o.createElement("span",null,e))};o.useImperativeHandle(t,()=>({handlePreview:q,handleDownload:V}));let{getPrefixCls:U}=o.useContext(A.QO),G=U("upload",S),Q=U(),Z=g()(`${G}-list`,`${G}-list-${n}`),J=o.useMemo(()=>(0,v.A)((0,y.A)(Q),["onAppearEnd","onEnterEnd","onLeaveEnd"]),[Q]),ee=Object.assign(Object.assign({},W?{}:J),{motionDeadline:2e3,motionName:`${G}-${W?"animate-inline":"animate"}`,keys:(0,r.A)(k.map(e=>({key:e.uid,file:e}))),motionAppear:H});return o.createElement("div",{className:Z},o.createElement(h.aF,Object.assign({},ee,{component:!1}),e=>{let{key:t,file:r,className:a,style:i}=e;return o.createElement(N,{key:t,locale:f,prefixCls:G,className:a,style:i,file:r,items:k,progress:P,listType:n,isImgUrl:C,showPreviewIcon:E,showRemoveIcon:O,showDownloadIcon:M,removeIcon:I,previewIcon:j,downloadIcon:z,extra:R,iconRender:X,actionIconRender:Y,itemRender:L,onPreview:q,onDownload:V,onClose:K})}),T&&o.createElement(h.Ay,Object.assign({},ee,{visible:D,forceRender:!0}),e=>{let{className:t,style:n}=e;return(0,x.Ob)(T,e=>({className:g()(e.className,t),style:Object.assign(Object.assign(Object.assign({},n),{pointerEvents:t?"none":void 0}),e.style)}))}))})},58464(e,t,n){"use strict";n.d(t,{IC:()=>a,Zj:()=>u,cU:()=>i,iQ:()=>l,oz:()=>d,qu:()=>o});var r=n(83098);function o(e){return Object.assign(Object.assign({},e),{lastModified:e.lastModified,lastModifiedDate:e.lastModifiedDate,name:e.name,size:e.size,type:e.type,uid:e.uid,percent:0,originFileObj:e})}function a(e,t){let n=(0,r.A)(t),o=n.findIndex(t=>{let{uid:n}=t;return n===e.uid});return -1===o?n.push(e):n[o]=e,n}function i(e,t){let n=void 0!==e.uid?"uid":"name";return t.filter(t=>t[n]===e[n])[0]}function l(e,t){let n=void 0!==e.uid?"uid":"name",r=t.filter(t=>t[n]!==e[n]);return r.length===t.length?null:r}let c=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=e.split("/"),n=t[t.length-1].split(/#|\?/)[0];return(/\.[^./\\]*$/.exec(n)||[""])[0]},s=e=>0===e.indexOf("image/"),u=e=>{if(e.type&&!e.thumbUrl)return s(e.type);let t=e.thumbUrl||e.url||"",n=c(t);return!!(/^data:image\//.test(t)||/(webp|svg|png|gif|jpg|jpeg|jfif|bmp|dpg|ico|heic|heif)$/i.test(n))||!/^data:/.test(t)&&!n};function d(e){return new Promise(t=>{if(!e.type||!s(e.type))return void t("");let n=document.createElement("canvas");n.width=200,n.height=200,n.style.cssText="position: fixed; left: 0; top: 0; width: 200px; height: 200px; z-index: 9999; display: none;",document.body.appendChild(n);let r=n.getContext("2d"),o=new Image;if(o.onload=()=>{let{width:e,height:a}=o,i=200,l=200,c=0,s=0;e>a?s=-((l=200/e*a)-i)/2:c=-((i=200/a*e)-l)/2,r.drawImage(o,c,s,i,l);let u=n.toDataURL();document.body.removeChild(n),window.URL.revokeObjectURL(o.src),t(u)},o.crossOrigin="anonymous",e.type.startsWith("image/svg+xml")){let t=new FileReader;t.onload=()=>{t.result&&"string"==typeof t.result&&(o.src=t.result)},t.readAsDataURL(e)}else if(e.type.startsWith("image/gif")){let n=new FileReader;n.onload=()=>{n.result&&t(n.result)},n.readAsDataURL(e)}else o.src=window.URL.createObjectURL(e)})}},11031(e,t,n){"use strict";n.d(t,{A:()=>r});let r="5.22.7"},17965(e,t,n){"use strict";var r=n(16426),o={"text/plain":"Text","text/html":"Url",default:"Text"};e.exports=function(e,t){var n,a,i,l,c,s,u,d,f=!1;t||(t={}),i=t.debug||!1;try{if(c=r(),s=document.createRange(),u=document.getSelection(),(d=document.createElement("span")).textContent=e,d.ariaHidden="true",d.style.all="unset",d.style.position="fixed",d.style.top=0,d.style.clip="rect(0, 0, 0, 0)",d.style.whiteSpace="pre",d.style.webkitUserSelect="text",d.style.MozUserSelect="text",d.style.msUserSelect="text",d.style.userSelect="text",d.addEventListener("copy",function(n){if(n.stopPropagation(),t.format)if(n.preventDefault(),void 0===n.clipboardData){i&&console.warn("unable to use e.clipboardData"),i&&console.warn("trying IE specific stuff"),window.clipboardData.clearData();var r=o[t.format]||o.default;window.clipboardData.setData(r,e)}else n.clipboardData.clearData(),n.clipboardData.setData(t.format,e);t.onCopy&&(n.preventDefault(),t.onCopy(n.clipboardData))}),document.body.appendChild(d),s.selectNodeContents(d),u.addRange(s),!document.execCommand("copy"))throw Error("copy command was unsuccessful");f=!0}catch(r){i&&console.error("unable to copy using execCommand: ",r),i&&console.warn("trying IE specific stuff");try{window.clipboardData.setData(t.format||"text",e),t.onCopy&&t.onCopy(window.clipboardData),f=!0}catch(r){i&&console.error("unable to copy using clipboardData: ",r),i&&console.error("falling back to prompt"),n="message"in t?t.message:"Copy to clipboard: #{key}, Enter",a=(/mac os x/i.test(navigator.userAgent)?"⌘":"Ctrl")+"+C",l=n.replace(/#{\s*key\s*}/g,a),window.prompt(l,e)}}finally{u&&("function"==typeof u.removeRange?u.removeRange(s):u.removeAllRanges()),d&&document.body.removeChild(d),c()}return f}},74353(e){e.exports=function(){"use strict";var e="millisecond",t="second",n="minute",r="hour",o="week",a="month",i="quarter",l="year",c="date",s="Invalid Date",u=/^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/,d=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,f=function(e,t,n){var r=String(e);return!r||r.length>=t?e:""+Array(t+1-r.length).join(n)+e},p="en",m={};m[p]={name:"en",weekdays:"Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"),months:"January_February_March_April_May_June_July_August_September_October_November_December".split("_"),ordinal:function(e){var t=["th","st","nd","rd"],n=e%100;return"["+e+(t[(n-20)%10]||t[n]||t[0])+"]"}};var g="$isDayjsObject",h=function(e){return e instanceof x||!(!e||!e[g])},v=function e(t,n,r){var o;if(!t)return p;if("string"==typeof t){var a=t.toLowerCase();m[a]&&(o=a),n&&(m[a]=n,o=a);var i=t.split("-");if(!o&&i.length>1)return e(i[0])}else{var l=t.name;m[l]=t,o=l}return!r&&o&&(p=o),o||!r&&p},b=function(e,t){if(h(e))return e.clone();var n="object"==typeof t?t:{};return n.date=e,n.args=arguments,new x(n)},y={s:f,z:function(e){var t=-e.utcOffset(),n=Math.abs(t);return(t<=0?"+":"-")+f(Math.floor(n/60),2,"0")+":"+f(n%60,2,"0")},m:function e(t,n){if(t.date()68?1900:2e3)},c=function(e){return function(t){this[e]=+t}},s=[/[+-]\d\d:?(\d\d)?|Z/,function(e){(this.zone||(this.zone={})).offset=function(e){if(!e||"Z"===e)return 0;var t=e.match(/([+-]|\d\d)/g),n=60*t[1]+(+t[2]||0);return 0===n?0:"+"===t[0]?-n:n}(e)}],u=function(e){var t=i[e];return t&&(t.indexOf?t:t.s.concat(t.f))},d=function(e,t){var n,r=i.meridiem;if(r){for(var o=1;o<=24;o+=1)if(e.indexOf(r(o,0,t))>-1){n=o>12;break}}else n=e===(t?"pm":"PM");return n},f={A:[a,function(e){this.afternoon=d(e,!1)}],a:[a,function(e){this.afternoon=d(e,!0)}],Q:[n,function(e){this.month=3*(e-1)+1}],S:[n,function(e){this.milliseconds=100*e}],SS:[r,function(e){this.milliseconds=10*e}],SSS:[/\d{3}/,function(e){this.milliseconds=+e}],s:[o,c("seconds")],ss:[o,c("seconds")],m:[o,c("minutes")],mm:[o,c("minutes")],H:[o,c("hours")],h:[o,c("hours")],HH:[o,c("hours")],hh:[o,c("hours")],D:[o,c("day")],DD:[r,c("day")],Do:[a,function(e){var t=i.ordinal,n=e.match(/\d+/);if(this.day=n[0],t)for(var r=1;r<=31;r+=1)t(r).replace(/\[|\]/g,"")===e&&(this.day=r)}],w:[o,c("week")],ww:[r,c("week")],M:[o,c("month")],MM:[r,c("month")],MMM:[a,function(e){var t=u("months"),n=(u("monthsShort")||t.map(function(e){return e.slice(0,3)})).indexOf(e)+1;if(n<1)throw Error();this.month=n%12||n}],MMMM:[a,function(e){var t=u("months").indexOf(e)+1;if(t<1)throw Error();this.month=t%12||t}],Y:[/[+-]?\d+/,c("year")],YY:[r,function(e){this.year=l(e)}],YYYY:[/\d{4}/,c("year")],Z:s,ZZ:s};return function(n,r,o){o.p.customParseFormat=!0,n&&n.parseTwoDigitYear&&(l=n.parseTwoDigitYear);var a=r.prototype,c=a.parse;a.parse=function(n){var r=n.date,a=n.utc,l=n.args;this.$u=a;var s=l[1];if("string"==typeof s){var u=!0===l[2],d=!0===l[3],p=l[2];d&&(p=l[2]),i=this.$locale(),!u&&p&&(i=o.Ls[p]),this.$d=function(n,r,o,a){try{if(["x","X"].indexOf(r)>-1)return new Date(("X"===r?1e3:1)*n);var l=(function(n){var r,o;r=n,o=i&&i.formats;for(var a=(n=r.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,function(t,n,r){var a=r&&r.toUpperCase();return n||o[r]||e[r]||o[a].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(e,t,n){return t||n.slice(1)})})).match(t),l=a.length,c=0;c0?s-1:b.getMonth());var A,w=d||0,C=p||0,S=m||0,k=g||0;return h?new Date(Date.UTC(x,$,y,w,C,S,k+60*h.offset*1e3)):o?new Date(Date.UTC(x,$,y,w,C,S,k)):(A=new Date(x,$,y,w,C,S,k),v&&(A=a(A).week(v).toDate()),A)}catch(e){return new Date("")}}(r,s,a,o),this.init(),p&&!0!==p&&(this.$L=this.locale(p).$L),(u||d)&&r!=this.format(s)&&(this.$d=new Date("")),i={}}else if(s instanceof Array)for(var m=s.length,g=1;g<=m;g+=1){l[1]=s[g-1];var h=o.apply(this,l);if(h.isValid()){this.$d=h.$d,this.$L=h.$L,this.init();break}g===m&&(this.$d=new Date(""))}else c.call(this,n)}}}()},21840(e){e.exports=function(e,t,n){var r=t.prototype,o=function(e){return e&&(e.indexOf?e:e.s)},a=function(e,t,n,r,a){var i=e.name?e:e.$locale(),l=o(i[t]),c=o(i[n]),s=l||c.map(function(e){return e.slice(0,r)});if(!a)return s;var u=i.weekStart;return s.map(function(e,t){return s[(t+(u||0))%7]})},i=function(){return n.Ls[n.locale()]},l=function(e,t){return e.formats[t]||e.formats[t.toUpperCase()].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,function(e,t,n){return t||n.slice(1)})},c=function(){var e=this;return{months:function(t){return t?t.format("MMMM"):a(e,"months")},monthsShort:function(t){return t?t.format("MMM"):a(e,"monthsShort","months",3)},firstDayOfWeek:function(){return e.$locale().weekStart||0},weekdays:function(t){return t?t.format("dddd"):a(e,"weekdays")},weekdaysMin:function(t){return t?t.format("dd"):a(e,"weekdaysMin","weekdays",2)},weekdaysShort:function(t){return t?t.format("ddd"):a(e,"weekdaysShort","weekdays",3)},longDateFormat:function(t){return l(e.$locale(),t)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};r.localeData=function(){return c.bind(this)()},n.localeData=function(){var e=i();return{firstDayOfWeek:function(){return e.weekStart||0},weekdays:function(){return n.weekdays()},weekdaysShort:function(){return n.weekdaysShort()},weekdaysMin:function(){return n.weekdaysMin()},months:function(){return n.months()},monthsShort:function(){return n.monthsShort()},longDateFormat:function(t){return l(e,t)},meridiem:e.meridiem,ordinal:e.ordinal}},n.months=function(){return a(i(),"months")},n.monthsShort=function(){return a(i(),"monthsShort","months",3)},n.weekdays=function(e){return a(i(),"weekdays",null,null,e)},n.weekdaysShort=function(e){return a(i(),"weekdaysShort","weekdays",3,e)},n.weekdaysMin=function(e){return a(i(),"weekdaysMin","weekdays",2,e)}}},8134(e){e.exports=function(){"use strict";var e="week",t="year";return function(n,r,o){var a=r.prototype;a.week=function(n){if(void 0===n&&(n=null),null!==n)return this.add(7*(n-this.week()),"day");var r=this.$locale().yearStart||1;if(11===this.month()&&this.date()>25){var a=o(this).startOf(t).add(1,t).date(r),i=o(this).endOf(e);if(a.isBefore(i))return 1}var l=o(this).startOf(t).date(r).startOf(e).subtract(1,"millisecond"),c=this.diff(l,e,!0);return c<0?o(this).startOf("week").week():Math.ceil(c)},a.weeks=function(e){return void 0===e&&(e=null),this.week(e)}}}()},28623(e){e.exports=function(e,t){t.prototype.weekYear=function(){var e=this.month(),t=this.week(),n=this.year();return 1===t&&11===e?n+1:0===e&&t>=52?n-1:n}}},46986(e){e.exports=function(e,t){t.prototype.weekday=function(e){var t=this.$locale().weekStart||0,n=this.$W,r=(nei,EF:()=>A,B8:()=>X,_z:()=>$,Ay:()=>ec,D0:()=>K,Op:()=>en,mN:()=>ee});var r=n(47867),o=n(58168),a=n(80045),i=n(1079),l=n(10467),c=n(89379),s=n(83098),u=n(23029),d=n(92901),f=n(9417),p=n(85501),m=n(29426),g=n(64467),h=n(82546),v=n(43210),b=n(68210),y="RC_FORM_INTERNAL_HOOKS",x=function(){(0,b.Ay)(!1,"Can not find FormContext. Please make sure you wrap Field under Form.")};let $=r.createContext({getFieldValue:x,getFieldsValue:x,getFieldError:x,getFieldWarning:x,getFieldsError:x,isFieldsTouched:x,isFieldTouched:x,isFieldValidating:x,isFieldsValidating:x,resetFields:x,setFields:x,setFieldValue:x,setFieldsValue:x,validateFields:x,submit:x,getInternalHooks:function(){return x(),{dispatch:x,initEntityValue:x,registerField:x,useSubscribe:x,setInitialValues:x,destroyForm:x,setCallbacks:x,registerWatch:x,getFields:x,setValidateMessages:x,setPreserve:x,getInitialValue:x}}}),A=r.createContext(null);function w(e){return null==e?[]:Array.isArray(e)?e:[e]}var C=n(58154),S="'${name}' is not a valid ${type}",k={default:"Validation error on field '${name}'",required:"'${name}' is required",enum:"'${name}' must be one of [${enum}]",whitespace:"'${name}' cannot be empty",date:{format:"'${name}' is invalid for format date",parse:"'${name}' could not be parsed as date",invalid:"'${name}' is invalid date"},types:{string:S,method:S,array:S,object:S,number:S,date:S,boolean:S,integer:S,float:S,regexp:S,email:S,url:S,hex:S},string:{len:"'${name}' must be exactly ${len} characters",min:"'${name}' must be at least ${min} characters",max:"'${name}' cannot be longer than ${max} characters",range:"'${name}' must be between ${min} and ${max} characters"},number:{len:"'${name}' must equal ${len}",min:"'${name}' cannot be less than ${min}",max:"'${name}' cannot be greater than ${max}",range:"'${name}' must be between ${min} and ${max}"},array:{len:"'${name}' must be exactly ${len} in length",min:"'${name}' cannot be less than ${min} in length",max:"'${name}' cannot be greater than ${max} in length",range:"'${name}' must be between ${min} and ${max} in length"},pattern:{mismatch:"'${name}' does not match pattern ${pattern}"}},E=n(20488),O=C.A,M="CODE_LOGIC_ERROR";function N(e,t,n,r,o){return I.apply(this,arguments)}function I(){return(I=(0,l.A)((0,i.A)().mark(function e(t,n,o,a,l){var u,d,f,p,m,h,v,b,y;return(0,i.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return u=(0,c.A)({},o),delete u.ruleIndex,O.warning=function(){},u.validator&&(d=u.validator,u.validator=function(){try{return d.apply(void 0,arguments)}catch(e){return console.error(e),Promise.reject(M)}}),f=null,u&&"array"===u.type&&u.defaultField&&(f=u.defaultField,delete u.defaultField),p=new O((0,g.A)({},t,[u])),m=(0,E.h)(k,a.validateMessages),p.messages(m),h=[],e.prev=10,e.next=13,Promise.resolve(p.validate((0,g.A)({},t,n),(0,c.A)({},a)));case 13:e.next=18;break;case 15:e.prev=15,e.t0=e.catch(10),e.t0.errors&&(h=e.t0.errors.map(function(e,t){var n=e.message,o=n===M?m.default:n;return r.isValidElement(o)?r.cloneElement(o,{key:"error_".concat(t)}):o}));case 18:if(!(!h.length&&f&&Array.isArray(n)&&n.length>0)){e.next=23;break}return e.next=21,Promise.all(n.map(function(e,n){return N("".concat(t,".").concat(n),e,f,a,l)}));case 21:return v=e.sent,e.abrupt("return",v.reduce(function(e,t){return[].concat((0,s.A)(e),(0,s.A)(t))},[]));case 23:return b=(0,c.A)((0,c.A)({},o),{},{name:t,enum:(o.enum||[]).join(", ")},l),y=h.map(function(e){return"string"==typeof e?function(e,t){return e.replace(/\\?\$\{\w+\}/g,function(e){return e.startsWith("\\")?e.slice(1):t[e.slice(2,-1)]})}(e,b):e}),e.abrupt("return",y);case 26:case"end":return e.stop()}},e,null,[[10,15]])}))).apply(this,arguments)}function j(){return(j=(0,l.A)((0,i.A)().mark(function e(t){return(0,i.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",Promise.all(t).then(function(e){var t;return(t=[]).concat.apply(t,(0,s.A)(e))}));case 1:case"end":return e.stop()}},e)}))).apply(this,arguments)}function z(){return(z=(0,l.A)((0,i.A)().mark(function e(t){var n;return(0,i.A)().wrap(function(e){for(;;)switch(e.prev=e.next){case 0:return n=0,e.abrupt("return",new Promise(function(e){t.forEach(function(r){r.then(function(r){r.errors.length&&e([r]),(n+=1)===t.length&&e([])})})}));case 2:case"end":return e.stop()}},e)}))).apply(this,arguments)}var R=n(82284),P=n(16300);function T(e){return w(e)}function D(e,t){var n={};return t.forEach(function(t){var r=(0,P.A)(e,t);n=(0,E.A)(n,t,r)}),n}function L(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return e&&e.some(function(e){return B(t,e,n)})}function B(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];return!!e&&!!t&&(!!n||e.length===t.length)&&t.every(function(t,n){return e[n]===t})}function F(e){var t=arguments.length<=1?void 0:arguments[1];return t&&t.target&&"object"===(0,R.A)(t.target)&&e in t.target?t.target[e]:t}function H(e,t,n){var r=e.length;if(t<0||t>=r||n<0||n>=r)return e;var o=e[t],a=t-n;return a>0?[].concat((0,s.A)(e.slice(0,n)),[o],(0,s.A)(e.slice(n,t)),(0,s.A)(e.slice(t+1,r))):a<0?[].concat((0,s.A)(e.slice(0,t)),(0,s.A)(e.slice(t+1,n+1)),[o],(0,s.A)(e.slice(n+1,r))):e}var _=["name"],W=[];function q(e,t,n,r,o,a){return"function"==typeof e?e(t,n,"source"in a?{source:a.source}:{}):r!==o}var V=function(e){(0,p.A)(n,e);var t=(0,m.A)(n);function n(e){var o;return(0,u.A)(this,n),o=t.call(this,e),(0,g.A)((0,f.A)(o),"state",{resetCount:0}),(0,g.A)((0,f.A)(o),"cancelRegisterFunc",null),(0,g.A)((0,f.A)(o),"mounted",!1),(0,g.A)((0,f.A)(o),"touched",!1),(0,g.A)((0,f.A)(o),"dirty",!1),(0,g.A)((0,f.A)(o),"validatePromise",void 0),(0,g.A)((0,f.A)(o),"prevValidating",void 0),(0,g.A)((0,f.A)(o),"errors",W),(0,g.A)((0,f.A)(o),"warnings",W),(0,g.A)((0,f.A)(o),"cancelRegister",function(){var e=o.props,t=e.preserve,n=e.isListField,r=e.name;o.cancelRegisterFunc&&o.cancelRegisterFunc(n,t,T(r)),o.cancelRegisterFunc=null}),(0,g.A)((0,f.A)(o),"getNamePath",function(){var e=o.props,t=e.name,n=e.fieldContext.prefixName;return void 0!==t?[].concat((0,s.A)(void 0===n?[]:n),(0,s.A)(t)):[]}),(0,g.A)((0,f.A)(o),"getRules",function(){var e=o.props,t=e.rules,n=e.fieldContext;return(void 0===t?[]:t).map(function(e){return"function"==typeof e?e(n):e})}),(0,g.A)((0,f.A)(o),"refresh",function(){o.mounted&&o.setState(function(e){return{resetCount:e.resetCount+1}})}),(0,g.A)((0,f.A)(o),"metaCache",null),(0,g.A)((0,f.A)(o),"triggerMetaEvent",function(e){var t=o.props.onMetaChange;if(t){var n=(0,c.A)((0,c.A)({},o.getMeta()),{},{destroy:e});(0,v.A)(o.metaCache,n)||t(n),o.metaCache=n}else o.metaCache=null}),(0,g.A)((0,f.A)(o),"onStoreChange",function(e,t,n){var r=o.props,a=r.shouldUpdate,i=r.dependencies,l=void 0===i?[]:i,c=r.onReset,s=n.store,u=o.getNamePath(),d=o.getValue(e),f=o.getValue(s),p=t&&L(t,u);switch("valueUpdate"===n.type&&"external"===n.source&&!(0,v.A)(d,f)&&(o.touched=!0,o.dirty=!0,o.validatePromise=null,o.errors=W,o.warnings=W,o.triggerMetaEvent()),n.type){case"reset":if(!t||p){o.touched=!1,o.dirty=!1,o.validatePromise=void 0,o.errors=W,o.warnings=W,o.triggerMetaEvent(),null==c||c(),o.refresh();return}break;case"remove":if(a&&q(a,e,s,d,f,n))return void o.reRender();break;case"setField":var m=n.data;if(p){"touched"in m&&(o.touched=m.touched),"validating"in m&&!("originRCField"in m)&&(o.validatePromise=m.validating?Promise.resolve([]):null),"errors"in m&&(o.errors=m.errors||W),"warnings"in m&&(o.warnings=m.warnings||W),o.dirty=!0,o.triggerMetaEvent(),o.reRender();return}if("value"in m&&L(t,u,!0)||a&&!u.length&&q(a,e,s,d,f,n))return void o.reRender();break;case"dependenciesUpdate":if(l.map(T).some(function(e){return L(n.relatedFields,e)}))return void o.reRender();break;default:if(p||(!l.length||u.length||a)&&q(a,e,s,d,f,n))return void o.reRender()}!0===a&&o.reRender()}),(0,g.A)((0,f.A)(o),"validateRules",function(e){var t=o.getNamePath(),n=o.getValue(),r=e||{},a=r.triggerName,u=r.validateOnly,d=Promise.resolve().then((0,l.A)((0,i.A)().mark(function r(){var u,f,p,m,g,h,v;return(0,i.A)().wrap(function(r){for(;;)switch(r.prev=r.next){case 0:if(o.mounted){r.next=2;break}return r.abrupt("return",[]);case 2:if(p=void 0!==(f=(u=o.props).validateFirst)&&f,m=u.messageVariables,g=u.validateDebounce,h=o.getRules(),a&&(h=h.filter(function(e){return e}).filter(function(e){var t=e.validateTrigger;return!t||w(t).includes(a)})),!(g&&a)){r.next=10;break}return r.next=8,new Promise(function(e){setTimeout(e,g)});case 8:if(o.validatePromise===d){r.next=10;break}return r.abrupt("return",[]);case 10:return(v=function(e,t,n,r,o,a){var s,u,d=e.join("."),f=n.map(function(e,t){var n=e.validator,r=(0,c.A)((0,c.A)({},e),{},{ruleIndex:t});return n&&(r.validator=function(e,t,r){var o=!1,a=n(e,t,function(){for(var e=arguments.length,t=Array(e),n=0;n0&&void 0!==arguments[0]?arguments[0]:W;if(o.validatePromise===d){o.validatePromise=null;var t,n=[],r=[];null==(t=e.forEach)||t.call(e,function(e){var t=e.rule.warningOnly,o=e.errors,a=void 0===o?W:o;t?r.push.apply(r,(0,s.A)(a)):n.push.apply(n,(0,s.A)(a))}),o.errors=n,o.warnings=r,o.triggerMetaEvent(),o.reRender()}}),r.abrupt("return",v);case 13:case"end":return r.stop()}},r)})));return void 0!==u&&u||(o.validatePromise=d,o.dirty=!0,o.errors=W,o.warnings=W,o.triggerMetaEvent(),o.reRender()),d}),(0,g.A)((0,f.A)(o),"isFieldValidating",function(){return!!o.validatePromise}),(0,g.A)((0,f.A)(o),"isFieldTouched",function(){return o.touched}),(0,g.A)((0,f.A)(o),"isFieldDirty",function(){return!!o.dirty||void 0!==o.props.initialValue||void 0!==(0,o.props.fieldContext.getInternalHooks(y).getInitialValue)(o.getNamePath())}),(0,g.A)((0,f.A)(o),"getErrors",function(){return o.errors}),(0,g.A)((0,f.A)(o),"getWarnings",function(){return o.warnings}),(0,g.A)((0,f.A)(o),"isListField",function(){return o.props.isListField}),(0,g.A)((0,f.A)(o),"isList",function(){return o.props.isList}),(0,g.A)((0,f.A)(o),"isPreserve",function(){return o.props.preserve}),(0,g.A)((0,f.A)(o),"getMeta",function(){return o.prevValidating=o.isFieldValidating(),{touched:o.isFieldTouched(),validating:o.prevValidating,errors:o.errors,warnings:o.warnings,name:o.getNamePath(),validated:null===o.validatePromise}}),(0,g.A)((0,f.A)(o),"getOnlyChild",function(e){if("function"==typeof e){var t=o.getMeta();return(0,c.A)((0,c.A)({},o.getOnlyChild(e(o.getControlled(),t,o.props.fieldContext))),{},{isFunction:!0})}var n=(0,h.A)(e);return 1===n.length&&r.isValidElement(n[0])?{child:n[0],isFunction:!1}:{child:n,isFunction:!1}}),(0,g.A)((0,f.A)(o),"getValue",function(e){var t=o.props.fieldContext.getFieldsValue,n=o.getNamePath();return(0,P.A)(e||t(!0),n)}),(0,g.A)((0,f.A)(o),"getControlled",function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=o.props,n=t.name,r=t.trigger,a=t.validateTrigger,i=t.getValueFromEvent,l=t.normalize,s=t.valuePropName,u=t.getValueProps,d=t.fieldContext,f=void 0!==a?a:d.validateTrigger,p=o.getNamePath(),m=d.getInternalHooks,h=d.getFieldsValue,v=m(y).dispatch,b=o.getValue(),x=u||function(e){return(0,g.A)({},s,e)},$=e[r],A=void 0!==n?x(b):{},C=(0,c.A)((0,c.A)({},e),A);return C[r]=function(){o.touched=!0,o.dirty=!0,o.triggerMetaEvent();for(var e,t=arguments.length,n=Array(t),r=0;r=0&&t<=n.length?(f.keys=[].concat((0,s.A)(f.keys.slice(0,t)),[f.id],(0,s.A)(f.keys.slice(t))),r([].concat((0,s.A)(n.slice(0,t)),[e],(0,s.A)(n.slice(t))))):(f.keys=[].concat((0,s.A)(f.keys),[f.id]),r([].concat((0,s.A)(n),[e]))),f.id+=1},remove:function(e){var t=i(),n=new Set(Array.isArray(e)?e:[e]);n.size<=0||(f.keys=f.keys.filter(function(e,t){return!n.has(t)}),r(t.filter(function(e,t){return!n.has(t)})))},move:function(e,t){if(e!==t){var n=i();e<0||e>=n.length||t<0||t>=n.length||(f.keys=H(f.keys,e,t),r(H(n,e,t)))}}},t)})))};var Y=n(57046),U="__@field_split__";function G(e){return e.map(function(e){return"".concat((0,R.A)(e),":").concat(e)}).join(U)}var Q=function(){function e(){(0,u.A)(this,e),(0,g.A)(this,"kvs",new Map)}return(0,d.A)(e,[{key:"set",value:function(e,t){this.kvs.set(G(e),t)}},{key:"get",value:function(e){return this.kvs.get(G(e))}},{key:"update",value:function(e,t){var n=t(this.get(e));n?this.set(e,n):this.delete(e)}},{key:"delete",value:function(e){this.kvs.delete(G(e))}},{key:"map",value:function(e){return(0,s.A)(this.kvs.entries()).map(function(t){var n=(0,Y.A)(t,2),r=n[0],o=n[1];return e({key:r.split(U).map(function(e){var t=e.match(/^([^:]*):(.*)$/),n=(0,Y.A)(t,3),r=n[1],o=n[2];return"number"===r?Number(o):o}),value:o})})}},{key:"toJSON",value:function(){var e={};return this.map(function(t){var n=t.key,r=t.value;return e[n.join(".")]=r,null}),e}}]),e}(),Z=["name"],J=(0,d.A)(function e(t){var n=this;(0,u.A)(this,e),(0,g.A)(this,"formHooked",!1),(0,g.A)(this,"forceRootUpdate",void 0),(0,g.A)(this,"subscribable",!0),(0,g.A)(this,"store",{}),(0,g.A)(this,"fieldEntities",[]),(0,g.A)(this,"initialValues",{}),(0,g.A)(this,"callbacks",{}),(0,g.A)(this,"validateMessages",null),(0,g.A)(this,"preserve",null),(0,g.A)(this,"lastValidatePromise",null),(0,g.A)(this,"getForm",function(){return{getFieldValue:n.getFieldValue,getFieldsValue:n.getFieldsValue,getFieldError:n.getFieldError,getFieldWarning:n.getFieldWarning,getFieldsError:n.getFieldsError,isFieldsTouched:n.isFieldsTouched,isFieldTouched:n.isFieldTouched,isFieldValidating:n.isFieldValidating,isFieldsValidating:n.isFieldsValidating,resetFields:n.resetFields,setFields:n.setFields,setFieldValue:n.setFieldValue,setFieldsValue:n.setFieldsValue,validateFields:n.validateFields,submit:n.submit,_init:!0,getInternalHooks:n.getInternalHooks}}),(0,g.A)(this,"getInternalHooks",function(e){return e===y?(n.formHooked=!0,{dispatch:n.dispatch,initEntityValue:n.initEntityValue,registerField:n.registerField,useSubscribe:n.useSubscribe,setInitialValues:n.setInitialValues,destroyForm:n.destroyForm,setCallbacks:n.setCallbacks,setValidateMessages:n.setValidateMessages,getFields:n.getFields,setPreserve:n.setPreserve,getInitialValue:n.getInitialValue,registerWatch:n.registerWatch}):((0,b.Ay)(!1,"`getInternalHooks` is internal usage. Should not call directly."),null)}),(0,g.A)(this,"useSubscribe",function(e){n.subscribable=e}),(0,g.A)(this,"prevWithoutPreserves",null),(0,g.A)(this,"setInitialValues",function(e,t){if(n.initialValues=e||{},t){var r,o=(0,E.h)(e,n.store);null==(r=n.prevWithoutPreserves)||r.map(function(t){var n=t.key;o=(0,E.A)(o,n,(0,P.A)(e,n))}),n.prevWithoutPreserves=null,n.updateStore(o)}}),(0,g.A)(this,"destroyForm",function(e){if(e)n.updateStore({});else{var t=new Q;n.getFieldEntities(!0).forEach(function(e){n.isMergedPreserve(e.isPreserve())||t.set(e.getNamePath(),!0)}),n.prevWithoutPreserves=t}}),(0,g.A)(this,"getInitialValue",function(e){var t=(0,P.A)(n.initialValues,e);return e.length?(0,E.h)(t):t}),(0,g.A)(this,"setCallbacks",function(e){n.callbacks=e}),(0,g.A)(this,"setValidateMessages",function(e){n.validateMessages=e}),(0,g.A)(this,"setPreserve",function(e){n.preserve=e}),(0,g.A)(this,"watchList",[]),(0,g.A)(this,"registerWatch",function(e){return n.watchList.push(e),function(){n.watchList=n.watchList.filter(function(t){return t!==e})}}),(0,g.A)(this,"notifyWatch",function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];if(n.watchList.length){var t=n.getFieldsValue(),r=n.getFieldsValue(!0);n.watchList.forEach(function(n){n(t,r,e)})}}),(0,g.A)(this,"timeoutId",null),(0,g.A)(this,"warningUnhooked",function(){}),(0,g.A)(this,"updateStore",function(e){n.store=e}),(0,g.A)(this,"getFieldEntities",function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return e?n.fieldEntities.filter(function(e){return e.getNamePath().length}):n.fieldEntities}),(0,g.A)(this,"getFieldsMap",function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=new Q;return n.getFieldEntities(e).forEach(function(e){var n=e.getNamePath();t.set(n,e)}),t}),(0,g.A)(this,"getFieldEntitiesForNamePathList",function(e){if(!e)return n.getFieldEntities(!0);var t=n.getFieldsMap(!0);return e.map(function(e){var n=T(e);return t.get(n)||{INVALIDATE_NAME_PATH:T(e)}})}),(0,g.A)(this,"getFieldsValue",function(e,t){if(n.warningUnhooked(),!0===e||Array.isArray(e)?(r=e,o=t):e&&"object"===(0,R.A)(e)&&(a=e.strict,o=e.filter),!0===r&&!o)return n.store;var r,o,a,i=n.getFieldEntitiesForNamePathList(Array.isArray(r)?r:null),l=[];return i.forEach(function(e){var t,n,i,c="INVALIDATE_NAME_PATH"in e?e.INVALIDATE_NAME_PATH:e.getNamePath();if(a){if(null!=(i=e.isList)&&i.call(e))return}else if(!r&&null!=(t=(n=e).isListField)&&t.call(n))return;if(o){var s="getMeta"in e?e.getMeta():null;o(s)&&l.push(c)}else l.push(c)}),D(n.store,l.map(T))}),(0,g.A)(this,"getFieldValue",function(e){n.warningUnhooked();var t=T(e);return(0,P.A)(n.store,t)}),(0,g.A)(this,"getFieldsError",function(e){return n.warningUnhooked(),n.getFieldEntitiesForNamePathList(e).map(function(t,n){return!t||"INVALIDATE_NAME_PATH"in t?{name:T(e[n]),errors:[],warnings:[]}:{name:t.getNamePath(),errors:t.getErrors(),warnings:t.getWarnings()}})}),(0,g.A)(this,"getFieldError",function(e){n.warningUnhooked();var t=T(e);return n.getFieldsError([t])[0].errors}),(0,g.A)(this,"getFieldWarning",function(e){n.warningUnhooked();var t=T(e);return n.getFieldsError([t])[0].warnings}),(0,g.A)(this,"isFieldsTouched",function(){n.warningUnhooked();for(var e,t=arguments.length,r=Array(t),o=0;o0&&void 0!==arguments[0]?arguments[0]:{},r=new Q,o=n.getFieldEntities(!0);o.forEach(function(e){var t=e.props.initialValue,n=e.getNamePath();if(void 0!==t){var o=r.get(n)||new Set;o.add({entity:e,value:t}),r.set(n,o)}}),t.entities?e=t.entities:t.namePathList?(e=[],t.namePathList.forEach(function(t){var n,o=r.get(t);o&&(n=e).push.apply(n,(0,s.A)((0,s.A)(o).map(function(e){return e.entity})))})):e=o,e.forEach(function(e){if(void 0!==e.props.initialValue){var o=e.getNamePath();if(void 0!==n.getInitialValue(o))(0,b.Ay)(!1,"Form already set 'initialValues' with path '".concat(o.join("."),"'. Field can not overwrite it."));else{var a=r.get(o);if(a&&a.size>1)(0,b.Ay)(!1,"Multiple Field with path '".concat(o.join("."),"' set 'initialValue'. Can not decide which one to pick."));else if(a){var i=n.getFieldValue(o);e.isListField()||t.skipExist&&void 0!==i||n.updateStore((0,E.A)(n.store,o,(0,s.A)(a)[0].value))}}}})}),(0,g.A)(this,"resetFields",function(e){n.warningUnhooked();var t=n.store;if(!e){n.updateStore((0,E.h)(n.initialValues)),n.resetWithFieldInitialValue(),n.notifyObservers(t,null,{type:"reset"}),n.notifyWatch();return}var r=e.map(T);r.forEach(function(e){var t=n.getInitialValue(e);n.updateStore((0,E.A)(n.store,e,t))}),n.resetWithFieldInitialValue({namePathList:r}),n.notifyObservers(t,r,{type:"reset"}),n.notifyWatch(r)}),(0,g.A)(this,"setFields",function(e){n.warningUnhooked();var t=n.store,r=[];e.forEach(function(e){var o=e.name,i=(0,a.A)(e,Z),l=T(o);r.push(l),"value"in i&&n.updateStore((0,E.A)(n.store,l,i.value)),n.notifyObservers(t,[l],{type:"setField",data:e})}),n.notifyWatch(r)}),(0,g.A)(this,"getFields",function(){return n.getFieldEntities(!0).map(function(e){var t=e.getNamePath(),r=e.getMeta(),o=(0,c.A)((0,c.A)({},r),{},{name:t,value:n.getFieldValue(t)});return Object.defineProperty(o,"originRCField",{value:!0}),o})}),(0,g.A)(this,"initEntityValue",function(e){var t=e.props.initialValue;if(void 0!==t){var r=e.getNamePath();void 0===(0,P.A)(n.store,r)&&n.updateStore((0,E.A)(n.store,r,t))}}),(0,g.A)(this,"isMergedPreserve",function(e){var t=void 0!==e?e:n.preserve;return null==t||t}),(0,g.A)(this,"registerField",function(e){n.fieldEntities.push(e);var t=e.getNamePath();if(n.notifyWatch([t]),void 0!==e.props.initialValue){var r=n.store;n.resetWithFieldInitialValue({entities:[e],skipExist:!0}),n.notifyObservers(r,[e.getNamePath()],{type:"valueUpdate",source:"internal"})}return function(r,o){var a=arguments.length>2&&void 0!==arguments[2]?arguments[2]:[];if(n.fieldEntities=n.fieldEntities.filter(function(t){return t!==e}),!n.isMergedPreserve(o)&&(!r||a.length>1)){var i=r?void 0:n.getInitialValue(t);if(t.length&&n.getFieldValue(t)!==i&&n.fieldEntities.every(function(e){return!B(e.getNamePath(),t)})){var l=n.store;n.updateStore((0,E.A)(l,t,i,!0)),n.notifyObservers(l,[t],{type:"remove"}),n.triggerDependenciesUpdate(l,t)}}n.notifyWatch([t])}}),(0,g.A)(this,"dispatch",function(e){switch(e.type){case"updateValue":var t=e.namePath,r=e.value;n.updateValue(t,r);break;case"validateField":var o=e.namePath,a=e.triggerName;n.validateFields([o],{triggerName:a})}}),(0,g.A)(this,"notifyObservers",function(e,t,r){if(n.subscribable){var o=(0,c.A)((0,c.A)({},r),{},{store:n.getFieldsValue(!0)});n.getFieldEntities().forEach(function(n){(0,n.onStoreChange)(e,t,o)})}else n.forceRootUpdate()}),(0,g.A)(this,"triggerDependenciesUpdate",function(e,t){var r=n.getDependencyChildrenFields(t);return r.length&&n.validateFields(r),n.notifyObservers(e,r,{type:"dependenciesUpdate",relatedFields:[t].concat((0,s.A)(r))}),r}),(0,g.A)(this,"updateValue",function(e,t){var r=T(e),o=n.store;n.updateStore((0,E.A)(n.store,r,t)),n.notifyObservers(o,[r],{type:"valueUpdate",source:"internal"}),n.notifyWatch([r]);var a=n.triggerDependenciesUpdate(o,r),i=n.callbacks.onValuesChange;i&&i(D(n.store,[r]),n.getFieldsValue()),n.triggerOnFieldsChange([r].concat((0,s.A)(a)))}),(0,g.A)(this,"setFieldsValue",function(e){n.warningUnhooked();var t=n.store;if(e){var r=(0,E.h)(n.store,e);n.updateStore(r)}n.notifyObservers(t,null,{type:"valueUpdate",source:"external"}),n.notifyWatch()}),(0,g.A)(this,"setFieldValue",function(e,t){n.setFields([{name:e,value:t,errors:[],warnings:[]}])}),(0,g.A)(this,"getDependencyChildrenFields",function(e){var t=new Set,r=[],o=new Q;return n.getFieldEntities().forEach(function(e){(e.props.dependencies||[]).forEach(function(t){var n=T(t);o.update(n,function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:new Set;return t.add(e),t})})}),!function e(n){(o.get(n)||new Set).forEach(function(n){if(!t.has(n)){t.add(n);var o=n.getNamePath();n.isFieldDirty()&&o.length&&(r.push(o),e(o))}})}(e),r}),(0,g.A)(this,"triggerOnFieldsChange",function(e,t){var r=n.callbacks.onFieldsChange;if(r){var o=n.getFields();if(t){var a=new Q;t.forEach(function(e){var t=e.name,n=e.errors;a.set(t,n)}),o.forEach(function(e){e.errors=a.get(e.name)||e.errors})}var i=o.filter(function(t){return L(e,t.name)});i.length&&r(i,o)}}),(0,g.A)(this,"validateFields",function(e,t){n.warningUnhooked(),Array.isArray(e)||"string"==typeof e||"string"==typeof t?(i=e,l=t):l=e;var r,o,a,i,l,u=!!i,d=u?i.map(T):[],f=[],p=String(Date.now()),m=new Set,g=l||{},h=g.recursive,v=g.dirty;n.getFieldEntities(!0).forEach(function(e){if((u||d.push(e.getNamePath()),e.props.rules&&e.props.rules.length)&&(!v||e.isFieldDirty())){var t=e.getNamePath();if(m.add(t.join(p)),!u||L(d,t,h)){var r=e.validateRules((0,c.A)({validateMessages:(0,c.A)((0,c.A)({},k),n.validateMessages)},l));f.push(r.then(function(){return{name:t,errors:[],warnings:[]}}).catch(function(e){var n,r=[],o=[];return(null==(n=e.forEach)||n.call(e,function(e){var t=e.rule.warningOnly,n=e.errors;t?o.push.apply(o,(0,s.A)(n)):r.push.apply(r,(0,s.A)(n))}),r.length)?Promise.reject({name:t,errors:r,warnings:o}):{name:t,errors:r,warnings:o}}))}}});var b=(r=!1,o=f.length,a=[],f.length?new Promise(function(e,t){f.forEach(function(n,i){n.catch(function(e){return r=!0,e}).then(function(n){o-=1,a[i]=n,o>0||(r&&t(a),e(a))})})}):Promise.resolve([]));n.lastValidatePromise=b,b.catch(function(e){return e}).then(function(e){var t=e.map(function(e){return e.name});n.notifyObservers(n.store,t,{type:"validateFinish"}),n.triggerOnFieldsChange(t,e)});var y=b.then(function(){return n.lastValidatePromise===b?Promise.resolve(n.getFieldsValue(d)):Promise.reject([])}).catch(function(e){var t=e.filter(function(e){return e&&e.errors.length});return Promise.reject({values:n.getFieldsValue(d),errorFields:t,outOfDate:n.lastValidatePromise!==b})});y.catch(function(e){return e});var x=d.filter(function(e){return m.has(e.join(p))});return n.triggerOnFieldsChange(x),y}),(0,g.A)(this,"submit",function(){n.warningUnhooked(),n.validateFields().then(function(e){var t=n.callbacks.onFinish;if(t)try{t(e)}catch(e){console.error(e)}}).catch(function(e){var t=n.callbacks.onFinishFailed;t&&t(e)})}),this.forceRootUpdate=t});let ee=function(e){var t=r.useRef(),n=r.useState({}),o=(0,Y.A)(n,2)[1];return t.current||(e?t.current=e:t.current=new J(function(){o({})}).getForm()),[t.current]};var et=r.createContext({triggerFormChange:function(){},triggerFormFinish:function(){},registerForm:function(){},unregisterForm:function(){}}),en=function(e){var t=e.validateMessages,n=e.onFormChange,o=e.onFormFinish,a=e.children,i=r.useContext(et),l=r.useRef({});return r.createElement(et.Provider,{value:(0,c.A)((0,c.A)({},i),{},{validateMessages:(0,c.A)((0,c.A)({},i.validateMessages),t),triggerFormChange:function(e,t){n&&n(e,{changedFields:t,forms:l.current}),i.triggerFormChange(e,t)},triggerFormFinish:function(e,t){o&&o(e,{values:t,forms:l.current}),i.triggerFormFinish(e,t)},registerForm:function(e,t){e&&(l.current=(0,c.A)((0,c.A)({},l.current),{},(0,g.A)({},e,t))),i.registerForm(e,t)},unregisterForm:function(e){var t=(0,c.A)({},l.current);delete t[e],l.current=t,i.unregisterForm(e)}})},a)},er=["name","initialValues","fields","form","preserve","children","component","validateMessages","validateTrigger","onValuesChange","onFieldsChange","onFinish","onFinishFailed","clearOnDestroy"];function eo(e){try{return JSON.stringify(e)}catch(e){return Math.random()}}var ea=function(){};let ei=function(){for(var e=arguments.length,t=Array(e),n=0;n1?t-1:0),r=1;rc});var r=n(80045),o=n(89379),a=n(82284),i=n(47867),l=["show"];function c(e,t){return i.useMemo(function(){var n={};t&&(n.show="object"===(0,a.A)(t)&&t.formatter?t.formatter:!!t);var i=n=(0,o.A)((0,o.A)({},n),e),c=i.show,s=(0,r.A)(i,l);return(0,o.A)((0,o.A)({},s),{},{show:!!c,showFormatter:"function"==typeof c?c:void 0,strategy:s.strategy||function(e){return e.length}})},[e,t])}},89018(e,t,n){"use strict";n.d(t,{a:()=>f,A:()=>x});var r=n(89379),o=n(58168),a=n(64467),i=n(82284),l=n(8651),c=n.n(l),s=n(47867),u=n.n(s),d=n(11980);let f=u().forwardRef(function(e,t){var n,l,f=e.inputElement,p=e.children,m=e.prefixCls,g=e.prefix,h=e.suffix,v=e.addonBefore,b=e.addonAfter,y=e.className,x=e.style,$=e.disabled,A=e.readOnly,w=e.focused,C=e.triggerFocus,S=e.allowClear,k=e.value,E=e.handleReset,O=e.hidden,M=e.classes,N=e.classNames,I=e.dataAttrs,j=e.styles,z=e.components,R=e.onClear,P=null!=p?p:f,T=(null==z?void 0:z.affixWrapper)||"span",D=(null==z?void 0:z.groupWrapper)||"span",L=(null==z?void 0:z.wrapper)||"span",B=(null==z?void 0:z.groupAddon)||"span",F=(0,s.useRef)(null),H=(0,d.OL)(e),_=(0,s.cloneElement)(P,{value:k,className:c()(P.props.className,!H&&(null==N?void 0:N.variant))||null}),W=(0,s.useRef)(null);if(u().useImperativeHandle(t,function(){return{nativeElement:W.current||F.current}}),H){var q=null;if(S){var V=!$&&!A&&k,K="".concat(m,"-clear-icon"),X="object"===(0,i.A)(S)&&null!=S&&S.clearIcon?S.clearIcon:"✖";q=u().createElement("span",{onClick:function(e){null==E||E(e),null==R||R()},onMouseDown:function(e){return e.preventDefault()},className:c()(K,(0,a.A)((0,a.A)({},"".concat(K,"-hidden"),!V),"".concat(K,"-has-suffix"),!!h)),role:"button",tabIndex:-1},X)}var Y="".concat(m,"-affix-wrapper"),U=c()(Y,(0,a.A)((0,a.A)((0,a.A)((0,a.A)((0,a.A)({},"".concat(m,"-disabled"),$),"".concat(Y,"-disabled"),$),"".concat(Y,"-focused"),w),"".concat(Y,"-readonly"),A),"".concat(Y,"-input-with-clear-btn"),h&&S&&k),null==M?void 0:M.affixWrapper,null==N?void 0:N.affixWrapper,null==N?void 0:N.variant),G=(h||S)&&u().createElement("span",{className:c()("".concat(m,"-suffix"),null==N?void 0:N.suffix),style:null==j?void 0:j.suffix},q,h);_=u().createElement(T,(0,o.A)({className:U,style:null==j?void 0:j.affixWrapper,onClick:function(e){var t;null!=(t=F.current)&&t.contains(e.target)&&(null==C||C())}},null==I?void 0:I.affixWrapper,{ref:F}),g&&u().createElement("span",{className:c()("".concat(m,"-prefix"),null==N?void 0:N.prefix),style:null==j?void 0:j.prefix},g),_,G)}if((0,d.bk)(e)){var Q="".concat(m,"-group"),Z="".concat(Q,"-addon"),J="".concat(Q,"-wrapper"),ee=c()("".concat(m,"-wrapper"),Q,null==M?void 0:M.wrapper,null==N?void 0:N.wrapper),et=c()(J,(0,a.A)({},"".concat(J,"-disabled"),$),null==M?void 0:M.group,null==N?void 0:N.groupWrapper);_=u().createElement(D,{className:et,ref:W},u().createElement(L,{className:ee},v&&u().createElement(B,{className:Z},v),_,b&&u().createElement(B,{className:Z},b)))}return u().cloneElement(_,{className:c()(null==(n=_.props)?void 0:n.className,y)||null,style:(0,r.A)((0,r.A)({},null==(l=_.props)?void 0:l.style),x),hidden:O})});var p=n(83098),m=n(57046),g=n(80045),h=n(12533),v=n(19853),b=n(22489),y=["autoComplete","onChange","onFocus","onBlur","onPressEnter","onKeyDown","onKeyUp","prefixCls","disabled","htmlSize","className","maxLength","suffix","showCount","count","type","classes","classNames","styles","onCompositionStart","onCompositionEnd"];let x=(0,s.forwardRef)(function(e,t){var n,i=e.autoComplete,l=e.onChange,x=e.onFocus,$=e.onBlur,A=e.onPressEnter,w=e.onKeyDown,C=e.onKeyUp,S=e.prefixCls,k=void 0===S?"rc-input":S,E=e.disabled,O=e.htmlSize,M=e.className,N=e.maxLength,I=e.suffix,j=e.showCount,z=e.count,R=e.type,P=e.classes,T=e.classNames,D=e.styles,L=e.onCompositionStart,B=e.onCompositionEnd,F=(0,g.A)(e,y),H=(0,s.useState)(!1),_=(0,m.A)(H,2),W=_[0],q=_[1],V=(0,s.useRef)(!1),K=(0,s.useRef)(!1),X=(0,s.useRef)(null),Y=(0,s.useRef)(null),U=function(e){X.current&&(0,d.F4)(X.current,e)},G=(0,h.A)(e.defaultValue,{value:e.value}),Q=(0,m.A)(G,2),Z=Q[0],J=Q[1],ee=null==Z?"":String(Z),et=(0,s.useState)(null),en=(0,m.A)(et,2),er=en[0],eo=en[1],ea=(0,b.A)(z,j),ei=ea.max||N,el=ea.strategy(ee),ec=!!ei&&el>ei;(0,s.useImperativeHandle)(t,function(){var e;return{focus:U,blur:function(){var e;null==(e=X.current)||e.blur()},setSelectionRange:function(e,t,n){var r;null==(r=X.current)||r.setSelectionRange(e,t,n)},select:function(){var e;null==(e=X.current)||e.select()},input:X.current,nativeElement:(null==(e=Y.current)?void 0:e.nativeElement)||X.current}}),(0,s.useEffect)(function(){K.current&&(K.current=!1),q(function(e){return(!e||!E)&&e})},[E]);var es=function(e,t,n){var r,o,a=t;if(!V.current&&ea.exceedFormatter&&ea.max&&ea.strategy(t)>ea.max)a=ea.exceedFormatter(t,{max:ea.max}),t!==a&&eo([(null==(r=X.current)?void 0:r.selectionStart)||0,(null==(o=X.current)?void 0:o.selectionEnd)||0]);else if("compositionEnd"===n.source)return;J(a),X.current&&(0,d.gS)(X.current,e,l,a)};(0,s.useEffect)(function(){if(er){var e;null==(e=X.current)||e.setSelectionRange.apply(e,(0,p.A)(er))}},[er]);var eu=ec&&"".concat(k,"-out-of-range");return u().createElement(f,(0,o.A)({},F,{prefixCls:k,className:c()(M,eu),handleReset:function(e){J(""),U(),X.current&&(0,d.gS)(X.current,e,l)},value:ee,focused:W,triggerFocus:U,suffix:function(){var e=Number(ei)>0;if(I||ea.show){var t=ea.showFormatter?ea.showFormatter({value:ee,count:el,maxLength:ei}):"".concat(el).concat(e?" / ".concat(ei):"");return u().createElement(u().Fragment,null,ea.show&&u().createElement("span",{className:c()("".concat(k,"-show-count-suffix"),(0,a.A)({},"".concat(k,"-show-count-has-suffix"),!!I),null==T?void 0:T.count),style:(0,r.A)({},null==D?void 0:D.count)},t),I)}return null}(),disabled:E,classes:P,classNames:T,styles:D}),(n=(0,v.A)(e,["prefixCls","onPressEnter","addonBefore","addonAfter","prefix","suffix","allowClear","defaultValue","showCount","count","classes","htmlSize","styles","classNames","onClear"]),u().createElement("input",(0,o.A)({autoComplete:i},n,{onChange:function(e){es(e,e.target.value,{source:"change"})},onFocus:function(e){q(!0),null==x||x(e)},onBlur:function(e){K.current&&(K.current=!1),q(!1),null==$||$(e)},onKeyDown:function(e){A&&"Enter"===e.key&&!K.current&&(K.current=!0,A(e)),null==w||w(e)},onKeyUp:function(e){"Enter"===e.key&&(K.current=!1),null==C||C(e)},className:c()(k,(0,a.A)({},"".concat(k,"-disabled"),E),null==T?void 0:T.input),style:null==D?void 0:D.input,ref:X,size:O,type:void 0===R?"text":R,onCompositionStart:function(e){V.current=!0,null==L||L(e)},onCompositionEnd:function(e){V.current=!1,es(e,e.currentTarget.value,{source:"compositionEnd"}),null==B||B(e)}}))))})},11980(e,t,n){"use strict";function r(e){return!!(e.addonBefore||e.addonAfter)}function o(e){return!!(e.prefix||e.suffix||e.allowClear)}function a(e,t,n){var r=t.cloneNode(!0),o=Object.create(e,{target:{value:r},currentTarget:{value:r}});return r.value=n,"number"==typeof t.selectionStart&&"number"==typeof t.selectionEnd&&(r.selectionStart=t.selectionStart,r.selectionEnd=t.selectionEnd),r.setSelectionRange=function(){t.setSelectionRange.apply(t,arguments)},o}function i(e,t,n,r){if(n){var o=t;if("click"===t.type)return void n(o=a(t,e,""));if("file"!==e.type&&void 0!==r)return void n(o=a(t,e,r));n(o)}}function l(e,t){if(e){e.focus(t);var n=(t||{}).cursor;if(n){var r=e.value.length;switch(n){case"start":e.setSelectionRange(0,0);break;case"end":e.setSelectionRange(r,r);break;default:e.setSelectionRange(0,r)}}}}n.d(t,{F4:()=>l,OL:()=>o,bk:()=>r,gS:()=>i})},52193(e,t,n){"use strict";n.d(t,{Kq:()=>x,aF:()=>eg,Ay:()=>eh});var r,o,a,i,l,c=n(64467),s=n(89379),u=n(57046),d=n(82284),f=n(8651),p=n.n(f),m=n(66588),g=n(8719),h=n(47867),v=n(80045),b=["children"],y=h.createContext({});function x(e){var t=e.children,n=(0,v.A)(e,b);return h.createElement(y.Provider,{value:n},t)}var $=n(23029),A=n(92901),w=n(85501),C=n(29426),S=function(e){(0,w.A)(n,e);var t=(0,C.A)(n);function n(){return(0,$.A)(this,n),t.apply(this,arguments)}return(0,A.A)(n,[{key:"render",value:function(){return this.props.children}}]),n}(h.Component),k=n(81470),E=n(1233),O=n(26956),M="none",N="appear",I="enter",j="leave",z="none",R="prepare",P="start",T="active",D="prepared",L=n(20998);function B(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit".concat(e)]="webkit".concat(t),n["Moz".concat(e)]="moz".concat(t),n["ms".concat(e)]="MS".concat(t),n["O".concat(e)]="o".concat(t.toLowerCase()),n}var F=(r=(0,L.A)(),o="u">typeof window?window:{},a={animationend:B("Animation","AnimationEnd"),transitionend:B("Transition","TransitionEnd")},r&&("AnimationEvent"in o||delete a.animationend.animation,"TransitionEvent"in o||delete a.transitionend.transition),a),H={};(0,L.A)()&&(H=document.createElement("div").style);var _={};function W(e){if(_[e])return _[e];var t=F[e];if(t)for(var n=Object.keys(t),r=n.length,o=0;o1&&void 0!==arguments[1]?arguments[1]:2;t();var a=(0,Z.A)(function(){o<=1?r({isCanceled:function(){return a!==e.current}}):n(r,o-1)});e.current=a},t]};var ee=[R,P,T,"end"],et=[R,D];function en(e){return e===T||"end"===e}let er=function(e,t,n){var r=(0,E.A)(z),o=(0,u.A)(r,2),a=o[0],i=o[1],l=J(),c=(0,u.A)(l,2),s=c[0],d=c[1],f=t?et:ee;return Q(function(){if(a!==z&&"end"!==a){var e=f.indexOf(a),t=f[e+1],r=n(a);!1===r?i(t,!0):t&&s(function(e){function n(){e.isCanceled()||i(t,!0)}!0===r?n():Promise.resolve(r).then(n)})}},[e,a]),h.useEffect(function(){return function(){d()}},[]),[function(){i(R,!0)},a]},eo=(i=K,"object"===(0,d.A)(K)&&(i=K.transitionSupport),(l=h.forwardRef(function(e,t){var n=e.visible,r=void 0===n||n,o=e.removeOnLeave,a=void 0===o||o,l=e.forceRender,d=e.children,f=e.motionName,v=e.leavedClassName,b=e.eventProps,x=h.useContext(y).motion,$=!!(e.motionName&&i&&!1!==x),A=(0,h.useRef)(),w=(0,h.useRef)(),C=function(e,t,n,r){var o,a,i,l=r.motionEnter,d=void 0===l||l,f=r.motionAppear,p=void 0===f||f,m=r.motionLeave,g=void 0===m||m,v=r.motionDeadline,b=r.motionLeaveImmediately,y=r.onAppearPrepare,x=r.onEnterPrepare,$=r.onLeavePrepare,A=r.onAppearStart,w=r.onEnterStart,C=r.onLeaveStart,S=r.onAppearActive,z=r.onEnterActive,L=r.onLeaveActive,B=r.onAppearEnd,F=r.onEnterEnd,H=r.onLeaveEnd,_=r.onVisibleChanged,W=(0,E.A)(),q=(0,u.A)(W,2),V=q[0],K=q[1],X=(o=h.useReducer(function(e){return e+1},0),a=(0,u.A)(o,2)[1],i=h.useRef(M),[(0,O.A)(function(){return i.current}),(0,O.A)(function(e){i.current="function"==typeof e?e(i.current):e,a()})]),Y=(0,u.A)(X,2),U=Y[0],Z=Y[1],J=(0,E.A)(null),ee=(0,u.A)(J,2),et=ee[0],eo=ee[1],ea=U(),ei=(0,h.useRef)(!1),el=(0,h.useRef)(null),ec=(0,h.useRef)(!1);function es(){Z(M),eo(null,!0)}var eu=(0,k._q)(function(e){var t,r=U();if(r!==M){var o=n();if(!e||e.deadline||e.target===o){var a=ec.current;r===N&&a?t=null==B?void 0:B(o,e):r===I&&a?t=null==F?void 0:F(o,e):r===j&&a&&(t=null==H?void 0:H(o,e)),a&&!1!==t&&es()}}}),ed=G(eu),ef=(0,u.A)(ed,1)[0],ep=function(e){switch(e){case N:return(0,c.A)((0,c.A)((0,c.A)({},R,y),P,A),T,S);case I:return(0,c.A)((0,c.A)((0,c.A)({},R,x),P,w),T,z);case j:return(0,c.A)((0,c.A)((0,c.A)({},R,$),P,C),T,L);default:return{}}},em=h.useMemo(function(){return ep(ea)},[ea]),eg=er(ea,!e,function(e){if(e===R){var t,r=em[R];return!!r&&r(n())}return eb in em&&eo((null==(t=em[eb])?void 0:t.call(em,n(),null))||null),eb===T&&ea!==M&&(ef(n()),v>0&&(clearTimeout(el.current),el.current=setTimeout(function(){eu({deadline:!0})},v))),eb===D&&es(),!0}),eh=(0,u.A)(eg,2),ev=eh[0],eb=eh[1];ec.current=en(eb);var ey=(0,h.useRef)(null);Q(function(){if(!ei.current||ey.current!==t){K(t);var n,r=ei.current;ei.current=!0,!r&&t&&p&&(n=N),r&&t&&d&&(n=I),(r&&!t&&g||!r&&b&&!t&&g)&&(n=j);var o=ep(n);n&&(e||o[R])?(Z(n),ev()):Z(M),ey.current=t}},[t]),(0,h.useEffect)(function(){(ea!==N||p)&&(ea!==I||d)&&(ea!==j||g)||Z(M)},[p,d,g]),(0,h.useEffect)(function(){return function(){ei.current=!1,clearTimeout(el.current)}},[]);var ex=h.useRef(!1);(0,h.useEffect)(function(){V&&(ex.current=!0),void 0!==V&&ea===M&&((ex.current||V)&&(null==_||_(V)),ex.current=!0)},[V,ea]);var e$=et;return em[R]&&eb===P&&(e$=(0,s.A)({transition:"none"},e$)),[ea,eb,e$,null!=V?V:t]}($,r,function(){try{return A.current instanceof HTMLElement?A.current:(0,m.Ay)(w.current)}catch(e){return null}},e),z=(0,u.A)(C,4),L=z[0],B=z[1],F=z[2],H=z[3],_=h.useRef(H);H&&(_.current=!0);var W=h.useCallback(function(e){A.current=e,(0,g.Xf)(t,e)},[t]),q=(0,s.A)((0,s.A)({},b),{},{visible:r});if(d)if(L===M)V=H?d((0,s.A)({},q),W):!a&&_.current&&v?d((0,s.A)((0,s.A)({},q),{},{className:v}),W):!l&&(a||v)?null:d((0,s.A)((0,s.A)({},q),{},{style:{display:"none"}}),W);else{B===R?K="prepare":en(B)?K="active":B===P&&(K="start");var V,K,X=U(f,"".concat(L,"-").concat(K));V=d((0,s.A)((0,s.A)({},q),{},{className:p()(U(f,L),(0,c.A)((0,c.A)({},X,X&&K),f,"string"==typeof f)),style:F}),W)}else V=null;return h.isValidElement(V)&&(0,g.f3)(V)&&((0,g.A9)(V)||(V=h.cloneElement(V,{ref:W}))),h.createElement(S,{ref:w},V)})).displayName="CSSMotion",l);var ea=n(58168),ei=n(9417),el="keep",ec="remove",es="removed";function eu(e){var t;return t=e&&"object"===(0,d.A)(e)&&"key"in e?e:{key:e},(0,s.A)((0,s.A)({},t),{},{key:String(t.key)})}function ed(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[];return e.map(eu)}var ef=["component","children","onVisibleChanged","onAllRemoved"],ep=["status"],em=["eventProps","visible","children","motionName","motionAppear","motionEnter","motionLeave","motionLeaveImmediately","motionDeadline","removeOnLeave","leavedClassName","onAppearPrepare","onAppearStart","onAppearActive","onAppearEnd","onEnterStart","onEnterActive","onEnterEnd","onLeaveStart","onLeaveActive","onLeaveEnd"];let eg=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:eo,n=function(e){(0,w.A)(r,e);var n=(0,C.A)(r);function r(){var e;(0,$.A)(this,r);for(var t=arguments.length,o=Array(t),a=0;a0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=[],r=0,o=t.length,a=ed(e),i=ed(t);a.forEach(function(e){for(var t=!1,a=r;a1}).forEach(function(e){(n=n.filter(function(t){var n=t.key,r=t.status;return n!==e||r!==ec})).forEach(function(t){t.key===e&&(t.status=el)})}),n})(r,ed(n)).filter(function(e){var t=r.find(function(t){var n=t.key;return e.key===n});return!t||t.status!==es||e.status!==ec})}}}]),r}(h.Component);return(0,c.A)(n,"defaultProps",{component:"div"}),n}(K),eh=eo},96069(e,t,n){"use strict";n.d(t,{A:()=>r});let r={items_per_page:"/ page",jump_to:"Go to",jump_to_confirm:"confirm",page:"Page",prev_page:"Previous Page",next_page:"Next Page",prev_5:"Previous 5 Pages",next_5:"Next 5 Pages",prev_3:"Previous 3 Pages",next_3:"Next 3 Pages",page_size:"Page Size"}},60305(e,t,n){"use strict";n.d(t,{A:()=>$});var r=n(58168),o=n(47867),a=n(82546);n(68210);var i=n(89379),l=n(82284),c=n(66588),s=n(8719),u=o.createContext(null),d=n(43591),f=new Map,p=new d.A(function(e){e.forEach(function(e){var t,n=e.target;null==(t=f.get(n))||t.forEach(function(e){return e(n)})})}),m=n(23029),g=n(92901),h=n(85501),v=n(29426),b=function(e){(0,h.A)(n,e);var t=(0,v.A)(n);function n(){return(0,m.A)(this,n),t.apply(this,arguments)}return(0,g.A)(n,[{key:"render",value:function(){return this.props.children}}]),n}(o.Component),y=o.forwardRef(function(e,t){var n=e.children,r=e.disabled,a=o.useRef(null),d=o.useRef(null),m=o.useContext(u),g="function"==typeof n,h=g?n(a):n,v=o.useRef({width:-1,height:-1,offsetWidth:-1,offsetHeight:-1}),y=!g&&o.isValidElement(h)&&(0,s.f3)(h),x=y?(0,s.A9)(h):null,$=(0,s.xK)(x,a),A=function(){var e;return(0,c.Ay)(a.current)||(a.current&&"object"===(0,l.A)(a.current)?(0,c.Ay)(null==(e=a.current)?void 0:e.nativeElement):null)||(0,c.Ay)(d.current)};o.useImperativeHandle(t,function(){return A()});var w=o.useRef(e);w.current=e;var C=o.useCallback(function(e){var t=w.current,n=t.onResize,r=t.data,o=e.getBoundingClientRect(),a=o.width,l=o.height,c=e.offsetWidth,s=e.offsetHeight,u=Math.floor(a),d=Math.floor(l);if(v.current.width!==u||v.current.height!==d||v.current.offsetWidth!==c||v.current.offsetHeight!==s){var f={width:u,height:d,offsetWidth:c,offsetHeight:s};v.current=f;var p=c===Math.round(a)?a:c,g=s===Math.round(l)?l:s,h=(0,i.A)((0,i.A)({},f),{},{offsetWidth:p,offsetHeight:g});null==m||m(h,e,r),n&&Promise.resolve().then(function(){n(h,e)})}},[]);return o.useEffect(function(){var e=A();return e&&!r&&(f.has(e)||(f.set(e,new Set),p.observe(e)),f.get(e).add(C)),function(){f.has(e)&&(f.get(e).delete(C),!f.get(e).size&&(p.unobserve(e),f.delete(e)))}},[a.current,r]),o.createElement(b,{ref:d},y?o.cloneElement(h,{ref:$}):h)}),x=o.forwardRef(function(e,t){var n=e.children;return("function"==typeof n?[n]:(0,a.A)(n)).map(function(n,a){var i=(null==n?void 0:n.key)||"".concat("rc-observer-key","-").concat(a);return o.createElement(y,(0,r.A)({},e,{key:i,ref:0===a?t:void 0}),n)})});x.Collection=function(e){var t=e.children,n=e.onBatchResize,r=o.useRef(0),a=o.useRef([]),i=o.useContext(u),l=o.useCallback(function(e,t,o){r.current+=1;var l=r.current;a.current.push({size:e,element:t,data:o}),Promise.resolve().then(function(){l===r.current&&(null==n||n(a.current),a.current=[])}),null==i||i(e,t,o)},[n,i]);return o.createElement(u.Provider,{value:l},t)};let $=x},45903(e,t,n){"use strict";n.d(t,{A:()=>E});var r,o=n(58168),a=n(64467),i=n(89379),l=n(83098),c=n(57046),s=n(80045),u=n(8651),d=n.n(u),f=n(89018),p=n(22489),m=n(11980),g=n(12533),h=n(47867),v=n.n(h),b=n(82284),y=n(60305),x=n(30981),$=n(25371),A=["letter-spacing","line-height","padding-top","padding-bottom","font-family","font-weight","font-size","font-variant","text-rendering","text-transform","width","text-indent","padding-left","padding-right","border-width","box-sizing","word-break","white-space"],w={},C=["prefixCls","defaultValue","value","autoSize","onResize","className","style","disabled","onChange","onInternalAutoSize"],S=h.forwardRef(function(e,t){var n=e.prefixCls,l=e.defaultValue,u=e.value,f=e.autoSize,p=e.onResize,m=e.className,v=e.style,S=e.disabled,k=e.onChange,E=(e.onInternalAutoSize,(0,s.A)(e,C)),O=(0,g.A)(l,{value:u,postState:function(e){return null!=e?e:""}}),M=(0,c.A)(O,2),N=M[0],I=M[1],j=h.useRef();h.useImperativeHandle(t,function(){return{textArea:j.current}});var z=h.useMemo(function(){return f&&"object"===(0,b.A)(f)?[f.minRows,f.maxRows]:[]},[f]),R=(0,c.A)(z,2),P=R[0],T=R[1],D=!!f,L=function(){try{if(document.activeElement===j.current){var e=j.current,t=e.selectionStart,n=e.selectionEnd,r=e.scrollTop;j.current.setSelectionRange(t,n),j.current.scrollTop=r}}catch(e){}},B=h.useState(2),F=(0,c.A)(B,2),H=F[0],_=F[1],W=h.useState(),q=(0,c.A)(W,2),V=q[0],K=q[1],X=function(){_(0)};(0,x.A)(function(){D&&X()},[u,P,T,D]),(0,x.A)(function(){if(0===H)_(1);else if(1===H){var e=function(e){var t,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null,a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;r||((r=document.createElement("textarea")).setAttribute("tab-index","-1"),r.setAttribute("aria-hidden","true"),r.setAttribute("name","hiddenTextarea"),document.body.appendChild(r)),e.getAttribute("wrap")?r.setAttribute("wrap",e.getAttribute("wrap")):r.removeAttribute("wrap");var i=function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=e.getAttribute("id")||e.getAttribute("data-reactid")||e.getAttribute("name");if(t&&w[n])return w[n];var r=window.getComputedStyle(e),o=r.getPropertyValue("box-sizing")||r.getPropertyValue("-moz-box-sizing")||r.getPropertyValue("-webkit-box-sizing"),a=parseFloat(r.getPropertyValue("padding-bottom"))+parseFloat(r.getPropertyValue("padding-top")),i=parseFloat(r.getPropertyValue("border-bottom-width"))+parseFloat(r.getPropertyValue("border-top-width")),l={sizingStyle:A.map(function(e){return"".concat(e,":").concat(r.getPropertyValue(e))}).join(";"),paddingSize:a,borderSize:i,boxSizing:o};return t&&n&&(w[n]=l),l}(e,n),l=i.paddingSize,c=i.borderSize,s=i.boxSizing,u=i.sizingStyle;r.setAttribute("style","".concat(u,";").concat("\n min-height:0 !important;\n max-height:none !important;\n height:0 !important;\n visibility:hidden !important;\n overflow:hidden !important;\n position:absolute !important;\n z-index:-1000 !important;\n top:0 !important;\n right:0 !important;\n pointer-events: none !important;\n")),r.value=e.value||e.placeholder||"";var d=void 0,f=void 0,p=r.scrollHeight;if("border-box"===s?p+=c:"content-box"===s&&(p-=l),null!==o||null!==a){r.value=" ";var m=r.scrollHeight-l;null!==o&&(d=m*o,"border-box"===s&&(d=d+l+c),p=Math.max(d,p)),null!==a&&(f=m*a,"border-box"===s&&(f=f+l+c),t=p>f?"":"hidden",p=Math.min(f,p))}var g={height:p,overflowY:t,resize:"none"};return d&&(g.minHeight=d),f&&(g.maxHeight=f),g}(j.current,!1,P,T);_(2),K(e)}else L()},[H]);var Y=h.useRef(),U=function(){$.A.cancel(Y.current)};h.useEffect(function(){return U},[]);var G=(0,i.A)((0,i.A)({},v),D?V:null);return(0===H||1===H)&&(G.overflowY="hidden",G.overflowX="hidden"),h.createElement(y.A,{onResize:function(e){2===H&&(null==p||p(e),f&&(U(),Y.current=(0,$.A)(function(){X()})))},disabled:!(f||p)},h.createElement("textarea",(0,o.A)({},E,{ref:j,style:G,className:d()(n,m,(0,a.A)({},"".concat(n,"-disabled"),S)),disabled:S,value:N,onChange:function(e){I(e.target.value),null==k||k(e)}})))}),k=["defaultValue","value","onFocus","onBlur","onChange","allowClear","maxLength","onCompositionStart","onCompositionEnd","suffix","prefixCls","showCount","count","className","style","disabled","hidden","classNames","styles","onResize","onClear","onPressEnter","readOnly","autoSize","onKeyDown"];let E=v().forwardRef(function(e,t){var n,r,u=e.defaultValue,b=e.value,y=e.onFocus,x=e.onBlur,$=e.onChange,A=e.allowClear,w=e.maxLength,C=e.onCompositionStart,E=e.onCompositionEnd,O=e.suffix,M=e.prefixCls,N=void 0===M?"rc-textarea":M,I=e.showCount,j=e.count,z=e.className,R=e.style,P=e.disabled,T=e.hidden,D=e.classNames,L=e.styles,B=e.onResize,F=e.onClear,H=e.onPressEnter,_=e.readOnly,W=e.autoSize,q=e.onKeyDown,V=(0,s.A)(e,k),K=(0,g.A)(u,{value:b,defaultValue:u}),X=(0,c.A)(K,2),Y=X[0],U=X[1],G=null==Y?"":String(Y),Q=v().useState(!1),Z=(0,c.A)(Q,2),J=Z[0],ee=Z[1],et=v().useRef(!1),en=v().useState(null),er=(0,c.A)(en,2),eo=er[0],ea=er[1],ei=(0,h.useRef)(null),el=(0,h.useRef)(null),ec=function(){var e;return null==(e=el.current)?void 0:e.textArea},es=function(){ec().focus()};(0,h.useImperativeHandle)(t,function(){var e;return{resizableTextArea:el.current,focus:es,blur:function(){ec().blur()},nativeElement:(null==(e=ei.current)?void 0:e.nativeElement)||ec()}}),(0,h.useEffect)(function(){ee(function(e){return!P&&e})},[P]);var eu=v().useState(null),ed=(0,c.A)(eu,2),ef=ed[0],ep=ed[1];v().useEffect(function(){if(ef){var e;(e=ec()).setSelectionRange.apply(e,(0,l.A)(ef))}},[ef]);var em=(0,p.A)(j,I),eg=null!=(n=em.max)?n:w,eh=Number(eg)>0,ev=em.strategy(G),eb=!!eg&&ev>eg,ey=function(e,t){var n=t;!et.current&&em.exceedFormatter&&em.max&&em.strategy(t)>em.max&&(n=em.exceedFormatter(t,{max:em.max}),t!==n&&ep([ec().selectionStart||0,ec().selectionEnd||0])),U(n),(0,m.gS)(e.currentTarget,e,$,n)},ex=O;em.show&&(r=em.showFormatter?em.showFormatter({value:G,count:ev,maxLength:eg}):"".concat(ev).concat(eh?" / ".concat(eg):""),ex=v().createElement(v().Fragment,null,ex,v().createElement("span",{className:d()("".concat(N,"-data-count"),null==D?void 0:D.count),style:null==L?void 0:L.count},r)));var e$=!W&&!I&&!A;return v().createElement(f.a,{ref:ei,value:G,allowClear:A,handleReset:function(e){U(""),es(),(0,m.gS)(ec(),e,$)},suffix:ex,prefixCls:N,classNames:(0,i.A)((0,i.A)({},D),{},{affixWrapper:d()(null==D?void 0:D.affixWrapper,(0,a.A)((0,a.A)({},"".concat(N,"-show-count"),I),"".concat(N,"-textarea-allow-clear"),A))}),disabled:P,focused:J,className:d()(z,eb&&"".concat(N,"-out-of-range")),style:(0,i.A)((0,i.A)({},R),eo&&!e$?{height:"auto"}:{}),dataAttrs:{affixWrapper:{"data-count":"string"==typeof r?r:void 0}},hidden:T,readOnly:_,onClear:F},v().createElement(S,(0,o.A)({},V,{autoSize:W,maxLength:w,onKeyDown:function(e){"Enter"===e.key&&H&&H(e),null==q||q(e)},onChange:function(e){ey(e,e.target.value)},onFocus:function(e){ee(!0),null==y||y(e)},onBlur:function(e){ee(!1),null==x||x(e)},onCompositionStart:function(e){et.current=!0,null==C||C(e)},onCompositionEnd:function(e){et.current=!1,ey(e,e.currentTarget.value),null==E||E(e)},className:d()(null==D?void 0:D.textarea),style:(0,i.A)((0,i.A)({},null==L?void 0:L.textarea),{},{resize:null==R?void 0:R.resize}),disabled:P,prefixCls:N,onResize:function(e){var t;null==B||B(e),null!=(t=ec())&&t.style.height&&ea(!0)},ref:el,readOnly:_})))})},47251(e,t,n){"use strict";n.d(t,{A:()=>h,z:()=>i});var r=n(8651),o=n.n(r),a=n(47867);function i(e){var t=e.children,n=e.prefixCls,r=e.id,i=e.overlayInnerStyle,l=e.className,c=e.style;return a.createElement("div",{className:o()("".concat(n,"-content"),l),style:c},a.createElement("div",{className:"".concat(n,"-inner"),id:r,role:"tooltip",style:i},"function"==typeof t?t():t))}var l=n(58168),c=n(89379),s=n(80045),u=n(82818),d={shiftX:64,adjustY:1},f={adjustX:1,shiftY:!0},p=[0,0],m={left:{points:["cr","cl"],overflow:f,offset:[-4,0],targetOffset:p},right:{points:["cl","cr"],overflow:f,offset:[4,0],targetOffset:p},top:{points:["bc","tc"],overflow:d,offset:[0,-4],targetOffset:p},bottom:{points:["tc","bc"],overflow:d,offset:[0,4],targetOffset:p},topLeft:{points:["bl","tl"],overflow:d,offset:[0,-4],targetOffset:p},leftTop:{points:["tr","tl"],overflow:f,offset:[-4,0],targetOffset:p},topRight:{points:["br","tr"],overflow:d,offset:[0,-4],targetOffset:p},rightTop:{points:["tl","tr"],overflow:f,offset:[4,0],targetOffset:p},bottomRight:{points:["tr","br"],overflow:d,offset:[0,4],targetOffset:p},rightBottom:{points:["bl","br"],overflow:f,offset:[4,0],targetOffset:p},bottomLeft:{points:["tl","bl"],overflow:d,offset:[0,4],targetOffset:p},leftBottom:{points:["br","bl"],overflow:f,offset:[-4,0],targetOffset:p}},g=["overlayClassName","trigger","mouseEnterDelay","mouseLeaveDelay","overlayStyle","prefixCls","children","onVisibleChange","afterVisibleChange","transitionName","animation","motion","placement","align","destroyTooltipOnHide","defaultVisible","getTooltipContainer","overlayInnerStyle","arrowContent","overlay","id","showArrow"];let h=(0,a.forwardRef)(function(e,t){var n=e.overlayClassName,r=e.trigger,o=e.mouseEnterDelay,d=e.mouseLeaveDelay,f=e.overlayStyle,p=e.prefixCls,h=void 0===p?"rc-tooltip":p,v=e.children,b=e.onVisibleChange,y=e.afterVisibleChange,x=e.transitionName,$=e.animation,A=e.motion,w=e.placement,C=e.align,S=e.destroyTooltipOnHide,k=e.defaultVisible,E=e.getTooltipContainer,O=e.overlayInnerStyle,M=(e.arrowContent,e.overlay),N=e.id,I=e.showArrow,j=(0,s.A)(e,g),z=(0,a.useRef)(null);(0,a.useImperativeHandle)(t,function(){return z.current});var R=(0,c.A)({},j);return"visible"in e&&(R.popupVisible=e.visible),a.createElement(u.A,(0,l.A)({popupClassName:n,prefixCls:h,popup:function(){return a.createElement(i,{key:"content",prefixCls:h,id:N,overlayInnerStyle:O},M)},action:void 0===r?["hover"]:r,builtinPlacements:m,popupPlacement:void 0===w?"right":w,ref:z,popupAlign:void 0===C?{}:C,getPopupContainer:E,onPopupVisibleChange:b,afterPopupVisibleChange:y,popupTransitionName:x,popupAnimation:$,popupMotion:A,defaultPopupVisible:k,autoDestroy:void 0!==S&&S,mouseLeaveDelay:void 0===d?.1:d,popupStyle:f,mouseEnterDelay:void 0===o?0:o,arrow:void 0===I||I},R),v)})},82546(e,t,n){"use strict";n.d(t,{A:()=>function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=[];return a().Children.forEach(t,function(t){(null!=t||n.keepEmpty)&&(Array.isArray(t)?o=o.concat(e(t)):(0,r.A)(t)&&t.props?o=o.concat(e(t.props.children,n)):o.push(t))}),o}});var r=n(76288),o=n(47867),a=n.n(o)},20998(e,t,n){"use strict";function r(){return!!("u">typeof window&&window.document&&window.document.createElement)}n.d(t,{A:()=>r})},54808(e,t,n){"use strict";function r(e,t){if(!e)return!1;if(e.contains)return e.contains(t);for(var n=t;n;){if(n===e)return!0;n=n.parentNode}return!1}n.d(t,{A:()=>r})},85089(e,t,n){"use strict";n.d(t,{BD:()=>g,m6:()=>m});var r=n(89379),o=n(20998),a=n(54808),i="data-rc-order",l="data-rc-priority",c=new Map;function s(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.mark;return t?t.startsWith("data-")?t:"data-".concat(t):"rc-util-key"}function u(e){return e.attachTo?e.attachTo:document.querySelector("head")||document.body}function d(e){return Array.from((c.get(e)||e).children).filter(function(e){return"STYLE"===e.tagName})}function f(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!(0,o.A)())return null;var n=t.csp,r=t.prepend,a=t.priority,c=void 0===a?0:a,s="queue"===r?"prependQueue":r?"prepend":"append",f="prependQueue"===s,p=document.createElement("style");p.setAttribute(i,s),f&&c&&p.setAttribute(l,"".concat(c)),null!=n&&n.nonce&&(p.nonce=null==n?void 0:n.nonce),p.innerHTML=e;var m=u(t),g=m.firstChild;if(r){if(f){var h=(t.styles||d(m)).filter(function(e){return!!["prepend","prependQueue"].includes(e.getAttribute(i))&&c>=Number(e.getAttribute(l)||0)});if(h.length)return m.insertBefore(p,h[h.length-1].nextSibling),p}m.insertBefore(p,g)}else m.appendChild(p);return p}function p(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=u(t);return(t.styles||d(n)).find(function(n){return n.getAttribute(s(t))===e})}function m(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=p(e,t);n&&u(t).removeChild(n)}function g(e,t){var n,o,i,l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},m=u(l),g=d(m),h=(0,r.A)((0,r.A)({},l),{},{styles:g}),v=c.get(m);if(!v||!(0,a.A)(document,v)){var b=f("",h),y=b.parentNode;c.set(m,y),m.removeChild(b)}var x=p(t,h);if(x)return null!=(n=h.csp)&&n.nonce&&x.nonce!==(null==(o=h.csp)?void 0:o.nonce)&&(x.nonce=null==(i=h.csp)?void 0:i.nonce),x.innerHTML!==e&&(x.innerHTML=e),x;var $=f(e,h);return $.setAttribute(s(h),t),$}},66588(e,t,n){"use strict";n.d(t,{Ay:()=>u,fk:()=>c,rb:()=>s});var r=n(82284),o=n(47867),a=n.n(o),i=n(25765),l=n.n(i);function c(e){return e instanceof HTMLElement||e instanceof SVGElement}function s(e){return e&&"object"===(0,r.A)(e)&&c(e.nativeElement)?e.nativeElement:c(e)?e:null}function u(e){var t,n=s(e);return n||(e instanceof a().Component?null==(t=l().findDOMNode)?void 0:t.call(l(),e):null)}},42467(e,t,n){"use strict";n.d(t,{A:()=>r});let r=function(e){if(!e)return!1;if(e instanceof Element){if(e.offsetParent)return!0;if(e.getBBox){var t=e.getBBox(),n=t.width,r=t.height;if(n||r)return!0}if(e.getBoundingClientRect){var o=e.getBoundingClientRect(),a=o.width,i=o.height;if(a||i)return!0}}return!1}},72633(e,t,n){"use strict";function r(e){var t;return null==e||null==(t=e.getRootNode)?void 0:t.call(e)}function o(e){return r(e)instanceof ShadowRoot?r(e):null}n.d(t,{j:()=>o})},99777(e,t,n){"use strict";n.d(t,{F:()=>i});var r=n(20998),o=function(e){if((0,r.A)()&&window.document.documentElement){var t=Array.isArray(e)?e:[e],n=window.document.documentElement;return t.some(function(e){return e in n.style})}return!1},a=function(e,t){if(!o(e))return!1;var n=document.createElement("div"),r=n.style[e];return n.style[e]=t,n.style[e]!==r};function i(e,t){return Array.isArray(e)||void 0===t?o(e):a(e,t)}},16928(e,t,n){"use strict";n.d(t,{A:()=>o});var r={MAC_ENTER:3,BACKSPACE:8,TAB:9,NUM_CENTER:12,ENTER:13,SHIFT:16,CTRL:17,ALT:18,PAUSE:19,CAPS_LOCK:20,ESC:27,SPACE:32,PAGE_UP:33,PAGE_DOWN:34,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40,PRINT_SCREEN:44,INSERT:45,DELETE:46,ZERO:48,ONE:49,TWO:50,THREE:51,FOUR:52,FIVE:53,SIX:54,SEVEN:55,EIGHT:56,NINE:57,QUESTION_MARK:63,A:65,B:66,C:67,D:68,E:69,F:70,G:71,H:72,I:73,J:74,K:75,L:76,M:77,N:78,O:79,P:80,Q:81,R:82,S:83,T:84,U:85,V:86,W:87,X:88,Y:89,Z:90,META:91,WIN_KEY_RIGHT:92,CONTEXT_MENU:93,NUM_ZERO:96,NUM_ONE:97,NUM_TWO:98,NUM_THREE:99,NUM_FOUR:100,NUM_FIVE:101,NUM_SIX:102,NUM_SEVEN:103,NUM_EIGHT:104,NUM_NINE:105,NUM_MULTIPLY:106,NUM_PLUS:107,NUM_MINUS:109,NUM_PERIOD:110,NUM_DIVISION:111,F1:112,F2:113,F3:114,F4:115,F5:116,F6:117,F7:118,F8:119,F9:120,F10:121,F11:122,F12:123,NUMLOCK:144,SEMICOLON:186,DASH:189,EQUALS:187,COMMA:188,PERIOD:190,SLASH:191,APOSTROPHE:192,SINGLE_QUOTE:222,OPEN_SQUARE_BRACKET:219,BACKSLASH:220,CLOSE_SQUARE_BRACKET:221,WIN_KEY:224,MAC_FF_META:224,WIN_IME:229,isTextModifyingKeyEvent:function(e){var t=e.keyCode;if(e.altKey&&!e.ctrlKey||e.metaKey||t>=r.F1&&t<=r.F12)return!1;switch(t){case r.ALT:case r.CAPS_LOCK:case r.CONTEXT_MENU:case r.CTRL:case r.DOWN:case r.END:case r.ESC:case r.HOME:case r.INSERT:case r.LEFT:case r.MAC_FF_META:case r.META:case r.NUMLOCK:case r.NUM_CENTER:case r.PAGE_DOWN:case r.PAGE_UP:case r.PAUSE:case r.PRINT_SCREEN:case r.RIGHT:case r.SHIFT:case r.UP:case r.WIN_KEY:case r.WIN_KEY_RIGHT:return!1;default:return!0}},isCharacterKey:function(e){if(e>=r.ZERO&&e<=r.NINE||e>=r.NUM_ZERO&&e<=r.NUM_MULTIPLY||e>=r.A&&e<=r.Z||-1!==window.navigator.userAgent.indexOf("WebKit")&&0===e)return!0;switch(e){case r.SPACE:case r.QUESTION_MARK:case r.NUM_PLUS:case r.NUM_MINUS:case r.NUM_PERIOD:case r.NUM_DIVISION:case r.SEMICOLON:case r.DASH:case r.EQUALS:case r.COMMA:case r.PERIOD:case r.SLASH:case r.APOSTROPHE:case r.SINGLE_QUOTE:case r.OPEN_SQUARE_BRACKET:case r.BACKSLASH:case r.CLOSE_SQUARE_BRACKET:return!0;default:return!1}}};let o=r},76288(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(82284),o=Symbol.for("react.element"),a=Symbol.for("react.transitional.element"),i=Symbol.for("react.fragment");function l(e){return e&&"object"===(0,r.A)(e)&&(e.$$typeof===o||e.$$typeof===a)&&e.type===i}},82987(e,t,n){"use strict";n.d(t,{A:()=>i,V:()=>l});var r,o=n(85089);function a(e){var t,n,r="rc-scrollbar-measure-".concat(Math.random().toString(36).substring(7)),a=document.createElement("div");a.id=r;var i=a.style;if(i.position="absolute",i.left="0",i.top="0",i.width="100px",i.height="100px",i.overflow="scroll",e){var l=getComputedStyle(e);i.scrollbarColor=l.scrollbarColor,i.scrollbarWidth=l.scrollbarWidth;var c=getComputedStyle(e,"::-webkit-scrollbar"),s=parseInt(c.width,10),u=parseInt(c.height,10);try{var d=s?"width: ".concat(c.width,";"):"",f=u?"height: ".concat(c.height,";"):"";(0,o.BD)("\n#".concat(r,"::-webkit-scrollbar {\n").concat(d,"\n").concat(f,"\n}"),r)}catch(e){console.error(e),t=s,n=u}}document.body.appendChild(a);var p=e&&t&&!isNaN(t)?t:a.offsetWidth-a.clientWidth,m=e&&n&&!isNaN(n)?n:a.offsetHeight-a.clientHeight;return document.body.removeChild(a),(0,o.m6)(r),{width:p,height:m}}function i(e){return"u"o});var r=n(47867);function o(e){var t=r.useRef();return t.current=e,r.useCallback(function(){for(var e,n=arguments.length,r=Array(n),o=0;oc});var r=n(57046),o=n(89379),a=n(47867),i=0,l=(0,o.A)({},a).useId;let c=l?function(e){var t=l();return e||t}:function(e){var t=a.useState("ssr-id"),n=(0,r.A)(t,2),o=n[0],l=n[1];return(a.useEffect(function(){var e=i;i+=1,l("rc_unique_".concat(e))},[]),e)?e:o}},30981(e,t,n){"use strict";n.d(t,{A:()=>l,o:()=>i});var r=n(47867),o=(0,n(20998).A)()?r.useLayoutEffect:r.useEffect,a=function(e,t){var n=r.useRef(!0);o(function(){return e(n.current)},t),o(function(){return n.current=!1,function(){n.current=!0}},[])},i=function(e,t){a(function(t){if(!t)return e()},t)};let l=a},28104(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(47867);function o(e,t,n){var o=r.useRef({});return(!("value"in o.current)||n(o.current.condition,t))&&(o.current.value=e(),o.current.condition=t),o.current.value}},12533(e,t,n){"use strict";n.d(t,{A:()=>c});var r=n(57046),o=n(26956),a=n(30981),i=n(1233);function l(e){return void 0!==e}function c(e,t){var n=t||{},c=n.defaultValue,s=n.value,u=n.onChange,d=n.postState,f=(0,i.A)(function(){return l(s)?s:l(c)?"function"==typeof c?c():c:"function"==typeof e?e():e}),p=(0,r.A)(f,2),m=p[0],g=p[1],h=void 0!==s?s:m,v=d?d(h):h,b=(0,o.A)(u),y=(0,i.A)([h]),x=(0,r.A)(y,2),$=x[0],A=x[1];return(0,a.o)(function(){var e=$[0];m!==e&&b(m,e)},[$]),(0,a.o)(function(){l(s)||g(s)},[s]),[v,(0,o.A)(function(e,t){g(e,t),A([h],t)})]}},1233(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(57046),o=n(47867);function a(e){var t=o.useRef(!1),n=o.useState(e),a=(0,r.A)(n,2),i=a[0],l=a[1];return o.useEffect(function(){return t.current=!1,function(){t.current=!0}},[]),[i,function(e,n){n&&t.current||l(e)}]}},81470(e,t,n){"use strict";n.d(t,{Jt:()=>a.A,_q:()=>r.A,hZ:()=>i.A,vz:()=>o.A});var r=n(26956),o=n(12533);n(8719);var a=n(16300),i=n(20488);n(68210)},43210(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(82284),o=n(68210);let a=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],a=new Set;return function e(t,i){var l=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,c=a.has(t);if((0,o.Ay)(!c,"Warning: There may be circular references"),c)return!1;if(t===i)return!0;if(n&&l>1)return!1;a.add(t);var s=l+1;if(Array.isArray(t)){if(!Array.isArray(i)||t.length!==i.length)return!1;for(var u=0;ur});let r=function(){if("u"r})},72065(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(89379),o="".concat("accept acceptCharset accessKey action allowFullScreen allowTransparency\n alt async autoComplete autoFocus autoPlay capture cellPadding cellSpacing challenge\n charSet checked classID className colSpan cols content contentEditable contextMenu\n controls coords crossOrigin data dateTime default defer dir disabled download draggable\n encType form formAction formEncType formMethod formNoValidate formTarget frameBorder\n headers height hidden high href hrefLang htmlFor httpEquiv icon id inputMode integrity\n is keyParams keyType kind label lang list loop low manifest marginHeight marginWidth max maxLength media\n mediaGroup method min minLength multiple muted name noValidate nonce open\n optimum pattern placeholder poster preload radioGroup readOnly rel required\n reversed role rowSpan rows sandbox scope scoped scrolling seamless selected\n shape size sizes span spellCheck src srcDoc srcLang srcSet start step style\n summary tabIndex target title type useMap value width wmode wrap"," ").concat("onCopy onCut onPaste onCompositionEnd onCompositionStart onCompositionUpdate onKeyDown\n onKeyPress onKeyUp onFocus onBlur onChange onInput onSubmit onClick onContextMenu onDoubleClick\n onDrag onDragEnd onDragEnter onDragExit onDragLeave onDragOver onDragStart onDrop onMouseDown\n onMouseEnter onMouseLeave onMouseMove onMouseOut onMouseOver onMouseUp onSelect onTouchCancel\n onTouchEnd onTouchMove onTouchStart onScroll onWheel onAbort onCanPlay onCanPlayThrough\n onDurationChange onEmptied onEncrypted onEnded onError onLoadedData onLoadedMetadata\n onLoadStart onPause onPlay onPlaying onProgress onRateChange onSeeked onSeeking onStalled onSuspend onTimeUpdate onVolumeChange onWaiting onLoad onError").split(/[\s\n]+/);function a(e,t){return 0===e.indexOf(t)}function i(e){var t,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];t=!1===n?{aria:!0,data:!0,attr:!0}:!0===n?{aria:!0}:(0,r.A)({},n);var i={};return Object.keys(e).forEach(function(n){(t.aria&&("role"===n||a(n,"aria-"))||t.data&&a(n,"data-")||t.attr&&o.includes(n))&&(i[n]=e[n])}),i}},25371(e,t,n){"use strict";n.d(t,{A:()=>c});var r=function(e){return+setTimeout(e,16)},o=function(e){return clearTimeout(e)};"u">typeof window&&"requestAnimationFrame"in window&&(r=function(e){return window.requestAnimationFrame(e)},o=function(e){return window.cancelAnimationFrame(e)});var a=0,i=new Map,l=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1,n=a+=1;return!function t(o){if(0===o)i.delete(n),e();else{var a=r(function(){t(o-1)});i.set(n,a)}}(t),n};l.cancel=function(e){var t=i.get(e);return i.delete(e),o(t)};let c=l},8719(e,t,n){"use strict";n.d(t,{A9:()=>g,H3:()=>m,K4:()=>u,Xf:()=>s,f3:()=>f,xK:()=>d});var r=n(82284),o=n(47867),a=n(66351),i=n(28104),l=n(76288),c=Number(o.version.split(".")[0]),s=function(e,t){"function"==typeof e?e(t):"object"===(0,r.A)(e)&&e&&"current"in e&&(e.current=t)},u=function(){for(var e=arguments.length,t=Array(e),n=0;n=19)return!0;var t,n,r=(0,a.isMemo)(e)?e.type.type:e.type;return("function"!=typeof r||!!(null!=(t=r.prototype)&&t.render)||r.$$typeof===a.ForwardRef)&&("function"!=typeof e||!!(null!=(n=e.prototype)&&n.render)||e.$$typeof===a.ForwardRef)};function p(e){return(0,o.isValidElement)(e)&&!(0,l.A)(e)}var m=function(e){return p(e)&&f(e)},g=function(e){return e&&p(e)?e.props.propertyIsEnumerable("ref")?e.props.ref:e.ref:null}},16300(e,t,n){"use strict";function r(e,t){for(var n=e,r=0;rr})},20488(e,t,n){"use strict";n.d(t,{A:()=>c,h:()=>d});var r=n(82284),o=n(89379),a=n(83098),i=n(87695),l=n(16300);function c(e,t,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];return t.length&&r&&void 0===n&&!(0,l.A)(e,t.slice(0,-1))?e:function e(t,n,r,l){if(!n.length)return r;var c,s=(0,i.A)(n),u=s[0],d=s.slice(1);return c=t||"number"!=typeof u?Array.isArray(t)?(0,a.A)(t):(0,o.A)({},t):[],l&&void 0===r&&1===d.length?delete c[u][d[0]]:c[u]=e(c[u],d,r,l),c}(e,t,n,r)}function s(e){return Array.isArray(e)?[]:{}}var u="u"a,Ay:()=>s});var r={},o=[];function a(e,t){}function i(e,t){}function l(e,t,n){t||r[n]||(e(!1,n),r[n]=!0)}function c(e,t){l(a,e,t)}c.preMessage=function(e){o.push(e)},c.resetWarned=function(){r={}},c.noteOnce=function(e,t){l(i,e,t)};let s=c},57787(e,t){"use strict";var n=Symbol.for("react.element"),r=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),c=Symbol.for("react.context"),s=Symbol.for("react.server_context"),u=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),f=Symbol.for("react.suspense_list"),p=Symbol.for("react.memo"),m=Symbol.for("react.lazy");Symbol.for("react.offscreen");Symbol.for("react.module.reference"),t.ForwardRef=u,t.isMemo=function(e){return function(e){if("object"==typeof e&&null!==e){var t=e.$$typeof;switch(t){case n:switch(e=e.type){case o:case i:case a:case d:case f:return e;default:switch(e=e&&e.$$typeof){case s:case c:case u:case m:case p:case l:return e;default:return t}}case r:return t}}}(e)===p}},66351(e,t,n){"use strict";e.exports=n(57787)},22551(e,t,n){"use strict";var r,o,a,i,l,c,s=n(47867),u=n(69982);function d(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;ntypeof window&&void 0!==window.document&&void 0!==window.document.createElement,v=Object.prototype.hasOwnProperty,b=/^[:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD][:A-Z_a-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD\-.0-9\u00B7\u0300-\u036F\u203F-\u2040]*$/,y={},x={};function $(e,t,n,r,o,a,i){this.acceptsBooleans=2===t||3===t||4===t,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=a,this.removeEmptyString=i}var A={};"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style".split(" ").forEach(function(e){A[e]=new $(e,0,!1,e,null,!1,!1)}),[["acceptCharset","accept-charset"],["className","class"],["htmlFor","for"],["httpEquiv","http-equiv"]].forEach(function(e){var t=e[0];A[t]=new $(t,1,!1,e[1],null,!1,!1)}),["contentEditable","draggable","spellCheck","value"].forEach(function(e){A[e]=new $(e,2,!1,e.toLowerCase(),null,!1,!1)}),["autoReverse","externalResourcesRequired","focusable","preserveAlpha"].forEach(function(e){A[e]=new $(e,2,!1,e,null,!1,!1)}),"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope".split(" ").forEach(function(e){A[e]=new $(e,3,!1,e.toLowerCase(),null,!1,!1)}),["checked","multiple","muted","selected"].forEach(function(e){A[e]=new $(e,3,!0,e,null,!1,!1)}),["capture","download"].forEach(function(e){A[e]=new $(e,4,!1,e,null,!1,!1)}),["cols","rows","size","span"].forEach(function(e){A[e]=new $(e,6,!1,e,null,!1,!1)}),["rowSpan","start"].forEach(function(e){A[e]=new $(e,5,!1,e.toLowerCase(),null,!1,!1)});var w=/[\-:]([a-z])/g;function C(e){return e[1].toUpperCase()}function S(e,t,n,r){var o,a=A.hasOwnProperty(t)?A[t]:null;(null!==a?0!==a.type:r||!(2t}return!1}(t,n,a,r)&&(n=null),r||null===a?(o=t,(v.call(x,o)||!v.call(y,o)&&(b.test(o)?x[o]=!0:(y[o]=!0,!1)))&&(null===n?e.removeAttribute(t):e.setAttribute(t,""+n))):a.mustUseProperty?e[a.propertyName]=null===n?3!==a.type&&"":n:(t=a.attributeName,r=a.attributeNamespace,null===n?e.removeAttribute(t):(n=3===(a=a.type)||4===a&&!0===n?"":""+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height".split(" ").forEach(function(e){var t=e.replace(w,C);A[t]=new $(t,1,!1,e,null,!1,!1)}),"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type".split(" ").forEach(function(e){var t=e.replace(w,C);A[t]=new $(t,1,!1,e,"http://www.w3.org/1999/xlink",!1,!1)}),["xml:base","xml:lang","xml:space"].forEach(function(e){var t=e.replace(w,C);A[t]=new $(t,1,!1,e,"http://www.w3.org/XML/1998/namespace",!1,!1)}),["tabIndex","crossOrigin"].forEach(function(e){A[e]=new $(e,1,!1,e.toLowerCase(),null,!1,!1)}),A.xlinkHref=new $("xlinkHref",1,!1,"xlink:href","http://www.w3.org/1999/xlink",!0,!1),["src","href","action","formAction"].forEach(function(e){A[e]=new $(e,1,!1,e.toLowerCase(),null,!0,!0)});var k=s.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,E=Symbol.for("react.element"),O=Symbol.for("react.portal"),M=Symbol.for("react.fragment"),N=Symbol.for("react.strict_mode"),I=Symbol.for("react.profiler"),j=Symbol.for("react.provider"),z=Symbol.for("react.context"),R=Symbol.for("react.forward_ref"),P=Symbol.for("react.suspense"),T=Symbol.for("react.suspense_list"),D=Symbol.for("react.memo"),L=Symbol.for("react.lazy");Symbol.for("react.scope"),Symbol.for("react.debug_trace_mode");var B=Symbol.for("react.offscreen");Symbol.for("react.legacy_hidden"),Symbol.for("react.cache"),Symbol.for("react.tracing_marker");var F=Symbol.iterator;function H(e){return null===e||"object"!=typeof e?null:"function"==typeof(e=F&&e[F]||e["@@iterator"])?e:null}var _,W=Object.assign;function q(e){if(void 0===_)try{throw Error()}catch(e){var t=e.stack.trim().match(/\n( *(at )?)/);_=t&&t[1]||""}return"\n"+_+e}var V=!1;function K(e,t){if(!e||V)return"";V=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,"props",{set:function(){throw Error()}}),"object"==typeof Reflect&&Reflect.construct){try{Reflect.construct(t,[])}catch(e){var r=e}Reflect.construct(e,[],t)}else{try{t.call()}catch(e){r=e}e.call(t.prototype)}else{try{throw Error()}catch(e){r=e}e()}}catch(t){if(t&&r&&"string"==typeof t.stack){for(var o=t.stack.split("\n"),a=r.stack.split("\n"),i=o.length-1,l=a.length-1;1<=i&&0<=l&&o[i]!==a[l];)l--;for(;1<=i&&0<=l;i--,l--)if(o[i]!==a[l]){if(1!==i||1!==l)do if(i--,0>--l||o[i]!==a[l]){var c="\n"+o[i].replace(" at new "," at ");return e.displayName&&c.includes("")&&(c=c.replace("",e.displayName)),c}while(1<=i&&0<=l);break}}}finally{V=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:"")?q(e):""}function X(e){switch(typeof e){case"boolean":case"number":case"string":case"undefined":case"object":return e;default:return""}}function Y(e){var t=e.type;return(e=e.nodeName)&&"input"===e.toLowerCase()&&("checkbox"===t||"radio"===t)}function U(e){e._valueTracker||(e._valueTracker=function(e){var t=Y(e)?"checked":"value",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=""+e[t];if(!e.hasOwnProperty(t)&&void 0!==n&&"function"==typeof n.get&&"function"==typeof n.set){var o=n.get,a=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(e){r=""+e,a.call(this,e)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(e){r=""+e},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}(e))}function G(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r="";return e&&(r=Y(e)?e.checked?"true":"false":e.value),(e=r)!==n&&(t.setValue(e),!0)}function Q(e){if(void 0===(e=e||("u">typeof document?document:void 0)))return null;try{return e.activeElement||e.body}catch(t){return e.body}}function Z(e,t){var n=t.checked;return W({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:null!=n?n:e._wrapperState.initialChecked})}function J(e,t){var n=null==t.defaultValue?"":t.defaultValue;e._wrapperState={initialChecked:null!=t.checked?t.checked:t.defaultChecked,initialValue:n=X(null!=t.value?t.value:n),controlled:"checkbox"===t.type||"radio"===t.type?null!=t.checked:null!=t.value}}function ee(e,t){null!=(t=t.checked)&&S(e,"checked",t,!1)}function et(e,t){ee(e,t);var n=X(t.value),r=t.type;if(null!=n)"number"===r?(0===n&&""===e.value||e.value!=n)&&(e.value=""+n):e.value!==""+n&&(e.value=""+n);else if("submit"===r||"reset"===r)return void e.removeAttribute("value");t.hasOwnProperty("value")?er(e,t.type,n):t.hasOwnProperty("defaultValue")&&er(e,t.type,X(t.defaultValue)),null==t.checked&&null!=t.defaultChecked&&(e.defaultChecked=!!t.defaultChecked)}function en(e,t,n){if(t.hasOwnProperty("value")||t.hasOwnProperty("defaultValue")){var r=t.type;if(("submit"===r||"reset"===r)&&(void 0===t.value||null===t.value))return;t=""+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}""!==(n=e.name)&&(e.name=""),e.defaultChecked=!!e._wrapperState.initialChecked,""!==n&&(e.name=n)}function er(e,t,n){("number"!==t||Q(e.ownerDocument)!==e)&&(null==n?e.defaultValue=""+e._wrapperState.initialValue:e.defaultValue!==""+n&&(e.defaultValue=""+n))}var eo=Array.isArray;function ea(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o"+t.valueOf().toString()+"",t=ep.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}},"u">typeof MSApp&&MSApp.execUnsafeLocalFunction?function(e,t,n,r){MSApp.execUnsafeLocalFunction(function(){return ef(e,t,n,r)})}:ef);function eg(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&3===n.nodeType){n.nodeValue=t;return}}e.textContent=t}var eh={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},ev=["Webkit","ms","Moz","O"];function eb(e,t,n){return null==t||"boolean"==typeof t||""===t?"":n||"number"!=typeof t||0===t||eh.hasOwnProperty(e)&&eh[e]?(""+t).trim():t+"px"}function ey(e,t){for(var n in e=e.style,t)if(t.hasOwnProperty(n)){var r=0===n.indexOf("--"),o=eb(n,t[n],r);"float"===n&&(n="cssFloat"),r?e.setProperty(n,o):e[n]=o}}Object.keys(eh).forEach(function(e){ev.forEach(function(t){eh[t=t+e.charAt(0).toUpperCase()+e.substring(1)]=eh[e]})});var ex=W({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function e$(e,t){if(t){if(ex[e]&&(null!=t.children||null!=t.dangerouslySetInnerHTML))throw Error(d(137,e));if(null!=t.dangerouslySetInnerHTML){if(null!=t.children)throw Error(d(60));if("object"!=typeof t.dangerouslySetInnerHTML||!("__html"in t.dangerouslySetInnerHTML))throw Error(d(61))}if(null!=t.style&&"object"!=typeof t.style)throw Error(d(62))}}function eA(e,t){if(-1===e.indexOf("-"))return"string"==typeof t.is;switch(e){case"annotation-xml":case"color-profile":case"font-face":case"font-face-src":case"font-face-uri":case"font-face-format":case"font-face-name":case"missing-glyph":return!1;default:return!0}}var ew=null;function eC(e){return(e=e.target||e.srcElement||window).correspondingUseElement&&(e=e.correspondingUseElement),3===e.nodeType?e.parentNode:e}var eS=null,ek=null,eE=null;function eO(e){if(e=rT(e)){if("function"!=typeof eS)throw Error(d(280));var t=e.stateNode;t&&(t=rL(t),eS(e.stateNode,e.type,t))}}function eM(e){ek?eE?eE.push(e):eE=[e]:ek=e}function eN(){if(ek){var e=ek,t=eE;if(eE=ek=null,eO(e),t)for(e=0;e>>=0)?32:31-(e9(e)/te|0)|0},e9=Math.log,te=Math.LN2,tt=64,tn=4194304;function tr(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return 4194240&e;case 4194304:case 8388608:case 0x1000000:case 0x2000000:case 0x4000000:return 0x7c00000&e;case 0x8000000:return 0x8000000;case 0x10000000:return 0x10000000;case 0x20000000:return 0x20000000;case 0x40000000:return 0x40000000;default:return e}}function to(e,t){var n=e.pendingLanes;if(0===n)return 0;var r=0,o=e.suspendedLanes,a=e.pingedLanes,i=0xfffffff&n;if(0!==i){var l=i&~o;0!==l?r=tr(l):0!=(a&=i)&&(r=tr(a))}else 0!=(i=n&~o)?r=tr(i):0!==a&&(r=tr(a));if(0===r)return 0;if(0!==t&&t!==r&&0==(t&o)&&((o=r&-r)>=(a=t&-t)||16===o&&0!=(4194240&a)))return t;if(0!=(4&r)&&(r|=16&n),0!==(t=e.entangledLanes))for(e=e.entanglements,t&=r;0n;n++)t.push(e);return t}function tc(e,t,n){e.pendingLanes|=t,0x20000000!==t&&(e.suspendedLanes=0,e.pingedLanes=0),(e=e.eventTimes)[t=31-e7(t)]=n}function ts(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-e7(n),o=1<=nf),ng=!1;function nh(e,t){switch(e){case"keyup":return -1!==nu.indexOf(t.keyCode);case"keydown":return 229!==t.keyCode;case"keypress":case"mousedown":case"focusout":return!0;default:return!1}}function nv(e){return"object"==typeof(e=e.detail)&&"data"in e?e.data:null}var nb=!1,ny={color:!0,date:!0,datetime:!0,"datetime-local":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function nx(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return"input"===t?!!ny[e.type]:"textarea"===t}function n$(e,t,n,r){eM(r),0<(t=rs(t,"onChange")).length&&(n=new t0("onChange","change",null,n,r),e.push({event:n,listeners:t}))}var nA=null,nw=null;function nC(e){rt(e,0)}function nS(e){if(G(rD(e)))return e}function nk(e,t){if("change"===e)return t}var nE=!1;if(h){if(h){var nO="oninput"in document;if(!nO){var nM=document.createElement("div");nM.setAttribute("oninput","return;"),nO="function"==typeof nM.oninput}r=nO}else r=!1;nE=r&&(!document.documentMode||9=t)return{node:r,offset:t-e};e=n}e:{for(;r;){if(r.nextSibling){r=r.nextSibling;break e}r=r.parentNode}r=void 0}r=nL(r)}}function nF(){for(var e=window,t=Q();t instanceof e.HTMLIFrameElement;){try{var n="string"==typeof t.contentWindow.location.href}catch(e){n=!1}if(n)e=t.contentWindow;else break;t=Q(e.document)}return t}function nH(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&("input"===t&&("text"===e.type||"search"===e.type||"tel"===e.type||"url"===e.type||"password"===e.type)||"textarea"===t||"true"===e.contentEditable)}var n_=h&&"documentMode"in document&&11>=document.documentMode,nW=null,nq=null,nV=null,nK=!1;function nX(e,t,n){var r=n.window===n?n.document:9===n.nodeType?n:n.ownerDocument;nK||null==nW||nW!==Q(r)||(r="selectionStart"in(r=nW)&&nH(r)?{start:r.selectionStart,end:r.selectionEnd}:{anchorNode:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection()).anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset},nV&&nD(nV,r)||(nV=r,0<(r=rs(nq,"onSelect")).length&&(t=new t0("onSelect","select",null,t,n),e.push({event:t,listeners:r}),t.target=nW)))}function nY(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n["Webkit"+e]="webkit"+t,n["Moz"+e]="moz"+t,n}var nU={animationend:nY("Animation","AnimationEnd"),animationiteration:nY("Animation","AnimationIteration"),animationstart:nY("Animation","AnimationStart"),transitionend:nY("Transition","TransitionEnd")},nG={},nQ={};function nZ(e){if(nG[e])return nG[e];if(!nU[e])return e;var t,n=nU[e];for(t in n)if(n.hasOwnProperty(t)&&t in nQ)return nG[e]=n[t];return e}h&&(nQ=document.createElement("div").style,"AnimationEvent"in window||(delete nU.animationend.animation,delete nU.animationiteration.animation,delete nU.animationstart.animation),"TransitionEvent"in window||delete nU.transitionend.transition);var nJ=nZ("animationend"),n0=nZ("animationiteration"),n1=nZ("animationstart"),n2=nZ("transitionend"),n4=new Map,n3="abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel".split(" ");function n6(e,t){n4.set(e,t),m(t,[e])}for(var n8=0;n8rF||(e.current=rB[rF],rB[rF]=null,rF--)}function rW(e,t){rB[++rF]=e.current,e.current=t}var rq={},rV=rH(rq),rK=rH(!1),rX=rq;function rY(e,t){var n=e.type.contextTypes;if(!n)return rq;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o,a={};for(o in n)a[o]=t[o];return r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=a),a}function rU(e){return null!=(e=e.childContextTypes)}function rG(){r_(rK),r_(rV)}function rQ(e,t,n){if(rV.current!==rq)throw Error(d(168));rW(rV,t),rW(rK,n)}function rZ(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,"function"!=typeof r.getChildContext)return n;for(var o in r=r.getChildContext())if(!(o in t))throw Error(d(108,function(e){var t=e.type;switch(e.tag){case 24:return"Cache";case 9:return(t.displayName||"Context")+".Consumer";case 10:return(t._context.displayName||"Context")+".Provider";case 18:return"DehydratedFragment";case 11:return e=(e=t.render).displayName||e.name||"",t.displayName||(""!==e?"ForwardRef("+e+")":"ForwardRef");case 7:return"Fragment";case 5:return t;case 4:return"Portal";case 3:return"Root";case 6:return"Text";case 16:return function e(t){if(null==t)return null;if("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t;switch(t){case M:return"Fragment";case O:return"Portal";case I:return"Profiler";case N:return"StrictMode";case P:return"Suspense";case T:return"SuspenseList"}if("object"==typeof t)switch(t.$$typeof){case z:return(t.displayName||"Context")+".Consumer";case j:return(t._context.displayName||"Context")+".Provider";case R:var n=t.render;return(t=t.displayName)||(t=""!==(t=n.displayName||n.name||"")?"ForwardRef("+t+")":"ForwardRef"),t;case D:return null!==(n=t.displayName||null)?n:e(t.type)||"Memo";case L:n=t._payload,t=t._init;try{return e(t(n))}catch(e){}}return null}(t);case 8:return t===N?"StrictMode":"Mode";case 22:return"Offscreen";case 12:return"Profiler";case 21:return"Scope";case 13:return"Suspense";case 19:return"SuspenseList";case 25:return"TracingMarker";case 1:case 0:case 17:case 2:case 14:case 15:if("function"==typeof t)return t.displayName||t.name||null;if("string"==typeof t)return t}return null}(e)||"Unknown",o));return W({},n,r)}function rJ(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||rq,rX=rV.current,rW(rV,e),rW(rK,rK.current),!0}function r0(e,t,n){var r=e.stateNode;if(!r)throw Error(d(169));n?(r.__reactInternalMemoizedMergedChildContext=e=rZ(e,t,rX),r_(rK),r_(rV),rW(rV,e)):r_(rK),rW(rK,n)}var r1=null,r2=!1,r4=!1;function r3(e){null===r1?r1=[e]:r1.push(e)}function r6(){if(!r4&&null!==r1){r4=!0;var e=0,t=tu;try{var n=r1;for(tu=1;e>=i,o-=i,or=1<<32-e7(t)+o|n<g?(h=d,d=null):h=d.sibling;var v=p(o,d,l[g],c);if(null===v){null===d&&(d=h);break}e&&d&&null===v.alternate&&t(o,d),i=a(v,i,g),null===u?s=v:u.sibling=v,u=v,d=h}if(g===l.length)return n(o,d),od&&oa(o,g),s;if(null===d){for(;gh?(v=g,g=null):v=g.sibling;var y=p(o,g,b.value,c);if(null===y){null===g&&(g=v);break}e&&g&&null===y.alternate&&t(o,g),i=a(y,i,h),null===u?s=y:u.sibling=y,u=y,g=v}if(b.done)return n(o,g),od&&oa(o,h),s;if(null===g){for(;!b.done;h++,b=l.next())null!==(b=f(o,b.value,c))&&(i=a(b,i,h),null===u?s=b:u.sibling=b,u=b);return od&&oa(o,h),s}for(g=r(o,g);!b.done;h++,b=l.next())null!==(b=m(g,o,h,b.value,c))&&(e&&null!==b.alternate&&g.delete(null===b.key?h:b.key),i=a(b,i,h),null===u?s=b:u.sibling=b,u=b);return e&&g.forEach(function(e){return t(o,e)}),od&&oa(o,h),s}(c,s,u,g);oC(c,u)}return"string"==typeof u&&""!==u||"number"==typeof u?(u=""+u,null!==s&&6===s.tag?(n(c,s.sibling),(s=o(s,u)).return=c):(n(c,s),(s=l0(u,c.mode,g)).return=c),i(c=s)):n(c,s)}}var oE=ok(!0),oO=ok(!1),oM=rH(null),oN=null,oI=null,oj=null;function oz(){oj=oI=oN=null}function oR(e){var t=oM.current;r_(oM),e._currentValue=t}function oP(e,t,n){for(;null!==e;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,null!==r&&(r.childLanes|=t)):null!==r&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function oT(e,t){oN=e,oj=oI=null,null!==(e=e.dependencies)&&null!==e.firstContext&&(0!=(e.lanes&t)&&(ii=!0),e.firstContext=null)}function oD(e){var t=e._currentValue;if(oj!==e)if(e={context:e,memoizedValue:t,next:null},null===oI){if(null===oN)throw Error(d(308));oI=e,oN.dependencies={lanes:0,firstContext:e}}else oI=oI.next=e;return t}var oL=null;function oB(e){null===oL?oL=[e]:oL.push(e)}function oF(e,t,n,r){var o=t.interleaved;return null===o?(n.next=n,oB(t)):(n.next=o.next,o.next=n),t.interleaved=n,oH(e,r)}function oH(e,t){e.lanes|=t;var n=e.alternate;for(null!==n&&(n.lanes|=t),n=e,e=e.return;null!==e;)e.childLanes|=t,null!==(n=e.alternate)&&(n.childLanes|=t),n=e,e=e.return;return 3===n.tag?n.stateNode:null}var o_=!1;function oW(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function oq(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function oV(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function oK(e,t,n){var r=e.updateQueue;if(null===r)return null;if(r=r.shared,0!=(2&i3)){var o=r.pending;return null===o?t.next=t:(t.next=o.next,o.next=t),r.pending=t,oH(e,n)}return null===(o=r.interleaved)?(t.next=t,oB(r)):(t.next=o.next,o.next=t),r.interleaved=t,oH(e,n)}function oX(e,t,n){if(null!==(t=t.updateQueue)&&(t=t.shared,0!=(4194240&n))){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,ts(e,n)}}function oY(e,t){var n=e.updateQueue,r=e.alternate;if(null!==r&&n===(r=r.updateQueue)){var o=null,a=null;if(null!==(n=n.firstBaseUpdate)){do{var i={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};null===a?o=a=i:a=a.next=i,n=n.next}while(null!==n);null===a?o=a=t:a=a.next=t}else o=a=t;n={baseState:r.baseState,firstBaseUpdate:o,lastBaseUpdate:a,shared:r.shared,effects:r.effects},e.updateQueue=n;return}null===(e=n.lastBaseUpdate)?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function oU(e,t,n,r){var o=e.updateQueue;o_=!1;var a=o.firstBaseUpdate,i=o.lastBaseUpdate,l=o.shared.pending;if(null!==l){o.shared.pending=null;var c=l,s=c.next;c.next=null,null===i?a=s:i.next=s,i=c;var u=e.alternate;null!==u&&(l=(u=u.updateQueue).lastBaseUpdate)!==i&&(null===l?u.firstBaseUpdate=s:l.next=s,u.lastBaseUpdate=c)}if(null!==a){var d=o.baseState;for(i=0,u=s=c=null,l=a;;){var f=l.lane,p=l.eventTime;if((r&f)===f){null!==u&&(u=u.next={eventTime:p,lane:0,tag:l.tag,payload:l.payload,callback:l.callback,next:null});e:{var m=e,g=l;switch(f=t,p=n,g.tag){case 1:if("function"==typeof(m=g.payload)){d=m.call(p,d,f);break e}d=m;break e;case 3:m.flags=-65537&m.flags|128;case 0:if(null==(f="function"==typeof(m=g.payload)?m.call(p,d,f):m))break e;d=W({},d,f);break e;case 2:o_=!0}}null!==l.callback&&0!==l.lane&&(e.flags|=64,null===(f=o.effects)?o.effects=[l]:f.push(l))}else p={eventTime:p,lane:f,tag:l.tag,payload:l.payload,callback:l.callback,next:null},null===u?(s=u=p,c=d):u=u.next=p,i|=f;if(null===(l=l.next))if(null===(l=o.shared.pending))break;else l=(f=l).next,f.next=null,o.lastBaseUpdate=f,o.shared.pending=null}if(null===u&&(c=d),o.baseState=c,o.firstBaseUpdate=s,o.lastBaseUpdate=u,null!==(t=o.shared.interleaved)){o=t;do i|=o.lane,o=o.next;while(o!==t)}else null===a&&(o.shared.lanes=0);ln|=i,e.lanes=i,e.memoizedState=d}}function oG(e,t,n){if(e=t.effects,t.effects=null,null!==e)for(t=0;tn?n:4,e(!0);var r=at.transition;at.transition={};try{e(!1),t()}finally{tu=n,at.transition=r}}function a_(){return ag().memoizedState}function aW(e,t,n){var r=l$(e);n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},aV(e)?aK(t,n):null!==(n=oF(e,t,n,r))&&(lA(n,e,r,lx()),aX(n,t,r))}function aq(e,t,n){var r=l$(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(aV(e))aK(t,o);else{var a=e.alternate;if(0===e.lanes&&(null===a||0===a.lanes)&&null!==(a=t.lastRenderedReducer))try{var i=t.lastRenderedState,l=a(i,n);if(o.hasEagerState=!0,o.eagerState=l,nT(l,i)){var c=t.interleaved;null===c?(o.next=o,oB(t)):(o.next=c.next,c.next=o),t.interleaved=o;return}}catch(e){}finally{}null!==(n=oF(e,t,o,r))&&(lA(n,e,r,o=lx()),aX(n,t,r))}}function aV(e){var t=e.alternate;return e===ar||null!==t&&t===ar}function aK(e,t){al=ai=!0;var n=e.pending;null===n?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function aX(e,t,n){if(0!=(4194240&n)){var r=t.lanes;r&=e.pendingLanes,t.lanes=n|=r,ts(e,n)}}var aY={readContext:oD,useCallback:au,useContext:au,useEffect:au,useImperativeHandle:au,useInsertionEffect:au,useLayoutEffect:au,useMemo:au,useReducer:au,useRef:au,useState:au,useDebugValue:au,useDeferredValue:au,useTransition:au,useMutableSource:au,useSyncExternalStore:au,useId:au,unstable_isNewReconciler:!1},aU={readContext:oD,useCallback:function(e,t){return am().memoizedState=[e,void 0===t?null:t],e},useContext:oD,useEffect:aI,useImperativeHandle:function(e,t,n){return n=null!=n?n.concat([e]):null,aM(4194308,4,aP.bind(null,t,e),n)},useLayoutEffect:function(e,t){return aM(4194308,4,e,t)},useInsertionEffect:function(e,t){return aM(4,2,e,t)},useMemo:function(e,t){return t=void 0===t?null:t,am().memoizedState=[e=e(),t],e},useReducer:function(e,t,n){var r=am();return r.memoizedState=r.baseState=t=void 0!==n?n(t):t,r.queue=e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},e=e.dispatch=aW.bind(null,ar,e),[r.memoizedState,e]},useRef:function(e){return am().memoizedState={current:e}},useState:ak,useDebugValue:aD,useDeferredValue:function(e){return am().memoizedState=e},useTransition:function(){var e=ak(!1),t=e[0];return e=aH.bind(null,e[1]),am().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=ar,o=am();if(od){if(void 0===n)throw Error(d(407));n=n()}else{if(n=t(),null===i6)throw Error(d(349));0!=(30&an)||a$(r,t,n)}o.memoizedState=n;var a={value:n,getSnapshot:t};return o.queue=a,aI(aw.bind(null,r,a,e),[e]),r.flags|=2048,aE(9,aA.bind(null,r,a,n,t),void 0,null),n},useId:function(){var e=am(),t=i6.identifierPrefix;if(od){var n=oo,r=or;t=":"+t+"R"+(n=(r&~(1<<32-e7(r)-1)).toString(32)+n),0<(n=ac++)&&(t+="H"+n.toString(32)),t+=":"}else t=":"+t+"r"+(n=as++).toString(32)+":";return e.memoizedState=t},unstable_isNewReconciler:!1},aG={readContext:oD,useCallback:aL,useContext:oD,useEffect:aj,useImperativeHandle:aT,useInsertionEffect:az,useLayoutEffect:aR,useMemo:aB,useReducer:av,useRef:aO,useState:function(){return av(ah)},useDebugValue:aD,useDeferredValue:function(e){return aF(ag(),ao.memoizedState,e)},useTransition:function(){return[av(ah)[0],ag().memoizedState]},useMutableSource:ay,useSyncExternalStore:ax,useId:a_,unstable_isNewReconciler:!1},aQ={readContext:oD,useCallback:aL,useContext:oD,useEffect:aj,useImperativeHandle:aT,useInsertionEffect:az,useLayoutEffect:aR,useMemo:aB,useReducer:ab,useRef:aO,useState:function(){return ab(ah)},useDebugValue:aD,useDeferredValue:function(e){var t=ag();return null===ao?t.memoizedState=e:aF(t,ao.memoizedState,e)},useTransition:function(){return[ab(ah)[0],ag().memoizedState]},useMutableSource:ay,useSyncExternalStore:ax,useId:a_,unstable_isNewReconciler:!1};function aZ(e,t){if(e&&e.defaultProps)for(var n in t=W({},t),e=e.defaultProps)void 0===t[n]&&(t[n]=e[n]);return t}function aJ(e,t,n,r){n=null==(n=n(r,t=e.memoizedState))?t:W({},t,n),e.memoizedState=n,0===e.lanes&&(e.updateQueue.baseState=n)}var a0={isMounted:function(e){return!!(e=e._reactInternals)&&eV(e)===e},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=lx(),o=l$(e),a=oV(r,o);a.payload=t,null!=n&&(a.callback=n),null!==(t=oK(e,a,o))&&(lA(t,e,o,r),oX(t,e,o))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=lx(),o=l$(e),a=oV(r,o);a.tag=1,a.payload=t,null!=n&&(a.callback=n),null!==(t=oK(e,a,o))&&(lA(t,e,o,r),oX(t,e,o))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=lx(),r=l$(e),o=oV(n,r);o.tag=2,null!=t&&(o.callback=t),null!==(t=oK(e,o,r))&&(lA(t,e,r,n),oX(t,e,r))}};function a1(e,t,n,r,o,a,i){return"function"==typeof(e=e.stateNode).shouldComponentUpdate?e.shouldComponentUpdate(r,a,i):!t.prototype||!t.prototype.isPureReactComponent||!nD(n,r)||!nD(o,a)}function a2(e,t,n){var r=!1,o=rq,a=t.contextType;return"object"==typeof a&&null!==a?a=oD(a):(o=rU(t)?rX:rV.current,a=(r=null!=(r=t.contextTypes))?rY(e,o):rq),t=new t(n,a),e.memoizedState=null!==t.state&&void 0!==t.state?t.state:null,t.updater=a0,e.stateNode=t,t._reactInternals=e,r&&((e=e.stateNode).__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=a),t}function a4(e,t,n,r){e=t.state,"function"==typeof t.componentWillReceiveProps&&t.componentWillReceiveProps(n,r),"function"==typeof t.UNSAFE_componentWillReceiveProps&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&a0.enqueueReplaceState(t,t.state,null)}function a3(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs={},oW(e);var a=t.contextType;"object"==typeof a&&null!==a?o.context=oD(a):o.context=rY(e,a=rU(t)?rX:rV.current),o.state=e.memoizedState,"function"==typeof(a=t.getDerivedStateFromProps)&&(aJ(e,t,a,n),o.state=e.memoizedState),"function"==typeof t.getDerivedStateFromProps||"function"==typeof o.getSnapshotBeforeUpdate||"function"!=typeof o.UNSAFE_componentWillMount&&"function"!=typeof o.componentWillMount||(t=o.state,"function"==typeof o.componentWillMount&&o.componentWillMount(),"function"==typeof o.UNSAFE_componentWillMount&&o.UNSAFE_componentWillMount(),t!==o.state&&a0.enqueueReplaceState(o,o.state,null),oU(e,n,o,r),o.state=e.memoizedState),"function"==typeof o.componentDidMount&&(e.flags|=4194308)}function a6(e,t){try{var n="",r=t;do n+=function(e){switch(e.tag){case 5:return q(e.type);case 16:return q("Lazy");case 13:return q("Suspense");case 19:return q("SuspenseList");case 0:case 2:case 15:return K(e.type,!1);case 11:return K(e.type.render,!1);case 1:return K(e.type,!0);default:return""}}(r),r=r.return;while(r);var o=n}catch(e){o="\nError generating stack: "+e.message+"\n"+e.stack}return{value:e,source:t,stack:o,digest:null}}function a8(e,t,n){return{value:e,source:null,stack:null!=n?n:null,digest:null!=t?t:null}}function a5(e,t){try{console.error(t.value)}catch(e){setTimeout(function(){throw e})}}var a7="function"==typeof WeakMap?WeakMap:Map;function a9(e,t,n){(n=oV(-1,n)).tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){lu||(lu=!0,ld=r),a5(e,t)},n}function ie(e,t,n){(n=oV(-1,n)).tag=3;var r=e.type.getDerivedStateFromError;if("function"==typeof r){var o=t.value;n.payload=function(){return r(o)},n.callback=function(){a5(e,t)}}var a=e.stateNode;return null!==a&&"function"==typeof a.componentDidCatch&&(n.callback=function(){a5(e,t),"function"!=typeof r&&(null===lf?lf=new Set([this]):lf.add(this));var n=t.stack;this.componentDidCatch(t.value,{componentStack:null!==n?n:""})}),n}function it(e,t,n){var r=e.pingCache;if(null===r){r=e.pingCache=new a7;var o=new Set;r.set(t,o)}else void 0===(o=r.get(t))&&(o=new Set,r.set(t,o));o.has(n)||(o.add(n),e=lW.bind(null,e,t,n),t.then(e,e))}function ir(e){do{var t;if((t=13===e.tag)&&(t=null===(t=e.memoizedState)||null!==t.dehydrated),t)return e;e=e.return}while(null!==e);return null}function io(e,t,n,r,o){return 0==(1&e.mode)?e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,1===n.tag&&(null===n.alternate?n.tag=17:((t=oV(-1,1)).tag=2,oK(n,t,1))),n.lanes|=1):(e.flags|=65536,e.lanes=o),e}var ia=k.ReactCurrentOwner,ii=!1;function il(e,t,n,r){t.child=null===e?oO(t,null,n,r):oE(t,e.child,n,r)}function ic(e,t,n,r,o){n=n.render;var a=t.ref;return(oT(t,o),r=af(e,t,n,r,a,o),n=ap(),null===e||ii)?(od&&n&&ol(t),t.flags|=1,il(e,t,r,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,iO(e,t,o))}function is(e,t,n,r,o){if(null===e){var a=n.type;return"function"!=typeof a||lU(a)||void 0!==a.defaultProps||null!==n.compare||void 0!==n.defaultProps?((e=lQ(n.type,null,r,t,t.mode,o)).ref=t.ref,e.return=t,t.child=e):(t.tag=15,t.type=a,iu(e,t,a,r,o))}if(a=e.child,0==(e.lanes&o)){var i=a.memoizedProps;if((n=null!==(n=n.compare)?n:nD)(i,r)&&e.ref===t.ref)return iO(e,t,o)}return t.flags|=1,(e=lG(a,r)).ref=t.ref,e.return=t,t.child=e}function iu(e,t,n,r,o){if(null!==e){var a=e.memoizedProps;if(nD(a,r)&&e.ref===t.ref)if(ii=!1,t.pendingProps=r=a,0==(e.lanes&o))return t.lanes=e.lanes,iO(e,t,o);else 0!=(131072&e.flags)&&(ii=!0)}return im(e,t,n,r,o)}function id(e,t,n){var r=t.pendingProps,o=r.children,a=null!==e?e.memoizedState:null;if("hidden"===r.mode)if(0==(1&t.mode))t.memoizedState={baseLanes:0,cachePool:null,transitions:null},rW(i9,i7),i7|=n;else{if(0==(0x40000000&n))return e=null!==a?a.baseLanes|n:n,t.lanes=t.childLanes=0x40000000,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,rW(i9,i7),i7|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=null!==a?a.baseLanes:n,rW(i9,i7),i7|=r}else null!==a?(r=a.baseLanes|n,t.memoizedState=null):r=n,rW(i9,i7),i7|=r;return il(e,t,o,n),t.child}function ip(e,t){var n=t.ref;(null===e&&null!==n||null!==e&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function im(e,t,n,r,o){var a=rU(n)?rX:rV.current;return(a=rY(t,a),oT(t,o),n=af(e,t,n,r,a,o),r=ap(),null===e||ii)?(od&&r&&ol(t),t.flags|=1,il(e,t,n,o),t.child):(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,iO(e,t,o))}function ig(e,t,n,r,o){if(rU(n)){var a=!0;rJ(t)}else a=!1;if(oT(t,o),null===t.stateNode)iE(e,t),a2(t,n,r),a3(t,n,r,o),r=!0;else if(null===e){var i=t.stateNode,l=t.memoizedProps;i.props=l;var c=i.context,s=n.contextType;s="object"==typeof s&&null!==s?oD(s):rY(t,s=rU(n)?rX:rV.current);var u=n.getDerivedStateFromProps,d="function"==typeof u||"function"==typeof i.getSnapshotBeforeUpdate;d||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==r||c!==s)&&a4(t,i,r,s),o_=!1;var f=t.memoizedState;i.state=f,oU(t,r,i,o),c=t.memoizedState,l!==r||f!==c||rK.current||o_?("function"==typeof u&&(aJ(t,n,u,r),c=t.memoizedState),(l=o_||a1(t,n,l,r,f,c,s))?(d||"function"!=typeof i.UNSAFE_componentWillMount&&"function"!=typeof i.componentWillMount||("function"==typeof i.componentWillMount&&i.componentWillMount(),"function"==typeof i.UNSAFE_componentWillMount&&i.UNSAFE_componentWillMount()),"function"==typeof i.componentDidMount&&(t.flags|=4194308)):("function"==typeof i.componentDidMount&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=c),i.props=r,i.state=c,i.context=s,r=l):("function"==typeof i.componentDidMount&&(t.flags|=4194308),r=!1)}else{i=t.stateNode,oq(e,t),l=t.memoizedProps,s=t.type===t.elementType?l:aZ(t.type,l),i.props=s,d=t.pendingProps,f=i.context,c="object"==typeof(c=n.contextType)&&null!==c?oD(c):rY(t,c=rU(n)?rX:rV.current);var p=n.getDerivedStateFromProps;(u="function"==typeof p||"function"==typeof i.getSnapshotBeforeUpdate)||"function"!=typeof i.UNSAFE_componentWillReceiveProps&&"function"!=typeof i.componentWillReceiveProps||(l!==d||f!==c)&&a4(t,i,r,c),o_=!1,f=t.memoizedState,i.state=f,oU(t,r,i,o);var m=t.memoizedState;l!==d||f!==m||rK.current||o_?("function"==typeof p&&(aJ(t,n,p,r),m=t.memoizedState),(s=o_||a1(t,n,s,r,f,m,c)||!1)?(u||"function"!=typeof i.UNSAFE_componentWillUpdate&&"function"!=typeof i.componentWillUpdate||("function"==typeof i.componentWillUpdate&&i.componentWillUpdate(r,m,c),"function"==typeof i.UNSAFE_componentWillUpdate&&i.UNSAFE_componentWillUpdate(r,m,c)),"function"==typeof i.componentDidUpdate&&(t.flags|=4),"function"==typeof i.getSnapshotBeforeUpdate&&(t.flags|=1024)):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=m),i.props=r,i.state=m,i.context=c,r=s):("function"!=typeof i.componentDidUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=4),"function"!=typeof i.getSnapshotBeforeUpdate||l===e.memoizedProps&&f===e.memoizedState||(t.flags|=1024),r=!1)}return ih(e,t,n,r,a,o)}function ih(e,t,n,r,o,a){ip(e,t);var i=0!=(128&t.flags);if(!r&&!i)return o&&r0(t,n,!1),iO(e,t,a);r=t.stateNode,ia.current=t;var l=i&&"function"!=typeof n.getDerivedStateFromError?null:r.render();return t.flags|=1,null!==e&&i?(t.child=oE(t,e.child,null,a),t.child=oE(t,null,l,a)):il(e,t,l,a),t.memoizedState=r.state,o&&r0(t,n,!0),t.child}function iv(e){var t=e.stateNode;t.pendingContext?rQ(e,t.pendingContext,t.pendingContext!==t.context):t.context&&rQ(e,t.context,!1),o2(e,t.containerInfo)}function ib(e,t,n,r,o){return ox(),o$(o),t.flags|=256,il(e,t,n,r),t.child}var iy={dehydrated:null,treeContext:null,retryLane:0};function ix(e){return{baseLanes:e,cachePool:null,transitions:null}}function i$(e,t,n){var r,o=t.pendingProps,a=o8.current,i=!1,l=0!=(128&t.flags);if((r=l)||(r=(null===e||null!==e.memoizedState)&&0!=(2&a)),r?(i=!0,t.flags&=-129):(null===e||null!==e.memoizedState)&&(a|=1),rW(o8,1&a),null===e)return(oh(t),null!==(e=t.memoizedState)&&null!==(e=e.dehydrated))?(0==(1&t.mode)?t.lanes=1:"$!"===e.data?t.lanes=8:t.lanes=0x40000000,null):(l=o.children,e=o.fallback,i?(o=t.mode,i=t.child,l={mode:"hidden",children:l},0==(1&o)&&null!==i?(i.childLanes=0,i.pendingProps=l):i=lJ(l,o,0,null),e=lZ(e,o,n,null),i.return=t,e.return=t,i.sibling=e,t.child=i,t.child.memoizedState=ix(n),t.memoizedState=iy,e):iA(t,l));if(null!==(a=e.memoizedState)&&null!==(r=a.dehydrated)){var c=e,s=t,u=l,f=o,p=r,m=a,g=n;if(u)return 256&s.flags?(s.flags&=-257,iw(c,s,g,f=a8(Error(d(422))))):null!==s.memoizedState?(s.child=c.child,s.flags|=128,null):(m=f.fallback,p=s.mode,f=lJ({mode:"visible",children:f.children},p,0,null),m=lZ(m,p,g,null),m.flags|=2,f.return=s,m.return=s,f.sibling=m,s.child=f,0!=(1&s.mode)&&oE(s,c.child,null,g),s.child.memoizedState=ix(g),s.memoizedState=iy,m);if(0==(1&s.mode))return iw(c,s,g,null);if("$!"===p.data){if(f=p.nextSibling&&p.nextSibling.dataset)var h=f.dgst;return f=h,iw(c,s,g,f=a8(m=Error(d(419)),f,void 0))}if(h=0!=(g&c.childLanes),ii||h){if(null!==(f=i6)){switch(g&-g){case 4:p=2;break;case 16:p=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 0x1000000:case 0x2000000:case 0x4000000:p=32;break;case 0x20000000:p=0x10000000;break;default:p=0}0!==(p=0!=(p&(f.suspendedLanes|g))?0:p)&&p!==m.retryLane&&(m.retryLane=p,oH(c,p),lA(f,c,p,-1))}return lP(),iw(c,s,g,f=a8(Error(d(421))))}return"$?"===p.data?(s.flags|=128,s.child=c.child,s=lV.bind(null,c),p._reactRetry=s,null):(c=m.treeContext,ou=rk(p.nextSibling),os=s,od=!0,of=null,null!==c&&(oe[ot++]=or,oe[ot++]=oo,oe[ot++]=on,or=c.id,oo=c.overflow,on=s),s=iA(s,f.children),s.flags|=4096,s)}if(i){i=o.fallback,l=t.mode,r=(a=e.child).sibling;var v={mode:"hidden",children:o.children};return 0==(1&l)&&t.child!==a?((o=t.child).childLanes=0,o.pendingProps=v,t.deletions=null):(o=lG(a,v)).subtreeFlags=0xe00000&a.subtreeFlags,null!==r?i=lG(r,i):(i=lZ(i,l,n,null),i.flags|=2),i.return=t,o.return=t,o.sibling=i,t.child=o,o=i,i=t.child,l=null===(l=e.child.memoizedState)?ix(n):{baseLanes:l.baseLanes|n,cachePool:null,transitions:l.transitions},i.memoizedState=l,i.childLanes=e.childLanes&~n,t.memoizedState=iy,o}return e=(i=e.child).sibling,o=lG(i,{mode:"visible",children:o.children}),0==(1&t.mode)&&(o.lanes=n),o.return=t,o.sibling=null,null!==e&&(null===(n=t.deletions)?(t.deletions=[e],t.flags|=16):n.push(e)),t.child=o,t.memoizedState=null,o}function iA(e,t){return(t=lJ({mode:"visible",children:t},e.mode,0,null)).return=e,e.child=t}function iw(e,t,n,r){return null!==r&&o$(r),oE(t,e.child,null,n),e=iA(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function iC(e,t,n){e.lanes|=t;var r=e.alternate;null!==r&&(r.lanes|=t),oP(e.return,t,n)}function iS(e,t,n,r,o){var a=e.memoizedState;null===a?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o}:(a.isBackwards=t,a.rendering=null,a.renderingStartTime=0,a.last=r,a.tail=n,a.tailMode=o)}function ik(e,t,n){var r=t.pendingProps,o=r.revealOrder,a=r.tail;if(il(e,t,r.children,n),0!=(2&(r=o8.current)))r=1&r|2,t.flags|=128;else{if(null!==e&&0!=(128&e.flags))e:for(e=t.child;null!==e;){if(13===e.tag)null!==e.memoizedState&&iC(e,n,t);else if(19===e.tag)iC(e,n,t);else if(null!==e.child){e.child.return=e,e=e.child;continue}if(e===t)break;for(;null===e.sibling;){if(null===e.return||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(rW(o8,r),0==(1&t.mode))t.memoizedState=null;else switch(o){case"forwards":for(o=null,n=t.child;null!==n;)null!==(e=n.alternate)&&null===o5(e)&&(o=n),n=n.sibling;null===(n=o)?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),iS(t,!1,o,n,a);break;case"backwards":for(n=null,o=t.child,t.child=null;null!==o;){if(null!==(e=o.alternate)&&null===o5(e)){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}iS(t,!0,n,null,a);break;case"together":iS(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function iE(e,t){0==(1&t.mode)&&null!==e&&(e.alternate=null,t.alternate=null,t.flags|=2)}function iO(e,t,n){if(null!==e&&(t.dependencies=e.dependencies),ln|=t.lanes,0==(n&t.childLanes))return null;if(null!==e&&t.child!==e.child)throw Error(d(153));if(null!==t.child){for(n=lG(e=t.child,e.pendingProps),t.child=n,n.return=t;null!==e.sibling;)e=e.sibling,(n=n.sibling=lG(e,e.pendingProps)).return=t;n.sibling=null}return t.child}function iM(e,t){if(!od)switch(e.tailMode){case"hidden":t=e.tail;for(var n=null;null!==t;)null!==t.alternate&&(n=t),t=t.sibling;null===n?e.tail=null:n.sibling=null;break;case"collapsed":n=e.tail;for(var r=null;null!==n;)null!==n.alternate&&(r=n),n=n.sibling;null===r?t||null===e.tail?e.tail=null:e.tail.sibling=null:r.sibling=null}}function iN(e){var t=null!==e.alternate&&e.alternate.child===e.child,n=0,r=0;if(t)for(var o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=0xe00000&o.subtreeFlags,r|=0xe00000&o.flags,o.return=e,o=o.sibling;else for(o=e.child;null!==o;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags,r|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}o=function(e,t){for(var n=t.child;null!==n;){if(5===n.tag||6===n.tag)e.appendChild(n.stateNode);else if(4!==n.tag&&null!==n.child){n.child.return=n,n=n.child;continue}if(n===t)break;for(;null===n.sibling;){if(null===n.return||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}},a=function(){},i=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,o1(oZ.current);var a,i=null;switch(n){case"input":o=Z(e,o),r=Z(e,r),i=[];break;case"select":o=W({},o,{value:void 0}),r=W({},r,{value:void 0}),i=[];break;case"textarea":o=ei(e,o),r=ei(e,r),i=[];break;default:"function"!=typeof o.onClick&&"function"==typeof r.onClick&&(e.onclick=rh)}for(s in e$(n,r),n=null,o)if(!r.hasOwnProperty(s)&&o.hasOwnProperty(s)&&null!=o[s])if("style"===s){var l=o[s];for(a in l)l.hasOwnProperty(a)&&(n||(n={}),n[a]="")}else"dangerouslySetInnerHTML"!==s&&"children"!==s&&"suppressContentEditableWarning"!==s&&"suppressHydrationWarning"!==s&&"autoFocus"!==s&&(p.hasOwnProperty(s)?i||(i=[]):(i=i||[]).push(s,null));for(s in r){var c=r[s];if(l=null!=o?o[s]:void 0,r.hasOwnProperty(s)&&c!==l&&(null!=c||null!=l))if("style"===s)if(l){for(a in l)!l.hasOwnProperty(a)||c&&c.hasOwnProperty(a)||(n||(n={}),n[a]="");for(a in c)c.hasOwnProperty(a)&&l[a]!==c[a]&&(n||(n={}),n[a]=c[a])}else n||(i||(i=[]),i.push(s,n)),n=c;else"dangerouslySetInnerHTML"===s?(c=c?c.__html:void 0,l=l?l.__html:void 0,null!=c&&l!==c&&(i=i||[]).push(s,c)):"children"===s?"string"!=typeof c&&"number"!=typeof c||(i=i||[]).push(s,""+c):"suppressContentEditableWarning"!==s&&"suppressHydrationWarning"!==s&&(p.hasOwnProperty(s)?(null!=c&&"onScroll"===s&&rn("scroll",e),i||l===c||(i=[])):(i=i||[]).push(s,c))}n&&(i=i||[]).push("style",n);var s=i;(t.updateQueue=s)&&(t.flags|=4)}},l=function(e,t,n,r){n!==r&&(t.flags|=4)};var iI=!1,ij=!1,iz="function"==typeof WeakSet?WeakSet:Set,iR=null;function iP(e,t){var n=e.ref;if(null!==n)if("function"==typeof n)try{n(null)}catch(n){l_(e,t,n)}else n.current=null}function iT(e,t,n){try{n()}catch(n){l_(e,t,n)}}var iD=!1;function iL(e,t,n){var r=t.updateQueue;if(null!==(r=null!==r?r.lastEffect:null)){var o=r=r.next;do{if((o.tag&e)===e){var a=o.destroy;o.destroy=void 0,void 0!==a&&iT(t,n,a)}o=o.next}while(o!==r)}}function iB(e,t){if(null!==(t=null!==(t=t.updateQueue)?t.lastEffect:null)){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function iF(e){var t=e.ref;if(null!==t){var n=e.stateNode;e.tag,e=n,"function"==typeof t?t(e):t.current=e}}function iH(e){return 5===e.tag||3===e.tag||4===e.tag}function i_(e){e:for(;;){for(;null===e.sibling;){if(null===e.return||iH(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;5!==e.tag&&6!==e.tag&&18!==e.tag;){if(2&e.flags||null===e.child||4===e.tag)continue e;e.child.return=e,e=e.child}if(!(2&e.flags))return e.stateNode}}var iW=null,iq=!1;function iV(e,t,n){for(n=n.child;null!==n;)iK(e,t,n),n=n.sibling}function iK(e,t,n){if(e5&&"function"==typeof e5.onCommitFiberUnmount)try{e5.onCommitFiberUnmount(e8,n)}catch(e){}switch(n.tag){case 5:ij||iP(n,t);case 6:var r=iW,o=iq;iW=null,iV(e,t,n),iW=r,iq=o,null!==iW&&(iq?(e=iW,n=n.stateNode,8===e.nodeType?e.parentNode.removeChild(n):e.removeChild(n)):iW.removeChild(n.stateNode));break;case 18:null!==iW&&(iq?(e=iW,n=n.stateNode,8===e.nodeType?rS(e.parentNode,n):1===e.nodeType&&rS(e,n),tz(e)):rS(iW,n.stateNode));break;case 4:r=iW,o=iq,iW=n.stateNode.containerInfo,iq=!0,iV(e,t,n),iW=r,iq=o;break;case 0:case 11:case 14:case 15:if(!ij&&null!==(r=n.updateQueue)&&null!==(r=r.lastEffect)){o=r=r.next;do{var a=o,i=a.destroy;a=a.tag,void 0!==i&&(0!=(2&a)?iT(n,t,i):0!=(4&a)&&iT(n,t,i)),o=o.next}while(o!==r)}iV(e,t,n);break;case 1:if(!ij&&(iP(n,t),"function"==typeof(r=n.stateNode).componentWillUnmount))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(e){l_(n,t,e)}iV(e,t,n);break;case 21:default:iV(e,t,n);break;case 22:1&n.mode?(ij=(r=ij)||null!==n.memoizedState,iV(e,t,n),ij=r):iV(e,t,n)}}function iX(e){var t=e.updateQueue;if(null!==t){e.updateQueue=null;var n=e.stateNode;null===n&&(n=e.stateNode=new iz),t.forEach(function(t){var r=lK.bind(null,e,t);n.has(t)||(n.add(t),t.then(r,r))})}}function iY(e,t){var n=t.deletions;if(null!==n)for(var r=0;ro&&(o=i),r&=~a}if(r=o,10<(r=(120>(r=eJ()-r)?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*i0(r/1960))-r)){e.timeoutHandle=rx(lB.bind(null,e,li,ls),r);break}lB(e,li,ls);break;default:throw Error(d(329))}}}return lw(e,eJ()),e.callbackNode===n?lC.bind(null,e):null}function lS(e,t){var n=la;return e.current.memoizedState.isDehydrated&&(lj(e,t).flags|=256),2!==(e=lT(e,t))&&(t=li,li=n,null!==t&&lk(t)),e}function lk(e){null===li?li=e:li.push.apply(li,e)}function lE(e,t){for(t&=~lo,t&=~lr,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<\/script>",e=e.removeChild(e.firstChild)):"string"==typeof r.is?e=u.createElement(n,{is:r.is}):(e=u.createElement(n),"select"===n&&(u=e,r.multiple?u.multiple=!0:r.size&&(u.size=r.size))):e=u.createElementNS(e,n),e[rM]=t,e[rN]=r,o(e,t,!1,!1),t.stateNode=e;e:{switch(u=eA(n,r),n){case"dialog":rn("cancel",e),rn("close",e),c=r;break;case"iframe":case"object":case"embed":rn("load",e),c=r;break;case"video":case"audio":for(c=0;clc&&(t.flags|=128,r=!0,iM(s,!1),t.lanes=4194304)}else{if(!r)if(null!==(e=o5(u))){if(t.flags|=128,r=!0,null!==(n=e.updateQueue)&&(t.updateQueue=n,t.flags|=4),iM(s,!0),null===s.tail&&"hidden"===s.tailMode&&!u.alternate&&!od)return iN(t),null}else 2*eJ()-s.renderingStartTime>lc&&0x40000000!==n&&(t.flags|=128,r=!0,iM(s,!1),t.lanes=4194304);s.isBackwards?(u.sibling=t.child,t.child=u):(null!==(n=s.last)?n.sibling=u:t.child=u,s.last=u)}if(null!==s.tail)return t=s.tail,s.rendering=t,s.tail=t.sibling,s.renderingStartTime=eJ(),t.sibling=null,n=o8.current,rW(o8,r?1&n|2:1&n),t;return iN(t),null;case 22:case 23:return lI(),r=null!==t.memoizedState,null!==e&&null!==e.memoizedState!==r&&(t.flags|=8192),r&&0!=(1&t.mode)?0!=(0x40000000&i7)&&(iN(t),6&t.subtreeFlags&&(t.flags|=8192)):iN(t),null;case 24:case 25:return null}throw Error(d(156,t.tag))}(n,t,i7))){i8=n;return}}else{if(null!==(n=function(e,t){switch(oc(t),t.tag){case 1:return rU(t.type)&&rG(),65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 3:return o4(),r_(rK),r_(rV),o9(),0!=(65536&(e=t.flags))&&0==(128&e)?(t.flags=-65537&e|128,t):null;case 5:return o6(t),null;case 13:if(r_(o8),null!==(e=t.memoizedState)&&null!==e.dehydrated){if(null===t.alternate)throw Error(d(340));ox()}return 65536&(e=t.flags)?(t.flags=-65537&e|128,t):null;case 19:return r_(o8),null;case 4:return o4(),null;case 10:return oR(t.type._context),null;case 22:case 23:return lI(),null;default:return null}}(n,t))){n.flags&=32767,i8=n;return}if(null!==e)e.flags|=32768,e.subtreeFlags=0,e.deletions=null;else{le=6,i8=null;return}}if(null!==(t=t.sibling)){i8=t;return}i8=t=e}while(null!==t);0===le&&(le=5)}function lB(e,t,n){var r=tu,o=i4.transition;try{i4.transition=null,tu=1,function(e,t,n,r){do lF();while(null!==lm);if(0!=(6&i3))throw Error(d(327));n=e.finishedWork;var o=e.finishedLanes;if(null!==n){if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(d(177));e.callbackNode=null,e.callbackPriority=0;var a=n.lanes|n.childLanes,i=e,l=a,c=i.pendingLanes&~l;i.pendingLanes=l,i.suspendedLanes=0,i.pingedLanes=0,i.expiredLanes&=l,i.mutableReadLanes&=l,i.entangledLanes&=l,l=i.entanglements;var s=i.eventTimes;for(i=i.expirationTimes;0r&&(o=r,r=a,a=o),o=nB(n,a);var i=nB(n,r);o&&i&&(1!==e.rangeCount||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==i.node||e.focusOffset!==i.offset)&&((t=t.createRange()).setStart(o.node,o.offset),e.removeAllRanges(),a>r?(e.addRange(t),e.extend(i.node,i.offset)):(t.setEnd(i.node,i.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)1===e.nodeType&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for("function"==typeof n.focus&&n.focus(),n=0;ne?16:e,null===lm)var r=!1;else{if(e=lm,lm=null,lg=0,0!=(6&i3))throw Error(d(331));var o=i3;for(i3|=4,iR=e.current;null!==iR;){var a=iR,i=a.child;if(0!=(16&iR.flags)){var l=a.deletions;if(null!==l){for(var c=0;ceJ()-ll?lj(e,0):lo|=n),lw(e,t)}function lq(e,t){0===t&&(0==(1&e.mode)?t=1:(t=tn,0==(0x7c00000&(tn<<=1))&&(tn=4194304)));var n=lx();null!==(e=oH(e,t))&&(tc(e,t,n),lw(e,n))}function lV(e){var t=e.memoizedState,n=0;null!==t&&(n=t.retryLane),lq(e,n)}function lK(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;null!==o&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(d(314))}null!==r&&r.delete(t),lq(e,n)}function lX(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function lY(e,t,n,r){return new lX(e,t,n,r)}function lU(e){return!(!(e=e.prototype)||!e.isReactComponent)}function lG(e,t){var n=e.alternate;return null===n?((n=lY(e.tag,t,e.key,e.mode)).elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=0xe00000&e.flags,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=null===t?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function lQ(e,t,n,r,o,a){var i=2;if(r=e,"function"==typeof e)lU(e)&&(i=1);else if("string"==typeof e)i=5;else e:switch(e){case M:return lZ(n.children,o,a,t);case N:i=8,o|=8;break;case I:return(e=lY(12,n,t,2|o)).elementType=I,e.lanes=a,e;case P:return(e=lY(13,n,t,o)).elementType=P,e.lanes=a,e;case T:return(e=lY(19,n,t,o)).elementType=T,e.lanes=a,e;case B:return lJ(n,o,a,t);default:if("object"==typeof e&&null!==e)switch(e.$$typeof){case j:i=10;break e;case z:i=9;break e;case R:i=11;break e;case D:i=14;break e;case L:i=16,r=null;break e}throw Error(d(130,null==e?e:typeof e,""))}return(t=lY(i,n,t,o)).elementType=e,t.type=r,t.lanes=a,t}function lZ(e,t,n,r){return(e=lY(7,e,r,t)).lanes=n,e}function lJ(e,t,n,r){return(e=lY(22,e,r,t)).elementType=B,e.lanes=n,e.stateNode={isHidden:!1},e}function l0(e,t,n){return(e=lY(6,e,null,t)).lanes=n,e}function l1(e,t,n){return(t=lY(4,null!==e.children?e.children:[],e.key,t)).lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function l2(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=tl(0),this.expirationTimes=tl(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=tl(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function l4(e,t,n,r,o,a,i,l,c){return e=new l2(e,t,n,l,c),1===t?(t=1,!0===a&&(t|=8)):t=0,a=lY(3,null,null,t),e.current=a,a.stateNode=e,a.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},oW(a),e}function l3(e){if(!e)return rq;e=e._reactInternals;e:{if(eV(e)!==e||1!==e.tag)throw Error(d(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(rU(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(null!==t);throw Error(d(171))}if(1===e.tag){var n=e.type;if(rU(n))return rZ(e,n,t)}return t}function l6(e,t,n,r,o,a,i,l,c){return(e=l4(n,r,!0,e,o,a,i,l,c)).context=l3(null),n=e.current,(a=oV(r=lx(),o=l$(n))).callback=null!=t?t:null,oK(n,a,o),e.current.lanes=o,tc(e,o,r),lw(e,r),e}function l8(e,t,n,r){var o=t.current,a=lx(),i=l$(o);return n=l3(n),null===t.context?t.context=n:t.pendingContext=n,(t=oV(a,i)).payload={element:e},null!==(r=void 0===r?null:r)&&(t.callback=r),null!==(e=oK(o,t,i))&&(lA(e,o,i,a),oX(e,o,i)),i}function l5(e){return(e=e.current).child?(e.child.tag,e.child.stateNode):null}function l7(e,t){if(null!==(e=e.memoizedState)&&null!==e.dehydrated){var n=e.retryLane;e.retryLane=0!==n&&ntypeof __REACT_DEVTOOLS_GLOBAL_HOOK__){var cs=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!cs.isDisabled&&cs.supportsFiber)try{e8=cs.inject(cc),e5=cs}catch(e){}}t.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED={usingClientEntryPoint:!1,Events:[rT,rD,rL,eM,eN,lM]},t.createPortal=function(e,t){var n=2typeof __REACT_DEVTOOLS_GLOBAL_HOOK__&&"function"==typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE)try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(e)}catch(e){console.error(e)}}(),e.exports=n(22551)},15287(e,t){"use strict";var n=Symbol.for("react.element"),r=Symbol.for("react.portal"),o=Symbol.for("react.fragment"),a=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),l=Symbol.for("react.provider"),c=Symbol.for("react.context"),s=Symbol.for("react.forward_ref"),u=Symbol.for("react.suspense"),d=Symbol.for("react.memo"),f=Symbol.for("react.lazy"),p=Symbol.iterator,m={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},g=Object.assign,h={};function v(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}function b(){}function y(e,t,n){this.props=e,this.context=t,this.refs=h,this.updater=n||m}v.prototype.isReactComponent={},v.prototype.setState=function(e,t){if("object"!=typeof e&&"function"!=typeof e&&null!=e)throw Error("setState(...): takes an object of state variables to update or a function which returns an object of state variables.");this.updater.enqueueSetState(this,e,t,"setState")},v.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,"forceUpdate")},b.prototype=v.prototype;var x=y.prototype=new b;x.constructor=y,g(x,v.prototype),x.isPureReactComponent=!0;var $=Array.isArray,A=Object.prototype.hasOwnProperty,w={current:null},C={key:!0,ref:!0,__self:!0,__source:!0};function S(e,t,r){var o,a={},i=null,l=null;if(null!=t)for(o in void 0!==t.ref&&(l=t.ref),void 0!==t.key&&(i=""+t.key),t)A.call(t,o)&&!C.hasOwnProperty(o)&&(a[o]=t[o]);var c=arguments.length-2;if(1===c)a.children=r;else if(1A});var r=function(){if("u">typeof Map)return Map;function e(e,t){var n=-1;return e.some(function(e,r){return e[0]===t&&(n=r,!0)}),n}function t(){this.__entries__=[]}return Object.defineProperty(t.prototype,"size",{get:function(){return this.__entries__.length},enumerable:!0,configurable:!0}),t.prototype.get=function(t){var n=e(this.__entries__,t),r=this.__entries__[n];return r&&r[1]},t.prototype.set=function(t,n){var r=e(this.__entries__,t);~r?this.__entries__[r][1]=n:this.__entries__.push([t,n])},t.prototype.delete=function(t){var n=this.__entries__,r=e(n,t);~r&&n.splice(r,1)},t.prototype.has=function(t){return!!~e(this.__entries__,t)},t.prototype.clear=function(){this.__entries__.splice(0)},t.prototype.forEach=function(e,t){void 0===t&&(t=null);for(var n=0,r=this.__entries__;ntypeof window&&"u">typeof document&&window.document===document,a=void 0!==n.g&&n.g.Math===Math?n.g:"u">typeof self&&self.Math===Math?self:"u">typeof window&&window.Math===Math?window:Function("return this")(),i="function"==typeof requestAnimationFrame?requestAnimationFrame.bind(a):function(e){return setTimeout(function(){return e(Date.now())},1e3/60)},l=["top","right","bottom","left","width","height","size","weight"],c="u">typeof MutationObserver,s=function(){function e(){this.connected_=!1,this.mutationEventsAdded_=!1,this.mutationsObserver_=null,this.observers_=[],this.onTransitionEnd_=this.onTransitionEnd_.bind(this),this.refresh=function(e){var t=!1,n=!1,r=0;function o(){t&&(t=!1,e()),n&&l()}function a(){i(o)}function l(){var e=Date.now();if(t){if(e-r<2)return;n=!0}else t=!0,n=!1,setTimeout(a,20);r=e}return l}(this.refresh.bind(this))}return e.prototype.addObserver=function(e){~this.observers_.indexOf(e)||this.observers_.push(e),this.connected_||this.connect_()},e.prototype.removeObserver=function(e){var t=this.observers_,n=t.indexOf(e);~n&&t.splice(n,1),!t.length&&this.connected_&&this.disconnect_()},e.prototype.refresh=function(){this.updateObservers_()&&this.refresh()},e.prototype.updateObservers_=function(){var e=this.observers_.filter(function(e){return e.gatherActive(),e.hasActive()});return e.forEach(function(e){return e.broadcastActive()}),e.length>0},e.prototype.connect_=function(){o&&!this.connected_&&(document.addEventListener("transitionend",this.onTransitionEnd_),window.addEventListener("resize",this.refresh),c?(this.mutationsObserver_=new MutationObserver(this.refresh),this.mutationsObserver_.observe(document,{attributes:!0,childList:!0,characterData:!0,subtree:!0})):(document.addEventListener("DOMSubtreeModified",this.refresh),this.mutationEventsAdded_=!0),this.connected_=!0)},e.prototype.disconnect_=function(){o&&this.connected_&&(document.removeEventListener("transitionend",this.onTransitionEnd_),window.removeEventListener("resize",this.refresh),this.mutationsObserver_&&this.mutationsObserver_.disconnect(),this.mutationEventsAdded_&&document.removeEventListener("DOMSubtreeModified",this.refresh),this.mutationsObserver_=null,this.mutationEventsAdded_=!1,this.connected_=!1)},e.prototype.onTransitionEnd_=function(e){var t=e.propertyName,n=void 0===t?"":t;l.some(function(e){return!!~n.indexOf(e)})&&this.refresh()},e.getInstance=function(){return this.instance_||(this.instance_=new e),this.instance_},e.instance_=null,e}(),u=function(e,t){for(var n=0,r=Object.keys(t);ntypeof SVGGraphicsElement?function(e){return e instanceof d(e).SVGGraphicsElement}:function(e){return e instanceof d(e).SVGElement&&"function"==typeof e.getBBox};function h(e,t,n,r){return{x:e,y:t,width:n,height:r}}var v=function(){function e(e){this.broadcastWidth=0,this.broadcastHeight=0,this.contentRect_=h(0,0,0,0),this.target=e}return e.prototype.isActive=function(){var e=function(e){if(!o)return f;if(g(e)){var t;return h(0,0,(t=e.getBBox()).width,t.height)}return function(e){var t,n=e.clientWidth,r=e.clientHeight;if(!n&&!r)return f;var o=d(e).getComputedStyle(e),a=function(e){for(var t={},n=0,r=["top","right","bottom","left"];ntypeof DOMRectReadOnly?DOMRectReadOnly:Object).prototype),{x:n,y:r,width:o,height:a,top:r,right:n+o,bottom:a+r,left:n}),i);u(this,{target:e,contentRect:l})},y=function(){function e(e,t,n){if(this.activeObservations_=[],this.observations_=new r,"function"!=typeof e)throw TypeError("The callback provided as parameter 1 is not a function.");this.callback_=e,this.controller_=t,this.callbackCtx_=n}return e.prototype.observe=function(e){if(!arguments.length)throw TypeError("1 argument required, but only 0 present.");if(!("u"0},e}(),x="u">typeof WeakMap?new WeakMap:new r,$=function e(t){if(!(this instanceof e))throw TypeError("Cannot call a class as a function.");if(!arguments.length)throw TypeError("1 argument required, but only 0 present.");var n=new y(t,s.getInstance(),this);x.set(this,n)};["observe","unobserve","disconnect"].forEach(function(e){$.prototype[e]=function(){var t;return(t=x.get(this))[e].apply(t,arguments)}});let A=void 0!==a.ResizeObserver?a.ResizeObserver:$},7463(e,t){"use strict";function n(e,t){var n=e.length;for(e.push(t);0>>1,o=e[r];if(0>>1;ra(c,n))sa(u,c)?(e[r]=u,e[s]=n,r=s):(e[r]=c,e[l]=n,r=l);else if(sa(u,n))e[r]=u,e[s]=n,r=s;else break}}return t}function a(e,t){var n=e.sortIndex-t.sortIndex;return 0!==n?n:e.id-t.id}if("object"==typeof performance&&"function"==typeof performance.now){var i,l=performance;t.unstable_now=function(){return l.now()}}else{var c=Date,s=c.now();t.unstable_now=function(){return c.now()-s}}var u=[],d=[],f=1,p=null,m=3,g=!1,h=!1,v=!1,b="function"==typeof setTimeout?setTimeout:null,y="function"==typeof clearTimeout?clearTimeout:null,x="u">typeof setImmediate?setImmediate:null;function $(e){for(var t=r(d);null!==t;){if(null===t.callback)o(d);else if(t.startTime<=e)o(d),t.sortIndex=t.expirationTime,n(u,t);else break;t=r(d)}}function A(e){if(v=!1,$(e),!h)if(null!==r(u))h=!0,z(w);else{var t=r(d);null!==t&&R(A,t.startTime-e)}}function w(e,n){h=!1,v&&(v=!1,y(k),k=-1),g=!0;var a=m;try{for($(n),p=r(u);null!==p&&(!(p.expirationTime>n)||e&&!M());){var i=p.callback;if("function"==typeof i){p.callback=null,m=p.priorityLevel;var l=i(p.expirationTime<=n);n=t.unstable_now(),"function"==typeof l?p.callback=l:p===r(u)&&o(u),$(n)}else o(u);p=r(u)}if(null!==p)var c=!0;else{var s=r(d);null!==s&&R(A,s.startTime-n),c=!1}return c}finally{p=null,m=a,g=!1}}"u">typeof navigator&&void 0!==navigator.scheduling&&void 0!==navigator.scheduling.isInputPending&&navigator.scheduling.isInputPending.bind(navigator.scheduling);var C=!1,S=null,k=-1,E=5,O=-1;function M(){return!(t.unstable_now()-Otypeof MessageChannel){var I=new MessageChannel,j=I.port2;I.port1.onmessage=N,i=function(){j.postMessage(null)}}else i=function(){b(N,0)};function z(e){S=e,C||(C=!0,i())}function R(e,n){k=b(function(){e(t.unstable_now())},n)}t.unstable_IdlePriority=5,t.unstable_ImmediatePriority=1,t.unstable_LowPriority=4,t.unstable_NormalPriority=3,t.unstable_Profiling=null,t.unstable_UserBlockingPriority=2,t.unstable_cancelCallback=function(e){e.callback=null},t.unstable_continueExecution=function(){h||g||(h=!0,z(w))},t.unstable_forceFrameRate=function(e){0>e||125i?(e.sortIndex=a,n(d,e),null===r(u)&&e===r(d)&&(v?(y(k),k=-1):v=!0,R(A,a-i))):(e.sortIndex=l,n(u,e),h||g||(h=!0,z(w))),e},t.unstable_shouldYield=M,t.unstable_wrapCallback=function(e){var t=m;return function(){var n=m;m=t;try{return e.apply(this,arguments)}finally{m=n}}}},69982(e,t,n){"use strict";e.exports=n(7463)},28028(e){e.exports=function(e){return e.replace(/[A-Z]/g,function(e){return"-"+e.toLowerCase()}).toLowerCase()}},16426(e){e.exports=function(){var e=document.getSelection();if(!e.rangeCount)return function(){};for(var t=document.activeElement,n=[],r=0;r=0&&e=this._keys.length?(this._index=-1,this._keys=t,this._values=t):this._index++,{value:n,done:!1}}return{value:void 0,done:!0}},e.prototype.throw=function(e){throw this._index>=0&&(this._index=-1,this._keys=t,this._values=t),e},e.prototype.return=function(e){return this._index>=0&&(this._index=-1,this._keys=t,this._values=t),{value:e,done:!0}},e}();function r(){this._keys=[],this._values=[],this._cacheKey=e,this._cacheIndex=-2}return Object.defineProperty(r.prototype,"size",{get:function(){return this._keys.length},enumerable:!0,configurable:!0}),r.prototype.has=function(e){return this._find(e,!1)>=0},r.prototype.get=function(e){var t=this._find(e,!1);return t>=0?this._values[t]:void 0},r.prototype.set=function(e,t){var n=this._find(e,!0);return this._values[n]=t,this},r.prototype.delete=function(t){var n=this._find(t,!1);if(n>=0){for(var r=this._keys.length,o=n+1;otypeof crypto?crypto.getRandomValues(e):"u">typeof msCrypto?msCrypto.getRandomValues(e):i(e,16),e}return i(Array(16),16)}();e[6]=79&e[6]|64,e[8]=191&e[8]|128;for(var t="",n=0;n<16;++n){var r=e[n];(4===n||6===n||8===n)&&(t+="-"),r<16&&(t+="0"),t+=r.toString(16).toLowerCase()}return t}();while(u.has(e,t));return e[t]=!0,t}function a(e,n){if(!r.call(e,t)){if(!n)return;Object.defineProperty(e,t,{value:u.create()})}return e[t]}function i(e,t){for(var n=0;n=0;--i){var l=(0,o[i])(a);if(!w(l)&&!C(l)){if(!M(l))throw TypeError();a=l}}return a}if(!E(e)||!S(t)||!S(r)&&!w(r)&&!C(r))throw TypeError();return C(r)&&(r=void 0),function(e,t,n,r){for(var o=e.length-1;o>=0;--o){var a=(0,e[o])(t,n,r);if(!w(a)&&!C(a)){if(!S(a))throw TypeError();r=a}}return r}(e,t,n=k(n),r)}),e("metadata",function(e,t){return function(n,r){if(!S(n)||!w(r)&&!function(e){switch(A(e)){case 3:case 4:return!0;default:return!1}}(r))throw TypeError();x(e,t,n,r)}}),e("defineMetadata",function(e,t,n,r){if(!S(n))throw TypeError();return w(r)||(r=k(r)),x(e,t,n,r)}),e("hasMetadata",function(e,t,n){if(!S(t))throw TypeError();return w(n)||(n=k(n)),function e(t,n,r){if(b(t,n,r))return!0;var o=P(n);return!C(o)&&e(t,o,r)}(e,t,n)}),e("hasOwnMetadata",function(e,t,n){if(!S(t))throw TypeError();return w(n)||(n=k(n)),b(e,t,n)}),e("getMetadata",function(e,t,n){if(!S(t))throw TypeError();return w(n)||(n=k(n)),function e(t,n,r){if(b(t,n,r))return y(t,n,r);var o=P(n);if(!C(o))return e(t,o,r)}(e,t,n)}),e("getOwnMetadata",function(e,t,n){if(!S(t))throw TypeError();return w(n)||(n=k(n)),y(e,t,n)}),e("getMetadataKeys",function(e,t){if(!S(e))throw TypeError();return w(t)||(t=k(t)),function e(t,n){var r=$(t,n),o=P(t);if(null===o)return r;var a=e(o,n);if(a.length<=0)return r;if(r.length<=0)return a;for(var i=new p,l=[],c=0;ce.length)&&(t=e.length);for(var n=0,r=Array(t);nr})},96369(e,t,n){"use strict";function r(e){if(Array.isArray(e))return e}n.d(t,{A:()=>r})},9417(e,t,n){"use strict";function r(e){if(void 0===e)throw ReferenceError("this hasn't been initialised - super() hasn't been called");return e}n.d(t,{A:()=>r})},10467(e,t,n){"use strict";function r(e,t,n,r,o,a,i){try{var l=e[a](i),c=l.value}catch(e){return void n(e)}l.done?t(c):Promise.resolve(c).then(r,o)}function o(e){return function(){var t=this,n=arguments;return new Promise(function(o,a){var i=e.apply(t,n);function l(e){r(i,o,a,l,c,"next",e)}function c(e){r(i,o,a,l,c,"throw",e)}l(void 0)})}}n.d(t,{A:()=>o})},39874(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(53954),o=n(52176),a=n(56822);function i(e,t,n){return t=(0,r.A)(t),(0,a.A)(e,(0,o.A)()?Reflect.construct(t,n||[],(0,r.A)(e).constructor):t.apply(e,n))}},23029(e,t,n){"use strict";function r(e,t){if(!(e instanceof t))throw TypeError("Cannot call a class as a function")}n.d(t,{A:()=>r})},92901(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(96192);function o(e,t){for(var n=0;no});var r=n(27800);function o(e,t){var n="u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=(0,r.A)(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var o=0,a=function(){};return{s:a,n:function(){return o>=e.length?{done:!0}:{done:!1,value:e[o++]}},e:function(e){throw e},f:a}}throw TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,l=!0,c=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return l=e.done,e},e:function(e){c=!0,i=e},f:function(){try{l||null==n.return||n.return()}finally{if(c)throw i}}}}},29426(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(53954),o=n(52176),a=n(56822);function i(e){var t=(0,o.A)();return function(){var n,o=(0,r.A)(e);return n=t?Reflect.construct(o,arguments,(0,r.A)(this).constructor):o.apply(this,arguments),(0,a.A)(this,n)}}},64467(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(96192);function o(e,t,n){return(t=(0,r.A)(t))in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},58168(e,t,n){"use strict";function r(){return(r=Object.assign?Object.assign.bind():function(e){for(var t=1;tr})},53954(e,t,n){"use strict";function r(e){return(r=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(e){return e.__proto__||Object.getPrototypeOf(e)})(e)}n.d(t,{A:()=>r})},85501(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(63662);function o(e,t){if("function"!=typeof t&&null!==t)throw TypeError("Super expression must either be null or a function");e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,writable:!0,configurable:!0}}),Object.defineProperty(e,"prototype",{writable:!1}),t&&(0,r.A)(e,t)}},52176(e,t,n){"use strict";function r(){try{var e=!Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){}))}catch(e){}return(r=function(){return!!e})()}n.d(t,{A:()=>r})},73893(e,t,n){"use strict";function r(e){if("u">typeof Symbol&&null!=e[Symbol.iterator]||null!=e["@@iterator"])return Array.from(e)}n.d(t,{A:()=>r})},76562(e,t,n){"use strict";function r(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}n.d(t,{A:()=>r})},89379(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(64467);function o(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable})),n.push.apply(n,r)}return n}function a(e){for(var t=1;to});var r=n(98587);function o(e,t){if(null==e)return{};var n,o,a=(0,r.A)(e,t);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(e);for(o=0;or})},56822(e,t,n){"use strict";n.d(t,{A:()=>a});var r=n(82284),o=n(9417);function a(e,t){if(t&&("object"==(0,r.A)(t)||"function"==typeof t))return t;if(void 0!==t)throw TypeError("Derived constructors may only return object or undefined");return(0,o.A)(e)}},1079(e,t,n){"use strict";function r(e,t){this.v=e,this.k=t}function o(e,t,n,r){var a=Object.defineProperty;try{a({},"",{})}catch(e){a=0}(o=function(e,t,n,r){function i(t,n){o(e,t,function(e){return this._invoke(t,n,e)})}t?a?a(e,t,{value:n,enumerable:!r,configurable:!r,writable:!r}):e[t]=n:(i("next",0),i("throw",1),i("return",2))})(e,t,n,r)}function a(){var e,t,n="function"==typeof Symbol?Symbol:{},r=n.iterator||"@@iterator",i=n.toStringTag||"@@toStringTag";function l(n,r,a,i){var l=Object.create((r&&r.prototype instanceof s?r:s).prototype);return o(l,"_invoke",function(n,r,o){var a,i,l,s=0,u=o||[],d=!1,f={p:0,n:0,v:e,a:p,f:p.bind(e,4),d:function(t,n){return a=t,i=0,l=e,f.n=n,c}};function p(n,r){for(i=n,l=r,t=0;!d&&s&&!o&&t3?(o=m===r)&&(l=a[(i=a[4])?5:(i=3,3)],a[4]=a[5]=e):a[0]<=p&&((o=n<2&&pr||r>m)&&(a[4]=n,a[5]=r,f.n=m,i=0))}if(o||n>1)return c;throw d=!0,r}return function(o,u,m){if(s>1)throw TypeError("Generator is already running");for(d&&1===u&&p(u,m),i=u,l=m;(t=i<2?e:l)||!d;){a||(i?i<3?(i>1&&(f.n=-1),p(i,l)):f.n=l:f.v=l);try{if(s=2,a){if(i||(o="next"),t=a[o]){if(!(t=t.call(a,l)))throw TypeError("iterator result is not an object");if(!t.done)return t;l=t.value,i<2&&(i=0)}else 1===i&&(t=a.return)&&t.call(a),i<2&&(l=TypeError("The iterator does not provide a '"+o+"' method"),i=1);a=e}else if((t=(d=f.n<0)?l:n.call(r,f))!==c)break}catch(t){a=e,i=1,l=t}finally{s=1}}return{value:t,done:d}}}(n,a,i),!0),l}var c={};function s(){}function u(){}function d(){}t=Object.getPrototypeOf;var f=d.prototype=s.prototype=Object.create([][r]?t(t([][r]())):(o(t={},r,function(){return this}),t));function p(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,d):(e.__proto__=d,o(e,i,"GeneratorFunction")),e.prototype=Object.create(f),e}return u.prototype=d,o(f,"constructor",d),o(d,"constructor",u),u.displayName="GeneratorFunction",o(d,i,"GeneratorFunction"),o(f),o(f,i,"Generator"),o(f,r,function(){return this}),o(f,"toString",function(){return"[object Generator]"}),(a=function(){return{w:l,m:p}})()}function i(e,t){var n;this.next||(o(i.prototype),o(i.prototype,"function"==typeof Symbol&&Symbol.asyncIterator||"@asyncIterator",function(){return this})),o(this,"_invoke",function(o,a,i){function l(){return new t(function(n,a){!function n(o,a,i,l){try{var c=e[o](a),s=c.value;return s instanceof r?t.resolve(s.v).then(function(e){n("next",e,i,l)},function(e){n("throw",e,i,l)}):t.resolve(s).then(function(e){c.value=e,i(c)},function(e){return n("throw",e,i,l)})}catch(e){l(e)}}(o,i,n,a)})}return n=n?n.then(l,l):l()},!0)}function l(e,t,n,r,o){return new i(a().w(e,t,n,r),o||Promise)}function c(e){var t=Object(e),n=[];for(var r in t)n.unshift(r);return function e(){for(;n.length;)if((r=n.pop())in t)return e.value=r,e.done=!1,e;return e.done=!0,e}}n.d(t,{A:()=>d});var s=n(82284);function u(e){if(null!=e){var t=e["function"==typeof Symbol&&Symbol.iterator||"@@iterator"],n=0;if(t)return t.call(e);if("function"==typeof e.next)return e;if(!isNaN(e.length))return{next:function(){return e&&n>=e.length&&(e=void 0),{value:e&&e[n++],done:!e}}}}throw TypeError((0,s.A)(e)+" is not iterable")}function d(){var e=a(),t=e.m(d),n=(Object.getPrototypeOf?Object.getPrototypeOf(t):t.__proto__).constructor;function o(e){var t="function"==typeof e&&e.constructor;return!!t&&(t===n||"GeneratorFunction"===(t.displayName||t.name))}var s={throw:1,return:2,break:3,continue:3};function f(e){var t,n;return function(r){t||(t={stop:function(){return n(r.a,2)},catch:function(){return r.v},abrupt:function(e,t){return n(r.a,s[e],t)},delegateYield:function(e,o,a){return t.resultName=o,n(r.d,u(e),a)},finish:function(e){return n(r.f,e)}},n=function(e,n,o){r.p=t.prev,r.n=t.next;try{return e(n,o)}finally{t.next=r.n}}),t.resultName&&(t[t.resultName]=r.v,t.resultName=void 0),t.sent=r.v,t.next=r.n;try{return e.call(this,t)}finally{r.p=t.prev,r.n=t.next}}}return(d=function(){return{wrap:function(t,n,r,o){return e.w(f(t),n,r,o&&o.reverse())},isGeneratorFunction:o,mark:e.m,awrap:function(e,t){return new r(e,t)},AsyncIterator:i,async:function(e,t,n,r,a){return(o(t)?l:function(e,t,n,r,o){var a=l(e,t,n,r,o);return a.next().then(function(e){return e.done?e.value:a.next()})})(f(e),t,n,r,a)},keys:c,values:u}})()}},63662(e,t,n){"use strict";function r(e,t){return(r=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(e,t){return e.__proto__=t,e})(e,t)}n.d(t,{A:()=>r})},57046(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(96369),o=n(27800),a=n(76562);function i(e,t){return(0,r.A)(e)||function(e,t){var n=null==e?null:"u">typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=n){var r,o,a,i,l=[],c=!0,s=!1;try{if(a=(n=n.call(e)).next,0===t){if(Object(n)!==n)return;c=!1}else for(;!(c=(r=a.call(n)).done)&&(l.push(r.value),l.length!==t);c=!0);}catch(e){s=!0,o=e}finally{try{if(!c&&null!=n.return&&(i=n.return(),Object(i)!==i))return}finally{if(s)throw o}}return l}}(e,t)||(0,o.A)(e,t)||(0,a.A)()}},87695(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(96369),o=n(73893),a=n(27800),i=n(76562);function l(e){return(0,r.A)(e)||(0,o.A)(e)||(0,a.A)(e)||(0,i.A)()}},83098(e,t,n){"use strict";n.d(t,{A:()=>i});var r=n(43145),o=n(73893),a=n(27800);function i(e){return function(e){if(Array.isArray(e))return(0,r.A)(e)}(e)||(0,o.A)(e)||(0,a.A)(e)||function(){throw TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}},96192(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(82284);function o(e){var t=function(e,t){if("object"!=(0,r.A)(e)||!e)return e;var n=e[Symbol.toPrimitive];if(void 0!==n){var o=n.call(e,t||"default");if("object"!=(0,r.A)(o))return o;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(e,"string");return"symbol"==(0,r.A)(t)?t:t+""}},82284(e,t,n){"use strict";function r(e){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}n.d(t,{A:()=>r})},27800(e,t,n){"use strict";n.d(t,{A:()=>o});var r=n(43145);function o(e,t){if(e){if("string"==typeof e)return(0,r.A)(e,t);var n=({}).toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?(0,r.A)(e,t):void 0}}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js.LICENSE.txt deleted file mode 100644 index 8de30e4344..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/7366.cc04fcb0.js.LICENSE.txt +++ /dev/null @@ -1,176 +0,0 @@ -/*! - Copyright (c) 2018 Jed Watson. - Licensed under the MIT License (MIT), see - http://jedwatson.github.io/classnames -*/ - -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/*! ***************************************************************************** -Copyright (C) Microsoft. All rights reserved. -Licensed under the Apache License, Version 2.0 (the "License"); you may not use -this file except in compliance with the License. You may obtain a copy of the -License at http://www.apache.org/licenses/LICENSE-2.0 - -THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED -WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE, -MERCHANTABLITY OR NON-INFRINGEMENT. - -See the Apache Version 2.0 License for specific language governing permissions -and limitations under the License. -***************************************************************************** */ - -/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ - -/** - * @license React - * react-dom.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** - * @license React - * react-is.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** - * @license React - * react.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/** - * @license React - * scheduler.production.min.js - * - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -/**![bars](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkxMiAxOTJIMzI4Yy00LjQgMC04IDMuNi04IDh2NTZjMCA0LjQgMy42IDggOCA4aDU4NGM0LjQgMCA4LTMuNiA4LTh2LTU2YzAtNC40LTMuNi04LTgtOHptMCAyODRIMzI4Yy00LjQgMC04IDMuNi04IDh2NTZjMCA0LjQgMy42IDggOCA4aDU4NGM0LjQgMCA4LTMuNiA4LTh2LTU2YzAtNC40LTMuNi04LTgtOHptMCAyODRIMzI4Yy00LjQgMC04IDMuNi04IDh2NTZjMCA0LjQgMy42IDggOCA4aDU4NGM0LjQgMCA4LTMuNiA4LTh2LTU2YzAtNC40LTMuNi04LTgtOHpNMTA0IDIyOGE1NiA1NiAwIDEwMTEyIDAgNTYgNTYgMCAxMC0xMTIgMHptMCAyODRhNTYgNTYgMCAxMDExMiAwIDU2IDU2IDAgMTAtMTEyIDB6bTAgMjg0YTU2IDU2IDAgMTAxMTIgMCA1NiA1NiAwIDEwLTExMiAweiIgLz48L3N2Zz4=) */ - -/**![calendar](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg4MCAxODRINzEydi02NGMwLTQuNC0zLjYtOC04LThoLTU2Yy00LjQgMC04IDMuNi04IDh2NjRIMzg0di02NGMwLTQuNC0zLjYtOC04LThoLTU2Yy00LjQgMC04IDMuNi04IDh2NjRIMTQ0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnY2NjRjMCAxNy43IDE0LjMgMzIgMzIgMzJoNzM2YzE3LjcgMCAzMi0xNC4zIDMyLTMyVjIxNmMwLTE3LjctMTQuMy0zMi0zMi0zMnptLTQwIDY1NkgxODRWNDYwaDY1NnYzODB6TTE4NCAzOTJWMjU2aDEyOHY0OGMwIDQuNCAzLjYgOCA4IDhoNTZjNC40IDAgOC0zLjYgOC04di00OGgyNTZ2NDhjMCA0LjQgMy42IDggOCA4aDU2YzQuNCAwIDgtMy42IDgtOHYtNDhoMTI4djEzNkgxODR6IiAvPjwvc3ZnPg==) */ - -/**![caret-down](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg0MC40IDMwMEgxODMuNmMtMTkuNyAwLTMwLjcgMjAuOC0xOC41IDM1bDMyOC40IDM4MC44YzkuNCAxMC45IDI3LjUgMTAuOSAzNyAwTDg1OC45IDMzNWMxMi4yLTE0LjIgMS4yLTM1LTE4LjUtMzV6IiAvPjwvc3ZnPg==) */ - -/**![caret-up](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg1OC45IDY4OUw1MzAuNSAzMDguMmMtOS40LTEwLjktMjcuNS0xMC45LTM3IDBMMTY1LjEgNjg5Yy0xMi4yIDE0LjItMS4yIDM1IDE4LjUgMzVoNjU2LjhjMTkuNyAwIDMwLjctMjAuOCAxOC41LTM1eiIgLz48L3N2Zz4=) */ - -/**![check-circle](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUxMiA2NEMyNjQuNiA2NCA2NCAyNjQuNiA2NCA1MTJzMjAwLjYgNDQ4IDQ0OCA0NDggNDQ4LTIwMC42IDQ0OC00NDhTNzU5LjQgNjQgNTEyIDY0em0xOTMuNSAzMDEuN2wtMjEwLjYgMjkyYTMxLjggMzEuOCAwIDAxLTUxLjcgMEwzMTguNSA0ODQuOWMtMy44LTUuMyAwLTEyLjcgNi41LTEyLjdoNDYuOWMxMC4yIDAgMTkuOSA0LjkgMjUuOSAxMy4zbDcxLjIgOTguOCAxNTcuMi0yMThjNi04LjMgMTUuNi0xMy4zIDI1LjktMTMuM0g2OTljNi41IDAgMTAuMyA3LjQgNi41IDEyLjd6IiAvPjwvc3ZnPg==) */ - -/**![check](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkxMiAxOTBoLTY5LjljLTkuOCAwLTE5LjEgNC41LTI1LjEgMTIuMkw0MDQuNyA3MjQuNSAyMDcgNDc0YTMyIDMyIDAgMDAtMjUuMS0xMi4ySDExMmMtNi43IDAtMTAuNCA3LjctNi4zIDEyLjlsMjczLjkgMzQ3YzEyLjggMTYuMiAzNy40IDE2LjIgNTAuMyAwbDQ4OC40LTYxOC45YzQuMS01LjEuNC0xMi44LTYuMy0xMi44eiIgLz48L3N2Zz4=) */ - -/**![clock-circle](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUxMiA2NEMyNjQuNiA2NCA2NCAyNjQuNiA2NCA1MTJzMjAwLjYgNDQ4IDQ0OCA0NDggNDQ4LTIwMC42IDQ0OC00NDhTNzU5LjQgNjQgNTEyIDY0em0wIDgyMGMtMjA1LjQgMC0zNzItMTY2LjYtMzcyLTM3MnMxNjYuNi0zNzIgMzcyLTM3MiAzNzIgMTY2LjYgMzcyIDM3Mi0xNjYuNiAzNzItMzcyIDM3MnoiIC8+PHBhdGggZD0iTTY4Ni43IDYzOC42TDU0NC4xIDUzNS41VjI4OGMwLTQuNC0zLjYtOC04LThINDg4Yy00LjQgMC04IDMuNi04IDh2Mjc1LjRjMCAyLjYgMS4yIDUgMy4zIDYuNWwxNjUuNCAxMjAuNmMzLjYgMi42IDguNiAxLjggMTEuMi0xLjdsMjguNi0zOWMyLjYtMy43IDEuOC04LjctMS44LTExLjJ6IiAvPjwvc3ZnPg==) */ - -/**![close-circle](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdmlld0JveD0iNjQgNjQgODk2IDg5NiIgZm9jdXNhYmxlPSJmYWxzZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNTEyIDY0YzI0Ny40IDAgNDQ4IDIwMC42IDQ0OCA0NDhTNzU5LjQgOTYwIDUxMiA5NjAgNjQgNzU5LjQgNjQgNTEyIDI2NC42IDY0IDUxMiA2NHptMTI3Ljk4IDI3NC44MmgtLjA0bC0uMDguMDZMNTEyIDQ2Ni43NSAzODQuMTQgMzM4Ljg4Yy0uMDQtLjA1LS4wNi0uMDYtLjA4LS4wNmEuMTIuMTIgMCAwMC0uMDcgMGMtLjAzIDAtLjA1LjAxLS4wOS4wNWwtNDUuMDIgNDUuMDJhLjIuMiAwIDAwLS4wNS4wOS4xMi4xMiAwIDAwMCAuMDd2LjAyYS4yNy4yNyAwIDAwLjA2LjA2TDQ2Ni43NSA1MTIgMzM4Ljg4IDYzOS44NmMtLjA1LjA0LS4wNi4wNi0uMDYuMDhhLjEyLjEyIDAgMDAwIC4wN2MwIC4wMy4wMS4wNS4wNS4wOWw0NS4wMiA0NS4wMmEuMi4yIDAgMDAuMDkuMDUuMTIuMTIgMCAwMC4wNyAwYy4wMiAwIC4wNC0uMDEuMDgtLjA1TDUxMiA1NTcuMjVsMTI3Ljg2IDEyNy44N2MuMDQuMDQuMDYuMDUuMDguMDVhLjEyLjEyIDAgMDAuMDcgMGMuMDMgMCAuMDUtLjAxLjA5LS4wNWw0NS4wMi00NS4wMmEuMi4yIDAgMDAuMDUtLjA5LjEyLjEyIDAgMDAwLS4wN3YtLjAyYS4yNy4yNyAwIDAwLS4wNS0uMDZMNTU3LjI1IDUxMmwxMjcuODctMTI3Ljg2Yy4wNC0uMDQuMDUtLjA2LjA1LS4wOGEuMTIuMTIgMCAwMDAtLjA3YzAtLjAzLS4wMS0uMDUtLjA1LS4wOWwtNDUuMDItNDUuMDJhLjIuMiAwIDAwLS4wOS0uMDUuMTIuMTIgMCAwMC0uMDcgMHoiIC8+PC9zdmc+) */ - -/**![close](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIGZpbGwtcnVsZT0iZXZlbm9kZCIgdmlld0JveD0iNjQgNjQgODk2IDg5NiIgZm9jdXNhYmxlPSJmYWxzZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNzk5Ljg2IDE2Ni4zMWMuMDIgMCAuMDQuMDIuMDguMDZsNTcuNjkgNTcuN2MuMDQuMDMuMDUuMDUuMDYuMDhhLjEyLjEyIDAgMDEwIC4wNmMwIC4wMy0uMDIuMDUtLjA2LjA5TDU2OS45MyA1MTJsMjg3LjcgMjg3LjdjLjA0LjA0LjA1LjA2LjA2LjA5YS4xMi4xMiAwIDAxMCAuMDdjMCAuMDItLjAyLjA0LS4wNi4wOGwtNTcuNyA1Ny42OWMtLjAzLjA0LS4wNS4wNS0uMDcuMDZhLjEyLjEyIDAgMDEtLjA3IDBjLS4wMyAwLS4wNS0uMDItLjA5LS4wNkw1MTIgNTY5LjkzbC0yODcuNyAyODcuN2MtLjA0LjA0LS4wNi4wNS0uMDkuMDZhLjEyLjEyIDAgMDEtLjA3IDBjLS4wMiAwLS4wNC0uMDItLjA4LS4wNmwtNTcuNjktNTcuN2MtLjA0LS4wMy0uMDUtLjA1LS4wNi0uMDdhLjEyLjEyIDAgMDEwLS4wN2MwLS4wMy4wMi0uMDUuMDYtLjA5TDQ1NC4wNyA1MTJsLTI4Ny43LTI4Ny43Yy0uMDQtLjA0LS4wNS0uMDYtLjA2LS4wOWEuMTIuMTIgMCAwMTAtLjA3YzAtLjAyLjAyLS4wNC4wNi0uMDhsNTcuNy01Ny42OWMuMDMtLjA0LjA1LS4wNS4wNy0uMDZhLjEyLjEyIDAgMDEuMDcgMGMuMDMgMCAuMDUuMDIuMDkuMDZMNTEyIDQ1NC4wN2wyODcuNy0yODcuN2MuMDQtLjA0LjA2LS4wNS4wOS0uMDZhLjEyLjEyIDAgMDEuMDcgMHoiIC8+PC9zdmc+) */ - -/**![copy](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTgzMiA2NEgyOTZjLTQuNCAwLTggMy42LTggOHY1NmMwIDQuNCAzLjYgOCA4IDhoNDk2djY4OGMwIDQuNCAzLjYgOCA4IDhoNTZjNC40IDAgOC0zLjYgOC04Vjk2YzAtMTcuNy0xNC4zLTMyLTMyLTMyek03MDQgMTkySDE5MmMtMTcuNyAwLTMyIDE0LjMtMzIgMzJ2NTMwLjdjMCA4LjUgMy40IDE2LjYgOS40IDIyLjZsMTczLjMgMTczLjNjMi4yIDIuMiA0LjcgNCA3LjQgNS41djEuOWg0LjJjMy41IDEuMyA3LjIgMiAxMSAySDcwNGMxNy43IDAgMzItMTQuMyAzMi0zMlYyMjRjMC0xNy43LTE0LjMtMzItMzItMzJ6TTM1MCA4NTYuMkwyNjMuOSA3NzBIMzUwdjg2LjJ6TTY2NCA4ODhINDE0Vjc0NmMwLTIyLjEtMTcuOS00MC00MC00MEgyMzJWMjY0aDQzMnY2MjR6IiAvPjwvc3ZnPg==) */ - -/**![delete](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTM2MCAxODRoLThjNC40IDAgOC0zLjYgOC04djhoMzA0di04YzAgNC40IDMuNiA4IDggOGgtOHY3Mmg3MnYtODBjMC0zNS4zLTI4LjctNjQtNjQtNjRIMzUyYy0zNS4zIDAtNjQgMjguNy02NCA2NHY4MGg3MnYtNzJ6bTUwNCA3MkgxNjBjLTE3LjcgMC0zMiAxNC4zLTMyIDMydjMyYzAgNC40IDMuNiA4IDggOGg2MC40bDI0LjcgNTIzYzEuNiAzNC4xIDI5LjggNjEgNjMuOSA2MWg0NTRjMzQuMiAwIDYyLjMtMjYuOCA2My45LTYxbDI0LjctNTIzSDg4OGM0LjQgMCA4LTMuNiA4LTh2LTMyYzAtMTcuNy0xNC4zLTMyLTMyLTMyek03MzEuMyA4NDBIMjkyLjdsLTI0LjItNTEyaDQ4N2wtMjQuMiA1MTJ6IiAvPjwvc3ZnPg==) */ - -/**![double-left](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI3Mi45IDUxMmwyNjUuNC0zMzkuMWM0LjEtNS4yLjQtMTIuOS02LjMtMTIuOWgtNzcuM2MtNC45IDAtOS42IDIuMy0xMi42IDYuMUwxODYuOCA0OTIuM2EzMS45OSAzMS45OSAwIDAwMCAzOS41bDI1NS4zIDMyNi4xYzMgMy45IDcuNyA2LjEgMTIuNiA2LjFINTMyYzYuNyAwIDEwLjQtNy43IDYuMy0xMi45TDI3Mi45IDUxMnptMzA0IDBsMjY1LjQtMzM5LjFjNC4xLTUuMi40LTEyLjktNi4zLTEyLjloLTc3LjNjLTQuOSAwLTkuNiAyLjMtMTIuNiA2LjFMNDkwLjggNDkyLjNhMzEuOTkgMzEuOTkgMCAwMDAgMzkuNWwyNTUuMyAzMjYuMWMzIDMuOSA3LjcgNi4xIDEyLjYgNi4xSDgzNmM2LjcgMCAxMC40LTcuNyA2LjMtMTIuOUw1NzYuOSA1MTJ6IiAvPjwvc3ZnPg==) */ - -/**![double-right](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUzMy4yIDQ5Mi4zTDI3Ny45IDE2Ni4xYy0zLTMuOS03LjctNi4xLTEyLjYtNi4xSDE4OGMtNi43IDAtMTAuNCA3LjctNi4zIDEyLjlMNDQ3LjEgNTEyIDE4MS43IDg1MS4xQTcuOTggNy45OCAwIDAwMTg4IDg2NGg3Ny4zYzQuOSAwIDkuNi0yLjMgMTIuNi02LjFsMjU1LjMtMzI2LjFjOS4xLTExLjcgOS4xLTI3LjkgMC0zOS41em0zMDQgMEw1ODEuOSAxNjYuMWMtMy0zLjktNy43LTYuMS0xMi42LTYuMUg0OTJjLTYuNyAwLTEwLjQgNy43LTYuMyAxMi45TDc1MS4xIDUxMiA0ODUuNyA4NTEuMUE3Ljk4IDcuOTggMCAwMDQ5MiA4NjRoNzcuM2M0LjkgMCA5LjYtMi4zIDEyLjYtNi4xbDI1NS4zLTMyNi4xYzkuMS0xMS43IDkuMS0yNy45IDAtMzkuNXoiIC8+PC9zdmc+) */ - -/**![down](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg4NCAyNTZoLTc1Yy01LjEgMC05LjkgMi41LTEyLjkgNi42TDUxMiA2NTQuMiAyMjcuOSAyNjIuNmMtMy00LjEtNy44LTYuNi0xMi45LTYuNmgtNzVjLTYuNSAwLTEwLjMgNy40LTYuNSAxMi43bDM1Mi42IDQ4Ni4xYzEyLjggMTcuNiAzOSAxNy42IDUxLjcgMGwzNTIuNi00ODYuMWMzLjktNS4zLjEtMTIuNy02LjQtMTIuN3oiIC8+PC9zdmc+) */ - -/**![download](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUwNS43IDY2MWE4IDggMCAwMDEyLjYgMGwxMTItMTQxLjdjNC4xLTUuMi40LTEyLjktNi4zLTEyLjloLTc0LjFWMTY4YzAtNC40LTMuNi04LTgtOGgtNjBjLTQuNCAwLTggMy42LTggOHYzMzguM0g0MDBjLTYuNyAwLTEwLjQgNy43LTYuMyAxMi45bDExMiAxNDEuOHpNODc4IDYyNmgtNjBjLTQuNCAwLTggMy42LTggOHYxNTRIMjE0VjYzNGMwLTQuNC0zLjYtOC04LThoLTYwYy00LjQgMC04IDMuNi04IDh2MTk4YzAgMTcuNyAxNC4zIDMyIDMyIDMyaDY4NGMxNy43IDAgMzItMTQuMyAzMi0zMlY2MzRjMC00LjQtMy42LTgtOC04eiIgLz48L3N2Zz4=) */ - -/**![edit](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTI1Ny43IDc1MmMyIDAgNC0uMiA2LS41TDQzMS45IDcyMmMyLS40IDMuOS0xLjMgNS4zLTIuOGw0MjMuOS00MjMuOWE5Ljk2IDkuOTYgMCAwMDAtMTQuMUw2OTQuOSAxMTQuOWMtMS45LTEuOS00LjQtMi45LTcuMS0yLjlzLTUuMiAxLTcuMSAyLjlMMjU2LjggNTM4LjhjLTEuNSAxLjUtMi40IDMuMy0yLjggNS4zbC0yOS41IDE2OC4yYTMzLjUgMzMuNSAwIDAwOS40IDI5LjhjNi42IDYuNCAxNC45IDkuOSAyMy44IDkuOXptNjcuNC0xNzQuNEw2ODcuOCAyMTVsNzMuMyA3My4zLTM2Mi43IDM2Mi42LTg4LjkgMTUuNyAxNS42LTg5ek04ODAgODM2SDE0NGMtMTcuNyAwLTMyIDE0LjMtMzIgMzJ2MzZjMCA0LjQgMy42IDggOCA4aDc4NGM0LjQgMCA4LTMuNiA4LTh2LTM2YzAtMTcuNy0xNC4zLTMyLTMyLTMyeiIgLz48L3N2Zz4=) */ - -/**![ellipsis](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE3NiA1MTFhNTYgNTYgMCAxMDExMiAwIDU2IDU2IDAgMTAtMTEyIDB6bTI4MCAwYTU2IDU2IDAgMTAxMTIgMCA1NiA1NiAwIDEwLTExMiAwem0yODAgMGE1NiA1NiAwIDEwMTEyIDAgNTYgNTYgMCAxMC0xMTIgMHoiIC8+PC9zdmc+) */ - -/**![enter](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg2NCAxNzBoLTYwYy00LjQgMC04IDMuNi04IDh2NTE4SDMxMHYtNzNjMC02LjctNy44LTEwLjUtMTMtNi4zbC0xNDEuOSAxMTJhOCA4IDAgMDAwIDEyLjZsMTQxLjkgMTEyYzUuMyA0LjIgMTMgLjQgMTMtNi4zdi03NWg0OThjMzUuMyAwIDY0LTI4LjcgNjQtNjRWMTc4YzAtNC40LTMuNi04LTgtOHoiIC8+PC9zdmc+) */ - -/**![exclamation-circle](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUxMiA2NEMyNjQuNiA2NCA2NCAyNjQuNiA2NCA1MTJzMjAwLjYgNDQ4IDQ0OCA0NDggNDQ4LTIwMC42IDQ0OC00NDhTNzU5LjQgNjQgNTEyIDY0em0tMzIgMjMyYzAtNC40IDMuNi04IDgtOGg0OGM0LjQgMCA4IDMuNiA4IDh2MjcyYzAgNC40LTMuNiA4LTggOGgtNDhjLTQuNCAwLTgtMy42LTgtOFYyOTZ6bTMyIDQ0MGE0OC4wMSA0OC4wMSAwIDAxMC05NiA0OC4wMSA0OC4wMSAwIDAxMCA5NnoiIC8+PC9zdmc+) */ - -/**![eye-invisible](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTk0Mi4yIDQ4Ni4yUTg4OS40NyAzNzUuMTEgODE2LjcgMzA1bC01MC44OCA1MC44OEM4MDcuMzEgMzk1LjUzIDg0My40NSA0NDcuNCA4NzQuNyA1MTIgNzkxLjUgNjg0LjIgNjczLjQgNzY2IDUxMiA3NjZxLTcyLjY3IDAtMTMzLjg3LTIyLjM4TDMyMyA3OTguNzVRNDA4IDgzOCA1MTIgODM4cTI4OC4zIDAgNDMwLjItMzAwLjNhNjAuMjkgNjAuMjkgMCAwMDAtNTEuNXptLTYzLjU3LTMyMC42NEw4MzYgMTIyLjg4YTggOCAwIDAwLTExLjMyIDBMNzE1LjMxIDIzMi4yUTYyNC44NiAxODYgNTEyIDE4NnEtMjg4LjMgMC00MzAuMiAzMDAuM2E2MC4zIDYwLjMgMCAwMDAgNTEuNXE1Ni42OSAxMTkuNCAxMzYuNSAxOTEuNDFMMTEyLjQ4IDgzNWE4IDggMCAwMDAgMTEuMzFMMTU1LjE3IDg4OWE4IDggMCAwMDExLjMxIDBsNzEyLjE1LTcxMi4xMmE4IDggMCAwMDAtMTEuMzJ6TTE0OS4zIDUxMkMyMzIuNiAzMzkuOCAzNTAuNyAyNTggNTEyIDI1OGM1NC41NCAwIDEwNC4xMyA5LjM2IDE0OS4xMiAyOC4zOWwtNzAuMyA3MC4zYTE3NiAxNzYgMCAwMC0yMzguMTMgMjM4LjEzbC04My40MiA4My40MkMyMjMuMSA2MzcuNDkgMTgzLjMgNTgyLjI4IDE0OS4zIDUxMnptMjQ2LjcgMGExMTIuMTEgMTEyLjExIDAgMDExNDYuMi0xMDYuNjlMNDAxLjMxIDU0Ni4yQTExMiAxMTIgMCAwMTM5NiA1MTJ6IiAvPjxwYXRoIGQ9Ik01MDggNjI0Yy0zLjQ2IDAtNi44Ny0uMTYtMTAuMjUtLjQ3bC01Mi44MiA1Mi44MmExNzYuMDkgMTc2LjA5IDAgMDAyMjcuNDItMjI3LjQybC01Mi44MiA1Mi44MmMuMzEgMy4zOC40NyA2Ljc5LjQ3IDEwLjI1YTExMS45NCAxMTEuOTQgMCAwMS0xMTIgMTEyeiIgLz48L3N2Zz4=) */ - -/**![eye](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTk0Mi4yIDQ4Ni4yQzg0Ny40IDI4Ni41IDcwNC4xIDE4NiA1MTIgMTg2Yy0xOTIuMiAwLTMzNS40IDEwMC41LTQzMC4yIDMwMC4zYTYwLjMgNjAuMyAwIDAwMCA1MS41QzE3Ni42IDczNy41IDMxOS45IDgzOCA1MTIgODM4YzE5Mi4yIDAgMzM1LjQtMTAwLjUgNDMwLjItMzAwLjMgNy43LTE2LjIgNy43LTM1IDAtNTEuNXpNNTEyIDc2NmMtMTYxLjMgMC0yNzkuNC04MS44LTM2Mi43LTI1NEMyMzIuNiAzMzkuOCAzNTAuNyAyNTggNTEyIDI1OGMxNjEuMyAwIDI3OS40IDgxLjggMzYyLjcgMjU0Qzc5MS41IDY4NC4yIDY3My40IDc2NiA1MTIgNzY2em0tNC00MzBjLTk3LjIgMC0xNzYgNzguOC0xNzYgMTc2czc4LjggMTc2IDE3NiAxNzYgMTc2LTc4LjggMTc2LTE3Ni03OC44LTE3Ni0xNzYtMTc2em0wIDI4OGMtNjEuOSAwLTExMi01MC4xLTExMi0xMTJzNTAuMS0xMTIgMTEyLTExMiAxMTIgNTAuMSAxMTIgMTEyLTUwLjEgMTEyLTExMiAxMTJ6IiAvPjwvc3ZnPg==) */ - -/**![file-text](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg1NC42IDI4OC42TDYzOS40IDczLjRjLTYtNi0xNC4xLTkuNC0yMi42LTkuNEgxOTJjLTE3LjcgMC0zMiAxNC4zLTMyIDMydjgzMmMwIDE3LjcgMTQuMyAzMiAzMiAzMmg2NDBjMTcuNyAwIDMyLTE0LjMgMzItMzJWMzExLjNjMC04LjUtMy40LTE2LjctOS40LTIyLjd6TTc5MC4yIDMyNkg2MDJWMTM3LjhMNzkwLjIgMzI2em0xLjggNTYySDIzMlYxMzZoMzAydjIxNmE0MiA0MiAwIDAwNDIgNDJoMjE2djQ5NHpNNTA0IDYxOEgzMjBjLTQuNCAwLTggMy42LTggOHY0OGMwIDQuNCAzLjYgOCA4IDhoMTg0YzQuNCAwIDgtMy42IDgtOHYtNDhjMC00LjQtMy42LTgtOC04ek0zMTIgNDkwdjQ4YzAgNC40IDMuNiA4IDggOGgzODRjNC40IDAgOC0zLjYgOC04di00OGMwLTQuNC0zLjYtOC04LThIMzIwYy00LjQgMC04IDMuNi04IDh6IiAvPjwvc3ZnPg==) */ - -/**![file](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUzNCAzNTJWMTM2SDIzMnY3NTJoNTYwVjM5NEg1NzZhNDIgNDIgMCAwMS00Mi00MnoiIGZpbGw9IiNlNmY0ZmYiIC8+PHBhdGggZD0iTTg1NC42IDI4OC42TDYzOS40IDczLjRjLTYtNi0xNC4xLTkuNC0yMi42LTkuNEgxOTJjLTE3LjcgMC0zMiAxNC4zLTMyIDMydjgzMmMwIDE3LjcgMTQuMyAzMiAzMiAzMmg2NDBjMTcuNyAwIDMyLTE0LjMgMzItMzJWMzExLjNjMC04LjUtMy40LTE2LjctOS40LTIyLjd6TTYwMiAxMzcuOEw3OTAuMiAzMjZINjAyVjEzNy44ek03OTIgODg4SDIzMlYxMzZoMzAydjIxNmE0MiA0MiAwIDAwNDIgNDJoMjE2djQ5NHoiIGZpbGw9IiMxNjc3ZmYiIC8+PC9zdmc+) */ - -/**![file](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg1NC42IDI4OC42TDYzOS40IDczLjRjLTYtNi0xNC4xLTkuNC0yMi42LTkuNEgxOTJjLTE3LjcgMC0zMiAxNC4zLTMyIDMydjgzMmMwIDE3LjcgMTQuMyAzMiAzMiAzMmg2NDBjMTcuNyAwIDMyLTE0LjMgMzItMzJWMzExLjNjMC04LjUtMy40LTE2LjctOS40LTIyLjd6TTc5MC4yIDMyNkg2MDJWMTM3LjhMNzkwLjIgMzI2em0xLjggNTYySDIzMlYxMzZoMzAydjIxNmE0MiA0MiAwIDAwNDIgNDJoMjE2djQ5NHoiIC8+PC9zdmc+) */ - -/**![filter](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTM0OSA4MzhjMCAxNy43IDE0LjIgMzIgMzEuOCAzMmgyNjIuNGMxNy42IDAgMzEuOC0xNC4zIDMxLjgtMzJWNjQySDM0OXYxOTZ6bTUzMS4xLTY4NEgxNDMuOWMtMjQuNSAwLTM5LjggMjYuNy0yNy41IDQ4bDIyMS4zIDM3NmgzNDguOGwyMjEuMy0zNzZjMTIuMS0yMS4zLTMuMi00OC0yNy43LTQ4eiIgLz48L3N2Zz4=) */ - -/**![folder-open](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkyOCA0NDRIODIwVjMzMC40YzAtMTcuNy0xNC4zLTMyLTMyLTMySDQ3M0wzNTUuNyAxODYuMmE4LjE1IDguMTUgMCAwMC01LjUtMi4ySDk2Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnY1OTJjMCAxNy43IDE0LjMgMzIgMzIgMzJoNjk4YzEzIDAgMjQuOC03LjkgMjkuNy0yMGwxMzQtMzMyYzEuNS0zLjggMi4zLTcuOSAyLjMtMTIgMC0xNy43LTE0LjMtMzItMzItMzJ6TTEzNiAyNTZoMTg4LjVsMTE5LjYgMTE0LjRINzQ4VjQ0NEgyMzhjLTEzIDAtMjQuOCA3LjktMjkuNyAyMEwxMzYgNjQzLjJWMjU2em02MzUuMyA1MTJIMTU5bDEwMy4zLTI1Nmg2MTIuNEw3NzEuMyA3Njh6IiAvPjwvc3ZnPg==) */ - -/**![folder](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg4MCAyOTguNEg1MjFMNDAzLjcgMTg2LjJhOC4xNSA4LjE1IDAgMDAtNS41LTIuMkgxNDRjLTE3LjcgMC0zMiAxNC4zLTMyIDMydjU5MmMwIDE3LjcgMTQuMyAzMiAzMiAzMmg3MzZjMTcuNyAwIDMyLTE0LjMgMzItMzJWMzMwLjRjMC0xNy43LTE0LjMtMzItMzItMzJ6TTg0MCA3NjhIMTg0VjI1NmgxODguNWwxMTkuNiAxMTQuNEg4NDBWNzY4eiIgLz48L3N2Zz4=) */ - -/**![holder](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMwMCAyNzYuNWE1NiA1NiAwIDEwNTYtOTcgNTYgNTYgMCAwMC01NiA5N3ptMCAyODRhNTYgNTYgMCAxMDU2LTk3IDU2IDU2IDAgMDAtNTYgOTd6TTY0MCAyMjhhNTYgNTYgMCAxMDExMiAwIDU2IDU2IDAgMDAtMTEyIDB6bTAgMjg0YTU2IDU2IDAgMTAxMTIgMCA1NiA1NiAwIDAwLTExMiAwek0zMDAgODQ0LjVhNTYgNTYgMCAxMDU2LTk3IDU2IDU2IDAgMDAtNTYgOTd6TTY0MCA3OTZhNTYgNTYgMCAxMDExMiAwIDU2IDU2IDAgMDAtMTEyIDB6IiAvPjwvc3ZnPg==) */ - -/**![info-circle](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUxMiA2NEMyNjQuNiA2NCA2NCAyNjQuNiA2NCA1MTJzMjAwLjYgNDQ4IDQ0OCA0NDggNDQ4LTIwMC42IDQ0OC00NDhTNzU5LjQgNjQgNTEyIDY0em0zMiA2NjRjMCA0LjQtMy42IDgtOCA4aC00OGMtNC40IDAtOC0zLjYtOC04VjQ1NmMwLTQuNCAzLjYtOCA4LThoNDhjNC40IDAgOCAzLjYgOCA4djI3MnptLTMyLTM0NGE0OC4wMSA0OC4wMSAwIDAxMC05NiA0OC4wMSA0OC4wMSAwIDAxMCA5NnoiIC8+PC9zdmc+) */ - -/**![left](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTcyNCAyMTguM1YxNDFjMC02LjctNy43LTEwLjQtMTIuOS02LjNMMjYwLjMgNDg2LjhhMzEuODYgMzEuODYgMCAwMDAgNTAuM2w0NTAuOCAzNTIuMWM1LjMgNC4xIDEyLjkuNCAxMi45LTYuM3YtNzcuM2MwLTQuOS0yLjMtOS42LTYuMS0xMi42bC0zNjAtMjgxIDM2MC0yODEuMWMzLjgtMyA2LjEtNy43IDYuMS0xMi42eiIgLz48L3N2Zz4=) */ - -/**![loading](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTk4OCA1NDhjLTE5LjkgMC0zNi0xNi4xLTM2LTM2IDAtNTkuNC0xMS42LTExNy0zNC42LTE3MS4zYTQ0MC40NSA0NDAuNDUgMCAwMC05NC4zLTEzOS45IDQzNy43MSA0MzcuNzEgMCAwMC0xMzkuOS05NC4zQzYyOSA4My42IDU3MS40IDcyIDUxMiA3MmMtMTkuOSAwLTM2LTE2LjEtMzYtMzZzMTYuMS0zNiAzNi0zNmM2OS4xIDAgMTM2LjIgMTMuNSAxOTkuMyA0MC4zQzc3Mi4zIDY2IDgyNyAxMDMgODc0IDE1MGM0NyA0NyA4My45IDEwMS44IDEwOS43IDE2Mi43IDI2LjcgNjMuMSA0MC4yIDEzMC4yIDQwLjIgMTk5LjMuMSAxOS45LTE2IDM2LTM1LjkgMzZ6IiAvPjwvc3ZnPg==) */ - -/**![minus-square](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMyOCA1NDRoMzY4YzQuNCAwIDgtMy42IDgtOHYtNDhjMC00LjQtMy42LTgtOC04SDMyOGMtNC40IDAtOCAzLjYtOCA4djQ4YzAgNC40IDMuNiA4IDggOHoiIC8+PHBhdGggZD0iTTg4MCAxMTJIMTQ0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnY3MzZjMCAxNy43IDE0LjMgMzIgMzIgMzJoNzM2YzE3LjcgMCAzMi0xNC4zIDMyLTMyVjE0NGMwLTE3LjctMTQuMy0zMi0zMi0zMnptLTQwIDcyOEgxODRWMTg0aDY1NnY2NTZ6IiAvPjwvc3ZnPg==) */ - -/**![paper-clip](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTc3OS4zIDE5Ni42Yy05NC4yLTk0LjItMjQ3LjYtOTQuMi0zNDEuNyAwbC0yNjEgMjYwLjhjLTEuNyAxLjctMi42IDQtMi42IDYuNHMuOSA0LjcgMi42IDYuNGwzNi45IDM2LjlhOSA5IDAgMDAxMi43IDBsMjYxLTI2MC44YzMyLjQtMzIuNCA3NS41LTUwLjIgMTIxLjMtNTAuMnM4OC45IDE3LjggMTIxLjIgNTAuMmMzMi40IDMyLjQgNTAuMiA3NS41IDUwLjIgMTIxLjIgMCA0NS44LTE3LjggODguOC01MC4yIDEyMS4ybC0yNjYgMjY1LjktNDMuMSA0My4xYy00MC4zIDQwLjMtMTA1LjggNDAuMy0xNDYuMSAwLTE5LjUtMTkuNS0zMC4yLTQ1LjQtMzAuMi03M3MxMC43LTUzLjUgMzAuMi03M2wyNjMuOS0yNjMuOGM2LjctNi42IDE1LjUtMTAuMyAyNC45LTEwLjNoLjFjOS40IDAgMTguMSAzLjcgMjQuNyAxMC4zIDYuNyA2LjcgMTAuMyAxNS41IDEwLjMgMjQuOSAwIDkuMy0zLjcgMTguMS0xMC4zIDI0LjdMMzcyLjQgNjUzYy0xLjcgMS43LTIuNiA0LTIuNiA2LjRzLjkgNC43IDIuNiA2LjRsMzYuOSAzNi45YTkgOSAwIDAwMTIuNyAwbDIxNS42LTIxNS42YzE5LjktMTkuOSAzMC44LTQ2LjMgMzAuOC03NC40cy0xMS01NC42LTMwLjgtNzQuNGMtNDEuMS00MS4xLTEwNy45LTQxLTE0OSAwTDQ2MyAzNjQgMjI0LjggNjAyLjFBMTcyLjIyIDE3Mi4yMiAwIDAwMTc0IDcyNC44YzAgNDYuMyAxOC4xIDg5LjggNTAuOCAxMjIuNSAzMy45IDMzLjggNzguMyA1MC43IDEyMi43IDUwLjcgNDQuNCAwIDg4LjgtMTYuOSAxMjIuNi01MC43bDMwOS4yLTMwOUM4MjQuOCA0OTIuNyA4NTAgNDMyIDg1MCAzNjcuNWMuMS02NC42LTI1LjEtMTI1LjMtNzAuNy0xNzAuOXoiIC8+PC9zdmc+) */ - -/**![picture](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkyOCAxNjBIOTZjLTE3LjcgMC0zMiAxNC4zLTMyIDMydjY0MGMwIDE3LjcgMTQuMyAzMiAzMiAzMmg4MzJjMTcuNyAwIDMyLTE0LjMgMzItMzJWMTkyYzAtMTcuNy0xNC4zLTMyLTMyLTMyem0tNDAgNjMySDEzNnYtMzkuOWwxMzguNS0xNjQuMyAxNTAuMSAxNzhMNjU4LjEgNDg5IDg4OCA3NjEuNlY3OTJ6bTAtMTI5LjhMNjY0LjIgMzk2LjhjLTMuMi0zLjgtOS0zLjgtMTIuMiAwTDQyNC42IDY2Ni40bC0xNDQtMTcwLjdjLTMuMi0zLjgtOS0zLjgtMTIuMiAwTDEzNiA2NTIuN1YyMzJoNzUydjQzMC4yeiIgZmlsbD0iIzE2NzdmZiIgLz48cGF0aCBkPSJNNDI0LjYgNzY1LjhsLTE1MC4xLTE3OEwxMzYgNzUyLjFWNzkyaDc1MnYtMzAuNEw2NTguMSA0ODl6IiBmaWxsPSIjZTZmNGZmIiAvPjxwYXRoIGQ9Ik0xMzYgNjUyLjdsMTMyLjQtMTU3YzMuMi0zLjggOS0zLjggMTIuMiAwbDE0NCAxNzAuN0w2NTIgMzk2LjhjMy4yLTMuOCA5LTMuOCAxMi4yIDBMODg4IDY2Mi4yVjIzMkgxMzZ2NDIwLjd6TTMwNCAyODBhODggODggMCAxMTAgMTc2IDg4IDg4IDAgMDEwLTE3NnoiIGZpbGw9IiNlNmY0ZmYiIC8+PHBhdGggZD0iTTI3NiAzNjhhMjggMjggMCAxMDU2IDAgMjggMjggMCAxMC01NiAweiIgZmlsbD0iI2U2ZjRmZiIgLz48cGF0aCBkPSJNMzA0IDQ1NmE4OCA4OCAwIDEwMC0xNzYgODggODggMCAwMDAgMTc2em0wLTExNmMxNS41IDAgMjggMTIuNSAyOCAyOHMtMTIuNSAyOC0yOCAyOC0yOC0xMi41LTI4LTI4IDEyLjUtMjggMjgtMjh6IiBmaWxsPSIjMTY3N2ZmIiAvPjwvc3ZnPg==) */ - -/**![plus-square](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTMyOCA1NDRoMTUydjE1MmMwIDQuNCAzLjYgOCA4IDhoNDhjNC40IDAgOC0zLjYgOC04VjU0NGgxNTJjNC40IDAgOC0zLjYgOC04di00OGMwLTQuNC0zLjYtOC04LThINTQ0VjMyOGMwLTQuNC0zLjYtOC04LThoLTQ4Yy00LjQgMC04IDMuNi04IDh2MTUySDMyOGMtNC40IDAtOCAzLjYtOCA4djQ4YzAgNC40IDMuNiA4IDggOHoiIC8+PHBhdGggZD0iTTg4MCAxMTJIMTQ0Yy0xNy43IDAtMzIgMTQuMy0zMiAzMnY3MzZjMCAxNy43IDE0LjMgMzIgMzIgMzJoNzM2YzE3LjcgMCAzMi0xNC4zIDMyLTMyVjE0NGMwLTE3LjctMTQuMy0zMi0zMi0zMnptLTQwIDcyOEgxODRWMTg0aDY1NnY2NTZ6IiAvPjwvc3ZnPg==) */ - -/**![plus](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTQ4MiAxNTJoNjBxOCAwIDggOHY3MDRxMCA4LTggOGgtNjBxLTggMC04LThWMTYwcTAtOCA4LTh6IiAvPjxwYXRoIGQ9Ik0xOTIgNDc0aDY3MnE4IDAgOCA4djYwcTAgOC04IDhIMTYwcS04IDAtOC04di02MHEwLTggOC04eiIgLz48L3N2Zz4=) */ - -/**![question-circle](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUxMiA2NEMyNjQuNiA2NCA2NCAyNjQuNiA2NCA1MTJzMjAwLjYgNDQ4IDQ0OCA0NDggNDQ4LTIwMC42IDQ0OC00NDhTNzU5LjQgNjQgNTEyIDY0em0wIDgyMGMtMjA1LjQgMC0zNzItMTY2LjYtMzcyLTM3MnMxNjYuNi0zNzIgMzcyLTM3MiAzNzIgMTY2LjYgMzcyIDM3Mi0xNjYuNiAzNzItMzcyIDM3MnoiIC8+PHBhdGggZD0iTTYyMy42IDMxNi43QzU5My42IDI5MC40IDU1NCAyNzYgNTEyIDI3NnMtODEuNiAxNC41LTExMS42IDQwLjdDMzY5LjIgMzQ0IDM1MiAzODAuNyAzNTIgNDIwdjcuNmMwIDQuNCAzLjYgOCA4IDhoNDhjNC40IDAgOC0zLjYgOC04VjQyMGMwLTQ0LjEgNDMuMS04MCA5Ni04MHM5NiAzNS45IDk2IDgwYzAgMzEuMS0yMiA1OS42LTU2LjEgNzIuNy0yMS4yIDguMS0zOS4yIDIyLjMtNTIuMSA0MC45LTEzLjEgMTktMTkuOSA0MS44LTE5LjkgNjQuOVY2MjBjMCA0LjQgMy42IDggOCA4aDQ4YzQuNCAwIDgtMy42IDgtOHYtMjIuN2E0OC4zIDQ4LjMgMCAwMTMwLjktNDQuOGM1OS0yMi43IDk3LjEtNzQuNyA5Ny4xLTEzMi41LjEtMzkuMy0xNy4xLTc2LTQ4LjMtMTAzLjN6TTQ3MiA3MzJhNDAgNDAgMCAxMDgwIDAgNDAgNDAgMCAxMC04MCAweiIgLz48L3N2Zz4=) */ - -/**![reload](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkwOS4xIDIwOS4zbC01Ni40IDQ0LjFDNzc1LjggMTU1LjEgNjU2LjIgOTIgNTIxLjkgOTIgMjkwIDkyIDEwMi4zIDI3OS41IDEwMiA1MTEuNSAxMDEuNyA3NDMuNyAyODkuOCA5MzIgNTIxLjkgOTMyYzE4MS4zIDAgMzM1LjgtMTE1IDM5NC42LTI3Ni4xIDEuNS00LjItLjctOC45LTQuOS0xMC4zbC01Ni43LTE5LjVhOCA4IDAgMDAtMTAuMSA0LjhjLTEuOCA1LTMuOCAxMC01LjkgMTQuOS0xNy4zIDQxLTQyLjEgNzcuOC03My43IDEwOS40QTM0NC43NyAzNDQuNzcgMCAwMTY1NS45IDgyOWMtNDIuMyAxNy45LTg3LjQgMjctMTMzLjggMjctNDYuNSAwLTkxLjUtOS4xLTEzMy44LTI3QTM0MS41IDM0MS41IDAgMDEyNzkgNzU1LjJhMzQyLjE2IDM0Mi4xNiAwIDAxLTczLjctMTA5LjRjLTE3LjktNDIuNC0yNy04Ny40LTI3LTEzMy45czkuMS05MS41IDI3LTEzMy45YzE3LjMtNDEgNDIuMS03Ny44IDczLjctMTA5LjQgMzEuNi0zMS42IDY4LjQtNTYuNCAxMDkuMy03My44IDQyLjMtMTcuOSA4Ny40LTI3IDEzMy44LTI3IDQ2LjUgMCA5MS41IDkuMSAxMzMuOCAyN2EzNDEuNSAzNDEuNSAwIDAxMTA5LjMgNzMuOGM5LjkgOS45IDE5LjIgMjAuNCAyNy44IDMxLjRsLTYwLjIgNDdhOCA4IDAgMDAzIDE0LjFsMTc1LjYgNDNjNSAxLjIgOS45LTIuNiA5LjktNy43bC44LTE4MC45Yy0uMS02LjYtNy44LTEwLjMtMTMtNi4yeiIgLz48L3N2Zz4=) */ - -/**![right](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTc2NS43IDQ4Ni44TDMxNC45IDEzNC43QTcuOTcgNy45NyAwIDAwMzAyIDE0MXY3Ny4zYzAgNC45IDIuMyA5LjYgNi4xIDEyLjZsMzYwIDI4MS4xLTM2MCAyODEuMWMtMy45IDMtNi4xIDcuNy02LjEgMTIuNlY4ODNjMCA2LjcgNy43IDEwLjQgMTIuOSA2LjNsNDUwLjgtMzUyLjFhMzEuOTYgMzEuOTYgMCAwMDAtNTAuNHoiIC8+PC9zdmc+) */ - -/**![rotate-left](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHN0eWxlIC8+PC9kZWZzPjxwYXRoIGQ9Ik02NzIgNDE4SDE0NGMtMTcuNyAwLTMyIDE0LjMtMzIgMzJ2NDE0YzAgMTcuNyAxNC4zIDMyIDMyIDMyaDUyOGMxNy43IDAgMzItMTQuMyAzMi0zMlY0NTBjMC0xNy43LTE0LjMtMzItMzItMzJ6bS00NCA0MDJIMTg4VjQ5NGg0NDB2MzI2eiIgLz48cGF0aCBkPSJNODE5LjMgMzI4LjVjLTc4LjgtMTAwLjctMTk2LTE1My42LTMxNC42LTE1NC4ybC0uMi02NGMwLTYuNS03LjYtMTAuMS0xMi42LTYuMWwtMTI4IDEwMWMtNCAzLjEtMy45IDkuMSAwIDEyLjNMNDkyIDMxOC42YzUuMSA0IDEyLjcuNCAxMi42LTYuMXYtNjMuOWMxMi45LjEgMjUuOS45IDM4LjggMi41IDQyLjEgNS4yIDgyLjEgMTguMiAxMTkgMzguNyAzOC4xIDIxLjIgNzEuMiA0OS43IDk4LjQgODQuMyAyNy4xIDM0LjcgNDYuNyA3My43IDU4LjEgMTE1LjhhMzI1Ljk1IDMyNS45NSAwIDAxNi41IDE0MC45aDc0LjljMTQuOC0xMDMuNi0xMS4zLTIxMy04MS0zMDIuM3oiIC8+PC9zdmc+) */ - -/**![rotate-right](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHN0eWxlIC8+PC9kZWZzPjxwYXRoIGQ9Ik00ODAuNSAyNTEuMmMxMy0xLjYgMjUuOS0yLjQgMzguOC0yLjV2NjMuOWMwIDYuNSA3LjUgMTAuMSAxMi42IDYuMUw2NjAgMjE3LjZjNC0zLjIgNC05LjIgMC0xMi4zbC0xMjgtMTAxYy01LjEtNC0xMi42LS40LTEyLjYgNi4xbC0uMiA2NGMtMTE4LjYuNS0yMzUuOCA1My40LTMxNC42IDE1NC4yQTM5OS43NSAzOTkuNzUgMCAwMDEyMy41IDYzMWg3NC45Yy0uOS01LjMtMS43LTEwLjctMi40LTE2LjEtNS4xLTQyLjEtMi4xLTg0LjEgOC45LTEyNC44IDExLjQtNDIuMiAzMS04MS4xIDU4LjEtMTE1LjggMjcuMi0zNC43IDYwLjMtNjMuMiA5OC40LTg0LjMgMzctMjAuNiA3Ni45LTMzLjYgMTE5LjEtMzguOHoiIC8+PHBhdGggZD0iTTg4MCA0MThIMzUyYy0xNy43IDAtMzIgMTQuMy0zMiAzMnY0MTRjMCAxNy43IDE0LjMgMzIgMzIgMzJoNTI4YzE3LjcgMCAzMi0xNC4zIDMyLTMyVjQ1MGMwLTE3LjctMTQuMy0zMi0zMi0zMnptLTQ0IDQwMkgzOTZWNDk0aDQ0MHYzMjZ6IiAvPjwvc3ZnPg==) */ - -/**![search](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkwOS42IDg1NC41TDY0OS45IDU5NC44QzY5MC4yIDU0Mi43IDcxMiA0NzkgNzEyIDQxMmMwLTgwLjItMzEuMy0xNTUuNC04Ny45LTIxMi4xLTU2LjYtNTYuNy0xMzItODcuOS0yMTIuMS04Ny45cy0xNTUuNSAzMS4zLTIxMi4xIDg3LjlDMTQzLjIgMjU2LjUgMTEyIDMzMS44IDExMiA0MTJjMCA4MC4xIDMxLjMgMTU1LjUgODcuOSAyMTIuMUMyNTYuNSA2ODAuOCAzMzEuOCA3MTIgNDEyIDcxMmM2NyAwIDEzMC42LTIxLjggMTgyLjctNjJsMjU5LjcgMjU5LjZhOC4yIDguMiAwIDAwMTEuNiAwbDQzLjYtNDMuNWE4LjIgOC4yIDAgMDAwLTExLjZ6TTU3MC40IDU3MC40QzUyOCA2MTIuNyA0NzEuOCA2MzYgNDEyIDYzNnMtMTE2LTIzLjMtMTU4LjQtNjUuNkMyMTEuMyA1MjggMTg4IDQ3MS44IDE4OCA0MTJzMjMuMy0xMTYuMSA2NS42LTE1OC40QzI5NiAyMTEuMyAzNTIuMiAxODggNDEyIDE4OHMxMTYuMSAyMy4yIDE1OC40IDY1LjZTNjM2IDM1Mi4yIDYzNiA0MTJzLTIzLjMgMTE2LjEtNjUuNiAxNTguNHoiIC8+PC9zdmc+) */ - -/**![star](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTkwOC4xIDM1My4xbC0yNTMuOS0zNi45TDU0MC43IDg2LjFjLTMuMS02LjMtOC4yLTExLjQtMTQuNS0xNC41LTE1LjgtNy44LTM1LTEuMy00Mi45IDE0LjVMMzY5LjggMzE2LjJsLTI1My45IDM2LjljLTcgMS0xMy40IDQuMy0xOC4zIDkuM2EzMi4wNSAzMi4wNSAwIDAwLjYgNDUuM2wxODMuNyAxNzkuMS00My40IDI1Mi45YTMxLjk1IDMxLjk1IDAgMDA0Ni40IDMzLjdMNTEyIDc1NGwyMjcuMSAxMTkuNGM2LjIgMy4zIDEzLjQgNC40IDIwLjMgMy4yIDE3LjQtMyAyOS4xLTE5LjUgMjYuMS0zNi45bC00My40LTI1Mi45IDE4My43LTE3OS4xYzUtNC45IDguMy0xMS4zIDkuMy0xOC4zIDIuNy0xNy41LTkuNS0zMy43LTI3LTM2LjN6IiAvPjwvc3ZnPg==) */ - -/**![swap-right](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjAgMCAxMDI0IDEwMjQiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg3My4xIDU5Ni4ybC0xNjQtMjA4QTMyIDMyIDAgMDA2ODQgMzc2aC02NC44Yy02LjcgMC0xMC40IDcuNy02LjMgMTNsMTQ0LjMgMTgzSDE1MmMtNC40IDAtOCAzLjYtOCA4djYwYzAgNC40IDMuNiA4IDggOGg2OTUuOWMyNi44IDAgNDEuNy0zMC44IDI1LjItNTEuOHoiIC8+PC9zdmc+) */ - -/**![swap](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg0Ny45IDU5MkgxNTJjLTQuNCAwLTggMy42LTggOHY2MGMwIDQuNCAzLjYgOCA4IDhoNjA1LjJMNjEyLjkgODUxYy00LjEgNS4yLS40IDEzIDYuMyAxM2g3Mi41YzQuOSAwIDkuNS0yLjIgMTIuNi02LjFsMTY4LjgtMjE0LjFjMTYuNS0yMSAxLjYtNTEuOC0yNS4yLTUxLjh6TTg3MiAzNTZIMjY2LjhsMTQ0LjMtMTgzYzQuMS01LjIuNC0xMy02LjMtMTNoLTcyLjVjLTQuOSAwLTkuNSAyLjItMTIuNiA2LjFMMTUwLjkgMzgwLjJjLTE2LjUgMjEtMS42IDUxLjggMjUuMSA1MS44aDY5NmM0LjQgMCA4LTMuNiA4LTh2LTYwYzAtNC40LTMuNi04LTgtOHoiIC8+PC9zdmc+) */ - -/**![up](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg5MC41IDc1NS4zTDUzNy45IDI2OS4yYy0xMi44LTE3LjYtMzktMTcuNi01MS43IDBMMTMzLjUgNzU1LjNBOCA4IDAgMDAxNDAgNzY4aDc1YzUuMSAwIDkuOS0yLjUgMTIuOS02LjZMNTEyIDM2OS44bDI4NC4xIDM5MS42YzMgNC4xIDcuOCA2LjYgMTIuOSA2LjZoNzVjNi41IDAgMTAuMy03LjQgNi41LTEyLjd6IiAvPjwvc3ZnPg==) */ - -/**![vertical-align-top](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTg1OS45IDE2OEgxNjQuMWMtNC41IDAtOC4xIDMuNi04LjEgOHY2MGMwIDQuNCAzLjYgOCA4LjEgOGg2OTUuOGM0LjUgMCA4LjEtMy42IDguMS04di02MGMwLTQuNC0zLjYtOC04LjEtOHpNNTE4LjMgMzU1YTggOCAwIDAwLTEyLjYgMGwtMTEyIDE0MS43YTcuOTggNy45OCAwIDAwNi4zIDEyLjloNzMuOVY4NDhjMCA0LjQgMy42IDggOCA4aDYwYzQuNCAwIDgtMy42IDgtOFY1MDkuN0g2MjRjNi43IDAgMTAuNC03LjcgNi4zLTEyLjlMNTE4LjMgMzU1eiIgLz48L3N2Zz4=) */ - -/**![warning](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTk1NS43IDg1NmwtNDE2LTcyMGMtNi4yLTEwLjctMTYuOS0xNi0yNy43LTE2cy0yMS42IDUuMy0yNy43IDE2bC00MTYgNzIwQzU2IDg3Ny40IDcxLjQgOTA0IDk2IDkwNGg4MzJjMjQuNiAwIDQwLTI2LjYgMjcuNy00OHpNNDgwIDQxNmMwLTQuNCAzLjYtOCA4LThoNDhjNC40IDAgOCAzLjYgOCA4djE4NGMwIDQuNC0zLjYgOC04IDhoLTQ4Yy00LjQgMC04LTMuNi04LThWNDE2em0zMiAzNTJhNDguMDEgNDguMDEgMCAwMTAtOTYgNDguMDEgNDguMDEgMCAwMTAgOTZ6IiAvPjwvc3ZnPg==) */ - -/**![zoom-in](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYzNyA0NDNINTE5VjMwOWMwLTQuNC0zLjYtOC04LThoLTYwYy00LjQgMC04IDMuNi04IDh2MTM0SDMyNWMtNC40IDAtOCAzLjYtOCA4djYwYzAgNC40IDMuNiA4IDggOGgxMTh2MTM0YzAgNC40IDMuNiA4IDggOGg2MGM0LjQgMCA4LTMuNiA4LThWNTE5aDExOGM0LjQgMCA4LTMuNiA4LTh2LTYwYzAtNC40LTMuNi04LTgtOHptMjg0IDQyNEw3NzUgNzIxYzEyMi4xLTE0OC45IDExMy42LTM2OS41LTI2LTUwOS0xNDgtMTQ4LjEtMzg4LjQtMTQ4LjEtNTM3IDAtMTQ4LjEgMTQ4LjYtMTQ4LjEgMzg5IDAgNTM3IDEzOS41IDEzOS42IDM2MC4xIDE0OC4xIDUwOSAyNmwxNDYgMTQ2YzMuMiAyLjggOC4zIDIuOCAxMSAwbDQzLTQzYzIuOC0yLjcgMi44LTcuOCAwLTExek02OTYgNjk2Yy0xMTguOCAxMTguNy0zMTEuMiAxMTguNy00MzAgMC0xMTguNy0xMTguOC0xMTguNy0zMTEuMiAwLTQzMCAxMTguOC0xMTguNyAzMTEuMi0xMTguNyA0MzAgMCAxMTguNyAxMTguOCAxMTguNyAzMTEuMiAwIDQzMHoiIC8+PC9zdmc+) */ - -/**![zoom-out](data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIGZpbGw9IiNjYWNhY2EiIHZpZXdCb3g9IjY0IDY0IDg5NiA4OTYiIGZvY3VzYWJsZT0iZmFsc2UiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTYzNyA0NDNIMzI1Yy00LjQgMC04IDMuNi04IDh2NjBjMCA0LjQgMy42IDggOCA4aDMxMmM0LjQgMCA4LTMuNiA4LTh2LTYwYzAtNC40LTMuNi04LTgtOHptMjg0IDQyNEw3NzUgNzIxYzEyMi4xLTE0OC45IDExMy42LTM2OS41LTI2LTUwOS0xNDgtMTQ4LjEtMzg4LjQtMTQ4LjEtNTM3IDAtMTQ4LjEgMTQ4LjYtMTQ4LjEgMzg5IDAgNTM3IDEzOS41IDEzOS42IDM2MC4xIDE0OC4xIDUwOSAyNmwxNDYgMTQ2YzMuMiAyLjggOC4zIDIuOCAxMSAwbDQzLTQzYzIuOC0yLjcgMi44LTcuOCAwLTExek02OTYgNjk2Yy0xMTguOCAxMTguNy0zMTEuMiAxMTguNy00MzAgMC0xMTguNy0xMTguOC0xMTguNy0zMTEuMiAwLTQzMCAxMTguOC0xMTguNyAzMTEuMi0xMTguNyA0MzAgMCAxMTguNyAxMTguOCAxMTguNyAzMTEuMiAwIDQzMHoiIC8+PC9zdmc+) */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js deleted file mode 100644 index b5ff4f30f5..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1003.469c1fdb.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1003"],{85750(s,t,i){i.r(t),i.d(t,{default:()=>l});var e=i(74848);i(47867);let l=s=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,e.jsx)("path",{fill:"#cf142b",d:"M0 0h640v480H0z"}),(0,e.jsx)("path",{fill:"#00247d",d:"M0 0h320v160H0z"}),(0,e.jsx)("path",{fill:"#fff",d:"M0 0v17.888L284.224 160H320v-17.888L35.776 0zm320 0v17.888L35.776 160H0v-17.888L284.224 0z"}),(0,e.jsx)("path",{fill:"#fff",d:"M133.333 0v160h53.334V0zM0 53.333v53.334h320V53.333z"}),(0,e.jsx)("path",{fill:"#cf142b",d:"M0 64v32h320V64zM144 0v160h32V0zM0 160l106.667-53.333h23.85L23.85 160zM0 0l106.667 53.333h-23.85L0 11.925zm189.483 53.333L296.15 0H320L213.333 53.333zM320 160l-106.667-53.333h23.85L320 148.075z"}),(0,e.jsx)("path",{fill:"#fff",d:"M553.83 148.26v135.513c0 36.197-72.36 47.957-72.36 47.957s-72.358-11.76-72.358-47.957V148.26h144.72z"}),(0,e.jsx)("path",{fill:"#2f8f22",d:"M553.83 283.773c0 36.197-72.36 47.957-72.36 47.957s-72.358-11.76-72.358-47.957c0 0 0-2.915 1.472-4.573 0 0-.797 6.02 3.828 10.574 0 0-3.628-6.423-.08-12.736 0 0-1.316 8.122 3.748 12.786 0 0-2.79-6.635.36-14.033 0 0-1.556 12.104 3.947 14.517 0 0 1.514-6.956-.678-11.42 0 0 3.787 1.528 3.587 11.62 0 0 1.196-1.487 1.515-8.765 0 0 .16 8.323 3.03 10.253 0 0 .878-.844-.318-4.624s.518-5.105.797-5.025c0 0-.628 4.18 2.877 7.318 0 0-1.52-6.554.594-7.44 0 0-.438 5.55 3.948 6.797 0 0 .32-1.61-.638-3.418 0 0-.837-2.146-.2-3.787 0 0 1.396 5.033 3.31 5.878 0 0-1.157-2.95-.08-5.878 0 0 .24 4.19 3.987 5.918 0 0-2.47-3.243-1.494-6.81l24.102 1.18 12.48.596 37.442-2.647 6.46-5.55s2.55 3.54-1.476 9.13c0 0 3.99-.725 5.265-6.958 0 0 1.634 3.458-.6 7.28 0 0 4.428-4.424 5.065-9.45 0 0 1.715 4.864-2.472 10.092 0 0 3.748-1.247 5.343-6.796 0 0 1.277 3.343-2.352 8.066 0 0 6.78-3.6 6.58-11.04 0 0 2.83 4.1-.4 9.73 0 0 3.47-3.096 3.79-7.72 0 0 1.913 2.09-.16 7.84 0 0 4.226-3.98 4.864-8.283 0 0 .917 3.98-2.71 9.007 0 0 2.47-.603 4.824-5.51 0 0 .638 1.932-1.515 5.47 0 0 2.314-.402 3.868-4.825 0 0 .28 2.654-.398 5.027 0 0 1.794-1.166 2.193-6.193 0 0 1.002 1.648 1.02 3.698.015 2.052-.002.705-.002.705z"}),(0,e.jsx)("path",{fill:"#d40000",stroke:"#000",strokeLinejoin:"round",strokeWidth:.532,d:"M516.57 205.436s-2.516.427-5.745-.557c-3.23-.985-4.535-.585-5.537 0 0 0 1.31-2.596-1.88-4.645 0 0 1.037 2.62-.398 3.843 0 0-.638.6-1.396-.304 0 0-1.116-1.146-2.292-2.03 0 0 2.71-.945 2.213-3.7-.5-2.754-1.974-3.116-2.77-3.457 0 0 .278 1.246 0 2.09 0 0-2.952-1.648 1.055-3.98 4.007-2.333 3.27-3.7 2.552-4.886s-2.253-2.492-3.01-2.955c0 0 .797 1.247.657 2.313-.14 1.065-1.955 1.75-1.596-.12.36-1.87-.02-1.55-.06-3.54 0 0 3.57 1.207 4.965-2.27 0 0 1.374-3.6-3.132-5.39 0 0 1.097 1.468.558 2.574 0 0-.956 1.81-2.093.342s-1.854-1.75-1.734-3.48c0 0 4.086.565 2.97-3.88 0 0-.658 2.957-5.96-1.024 0 0 3.447-3.54 2.112-6.394 0 0-.42-1.307-4.167-.543 0 0 3.25-2.05 1.874-3.8 0 0-.7-1.165-3.73.362 0 0 1.177-2.03-1.794-4.222 0 0-1.993 1.046-3.05 2.01 0 0-2.033-2.573-3.33-3.598 0 0-2.352.905-2.95 3.6 0 0-1.096-1.308-3.588-1.91 0 0-1.196 2.21.36 4.14 0 0-1.158-.04-3.27-.965 0 0-2.413-1.146-2.055.925.36 2.07.538 2.533 1.017 3.498 0 0-5.413-1.257-5.183 1.67.16 2.03.917 3.778 2.592 5.246 0 0-3.032 3.96-5.624.984 0 0-.897.965 1.037 3.498 0 0 1.934 2.13.34 3.48 0 0-2.134 1.707-3.17-1.61 0 0-3.45 3.438.618 6.072 0 0 2.613 1.488 5.284-.805 0 0-.817 6.594-3.37 5.327 0 0-1.535-1.125 1.216-2.472 0 0-3.967-.503-4.605 3.337 0 0-.49 3.055 2.97 4.162 0 0 2.672.965-.1 3.036 0 0-1.954 1.488-.677 3.7 0 0 1.535 2.432-2.353 2.673 0 0-2.113-.02-2.87-.3 0 0-.854 1.584-.258 3.395 0 0-1.936-1.442-6.342.154-4.406 1.597-4.067.47-4.426.954-.36.482-1.217 2.11-1.217 2.11s2.313 2.815 2.352 2.755c.04-.06-.438 3.217-.438 3.217l1.137.543 9.07-4.04 9.212-4.8 7.405.453 4.698 1.118 6.168.45 4.418-2.356h6.4l7.038 3.507 8.034 4.794 4.187.734 3.225-.172v-6.506l-1.57-2.354z"}),(0,e.jsx)("path",{fill:"#d40000",stroke:"#000",strokeLinejoin:"round",strokeWidth:.532,d:"M443.503 213.043s3.51 1.79 4.974-.382c0 0 1.915-3.648-2.288-4.914 0 0 2.287-2.745-.165-5.278 0 0-1.286-1.357-3.53-.36 0 0-.926-1.932-3.11-1.872 0 0-1.913-.03-2.57 2.08 0 0-2.633-1.084-4.098.484 0 0-2.423 2.714.957 4.855l2.432.222 2.392-1.106 2.67.765c.003 0-.685 2.704 2.335 5.508z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#000",strokeWidth:.399,d:"M521.83 206.626c4.227-.398 5.72 3.17 5.72 3.17 2.215 5.198-2.49 7.973-2.49 7.973.36 1.165.4 2.692.4 2.692 6.617.805 5.46 8.244 5.46 8.244l-2.192-1.81c-3.828-1.488-7.775 1.77-10.606 7.238-2.83 5.47-1.475 8.042-.997 14.516.48 6.473 11.005 10.334 11.005 10.334s-4.984 12.827-8.214 21.07-9.968 4.825-11.922 3.09c-1.954-1.738-2.442-.773-3.43 0-.986.77 4.427 4.992-5.422 8.973-9.85 3.98-11.563 7.037-13.198 8.042s-8.453.32-9.13-.524-.28-.844-2.83-2.413c-2.553-1.568-6.86-2.935-11.565-5.227-4.706-2.292-4.586-5.228-4.546-5.83s1.634-5.51-3.876-1.61-10.2-1.856-10.2-1.856c-1.076-1.415-5.662-13.704-5.662-13.704-1.236-4.584-3.668-9.932-3.668-9.932.12-.04-.24.563 3.828-1.77 4.067-2.33 5.888-6.21 7.296-10.05s.04-10.416-.478-11.743c-.52-1.326-3.55-7.41-7.302-8.684-3.752-1.275-6.268 1.89-6.268 1.89s-1.158-7.44 5.46-8.244c0 0 .04-1.527.4-2.693 0 0-4.705-2.776-2.49-7.975 0 0 1.493-3.567 5.72-3.17l-1.022 1.935s-1.065 10.616 14.474 3.5c15.538-7.12 15.072-8.446 23.924-3.982l6.46-.12s9.33-4.317 12.32-2.46 13.756 7.888 13.756 7.888 10.407 3.903 12.44-3.296l-1.156-3.464z"}),(0,e.jsx)("path",{fill:"#fff",stroke:"#00247d",strokeMiterlimit:10,strokeWidth:.532,d:"M475.078 252.65s-.54-3.258-1.107-5.368c0 0-1.153-3.31.815-5.636l2.44-2.807s1.515-2.04 3.393-2.318c0 0 1.877-.056 2.056-.438s2.233-3.76 7.117 0c0 0 1.557-2.493 3.95-2.915 0 0 2.583-.785 3.833 1.145 0 0 2.904-2.202 5.397 1.342 0 0 3.45-1.94 5.96 1.918 0 0 3.41-1.663 5.503 1.88 2.094 3.546 1.675 4.993 1.675 4.993l1.554 5.63 5.504 6.795-12.8 4.825h-5.74l-11.484 3.076-20.395 1.568-5.682-6.695 8.013-6.996z"}),(0,e.jsx)("path",{fill:"#d40000",stroke:"#000",strokeLinejoin:"round",strokeWidth:.532,d:"M457.84 286.547s-3.05.182-4.606.966c-1.555.784-2.75 1.628-4.545 2.774 0 0-.838 1.116-4.367.437 0 0-6.1-1.462-6.1 3.303 0 0-7.298.602-4.307 6.996 0 0 2.033 5.006 6.22 1.448 0 0-2.692 3.86 2.512 5.37 0 0 3.708.904 4.784-2.896 0 0 .6-1.508-.837-3.378 0 0 1.795-.362 3.05-2.292 0 0-3.827 4.838.36 6.58 0 0 5.26 1.32 5.56-4.168 0 0-.428-2.533 1.61-3.438 0 0 4.193-.965 6.107-5.64 0 0-6.028-3.21-5.443-6.06zm-12.32-48.107s-4.704-2.167-6.937 0c0 0-3.11-1.926-6.38 0 0 0-3.11 2.033-5.263 4.27 0 0-1.515 1.3-.957 5.388 0 0 .798 2.883.32 4.33 0 0-1.038-.204-3.11 2.253 0 0-2.633 3.048-4.945.358 0 0 .717 3.744 5.063 3.14 0 0-2.112 1.65-.278 5.912 0 0 1.356 3.016-.797 6.795 0 0 3.788-1.527 3.628-5.99 0 0-.32-3.016.797-5.148 0 0-1.116 1.938 1.476 6.072 0 0 1.993 2.975.36 6.07 0 0 3.747-1.366 3.388-5.91-.358-4.544-2.632-2.654-1.156-6.836 0 0 .36 2.142 1.475 3.222s2.552 2.89 1.954 5.906c0 0 2.233-2.775 1.714-5.63-.517-2.855-1.075-3.718-1.075-3.718l7.057-4.002 3.51-6.353.16-10.13z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.532,d:"M434.796 256.37s-2.91-.2-3.39-2.454m-5.104-1.486s1.014-.04 1.932.884c0 0 .7 1.045 1.697.924"}),(0,e.jsx)("path",{d:"M439.1 247.805s-1.513 0-2.35-.724c0 0-.88-.602-1.397.363 0 0-.797 1.367.678 1.97 0 0 1.835.925-1.076 2.775 0 0 3.47-1.247 2.074-2.935 0 0-1.515-1.086-.957-1.488 0 0 .16-.322.76.08.597.402 1.793.242 2.27-.04z"}),(0,e.jsx)("path",{fill:"#784421",stroke:"#000",strokeWidth:.399,d:"m484.877 256.09 1.784-.603-11.658-40.264-.427.114z"}),(0,e.jsx)("path",{d:"M446.057 300.66s-2.75-1.547-5.024.263c0 0 .232-1.006 1.97-1.448 0 0 .94-2.654 3.572-2.413 0 0-1.076 1.286-2.512 2.373 0 0 1.516.156 1.994 1.224z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M436.368 307.054s-4.366-2.744-2.004-7.358c0 0 .688-1.327 2.004-1.056 0 0 2.72.844.598 4.615 0 0-1.077 2.443-.598 3.8zm8.852 4.343s-6.22-2.834-4.307-7.66c0 0 .592-1.63 1.97-1.508 0 0 2.4.12 1.92 3.317 0 0-.72 3.136.417 5.85z"}),(0,e.jsx)("path",{d:"M443.904 293.39s-1.87 1.38-2.63 2.305c0 0-.76-.945-1.756-1.518 0 0 1.148-.15 1.757.365 0 0 .954-.924 2.63-1.152z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M449.436 310.19s4.874-1.235 3.978-6.272c0 0-.48-2.2-2.542-1.9 0 0-2.487.635-.868 3.836 0 0 .957 2.286-.568 4.337z"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M471.46 203.645s3.14.963 4.845 1.658c0 0 4.545 2.05 10.317 0 0 0 3.903-1.546 4.424-1.658l-2.99 4.553-.15 2.352 1.87 2.744s-1.12.453-4.47-1.598c0 0-3.71-2.865-8.135 0 0 0-2.42 1.64-4.454 1.598l2.87-3.205-1.106-2.888-3.02-3.557z"}),(0,e.jsx)("path",{fill:"#fff",d:"M451.32 304.174s.18-.24-.03-.347c0 0-.21-.09-.36.204 0 0-.507.807-.077 1.912 0 0 .407.765.21 1.565 0 0-.028.226.152.256 0 0 .172-.06.206-.225 0 0 .244-.78-.175-1.544 0 0-.508-1.186.075-1.82z"}),(0,e.jsx)("path",{fill:"#d40000",stroke:"#000",strokeLinejoin:"round",strokeWidth:.532,d:"M518.84 213.043s-3.51 1.79-4.974-.382c0 0-1.914-3.648 2.288-4.914 0 0-2.288-2.745.164-5.278 0 0 1.286-1.357 3.53-.36 0 0 .926-1.932 3.11-1.872 0 0 1.913-.03 2.57 2.08 0 0 2.633-1.084 4.098.484 0 0 2.422 2.714-.957 4.855l-2.433.222-2.393-1.106-2.67.765c-.002 0 .686 2.704-2.334 5.508z"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M491.048 210.21s-.09.723-.807.803c0 0-.748.242-1.184-.69 0 0-.05-.212-.062-.315-.05-.436-.2-1.69 1.156-2.714 0 0 2.214-1.81 6.44.382 0 0 3.35 1.608 5.662 2.975 0 0 5.98 3.218 6.7 3.46 0 0 2.63 1.326 6.658 1.487 0 0 5.502.402 7.834-3.458 0 0 1.775-2.936 0-4.806 0 0-.717-.844-1.897-.69-.495.067-1.043.295-1.57.91 0 0-.858 1.248.138 2.173 0 0 1.296.794 1.754-.884 0 0 .02-.12.06.03.025.097.318 1.377-.37 2.462 0 0-3.32 5.024-12.45-.182l-12.042-6.754s-6.04-3.097-9.65 1.748c0 0-2.91 4.02.838 6.655 0 0 2.79 1.668 4.545-.985 0 0 1.457-2.614-.836-3.76 0 0-2.013-.944-2.81 1.066s1.554 2.533 1.773 1.106c0 0 .06-.343.12-.02z"}),(0,e.jsx)("path",{fill:"#e4cb5e",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.399,d:"M443.315 230.937v-7.54c0-.592.004-1.085.9-1.81.898-.723 1.855-1.87 3.23 1.39 0 0 2.692-2.836 3.59-3.258 0 0 1.554-1.328 2.63.602 0 0 1.436-2.172 2.572-2.715 0 0 2.692-1.75 2.81 3.5l2.095-1.932s1.614-1.326 3.41.483c0 0 3.05 2.955 3.468 3.8 0 0 .673.914.725 2.357 0 0-.008 1.623.83 2.528 0 0 .956.844 1.883 1.025 0 0 2.183.06 2.96 2.11 0 0 .36-.355 1.436 9.473v17.912l-12.082 14.415-19.378-5.55-7.716-3.196-1.734-5.668 7.476-4.825 4.068-10.978-1.316-7.72z"}),(0,e.jsx)("path",{fill:"#784421",stroke:"#000",strokeWidth:.399,d:"m496.71 240.446.917-1.367 2.193-1.69s3.35 8.79 3.51 10.708v2.728s5.023 1.282 5.9 9.002l-4.146 7.64-6.5-3.62-1.873-1.366v-22.036z"}),(0,e.jsx)("path",{fill:"#fff",d:"M435.156 300.797s.24-.317.075-.452c0 0-.104-.15-.387.21 0 0-1.32 1.477-.27 3.748 0 0 .12.324.33.218 0 0 .18-.09.014-.36 0 0-.94-1.87.24-3.363z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.532,d:"M454.75 299.314s.198-.683-.28-1.407c0 0-.318-.523-.2-1.207"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"M459.05 221.106s.017 1.885.556 3.273c.538 1.386 2.356 3.785 2.475 5.082"}),(0,e.jsx)("path",{fill:"#d40000",stroke:"#000",strokeLinejoin:"round",strokeWidth:.532,d:"M504.625 286.547s3.05.182 4.605.966 2.75 1.628 4.545 2.774c0 0 .837 1.116 4.366.437 0 0 6.102-1.462 6.102 3.303 0 0 7.297.602 4.306 6.996 0 0-2.033 5.006-6.22 1.448 0 0 2.692 3.86-2.512 5.37 0 0-3.708.904-4.784-2.896 0 0-.6-1.508.837-3.378 0 0-1.796-.362-3.05-2.292 0 0 3.826 4.838-.36 6.58 0 0-5.262 1.32-5.562-4.168 0 0 .43-2.533-1.61-3.438 0 0-4.192-.965-6.106-5.64 0 0 6.028-3.21 5.443-6.06z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"m456.643 229.46 4.978 40.18m-3.828-40.268 5.583 37.453m-4.536-37.627 6.43 37.144"}),(0,e.jsx)("path",{fill:"#784421",stroke:"#000",strokeWidth:.399,d:"m469.01 263.145 1.782-.603-11.66-40.265-.427.115z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"m462.407 227.723 11.775 29.752m-12.562-29.271 11.365 31.08"}),(0,e.jsx)("path",{fill:"#fff",d:"M442.967 308.542s-1.366-1.31-1.176-3.66c0 0 .08-.5-.17-.57 0 0-.268-.112-.307.47 0 0-.38 2.454 1.276 3.86 0 0 .11.142.294.1 0 0 .196-.042.083-.2"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"m462.938 227.32 12.14 27.14m-15.46-25.454 7.446 36.55"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M520.53 256.09c-5.32-3.018-6.485-9.713-6.485-9.713-1.286-6.665 1.316-11.942 1.316-11.942 3.44-7.268 9.333-8.62 9.333-8.62s-5.773 4.005-7.388 9.404c0 0-1.256 4.552-.538 9.046.717 4.493.448 3.347 1.555 6.815z"}),(0,e.jsx)("path",{fill:"#784421",stroke:"#000",strokeWidth:.243,d:"m497.627 239.08-22.347 7.055-1.22 9.955c-5.302 7.682-16.078 9.045-16.078 9.045l8.384 8.927 16.11 3.378 8.452-6.514 7.656-7.077c-.798-3.78-.36-9.39-.36-9.39 0-.945.36-3.157.36-3.157s-1.316-9.087-.957-12.224z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"M474.368 253.59s14.718-4.597 23.494-8.287m-30.559 16.677s18.362-3.32 31.28-10.677l4.746-3.205"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"m503.33 250.826-5.105 3.634s-20.535 9.47-36.17 9.722m36.165-2.992s-15.785 8.127-24.836 8.248"}),(0,e.jsx)("path",{fill:"#d40000",stroke:"#000",strokeLinejoin:"round",strokeWidth:.532,d:"M517.045 238.44s4.705-2.167 6.938 0c0 0 3.11-1.926 6.38 0 0 0 3.11 2.033 5.263 4.27 0 0 1.515 1.3.957 5.388 0 0-.797 2.883-.32 4.33 0 0 1.038-.204 3.112 2.253 0 0 2.63 3.048 4.944.358 0 0-.72 3.744-5.065 3.14 0 0 2.113 1.65.28 5.912 0 0-1.356 3.016.797 6.795 0 0-3.79-1.527-3.63-5.99 0 0 .32-3.016-.796-5.148 0 0 1.116 1.938-1.475 6.072 0 0-1.993 2.975-.358 6.07 0 0-3.748-1.366-3.39-5.91.36-4.544 2.632-2.654 1.157-6.836 0 0-.36 2.14-1.476 3.222-1.117 1.08-2.552 2.89-1.954 5.906 0 0-2.233-2.775-1.715-5.63s1.077-3.718 1.077-3.718l-7.058-4.002-3.51-6.353-.16-10.13z"}),(0,e.jsx)("path",{fill:"#fff",stroke:"#00247d",strokeMiterlimit:10,strokeWidth:.532,d:"M437.1 263.87s.657-3.118 3.648-1.89c0 0 1.017-5.108 6.46-5.29 5.442-.18 5.74 5.31 5.74 5.67 0 0 1.6-2.355 4.27-2.082 0 0 4.602-.27 2.888 7.118l.87.927s3.516-8.254 10.753-6.083c0 0 7.057 2.15 2.452 8.987 0 0 3.483 4.524 6.436 4.1 2.954-.42 5.586-1.325 8.516-6.513s9.75-5.97 11.484-5.67c1.734.302 3.104 1.428 3.387 2.655 0 0 3.61-12.05 16.59-10.157l5.202 2.616 1.974.904-2.94 8.304-7.17 16.2-5.44 1.674-5.682-3.257-1.974 1.058-.16 4.852-7.495 5.395-5.204 2.144-5.742 3.92-1.336 3.506s-3.17-1.336-6.75 0l-1.184-2.9-3.35-3.198-13.01-6.138-2.35-7.58-2.376-1.06-2.66 3.046-3.886.453-5.802-3.92-6.16-17.794z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M493.76 204.88s-4.966-.22-4.787 4.927"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M526.426 259.556c-8.643-2.654-11.005-11.942-11.005-11.942-1.764-6.967 1.077-13.058 1.077-13.058 3.948-9.27 10.627-9.27 10.627-9.27 3.35-.09 3.75 2.776 3.75 2.776.317 2.03-1.108 2.764-1.108 2.764-2.293 1.247-3.738-.442-3.738-.442-.957-1.247-.22-2.352-.22-2.352.588-.825 1.715-.463 1.715-.463.892.275.797 1.39.797 1.39.005.03.025.03.025.03.04-.01.025-.024.025-.024s.2-1.367-1.137-1.508c0 0-2.6-.563-5.65 3.237 0 0-4.018 5.127-4.01 11.762 0 0-.507 12.455 12.472 15.682 0 0-1.406 2.02-3.887 9.317 0 0-2.81 9.38-5.495 14.45 0 0-3.567 7.233-11.522 4.278 0 0-4.735-2.08-4.724-5.52 0 0-.33-3.136 2.512-3.377 0 0 2.782-.21 2.75 2.17 0 0 .076 2.58-2.96 1.992 0 0-1.06-.226-.866-1.267 0 0 .17-.935 1.45-.528 0 0 .04.005.045-.015 0 0 .014-.022-.03-.035 0 0-.496-.222-1.02-.04 0 0-.468.157-.506.89 0 0-.03.587.6.92 0 0 .763.27 1.36.21 0 0 .805 1.624 2.625 2.174 2.534.765 4.62.027 5.898-.992 1.39-1.108 2.288-3.046 2.557-3.52s2.602-5.7 4.356-11.32c0 0 1.535-4.845 2.76-7.378l.48-.994z"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M502.038 283.17s1.614-.22 1.614 1.22c0 0-.098 2.104-2.66 1.644 0 0-2.528-.553-1.63-3.378 0 0 .597-1.99 2.99-1.703 0 0 2.317.105 3.334 3.272 0 0 .777 2.67-.553 4.96-1.486 2.558-5.244 4.238-7.057 4.982 0 0-7.268 2.855-9.435 4.488 0 0-3.324 2.468-1.853 4.765 0 0 .568.875 1.42.875 0 0 .973.045 1.137-.95 0 0 .005-.02-.01-.045 0 0-.015 0-.02.025 0 0-.07.608-.598.834 0 0-.708.356-1.45-.272 0 0-.788-.754-.13-1.925 0 0 .862-1.443 2.87-.59 0 0 1.77.876 1.043 2.756 0 0-.65 1.73-2.782 1.724 0 0-1.607-.053-2.634-1.13-1.603-1.68-1.69-4.954-.277-6.647 0 0 1.336-1.8 4.017-2.895 1.553-.635 4.486-1.91 7.536-3.106 2.144-.84 4.108-1.848 5.383-3.358 0 0 1.137-1.266 1.466-3.438 0 0 .313-1.628-.68-1.985 0 0-.503-.226-1.056-.15 0 0-.014 0-.018.01 0 0-.024.024.032.015z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M502.173 283.16s1.784-.323 2.9 1.8c0 0 .658 1.366.764 2.157m.583-7.584s-1.788.31-.868 2.838c.867 2.384 2.478 3.165 2.956 3.497"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M471.458 210.208s.088.724.806.805c0 0 .75.24 1.186-.69 0 0 .05-.213.062-.316.05-.436.2-1.69-1.157-2.714 0 0-2.213-1.81-6.44.382 0 0-3.35 1.608-5.662 2.976 0 0-5.98 3.217-6.698 3.458 0 0-2.632 1.327-6.66 1.488 0 0-5.502.402-7.834-3.457 0 0-1.773-2.937 0-4.807 0 0 .72-.844 1.9-.688.494.065 1.04.293 1.57.91 0 0 .857 1.247-.14 2.17 0 0-1.296.796-1.754-.883 0 0-.02-.12-.06.03-.026.097-.32 1.377.37 2.463 0 0 3.318 5.023 12.45-.183l12.04-6.754s6.042-3.096 9.65 1.75c0 0 2.91 4.02-.837 6.654 0 0-2.792 1.67-4.546-.985 0 0-1.456-2.614.837-3.76 0 0 2.014-.944 2.812 1.067.797 2.01-1.556 2.533-1.774 1.105 0 0-.06-.343-.12-.022zm-29.482 45.882c5.32-3.018 6.485-9.713 6.485-9.713 1.287-6.665-1.315-11.942-1.315-11.942-3.44-7.268-9.333-8.62-9.333-8.62s5.774 4.005 7.39 9.404c0 0 1.255 4.552.537 9.046-.72 4.493-.45 3.347-1.556 6.815z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M468.746 204.88s4.966-.22 4.786 4.927"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M436.08 259.556c8.643-2.654 11.005-11.942 11.005-11.942 1.764-6.967-1.077-13.058-1.077-13.058-3.947-9.27-10.626-9.27-10.626-9.27-3.35-.09-3.75 2.776-3.75 2.776-.317 2.03 1.108 2.764 1.108 2.764 2.292 1.247 3.738-.442 3.738-.442.957-1.247.22-2.352.22-2.352-.59-.825-1.715-.463-1.715-.463-.892.275-.797 1.39-.797 1.39-.005.03-.025.03-.025.03-.04-.01-.024-.024-.024-.024s-.2-1.367 1.136-1.508c0 0 2.602-.563 5.652 3.237 0 0 4.017 5.127 4.007 11.762 0 0 .51 12.455-12.47 15.682 0 0 1.406 2.02 3.888 9.317 0 0 2.81 9.38 5.494 14.45 0 0 3.568 7.233 11.522 4.278 0 0 4.737-2.08 4.726-5.52 0 0 .328-3.136-2.512-3.377 0 0-2.782-.21-2.752 2.17 0 0-.075 2.58 2.96 1.992 0 0 1.063-.226.868-1.267 0 0-.17-.935-1.45-.528 0 0-.04.005-.045-.015 0 0-.016-.022.03-.035 0 0 .494-.222 1.018-.04 0 0 .47.157.506.89 0 0 .03.587-.598.92 0 0-.763.27-1.36.21 0 0-.805 1.624-2.625 2.174-2.533.765-4.62.027-5.898-.992-1.39-1.108-2.288-3.046-2.557-3.52-.268-.475-2.6-5.7-4.355-11.32 0 0-1.536-4.845-2.76-7.378l-.48-.994z"}),(0,e.jsx)("path",{fill:"#f5ce00",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M460.468 283.17s-1.615-.22-1.615 1.22c0 0 .1 2.104 2.662 1.644 0 0 2.527-.553 1.63-3.378 0 0-.598-1.99-2.99-1.703 0 0-2.318.105-3.335 3.272 0 0-.778 2.67.553 4.96 1.485 2.558 5.243 4.238 7.057 4.982 0 0 7.267 2.855 9.435 4.488 0 0 3.324 2.468 1.854 4.765 0 0-.57.875-1.422.875 0 0-.972.045-1.136-.95 0 0-.005-.02.01-.045 0 0 .015 0 .02.025 0 0 .07.608.598.834 0 0 .708.356 1.45-.272 0 0 .787-.754.13-1.925 0 0-.863-1.443-2.872-.59 0 0-1.77.876-1.04 2.756 0 0 .646 1.73 2.78 1.724 0 0 1.606-.053 2.634-1.13 1.603-1.68 1.69-4.954.277-6.647 0 0-1.337-1.8-4.02-2.895-1.552-.635-4.484-1.91-7.535-3.106-2.144-.84-4.107-1.848-5.383-3.358 0 0-1.136-1.266-1.465-3.438 0 0-.314-1.628.678-1.985 0 0 .503-.226 1.056-.15 0 0 .016 0 .02.01 0 0 .024.024-.032.015z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M460.333 283.16s-1.785-.323-2.9 1.8c0 0-.66 1.366-.765 2.157m-.581-7.585s1.787.31.867 2.838c-.868 2.383-2.478 3.164-2.957 3.496m22.935-76.35s4.32-2.705 8.733.29"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.399,d:"M452.35 235.943s.6-2.412-2.152-6.635c0 0-1.795-3.86-2.752-6.332m6.221-2.654s1.557 3.794 2.093 5.493c0 0 1.932 4.76 2.342 5.725"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"M454.444 238.597s1.624 1.75 1.44 4.704m-6.824-6.574s1.796.865 1.677 5.63c0 0-.18 3.478 2.51 5.227m-4.429 1.226s5.616-.613 5.925 2.845c0 0 .12 3.317 2.033 3.68 0 0 2.867.27 3.435 2.925m-9.625-5.61s.987 1.478 1.944 2.11m5.263-5.76s1.427 2.163 1.696 3.43m4.485-29.455s1.316 1.79 2.592 2.634m2.671 7.961s2.79 1.368 2.313 8.405c0 0-.36 4.126.798 6.38"}),(0,e.jsx)("path",{fill:"#784421",stroke:"#000",strokeWidth:.399,d:"m456.09 228.796.178.663s5.004.21 7.706-3.197l-.29-.654s-4.366-.222-7.595 3.186z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"M474.116 255.643s17.307-5.16 23.977-8.168"}),(0,e.jsx)("path",{fill:"#784421",stroke:"#000",strokeWidth:.243,d:"m472.26 223.724-.202-.568 8.56-3.257.202.572z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"m472.985 223.448 5.682 27.855m-4.697-28.229 6.51 27.727m-5.402-28.148 7.118 27.525m-4.326-28.585 9.702 20.66m-8.419-21.147 10.347 20.54m-9.397-20.901 11.192 20.334m-13.012 10.445 4.392-1.447m-7.717-1.309s12.873-3.76 22.616-7.69m-22.789 9.1s16.315-4.317 22.788-7.467M479.764 263.447l.854 2.613 2.336-.747-.798-2.59m4.197-1.153.855 2.612 2.336-.747-.798-2.59m-13.466-14.71-.202-3.536 21.392-6.496 1.157 2.975M484.15 239.845l1.166 3.122m6.314-5.393 1.36 2.97m.412-3.508 1.274 2.81m.42-3.326 1.34 2.936"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.399,d:"m496.47 236.104 2.353-1.327.997 2.613M497.627 235.452l1.198 2.705"}),(0,e.jsx)("path",{fill:"none",stroke:"#00247d",strokeMiterlimit:10,strokeWidth:.532,d:"M444.575 276.173s-4.187-4.24 0-8.393c0 0-4.545-2.223-3.827-5.8m11.304 17.552s-4.336.59-3.05-7.852c0 0-1.795 3.347-2.413 5.067-.464 1.288-.158 3.367 1.678 4.49.733.45 4.62 1.462 5.877-1.113m-6.937-13.511s-1.764 1.63-.508 4.615m2.331-4.223s.21 2.895 1.646 4.524m-.406-5.669s-.012 3.407 2.44 5.518m-1.22-6.695s.024 3.83 2.865 6.183m11.245-.574s1.434-3.137 4.454-2.985c0 0-1.465.663-1.435 2.13 0 0-.18 2.423 2.42 2.664 0 0 2.095.273 3.14-.873"}),(0,e.jsx)("path",{fill:"none",stroke:"#00247d",strokeMiterlimit:10,strokeWidth:.532,d:"M472.746 284.617s-7.446-3.498-6.67-8.534c0 0 .3-3.076 3.308-4.524m-1.572 3.196s-.658 2.172.808 3.68m.866-5.157s-.897 2.382.598 4.162m1.196-5.32s-1.076 1.972.21 3.75m-6.998 9.26s4.067 3.528 7.237 3.558m-8.523-2.443s3.8 3.076 6.177 3.53m-7.613-2.659s4.7 4.135 7.613 4.437m11.497 3.8s-4.618 2.49-1.038 5.12m-1.892-7.863s5.233-2.745 7.505-3.77m-5.621 5.187s7.566-4.615 9.808-5.61m-5.922 5.911s6.46-4.312 9.93-6.182m-5.653 6.031s4.456-3.498 8.763-6.03m1.525-4.374s-2.183-3.197-9.36 0c0 0 2.63-2.388 7.835-4.24m7.245-13.733s.588 2.592-.04 4.16"}),(0,e.jsx)("path",{fill:"none",stroke:"#00247d",strokeMiterlimit:10,strokeWidth:.532,d:"M492.364 278.375s1.495-2.202 5.293-3.287c0 0 1.024 2.563 3.978 1.99 0 0 4.455-.875 3.11-5.76 0 0-.927-3.65-6.016-4.01m15.137-6.118s5.173.93 5.084 5.152c0 0 .418 6.333-6.25 7.57m5.515-10.122s1.42-3.088 4.59-4.355m-3.851-1.808s1.413 2.265 2.38 2.595m-3.119-.786s1.332 1.627 1.78 1.9m-2.212-.332s.7 1.036 1.323 1.362m-27.939-25.846s1.007-1.633 3.51-.94m10.217 13.188s1.585-6.612 7.118-4.17m-2.244-.541s.57-3.05-.807-4.6M506 243.844s.705 1.26.102 2.29"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M517.245 311.397s6.22-2.835 4.306-7.66c0 0-.59-1.63-1.97-1.508 0 0-2.398.12-1.918 3.316 0 0 .72 3.137-.417 5.85z"}),(0,e.jsx)("path",{fill:"#fff",d:"M519.498 308.542s1.367-1.31 1.176-3.66c0 0-.08-.5.17-.57 0 0 .268-.113.308.47 0 0 .38 2.453-1.276 3.86 0 0-.113.14-.296.1 0 0-.196-.042-.082-.2"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M526.097 307.054s4.366-2.744 2.003-7.358c0 0-.688-1.327-2.003-1.056 0 0-2.722.844-.6 4.615 0 0 1.078 2.443.6 3.8z"}),(0,e.jsx)("path",{fill:"#fff",d:"M527.188 300.796s-.24-.316-.075-.452c0 0 .105-.15.388.21 0 0 1.322 1.478.27 3.748 0 0-.12.324-.328.22 0 0-.18-.092-.015-.363 0 0 .942-1.87-.24-3.364z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M513.028 310.19s-4.874-1.235-3.978-6.272c0 0 .48-2.2 2.542-1.9 0 0 2.487.635.868 3.836 0 0-.957 2.286.568 4.337z"}),(0,e.jsx)("path",{fill:"#fff",d:"M511.144 304.174s-.18-.24.03-.347c0 0 .21-.09.36.204 0 0 .507.807.077 1.912 0 0-.406.765-.208 1.565 0 0 .027.226-.153.256 0 0-.173-.06-.207-.225 0 0-.243-.78.176-1.544 0 0 .507-1.186-.076-1.82z"}),(0,e.jsx)("path",{d:"M516.527 300.66s2.75-1.547 5.024.263c0 0-.232-1.006-1.97-1.448 0 0-.94-2.654-3.572-2.413 0 0 1.077 1.286 2.512 2.373 0 0-1.515.156-1.993 1.224zm2.033-7.27s1.87 1.38 2.63 2.305c0 0 .76-.945 1.757-1.518 0 0-1.148-.15-1.757.365 0 0-.955-.924-2.63-1.152"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.532,d:"M507.715 299.314s-.2-.683.28-1.407c0 0 .318-.523.2-1.207m19.575-40.33s2.912-.2 3.39-2.454m5.104-1.486s-1.014-.04-1.93.884c0 0-.7 1.045-1.698.924"}),(0,e.jsx)("path",{d:"M523.465 247.805s1.515 0 2.353-.724c0 0 .877-.602 1.395.363 0 0 .798 1.367-.677 1.97 0 0-1.835.925 1.076 2.775 0 0-3.47-1.247-2.073-2.935 0 0 1.513-1.086.955-1.488 0 0-.16-.322-.757.08-.6.402-1.795.242-2.273-.04z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M525.526 211.188s.684-.93.404-3.725 2.147-3.116 3.08-2.313c0 0 .964.836.077 2.608-.512 1.022-1.33 2.347-3.56 3.43z"}),(0,e.jsx)("path",{fill:"#fff",d:"M526.438 209.102s.91-.978.475-3.1c0 0-.003-.21.117-.224 0 0 .22-.056.258.153 0 0 .49 2.264-.538 3.494 0 0-.187.18-.313 0 0 0-.137-.13 0-.322z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M524.75 210.172s-.07-1.127-2.018-3.04c-1.947-1.915-.346-3.68.846-3.664 0 0 1.235.02 1.68 1.9.257 1.09.474 2.592-.507 4.804z"}),(0,e.jsx)("path",{fill:"#fff",d:"M524.448 207.723s.035-1.38-1.728-2.82c0 0-.143-.168-.06-.257 0 0 .13-.187.3-.042 0 0 1.898 1.52 1.944 3.177 0 0-.02.27-.24.204 0 0-.193-.017-.216-.26z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M522.107 209.325s-.51-.918-2.913-1.77c-2.405-.854-1.755-2.954-.743-3.404 0 0 1.05-.46 2.175.947.65.814 1.43 1.99 1.482 4.228z"}),(0,e.jsx)("path",{fill:"#fff",d:"M521.053 207.638s-.546-1.265-2.748-1.82c0 0-.2-.09-.163-.206 0 0 .04-.226.255-.167 0 0 2.357.567 3.094 2.052 0 0 .094.252-.13.284 0 .002-.183.07-.307-.142z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M523.613 210.244s-1.12.315-3.696-.927c-2.574-1.242-3.702.92-3.25 2.076 0 0 .47 1.197 2.464.987 1.152-.122 2.693-.423 4.483-2.136z"}),(0,e.jsx)("path",{fill:"#fff",d:"M517.626 211.065s1.168.72 3.286-.1c0 0 .216-.04.25.075 0 0 .097.208-.113.284 0 0-2.254.898-3.702.11 0 0-.22-.153-.055-.31 0 0 .112-.162.333-.06z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M519.846 202.107s1.286.623.987 2.13"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.532,d:"M525.528 202.318s.503 1.592-.052 2.45"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M436.818 211.188s-.684-.93-.405-3.725c.28-2.795-2.146-3.116-3.08-2.313 0 0-.964.836-.077 2.608.512 1.022 1.33 2.347 3.562 3.43z"}),(0,e.jsx)("path",{fill:"#fff",d:"M435.905 209.102s-.91-.978-.475-3.1c0 0 .003-.21-.117-.224 0 0-.22-.056-.258.153 0 0-.49 2.264.538 3.494 0 0 .187.18.313 0 0 0 .138-.13 0-.322z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M437.592 210.172s.072-1.127 2.02-3.04c1.946-1.915.345-3.68-.847-3.664 0 0-1.235.02-1.68 1.9-.257 1.09-.474 2.592.507 4.804z"}),(0,e.jsx)("path",{fill:"#fff",d:"M437.896 207.723s-.035-1.38 1.728-2.82c0 0 .143-.168.06-.257 0 0-.13-.187-.3-.042 0 0-1.898 1.52-1.944 3.177 0 0 .02.27.24.204 0 0 .192-.017.216-.26z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M440.236 209.325s.51-.918 2.913-1.77c2.404-.854 1.754-2.954.742-3.404 0 0-1.05-.46-2.174.947-.65.814-1.43 1.99-1.482 4.228z"}),(0,e.jsx)("path",{fill:"#fff",d:"M441.29 207.638s.546-1.265 2.748-1.82c0 0 .2-.09.163-.206 0 0-.04-.226-.254-.167 0 0-2.357.567-3.094 2.052 0 0-.093.252.132.284 0 .002.182.07.306-.142z"}),(0,e.jsx)("path",{fill:"#64b4d1",stroke:"#00247d",strokeMiterlimit:2.613,strokeWidth:.399,d:"M438.73 210.244s1.12.315 3.696-.927c2.574-1.242 3.702.92 3.25 2.076 0 0-.47 1.197-2.464.987-1.15-.122-2.692-.423-4.482-2.136z"}),(0,e.jsx)("path",{fill:"#fff",d:"M444.717 211.065s-1.168.72-3.286-.1c0 0-.215-.04-.25.075 0 0-.096.208.114.284 0 0 2.254.898 3.7.11 0 0 .22-.153.056-.31 0 0-.11-.162-.333-.06z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.532,d:"M442.497 202.107s-1.286.623-.987 2.13"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:10,strokeWidth:.532,d:"M436.815 202.318s-.503 1.592.052 2.45"}),(0,e.jsx)("path",{d:"M492.633 187.69s.815 2.327.463 4.434c-.314 1.885.115 2.372.796 2.745.59.322 1.955-.243 2.12-1.72 0 0 1.614 3.15-1.526 5.277 0 0-2.258 1.388-4.17-.467-.676-.653-.973-2.458-.644-4.132 0 0 .494-2.27-.33-4.6 0 0 1.286 1.373.958 4.11 0 0-.658 4.908 2.975 4.667 0 0 2.512-.03 2.587-3.076 0 0-.942 1.084-2.108.723-.827-.256-1.586-1.056-1.45-2.316.14-1.32.508-3.625.33-5.646zm-4.117 8.063s-.2 3.88-3.748 4.825c0 0 .5-.703-.3-2.633 0 0-.776-1.126-.716-2.875 0 0-1.13.884.16 3.216.777 1.408.1 3.097-.14 3.157s5.86-.805 4.744-5.69m-4.606-3.86s-.857-.965-.917-3.197-.478-2.774-.777-3.036c0 0 .438 1.93.318 3.116s.08 1.87.24 2.433c0 0-1.934.3-3.15-2.515-1.163-2.69-2.333-2.473-2.91-2.453 0 0 .673.075 2.032 2.533s1.735 2.957 5.164 3.118zm-9.05-5.831s1.116 2.674 1.156 4.082c0 0-2.592-.865-3.29-3.117 0 0-2.77.945-1.754 4.142 0 0-2.392-.845-3.47-2.796 0 0 1.337 1.005 2.573 1.448 0 0-.14-2.574 3.09-3.54 0 0 .48 2.306 2.093 2.856 0 0-.12-1.447-.398-3.076zm4.266-4.582s.897 1.306 2.73 1.366c.878.03 1.82-.17 2.733-1.367 0 0-.12 2.27-2.733 2.29 0 0-2.73.1-2.73-2.29zm-11.299 15.53s1.36 1.236 1.644 1.643c0 0 .958.935 1.78-.274 0 0 1.048-1.934 2.333-1.883 0 0-.912.634-1.937 2.46 0 0-.276.676-1.04.75-.356.037-.806.152-1.488-.56 0 0-.59-.72-1.29-2.137zm14.03-24.64c-2.73 0-.43 2.112-.43 2.112.06 3.347-2.625 4.377-4.454 3.408-1.83-.97-.4-3.408-.4-3.408s-2.062 1.356-.746 3.317c1.315 1.96 4.764 1.084 6.03-.725 1.266 1.81 4.715 2.684 6.03.724 1.317-1.962-.747-3.318-.747-3.318s1.43 2.437-.398 3.408c-1.83.97-4.516-.06-4.456-3.408 0 0 2.302-2.112-.43-2.11zm1.655-3.618s.956 1.63.747 4.1c0 0 .866-2.472-.748-4.1zm-8.372 3.83s-.21-1.78-1.945-1.93c0 0 1.465 1.056 1.944 1.93zm13.456 0s.21-1.78 1.944-1.93c0 0-1.466 1.056-1.944 1.93m-16.209 2.714s1.376.423 2.213-.603c0 0-1.585.422-2.213.603m-4.455-10.916s1.6-.182 3.2 2.2c0 0-1.586.845-1.974 1.358 0 0 0-.784.777-1.478 0 0-.3-1.206-2.003-2.08m26.794 0s-1.6-.182-3.2 2.2c0 0 1.586.845 1.974 1.358 0 0 0-.784-.777-1.478 0 0 .298-1.206 2.003-2.08m-12.35 1.777s1.435.394 3.23-.602c0 0 2.212-1.176 3.618 0 0 0-1.227-.545-3.59.602 0 0-2.362 1.295-3.258 0"}),(0,e.jsx)("path",{fill:"#fff",d:"M483.87 167.606s1.227-2.15 4.965-1.723c0 0-1.017 2.99-4.964 1.723z"}),(0,e.jsx)("ellipse",{cx:486.449,cy:166.939,fill:"#784421",rx:.739,ry:.937}),(0,e.jsx)("ellipse",{cx:486.449,cy:166.939,rx:.439,ry:.575}),(0,e.jsx)("path",{d:"M475.856 163.022s2.362.15 3.798 1.056c0 0 1.525.905 3.26-.393 0 0 1.885-1.085 3.096-2.593 0 0-2.887 1.99-3.964 2.292 0 0-.987-.754-1.375-1.84 0 0 .15-.813 1.705-2.32 0 0-2.093.632-2.512 2.41 0 0 .39 1.087 1.196 1.932 0 0-.39.18-1.406-.453 0 0-2.213-.754-3.798-.09zm6.001 14.188c-2.043 1.766 0 1.585 0 1.585s2.044.18 0-1.584zm-1.182-11.053s-1.436.394-3.23-.602c0 0-2.214-1.176-3.62 0 0 0 1.227-.545 3.59.602 0 0 2.362 1.295 3.26 0"}),(0,e.jsx)("path",{fill:"#fff",d:"M479.18 167.606s-1.227-2.15-4.965-1.723c0 0 1.017 2.99 4.965 1.723"}),(0,e.jsx)("ellipse",{cx:476.601,cy:166.939,fill:"#784421",rx:.739,ry:.937}),(0,e.jsx)("ellipse",{cx:476.601,cy:166.939,rx:.439,ry:.575}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.28,d:"M554.063 148.26v135.513c0 36.197-72.36 47.957-72.36 47.957s-72.36-11.76-72.36-47.957V148.26z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1003.469c1fdb.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js deleted file mode 100644 index 663155a870..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 101.1b8f34f4.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["101"],{84260(h,l,t){t.r(l),t.d(l,{default:()=>r});var s=t(74848);t(47867);let r=h=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"tm_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M42.666 0h682.67v512H42.666z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#tm_inline_svg__a)",transform:"translate(-40)scale(.9375)",children:[(0,s.jsx)("path",{fill:"#004e00",d:"M0 0h768v512H0z"}),(0,s.jsxs)("g",{strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#ffef00",d:"M260.573 171.885h14.12"}),(0,s.jsx)("path",{fill:"#fff",d:"M263.306 137.494c27.9 13.453 61.12-.064 73.139-18.637 12.323-17.332 13.836-46.437-7.468-73.14 33.07 27.425 40.379 58.513 23.927 84.113-21.944 29.254-70.627 28.407-89.598 7.664"}),(0,s.jsx)("path",{fill:"#feffff",d:"m312.835 69.431 5.614.072-4.443 3.528 1.666 5.52-4.633-3.263-4.587 3.339 1.583-5.543-4.499-3.453 5.61-.167 1.8-5.473zM285.123 104.173l5.615.071-4.444 3.529 1.666 5.519-4.633-3.262-4.587 3.338 1.583-5.543-4.499-3.452 5.61-.167 1.8-5.474zM286.95 76.753l5.614.071-4.443 3.529 1.666 5.52-4.633-3.263-4.587 3.338 1.583-5.543-4.499-3.452 5.61-.167 1.8-5.474zM286.95 49.317l5.614.072-4.443 3.528 1.666 5.52-4.633-3.263-4.587 3.339 1.583-5.543-4.499-3.453 5.61-.166 1.8-5.474zM256.152 84.066l5.615.072-4.444 3.528 1.666 5.52-4.633-3.262-4.587 3.338 1.583-5.543-4.499-3.453 5.61-.166 1.8-5.474z"})]}),(0,s.jsx)("path",{fill:"#980000",d:"M47.542 0H212.11v511.984H47.542z"}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M47.542 133.481v-3.657l6.803-9.143-1.371-1.828 4.114-5.486-1.371-1.828-2.743 3.657-1.372-1.829 9.6-12.8 1.371 1.83-1.37 1.828 2.826 3.694 6.773-9.18-6.887-8.896-2.713 3.41 1.371 1.83-1.37 1.828-9.6-12.8 1.37-1.828 2.744 3.657 1.37-1.829-4.113-5.486 1.371-1.828-6.803-9.142v-3.658l9.546 12.8-1.371 1.828 4.114 5.486-2.743 3.657 2.743 3.657 4.114-5.485 9.654 13.017-9.654 12.582-4.114-5.486-2.743 3.658 2.743 3.656-4.114 5.486 1.37 1.828z"}),(0,s.jsx)("path",{d:"m47.541 87.77 1.372 3.656v5.486h4.114l2.743 1.828-2.743 1.829h-4.114v5.485l-1.372 3.658z"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M47.542 221.25v-3.657l6.803-9.143-1.371-1.828 4.114-5.486-1.371-1.828-2.743 3.657-1.372-1.829 9.6-12.8 1.371 1.829-1.37 1.829 2.826 3.694 6.773-9.18-6.887-8.896-2.713 3.41 1.371 1.829-1.37 1.828-9.6-12.8 1.37-1.828 2.744 3.658 1.37-1.83-4.113-5.485 1.371-1.828-6.803-9.143v-3.657l9.546 12.8-1.371 1.828 4.114 5.486-2.743 3.657 2.743 3.657 4.114-5.485 9.654 13.017-9.654 12.582-4.114-5.486-2.743 3.657 2.743 3.657-4.114 5.486 1.37 1.828z"}),(0,s.jsx)("path",{d:"m47.541 175.538 1.372 3.657v5.485h4.114l2.743 1.83-2.743 1.828h-4.114v5.485l-1.372 3.657z"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M47.543 309.02v-3.657l6.803-9.143-1.371-1.828 4.114-5.486-1.371-1.828-2.743 3.656-1.372-1.828 9.6-12.8 1.371 1.829-1.37 1.829 2.826 3.694 6.773-9.18-6.887-8.897-2.713 3.411 1.371 1.829-1.37 1.828-9.6-12.8 1.37-1.828 2.744 3.657 1.37-1.828-4.113-5.486 1.371-1.828-6.803-9.143v-3.657l9.546 12.8-1.371 1.828 4.114 5.486-2.743 3.657 2.743 3.657 4.114-5.486 9.654 13.018-9.654 12.582-4.114-5.486-2.743 3.657 2.743 3.657-4.114 5.486 1.37 1.828z"}),(0,s.jsx)("path",{d:"m47.542 263.308 1.372 3.657v5.485h4.114l2.743 1.829-2.743 1.828h-4.114v5.486l-1.372 3.657z"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M47.543 391.3v-3.657l6.803-9.143-1.371-1.828 4.114-5.486-1.371-1.828-2.743 3.656-1.372-1.828 9.6-12.8 1.371 1.829-1.37 1.829 2.826 3.694 6.773-9.18-6.887-8.897-2.713 3.411 1.371 1.829-1.37 1.828-9.6-12.8 1.37-1.828 2.744 3.657 1.37-1.828-4.113-5.486 1.371-1.828-6.803-9.143v-3.657l9.546 12.8-1.371 1.828 4.114 5.486-2.743 3.657 2.743 3.657 4.114-5.486 9.654 13.018-9.654 12.582-4.114-5.486-2.743 3.657 2.743 3.657-4.114 5.486 1.37 1.828z"}),(0,s.jsx)("path",{d:"m47.542 345.588 1.372 3.657v5.485h4.114l2.743 1.83-2.743 1.827h-4.114v5.486l-1.372 3.657z"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M212.106 133.481v-3.657l-6.803-9.143 1.372-1.828-4.114-5.486 1.37-1.828 2.744 3.657 1.371-1.829-9.6-12.8-1.37 1.83 1.37 1.828-2.827 3.694-6.772-9.18 6.886-8.896 2.713 3.41-1.37 1.83 1.37 1.828 9.6-12.8-1.371-1.828-2.743 3.657-1.371-1.829 4.114-5.486-1.372-1.828 6.803-9.142v-3.658l-9.545 12.8 1.37 1.828-4.113 5.486 2.743 3.657-2.743 3.657-4.115-5.485-9.653 13.017 9.653 12.582 4.115-5.486 2.743 3.658-2.743 3.656 4.114 5.486-1.371 1.828z"}),(0,s.jsx)("path",{d:"m212.107 87.77-1.371 3.656v5.486h-4.114l-2.743 1.828 2.743 1.829h4.114v5.485l1.371 3.658z"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M212.56 221.25v-3.656l-6.803-9.143 1.372-1.828-4.114-5.486 1.371-1.828 2.743 3.657 1.371-1.829-9.6-12.8-1.37 1.829 1.37 1.829-2.826 3.694-6.773-9.18 6.886-8.896 2.714 3.41-1.372 1.829 1.372 1.828 9.6-12.8-1.372-1.828-2.743 3.658-1.371-1.83 4.114-5.485-1.372-1.828 6.803-9.143v-3.657l-9.545 12.8 1.371 1.828-4.114 5.486 2.743 3.657-2.743 3.657-4.114-5.485-9.654 13.017 9.654 12.582 4.114-5.486 2.743 3.657-2.743 3.657 4.114 5.486-1.371 1.828z"}),(0,s.jsx)("path",{d:"m212.561 175.54-1.371 3.656v5.485h-4.114l-2.743 1.83 2.743 1.828h4.114v5.485l1.371 3.658z"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M212.106 309.02v-3.657l-6.803-9.143 1.372-1.828-4.114-5.486 1.37-1.828 2.744 3.656 1.371-1.828-9.6-12.8-1.37 1.829 1.37 1.829-2.827 3.694-6.772-9.18 6.886-8.897 2.713 3.411-1.37 1.829 1.37 1.828 9.6-12.8-1.371-1.828-2.743 3.657-1.371-1.828 4.114-5.486-1.372-1.828 6.803-9.143v-3.657l-9.545 12.8 1.37 1.828-4.113 5.486 2.743 3.657-2.743 3.657-4.115-5.486-9.653 13.018 9.653 12.582 4.115-5.486 2.743 3.657-2.743 3.657 4.114 5.486-1.371 1.828z"}),(0,s.jsx)("path",{d:"m212.107 263.308-1.371 3.657v5.485h-4.114l-2.743 1.829 2.743 1.828h4.114v5.486l1.371 3.657z"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M212.106 391.3v-3.657l-6.803-9.143 1.372-1.828-4.114-5.486 1.37-1.828 2.744 3.656 1.371-1.828-9.6-12.8-1.37 1.829 1.37 1.829-2.827 3.694-6.772-9.18 6.886-8.897 2.713 3.411-1.37 1.829 1.37 1.828 9.6-12.8-1.371-1.828-2.743 3.657-1.371-1.828 4.114-5.486-1.372-1.828 6.803-9.143v-3.657l-9.545 12.8 1.37 1.828-4.113 5.486 2.743 3.657-2.743 3.657-4.115-5.486-9.653 13.018 9.653 12.582 4.115-5.486 2.743 3.657-2.743 3.657 4.114 5.486-1.371 1.828z"}),(0,s.jsx)("path",{d:"m212.107 345.588-1.371 3.657v5.485h-4.114l-2.743 1.83 2.743 1.827h4.114v5.486l1.371 3.657z"})]}),(0,s.jsx)("g",{fill:"#e69900",strokeWidth:"1pt",children:(0,s.jsx)("path",{d:"M47.545 34.74v-3.656l6.803-9.143-1.371-1.828 4.114-5.486L55.72 12.8l-2.743 3.657-1.371-1.829 9.6-12.8 1.37 1.829-1.37 1.829 2.826 3.694L70.805 0h2.797l-9.654 12.8-4.114-5.486-2.743 3.657 2.743 3.657-4.114 5.486 1.371 1.828zM47.545 0h8.229L53.03 1.83h-4.114v5.485l-1.372 3.657z"})}),(0,s.jsx)("g",{fill:"#e69900",strokeWidth:"1pt",children:(0,s.jsx)("path",{d:"M212.103 34.74v-3.656l-6.803-9.143 1.372-1.828-4.115-5.486 1.372-1.828 2.743 3.657 1.371-1.829-9.6-12.8-1.371 1.829 1.371 1.829-2.827 3.694L188.844 0h-2.798l9.654 12.8 4.115-5.486 2.742 3.657-2.742 3.657 4.114 5.486-1.372 1.828zM212.103 0h-8.228l2.742 1.829h4.114v5.485l1.372 3.657z"})}),(0,s.jsx)("path",{fill:"#e69900",d:"M116.122 504.693s5.904-10.366 20.782-13.507 17.477 6.91 25.978 6.91 21.964-6.91 21.964-6.91-13.462 13.193-23.853 12.879-13.934-6.91-24.561-5.968-20.31 6.91-20.31 6.596"}),(0,s.jsx)("path",{fill:"#e69900",d:"M144.845 504.693s-5.904-10.366-20.783-13.507c-14.878-3.142-17.476 6.91-25.978 6.91s-21.963-6.91-21.963-6.91 13.461 13.193 23.852 12.879 13.934-6.91 24.561-5.968 20.31 6.91 20.31 6.596"}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M96.193 487.544c-1.31-2.743-4.585-14.71-2.839-16.206 2.62-.996 9.607 11.22 8.952 22.19-4.585 2.493-20.086-.998-19.868-4.24 1.092-4.487 9.825-2.99 13.755-1.744"}),(0,s.jsx)("path",{d:"M86.824 477.085c-.857-3.044-2.208-15.654-.268-16.638 2.718-.254 7.663 13.622 5.324 24.176-4.872 1.177-19.5-6.505-18.784-9.616 1.763-4.09 10.076-.223 13.728 2.078"}),(0,s.jsx)("path",{d:"M79.212 465.383c-.58-3.158-.8-15.893 1.214-16.562 2.722.178 6.397 14.738 3.135 24.847-4.943.398-18.782-9.544-17.796-12.52 2.115-3.783 10.026 1.373 13.447 4.235"}),(0,s.jsx)("path",{d:"M73.21 452.922c-.206-3.24 1.057-15.867 3.125-16.112 2.668.738 4.605 15.882.208 25.195-4.929-.628-17.446-13.31-16.125-16.047 2.529-3.3 9.744 3.429 12.792 6.964"}),(0,s.jsx)("path",{d:"M69.036 439.868c.145-3.246 2.755-15.5 4.827-15.346 2.561 1.241 2.848 16.6-2.507 24.973-4.81-1.565-15.832-16.513-14.23-18.968 2.858-2.781 9.274 5.259 11.91 9.341"}),(0,s.jsx)("path",{d:"M70.2 425.014c-.354 12.998-2.716 13.15-7.029 3.543-1.908-3.63-2.144-18.704-.424-19.266 2.486-.051 7.386 10.699 7.454 15.723"})]}),(0,s.jsxs)("g",{fill:"#e69900",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M164.034 488.912c1.31-2.742 4.585-14.71 2.838-16.205-2.62-.997-9.606 11.22-8.952 22.19 4.585 2.492 20.086-.998 19.869-4.24-1.092-4.487-9.825-2.991-13.755-1.745"}),(0,s.jsx)("path",{d:"M173.402 478.453c.857-3.044 2.209-15.654.269-16.637-2.719-.254-7.663 13.622-5.324 24.175 4.872 1.177 19.499-6.504 18.784-9.616-1.763-4.09-10.077-.223-13.729 2.078"}),(0,s.jsx)("path",{d:"M181.014 466.752c.58-3.158.8-15.893-1.214-16.562-2.722.177-6.396 14.737-3.135 24.846 4.943.398 18.783-9.543 17.796-12.52-2.115-3.782-10.025 1.373-13.447 4.236"}),(0,s.jsx)("path",{d:"M187.016 454.29c.207-3.24-1.057-15.866-3.124-16.111-2.668.738-4.606 15.882-.209 25.194 4.93-.628 17.446-13.31 16.125-16.046-2.528-3.3-9.744 3.428-12.792 6.963"}),(0,s.jsx)("path",{d:"M191.19 441.236c-.144-3.245-2.754-15.499-4.827-15.345-2.56 1.24-2.847 16.599 2.508 24.973 4.81-1.566 15.831-16.513 14.229-18.968-2.858-2.782-9.274 5.258-11.91 9.34"}),(0,s.jsx)("path",{d:"M190.026 426.383c.354 12.998 2.717 13.15 7.029 3.542 1.909-3.63 2.144-18.703.424-19.265-2.485-.052-7.385 10.698-7.453 15.723"})]}),(0,s.jsxs)("g",{transform:"matrix(.99985 0 0 1.26515 188.276 -77.035)",children:[(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.133,d:"M-3.543 290.55h-5.315v3.543h-5.315v3.543h-21.26l-3.543 3.544 1.771 1.771h8.858l1.772-1.771h-8.858l1.772-1.772h12.402l-5.315 5.315h-12.402l-3.544-1.772-3.543 1.771-12.402.001-5.315-5.317 12.402.002 1.771 1.772-8.858-.002 1.772 1.773h8.858l1.772-1.771-3.544-3.544h-19.488v-3.543h-5.315v-3.543h-5.315v-15.945h5.315v-3.543h5.315v-3.543h19.488l3.544-3.544-1.772-1.771h-8.858l-1.772 1.773 8.858-.002-1.771 1.772-12.402.002 5.315-5.317 12.402.001 3.543 1.771 3.544-1.772h12.402l5.315 5.315h-12.402l-1.772-1.772h8.858l-1.772-1.771h-8.858l-1.771 1.771 3.543 3.544h21.26v3.543h5.315v3.543h5.315z",transform:"matrix(1.4884 0 0 1.24 3.502 -39.474)"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#e69900",strokeWidth:1.422,d:"M375.59 499.67v24.803h10.629v7.019h10.63v7.087h35.433l14.174 10.63 14.173-10.63h38.976v-7.019l10.63-.068v-7.087h10.63v-24.803h-10.63v-7.086l-10.63.068v-7.155h-38.976l-14.173-10.63-14.174 10.63h-35.433v7.155h-10.63v7.086z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("path",{fill:"#980000",d:"m-75.6 296.644-15.822 10.984v-10.984zM-43.97 296.644l15.822 10.985v-10.985zM-75.6 325.208l-15.822-10.984v10.984zM-43.965 325.208l15.82-10.985v10.985zM-38.689 303.233l-5.273 4.394h10.547zM-80.877 303.233l-5.273 4.394h10.547zM-80.877 318.622l-5.273-4.394h10.547zM-38.687 318.622l-5.273-4.394h10.547z"}),(0,s.jsx)("path",{fill:"#e69900",d:"m-59.787 329.602-5.273-4.394h10.547zM-59.787 307.632l-5.273-4.394h10.547zM-59.787 292.249l-5.273 4.394h10.547zM-59.787 314.217l-5.273 4.394h10.547z"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.133,d:"M467.72 506.69h14.173v3.543H467.72z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("path",{fill:"#c00",stroke:"#000",strokeWidth:.133,d:"M414.57 510.24h7.087v3.543h-7.087zM471.26 510.24h7.087v3.543h-7.087z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("path",{fill:"#900",stroke:"#000",strokeWidth:.133,d:"M439.37 488.98h14.173v3.543H439.37zM439.37 496.06h14.173v3.543H439.37z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("path",{fill:"#900",stroke:"#000",strokeWidth:.133,d:"M435.83 492.52h21.26v3.543h-21.26zM439.37 524.41h14.173v3.543H439.37zM439.37 531.5h14.173v3.543H439.37z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("path",{fill:"#900",stroke:"#000",strokeWidth:.133,d:"M435.83 527.95h21.26v3.543h-21.26z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.133,d:"M467.72 513.78h14.173v3.543H467.72zM411.02 506.69h14.173v3.543H411.02zM411.02 513.78h14.173v3.543H411.02z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.133,d:"M407.48 510.24h7.087v3.543h-7.087zM421.65 510.24h7.087v3.543h-7.087zM464.17 510.24h7.087v3.543h-7.087zM478.35 510.24h7.087v3.543h-7.087z",transform:"matrix(.74419 0 0 .62 -392.03 -6.521)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -374.14 -38.912)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -367.57 -38.912)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -361 -38.958)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -371.51 -41.102)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -363.68 -41.148)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -371.57 -36.768)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -363.68 -36.677)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -353.17 -49.999)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -346.59 -49.999)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -340.02 -50.045)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -350.54 -52.189)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -342.71 -52.235)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -350.59 -47.855)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -342.71 -47.764)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -374.2 -60.904)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -367.62 -60.904)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -361.05 -60.949)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -371.57 -63.094)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -363.74 -63.139)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -371.62 -58.759)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -363.74 -58.668)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -395.28 -49.817)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -388.71 -49.817)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -382.14 -49.862)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -392.65 -52.007)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -384.82 -52.052)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -392.71 -47.672)"}),(0,s.jsx)("circle",{cx:413.68,cy:581.99,r:.886,fill:"#fff",transform:"matrix(.74419 0 0 .62 -384.82 -47.581)"})]}),(0,s.jsx)("path",{fill:"#fff",d:"m138.895 255.755 4.535-2.125 4.535 2.125zM125.291 255.755l4.535-2.125 4.534 2.125zM111.687 255.755l4.535-2.125 4.534 2.125zM138.895 206.885l4.535 2.125 4.535-2.125zM125.291 206.885l4.535 2.125 4.534-2.125zM111.687 206.885l4.535 2.125 4.534-2.125z"}),(0,s.jsx)("path",{fill:"#004e00",d:"m135.115 262.133-5.29 4.25-5.292-4.25-5.29 4.25-5.29-4.25v2.124l3.526 2.127-1.763 2.124v2.125h1.763l1.764-2.125 1.763 2.125h1.764v-2.125l-1.764-2.124 3.527-2.126 3.528 2.126-1.764 2.124v2.125h1.764l1.763-2.125 1.763 2.125h1.764v-2.125l-1.764-2.124 3.528-2.126 3.527 2.125-1.764 2.125v2.125h1.764l1.763-2.125 1.764 2.125h1.764v-2.125l-1.764-2.125 3.527-2.126v-2.124l-5.29 4.25zM135.116 200.497l-5.29-4.25-5.292 4.25-5.29-4.25-5.29 4.25v-2.124l3.527-2.127-1.764-2.124v-2.125h1.764l1.763 2.125 1.763-2.125h1.764v2.125l-1.764 2.124 3.527 2.126 3.528-2.126-1.764-2.124v-2.125h1.764l1.763 2.125 1.763-2.125h1.764v2.125l-1.764 2.124 3.528 2.126 3.527-2.125-1.764-2.125v-2.125h1.764l1.764 2.125 1.763-2.125h1.764v2.125l-1.764 2.125 3.527 2.126v2.124l-5.29-4.25zM175.187 235.92l5.669-4.604-5.67-4.605 5.67-4.604-5.67-4.604h2.834l2.836 3.07 2.833-1.536h2.834v1.535l-2.834 1.535 2.834 1.535v1.535h-2.834l-2.833-1.535-2.835 3.07 2.835 3.07 2.833-1.536h2.834v1.535l-2.834 1.535 2.834 1.535v1.535h-2.834l-2.833-1.535-2.835 3.07 2.833 3.07 2.835-1.536h2.834v1.536l-2.834 1.534 2.834 1.535v1.535h-2.834l-2.835-1.535-2.834 3.07h-2.833l5.667-4.605zM84.47 235.92l-5.67-4.604 5.67-4.605-5.67-4.604 5.67-4.604h-2.834l-2.836 3.07-2.833-1.536h-2.835v1.535l2.835 1.535-2.835 1.535v1.535h2.835l2.833-1.535 2.835 3.07-2.835 3.07-2.833-1.536h-2.835v1.535l2.835 1.535-2.835 1.535v1.535h2.835l2.833-1.535 2.835 3.07-2.833 3.07-2.835-1.536h-2.835v1.536l2.835 1.534-2.835 1.535v1.535h2.835l2.835-1.535 2.834 3.07h2.833l-5.667-4.605z"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#000",strokeWidth:.267,d:"M-26.575 214.37h1.772v1.772h-1.772z",transform:"matrix(1.2798 0 0 1.1995 211.45 -5.633)"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#000",strokeWidth:.267,d:"M-28.346 216.14h1.772v1.772h-1.772zM-37.205 225h1.772v1.772h-1.772zM-35.433 223.23h1.772v1.772h-1.772zM-93.898 223.23h1.772v1.772h-1.772zM-102.76 214.37h1.772v1.772h-1.772zM-100.98 216.14h1.772v1.772h-1.772zM-100.98 177.17h1.772v1.772h-1.772zM-102.76 178.94h1.772v1.772h-1.772zM-92.126 168.31h1.772v1.772h-1.772z",transform:"matrix(1.2798 0 0 1.1995 211.45 -5.633)"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#000",strokeWidth:.267,d:"M-93.898 170.08h1.772v1.772h-1.772zM-37.205 168.31h1.772v1.772h-1.772zM-35.433 170.08h1.772v1.772h-1.772zM-28.346 177.17h1.772v1.772h-1.772z",transform:"matrix(1.2798 0 0 1.1995 211.45 -5.633)"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#000",strokeWidth:.267,d:"M-26.575 178.94h1.772v1.772h-1.772zM-92.126 225h1.772v1.772h-1.772z",transform:"matrix(1.2798 0 0 1.1995 211.45 -5.633)"}),(0,s.jsx)("path",{fill:"#fff",d:"m122.907 231.314-6.683-.001-.001-4.177 4.456.003v-3.917h4.457v-3.596h4.456v4.495c-3.69 0-6.685 3.046-6.685 7.193"}),(0,s.jsx)("path",{fill:"#e69900",d:"m136.274 231.314 6.683-.001.001-4.177-4.456.003v-3.917h-4.457v-3.596h-4.456v4.495c3.69 0 6.685 3.046 6.685 7.193"}),(0,s.jsx)("path",{fill:"#fff",d:"M136.274 231.314h6.683l.001 4.177-4.456-.002v3.916h-4.457v3.597h-4.456v-4.496c3.69 0 6.685-3.045 6.685-7.192"}),(0,s.jsx)("path",{fill:"#e69900",d:"M122.907 231.314h-6.683l-.001 4.177 4.456-.002v3.916h4.457v3.597h4.456v-4.496c-3.69 0-6.685-3.045-6.685-7.192"}),(0,s.jsx)("path",{fill:"#004e00",d:"M136.273 231.317h-6.684v-7.193c3.69 0 6.684 3.223 6.684 7.193"}),(0,s.jsx)("path",{fill:"#980000",d:"M136.273 231.31h-6.684v7.193c3.69 0 6.684-3.222 6.684-7.192"}),(0,s.jsx)("path",{fill:"#004e00",d:"M122.908 231.31h6.684v7.193c-3.69 0-6.684-3.222-6.684-7.192"}),(0,s.jsx)("path",{fill:"#980000",d:"M122.908 231.317h6.684v-7.193c-3.69 0-6.684 3.223-6.684 7.193"}),(0,s.jsx)("path",{fill:"#004e00",d:"m136.627 257.876-6.802-4.251-6.802 4.25-6.802-4.25-6.802 4.25v-2.124l4.535-2.126-2.268-2.125v-2.125h2.268l2.267 2.125 2.267-2.125h2.268v2.125l-2.268 2.125 4.535 2.125 4.535-2.125-2.268-2.125v-2.125h2.268l2.267 2.125 2.267-2.125h2.268v2.125l-2.268 2.125 4.535 2.125 4.535-2.124-2.267-2.126v-2.125h2.267l2.267 2.125 2.267-2.125h2.268v2.125l-2.268 2.126 4.535 2.125v2.125l-6.802-4.25zM136.627 204.757l-6.802 4.25-6.802-4.25-6.802 4.25-6.802-4.25v2.124l4.535 2.127-2.268 2.124v2.126h2.268l2.267-2.126 2.267 2.126h2.268v-2.126l-2.268-2.124 4.535-2.126 4.535 2.126-2.268 2.124v2.126h2.268l2.267-2.126 2.267 2.126h2.268v-2.126l-2.268-2.124 4.535-2.126 4.535 2.125-2.267 2.125v2.126h2.267l2.267-2.126 2.267 2.126h2.268v-2.126l-2.268-2.125 4.535-2.126v-2.124l-6.802 4.25zM161.562 236.626l-3.402-5.313 3.402-5.313-3.402-5.313 3.402-5.312h-1.7l-1.702 3.542-1.7-1.772h-1.701v1.772l1.7 1.77-1.7 1.771v1.771h1.7l1.7-1.77 1.702 3.541-1.701 3.542-1.7-1.77h-1.701v1.77l1.7 1.771-1.7 1.77v1.772h1.7l1.7-1.771 1.702 3.542-1.7 3.542-1.701-1.771h-1.701v1.771l1.7 1.771-1.7 1.77v1.772h1.7l1.702-1.771 1.7 3.542h1.7l-3.4-5.313z"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#000",strokeWidth:.427,d:"m-100.98 177.17-7.087 7.086v26.575l7.087 7.087h31.889l7.087-7.087v-26.575l-7.087-7.086zm-1.772-5.316-17.717 17.716v15.945l17.717 17.717h35.433l17.716-17.717V189.57l-17.716-17.716z",transform:"matrix(1.2798 0 0 1.1995 238.66 -5.632)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 .79966 215.078 140.295)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 -.79966 215.078 322.344)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 -.79966 229.59 322.344)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 .79966 229.59 140.295)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 -.79966 207.823 322.344)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 -.79966 222.334 322.344)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 -.79966 236.845 322.344)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-104.53 180.71 3.544-3.544h-3.544z",transform:"matrix(1.9196 0 0 -1.7991 303.262 576.628)"}),(0,s.jsx)("path",{fill:"#004e00",d:"m98.084 236.626 3.402-5.313L98.084 226l3.402-5.313-3.402-5.312h1.7l1.702 3.542 1.7-1.772h1.7v1.772l-1.7 1.77 1.7 1.771v1.771h-1.7l-1.7-1.77L99.785 226l1.7 3.542 1.7-1.77h1.701v1.77l-1.7 1.771 1.7 1.77v1.772h-1.7l-1.7-1.771-1.701 3.542 1.7 3.542 1.7-1.771h1.701v1.771l-1.7 1.771 1.7 1.77v1.772h-1.7l-1.701-1.771-1.701 3.542h-1.7l3.4-5.313z"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(1.2798 0 0 1.07958 261.333 59.18)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.4,d:"m-99.213 180.71-3.543 3.544v26.575l3.543 3.543h-5.316l.001-33.662z",transform:"matrix(1.2798 0 0 1.1995 229.59 -5.632)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 .79966 207.823 140.295)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 .79966 222.334 140.295)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-93.898 147.05 3.543 5.315 3.544-5.315z",transform:"matrix(1.02384 0 0 .79966 236.845 140.295)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.4,d:"m-99.212 180.71-3.544 3.544v26.575l3.544 3.543h-5.315V180.71z",transform:"matrix(-1.2798 0 0 1.1995 30.065 -5.632)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-104.53 180.71 3.544-3.544h-3.544z",transform:"matrix(-1.9196 0 0 -1.7991 -43.617 576.628)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-104.53 180.71 3.544-3.544h-3.544z",transform:"matrix(-1.9196 0 0 1.7991 -43.617 -113.993)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-104.53 180.71 3.544-3.544h-3.544z",transform:"matrix(1.9196 0 0 1.7991 303.262 -113.993)"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#000",strokeWidth:.427,d:"m-100.98 177.17-7.087 7.086v26.575l7.087 7.087h31.889l7.087-7.087v-26.575l-7.087-7.086zm-.001-1.773-8.858 8.858v26.575l8.859 8.858h31.889l8.858-8.858v-26.575l-8.859-8.858z",transform:"matrix(1.2798 0 0 1.1995 238.66 -5.632)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(1.2798 0 0 1.07965 261.332 62.992)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(1.2798 0 0 1.07958 261.333 66.83)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(1.2798 0 0 1.07965 261.333 70.642)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(1.2798 0 0 1.07965 261.333 55.341)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(-1.2798 0 0 1.07958 -1.682 59.18)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(-1.2798 0 0 1.07965 -1.682 62.993)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(-1.2798 0 0 1.07958 -1.682 66.83)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(-1.2798 0 0 1.07965 -1.682 70.643)"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.267,d:"M-76.181 154.13h7.087l1.771 1.772-1.771 1.771h-7.087z",transform:"matrix(-1.2798 0 0 1.07965 -1.682 55.343)"}),(0,s.jsx)("path",{fill:"#970000",stroke:"#000",strokeWidth:.267,d:"M-100.98 178.94v37.205h8.858v8.858h56.693v-8.858h8.858V178.94h-8.858v-8.858h-56.693v8.858zm1.771 1.772v33.661h8.859v8.858h53.15v-8.858h8.858v-33.661H-37.2v-8.859h-53.15v8.859z",transform:"matrix(1.2798 0 0 1.1995 211.45 -5.633)"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.267,d:"m-28.347 69.094-5.315-7.087v-5.315l-5.315-5.314h-10.63l-8.858-5.315h-28.346l-8.859 5.315h-10.63l-5.315 5.315v5.315l-5.315 7.086v14.173l5.315 7.087v5.315l5.315 5.315h10.63l8.859 5.315h28.346l8.858-5.316h10.63l5.315-5.314v-5.315l5.315-7.087z",transform:"matrix(1.2798 0 0 1.1535 222.785 -36.677)"}),(0,s.jsx)("path",{fill:"#e69900",d:"M75.427 51.199v6.13l6.802 8.174v6.13l6.802 6.131h13.604l11.337 6.131h15.872l-.002-32.696z"}),(0,s.jsx)("path",{fill:"#980000",d:"m110.69 65.498-8.281 5.255h-4.947l1.65 1.751-3.298 3.504 1.648 1.751 4.947-1.751 1.649 1.751.762-4.68 9.131-5.54z"}),(0,s.jsx)("path",{fill:"#980000",d:"m101.625 61.411-8.281 5.255h-4.947l1.65 1.751-3.298 3.504 1.648 1.752 4.947-1.752 1.649 1.752.762-4.68 9.132-5.541zM97.087 53.241l-8.282 5.255H83.86l1.649 1.751-3.298 3.504 1.649 1.752 4.946-1.752 1.65 1.752.761-4.68 9.132-5.541z"}),(0,s.jsx)("path",{fill:"#e69900",d:"M184.224 51.199v-6.131l-6.802-8.174v-6.13l-6.802-6.131h-13.604l-11.337-6.13h-15.872l.002 32.696z"}),(0,s.jsx)("path",{fill:"#980000",d:"M129.83 83.894h-4.198l-4.87-4.087h-7.726l-4.199-2.044 2.1-2.043 4.198 2.043h4.199l4.198-6.13 6.298 2.043v4.087h-6.298z"}),(0,s.jsx)("path",{fill:"#fff",d:"M75.427 51.199v-6.131l6.802-8.174v-6.13l6.802-6.131h13.604l11.337-6.13h15.872l-.002 32.696z"}),(0,s.jsx)("path",{fill:"#980000",d:"M129.83 18.499h-4.198l-4.87 4.087h-7.726l-4.199 2.043 2.1 2.044 4.198-2.044h4.199l4.198 6.131 6.298-2.044V24.63h-6.298z"}),(0,s.jsx)("path",{fill:"#980000",d:"M129.826 18.499h4.199l4.87 4.087h7.726l4.198 2.043-2.099 2.044-4.199-2.044h-4.198l-4.199 6.131-6.298-2.044V24.63h6.298z"}),(0,s.jsx)("path",{fill:"#fff",d:"M184.224 51.199v6.13l-6.802 8.174v6.13l-6.802 6.131h-13.604l-11.337 6.131h-15.872l.002-32.696z"}),(0,s.jsx)("path",{fill:"#980000",d:"M129.826 83.894h4.199l4.87-4.087h7.726l4.198-2.044-2.099-2.043-4.199 2.043h-4.198l-4.199-6.13-6.298 2.043v4.087h6.298zM101.625 40.978l-8.281-5.255h-4.947l1.65-1.751-3.298-3.504 1.648-1.752 4.947 1.752 1.649-1.752.762 4.68 9.132 5.541zM148.96 36.895l8.282-5.256h4.947l-1.65-1.75 3.298-3.504-1.648-1.752-4.947 1.752-1.649-1.752-.762 4.68-9.131 5.54z"}),(0,s.jsx)("path",{fill:"#980000",d:"m110.69 36.895-8.281-5.256h-4.947l1.65-1.75-3.298-3.504 1.648-1.752 4.947 1.752 1.649-1.752.762 4.68 9.131 5.54zM97.087 49.156l-8.282-5.255H83.86l1.649-1.751-3.298-3.504 1.649-1.752 4.946 1.752 1.65-1.752.761 4.681 9.132 5.54z"}),(0,s.jsx)("path",{fill:"#fff",d:"M79.453 51.209h2.1l2.1 2.043 2.1-2.043 44.085-.002V79.82h-2.099l2.1 2.044v2.043l-6.298-6.13v-2.044h2.099v2.044h2.1v-2.044l-17.047-9.026h-14.36v-8.857l-6.382-4.597h-4.199l-2.1 2.043 2.1 2.045h-2.1z"}),(0,s.jsx)("path",{fill:"#e69900",d:"M79.453 51.188h2.1l2.1-2.043 2.1 2.043 44.085.002V22.578h-2.099l2.1-2.044V18.49l-6.298 6.13v2.044h2.099v-2.043h2.1v2.043l-17.047 9.026h-14.36v8.857l-6.382 4.597h-4.199l-2.1-2.043 2.1-2.044h-2.1z"}),(0,s.jsx)("path",{fill:"#004e00",d:"M89.025 51.187h40.811V75.71l-18.138-10.218H98.095v-8.174z"}),(0,s.jsx)("path",{fill:"#980000",d:"m158.026 40.978 8.281-5.255h4.947l-1.65-1.751 3.298-3.504-1.648-1.752-4.947 1.752-1.649-1.752-.762 4.68-9.132 5.541zM162.564 49.156l8.282-5.255h4.946l-1.649-1.751 3.298-3.504-1.649-1.752-4.946 1.752-1.65-1.752-.761 4.681-9.132 5.54z"}),(0,s.jsx)("path",{fill:"#fff",d:"M180.198 51.188h-2.1l-2.1-2.043-2.1 2.043-44.085.002V22.578h2.099l-2.1-2.044V18.49l6.298 6.13v2.044h-2.099v-2.043h-2.1v2.043l17.047 9.026h14.36v8.857l6.382 4.597h4.199l2.1-2.043-2.1-2.044h2.1z"}),(0,s.jsx)("path",{fill:"#004e00",d:"M170.626 51.21h-40.811V26.687l18.138 10.218h13.603v8.174z"}),(0,s.jsx)("path",{fill:"#980000",d:"m148.96 65.498 8.282 5.255h4.947l-1.65 1.751 3.298 3.504-1.648 1.751-4.947-1.751-1.649 1.751-.762-4.68-9.131-5.54z"}),(0,s.jsx)("path",{fill:"#980000",d:"m158.026 61.411 8.281 5.255h4.947l-1.65 1.751 3.298 3.504-1.648 1.752-4.947-1.752-1.649 1.752-.762-4.68-9.132-5.541zM162.564 53.241l8.282 5.255h4.946l-1.649 1.751 3.298 3.504-1.649 1.752-4.946-1.752-1.65 1.752-.761-4.68-9.132-5.541z"}),(0,s.jsx)("path",{fill:"#e69900",d:"M180.198 51.209h-2.1l-2.1 2.043-2.1-2.043-44.085-.002V79.82h2.099l-2.1 2.044v2.043l6.298-6.13v-2.044h-2.099v2.044h-2.1v-2.044l17.047-9.026h14.36v-8.857l6.382-4.597h4.199l2.1 2.043-2.1 2.045h2.1z"}),(0,s.jsx)("path",{fill:"#980000",d:"M170.626 51.187h-40.811V75.71l18.138-10.218h13.603v-8.174z"}),(0,s.jsx)("path",{fill:"#980000",d:"M89.025 51.21h40.811V26.687l-18.138 10.218H98.095v8.174z"}),(0,s.jsx)("path",{fill:"#980000",d:"m134.305 51.198 11.388-6.131h6.802l-2.268-2.043 4.535-4.088-2.267-2.043-6.802 2.043-2.268-2.043-1.047 5.46-12.557 6.464zM125.346 51.187l-11.388 6.132h-6.802l2.268 2.043-4.535 4.087 2.267 2.044 6.802-2.044 2.268 2.044 1.047-5.46 12.557-6.465z"}),(0,s.jsx)("path",{fill:"#004e00",d:"m125.346 51.198-11.388-6.131h-6.802l2.268-2.043-4.535-4.088 2.267-2.043 6.802 2.043 2.268-2.043 1.047 5.46 12.557 6.464zM134.305 51.187l11.388 6.132h6.802l-2.268 2.043 4.535 4.087-2.267 2.044-6.802-2.044-2.268 2.044-1.047-5.46-12.557-6.465z"}),(0,s.jsx)("path",{fill:"#fff",d:"m116.223 51.2 13.603-10.219L143.431 51.2l-13.605 10.218z"}),(0,s.jsx)("path",{fill:"#980000",d:"m85.742 55.282 2.1 2.043-2.1 2.044h-2.1l-6.298-8.174h2.1l4.198 6.13h2.1l-2.1-2.043 2.1-2.044h4.198v2.044z"}),(0,s.jsx)("path",{fill:"#980000",d:"m85.742 47.109 2.1-2.043-2.1-2.044h-2.1l-6.298 8.174h2.1l4.198-6.13h2.1l-2.1 2.043 2.1 2.044h4.198v-2.044zM173.913 55.282l-2.1 2.043 2.1 2.044h2.1l6.297-8.174h-2.1l-4.198 6.13h-2.1l2.1-2.043-2.1-2.044h-4.198v2.044z"}),(0,s.jsx)("path",{fill:"#980000",d:"m173.913 47.109-2.1-2.043 2.1-2.044h2.1l6.297 8.174h-2.1l-4.198-6.13h-2.1l2.1 2.043-2.1 2.044h-4.198v-2.044zM127.727 43.022h4.198V59.37h-4.198z"}),(0,s.jsx)("path",{fill:"#980000",d:"M121.429 47.11h16.794v8.174H121.43z"}),(0,s.jsx)("path",{fill:"#004e00",stroke:"#000",strokeWidth:.07,d:"m333.07 170.08-10.63 5.315v8.858l10.63 5.315h10.63l10.63-5.315v-8.858l-10.63-5.315z",transform:"matrix(3.555 0 0 3.847 -1073.157 -292.234)"}),(0,s.jsx)("path",{fill:"#c00",d:"M87.169 396.271h2.285v-4.19h4.572v4.19h2.285v-9.778h-2.285v4.19h-4.572v-4.19h-2.285zM145.07 428.865h2.285v-4.191h4.572v4.19h2.285v-9.778h-2.285v4.191h-4.572v-4.19h-2.285zM108.502 379.974h2.285v-4.19h4.573v4.19h2.285v-9.778h-2.285v4.19h-4.573v-4.19h-2.285zM142.025 379.974h2.285v-4.19h4.573v4.19h2.285v-9.778h-2.285v4.19h-4.573v-4.19h-2.285zM163.348 396.271h2.285v-4.19h4.573v4.19h2.285v-9.778h-2.285v4.19h-4.573v-4.19h-2.285zM163.348 412.568h2.285v-4.191h4.573v4.191h2.285v-9.779h-2.285v4.191h-4.573v-4.19h-2.285z"}),(0,s.jsx)("path",{fill:"#e69900",d:"M129.827 435.389v-35.855h54.856v16.298l-36.57 19.557zM129.828 363.673v35.856H74.972V383.23l36.57-19.558z"}),(0,s.jsx)("path",{fill:"#fff",d:"M129.827 363.673v35.856h54.856V383.23l-36.57-19.558zM129.828 435.389l-.001-35.854-54.855-.001v16.298l36.57 19.557z"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.133,d:"M-177.16 368.5h21.259l-21.259-10.63zm24.803-1.772-.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717z",transform:"matrix(1.0321 0 0 .92 341.934 45.873)"}),(0,s.jsx)("path",{fill:"#980000",d:"M111.51 388.116v22.814h5.484l12.802 6.52 12.8-6.52h5.485v-22.814h-5.484l-12.801-6.52-12.802 6.52z"}),(0,s.jsx)("path",{fill:"#e69900",stroke:"#000",strokeWidth:.133,d:"M-177.16 368.5h21.259l-21.259-10.63zm24.803-1.772-.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717z",transform:"matrix(-1.0321 0 0 -.92 -82.279 753.19)"}),(0,s.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.133,d:"M-177.16 368.5h21.259l-21.259-10.63zm24.803-1.772-.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717z",transform:"matrix(-1.0321 0 0 .92 -82.279 45.873)"}),(0,s.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.133,d:"M-177.16 368.5h21.259l-21.259-10.63zm24.803-1.772-.001 17.717h-33.661v-14.173h-7.086l-8.858-5.315v-12.402l5.314-5.315h-7.086v17.717h-1.772v-19.489h17.717z",transform:"matrix(1.0321 0 0 -.92 341.935 753.19)"}),(0,s.jsx)("path",{fill:"#980000",d:"M85.951 412.578h2.285v-4.89h4.573v4.89h2.285V401.17h-2.285v4.89h-4.573v-4.89h-2.285zM107.883 428.875h2.285v-4.89h4.573v4.89h2.285v-11.409h-2.285v4.89h-4.573v-4.89h-2.285zM85.951 386.497h2.285v4.89h4.573v-4.89h2.285v11.408h-2.285v-4.89h-4.573v4.89h-2.285zM107.883 370.198h2.285v4.89h4.573v-4.89h2.285v11.408h-2.285v-4.89h-4.573v4.89h-2.285zM142.634 428.875h2.285v-4.89h4.573v4.89h2.285v-11.409h-2.285v4.89h-4.573v-4.89h-2.285zM164.576 397.902h2.285v-4.89h4.573v4.89h2.285v-11.409h-2.285v4.89h-4.573v-4.89h-2.285z"}),(0,s.jsx)("path",{fill:"#980000",d:"M142.634 428.875h2.285v-4.89h4.573v4.89h2.285v-11.409h-2.285v4.89h-4.573v-4.89h-2.285z"}),(0,s.jsx)("path",{fill:"#980000",d:"M142.634 428.875h2.285v-4.89h4.573v4.89h2.285v-11.409h-2.285v4.89h-4.573v-4.89h-2.285zM164.576 412.568h2.285v-4.89h4.573v4.89h2.285v-11.409h-2.285v4.89h-4.573v-4.89h-2.285zM142.634 381.605h2.285v-4.89h4.573v4.89h2.285v-11.409h-2.285v4.89h-4.573v-4.89h-2.285z"}),(0,s.jsx)("path",{fill:"#004e00",d:"m131.658 399.532 7.314-5.944h3.657v2.971h-3.657v1.486h5.485v-5.942h-5.485v-4.457h-7.314v4.456h1.829v-2.972h3.656v2.972l-7.313 5.943-7.315-5.942v-2.97h3.657v2.97h1.829v-4.457l-7.314.001v4.456H115.2v5.944h5.486v-1.486h-3.658v-2.972h3.658l7.314 5.942-7.314 5.942h-3.657v-2.97h3.657v-1.487h-5.485v5.943h5.485v4.456l7.314.002v-4.458h-1.828v2.972h-3.657v-2.972l7.313-5.942 7.315 5.944v2.97h-3.656v-2.97h-1.83v4.456h7.314v-4.456l5.486-.002v-5.942h-5.486v1.486h3.658v2.972h-3.658z"}),(0,s.jsxs)("g",{transform:"matrix(1.0321 0 0 .95838 204.8 18.155)",children:[(0,s.jsx)("path",{fill:"#980000",d:"m-122.352 134.285 3.43-3.73h20.573l15.43-16.784h20.574l15.43 16.784h20.575l3.429 3.729-3.429 3.73h-20.574l-15.43 16.784H-82.92l-15.43-16.784h-20.574z"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.29,d:"m372.05 391.54 1.903-1.949h22.834l17.126-19.489h19.029l17.126 19.489h22.835l1.903 1.949-1.903 1.948h-22.835l-15.223 17.54h-22.834l-15.224-17.54h-22.834z",transform:"matrix(.93104 0 0 .90908 -466.86 -221.29)"}),(0,s.jsx)("path",{fill:"#e69900",d:"m-64.071 136.148 6.858 7.458-3.428 3.73-1.715-1.865h-1.714v1.865l1.714 1.865h3.43l3.428-3.73v-3.73l-6.857-7.458 6.857-7.46v-3.73l-3.429-3.729h-3.428l-1.715 1.864v1.865h1.715l1.714-1.865 3.428 3.73-6.857 7.46-6.859-7.46 6.859-7.46v-1.863h-1.715l-6.857 7.458-6.859-7.46h-1.715v1.865l6.859 7.46-6.859 7.46-6.858-7.46 3.429-3.73 1.715 1.865h1.714v-1.865l-1.714-1.864h-3.43l-3.429 3.73v3.729l6.859 7.46-6.859 7.46v3.729l3.43 3.73h3.429l1.714-1.865v-1.865h-1.714l-1.715 1.865-3.429-3.73 6.858-7.46 6.858 7.46-6.858 7.46v1.864h1.714l6.859-7.46 6.858 7.46h1.714v-1.865l-6.858-7.46zm-8.572-9.325-6.859 7.46 6.859 7.46 6.858-7.46zM-82.917 154.79v14.918l1.715-1.865 1.715 1.865 1.714-1.865 1.714 1.865 1.715-1.865 1.714 1.865 1.715-1.865 1.715 1.865 1.714-1.865 1.715 1.865 1.713-1.865 1.715 1.865V154.79zM-62.353 113.79V98.872l-1.715 1.865-1.715-1.865-1.714 1.865-1.714-1.865-1.715 1.865-1.714-1.865-1.715 1.865-1.715-1.865-1.714 1.865-1.715-1.865-1.713 1.865-1.715-1.865v14.918zM-33.205 130.58v-14.918l-1.715 1.865-1.713-1.865-1.715 1.865-1.715-1.865-1.714 1.865-1.715-1.865-1.714 1.865-1.714-1.865v14.918zM-98.355 130.58v-14.918l-1.715 1.865-1.713-1.865-1.715 1.865-1.715-1.865-1.714 1.865-1.715-1.865-1.714 1.865-1.714-1.865v14.918zM-33.205 138.01v14.918l-1.715-1.865-1.713 1.865-1.715-1.865-1.715 1.865-1.714-1.865-1.715 1.865-1.714-1.865-1.714 1.865V138.01zM-98.355 138.01v14.918l-1.715-1.865-1.713 1.865-1.715-1.865-1.715 1.865-1.714-1.865-1.715 1.865-1.714-1.865-1.714 1.865V138.01z"}),(0,s.jsx)("path",{fill:"#004e00",d:"M-62.347 154.79v9.324l1.714-1.866 1.715 1.866 1.714-1.866 1.714 1.866 1.715-1.866 1.714 1.866 1.715-1.866 1.714 1.866 1.715-1.866v-24.242zM-82.933 154.79v9.325l-1.715-1.866-1.715 1.866-1.714-1.866-1.714 1.866-1.715-1.866-1.714 1.866-1.715-1.866-1.714 1.866-1.715-1.866.001-24.243zM-82.933 113.79v-9.324l-1.714 1.866-1.715-1.866-1.714 1.866-1.714-1.866-1.715 1.866-1.714-1.866-1.715 1.866-1.714-1.866-1.715 1.866v24.242zM-62.347 113.79v-9.324l1.714 1.866 1.715-1.866 1.714 1.866 1.714-1.866 1.715 1.866 1.714-1.866 1.715 1.866 1.714-1.866 1.715 1.866v24.242zM-112.078 149.206l-1.715-1.865-1.713 1.865-1.714-1.865-1.715 1.865-1.715-1.865-1.715 1.865-1.713-1.865-1.715 1.865v-29.838l1.714 1.866 1.714-1.866 1.715 1.866 1.714-1.866 1.715 1.866 1.714-1.866 1.714 1.866 1.715-1.866v11.19h-6.857l-3.43 3.73 3.43 3.73h6.857zM-33.202 149.206l1.715-1.865 1.713 1.865 1.714-1.865 1.715 1.865 1.715-1.865 1.715 1.865 1.713-1.865 1.715 1.865v-29.838l-1.714 1.866-1.714-1.866-1.715 1.866-1.714-1.866-1.715 1.866-1.714-1.866-1.714 1.866-1.715-1.866v11.19h6.857l3.43 3.73-3.43 3.73h-6.857z"}),(0,s.jsx)("path",{fill:"#fff",d:"M-91.36 155.978s-1.428 1.474-1.428 2.21c-.028.687 1.524 2.227 2.143 2.211.81.016 2.143-1.474 2.143-2.21 0-.737-1.43-2.211-1.43-2.211v-2.948s3.104 5.068 3.104 2.857c0-1.586-3.103-4.331-3.103-4.331h-1.429s-3.103 3.214-3.103 4.33c0 2.212 3.103-2.856 3.103-2.856z"}),(0,s.jsx)("path",{fill:"#980000",d:"M-73.497 161.669s-1.715 2.063-1.715 3.095c-.034.962 1.829 3.118 2.572 3.095.971.023 2.572-2.063 2.572-3.095s-1.715-3.095-1.715-3.095v-4.127s3.037 6.751 3.037 3.656c0-2.001-3.037-5.72-3.037-5.72h-1.714s-3.506 4.656-3.037 5.72c0 3.095 3.037-3.656 3.037-3.656z"}),(0,s.jsx)("ellipse",{cx:403.94,cy:391.54,fill:"#004e00",rx:3.543,ry:1.772,transform:"matrix(.96774 0 0 1.0526 -482.4 -277.85)"}),(0,s.jsx)("ellipse",{cx:403.94,cy:391.54,fill:"#004e00",rx:3.543,ry:1.772,transform:"matrix(.96774 0 0 1.0526 -463.54 -277.85)"}),(0,s.jsx)("ellipse",{cx:403.94,cy:391.54,fill:"#004e00",rx:3.543,ry:1.772,transform:"matrix(.96774 0 0 1.0526 -444.69 -277.85)"}),(0,s.jsx)("path",{fill:"#fff",d:"M-91.72 112.76s-1.428-1.474-1.428-2.21c-.028-.688 1.524-2.228 2.143-2.211.81-.017 2.143 1.473 2.143 2.21s-1.43 2.211-1.43 2.211v2.948s3.104-5.068 3.104-2.857c0 1.586-3.103 4.33-3.103 4.33h-1.429s-3.103-3.213-3.103-4.33c0-2.21 3.103 2.857 3.103 2.857z"}),(0,s.jsx)("path",{fill:"#980000",d:"M-73.857 107.062s-1.715-2.063-1.715-3.095c-.034-.962 1.829-3.118 2.572-3.095.971-.023 2.572 2.063 2.572 3.095s-1.715 3.095-1.715 3.095v4.127s3.037-6.751 3.037-3.656c0 2.001-3.037 5.72-3.037 5.72h-1.714s-3.506-4.656-3.037-5.72c0-3.095 3.037 3.656 3.037 3.656z"}),(0,s.jsx)("path",{fill:"#fff",d:"M-54.86 155.978s-1.428 1.474-1.428 2.21c-.028.687 1.524 2.227 2.143 2.211.81.016 2.143-1.474 2.143-2.21 0-.737-1.43-2.211-1.43-2.211v-2.948s3.104 5.068 3.104 2.857c0-1.586-3.103-4.331-3.103-4.331h-1.429s-3.103 3.214-3.103 4.33c0 2.212 3.103-2.856 3.103-2.856zM-55.22 112.76s-1.428-1.474-1.428-2.21c-.028-.688 1.524-2.228 2.143-2.211.81-.017 2.143 1.473 2.143 2.21s-1.43 2.211-1.43 2.211v2.948s3.104-5.068 3.104-2.857c0 1.586-3.103 4.33-3.103 4.33h-1.429s-3.103-3.213-3.103-4.33c0-2.21 3.103 2.857 3.103 2.857z"}),(0,s.jsx)("path",{fill:"#980000",d:"M-106.273 145.593s-1.9 1.383-1.9 2.074c-.037.644 2.026 2.089 2.85 2.074 1.076.015 2.85-1.383 2.85-2.074s-1.9-2.074-1.9-2.074v-2.765s3.364 4.523 3.364 2.45c0-1.342-3.365-3.833-3.365-3.833h-1.9s-3.882 3.119-3.363 3.832c0 2.074 3.364-2.45 3.364-2.45zM-106.673 124.471s-1.9-1.383-1.9-2.074c-.037-.644 2.026-2.09 2.85-2.074 1.076-.015 2.85 1.383 2.85 2.074s-1.9 2.074-1.9 2.074v2.765s3.364-4.524 3.364-2.45c0 1.342-3.365 3.833-3.365 3.833h-1.9s-3.882-3.12-3.363-3.832c0-2.074 3.364 2.45 3.364 2.45zM-40.423 145.15s-1.9 1.384-1.9 2.075c-.037.644 2.026 2.089 2.85 2.074 1.076.015 2.85-1.383 2.85-2.074s-1.9-2.074-1.9-2.074v-2.765s3.364 4.523 3.364 2.45c0-1.342-3.365-3.833-3.365-3.833h-1.9s-3.882 3.119-3.363 3.832c0 2.074 3.364-2.45 3.364-2.45zM-40.823 124.031s-1.9-1.383-1.9-2.074c-.037-.644 2.026-2.09 2.85-2.074 1.076-.015 2.85 1.383 2.85 2.074s-1.9 2.074-1.9 2.074v2.765s3.364-4.524 3.364-2.45c0 1.342-3.365 3.833-3.365 3.833h-1.9s-3.882-3.12-3.363-3.832c0-2.074 3.364 2.45 3.364 2.45z"}),(0,s.jsx)("path",{fill:"#fff",d:"M-120.285 145.363c-.615-1.277-.453-1.86-.453-2.597-.028-.687 1.716-2.025 2.336-2.009.809-.016 2.143 1.474 2.143 2.21 0 .737.034 1.374-.298 2.644l-.893-2.154c-1.084 3.056-1.143 3.127-1.787-.074zM-120.225 123.93c-.615 1.278-.453 1.862-.453 2.598-.028.687 1.716 2.025 2.336 2.009.809.016 2.143-1.474 2.143-2.21 0-.737.034-1.374-.298-2.644l-.893 2.154c-1.084-3.056-1.143-3.127-1.787.074zM-27.805 145.093c-.615-1.277-.453-1.86-.453-2.597-.028-.687 1.716-2.025 2.336-2.009.809-.016 2.143 1.474 2.143 2.21 0 .737.034 1.374-.298 2.644l-.893-2.154c-1.084 3.056-1.143 3.127-1.787-.074zM-27.755 123.655c-.615 1.277-.453 1.86-.453 2.597-.028.687 1.716 2.025 2.336 2.009.809.016 2.143-1.474 2.143-2.21 0-.737.034-1.374-.298-2.644l-.893 2.154c-1.084-3.056-1.143-3.127-1.787.074z"}),(0,s.jsx)("path",{fill:"#980000",stroke:"#000",strokeWidth:.133,d:"M115.16 177.16v-5.315H99.216v-10.63H85.043v-3.543H72.641v-31.89h12.402v-3.543h14.173v-10.63h15.944v-5.315h21.26v5.315h15.945v10.63h14.173v3.543h12.402v31.89h-12.402v3.543h-14.173v10.63H136.42v5.315zm-1.772 1.772v-5.315H97.444v-10.63H83.271v-3.543H70.869v-35.433h12.402v-3.544h14.173v-10.63h15.945v-5.315h24.803v5.315h15.945v10.63h14.173v3.544h12.402v35.433H168.31v3.543h-14.173v10.63h-15.945v5.315z",transform:"matrix(1 0 0 .99999 -198.43 -7.085)"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/101.1b8f34f4.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js deleted file mode 100644 index 7bb4517c6e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1010.af98507b.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1010"],{19161(e,s,h){h.r(s),h.d(s,{default:()=>l});var i=h(74848);h(47867);let l=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0h640V472.79H0z"}),(0,i.jsx)("path",{fill:"#f10600",d:"M0 0h640v157.374H0z"}),(0,i.jsx)("path",{d:"M0 322.624h640v157.374H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1010.af98507b.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js deleted file mode 100644 index b46c3aac17..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1019.2c88f074.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1019"],{2534(l,i,s){s.r(i),s.d(i,{default:()=>e});var h=s(74848);s(47867);let e=l=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 640 480",width:"1em",height:"1em",...l,children:[(0,h.jsx)("defs",{children:(0,h.jsx)("clipPath",{id:"gb_inline_svg__a",children:(0,h.jsx)("path",{fillOpacity:.67,d:"M-85.333 0h682.67v512h-682.67z"})})}),(0,h.jsx)("g",{clipPath:"url(#gb_inline_svg__a)",transform:"translate(80)scale(.94)",children:(0,h.jsxs)("g",{strokeWidth:"1pt",children:[(0,h.jsx)("path",{fill:"#006",d:"M-256 0H768.02v512.01H-256z"}),(0,h.jsx)("path",{fill:"#fff",d:"M-256 0v57.244l909.535 454.768H768.02V454.77L-141.515 0zM768.02 0v57.243L-141.515 512.01H-256v-57.243L653.535 0z"}),(0,h.jsx)("path",{fill:"#fff",d:"M170.675 0v512.01h170.67V0zM-256 170.67v170.67H768.02V170.67z"}),(0,h.jsx)("path",{fill:"#c00",d:"M-256 204.804v102.402H768.02V204.804zM204.81 0v512.01h102.4V0zM-256 512.01 85.34 341.34h76.324l-341.34 170.67zM-256 0 85.34 170.67H9.016L-256 38.164zm606.356 170.67L691.696 0h76.324L426.68 170.67zM768.02 512.01 426.68 341.34h76.324L768.02 473.848z"})]})})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1019.2c88f074.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js deleted file mode 100644 index 6b7753f8c0..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 103.3717b318.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["103"],{42810(l,e,s){s.r(e),s.d(e,{default:()=>t});var d=s(74848);s(47867);let t=l=>(0,d.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,d.jsxs)("g",{fillRule:"evenodd",children:[(0,d.jsx)("path",{d:"m1.644 0-.5 479.985H641.13L1.64 0z"}),(0,d.jsx)("path",{fill:"red",d:"m640.63 479.984.5-479.985H1.145l639.49 479.985z"})]}),(0,d.jsx)("path",{fill:"#fc0",stroke:"#fc0",strokeWidth:1.065,d:"m178 54-3.84-.2c-1.18-2.78-4.513-3.823-6.563-2.653-1.86.16-11.6-.147-11.6-.147l7.12 3.12c1.76 4.76 7.88 5.88 7.88 5.88-.543 8.774-8.881-1.133-15.881 3.867-5 3-5.059 6.583-7.761 12.371-.84 1.61-4.36 5.761-4.36 5.761l5.88-.5-1.88 2.5 7-1s-.94.785-1.5 1.38c1.037.203 8-1.63 8-1.63l-.5 2.25c3.57-1.43 8-2.88 8-2.88s1.57 1.31 3 1.88l1-4 4 1 1-4c6 8 8 16 19 18l-1-4c3.06 1.31 8.74 4.09 8.74 4.09l.86-1.83c4.77 3.42 8.73 3.36 11.4 3.74 0 0-1.99-4.98-2-5 .13.05 1.99 1.01 2 1l-3-8 3 1-4-6 1.5-1-.5-3c6 2 14 5 15 12 1 11-11 14-19 13 6 5 17 3 22-2 2-2 3-5 4-8 1 3 3 7 3 11-1 9-13 12-21 13 9 5 25-1 26-14 0-11-7-16-10-21-.45-1.82-1-5.38-1-5.38.388.115 3 1.39 3 1.39s-1.77-3.31-2-4.01c0 0-3.12-8.5-4.25-10.38.186-.105 2.25.35 2.25.35l-8.19-10.27s1.976-.18 2.32-.24c0 0-9.52-7.51-12.13-8.46l3-1c-6-3-13-1-19 3l1-3-1.83.17v-3.43l1.83-2.74-3-1 2-5-3 1 1-5s-2.24 1.04-3.6.89c.05.11 1.59-3.42 1.59-3.42-.95-1.49.01-4.47.01-4.47-7 1-8 2-12 8-6 11-4 16-3 27z",transform:"matrix(2.21989 0 0 2.21194 1.145 0)"}),(0,d.jsx)("path",{fill:"red",fillRule:"evenodd",stroke:"red",strokeWidth:1.42,d:"M215.78 70.438c.521.86 6.197 3.594 10.468 6.016-1.146-4.61-9.479-5.625-10.468-6.016z",transform:"matrix(2.21989 0 0 2.21194 1.145 0)"}),(0,d.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m174.949 399.033-14.119-8.98-18.95 9.046 4.201-16.147-14.487-15.174 16.718-1.017 9.997-18.403 6.126 15.527 20.668 3.783-12.929 10.617zM211.184 320.09l-6.55-3.12-6.296 3.606.959-7.19-5.388-4.843 7.141-1.305 2.966-6.614 3.456 6.37 7.222.775-5.006 5.242zM243.113 274.81l-14.363-6.989-13.923 7.83 2.222-15.77-11.785-10.773 15.745-2.765 6.631-14.488 7.526 14.068 15.872 1.814-11.1 11.457zM177.406 211.77l-16.92-8.447-16.573 9.098 2.834-18.642-13.807-12.896 18.671-3.075 8.043-17.07 8.704 16.745 18.776 2.347-13.29 13.422zM116.605 277.244l-17.062-10.087-17.016 10.308 4.362-19.288-15.11-12.918 19.759-1.836 7.676-18.315 7.85 18.16 19.854 1.615-14.906 13.05z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/103.3717b318.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js deleted file mode 100644 index 328012713a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1065.5cc838a2.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1065"],{11056(c,s,l){l.r(s),l.d(s,{default:()=>i});var t=l(74848);l(47867);let i=c=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...c,children:[(0,t.jsxs)("defs",{children:[(0,t.jsxs)("radialGradient",{id:"gt_inline_svg__a",children:[(0,t.jsx)("stop",{offset:.216,stopColor:"#f9f0aa"}),(0,t.jsx)("stop",{offset:1,stopColor:"#b07e09"})]}),(0,t.jsx)("radialGradient",{xlinkHref:"#gt_inline_svg__a",id:"gt_inline_svg__d",cx:447.418,cy:308.269,r:16.534,gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("radialGradient",{xlinkHref:"#gt_inline_svg__a",id:"gt_inline_svg__e",cx:451.558,cy:312.995,r:10.911,gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("radialGradient",{xlinkHref:"#gt_inline_svg__a",id:"gt_inline_svg__f",cx:454.11,cy:308.643,r:9.78,gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("radialGradient",{xlinkHref:"#gt_inline_svg__a",id:"gt_inline_svg__g",cx:458.39,cy:307.057,r:17.354,gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("radialGradient",{xlinkHref:"#gt_inline_svg__a",id:"gt_inline_svg__j",cx:445.976,cy:252.363,r:13.018,gradientUnits:"userSpaceOnUse"}),(0,t.jsxs)("radialGradient",{id:"gt_inline_svg__m",cx:477.858,cy:215.266,r:.345,gradientUnits:"userSpaceOnUse",children:[(0,t.jsx)("stop",{offset:.259,stopColor:"#a50a0a"}),(0,t.jsx)("stop",{offset:1,stopColor:"#4c0505"})]}),(0,t.jsxs)("radialGradient",{id:"gt_inline_svg__n",cx:489.072,cy:210.326,r:.345,fx:489.072,fy:210.326,gradientTransform:"scale(.97707 1.02346)",gradientUnits:"userSpaceOnUse",children:[(0,t.jsx)("stop",{offset:0,stopColor:"#fff"}),(0,t.jsx)("stop",{offset:1,stopColor:"#fff",stopOpacity:0})]}),(0,t.jsxs)("linearGradient",{id:"gt_inline_svg__h",x1:473.906,x2:472.357,y1:259.171,y2:231.963,gradientUnits:"userSpaceOnUse",children:[(0,t.jsx)("stop",{offset:.216,stopColor:"#b07e09",stopOpacity:0}),(0,t.jsx)("stop",{offset:1,stopColor:"#b07e09"})]}),(0,t.jsxs)("linearGradient",{id:"gt_inline_svg__i",x1:483.126,x2:485.495,y1:296.656,y2:326.583,gradientUnits:"userSpaceOnUse",children:[(0,t.jsx)("stop",{offset:.216,stopColor:"#b07e09",stopOpacity:0}),(0,t.jsx)("stop",{offset:1,stopColor:"#b07e09"})]}),(0,t.jsxs)("linearGradient",{id:"gt_inline_svg__k",x1:451.541,x2:455.366,y1:249.523,y2:240.576,gradientUnits:"userSpaceOnUse",children:[(0,t.jsx)("stop",{offset:.216,stopColor:"#f9f0aa"}),(0,t.jsx)("stop",{offset:1,stopColor:"#b07e09"})]}),(0,t.jsxs)("linearGradient",{id:"gt_inline_svg__l",x1:473.314,x2:475.929,y1:237.247,y2:270.446,gradientUnits:"userSpaceOnUse",children:[(0,t.jsx)("stop",{offset:.216,stopColor:"#f9f0aa"}),(0,t.jsx)("stop",{offset:1,stopColor:"#b07e09"})]})]}),(0,t.jsx)("path",{fill:"#4997d0",d:"M0 0h640v480H0z"}),(0,t.jsx)("path",{fill:"#fff",d:"M213.333 0h213.333v480H213.333z"}),(0,t.jsxs)("g",{transform:"translate(0 40)scale(.66667)",children:[(0,t.jsxs)("g",{stroke:"#24420e",children:[(0,t.jsx)("path",{fill:"none",strokeWidth:.437,d:"M452.12 377.48c2.67-.407 4.208-1.138 6.035-1.786m2.215-4.054c1.347 1.43 2.417 2.95 2.993 4.635m-8.113-5.075c1.405 1.313 2.376 2.712 3.138 4.152M408.81 238.77c-1.044 1.602-3.092 2.726-4.78 3.428m-.34-.198c.035-1.368-.236-3.026.05-4.394m-1.98 5.024c.114.37.435 1.4.676 2.028m2.024.922c-.378.082-1.52.257-2.028.338m-3.952-.878c-.013 2.52.286 5.553.53 7.82m-1.79-.96c.472.757.947 1.504 1.545 1.883m-4.585 6.467c.49.94.943 2.122 1.304 3.96m3.716-4.63c-.414.205-1.215.93-1.93 1.545m1.59 4.395c-.98.872-2.198 1.504-3.428 2.124m-3.812 40.406c1.153 1.893 2.42 3.56 3.96 4.684m.58 1.686c-1.294-.166-2.16-.545-2.945-.966m4.395 8.406 1.69.966m-.44 3.474c1.255.816 2.51 2.283 3.765 3.862m-1.445 2.848c1.385.293 2.493.64 3.235 1.062m-1.065 2.418 2.124.072m1.206-5.382c-.102 1.534-.253 2.972-.483 4.25m1.013 1.59.434-1.642m4.686 5.992-.146 3.236m39.206 27.904-1.16 1.593m-2.41-3.913-.676-1.834"}),(0,t.jsxs)("g",{strokeWidth:.164,children:[(0,t.jsx)("path",{fill:"#406325",d:"M486.11 384.93c-.797-1.256-2.108-2.028-3.277-2.656-7.727-4.056-15.406-5.843-24.116-7.244-2.013-.337-4.027-2.22-6.087-3.187-4.963-2.365-10.49-3.284-15.31-5.697-.33-.146-1.546-.87-2.11-1.545-1.918-2.22-5.384-2.898-7.537-4.974-8.335-7.87-17.184-15.116-21.772-25.547-5.572-12.7-12.503-25.787-11.566-40.227.608-9.126-.75-18.35 1.497-27.043 3.326-12.894 7.588-25.64 15.407-36.314l-1.31.82c-7.868 10.675-12.128 23.423-15.453 36.316-2.248 8.692-.89 17.916-1.5 27.043-.935 14.44 5.996 27.526 11.568 40.274 4.588 10.382 13.485 17.625 21.774 25.546 2.154 2.027 5.62 2.703 7.54 4.973.56.626 1.824 1.4 2.105 1.544 4.825 2.415 10.35 3.332 15.314 5.65 2.06 1.014 4.074 2.85 6.087 3.188 8.71 1.4 16.39 3.235 24.116 7.242 1.217.628 2.482 1.4 3.28 2.657l1.356-.82"}),(0,t.jsxs)("g",{fill:"#67923d",children:[(0,t.jsx)("path",{d:"M406.34 331.62c-2.794-6.3-1.365-21.608-.198-23.53 6.633 13.006 4.425 23.74.198 23.53zm45.86 45.39c-7.092.364-20.61 9.295-21.864 11.396 15.085.116 24.02-7.315 21.864-11.396zm7.46-4.29c-6.845-5.45-14.19-23.66-14.032-26.5 15.11 10.833 18.936 24.28 14.032 26.5z"}),(0,t.jsx)("path",{d:"M454.61 372.78c-6.95-4.235-15.786-20.115-15.938-22.754 15.202 8.194 20.198 20.13 15.938 22.754zM439.05 366c.984-7.822-5.666-24.24-7.585-25.98-2.95 16.468 2.997 27.574 7.585 25.98zm-27.31-24.28c-2.304-5.646-.613-19.32.47-20.998 5.52 11.696 3.264 21.218-.47 20.998zm-13.71-76.83c3.59-6.648 18.38-15.712 20.99-15.93-6.77 14.568-18.037 19.828-20.99 15.93z"}),(0,t.jsx)("path",{d:"M398.74 259.33c2.148-7.282 14.874-19.265 17.36-20.034-3.727 15.676-13.678 23.18-17.36 20.034zm27.81 99.15c-4.992-6.176-8.011-23.865-7.29-26.36 11.27 12.514 12.03 25.233 7.29 26.36zm-28.65-36.46c-6.91 1.089-21.36-4.636-22.92-6.337 14.532-3.15 24.287 2.072 22.92 6.337zm-2.22-9.68c.823-5.577 8.665-15.81 10.36-16.66-1.11 11.958-7.448 18.6-10.36 16.66zm51.33 58.54c-8.475.435-24.63 11.107-26.128 13.618 18.028.143 28.705-8.74 26.128-13.618z"})]}),(0,t.jsxs)("g",{fill:"#406325",children:[(0,t.jsx)("path",{d:"M406.41 331.47c4.227.21 6.405-10.396-.27-23.38 1.212 12.32 1.21 22.31.27 23.38zm11.18 19.99c-4.474-5.47-19.38-11.328-21.712-11.14 8.885 12.08 19.88 15.096 21.712 11.14zm-24.42-52.98c-1.147-8.043-12.334-22.713-14.743-23.97 1.517 17.176 10.548 26.698 14.743 23.97zm8.39 34.29c-4.993-3.68-18.97-5.344-20.94-4.723 10.137 8.305 20.212 8.458 20.94 4.723zm-9.36-24.83c-2.885-5.69-14.812-13.482-16.892-13.7 5.517 12.386 14.558 16.938 16.892 13.7zm2.73-47.54c.905-7.573-5.533-23.446-7.345-25.158-2.866 15.925 2.918 26.664 7.345 25.158zm4.47-14.92c2.658-6.496.756-22.43-.522-24.417-6.403 13.51-3.827 24.648.522 24.417z"}),(0,t.jsx)("path",{d:"M404.42 237.83c3.136-4.77 4.162-17.685 3.485-19.47-7.236 9.715-6.958 18.944-3.485 19.47zm5.95-6.14c4.402-3.477 9.224-15.5 9.084-17.433-9.74 6.954-12.22 15.84-9.084 17.433zm-16.05 43.2c.108.868-.978-8.18-10.054-18.314.41 14.818 6.25 20.42 10.054 18.314zm32.56 85.78c-6.176-4.56-23.385-6.729-25.767-5.927 12.562 10.355 24.878 10.55 25.767 5.927zm12.07 5.24c-4.542 1.593-10.443-9.417-7.54-25.883 2.81 13.955 6.18 25.063 7.54 25.883zm13.3 11.15c2.116 4.082-6.7 11.436-21.787 11.315 11.952-4.89 21.24-9.86 21.787-11.315zm7.39-4.47c4.865-2.25 1.1-15.536-14.01-26.37 8.596 13.215 14.456 24.61 14.01 26.37z"}),(0,t.jsx)("path",{d:"M454.57 372.67c4.278-2.666-.69-14.444-15.89-22.64 9.403 11.184 16.094 20.968 15.89 22.64zm-42.79-30.99c3.735.222 5.957-9.262.477-20.924.718 10.974.418 19.978-.477 20.924zm-13.76-76.74c2.95 3.897 14.055-1.31 20.837-15.923-10.165 9.338-19.225 16.064-20.837 15.923z"}),(0,t.jsx)("path",{d:"M398.86 259.33c3.682 3.145 13.542-4.302 17.27-19.977-8.097 11.245-15.645 19.736-17.27 19.977zm27.72 99.09c4.74-1.125 3.954-13.784-7.254-26.272 5.013 13.416 8.016 24.756 7.254 26.272zm-28.87-36.46c1.407-4.24-8.297-9.37-22.803-6.26 12.26 2.196 22.043 5.043 22.803 6.26zm-1.94-9.61c2.903 1.887 9.178-4.66 10.286-16.617-4.674 9.18-9.166 16.265-10.286 16.617zm51.2 58.68c2.576 4.876-7.96 13.667-26.035 13.522 14.283-5.844 25.38-11.783 26.035-13.522z"}),(0,t.jsx)("path",{d:"M399.36 326.3c-2.658-6.262-14.798-15.462-16.982-15.84 4.946 13.637 14.248 19.145 16.982 15.84z"})]}),(0,t.jsxs)("g",{fill:"#67923d",children:[(0,t.jsx)("path",{d:"M392.42 273.92c4.074-4.666 17.47-9.134 19.6-8.865-8.043 10.41-17.942 12.515-19.6 8.865zm25.07 77.59c-1.807 3.918-12.696.916-21.646-11.152 10.885 6.83 20.244 11.51 21.646 11.152zm-24.39-53.05c-4.195 2.727-13.128-6.738-14.685-23.884 6.623 13.203 13.037 23.384 14.685 23.884zm8.42 34.34c-.77 3.73-10.688 3.59-20.864-4.717 10.73 3.406 19.74 5.332 20.864 4.717zm-9.45-24.95c-2.333 3.24-11.29-1.27-16.807-13.657 8.192 7.967 15.492 13.744 16.807 13.657zm2.76-47.55c-4.427 1.556-10.16-9.08-7.294-25.005 2.667 13.488 5.935 24.175 7.294 25.005zm4.47-14.86c-4.304.227-6.87-10.815-.468-24.322-.822 12.797-.507 23.234.468 24.322zm5.04-7.67c-3.473-.525-3.717-9.655 3.52-19.37-2.74 9.977-4.15 18.367-3.52 19.37zm5.98-6.08c-3.136-1.643-.7-10.43 9.038-17.337-5.526 8.644-9.318 16.178-9.038 17.337z"}),(0,t.jsx)("path",{d:"M394.25 274.9c-3.804 2.106-9.577-3.503-9.987-18.322 5.102 11.684 8.603 17.807 9.987 18.322zm32.57 85.8c-.886 4.625-13.144 4.4-25.678-5.895 13.168 4.274 24.246 6.694 25.678 5.895zm-8.17-9.48c-4.023-4.343-7.158-17.347-6.747-19.242 9.012 8.743 10.215 18.165 6.747 19.242zm-16.88-24.99c-3.57-5.786-3.876-20.907-2.92-22.956 8.264 11.81 7.254 22.585 2.92 22.956zm-2.63.09c-2.736 3.305-11.93-2.159-16.872-15.833 8.132 9.11 15.474 15.812 16.872 15.833z"})]}),(0,t.jsxs)("g",{fill:"#406325",children:[(0,t.jsx)("path",{d:"M392.37 274c1.617 3.623 11.45 1.53 19.493-8.88-11.97 6.793-16.71 9.74-19.493 8.88zm9.34 52.07c4.332-.37 5.33-11.037-2.933-22.846 2.664 11.854 3.79 21.678 2.933 22.846zm16.96 25.11c3.47-1.07 2.25-10.45-6.713-19.178 4.403 9.727 7.205 18.01 6.713 19.178z"}),(0,t.jsx)("path",{d:"M394.23 291.77c2.058-8.386-1.702-22.6-4.3-25.56-4.716 15.428-.245 26.6 4.3 25.56z"})]}),(0,t.jsx)("path",{fill:"#67923d",d:"M393.93 293.77c-5.895 1.34-8.645-12.034-4.08-27.078 1.07 13.546 2.834 26.147 4.08 27.078z"}),(0,t.jsx)("path",{fill:"#67923d",d:"M392.73 293.72c-.558-7.527 6.934-23.087 8.915-24.707 2.015 15.803-4.462 26.308-8.915 24.707z"}),(0,t.jsx)("path",{fill:"#406325",d:"M392.84 293.61c4.413 1.636 10.85-8.76 8.835-24.564-3.51 13.267-7.445 23.764-8.835 24.564z"}),(0,t.jsx)("path",{fill:"#67923d",d:"M394.13 303.26c.005-7.61 8.47-22.23 10.562-23.62.834 16.163-6.332 25.83-10.562 23.62z"}),(0,t.jsx)("path",{fill:"#406325",d:"M394.21 303.41c4.23 2.21 11.306-7.364 10.47-23.525-4.408 12.857-9.047 22.9-10.47 23.525z"})]}),(0,t.jsxs)("g",{fill:"#ba1f3e",stroke:"#511124",strokeWidth:.218,children:[(0,t.jsx)("circle",{cx:396.835,cy:251.27,r:1.085,strokeWidth:.186}),(0,t.jsx)("circle",{cx:405.205,cy:245.07,r:1.085,strokeWidth:.186}),(0,t.jsx)("circle",{cx:401.564,cy:241.71,r:1.086,strokeWidth:.186}),(0,t.jsx)("circle",{cx:392.503,cy:313.12,r:1.277}),(0,t.jsx)("circle",{cx:395.033,cy:297.13,r:1.277}),(0,t.jsx)("circle",{cx:408.213,cy:334.46,r:1.277}),(0,t.jsx)("circle",{cx:402.393,cy:336.43,r:1.277}),(0,t.jsx)("circle",{cx:446.703,cy:367.63,r:1.277}),(0,t.jsx)("circle",{cx:449.613,cy:374.71,r:1.277})]})]}),(0,t.jsxs)("g",{stroke:"#24420e",children:[(0,t.jsx)("path",{fill:"none",strokeWidth:.437,d:"M561.15 258.97c.623.62 1.174.808 2.295 1.895m-6.625-18.945c-.035-1.368-.633-3.605-.918-4.973m3.448 2.983c.055 1.952-.218 3.81-1.062 5.504m-4.158-.534c1.753 1.576 3.505 3.077 5.258 3.892m3.822 1.228c.105 1.98-.142 3.96-.683 5.94m.323 1.51 1.314-2.262M562.3 267.43c1.4.29 2.81 1.946 3.505 3.482m.475-1.292 1.64-2.185m1.71 30.725a24 24 0 0 1-2.458 3.483m-3.962-.073c.79 1.456 1.556 2.946 2.595 4.03m2.455 5.87c-1.307 1.773-2.766 3.165-4.438 4.03m.138 4.5c-1.093.75-2.426 2.953-3.687 4.712m8.437-20.182-2.124.87m-1.396-7.49 1.256 1.11m-9.296 37.39c-.84-.108-1.456.01-2.124.072m-1.996-1.932.615 1.64m-7.715 5.12c-.262 1.866-.072 3.733.204 5.6m4.306-9.02 1.024 2.254m3.826-.204-2.526.41m-30.854 25.27-.917 1.738m11.897-3.928c-1.492.187-2.778-.043-4.097-.204m-5.463 5.944a27 27 0 0 0-2.936-.956m-14.744 2.656c-.906.773-1.99 2.435-3.073 4.097m-.547-4.567c-2.433 1.253-3.182 3.71-4.438 5.804m2.798 2.866c-1.553-.46-3.412-1.228-5.326-2.048m16.766-.682c-2.32-1.205-4.748-1.087-7.135-1.468m10.755-.342c-3.628-.707-7.01-.61-10.276-.137m7.776-2.603-1.4-.58m-5.53 5.5-2.323-1.296m57.943-49.194c-1.256.816-2.51 2.283-3.766 3.863m1.826-79.623-2.153-.724"}),(0,t.jsxs)("g",{strokeWidth:.164,children:[(0,t.jsx)("path",{fill:"#406325",d:"M474.39 384.85c.797-1.256 2.108-2.028 3.277-2.656 7.726-4.056 15.406-5.843 24.117-7.244 2.013-.337 4.027-2.22 6.087-3.187 4.964-2.365 10.49-3.284 15.312-5.697.328-.146 1.545-.87 2.108-1.545 1.92-2.22 5.385-2.898 7.54-4.974 8.333-7.87 17.183-15.116 21.77-25.546 5.573-12.7 12.504-25.787 11.568-40.225-.61-9.126.75-18.35-1.498-27.043-3.326-12.893-7.59-25.643-15.408-36.314l1.31.82c7.868 10.675 12.128 23.424 15.453 36.315 2.248 8.692.89 17.916 1.5 27.043.935 14.44-5.996 27.526-11.567 40.275-4.59 10.384-13.486 17.627-21.774 25.547-2.154 2.027-5.62 2.703-7.54 4.973-.56.627-1.825 1.4-2.106 1.545-4.823 2.415-10.35 3.332-15.313 5.65-2.06 1.014-4.073 2.85-6.087 3.188-8.71 1.4-16.388 3.235-24.113 7.242-1.217.628-2.482 1.4-3.278 2.657l-1.358-.822"}),(0,t.jsxs)("g",{fill:"#406325",children:[(0,t.jsx)("path",{d:"M553.65 334.6c2.74-7.416-.01-24.838-1.49-26.95-6.648 15.37-3.34 27.5 1.49 26.95z"}),(0,t.jsx)("path",{d:"M546.54 341.64c2.304-5.646.613-19.32-.47-20.998-5.52 11.696-3.265 21.218.47 20.998zm16.81-74.15c-3.293-6.1-16.867-14.418-19.26-14.618 6.212 13.368 16.55 18.195 19.26 14.618z"}),(0,t.jsx)("path",{d:"M561.76 259.47c-1.79-6.068-12.395-16.053-14.466-16.694 3.105 13.063 11.398 19.315 14.466 16.694zm4.74 14.96c-3.537-4.05-15.164-7.928-17.013-7.695 6.98 9.036 15.572 10.864 17.013 7.695zm-2.8 46.33c6.132.966 18.96-4.115 20.345-5.625-12.9-2.797-21.56 1.84-20.345 5.625zm-.15-5.64c-.043-5.638-6.395-16.856-7.956-17.933-.556 11.996 4.803 19.453 7.956 17.933z"}),(0,t.jsx)("path",{d:"M563.96 301.44c-.005-7.61-8.47-22.23-10.562-23.62-.834 16.162 6.332 25.83 10.562 23.62zm-52.89 75.27c4.477 5.503 19.653 11.133 22.088 10.904-8.805-12.233-20.07-15.05-22.088-10.904z"})]}),(0,t.jsxs)("g",{fill:"#67923d",children:[(0,t.jsx)("path",{d:"M553.56 334.43c-4.824.55-8.09-11.437-1.395-26.785-.49 14.192.24 25.63 1.395 26.785zm-53.37 43.66c7.093.363 20.61 9.295 21.865 11.396-15.086.117-24.02-7.315-21.865-11.396zm0-7.94c2.098-7.967 15.006-21.21 17.514-22.15-3.603 17.133-13.74 25.534-17.514 22.15zm21.27-4.23c-.985-7.822 5.665-24.24 7.585-25.98 2.95 16.467-2.997 27.575-7.585 25.98zm21.46-14.54c4.474-5.47 19.38-11.328 21.712-11.14-8.885 12.08-19.88 15.096-21.712 11.14zm25.79-53.26c.903-6.332 9.71-17.88 11.606-18.87-1.194 13.52-8.304 21.018-11.606 18.87z"}),(0,t.jsx)("path",{d:"M557.02 336.18c5.817-4.29 22.105-6.228 24.4-5.504-11.814 9.676-23.553 9.855-24.4 5.504zm10.27-24.52c3.033-5.98 15.566-14.17 17.754-14.4-5.8 13.02-15.3 17.803-17.754 14.4zm-1.48-45.56c-.098-7.625 7.984-22.728 9.966-24.24 1.165 16.14-5.723 26.206-9.965 24.24zm-6.93-25.92c-2.322-5.28-1.1-18.414-.093-20.074 5.55 10.963 3.672 20.17.093 20.074zm-4.23-2.18c-5.274-4.683-10.645-19.756-10.41-22.103 11.75 9.263 14.385 20.36 10.41 22.103z"}),(0,t.jsx)("path",{d:"M566.28 272.54c-.317.815 2.945-7.695 14.22-15.308-4.013 14.27-11.045 18.28-14.22 15.308zm-34.1 89.9c7.006-5.173 26.532-7.634 29.232-6.724-14.253 11.748-28.225 11.97-29.232 6.724zm14.33-20.84c-3.735.222-5.957-9.262-.477-20.924-.72 10.974-.418 19.978.477 20.924zm16.85-74.07c-2.708 3.576-12.897-1.202-19.12-14.61 9.327 8.57 17.64 14.74 19.12 14.61zm-1.7-8.06c-3.068 2.62-11.285-3.583-14.39-16.646 6.745 9.37 13.035 16.446 14.39 16.646zm4.89 15.03c-1.405 3.145-9.94 1.328-16.92-7.708 10.39 5.896 14.505 8.455 16.92 7.708zm-2.69 46.21c-1.25-3.764 7.365-8.317 20.24-5.556-10.883 1.95-19.566 4.477-20.24 5.556zm-.4-5.6c-3.136 1.467-8.445-5.885-7.888-17.88 3.36 9.74 6.828 17.375 7.888 17.88z"}),(0,t.jsx)("path",{d:"M563.88 301.59c-4.23 2.21-11.305-7.364-10.47-23.525 4.408 12.857 9.047 22.898 10.47 23.525zm-52.69 75.07c2.018-4.146 13.15-1.378 21.976 10.888-10.995-6.75-20.482-11.305-21.976-10.888z"})]}),(0,t.jsxs)("g",{fill:"#406325",children:[(0,t.jsx)("path",{d:"M521.55 365.83c4.542 1.593 10.443-9.417 7.54-25.883-2.81 13.955-6.18 25.064-7.54 25.883z"}),(0,t.jsx)("path",{d:"M531.83 360.59c4.34-6.65 5.55-24.554 4.58-26.967-9.944 13.594-9.41 26.324-4.58 26.967zm-31.69 17.54c-2.116 4.08 6.7 11.436 21.787 11.315-11.95-4.89-21.238-9.86-21.787-11.315zm.16-8.05c3.785 3.338 13.808-4.948 17.41-22.083-8.128 12.423-15.724 21.8-17.41 22.083zm42.71-18.65c1.807 3.918 12.696.916 21.646-11.152-10.885 6.83-20.244 11.512-21.646 11.152zm25.75-53.33c3.303 2.147 10.335-5.303 11.56-18.803-5.213 10.395-10.262 18.41-11.56 18.803zm-11.69 38.11c.895 4.348 12.454 4.183 24.312-5.496-12.502 3.97-23 6.214-24.312 5.496zm10.36-24.64c2.453 3.405 11.865-1.334 17.664-14.352-8.61 8.373-16.28 14.445-17.664 14.352zm-1.51-45.56c4.238 2.016 11.064-7.952 9.899-24.093-4.08 13.13-8.46 23.412-9.9 24.093zm-6.96-25.87c3.542.093 5.415-9.033-.134-19.995.95 10.498.913 19.08.134 19.995zm-4.23-2.24c3.972-1.742 1.33-12.71-10.422-21.972 6.472 11.02 10.853 20.573 10.422 21.972zm11.61 34.67c3.175 2.97 10.143-1.06 14.155-15.33-7.798 10.084-12.688 15.17-14.155 15.33zm-34.09 89.91c1.005 5.247 14.913 4.994 29.132-6.688-14.94 4.85-27.508 7.595-29.132 6.688z"}),(0,t.jsx)("path",{d:"M539.14 354.75c3.272-4.934 4.274-18.274 3.564-20.077-7.488 10.08-7.16 19.572-3.564 20.077zm19.6-28.61c3.57-5.786 3.876-20.908 2.92-22.957-8.264 11.81-7.255 22.586-2.92 22.957z"})]}),(0,t.jsx)("path",{fill:"#67923d",d:"M531.79 360.54c-4.83-.638-5.33-13.312 4.552-26.873-3.626 13.856-5.464 25.442-4.552 26.873zm35.16-68.33c-.943-7.765 3.976-20.143 6.632-22.522 2.573 14.385-2.66 23.95-6.632 22.522zm-27.84 62.49c-3.597-.5-3.9-9.954 3.54-20.007-2.78 10.308-4.213 18.935-3.54 20.007zm23.36-104.24c-2.167-5.88.03-20.04 1.236-21.774 5.29 12.257 2.638 22.116-1.236 21.774zm-58.08 120.15c2.474-8.09 16.19-21.08 18.807-21.915-4.335 17.42-15.065 25.53-18.807 21.915zm54.53-41.59c2.658-6.262 14.798-15.462 16.98-15.84-4.944 13.637-14.247 19.145-16.98 15.84zm-.12-3.03c-4.333-.37-5.33-11.037 2.933-22.846-2.664 11.854-3.79 21.678-2.933 22.846z"}),(0,t.jsx)("path",{fill:"#406325",d:"M567 294.04c5.158 1.842 9.078-9.89 6.598-23.914-2.428 12.067-5.377 23.21-6.598 23.914z"}),(0,t.jsx)("path",{fill:"#406325",d:"M567.77 293.64c.557-7.527-6.935-23.086-8.915-24.707-2.015 15.803 4.463 26.31 8.915 24.707zm-5.22-43.22c3.834.337 6.473-9.435 1.187-21.69.33 11.446-.283 20.75-1.187 21.69zM504.5 370.53c3.787 3.62 14.37-4.417 18.704-21.838-8.84 12.353-16.968 21.612-18.704 21.838zm54.64-41.49c2.735 3.305 11.93-2.158 16.872-15.833-8.133 9.11-15.474 15.812-16.872 15.833z"}),(0,t.jsx)("path",{fill:"#67923d",d:"M567.66 293.53c-4.413 1.636-10.85-8.76-8.835-24.563 3.51 13.267 7.445 23.763 8.835 24.563z"})]}),(0,t.jsxs)("g",{fill:"#ba1f3e",stroke:"#511124",strokeWidth:.218,children:[(0,t.jsx)("circle",{cx:564.625,cy:254.9,r:1.085}),(0,t.jsx)("circle",{cx:568.415,cy:266.82,r:1.085}),(0,t.jsx)("circle",{cx:569.757,cy:304.3,r:1.277}),(0,t.jsx)("circle",{cx:564.647,cy:297.29,r:1.277}),(0,t.jsx)("circle",{cx:549.907,cy:337.17,r:1.277}),(0,t.jsx)("circle",{cx:556.197,cy:339.9,r:1.277}),(0,t.jsx)("circle",{cx:513.797,cy:372.26,r:1.277}),(0,t.jsx)("circle",{cx:506.797,cy:377.29,r:1.277}),(0,t.jsx)("circle",{cx:557.054,cy:249.25,r:1.084})]})]}),(0,t.jsxs)("g",{id:"gt_inline_svg__b",fill:"#8c959d",stroke:"#485654",strokeWidth:.109,children:[(0,t.jsx)("path",{d:"M434.25 336.27c-.134 1.066.842 2.34 2.128 2.07.386-.08.624-.58.132-.49-.425.108-.88-.07-1.202-.374a1.68 1.68 0 0 1-.396-1.92c-.23.25-.45.485-.66.713h-.002z"}),(0,t.jsx)("path",{stroke:"none",d:"M437.24 338.34c-1.016 1.165-2.568 1.676-3.427.834-.573-.565-.777-1.205-.468-1.912-.443.482-.822.897-1.12 1.23.046.09.714 1.31 1.707 1.76 1.223.55 2.972-.28 4.018-1.565.738-.91 1.56-2.428.967-3.61-.365-.728-1.24-1.423-1.967-1.698-.35.374-.695.746-1.027 1.1.51-.24 1.148-.135 1.695.312 1.274 1.035.537 2.5-.378 3.546z"}),(0,t.jsx)("path",{fill:"#485654",stroke:"none",d:"M437.24 338.34a4 4 0 0 1-1.162.956c-.444.235-.957.39-1.473.318a1.5 1.5 0 0 1-.71-.296 2.4 2.4 0 0 1-.51-.58 1.6 1.6 0 0 1-.248-.737c-.02-.262.038-.528.14-.767l.123.08-1.11 1.24.013-.1c.276.48.624.937 1.042 1.3.21.18.442.335.694.436a2 2 0 0 0 .796.133c.55-.016 1.088-.206 1.573-.477a5.1 5.1 0 0 0 1.297-1.042c.37-.417.69-.887.935-1.388.24-.5.41-1.05.374-1.595a1.8 1.8 0 0 0-.224-.774 3 3 0 0 0-.5-.655 4.2 4.2 0 0 0-1.37-.932l.09-.022-1.034 1.093-.085-.117c.236-.107.5-.145.754-.118.254.03.498.117.715.245.427.257.798.65.925 1.145.13.494.002 1.008-.208 1.448a5.1 5.1 0 0 1-.84 1.205v.002zm0-.002c.314-.375.595-.78.794-1.225.196-.44.302-.942.167-1.404-.13-.46-.492-.827-.9-1.064-.407-.238-.924-.305-1.345-.1l-.084-.117 1.018-1.11.04-.042.053.02c.55.21 1.034.55 1.447.96.204.21.39.437.536.698.146.257.23.557.25.852.043.598-.138 1.177-.383 1.7a6.4 6.4 0 0 1-.962 1.44c-.39.433-.85.8-1.358 1.082-.51.278-1.076.478-1.67.493a2.2 2.2 0 0 1-.876-.153 2.7 2.7 0 0 1-.744-.473 5 5 0 0 1-1.073-1.363l-.03-.054.042-.046 1.13-1.22.124.078c-.1.22-.155.46-.142.7.012.24.093.474.217.682.124.207.288.403.472.557.187.155.416.254.657.295.486.082.99-.053 1.435-.273.446-.225.846-.54 1.185-.912z"}),(0,t.jsx)("path",{fill:"#6c301e",stroke:"#351710",strokeLinejoin:"round",strokeWidth:.218,d:"m515.24 249.25-40.137 39.515c-3.053 3.032-37.963 36.38-41.105 39.384-1.103 1.322-4.233 4.857-4.56 5.352-2.13 2.31-4.44 5.33-7.198 8.03-.49.62-1.142.394-1.734.737-1.814 1.05-3.697 2.87-5.053 4.37l-12.208 13.505c-.786.854-.996 1.38-.464 1.87l6.624 8.85c1.23 1.214 2.644 1.838 3.195.82 3.146-5.447 10.96-13.76 13.914-20.335 1.764-3.93 3.978-11.058 5.558-12.782 1.94-2.157 7.17-7.73 11.806-12.705q.471-.503.93-.997l.947-1.02c23.506-23.95 50.715-53.045 70.526-73.557-.777-.776-.285-.312-1.04-1.04z"}),(0,t.jsx)("path",{d:"M431.89 328.11c-1.225.043-2.022-.707-2.848-1.4 1.17.346 2.345.797 3.452.338z"}),(0,t.jsx)("path",{fill:"#b2b6ba",strokeWidth:.218,d:"m557.05 220.1-31.804 26.22c-.306.373-.624.266-.93 0l-2.894-2.418c.004-.037.014-.073.014-.11 0-.162-.032-.318-.082-.464l1.42-1.447c.177-.22.12-.31-.123-.545-.182-.19-.342-.365-.586-.6-.228-.177-.416-.037-.642.176l-1.434 1.476c-.734.03-1.33.63-1.352 1.366-19.238 18.73-35.794 35.435-54.938 53.872l-22.573 21.55c-.806 1.042-4.29 2.906-6.596 4.41-.818.532-1.524 1.016-1.817 1.543l-1.844 5.435c-.583 1.194-2.432 4.003-2.514 4.193 2.37 2.386 2.248 2.212 3.865 3.728 1.82-2.023 6.69-7.112 11.117-11.853.357-.382.38-.422.833-.97-.346-.488-.927-1.205-1.393-1.652a34 34 0 0 0-1.2-1.093c-.246-.212-.47-.39-.63-.546-.162-.157.24-.445.424-.643 26.465-25.58 54.963-53.695 78.277-76.595a1.4 1.4 0 0 0 1.025-.096l2.785 3.21c.655.652 1.21.64 1.735.395l31.86-28.54z"}),(0,t.jsx)("path",{fill:"#485654",stroke:"none",d:"M430.95 330.39c.2.03.405.048.606.03a1.5 1.5 0 0 0 .574-.16l-.017.018a124.9 124.9 0 0 1 1.475-4.744l.005.027c-.195-.222-.436-.42-.73-.495.298.057.558.244.77.46l.01.01-.004.016q-.346 1.195-.71 2.382c-.247.79-.493 1.58-.754 2.366l-.005.014-.01.006a1.4 1.4 0 0 1-.602.14 3 3 0 0 1-.61-.068z"}),(0,t.jsx)("circle",{cx:438.179,cy:328.135,r:.619,fill:"none",strokeWidth:.164}),(0,t.jsx)("circle",{cx:434.436,cy:331.877,r:.619,fill:"none",strokeWidth:.164}),(0,t.jsx)("path",{fill:"#485654",stroke:"none",d:"M440.97 322.38c-.32-.24-.615-.505-.906-.775a12 12 0 0 1-.832-.854c.32.24.615.506.906.776.288.273.57.55.832.854z"}),(0,t.jsx)("path",{d:"m502.17 259.06 3.487 3.41.645-.586-3.487-3.41z"})]}),(0,t.jsx)("use",{xlinkHref:"#gt_inline_svg__b",width:"100%",height:"100%",transform:"rotate(-177.16 487.09 -.23)"}),(0,t.jsxs)("g",{stroke:"#24420e",strokeWidth:.164,children:[(0,t.jsx)("path",{fill:"#67923d",d:"M433.91 365.36c-7.866-3.32-26.89-.67-29.22.932 16.286 8.01 29.54 4.574 29.22-.932zm89.02 3.32c7.866-3.32 26.89-.67 29.22.933-16.286 7.982-29.54 4.573-29.22-.933z"}),(0,t.jsx)("path",{fill:"#406325",d:"M433.76 365.48c.32 5.506-12.79 8.885-29.075.903 15.295.932 27.793.378 29.075-.903zm89.32 3.29c-.32 5.506 12.79 8.885 29.075.903-15.295.933-27.793.408-29.075-.903z"})]}),(0,t.jsxs)("g",{id:"gt_inline_svg__c",children:[(0,t.jsx)("path",{fill:"#b2b6ba",stroke:"#485654",strokeWidth:.218,d:"M508.49 359.99c-20.733-30.12-51.995-54.61-76.102-67.99 3.557-.167 11.46 3.88 14.67 5.948 23.94 15.427 44.3 35.803 65.664 59.822-1.258 1.245-2.082 1.98-3.446 3.05z"}),(0,t.jsx)("path",{fill:"#8c959d",d:"m510.55 359.75-1.45 1.394c-23.01-29.62-55.094-57.945-76.67-69.13 30.08 13.855 55.392 41.77 78.034 67.65l.085.085z"}),(0,t.jsx)("path",{fill:"#485654",d:"m510.56 359.75-1.448 1.397-.004.003-.003-.004c-5.325-6.824-10.975-13.39-16.864-19.73a336 336 0 0 0-18.366-18.337c-6.36-5.87-12.943-11.496-19.81-16.76a196 196 0 0 0-10.542-7.564c-3.6-2.393-7.297-4.652-11.133-6.644l.094-.196c7.892 3.644 15.34 8.195 22.375 13.28 7.038 5.092 13.676 10.716 20.028 16.632 6.352 5.92 12.422 12.135 18.328 18.497 5.902 6.367 11.63 12.892 17.343 19.425zm0 0c-5.74-6.51-11.494-13.012-17.42-19.353-5.916-6.35-11.99-12.556-18.35-18.463-6.356-5.904-12.998-11.515-20.036-16.59-7.036-5.07-14.478-9.605-22.36-13.23l.096-.196c3.845 2 7.54 4.27 11.144 6.67 3.6 2.405 7.108 4.95 10.542 7.586 6.864 5.278 13.444 10.918 19.798 16.798a336 336 0 0 1 18.35 18.37c5.867 6.363 11.49 12.956 16.79 19.8l-.007-.002z"}),(0,t.jsxs)("g",{fill:"#fab81c",stroke:"#6c301e",strokeWidth:.109,children:[(0,t.jsx)("path",{strokeWidth:.218,d:"M517.5 355.07q-2.96.766-5.258 2.226c-.228 1.397-1.953 2.957-3.587 3.31-.297-.377-.367-.487-.592-.77a.13.13 0 0 0-.17-.038c-.14.076-.33.18-.572.34-.61-.103-1.336.197-1.66.975-.377.97.386 2.248 1.225 3.084.924.73 1.387 1.07 2.458.92 1.083-.224 1.68-1.213 1.925-1.528 3.72 4.502 6.517 6.932 11.23 10.64 2.098.016 3.224-1.307 2.52-2.803-.233-.502-.84-.836-1.333-.652.04-.15.024-.305 0-.45 2.463-2.265 3.514-5.09.915-9.874-2.224-4.03-4.712-5.396-7.088-5.38h-.012zm6.246 4.53c.438.742.692 1.38 1.024 2.054 1.483 3 .196 6.602-2.334 7.706-.123-.005-.085-.02-.213.022.413-.687-.827-2.154-1.46-1.64.3-.758-.67-2.018-1.462-1.693.415-.706-.532-1.906-1.42-1.516.46-.767-.323-1.866-1.242-1.666.277-.818-.418-1.753-1.352-1.598.08-.723-.157-1.12-.507-1.45 1.11-.846 2.346-2.15 3.437-2.738 2.72-1.178 4.403 1.073 5.527 2.518z"}),(0,t.jsx)("path",{d:"M524.89 362.77c-.515-.253-.756-.76-.587-1.105.17-.342.702-.432 1.217-.178s.802.744.633 1.088c-.172.343-.747.45-1.264.196z"}),(0,t.jsx)("path",{d:"M524.59 361.75c-.515-.253-.756-.76-.587-1.105.17-.342.702-.432 1.218-.177.516.253.802.744.633 1.088-.172.343-.747.45-1.263.195z"}),(0,t.jsx)("path",{d:"M523.97 360.62c-.515-.253-.756-.76-.587-1.105.168-.342.7-.433 1.217-.178.516.254.802.744.633 1.088-.172.343-.748.45-1.264.196z"}),(0,t.jsx)("path",{d:"M523.19 359.6c-.516-.253-.756-.76-.587-1.105.17-.342.7-.432 1.217-.178.516.253.802.744.633 1.088-.172.343-.748.45-1.263.196z"}),(0,t.jsx)("path",{d:"M522.16 358.61c-.515-.253-.756-.76-.587-1.105.023-.046.007-.136.055-.114.21.11.644.188.597-.136-.065-.113-.146-.227-.07-.142.15.004.464.134.636.222.517.253.803.744.634 1.088-.172.343-.747.45-1.264.195z"})]}),(0,t.jsx)("path",{fill:"#fab81c",d:"M511.27 363.6c.682-1.774 2.047-3.414 3.508-3.806m-3.278 4.056c1.263.262 3.31-1.243 3.806-2.588m-2.616 4.038c1.656.38 3.29-1.218 3.934-2.409m-2.444 3.989c1.957.064 3.164-1.326 3.74-2.39m-2.23 3.92c1.66.01 3.172-1.36 3.646-2.424m-2.186 3.824c1.808-.073 3.084-.895 3.62-2.075m-1.98 3.495c1.66.096 3.003-.896 3.443-1.862m-1.663 3.312c1.66.096 2.695-.93 3.136-1.897"}),(0,t.jsx)("path",{fill:"#6c301e",d:"M511.27 363.6a7.1 7.1 0 0 1 1.309-2.329c.293-.338.616-.654.984-.914.367-.26.776-.467 1.214-.562-.424.14-.813.36-1.164.63-.35.268-.67.578-.952.917-.577.674-1.028 1.447-1.392 2.26zm.23.25c.405.057.81-.045 1.18-.193a5 5 0 0 0 1.048-.592c.328-.233.63-.505.9-.802.272-.298.513-.628.678-1-.123.39-.35.74-.613 1.055-.264.315-.572.59-.9.835a4.6 4.6 0 0 1-1.084.582c-.385.136-.81.218-1.21.115zm1.19 1.45c.405.07.818.035 1.204-.086.385-.12.747-.31 1.076-.548.333-.23.634-.506.91-.804q.42-.448.744-.97a4.7 4.7 0 0 1-.68 1.026 5.2 5.2 0 0 1-.91.837 3.7 3.7 0 0 1-1.117.54c-.402.107-.832.12-1.227.005m1.49 1.58a4.2 4.2 0 0 0 1.146-.183 3.8 3.8 0 0 0 1.033-.507 4.7 4.7 0 0 0 .865-.764c.26-.287.487-.605.694-.936a4.55 4.55 0 0 1-1.5 1.79c-.327.22-.688.395-1.07.497-.382.104-.78.136-1.17.103zm1.51 1.53c.767-.042 1.493-.332 2.113-.765.314-.212.6-.463.86-.74.26-.275.493-.58.672-.92-.138.36-.357.686-.61.977-.25.293-.545.55-.86.773a4.2 4.2 0 0 1-1.036.517c-.37.12-.757.183-1.14.158zm1.46 1.4a7 7 0 0 0 1.078-.187 4.6 4.6 0 0 0 1.013-.388c.323-.164.62-.378.88-.63.26-.25.477-.546.65-.87-.132.344-.337.66-.59.93-.256.27-.562.49-.89.667a4.5 4.5 0 0 1-2.14.478zm1.64 1.42c.345-.004.687-.04 1.02-.12a4 4 0 0 0 .952-.36c.303-.155.583-.353.834-.583.25-.23.47-.496.636-.8a2.5 2.5 0 0 1-.578.86 3.6 3.6 0 0 1-.842.62c-.31.158-.642.28-.986.344-.342.066-.693.08-1.036.04zm1.78 1.45a4 4 0 0 0 .96-.12 3.3 3.3 0 0 0 1.617-.986 4 4 0 0 0 .56-.79 3.06 3.06 0 0 1-1.24 1.495 3 3 0 0 1-.918.362 3 3 0 0 1-.98.038z"})]}),(0,t.jsx)("use",{xlinkHref:"#gt_inline_svg__c",width:"100%",height:"100%",transform:"rotate(-176.592 489.967 -.41)"}),(0,t.jsxs)("g",{stroke:"#24420e",strokeWidth:.164,children:[(0,t.jsx)("path",{fill:"#406325",d:"M409.24 240.02c7.21-2.367 18.73-15.453 19.478-17.917-15.593 4.154-22.757 14.343-19.478 17.917zm145.74 4.7c-1.702-7.045-13.28-19.01-15.568-19.91 2.763 15.16 11.916 22.758 15.568 19.91z"}),(0,t.jsx)("path",{fill:"#67923d",d:"M409.24 240.02c-3.325-3.574 3.792-13.666 19.34-17.82-10.958 8.403-19.2 16.178-19.34 17.82zm145.74 4.7c-3.656 2.892-12.72-4.654-15.486-19.77 7.163 11.072 13.934 19.51 15.486 19.77z"})]}),(0,t.jsxs)("g",{stroke:"#999270",strokeWidth:.164,children:[(0,t.jsx)("path",{fill:"url(#gt_inline_svg__d)",d:"M452.21 318.1s-6.158.662-7.884-7.833c-1.846-9.087 5.306-10.052 5.306-10.052s8.103-.78 13.15-.91l2.24 17.954-12.812.84z"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__e)",d:"M453.02 315.36s-3.985.762-4.807-5.553c-.583-4.473 2.185-5.108 2.185-5.108l9.236 1.563.05 8.24z"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__f)",d:"M450.4 304.7s5.905-.43 8.99-.83l1.28 5.71-7.102.446s-.487-5.155-3.168-5.326z"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__g)",d:"M449.16 300.36s7.575-1.857 8.517 6.49c.245 2.18-.942 7.166-4.656 8.513l13.875-1.456-1.256-15.007-4.675.39s-9.923.34-11.805 1.07z"}),(0,t.jsx)("path",{fill:"#f9f0aa",d:"M452.2 318.1c.047 0 51.903-3.49 57.217-3.274 15.743-8.638-.076-42.56-13.342-61.532 1.515-4.276-29.858-13.892-44.047-13.024-1.782.11-3.505.227-5.154.354-7.696.816-7.775 10.694-4.637 16.923 3.045 6.043 30.315 55.126 11.14 60.317l-1.176.236z"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__h)",d:"M507.79 273.34c-3.52-7.304-7.734-14.35-11.718-20.046 1.514-4.276-29.86-13.892-44.047-13.024-1.782.11-3.505.227-5.154.354-7.695.816-7.774 10.694-4.636 16.923.956 1.898 4.3 8.04 7.847 15.733"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__i)",d:"M455.04 284.95c5.555 14.65 8.664 30.117-1.64 32.907l-1.178.236c.047 0 51.903-3.49 57.216-3.274 8.538-4.685 7.793-16.805 3.207-29.944"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__j)",d:"M447.4 243.49c-3.705 0-4.656 3.562-4.605 5.817.134 5.91 4.605 6.192 4.605 6.192l5.965-.333 2.857-12.163-8.822.486z"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__k)",d:"m447.4 243.53 8.822-.486.908 9.086-7.696.337s2.49-7.274-2.034-8.937z"}),(0,t.jsx)("path",{fill:"url(#gt_inline_svg__l)",d:"M496.12 253.29c6.686-1.074 6.595-10.07 2.026-13.673-15.498-.57-35.895-.143-50.63.96 1.676-.05 6.337.376 6.855 6.51.243 2.863-1.164 5.492-3.06 6.986-1.853 1.462-3.906 1.462-3.906 1.462.248.095 2.163.007 3.6-.087.738-.048 2.55-.264 3.054-.33 21.012-2.762 41.987-1.823 41.987-1.823l.08.003-.005-.008z"}),(0,t.jsx)("path",{fill:"#b07e09",stroke:"none",d:"M458.47 267.42c-.143-.33-.323-.75-.73-.805-.25.014-.645-.052-.567-.392.235-.113.533-.04.794-.065.56.01 1.113-.114 1.67-.148.338.092.262.537-.104.463-.408.093-.175.563-.075.81.444 1.034.872 2.075 1.328 3.104.127.303.38.57.722.605.362.036.756.045 1.09-.116.31-.2.242-.624.2-.937-.124-.364.54-.282.495.043q.196.646.447 1.27c-.022.2-.275.143-.42.168-.993.077-1.988.132-2.98.224-.317-.017-.795.28-.99-.096-.118-.386.512-.17.596-.463-.003-.327-.195-.615-.307-.916q-.585-1.377-1.17-2.75zm4.83-.34c-.14-.32-.302-.72-.687-.796-.247-.022-.653-.017-.616-.374.157-.162.457-.058.67-.092.592.02 1.175-.09 1.76-.144.29-.027.4.518.026.444-.358.012-.383.405-.233.65.47 1.143.96 2.278 1.437 3.416.105.245.24.548.54.586.252.05.648-.03.705.316-.04.267-.434.12-.63.16-.522-.036-1.042.032-1.556.12-.226.064-.55.027-.56-.27.054-.273.585-.07.61-.402-.04-.326-.215-.615-.33-.92zm4.46.71c.09.227.404.064.586.075.263-.025.543-.215.52-.51-.044-.45-.265-.907-.633-1.182-.34-.24-.78-.213-1.172-.162-.022.156.1.305.146.454l.554 1.326zm.668 1.596c.164.35.28.745.565 1.017.244.172.57.093.843.066.302-.022.48-.332.386-.61-.142-.635-.554-1.3-1.238-1.437a2.4 2.4 0 0 0-.915 0c-.025.143.09.288.134.43l.224.533zm-2.034-2.37c-.158-.35-.31-.77-.688-.927-.245-.082-.643.03-.696-.324.065-.303.562-.09.8-.16.865-.022 1.744-.263 2.595-.003.734.182 1.39.81 1.45 1.587.024.377-.262.684-.582.837-.04-.135.367.06.506.082.582.186 1.118.575 1.377 1.143.2.398.357.93.04 1.314-.362.396-.94.413-1.438.438-.75.02-1.506.025-2.245.172-.267.047-.458-.482-.09-.45.37-.012.404-.412.244-.667l-1.276-3.046zm7.416-1.906c.327-.054.358.316.458.532.098.284.276.542.348.83-.277.277-.5-.144-.624-.358-.144-.248-.383-.476-.69-.45a8 8 0 0 0-1.22.07c-.143.16.066.394.114.577.19.447.36.902.56 1.34.272-.02.62.016.815-.207.076-.23-.27-.747.21-.64.298.17.264.602.416.882.127.388.384.724.492 1.115-.263.29-.524-.13-.62-.363-.187-.347-.624-.306-.96-.296-.24-.05-.074.172-.04.284.216.493.384 1.01.66 1.475.207.342.65.29.993.28.33-.02.734-.026.927-.34.216-.25-.274-.75.132-.83.346-.03.336.376.428.607.073.28.185.55.284.823-.026.2-.277.14-.423.163-1.02.065-2.042.11-3.06.19-.3 0-.805.24-.902-.198.026-.287.646-.135.554-.544-.073-.346-.25-.66-.373-.993-.377-.896-.732-1.8-1.123-2.69-.14-.297-.368-.62-.73-.63-.24.047-.602-.13-.463-.407.347-.067.712-.02 1.065-.056l2.77-.164zm2.31 1.32c-.154-.348-.302-.77-.68-.93-.256-.076-.725.014-.696-.394.247-.19.66-.03.97-.09.8-.01 1.62-.237 2.406 0 .825.23 1.515.973 1.573 1.842.027.416-.307.753-.685.864-.296.015.23.1.31.196.632.304 1.07.877 1.406 1.474.075.225.52.696.586.246-.027-.49.638-.075.488.264.002.356-.352.587-.682.583-.464.036-.904-.232-1.138-.624-.42-.553-.708-1.223-1.265-1.662-.23-.166-.56-.27-.83-.152-.058.14.07.28.105.416.18.41.305.845.547 1.223.2.31.593.358.93.356.36.09.26.576-.123.433-.585 0-1.175-.044-1.753.077-.27.126-.866.01-.65-.37.283-.017.675-.173.48-.525-.332-.872-.7-1.73-1.045-2.598l-.255-.627zm1.404.893c.134.326.595.145.86.114.36-.08.35-.508.235-.777-.164-.47-.374-1.03-.89-1.195-.263-.035-.846-.202-.886.152.19.535.423 1.054.63 1.583zm7.216 1.717c.11.26.213.61.538.656.255.06.665-.024.717.33-.05.265-.44.105-.636.143-.54-.05-1.077.01-1.61.083-.23.07-.55-.03-.518-.32.125-.21.648-.037.62-.402-.086-.4-.276-.767-.416-1.15-.383-.962-.762-1.925-1.148-2.885-.095-.305-.443-.297-.702-.28-.274.002-.683.06-.684.416-.087.23.218.617-.044.736-.3.064-.362-.275-.426-.487-.098-.322-.26-.62-.385-.927.036-.214.32-.176.493-.194 1.377-.058 2.754-.12 4.13-.174.304-.047.504.19.52.477.107.336.27.653.413.974-.114.33-.508.047-.554-.196-.2-.347-.51-.69-.94-.71-.257.013-.642-.085-.815.146.007.24.145.453.22.678l1.225 3.086zm3.73-.91c-.192 0-.097.242-.118.367.012.282-.017.57.03.848.132.31.527.234.784.318.23.13.173.502-.136.388-.422-.025-.85-.068-1.267.034-.25.133-.713-.123-.493-.392.2-.034.448-.1.494-.334.072-.414.034-.838.048-1.256l.022-3.714c.12-.28.514-.044.603.166 1.192 1.516 2.37 3.045 3.593 4.535.192.232.462.4.768.417.26.002.402.53.027.426-.51-.028-1.026-.062-1.535.023-.228.006-.492.112-.696-.022-.243-.178-.07-.435.196-.403.352-.1-.005-.476-.117-.652-.19-.255-.38-.513-.59-.752-.17-.084-.373-.022-.558-.03-.35.01-.706.02-1.055.034zm1.173-.512c.182.012-.057-.155-.087-.235q-.636-.832-1.273-1.663c.084-.013.017.175.04.255-.003.562.003 1.123-.003 1.684q.662-.02 1.324-.04zm3.057-1.848c-.15-.398-.35-.887-.818-.98-.243.043-.702-.178-.452-.44.55-.008 1.103.03 1.653-.017.698-.06 1.416-.042 2.08.205 1.46.492 2.672 1.778 2.914 3.32.107.606-.08 1.304-.625 1.642-.735.467-1.642.38-2.47.334-.47-.023-.938.04-1.404.086-.304-.042-.337-.513.023-.457.373-.012.366-.422.23-.668l-1.13-3.025zm1.97 2.494c.15.34.24.755.563.976.302.143.657.116.98.08.44-.06.714-.493.718-.91.028-.755-.28-1.475-.63-2.126-.375-.7-1.056-1.233-1.845-1.372-.324-.053-.665-.103-.99-.05-.07.124.06.273.086.402l1.12 3zm-21.11 12.416c.116.35.44.6.805.634.257.045.7-.016.713.354-.138.234-.53.07-.77.122a8.6 8.6 0 0 0-1.55.093c-.276.01-.566.125-.837.048-.243-.115-.193-.47.108-.425.247-.058.604-.135.622-.45-.023-.284-.182-.534-.278-.798-.385-.917-.76-1.838-1.152-2.75-.086-.326-.446-.335-.715-.285-.248.047-.616.124-.677-.22.03-.292.497-.238.703-.39.312-.12.62-.256.94-.356.215-.047.324.15.38.32.57 1.368 1.14 2.74 1.71 4.104zm.75-4.51c.682-.026 1.367.077 2.046.002.3-.03.095-.497.384-.47.37.017.31.477.335.74a.518.518 0 0 1-.57.582c-.533.03-1.065-.05-1.598-.02.12.41.288.81.445 1.208.027-.134.46-.155.64-.18 1.063-.048 2.166.56 2.612 1.543.215.477.328 1.1-.028 1.54-.387.456-1.03.55-1.596.554-.49-.007-1.064-.113-1.353-.55-.167-.215-.138-.68.22-.64.306.003.66.263.61.595.163.222.525.144.776.14.3-.01.584-.242.57-.56.006-.485-.186-.96-.455-1.358-.292-.423-.783-.708-1.303-.696-.293-.05-.547.148-.827.147-.284-.037-.334-.366-.435-.58a24 24 0 0 1-.65-1.818c-.02-.107.076-.193.177-.18zm6.85 1.02c-.16-.395-.37-.882-.84-.968-.243.057-.705-.17-.463-.43.557-.022 1.117 0 1.673-.067.704-.085 1.432-.07 2.105.176 1.486.494 2.71 1.82 2.934 3.388.088.584-.115 1.238-.633 1.563-.718.467-1.608.398-2.424.378-.453-.005-.9.07-1.347.128-.3-.034-.353-.503.008-.46.373-.028.343-.44.202-.683q-.607-1.512-1.216-3.023zm2.03 2.46c.16.34.26.754.59.97.302.136.654.098.973.053.44-.075.687-.524.678-.94.004-.762-.324-1.48-.693-2.13-.39-.69-1.078-1.213-1.87-1.332-.322-.043-.66-.083-.98-.02-.066.127.067.273.098.403l1.206 2.998zm6.44-4.26c.312-.053.353.293.437.504.1.284.245.55.346.832-.19.31-.507-.057-.588-.283-.145-.247-.356-.52-.674-.512a10 10 0 0 0-1.234.036c-.225.1.016.39.054.566.183.452.346.913.543 1.358.265-.01.573.012.798-.152.176-.212-.267-.736.213-.68.327.12.277.57.416.838.123.397.354.748.49 1.14-.176.33-.544-.055-.594-.302-.14-.32-.52-.362-.828-.35-.205-.036-.37.01-.226.215.215.515.38 1.054.655 1.54.204.348.65.303.995.3.33-.013.736-.01.94-.318.206-.243-.197-.658.082-.81.337-.097.416.276.466.52.075.308.184.606.29.902-.032.198-.28.133-.427.153-1.03.044-2.06.067-3.09.128-.286-.02-.69.206-.87-.114-.182-.395.504-.18.532-.524.02-.305-.16-.573-.25-.855-.385-.965-.752-1.937-1.148-2.898-.136-.313-.36-.66-.74-.68-.237.042-.603-.135-.457-.41.357-.06.728-.006 1.09-.036l2.78-.106zm-27.28 14.28c.15.487.668.686 1.11.818.77.26 1.6.518 2.15 1.158.305.37.518.854.495 1.342-.04.496-.465.87-.924.99a2.5 2.5 0 0 1-1.734-.096c-.266-.115-.165.467-.497.27-.24-.182-.164-.56-.296-.815a9 9 0 0 0-.386-.964c.013-.326.48-.156.496.098.327.595.924 1.12 1.633 1.126.358.01.807-.18.838-.583.007-.535-.42-.954-.865-1.183-.64-.332-1.375-.437-1.994-.812-.555-.334-.947-.954-.948-1.608.013-.437.37-.778.768-.903a2.63 2.63 0 0 1 1.567-.053c.24.125.34-.274.595-.076.115.196.085.46.194.672.08.286.27.537.334.825-.16.244-.466.014-.517-.203-.222-.366-.518-.772-.984-.805-.346-.026-.785-.03-1.006.288-.097.154-.092.35-.03.515zm6.69-1.65c.327-.06.336.314.418.528.08.272.21.527.29.8-.14.286-.494.024-.537-.212-.136-.26-.337-.572-.672-.552-.41-.007-.82.03-1.226.075-.227.1-.007.39.025.57.158.452.296.91.467 1.356.267-.02.575-.01.8-.18.194-.2-.194-.605.138-.696.373-.047.344.44.434.684.097.45.335.85.468 1.286-.145.317-.533.01-.55-.247-.113-.33-.484-.4-.79-.368-.178-.01-.42-.013-.275.21.18.505.318 1.027.55 1.512.12.284.45.346.726.323.392-.027.846.015 1.153-.282.244-.234.04-.585.094-.853.25-.2.526.068.5.342q.106.52.267 1.022c-.04.2-.29.142-.444.168-1.018.078-2.037.133-3.053.228-.28-.013-.684.235-.856-.087-.158-.384.457-.207.538-.502.08-.295-.098-.575-.173-.854-.336-.98-.654-1.966-1.002-2.94-.116-.308-.327-.66-.7-.664-.237.056-.59-.132-.428-.402.345-.072.71-.028 1.064-.07l2.774-.198zm4.18 4.14c.09.304.27.638.612.7.25.09.665-.073.732.286-.012.328-.493.15-.712.204a6.3 6.3 0 0 0-1.523.104c-.218.032-.545.108-.61-.188-.053-.336.464-.147.574-.4.08-.26-.066-.516-.136-.764-.337-1.005-.663-2.014-1.008-3.016-.115-.292-.27-.674-.63-.708-.232-.01-.63-.03-.558-.367.175-.165.486-.052.713-.082.73.016 1.45-.192 2.18-.144.75.03 1.483.508 1.736 1.228.165.405.22.917-.08 1.276-.386.454-1.02.547-1.58.622-.21-.028-.04.19-.026.3q.159.476.316.95zm-.57-1.72c.204.03.46-.025.675-.083.313-.064.478-.4.396-.696-.087-.422-.227-.864-.543-1.174-.304-.253-.746-.26-1.112-.163-.14.122.002.32.035.47q.273.826.55 1.647zm6.15 1.43c.09.255.17.61.492.652.246.054.66-.036.69.32-.06.265-.44.115-.643.155-.54-.04-1.075.03-1.606.112-.226.077-.55-.023-.494-.313.137-.213.65-.05.644-.415-.055-.39-.218-.756-.33-1.133-.317-.968-.63-1.936-.95-2.902-.077-.31-.43-.29-.68-.27-.254.02-.62.048-.692.35-.083.256.04.534-.015.78-.237.162-.467-.09-.457-.33a6.6 6.6 0 0 0-.344-1.002c-.01-.24.304-.22.48-.236 1.38-.082 2.76-.17 4.14-.248.302-.055.49.188.483.47.083.336.223.654.345.975-.068.283-.486.13-.502-.12-.174-.352-.445-.732-.874-.76-.28-.006-.626-.058-.86.123-.053.206.078.403.125.6q.523 1.595 1.045 3.19zm2.1-3.29c-.105-.305-.22-.693-.57-.79-.237-.06-.65.01-.627-.355.096-.212.417-.08.608-.12.6.027 1.194-.06 1.788-.118.267-.12.48.42.152.42-.255 0-.545.19-.442.475.132.53.325 1.045.486 1.568.24.733.467 1.47.717 2.2.068.23.25.432.5.44.24.002.663.035.588.38-.18.156-.48.058-.71.08-.537-.044-1.07.048-1.603.114-.232.1-.536-.14-.392-.378.206-.097.647-.043.617-.384-.078-.41-.237-.8-.357-1.2l-.753-2.332zm5.76-1.6c.317-.057.333.305.404.517.078.277.202.54.28.815-.146.284-.495.018-.534-.22-.133-.262-.33-.575-.666-.56a10 10 0 0 0-1.232.052c-.23.094-.015.388.013.568.15.452.28.912.443 1.358.268-.01.578.002.806-.163.2-.196-.18-.607.154-.69.376-.04.337.446.424.69.086.45.32.85.443 1.29-.115.288-.527.04-.528-.215-.095-.32-.43-.452-.74-.422-.145.017-.502-.075-.357.17.175.516.306 1.05.532 1.547.118.286.448.353.725.334.394-.02.85.034 1.164-.257.25-.227.054-.58.113-.847.253-.192.526.075.495.35a9 9 0 0 0 .248 1.02c-.04.195-.28.14-.43.16-1.03.06-2.063.095-3.092.17-.275-.017-.644.204-.838-.065-.218-.387.38-.25.507-.485.134-.266-.042-.547-.108-.81-.32-.995-.63-1.994-.96-2.986-.11-.323-.315-.704-.704-.715-.237.052-.59-.14-.423-.408.343-.064.704-.016 1.054-.05q1.407-.073 2.81-.147zm2 .96c-.066-.358-.34-.677-.734-.622-.374.097-.5-.57-.033-.43.508.003 1.03-.078 1.53.036.242.263.438.576.662.86l2.17 2.903c-.16.035-.036-.186-.053-.3l.355-3.543c.273-.226.73-.13 1.077-.202.282-.042.925-.136.745.35-.338.054-.77.22-.537.645.36 1.197.738 2.388 1.115 3.58.068.418.49.545.857.527.317.017.333.562-.048.43-.593-.013-1.19-.05-1.78.064-.264.09-.82.06-.64-.355.298-.054.795-.143.587-.573-.317-1.06-.657-2.113-.984-3.17.07.095-.01.255-.004.377-.096.99-.228 1.976-.292 2.968-.04.26.05.574-.074.798-.235.116-.385-.113-.503-.276l-2.856-3.698c.098-.036.086.21.14.29.307.96.59 1.928.912 2.882.1.388.494.5.848.505.378.193.098.547-.232.403-.5-.072-.998.028-1.493.084-.314-.01-.33-.513.03-.447.468.004.325-.523.216-.8q-.51-1.638-1.022-3.275l.042-.012zm8.74.85c.06.225.364.074.526.097.286-.016.62-.175.636-.498.01-.437-.157-.906-.5-1.19-.33-.252-.77-.23-1.16-.19-.042.144.062.3.092.45l.406 1.33zm.487 1.598c.125.348.193.743.45 1.023.238.18.568.105.843.088.257-.02.487-.23.46-.5-.03-.596-.315-1.26-.906-1.493-.34-.125-.713-.127-1.07-.09-.11.096.04.288.055.42q.082.278.167.553zm-1.773-2.402c-.117-.345-.224-.77-.586-.934-.233-.088-.642.018-.663-.338.083-.29.544-.08.774-.138.886.01 1.794-.224 2.66.063.693.184 1.284.818 1.28 1.557-.004.408-.334.716-.687.865-.024-.134.36.07.5.095.528.19 1.018.557 1.224 1.094.178.415.28.954-.037 1.33-.362.4-.95.43-1.454.443-.79.003-1.586-.018-2.368.114-.284.036-.396-.502-.04-.447.36 0 .46-.38.324-.656l-.928-3.048zm5.006-.176c-.114-.346-.218-.77-.578-.937-.238-.09-.687.012-.665-.37.193-.256.656-.04.954-.104.68.004 1.358-.13 2.035-.046.79.093 1.55.646 1.74 1.44.144.422.05.955-.358 1.192-.087.096-.52.198-.444.19.604.24 1.12.69 1.412 1.273.16.26.24.58.466.796.267.198.298-.164.343-.327.35-.175.528.316.386.58-.148.42-.68.504-1.06.404-.344-.077-.604-.34-.758-.645-.34-.538-.554-1.17-1.03-1.612-.224-.196-.566-.31-.85-.197-.074.136.04.29.062.43.127.392.208.8.386 1.173.158.327.543.408.873.41.322-.008.345.56-.032.428-.61-.002-1.223-.075-1.83.034-.22-.005-.53.136-.673-.1-.214-.42.418-.228.558-.468.09-.28-.065-.56-.13-.832-.268-.904-.537-1.814-.805-2.714zm1.313.917c.098.327.555.15.805.145.29-.03.46-.326.398-.6-.075-.447-.192-.942-.548-1.254-.306-.225-.72-.224-1.08-.162-.153.128-.012.34.02.503l.405 1.367zm6.887-2.537c.312-.05.326.298.384.51.07.282.188.55.257.833-.134.258-.487.03-.513-.205-.13-.26-.292-.59-.625-.605a9.5 9.5 0 0 0-1.286.005c-.234.083-.03.383-.008.562.135.453.25.913.397 1.36.26 0 .54.01.78-.103.28-.16-.112-.59.186-.702.374-.082.37.394.427.64.068.466.295.887.41 1.34-.125.282-.53.028-.525-.228-.08-.296-.373-.453-.667-.44-.14.027-.556-.12-.435.136.16.523.274 1.063.487 1.568.11.29.44.364.718.356.398-.007.855.062 1.183-.217.26-.215.074-.575.144-.836.258-.18.527.087.486.363.05.344.126.684.214 1.02-.053.194-.296.127-.45.143-1.037.024-2.076.026-3.114.066-.268-.024-.607.16-.818-.056-.263-.378.298-.304.473-.467.19-.22.033-.512-.024-.757-.297-1.023-.58-2.05-.885-3.072-.1-.31-.272-.68-.637-.722-.237.01-.61-.094-.485-.405.3-.105.656-.003.977-.035.983-.017 1.97-.037 2.95-.053zm-32.82 13.13c-.093-.368-.217-.85-.644-.95-.237.007-.644-.06-.5-.392.307-.124.674-.028 1.003-.076.818-.042 1.652-.245 2.464-.027 1.192.273 2.23 1.187 2.582 2.37.226.73.26 1.6-.23 2.236-.52.667-1.41.853-2.213.863-.617-.006-1.237-.01-1.845.113-.236.143-.63-.092-.422-.354.258-.075.67-.15.59-.518-.093-.514-.24-1.017-.36-1.526-.14-.58-.284-1.162-.426-1.738zm1.64 2.44c.1.323.138.71.406.944.275.16.616.097.918.07.47-.062.815-.477.89-.93.14-.758-.08-1.535-.38-2.23-.26-.6-.8-1.08-1.447-1.213-.377-.076-.778-.113-1.157-.038-.085.116.022.273.036.403l.735 2.994zm7.06-4.43c.318-.06.31.304.362.514.056.276.16.54.214.815-.128.26-.487.06-.5-.186-.114-.255-.27-.584-.594-.586a9 9 0 0 0-1.277.06c-.234.085-.05.384-.032.567.114.452.208.91.335 1.36.274-.017.585-.007.818-.172.214-.188-.13-.617.208-.692.377-.045.303.448.368.688.05.445.252.852.34 1.288-.12.284-.53.058-.51-.21-.07-.323-.402-.452-.703-.417-.147.02-.497-.075-.374.172.134.516.222 1.047.41 1.547.097.29.43.35.697.328.417-.02.905.022 1.22-.306.245-.225.018-.602.17-.833.292-.168.485.14.444.407.033.33.093.658.162.98-.06.2-.307.142-.467.166-1.026.067-2.052.112-3.077.195-.256-.01-.55.154-.78.012-.258-.27.095-.41.325-.44.29-.095.26-.443.188-.677-.263-1.08-.512-2.162-.784-3.24-.083-.3-.24-.676-.6-.7-.236.027-.603-.083-.462-.39.296-.12.652-.03.97-.075q1.466-.088 2.928-.178zm6.49 4.1c.045.31.285.57.596.62.237.1.605-.037.733.244.092.35-.39.235-.59.25-.574-.01-1.15-.02-1.718.067-.285.02-.573.097-.858.066-.277-.117-.15-.502.147-.444.27-.06.63-.13.707-.44.033-.27-.08-.528-.125-.79-.216-.92-.422-1.844-.643-2.763-.032-.327-.39-.336-.636-.296-.23.01-.587.163-.66-.162-.036-.34.465-.27.67-.407.37-.127.732-.272 1.107-.38.213-.047.302.15.32.32zm3.69-3.32c-.073-.363-.28-.786-.69-.84-.29-.055-.67.03-.776.344a.92.92 0 0 0 .37 1.022c.27.198.59.312.893.454.06-.12.247-.35.237-.56a1.5 1.5 0 0 0-.034-.42m.836 2.893c-.102-.487-.57-.77-.996-.948-.185-.032-.445-.278-.558-.177-.31.268-.457.714-.32 1.107.113.483.48.96 1.005 1 .348.047.76-.11.863-.473a.96.96 0 0 0 .006-.51zm.89-.208c.136.48-.06 1.02-.47 1.3-.582.4-1.356.428-2.017.23-.588-.17-1.082-.662-1.186-1.275-.122-.488.08-1.045.513-1.31.1-.1.488-.14.175-.216-.498-.245-.99-.646-1.092-1.223-.12-.486.106-1.034.552-1.274.858-.468 2.087-.192 2.583.676.218.368.26.86 0 1.22-.14.194-.322.39-.565.443.486.1.928.398 1.223.794.14.187.233.406.283.634zm3.264.555c.243.01.504-.135.54-.393.086-.196-.083-.615.256-.59.308.018.277.377.31.6.025.398-.003.873-.345 1.138-.248.158-.557.092-.835.096-.562-.018-1.123-.136-1.685-.072-.236.024-.495.287-.717.098-.192-.223-.077-.52-.005-.764.194-.615.624-1.117 1.1-1.538.334-.313.71-.652.76-1.136a1.95 1.95 0 0 0-.293-1.187c-.283-.45-.95-.607-1.398-.32-.232.15-.414.495-.228.745.21.163.6.018.7.354.13.233-.004.598-.3.595-.44.068-.838-.278-.952-.686-.18-.51.02-1.13.495-1.406.5-.313 1.134-.305 1.69-.17.565.14 1.042.58 1.214 1.138.154.432.16.933-.08 1.336-.377.717-1.15 1.074-1.66 1.677-.14.156-.243.37-.184.585.076-.203.397-.132.582-.167.347-.014.69.076 1.035.067m3.94-.42c.038.31.274.576.584.632.228.1.567-.016.715.225.143.345-.334.284-.537.27-.59-.02-1.184-.05-1.773.027-.287.013-.577.082-.863.045-.28-.13-.13-.497.158-.44.27-.052.634-.113.72-.422.038-.265-.067-.524-.108-.784-.195-.923-.38-1.848-.58-2.77-.02-.284-.316-.346-.547-.312-.236-.026-.563.165-.714-.093-.173-.353.345-.346.552-.44.408-.124.81-.276 1.222-.383.21-.044.298.155.312.325q.428 2.06.858 4.118z"})]}),(0,t.jsxs)("g",{fill:"#448127",stroke:"#34541f",strokeWidth:.218,children:[(0,t.jsx)("path",{fill:"url(#gt_inline_svg__m)",stroke:"#4c0505",d:"m475.8 219.41-3.77 4.483c-1.2 5.24 1.78 9.187 7.648 12.614 4.753 2.95 13.55 3.69 16.327 1.31l-13.714-13.07-6.49-5.337z"}),(0,t.jsx)("path",{d:"M503.58 354.27q-1.01-1.214-2.035-2.424c-8.558 11.298-19.248 21.43-32.617 28.575 15.077-4.268 24.945-15.256 34.652-26.15zm-15.44 35.71c5.316-10.772 11.73-21.544 18.203-32.317a274 274 0 0 0-2.144-2.636c-7.353 12.186-15.98 26.68-16.06 34.952zm41.73-114.5c-.985-4.247-2.27-8.838-4.31-13.055-2.656-5.43-6.622-10.83-11.83-16.804-9.384-10.172-18.772-19.996-31.927-27.25l.07-.137.076.045h.163l-.16-.2h.47l-.255-.255h.437l-.352-.4h.46l-.328-.328h.493l-.273-.364.397.03-.372-.386.548-.11-.444-.278.48-.092-.403-.276.587-.187-.516-.305.653-.288-.632-.456.67-.228-.726-.295.612-.322-.72-.13.488-.566-.702.036.32-.597-.668.055q-.021-.03-.044-.058l.366-.45-.675.12.297-.61-.65.324.186-.706-.628.433.096-.72-.578.497.06-.688-.51.534.046-.725-.503.61-.05-.712-.403.56-.205-.677-.335.677-.17-.717-.317.717-.155-.717-.273.717-.206-.677-.214.677-.16-.595-.24.716-.223-.675-.24.77-.293-.69-.126.824-.352-.673-.04.795-.383-.603-.026.788-.408-.568.032.69-.434-.364.213.744-.525-.306.197.65-.433-.24.154.63-.392-.125.206.47-.03.065-.304-.056.175.365c-.383 1.04-.413 2.28-.35 3.515.01.23.593.464.685.607.276.43.226.66.226.66-1.592 2.58-3.015 4.574-3.175 7.532 1.28-1.62 2.604-3.6 4.462-3.6-.92 1.536-1.357 6.17-.324 6.876l.77-1.352c.03 1.075.18 1.792.39 2.322.323-.65.642-1.27.963-1.742.075 1.506.268 2.715.705 3.312.43-.74 1.008-1.19 1.618-1.57-.21.86-.52 1.672-.39 2.703.645-1.102 1.29-1.753 1.933-2.513-.373 1.586-.034 2.77.417 4.522.4-2.077.557-2.297 1.516-3.17.105 1.902-.26 3.63.142 4.693.874-1.675 1.46-1.436 1.982-2.52-.102 1.58-.42 3.292-.014 4.702.337-1.413 1.244-2.17 1.945-2.67.057 2.198.565 1.836-.802 3.7.58.266 2.54-.376 3.605-.832-.514 1.178-.363 2.102-.878 2.936 1.08-.544 2-1.422 2.9-2.323-.416 1.352-1.524 2.704-.968 4.056.25-1.263 1.273-2.303 2.242-2.493-.15.708-.252 2.174-1.273 2.883 2.444.25 3.408-1.398 4.638-2.704-.16 1.357-.114 2.442 1.552 4.354-.336-2.43.242-1.93 1.343-3.392.532 2.148 1.143 4.43 3.382 6.014-.928-2.267-1.1-3.435-.573-4.862.288 1.473 1.684 3.25 2.02 4.644.206-1.547.44-3.045.96-4.055.653 1.756 1.2 3.57 1.353 5.598.488-1.01.885-2.034 1.16-3.085 19.737 20.623 24.138 46.84 2.514 74.54 7.77-5.248 9.775-13.568 14.092-20.66-4.214 9.287-6.092 19.736-13.513 27.42 7.187-6.202 8.71-11.885 13.033-17.862-4.607 12.5-10.982 26.2-19.82 38.742 1.57 1.707 3.14 3.44 4.717 5.19 1.372-2.284 2.743-4.565 4.097-6.85 9.37-15.435 24.658-37.5 16.913-71.146z"})]}),(0,t.jsx)("path",{fill:"#eac102",stroke:"#a08307",strokeWidth:.218,d:"M473.16 215.29c-.997.226-1.392.642-2.11 1.443.916.2 1.69.246 2.52.264.257-.022.344-.348.287-.585l-.128-.955c-.024-.217-.602-.2-.875-.086l.305-.08z"}),(0,t.jsx)("path",{fill:"#a08307",d:"M471.04 216.73a10 10 0 0 1 1.053-.298 10 10 0 0 1 1.078-.19 10 10 0 0 1-1.052.297 10 10 0 0 1-1.078.19z"}),(0,t.jsx)("ellipse",{cx:477.68,cy:215.416,stroke:"#000",strokeWidth:.098,rx:.775,ry:.811}),(0,t.jsx)("ellipse",{cx:477.86,cy:215.261,fill:"url(#gt_inline_svg__n)",rx:.337,ry:.353}),(0,t.jsxs)("g",{fill:"#34541f",children:[(0,t.jsx)("path",{d:"M488.18 389.69a83 83 0 0 1 1.528-4.44 96 96 0 0 1 1.783-4.346c1.26-2.87 2.664-5.672 4.136-8.435a200 200 0 0 1 4.663-8.155 354 354 0 0 1 2.453-4.003l2.51-3.968-2.42 4.024a400 400 0 0 0-2.4 4.033c-1.584 2.7-3.144 5.413-4.615 8.172a134 134 0 0 0-4.174 8.4 98 98 0 0 0-1.836 4.316 83 83 0 0 0-1.628 4.402m-18.84-9.46a76 76 0 0 0 4.88-2.375 72 72 0 0 0 4.703-2.704 72 72 0 0 0 8.733-6.416c2.755-2.342 5.328-4.894 7.762-7.57a114 114 0 0 0 3.555-4.1c1.16-1.39 2.29-2.805 3.4-4.235a154 154 0 0 1-3.317 4.3 112 112 0 0 1-3.513 4.147 82 82 0 0 1-7.745 7.624 70 70 0 0 1-8.786 6.393 71 71 0 0 1-4.742 2.657 77 77 0 0 1-4.93 2.28zm37.28-29.34c.77-1.074 1.486-2.186 2.202-3.296q1.073-1.666 2.098-3.362 2.053-3.391 3.96-6.866a342 342 0 0 0 3.75-6.985l3.677-7.026-1.745 3.562-1.783 3.542a256 256 0 0 1-3.71 7.013 161 161 0 0 1-4.008 6.85c-1.405 2.24-2.852 4.457-4.442 6.57zm5.89-25.11a58 58 0 0 0 4.692-6.42 60 60 0 0 0 3.81-6.974c2.235-4.81 3.84-9.894 4.975-15.07q.217-.97.414-1.944a61 61 0 0 0 .694-5.915c.18-2.644.18-5.3-.03-7.942a50.6 50.6 0 0 0-1.24-7.846 53.4 53.4 0 0 0-2.402-7.58 53.5 53.5 0 0 1 2.507 7.554 50.5 50.5 0 0 1 1.28 7.858c.22 2.65.235 5.314.066 7.966a61 61 0 0 1-.67 5.944 90 90 0 0 1-.406 1.95c-1.16 5.184-2.794 10.274-5.056 15.084a60 60 0 0 1-3.853 6.97 58 58 0 0 1-4.78 6.364z"}),(0,t.jsx)("path",{d:"M510.87 320.07c1.843-1.762 3.47-3.74 4.898-5.85 1.436-2.103 2.682-4.332 3.795-6.623 1.114-2.29 2.098-4.642 3.027-7.015q.694-1.78 1.36-3.572l.334-.896c.106-.296.202-.6.294-.904.186-.61.355-1.224.578-1.83l-.005.017c.507-2.524.78-5.095.81-7.67a46 46 0 0 0-.57-7.698c-.4-2.547-.996-5.06-1.732-7.532a80 80 0 0 0-2.553-7.304 80 80 0 0 1 2.656 7.273 57 57 0 0 1 1.773 7.54c.414 2.55.63 5.136.61 7.722a41.4 41.4 0 0 1-.78 7.71l-.002.008-.002.01c-.22.59-.393 1.204-.582 1.813-.095.306-.19.61-.302.915l-.338.895c-.45 1.193-.907 2.383-1.38 3.57-.94 2.37-1.937 4.72-3.065 7.012-1.126 2.29-2.383 4.52-3.837 6.62-1.46 2.093-3.116 4.05-4.984 5.788z"}),(0,t.jsx)("path",{d:"M505.05 349.23c1.202-1.66 2.39-3.327 3.573-4.998l1.778-2.507c.59-.838 1.208-1.654 1.734-2.53 1.068-1.746 1.99-3.576 2.898-5.41.9-1.84 1.82-3.67 2.71-5.515 1.78-3.686 3.504-7.405 4.966-11.228a75 75 0 0 0 3.45-11.763c.848-4.004 1.417-8.063 1.886-12.13.426-4.065.47-8.18.038-12.248a52.4 52.4 0 0 0-2.725-11.94c-1.35-3.863-3.116-7.576-5.098-11.16 2.013 3.566 3.81 7.264 5.197 11.125a52.4 52.4 0 0 1 2.77 11.96c.446 4.078.414 8.202 0 12.283-.46 4.072-1.016 8.138-1.854 12.153a75.5 75.5 0 0 1-3.495 11.784c-1.477 3.827-3.213 7.543-5.006 11.226-.897 1.843-1.82 3.67-2.727 5.507-.914 1.833-1.84 3.664-2.92 5.41-.536.877-1.163 1.69-1.76 2.522l-1.797 2.49c-1.2 1.66-2.4 3.32-3.618 4.97z"}),(0,t.jsx)("path",{d:"M507.81 352.25c2.362-3.835 4.71-7.68 6.954-11.583 2.25-3.9 4.483-7.814 6.465-11.856 1.985-4.037 3.7-8.213 4.996-12.522.65-2.153 1.2-4.336 1.653-6.54a59 59 0 0 0 .592-3.32c.17-1.11.33-2.225.472-3.34.582-4.463.928-8.958.922-13.458-.005-4.498-.365-9-1.198-13.424-.83-4.42-2.14-8.756-3.977-12.865a54 54 0 0 0-6.956-11.532 54 54 0 0 1 7.055 11.49c1.852 4.11 3.177 8.453 4.02 12.882.847 4.43 1.22 8.943 1.24 13.45.017 4.51-.317 9.015-.89 13.486a134 134 0 0 1-.48 3.346 59 59 0 0 1-.605 3.328 74 74 0 0 1-1.674 6.55c-1.31 4.316-3.04 8.496-5.04 12.534-1.997 4.042-4.24 7.953-6.503 11.846-2.276 3.89-4.655 7.714-7.047 11.53zM480 220.77c.474-.012.95.04 1.418.113.47.073.934.174 1.394.294.92.245 1.815.572 2.687.954 1.742.768 3.37 1.775 4.9 2.903a36 36 0 0 1 4.255 3.786 45 45 0 0 1 1.904 2.116c.606.73 1.197 1.472 1.757 2.236a61 61 0 0 0-1.84-2.166q-.939-1.065-1.942-2.07c-1.335-1.34-2.747-2.604-4.266-3.728a26.8 26.8 0 0 0-4.84-2.925c-.856-.397-1.74-.74-2.646-1.004-.906-.267-1.836-.473-2.784-.51z"})]}),(0,t.jsxs)("g",{fill:"#448127",children:[(0,t.jsx)("path",{d:"M496.38 231.57s3.06 1.798 4.725 4.439c0 0-4.717-.884-8.07-4.653"}),(0,t.jsx)("path",{fill:"#34541f",d:"M496.38 231.57c.48.26.933.566 1.38.88.44.322.87.663 1.28 1.025.412.36.796.753 1.16 1.163.363.412.704.846.997 1.313l.136.218-.248-.053a14.5 14.5 0 0 1-2.272-.712 16 16 0 0 1-2.138-1.038c-1.37-.795-2.623-1.8-3.64-3.008a15.2 15.2 0 0 0 3.72 2.866 18 18 0 0 0 2.13.997 14.4 14.4 0 0 0 2.24.683l-.11.163a11 11 0 0 0-.966-1.296c-.35-.41-.735-.794-1.126-1.168a18 18 0 0 0-1.23-1.064 19 19 0 0 0-1.314-.968z"}),(0,t.jsx)("path",{d:"M489.58 230.69s7.226 4.61 8.273 4.978c0 0-1.608-3.478-5.05-4.972"}),(0,t.jsx)("path",{fill:"#34541f",d:"m489.58 230.69 4.14 2.488q1.03.63 2.07 1.243.519.307 1.044.602c.347.194.702.405 1.053.55l-.128.14a10.7 10.7 0 0 0-.925-1.526c-.35-.484-.728-.95-1.142-1.38a11 11 0 0 0-1.347-1.184c-.48-.36-1-.666-1.542-.926a8.4 8.4 0 0 1 1.596.85c.503.337.967.73 1.4 1.154.432.425.832.883 1.19 1.374.356.49.683 1 .957 1.55l.124.25-.25-.108c-.77-.33-1.438-.757-2.137-1.167q-1.034-.626-2.06-1.265a152 152 0 0 1-4.043-2.645"}),(0,t.jsx)("path",{d:"M492.46 228.36s3.76 1.6 4.61 4.38c0 0-6.752-2.842-7.96-4.35"}),(0,t.jsx)("path",{fill:"#34541f",d:"M492.46 228.36a10.7 10.7 0 0 1 2.805 1.682 7.2 7.2 0 0 1 1.14 1.194c.33.443.607.935.77 1.47l.066.224-.21-.09a80 80 0 0 1-2.083-.936 50 50 0 0 1-2.05-1.003 34 34 0 0 1-1.994-1.11q-.488-.299-.95-.634c-.305-.227-.61-.465-.844-.766.25.286.564.506.875.72q.474.314.97.59c.66.375 1.334.722 2.016 1.055a84 84 0 0 0 4.143 1.885l-.145.13a4.8 4.8 0 0 0-.725-1.415 7.8 7.8 0 0 0-1.09-1.184c-.402-.36-.834-.688-1.287-.986q-.676-.458-1.406-.824z"}),(0,t.jsx)("path",{d:"M486.76 231.25s6.646 4.758 8.613 4.758c0 0-1.948-3.258-5.388-4.752"}),(0,t.jsx)("path",{fill:"#34541f",d:"M486.76 231.25q1.032.685 2.076 1.35 1.042.67 2.106 1.298c.707.423 1.423.833 2.157 1.2.366.185.738.36 1.118.507.376.145.77.288 1.154.3l-.09.156c-.312-.505-.68-.99-1.07-1.45-.39-.456-.804-.898-1.247-1.308-.44-.41-.915-.788-1.41-1.135a11 11 0 0 0-1.57-.91c1.13.45 2.166 1.128 3.08 1.933.46.403.895.834 1.292 1.298.4.463.773.944 1.104 1.467l.104.16-.19-.004c-.447-.01-.845-.157-1.236-.303a14 14 0 0 1-1.133-.523 33 33 0 0 1-2.158-1.23 64 64 0 0 1-2.075-1.357 56 56 0 0 1-2.012-1.447z"}),(0,t.jsx)("path",{d:"M486.76 232.74s3.46 2.92 5.427 2.92c0 0-1.948-3.258-5.388-4.752"}),(0,t.jsx)("path",{fill:"#34541f",d:"M486.76 232.74q.626.469 1.272.905c.428.293.866.573 1.315.83.445.265.902.51 1.376.71.236.1.478.186.723.25.244.07.494.12.74.12l-.088.158a12.4 12.4 0 0 0-1.07-1.45c-.393-.458-.805-.9-1.248-1.31s-.915-.787-1.41-1.134a11 11 0 0 0-1.57-.912c1.13.45 2.165 1.13 3.08 1.934.46.402.894.834 1.292 1.297.4.463.773.944 1.104 1.466l.1.158h-.19c-.55-.002-1.062-.18-1.544-.39a11.5 11.5 0 0 1-1.39-.74q-.662-.421-1.287-.895a18 18 0 0 1-1.205-1z"}),(0,t.jsx)("path",{d:"M485.03 226.18s7.207 5.117 8.06 7.896c0 0-6.523-2.994-7.732-4.502"}),(0,t.jsx)("path",{fill:"#34541f",d:"M485.03 226.18a52 52 0 0 1 2.304 1.68 51 51 0 0 1 2.205 1.808 26 26 0 0 1 2.053 1.988c.322.352.63.718.912 1.11.276.39.54.803.687 1.28l.072.23-.22-.102a77 77 0 0 1-2.022-.985 50 50 0 0 1-1.99-1.05 35 35 0 0 1-1.934-1.15 15 15 0 0 1-.92-.65c-.296-.23-.59-.47-.82-.767.247.282.55.505.853.723.306.214.623.413.943.605.64.387 1.295.748 1.957 1.095a87 87 0 0 0 4.023 1.983l-.148.13c-.14-.433-.384-.84-.653-1.22a12 12 0 0 0-.888-1.098c-.632-.703-1.32-1.354-2.02-1.994a51 51 0 0 0-2.16-1.852 71 71 0 0 0-2.234-1.764"})]}),(0,t.jsxs)("g",{stroke:"#24420e",strokeWidth:.164,children:[(0,t.jsx)("path",{fill:"#406325",d:"M445.02 370.33c-4.89 3.644-18.553 5.43-20.448 4.8 9.943-8.27 19.725-8.47 20.448-4.8zm69.76 4.44c5.254 4.768 21.104 8.053 23.475 7.46-10.542-10.77-22.102-11.862-23.475-7.46z"}),(0,t.jsx)("path",{fill:"#67923d",d:"M444.98 370.3c-.72-3.67-10.458-3.45-20.378 4.775 10.446-3.442 19.238-5.405 20.378-4.775zm69.91 4.41c1.37-4.402 12.794-3.338 23.364 7.462-11.884-5.02-21.947-8.1-23.364-7.462z"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1065.5cc838a2.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js deleted file mode 100644 index 5da75adf2b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1102.01cefe38.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1102"],{75181(e,s,i){i.r(s),i.d(s,{default:()=>t});var l=i(74848);i(47867);let t=e=>(0,l.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,l.jsx)("defs",{children:(0,l.jsx)("clipPath",{id:"jp_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,l.jsx)("path",{fillOpacity:.67,d:"M-88.001 32h640v480h-640z"})})}),(0,l.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#jp_inline_svg__a)",transform:"translate(88.001 -32)",children:[(0,l.jsx)("path",{fill:"#fff",d:"M-128 32h720v480h-720z"}),(0,l.jsx)("circle",{cx:523.08,cy:344.05,r:194.93,fill:"#d30000",transform:"translate(-168.44 8.618)scale(.76554)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1102.01cefe38.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js deleted file mode 100644 index 21a489f006..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1153.7cbdaf39.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1153"],{64139(e,i,l){l.r(i),l.d(i,{default:()=>t});var s=l(74848);l(47867);let t=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h639.98v479.998H0z"}),(0,s.jsx)("path",{fill:"#36a100",d:"M426.654 0H639.98v479.998H426.654zM0 0h213.327v479.998H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1153.7cbdaf39.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js deleted file mode 100644 index 24851b6ec5..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1180.c2738508.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1180"],{65543(l,s,d){d.r(s),d.d(s,{default:()=>e});var i=d(74848);d(47867);let e=l=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,i.jsx)("defs",{children:(0,i.jsx)("clipPath",{id:"mk_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,i.jsx)("path",{fillOpacity:.67,d:"M-85.687-1.46h684.61V512h-684.61z"})})}),(0,i.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#mk_inline_svg__a)",transform:"translate(80.104 1.365)scale(.93483)",children:[(0,i.jsx)("path",{fill:"#ed3d00",d:"M-126.62-.364h767.07v512h-767.07z"}),(0,i.jsx)("path",{fill:"#ffd100",d:"m-126.59 200.87.156 109.9 385.87-54.964-386.03-54.936z"}),(0,i.jsx)("path",{fill:"#ffd100",d:"m-128 512 159.3-.3 228.68-257.41z"}),(0,i.jsx)("path",{fill:"#ffd100",d:"m311.72 511.64-109.9-.103 54.964-253.87 54.936 253.97zM641.24-1.46l-159.3.305-228.69 259.45L641.24-1.456zM201.52 0l109.9.103-54.97 253.87L201.52.003z"}),(0,i.jsx)("path",{fill:"#ffd100",d:"m640.5 511.64-159.3-.31-228.69-257.41z"}),(0,i.jsx)("path",{fill:"#ffd100",d:"m640.5 200.87-.16 109.9-385.87-54.97z"}),(0,i.jsx)("path",{fill:"#ffd100",d:"m-126.96 0 159.3.302 228.69 257.41L-126.96.002z"}),(0,i.jsx)("path",{fill:"#ed3d00",d:"M346.43 255.814c0 48.336-40.14 87.52-89.655 87.52s-89.655-39.184-89.655-87.52 40.14-87.521 89.655-87.521 89.655 39.184 89.655 87.52"}),(0,i.jsx)("path",{fill:"#ffd100",d:"M339.506 255.814c0 45.408-37.04 82.218-82.734 82.218s-82.735-36.81-82.735-82.218c0-45.407 37.041-82.217 82.735-82.217 45.692 0 82.734 36.81 82.734 82.217"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1180.c2738508.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js deleted file mode 100644 index 0b43f3465e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1207.ea0577c0.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1207"],{5338(e,o,t){var u=t(25765);o.createRoot=u.createRoot,o.hydrateRoot=u.hydrateRoot}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1207.ea0577c0.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js deleted file mode 100644 index d64a60f46d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1265.d95e4129.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1265"],{86520(h,i,l){l.r(i),l.d(i,{default:()=>e});var s=l(74848);l(47867);let e=h=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"fo_inline_svg__a",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M-78.015 32h640v480h-640z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:0,clipPath:"url(#fo_inline_svg__a)",transform:"translate(78.02 -32)",children:[(0,s.jsx)("path",{fill:"#fff",d:"M-78.015 32h663.91v480h-663.91z"}),(0,s.jsx)("path",{fill:"#003897",d:"M-76.033 218.67h185.9V32h106.23v186.67h371.79v106.67h-371.79v186.67h-106.23V325.34h-185.9z"}),(0,s.jsx)("path",{fill:"#d72828",d:"M-76.033 245.33h212.45V32h53.113v213.33h398.35v53.333H189.53v213.33h-53.113v-213.33h-212.45z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1265.d95e4129.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js deleted file mode 100644 index c3ef100cbd..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1270.4a7146b0.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1270"],{83157(s,c,l){l.r(c),l.d(c,{default:()=>e});var i=l(74848);l(47867);let e=s=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,i.jsx)("defs",{children:(0,i.jsx)("clipPath",{id:"iq_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,i.jsx)("path",{fillOpacity:.67,d:"M0 64h512v384H0z"})})}),(0,i.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#iq_inline_svg__a)",transform:"translate(0 -80)scale(1.25)",children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0h512v512H0z"}),(0,i.jsx)("path",{d:"M0 341.33h512V512H0z"}),(0,i.jsx)("path",{fill:"#f30000",d:"M0 0h512v170.67H0z"}),(0,i.jsx)("path",{fill:"#005623",d:"m487.59 284.028-21.115-15.274-21.012 15.483 7.998-24.808-21.216-15.196 26.064-.06 7.903-24.869 8.106 24.767 26.094-.173-21.048 15.363zM193.24 233.17c.217 24.34 0 39.988 0 44.986a185 185 0 0 0-7.172 8.91c-.869-.652-1.087-.652-1.087-1.956s-.217-33.25 0-44.986c3.912-1.956 6.52-7.39 8.259-6.955zm-8.91-.435c1.956-3.26 4.129-6.52 5.65-8.04 1.522.869 1.304 3.26 1.522 3.91-1.522 2.174-5.216 5.651-6.303 6.738-.435-.652 0-.435-.87-2.608m10.866-27.818c-13.257 8.694-28.253 19.125-33.686 23.69-5.434 4.564-7.389 7.389-7.389 15.212 0 7.824.217 16.734-.435 20.863-.652 4.13-2.608 8.476-7.389 4.564-4.781-3.911-8.258-7.823-10.432-9.562-2.173-1.739-6.085-4.13-11.301.435-5.216 4.563-29.556 30.208-34.12 33.033s-5.433 3.477-8.693 5.216c6.737.434 14.343.869 20.428-.435 8.041-5.868 17.386-19.125 20.43-22.385 3.042-3.26 6.084-10.214 12.821-2.608 6.738 7.607 6.52 7.824 9.78 10.214s7.39 1.956 10.215-2.825 3.042-6.954 4.129-14.778c1.087-7.823 1.738-17.603 3.477-21.95s5.216-8.693 11.083-12.17c5.868-3.478 6.955-3.695 8.259-4.347 2.607-4.999 8.91-16.734 11.518-19.56 1.087-1.304 1.304-1.956 1.304-2.608zM136.3 284.024c-3.26-2.173-4.347-3.912-6.085-3.694s-5.433 5.216-7.607 6.52c2.826 2.39 5.434 4.564 7.607 4.13 2.173-.436 3.694-5.217 6.085-6.956M411.65 222.96c-4.564 1.087-6.954 7.172-10.866 11.301-.435 12.171-.435 49.985-.435 54.983 3.912-4.564 6.303-7.172 9.128-8.91.652-20.211 3.042-48.463 2.173-57.374zm-21.516-.217c-5.433 3.477-6.737 6.954-11.301 10.866-.217 14.561.435 35.206-.652 38.032s-3.477 8.693-9.344 8.041c-5.868-.652-7.607-1.738-7.607-7.823s1.304-44.986 1.304-51.29c-4.564 2.174-8.476 8.911-11.735 11.737 0 15.212.652 34.554.217 38.684s-2.173 10.866-9.562 10.649c-7.39-.217-11.301-3.912-11.301-8.258 0-4.347-.217-32.816.217-37.815-6.52 4.563-21.733 13.69-24.775 25.427-3.042 11.735 1.74 15.213 6.085 13.039 4.347-2.173 6.303-4.13 8.693-5.868.653 7.389.87 15.43 8.258 20.211 7.39 4.781 16.734 3.043 20.212.435s4.782-4.347 5.65-5.65c6.52 4.998 16.083 7.606 22.386 2.172 6.302-5.432 9.78-10.866 10.43-16.95.653-6.086 3.696-37.38 2.826-45.639zm-68.24 29.556c-6.52 3.043-9.345 7.606-7.606 10.432 1.738 2.825 5.215-.435 7.606-1.521-.435-4.346 0-6.737 0-8.91zm41.944-46.073c-1.521 4.998-2.608 4.129-4.564 4.347-1.956.217-3.26-1.74-4.78-3.478-1.522.217-1.74.652-2.826 1.087 3.477 4.998 6.085 7.171 10.214 6.085s4.347-4.781 4.347-6.737c-.653-.435-.87-.652-2.391-1.304m-3.694-6.303c-1.956.653-2.391 1.087-3.043 2.826 1.087 2.39 2.608 3.694 4.13 3.042 1.52-.652 1.738-3.26.869-3.912-.87-.652-.435-1.086-1.956-1.956M62.51 284.028l-21.115-15.274-21.012 15.483 7.998-24.808-21.216-15.196 26.064-.06 7.903-24.869 8.106 24.767 26.094-.173-21.048 15.363zM274.615 284.028 253.5 268.754l-21.012 15.483 7.998-24.808-21.216-15.196 26.064-.06 7.903-24.869 8.106 24.767 26.094-.173-21.048 15.363z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1270.4a7146b0.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js deleted file mode 100644 index 9600c96539..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 129.24017dc3.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["129"],{38696(l,h,e){e.r(h),e.d(h,{default:()=>s});var i=e(74848);e(47867);let s=l=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:(0,i.jsxs)("g",{strokeWidth:"1pt",children:[(0,i.jsx)("path",{fill:"#006",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#fff",d:"M0 0v30.59l372.58 243.023h46.898v-30.59L46.898 0zm419.478 0v30.59L46.898 273.612H0v-30.59L372.58 0z"}),(0,i.jsx)("path",{fill:"#fff",d:"M174.782 0v273.612h69.913V0zM0 91.204v91.204h419.478V91.204z"}),(0,i.jsx)("path",{fill:"#c00",d:"M0 109.445v54.722h419.478v-54.722zM188.765 0v273.612h41.948V0zM0 273.612l139.826-91.204h31.265L31.266 273.612zM0 0l139.826 91.204H108.56L0 20.394zm248.387 91.204L388.213 0h31.265L279.652 91.204zm171.09 182.408-139.825-91.204h31.265l108.56 70.81z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m125.512 416.48-27.478-2.388 23.717-14.077-15.26-22.972 25.79 9.766 8.448-26.258 8.447 26.257 25.79-9.767-15.26 22.972 23.716 14.077-27.477 2.39 3.786 27.32-19.002-19.993-19.002 19.993M492.164 445.697l-19.346-1.684 16.698-9.913-10.748-16.173 18.165 6.877 5.943-18.49 5.943 18.49 18.164-6.877-10.748 16.173 16.698 9.913-19.346 1.684 2.67 19.23-13.382-14.072-13.382 14.073m2.671-307.008-19.346-1.683 16.698-9.912-10.748-16.175 18.165 6.878 5.943-18.487 5.943 18.488 18.164-6.878-10.748 16.175 16.698 9.912-19.346 1.684 2.67 19.232-13.382-14.073-13.382 14.072M384.248 274.83l-19.346-1.684 16.698-9.913-10.748-16.173 18.165 6.877 5.943-18.49 5.943 18.49 18.165-6.877-10.748 16.173 16.698 9.913-19.346 1.684 2.67 19.23-13.382-14.072-13.382 14.073m206.48-48.009-19.317-1.683 16.728-9.915-10.77-16.173 18.18 6.878 5.9-18.49 5.97 18.49 18.13-6.878-10.72 16.173 16.692 9.914-19.353 1.682 2.662 19.23-13.383-14.07-13.38 14.07m-22.247 40.414-9.503 8.022 2.97 12.08-10.575-6.555-10.575 6.555 2.97-12.08-9.503-8.02 12.41-.915 4.698-11.518 4.698 11.518"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/129.24017dc3.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js deleted file mode 100644 index 97caf434af..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1303.f89c138e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1303"],{60266(e,l,i){i.r(l),i.d(l,{default:()=>d});var s=i(74848);i(47867);let d=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#0000b4",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#fff",d:"M0 75.428h640v322.285H0z"}),(0,s.jsx)("path",{fill:"#d90000",d:"M0 157.716h640V315.43H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1303.f89c138e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js deleted file mode 100644 index 290e7dccb4..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 141.a305e3e9.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["141"],{89756(e,s,d){d.r(s),d.d(s,{default:()=>i});var h=d(74848);d(47867);let i=e=>(0,h.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,h.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,h.jsx)("path",{fill:"#fc0",d:"M0 320h640v160.002H0z"}),(0,h.jsx)("path",{d:"M0 0h640v160H0z"}),(0,h.jsx)("path",{fill:"red",d:"M0 160h640v160H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/141.a305e3e9.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js deleted file mode 100644 index 3174c48aae..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1428.b3183de2.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1428"],{93631(e,l,i){i.r(l),i.d(l,{default:()=>d});var s=i(74848);i(47867);let d=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",children:[(0,s.jsx)("path",{fill:"#ffe700",d:"M640 480H0V0h640z"}),(0,s.jsx)("path",{fill:"#36a100",d:"M640 160.003H0V0h640z"}),(0,s.jsx)("path",{fill:"#006dbc",d:"M640 480H0V319.997h640z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1428.b3183de2.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js deleted file mode 100644 index e41a1120e9..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1438.67cdf5fd.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1438"],{72349(t,s,c){c.r(s),c.d(s,{default:()=>h});var e=c(74848);c(47867);let h=t=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"-15 -7.5 30 15",...t,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"pn_inline_svg__a",children:(0,e.jsx)("path",{d:"M-15-7.5h30v15h-30z"})})}),(0,e.jsx)("path",{fill:"#00247d",d:"M-15-11.25h30v22.5h-30z"}),(0,e.jsxs)("g",{clipPath:"url(#pn_inline_svg__a)",transform:"translate(0 -3.75)",children:[(0,e.jsx)("circle",{r:20,fill:"#00247d"}),(0,e.jsx)("path",{stroke:"#fff",strokeWidth:3,d:"m-20-10 40 20m-40 0 40-20"}),(0,e.jsx)("path",{stroke:"#cf142b",strokeWidth:2,d:"m-20-10 40 20m-40 0 40-20"}),(0,e.jsx)("path",{fill:"#fff",d:"m0 0 20 10h-3L-3 0m3 0 20-10h3L3 0M0 0l-20 10h-3L-3 0m3 0-20-10h3L3 0"}),(0,e.jsx)("path",{stroke:"#fff",strokeWidth:5,d:"M-20 0h40M0-10v20"}),(0,e.jsx)("path",{stroke:"#cf142b",strokeWidth:3,d:"M-20 0h40M0-10v20"})]}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M4.216 3.299c-.43.364-.84.896-.94 1.376-.283 1.352-.659 1.653-1.24 1.362 0 .726.637.782.916.358 0 .68.247 1.271.804 1.775.235.212.28.067.168-.167s-.112-.994-.335-1.43c.357.257.882.112.837-.592-.458.268-.913.258-.96-.38-.056-.748.236-1.833.75-2.302zM3.673-2.08c.03-.268-.027-.544-.223-.716-.379-.334-.75-.223-1.026.045-.413-.223-.633.569-1.102.435.078.257.201.368.436.279-.246.223 0 .491-.29.76.524.167.804-.123.781-.626.201.179.514.168.681-.033-.279-.09-.28-.333-.167-.559.167-.335.954-.322.91.415z"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M4.885 1.805c-.592.312-1.676.178-1.776-.592s.648-1.117.849-1.217c.313-.157.558.122.458.446a.507.507 0 0 0 .256-.76c.458.034.883-.312 1.061-.803-.16.153-.598.05-.959.026.112-.123.11-.361.077-.484-.38.39-.927.212-1.653 1.34.112-.39.324-1.173.447-1.686a1 1 0 0 0 .028-.155c.044-.737-.742-.75-.91-.415.184.207.088.449.022.815-.078.436-.246 1.441-.39 1.776-.045-.525-.392-.558-.459-.815-.1.067-.156.246-.134.368-.123-.134-.547.034-.703-.167-.168.335.1.67.38.815-.163.011-.202.207-.38.207.24.279.485.39.77.413s.497.128.67.475c.28.558 1.343.92 2.346.413z"}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M6.359 1.123C6.024 2.05 5.108 2.71 4.694 2.81c-.703.17-2.137.867-2.522 1.225a.5.5 0 0 1-.158-.064c-.19-.134-.346-.57-.01-.938 1.049-.983 2.177-.558 2.88-1.228-.592.312-1.675.178-1.775-.592A2.73 2.73 0 0 0 5.81.409c.123.134.48.558.548.714z"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M4.216 3.299c-.53.45-.806 1.554-.75 2.303.015.208.074.349.162.435.04-.424.335-1.52 1.089-2.01.636-.413 1.63-1.34 1.999-2.401-.067-.19-.179-.324-.391-.458C5.96 2.17 4.98 2.65 4.215 3.298z"}),(0,e.jsx)("path",{fill:"#316d3a",stroke:"#000",strokeWidth:.02954238,d:"M6.019.694c-.19.284-.62.675-1.033.832.089-.101.117-.23.122-.336-.525.202-1.574.18-1.999.023A2.73 2.73 0 0 0 5.812.409c.09.1.167.19.207.285z"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M2.003 3.033c-.853.8-.29 1.497.045 1.653-.09.558.436.491.424.96.213-.123.269-.446.235-.703.268.29.95-.034 1.094.502.09-.592-.368-1.184-.938-1.128.235-.212.1-.558-.122-.647-.045.435-.536.435-.726.301s-.347-.57-.012-.938z"}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M3.852 8.114c-.093.053-.086.173-.028.251.117.156-.082.51.296.586.112.023.198-.046.24-.173.118-.352-.257-.39-.29-.558-.034-.168-.14-.151-.218-.106z"}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M4.17 8.773c-.125.058-.235.14-.184.541.02.167.01.57-.134.576.089.044.279.092.357-.012.075.126.246.09.313-.067.089.073.212-.05.212-.156.078.05.234-.022.195-.262.095.033.218-.034.263-.095-.14-.028-.492-.218-.576-.369-.083-.15-.301-.223-.446-.156z"}),(0,e.jsx)("g",{fill:"none",stroke:"#000",strokeWidth:.186,children:(0,e.jsx)("path",{strokeWidth:.02954238,d:"M2.235-2.521q.085-.127.19-.23M4.36-1.043c.1-.056.249-.063.415-.052M4.21 9.878c-.04-.055-.053-.29-.026-.432M4.522 9.812a.66.66 0 0 1-.198-.352M4.734 9.656c-.079-.036-.268-.282-.31-.441M4.93 9.394c-.093-.02-.375-.204-.492-.4"})}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M10.078 3.044c1.374 1.15 1.463 2.066 1.251 2.602-.112-.502-.681-1.284-1.273-1.485z"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M7.621 2.397h2.547v3.015c0 2.568-1.43 4.087-2.882 4.891C5.834 9.5 4.405 7.98 4.405 5.412V2.397h1.787c.003.156.017.39.2.625.422-.042.9-.357 1.23-.625z"}),(0,e.jsx)("path",{fill:"#006ec7",stroke:"#000",strokeWidth:.02954238,d:"M10.167 2.397v3.015c0 .775-.13 1.455-.352 2.048L7.287 2.82 4.758 7.46a5.8 5.8 0 0 1-.352-2.048V2.397h5.763z"}),(0,e.jsx)("path",{fill:"#f7e017",d:"M9.893 7.237a6 6 0 0 1-.189.496L7.287 3.24 4.869 7.733a6 6 0 0 1-.188-.496l2.606-4.832z"}),(0,e.jsxs)("g",{fill:"#f7e017",stroke:"#000",strokeWidth:.186,children:[(0,e.jsx)("path",{strokeWidth:.02954238,d:"M8.436 8.89c.067.034.19.096.246.118.134-.268.157-.647.112-.983-.145.37-.637.358-.77.581.082.041.158.095.224.143-.167.167-.56.45-.783.516V6.87c0-.168-.056-.307-.056-.447v-.495c0-.112-.022-.274-.123-.274s-.122.162-.122.274v.495c0 .14-.056.301-.056.447v2.395c-.123-.357-.604-.235-.827-.592a.6.6 0 0 1 .268-.011c-.167-.57-.625-.614-.714-.782 0 .235-.1.782.055 1.017a.6.6 0 0 1 .152-.124c.19.413 1.043.414 1.244 1.095.162-.25.743-.54 1.15-.978z"}),(0,e.jsx)("path",{strokeWidth:.02954238,d:"M7.286 6.897c.19 0 .793-.062 1.01-.062.057 0 .104-.084.104-.189s-.047-.19-.103-.19c-.218 0-.821-.061-1.01-.061s-.794.061-1.012.061c-.056 0-.102.085-.102.19s.046.19.102.19c.218 0 .821.061 1.011.061zM7.164 5.916a.24.24 0 0 0-.151-.053c-.127 0-.23.094-.23.21s.103.209.23.209c.126 0 .228-.094.228-.21 0-.089.13-.089.13 0 0 .182-.16.328-.358.328s-.36-.146-.36-.327.161-.328.36-.328q.09 0 .164.036c-.004.03-.013.086-.013.135z"}),(0,e.jsx)("path",{strokeWidth:.02954238,d:"M6.276 6.835c.057 0 .103-.084.103-.189s-.046-.19-.103-.19"}),(0,e.jsx)("path",{strokeWidth:.02954238,d:"M6.36 6.835c.057 0 .103-.084.103-.189s-.046-.19-.103-.19M6.911 6.874c.069 0 .124-.102.124-.228s-.055-.229-.124-.229M7.04 6.885c.071 0 .13-.107.13-.24 0-.131-.059-.238-.13-.238M7.469 6.887c.072 0 .13-.108.13-.241 0-.134-.058-.242-.13-.242M7.604 6.88c.071 0 .13-.105.13-.234 0-.13-.059-.234-.13-.234M8.203 6.84c.057 0 .104-.087.104-.194s-.047-.193-.104-.193M6.04 8.773a.9.9 0 0 1 .24-.1M8.314 8.795l-.066-.047M8.436 8.89c.156-.167.287-.357.358-.574"})]}),(0,e.jsxs)("g",{stroke:"#000",strokeWidth:.186,children:[(0,e.jsx)("path",{fill:"#fff",strokeWidth:.02954238,d:"M6.775 4.528c0-.054.044-.078.097-.117.062-.047.088-.07.145-.07h.733c.054 0 .067.014.067.064v.997c0 .05-.013.064-.067.064h-.975V4.52"}),(0,e.jsx)("path",{fill:"#e5e5e5",strokeWidth:.02954238,d:"M7.569 5.553c.096 0 .079-.002.146-.07.07-.07.064-.064.064-.129v-.911c0-.047-.011-.06-.062-.06H7.04c-.053 0-.076.02-.134.065-.049.037-.09.059-.09.11v.995z"}),(0,e.jsx)("path",{fill:"#fff",strokeWidth:.02954238,d:"M7.64 5.532c0 .05-.012.064-.067.064H6.84c-.054 0-.066-.014-.066-.064v-.997c0-.05.012-.064.066-.064h.733c.055 0 .067.014.067.064z"})]}),(0,e.jsx)("path",{fill:"#96877d",stroke:"#000",strokeWidth:.02954238,d:"M9.062 1.813c.143.159.19.373.112.583h-.212c.089-.268.033-.524-.347-.558-.567-.05-1.228 1.05-2.222 1.184-.29-.346-.275-1.006.094-1.318-.19-.55-.593-1.154-.872-1.415a2.7 2.7 0 0 0-.529-.037c.145-.312.56-.641.894-.775q.084-.121.167-.224c.034-.43 2.077-.229 2.513.039 0 .48.19 2.085.402 2.52z"}),(0,e.jsx)("path",{d:"M6.584 2.106C6.535 1.36 6.234.748 5.812.33c.2.055.614.055.893-.146.369-.245 1.329-.675 1.68-.491a.55.55 0 0 1 .023.29c-.084-.223-1.01.123-1.273.23-.251.117-.363.273-.274.625-.145-.123-.095-.24-.245-.33.061.145.111.408.128.62C6.688.98 6.588.654 6.37.465c.19.368.355 1.253.277 1.722.15 0 .483-.148.616-.254-.117.168-.455.285-.672.33-.098.117-.165.418-.16.586-.016-.207.049-.71.153-.743zM9.062 1.813c-.185-.206-.53-.318-.972-.198.067-.034.213-.09.341-.112-.017-.117-.123-.62-.14-.742l.123-.05c.062.3.14.647.19.787.04.01.129.028.207.067-.034-.118-.224-.96-.218-1.05l.168-.09c.067.458.173 1.123.3 1.388"}),(0,e.jsx)("g",{fill:"#96877d",stroke:"#000",strokeWidth:.186,children:(0,e.jsx)("path",{strokeWidth:.02954238,d:"M8.962 2.396c.089-.268.033-.524-.346-.558-.295-.026-.614.26-.992.558zM6.494-.01a2.2 2.2 0 0 1-.732-.073 1 1 0 0 1 .056-.158c-.118.079-.34.23-.425.337.269.056.822.084 1.1-.106z"})}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.02954238,d:"M6.487 1.704c.062.178.102.35.108.503M5.98-.523c-.1.147-.189.306-.218.44.19.062.564.095.732.073"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.02954238,d:"M5.615.289q.11.018.197.041c.201.056.614.056.894-.145S7.744-.64 8.604-.708"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.02954238,d:"M5.393.096c.268.056.821.084 1.1-.106.648-.441 1.273-.698 1.898-.732"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M10.078 3.044c.938.648 1.63 1.273 1.832 2.279.2 1.005.58 1.273 1.05 1.005-.112.58-.693.647-1.184.2.045.67-.224 1.475-.916 1.765-.045-.402.221-.72.145-1.05-.033-.145-.044-.48.145-.636-.368.123-.949-.112-1.005-.659.425.201.972.235 1.184-.301s.123-1.452-1.25-2.603zM11.262-2.182c.29-.76 1.05-.681 1.306-.357.749-.425.85.536 1.486.346-.012.178-.224.346-.458.335.245.223-.1.558.424.76-.447.223-1.072-.012-1.24-.626-.145.29-.67.29-.882.056.458-.123.425-.548.168-.715-.259-.169-.715-.1-.804.2zM8.997-.51c.208.672.64 1.297 1.104 1.723.536.491 1.345.368 1.798-.1.01.935-.958 1.007-1.497.714-.237-.13-.43-.061-.2.145.345.313 1.103.545 1.998.737 1.564.335 1.005 1.575.547 1.564.132-.003.24-.14.05-.31-1.356-1.22-4.115-.74-4.07-3.465-.29.715-1.485.436-.927-.413.179.145.492.156.58-.067.07-.174.025-.476-.288-.736.051-.004.162 0 .15-.128.015.075.083.187.259.15.05.079.103.131.174.103.014-.006.056-.027.04-.107.013.148.19.201.282.19z"}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M10.402 1.827c.648.424 1.38.424 2.055-.357.212-.246.547-.458.782-.48.234-.023.223-.246.402-.29-.112-.034-.156-.168-.324-.152.419-.145.296-.48.503-.642-.168.062-.43-.19-.67.129.061-.146-.023-.319-.084-.386.022.168-.33.201-.397.626-.037.238-.167.223-.19-.145-.016-.27-.145-1.017-.3-1.396-.157-.38-.193-.901.02-.98a.4.4 0 0 0-.133-.137c-.258-.169-.714-.1-.804.2-.29.76.525 1.196.458 2.022-.123-.614-1.117-.77-1.105-1.373-.324.145-.28.413-.157.625-.2-.313-.659.2-1.05-.223-.044.558.447.77.85.792-.202.358.066.66.334.76.011-.626 1.294-.369 1.307.703.011.916-.972.994-1.497.704zM12.2 2.71c1.564.334 1.006 1.574.548 1.563-.292-.007-.57-.252-.587-.464-.335.179-.245.53.012.67-.704-.083-1 .38-1.017.888.129-.234.52-.251.665-.2s.519.077.67-.09c-.123.106.078.352-.095.541.586-.022.843-.57.743-.81.759-.692.614-1.82-.939-2.099zM11.01 8.015c.1.064.088.197.02.282-.138.17.07.574-.357.642-.125.02-.218-.06-.26-.204-.116-.398.304-.425.348-.61.045-.186.163-.163.248-.11z"}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M10.626 8.736c.138.07.256.166.182.613-.03.185-.037.635.125.648-.102.046-.316.09-.398-.028-.09.137-.279.089-.347-.089-.103.077-.234-.065-.23-.184-.089.053-.26-.035-.206-.301-.108.033-.242-.047-.29-.117.158-.025.559-.222.659-.387.1-.164.346-.236.505-.155z"}),(0,e.jsx)("g",{fill:"none",stroke:"#000",strokeWidth:.186,children:(0,e.jsx)("path",{strokeWidth:.02954238,d:"M10.534 9.969c.046-.06.072-.322.047-.482M10.188 9.882a.74.74 0 0 0 .237-.384M9.958 9.697c.088-.037.311-.303.365-.479M9.751 9.395c.104-.017.427-.21.566-.424"})}),(0,e.jsx)("path",{fill:"#f7e017",stroke:"#000",strokeWidth:.02954238,d:"M8.727.498c-.019 1.145.457 1.724 1.116 2.101-.245-.147-.139-.65-.469-.811.079-.006.201.106.397.061-.095-.212-.251-.536-.614-.58.095-.011.301.022.435-.028-.19-.29-.692-.151-.865-.743zM8.608-.59c-.04-.014-.075-.054-.108-.107-.176.038-.244-.074-.258-.15.01.13-.1.124-.152.128.315.26.36.563.29.737-.09.223-.402.212-.58.067-.023.474.591.63.814.033 0 .1.129.09.162.224.16-.257.04-.626-.168-.932z"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M7.628-2.858a1.34 1.34 0 0 1-.397-.932c.011-.246.112-.514.47-.402-.113 0-.034.223-.152.245.095.034.224-.044.24-.095.023.079.168.056.18.146.055-.045-.006-.263-.09-.307.061-.034.095-.207.067-.29-.056.01-.14.088-.157.2.028-.09-.005-.313-.161-.346a.3.3 0 0 0 .005.296c-.145-.034-.357.061-.408.184.012-.148.032-.358.123-.491.031-.045-.044-.123-.103-.017-.109-.212-.4-.324-.528-.218s-.301-.05-.407.118-.466.185-.447.362c.011.107-.014.27-.067.33-.128.145.061.251.095.38-.022-.425.653-1.251 1.329-.927-.062.106-.115.318-.134.575-.028.38.028.916.396 1.228z"}),(0,e.jsx)("path",{fill:"#cf142b",stroke:"#000",strokeWidth:.02954238,d:"M7.828-4.187c-.004-.1.17-.231.405-.229.282.003.5.26.725.235s.115.1.067.134c-.047.033-.075.084-.058.145s-.012.102-.103.045c-.201-.126-.403.05-.668-.048-.23-.084-.363-.13-.368-.282z"}),(0,e.jsx)("path",{fill:"#96877d",stroke:"#000",strokeWidth:.02954238,d:"M6.678-1.551c-.112-.352-.536-.737-.743-.827l-.011-.19c.112-.044.38-.256.503-.374.837.402 1.976-.167 2.501-.759l.201.123-.1.134-.106-.056c-.129.156-.608.608-.754.702.196.05.462.084.536.08.469-.335.837-.637 1.016-.66l.15.202-.133.095-.106-.062c-.503.414-1.072 1.318-1.296 1.921-.312-.067-1.43-.022-1.658-.33z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.02954238,d:"M8.17-2.798a1 1 0 0 1-.175-.06c-.089.084-.312.156-.597.168"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.02954238,d:"M6.722-1.674c-.075-.416.045-.877.257-1.016.464.307 1.257.307 1.726-.028"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.02954238,d:"M6.722-1.892c.358-.01 1.134.05 1.324.078s.508.106.463.201M6.887-1.951l.103-.103-.103-.102-.102.102z"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M7.13-4.03c-.128-.18-.482-.236-.558.005-.034.106-.084.218-.168.268-.083.05-.064.203-.027.268.089.162.01.318.184.425 0-.129.19-.263.352-.296.162-.034.407-.179.44-.34.034-.163.09-.297-.223-.33z"}),(0,e.jsx)("path",{fill:"#96877d",stroke:"#000",strokeWidth:.02954238,d:"M6.325-2.422h.045v.305q.016.005.027.014l.263-.152.023.04-.264.152a.1.1 0 0 1 0 .03l.264.153-.023.038-.264-.152a.1.1 0 0 1-.026.016v.304h-.045v-.305a.1.1 0 0 1-.027-.014l-.263.151-.023-.038.264-.154a.1.1 0 0 1 0-.03l-.264-.152.023-.039.265.153a.1.1 0 0 1 .025-.016z"}),(0,e.jsx)("path",{fill:"#96877d",stroke:"#000",strokeWidth:.02954238,d:"M6.724-1.675a.528.528 0 0 1-.905-.373.53.53 0 0 1 .95-.32 1.1 1.1 0 0 0-.061.283.362.362 0 1 0-.36.398.37.37 0 0 0 .353-.27c0 .066.002.226.023.282z"}),(0,e.jsx)("path",{fill:"#337321",stroke:"#000",strokeWidth:.02954238,d:"M6.125-1.171c-.033-.04-.095-.146-.09-.224a.3.3 0 0 1 .19.073c-.005-.056-.027-.179-.016-.235.061.023.19.095.234.179a.8.8 0 0 1-.01-.29c.066.039.178.145.2.217.006-.111.045-.296.078-.34.05.05.129.095.18.162.01-.09.055-.196.122-.224.05.056.128.185.145.33.05-.017.117-.1.145-.145a.3.3 0 0 1 .04.217c.06-.055.133-.134.15-.2a.44.44 0 0 1 .151.206c-.011-.073-.006-.201-.028-.274.084.045.15.123.168.207.022-.078.072-.218.117-.251.044.089.09.195.084.284.027-.055.072-.156.117-.178.039.061.033.195.022.268a.5.5 0 0 1 .157-.145c.005.033.01.1 0 .15.05-.028.134-.178.161-.257.079.04.157.174.162.24a.6.6 0 0 0 .201-.178c0 .039.017.145-.005.229.033-.034.067-.1.084-.129.022.056.005.19-.017.263a.3.3 0 0 1 .167-.073c.006.095-.061.263-.123.386-.536-.151-1.658-.207-2.786-.268z"}),(0,e.jsx)("path",{fill:"#f7e017",d:"M7.994-4.13c-.002-.04.09-.134.254-.133.197.001.38.146.538.136s.08.04.047.054-.053.035-.041.06-.009.041-.072.018c-.141-.051-.282.02-.468-.02-.16-.034-.254-.053-.258-.115"}),(0,e.jsxs)("g",{stroke:"#000",strokeWidth:.186,children:[(0,e.jsx)("g",{fill:"#f7e017",children:(0,e.jsx)("path",{strokeWidth:.02954238,d:"M6.298-.836c-.167.2-.335.167-.368.039-.034-.129.09-.19.044-.302-.044-.112.073-.162.129-.112s.234-.111.313.056c.078.168.14.285.094.352-.044.067-.178.034-.212-.033zM7.018-1.138c-.032-.073.142-.215.231-.114s.23-.11.308.05c.078.159.103.243.142.332.04.09-.212.137-.29.059.01.053-.217.094-.28-.056zM8.18-1.046c-.042-.078.162-.19.268-.047.028-.059.23-.07.243.1.014.17.02.271.025.338s-.122.128-.215-.042c-.164.034-.24-.058-.26-.156s-.038-.145-.06-.193z"})}),(0,e.jsx)("g",{fill:"#337321",children:(0,e.jsx)("path",{strokeWidth:.02954238,d:"M6.406-1.157c-.025-.056.143-.168.257-.084s.273-.073.34.078c.137.304.146.327.104.385-.042.059-.22.036-.265-.044-.009.055-.163.046-.243.002-.092-.05-.157-.237-.193-.337zM7.582-1.144c-.04-.086.223-.161.337-.01.059-.054.187-.057.26.108s.084.257.03.299c-.037.03-.172.053-.217-.022-.062.039-.251.005-.293-.1-.042-.107-.078-.2-.117-.275zM8.693-.979c-.005-.078.137-.114.19 0s.223.012.238.201c.002.036-.02.176-.073.243s-.313 0-.33-.142a4 4 0 0 1-.025-.302z"})}),(0,e.jsx)("g",{fill:"none",children:(0,e.jsx)("path",{strokeWidth:.02954238,d:"M6.298-.836c-.061-.084-.145-.218-.251-.073M6.843-.823a.6.6 0 0 1-.1-.187M7.408-.811a.5.5 0 0 1-.128-.143M7.36-1.104c.097.01.164.103.195.145.03.042.095.117.145.125M7.993-.77c-.034-.053-.067-.1-.075-.14M7.92-1.155a.7.7 0 0 1 .078.131M8.501-.697a.47.47 0 0 0-.173-.193M8.479-1.004c.005.165.226.176.234.293M8.882-.979c.023.042.031.084.034.154"})})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1438.67cdf5fd.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js deleted file mode 100644 index 411bfa460d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 145.7d13ff5f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["145"],{97608(l,i,e){e.r(i),e.d(i,{default:()=>d});var s=e(74848);e(47867);let d=l=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"#28ff09",fillOpacity:14.118,viewBox:"0 0 640 480",...l,children:(0,s.jsxs)("g",{fillOpacity:1,fillRule:"evenodd",children:[(0,s.jsx)("path",{fill:"#fff",d:"M212.875 0h213.95v480h-213.95z"}),(0,s.jsx)("path",{fill:"red",d:"M0 0h212.875v480H0zM425.163 0H640v480H425.163z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/145.7d13ff5f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js deleted file mode 100644 index f9a4661678..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1472.e37f95af.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1472"],{91363(e,s,t){t.r(s),t.d(s,{default:()=>i});var h=t(74848);t(47867);let i=e=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,h.jsx)("path",{fill:"#FCDD09",d:"M0 0h640v480H0z"}),(0,h.jsx)("path",{stroke:"#DA121A",strokeWidth:60,d:"M0 90h810m0 120H0m0 120h810m0 120H0"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1472.e37f95af.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js deleted file mode 100644 index 5f6d2e918b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1553.630acce1.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1553"],{92120(t,s,h){h.r(s),h.d(s,{default:()=>a});var r=h(74848);h(47867);let a=t=>(0,r.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,r.jsx)("defs",{children:(0,r.jsx)("clipPath",{id:"kh_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,r.jsx)("path",{fillOpacity:.67,d:"M-85.333 0h682.67v512h-682.67z"})})}),(0,r.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#kh_inline_svg__a)",transform:"translate(80)scale(.9375)",children:[(0,r.jsx)("path",{fill:"#1b0073",d:"M-128 0h768v512h-768z"}),(0,r.jsx)("path",{fill:"#e60006",d:"M-128 128h768v256h-768z"}),(0,r.jsxs)("g",{fill:"#fff",stroke:"#e60000",children:[(0,r.jsx)("path",{strokeWidth:1.207557,d:"M93.251 248.065h325.473v52.63H93.251z"}),(0,r.jsx)("path",{strokeWidth:1.25,d:"m220 280-5 15h320l-5-15z",transform:"matrix(1.0514 0 0 .82556 -138.285 69.541)"}),(0,r.jsx)("path",{strokeWidth:1.123,d:"m245 280-5 15h60l-5-15z",transform:"matrix(1.27557 0 0 .82556 37.621 69.542)"}),(0,r.jsx)("path",{strokeWidth:1.52,d:"m245 280-5 15h60l-5-15z",transform:"matrix(.64243 0 0 .82556 211.19 69.542)"}),(0,r.jsx)("path",{strokeWidth:2.024,d:"m245 280-5 15h60l-5-15z",transform:"matrix(.4152 0 0 .82556 272.558 69.542)"}),(0,r.jsx)("path",{strokeWidth:1.098,d:"m245 280-5 15h60l-5-15z",transform:"matrix(1.3409 0 0 .82556 -106.058 69.541)"}),(0,r.jsx)("path",{strokeWidth:1.3056065,d:"M91.424 247.27h329.137v12.384H91.424z"}),(0,r.jsx)("path",{strokeWidth:1.2292311,d:"M349.646 248.179h64.506v52.422h-64.506z"}),(0,r.jsx)("path",{strokeWidth:.8308405000000001,d:"M395.79 272.745h6.451v27.852h-6.45zM367.408 272.745h6.45v27.852h-6.45z"}),(0,r.jsx)("path",{strokeWidth:1.554,d:"m245 280-5 15h60l-5-15z",transform:"matrix(.67356 0 0 .82556 73.91 69.541)"}),(0,r.jsx)("path",{strokeWidth:1.956,d:"m245 280-5 15h60l-5-15z",transform:"matrix(.42245 0 0 .82556 141.925 69.541)"}),(0,r.jsx)("path",{strokeWidth:1.2643225,d:"M221.675 248.065h67.968v52.63h-67.968z"}),(0,r.jsx)("path",{strokeWidth:1.0733840000000001,d:"M275.83 272.74h6.45v27.853h-6.45zM230.944 272.738h6.454v27.852h-6.454z"}),(0,r.jsx)("path",{strokeWidth:.980495,d:"M239.53 235.33h32.914v65.352h-32.913z"}),(0,r.jsx)("path",{strokeWidth:1.0733840000000001,d:"M264.219 272.739h6.45v27.852h-6.45zM242.555 272.74h6.455v27.852h-6.455z"}),(0,r.jsx)("path",{strokeWidth:"1pt",d:"m358.18 217.13 13.471 22.98 14.264-22.98z",transform:"matrix(1.0321 0 0 .87371 -128 56.123)"}),(0,r.jsx)("path",{strokeWidth:1.2168459,d:"M375.242 248.065h18.285v65.012h-18.285z"}),(0,r.jsx)("path",{strokeWidth:1.2158138,d:"M378.286 248.065h12.178v65.012h-12.178z"}),(0,r.jsx)("path",{strokeWidth:1.123,d:"m245 280-5 15h60l-5-15z",transform:"matrix(1.27568 0 0 .82556 -215.159 69.542)"}),(0,r.jsx)("path",{strokeWidth:1.637,d:"m245 280-5 15h60l-5-15z",transform:"matrix(.59975 0 0 .82556 -34.228 69.542)"}),(0,r.jsx)("path",{strokeWidth:2.049,d:"m245 280-5 15h60l-5-15z",transform:"matrix(.38267 0 0 .82556 24.297 69.542)"}),(0,r.jsx)("path",{strokeWidth:1.2271669,d:"M96.905 248.065h63.998v52.63H96.905z"}),(0,r.jsx)("path",{strokeWidth:.8308405000000001,d:"M109.383 272.747h6.45V300.6h-6.45zM139.056 272.748h6.45V300.6h-6.45z"}),(0,r.jsx)("path",{strokeWidth:1.2168459,d:"M118.847 248.065h18.286v65.012h-18.286z"}),(0,r.jsx)("path",{strokeWidth:1.2158138,d:"M121.882 248.065h12.177v65.012h-12.177z"}),(0,r.jsx)("path",{strokeWidth:1.3200558999999998,d:"M87.77 235.68h336.445v12.383H87.77z"}),(0,r.jsx)("path",{strokeWidth:"1pt",d:"M187.5 328.56h406.25v17.5H187.5z",transform:"matrix(1.0802 0 0 .9098 -165.977 50.86)"}),(0,r.jsx)("path",{strokeWidth:1.197,d:"M226.25 284.81h327.5v17.5h-327.5z",transform:"matrix(1.0802 0 0 .9098 -165.977 50.86)"}),(0,r.jsx)("path",{strokeWidth:1.215,d:"M221.25 288.56h337.5v17.5h-337.5z",transform:"matrix(1.0802 0 0 .9098 -165.977 50.86)"}),(0,r.jsx)("path",{strokeWidth:"1pt",d:"M187.5 328.56h406.25v17.5H187.5z",transform:"matrix(1.0802 0 0 .9098 -165.977 50.86)"}),(0,r.jsx)("path",{strokeWidth:1.249,d:"M212.5 298.56h356.25v17.5H212.5z",transform:"matrix(1.0802 0 0 .9098 -165.977 50.86)"}),(0,r.jsx)("path",{strokeWidth:1.292,d:"M200 311.06h381.25v17.5H200z",transform:"matrix(1.0802 0 0 .9098 -165.977 50.86)"}),(0,r.jsx)("path",{strokeWidth:1.373,d:"M287.5 283.56h18.75v62.5H287.5z",transform:"matrix(.97521 0 0 .89163 -161.523 57.156)"}),(0,r.jsx)("path",{strokeWidth:1.121,d:"M290.62 283.56h12.5v62.5h-12.5z",transform:"matrix(.97521 0 0 .89163 -161.523 57.156)"}),(0,r.jsx)("path",{strokeWidth:1.373,d:"M287.5 283.56h18.75v62.5H287.5z",transform:"matrix(.97521 0 0 .89163 94.47 57.156)"}),(0,r.jsx)("path",{strokeWidth:1.121,d:"M290.62 283.56h12.5v62.5h-12.5z",transform:"matrix(.97521 0 0 .89163 94.47 57.156)"}),(0,r.jsx)("path",{strokeWidth:1.2395521,d:"M249.233 248.065h14.696v117.64h-14.696z"}),(0,r.jsx)("path",{strokeWidth:"1pt",d:"m217.92 220.3.184-36.915s3.362 7.236 29.512 8.821c24.749-.937 28.848-5.362 29.969-9.284l-1.025 37.515z",transform:"matrix(.97394 0 0 .87371 141.574 56.123)"}),(0,r.jsx)("path",{strokeWidth:3.528,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.428 0 0 .30959 228.657 146.27)"}),(0,r.jsx)("path",{strokeWidth:2.615,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.55638 0 0 .43342 182.114 136.848)"}),(0,r.jsx)("path",{strokeWidth:3.383,d:"M0 280.52c.792 0 30.112 52.301 0 53.093s0-51.508 0-53.093z",transform:"matrix(.40719 0 0 .40808 383.966 46.902)"}),(0,r.jsx)("path",{strokeWidth:5.963,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.32914 0 0 .16252 264.684 154.57)"}),(0,r.jsx)("path",{strokeWidth:8.321,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.16902 0 0 .16252 322.73 157.278)"}),(0,r.jsx)("path",{strokeWidth:5.096,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.33803 0 0 .2167 261.461 154.105)"}),(0,r.jsx)("path",{strokeWidth:5.096,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.33803 0 0 .2167 261.461 159.523)"}),(0,r.jsx)("path",{strokeWidth:3.651,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.3291 0 0 .4334 264.684 130.58)"}),(0,r.jsx)("path",{strokeWidth:3.651,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.3291 0 0 .4334 264.684 141.415)"}),(0,r.jsx)("path",{strokeWidth:3.223,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.33803 0 0 .54176 261.461 135.069)"}),(0,r.jsx)("path",{strokeWidth:4.216,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.32914 0 0 .32505 264.684 180.265)"}),(0,r.jsx)("path",{strokeWidth:3.528,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.428 0 0 .30959 -26.964 143.958)"}),(0,r.jsx)("path",{strokeWidth:2.615,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.55638 0 0 .43342 -73.507 134.534)"}),(0,r.jsx)("path",{strokeWidth:"1pt",d:"m217.92 220.3.184-36.915s3.362 7.236 29.512 8.821c24.749-.937 28.848-5.362 29.969-9.284l-1.025 37.515z",transform:"matrix(.97394 0 0 .87371 -111.857 56.123)"}),(0,r.jsx)("path",{strokeWidth:3.383,d:"M0 280.52c.792 0 30.112 52.301 0 53.093s0-51.508 0-53.093z",transform:"matrix(.40719 0 0 .40808 127.97 46.902)"}),(0,r.jsx)("path",{strokeWidth:5.963,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.32914 0 0 .16252 8.688 154.57)"}),(0,r.jsx)("path",{strokeWidth:8.321,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.16902 0 0 .16252 66.734 157.278)"}),(0,r.jsx)("path",{strokeWidth:5.096,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.33803 0 0 .2167 5.466 154.105)"}),(0,r.jsx)("path",{strokeWidth:5.096,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.33803 0 0 .2167 5.466 159.523)"}),(0,r.jsx)("path",{strokeWidth:3.651,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.3291 0 0 .4334 8.688 130.58)"}),(0,r.jsx)("path",{strokeWidth:3.651,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.3291 0 0 .4334 8.688 141.415)"}),(0,r.jsx)("path",{strokeWidth:3.223,d:"m330.92 208.56-.878-16.666s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334l-.878 16.666z",transform:"matrix(.33803 0 0 .54176 5.466 135.069)"}),(0,r.jsx)("path",{strokeWidth:4.216,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.32914 0 0 .32505 8.688 180.265)"}),(0,r.jsxs)("g",{transform:"translate(-128)scale(1.0321)",children:[(0,r.jsx)("rect",{width:85.039,height:12.898,x:329.53,y:226.28,strokeWidth:1.226,ry:6.449}),(0,r.jsx)("path",{strokeWidth:1.579,d:"m353.24-212.6 1.093-56.693s-3.28 13.906-13.123 13.906H190.29c-9.843 0-13.124-13.906-13.124-13.906l1.093 56.693z",transform:"matrix(.5 0 0 .75 239.17 393.31)"}),(0,r.jsx)("path",{strokeWidth:2.4,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.4 0 0 .57434 194.88 174.23)"}),(0,r.jsx)("path",{strokeWidth:2.19,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.48 0 0 .57434 159.45 186.23)"}),(0,r.jsx)("path",{strokeWidth:6.247,d:"m510.49 70.219.41-25.609s23.557-2.999 20.288-9.332c-3.27-6.333-27.29-18.36-61.81-31.08-24.29-5.905 31.26-26.346-21.07-27.709-48.02.757-5.42 23.318-21.07 28.618-38.84 11.81-69.33 23.838-72.6 30.171-3.27 6.334 20.29 9.332 20.29 9.332l.408 25.61h135.15z",transform:"matrix(.12985 0 0 .26106 314.17 134.08)"}),(0,r.jsx)("path",{strokeWidth:3.152,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.28332 0 0 .46992 246.55 156.75)"}),(0,r.jsx)("path",{strokeWidth:2.877,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.34 0 0 .46992 221.46 166.57)"}),(0,r.jsx)("path",{strokeWidth:4.755,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.18333 0 0 .31908 290.85 149.49)"}),(0,r.jsx)("path",{strokeWidth:4.341,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.22 0 0 .31908 274.61 156.16)"}),(0,r.jsx)("path",{strokeWidth:6.247,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.12985 0 0 .26106 314.53 139.78)"}),(0,r.jsx)("path",{strokeWidth:5.702,d:"m510.49 70.219.41-25.609s23.557-2.998 20.288-9.332c-3.27-6.333-31.604 7.986-31.604 7.986h-113.34s-28.335-14.32-31.604-7.986 20.288 9.332 20.288 9.332l.408 25.609h135.15z",transform:"matrix(.15583 0 0 .26106 303.03 145.24)"}),(0,r.jsx)("path",{strokeWidth:5.444,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.17717 0 0 .17997 307.82 126.336)"}),(0,r.jsx)("path",{strokeWidth:5.444,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.24803 0 0 .17997 282.14 132.335)"}),(0,r.jsx)("path",{strokeWidth:4.41,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.28346 0 0 .23996 269.29 130.316)"}),(0,r.jsx)("path",{strokeWidth:3.528,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.35433 0 0 .29995 243.6 130.697)"}),(0,r.jsx)("path",{strokeWidth:1.458,d:"m358.18 217.13 13.471 22.98 14.264-22.98z",transform:"matrix(.92308 0 0 .67386 28.619 57.554)"}),(0,r.jsx)("path",{strokeWidth:3.051,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.4252 0 0 .33427 217.91 135.867)"}),(0,r.jsx)("path",{strokeWidth:1.25,d:"m358.18 217.13 13.471 22.98 14.264-22.98z",transform:"matrix(1 0 0 .84654 0 37.089)"}),(0,r.jsx)("path",{strokeWidth:2.615,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.46063 0 0 .41993 205.07 135.488)"}),(0,r.jsx)("path",{strokeWidth:2.615,d:"m330.92 208.56-18.42-20.45c6.141-5.303 17.543 3.789 17.543 3.789s6.14-23.485 32.457-33.334c26.316 9.849 32.456 33.334 32.456 33.334s11.403-9.092 17.544-3.789l-18.422 20.455h-63.157z",transform:"matrix(.46063 0 0 .41993 205.07 152.762)"})]}),(0,r.jsx)("g",{strokeWidth:1.04,children:(0,r.jsx)("path",{strokeWidth:1.0733840000000001,d:"M166.5 272.743h6.45v27.852h-6.45zM188.432 272.74h6.45v27.853h-6.45zM178.11 272.74h6.451v27.852h-6.45zM295.305 272.742h6.451v27.852h-6.45zM339.17 272.74h6.45v27.852h-6.45zM317.238 272.739h6.45v27.852h-6.45zM306.917 272.738h6.45v27.852h-6.45zM327.559 272.738h6.45v27.852h-6.45zM210.364 272.742h6.45v27.852h-6.45zM198.753 272.74h6.45v27.852h-6.45z"})})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1553.630acce1.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js deleted file mode 100644 index c50d8d8ff0..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1567.debd0837.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1567"],{44706(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"vu_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsx)("g",{clipPath:"url(#vu_inline_svg__a)",transform:"scale(.9375)",children:(0,e.jsxs)("g",{fillRule:"evenodd",children:[(0,e.jsx)("path",{d:"m0 0 347.415 219.424h420.56v73.142h-420.56L0 511.98V-.003z"}),(0,e.jsx)("path",{fill:"#ff0",d:"m0 493.705 354.733-226.732h413.242v-21.941H354.733L0 18.29V51.2l332.79 204.789L0 460.789V493.7z"}),(0,e.jsx)("path",{fill:"#40aa40",d:"m0 511.984 354.733-226.732h413.242v226.732z"}),(0,e.jsx)("path",{fill:"#ce0000",d:"m0 0 354.733 226.732h413.242V0z"}),(0,e.jsx)("path",{fill:"#ff0",d:"M95.806 266.623c1.227.27 1.55.62 2.766-1.162.261-.897 1.023-2.152 1.686-3.264.887-1.456 1.276-2.04 2.11-.933.54.633 2.69-.534 3.582.078 1.379.917.55.784 1.68-.207.867-1.848.103-1.63-1.12-2.47-.859-.59-3.052.626-3.91.037.3-1.846.888-2.044 1.95-2.403.804.552 3.146-.42 3.87-.404 1.022.214 1.932.327 2.254-1.174.505-1.063.285-.33-.12-1.103-.858-.589-3.051.627-3.91.037-1.115-.844-.931-1.158-.28-2.573.872-.479 1.521-.247 2.599.423 1.109.762 2.856-.718 3.829-.772.875-.995 1.907-1.327 1.255-2.54-.365-.921-.639-1.025-1.84-1.263-1.227-.842-2.826.7-3.293-.56.974-1.395 1.337-1.097 2.518-.312.76.26 3.054-1.1 3.79-1.14 1.092-.316.563.913 1.334-1.805-.267-1.178-2.243.723-3.358.416-1.07.143-1.922-.236-2.023-1.389.016-1.55.785-1.656 1.887-1.426.97.174 3.159-1.031 3.973-1.014 1.159.616 1.526.386 2.438-1.047.673-1.692-.073-.993-1.223-1.86-.858-.59-3.051.626-3.91.037.15-.625.422-1.385 1.007-1.69.846.167 1.574.129 2.639.791 1.047.458 2.772-1.565 3.669-2.243-.17-.964-1.884.408-2.926-.308-.66-.453-1.488-.929-1.695-1.504.591-1.688.303-1.604 1.926-1.058.864-.225 2.328-.212 1.335-1.805-.158-.257-1.013-.166-1.759-.527-.9-.618-1.765-1.24-2.718-1.527-.688-.106-1.687-.328-2.231-.17-.058 1.003.195 1.64.136 2.814.448.732 1.295.75 1.472 1.01-.9.79-1.386.386-2.335.438-1.13-.775-.482-3.18-1.815-2.606.307.706.196 3.375.768 3.928.604.415 1.373.82 1.511 1.378-.96 1.478-1.324 1.395-2.478.68-.964-.662-.66-2.833-1.487-2.722-1.016.767-1.033.732-.823 1.816.054 1.417-.512 3.39.624 4.17 1.367.969 1.54.854.464 2.7-.741.898-1.157.734-2.007.323-.914-.628-.716-2.942-1.423-3.7-1.34-.8-.564-.77-1.68.209-.344 1.256-.094 1.587.465 2.7.454.69.425 3.051 1.2 3.204 1.25.716 1.295.572-.128 1.954-1.117.044-1.597.35-2.454-.665-1.04-.784-.39-3.202-1.712-3.216-1.224.1-1.49.132-1.334 1.805.211 1.472-.336 3.788.848 4.664 1.108.506 1.778.473 2.167 1.147-.345.303-.995 1.24-1.375 1.438-.776.055-1.576-.482-2.455-.665-1.044-.481-.572-1.413-1.407-1.987-.966.313-.983-1.037-1.495.334.198 1.126-.183 2.596.872 3.32.858.59 1.613 1.788 2.47 2.377.985 1.165.599 1.368-.007 3.056-.821.023-1.784-.545-2.678-1.159-.858-.589-.71-2.868-1.568-3.457-.742-.73-.527-1.353-1.679.208-.108 1.107.099 1.187.384 1.964.033 1.131-.27 3.216.769 3.93 1.05.211 2.182.76 3.006 1.043.79.926.103.745-.783 2.183-.557 1.44-.563 1.695-1.439 2.414-.76 1.013-1.06 1.458-.375 2.804"}),(0,e.jsx)("path",{fill:"#ff0",d:"M120.918 267.849c.736-1.195 1.187-1.398.034-3.402-.72-.636-1.568-1.946-2.325-3.096-.984-1.523-1.366-2.17-.016-2.613.796-.321.58-3.07 1.497-3.773 1.39-1.098.938-.27.477-1.866-1.35-1.66-1.454-.762-2.712.202-.883.676-.64 3.49-1.522 4.167-1.576-1.057-1.523-1.76-1.43-3.032.827-.633.866-3.508 1.169-4.27.603-1.001 1.07-1.922-.18-2.864-.775-.96-.19-.434-1.06-.313-.883.676-.64 3.49-1.522 4.167-1.22.847-1.435.526-2.475-.731-.092-1.118.38-1.714 1.423-2.59 1.141-.874.478-3.32.815-4.376-.565-1.327-.46-2.555-1.832-2.347-.991.018-1.195.268-1.891 1.448-1.262.967-.482 3.281-1.826 3.274-.893-1.592-.475-1.859.716-2.8.541-.701.207-3.682.462-4.479.144-1.287 1.062-.233-1.126-2.139-1.188-.187-.23 2.671-.955 3.732-.294 1.194-.982 1.948-2.08 1.594-1.416-.637-1.208-1.496-.558-2.574.546-.96.31-3.767.65-4.624 1.027-.985.962-1.467.01-3.008-1.286-1.391-.941-.319-2.195.555-.883.676-.64 3.491-1.522 4.167-.514-.41-1.104-1.001-1.15-1.745.49-.831.744-1.62 1.776-2.486.837-.929-.333-3.57-.599-4.793-.953-.204-.376 2.164-1.447 2.985-.68.52-1.445 1.209-2.056 1.199-1.314-1.303-1.352-.964-.205-2.47.138-1.006.732-2.556-1.125-2.138-.3.065-.556 1.01-1.184 1.657-.926.709-1.842 1.38-2.484 2.277-.37.688-.973 1.66-1.044 2.3.898.463 1.583.45 2.638.98.85-.182 1.203-1.074 1.513-1.158.367 1.272-.198 1.626-.527 2.654-1.162.89-3.11-.759-3.116.886.771-.044 3.177 1.142 3.913.755.62-.475 1.298-1.131 1.866-1.055.975 1.612.753 1.965-.362 2.904-.992.76-2.864-.43-3.091.492.3 1.385.261 1.39 1.34 1.6 1.322.509 2.908 1.898 4.076 1.003 1.434-1.064 1.398-1.294 2.663.586.53 1.147.214 1.523-.502 2.26-.94.721-2.985-.414-3.962.034-1.268 1.103-.932.29-.477 1.866 1.016.869 1.42.735 2.663.586.815-.206 2.97.769 3.42.007 1.155-1.042 1.04-1.146 1.742.916-.404 1.205-.314 1.837-1.587 2.341-1.134.79-3.095-.865-3.634.532-.395 1.34-.471 1.635 1.126 2.14 1.436.363 3.344 1.87 4.62.962.905-.974 1.141-1.699 1.915-1.842.141.487.742 1.552.772 2.034-.257.847-1.069 1.482-1.587 2.341-.857.918-1.525.043-2.384.701-.097 1.15-1.343.63-.288 1.721 1.113.24 2.31 1.232 3.395.4.882-.675 2.283-.997 3.165-1.673 1.462-.58 1.494-.088 2.803 1.23-.306.88-1.21 1.676-2.13 2.38-.882.677-2.915-.392-3.798.284-.966.496-1.451.02-.477 1.866.973.557 1.13.37 1.956.377 1.052.417 2.845 1.572 3.913.754.612-1.03 1.567-2.013 2.154-2.775 1.165-.47.725.189 1.693 1.704 1.1 1.166 1.332 1.275 1.644 2.493.627 1.21.916 1.708 2.424 1.519"}),(0,e.jsx)("path",{fill:"#ff0",d:"M98.007 314.504c0-5.32-.825-10.639 0-10.639 46.81 0 58.511-31.916 58.511-53.195 0-21.277-16.26-42.554-46.809-42.554-35.108 0-46.81 20.787-46.81 42.554 0 21.278 17.555 37.237 35.108 37.237 23.406 0 29.257-5.32 46.81-26.597-5.851 26.597-35.108 37.237-46.81 37.237-23.405 0-46.809-15.958-46.809-47.875 0-26.596 17.554-53.192 58.514-53.192 35.108 0 58.511 26.597 58.511 53.192 0 37.237-29.256 63.833-70.216 63.833z"})]})})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1567.debd0837.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js deleted file mode 100644 index a7ff73a030..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 157.8615578d.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["157"],{53420(e,l,i){i.r(l),i.d(l,{default:()=>d});var s=i(74848);i(47867);let d=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#de2110",d:"M0 319.997h640V480H0z"}),(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v160.003H0z"}),(0,s.jsx)("path",{fill:"#319400",d:"M0 160.003h640v160.003H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/157.8615578d.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js deleted file mode 100644 index 654d235664..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1612.54f63d68.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1612"],{45671(l,i,s){s.r(i),s.d(i,{default:()=>t});var e=s(74848);s(47867);let t=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"nr_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-54.667 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#nr_inline_svg__a)",transform:"translate(51.25)scale(.9375)",children:[(0,e.jsx)("path",{fill:"#002170",d:"M-140 0H884v512H-140z"}),(0,e.jsx)("path",{fill:"#ffb20d",d:"M-140 234.11H884v43.783H-140z"}),(0,e.jsx)("path",{fill:"#fff",d:"m161.81 437.989-32.916-32.971-10.604 45.363-12.008-45.015-31.875 33.978 12.107-44.989-44.59 13.498 32.972-32.907-45.365-10.613 45.016-12.008L40.56 320.45l44.989 12.108-13.49-44.591 32.907 32.971 10.614-45.364 12.008 45.015 31.866-33.977-12.098 44.988 44.59-13.498-32.98 32.908 45.363 10.613-45.015 12.009 33.987 31.874-44.989-12.108z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1612.54f63d68.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js deleted file mode 100644 index 5c10417de5..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1635.18d9dd0b.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1635"],{49278(e,s,d){d.r(s),d.d(s,{default:()=>l});var i=d(74848);d(47867);let l=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,i.jsx)("path",{d:"M0 0h213.335v479.997H0z"}),(0,i.jsx)("path",{fill:"#ffd90c",d:"M213.335 0H426.67v479.997H213.335z"}),(0,i.jsx)("path",{fill:"#f31830",d:"M426.67 0h213.335v479.997H426.67z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1635.18d9dd0b.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js deleted file mode 100644 index 7f0a97bacd..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1643.b41a359d.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1643"],{87494(s,i,l){l.r(i),l.d(i,{default:()=>t});var e=l(74848);l(47867);let t=s=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"pk_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-52.334 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#pk_inline_svg__a)",transform:"translate(49.063)scale(.9375)",children:[(0,e.jsx)("path",{fill:"#0c590b",d:"M-95 0h768v512H-95z"}),(0,e.jsx)("path",{fill:"#fff",d:"M-95 0H97.52v512H-95z"}),(0,e.jsxs)("g",{fill:"#fff",children:[(0,e.jsx)("path",{d:"m403.702 225.4-31.165-6.556-16.389 27.306-3.395-31.666-31.036-7.15 29.067-13.014-2.791-31.724 21.36 23.622 29.309-12.458-15.865 27.614z"}),(0,e.jsx)("path",{d:"M415.455 306.086c-27.665 60.96-100.277 87.588-161.41 59.27-61.142-28.326-87.777-100.93-59.451-162.071 14.447-31.184 38.089-52.614 71.462-64.31-3.839 3.246-7.637 6.613-11.8 10.908-43.11 44.491-41.99 115.592 2.5 158.699 44.49 43.11 115.592 41.991 158.698-2.5z"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1643.b41a359d.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js deleted file mode 100644 index 95d71c5a8b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1668.120c2fdd.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1668"],{2543(n,t,r){n=r.nmd(n),(function(){var e,u="Expected a function",i="__lodash_hash_undefined__",o="__lodash_placeholder__",f=1/0,a=0/0,c=[["ary",128],["bind",1],["bindKey",2],["curry",8],["curryRight",16],["flip",512],["partial",32],["partialRight",64],["rearg",256]],l="[object Arguments]",s="[object Array]",h="[object Boolean]",p="[object Date]",v="[object Error]",_="[object Function]",g="[object GeneratorFunction]",y="[object Map]",d="[object Number]",b="[object Object]",w="[object Promise]",m="[object RegExp]",x="[object Set]",j="[object String]",A="[object Symbol]",k="[object WeakMap]",O="[object ArrayBuffer]",I="[object DataView]",R="[object Float32Array]",z="[object Float64Array]",E="[object Int8Array]",S="[object Int16Array]",W="[object Int32Array]",L="[object Uint8Array]",C="[object Uint8ClampedArray]",U="[object Uint16Array]",B="[object Uint32Array]",T=/\b__p \+= '';/g,$=/\b(__p \+=) '' \+/g,D=/(__e\(.*?\)|\b__t\)) \+\n'';/g,M=/&(?:amp|lt|gt|quot|#39);/g,F=/[&<>"']/g,N=RegExp(M.source),P=RegExp(F.source),q=/<%-([\s\S]+?)%>/g,Z=/<%([\s\S]+?)%>/g,K=/<%=([\s\S]+?)%>/g,V=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,G=/^\w*$/,H=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,J=/[\\^$.*+?()[\]{}|]/g,Y=RegExp(J.source),Q=/^\s+/,X=/\s/,nn=/\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/,nt=/\{\n\/\* \[wrapped with (.+)\] \*/,nr=/,? & /,ne=/[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g,nu=/[()=,{}\[\]\/\s]/,ni=/\\(\\)?/g,no=/\$\{([^\\}]*(?:\\.[^\\}]*)*)\}/g,nf=/\w*$/,na=/^[-+]0x[0-9a-f]+$/i,nc=/^0b[01]+$/i,nl=/^\[object .+?Constructor\]$/,ns=/^0o[0-7]+$/i,nh=/^(?:0|[1-9]\d*)$/,np=/[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g,nv=/($^)/,n_=/['\n\r\u2028\u2029\\]/g,ng="\\ud800-\\udfff",ny="\\u0300-\\u036f\\ufe20-\\ufe2f\\u20d0-\\u20ff",nd="\\u2700-\\u27bf",nb="a-z\\xdf-\\xf6\\xf8-\\xff",nw="A-Z\\xc0-\\xd6\\xd8-\\xde",nm="\\ufe0e\\ufe0f",nx="\\xac\\xb1\\xd7\\xf7\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf\\u2000-\\u206f \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000",nj="['’]",nA="["+nx+"]",nk="["+ny+"]",nO="["+nb+"]",nI="[^"+ng+nx+"\\d+"+nd+nb+nw+"]",nR="\\ud83c[\\udffb-\\udfff]",nz="[^"+ng+"]",nE="(?:\\ud83c[\\udde6-\\uddff]){2}",nS="[\\ud800-\\udbff][\\udc00-\\udfff]",nW="["+nw+"]",nL="\\u200d",nC="(?:"+nO+"|"+nI+")",nU="(?:"+nW+"|"+nI+")",nB="(?:"+nj+"(?:d|ll|m|re|s|t|ve))?",nT="(?:"+nj+"(?:D|LL|M|RE|S|T|VE))?",n$="(?:"+nk+"|"+nR+")?",nD="["+nm+"]?",nM="(?:"+nL+"(?:"+[nz,nE,nS].join("|")+")"+nD+n$+")*",nF=nD+n$+nM,nN="(?:"+["["+nd+"]",nE,nS].join("|")+")"+nF,nP="(?:"+[nz+nk+"?",nk,nE,nS,"["+ng+"]"].join("|")+")",nq=RegExp(nj,"g"),nZ=RegExp(nk,"g"),nK=RegExp(nR+"(?="+nR+")|"+nP+nF,"g"),nV=RegExp([nW+"?"+nO+"+"+nB+"(?="+[nA,nW,"$"].join("|")+")",nU+"+"+nT+"(?="+[nA,nW+nC,"$"].join("|")+")",nW+"?"+nC+"+"+nB,nW+"+"+nT,"\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])|\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])|\\d+",nN].join("|"),"g"),nG=RegExp("["+nL+ng+ny+nm+"]"),nH=/[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/,nJ=["Array","Buffer","DataView","Date","Error","Float32Array","Float64Array","Function","Int8Array","Int16Array","Int32Array","Map","Math","Object","Promise","RegExp","Set","String","Symbol","TypeError","Uint8Array","Uint8ClampedArray","Uint16Array","Uint32Array","WeakMap","_","clearTimeout","isFinite","parseInt","setTimeout"],nY=-1,nQ={};nQ[R]=nQ[z]=nQ[E]=nQ[S]=nQ[W]=nQ[L]=nQ[C]=nQ[U]=nQ[B]=!0,nQ[l]=nQ[s]=nQ[O]=nQ[h]=nQ[I]=nQ[p]=nQ[v]=nQ[_]=nQ[y]=nQ[d]=nQ[b]=nQ[m]=nQ[x]=nQ[j]=nQ[k]=!1;var nX={};nX[l]=nX[s]=nX[O]=nX[I]=nX[h]=nX[p]=nX[R]=nX[z]=nX[E]=nX[S]=nX[W]=nX[y]=nX[d]=nX[b]=nX[m]=nX[x]=nX[j]=nX[A]=nX[L]=nX[C]=nX[U]=nX[B]=!0,nX[v]=nX[_]=nX[k]=!1;var n0={"\\":"\\","'":"'","\n":"n","\r":"r","\u2028":"u2028","\u2029":"u2029"},n1=parseFloat,n2=parseInt,n3="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g,n8="object"==typeof self&&self&&self.Object===Object&&self,n6=n3||n8||Function("return this")(),n4=t&&!t.nodeType&&t,n9=n4&&n&&!n.nodeType&&n,n5=n9&&n9.exports===n4,n7=n5&&n3.process,tn=function(){try{var n=n9&&n9.require&&n9.require("util").types;if(n)return n;return n7&&n7.binding&&n7.binding("util")}catch(n){}}(),tt=tn&&tn.isArrayBuffer,tr=tn&&tn.isDate,te=tn&&tn.isMap,tu=tn&&tn.isRegExp,ti=tn&&tn.isSet,to=tn&&tn.isTypedArray;function tf(n,t,r){switch(r.length){case 0:return n.call(t);case 1:return n.call(t,r[0]);case 2:return n.call(t,r[0],r[1]);case 3:return n.call(t,r[0],r[1],r[2])}return n.apply(t,r)}function ta(n,t,r,e){for(var u=-1,i=null==n?0:n.length;++u-1}function tp(n,t,r){for(var e=-1,u=null==n?0:n.length;++e-1;);return r}function tB(n,t){for(var r=n.length;r--&&tx(t,n[r],0)>-1;);return r}var tT=tI({À:"A",Á:"A",Â:"A",Ã:"A",Ä:"A",Å:"A",à:"a",á:"a",â:"a",ã:"a",ä:"a",å:"a",Ç:"C",ç:"c",Ð:"D",ð:"d",È:"E",É:"E",Ê:"E",Ë:"E",è:"e",é:"e",ê:"e",ë:"e",Ì:"I",Í:"I",Î:"I",Ï:"I",ì:"i",í:"i",î:"i",ï:"i",Ñ:"N",ñ:"n",Ò:"O",Ó:"O",Ô:"O",Õ:"O",Ö:"O",Ø:"O",ò:"o",ó:"o",ô:"o",õ:"o",ö:"o",ø:"o",Ù:"U",Ú:"U",Û:"U",Ü:"U",ù:"u",ú:"u",û:"u",ü:"u",Ý:"Y",ý:"y",ÿ:"y",Æ:"Ae",æ:"ae",Þ:"Th",þ:"th",ß:"ss",Ā:"A",Ă:"A",Ą:"A",ā:"a",ă:"a",ą:"a",Ć:"C",Ĉ:"C",Ċ:"C",Č:"C",ć:"c",ĉ:"c",ċ:"c",č:"c",Ď:"D",Đ:"D",ď:"d",đ:"d",Ē:"E",Ĕ:"E",Ė:"E",Ę:"E",Ě:"E",ē:"e",ĕ:"e",ė:"e",ę:"e",ě:"e",Ĝ:"G",Ğ:"G",Ġ:"G",Ģ:"G",ĝ:"g",ğ:"g",ġ:"g",ģ:"g",Ĥ:"H",Ħ:"H",ĥ:"h",ħ:"h",Ĩ:"I",Ī:"I",Ĭ:"I",Į:"I",İ:"I",ĩ:"i",ī:"i",ĭ:"i",į:"i",ı:"i",Ĵ:"J",ĵ:"j",Ķ:"K",ķ:"k",ĸ:"k",Ĺ:"L",Ļ:"L",Ľ:"L",Ŀ:"L",Ł:"L",ĺ:"l",ļ:"l",ľ:"l",ŀ:"l",ł:"l",Ń:"N",Ņ:"N",Ň:"N",Ŋ:"N",ń:"n",ņ:"n",ň:"n",ŋ:"n",Ō:"O",Ŏ:"O",Ő:"O",ō:"o",ŏ:"o",ő:"o",Ŕ:"R",Ŗ:"R",Ř:"R",ŕ:"r",ŗ:"r",ř:"r",Ś:"S",Ŝ:"S",Ş:"S",Š:"S",ś:"s",ŝ:"s",ş:"s",š:"s",Ţ:"T",Ť:"T",Ŧ:"T",ţ:"t",ť:"t",ŧ:"t",Ũ:"U",Ū:"U",Ŭ:"U",Ů:"U",Ű:"U",Ų:"U",ũ:"u",ū:"u",ŭ:"u",ů:"u",ű:"u",ų:"u",Ŵ:"W",ŵ:"w",Ŷ:"Y",ŷ:"y",Ÿ:"Y",Ź:"Z",Ż:"Z",Ž:"Z",ź:"z",ż:"z",ž:"z",IJ:"IJ",ij:"ij",Œ:"Oe",œ:"oe",ʼn:"'n",ſ:"s"}),t$=tI({"&":"&","<":"<",">":">",'"':""","'":"'"});function tD(n){return"\\"+n0[n]}function tM(n){return nG.test(n)}function tF(n){var t=-1,r=Array(n.size);return n.forEach(function(n,e){r[++t]=[e,n]}),r}function tN(n,t){return function(r){return n(t(r))}}function tP(n,t){for(var r=-1,e=n.length,u=0,i=[];++r",""":'"',"'":"'"}),tH=function n(t){var r,X,ng,ny,nd=(t=null==t?n6:tH.defaults(n6.Object(),t,tH.pick(n6,nJ))).Array,nb=t.Date,nw=t.Error,nm=t.Function,nx=t.Math,nj=t.Object,nA=t.RegExp,nk=t.String,nO=t.TypeError,nI=nd.prototype,nR=nm.prototype,nz=nj.prototype,nE=t["__core-js_shared__"],nS=nR.toString,nW=nz.hasOwnProperty,nL=0,nC=(r=/[^.]+$/.exec(nE&&nE.keys&&nE.keys.IE_PROTO||""))?"Symbol(src)_1."+r:"",nU=nz.toString,nB=nS.call(nj),nT=n6._,n$=nA("^"+nS.call(nW).replace(J,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),nD=n5?t.Buffer:e,nM=t.Symbol,nF=t.Uint8Array,nN=nD?nD.allocUnsafe:e,nP=tN(nj.getPrototypeOf,nj),nK=nj.create,nG=nz.propertyIsEnumerable,n0=nI.splice,n3=nM?nM.isConcatSpreadable:e,n8=nM?nM.iterator:e,n4=nM?nM.toStringTag:e,n9=function(){try{var n=uh(nj,"defineProperty");return n({},"",{}),n}catch(n){}}(),n7=t.clearTimeout!==n6.clearTimeout&&t.clearTimeout,tn=nb&&nb.now!==n6.Date.now&&nb.now,tb=t.setTimeout!==n6.setTimeout&&t.setTimeout,tI=nx.ceil,tJ=nx.floor,tY=nj.getOwnPropertySymbols,tQ=nD?nD.isBuffer:e,tX=t.isFinite,t0=nI.join,t1=tN(nj.keys,nj),t2=nx.max,t3=nx.min,t8=nb.now,t6=t.parseInt,t4=nx.random,t9=nI.reverse,t5=uh(t,"DataView"),t7=uh(t,"Map"),rn=uh(t,"Promise"),rt=uh(t,"Set"),rr=uh(t,"WeakMap"),re=uh(nj,"create"),ru=rr&&new rr,ri={},ro=uT(t5),rf=uT(t7),ra=uT(rn),rc=uT(rt),rl=uT(rr),rs=nM?nM.prototype:e,rh=rs?rs.valueOf:e,rp=rs?rs.toString:e;function rv(n){if(iG(n)&&!iT(n)&&!(n instanceof rd)){if(n instanceof ry)return n;if(nW.call(n,"__wrapped__"))return u$(n)}return new ry(n)}var r_=function(){function n(){}return function(t){if(!iV(t))return{};if(nK)return nK(t);n.prototype=t;var r=new n;return n.prototype=e,r}}();function rg(){}function ry(n,t){this.__wrapped__=n,this.__actions__=[],this.__chain__=!!t,this.__index__=0,this.__values__=e}function rd(n){this.__wrapped__=n,this.__actions__=[],this.__dir__=1,this.__filtered__=!1,this.__iteratees__=[],this.__takeCount__=0xffffffff,this.__views__=[]}function rb(n){var t=-1,r=null==n?0:n.length;for(this.clear();++t-1},rw.prototype.set=function(n,t){var r=this.__data__,e=rR(r,n);return e<0?(++this.size,r.push([n,t])):r[e][1]=t,this},rm.prototype.clear=function(){this.size=0,this.__data__={hash:new rb,map:new(t7||rw),string:new rb}},rm.prototype.delete=function(n){var t=ul(this,n).delete(n);return this.size-=!!t,t},rm.prototype.get=function(n){return ul(this,n).get(n)},rm.prototype.has=function(n){return ul(this,n).has(n)},rm.prototype.set=function(n,t){var r=ul(this,n),e=r.size;return r.set(n,t),this.size+=+(r.size!=e),this},rx.prototype.add=rx.prototype.push=function(n){return this.__data__.set(n,i),this},rx.prototype.has=function(n){return this.__data__.has(n)};function rO(n,t,r){(e===r||iL(n[t],r))&&(e!==r||t in n)||rS(n,t,r)}function rI(n,t,r){var u=n[t];nW.call(n,t)&&iL(u,r)&&(e!==r||t in n)||rS(n,t,r)}function rR(n,t){for(var r=n.length;r--;)if(iL(n[r][0],t))return r;return -1}function rz(n,t,r,e){return r$(n,function(n,u,i){t(e,n,r(n),i)}),e}function rE(n,t){return n&&eF(t,ov(t),n)}function rS(n,t,r){"__proto__"==t&&n9?n9(n,t,{configurable:!0,enumerable:!0,value:r,writable:!0}):n[t]=r}function rW(n,t){for(var r=-1,u=t.length,i=nd(u),o=null==n;++r=t?n:t)),n}function rC(n,t,r,u,i,o){var f,a=1&t,c=2&t,s=4&t;if(r&&(f=i?r(n,u,i,o):r(n)),e!==f)return f;if(!iV(n))return n;var v=iT(n);if(v){if(k=(w=n).length,T=new w.constructor(k),k&&"string"==typeof w[0]&&nW.call(w,"index")&&(T.index=w.index,T.input=w.input),f=T,!a)return eM(n,f)}else{var w,k,T,$,D,M,F,N,P=u_(n),q=P==_||P==g;if(iF(n))return eC(n,a);if(P==b||P==l||q&&!i){if(f=c||q?{}:uy(n),!a){return c?($=n,D=(N=f)&&eF(n,o_(n),N),eF($,uv($),D)):(M=n,F=rE(f,n),eF(M,up(M),F))}}else{if(!nX[P])return i?n:{};f=function(n,t,r){var e,u,i=n.constructor;switch(t){case O:return eU(n);case h:case p:return new i(+n);case I:return e=r?eU(n.buffer):n.buffer,new n.constructor(e,n.byteOffset,n.byteLength);case R:case z:case E:case S:case W:case L:case C:case U:case B:return eB(n,r);case y:return new i;case d:case j:return new i(n);case m:return(u=new n.constructor(n.source,nf.exec(n))).lastIndex=n.lastIndex,u;case x:return new i;case A:return rh?nj(rh.call(n)):{}}}(n,P,a)}}o||(o=new rj);var Z=o.get(n);if(Z)return Z;o.set(n,f),iX(n)?n.forEach(function(e){f.add(rC(e,t,r,e,n,o))}):iH(n)&&n.forEach(function(e,u){f.set(u,rC(e,t,r,u,n,o))});var K=s?c?ui:uu:c?o_:ov,V=v?e:K(n);return tc(V||n,function(e,u){V&&(e=n[u=e]),rI(f,u,rC(e,t,r,u,n,o))}),f}function rU(n,t,r){var u=r.length;if(null==n)return!u;for(n=nj(n);u--;){var i=r[u],o=t[i],f=n[i];if(e===f&&!(i in n)||!o(f))return!1}return!0}function rB(n,t,r){if("function"!=typeof n)throw new nO(u);return uE(function(){n.apply(e,r)},t)}function rT(n,t,r,e){var u=-1,i=th,o=!0,f=n.length,a=[],c=t.length;if(!f)return a;r&&(t=tv(t,tW(r))),e?(i=tp,o=!1):t.length>=200&&(i=tC,o=!1,t=new rx(t));n:for(;++u0&&r(f)?t>1?rP(f,t-1,r,e,u):t_(u,f):e||(u[u.length]=f)}return u}var rq=eZ(),rZ=eZ(!0);function rK(n,t){return n&&rq(n,t,ov)}function rV(n,t){return n&&rZ(n,t,ov)}function rG(n,t){return ts(t,function(t){return iq(n[t])})}function rH(n,t){t=eS(t,n);for(var r=0,u=t.length;null!=n&&rt}function rX(n,t){return null!=n&&nW.call(n,t)}function r0(n,t){return null!=n&&t in nj(n)}function r1(n,t,r){for(var u=r?tp:th,i=n[0].length,o=n.length,f=o,a=nd(o),c=1/0,l=[];f--;){var s=n[f];f&&t&&(s=tv(s,tW(t))),c=t3(s.length,c),a[f]=!r&&(t||i>=120&&s.length>=120)?new rx(f&&s):e}s=n[0];var h=-1,p=a[0];n:for(;++h=f)return a;return a*("desc"==r[e]?-1:1)}}return n.index-t.index}(n,t,r)});i--;)u[i]=u[i].value;return u}function eo(n,t,r){for(var e=-1,u=t.length,i={};++e-1;)f!==n&&n0.call(f,a,1),n0.call(n,a,1);return n}function ea(n,t){for(var r=n?t.length:0,e=r-1;r--;){var u=t[r];if(r==e||u!==i){var i=u;ub(u)?n0.call(n,u,1):ej(n,u)}}return n}function ec(n,t){return n+tJ(t4()*(t-n+1))}function el(n,t){var r="";if(!n||t<1||t>0x1fffffffffffff)return r;do t%2&&(r+=n),(t=tJ(t/2))&&(n+=n);while(t);return r}function es(n,t){return uS(uO(n,t,oM),n+"")}function eh(n,t,r,u){if(!iV(n))return n;t=eS(t,n);for(var i=-1,o=t.length,f=o-1,a=n;null!=a&&++iu?0:u+t),(r=r>u?u:r)<0&&(r+=u),u=t>r?0:r-t>>>0,t>>>=0;for(var i=nd(u);++e>>1,o=n[i];null!==o&&!i1(o)&&(r?o<=t:o=200){var c=t?null:e4(n);if(c)return tq(c);o=!1,u=tC,a=new rx}else a=t?[]:f;n:for(;++e=u?n:e_(n,t,r)}var eL=n7||function(n){return n6.clearTimeout(n)};function eC(n,t){if(t)return n.slice();var r=n.length,e=nN?nN(r):new n.constructor(r);return n.copy(e),e}function eU(n){var t=new n.constructor(n.byteLength);return new nF(t).set(new nF(n)),t}function eB(n,t){var r=t?eU(n.buffer):n.buffer;return new n.constructor(r,n.byteOffset,n.length)}function eT(n,t){if(n!==t){var r=e!==n,u=null===n,i=n==n,o=i1(n),f=e!==t,a=null===t,c=t==t,l=i1(t);if(!a&&!l&&!o&&n>t||o&&f&&c&&!a&&!l||u&&f&&c||!r&&c||!i)return 1;if(!u&&!o&&!l&&n1?r[i-1]:e,f=i>2?r[2]:e;for(o=n.length>3&&"function"==typeof o?(i--,o):e,f&&uw(r[0],r[1],f)&&(o=i<3?e:o,i=1),t=nj(t);++u-1?i[o?t[f]:f]:e}}function eJ(n){return ue(function(t){var r=t.length,i=r,o=ry.prototype.thru;for(n&&t.reverse();i--;){var f=t[i];if("function"!=typeof f)throw new nO(u);if(o&&!a&&"wrapper"==uf(f))var a=new ry([],!0)}for(i=a?i:r;++i1&&b.reverse(),s&&ca))return!1;var l=o.get(n),s=o.get(t);if(l&&s)return l==t&&s==n;var h=-1,p=!0,v=2&r?new rx:e;for(o.set(n,t),o.set(t,n);++h-1&&n%1==0&&n1?"& ":"")+t[e],t=t.join(r>2?", ":" "),n.replace(nn,"{\n/* [wrapped with "+t+"] */\n")}(o,(e=(i=o.match(nt))?i[1].split(nr):[],u=r,tc(c,function(n){var t="_."+n[0];u&n[1]&&!th(e,t)&&e.push(t)}),e.sort())))}function uL(n){var t=0,r=0;return function(){var u=t8(),i=16-(u-r);if(r=u,i>0){if(++t>=800)return arguments[0]}else t=0;return n.apply(e,arguments)}}function uC(n,t){var r=-1,u=n.length,i=u-1;for(t=e===t?u:t;++r1?n[t-1]:e;return r="function"==typeof r?(n.pop(),r):e,u8(n,r)});function ir(n){var t=rv(n);return t.__chain__=!0,t}function ie(n,t){return t(n)}var iu=ue(function(n){var t=n.length,r=t?n[0]:0,u=this.__wrapped__,i=function(t){return rW(t,n)};return!(t>1)&&!this.__actions__.length&&u instanceof rd&&ub(r)?((u=u.slice(r,+r+ +!!t)).__actions__.push({func:ie,args:[i],thisArg:e}),new ry(u,this.__chain__).thru(function(n){return t&&!n.length&&n.push(e),n})):this.thru(i)}),ii=eN(function(n,t,r){nW.call(n,r)?++n[r]:rS(n,r,1)}),io=eH(uN),ia=eH(uP);function ic(n,t){return(iT(n)?tc:r$)(n,uc(t,3))}function il(n,t){return(iT(n)?function(n,t){for(var r=null==n?0:n.length;r--&&!1!==t(n[r],r,n););return n}:rD)(n,uc(t,3))}var is=eN(function(n,t,r){nW.call(n,r)?n[r].push(t):rS(n,r,[t])}),ih=es(function(n,t,r){var e=-1,u="function"==typeof t,i=iD(n)?nd(n.length):[];return r$(n,function(n){i[++e]=u?tf(t,n,r):r2(n,t,r)}),i}),ip=eN(function(n,t,r){rS(n,r,t)});function iv(n,t){return(iT(n)?tv:en)(n,uc(t,3))}var i_=eN(function(n,t,r){n[+!r].push(t)},function(){return[[],[]]}),ig=es(function(n,t){if(null==n)return[];var r=t.length;return r>1&&uw(n,t[0],t[1])?t=[]:r>2&&uw(t[0],t[1],t[2])&&(t=[t[0]]),ei(n,rP(t,1),[])}),iy=tn||function(){return n6.Date.now()};function id(n,t,r){return t=r?e:t,t=n&&null==t?n.length:t,e5(n,128,e,e,e,e,t)}function ib(n,t){var r;if("function"!=typeof t)throw new nO(u);return n=i9(n),function(){return--n>0&&(r=t.apply(this,arguments)),n<=1&&(t=e),r}}var iw=es(function(n,t,r){var e=1;if(r.length){var u=tP(r,ua(iw));e|=32}return e5(n,e,t,r,u)}),im=es(function(n,t,r){var e=3;if(r.length){var u=tP(r,ua(im));e|=32}return e5(t,e,n,r,u)});function ix(n,t,r){t=r?e:t;var u=e5(n,8,e,e,e,e,e,t);return u.placeholder=ix.placeholder,u}function ij(n,t,r){t=r?e:t;var u=e5(n,16,e,e,e,e,e,t);return u.placeholder=ij.placeholder,u}function iA(n,t,r){var i,o,f,a,c,l,s=0,h=!1,p=!1,v=!0;if("function"!=typeof n)throw new nO(u);function _(t){var r=i,u=o;return i=o=e,s=t,a=n.apply(u,r)}function g(n){var r=n-l,u=n-s;return e===l||r>=t||r<0||p&&u>=f}function y(){var n,r,e,u=iy();if(g(u))return d(u);c=uE(y,(n=u-l,r=u-s,e=t-n,p?t3(e,f-r):e))}function d(n){return(c=e,v&&i)?_(n):(i=o=e,a)}function b(){var n,r=iy(),u=g(r);if(i=arguments,o=this,l=r,u){if(e===c)return s=n=l,c=uE(y,t),h?_(n):a;if(p)return eL(c),c=uE(y,t),_(l)}return e===c&&(c=uE(y,t)),a}return t=i7(t)||0,iV(r)&&(h=!!r.leading,f=(p="maxWait"in r)?t2(i7(r.maxWait)||0,t):f,v="trailing"in r?!!r.trailing:v),b.cancel=function(){e!==c&&eL(c),s=0,i=l=o=c=e},b.flush=function(){return e===c?a:d(iy())},b}var ik=es(function(n,t){return rB(n,1,t)}),iO=es(function(n,t,r){return rB(n,i7(t)||0,r)});function iI(n,t){if("function"!=typeof n||null!=t&&"function"!=typeof t)throw new nO(u);var r=function(){var e=arguments,u=t?t.apply(this,e):e[0],i=r.cache;if(i.has(u))return i.get(u);var o=n.apply(this,e);return r.cache=i.set(u,o)||i,o};return r.cache=new(iI.Cache||rm),r}function iR(n){if("function"!=typeof n)throw new nO(u);return function(){var t=arguments;switch(t.length){case 0:return!n.call(this);case 1:return!n.call(this,t[0]);case 2:return!n.call(this,t[0],t[1]);case 3:return!n.call(this,t[0],t[1],t[2])}return!n.apply(this,t)}}iI.Cache=rm;var iz=es(function(n,t){var r=(t=1==t.length&&iT(t[0])?tv(t[0],tW(uc())):tv(rP(t,1),tW(uc()))).length;return es(function(e){for(var u=-1,i=t3(e.length,r);++u=t}),iB=r3(function(){return arguments}())?r3:function(n){return iG(n)&&nW.call(n,"callee")&&!nG.call(n,"callee")},iT=nd.isArray,i$=tt?tW(tt):function(n){return iG(n)&&rY(n)==O};function iD(n){return null!=n&&iK(n.length)&&!iq(n)}function iM(n){return iG(n)&&iD(n)}var iF=tQ||oX,iN=tr?tW(tr):function(n){return iG(n)&&rY(n)==p};function iP(n){if(!iG(n))return!1;var t=rY(n);return t==v||"[object DOMException]"==t||"string"==typeof n.message&&"string"==typeof n.name&&!iY(n)}function iq(n){if(!iV(n))return!1;var t=rY(n);return t==_||t==g||"[object AsyncFunction]"==t||"[object Proxy]"==t}function iZ(n){return"number"==typeof n&&n==i9(n)}function iK(n){return"number"==typeof n&&n>-1&&n%1==0&&n<=0x1fffffffffffff}function iV(n){var t=typeof n;return null!=n&&("object"==t||"function"==t)}function iG(n){return null!=n&&"object"==typeof n}var iH=te?tW(te):function(n){return iG(n)&&u_(n)==y};function iJ(n){return"number"==typeof n||iG(n)&&rY(n)==d}function iY(n){if(!iG(n)||rY(n)!=b)return!1;var t=nP(n);if(null===t)return!0;var r=nW.call(t,"constructor")&&t.constructor;return"function"==typeof r&&r instanceof r&&nS.call(r)==nB}var iQ=tu?tW(tu):function(n){return iG(n)&&rY(n)==m},iX=ti?tW(ti):function(n){return iG(n)&&u_(n)==x};function i0(n){return"string"==typeof n||!iT(n)&&iG(n)&&rY(n)==j}function i1(n){return"symbol"==typeof n||iG(n)&&rY(n)==A}var i2=to?tW(to):function(n){return iG(n)&&iK(n.length)&&!!nQ[rY(n)]},i3=e3(r7),i8=e3(function(n,t){return n<=t});function i6(n){if(!n)return[];if(iD(n))return i0(n)?tK(n):eM(n);if(n8&&n[n8]){for(var t,r=n[n8](),e=[];!(t=r.next()).done;)e.push(t.value);return e}var u=u_(n);return(u==y?tF:u==x?tq:oj)(n)}function i4(n){return n?(n=i7(n))===f||n===-f?(n<0?-1:1)*17976931348623157e292:n==n?n:0:0===n?n:0}function i9(n){var t=i4(n),r=t%1;return t==t?r?t-r:t:0}function i5(n){return n?rL(i9(n),0,0xffffffff):0}function i7(n){if("number"==typeof n)return n;if(i1(n))return a;if(iV(n)){var t="function"==typeof n.valueOf?n.valueOf():n;n=iV(t)?t+"":t}if("string"!=typeof n)return 0===n?n:+n;n=tS(n);var r=nc.test(n);return r||ns.test(n)?n2(n.slice(2),r?2:8):na.test(n)?a:+n}function on(n){return eF(n,o_(n))}function ot(n){return null==n?"":em(n)}var or=eP(function(n,t){if(uA(t)||iD(t))return void eF(t,ov(t),n);for(var r in t)nW.call(t,r)&&rI(n,r,t[r])}),oe=eP(function(n,t){eF(t,o_(t),n)}),ou=eP(function(n,t,r,e){eF(t,o_(t),n,e)}),oi=eP(function(n,t,r,e){eF(t,ov(t),n,e)}),oo=ue(rW),of=es(function(n,t){n=nj(n);var r=-1,u=t.length,i=u>2?t[2]:e;for(i&&uw(t[0],t[1],i)&&(u=1);++r1),t}),eF(n,ui(n),r),e&&(r=rC(r,7,ut));for(var u=t.length;u--;)ej(r,t[u]);return r}),ob=ue(function(n,t){return null==n?{}:eo(n,t,function(t,r){return ol(n,r)})});function ow(n,t){if(null==n)return{};var r=tv(ui(n),function(n){return[n]});return t=uc(t),eo(n,r,function(n,r){return t(n,r[0])})}var om=e9(ov),ox=e9(o_);function oj(n){return null==n?[]:tL(n,ov(n))}var oA=eV(function(n,t,r){return t=t.toLowerCase(),n+(r?ok(t):t)});function ok(n){return oL(ot(n).toLowerCase())}function oO(n){return(n=ot(n))&&n.replace(np,tT).replace(nZ,"")}var oI=eV(function(n,t,r){return n+(r?"-":"")+t.toLowerCase()}),oR=eV(function(n,t,r){return n+(r?" ":"")+t.toLowerCase()}),oz=eK("toLowerCase"),oE=eV(function(n,t,r){return n+(r?"_":"")+t.toLowerCase()}),oS=eV(function(n,t,r){return n+(r?" ":"")+oL(t)}),oW=eV(function(n,t,r){return n+(r?" ":"")+t.toUpperCase()}),oL=eK("toUpperCase");function oC(n,t,r){if(n=ot(n),t=r?e:t,e===t){var u;return(u=n,nH.test(u))?n.match(nV)||[]:n.match(ne)||[]}return n.match(t)||[]}var oU=es(function(n,t){try{return tf(n,e,t)}catch(n){return iP(n)?n:new nw(n)}}),oB=ue(function(n,t){return tc(t,function(t){rS(n,t=uB(t),iw(n[t],n))}),n});function oT(n){return function(){return n}}var o$=eJ(),oD=eJ(!0);function oM(n){return n}function oF(n){return r9("function"==typeof n?n:rC(n,1))}var oN=es(function(n,t){return function(r){return r2(r,n,t)}}),oP=es(function(n,t){return function(r){return r2(n,r,t)}});function oq(n,t,r){var e=ov(t),u=rG(t,e);null!=r||iV(t)&&(u.length||!e.length)||(r=t,t=n,n=this,u=rG(t,ov(t)));var i=!(iV(r)&&"chain"in r)||!!r.chain,o=iq(n);return tc(u,function(r){var e=t[r];n[r]=e,o&&(n.prototype[r]=function(){var t=this.__chain__;if(i||t){var r=n(this.__wrapped__);return(r.__actions__=eM(this.__actions__)).push({func:e,args:arguments,thisArg:n}),r.__chain__=t,r}return e.apply(n,t_([this.value()],arguments))})}),n}function oZ(){}var oK=e0(tv),oV=e0(tl),oG=e0(td);function oH(n){return um(n)?tO(uB(n)):function(t){return rH(t,n)}}var oJ=e2(),oY=e2(!0);function oQ(){return[]}function oX(){return!1}var o0=eX(function(n,t){return n+t},0),o1=e6("ceil"),o2=eX(function(n,t){return n/t},1),o3=e6("floor"),o8=eX(function(n,t){return n*t},1),o6=e6("round"),o4=eX(function(n,t){return n-t},0);return rv.after=function(n,t){if("function"!=typeof t)throw new nO(u);return n=i9(n),function(){if(--n<1)return t.apply(this,arguments)}},rv.ary=id,rv.assign=or,rv.assignIn=oe,rv.assignInWith=ou,rv.assignWith=oi,rv.at=oo,rv.before=ib,rv.bind=iw,rv.bindAll=oB,rv.bindKey=im,rv.castArray=function(){if(!arguments.length)return[];var n=arguments[0];return iT(n)?n:[n]},rv.chain=ir,rv.chunk=function(n,t,r){t=(r?uw(n,t,r):e===t)?1:t2(i9(t),0);var u=null==n?0:n.length;if(!u||t<1)return[];for(var i=0,o=0,f=nd(tI(u/t));ia?0:a+o),(f=e===f||f>a?a:i9(f))<0&&(f+=a),f=o>f?0:i5(f);o>>0)?(n=ot(n))&&("string"==typeof t||null!=t&&!iQ(t))&&!(t=em(t))&&tM(n)?eW(tK(n),0,r):n.split(t,r):[]},rv.spread=function(n,t){if("function"!=typeof n)throw new nO(u);return t=null==t?0:t2(i9(t),0),es(function(r){var e=r[t],u=eW(r,0,t);return e&&t_(u,e),tf(n,this,u)})},rv.tail=function(n){var t=null==n?0:n.length;return t?e_(n,1,t):[]},rv.take=function(n,t,r){return n&&n.length?e_(n,0,(t=r||e===t?1:i9(t))<0?0:t):[]},rv.takeRight=function(n,t,r){var u=null==n?0:n.length;return u?e_(n,(t=u-(t=r||e===t?1:i9(t)))<0?0:t,u):[]},rv.takeRightWhile=function(n,t){return n&&n.length?ek(n,uc(t,3),!1,!0):[]},rv.takeWhile=function(n,t){return n&&n.length?ek(n,uc(t,3)):[]},rv.tap=function(n,t){return t(n),n},rv.throttle=function(n,t,r){var e=!0,i=!0;if("function"!=typeof n)throw new nO(u);return iV(r)&&(e="leading"in r?!!r.leading:e,i="trailing"in r?!!r.trailing:i),iA(n,t,{leading:e,maxWait:t,trailing:i})},rv.thru=ie,rv.toArray=i6,rv.toPairs=om,rv.toPairsIn=ox,rv.toPath=function(n){return iT(n)?tv(n,uB):i1(n)?[n]:eM(uU(ot(n)))},rv.toPlainObject=on,rv.transform=function(n,t,r){var e=iT(n),u=e||iF(n)||i2(n);if(t=uc(t,4),null==r){var i=n&&n.constructor;r=u?e?new i:[]:iV(n)&&iq(i)?r_(nP(n)):{}}return(u?tc:rK)(n,function(n,e,u){return t(r,n,e,u)}),r},rv.unary=function(n){return id(n,1)},rv.union=u0,rv.unionBy=u1,rv.unionWith=u2,rv.uniq=function(n){return n&&n.length?ex(n):[]},rv.uniqBy=function(n,t){return n&&n.length?ex(n,uc(t,2)):[]},rv.uniqWith=function(n,t){return t="function"==typeof t?t:e,n&&n.length?ex(n,e,t):[]},rv.unset=function(n,t){return null==n||ej(n,t)},rv.unzip=u3,rv.unzipWith=u8,rv.update=function(n,t,r){return null==n?n:eA(n,t,eE(r))},rv.updateWith=function(n,t,r,u){return u="function"==typeof u?u:e,null==n?n:eA(n,t,eE(r),u)},rv.values=oj,rv.valuesIn=function(n){return null==n?[]:tL(n,o_(n))},rv.without=u6,rv.words=oC,rv.wrap=function(n,t){return iE(eE(t),n)},rv.xor=u4,rv.xorBy=u9,rv.xorWith=u5,rv.zip=u7,rv.zipObject=function(n,t){return eR(n||[],t||[],rI)},rv.zipObjectDeep=function(n,t){return eR(n||[],t||[],eh)},rv.zipWith=it,rv.entries=om,rv.entriesIn=ox,rv.extend=oe,rv.extendWith=ou,oq(rv,rv),rv.add=o0,rv.attempt=oU,rv.camelCase=oA,rv.capitalize=ok,rv.ceil=o1,rv.clamp=function(n,t,r){return e===r&&(r=t,t=e),e!==r&&(r=(r=i7(r))==r?r:0),e!==t&&(t=(t=i7(t))==t?t:0),rL(i7(n),t,r)},rv.clone=function(n){return rC(n,4)},rv.cloneDeep=function(n){return rC(n,5)},rv.cloneDeepWith=function(n,t){return rC(n,5,t="function"==typeof t?t:e)},rv.cloneWith=function(n,t){return rC(n,4,t="function"==typeof t?t:e)},rv.conformsTo=function(n,t){return null==t||rU(n,t,ov(t))},rv.deburr=oO,rv.defaultTo=function(n,t){return null==n||n!=n?t:n},rv.divide=o2,rv.endsWith=function(n,t,r){n=ot(n),t=em(t);var u=n.length,i=r=e===r?u:rL(i9(r),0,u);return(r-=t.length)>=0&&n.slice(r,i)==t},rv.eq=iL,rv.escape=function(n){return(n=ot(n))&&P.test(n)?n.replace(F,t$):n},rv.escapeRegExp=function(n){return(n=ot(n))&&Y.test(n)?n.replace(J,"\\$&"):n},rv.every=function(n,t,r){var u=iT(n)?tl:rM;return r&&uw(n,t,r)&&(t=e),u(n,uc(t,3))},rv.find=io,rv.findIndex=uN,rv.findKey=function(n,t){return tw(n,uc(t,3),rK)},rv.findLast=ia,rv.findLastIndex=uP,rv.findLastKey=function(n,t){return tw(n,uc(t,3),rV)},rv.floor=o3,rv.forEach=ic,rv.forEachRight=il,rv.forIn=function(n,t){return null==n?n:rq(n,uc(t,3),o_)},rv.forInRight=function(n,t){return null==n?n:rZ(n,uc(t,3),o_)},rv.forOwn=function(n,t){return n&&rK(n,uc(t,3))},rv.forOwnRight=function(n,t){return n&&rV(n,uc(t,3))},rv.get=oc,rv.gt=iC,rv.gte=iU,rv.has=function(n,t){return null!=n&&ug(n,t,rX)},rv.hasIn=ol,rv.head=uZ,rv.identity=oM,rv.includes=function(n,t,r,e){n=iD(n)?n:oj(n),r=r&&!e?i9(r):0;var u=n.length;return r<0&&(r=t2(u+r,0)),i0(n)?r<=u&&n.indexOf(t,r)>-1:!!u&&tx(n,t,r)>-1},rv.indexOf=function(n,t,r){var e=null==n?0:n.length;if(!e)return -1;var u=null==r?0:i9(r);return u<0&&(u=t2(e+u,0)),tx(n,t,u)},rv.inRange=function(n,t,r){var u,i,o;return t=i4(t),e===r?(r=t,t=0):r=i4(r),(u=n=i7(n))>=t3(i=t,o=r)&&u=-0x1fffffffffffff&&n<=0x1fffffffffffff},rv.isSet=iX,rv.isString=i0,rv.isSymbol=i1,rv.isTypedArray=i2,rv.isUndefined=function(n){return e===n},rv.isWeakMap=function(n){return iG(n)&&u_(n)==k},rv.isWeakSet=function(n){return iG(n)&&"[object WeakSet]"==rY(n)},rv.join=function(n,t){return null==n?"":t0.call(n,t)},rv.kebabCase=oI,rv.last=uH,rv.lastIndexOf=function(n,t,r){var u=null==n?0:n.length;if(!u)return -1;var i=u;return e!==r&&(i=(i=i9(r))<0?t2(u+i,0):t3(i,u-1)),t==t?function(n,t,r){for(var e=r+1;e--&&n[e]!==t;);return e}(n,t,i):tm(n,tA,i,!0)},rv.lowerCase=oR,rv.lowerFirst=oz,rv.lt=i3,rv.lte=i8,rv.max=function(n){return n&&n.length?rF(n,oM,rQ):e},rv.maxBy=function(n,t){return n&&n.length?rF(n,uc(t,2),rQ):e},rv.mean=function(n){return tk(n,oM)},rv.meanBy=function(n,t){return tk(n,uc(t,2))},rv.min=function(n){return n&&n.length?rF(n,oM,r7):e},rv.minBy=function(n,t){return n&&n.length?rF(n,uc(t,2),r7):e},rv.stubArray=oQ,rv.stubFalse=oX,rv.stubObject=function(){return{}},rv.stubString=function(){return""},rv.stubTrue=function(){return!0},rv.multiply=o8,rv.nth=function(n,t){return n&&n.length?eu(n,i9(t)):e},rv.noConflict=function(){return n6._===this&&(n6._=nT),this},rv.noop=oZ,rv.now=iy,rv.pad=function(n,t,r){n=ot(n);var e=(t=i9(t))?tZ(n):0;if(!t||e>=t)return n;var u=(t-e)/2;return e1(tJ(u),r)+n+e1(tI(u),r)},rv.padEnd=function(n,t,r){n=ot(n);var e=(t=i9(t))?tZ(n):0;return t&&et){var u=n;n=t,t=u}if(r||n%1||t%1){var i=t4();return t3(n+i*(t-n+n1("1e-"+((i+"").length-1))),t)}return ec(n,t)},rv.reduce=function(n,t,r){var e=iT(n)?tg:tR,u=arguments.length<3;return e(n,uc(t,4),r,u,r$)},rv.reduceRight=function(n,t,r){var e=iT(n)?ty:tR,u=arguments.length<3;return e(n,uc(t,4),r,u,rD)},rv.repeat=function(n,t,r){return t=(r?uw(n,t,r):e===t)?1:i9(t),el(ot(n),t)},rv.replace=function(){var n=arguments,t=ot(n[0]);return n.length<3?t:t.replace(n[1],n[2])},rv.result=function(n,t,r){t=eS(t,n);var u=-1,i=t.length;for(i||(i=1,n=e);++u0x1fffffffffffff)return[];var r=0xffffffff,e=t3(n,0xffffffff);t=uc(t),n-=0xffffffff;for(var u=tE(e,t);++r=o)return n;var a=r-tZ(u);if(a<1)return u;var c=f?eW(f,0,a).join(""):n.slice(0,a);if(e===i)return c+u;if(f&&(a+=c.length-a),iQ(i)){if(n.slice(a).search(i)){var l,s=c;for(i.global||(i=nA(i.source,ot(nf.exec(i))+"g")),i.lastIndex=0;l=i.exec(s);)var h=l.index;c=c.slice(0,e===h?a:h)}}else if(n.indexOf(em(i),a)!=a){var p=c.lastIndexOf(i);p>-1&&(c=c.slice(0,p))}return c+u},rv.unescape=function(n){return(n=ot(n))&&N.test(n)?n.replace(M,tG):n},rv.uniqueId=function(n){var t=++nL;return ot(n)+t},rv.upperCase=oW,rv.upperFirst=oL,rv.each=ic,rv.eachRight=il,rv.first=uZ,oq(rv,(ny={},rK(rv,function(n,t){nW.call(rv.prototype,t)||(ny[t]=n)}),ny),{chain:!1}),rv.VERSION="4.17.23",tc(["bind","bindKey","curry","curryRight","partial","partialRight"],function(n){rv[n].placeholder=rv}),tc(["drop","take"],function(n,t){rd.prototype[n]=function(r){r=e===r?1:t2(i9(r),0);var u=this.__filtered__&&!t?new rd(this):this.clone();return u.__filtered__?u.__takeCount__=t3(r,u.__takeCount__):u.__views__.push({size:t3(r,0xffffffff),type:n+(u.__dir__<0?"Right":"")}),u},rd.prototype[n+"Right"]=function(t){return this.reverse()[n](t).reverse()}}),tc(["filter","map","takeWhile"],function(n,t){var r=t+1,e=1==r||3==r;rd.prototype[n]=function(n){var t=this.clone();return t.__iteratees__.push({iteratee:uc(n,3),type:r}),t.__filtered__=t.__filtered__||e,t}}),tc(["head","last"],function(n,t){var r="take"+(t?"Right":"");rd.prototype[n]=function(){return this[r](1).value()[0]}}),tc(["initial","tail"],function(n,t){var r="drop"+(t?"":"Right");rd.prototype[n]=function(){return this.__filtered__?new rd(this):this[r](1)}}),rd.prototype.compact=function(){return this.filter(oM)},rd.prototype.find=function(n){return this.filter(n).head()},rd.prototype.findLast=function(n){return this.reverse().find(n)},rd.prototype.invokeMap=es(function(n,t){return"function"==typeof n?new rd(this):this.map(function(r){return r2(r,n,t)})}),rd.prototype.reject=function(n){return this.filter(iR(uc(n)))},rd.prototype.slice=function(n,t){n=i9(n);var r=this;return r.__filtered__&&(n>0||t<0)?new rd(r):(n<0?r=r.takeRight(-n):n&&(r=r.drop(n)),e!==t&&(r=(t=i9(t))<0?r.dropRight(-t):r.take(t-n)),r)},rd.prototype.takeRightWhile=function(n){return this.reverse().takeWhile(n).reverse()},rd.prototype.toArray=function(){return this.take(0xffffffff)},rK(rd.prototype,function(n,t){var r=/^(?:filter|find|map|reject)|While$/.test(t),u=/^(?:head|last)$/.test(t),i=rv[u?"take"+("last"==t?"Right":""):t],o=u||/^find/.test(t);i&&(rv.prototype[t]=function(){var t=this.__wrapped__,f=u?[1]:arguments,a=t instanceof rd,c=f[0],l=a||iT(t),s=function(n){var t=i.apply(rv,t_([n],f));return u&&h?t[0]:t};l&&r&&"function"==typeof c&&1!=c.length&&(a=l=!1);var h=this.__chain__,p=!!this.__actions__.length,v=o&&!h,_=a&&!p;if(!o&&l){t=_?t:new rd(this);var g=n.apply(t,f);return g.__actions__.push({func:ie,args:[s],thisArg:e}),new ry(g,h)}return v&&_?n.apply(this,f):(g=this.thru(s),v?u?g.value()[0]:g.value():g)})}),tc(["pop","push","shift","sort","splice","unshift"],function(n){var t=nI[n],r=/^(?:push|sort|unshift)$/.test(n)?"tap":"thru",e=/^(?:pop|shift)$/.test(n);rv.prototype[n]=function(){var n=arguments;if(e&&!this.__chain__){var u=this.value();return t.apply(iT(u)?u:[],n)}return this[r](function(r){return t.apply(iT(r)?r:[],n)})}}),rK(rd.prototype,function(n,t){var r=rv[t];if(r){var e=r.name+"";nW.call(ri,e)||(ri[e]=[]),ri[e].push({name:t,func:r})}}),ri[eY(e,2).name]=[{name:"wrapper",func:e}],rd.prototype.clone=function(){var n=new rd(this.__wrapped__);return n.__actions__=eM(this.__actions__),n.__dir__=this.__dir__,n.__filtered__=this.__filtered__,n.__iteratees__=eM(this.__iteratees__),n.__takeCount__=this.__takeCount__,n.__views__=eM(this.__views__),n},rd.prototype.reverse=function(){if(this.__filtered__){var n=new rd(this);n.__dir__=-1,n.__filtered__=!0}else n=this.clone(),n.__dir__*=-1;return n},rd.prototype.value=function(){var n=this.__wrapped__.value(),t=this.__dir__,r=iT(n),e=t<0,u=r?n.length:0,i=function(n,t,r){for(var e=-1,u=r.length;++e=this.__values__.length,t=n?e:this.__values__[this.__index__++];return{done:n,value:t}},rv.prototype.plant=function(n){for(var t,r=this;r instanceof rg;){var u=u$(r);u.__index__=0,u.__values__=e,t?i.__wrapped__=u:t=u;var i=u;r=r.__wrapped__}return i.__wrapped__=n,t},rv.prototype.reverse=function(){var n=this.__wrapped__;if(n instanceof rd){var t=n;return this.__actions__.length&&(t=new rd(this)),(t=t.reverse()).__actions__.push({func:ie,args:[uX],thisArg:e}),new ry(t,this.__chain__)}return this.thru(uX)},rv.prototype.toJSON=rv.prototype.valueOf=rv.prototype.value=function(){return eO(this.__wrapped__,this.__actions__)},rv.prototype.first=rv.prototype.head,n8&&(rv.prototype[n8]=function(){return this}),rv}();"function"==typeof define&&"object"==typeof define.amd&&define.amd?(n6._=tH,define(function(){return tH})):n9?((n9.exports=tH)._=tH,n4._=tH):n6._=tH}).call(this)}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js.LICENSE.txt deleted file mode 100644 index a1a64a27f9..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1668.120c2fdd.js.LICENSE.txt +++ /dev/null @@ -1,22 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * @license - * Lodash - * Copyright OpenJS Foundation and other contributors - * Released under MIT license - * Based on Underscore.js 1.8.3 - * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js deleted file mode 100644 index 966ffa538d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1688.4626095c.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1688"],{10315(e,l,h){h.r(l),h.d(l,{default:()=>s});var i=h(74848);h(47867);let s=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#001b9a",d:"M0 162.544h640v160.003H0z"}),(0,i.jsx)("path",{fill:"#e70000",d:"M0 .042h640v82.5H0zM0 400.003h640v80H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1688.4626095c.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js deleted file mode 100644 index eafdb8b364..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js +++ /dev/null @@ -1,112 +0,0 @@ -/*! For license information please see 1693.48c272d7.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1693"],{40144(e,t,n){n.d(t,{T:()=>d});var i=n(47867),l=n(35864),a=n(62059),r=n(63364),s=n(10600),o=n(15155);let d=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{disabled:n=!1,delay:d=300,immediateFields:c=[]}=t,u=(0,o.s)(t.tag),p=(0,r.Lt)(s.K.debouncedFormRegistry),m=(0,i.useMemo)(()=>`${u??"default"}-${(0,a.u)()}`,[u]),h=(0,i.useRef)(e);(0,i.useLayoutEffect)(()=>{h.current=e},[e]);let g=(0,i.useRef)((0,l.debounce)((e,t)=>{h.current(e,t)},d)),v=(0,i.useCallback)((t,i)=>{if(n)return void e(t,i);let l={},a={};Object.entries(t).forEach(e=>{let[t,n]=e;c.includes(t)?l[t]=n:a[t]=n}),Object.keys(l).length>0&&e(l,i),Object.keys(a).length>0&&g.current(a,i)},[e,c]),x=(0,i.useCallback)(()=>{g.current.flush()},[]);return(0,i.useEffect)(()=>{if(!(0,l.isNil)(u)&&!(0,l.isEmpty)(u))return p.register(m,x,u),()=>{p.unregister(m)}},[p,m,x,u]),{handleFormChange:v,flush:x}}},51344(e,t,n){n.d(t,{$$:()=>s,Ox:()=>h,_g:()=>d,cO:()=>p,hx:()=>g,jv:()=>m,rx:()=>o,sR:()=>c});var i=n(46881),l=n(88605),a=n(35864);let r=(0,l.createSlice)({name:"document-editor",initialState:{documentAreablocks:{},timeSliderVisible:{}},reducers:{setDocumentAreablockTypes:(e,t)=>{(0,a.isNil)(e.documentAreablocks[t.payload.documentId])&&(e.documentAreablocks[t.payload.documentId]={}),e.documentAreablocks[t.payload.documentId][t.payload.editableTypeId]=t.payload.areablockTypes},mergeDocumentAreablockTypes:(e,t)=>{(0,a.isNil)(e.documentAreablocks[t.payload.documentId])&&(e.documentAreablocks[t.payload.documentId]={});let n=e.documentAreablocks[t.payload.documentId][t.payload.editableTypeId]??{},i=t.payload.areablockTypes,l={...n};for(let[e,t]of Object.entries(i)){let n=l[e]??[],i=new Set(n.map(e=>`${e.areablockName}:${e.type}`)),a=t.filter(e=>!i.has(`${e.areablockName}:${e.type}`));l[e]=[...n,...a]}e.documentAreablocks[t.payload.documentId][t.payload.editableTypeId]=l},setDocumentTimeSliderVisible:(e,t)=>{e.timeSliderVisible[t.payload.documentId]=t.payload.visible},removeDocument:(e,t)=>{let n=t.payload;if(void 0!==e.documentAreablocks[n]){let{[n]:t,...i}=e.documentAreablocks;e.documentAreablocks=i}if(void 0!==e.timeSliderVisible[n]){let{[n]:t,...i}=e.timeSliderVisible;e.timeSliderVisible=i}},clearAllDocuments:e=>{e.documentAreablocks={},e.timeSliderVisible={}}}}),{setDocumentAreablockTypes:s,mergeDocumentAreablockTypes:o,setDocumentTimeSliderVisible:d,removeDocument:c,clearAllDocuments:u}=r.actions,p=e=>e["document-editor"],m=(0,l.createSelector)([p,(e,t)=>t],(e,t)=>{let n=e.documentAreablocks[t]??{};return(0,a.mergeWith)({},...Object.values(n),(e,t)=>{if((0,a.isArray)(e))return e.concat(t)})}),h=(0,l.createSelector)([p,(e,t)=>t],(e,t)=>e.timeSliderVisible[t]??!1),g=(0,l.createSelector)([m],e=>Object.keys(e).length>0);(0,l.createSelector)([m],e=>Object.values(e).flat()),r.reducer,(0,i.injectSliceWithState)(r)},42984(e,t,n){n.d(t,{S:()=>d});var i=n(47867),l=n(41630),a=n(15789),r=n(15156),s=n(59208),o=n(51344);let d=()=>{let e=(0,i.useContext)(a.T),{document:t}=(0,r.S)(e.id),n=(0,l.GV)(o.cO),d=(0,s.h)(null==t?void 0:t.type);return(0,i.useMemo)(()=>d.getVisibleEntries(e),[d,e,n])}},19680(e,t,n){n.d(t,{Z:()=>o});var i=n(47867),l=n(35864),a=n(7334),r=n(34231),s=n(46766);let o=e=>{let{versionId:t,isSkip:n=!1}=e,{id:o}=(0,a.J)(),{data:d,isLoading:c}=(0,s.P5)({id:o},{skip:n}),[u,p]=(0,i.useState)(null);return(0,i.useEffect)(()=>{(0,l.isEmpty)(d)||p(`${r.W}${null==d?void 0:d.fullPath}?pimcore_version=${t}`)},[t,d]),{isLoading:c,url:u}}},7763(e,t,n){n.d(t,{l:()=>r});var i=n(31635),l=n(94392),a=n(62446);class r extends l.e{}r=(0,i.Cg)([(0,a.injectable)()],r)},59208(e,t,n){n.d(t,{h:()=>l});var i=n(63364);let l=e=>{var t;let n;return i.kL.get((n=(t=e??"page").charAt(0).toUpperCase()+t.slice(1),`Document/Editor/Sidebar/${n}SidebarManager`))}},58946(e,t,n){n.d(t,{s:()=>l});var i=n(49606);let l=e=>(0,i.B)(e,"settings")},49606(e,t,n){n.d(t,{B:()=>s});var i=n(41630),l=n(29376),a=n(79472),r=n(35864);let s=(e,t)=>{try{let n=i.M_.getState(),s=(0,l.ei)(n,e.id);if((0,r.isNil)(null==s?void 0:s.permissions))return!1;return(0,a.o)(s.permissions,t)}catch(e){return console.warn(`Could not check document permission '${t}':`,e),!1}}},34717(e,t,n){n.d(t,{N:()=>r});var i=n(31635),l=n(57064),a=n(62446);class r extends l.F{constructor(){super(),this.type="email"}}r=(0,i.Cg)([(0,a.injectable)(),(0,i.Sn)("design:type",Function),(0,i.Sn)("design:paramtypes",[])],r)},83361(e,t,n){n.d(t,{c:()=>r});var i=n(31635),l=n(57064),a=n(62446);class r extends l.F{constructor(){super(),this.type="hardlink"}}r=(0,i.Cg)([(0,a.injectable)(),(0,i.Sn)("design:type",Function),(0,i.Sn)("design:paramtypes",[])],r)},16295(e,t,n){n.d(t,{N:()=>r});var i=n(31635),l=n(57064),a=n(62446);class r extends l.F{constructor(){super(),this.type="link"}}r=(0,i.Cg)([(0,a.injectable)(),(0,i.Sn)("design:type",Function),(0,i.Sn)("design:paramtypes",[])],r)},46733(e,t,n){n.d(t,{_:()=>r});var i=n(31635),l=n(57064),a=n(62446);class r extends l.F{constructor(){super(),this.type="page"}}r=(0,i.Cg)([(0,a.injectable)(),(0,i.Sn)("design:type",Function),(0,i.Sn)("design:paramtypes",[])],r)},73389(e,t,n){n.d(t,{C:()=>r});var i=n(31635),l=n(57064),a=n(62446);class r extends l.F{constructor(){super(),this.type="snippet"}}r=(0,i.Cg)([(0,a.injectable)(),(0,i.Sn)("design:type",Function),(0,i.Sn)("design:paramtypes",[])],r)},80707(e,t,n){n.d(t,{o:()=>c,u:()=>d});var i=n(47867),l=n(35864),a=n(63364),r=n(10600),s=n(77060),o=n(58333);let d=function(e,t,n){let d=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},c=a.kL.get(r.K["Document/ProcessorRegistry/UrlProcessor"]);return(0,i.useMemo)(()=>{try{if((0,l.isNil)(n)||""===n)return"";let i=new o.m(e,t,n,d);c.executeProcessors(i);let a=new URL(n,window.location.origin);return Object.entries(i.getParams()).forEach(e=>{let[t,n]=e;a.searchParams.set(t,n)}),(0,s.Z)(a.toString())}catch(e){return console.warn("Failed to process URL:",e),""}},[e,t,n,d])},c=(e,t,n,a,r)=>d(e,"preview",t,(0,i.useMemo)(()=>({pimcore_preview:"true",pimcore_studio_preview:"true",...!(0,l.isNil)(a)&&""!==a?{forceDeviceType:a}:{},...!(0,l.isNil)(r)?{pimcore_override_output_timestamp:r.toString()}:{}}),[n,a,r]))},58333(e,t,n){n.d(t,{I:()=>s,m:()=>r});var i=n(31635),l=n(62446),a=n(32234);class r{addParam(e,t){this.parameters[e]=t}getParams(){return{...this.parameters}}constructor(e,t,n,i={}){this.documentId=e,this.processorType=t,this.baseUrl=n,this.parameters={...i}}}class s extends a.k{}s=(0,i.Cg)([(0,l.injectable)()],s)},92472(e,t,n){n.d(t,{Z:()=>r,c:()=>a});var i=n(81674),l=n(24755);let a=(e,t)=>({id:e.id.toString(),elementType:l.W.document,icon:(0,i.Ip)(e,{type:"name",value:"document"}),label:e.key,type:e.type,parentId:e.parentId.toString(),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,isPublished:e.published,isSite:e.isSite,metaData:{document:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`}),r=(e,t,n)=>{let i=[];return t.items.forEach(t=>{i.push(a(t,e))}),{nodes:i,total:t.totalItems??n}}},37858(e,t,n){n.d(t,{FH:()=>l,VC:()=>a,Xi:()=>s,nT:()=>o,vi:()=>r});var i=n(53996);let l=n(16939).FH.enhanceEndpoints({addTagTypes:[i.nP.ASSET_DETAIL,i.nP.DATA_OBJECT_DETAIL,i.nP.DOCUMENT_DETAIL],endpoints:{propertyGetCollectionForElementByTypeAndId:{providesTags:(e,t,n)=>{var l;let a=[];return null==e||null==(l=e.items)||l.forEach(e=>{a.push(...i.yc.PROPERTY_DETAIL(e.key))}),[...a,...i.yc.ELEMENT_PROPERTIES(n.elementType,n.id)]}},propertyGetCollection:{providesTags:(e,t,n)=>{var l;let a=[];return null==e||null==(l=e.items)||l.forEach(e=>{a.push(...i.yc.PROPERTY_DETAIL(e.key))}),[...a,...i.yc.GLOBAL_PROPERTIES()]}},propertyUpdate:{invalidatesTags:(e,t,n)=>i.qN.PROPERTY_DETAIL(n.id)},propertyDelete:{invalidatesTags:(e,t,n)=>i.qN.PROPERTY_DETAIL(n.id)}}}),{usePropertyGetCollectionQuery:a,usePropertyGetCollectionForElementByTypeAndIdQuery:r,usePropertyUpdateMutation:s,usePropertyDeleteMutation:o}=l},16939(e,t,n){n.d(t,{FH:()=>i,VC:()=>l,Xi:()=>r,gu:()=>a,nT:()=>s});let i=n(53073).api.enhanceEndpoints({addTagTypes:["Properties"]}).injectEndpoints({endpoints:e=>({propertyGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/properties",params:{elementType:e.elementType,filter:e.filter}}),providesTags:["Properties"]}),propertyCreate:e.mutation({query:()=>({url:"/pimcore-studio/api/property",method:"POST"}),invalidatesTags:["Properties"]}),propertyUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/properties/${e.id}`,method:"PUT",body:e.updatePredefinedProperty}),invalidatesTags:["Properties"]}),propertyDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/properties/${e.id}`,method:"DELETE"}),invalidatesTags:["Properties"]}),propertyGetCollectionForElementByTypeAndId:e.query({query:e=>({url:`/pimcore-studio/api/properties/${e.elementType}/${e.id}`}),providesTags:["Properties"]})}),overrideExisting:!1}),{usePropertyGetCollectionQuery:l,usePropertyCreateMutation:a,usePropertyUpdateMutation:r,usePropertyDeleteMutation:s,usePropertyGetCollectionForElementByTypeAndIdQuery:o}=i},43240(e,t,n){n.d(t,{I:()=>i});let i=(0,n(44241).createStyles)(e=>{let{token:t,css:n}=e;return{headerContainer:n` - position: sticky; - top: 0; - width: 100%; - z-index: 999999999; - - &::before { - content: ''; - position: absolute; - top: -15px; - bottom: 0; - width: 100%; - height: 20px; - background-color: #fff; - z-index: -1; - } - `,headerItem:n` - flex: 1 1 50%; - padding: ${t.paddingXS}px; - background-color: ${t.Table.headerBg}; - border: 0.5px solid ${t.Table.colorBorderSecondary}; - border-top-width: 0; - box-shadow: 0 2px 4px 0 rgba(35, 11, 100, .2); - - &:first-child { - border-right: 0; - } - - &:last-child { - border-left: 0; - } - - &:only-child { - flex: 1 1 100%; - border-right: 0.5px; - border-left: 0.5px; - } - `,content:n` - position: relative; - min-width: 220px; - `,emptyState:n` - margin-top: 40px; - max-width: 200px; - text-align: center; - `,switchContainer:n` - position: absolute; - top: 10px; - right: ${t.paddingXS}px; - z-index: 1; - `}})},85668(e,t,n){n.d(t,{B:()=>o});var i=n(47867),l=n(62059),a=n(37858),r=n(7334),s=n(33142);let o=e=>{var t;let{elementType:n,id:o}=(0,r.J)(),{element:d,setProperties:c}=(0,s.D)(o,n),{data:u,isLoading:p,isFetching:m}=(0,a.vi)({elementType:n,id:o},{skip:null==e?void 0:e.skip});return(0,i.useEffect)(()=>{var e;void 0!==u&&!m&&(null==d||null==(e=d.changes)?void 0:e.properties)===void 0&&Array.isArray(u.items)&&c(u.items.map(e=>({...e,rowId:(0,l.u)()})))},[u,null==d||null==(t=d.changes)?void 0:t.properties,m]),{data:u,isLoading:p}}},94392(e,t,n){n.d(t,{e:()=>i});class i{getEntries(){return this.entries}getVisibleEntries(e){return this.entries.filter(t=>{if(void 0===t.isVisible)return!0;try{return t.isVisible(e)}catch(e){return console.warn(`Error checking visibility for sidebar entry "${t.key}":`,e),!1}})}getEntry(e){return this.entries.find(t=>t.key===e)}registerEntry(e){void 0!==this.getEntry(e.key)?this.entries.splice(this.entries.findIndex(t=>t.key===e.key),1,e):this.entries.push(e)}getButtons(){return this.buttons}getButton(e){return this.buttons.find(t=>t.key===e)}registerButton(e){void 0!==this.getButton(e.key)?this.buttons.splice(this.buttons.findIndex(t=>t.key===e.key),1,e):this.buttons.push(e)}constructor(){this.entries=[],this.buttons=[]}}},44395(e,t,n){n.d(t,{F:()=>k,a:()=>w});var i,l=n(74848),a=n(46881),r=n(59385),s=n(81898),o=n(55638),d=n(79472),c=n(17388),u=n(35864),p=n(47867),m=n(21429),h=n(75023),g=n(86569),v=n(57231),x=n(80632),b=n(75091),y=n(13755),f=n(43565),j=n(25085);let k=((i={}).FULL="full",i.KEY_ONLY="key-only",i),w=e=>{let{type:t,iconValue:n,contextMenuKey:i,formType:w,modalTitle:C,hasNoChildren:I}=e,{t:T}=(0,m.useTranslation)(),{data:S,isLoading:N,error:_}=(0,h.BZ)({}),{openDocument:D}=(0,b.$)(),[E]=(0,h.Tw)(),P=(0,a.useAppDispatch)(),{isTreeActionAllowed:V}=(0,c.H)(),{modal:$}=g.App.useApp(),F=(0,f.Vl)(),[A]=v.lV.useForm(),B=(0,p.useRef)(null),L=e=>{let i=[];if(N)return[{key:"add-document-loading",type:"custom",component:(0,l.jsx)(y.t,{type:"classic"})}];if(!(0,u.isUndefined)(_)||(0,u.isNil)(S)||(0,u.isEmpty)(S.items))return i;let a=[...S.items].filter(e=>e.type===t).sort((e,t)=>e.name.localeCompare(t.name)).reduce((e,t)=>{let n=(0,u.isNil)(t.group)||(0,u.isEmpty)(t.group)?"undefined":t.group;return void 0===e[n]&&(e[n]=[]),e[n].push(t),e},{});for(let[n,r]of(void 0!==a.undefined&&(i=a.undefined.map(t=>M(t,e))),Object.entries(a)))"undefined"!==n&&i.push({label:T(n),key:"add-document-group-"+t+n,icon:(0,l.jsx)(s.I,{value:"folder"}),children:r.map(t=>M(t,e))});return i.push({label:`> ${T("blank")}`,key:"blank"+t,icon:(0,l.jsx)(s.I,{subIconName:"new",subIconVariant:"green",value:n}),onClick:()=>{O(null,Number.parseInt(e.id))}}),i},M=(e,t)=>({label:T(e.name),key:e.id,icon:(0,l.jsx)(s.I,{subIconName:"new",subIconVariant:"green",value:n}),onClick:()=>{O(e,Number.parseInt(t.id))}}),U=e=>{let{form:t,firstInputRef:n,buttonId:i}=e,a=()=>{let e=document.getElementById(i);(0,u.isNull)(e)||e.disabled||e.click()};return(0,l.jsxs)(v.lV,{form:t,initialValues:{title:"",navigationName:"",key:""},layout:"vertical",children:[(0,l.jsx)(v.lV.Item,{label:T("add-document-form.label.title"),name:"title",children:(0,l.jsx)(x.p,{onChange:e=>{let n=e.target.value;t.setFieldsValue({title:n,navigationName:n,key:n})},onPressEnter:a,ref:n})}),(0,l.jsx)(v.lV.Item,{label:T("add-document-form.label.navigation"),name:"navigationName",children:(0,l.jsx)(x.p,{onPressEnter:a})}),(0,l.jsx)(v.lV.Item,{label:T("add-document-form.label.key"),name:"key",rules:[{required:!0,message:T("form.validation.required")}],children:(0,l.jsx)(x.p,{onPressEnter:a})})]})},O=(e,t)=>{if(w===k.KEY_ONLY)F.input({title:C,label:T("form.label.new-item"),rule:{required:!0,message:T("form.validation.required")},onOk:async n=>{await R((0,u.isNil)(e)?null:e.id,n,n,n,t)}});else{A.resetFields();let n=async()=>{await A.validateFields().then(async()=>{let n=A.getFieldsValue(),i=n.title,l=n.navigationName,a=n.key;await R((0,u.isNil)(e)?null:e.id,a,i,l,t)})},i=(0,j.uuid)();$.confirm({icon:null,title:C,content:(0,l.jsx)(U,{buttonId:i,firstInputRef:B,form:A}),modalRender:e=>(null!==B.current&&B.current.focus(),e),okButtonProps:{id:i},onOk:async()=>{await n()}})}},R=async(e,n,i,l,a)=>{let s=E({parentId:a,documentAddParameters:{key:n,type:t,title:i,navigationName:l,docTypeId:e,language:null,translationsSourceId:null,inheritanceSourceId:null,template:null}});try{let e=await s;if((0,u.isUndefined)(e.error)){if(!(0,u.isUndefined)(e.data)){let{id:t}=e.data;D({config:{id:t}}),P((0,r.refreshNodeChildren)({nodeId:String(a),elementType:"document"}))}}else(0,o.Ay)(new o.hD(e.error))}catch{(0,o.Ay)(new o.$g("Error creating document"))}};return{addDocumentTreeContextMenuItem:a=>{let r={label:T(`document.tree.context-menu.add-${t}`),key:i,icon:(0,l.jsx)(s.I,{value:n}),hidden:!V(e.perspectiveTreePermission)||!(0,d.o)(a.permissions,"create")||(0,u.isEmpty)(L(a))};return!0===I?{...r,onClick:()=>{O(null,Number.parseInt(a.id))}}:{...r,children:L(a)}}}}},68851(e,t,n){n.d(t,{j:()=>h});var i=n(74848),l=n(21429),a=n(81898),r=n(47867),s=n(79472),o=n(41630),d=n(75023),c=n(35864),u=n(68153),p=n(17388),m=n(55638);let h=()=>{let{t:e}=(0,l.useTranslation)(),[t,n]=(0,r.useState)(!1),h=(0,o.jL)(),{isTreeActionAllowed:g}=(0,p.H)(),v=async(e,t)=>{n(!0);let{data:i,error:l}=await h(d.FH.endpoints.documentGetById.initiate({id:e}));if((0,c.isUndefined)(l)||((0,m.Ay)(new m.hD(l)),n(!1)),!(0,c.isNil)(null==i?void 0:i.settingsData)&&(0,c.has)(null==i?void 0:i.settingsData,"url")&&(0,c.isString)(null==i?void 0:i.settingsData.url)){let e=i.settingsData.url;window.open(e),null==t||t()}else(0,c.isNil)(null==i?void 0:i.fullPath)?console.error("Failed to fetch document data",i):(window.open(i.fullPath),null==t||t());n(!1)},x=(e,t)=>!(0,s.o)(e.permissions,"view")||((0,c.isNil)(null==t?void 0:t.preview)||!(null==t?void 0:t.preview))&&["snippet","newsletter","folder","link","hardlink","email"].includes(e.type)||!(0,c.isNil)(null==t?void 0:t.preview)&&t.preview&&["folder","link","hardlink"].includes(e.type);return{openInNewWindow:v,openInNewWindowTreeContextMenuItem:t=>({label:e("document.open-in-new-window"),key:"openInNewWindow",icon:(0,i.jsx)(a.I,{value:"share"}),hidden:"page"!==t.type||!(0,s.o)(t.permissions,"view")||!g(u.o.Open),onClick:async()=>{await v(parseInt(t.id))}}),openInNewWindowContextMenuItem:(n,l)=>({label:e("document.open-in-new-window"),key:"openInNewWindow",isLoading:t,icon:(0,i.jsx)(a.I,{value:"share"}),hidden:x(n),onClick:async()=>{await v(n.id,l)}}),openPreviewInNewWindowContextMenuItem:(t,n,l)=>({label:e("document.open-preview-in-new-window"),key:"openPreviewInNewWindow",icon:(0,i.jsx)(a.I,{value:"eye"}),hidden:x(t,{preview:!0}),onClick:()=>{window.open(n),null==l||l()}})}}},85709(e,t,n){n.d(t,{D:()=>s.SaveTaskType,W:()=>u});var i=n(47867),l=n(35864),a=n(15789),r=n(15156),s=n(33487),o=n(58042),d=n(46881),c=n(59385);let u=()=>{let{id:e}=(0,i.useContext)(a.T),{document:t}=(0,r.S)(e),n=(0,d.useAppDispatch)(),[u,p]=(0,i.useState)(!1),[m,h]=(0,i.useState)(!1),[g,v]=(0,i.useState)(!1),[x,b]=(0,i.useState)();return{save:async(i,l)=>{if((null==t?void 0:t.changes)!==void 0)try{var a,r,d;if(p(!0),v(!1),b(void 0),h(!1),await o.Gy.saveDocument(e,i),i!==s.SaveTaskType.AutoSave&&(null==t||null==(a=t.changes)?void 0:a.properties)){let i=!!(null==t||null==(d=t.properties)||null==(r=d.find(e=>"navigation_exclude"===e.key))?void 0:r.data);n((0,c.setDocumentNodeNavigationExclude)({nodeId:String(e),navigationExclude:i}))}h(!0),null==l||l()}catch(e){throw console.error("Save failed:",e),v(!0),b(e),e}finally{p(!1)}},debouncedAutoSave:(0,i.useCallback)((0,l.debounce)(()=>{o.Gy.saveDocument(e,s.SaveTaskType.AutoSave).catch(console.error)},500),[e]),isLoading:u,isSuccess:m,isError:g,error:x}}},9503(e,t,n){n.d(t,{Ds:()=>z,eY:()=>W,wR:()=>q,ck:()=>Y});var i=n(74848),l=n(47867),a=n(81898),r=n(78868),s=n(21429),o=n(53405),d=n(15789),c=n(51344),u=n(41630),p=n(64756),m=n(68258);let h=(0,n(44241).createStyles)(e=>{let{token:t,css:n}=e;return{collapsibleContainer:n` - width: 100%; - `,gridContainer:n` - display: grid; - grid-template-columns: 1fr 1fr; - gap: ${t.marginXS}px; - width: 100%; - align-items: stretch; - `}});var g=n(35864),v=n(16907),x=n(78120),b=n(7814),y=n(18196);let f=e=>{let{type:t,globalIndex:n}=e,{t:l}=(0,s.useTranslation)(),a=((e,t)=>{if((0,y.uI)(e))if(e.includes("."))return{type:"path",value:e};else return{type:"name",value:e};return{type:"name",value:"area-brick"}})(t.icon,0),r={type:"areablock-type",icon:a,title:l(t.name),data:{areablockType:t.type,sourceType:"sidebar"}};return(0,i.jsx)(v.s,{info:r,children:(0,i.jsx)(b.m,{title:(0,g.isUndefined)(t.description)?void 0:l(t.description),children:(0,i.jsx)(x.N,{icon:a,label:l(t.name)})})})};var j=n(33099);let k=()=>{let{t:e}=(0,s.useTranslation)(),{id:t}=(0,l.useContext)(d.T),{styles:n}=h(),a=Object.entries((0,u.GV)(e=>(0,c.jv)(e,t)));if(1===a.length&&a[0][0]===j.ZV){let[,e]=a[0];return(0,i.jsx)(p.a,{className:n.gridContainer,padding:{x:"extra-small",bottom:"small"},children:e.map((e,t)=>(0,i.jsx)(f,{globalIndex:t,type:e},`${e.areablockName}-${e.type}`))})}return(0,i.jsx)(p.a,{className:n.collapsibleContainer,padding:{x:"extra-small"},children:a.map((t,l)=>{let[r,s]=t,o=0;return a.slice(0,l).forEach(e=>{let[,t]=e;o+=t.length}),(0,i.jsx)(m.Z,{border:!1,collapsed:!1,contentPadding:"extra-small",theme:"card-with-highlight",title:e(r),children:(0,i.jsx)(p.a,{className:n.gridContainer,children:s.map((e,t)=>{let n=o+t;return(0,i.jsx)(f,{globalIndex:n,type:e},`${e.areablockName}-${e.type}`)})})},r)})})};var w=n(43588),C=n(85668),I=n(8255),T=n(57231),S=n(80632),N=n(1993),_=n(18848),D=n(86646),E=n(15156),P=n(85709),V=n(62059),$=n(79472),F=n(40144),A=n(26962);let B=e=>{let{initialValues:t}=e,{t:n}=(0,s.useTranslation)(),{id:a}=(0,l.useContext)(d.T),{properties:r,updateProperty:o,addProperty:c,document:u}=(0,E.S)(a),{debouncedAutoSave:p}=(0,P.W)(),m=(0,$.o)(null==u?void 0:u.permissions,"save")||(0,$.o)(null==u?void 0:u.permissions,"publish"),h=e=>(0,g.isNull)(r)||(0,g.isUndefined)(r)?void 0:r.find(t=>t.key===e),v=(0,l.useCallback)((e,t)=>{let n=h(e);if((0,g.isUndefined)(n)||(0,g.isNull)(n)){let n="navigation_exclude"===e?"bool":"text";c({key:e,type:n,data:t,inherited:!1,inheritable:!1,predefinedName:"Custom",rowId:(0,V.u)()})}else o(e,{...n,data:t,inherited:!1,inheritable:!1});p()},[h,o,c,p]),x=(0,l.useCallback)(e=>{m&&Object.entries(e).forEach(e=>{let[t,n]=e;v(t,n)})},[v,m]),{handleFormChange:b}=(0,F.T)(x,{delay:500,immediateFields:["navigation_exclude","navigation_target"],tag:(0,A.n)(a)});return(0,i.jsxs)(I.L,{formProps:{initialValues:t,onValuesChange:b,layout:"vertical"},children:[(0,i.jsx)(T.lV.Item,{label:n("navigation.name"),name:"navigation_name",children:(0,i.jsx)(S.p,{disabled:!m})}),(0,i.jsx)(T.lV.Item,{label:n("link.title"),name:"navigation_title",children:(0,i.jsx)(S.p,{disabled:!m})}),(0,i.jsx)(T.lV.Item,{label:n("link.target"),name:"navigation_target",children:(0,i.jsx)(N.l,{disabled:!m,options:[{label:n("link.not-set"),value:""},{label:"_self",value:"_self"},{label:"_blank",value:"_blank"},{label:"_parent",value:"_parent"},{label:"_top",value:"_top"}]})}),(0,i.jsx)(T.lV.Item,{name:"navigation_exclude",valuePropName:"checked",children:(0,i.jsx)(_.d,{disabled:!m,labelRight:n("navigation.exclude")})}),(0,i.jsx)(T.lV.Item,{label:n("link.rel"),name:"navigation_relation",children:(0,i.jsx)(S.p,{disabled:!m})}),(0,i.jsx)(D.j,{marginBottom:"none",withBorder:!0,children:n("navigation.advanced-settings")}),(0,i.jsx)(T.lV.Item,{label:n("link.class"),name:"navigation_class",children:(0,i.jsx)(S.p,{disabled:!m})}),(0,i.jsx)(T.lV.Item,{label:n("link.anchor"),name:"navigation_anchor",children:(0,i.jsx)(S.p,{disabled:!m})}),(0,i.jsx)(T.lV.Item,{label:n("link.parameters"),name:"navigation_parameters",children:(0,i.jsx)(S.p,{disabled:!m})}),(0,i.jsx)(T.lV.Item,{label:n("link.accesskey"),name:"navigation_accesskey",children:(0,i.jsx)(S.p,{disabled:!m})}),(0,i.jsx)(T.lV.Item,{label:n("link.tabindex"),name:"navigation_tabindex",children:(0,i.jsx)(S.p,{disabled:!m})})]})};var L=n(46766),M=n(71141),U=n(57489);let O=e=>{var t;let{documentId:n,documentType:a,initialValues:r,apiData:o,hasSavePermission:d=!0}=e,{t:c}=(0,s.useTranslation)(),{updateSettingsData:u,document:p}=(0,E.S)(n),{debouncedAutoSave:m}=(0,P.W)(),[h]=T.lV.useForm(),v={...r,staticGeneratorLifetime:r.staticGeneratorLifetime??null},{controllers:x,templates:b,predefinedDocTypes:y}=o,f=(0,l.useMemo)(()=>[...x.map(e=>({value:e.name,label:e.name}))],[x]),j=(0,l.useMemo)(()=>[...b.map(e=>({value:e.path,label:e.path}))],[b]),k=(0,l.useMemo)(()=>[...y.map(e=>({value:e.id,label:e.name??e.id}))],[y]),w=(0,l.useCallback)((e,t)=>{if(!d)return;let n={};if("predefinedDocumentType"in e&&!(0,g.isNil)(e.predefinedDocumentType)){let i=y.find(t=>t.id===e.predefinedDocumentType);(0,g.isNil)(i)||(h.setFieldsValue({...t,controller:i.controller??"",template:i.template??""}),n.controller=i.controller??"",n.template=i.template??"")}Object.entries(e).forEach(e=>{let[t,i]=e;"predefinedDocumentType"!==t&&(n[t]=i??null)}),Object.keys(n).length>0&&(u(n),m())},[u,m,y,h,d]),{handleFormChange:C}=(0,F.T)(w,{delay:500,immediateFields:["predefinedDocumentType","staticGeneratorEnabled"],tag:(0,A.n)(n)}),S=(0,l.useMemo)(()=>{var e;let t=null==p||null==(e=p.settingsData)?void 0:e.staticLastGenerated;return(0,i.jsxs)("span",{children:[c("document-configuration.last-generated",{timestamp:(0,g.isNil)(t)?c("never"):""}),!(0,g.isNil)(t)&&(0,i.jsx)(U.Q,{timestamp:t})]})},[null==p||null==(t=p.settingsData)?void 0:t.staticLastGenerated]);return(0,i.jsxs)(I.L,{formProps:{form:h,initialValues:v,onValuesChange:C},children:[(0,i.jsx)(T.lV.Item,{label:c("document-configuration.predefined-document-type"),name:"predefinedDocumentType",children:(0,i.jsx)(N.l,{allowClear:!0,disabled:!d,options:k,popupMatchSelectWidth:!1,showSearch:!0})}),(0,i.jsx)(T.lV.Item,{label:c("document-configuration.controller"),name:"controller",children:(0,i.jsx)(N.l,{allowClear:!0,disabled:!d,options:f,popupMatchSelectWidth:!1,showSearch:!0})}),(0,i.jsx)(T.lV.Item,{label:c("document-configuration.template"),name:"template",children:(0,i.jsx)(N.l,{allowClear:!0,disabled:!d,options:j,popupMatchSelectWidth:!1,showSearch:!0})}),"page"===a&&(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(D.j,{marginBottom:"none",withBorder:!0,children:c("document-configuration.static-page-generator")}),(0,i.jsx)(T.lV.Item,{name:"staticGeneratorEnabled",valuePropName:"checked",children:(0,i.jsx)(_.d,{disabled:!d,labelRight:c("document-configuration.enable-server-side-static-rendering")})}),(0,i.jsx)(T.lV.Item,{extra:S,label:c("document-configuration.lifetime-for-static-page"),name:"staticGeneratorLifetime",children:(0,i.jsx)(M.Y,{disabled:!d,min:1,step:1})})]})]})};var R=n(49606),G=n(58946);let W={key:"areablock-types",icon:(0,i.jsx)(a.I,{value:"new"}),component:(0,i.jsx)(()=>{let{t:e}=(0,s.useTranslation)();return(0,i.jsxs)(w.Content,{children:[(0,i.jsx)(o.F,{withBorder:!0,children:e("add-areas")}),(0,i.jsx)(k,{})]})},{}),tooltip:"add-areas",isVisible:e=>{try{let t=u.M_.getState();return(0,c.hx)(t,e.id)}catch(e){return console.warn("Could not check areablock types visibility:",e),!1}}},z={key:"content-settings",icon:(0,i.jsx)(a.I,{value:"content-settings"}),component:(0,i.jsx)(r.z,{}),tooltip:"content-settings",isVisible:G.s},Y={key:"navigation",icon:(0,i.jsx)(a.I,{value:"navigation"}),component:(0,i.jsx)(()=>{let{t:e}=(0,s.useTranslation)(),{data:t,isLoading:n}=(0,C.B)(),a=(0,l.useMemo)(()=>{let e=e=>{var n;let i=null==t||null==(n=t.items)?void 0:n.find(t=>t.key===e);return null==i?void 0:i.data};return{navigation_name:e("navigation_name")??"",navigation_title:e("navigation_title")??"",navigation_target:e("navigation_target")??"",navigation_exclude:e("navigation_exclude")??!1,navigation_relation:e("navigation_relation")??"",navigation_class:e("navigation_class")??"",navigation_anchor:e("navigation_anchor")??"",navigation_parameters:e("navigation_parameters")??"",navigation_accesskey:e("navigation_accesskey")??"",navigation_tabindex:e("navigation_tabindex")??""}},[null==t?void 0:t.items]),r=!n&&!(0,g.isUndefined)(t);return(0,i.jsxs)(w.Content,{loading:!r,children:[(0,i.jsx)(o.F,{withBorder:!0,children:e("navigation.sidebar-title")}),(0,i.jsx)(p.a,{padding:{x:"extra-small",bottom:"small"},children:(0,i.jsx)(B,{initialValues:a})})]})},{}),tooltip:"navigation.sidebar-title",isVisible:e=>(0,R.B)(e,"properties")},q={key:"document-configuration",icon:(0,i.jsx)(a.I,{value:"document-configurations"}),component:(0,i.jsx)(()=>{let{t:e}=(0,s.useTranslation)(),t=(0,l.useContext)(d.T),{id:n}=t,{document:a}=(0,E.S)(n),r=(0,R.B)(t,"save")||(0,R.B)(t,"publish"),{data:c,isLoading:u}=(0,L.XS)(void 0,{refetchOnMountOrArgChange:!0}),{data:m,isLoading:h}=(0,L.$P)(void 0,{refetchOnMountOrArgChange:!0}),{data:v,isLoading:x}=(0,L.BZ)({type:(null==a?void 0:a.type)??"page"},{refetchOnMountOrArgChange:!0}),b=(0,l.useMemo)(()=>{let e=(null==a?void 0:a.settingsData)??{};return{predefinedDocumentType:"",controller:(null==e?void 0:e.controller)??"",template:(null==e?void 0:e.template)??"",staticGeneratorEnabled:(null==e?void 0:e.staticGeneratorEnabled)??!1,staticGeneratorLifetime:(null==e?void 0:e.staticGeneratorLifetime)??null}},[null==a?void 0:a.settingsData]),y=!(0,g.isUndefined)(a)&&!u&&!h&&!x,f={controllers:(null==c?void 0:c.items)??[],templates:(null==m?void 0:m.items)??[],predefinedDocTypes:(null==v?void 0:v.items)??[]};return(0,i.jsxs)(w.Content,{loading:!y,children:[(0,i.jsx)(o.F,{withBorder:!0,children:e("document-configuration.sidebar-title")}),(0,i.jsx)(p.a,{padding:{x:"extra-small",bottom:"small"},children:y&&(0,i.jsx)(O,{apiData:f,documentId:n,documentType:null==a?void 0:a.type,hasSavePermission:r,initialValues:b})})]})},{}),tooltip:"document-configuration.sidebar-title",isVisible:G.s}},47605(e,t,n){n.d(t,{tr:()=>J,qW:()=>q,to:()=>Y});var i=n(74848),l=n(47867),a=n.n(l),r=n(81898),s=n(15789),o=n(15156),d=n(21429),c=n(7391),u=n(46096),p=n(35864),m=n(80707),h=n(10883),g=n(91206),v=n(59208),x=n(42984),b=n(41630),y=n(51344),f=n(75240),j=n(64756),k=n(27994),w=n(26280),C=n(7652);let I=()=>{let{t:e}=(0,d.useTranslation)(),{deleteDraft:t,isLoading:n,buttonText:a}=(0,C.K)("document"),{id:c}=(0,l.useContext)(s.T),{document:u}=(0,o.S)(c);if((0,p.isNil)(u))return(0,i.jsx)(i.Fragment,{});let m=null==u?void 0:u.draftData;if((0,p.isNil)(m)||u.changes[w.u0])return(0,i.jsx)(i.Fragment,{});let h=(0,i.jsx)(k.$,{danger:!0,ghost:!0,loading:n,onClick:t,size:"small",children:a});return(0,i.jsx)(j.a,{padding:"extra-small",children:(0,i.jsx)(f.F,{action:h,icon:(0,i.jsx)(r.I,{value:"draft"}),message:e(m.isAutoSave?"draft-alert-auto-save":"draft-alert"),showIcon:!0,type:"info"})})};var T=n(5576),S=n(25750),N=n(22014),_=n(53636),D=n(43240),E=n(19224);let P=e=>{let{versionsIdList:t,versionUrl:n}=e,{t:a}=(0,d.useTranslation)(),{styles:r}=(0,D.I)(),{height:s}=(0,_.A)(E.W),o=(0,l.useRef)(null);return(0,l.useEffect)(()=>{(0,p.isNull)(n)||(0,p.isNull)(o.current)||o.current.reload()},[n]),(0,i.jsxs)(S.s,{style:{height:s,minWidth:"100%"},vertical:!0,children:[(0,i.jsx)(S.s,{className:r.headerContainer,wrap:"wrap",children:t.map((e,t)=>(0,i.jsx)(S.s,{className:r.headerItem,children:(0,i.jsxs)(N.E,{children:[a("version.version")," ",e]})},`${t}-${e}`))}),(0,i.jsx)(S.s,{className:r.content,flex:1,children:!(0,p.isNull)(n)&&(0,i.jsx)(c.v,{ref:o,src:n})})]})};var V=n(18196),$=n(34231),F=n(19680),A=n(39808),B=n(7334),L=n(82740),M=n(96940),U=n(27820),O=n(23610),R=n(11354),G=n(92203);let W=e=>{var t,n;let{id:a}=e,{t:r}=(0,d.useTranslation)(),[s,u]=(0,l.useState)(Date.now()),{document:h}=(0,o.S)(a),v=(0,l.useRef)(null),x=(0,l.useRef)(null),{width:f,height:j}=(0,_.A)(x),k=(0,L.A)(null==(t=v.current)?void 0:t.getElementRef(),!0),w=(0,G.Z)(),[C,I]=(0,l.useState)({device:"desktop"}),[T,N]=(0,l.useState)(),D=(0,b.GV)(e=>(0,y.Ox)(e,a));(0,l.useEffect)(()=>{k&&u(Date.now())},[null==h||null==(n=h.draftData)?void 0:n.modificationDate,k]);let E=e=>{if(null!=e.width&&f>0&&f-100&&j-10{E({device:"desktop"})},children:r("preview.desktop")}),(0,i.jsx)(U.J,{icon:{value:"tablet"},onClick:()=>{E({device:"tablet",width:1024,height:768})},children:r("preview.tablet")}),(0,i.jsx)(U.J,{icon:{value:"phone"},onClick:()=>{E({device:"phone",width:375,height:667})},children:r("preview.phone-vertical")}),(0,i.jsx)(U.J,{icon:{value:"phone-horizontal"},onClick:()=>{E({device:"phone-horizontal",width:667,height:375})},children:r("preview.phone-horizontal")})]}),D&&(0,i.jsx)(R.l,{onChange:e=>{"string"==typeof e?N(Math.floor(new Date(e).getTime()/1e3)):N(void 0)},outputFormat:"YYYY-MM-DD HH:mm",outputType:"dateString",placeholder:r("preview.select_date_time"),showSuffixIcon:!0,showTime:!0,value:T})]})}),children:(0,i.jsx)("div",{ref:x,style:{width:"100%",height:"100%",display:"flex",overflow:"auto"},children:(0,i.jsx)(c.v,{ref:v,src:V,style:$,title:`${r("preview.label")}-${a}`})})})};var z=n(79472);let Y={key:"edit",label:"edit.label",children:(0,i.jsx)(()=>{let{id:e}=(0,l.useContext)(s.T),{document:t}=(0,o.S)(e),{t:n}=(0,d.useTranslation)(),r=(0,l.useRef)(null),f=(0,b.jL)(),j=(0,v.h)(null==t?void 0:t.type).getButtons(),k=(0,x.S)(),w=(0,l.useCallback)(()=>{var t;let n=null==(t=r.current)?void 0:t.getIframeElement();if(!(0,p.isNil)(n))try{let{document:t}=(0,u.qH)();t.registerIframe(e,n,r)}catch(e){console.warn("Could not register iframe:",e)}},[e]),C=(0,l.useMemo)(()=>({pimcore_editmode:"true",pimcore_studio:"true",documentId:e.toString()}),[e]),T=(0,m.u)(e,"edit",(null==t?void 0:t.fullPath)??"",C);return a().useEffect(()=>()=>{try{let{document:t}=(0,u.qH)();t.unregisterIframe(e)}catch(e){console.warn("Could not unregister iframe:",e)}f((0,y.sR)(e))},[e,f]),(0,i.jsx)(g.s,{renderSidebar:k.length>0?(0,i.jsx)(h.B,{buttons:j,entries:k,sizing:"medium",translateTooltips:!0}):void 0,renderTopBar:(0,i.jsx)(I,{}),children:(0,i.jsx)(c.v,{onLoad:w,preserveScrollOnReload:!0,ref:r,src:T,title:`${n("edit.label")}-${e}`,useExternalReadyState:!0})})},{}),icon:(0,i.jsx)(r.I,{value:"edit-pen"}),isDetachable:!1,hidden:e=>!(0,z.o)(e.permissions,"save")&&!(0,z.o)(e.permissions,"publish")},q={key:"versions",label:"version.label",children:(0,i.jsx)(T.m,{ComparisonViewComponent:e=>{var t,n;let{versionIds:a}=e,[r,s]=(0,l.useState)(null),o=a.map(e=>e.count),d=null==a||null==(t=a[0])?void 0:t.id,c=null==a||null==(n=a[1])?void 0:n.id,{url:u}=(0,F.Z)({versionId:d});return(0,l.useEffect)(()=>{(0,V.Po)(c)?s(u):s(`${$.W}/pimcore-studio/api/documents/diff-versions/from/${d}/to/${c}`)},[a,u]),(0,i.jsx)(P,{versionUrl:r,versionsIdList:o})},SingleViewComponent:e=>{let{versionId:t}=e,{isLoading:n,url:l}=(0,F.Z)({versionId:t.id});return n?(0,i.jsx)(A.U,{fullPage:!0,loading:!0}):(0,i.jsx)(P,{versionUrl:l,versionsIdList:[t.count]})}}),icon:(0,i.jsx)(r.I,{value:"history"}),isDetachable:!0,hidden:e=>!(0,z.o)(e.permissions,"versions")},J={key:"preview",label:"preview.label",children:(0,i.jsx)(()=>{let{id:e}=(0,B.J)(),{id:t}=(0,l.useContext)(s.T),{document:n}=(0,o.S)(t),a=(0,v.h)(null==n?void 0:n.type).getButtons(),r=(0,x.S)();return(0,z.o)(null==n?void 0:n.permissions,"save")||(0,z.o)(null==n?void 0:n.permissions,"publish")?(0,i.jsx)(W,{id:e}):(0,i.jsx)(g.s,{renderSidebar:r.length>0?(0,i.jsx)(h.B,{buttons:a,entries:r,sizing:"medium",translateTooltips:!0}):void 0,children:(0,i.jsx)(W,{id:e})})},{}),icon:(0,i.jsx)(r.I,{value:"preview"}),isDetachable:!0}},78868(e,t,n){n.d(t,{z:()=>A});var i=n(74848),l=n(47867),a=n.n(l),r=n(21429),s=n(53405),o=n(43588),d=n(64756),c=n(15789),u=n(15156),p=n(35864),m=n(85668),h=n(49606),g=n(8255),v=n(57231),x=n(80632),b=n(28083),y=n(1993),f=n(86646),j=n(25750),k=n(32930),w=n(59446),C=n(18037),I=n(85709),T=n(40144),S=n(62059),N=n(26962),_=n(43565),D=n(46766),E=n(40036),P=n(55638),V=n(572);let $=e=>{var t,n,s,d;let{documentId:c,initialValues:m,hasPropertiesPermission:h=!0,hasSavePermission:$=!0,allowedContentMainDocumentTypes:F,enableTitleDescription:A,enablePrettyUrl:B}=e,{t:L}=(0,r.useTranslation)(),M=(0,w.t)(),{getDisplayName:U}=(0,C.W)(),{document:O,updateSettingsData:R,updateProperty:G,addProperty:W,properties:z}=(0,u.S)(c),{debouncedAutoSave:Y}=(0,I.W)(),q=(0,_.Vl)(),[J,{isLoading:Z,error:H}]=(0,D.em)(),{refreshElement:K}=(0,E.d)("document");a().useEffect(()=>{(0,p.isUndefined)(H)||(0,P.Ay)(new P.hD(H))},[H]);let X=(0,l.useRef)(null),Q=(0,l.useRef)(null),ee=(e,t)=>{(0,p.isNull)(e.current)||(0,p.isUndefined)(e.current)||(e.current.textContent=`(${t})`)},et=(0,p.isNull)(z)||(0,p.isUndefined)(z)?void 0:z.find(e=>"language"===e.key&&!e.inherited),en=(0,l.useCallback)((e,t)=>{if(!$)return;let{language:n,contentMainDocument:i,...l}=e;(0,p.isUndefined)(n)||((0,p.isUndefined)(et)||(0,p.isNull)(et)?W({key:"language",type:"text",data:n,inherited:!1,inheritable:!0,predefinedName:"Custom",rowId:(0,S.u)()}):G("language",{...et,data:n,inherited:!1})),(0,p.isUndefined)(i)||(l.contentMainDocumentId=(null==i?void 0:i.id)??null,l.contentMainDocumentPath=(null==i?void 0:i.fullPath)??null),Object.keys(l).length>0&&R(l),Y()},[R,et,G,W,Y,$]),{handleFormChange:ei}=(0,T.T)(en,{delay:500,immediateFields:["language","contentMainDocument"],tag:(0,N.n)(c)}),el=[{value:"",label:L("none")},...(null==(t=M.validLanguages)?void 0:t.map(e=>({value:e,label:U(e)})))??[]],ea=e=>""===e.value||(0,p.isUndefined)(e.value)||(0,p.isNull)(e.value)?(0,i.jsx)("span",{children:e.label}):(0,i.jsxs)(j.s,{align:"center",gap:"extra-small",children:[(0,i.jsx)(k.i,{value:(0,p.isUndefined)(e.value)||(0,p.isNull)(e.value)?"":String(e.value)}),(0,i.jsx)("span",{children:e.label})]});return(0,i.jsxs)(g.L,{formProps:{initialValues:m,onValuesChange:ei},children:[((null==O?void 0:O.type)==="page"||!0===A)&&(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(v.lV.Item,{label:(0,i.jsxs)("span",{children:[L("title")," ",(0,i.jsxs)("span",{ref:X,children:["(",(null==(n=m.title)?void 0:n.length)??0,")"]})]}),name:"title",rules:[{max:255,message:L("form.validation.max-length",{max:255})}],children:(0,i.jsx)(x.p,{disabled:!$,onChange:e=>{ee(X,e.target.value.length)}})}),(0,i.jsx)(v.lV.Item,{label:(0,i.jsxs)("span",{children:[L("description")," ",(0,i.jsxs)("span",{ref:Q,children:["(",(null==(s=m.description)?void 0:s.length)??0,")"]})]}),name:"description",rules:[{max:350,message:L("form.validation.max-length",{max:350})}],children:(0,i.jsx)(b.f,{autoSize:{minRows:3,maxRows:8},disabled:!$,onChange:e=>{ee(Q,e.target.value.length)}})})]}),h&&(0,i.jsx)(v.lV.Item,{label:(null==O?void 0:O.type)==="page"||!0===A?(0,i.jsx)(f.j,{asFormLabel:!0,withBorder:!0,children:L("language")}):L("language"),name:"language",children:(0,i.jsx)(y.l,{disabled:!$,labelRender:e=>ea(e),optionRender:e=>ea(e),options:el,showSearch:!0})}),((null==O?void 0:O.type)==="page"||!0===B)&&(0,i.jsx)(v.lV.Item,{extra:L("pretty-url-override-notice"),label:(0,i.jsx)(f.j,{asFormLabel:!0,withBorder:!0,children:L("pretty-url")}),name:"prettyUrl",children:(0,i.jsx)(x.p,{disabled:!$})}),(!(0,p.isUndefined)(F)||(null==O?void 0:O.type)==="page"||(null==O?void 0:O.type)==="snippet")&&(0,i.jsxs)(i.Fragment,{children:[(0,i.jsx)(v.lV.Item,{label:(0,i.jsx)(f.j,{asFormLabel:!0,withBorder:!0,children:L("content-main-document")}),name:"contentMainDocument",children:(0,i.jsx)(V.h1,{allowElementTagClose:!0,allowedDocumentTypes:F??["page","snippet"],disabled:!$,documentsAllowed:!0,enableSearch:!0})}),(0,p.isNil)(null==O||null==(d=O.settingsData)?void 0:d.contentMainDocumentPath)?null:(0,i.jsx)(o.Button,{loading:Z,onClick:()=>{var e;let t=null==O||null==(e=O.settingsData)?void 0:e.contentMainDocumentPath;(0,p.isNull)(t)||(0,p.isUndefined)(t)||q.confirm({title:L("content-main-document.apply-warning-title"),content:L("content-main-document.apply-warning-message"),onOk:async()=>{let{data:e}=await J({id:c,changeMainDocument:{mainDocumentPath:t}});(0,p.isUndefined)(e)||K(c)}})},type:"default",children:L("content-main-document.apply")})]})]})};var F=n(24755);let A=function(){var e;let{...t}=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},{t:n}=(0,r.useTranslation)(),a=(0,l.useContext)(c.T),{id:g}=a,{document:v}=(0,u.S)(g),x=(0,h.B)(a,"properties"),b=(0,h.B)(a,"save")||(0,h.B)(a,"publish"),{data:y,isLoading:f}=(0,m.B)({skip:!x}),j=null==y||null==(e=y.items)?void 0:e.find(e=>"language"===e.key),k=(null==j?void 0:j.data)??"",w=(0,l.useMemo)(()=>{let e=(null==v?void 0:v.settingsData)??{};return{title:(null==e?void 0:e.title)??"",description:(null==e?void 0:e.description)??"",language:k,prettyUrl:(null==e?void 0:e.prettyUrl)??"",contentMainDocument:(0,p.isNil)(null==e?void 0:e.contentMainDocumentId)?null:{id:e.contentMainDocumentId,type:F.W.document,fullPath:e.contentMainDocumentPath??""}}},[null==v?void 0:v.settingsData,k]),C=!x||!f&&!(0,p.isUndefined)(y);return(0,i.jsxs)(o.Content,{loading:!C,children:[(0,i.jsx)(s.F,{withBorder:!0,children:n("content-settings")}),(0,i.jsx)(d.a,{padding:{x:"extra-small",bottom:"small"},children:(0,i.jsx)($,{...t,documentId:g,hasPropertiesPermission:x,hasSavePermission:b,initialValues:w})})]})}},44057(e,t,n){n.d(t,{T:()=>u});var i=n(74848);n(47867);var l=n(726),a=n(15156),r=n(21429),s=n(29376),o=n(41630),d=n(15789),c=n(77885);let u={name:"document-editor",component:e=>(0,i.jsx)(c.bU,{component:c.eb.document.editor.container.name,props:e}),titleComponent:e=>{let{node:t}=e,{document:n}=(0,a.S)(t.getConfig().id),{t:s}=(0,r.useTranslation)(),o=t.getName();return t.getName=()=>(null==n?void 0:n.parentId)===0?s("home"):(null==n?void 0:n.key)??o,(0,i.jsx)(l.v,{modified:(null==n?void 0:n.modified)??!1,node:t})},defaultGlobalContext:!1,isModified:e=>{let t=e.getConfig(),n=(0,s.ei)(o.M_.getState(),t.id);return(null==n?void 0:n.modified)??!1},getContextProvider:(e,t)=>{let n=e.config;return(0,i.jsx)(d.f,{id:n.id,children:t})}}},5576(e,t,n){n.d(t,{m:()=>o});var i=n(74848);n(47867);var l=n(94316),a=n(19224),r=n(39808),s=n(7334);let o=e=>{let{SingleViewComponent:t,ComparisonViewComponent:n}=e,{id:o,elementType:d}=(0,s.J)(),{isLoading:c,data:u}=(0,l.CI)({id:o,elementType:d,page:1,pageSize:9999});return c?(0,i.jsx)(r.U,{loading:!0}):(0,i.jsx)(a.V,{ComparisonViewComponent:n,SingleViewComponent:t,versions:u.items})}},19224(e,t,n){n.d(t,{V:()=>A,W:()=>F});var i=n(74848),l=n(47867),a=n(8651),r=n.n(a),s=n(21429),o=n(94316),d=n(27994),c=n(6820),u=n(10733),p=n(27820),m=n(29150),h=n(39808),g=n(85274),v=n(83120),x=n(25750),b=n(22014),y=n(35864),f=n(276),j=n(86569),k=n(81898),w=n(41423),C=n(64756),I=n(2338),T=n(29740),S=n(80632),N=n(19680),_=n(55638),D=n(24755),E=n(44241);let P=(0,E.createStyles)(e=>{let{token:t,css:n}=e;return{versionTag:n` - width: 56px; - height: 22px; - - display: inline-grid; - justify-content: center; - - font-weight: 400; - font-size: 12px; - line-height: 20px; - `,dateContainer:n` - display: flex; - align-items: center; - margin-top: 2px; - gap: 4px; - `,dateIcon:n` - color: ${t.Colors.Neutral.Icon.colorIcon}; - `,dateLabel:n` - color: ${t.colorTextDescription}; - `}}),V=e=>{let{version:t,setDetailedVersions:n}=e,[a,r]=(0,l.useState)(null==t?void 0:t.note),[d,{isError:c,error:u}]=(0,o.e7)(),[m,{isLoading:h,isError:g,error:v}]=(0,o.KY)(),[j,{isLoading:C,isError:E,error:V}]=(0,o.MF)(),{t:$}=(0,s.useTranslation)(),{styles:F}=P(),A=t.published??!1,B=t.ctype===D.W.document,L=(0,y.isNil)(t.scheduled)?void 0:(0,f.r6)({timestamp:t.scheduled,dateStyle:"short",timeStyle:"short"}),{isLoading:M,url:U}=(0,N.Z)({versionId:t.id,isSkip:!B}),O=async()=>{await m({id:t.id}),g&&(0,_.Ay)(new _.hD(v))},R=async()=>{await j({id:t.id}),n([]),E&&(0,_.Ay)(new _.hD(V))},G=async()=>{await d({id:t.id,updateVersion:{note:a}}),c&&(0,_.Ay)(new _.hD(u))};return(0,i.jsxs)(x.s,{gap:"extra-small",vertical:!0,children:[(0,i.jsxs)(x.s,{align:"top",justify:"space-between",children:[(0,i.jsxs)(w.v,{className:F.versionTag,children:["ID: ",t.id]}),(0,i.jsxs)(I.$,{size:"mini",children:[!A&&(0,i.jsx)(p.J,{disabled:h||C,icon:{value:"published"},loading:h,onClick:O,children:$("version.publish")}),B&&(0,i.jsx)(T.K,{"aria-label":$("aria.version.delete"),icon:{value:"open-folder"},loading:M,onClick:()=>{(0,y.isNull)(U)||window.open(U,"_blank")},type:"default"}),(0,i.jsx)(T.K,{"aria-label":$("aria.version.delete"),disabled:h||C,icon:{value:"trash"},loading:C,onClick:R,type:"default"})]})]}),!(0,y.isNil)(L)&&(0,i.jsxs)("div",{children:[(0,i.jsx)("div",{children:$("version.schedule-for")}),(0,i.jsxs)("div",{className:F.dateContainer,children:[(0,i.jsx)(k.I,{className:F.dateIcon,value:"calendar"}),(0,i.jsx)(b.E,{className:F.dateLabel,children:L})]})]}),(0,i.jsxs)("div",{children:[(0,i.jsx)("span",{children:$("version.note")}),(0,i.jsx)(S.p,{onBlur:G,onChange:e=>{r(e.target.value)},onClick:e=>{e.stopPropagation()},placeholder:$("version.note.add"),value:a})]})]})},$=(0,E.createStyles)(e=>{let{token:t,css:n}=e,i={highlightBackgroundColor:"#F6FFED",highlightBorderColor:"#B7EB8F",highlightColor:"#52C41A",signalBackgroundColor:"#E6F4FF",signalBorderColor:"#91CAFF",signalColor:"#1677FF",...t};return{versions:n` - .title-tag__own-draft { - color: ${i.signalColor}; - border-color: ${i.signalBorderColor}; - background-color: ${i.signalBackgroundColor}; - } - - .title-tag__published { - color: ${i.highlightColor}; - border-color: ${i.highlightBorderColor}; - background-color: ${i.highlightBackgroundColor}; - } - - .sub-title { - font-weight: normal; - margin-right: 4px; - color: ${i.colorTextDescription}; - } - - .ant-tag { - display: flex; - align-items: center; - } - - .ant-tag-geekblue { - background-color: ${t.Colors.Base.Geekblue["2"]} !important; - color: ${t.Colors.Base.Geekblue["6"]} !important; - border-color: ${t.Colors.Base.Geekblue["3"]} !important; - } - `,compareButton:n` - background-color: ${t.Colors.Neutral.Fill.colorFill} !important; - `,notificationMessage:n` - text-align: center; - max-width: 200px; - `}},{hashPriority:"low"}),F="versions_content_view",A=e=>{let{versions:t,SingleViewComponent:n,ComparisonViewComponent:a}=e,[I,T]=(0,l.useState)(!1),[S,N]=(0,l.useState)([]),[D,{isLoading:E,isError:P,error:A}]=(0,o.Nn)(),{renderModal:B,showModal:L,handleOk:M}=(0,c.hS)({type:"warn"}),{t:U}=(0,s.useTranslation)(),{styles:O}=$(),R=async()=>{M(),await D({elementType:t[0].ctype,id:t[0].cid}),P&&(0,_.Ay)(new _.hD(A))},G=e=>{let t=[...S],n=t.some(t=>t.id===e.id);2!==t.length||n||(t=[]),n?t.splice(t.indexOf(e),1):t.push(e),N(t)},W=t.map(e=>(e=>{let{version:t,detailedVersions:n,isComparingActive:l,selectVersion:a,setDetailedVersions:r}=e,o={id:t.id,count:t.versionCount},d=n.some(e=>e.id===t.id),c=t.published??!1,u=t.autosave??!1,p=d?"theme-primary":"theme-default";return{key:String(t.id),selected:d,title:(0,i.jsx)(()=>{let{t:e}=(0,s.useTranslation)();return(0,i.jsxs)("div",{children:[l&&(0,i.jsx)(C.a,{inline:!0,padding:{right:"extra-small"},children:(0,i.jsx)(j.Checkbox,{checked:d,onChange:()=>{a(o)}})}),(0,i.jsx)("span",{className:"title",children:`${e("version.version")} ${t.versionCount} | ${(0,f.r6)({timestamp:t.date,dateStyle:"short",timeStyle:"medium"})}`})]})},{}),subtitle:(0,i.jsx)(()=>{var e;let{t:n}=(0,s.useTranslation)();return(0,i.jsxs)("div",{children:[(0,i.jsx)("span",{className:"sub-title",children:`${n("by")} ${(null==(e=t.user)?void 0:e.name)??""}`}),(0,y.isNil)(t.autosave)&&t.autosave&&(0,i.jsx)(k.I,{value:"auto-save"})]})},{}),extra:(0,i.jsx)(()=>{let{t:e}=(0,s.useTranslation)();return c?(0,i.jsx)(w.v,{color:"success",iconName:"published",children:e("version.published")}):u?(0,i.jsx)(w.v,{color:"geekblue",iconName:"auto-save",children:e("version.autosaved")}):(0,i.jsx)(i.Fragment,{})},{}),children:(0,i.jsx)(V,{setDetailedVersions:r,version:t}),onClick:()=>{l?a(o):r([{id:t.id,count:t.versionCount}])},theme:c?"theme-success":p}})({version:e,detailedVersions:S,isComparingActive:I,selectVersion:G,setDetailedVersions:N})),z=0===t.length,Y=0===S.length;return z?(0,i.jsxs)(h.U,{padded:!0,children:[(0,i.jsx)(m.Y,{className:"p-l-mini",title:U("version.versions")}),(0,i.jsx)(h.U,{none:!0,noneOptions:{text:U("version.no-versions-to-show")}})]}):(0,i.jsx)(h.U,{className:O.versions,children:(0,i.jsx)(g.n,{leftItem:{size:25,minSize:415,children:(0,i.jsxs)(h.U,{padded:!0,children:[(0,i.jsx)(m.Y,{title:U("version.versions"),children:!z&&(0,i.jsxs)(i.Fragment,{children:[(0,i.jsxs)(x.s,{className:"w-full",gap:"small",justify:"space-between",children:[(0,i.jsx)(d.$,{className:r()({[O.compareButton]:I}),onClick:()=>{N([]),T(!I)},children:U("version.compare-versions")},U("version.compare-versions")),(0,i.jsx)(p.J,{icon:{value:"trash"},loading:E,onClick:L,children:U("version.clear-unpublished")},U("version.clear-unpublished"))]}),(0,i.jsx)(B,{footer:(0,i.jsxs)(u.j,{children:[(0,i.jsx)(d.$,{onClick:R,type:"primary",children:U("yes")}),(0,i.jsx)(d.$,{onClick:M,type:"default",children:U("no")})]}),title:U("version.clear-unpublished-versions"),children:(0,i.jsx)("span",{children:U("version.confirm-clear-unpublished")})})]})}),!z&&(0,i.jsx)(v.o,{items:W})]})},rightItem:{size:75,children:(0,i.jsx)(h.U,{centered:Y,id:F,padded:!0,children:(0,i.jsxs)(x.s,{align:"center",children:[!Y&&I&&(0,i.jsx)(a,{versionIds:S}),!Y&&!I&&(0,i.jsx)(n,{setDetailedVersions:N,versionId:S[0],versions:t}),Y&&(0,i.jsx)(b.E,{className:O.notificationMessage,children:U("version.preview-notification")})]})})}})})}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1693.48c272d7.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js deleted file mode 100644 index 47ed5e18a1..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1708.de5f09b0.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1708"],{73367(e,h,l){l.r(h),l.d(h,{default:()=>i});var s=l(74848);l(47867);let i=e=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"se_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M-53.421 0h682.67v512h-682.67z"})})}),(0,s.jsx)("g",{clipPath:"url(#se_inline_svg__a)",transform:"translate(50.082)scale(.9375)",children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#006aa7",d:"M-121.103.302h256V205.1h-256zM-121.103 307.178h256v204.8h-256z"}),(0,s.jsx)("path",{fill:"#fecc00",d:"M-121.103 204.984h256v102.4h-256z"}),(0,s.jsx)("path",{fill:"#fecc00",d:"M133.843.01h102.4v511.997h-102.4z"}),(0,s.jsx)("path",{fill:"#fecc00",d:"M232.995 205.013h460.798v102.4H232.995z"}),(0,s.jsx)("path",{fill:"#006aa7",d:"M236.155 307.208h460.797v204.799H236.155zM236.155.302h460.797V205.1H236.155z"})]})})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1708.de5f09b0.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js deleted file mode 100644 index 8dc4973f18..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 172.cb77a99e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["172"],{48151(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"km_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#km_inline_svg__a)",transform:"scale(.9375)",children:[(0,e.jsx)("path",{fill:"#ff0",d:"M0 0h768.77v128H0z"}),(0,e.jsx)("path",{fill:"#fff",d:"M0 128h768.77v128H0z"}),(0,e.jsx)("path",{fill:"#be0027",d:"M0 256h768.77v128H0z"}),(0,e.jsx)("path",{fill:"#3b5aa3",d:"M0 384h768.77v128H0z"}),(0,e.jsx)("path",{fill:"#239e46",d:"M0 0v512l381.86-255.28z"}),(0,e.jsx)("path",{fill:"#fff",d:"M157.21 141.43C72.113 137.12 33.34 204.9 33.43 257.3c-.194 61.97 58.529 113.08 112.81 109.99-29.27-13.84-65.008-52.66-65.337-110.25-.3-52.18 29.497-97.55 76.307-115.61"}),(0,e.jsx)("path",{fill:"#fff",d:"m155.927 197.058-11.992-9.385-14.539 4.576 5.215-14.317-8.831-12.41 15.227.528 9.065-12.238 4.195 14.649 14.452 4.846-12.644 8.524zM155.672 249.121l-11.993-9.385-14.538 4.576 5.215-14.317-8.831-12.41 15.227.528 9.065-12.238 4.194 14.649 14.453 4.846-12.645 8.524zM155.927 301.698l-11.992-9.385-14.539 4.576 5.215-14.317-8.831-12.41 15.227.528 9.065-12.238 4.195 14.649 14.452 4.846-12.644 8.524zM155.672 354.778l-11.993-9.385-14.538 4.576 5.215-14.317-8.831-12.41 15.227.528 9.065-12.238 4.194 14.649 14.453 4.846-12.645 8.524z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/172.cb77a99e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1721.fdc19114.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1721.fdc19114.js deleted file mode 100644 index 0461837524..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1721.fdc19114.js +++ /dev/null @@ -1,9 +0,0 @@ -/*! For license information please see 1721.fdc19114.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1721"],{67502(t,e,n){n.r(e),n.d(e,{multiInject:()=>ei,named:()=>t8,preDestroy:()=>es,METADATA_KEY:()=>ec,decorate:()=>t7,namedConstraint:()=>tW,createTaggedDecorator:()=>t2,taggedConstraint:()=>t$,inject:()=>et,injectable:()=>t5,targetName:()=>er,AsyncContainerModule:()=>t0,traverseAncerstors:()=>tF,typeConstraint:()=>tV,multiBindToService:()=>tj,id:()=>ti,unmanaged:()=>en,tagged:()=>t4,BindingScopeEnum:()=>Z,MetadataReader:()=>tu,Container:()=>tQ,getServiceIdentifierAsString:()=>th,BindingTypeEnum:()=>tt,TargetTypeEnum:()=>te,ContainerModule:()=>tZ,LazyServiceIdentifier:()=>r,optional:()=>ee,postConstruct:()=>eo}),n(46680);let i=Symbol.for("@inversifyjs/common/islazyServiceIdentifier");class r{[i];#t;constructor(t){this.#t=t,this[i]=!0}static is(t){return"object"==typeof t&&null!==t&&!0===t[i]}unwrap(){return this.#t()}}function a(t,e){return Reflect.getMetadata(e,t)}function o(t,e,n,i){let r=i(a(t,e)??n);Reflect.defineMetadata(e,r,t)}let s="named",c="name",l="unmanaged",u="optional",d="inject",h="multi_inject",g="post_construct",y="pre_destroy",p=[d,h,c,l,s,u],f=Symbol.for("@inversifyjs/core/InversifyCoreError");class v extends Error{[f];kind;constructor(t,e,n){super(e,n),this[f]=!0,this.kind=t}static is(t){return"object"==typeof t&&null!==t&&!0===t[f]}static isErrorOfKind(t,e){return v.is(t)&&t.kind===e}}function m(t,e){let n=[];for(let t=0;t0)throw new v(Y.missingInjectionDecorator,`Found unexpected missing metadata on type "${t.name}" at constructor indexes "${n.join('", "')}". - -Are you using @inject, @multiInject or @unmanaged decorators at those indexes? - -If you're using typescript and want to rely on auto injection, set "emitDecoratorMetadata" compiler option to true`)}function _(t){return{kind:L.singleInjection,name:void 0,optional:!1,tags:new Map,targetName:void 0,value:t}}function b(t){let e=t.find(t=>t.key===d),n=t.find(t=>t.key===h);if(void 0!==t.find(t=>t.key===l)){if(void 0!==n||void 0!==e)throw new v(Y.missingInjectionDecorator,"Expected a single @inject, @multiInject or @unmanaged metadata");return{kind:L.unmanaged}}if(void 0===n&&void 0===e)throw new v(Y.missingInjectionDecorator,"Expected @inject, @multiInject or @unmanaged metadata");let i=t.find(t=>t.key===s),r=t.find(t=>t.key===u),a=t.find(t=>t.key===c);return{kind:void 0===e?L.multipleInjection:L.singleInjection,name:i?.value,optional:void 0!==r,tags:new Map(t.filter(t=>p.every(e=>t.key!==e)).map(t=>[t.key,t.value])),targetName:a?.value,value:void 0===e?n?.value:e.value}}function w(t,e,n){try{return b(n)}catch(n){throw v.isErrorOfKind(n,Y.missingInjectionDecorator)?new v(Y.missingInjectionDecorator,`Expected a single @inject, @multiInject or @unmanaged decorator at type "${t.name}" at constructor arguments at index "${e.toString()}"`,{cause:n}):n}}function A(t,e,n){try{return b(n)}catch(n){throw v.isErrorOfKind(n,Y.missingInjectionDecorator)?new v(Y.missingInjectionDecorator,`Expected a single @inject, @multiInject or @unmanaged decorator at type "${t.name}" at property "${e.toString()}"`,{cause:n}):n}}function I(t){let e=a(t,"inversify:tagged_props"),n=new Map;if(void 0!==e)for(let i of Reflect.ownKeys(e)){let r=e[i];n.set(i,A(t,i,r))}return n}function S(t){let e=a(t,g),n=a(t,y);return{constructorArguments:function(t){let e=a(t,"design:paramtypes"),n=a(t,"inversify:tagged"),i=[];if(void 0!==n)for(let[e,r]of Object.entries(n)){let n=parseInt(e);i[n]=w(t,n,r)}if(void 0!==e){for(let t=0;tNumber.MIN_SAFE_INTEGER):o(Object,C,t,t=>t+1),t}(),this.#i=t,this.#r=void 0,this.#t=e,this.#a=new j("string"==typeof t?t:t.toString().slice(7,-1)),this.#o=n}get id(){return this.#n}get identifier(){return this.#i}get metadata(){var t;return void 0===this.#r&&(this.#r=(t=this.#t).kind===L.unmanaged?[{key:l,value:!0}]:function(t){let e=[function(t){let e;switch(t.kind){case L.multipleInjection:e={key:h,value:t.value};break;case L.singleInjection:e={key:d,value:t.value}}return e}(t)];for(let[n,i]of(void 0!==t.name&&e.push({key:s,value:t.name}),t.optional&&e.push({key:u,value:!0}),t.tags))e.push({key:n,value:i});return void 0!==t.targetName&&e.push({key:c,value:t.targetName}),e}(t)),this.#r}get name(){return this.#a}get type(){return this.#o}get serviceIdentifier(){return r.is(this.#t.value)?this.#t.value.unwrap():this.#t.value}getCustomTags(){return[...this.#t.tags.entries()].map(([t,e])=>({key:t,value:e}))}getNamedTag(){return void 0===this.#t.name?null:{key:s,value:this.#t.name}}hasTag(t){return this.metadata.some(e=>e.key===t)}isArray(){return this.#t.kind===L.multipleInjection}isNamed(){return void 0!==this.#t.name}isOptional(){return this.#t.optional}isTagged(){return this.#t.tags.size>0}matchesArray(t){return this.isArray()&&this.#t.value===t}matchesNamedTag(t){return this.#t.name===t}matchesTag(t){return e=>this.metadata.some(n=>n.key===t&&n.value===e)}}let E=t=>{var e,n;return e=void 0===t?S:e=>{let n,i;return n=a(e,g),i=a(e,y),{constructorArguments:function(t,e){let n=e.getConstructorMetadata(t),i=[];for(let[e,r]of Object.entries(n.userGeneratedMetadata)){let n=parseInt(e);i[n]=w(t,n,r)}if(void 0!==n.compilerGeneratedMetadata){for(let t=0;tT(e,t),function(t){let i=e(t),r=D(t);for(;void 0!==r&&r!==Object;){for(let[t,e]of n(r))i.properties.has(t)||i.properties.set(t,e);r=D(r)}let a=[];for(let t of i.constructorArguments)if(t.kind!==L.unmanaged){let e=t.targetName??"";a.push(new N(e,t,"ConstructorArgument"))}for(let[t,e]of i.properties)if(e.kind!==L.unmanaged){let n=e.targetName??t;a.push(new N(n,e,"ClassProperty"))}return a}},R="named",x="name",M="unmanaged",k="optional",O="inject",P="multi_inject",q="inversify:tagged",B="inversify:tagged_props",F="inversify:paramtypes",$="design:paramtypes",W="post_construct",V="pre_destroy",G=[O,P,x,M,R,k];var K,H,U,z,Y,L,J,X,Q=Object.freeze({__proto__:null,DESIGN_PARAM_TYPES:$,INJECT_TAG:O,MULTI_INJECT_TAG:P,NAMED_TAG:R,NAME_TAG:x,NON_CUSTOM_TAG_KEYS:G,OPTIONAL_TAG:k,PARAM_TYPES:F,POST_CONSTRUCT:W,PRE_DESTROY:V,TAGGED:q,TAGGED_PROP:B,UNMANAGED_TAG:M});let Z={Request:"Request",Singleton:"Singleton",Transient:"Transient"},tt={ConstantValue:"ConstantValue",Constructor:"Constructor",DynamicValue:"DynamicValue",Factory:"Factory",Function:"Function",Instance:"Instance",Invalid:"Invalid",Provider:"Provider"},te={ClassProperty:"ClassProperty",ConstructorArgument:"ConstructorArgument",Variable:"Variable"},tn=0;function ti(){return tn++}class tr{id;moduleId;activated;serviceIdentifier;implementationType;cache;dynamicValue;scope;type;factory;provider;constraint;onActivation;onDeactivation;constructor(t,e){this.id=ti(),this.activated=!1,this.serviceIdentifier=t,this.scope=e,this.type=tt.Invalid,this.constraint=t=>!0,this.implementationType=null,this.cache=null,this.factory=null,this.provider=null,this.onActivation=null,this.onDeactivation=null,this.dynamicValue=null}clone(){let t=new tr(this.serviceIdentifier,this.scope);return t.activated=t.scope===Z.Singleton&&this.activated,t.implementationType=this.implementationType,t.dynamicValue=this.dynamicValue,t.scope=this.scope,t.type=this.type,t.factory=this.factory,t.provider=this.provider,t.constraint=this.constraint,t.onActivation=this.onActivation,t.onDeactivation=this.onDeactivation,t.cache=this.cache,t}}let ta="Metadata key was used more than once in a parameter:",to="NULL argument",ts="Key Not Found",tc="The @inject @multiInject @tagged and @named decorators must be applied to the parameters of a class constructor or a class property.",tl=(t,e)=>`onDeactivation() error in class ${t}: ${e}`;class tu{getConstructorMetadata(t){return{compilerGeneratedMetadata:Reflect.getMetadata($,t)??[],userGeneratedMetadata:Reflect.getMetadata(q,t)??{}}}getPropertiesMetadata(t){return Reflect.getMetadata(B,t)??{}}}function td(t){return t instanceof RangeError||"Maximum call stack size exceeded"===t.message}function th(t){return"function"==typeof t?t.name:"symbol"==typeof t?t.toString():t}function tg(t,e,n){let i="",r=n(t,e);return 0!==r.length&&(i="\nRegistered bindings:",r.forEach(t=>{let e="Object";null!==t.implementationType&&(e=ty(t.implementationType)),i=`${i} - ${e}`,t.constraint.metaData&&(i=`${i} - ${t.constraint.metaData}`)})),i}function ty(t){if(null!=t.name&&""!==t.name)return t.name;{let e=t.toString(),n=e.match(/^function\s*([^\s(]+)/);return null===n?`Anonymous function: ${e}`:n[1]}}function tp(t){return`{"key":"${t.key.toString()}","value":"${t.value.toString()}"}`}(K=J||(J={}))[K.MultipleBindingsAvailable=2]="MultipleBindingsAvailable",K[K.NoBindingsAvailable=0]="NoBindingsAvailable",K[K.OnlyOneBindingAvailable=1]="OnlyOneBindingAvailable";class tf{id;container;plan;currentRequest;constructor(t){this.id=ti(),this.container=t}addPlan(t){this.plan=t}setCurrentRequest(t){this.currentRequest=t}}class tv{key;value;constructor(t,e){this.key=t,this.value=e}toString(){return this.key===R?`named: ${String(this.value).toString()} `:`tagged: { key:${this.key.toString()}, value: ${String(this.value)} }`}}class tm{parentContext;rootRequest;constructor(t,e){this.parentContext=t,this.rootRequest=e}}class t_{id;serviceIdentifier;parentContext;parentRequest;bindings;childRequests;target;requestScope;constructor(t,e,n,i,r){this.id=ti(),this.serviceIdentifier=t,this.parentContext=e,this.parentRequest=n,this.target=r,this.childRequests=[],this.bindings=Array.isArray(i)?i:[i],this.requestScope=null===n?new Map:null}addChildRequest(t,e,n){let i=new t_(t,this.parentContext,this,e,n);return this.childRequests.push(i),i}}function tb(t){return t._bindingDictionary}function tw(t,e,n,i,r){let a=tI(n.container,r.serviceIdentifier),o=[];return a.length===J.NoBindingsAvailable&&!0===n.container.options.autoBindInjectable&&"function"==typeof r.serviceIdentifier&&t.getConstructorMetadata(r.serviceIdentifier).compilerGeneratedMetadata&&(n.container.bind(r.serviceIdentifier).toSelf(),a=tI(n.container,r.serviceIdentifier)),o=e?a:a.filter(t=>{let e=new t_(t.serviceIdentifier,n,i,t,r);return t.constraint(e)}),function(t,e,n,i,r){switch(e.length){case J.NoBindingsAvailable:if(i.isOptional())return;{let e=th(t),a="No matching bindings found for serviceIdentifier:";throw a+=function(t,e){if(e.isTagged()||e.isNamed()){let n="",i=e.getNamedTag(),r=e.getCustomTags();return null!==i&&(n+=tp(i)+"\n"),null!==r&&r.forEach(t=>{n+=tp(t)+"\n"}),` ${t} - ${t} - ${n}`}return` ${t}`}(e,i),a+=tg(r,e,tI),null!==n&&(a+=` -Trying to resolve bindings for "${th(n.serviceIdentifier)}"`),Error(a)}case J.OnlyOneBindingAvailable:return;case J.MultipleBindingsAvailable:default:if(i.isArray())return;{let e=th(t),n=`Ambiguous match found for serviceIdentifier: ${e}`;throw Error(n+=tg(r,e,tI))}}}(r.serviceIdentifier,o,i,r,n.container),o}function tA(t,e,n,i){let r=[new tv(t?P:O,e)];return void 0!==n&&r.push(new tv(n,i)),r}function tI(t,e){let n=[],i=tb(t);return i.hasKey(e)?n=i.get(e):null!==t.parent&&(n=tI(t.parent,e)),n}function tS(t){return("object"==typeof t&&null!==t||"function"==typeof t)&&"function"==typeof t.then}function tT(t){return!!tS(t)||Array.isArray(t)&&t.some(tS)}let tD=async(t,e)=>{try{t.cache=await e}catch(e){throw t.cache=null,t.activated=!1,e}};(H=X||(X={})).DynamicValue="toDynamicValue",H.Factory="toFactory",H.Provider="toProvider";let tj=t=>e=>(...n)=>{n.forEach(n=>{t.bind(n).toService(e)})};function tC(t){let e=new t.constr(...t.constructorInjections);return t.propertyRequests.forEach((n,i)=>{let r=n.target.identifier,a=t.propertyInjections[i];n.target.isOptional()&&void 0===a||(e[r]=a)}),e}async function tN(t){let e=[];for(let n of t)Array.isArray(n)?e.push(Promise.all(n)):e.push(n);return Promise.all(e)}function tE(t,e){let n=function(t,e){var n,i;if(Reflect.hasMetadata(W,t)){let r=Reflect.getMetadata(W,t);try{return e[r.value]?.()}catch(e){if(e instanceof Error)throw Error((n=t.name,i=e.message,`@postConstruct error in class ${n}: ${i}`))}}}(t,e);return tS(n)?n.then(()=>e):e}let tR=t=>e=>{e.parentContext.setCurrentRequest(e);let n=e.bindings,i=e.childRequests,r=e.target&&e.target.isArray(),a=!(e.parentRequest&&e.parentRequest.target&&e.target&&e.parentRequest.target.matchesArray(e.target.serviceIdentifier));return r&&a?i.map(e=>tR(t)(e)):e.target.isOptional()&&0===n.length?void 0:tx(t,e,n[0])},tx=(t,e,n)=>{var i,r;let a;return i=()=>{let i=((t,e,n)=>{let i,r,a=e.childRequests;switch((t=>{let e=null;switch(t.type){case tt.ConstantValue:case tt.Function:e=t.cache;break;case tt.Constructor:case tt.Instance:e=t.implementationType;break;case tt.DynamicValue:e=t.dynamicValue;break;case tt.Provider:e=t.provider;break;case tt.Factory:e=t.factory}if(null===e){let e=th(t.serviceIdentifier);throw Error(`Invalid binding type: ${e}`)}})(n),n.type){case tt.ConstantValue:case tt.Function:i=n.cache;break;case tt.Constructor:i=n.implementationType;break;case tt.Instance:var o,s;o=n.implementationType,s=tR(t),n.scope!==Z.Singleton&&function(t,e){let n=`Class cannot be instantiated in ${t.scope===Z.Request?"request":"transient"} scope.`;if("function"==typeof t.onDeactivation)throw Error(tl(e.name,n));if(Reflect.hasMetadata(V,e))throw Error(`@preDestroy error in class ${e.name}: ${n}`)}(n,o),i=tS(r=function(t,e,n){let i;if(e.length>0){let r=e.reduce((t,e)=>{let i=n(e);return e.target.type===te.ConstructorArgument?t.constructorInjections.push(i):(t.propertyRequests.push(e),t.propertyInjections.push(i)),t.isAsync||(t.isAsync=tT(i)),t},{constructorInjections:[],isAsync:!1,propertyInjections:[],propertyRequests:[]}),a={...r,constr:t};i=r.isAsync?async function(t){let e=await tN(t.constructorInjections),n=await tN(t.propertyInjections);return tC({...t,constructorInjections:e,propertyInjections:n})}(a):tC(a)}else i=new t;return i}(o,a,s))?r.then(t=>tE(o,t)):tE(o,r);break;default:i=((t,e)=>{let n=(t=>{switch(t.type){case tt.Factory:return{factory:t.factory,factoryType:X.Factory};case tt.Provider:return{factory:t.provider,factoryType:X.Provider};case tt.DynamicValue:return{factory:t.dynamicValue,factoryType:X.DynamicValue};default:throw Error(`Unexpected factory type ${t.type}`)}})(t);try{return n.factory.bind(t)(e)}catch(t){if(td(t)){var i,r;throw Error((i=n.factoryType,r=e.currentRequest.serviceIdentifier.toString(),`It looks like there is a circular dependency in one of the '${i}' bindings. Please investigate bindings with service identifier '${r}'.`))}throw t}})(n,e.parentContext)}return i})(t,e,n);return tS(i)?i.then(t=>tM(e,n,t)):tM(e,n,i)},null!==(a=n.scope===Z.Singleton&&n.activated?n.cache:n.scope===Z.Request&&t.has(n.id)?t.get(n.id):null)||(a=i(),r=a,n.scope===Z.Singleton&&(n.cache=r,n.activated=!0,tS(r)&&tD(n,r)),n.scope===Z.Request&&(t.has(n.id)||t.set(n.id,r))),a};function tM(t,e,n){let i=tk(t.parentContext,e,n),r=tB(t.parentContext.container),a,o=r.next();do{a=o.value;let e=t.parentContext,n=tq(a,t.serviceIdentifier);i=tS(i)?tP(n,e,i):tO(n,e,i),o=r.next()}while(!0!==o.done&&!tb(a).hasKey(t.serviceIdentifier));return i}let tk=(t,e,n)=>"function"==typeof e.onActivation?e.onActivation(t,n):n,tO=(t,e,n)=>{let i=t.next();for(;!0!==i.done;){if(tS(n=i.value(e,n)))return tP(t,e,n);i=t.next()}return n},tP=async(t,e,n)=>{let i=await n,r=t.next();for(;!0!==r.done;)i=await r.value(e,i),r=t.next();return i},tq=(t,e)=>{let n=t._activations;return n.hasKey(e)?n.get(e).values():[].values()},tB=t=>{let e=[t],n=t.parent;for(;null!==n;)e.push(n),n=n.parent;return{next:()=>{let t=e.pop();return void 0!==t?{done:!1,value:t}:{done:!0,value:void 0}}}},tF=(t,e)=>{let n=t.parentRequest;return null!==n&&(!!e(n)||tF(n,e))},t$=t=>e=>{let n=n=>null!==n&&null!==n.target&&n.target.matchesTag(t)(e);return n.metaData=new tv(t,e),n},tW=t$(R),tV=t=>e=>{let n=null;return null!==e&&((n=e.bindings[0],"string"==typeof t)?n.serviceIdentifier===t:t===e.bindings[0].implementationType)};class tG{_binding;constructor(t){this._binding=t}when(t){return this._binding.constraint=t,new tK(this._binding)}whenTargetNamed(t){return this._binding.constraint=tW(t),new tK(this._binding)}whenTargetIsDefault(){return this._binding.constraint=t=>null!==t&&null!==t.target&&!t.target.isNamed()&&!t.target.isTagged(),new tK(this._binding)}whenTargetTagged(t,e){return this._binding.constraint=t$(t)(e),new tK(this._binding)}whenInjectedInto(t){return this._binding.constraint=e=>null!==e&&tV(t)(e.parentRequest),new tK(this._binding)}whenParentNamed(t){return this._binding.constraint=e=>null!==e&&tW(t)(e.parentRequest),new tK(this._binding)}whenParentTagged(t,e){return this._binding.constraint=n=>null!==n&&t$(t)(e)(n.parentRequest),new tK(this._binding)}whenAnyAncestorIs(t){return this._binding.constraint=e=>null!==e&&tF(e,tV(t)),new tK(this._binding)}whenNoAncestorIs(t){return this._binding.constraint=e=>null!==e&&!tF(e,tV(t)),new tK(this._binding)}whenAnyAncestorNamed(t){return this._binding.constraint=e=>null!==e&&tF(e,tW(t)),new tK(this._binding)}whenNoAncestorNamed(t){return this._binding.constraint=e=>null!==e&&!tF(e,tW(t)),new tK(this._binding)}whenAnyAncestorTagged(t,e){return this._binding.constraint=n=>null!==n&&tF(n,t$(t)(e)),new tK(this._binding)}whenNoAncestorTagged(t,e){return this._binding.constraint=n=>null!==n&&!tF(n,t$(t)(e)),new tK(this._binding)}whenAnyAncestorMatches(t){return this._binding.constraint=e=>null!==e&&tF(e,t),new tK(this._binding)}whenNoAncestorMatches(t){return this._binding.constraint=e=>null!==e&&!tF(e,t),new tK(this._binding)}}class tK{_binding;constructor(t){this._binding=t}onActivation(t){return this._binding.onActivation=t,new tG(this._binding)}onDeactivation(t){return this._binding.onDeactivation=t,new tG(this._binding)}}class tH{_bindingWhenSyntax;_bindingOnSyntax;_binding;constructor(t){this._binding=t,this._bindingWhenSyntax=new tG(this._binding),this._bindingOnSyntax=new tK(this._binding)}when(t){return this._bindingWhenSyntax.when(t)}whenTargetNamed(t){return this._bindingWhenSyntax.whenTargetNamed(t)}whenTargetIsDefault(){return this._bindingWhenSyntax.whenTargetIsDefault()}whenTargetTagged(t,e){return this._bindingWhenSyntax.whenTargetTagged(t,e)}whenInjectedInto(t){return this._bindingWhenSyntax.whenInjectedInto(t)}whenParentNamed(t){return this._bindingWhenSyntax.whenParentNamed(t)}whenParentTagged(t,e){return this._bindingWhenSyntax.whenParentTagged(t,e)}whenAnyAncestorIs(t){return this._bindingWhenSyntax.whenAnyAncestorIs(t)}whenNoAncestorIs(t){return this._bindingWhenSyntax.whenNoAncestorIs(t)}whenAnyAncestorNamed(t){return this._bindingWhenSyntax.whenAnyAncestorNamed(t)}whenAnyAncestorTagged(t,e){return this._bindingWhenSyntax.whenAnyAncestorTagged(t,e)}whenNoAncestorNamed(t){return this._bindingWhenSyntax.whenNoAncestorNamed(t)}whenNoAncestorTagged(t,e){return this._bindingWhenSyntax.whenNoAncestorTagged(t,e)}whenAnyAncestorMatches(t){return this._bindingWhenSyntax.whenAnyAncestorMatches(t)}whenNoAncestorMatches(t){return this._bindingWhenSyntax.whenNoAncestorMatches(t)}onActivation(t){return this._bindingOnSyntax.onActivation(t)}onDeactivation(t){return this._bindingOnSyntax.onDeactivation(t)}}class tU{_binding;constructor(t){this._binding=t}inRequestScope(){return this._binding.scope=Z.Request,new tH(this._binding)}inSingletonScope(){return this._binding.scope=Z.Singleton,new tH(this._binding)}inTransientScope(){return this._binding.scope=Z.Transient,new tH(this._binding)}}class tz{_bindingInSyntax;_bindingWhenSyntax;_bindingOnSyntax;_binding;constructor(t){this._binding=t,this._bindingWhenSyntax=new tG(this._binding),this._bindingOnSyntax=new tK(this._binding),this._bindingInSyntax=new tU(t)}inRequestScope(){return this._bindingInSyntax.inRequestScope()}inSingletonScope(){return this._bindingInSyntax.inSingletonScope()}inTransientScope(){return this._bindingInSyntax.inTransientScope()}when(t){return this._bindingWhenSyntax.when(t)}whenTargetNamed(t){return this._bindingWhenSyntax.whenTargetNamed(t)}whenTargetIsDefault(){return this._bindingWhenSyntax.whenTargetIsDefault()}whenTargetTagged(t,e){return this._bindingWhenSyntax.whenTargetTagged(t,e)}whenInjectedInto(t){return this._bindingWhenSyntax.whenInjectedInto(t)}whenParentNamed(t){return this._bindingWhenSyntax.whenParentNamed(t)}whenParentTagged(t,e){return this._bindingWhenSyntax.whenParentTagged(t,e)}whenAnyAncestorIs(t){return this._bindingWhenSyntax.whenAnyAncestorIs(t)}whenNoAncestorIs(t){return this._bindingWhenSyntax.whenNoAncestorIs(t)}whenAnyAncestorNamed(t){return this._bindingWhenSyntax.whenAnyAncestorNamed(t)}whenAnyAncestorTagged(t,e){return this._bindingWhenSyntax.whenAnyAncestorTagged(t,e)}whenNoAncestorNamed(t){return this._bindingWhenSyntax.whenNoAncestorNamed(t)}whenNoAncestorTagged(t,e){return this._bindingWhenSyntax.whenNoAncestorTagged(t,e)}whenAnyAncestorMatches(t){return this._bindingWhenSyntax.whenAnyAncestorMatches(t)}whenNoAncestorMatches(t){return this._bindingWhenSyntax.whenNoAncestorMatches(t)}onActivation(t){return this._bindingOnSyntax.onActivation(t)}onDeactivation(t){return this._bindingOnSyntax.onDeactivation(t)}}class tY{_binding;constructor(t){this._binding=t}to(t){return this._binding.type=tt.Instance,this._binding.implementationType=t,new tz(this._binding)}toSelf(){if("function"!=typeof this._binding.serviceIdentifier)throw Error("The toSelf function can only be applied when a constructor is used as service identifier");let t=this._binding.serviceIdentifier;return this.to(t)}toConstantValue(t){return this._binding.type=tt.ConstantValue,this._binding.cache=t,this._binding.dynamicValue=null,this._binding.implementationType=null,this._binding.scope=Z.Singleton,new tH(this._binding)}toDynamicValue(t){return this._binding.type=tt.DynamicValue,this._binding.cache=null,this._binding.dynamicValue=t,this._binding.implementationType=null,new tz(this._binding)}toConstructor(t){return this._binding.type=tt.Constructor,this._binding.implementationType=t,this._binding.scope=Z.Singleton,new tH(this._binding)}toFactory(t){return this._binding.type=tt.Factory,this._binding.factory=t,this._binding.scope=Z.Singleton,new tH(this._binding)}toFunction(t){if("function"!=typeof t)throw Error("Value provided to function binding must be a function!");let e=this.toConstantValue(t);return this._binding.type=tt.Function,this._binding.scope=Z.Singleton,e}toAutoFactory(t){return this._binding.type=tt.Factory,this._binding.factory=e=>()=>e.container.get(t),this._binding.scope=Z.Singleton,new tH(this._binding)}toAutoNamedFactory(t){return this._binding.type=tt.Factory,this._binding.factory=e=>n=>e.container.getNamed(t,n),new tH(this._binding)}toProvider(t){return this._binding.type=tt.Provider,this._binding.provider=t,this._binding.scope=Z.Singleton,new tH(this._binding)}toService(t){this._binding.type=tt.DynamicValue,Object.defineProperty(this._binding,"cache",{configurable:!0,enumerable:!0,get:()=>null,set(t){}}),this._binding.dynamicValue=e=>{try{return e.container.get(t)}catch(n){return e.container.getAsync(t)}},this._binding.implementationType=null}}class tL{bindings;activations;deactivations;middleware;moduleActivationStore;static of(t,e,n,i,r){let a=new tL;return a.bindings=t,a.middleware=e,a.deactivations=i,a.activations=n,a.moduleActivationStore=r,a}}class tJ{_map;constructor(){this._map=new Map}getMap(){return this._map}add(t,e){if(this._checkNonNulish(t),null==e)throw Error(to);let n=this._map.get(t);void 0!==n?n.push(e):this._map.set(t,[e])}get(t){this._checkNonNulish(t);let e=this._map.get(t);if(void 0!==e)return e;throw Error(ts)}remove(t){if(this._checkNonNulish(t),!this._map.delete(t))throw Error(ts)}removeIntersection(t){this.traverse((e,n)=>{let i=t.hasKey(e)?t.get(e):void 0;if(void 0!==i){let t=n.filter(t=>!i.some(e=>t===e));this._setValue(e,t)}})}removeByCondition(t){let e=[];return this._map.forEach((n,i)=>{let r=[];for(let i of n)t(i)?e.push(i):r.push(i);this._setValue(i,r)}),e}hasKey(t){return this._checkNonNulish(t),this._map.has(t)}clone(){let t=new tJ;return this._map.forEach((e,n)=>{e.forEach(e=>{t.add(n,"object"==typeof e&&null!==e&&"clone"in e&&"function"==typeof e.clone?e.clone():e)})}),t}traverse(t){this._map.forEach((e,n)=>{t(n,e)})}_checkNonNulish(t){if(null==t)throw Error(to)}_setValue(t,e){e.length>0?this._map.set(t,e):this._map.delete(t)}}class tX{_map=new Map;remove(t){let e=this._map.get(t);return void 0===e?this._getEmptyHandlersStore():(this._map.delete(t),e)}addDeactivation(t,e,n){this._getModuleActivationHandlers(t).onDeactivations.add(e,n)}addActivation(t,e,n){this._getModuleActivationHandlers(t).onActivations.add(e,n)}clone(){let t=new tX;return this._map.forEach((e,n)=>{t._map.set(n,{onActivations:e.onActivations.clone(),onDeactivations:e.onDeactivations.clone()})}),t}_getModuleActivationHandlers(t){let e=this._map.get(t);return void 0===e&&(e=this._getEmptyHandlersStore(),this._map.set(t,e)),e}_getEmptyHandlersStore(){return{onActivations:new tJ,onDeactivations:new tJ}}}class tQ{id;parent;options;_middleware;_bindingDictionary;_activations;_deactivations;_snapshots;_metadataReader;_moduleActivationStore;constructor(t){const e=t||{};if("object"!=typeof e)throw Error("Invalid Container constructor argument. Container options must be an object.");if(void 0===e.defaultScope)e.defaultScope=Z.Transient;else if(e.defaultScope!==Z.Singleton&&e.defaultScope!==Z.Transient&&e.defaultScope!==Z.Request)throw Error('Invalid Container option. Default scope must be a string ("singleton" or "transient").');if(void 0===e.autoBindInjectable)e.autoBindInjectable=!1;else if("boolean"!=typeof e.autoBindInjectable)throw Error("Invalid Container option. Auto bind injectable must be a boolean");if(void 0===e.skipBaseClassChecks)e.skipBaseClassChecks=!1;else if("boolean"!=typeof e.skipBaseClassChecks)throw Error("Invalid Container option. Skip base check must be a boolean");this.options={autoBindInjectable:e.autoBindInjectable,defaultScope:e.defaultScope,skipBaseClassChecks:e.skipBaseClassChecks},this.id=ti(),this._bindingDictionary=new tJ,this._snapshots=[],this._middleware=null,this._activations=new tJ,this._deactivations=new tJ,this.parent=null,this._metadataReader=new tu,this._moduleActivationStore=new tX}static merge(t,e,...n){let i=new tQ,r=[t,e,...n].map(t=>tb(t)),a=tb(i);return r.forEach(t=>{t.traverse((t,e)=>{e.forEach(t=>{a.add(t.serviceIdentifier,t.clone())})})}),i}load(...t){let e=this._getContainerModuleHelpersFactory();for(let n of t){let t=e(n.id);n.registry(t.bindFunction,t.unbindFunction,t.isboundFunction,t.rebindFunction,t.unbindAsyncFunction,t.onActivationFunction,t.onDeactivationFunction)}}async loadAsync(...t){let e=this._getContainerModuleHelpersFactory();for(let n of t){let t=e(n.id);await n.registry(t.bindFunction,t.unbindFunction,t.isboundFunction,t.rebindFunction,t.unbindAsyncFunction,t.onActivationFunction,t.onDeactivationFunction)}}unload(...t){t.forEach(t=>{let e=this._removeModuleBindings(t.id);this._deactivateSingletons(e),this._removeModuleHandlers(t.id)})}async unloadAsync(...t){for(let e of t){let t=this._removeModuleBindings(e.id);await this._deactivateSingletonsAsync(t),this._removeModuleHandlers(e.id)}}bind(t){return this._bind(this._buildBinding(t))}rebind(t){return this.unbind(t),this.bind(t)}async rebindAsync(t){return await this.unbindAsync(t),this.bind(t)}unbind(t){if(this._bindingDictionary.hasKey(t)){let e=this._bindingDictionary.get(t);this._deactivateSingletons(e)}this._removeServiceFromDictionary(t)}async unbindAsync(t){if(this._bindingDictionary.hasKey(t)){let e=this._bindingDictionary.get(t);await this._deactivateSingletonsAsync(e)}this._removeServiceFromDictionary(t)}unbindAll(){this._bindingDictionary.traverse((t,e)=>{this._deactivateSingletons(e)}),this._bindingDictionary=new tJ}async unbindAllAsync(){let t=[];this._bindingDictionary.traverse((e,n)=>{t.push(this._deactivateSingletonsAsync(n))}),await Promise.all(t),this._bindingDictionary=new tJ}onActivation(t,e){this._activations.add(t,e)}onDeactivation(t,e){this._deactivations.add(t,e)}isBound(t){let e=this._bindingDictionary.hasKey(t);return!e&&this.parent&&(e=this.parent.isBound(t)),e}isCurrentBound(t){return this._bindingDictionary.hasKey(t)}isBoundNamed(t,e){return this.isBoundTagged(t,R,e)}isBoundTagged(t,e,n){let i=!1;if(this._bindingDictionary.hasKey(t)){let r=this._bindingDictionary.get(t),a=function(t,e,n,i){let r=b(tA(!1,e,n,i));if(r.kind===L.unmanaged)throw Error("Unexpected metadata when creating target");let a=new N("",r,"Variable");return new t_(e,new tf(t),null,[],a)}(this,t,e,n);i=r.some(t=>t.constraint(a))}return!i&&this.parent&&(i=this.parent.isBoundTagged(t,e,n)),i}snapshot(){this._snapshots.push(tL.of(this._bindingDictionary.clone(),this._middleware,this._activations.clone(),this._deactivations.clone(),this._moduleActivationStore.clone()))}restore(){let t=this._snapshots.pop();if(void 0===t)throw Error("No snapshot available to restore.");this._bindingDictionary=t.bindings,this._activations=t.activations,this._deactivations=t.deactivations,this._middleware=t.middleware,this._moduleActivationStore=t.moduleActivationStore}createChild(t){let e=new tQ(t||this.options);return e.parent=this,e}applyMiddleware(...t){let e=this._middleware?this._middleware:this._planAndResolve();this._middleware=t.reduce((t,e)=>e(t),e)}applyCustomMetadataReader(t){this._metadataReader=t}get(t){let e=this._getNotAllArgs(t,!1);return this._getButThrowIfAsync(e)}async getAsync(t){let e=this._getNotAllArgs(t,!1);return this._get(e)}getTagged(t,e,n){let i=this._getNotAllArgs(t,!1,e,n);return this._getButThrowIfAsync(i)}async getTaggedAsync(t,e,n){let i=this._getNotAllArgs(t,!1,e,n);return this._get(i)}getNamed(t,e){return this.getTagged(t,R,e)}async getNamedAsync(t,e){return this.getTaggedAsync(t,R,e)}getAll(t){let e=this._getAllArgs(t);return this._getButThrowIfAsync(e)}async getAllAsync(t){let e=this._getAllArgs(t);return this._getAll(e)}getAllTagged(t,e,n){let i=this._getNotAllArgs(t,!0,e,n);return this._getButThrowIfAsync(i)}async getAllTaggedAsync(t,e,n){let i=this._getNotAllArgs(t,!0,e,n);return this._getAll(i)}getAllNamed(t,e){return this.getAllTagged(t,R,e)}async getAllNamedAsync(t,e){return this.getAllTaggedAsync(t,R,e)}resolve(t){let e=this.isBound(t);e||this.bind(t).toSelf();let n=this.get(t);return e||this.unbind(t),n}_preDestroy(t,e){if(void 0!==t&&Reflect.hasMetadata(V,t)){let n=Reflect.getMetadata(V,t);return e[n.value]?.()}}_removeModuleHandlers(t){let e=this._moduleActivationStore.remove(t);this._activations.removeIntersection(e.onActivations),this._deactivations.removeIntersection(e.onDeactivations)}_removeModuleBindings(t){return this._bindingDictionary.removeByCondition(e=>e.moduleId===t)}_deactivate(t,e){let n=null==e?void 0:Object.getPrototypeOf(e).constructor;try{if(this._deactivations.hasKey(t.serviceIdentifier)){let i=this._deactivateContainer(e,this._deactivations.get(t.serviceIdentifier).values());if(tS(i))return this._handleDeactivationError(i.then(async()=>this._propagateContainerDeactivationThenBindingAndPreDestroyAsync(t,e,n)),t.serviceIdentifier)}let i=this._propagateContainerDeactivationThenBindingAndPreDestroy(t,e,n);if(tS(i))return this._handleDeactivationError(i,t.serviceIdentifier)}catch(e){if(e instanceof Error)throw Error(tl(th(t.serviceIdentifier),e.message))}}async _handleDeactivationError(t,e){try{await t}catch(t){if(t instanceof Error)throw Error(tl(th(e),t.message))}}_deactivateContainer(t,e){let n=e.next();for(;"function"==typeof n.value;){let i=n.value(t);if(tS(i))return i.then(async()=>this._deactivateContainerAsync(t,e));n=e.next()}}async _deactivateContainerAsync(t,e){let n=e.next();for(;"function"==typeof n.value;)await n.value(t),n=e.next()}_getContainerModuleHelpersFactory(){let t=t=>e=>{let n=this._buildBinding(e);return n.moduleId=t,this._bind(n)},e=()=>t=>{this.unbind(t)},n=()=>async t=>this.unbindAsync(t),i=()=>t=>this.isBound(t),r=e=>{let n=t(e);return t=>(this.unbind(t),n(t))},a=t=>(e,n)=>{this._moduleActivationStore.addActivation(t,e,n),this.onActivation(e,n)},o=t=>(e,n)=>{this._moduleActivationStore.addDeactivation(t,e,n),this.onDeactivation(e,n)};return s=>({bindFunction:t(s),isboundFunction:i(),onActivationFunction:a(s),onDeactivationFunction:o(s),rebindFunction:r(s),unbindAsyncFunction:n(),unbindFunction:e()})}_bind(t){return this._bindingDictionary.add(t.serviceIdentifier,t),new tY(t)}_buildBinding(t){return new tr(t,this.options.defaultScope||Z.Transient)}async _getAll(t){return Promise.all(this._get(t))}_get(t){let e={...t,contextInterceptor:t=>t,targetType:te.Variable};if(this._middleware){let t=this._middleware(e);if(null==t)throw Error("Invalid return type in middleware. Middleware must return!");return t}return this._planAndResolve()(e)}_getButThrowIfAsync(t){let e=this._get(t);if(tT(e)){var n;throw Error(`You are attempting to construct ${"function"==typeof(n=t.serviceIdentifier)?`[function/class ${n.name||""}]`:"symbol"==typeof n?n.toString():`'${n}'`} in a synchronous way but it has asynchronous dependencies.`)}return e}_getAllArgs(t){return{avoidConstraints:!0,isMultiInject:!0,serviceIdentifier:t}}_getNotAllArgs(t,e,n,i){return{avoidConstraints:!1,isMultiInject:e,key:n,serviceIdentifier:t,value:i}}_planAndResolve(){return t=>{var e;let n=function(t,e,n,i,r,a,o,s=!1){let c=new tf(e),l=function(t,e,n,i,r){let a=b(tA(t,n,i,r));if(a.kind===L.unmanaged)throw Error("Unexpected metadata when creating target");return new N("",a,e)}(n,i,r,a,o);try{return function t(e,n,i,r,a,o){let s,c;if(null===a){s=tw(e,n,r,null,o),c=new t_(i,r,null,s,o);let t=new tm(r,c);r.addPlan(t)}else s=tw(e,n,r,a,o),c=a.addChildRequest(o.serviceIdentifier,s,o);s.forEach(n=>{let i=null;if(o.isArray())i=c.addChildRequest(n.serviceIdentifier,n,o);else{if(null!==n.cache)return;i=c}if(n.type===tt.Instance&&null!==n.implementationType){var a;let o=(a=n.implementationType,E(e)(a));if(!0!==r.container.options.skipBaseClassChecks){let t=function t(e,n){let i,r=(i=Object.getPrototypeOf(n.prototype),i?.constructor);if(void 0===r||r===Object)return 0;let a=E(e)(r),o=a.map(t=>t.metadata.filter(t=>t.key===M)),s=[].concat.apply([],o).length,c=a.length-s;return c>0?c:t(e,r)}(e,n.implementationType);if(o.length= than the number of constructor arguments of its base class.`)}o.forEach(n=>{t(e,!1,n.serviceIdentifier,r,i,n)})}})}(t,s,r,c,null,l),c}catch(t){throw td(t)&&function t(e){e.childRequests.forEach(n=>{if(function t(e,n){return null!==e.parentRequest&&(e.parentRequest.serviceIdentifier===n||t(e.parentRequest,n))}(e,n.serviceIdentifier)){let t=(function t(e,n=[]){let i=th(e.serviceIdentifier);return n.push(i),null!==e.parentRequest?t(e.parentRequest,n):n})(n).reverse().join(" --\x3e ");throw Error(`Circular dependency found: ${t}`)}t(n)})}(c.plan.rootRequest),t}}(this._metadataReader,this,t.isMultiInject,t.targetType,t.serviceIdentifier,t.key,t.value,t.avoidConstraints);return tR((e=n=t.contextInterceptor(n)).plan.rootRequest.requestScope)(e.plan.rootRequest)}}_deactivateIfSingleton(t){if(t.activated)return tS(t.cache)?t.cache.then(e=>this._deactivate(t,e)):this._deactivate(t,t.cache)}_deactivateSingletons(t){for(let e of t)if(tS(this._deactivateIfSingleton(e)))throw Error("Attempting to unbind dependency with asynchronous destruction (@preDestroy or onDeactivation)")}async _deactivateSingletonsAsync(t){await Promise.all(t.map(async t=>this._deactivateIfSingleton(t)))}_propagateContainerDeactivationThenBindingAndPreDestroy(t,e,n){return this.parent?this._deactivate.bind(this.parent)(t,e):this._bindingDeactivationAndPreDestroy(t,e,n)}async _propagateContainerDeactivationThenBindingAndPreDestroyAsync(t,e,n){this.parent?await this._deactivate.bind(this.parent)(t,e):await this._bindingDeactivationAndPreDestroyAsync(t,e,n)}_removeServiceFromDictionary(t){try{this._bindingDictionary.remove(t)}catch(e){throw Error(`Could not unbind serviceIdentifier: ${th(t)}`)}}_bindingDeactivationAndPreDestroy(t,e,n){if("function"==typeof t.onDeactivation){let i=t.onDeactivation(e);if(tS(i))return i.then(()=>this._preDestroy(n,e))}return this._preDestroy(n,e)}async _bindingDeactivationAndPreDestroyAsync(t,e,n){"function"==typeof t.onDeactivation&&await t.onDeactivation(e),await this._preDestroy(n,e)}}class tZ{id;registry;constructor(t){this.id=ti(),this.registry=t}}class t0{id;registry;constructor(t){this.id=ti(),this.registry=t}}function t1(t,e,n,i){!function(t){if(void 0!==t)throw Error(tc)}(e),t3(q,t,n.toString(),i)}function t3(t,e,n,i){let r=function(t){let e=[];if(Array.isArray(t)){let n=function(t){let e=new Set;for(let n of t){if(e.has(n))return n;e.add(n)}}((e=t).map(t=>t.key));if(void 0!==n)throw Error(`${ta} ${n.toString()}`)}else e=[t];return e}(i),a={};Reflect.hasOwnMetadata(t,e)&&(a=Reflect.getMetadata(t,e));let o=a[n];if(void 0===o)o=[];else for(let t of o)if(r.some(e=>e.key===t.key))throw Error(`${ta} ${t.key.toString()}`);o.push(...r),a[n]=o,Reflect.defineMetadata(t,a,e)}function t2(t){return(e,n,i)=>{"number"==typeof i?t1(e,n,i,t):function(t,e,n){if(void 0!==t.prototype)throw Error(tc);t3(B,t.constructor,e,n)}(e,n,t)}}function t6(t,e){Reflect.decorate(t,e)}function t7(t,e,n){"number"==typeof n?t6([function(e,i){t(e,i,n)}],e):"string"==typeof n?Reflect.decorate([t],e,n):t6([t],e)}function t5(){return function(t){if(Reflect.hasOwnMetadata(F,t))throw Error("Cannot apply @injectable decorator multiple times.");return Reflect.defineMetadata(F,Reflect.getMetadata($,t)||[],t),t}}function t4(t,e){return t2(new tv(t,e))}function t8(t){return t2(new tv(R,t))}function t9(t){return e=>(n,i,r)=>{if(void 0===e){let t="function"==typeof n?n.name:n.constructor.name;throw Error(`@inject called with undefined this could mean that the class ${t} has a circular dependency problem. You can use a LazyServiceIdentifer to overcome this limitation.`)}t2(new tv(t,e))(n,i,r)}}let et=t9(O);function ee(){return t2(new tv(k,!0))}function en(){return function(t,e,n){t1(t,e,n,new tv(M,!0))}}let ei=t9(P);function er(t){return function(e,n,i){t1(e,n,i,new tv(x,t))}}function ea(t,e){return()=>(n,i)=>{let r=new tv(t,i);if(Reflect.hasOwnMetadata(t,n.constructor))throw Error(e);Reflect.defineMetadata(t,r,n.constructor)}}let eo=ea(W,"Cannot apply @postConstruct decorator multiple times in the same class"),es=ea(V,"Cannot apply @preDestroy decorator multiple times in the same class"),ec=Q},31635(t,e,n){n.d(e,{C6:()=>r,Cg:()=>s,Cl:()=>a,Ju:()=>u,Qj:()=>c,Sn:()=>l,Tt:()=>o,fX:()=>h,gn:()=>g,zs:()=>d});var i=function(t,e){return(i=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)};function r(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}i(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}var a=function(){return(a=Object.assign||function(t){for(var e,n=1,i=arguments.length;ne.indexOf(i)&&(n[i]=t[i]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var r=0,i=Object.getOwnPropertySymbols(t);re.indexOf(i[r])&&Object.prototype.propertyIsEnumerable.call(t,i[r])&&(n[i[r]]=t[i[r]]);return n}function s(t,e,n,i){var r,a=arguments.length,o=a<3?e:null===i?i=Object.getOwnPropertyDescriptor(e,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(t,e,n,i);else for(var s=t.length-1;s>=0;s--)(r=t[s])&&(o=(a<3?r(o):a>3?r(e,n,o):r(e,n))||o);return a>3&&o&&Object.defineProperty(e,n,o),o}function c(t,e){return function(n,i){e(n,i,t)}}function l(t,e){if("object"==typeof Reflect&&"function"==typeof Reflect.metadata)return Reflect.metadata(t,e)}function u(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],i=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&i>=t.length&&(t=void 0),{value:t&&t[i++],done:!t}}};throw TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function d(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var i,r,a=n.call(t),o=[];try{for(;(void 0===e||e-- >0)&&!(i=a.next()).done;)o.push(i.value)}catch(t){r={error:t}}finally{try{i&&!i.done&&(n=a.return)&&n.call(a)}finally{if(r)throw r.error}}return o}function h(t,e,n){if(n||2==arguments.length)for(var i,r=0,a=e.length;rh});var s=e(74848);e(47867);let h=i=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"bh_inline_svg__a",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#bh_inline_svg__a)",children:[(0,s.jsx)("path",{fill:"#e10011",d:"M-32.5 0h720v480h-720z"}),(0,s.jsx)("path",{fill:"#fff",d:"M114.25 479.77-32.5 480V0l146.06.075 94.242 30.306-93.554 29.542 93.554 30.458-93.554 29.542 93.554 30.458-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54 93.554 30.46-93.554 29.54"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1742.9207983d.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1742.9207983d.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1742.9207983d.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js deleted file mode 100644 index 0d8fb02971..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 175.bd0ef661.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["175"],{73362(e,s,t){t.r(s),t.d(s,{api:()=>i,useAssetBatchDeleteMutation:()=>m,useAssetCloneMutation:()=>p,useAssetCustomMetadataGetByIdQuery:()=>y,useAssetCustomSettingsGetByIdQuery:()=>c,useAssetDeleteGridConfigurationByConfigurationIdMutation:()=>G,useAssetExportZipAssetMutation:()=>A,useAssetExportZipFolderMutation:()=>I,useAssetGetAvailableGridColumnsQuery:()=>E,useAssetGetByIdQuery:()=>o,useAssetGetGridConfigurationByFolderIdQuery:()=>f,useAssetGetGridQuery:()=>T,useAssetGetSavedGridConfigurationsQuery:()=>h,useAssetGetTextDataByIdQuery:()=>l,useAssetGetTreeQuery:()=>r,useAssetPatchByIdMutation:()=>g,useAssetPatchFolderByIdMutation:()=>D,useAssetReplaceMutation:()=>n,useAssetSaveGridConfigurationMutation:()=>q,useAssetSetGridConfigurationAsFavoriteMutation:()=>v,useAssetUpdateByIdMutation:()=>u,useAssetUpdateGridConfigurationMutation:()=>S,useAssetUploadInfoQuery:()=>b,useLazyAssetGetTreeQuery:()=>d});var a=t(53996);let i=t(62843).FH.enhanceEndpoints({addTagTypes:[a.nP.ASSET,a.nP.ASSET_TREE,a.nP.ASSET_DETAIL],endpoints:{assetClone:{invalidatesTags:(e,s,t)=>a.qN.ASSET_TREE_ID(t.parentId)},assetCustomMetadataGetById:{providesTags:(e,s,t)=>a.yc.ASSET_DETAIL_ID(t.id)},assetCustomSettingsGetById:{providesTags:(e,s,t)=>a.yc.ASSET_DETAIL_ID(t.id)},assetGetTextDataById:{providesTags:(e,s,t)=>a.yc.ASSET_DETAIL_ID(t.id)},assetGetById:{providesTags:(e,s,t)=>a.yc.ASSET_DETAIL_ID(t.id)},assetGetTree:{providesTags:(e,s,t)=>{let i=[];return void 0!==e&&(i=null==e?void 0:e.items.flatMap(e=>a.yc.ASSET_DETAIL_ID(e.id))),i=[...i,...a.yc.ASSET_TREE(),...void 0!==t.parentId?a.yc.ASSET_TREE_ID(t.parentId):[]]}},assetUpdateById:{invalidatesTags:(e,s,t)=>a.qN.ASSET_DETAIL_ID(t.id)},assetAdd:{invalidatesTags:(e,s,t)=>a.qN.ASSET_TREE_ID(t.parentId)},assetPatchById:{invalidatesTags:(e,s,t)=>{let i=[];for(let e of t.body.data)i.push(...a.qN.ASSET_DETAIL_ID(e.id));return i}},assetGetGridConfigurationByFolderId:{providesTags:(e,s,t)=>a.yc.ASSET_GRID_CONFIGURATION_DETAIL(t.configurationId)},assetGetGrid:{providesTags:(e,s,t)=>a.yc.ASSET_GRID_ID(t.body.folderId)},assetSaveGridConfiguration:{invalidatesTags:(e,s,t)=>a.qN.ASSET_GRID_CONFIGURATION_LIST()},assetSetGridConfigurationAsFavorite:{invalidatesTags:(e,s,t)=>a.qN.ASSET_GRID_CONFIGURATION_LIST()},assetUpdateGridConfiguration:{invalidatesTags:(e,s,t)=>a.qN.ASSET_GRID_CONFIGURATION_DETAIL(t.configurationId)},assetDeleteGridConfigurationByConfigurationId:{invalidatesTags:(e,s,t)=>[...a.qN.ASSET_GRID_CONFIGURATION_DETAIL(),...a.qN.ASSET_GRID_CONFIGURATION_LIST()]},assetGetSavedGridConfigurations:{providesTags:(e,s,t)=>a.yc.ASSET_GRID_CONFIGURATION_LIST()}}}),{useAssetGetByIdQuery:o,useAssetGetTreeQuery:r,useLazyAssetGetTreeQuery:d,useAssetUpdateByIdMutation:u,useAssetCloneMutation:p,useAssetReplaceMutation:n,useAssetBatchDeleteMutation:m,useAssetCustomMetadataGetByIdQuery:y,useAssetCustomSettingsGetByIdQuery:c,useAssetGetTextDataByIdQuery:l,useAssetGetGridQuery:T,useAssetPatchByIdMutation:g,useAssetExportZipAssetMutation:A,useAssetExportZipFolderMutation:I,useAssetGetSavedGridConfigurationsQuery:h,useAssetSaveGridConfigurationMutation:q,useAssetSetGridConfigurationAsFavoriteMutation:v,useAssetUpdateGridConfigurationMutation:S,useAssetDeleteGridConfigurationByConfigurationIdMutation:G,useAssetGetGridConfigurationByFolderIdQuery:f,useAssetGetAvailableGridColumnsQuery:E,useAssetPatchFolderByIdMutation:D,useAssetUploadInfoQuery:b}=i},62843(e,s,t){t.d(s,{FH:()=>a,OR:()=>r,Yn:()=>U,ny:()=>i});let a=t(53073).api.enhanceEndpoints({addTagTypes:["Assets","Asset Grid","Metadata"]}).injectEndpoints({endpoints:e=>({assetGetTypes:e.query({query:()=>({url:"/pimcore-studio/api/assets/types"}),providesTags:["Assets"]}),assetBatchDelete:e.mutation({query:e=>({url:"/pimcore-studio/api/assets/batch-delete",method:"DELETE",body:e.body}),invalidatesTags:["Assets"]}),assetClone:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/clone/${e.parentId}`,method:"POST"}),invalidatesTags:["Assets"]}),assetCustomSettingsGetById:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/custom-settings`}),providesTags:["Assets"]}),assetGetTextDataById:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/text`}),providesTags:["Assets"]}),assetDocumentDownloadCustom:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/document/download/custom`,params:{mimeType:e.mimeType,page:e.page,resizeMode:e.resizeMode,width:e.width,height:e.height,quality:e.quality,dpi:e.dpi}}),providesTags:["Assets"]}),assetDocumentStreamCustom:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/document/stream/custom`,params:{mimeType:e.mimeType,page:e.page,resizeMode:e.resizeMode,width:e.width,height:e.height,quality:e.quality,dpi:e.dpi,cropPercent:e.cropPercent,cropWidth:e.cropWidth,cropHeight:e.cropHeight,cropTop:e.cropTop,cropLeft:e.cropLeft}}),providesTags:["Assets"]}),assetDocumentStreamDynamic:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/document/stream/dynamic`,params:{config:e.config}}),providesTags:["Assets"]}),assetDocumentStreamPreview:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/document/stream/pdf-preview`}),providesTags:["Assets"]}),assetDocumentDownloadByThumbnail:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/document/download/thumbnail/${e.thumbnailName}`,params:{page:e.page}}),providesTags:["Assets"]}),assetDocumentStreamByThumbnail:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/document/stream/thumbnail/${e.thumbnailName}`,params:{page:e.page,cropPercent:e.cropPercent,cropWidth:e.cropWidth,cropHeight:e.cropHeight,cropTop:e.cropTop,cropLeft:e.cropLeft}}),providesTags:["Assets"]}),assetDownloadZip:e.query({query:e=>({url:`/pimcore-studio/api/assets/download/zip/${e.jobRunId}`}),providesTags:["Assets"]}),assetDeleteZip:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/download/zip/${e.jobRunId}`,method:"DELETE"}),invalidatesTags:["Assets"]}),assetDownloadById:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/download`}),providesTags:["Assets"]}),assetExportZipAsset:e.mutation({query:e=>({url:"/pimcore-studio/api/assets/export/zip/asset",method:"POST",body:e.body}),invalidatesTags:["Assets"]}),assetExportZipFolder:e.mutation({query:e=>({url:"/pimcore-studio/api/assets/export/zip/folder",method:"POST",body:e.body}),invalidatesTags:["Assets"]}),assetGetById:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}`}),providesTags:["Assets"]}),assetUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/${e.id}`,method:"PUT",body:e.body}),invalidatesTags:["Assets"]}),assetDeleteGridConfigurationByConfigurationId:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/grid/configuration/${e.configurationId}/delete`,method:"DELETE"}),invalidatesTags:["Asset Grid"]}),assetGetAvailableGridColumns:e.query({query:()=>({url:"/pimcore-studio/api/assets/grid/available-columns"}),providesTags:["Asset Grid"]}),assetGetGridConfigurationByFolderId:e.query({query:e=>({url:`/pimcore-studio/api/assets/grid/configuration/${e.folderId}`,params:{configurationId:e.configurationId}}),providesTags:["Asset Grid"]}),assetGetSavedGridConfigurations:e.query({query:()=>({url:"/pimcore-studio/api/assets/grid/configurations"}),providesTags:["Asset Grid"]}),assetRemoveGridConfigurationAsFavorite:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/grid/configuration/remove-favorite/${e.configurationId}/${e.folderId}`,method:"DELETE"}),invalidatesTags:["Asset Grid"]}),assetSaveGridConfiguration:e.mutation({query:e=>({url:"/pimcore-studio/api/assets/grid/configuration/save",method:"POST",body:e.body}),invalidatesTags:["Asset Grid"]}),assetSetGridConfigurationAsFavorite:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/grid/configuration/set-as-favorite/${e.configurationId}/${e.folderId}`,method:"POST"}),invalidatesTags:["Asset Grid"]}),assetUpdateGridConfiguration:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/grid/configuration/update/${e.configurationId}`,method:"PUT",body:e.body}),invalidatesTags:["Asset Grid"]}),assetGetGrid:e.query({query:e=>({url:"/pimcore-studio/api/assets/grid",method:"POST",body:e.body}),providesTags:["Asset Grid"]}),assetImageDownloadCustom:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/download/custom`,params:{mimeType:e.mimeType,resizeMode:e.resizeMode,width:e.width,height:e.height,quality:e.quality,dpi:e.dpi}}),providesTags:["Assets"]}),assetImageStreamCustom:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/stream/custom`,params:{mimeType:e.mimeType,resizeMode:e.resizeMode,width:e.width,height:e.height,quality:e.quality,dpi:e.dpi,contain:e.contain,frame:e.frame,cover:e.cover,forceResize:e.forceResize,cropPercent:e.cropPercent,cropWidth:e.cropWidth,cropHeight:e.cropHeight,cropTop:e.cropTop,cropLeft:e.cropLeft}}),providesTags:["Assets"]}),assetImageStreamDynamic:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/stream/dynamic`,params:{config:e.config}}),providesTags:["Assets"]}),assetImageDownloadByFormat:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/download/format/${e.format}`}),providesTags:["Assets"]}),assetImageStreamPreview:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/stream/preview`}),providesTags:["Assets"]}),assetImageStream:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/stream`}),providesTags:["Assets"]}),assetImageDownloadByThumbnail:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/download/thumbnail/${e.thumbnailName}`}),providesTags:["Assets"]}),assetImageStreamByThumbnail:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/image/stream/thumbnail/${e.thumbnailName}`,params:{cropPercent:e.cropPercent,cropWidth:e.cropWidth,cropHeight:e.cropHeight,cropTop:e.cropTop,cropLeft:e.cropLeft,mimeType:e.mimeType}}),providesTags:["Assets"]}),assetPatchById:e.mutation({query:e=>({url:"/pimcore-studio/api/assets",method:"PATCH",body:e.body}),invalidatesTags:["Assets"]}),assetPatchFolderById:e.mutation({query:e=>({url:"/pimcore-studio/api/assets/folder",method:"PATCH",body:e.body}),invalidatesTags:["Assets"]}),assetClearThumbnail:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/thumbnail/clear`,method:"DELETE"}),invalidatesTags:["Assets"]}),assetGetTree:e.query({query:e=>({url:"/pimcore-studio/api/assets/tree",params:{page:e.page,pageSize:e.pageSize,parentId:e.parentId,idSearchTerm:e.idSearchTerm,pqlQuery:e.pqlQuery,excludeFolders:e.excludeFolders,path:e.path,pathIncludeParent:e.pathIncludeParent,pathIncludeDescendants:e.pathIncludeDescendants}}),providesTags:["Assets"]}),assetAdd:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/add/${e.parentId}`,method:"POST",body:e.body}),invalidatesTags:["Assets"]}),assetUploadInfo:e.query({query:e=>({url:`/pimcore-studio/api/assets/exists/${e.parentId}`,params:{fileName:e.fileName}}),providesTags:["Assets"]}),assetReplace:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/replace`,method:"POST",body:e.body}),invalidatesTags:["Assets"]}),assetUploadZip:e.mutation({query:e=>({url:`/pimcore-studio/api/assets/add-zip/${e.parentId}`,method:"POST",body:e.body}),invalidatesTags:["Assets"]}),assetVideoImageThumbnailStream:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/video/stream/image-thumbnail`,params:{width:e.width,height:e.height,aspectRatio:e.aspectRatio,frame:e.frame,async:e.async}}),providesTags:["Assets"]}),assetVideoDownloadByThumbnail:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/video/download/${e.thumbnailName}`}),providesTags:["Assets"]}),assetVideoStreamByThumbnail:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/video/stream/${e.thumbnailName}`}),providesTags:["Assets"]}),assetGetVideoTypes:e.query({query:()=>({url:"/pimcore-studio/api/assets/video/types"}),providesTags:["Assets"]}),assetCustomMetadataGetById:e.query({query:e=>({url:`/pimcore-studio/api/assets/${e.id}/custom-metadata`}),providesTags:["Metadata"]})}),overrideExisting:!1}),{useAssetGetTypesQuery:i,useAssetBatchDeleteMutation:o,useAssetCloneMutation:r,useAssetCustomSettingsGetByIdQuery:d,useAssetGetTextDataByIdQuery:u,useAssetDocumentDownloadCustomQuery:p,useAssetDocumentStreamCustomQuery:n,useAssetDocumentStreamDynamicQuery:m,useAssetDocumentStreamPreviewQuery:y,useAssetDocumentDownloadByThumbnailQuery:c,useAssetDocumentStreamByThumbnailQuery:l,useAssetDownloadZipQuery:T,useAssetDeleteZipMutation:g,useAssetDownloadByIdQuery:A,useAssetExportZipAssetMutation:I,useAssetExportZipFolderMutation:h,useAssetGetByIdQuery:q,useAssetUpdateByIdMutation:v,useAssetDeleteGridConfigurationByConfigurationIdMutation:S,useAssetGetAvailableGridColumnsQuery:G,useAssetGetGridConfigurationByFolderIdQuery:f,useAssetGetSavedGridConfigurationsQuery:E,useAssetRemoveGridConfigurationAsFavoriteMutation:D,useAssetSaveGridConfigurationMutation:b,useAssetSetGridConfigurationAsFavoriteMutation:_,useAssetUpdateGridConfigurationMutation:C,useAssetGetGridQuery:$,useAssetImageDownloadCustomQuery:B,useAssetImageStreamCustomQuery:P,useAssetImageStreamDynamicQuery:w,useAssetImageDownloadByFormatQuery:N,useAssetImageStreamPreviewQuery:R,useAssetImageStreamQuery:L,useAssetImageDownloadByThumbnailQuery:M,useAssetImageStreamByThumbnailQuery:O,useAssetPatchByIdMutation:F,useAssetPatchFolderByIdMutation:z,useAssetClearThumbnailMutation:U,useAssetGetTreeQuery:x,useAssetAddMutation:Q,useAssetUploadInfoQuery:H,useAssetReplaceMutation:W,useAssetUploadZipMutation:Z,useAssetVideoImageThumbnailStreamQuery:V,useAssetVideoDownloadByThumbnailQuery:j,useAssetVideoStreamByThumbnailQuery:k,useAssetGetVideoTypesQuery:Y,useAssetCustomMetadataGetByIdQuery:J}=a}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/175.bd0ef661.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js deleted file mode 100644 index aef595611d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1750.19b70383.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1750"],{49541(l,f,a){a.r(f),a.d(f,{default:()=>i});var d=a(74848);a(47867);let i=l=>(0,d.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 640 480",width:"1em",height:"1em",...l,children:[(0,d.jsx)("defs",{children:(0,d.jsx)("clipPath",{id:"ai_inline_svg__a",children:(0,d.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,d.jsxs)("g",{clipPath:"url(#ai_inline_svg__a)",children:[(0,d.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M.426.42H403.1v240.067H.427z"}),(0,d.jsx)("path",{fill:"#c00",d:"M.426.422.41 18.44l96.093 59.27 36.155 1.257L.424.422z"}),(0,d.jsx)("path",{fill:"#006",d:"m41.573.422 116.494 73.046V.422z"}),(0,d.jsx)("path",{fill:"#c00",d:"M173.607.422v93.25H.423v53.288h173.184v93.25h53.286v-93.25h173.185V93.673H226.893V.423h-53.286z"}),(0,d.jsx)("path",{fill:"#006",d:"M242.435.422V69.25L356.407.955z"}),(0,d.jsx)("path",{fill:"#c00",d:"m246.032 76.754 32.054-.31L402.604.955l-33.037.647-123.535 75.154z"}),(0,d.jsx)("path",{fill:"#006",d:"m401.34 21.09-95.12 56.62 93.853.42v84.37h-79.93l79.19 51.51 1.163 26.2-42.297-.605-115.763-68.222v68.828h-84.37v-68.827l-108.59 68.643-49.046.185v239.794h799.294V.426l-397.537-.43M.43 27.06l-.42 49.8 84.146 1.266zM.426 162.497v51.066l79.93-50.533z"}),(0,d.jsx)("path",{fill:"#c00",d:"m308.217 164.606-33.322-.31 125.597 75.067-.826-17.174-91.453-57.584zM31.637 240.63l117.767-74.225-30.93.247L.423 240.518"}),(0,d.jsx)("path",{fill:"#49497d",d:"m525.376 247.8 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m527.406 247.8 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m521.315 249.83 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#808067",d:"m523.346 249.83 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m529.436 249.83 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m454.32 251.862 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m517.255 251.862 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m519.285 251.862 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#cc3",d:"M457.892 255.536c0 52.457-6.046 111.57 33.052 152.65 8.043 8.453 23.345 27.725 36.462 26.986 13.732-.773 31.39-21.093 39.246-31.045 34.034-44.77 28.624-98.17 29.78-150.134-15.368 6.902-23.022 9.176-36.462 9.136-9.954 1.022-25.31-5.67-34.493-10.045-6 4.007-14.706 8.786-30.35 9.323-18.07.795-23.795-2.267-37.235-6.872z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m531.466 251.862 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m533.497 251.862 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m596.433 251.862 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m456.35 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m458.38 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m460.41 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m513.195 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m515.225 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m517.255 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d0d045",d:"m525.376 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m533.497 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m535.527 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m537.557 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m590.342 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#53527c",d:"m592.372 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m594.403 253.892 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m464.47 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#53527c",d:"m466.5 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m468.53 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m509.134 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m511.164 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m513.195 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m523.346 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fff",d:"M462.054 261.24c-1.092 27.557-.254 58.587 4.054 88.07 4.763 15.404 4.126 23.866 11.203 33.098l99.07-.772c5.97-9.712 10.397-24.44 10.968-30.295 5.532-29.776 5.664-62.636 5.796-92.028-9.962 5.296-23.008 9.05-35.67 7.402-10.152-.774-19.53-3.09-30.454-9.264-9.475 5.676-12.778 8.268-28.423 8.93-12.18.6-22.048 1.588-36.543-5.14z"}),(0,d.jsx)("path",{fill:"#f2f1d7",d:"m527.406 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m529.436 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m537.557 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m539.587 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m541.617 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m543.648 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m584.252 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m586.282 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m588.312 255.922 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m590.342 255.922 2.03 2.03zm-121.812 2.03 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m470.56 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m472.59 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m474.62 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m476.65 257.952 2.03 2.03zm26.394 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#53527c",d:"m505.074 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m507.104 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m509.134 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m519.285 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m521.315 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m531.466 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m533.497 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m543.648 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m545.678 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m547.708 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m574.1 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m576.13 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m578.16 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#808067",d:"m580.19 257.952 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m583.582 258.622 1.352.677z"}),(0,d.jsx)("path",{fill:"#dddc7a",d:"m460.41 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d0d045",d:"m462.44 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m478.01 260.652 1.353.677-1.352-.678z"}),(0,d.jsx)("path",{fill:"#808067",d:"m480.71 259.982 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m482.742 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m484.772 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m486.802 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m498.983 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m501.013 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m503.044 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m515.225 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m517.255 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m535.527 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m537.557 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m549.068 260.652 1.352.677z"}),(0,d.jsx)("path",{fill:"#808067",d:"m551.768 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m553.8 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m555.83 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m557.86 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m567.34 260.652 1.352.677z"}),(0,d.jsx)("path",{fill:"#737370",d:"m570.04 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m572.07 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m574.1 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#dddc7a",d:"m590.342 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d0d045",d:"m592.372 259.982 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d7",d:"m464.47 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e0dea1",d:"m466.5 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#dddc7a",d:"m468.53 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m509.134 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e3af",d:"m511.164 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m539.587 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e1e18c",d:"m541.617 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d4d456",d:"m582.22 262.013 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#e1e18c",d:"m584.252 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#eeedc1",d:"m586.282 262.013 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m472.59 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e0dea1",d:"m474.62 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#dddc7a",d:"m476.65 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d0d045",d:"m478.68 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#dddc7a",d:"m503.044 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e3af",d:"m505.074 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m507.104 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#eeedc1",d:"m545.678 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e1e18c",d:"m547.708 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d4d456",d:"m549.738 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m574.1 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e1e18c",d:"m576.13 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#eeedc1",d:"m578.16 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m580.19 264.043 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d7",d:"m482.742 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m484.772 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#eeedc1",d:"m486.802 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m496.283 266.743 1.352.677z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m498.983 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m509.134 266.073 4.06 4.06v-4.06z"}),(0,d.jsx)("path",{fill:"#f2f1d7",d:"m553.8 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m555.83 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e3af",d:"m557.86 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m561.25 266.743 1.352.677z"}),(0,d.jsx)("path",{fill:"#e0dea1",d:"m563.95 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m567.34 266.743 1.352.677z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m570.04 266.073 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m505.074 268.103 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m507.104 268.103 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m505.074 270.133 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m509.134 270.133 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m505.074 272.164 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m509.134 272.164 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m503.044 274.194 2.03 2.03zm8.12 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m521.315 274.194 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m523.346 274.194 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m531.466 274.194 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m533.497 274.194 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m503.044 276.224 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m511.164 276.224 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m515.225 276.224 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m517.255 276.224 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m519.285 276.224 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m535.527 276.224 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m537.557 276.224 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m503.044 278.254 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m513.195 278.254 2.03 2.03zm26.392 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m541.617 278.254 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m460.41 280.284 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m503.044 280.284 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m543.648 280.284 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m545.678 280.284 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m503.044 282.315 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m549.738 282.315 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m551.768 282.315 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m501.013 284.345 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m503.044 284.345 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m559.89 284.345 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m561.92 284.345 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m563.95 284.345 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m565.98 284.345 4.06 4.06z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m568.01 284.345 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m501.013 286.375 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m529.436 286.375 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m531.466 286.375 2.03 2.03zm8.121 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m541.617 286.375 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m498.983 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m525.376 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m527.406 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m543.648 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m545.678 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m557.86 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m559.89 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m561.92 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m563.95 288.405 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m498.983 290.435 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m523.346 290.435 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m547.708 290.435 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m555.83 290.435 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m496.953 292.466 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m521.315 292.466 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m549.738 292.466 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m555.83 292.466 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m496.953 294.496 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m519.285 294.496 2.03 2.03zm32.483 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m555.83 294.496 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m460.41 296.526 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m496.953 296.526 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m519.285 296.526 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m551.768 296.526 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m557.86 296.526 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m494.923 298.556 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m517.255 298.556 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m553.8 298.556 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m557.86 298.556 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m494.923 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m517.255 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m527.406 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m529.436 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m531.466 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m533.497 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m553.8 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m555.83 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m557.86 300.586 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m494.923 302.617-2.03 6.09z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m515.225 302.617 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m517.255 302.617 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m527.406 302.617 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m535.527 302.617 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m537.557 302.617 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m555.83 302.617 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f90",d:"m557.86 302.617 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m560.56 303.977.677 1.353z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m519.285 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m521.315 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m523.346 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m525.376 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m527.406 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m529.436 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m539.587 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m541.617 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m543.648 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m545.678 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m549.068 305.317 1.352.677z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m551.768 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m557.86 304.647 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m470.56 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m472.59 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m525.376 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m529.436 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m531.466 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m547.708 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m549.738 306.677-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m553.8 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m555.83 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m557.86 306.677 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m470.56 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m472.59 308.707 4.06 4.06z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m474.62 308.707 2.03 2.03zm18.273 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m494.923 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m513.195 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m515.225 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m517.255 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m523.346 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m525.376 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m533.497 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fff",d:"m549.738 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m551.768 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m559.89 308.707 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m470.56 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m476.65 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m486.802 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m496.953 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m500.343 311.407 1.353.677z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m513.195 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m519.285 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m535.527 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m549.738 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m561.92 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m563.95 310.737 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#53527c",d:"m454.32 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m472.59 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m476.65 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m484.772 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m488.832 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m490.862 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m496.953 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m498.983 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m501.013 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m511.164 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m537.557 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m563.95 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m596.433 312.768 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e3af",d:"m460.41 314.798 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m472.59 314.798 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m478.68 314.798 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m484.772 314.798 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m488.832 314.798 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m496.953 314.798 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m511.164 314.798 2.03 2.03zm28.423 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m565.98 314.798 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m474.62 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m480.71 316.828 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m482.742 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m486.802 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m488.832 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m498.983 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m511.164 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m541.617 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m568.01 316.828 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m474.62 318.858 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m486.802 318.858 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m498.983 318.858 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m509.134 318.858 2.03 2.03zm34.514 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m570.04 318.858 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m476.65 320.888 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m484.772 320.888 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m501.013 320.888 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m509.134 320.888 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m543.648 320.888 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m570.04 320.888 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d3d079",d:"m460.41 322.92 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m476.65 322.92 2.03 2.03zm24.363 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m509.134 322.92 2.03 2.03zm34.514 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m572.07 322.92 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d7",d:"m590.342 322.92 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m597.103 324.28.678 1.352-.677-1.353z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m461.08 326.31.677 1.352-.678-1.353z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m476.65 324.95 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m541.617 324.95 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m543.648 324.95 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m572.07 324.95 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m591.012 326.31.678 1.352-.678-1.353z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m476.65 326.98 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m539.587 326.98 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m541.617 326.98 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m547.708 326.98-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m549.738 326.98 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m574.1 326.98 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m576.13 326.98 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#53527c",d:"m596.433 326.98 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#808067",d:"m457.02 330.37.677 1.352-.678-1.353z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m478.68 329.01 2.03 2.03zm6.092 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m507.104 329.01 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m539.587 329.01 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m547.708 329.01 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m551.768 329.01 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m578.16 329.01 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m580.19 329.01 4.062 4.06-4.06-4.06z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m591.012 330.37.678 1.352-.678-1.353z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m597.103 330.37.678 1.352-.677-1.353z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m479.35 332.4.68 1.352z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m486.802 331.04 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m507.104 331.04 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m539.587 331.04 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m543.648 331.04 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m545.678 331.04 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m551.768 331.04 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m580.19 331.04 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m456.35 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m462.44 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m486.802 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m503.044 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m505.074 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m507.104 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m541.617 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m543.648 333.07 2.03 2.03zm10.15 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m582.22 333.07 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#dddc7a",d:"m590.342 333.07 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m456.35 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m462.44 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m479.35 336.46.68 1.352z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m486.802 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m507.104 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m509.134 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m513.195 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m515.225 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m541.617 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m543.648 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m553.8 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m555.83 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m584.252 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m590.342 335.1 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m456.35 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e3af",d:"m462.44 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m488.832 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m509.134 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m515.225 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m517.255 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m539.587 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m541.617 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m543.648 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m555.83 337.13 2.03 2.03zm16.24 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m574.1 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m576.13 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m578.16 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m580.19 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m584.252 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#808067",d:"m594.403 337.13 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m456.35 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m459.05 340.52.677 1.353z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m462.44 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m478.68 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m490.862 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m511.164 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m517.255 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m535.527 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m537.557 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m545.678 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m555.83 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m572.07 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m582.22 339.16 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m584.252 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m594.403 339.16 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m462.44 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m478.68 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m492.893 341.19 2.03 2.03zm18.27 0 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m517.255 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m527.406 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m529.436 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m531.466 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m533.497 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m545.678 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m588.312 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m594.403 341.19 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m458.38 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d0d045",d:"m462.44 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m494.923 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m496.953 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m511.164 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb755",d:"m519.285 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m521.315 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m523.346 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m525.376 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m541.617 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m543.648 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m572.07 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e0dea1",d:"m588.312 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m594.403 343.22 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m458.38 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m464.47 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m480.71 345.25 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m498.983 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m501.013 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m503.044 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m505.074 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m507.104 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m509.134 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m511.164 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m539.587 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m541.617 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m570.04 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e1e18c",d:"m588.312 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m593.042 346.61.678 1.353-.678-1.352z"}),(0,d.jsx)("path",{fill:"#262678",d:"m594.403 345.25 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m458.38 347.28 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m464.47 347.28 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m480.71 347.28 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m535.527 347.28 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m537.557 347.28 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m555.83 347.28 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m570.04 347.28 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d4d456",d:"m588.312 347.28 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m458.38 349.31 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m464.47 349.31 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m480.71 349.31 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m482.742 349.31 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m535.527 349.31 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m555.83 349.31 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m570.04 349.31 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#808067",d:"m592.372 349.31 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m458.38 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m460.41 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m464.47 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m482.742 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m553.8 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m568.01 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m586.282 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m592.372 351.34 2.03 2.032-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m460.41 353.372 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m484.772 353.372 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m525.376 353.372 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fff",d:"m527.406 353.372 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m530.796 354.042 1.353.678-1.354-.678z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m551.768 353.372-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m553.8 353.372 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m565.98 353.372-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m586.282 353.372 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m592.372 353.372 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m460.41 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d2",d:"m466.5 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m486.802 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m525.376 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m527.406 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m529.436 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m531.466 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m551.768 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m565.98 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d9d868",d:"m586.282 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m590.342 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m592.372 355.402 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m460.41 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m466.5 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m488.832 357.432 4.06 4.06z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m490.862 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m529.436 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m547.708 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m549.738 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m561.92 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m563.95 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m584.252 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m590.342 357.432 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m460.41 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m462.44 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d4d456",d:"m466.5 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m527.406 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m545.678 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m547.708 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m559.89 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#eeedc1",d:"m584.252 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m590.342 359.462 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m462.44 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m468.53 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m490.862 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m523.346 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m526.046 362.853.678 1.352z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m541.617 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m543.648 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m555.83 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m557.86 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d3d079",d:"m584.252 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m588.312 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m590.342 361.492 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m462.44 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e0dea1",d:"m468.53 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m488.832 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m517.255 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m519.285 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m521.315 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m527.406 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m553.8 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m588.312 363.523 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m462.44 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m464.47 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d4d456",d:"m468.53 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m486.802 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m488.832 365.553 2.03 2.03zm10.15 0 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m501.013 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m503.044 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m511.164 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m513.195 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m515.225 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m531.466 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m533.497 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m535.527 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbc477",d:"m537.557 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m539.587 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m549.738 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m551.768 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e3af",d:"m582.22 365.553 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m588.312 365.553 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m464.47 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f2f1d7",d:"m470.56 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m484.772 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m494.923 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m496.953 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m498.983 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fea522",d:"m547.708 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m549.738 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#dddc7a",d:"m582.22 367.583 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m586.282 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m588.312 367.583 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m464.47 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m467.17 370.973.678 1.353z"}),(0,d.jsx)("path",{fill:"#d3d079",d:"m470.56 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d099",d:"m486.802 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcb144",d:"m488.832 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m490.862 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m492.893 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fef8f1",d:"m494.923 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f8dcbb",d:"m539.587 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fcf1e4",d:"m547.708 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f6f6e4",d:"m580.19 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m586.282 369.613 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m472.59 371.643 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbbe66",d:"m539.587 371.643 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m545.678 371.643 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e1e18c",d:"m580.19 371.643 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m586.282 371.643 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m466.5 373.674 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m472.59 373.674 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m539.587 373.674 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fdab33",d:"m543.648 373.674 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m578.16 373.674 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m584.252 373.674 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m586.282 373.674 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m466.5 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m468.53 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d0d045",d:"m472.59 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m537.557 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fe9f11",d:"m541.617 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbead6",d:"m543.648 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m578.16 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m584.252 375.704 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m468.53 377.734 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e3af",d:"m474.62 377.734 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#faca88",d:"m538.227 379.094.678 1.352z"}),(0,d.jsx)("path",{fill:"#fae3c9",d:"m541.617 377.734 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m576.13 377.734 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m582.22 377.734 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m584.252 377.734 2.03 2.03zm-115.722 2.03 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m470.56 379.764 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#d0d045",d:"m474.62 379.764 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#fbfaf2",d:"m476.65 379.764 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f9d6aa",d:"m539.587 379.764 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#e5e59d",d:"m576.13 379.764 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m582.22 379.764 2.032 2.03-2.03-2.03m-111.662 2.03 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8cbf84",d:"m476.65 381.794 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0cf",d:"M477.524 381.794c7.05 14.84 31.99 49.848 51.04 49.166 18.5-.662 39.393-34.82 47.567-49.166z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m580.19 381.794 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m582.22 381.794 2.032 2.03-2.03-2.03m-111.662 2.03 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m472.59 383.825 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m476.65 383.825 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1ac5b5",d:"m478.68 383.825 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#68b070",d:"m574.1 383.825 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m580.19 383.825 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m472.59 385.855 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#7fb15c",d:"m478.68 385.855 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m572.07 385.855 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m578.16 385.855-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m580.19 385.855 2.03 2.03zm-107.6 2.03 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m474.62 387.885 4.06 4.06z"}),(0,d.jsx)("path",{fill:"#34be9e",d:"m480.71 387.885 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m572.07 387.885 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#53527c",d:"m578.16 387.885 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m474.62 389.915 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a2b23d",d:"m480.71 389.915 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#0dc9c1",d:"m482.742 389.915 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#5bb47c",d:"m570.04 389.915 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m576.13 389.915 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m476.65 391.945 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#74b166",d:"m482.742 391.945 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m568.01 391.945 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m574.1 391.945-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#262678",d:"m576.13 391.945 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m476.65 393.976 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m478.68 393.976 4.062 4.06-4.06-4.06z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m484.772 393.976 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0dc9c1",d:"m565.98 393.976 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m568.01 393.976 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m574.1 393.976 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m478.68 396.006 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m484.772 396.006 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m486.802 396.006 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#74b166",d:"m565.98 396.006 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m572.07 396.006 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m480.71 398.036 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m486.802 398.036 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0dc9c1",d:"m488.832 398.036 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m563.95 398.036 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m570.04 398.036-4.06 6.09z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m572.07 398.036 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m480.71 400.066 2.032 2.03-2.03-2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m482.742 400.066 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#7fb15c",d:"m488.832 400.066 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#34be9e",d:"m561.92 400.066 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#3a3a7c",d:"m570.04 400.066 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m482.742 402.096 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m484.772 402.096 22.332 22.333-22.332-22.334z"}),(0,d.jsx)("path",{fill:"#74b166",d:"m490.862 402.096 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m559.89 402.096 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m561.92 402.096 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m568.01 402.096 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m484.772 404.127 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m492.893 404.127 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0dc9c1",d:"m557.86 404.127-8.122 10.15 8.12-10.15z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m559.89 404.127 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#737370",d:"m565.98 404.127 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m486.802 406.157 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m494.923 406.157 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m557.86 406.157 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m563.95 406.157-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m565.98 406.157 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#53527c",d:"m488.832 408.187 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m496.953 408.187 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m555.83 408.187 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m563.95 408.187 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m490.862 410.217 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m498.983 410.217 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m553.8 410.217 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m559.89 410.217-4.06 6.09z"}),(0,d.jsx)("path",{fill:"#262678",d:"m561.92 410.217 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m492.893 412.247 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m501.013 412.247 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m551.768 412.247 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m559.89 412.247 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m494.923 414.278 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#68b070",d:"m503.044 414.278 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m547.708 414.278 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m549.738 414.278 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m557.86 414.278 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m496.953 416.308 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#74b166",d:"m505.074 416.308 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#34be9e",d:"m545.678 416.308 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m547.708 416.308 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m553.8 416.308-2.032 4.06 2.03-4.06z"}),(0,d.jsx)("path",{fill:"#262678",d:"m555.83 416.308 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m498.983 418.338 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m507.104 418.338 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0dc9c1",d:"m509.134 418.338 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m543.648 418.338 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m553.8 418.338 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m501.013 420.368 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a2b23d",d:"m509.134 420.368 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m511.164 420.368 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#74b166",d:"m541.617 420.368 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m547.708 420.368-6.09 8.12z"}),(0,d.jsx)("path",{fill:"#808067",d:"m549.738 420.368 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m551.768 420.368 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m503.044 422.398 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m511.164 422.398 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#42bb92",d:"m513.195 422.398 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0dc9c1",d:"m537.557 422.398 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m539.587 422.398 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m547.708 422.398 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1b1b74",d:"m505.074 424.43 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m507.104 424.43 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#74b166",d:"m515.225 424.43 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0dc9c1",d:"m517.255 424.43 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#34be9e",d:"m535.527 424.43 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#adb333",d:"m537.557 424.43 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m545.678 424.43 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m507.104 426.46 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#6e6c70",d:"m509.134 426.46 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m511.164 426.46 4.06 4.06z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m517.255 426.46 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m519.285 426.46 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#68b070",d:"m533.497 426.46 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m543.648 426.46 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#49497d",d:"m511.164 428.49 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#5bb47c",d:"m521.315 428.49 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#27c2aa",d:"m529.436 428.49 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#96b247",d:"m531.466 428.49 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m537.557 428.49-2.03 4.06z"}),(0,d.jsx)("path",{fill:"#808067",d:"m539.587 428.49 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m541.617 428.49 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m513.195 430.52 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8d8d5b",d:"m515.225 430.52 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#8bb252",d:"m523.346 430.52 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#1ac5b5",d:"m525.376 430.52 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#5bb47c",d:"m527.406 430.52 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#58587b",d:"m537.557 430.52 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m515.225 432.55 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m517.255 432.55 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m519.285 432.55 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m533.497 432.55 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m535.527 432.55 2.03 2.03zm-16.242 2.03 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m521.315 434.58 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m529.436 434.58 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m531.466 434.58 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m533.497 434.58 2.03 2.03zm-12.182 2.03 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#667",d:"m523.346 436.61 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#a4a43d",d:"m525.376 436.61 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#99994e",d:"m527.406 436.61 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#32327b",d:"m529.436 436.61 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#262678",d:"m525.376 438.64 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#0e0e6e",d:"m527.406 438.64 2.03 2.03z"}),(0,d.jsx)("path",{fill:"#f90",d:"M529.436 302.617c3.133 7.368 13.176 15.504 15.937 19.492-3.514 3.986-4.216 3.552-3.756 10.96 6.11-6.394 6.22-7.06 10.15-6.09 8.61 8.59 1.542 27.043-5.574 31.055-7.113 4.28-5.822-.148-16.485 5.216 4.89 4.18 10.553-.613 15.182.668 2.516 2.985-1.196 8.424.76 13.546 4.09-.394 3.6-8.653 4.55-11.647 2.99-10.97 20.957-18.623 21.87-28.687 3.79-1.778 7.575-.556 12.182 2.03-2.295-9.428-9.883-9.327-11.918-12.27-4.842-7.4-9.134-15.842-19.475-18.03-7.852-1.664-7.265.5-12.296-2.933-3.127-2.44-12.648-7.053-11.126-3.31z"}),(0,d.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M552.008 310.987a1.636 1.636 0 1 1-3.272-.002 1.636 1.636 0 0 1 3.272.003z"}),(0,d.jsx)("path",{fill:"#f90",d:"M504.328 333.876c5.05-6.212 7.553-18.893 9.79-23.197 5.166 1.243 5.11 2.067 11.445-1.8-8.508-2.417-9.15-2.203-10.128-6.13 3.575-11.628 23.192-13.997 30.063-9.58 7.108 4.29 2.59 5.218 12.313 12.14 1.413-6.276-5.47-9.045-6.5-13.736 1.463-3.618 8.006-2.878 11.62-7-2.258-3.432-9.33.86-12.423 1.417-11.097 2.484-26.256-9.827-35.58-5.934-3.343-2.518-4.03-6.437-3.896-11.718-7.264 6.433-3.63 13.095-5.282 16.27-4.28 7.737-9.74 15.475-6.843 25.642 2.197 7.718 3.835 6.19 3.15 12.24-.696 3.905-.326 14.478 2.27 11.384z"}),(0,d.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M501.184 310.008c.8-.422 1.79-.117 2.21.682a1.635 1.635 0 1 1-2.21-.682"}),(0,d.jsx)("path",{fill:"#f90",d:"M545.374 338.236c-7.93-1.11-20.076 3.308-24.916 3.62-1.608-5.065-.874-5.443-7.46-8.864 2.332 8.532 2.847 8.97-.01 11.84-11.798 2.954-23.974-12.61-23.748-20.775-.004-8.302 3.126-4.915 4.02-16.817-6.1 2.037-4.91 9.36-8.39 12.67-3.855.618-6.606-5.364-12.003-6.326-1.77 3.71 5.563 7.542 7.64 9.9 7.864 8.212 5.17 27.554 13.325 33.52-.427 4.164-3.425 6.78-8.014 9.396 9.263 2.89 13.085-3.667 16.656-3.895 8.837-.34 18.283.33 25.486-7.407 5.468-5.874 3.313-6.484 8.845-9.03 3.702-1.422 12.56-7.208 8.57-7.83z"}),(0,d.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M526.574 353.272a1.635 1.635 0 1 1 1.685-2.805 1.637 1.637 0 0 1-1.686 2.805z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1750.19b70383.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js deleted file mode 100644 index 301bedd91a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1762.e6454223.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1762"],{52857(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"sg_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#sg_inline_svg__a)",children:[(0,e.jsx)("path",{fill:"#fff",d:"M-20 0h720v480H-20z"}),(0,e.jsx)("path",{fill:"#df0000",d:"M-20 0h720v240H-20z"}),(0,e.jsx)("path",{fill:"#fff",d:"M146.05 40.227c-33.243 7.622-57.944 32.237-64.927 65.701-9.488 45.469 20.124 89.99 65.687 99.488-46.031 13.125-93.59-13.332-106.594-58.932-12.996-45.6 13.46-93.16 59.063-106.162 16.007-4.565 30.745-4.594 46.773-.095z"}),(0,e.jsx)("path",{fill:"#fff",d:"m132.98 109.953 4.894 15.119-12.932-9.23-12.87 9.317 4.783-15.144-12.833-9.354 15.876-.137 4.932-15.106 5.031 15.069 15.889.025zM150.539 162.012l4.894 15.119-12.932-9.23-12.87 9.317 4.783-15.143-12.833-9.355 15.877-.137 4.931-15.106 5.032 15.07 15.888.024zM208.964 161.637l4.894 15.119-12.932-9.23-12.87 9.317 4.783-15.143-12.833-9.355 15.877-.137 4.931-15.106 5.032 15.07 15.888.024zM226.392 110l4.894 15.118-12.932-9.23-12.87 9.317 4.783-15.143-12.833-9.354 15.877-.137 4.932-15.106 5.03 15.069 15.89.025zM180.136 75.744l4.894 15.118-12.932-9.23-12.87 9.317 4.783-15.143-12.833-9.355 15.876-.136 4.932-15.106 5.032 15.068 15.888.025z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1762.e6454223.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js deleted file mode 100644 index 3c574a3708..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1797.bc29fd89.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1797"],{59812(i,e,s){s.r(e),s.d(e,{default:()=>n});var _=s(74848);s(47867);let n=i=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,_.jsx)("path",{fill:"#1eb53a",d:"M0 320h640v160H0z"}),(0,_.jsx)("path",{fill:"#0099b5",d:"M0 0h640v160H0z"}),(0,_.jsx)("path",{fill:"#ce1126",d:"M0 153.6h640v172.8H0z"}),(0,_.jsx)("path",{fill:"#fff",d:"M0 163.2h640v153.6H0z"}),(0,_.jsx)("circle",{cx:134.4,cy:76.8,r:57.6,fill:"#fff"}),(0,_.jsx)("circle",{cx:153.6,cy:76.8,r:57.6,fill:"#0099b5"}),(0,_.jsxs)("g",{fill:"#fff",transform:"translate(261.12 122.88)scale(1.92)",children:[(0,_.jsxs)("g",{id:"uz_inline_svg__e",children:[(0,_.jsxs)("g",{id:"uz_inline_svg__d",children:[(0,_.jsxs)("g",{id:"uz_inline_svg__c",children:[(0,_.jsxs)("g",{id:"uz_inline_svg__b",children:[(0,_.jsx)("path",{id:"uz_inline_svg__a",d:"M0-6-1.854-.294 1 .633"}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__a",width:"100%",height:"100%",transform:"scale(-1 1)"})]}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__b",width:"100%",height:"100%",transform:"rotate(72)"})]}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__b",width:"100%",height:"100%",transform:"rotate(-72)"}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__c",width:"100%",height:"100%",transform:"rotate(144)"})]}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__d",width:"100%",height:"100%",y:-24}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__d",width:"100%",height:"100%",y:-48})]}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__e",width:"100%",height:"100%",x:24}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__e",width:"100%",height:"100%",x:48}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__d",width:"100%",height:"100%",x:-48}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__d",width:"100%",height:"100%",x:-24}),(0,_.jsx)("use",{xlinkHref:"#uz_inline_svg__d",width:"100%",height:"100%",x:-24,y:-24})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1797.bc29fd89.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js deleted file mode 100644 index 67fc898758..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1814.16619920.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1814"],{48885(l,s,i){i.r(s),i.d(s,{default:()=>h});var e=i(74848);i(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"sc_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#sc_inline_svg__a)",transform:"scale(.9375)",children:[(0,e.jsx)("path",{fill:"red",d:"M0 0h992.13v512H0z"}),(0,e.jsx)("path",{fill:"#090",d:"m0 512 992.12-170.67V512z"}),(0,e.jsx)("path",{fill:"#fff",d:"m0 512 992.12-341.33v170.67z"}),(0,e.jsx)("path",{fill:"#009",d:"M0 512V0h330.71z"}),(0,e.jsx)("path",{fill:"#ff0",d:"M0 512 330.71 0h330.71z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1814.16619920.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js deleted file mode 100644 index 59d9ce4a30..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1834.3ea07c1f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1834"],{97121(i,l,s){s.r(l),s.d(l,{default:()=>h});var e=s(74848);s(47867);let h=i=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"kw_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#kw_inline_svg__a)",transform:"scale(.9375)",children:[(0,e.jsx)("path",{fill:"#fff",d:"M0 170.64h1024v170.68H0z"}),(0,e.jsx)("path",{fill:"#f31830",d:"M0 341.32h1024V512H0z"}),(0,e.jsx)("path",{fill:"#00d941",d:"M0 0h1024v170.68H0z"}),(0,e.jsx)("path",{d:"M0 0v512l255.45-170.7.55-170.77z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1834.3ea07c1f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js deleted file mode 100644 index 8136cc0019..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1851.1528a0c7.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1851"],{5510(s,i,l){l.r(i),l.d(i,{default:()=>e});var t=l(74848);l(47867);let e=s=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 30 18",...s,children:[(0,t.jsx)("defs",{children:(0,t.jsx)("clipPath",{id:"je_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,t.jsx)("path",{fillOpacity:.67,d:"M-5.254-6h40v30h-40z"})})}),(0,t.jsxs)("g",{clipPath:"url(#je_inline_svg__a)",transform:"matrix(.75 0 0 .75 3.94 2.25)",children:[(0,t.jsx)("path",{fill:"#fff",d:"M-10.254-6h50v30h-50z"}),(0,t.jsx)("path",{fill:"#df112d",fillRule:"evenodd",d:"M-10.254-6v1.927L11.517 9l-21.771 13.073V24h3.281l21.72-13.073L36.464 24h3.281v-1.927L17.976 9l21.77-13.073V-6h-3.28L14.745 7.073-6.973-6z"}),(0,t.jsxs)("g",{transform:"translate(-9.649 -6.038)scale(.20361)",children:[(0,t.jsx)("path",{fill:"#e8112d",stroke:"#000",strokeWidth:.125,d:"M132.66 22.233c3.156 12.778 1.425 28.56-12.829 37.316-14.255-8.756-15.986-24.538-12.829-37.316 3.36-3.055 18.632-4.938 25.658 0z"}),(0,t.jsx)("path",{fill:"#f9dd16",stroke:"#000",strokeWidth:.125,d:"M119.81 19.667c5.226 0 10.093 1.383 12.962 3.176.563-4.405 2.561-8.811 4.918-12.142-2.459-.05-3.561 1.256-3.586 2.613-.615-1.742-3.023-1.64-3.766-.691 2.69 1.818.615 5.046-1.818 4.38-1.143-.313-1.747-1.11-1.961-2.267a1.322 1.322 0 1 0-.564-.088c-.769 1.256-2.148 1.632-3.136 1.356-1.281-.359-1.819-1.512-1.819-2.536 0-2.664 2.561-3.074 3.33-2.613-.051-1.793-2.869-3.227-3.74-1.742.973-1.742.922-4.2-.82-5.84-1.741 1.64-1.793 4.098-.819 5.84-.871-1.485-3.689-.051-3.74 1.742.768-.461 3.33-.051 3.33 2.613 0 1.024-.538 2.177-1.819 2.536-.988.276-2.367-.1-3.137-1.356.209-.08.401-.212.552-.398a1.322 1.322 0 1 0-1.115.486c-.214 1.157-.819 1.954-1.961 2.267-2.433.666-4.508-2.562-1.819-4.38-.742-.948-3.15-1.05-3.765.691-.026-1.357-1.127-2.664-3.586-2.613 2.356 3.33 4.354 7.736 4.918 12.142 2.869-1.793 7.736-3.176 12.961-3.176z"}),(0,t.jsxs)("g",{id:"je_inline_svg__b",stroke:"#000",children:[(0,t.jsxs)("g",{fill:"#f9dd16",strokeWidth:.125,children:[(0,t.jsx)("path",{d:"M130.65 32.2c-.315.075-.315.481-.48.481.819-.023 1.217-.248 1.465-.661-.18.165-.023.48-.083.556.601-.21.887-.722.677-1.067.135.195.526.3.646.315-.421-.33-.12-1.082-.797-1.473.226-.015.662.24.782.541-.105-.676-.211-1.112-.767-1.488.06.068.376.128.511 0-.36-.225-.466-.6-.435-.841.042-.337-.181-.406-.602-.3-.379.094-1.247.15-1.758.15-1.052 0-1.969 0-2.841-.602 1.308.541 2.976-.601 2.976-1.548 0-1.052-1.293-1.909-3.908-1.338-2.615.572-5.801.331-5.801-.54 0-.872 2.284-.993 3.457-.812 1.172.18 2.013.3 4.208-.481-.541.21-2.285.27-3.667-.12-1.383-.391-4.78-.391-4.81 1.442-.03 1.834 3.617 1.667 6.764 1.203 1.833-.27 2.795-.09 2.795.51 0 .572-1.683.812-2.976.662s-2.615-.12-4.148.33c-1.28.377-2.164 0-3.577.241-.685.117-2.345 0-3.164-1.352-.504.36-2.022 1.116-2.277 1.852-.361.676-.12 1.349.36 2.01.606.833-.3.707-.946.737-.886.041-2.072-.094-2.691-.797-.548-.622-1.278-1.121-1.861-.66-.3.238-.012.55.225.463.235-.087.513.087.764.197-.401-.172-.842-.038-1.014.115-.237.213.051.619.338.475.225-.112.687-.187.987.088-.325-.063-.663-.05-.825.125s-.037.428.313.412c.562-.025.706.37 1.269.288-.346.045-.542.226-.632.36.526-.24 1.107.409 1.789.256-.266.11-.695.371-.691.572.405-.466 3.126.36 3.186-.662.075.21.06.526-.15.797.348-.21 1.473-.286 1.818-1.097.03.24-.015.556-.225.63.361.119.836-.15 1.322-.87.193-.287.239-.477.206-.692.482.018.831-.103 1.207-.421.391-.33.812.27 1.473-.15.662-.421 1.233-.06 1.593-.27.361-.211.857.074 1.248-.166s.997.118 1.644-.393c1.018.372 2.206 1.063 5.12.528 1.67-.307 2.194.256 2.194 1.022 0 .526-.308.572-.541.586-.929.057-1.328-.347-1.695-.218-.246.088-.396.488-.04.625-.294.15-.256.432-.106.535s.537.01.8-.113c-.338.153-.688.428-.488.716.121.174.427.322.713-.05.287-.375.812-.688 1.146-.638zM112.14 24.264c-.842-.346-1.126-.355-.932.33.083.294.285.707.488.895.008-.285.113-1.075.444-1.225z"}),(0,t.jsx)("path",{d:"M114.77 24.264c.842-.346 1.126-.355.932.33-.083.294-.286.707-.489.895-.007-.285-.112-1.075-.443-1.225z"}),(0,t.jsx)("path",{d:"M113.46 23.802c1.593 0 1.792.748 1.784 1.68-.007 1.007-.548.66-.856 1.953-.12.506-.523.534-.928.534-.406 0-.808-.028-.929-.534-.307-1.292-.849-.946-.856-1.953-.008-.932.191-1.68 1.785-1.68z"}),(0,t.jsx)("path",{d:"M109.36 27.495c-.406-.24-.668-.074-.833-.029.526.135.547.81 1.75 1.126-.271-.075-.421.075-.677-.06.496.39 1.052.843 2.225.857.654.007.202.346-.226.15.444.459 1.323.083 1.879.917.105-.646-1.037-1.668-.511-2.405-1.622-.069-1.755-.968-2.69-1.683-.761-.582-.829-1.173-1.165-2.28-.153-.501-.74-.814-1.065-.695-.284.104-.388.35-.144.535.244.184.556.209.623.676-.317-.38-.792-.517-1.02-.28-.139.145-.083.482.216.513.487.05.137.525.691.99-.491-.552-.916-.602-1.179-.302-.157.18 0 .5.338.465.489-.05 1.056 1.19 1.788 1.505zM122.43 32.139c-.256.045-.18.466-.526.496.827 0 1.247-.195 1.638-.511-.18.105-.255.376-.27.526.436-.376 1.473-.406 2.014-.3s.631-.15.826-.496c.196-.346-.075-.542-.345-.812-.271-.27-.331-.646-.271-1.278-1.443-1.923-4.028-.992-4.058-.15.932 1.082 1.052.962 1.834 1.112.781.15 1.26.15.736.586-.18.15-.932.08-1.518.106-1.311.057-1.911-.906-2.298-.406-.319.411.01.593.66.57-.45.004-1.047-.02-.945.399.172.706.847-.131 1.11.16-.225-.054-.575.084-.588.296-.012.213.5.488 1.063.04a1.64 1.64 0 0 1 .938-.338z"})]}),(0,t.jsxs)("g",{fill:"none",strokeWidth:.125,children:[(0,t.jsx)("path",{d:"M123.55 29.206c-.469-.172-.899-.276-1.449-.163M116.48 28.983c-.386.83-.152 1.239-.095 1.624M112.37 25.052c.265.133.414-.242.803.156-.107-.116-.24.308-.538.026M114.53 25.052c-.265.133-.414-.242-.803.156.107-.116.24.308.538.026"}),(0,t.jsx)("path",{d:"M113.73 25.207c-.091.075-.1-.06-.031.295.128.651.279.956-.248.956-.538 0-.375-.305-.248-.956.07-.355.061-.22-.03-.295"})]}),(0,t.jsx)("path",{fill:"#ff0016",strokeWidth:.063,d:"M113.46 27.706c.428 0 .676-.007.609-.609-.028-.241.293-.337.18-.729.12.481-.789.435-.789.217 0 .218-.909.264-.789-.217-.113.392.207.488.18.73-.067.6.181.608.609.608z"}),(0,t.jsx)("g",{strokeWidth:.063,children:(0,t.jsx)("path",{d:"m113.07 26.489-1.028-.287M113.07 26.543l-1.148-.01M113.08 26.602l-.979.262M113.84 26.489l1.028-.287M113.84 26.543l1.148-.01M113.83 26.602l.979.262"})}),(0,t.jsx)("g",{fill:"#0051ba",strokeWidth:.013,children:(0,t.jsx)("path",{d:"M108.13 23.414c-.299-.372-1.048-.058-1.063.404.253-.3.666.132.891.041.156-.063.293-.294.172-.445zM107.75 24.295c-.299-.372-1.047-.058-1.062.404.252-.3.665.132.891.041.156-.062.293-.293.171-.445zM107.55 25.479c-.339-.336-1.047.06-1.01.52.218-.325.676.057.89-.058.148-.08.258-.325.12-.462zM107.91 29.148c-.376-.295-1.033.18-.944.634.179-.349.678-.022.877-.161.138-.097.22-.353.067-.473zM107.89 29.951c-.448-.165-.928.49-.703.893.062-.387.638-.23.785-.423.102-.134.1-.403-.082-.47zM108.46 30.551c-.448-.165-.928.49-.704.893.063-.387.639-.23.786-.423.102-.134.1-.403-.082-.47zM120.2 31.714c-.448-.165-.928.49-.703.893.063-.387.638-.23.785-.423.102-.134.1-.403-.082-.47zM120.81 32.258c-.464-.113-.866.592-.597.968.018-.392.608-.301.732-.51.086-.145.054-.412-.135-.458zM120.38 30.942c-.414-.239-.998.325-.845.76.128-.37.668-.117.846-.283.123-.115.167-.38-.001-.477zM128.73 31.883c-.464-.113-.866.592-.597.968.019-.392.609-.301.732-.51.086-.145.054-.412-.135-.458zM128.75 31.146c-.421-.225-.985.359-.818.79.115-.375.664-.141.836-.313.119-.12.154-.385-.018-.477zM129.07 32.542c-.468-.093-.839.63-.554.993.002-.392.595-.327.709-.542.08-.149.036-.413-.155-.451zM113.49 27.345c.294 0 .413.086.413.617 0 1.125-.013 1.609-.375 1.609-.363 0-.338-.46-.338-1.286 0-.43 0-.646-.087-.61 0-.282.125-.33.387-.33z"})})]}),(0,t.jsx)("use",{xlinkHref:"#je_inline_svg__b",width:30,height:18,transform:"matrix(.9 0 0 .9 11.6 13.7)"}),(0,t.jsx)("use",{xlinkHref:"#je_inline_svg__b",width:30,height:18,transform:"matrix(.67 0 0 .75 39.2 27.5)"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1851.1528a0c7.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js deleted file mode 100644 index 9c70598560..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 1875.048f7c1f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["1875"],{98494(l,s,i){i.r(s),i.d(s,{default:()=>t});var e=i(74848);i(47867);let t=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"kn_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-80.109 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#kn_inline_svg__a)",transform:"translate(75.102)scale(.9375)",children:[(0,e.jsx)("path",{fill:"#ffe900",d:"M-107.85.239H629.8v511.29h-737.65z"}),(0,e.jsx)("path",{fill:"#35a100",d:"m-108.24.239.86 368.58L466.6-.001l-574.84.238z"}),(0,e.jsx)("path",{fill:"#c70000",d:"m630.69 511.53-1.347-383.25-578.98 383.54 580.33-.283z"}),(0,e.jsx)("path",{d:"m-107.87 396.61.49 115.39 125.25-.16L629.63 101.7l-.69-100.32L505.18.239l-613.05 396.37z"}),(0,e.jsx)("path",{fill:"#fff",d:"m380.455 156.62-9.913-42.245 33.354 27.075 38.014-24.636-17.437 41.311 33.404 27.021-44.132-1.541-17.37 41.333-9.835-42.265-44.138-1.48zM105.21 335.53l-9.913-42.245 33.354 27.075 38.014-24.636-17.437 41.311 33.404 27.021-44.132-1.541-17.37 41.333-9.835-42.265-44.138-1.48z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/1875.048f7c1f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js deleted file mode 100644 index 536319a867..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 198.96c8f5d3.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["198"],{82405(l,s,e){e.r(s),e.d(s,{default:()=>f});var i=e(74848);e(47867);let f=l=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:(0,i.jsxs)("g",{fillRule:"evenodd",children:[(0,i.jsx)("path",{fill:"#f31930",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#fff",d:"M406.977 247.473c0 66.215-54.606 119.89-121.97 119.89S163.04 313.686 163.04 247.472s54.606-119.89 121.968-119.89 121.97 53.677 121.97 119.89z"}),(0,i.jsx)("path",{fill:"#f31830",d:"M413.077 247.467c0 52.97-43.686 95.91-97.575 95.91s-97.574-42.94-97.574-95.91 43.686-95.91 97.574-95.91 97.575 42.94 97.575 95.91"}),(0,i.jsx)("path",{fill:"#fff",d:"m430.726 191.465-.985 44.318-41.345 11.225 40.756 14.514-.984 40.642 26.58-31.738 40.164 13.934-23.233-34.06 28.352-33.868-43.513 11.998-25.793-36.964z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/198.96c8f5d3.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js deleted file mode 100644 index e52c8bd4b9..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2015.28b3f667.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2015"],{31474(l,s,h){h.r(s),h.d(s,{default:()=>i});var t=h(74848);h(47867);let i=l=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,t.jsx)("defs",{children:(0,t.jsx)("clipPath",{id:"kr_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,t.jsx)("path",{fillOpacity:.67,d:"M-95.808-.44h682.67v512h-682.67z"})})}),(0,t.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#kr_inline_svg__a)",transform:"translate(89.82 .412)scale(.9375)",children:[(0,t.jsx)("path",{fill:"#fff",d:"M610.61 511.56h-730.17v-512h730.17z"}),(0,t.jsx)("path",{fill:"#fff",d:"M251.871 256.021c0 62.137-50.372 112.508-112.507 112.508-62.137 0-112.507-50.372-112.507-112.508 0-62.137 50.371-112.507 112.507-112.507S251.87 193.886 251.87 256.02"}),(0,t.jsx)("path",{fill:"#c70000",d:"M393.011 262.55c0 81.079-65.034 146.803-145.261 146.803S102.488 343.63 102.488 262.55s65.034-146.804 145.262-146.804S393.01 181.471 393.01 262.55"}),(0,t.jsx)("path",{d:"m-49.417 126.44 83.66-96.77 19.821 17.135-83.66 96.771zM-22.018 150.127l83.66-96.77 19.82 17.135-83.66 96.77z"}),(0,t.jsx)("path",{d:"m-49.417 126.44 83.66-96.77 19.821 17.135-83.66 96.771z"}),(0,t.jsx)("path",{d:"m-49.417 126.44 83.66-96.77 19.821 17.135-83.66 96.771zM5.967 174.32l83.66-96.77 19.82 17.136-83.66 96.77z"}),(0,t.jsx)("path",{d:"m-49.417 126.44 83.66-96.77 19.821 17.135-83.66 96.771z"}),(0,t.jsx)("path",{d:"m-49.417 126.44 83.66-96.77 19.821 17.135-83.66 96.771zM459.413 29.638l83.002 97.335-19.937 17-83.002-97.334zM403.707 77.141l83.002 97.335-19.936 17-83.002-97.334z"}),(0,t.jsx)("path",{fill:"#fff",d:"m417.55 133.19 78.602-67.814 14.641 16.953-83.996 75.519z"}),(0,t.jsx)("path",{d:"m514.228 372.013-80.416 95.829-19.716-16.4 80.417-95.828zM431.853 53.14l83.002 97.334-19.936 17.001-83.002-97.334zM541.475 394.676l-80.417 95.829-19.715-16.399 80.417-95.829zM486.39 348.857l-80.417 95.83-19.715-16.4 80.416-95.829z"}),(0,t.jsx)("path",{fill:"#3d5897",d:"M104.6 236.68c4.592 36.974 11.297 78.175 68.199 82.455 21.328 1.278 62.817-5.073 77.061-63.19 18.688-55.829 74.975-71.88 113.28-41.613 21.718 14.166 27.727 36.666 29.283 53.557-1.739 54.243-32.874 101.2-72.823 122.14-45.93 27.3-109.56 27.87-165.3-13.49-25.12-23.57-60.219-67.02-49.7-139.86z"}),(0,t.jsx)("path",{fill:"#fff",d:"m435.91 370.59 78.734 67.661-14.591 16.997-87.156-71.851z"}),(0,t.jsx)("path",{d:"m-1.887 357.197 83.002 97.335-19.937 17-83.002-97.334z"}),(0,t.jsx)("path",{fill:"#fff",d:"m-16.188 437.25 78.602-67.814 14.641 16.953-83.996 75.519z"}),(0,t.jsx)("path",{d:"m25.672 333.696 83.003 97.334-19.937 17-83.002-97.334zM-30.033 381.199l83.002 97.334-19.936 17L-49.97 398.2z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2015.28b3f667.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js deleted file mode 100644 index b7898e3014..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2016.2efa4d68.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2016"],{6115(l,f,e){e.r(f),e.d(f,{default:()=>i});var s=e(74848);e(47867);let i=l=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:(0,s.jsxs)("g",{strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#229e45",fillRule:"evenodd",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#f8e509",fillRule:"evenodd",d:"m321.406 435.935 301.483-195.67-303.308-196.2L17.11 240.734l304.296 195.2z"}),(0,s.jsx)("path",{fill:"#2b49a3",fillRule:"evenodd",d:"M452.77 240.005c0 70.328-57.103 127.34-127.544 127.34s-127.544-57.012-127.544-127.34 57.104-127.34 127.544-127.34c70.442 0 127.545 57.012 127.545 127.34z"}),(0,s.jsx)("path",{fill:"#ffffef",fillRule:"evenodd",d:"M283.3 316.274 279.357 314l-4.093 2.025.917-4.55-3.162-3.332 4.52-.53 2.124-4.08 1.894 4.22 4.46.81-3.345 3.13m86.098 26.224-3.94-2.274-4.092 2.025.916-4.55-3.16-3.332 4.52-.53 2.122-4.08 1.894 4.22 4.46.81-3.345 3.13m-36.215-29.993-3.404-1.964-3.536 1.748.792-3.93-2.73-2.88 3.904-.457 1.834-3.523 1.636 3.645 3.853.7-2.89 2.705m86.865-8.477-3.342-1.928-3.472 1.718.777-3.858-2.68-2.827 3.833-.45 1.8-3.46 1.607 3.58 3.783.686-2.837 2.657M330.37 265.03l-3.94-2.273-4.093 2.025.916-4.55-3.162-3.332 4.522-.53 2.123-4.08 1.894 4.22 4.46.81-3.346 3.13M225.13 225.52l-3.94-2.274-4.094 2.025.916-4.548-3.16-3.333 4.52-.53 2.122-4.08 1.894 4.22 4.46.81-3.345 3.13m13.283 57.14-3.94-2.275-4.094 2.025.916-4.548-3.16-3.334 4.52-.53 2.123-4.08 1.894 4.22 4.46.81-3.345 3.132m131.954-67.33-3.48-2.007-3.616 1.788.81-4.017-2.794-2.944 3.994-.47 1.875-3.603 1.673 3.728 3.94.715-2.955 2.766m-6.665 38.24-2.74-1.582-2.85 1.408.64-3.164-2.2-2.32 3.145-.368 1.477-2.838 1.318 2.936 3.103.563-2.327 2.18m-142.199 50.422-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09m200.14 15.164-2.144-1.135-2.227 1.01.5-2.27-1.72-1.666 2.46-.265 1.154-2.038 1.03 2.108 2.426.404-1.82 1.563"}),(0,s.jsx)("path",{fill:"#ffffef",fillRule:"evenodd",d:"m219.263 287.603-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09"}),(0,s.jsx)("path",{fill:"#ffffef",fillRule:"evenodd",d:"m219.263 287.603-2.63-1.518-2.734 1.352.61-3.037-2.11-2.225 3.02-.354 1.416-2.723 1.264 2.818 2.978.54-2.233 2.09m42.299 3.048-2.63-1.52-2.733 1.353.61-3.037-2.11-2.225 3.02-.354 1.416-2.722 1.265 2.817 2.978.54-2.233 2.09m-4.786 16.989-2.63-1.518-2.734 1.352.612-3.038-2.11-2.225 3.017-.354 1.417-2.724 1.265 2.817 2.977.54-2.233 2.09m87.381-22.301-2.63-1.52-2.733 1.353.61-3.036-2.11-2.225 3.018-.353 1.417-2.724 1.265 2.817 2.977.54-2.233 2.09m-25.099 3.048-2.63-1.518-2.734 1.352.612-3.037-2.11-2.225 3.018-.353 1.417-2.724 1.264 2.817 2.98.54-2.234 2.09m-68.8-5.838-1.648-.952-1.714.847.384-1.902-1.323-1.394 1.89-.222.89-1.706.792 1.765 1.864.34-1.4 1.31m167.838 45.384-2.63-1.518-2.733 1.35.612-3.035-2.11-2.226 3.017-.354 1.417-2.724 1.264 2.817 2.978.54-2.233 2.09m-20.832 5.844-2.178-1.26-2.264 1.122.507-2.522-1.748-1.848 2.5-.294 1.174-2.262 1.048 2.34 2.466.45-1.85 1.735m10.371 2.297-2.03-1.173-2.108 1.044.472-2.344-1.63-1.718 2.33-.274 1.093-2.103.976 2.177 2.296.417-1.723 1.615m29.11-22.761-1.955-1.13-2.03 1.006.454-2.257-1.567-1.655 2.243-.262 1.053-2.024.94 2.092 2.21.402-1.658 1.553M394.24 327.69l-2.554-1.395-2.652 1.24.594-2.786-2.05-2.043 2.93-.325 1.376-2.5 1.227 2.586 2.89.496-2.167 1.92m.549 14.247-2.33-1.395-2.418 1.24.542-2.786-1.87-2.044 2.673-.324 1.255-2.5 1.12 2.586 2.635.496-1.977 1.918m-18.929-23.055-1.955-1.13-2.032 1.006.455-2.257-1.568-1.653 2.242-.263 1.054-2.025.94 2.093 2.213.402-1.66 1.554m-17.781 2.273-1.954-1.13-2.03 1.006.454-2.257-1.57-1.653 2.244-.263 1.053-2.025.94 2.093 2.21.402-1.658 1.554m-30.408-24.59-1.955-1.128-2.03 1.004.454-2.257-1.568-1.654 2.243-.264 1.053-2.024.94 2.094 2.212.402-1.66 1.553m3.734 57.024-1.656-.956-1.72.85.386-1.91-1.33-1.4 1.9-.223.893-1.715.795 1.772 1.874.34-1.407 1.316m-46.131-86.63-3.942-2.274-4.093 2.025.917-4.548-3.162-3.334 4.52-.53 2.124-4.08 1.894 4.22 4.46.81-3.345 3.132"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M444.368 285.817c1.944-5.083 4.45-12.75 5.783-19.786-67.742-59.508-143.26-89.993-238.68-83.72-3.422 6.558-6.16 13.423-8.47 20.853 113.063-10.786 195.936 39.27 241.37 82.654z"}),(0,s.jsx)("path",{fill:"#309e3a",d:"m413.914 252.36 2.42 1.323c-.38.858-.48 1.61-.31 2.25q.27.968 1.335 1.688 1.127.771 2.016.68.9-.091 1.335-.734a1.27 1.27 0 0 0 .225-.863q-.04-.451-.495-1.075-.315-.42-1.53-1.777-1.56-1.74-1.86-2.936-.42-1.681.51-3.06.599-.886 1.612-1.318 1.03-.434 2.24-.198c.81.157 1.664.54 2.55 1.143q2.18 1.48 2.63 3.184.458 1.707-.565 3.345l-2.404-1.484q.452-.998.218-1.723-.22-.727-1.21-1.397-1.015-.69-1.874-.663a1.01 1.01 0 0 0-.856.468q-.278.414-.13.943c.13.45.668 1.193 1.625 2.234q1.43 1.56 1.95 2.547.533.985.482 2.05-.036 1.06-.778 2.16a4.1 4.1 0 0 1-1.812 1.493q-1.138.496-2.437.24-1.291-.266-2.798-1.29-2.195-1.489-2.687-3.3c-.322-1.213-.125-2.523.6-3.925zm-11.478-7.533 2.472 1.22q-.516 1.31-.22 2.26c.208.637.672 1.183 1.4 1.635q1.162.722 2.043.596.901-.128 1.306-.786a1.25 1.25 0 0 0 .19-.87q-.057-.453-.54-1.058c-.22-.272-.75-.84-1.597-1.713q-1.63-1.675-1.978-2.86c-.323-1.11-.194-2.133.385-3.077a3.6 3.6 0 0 1 1.56-1.38c.674-.316 1.42-.413 2.23-.29q1.228.19 2.595 1.04 2.237 1.39 2.753 3.074.527 1.689-.427 3.365l-2.464-1.385q.414-1.014.15-1.728-.252-.722-1.264-1.35-1.045-.65-1.9-.586-.553.039-.838.504-.26.421-.09.944.217.664 1.71 2.168 1.493 1.5 2.052 2.465.57.962.563 2.027c.007.708-.227 1.437-.69 2.193a4.16 4.16 0 0 1-1.75 1.565q-1.12.542-2.427.336c-.865-.14-1.815-.536-2.848-1.175q-2.248-1.4-2.815-3.19-.562-1.8.438-3.943zm-14.206-3.807 7.276-11.966 8.837 5.416-1.23 2.026-6.43-3.942-1.615 2.652 5.983 3.668-1.225 2.015-5.984-3.667-1.977 3.256 6.657 4.08-1.228 2.017-9.063-5.557zm-20.692-16.993 1.08-2.1 5.4 2.796-2.546 4.962c-.79.238-1.78.296-2.982.17a9.4 9.4 0 0 1-3.317-.986q-1.949-1.008-2.976-2.572a5.9 5.9 0 0 1-.974-3.47 8.6 8.6 0 0 1 .977-3.703q.998-1.946 2.59-3.04c1.057-.727 2.25-1.09 3.57-1.09 1.008-.002 2.104.306 3.29.916q2.313 1.199 3.104 2.846.809 1.643.298 3.555l-2.728-.82q.21-1.054-.25-1.957-.445-.908-1.527-1.47-1.643-.851-3.155-.305-1.499.545-2.554 2.6-1.141 2.22-.73 3.842.414 1.61 2.008 2.437.786.406 1.73.507c.64.066 1.22.05 1.753-.05l.81-1.582-2.872-1.485zm-90.242-22.379 2.034-13.867 4.172.62 1.123 9.826 3.86-9.093 4.188.618-2.033 13.87-2.59-.382 1.6-10.918-4.343 10.512-2.685-.398-1.134-11.32-1.6 10.915-2.592-.382zm-14.108-1.638 1.305-13.96 10.307.974-.217 2.36-7.503-.706-.29 3.095 6.978.657-.22 2.352-6.98-.658-.353 3.8 7.764.73-.22 2.354-10.572-.998z"}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"M216.5 191.28c.04-1.43.284-2.62.736-3.58a6.7 6.7 0 0 1 1.346-1.884q.849-.828 1.844-1.21 1.32-.52 3.023-.475 3.084.089 4.877 2.057 1.807 1.973 1.714 5.395-.09 3.392-1.982 5.264-1.89 1.861-4.963 1.777-3.114-.085-4.9-2.037-1.785-1.963-1.694-5.307z"}),(0,s.jsx)("path",{fill:"#f7ffff",d:"M219.414 191.252q-.064 2.379.997 3.643 1.063 1.255 2.748 1.3 1.684.044 2.794-1.138 1.118-1.195 1.184-3.633.065-2.408-.96-3.622-1.014-1.214-2.757-1.262-1.743-.046-2.843 1.128-1.099 1.166-1.163 3.584"})]}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"m233.052 198.51.163-14.017 5.933.07q2.24.026 3.244.42 1.015.385 1.613 1.36c.598.975.593 1.385.584 2.215q-.02 1.578-.956 2.598-.935 1.013-2.777 1.26.91.544 1.49 1.193.594.645 1.585 2.293l1.673 2.754-3.372-.04-2.002-3.074q-1.066-1.647-1.46-2.072-.397-.434-.842-.593-.446-.166-1.418-.177l-.57-.008-.068 5.852-2.82-.033z"}),(0,s.jsx)("path",{fill:"#fff",d:"m235.976 190.455 2.086.024q2.03.025 2.536-.142t.796-.584c.29-.417.293-.627.3-1.048q.007-.708-.37-1.142-.365-.445-1.05-.567-.344-.052-2.057-.072l-2.2-.026-.04 3.555z"})]}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"m249.003 185.188 5.147.26q1.74.09 2.64.405a4.7 4.7 0 0 1 2.036 1.396q.829.969 1.218 2.34.39 1.36.29 3.326-.088 1.728-.58 2.96-.599 1.499-1.618 2.396-.766.678-2.034 1.016-.947.249-2.51.17l-5.295-.27.706-14z"}),(0,s.jsx)("path",{fill:"#fff",d:"m251.706 187.685-.468 9.274 2.103.105q1.18.062 1.71-.046c.46-.093.85-.268 1.16-.526q.48-.389.81-1.31.333-.93.416-2.553c.083-1.623 0-1.918-.16-2.507q-.24-.883-.73-1.397-.49-.513-1.27-.724-.584-.165-2.306-.25l-1.264-.067z"})]}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"m317.63 210.22 3.26-13.63 4.4 1.06q2.5.603 3.21.99 1.094.589 1.634 1.81.54 1.214.152 2.84-.299 1.255-.958 2-.658.748-1.48 1.07-.81.316-1.57.3-1.029-.041-2.89-.49l-1.786-.432-1.23 5.142-2.743-.66z"}),(0,s.jsx)("path",{fill:"#fff",d:"m323.086 199.552-.926 3.868 1.5.362q1.622.391 2.218.308.599-.083 1.013-.464a1.85 1.85 0 0 0 .568-.984q.18-.744-.14-1.33a1.94 1.94 0 0 0-.957-.87q-.466-.214-1.95-.57l-1.324-.32z"})]}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"m330.606 214.106 4.64-13.22 5.598 1.98q2.112.747 2.937 1.445.839.693 1.093 1.807c.254 1.114.12 1.505-.156 2.286q-.523 1.488-1.736 2.153-1.21.657-3.032.298.687.81 1.03 1.61c.238.536.49 1.43.765 2.683l.704 3.15-3.18-1.126-.913-3.556q-.483-1.904-.72-2.435-.237-.54-.607-.834-.368-.302-1.286-.627l-.536-.192-1.938 5.52-2.66-.942z"}),(0,s.jsx)("path",{fill:"#fff",d:"m335.938 207.426 1.967.695q1.913.678 2.445.683.533.008.943-.295.409-.301.616-.896.233-.668.017-1.2-.204-.539-.813-.876-.309-.16-1.924-.73l-2.075-.736-1.177 3.356z"})]}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"M347.01 213.6q.636-2.045 1.673-3.24a6.6 6.6 0 0 1 1.808-1.45q1.044-.565 2.102-.665 1.41-.14 3.038.37 2.947.921 4.14 3.308 1.205 2.39.19 5.658-1.005 3.242-3.33 4.528-2.323 1.277-5.26.357-2.973-.93-4.164-3.294-1.19-2.375-.196-5.57z"}),(0,s.jsx)("path",{fill:"#fff",d:"M349.826 214.385q-.706 2.27-.026 3.778.683 1.494 2.293 2 1.608.502 2.996-.336 1.399-.844 2.122-3.172.714-2.301.056-3.75-.649-1.444-2.313-1.964t-3.04.312q-1.371.822-2.09 3.133z"})]}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"m374.305 233.12 6.415-12.45 5.27 2.736c1.326.69 2.23 1.3 2.71 1.84q.735.799.835 1.94c.1 1.141-.092 1.505-.47 2.242q-.72 1.4-2.017 1.892-1.288.483-3.043-.128.567.899.8 1.74.238.845.387 2.763l.262 3.215-2.993-1.555-.415-3.648q-.217-1.955-.378-2.512-.16-.567-.487-.91-.322-.35-1.186-.798l-.507-.264-2.677 5.197z"}),(0,s.jsx)("path",{fill:"#fff",d:"m380.503 227.226 1.853.962q1.8.936 2.33 1.016.526.081.973-.162.444-.24.733-.803.323-.629.184-1.186-.13-.562-.685-.98-.283-.201-1.808-.993l-1.952-1.013-1.63 3.16z"})]}),(0,s.jsxs)("g",{strokeOpacity:.502,children:[(0,s.jsx)("path",{fill:"#309e3a",d:"M426.107 258.704q1.195-1.774 2.536-2.62a6.6 6.6 0 0 1 2.146-.862 5.45 5.45 0 0 1 2.2-.028q1.394.276 2.805 1.235 2.556 1.735 3.014 4.366.465 2.635-1.448 5.472-1.894 2.81-4.488 3.37-2.591.548-5.14-1.182-2.577-1.752-3.04-4.362-.454-2.62 1.413-5.39z"}),(0,s.jsx)("path",{fill:"#fff",d:"M428.578 260.254q-1.329 1.973-1.112 3.61.225 1.63 1.62 2.578 1.397.948 2.967.55 1.583-.404 2.944-2.425 1.344-1.995 1.13-3.572-.207-1.57-1.65-2.552c-1.443-.982-1.962-.85-3-.583q-1.548.392-2.9 2.394z"})]}),(0,s.jsx)("path",{fill:"#309e3a",d:"m301.824 204.523 2.248-9.84 7.268 1.675-.378 1.662-5.287-1.217-.504 2.18 4.926 1.136-.382 1.655-4.918-1.132-.614 2.677 5.475 1.26-.378 1.66-7.456-1.717z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2016.2efa4d68.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js deleted file mode 100644 index f60af0e90f..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 206.0227085b.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["206"],{33421(c,l,s){s.r(l),s.d(l,{default:()=>i});var e=s(74848);s(47867);let i=c=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...c,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"lb_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-85.333 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{clipPath:"url(#lb_inline_svg__a)",transform:"translate(80)scale(.9375)",children:[(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,e.jsx)("path",{fill:"red",d:"M-128 383.993h767.975v128H-128zM-128 0h767.975v128.001H-128z"}),(0,e.jsx)("path",{fill:"#fff",d:"M-128 128.001h767.975v255.992H-128z"})]}),(0,e.jsx)("path",{fill:"#007900",d:"M252.1 129.95c-7.81 15.593-13.018 15.593-26.034 25.99-5.206 5.198-13.016 7.797-2.603 12.996-10.413 5.197-15.62 7.797-20.827 18.192l2.603 2.599s9.895-4.85 10.414-2.599c1.73 2.078-13.024 10.051-14.929 11.263-1.904 1.212-11.106 6.93-11.106 6.93-13.016 10.397-20.827 7.796-28.637 23.39l26.034-2.597c5.207 18.192-13.017 20.79-26.034 28.588l-20.827 12.996c5.208 18.192 20.827 7.796 33.844 2.598l2.604 2.6v5.197l-26.034 12.996s-30.733 17.584-31.24 18.192c-.21.942 0 5.198 0 5.198 10.413 2.6 26.034 5.199 36.448 0 13.016-5.198 15.619-10.396 31.24-10.396-18.224 12.994-31.24 18.193-52.068 20.791v10.397c15.62 0 26.033 0 39.051-2.599l33.844-10.396c7.81 0 15.62 7.797 13.017 15.593-7.81 28.588-39.052 23.391-49.466 46.781l41.656-15.593c10.413-5.198 20.826-10.396 33.843-7.796 15.62 5.196 15.62 15.594 36.448 20.79l-5.206-12.993c5.206 2.598 10.413 2.598 15.619 5.197 13.018 5.2 15.621 10.396 31.24 7.797-13.016-15.594-15.619-12.994-26.033-23.39-10.413-15.594-15.62-38.984 0-41.584l18.224 5.199c18.223 2.598 18.223-2.599 44.257 7.797 15.621 5.197 20.828 12.994 39.052 7.796-7.81-18.192-36.448-31.188-54.671-36.386 20.826-12.996 15.619 5.198 44.257-2.6v-5.196c-20.826-15.594-28.637-28.59-57.275-28.59l44.259-5.198v-5.198s-43.649-11.451-44.664-11.858c.304-1.32 1.372-3.366 4.27-4.497 8.289 5.366 33.357 4.74 34.78 4.64-.732-6.396-12.61-11.676-23.023-16.873 0 0-44.59-27.483-44.811-29.916.884-6.965 18.314 1.107 37 6.524-5.206-10.396-15.62-15.593-26.033-18.192l15.62-2.598c-10.413-23.391-36.448-20.792-52.067-31.188-10.415-7.797-10.415-12.996-26.034-20.792z"}),(0,e.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#fff",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:3.219,d:"M223.96 303.07c1.932-6.194 4.476-11.674-7.116-16.954-11.594-5.278 5.794 21.114 7.116 16.954M237.69 290.68c-2.337.304-3.56 8.835 1.117 11.169 5.188.81.917-11.066-1.117-11.169M251.22 289.77c-2.442.712-2.543 12.691 6 10.56 8.543-2.13-.103-11.573-6-10.56M266.98 259.01c1.83-2.945-.101-15.025-7.425-9.95-7.321 5.077 5.085 10.762 7.425 9.95M251.01 248.96c2.239-.812 2.442-8.223-3.964-6.294-6.405 1.93 2.238 7.817 3.964 6.294M236.58 251.9s-4.475-6.193-7.933-4.874c-4.373 4.163 8.238 4.975 7.933 4.874M186.99 271.69c1.905.173 16.027-2.328 20.908-7.81 4.88-5.483-25.127 2.346-25.127 2.447s2.835 4.844 4.22 5.363zM328.1 236.73c.728-1.295-7.517-7.172-12.416-4.856-1.261 4.339 12.375 5.748 12.416 4.856M300.34 222.76c1.527-2.233-3.558-11.37-13.727-6.294s10.676 9.848 13.727 6.294M268.2 217.38s2.541-8.223 8.644-6.6c6.916 5.281-8.34 6.905-8.644 6.6M262.2 211.19c-.917-2.335-7.323-.913-14.644 3.858-7.324 4.772 16.88 1.422 14.644-3.858M280.91 189.06s6.523-2.92 8.44 0c2.747 4.366-8.541.102-8.44 0M275.44 186.2c-1.322-2.64-8.54-2.89-8.355.925-1.21 2.989 9.38 2.432 8.355-.925M258.24 186.21c-.711-1.523-10.98.029-14.032 6.193 4.899 2.382 16.271-2.335 14.032-6.193M236.27 192.51s-13.51 8.26-14.339 14.315c.41 5.229 16.778-9.442 16.778-9.442s1.424-5.787-2.439-4.873zM221.32 185c.378-1.68 6.675-5.572 7.22-5.28.51 1.694-5.143 6.28-7.22 5.28M225.59 216.57c.304-2.437-16.068-2.235-9.864 5.278 5.166 6.301 10.984-4.161 9.864-5.278M210.69 227.35c-.854-1.647-2.082-6.038-4.324-6.442-1.827-.103-11.672 1.928-12.425 3.594-.406 1.32 4.075 9.435 5.602 9.638 1.729.71 10.842-5.978 11.147-6.79zM299.02 282.46c.508-1.725 17.239-7.507 23.015-1.976 6.812 9.34-23.421 4.922-23.015 1.976M345 293.39c3.666-6.204-11.257-13.559-17.592-6.47 2.165 8.517 14.628 11.6 17.592 6.47"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/206.0227085b.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js deleted file mode 100644 index d0607a80ed..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2073.0f14210c.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2073"],{20528(e,l,d){d.r(l),d.d(l,{default:()=>s});var i=d(74848);d(47867);let s=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",children:[(0,i.jsx)("path",{fill:"#fff",d:"M640.006 479.994H0V0h640.006z"}),(0,i.jsx)("path",{fill:"#388d00",d:"M640.006 479.994H0V319.996h640.006z"}),(0,i.jsx)("path",{fill:"#d43516",d:"M640.006 160.127H0V.13h640.006z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2073.0f14210c.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js deleted file mode 100644 index 23cf53f468..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2098.4b97bea3.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2098"],{48873(l,e,s){s.r(e),s.d(e,{default:()=>t});var i=s(74848);s(47867);let t=l=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,i.jsx)("defs",{children:(0,i.jsx)("clipPath",{id:"np_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,i.jsx)("path",{fillOpacity:.67,d:"M0-15.957h512v512H0z"})})}),(0,i.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,i.jsx)("g",{clipPath:"url(#np_inline_svg__a)",transform:"translate(0 14.96)scale(.9375)",children:(0,i.jsxs)("g",{fillRule:"evenodd",children:[(0,i.jsx)("path",{fill:"#ce0000",stroke:"#000063",strokeWidth:13.832831999999998,d:"m6.54 489.54 378.786-.01L137.399 238.11l257.263.302L6.561-9.474z"}),(0,i.jsx)("path",{fill:"#fff",d:"m180.737 355.803-26.986 8.936 21.11 19.862-28.438-1.827 11.716 26.232-25.549-12.29.526 28.597-18.786-20.9-10.741 26.632-9.15-26.32-20.365 20.588 1.861-27.734-26.884 11.427 12.602-24.918-29.335.513 21.43-18.322-27.295-10.476 26.987-8.923-21.122-19.862 28.436 1.815-11.703-26.22 25.55 12.29-.527-28.61 18.787 20.901 10.728-26.62 9.162 26.32 20.365-20.6-1.873 27.734 26.896-11.414-12.601 24.917 29.322-.513-21.43 18.323zM148.32 171.125l-11.33 8.387 5.584 4.614c13.561-10.482 23.211-20.062 30.753-35.96 1.769 21.22-17.683 68.855-68.73 69.381-54.633-.046-73.59-50.587-71.482-70.276 10.037 18.209 16.161 27.088 31.916 36.568l4.82-4.424-10.671-8.891 13.737-3.572-7.39-12.44 14.391 1.05-1.808-14.486 12.616 7.383 3.948-13.484 9.065 10.86 8.491-10.296 4.624 13.99 11.79-8.203-1.512 14.228 14.133-1.659-6.626 13.153 13.682 4.077z"})]})})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2098.4b97bea3.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js deleted file mode 100644 index c11725a0e8..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2103.0449b778.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2103"],{18346(e,u,i){i.r(u),i.d(u,{PimcoreDocumentEditor:()=>t});let t={documentEditable:i(42817).g}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2103.0449b778.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js deleted file mode 100644 index 1f0d6eb7e3..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2117.da809f8e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2117"],{38116(l,e,i){i.r(e),i.d(e,{default:()=>d});var s=i(74848);i(47867);let d=l=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"#28ff09",viewBox:"0 0 640 480",...l,children:(0,s.jsxs)("g",{fillRule:"evenodd",children:[(0,s.jsx)("path",{fill:"#009a00",d:"M0 323.1h640V480H0z"}),(0,s.jsx)("path",{fill:"red",d:"M0 0h640v164.063H0z"}),(0,s.jsx)("path",{fill:"#ff0",d:"M0 164.063h640v159.046H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2117.da809f8e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js deleted file mode 100644 index 0dc5b939f8..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2121.8117f390.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2121"],{56832(e,l,i){i.r(l),i.d(l,{default:()=>t});var s=i(74848);i(47867);let t=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#00267f",d:"M0 0h213.337v480H0z"}),(0,s.jsx)("path",{fill:"#f31830",d:"M426.662 0H640v480H426.662z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2121.8117f390.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js deleted file mode 100644 index 1bd7547a85..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2162.e42c8ad6.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2162"],{56009(n,o,e){e.r(o),e.d(o,{default:()=>l});var i=e(74848);e(47867);let l=n=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...n,children:[(0,i.jsx)("path",{fill:"#ffca00",fillRule:"evenodd",d:"M0 0v480L640 0z"}),(0,i.jsx)("path",{fill:"#ff6500",fillRule:"evenodd",d:"M0 480h640V0z"}),(0,i.jsxs)("g",{stroke:"#000",strokeWidth:.993,children:[(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M222.393 340.58s-18.31-.63-25.887 8.63c-7.576 9.26-36.75 35.224-39.145 37.044-1.085.728-24.415 5.47-24.415 5.47 11.455-11.434 24.267-15.61 34.777-35.636-5.245 10.048-9.256 14.446-15.39 19.972-5.333-2.482-19.168 8.28-30.75 13.35.21-.423 12.7-10.52 19.473-23.41-3.858 3.368-12.67 11.835-16.528 15.202-9.175.874-13.332 11.04-16.837 12.416-21.492 6.986-15.125 2.73-19.995 7.367-1.964 3.844-6.16 6.91-8.72 7.163-20.165 1.995-20.748 8.618-31.06 12.41-6.587 1.927-10.773.065-14.52-2.526 5.05-1.822 11.34-1.388 15.153-5.47 0 0 18.468-22.004 35.357-24.414 9.682-1.685 11.155-7.367 11.155-7.367s-28.623 7.998-33.463 12.208c-4.55 1.295-12.3 2.413-19.153 1.684 12.664-4.66 20.5-11.062 23.994-14.943 2.002-2.224 13.89-2.316 13.89-2.316s19.995-8.63 20.416-8.63 15.154-8.63 15.154-8.63-17.68 4.63-18.1 4.63-20.65.84-20.65.632c5.388-6.898 24.808-7.378 27.595-9.05 6.503-6.503 26.73-4 27.572-4.842.84-.84-21.258-7.577-30.518-5.682s-23.362-9.68-23.362-9.68 19.363-2.95 25.677-.212 29.045 8.63 30.31 7.576c1.26-1.05 26.19-9.89 29.043-6.734-2.455-5.25-5.555-5.11-5.473-9.682 4.63.212 9.26.42 13.892.633 0 0 7.155-9.473 6.943-9.892-6.495-2.38-7.963-8.97-7.963-8.97 8.326 1.39 11.12.34 11.12.552 0 .21 7.368-8.21 7.368-8.21l5.052-7.997 3.788-17.26c-7.653 4.14-22.31-.208-22.098-.42 15.93-5.587 20.75-13.683 27.99-14.1-3.102-15.726 6.103-21.048 6.103-20.836 0 .208 6.316-13.684 6.316-13.684s-6.747-2.27-19.365 0c11.958-14.193 30.94-9.05 30.94-9.05 3.917-12.584 15.997-7.997 15.997-8.418-3.076-6.853 6.154-10.33 12.15-10.124-.86-5.107-6.333-10.5-8.436-14.78 10.028 6.448 20.476 3.945 25.75 13.328q4.736.526 9.47 1.053s10.523 1.894 10.735 1.894c.21 0 10.944 1.05 10.944 1.05 1.882-5.333-4.764-4.653-3.16-17.678 12.82 6.37 11.938 19.03 22.1 26.238 8.01-.552 10.43 2.253 14.384 5.896 4.615-.98 10.252 1.068 13.188 5.75-.14-4.963 1.287-11.967 7.58-3.158l11.573-.42s-15.206-22.152-28.624-9.68c3.924-13.54 17.68-12.208 17.68-12.208s-3.575-6.198-3.366-13.05c-7.343-2.936-9.682-15.364-9.89-15.153-.213.21-12.51 2.437-18.103 17.048-10.487-11.4 3.723-25.555 4.56-28.073q2.165-8.088 4.334-16.176c-1.134-5.313-.694-7.948 4.157-12.158-3.234-3.35-1.745-6.54 2.104-8.63-1.3-2.29-.238-4.58.352-6.87l51.42-2.938 11.58 15.912 1.895 8.63-4.42 11.365 13.26 15.785 4.84 5.05 10.102 5.895s9.474 3.998 9.683 4.21c.212.21 11.364 2.946 11.786 3.156s9.262 5.262 10.735 5.683 28.623 0 28.623 0l15.156-1.263-.212 24.835-7.998 1.894c-3.446 2.962-4.445 4.693-10.34 8.886-8.16 2.286-14.074 1.85-14.283 1.85-.21 0-8.21-2.107-8.418-2.317-.212-.208-9.052-2.945-9.052-2.945l-13.89-3.368c-5.713-.898-7.997 2.947-8.418 3.578-.42.632-2.736 27.993-2.736 27.993s-4.843 12.417-4.843 12.63c0 .208-4.488 8.298-7.998 11.154-.65 3.346-1.176 6.914-9.258 12.838-1.714 5.353-.326 10.514 5.47 11.576l8.42 3.367q6.313 1.473 12.627 2.946l13.892 2.947-9.892 21.678-24.414-4s-16.207-4.21-16.416-4.21c-.212 0-17.892-9.47-17.892-9.47s-5.683-12.838-5.683-13.05c0-.21-5.052-10.734-4.84-11.364.21-.63.21-6.733.21-6.945 0-.21-17.048-3.576-17.048-3.576l-17.89-1.896-19.574-5.263-14.943-4.418-9.683-3.367-10.734-.842s-14.1 2.103-14.1 2.315c0 .21-12.417 3.576-12.417 3.788 0 .21-7.997 18.732-7.997 18.732l-3.788 14.31 5.89 10.946 2.107 30.518-5.473 11.365 3.788 8.418 7.576 12.42 4.42 8.628-27.578 8.742-3.57-14.215s-9.472-23.36-9.26-23.572c.21-.21.42-7.79.42-7.998z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M250.288 306.99c5.733 1.72 5.84-9.547 10.414-13.746 3.632-15.193 23.278-14.663 29.506-4.47-20.83-1.568-12.814 10.136-19.222 15.2 16.385-7.74 31.47-6.394 34.87 4.47-6.586 12.52-12.74 24.173-19.325 36.69-10.492 5.24-15.218-1.928-26.723-8.522l-8.046-1.343c-.295-9.09-1.172-19.188-1.472-28.28zm12.822 70.466s28.028-.877 28.128 12.612c2.562 7.752 10.68 7.156-1.75 27.625.497-26.33-16.39-26.97-28.235-26.36 14.774 2.068 17.405 24.18 10.925 32.628-16.734-.598-30.732-4.232-47.467-4.83-5.845-6.462-12.757-21.575 9.787-32.286q14.309-4.696 28.613-9.388zm187.61-74.652 8.045-3.128s24.732-30.04 43.813-13.413c-13.097 1.97-23.768 17.786-23.768 17.786 7.1-5.288 33.77-3.62 30.9 19.79-28.555 8.454-29.36 23.432-27.697 41.258-19.007-.32-39.977-10.157-40.857-40.69 2.533-7.3 7.03-14.303 9.563-21.604zm102.308-127.22c0 10.345-8.387 18.732-18.732 18.732s-18.732-8.387-18.732-18.732 8.387-18.732 18.732-18.732 18.732 8.387 18.732 18.732"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M508.125 209.678c6.896 5.317 15.106 7.26 30.25 9.012 7.977-4.683 22.7-4.493 23.834-14.896 7.952-2.84 9.72-12.427 3.14-15.078-.28-2.813.168-13.73-12.06-13.982 1.642 4.06 3.107 15.2 3.107 15.2-6.373-.75-10.73 10.283-10.73 9.836 0-.223 3.514-17.49-13.504-18.015 5.855 9.787-1.695 17.568-1.695 17.568-1.79-2.235-1.8-6.158-5.086-7.362-8.45-3.556-10.06-13.863-9.7-19.39-4.43 3.743-7.734 7.486-7.57 12.447.066 8.158-.334 16.034.013 24.66z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",d:"M533 110.03c14.414-2.008 27.32-5.774 35.816-12.097 2.742-2.042 25.88 1.828 37.792-5.287-18.056-1.04-30.017-3.608-33.233-2.544-10.114 2.952-33.675 9.496-35.52 8.663-.163 1.67-3.03 8.942-4.855 11.264z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M537.9 98.633c10.312-2.413 12.672-7.418 18.762-11.073 9.322-3.73 14.5-3.865 23.797-13.474-24.174 3.293-26.887 4.142-26.887 4.142-5.012 3.05-11.91 7.732-17.335 14.837 1.642 1.747 1.544 3.55 1.663 5.568"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M536.18 93c0-.1 9.433-10.585 9.515-15.072.413-1.507 4.816-3.995 6.472-9.89 1.075-16.077 2.57-16.43 2.57-16.43 7.573-4.253 5.96-13.474 9.478-20.378 0 0-11.116 12.412-17.325 19.217-1.656 3.576-2.09 12.745-2.19 12.745-1.755 4.14-6.282 4.68-9.758 11.55-1.957 5.212-.326 9.983-3.277 16.767 2.014.035 3.1.53 4.514 1.49zm-20.808 247.39c0 13.95-11.307 25.257-25.256 25.257S464.86 354.34 464.86 340.39s11.307-25.256 25.256-25.256 25.256 11.308 25.256 25.257zM270.79 425.804c0 12.67-10.27 22.94-22.94 22.94s-22.94-10.27-22.94-22.94 10.27-22.94 22.94-22.94 22.94 10.27 22.94 22.94M312.25 325.64c0 10.926-8.857 19.784-19.783 19.784s-19.784-8.858-19.784-19.784 8.857-19.784 19.784-19.784 19.784 8.857 19.784 19.784zm-90.36 22.994c-7.158.42-14.443 2.903-14.23 3.115.208.208 7.788 4.208 6.733 5.472-1.052 1.26-11.216 12.578-10.583 12.578 7.632 2.2 17.74-2.477 17.74-2.477s-4.124 6.64-4.807 8.68c6.803-3.665 13.184 1.122 14.732-2.542zm150.204-65.724c-4.326 2.665-18.875-.332-18.875-.332 4.285 4.44 7 7.61 16.887 8.61-7.062 3.203-11.66 7.75-19.924 10.498 12.925 5.53 21.58-3.544 21.58-3.213s2.51 5.918.543 13.876c5.113-1.347 6.315-6.563 10.138-5.47-3.2-7.618-7.147-16.354-10.35-23.97zm81.063-66.7c-.366 2.4-.832 6.703-10.684 11.692 6.445 2.797 17.22-3.312 17.22-2.98s-8.76 15.602 6.29 22.185c-.4-11.785 1.656-21.192 1.656-21.192s5.533 7.61 9.602 16.557c6.5-6.99-2.318-20.2-2.318-20.2-7.176-1.656-14.837-4.406-21.767-6.06zm9.271-69.234s19.485 13.242 19.57 15.014c.08 1.77-1.773 9.11-8.096 12.398 15.18 1.77 16.782-7.76 16.782-7.76s-3.12 10.796-.59 14c8.35-5.144 8.097-13.325 8.097-13.325s5.567 8.434 4.303 12.99c1.77-.93 11.386-10.966 2.697-15.858 2.024-6.578 2.784-10.71-4.554-13.663-.786-3.964 1.293-5.23 1.94-7.844 0 0-7.254-2.193-8.096 4.048-.676 1.265-23.318-13.31-23.57-13.394-.076.383-8.482 13.48-8.482 13.394z"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M467.647 139s18.043 9.58 19.225 11.857"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M530.722 91.472c-2.392 0-11.92-2.98-18.212 1.656-2.875-4.618-5.96-8.237-15.074-6.292.082-4.125-1.552-3.595-3.732-4.892-2.297-5.004-5.974-7.22-13.08-4.048-6.187-6.366-16.188-6.646-23.21-1.72-10.615-3.15-24.666.523-50.953.23-1.816-.06-10.884 3.194-5.213 10.762-10.917-6.75-15.49 5.665-4.635 7.616 2.65 2.65 5.63 8.278 5.63 8.278s-18.98-13.57-29.406 1.606c-3.38 15.35 12.912 4.36 21.015 10.15 4.857 4.304 9.496 8.775 14.35 13.08 8.06-1.656 14.945-1.707 23-2.128-7.284 2.097-13.396 1.355-20.68 3.452 1.753 2.413 4.678 3.222 10.998 2.98l-13.446 4.698c8.236 6.372 18.63 2.187 26.56 3.31-5.03 7.535-15.365 15.5-28.418 11.86 5.62 8.952 16.793 7.807 28.182-3.805 9.534 1.66 15.714 2.83 27.892-1.29.588-.77 9.555-14.115 9.174-15.258 1.632.49 26.31 9.332 27.802 12.075.188-3.403 4.914-6.903-23.842-14.9-5.42-4.41 13.908-9.935 13.908-9.935l-.33 7.947c5.437-3.318 5.726-4.645 6.953-6.623 1.987-1.323 6.29 2.65 6.29 2.65l.242 7.004c2.395-.87 3.733-1.043 5.39-3.36s4.83 2.766 4.83 2.766c4.95.49 13.312-1.847 17.47-8.766-1.882-7.027-.99-8.985 2.75-10.388 6.137-9.997 7.543-18.66-2.203-18.714z"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M494.456 147.146s-3.038 3.795-2.448 11.133"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M406.638 139.705s7.778 11.852 10.433 12.593 20.99 19.384 21.977 20.186c1.174.494 11.42.247 11.42.247-7.53-6.5-13.828-13.374-20.742-20.062 0 0-10.617-5.247-10.678-5.37s-5.68-7.655-5.68-7.655c-1.79-.576-3.703-1.46-5.37-2.84z"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M481.98 162.074c3.456-.844 8.264 2.024 8.6 4.47 1.857-1.097 5.99-1.097 7.508.337.675-1.01 3.71-3.71 6.832-2.53m-10.358-17.205s2.527 2.024 5.902 1.012"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M535.808 156.746c4.186-.597 38.452-20.62 46.815 4.682-2.887-21.416-18.625-21.018-18.625-21.018s-.697-10.26-15.14-8.566c9.465 6.973 1.494 12.55.797 13.547-2.458-6.607-3.52-10.026-11.057-12.948 3.023 11.62-3.32 13.18-4.98 18.726-3.35-2.39-5.91-6.773-7.868-10.06-2.657 7.703-.33 12.318 2.69 16.335 2.656-.664 5.11-.83 7.368-.697z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M530.245 120.66c1.32 2.417 6.88 9.362-2.877 22.604-3.078-4.282-4.734-6.914-4.734-6.914s-8.315 5.41-7.367 23.984c-3.112-7.46-7.735-16.866 1.857-30.997-6.924 11.145-9.18 12.378-14.477 12.223 8.112-5.785 9.89-12.046 10.045-12.046 1.48.497 10.634.024 17.553-8.855z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",d:"M524.02 90.52c1.82 6.79-3.182 11.495-7.028 15.12 8.35 16.368-18.454 15.05-8.787-.22"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",d:"M497.873 107.838s-1.976 2.527-.328 6.042m-11.035-5.87c2.394.59 4.386 3.686.515 6.01-1.55.92-9.327-2.692-13.343 4.9"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",d:"M413.314 92.784c-3.144-.258-4.69 1.34-.927 5m3.921-15.774c-3.66-1.598-5.36 2.216-.98 5.257m11.496-4.947c-3.194-2.887-5.98 2.32-.874 4.278m16.796-4.278c-3.35-2.835-4.485 1.288-3.452 2.68"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",d:"M462.508 125.58c0 8.595-6.968 15.563-15.564 15.563s-15.563-6.968-15.563-15.564 6.97-15.564 15.564-15.564 15.564 6.968 15.564 15.563z"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M461.607 130.684c-.424-.9-9.987-10.366-13.007-9.078-2.472.107-10.035 16.604-9.704 17.267 7.83 5.52 19.895.65 22.703-8.188z"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M456.52 125.71c-1.178-.764-2.08-1.458-3.122.07-1.04 1.526-6.732 15.34-6.732 15.34m27.577-46.612c-10.41-5.83-29.733 2.813-16.89 8.852-10.968-3.332-10.483 6.108-10.483 6.108m5.068-24.738c4.127-6.13 9.825-8.228 13.555-.544 4.967 6.623 14.306 1.67 14.306 1.67"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",d:"M423.593 89.817s-4.636 2.152-.33 5.463m23.854-8.277s-4.472.663-2.983 5.464"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",d:"M442.136 95.28c-.164 0-4.636.165-3.144 4.966m-1.995 3.147c-.167.166-5.63-2.318-2.816 4.636"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M457.607 76.237c-19.42-11.836-40.01-35.675-68.267-26.59 28.674 5.086 46.18 21.006 46.762 25.924 10.585-.832 13.502-.582 21.505.668z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M429.34 75.74c-2.582-3.168-12.336-20.756-32.172-20.422 15.17 7.752 24.255 18.338 25.09 21.005 2.83-.167 4.83-.417 7.083-.584z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",d:"M412.334 76.49s2.252-16.505 5.502-18.505S407 53.483 407.168 67.987c-11.84-9.67-23.005-8.002-24.84-7.335-1.834.667-27.84-.584-30.923 5.25 19.17-.415 24.67.835 26.422 2.752 11.754-3 18.422-1.25 26.258 8.085 3.584-.668 8.25 0 8.25-.25z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M393.843 85.157c-4.75-4.668-8.702-7.57-22.962-8.764-2.08-.265-7.573-1.425-10.96-2.572 9.067-6.28 36.59 2.585 39.674 6.67-.916 2.833.202 4.73 1.7 6.564-2.542-1.52-4.775-2.134-7.45-1.897z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",d:"M403.67 77.008s-7.098-6.5-12.56-6.39c3.168 1.91 6.773 7.373 8.956 9.34 1.53-1.748 1.147-1.64 3.605-2.95z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M389.234 70.944c-.273.11-11.96 7.32 1.202 16.932-.874 6.172 6.443 7.046 6.443 7.046s5.41 8.193 5.41 8.14c-11.626-7.737-21.427-5.855-25.04-2.687-7.047-10.323-18.984-12.007-23.353-13.263-5.462-1.202-20.594-2.458-21.63 11.25-14.53-14.254 8.467-20.37 12.398-19.935 3.932-.71 26 3.55 27.418 6.336-1.255-13.054 10.597-19.99 17.15-13.82zm43.498 47.499s-38.783-7.23-51.432 1.39c-12.65 8.618-14.316 21.407-32.666 23.353-18.348 1.946-20.295 5.42-27.106 14.874 10.15-3.197 32.112-10.148 47.263-7.09 6.255-7.012 9.73-10.286 9.174-10.425 4.726-15.57 37.67-21.546 53.24-15.986.278-3.893 1.947-5.7 1.528-6.117zm-58.652-5.839-57.967 1.668c-5.282 1.668-11.674 5.978-12.65 7.228-.97 1.252 2.504-13.622 10.15-12.927 9.867.973 36.835-.14 36.835-.14 8.202-3.057 17.1-6.116 22.52-4.03-1.947 4.865 1.113 8.2 1.113 8.2z"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",d:"M479.833 95.626s-16.024-4.872-11.82 11.567c6.453 8.193 15.73-3.963 15.6-5.19"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M436.15 114.19c-3.54-5.798-25.655-13.662-33.226-11.008 12.14 5.7 29.49 11.45 30.52 14.597 1.426-2.557 2.607-3.54 2.705-3.59z"}),(0,i.jsx)("path",{fill:"#fff",fillOpacity:.3,fillRule:"evenodd",strokeLinecap:"round",d:"M510.642 94.11s-13.367 3.653-18.334.673-17.286-7.395-11.852-16.91"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M375.194 97.992s-33.917-.84-39.522 9.32c22.072-5.116 38.33-4.415 38.33-4.415l3.083-2.803-1.89-2.102z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",d:"M437.05 90.084s-7.84.238-4.037 5.702"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M508.284 191.48s11.344-.377 12.658-1.877m35.423.469s4.78 3.375 9-1.406m-30.935 2.156s3.188 6 11.344 3.374m-29.516 9.376s-2.437 6.093 9.563 5.53c3.096 1.876.936 7.875.936 7.875m5.528-42s6.75-.375 7.97 2.625m-5.453-11.155s2.252.188 3 2.906c.75 2.72 3.47 1.313 5.064.094m-39.112 170.789c-5.89-5.59-18.58-5.74-12.538 8.16 2.114-6.348 6.043-8.764 12.538-8.16m-2.41 8.292c-1.66-1.208-2.57 1.208-2.117 1.66m6.329-42.456s-9.065-1.057-5.44 9.518m-21.449-33.36s-1.21 10.726 7.25 11.934m-19.621 54.214c0-.15-7.854-3.476-10.273 7.25m2.857-57.398s0 9.063 4.078 12.387m-7.391 10.131c-.15 0-13.142 5.136-13.142 11.934m-196.719 92.255c0-.15 8.35-8.806 10.172.91-.154 3.644-1.976 7.138-1.976 7.138m-.779-5.929s-4.707-.305-5.314 2.58m25.818-28.7c0-.15-10.63-3.34-12.15 4.858m-42.501.784s8.806-5.163 13.664.456m58.71-18.337c0-.15-8.146-.056-9.36 5.41"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M409.34 155.946c-.966.955-.837 1.008-1.835 1.243-.97.357-1.926.408-3.068.408-.784-.26-1.682-.864-2.453-1.635-.73-.872-1.09-1.554-1.43-2.454 0-.63-.268-1.557-.43-1.936.323.646.93 1.676 1.248 2.344.347 1.087.69 2.346 1.02 3.476.273 1.267.41 2.458.41 3.884-.206 1.564-.627 2.95-1.226 3.885-.845.45-1.317.682-2.453.817-1.232 0-1.627-.215-2.66-.613-.477-.62-1.462-1.678-2.042-2.453-.296-1.148-.545-2.065-.614-3.27-.498-.718-.734-1.35-1.226-2.046-.223-.818-.594-1.226-.82-2.044-.253-.642-.818-1.307-1.096-1.896"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M261.415 391.284s-5.924 4.68-4.936 8.73m37.069-79.408s-9.52 2.31-4.76 10.676m4.628-6.332s-2.02 6.78 1.298 9.233m4.026-8.808c.146.434-1.298 7.213-3.316 8.368m-7.492-34.489s-.432 5.77 2.164 6.782m-19.489-23.948s-2.307 6.782 6.347 9.09m-22.214 13.269c0 .288 2.306 10.962 6.924 10.673m10.956 10.387s-11.828-6.636-12.983 10.82"}),(0,i.jsx)("path",{fillRule:"evenodd",strokeLinecap:"round",d:"M477.396 96.993c1.157-1.097 5.18-2.408 6.278 3.656 1.097 6.063-7.07 5.346-7.134 4.378-2.193-.903-2.305-5.648.856-8.035zm17.219-13.969s-10.485-1.278-9.516 7.495c6.127 5.418 10.787.06 11.817-2.908.514-2.128.344-3.942-2.302-4.588z"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M350.37 113.367s1.262 9.448-6.295 7.243 11.65 4.724-3.15 7.558c-3.07 4.3-2.52 5.04-2.52 5.04s8.07-.815 3.052 9.805c-1.89 5.668 2.837-12.398 17.972-3.17-6.93-6.764-1.943-6.675 7.633-6.32-13.282-2.172-12.596-14.488 6.928-8.504-.026-1.837-3.602-7.32 2.835-10.393 12.597-3.464-26.138-.63-26.454-1.26z"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M347.325 120.997c2.05.977 10.165 16.422 15.736-7.918-2.442-.588-12.61.292-12.61.292.23 3.714-.423 6.158-3.125 7.625z"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M344.596 127.254c-.463 1.123-1.16 2.984-1.515 4.142 0 .78.004 1.624.14 2.21.105.965.415 1.66.825 2.484.392.555.453.694 1.105.83.527.302 2.747.31 3.452.413h2.347c1.104 0 2.08.01 3.037-.414.68-.195 1.22-.38 1.518-.968.676-.337.657-.676 1.105-1.38.193-.39.588-1.074.83-1.52.317-.49.413-.61.413-1.242.196-.39.14-1.19.14-1.795-.027-.87-.143-1.666-.278-2.485-.133-.443-.345-.725-.69-.553-1.41.557-2.96-.552-4.558-.552-1.523-.228-2.352-.622-3.865-.828-.63 0-3.566.928-4.006 1.657zm146.31 59.17h.204c-.6 0-.262-.035.82.613.722.258 1.413.52 2.04.818.372.542.777 1.163 1.23 1.636.244.612.56 1.575.816 2.25 0 .944.112 1.624-.408 2.044-.37.94-.932 1.03-1.43 1.635-.737.245-1.314.582-2.25 1.022-.987.266-1.406.585-2.452.817-1.09.492-1.807.58-3.068.613-.75 0-3.796-.17-4.546-.17 1-.034 4.196-.075 4.954-.24 1.123 0 1.756.12 2.453.614.918.318 1.44.597 2.248.818.56.223 1.672.323 2.25.613.325.544.942.832.614 1.43-.43.52-1.24.814-2.045 1.024-.535.364-4.59 1.07-5.13 1.434-1.927.165 3.874-.46 4.518-.617 1.17-.015 1.9-.15 2.86 0 .872.13 1.664.52 2.454.817.52.694 1.138 1.03 1.633 1.84.628.517.806.865.82 2.044-.258.514.22 1.964.153 2.735l-.898 2.69"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M474.35 186.628h.203c-.553 0-.27-.013.82.205.688.482 1.898.667 3.064 1.022.652.308 1.258.664 1.84 1.022.6.3 1.38.844 1.84 1.43.837.28 1.01.782 1.637 1.228.217.986.484 1.508.612 2.453-.083 1.09-.448 1.304-.816 2.044-.602.408-.97.945-1.84 1.227-.815.325-1.843.593-3.07.817-1.734.33-3.416.697-5.11.818-.842 0-1.048.18-1.84.204 1.025.01 2.38.088 3.067.408 1.28.013 2.737.113 3.68.41 1.862.23 3.648.54 5.52.612.377.61.68.935.82 1.84-.496.363-.84 1.042-1.227 1.43-.612.377-1.22.765-2.25 1.023-1.13.404-2.39.41-3.68.41h-6.542c-.2-.08-1.635-.205-.82-.205.85.39 2.542.8 3.68 1.022.782.228 1.225.648 1.638 1.227.495.374 1.248 1.06 1.634 1.43.32.535.41.873.41 1.84-.097 1.254-.505 1.27-1.432 2.045-.988.647-1.762.78-2.86 1.022h-3.07c-.82-.22-5.557-3.004-6.163-3.188.84.3 5.36 3.303 5.756 4.21.216.647.205 1.716.205 2.658-.037.993-.16 1.7-.612 2.248-.042.795-.257.615-1.022.615l1.023-.615c-.042.795-.257.615-1.022.615m16.152-17.375h1.022c.673.457.668 1.032 1.638 1.226.74.283 1.483.678 2.042 1.022.3.504.41.726.41 1.636 0 1 .23 2.356-.203 2.862-.355.415-1.643.403-2.25.614-.876.303-1.626.765-2.378.913-.95.187-2.49.087-3.142.518-.914.07-1.57.205-2.657.205-.63 0-1.052-.042-1.43-.204.92.32 2.407.69 3.472 1.227.974.275 1.507.71 2.248 1.227.798.59 1.26.91 1.434 1.84.407.6.407 1.382.407 2.452-.226.676-.374 1.65-.615 2.25-.445.66-.98.783-1.635 1.226-.476.053-.34.153-.818.206"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M466.376 186.424c.34.14 1.382.65 2.045 1.022 1.203.29 1.993.786 2.862 1.022.453.56.983.79 1.226 1.636.71.926.882 1.412 1.023 2.453-.087 1.144-.27 1.375-1.226 1.636q-1.068.356-2.453.41c-.844.113-1.61.293-2.452.408-.577.29-1.764.205-2.657.205-.88.068-2.32.26-3.353.26 1.15.043 2.875.15 4.17.15 1.248.132 2.477.198 3.068.817.9.34 1.41 1.072 2.25 1.43.404.6.878.945 1.225 1.636-.283.795-.728 1.06-1.637 1.227-.577.29-1.762.204-2.657.204-.622-.313-1.91-.205-2.86-.205h-2.25c.842.29 2.2.617 3.272.818.755.43 1.925.792 2.453 1.226.332.51.878.794 1.227 1.43.458.37.55 1.06.204 1.636-.084 1.018-.37 1.528-.817 2.044-.647.44-1.222.832-2.25 1.432-1.443.627-2.815.805-4.498.817-1.11 0-1.653-.168-2.657-.205-.91-.314-2.063-.44-2.86-.613-.875-.24-2.054-2.085-3.203-2.127.784.1 1.716 1.972 1.976 2.535.29.58.205 1.764.205 2.658-.32.548-.395 1.59-.615 2.25-.04.71-.114 1.65-.408 2.043l.408-2.043c-.04.71-.114 1.652-.408 2.044"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M454.958 181.332c0 .082.71.455 1.19 1.003.466.733.956 1.566 1.43 2.25.323.93.612 1.372.818 2.248.382.626.55 1.605.615 2.453-.036.954-.118 1.808-.614 2.453-.24.827-.65 1.154-1.43 1.43-.678.32-1.327.41-2.453.41-.75 0-2.398-.113-3.147-.113 1.295 0 3.49.113 4.78.113 1.424.09 2.367.21 3.07.817.892.252 1.61.7 2.044 1.227.694.512 1.35.633 1.635 1.43.214.648.204 1.716.204 2.66-.107 1.17-.444 1.197-1.432 1.43h-2.86c-.63-.21-1.808-.308-2.66-.41-.695-.093-1.48-.713-2.083-.912.535.508.435 1.7.448 2.753.156.723.204 1.666.204 2.658-.085 1.09-.347 1.38-1.023 1.84-1.086.236-2.686.204-4.087.204-1.145-.054-2.09-.205-3.272-.205-1.417 0-2.678-.157-3.987-.307.498.332.488 1.078.512 1.943.368.614.084 1.33 0 2.045-.07.887-.236 1.488-.615 2.044-.204 0-.352 1.12-.556 1.12"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M445.103 178.657c0 .068-.053-.043 1.023.818.622.5.932 1.127 1.43 1.84.18.77.44 1.45.612 2.25 0 1.19-.143 1.665-.612 2.452-.78.52-1.716.928-2.86 1.022-.68.225-1.633.345-2.456.408-.583.194-.512.313-1.32.41 1.31-.047 1.375-.206 2.753-.206.893 0 2.08-.084 2.657.205.916.124 1.576.252 2.045.818.842.23 1.208.6 1.634 1.226.627.427.995.792 1.226 1.637 0 1.112-.125 1.74-.408 2.453-.358.71-.694 1.125-1.43 1.636-.528.454-1.29.566-2.046.817h-2.863c-.754 0 2.462.077 3.885.205.84.154 1.364.496 2.042.818.602.407 1.383.467 1.842 1.022.746.265 1.095.806 1.84 1.227.177.414.092.31.408.204"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M436.653 175.155c1.004.496 1.555 2.255 1.71 3.297.284 1.036-.08 1.798-.407 2.862-.99.914-1.105 1.208-2.453 1.43-1.16.35-2.424.263-3.476.615-.7.287-1.353.55-2.25.817h-2.862c-.883.52.704.08 1.022 0 1.592 0 3.232.02 4.702-.205h5.927c1.047.158 1.198.515 1.638 1.43.435.528.575 1.425.612 2.454-.042 1.174-.23 1.52-.816 2.454-.587.728-1.098 1.046-1.84 1.635-.956.41-2.363.665-3.68.818-1.573 0-3.263-.092-4.702.204-1.086 0-5.422.29-5.044.67.716-.573 3.897-.465 5.044-.465 1.56-.32 2.95-.587 4.498-.613.978-.293 2.167-.397 3.27-.41 1.075.013 1.904.158 2.455.613.634.527 1.448 1.16 1.84 1.636.784.276 1.017.804 1.634 1.225.183.837.397 1.376.41 2.453-.254.72-.48 1.467-.818 2.045-.948.678-1.968 1.42-3.272 1.84-1.13.44-2.058.573-3.268.613-1.044 0-1.844.094-2.66.205-.75 0-6.88.113-7.63.113 1.844-.336 7.834-.112 9.063-.112 1.34 0 2.566.163 3.883.205.65.308 1.35.556 1.838 1.022.692.277 1.283 1.47 1.296 2.71"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M427.328 170.275c.18.364.906 1.8 1.226 2.658.22.886.204 1.862.204 2.862 0 1.28-.288 1.83-.818 2.862-1.116.75-1.98 1.47-3.272 1.84-1.08.194-1.966.127-3.065 0-.726-.29-1.33-.534-1.84-1.022-.777 0 .45.17.818.204.613.416 1.526.66 2.454 1.022 1.176.475 1.62.85 2.453 1.84.747.603.937.727 1.022 1.84.518.585.447 1.38.203 2.044-.63.42-1.31 1.098-1.838 1.636-.922.385-1.256.598-2.453.613-1.113-.04-1.688-.334-2.66-.41-.42-.393-.236-.305.41 0 .663.37 1.813 1.085 2.25 1.637.704.48.906.995 1.226 2.044.392 1.054.697 1.693 1.227 2.25.037 1.003.204 1.545.204 2.656-.287.713-.478 1.39-1.024 1.84-.228.838-.742 1.175-1.022 2.045-.803.473-1.83 1.454-2.453 2.044-.834.28-2.86.488-4.098.503"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M436.52 300.5c.302.71.64 1.494.816 2.25.09.74.204 1.313.204 2.248-.323.617-.395 1.353-.816 1.84-.267.75-.845 1.03-1.43 1.43-.79.34-1.346.6-2.456.616-1.076 0-2.032-.066-2.86-.207-.907-.424-2.984-1.16-2.356-.715.79.254 1.91.816 2.56 1.126.855.57 1.5.898 2.248 1.838.652.45.906.822 1.023 1.638-.81.28-1.94.688-3.068.815-.99 0-1.934-.046-2.657-.204-.662-.316-1.224-.626-2.045-.82l2.045.82c-.662-.316-1.224-.626-2.045-.82l-2.782-1.13c.55.524 3.657 1.814 4.01 2.564.288.718.47 1.592.614 2.657-.01 1.213-.117 2.596-.408 3.476-.233.847-.607 1.226-1.023 1.838h-.41m7.976-8.995h.203c-.57 0-.267-.027.82.408 1.135.712 1.416 1.007 2.248 2.25.393.865.708 1.122.82 2.044.344.578.132 1.425 0 2.045-.544.445-.835 1.023-1.434 1.43-.402.594-.924.95-1.43 1.43-.7.152-.986.36-1.84.41"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M436.732 307.043v.204c0-.602-.034-.262.612.818.845.586 1.012 1.203 1.227 2.453.242.965.175 1.855 0 2.658-.63.368-1.456.993-2.352 1.128"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinejoin:"round",d:"M446.534 311.758h-.204c.55 0 .27-.013-.82.204-.852.286-1.882.204-2.86.204-.757-.267-1.457-.41-2.25-.816-.674-.14-.78-.384-1.636-.41m3.478 9.19h-.204c.554 0 .273.013-.816-.205-.882-.572-2.363-1.573-3.18-1.843"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M507.887 192.578c-.355.106-3.566.322-4.51.39h-2.86c-.996-.223-1.976-.397-3.067-.41-.816 0-.57-.504-1.39-.504"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinejoin:"round",d:"M505 200.734c-.07 0 2.83-.224 2.765-.224.34 0-3.653.224-3.992.224-.914.164-1.847.205-2.864.205-.64.12-2.096.127-2.658.408h-2.86c-.618-.033-.613-.172-1.227-.205"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M425.473 297.427c.136.336 1.023 1.928 1.023 2.87-.013 1.074-.135 1.493-.612 2.044-.792.427-1.475.803-2.66.82h-3.68c-1.11 0-6.34-1.198-6.662-1.442.957.13 4.416 1.44 5.64 1.44 1.115.04 1.735.28 2.864.613 1.086.332 1.807.618 2.657.82.585.342 1.54.4 2.045.818.946.334.827.795 1.227 1.84-.08 1.035-.318 1.522-1.023 2.044-.45.554-1.293 1.044-2.25 1.43-.97.45-2.084.615-3.475.615h-2.86c-.676-.225-1.65-.373-2.25-.615l2.25.615c-.676-.225-1.65-.373-2.25-.615h-.206c.782.313.925.877 1.23 1.635.07.956.204 1.717.204 2.864-.194.822-.504 1.38-.82 2.046-.36.8-.688 1.353-1.225 2.042-.182.408-.415.742-.616.41"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M414.64 293.135c0 .07-.028-.064.407 1.023.423.51.572 1.348.818 2.045 0 .99-.048 1.934-.204 2.657-.41.667-.7 1.065-1.43 1.43-.48.578-1.046.742-2.044.82-.59.293-1.656.198-2.25 0-.752-.18-1.533-.398-2.045-.82-.844-.198-1.374-.458-1.837-1.022-.755-.188-.604-.612-.207 0 .625.516.652 1.073 1.023 2.045.012 1.073.203 1.547.203 2.657.188.86.312 1.626-.204 2.25-.28.783-.806 1.016-1.228 1.636-1.094.236-2.032.408-3.27.408-.632-.466-1.996-.885-2.454-1.43a6.5 6.5 0 0 1-1.84-1.227c-.566-.27-2.754-2.06-3.08-2.567.506.482 2.882 2.382 3.285 2.975.55.376 1.068.864 1.43 1.227.554.394.983 1.12 1.638 1.637.454.8.774 1.08.817 2.245v2.864c-.014 1.278-.2 1.45-.816 2.248-.126.38-.283.026-.41.408"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinecap:"round",strokeLinejoin:"round",d:"M406.877 307.043v.204c0-.64-.043-.257.818.818.708.382 1.52.824 2.25 1.023.527.456 1.364.45 1.944 1.02.93.124 2.01.575 3.07.614"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M406.162 287.81c.312.297 1.75 2.1 1.944 3.073-.013 1.2-.132 1.555-.816 2.045-.678.32-1.327.408-2.453.408-1.094-.24-1.767-.93-2.864-1.43-.58-.567-1.31-.77-1.838-1.227-1.028-.35-1.206-.568-.207.203.986.535 1.82 1.04 2.453 1.43.868.605 1.16.7 1.638 1.842.23 1.17.533 2.223.612 3.476.453.666.52 1.418 0 2.046-.503.296-.723.408-1.634.408a18 18 0 0 0-1.635-1.227c-.4-.294-.95-.858-1.225-1.226-.543-.482-1.24-.847-1.637-1.43-.877-.384-1.28-.795-2.045-1.226-.705-1.084-.032-.056.41.408.504.805.885 1.684 1.227 2.453v3.067c-.016.86-.2 1.674-.41 2.25-1.042 0-1.842-.096-2.658-.207-.612-.244-1.58-.533-2.25-.816-.953-.53-1.55-1.024-1.838-1.842-.487-.557-.908-1.373-1.226-1.84-.405-.513-.564-.75-1.023-1.02.498.53.962 1.583 1.84 2.248.61.922 1.133 1.208 1.432 2.25.45.545.517 1.543.612 2.452 0 .893.084 2.08-.205 2.657-.13.962-.424 1.407-.82 2.045a18 18 0 0 1-1.02 1.838c-.274 0-.205-.066-.205.204"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M410.347 284.552v.204c0-.273-.765 1.746-1.634 2.25-1.03.198-1.502.407-2.657.407h-3.068c-.734-.254-1.643-.535-2.453-.816-.673-.59-1.314-.795-2.045-1.433-.607-.593-.792-.933-1.53-1.733-.3-.393-.08-.028.918.71.908.84 1.163 1.066 1.43 2.046.29.58.204 1.765.204 2.658-.042 1.155-.14 1.528-1.022 1.84-.625.366-1.402.41-2.453.41-.525-.454-1.367-.764-2.045-1.432-.59-.39-1.283-1.306-1.84-1.838-.32-.496-1.76-2.247-2.256-2.565.533.36 2.24 2.35 2.87 2.768.426.75.94 1.12 1.432 1.634.424.718.692 1.4 1.227 1.84.114.844.294 1.61.408 2.454-.04 1.09-.22 1.55-.82 2.045-.79.778-.992.81-1.837.41-.702-.488-1.45-.915-2.045-1.43-.762-.21-1.4-.494-1.84-1.024-.745-.262-1.27-.84-1.84-1.226-.322-.647-.855-1.232-1.43-1.637l1.43 1.637c-.322-.647-.855-1.232-1.43-1.637l-3.502-4.324c.46.534 4.464 5.01 4.73 5.756.616.493.97 1.22 1.225 2.25.088.825.204 1.546.204 2.452-.543.57-.72.977-1.637 1.226h-2.86c-1.132-.042-1.484-.278-2.454-.614-.83-.48-1.19-.774-1.634-1.43-.6-.41-.946-.883-1.637-1.227-.276-.413-.59-.527-.82-1.023-.37-.16-.31-.41-.61-.614"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M412.096 280.764c-.067 0-1.476.116-2.565-.1-1.39-.088-2.926-.197-3.68-.82-1.082-.373-1.296-.86-1.84-1.43-.598-.72-1.36-1.444-1.84-2.456-.393-.898-.6-1.67-.613-2.86v-3.272c0-.567.387-3.725.106-4.006-.013 1.12-.516 4.24-.516 5.436 0 1.044-.093 1.844-.204 2.66-.477.763-.975 1.63-1.84 2.453-1.188 1.024-2.208 1.75-3.678 2.044-1.166.344-1.44.217-2.045-.82-.747-.558-1.13-1.474-1.227-2.656-.307-1.152-.164-2.323 0-3.475 0-1.023-.103-2.766-.103-3.788 0-.477.103 1.353.103 1.54 0 1.204.008 1.91-.615 2.86-.47 1.046-1.16 1.82-1.838 2.657-.694.718-1.314 1.012-2.25 1.226-.985 0-1.835.01-2.452-.408-.755-1.05-2.1-2.198-2.66-3.475v-8.084c.337.715.41 3.338.41 4.405-.08 1.054-.516 1.603-.818 2.657-.75.715-1.263 1.335-2.25 2.045-1.093.56-2.033.983-3.27 1.227-1.325-.016-1.307-.12-1.84-1.227-.65-.728-.916-1.64-1.022-2.657a20.4 20.4 0 0 1-.614-2.863c-.2-.81-.2-2.65-.408-3.275v2.252c.12.925.395 1.727.408 2.864 0 1.006-.07 1.812-.408 2.453-.11.817-.36 3.11-.403 3.068"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M397.075 277.797c.088.442.408 1.804.408 2.863 0 1.2-.053 1.56-.612 2.454-.595.858-.953.815-2.248.815-1.118 0-1.878-.125-2.453-.612-.76-.27-1.145-.72-1.638-1.43-.56-.68-1.216-1.757-1.635-2.25-.204-.75-.614-2.633-.922-3.28-.214-.972.55 1.66.922 2.257.52.946 1.057 1.818 1.43 2.657.15.68.205 1.516.205 2.453-.41.578-.843 1.073-1.227 1.638a7.6 7.6 0 0 1-2.453.408c-.895-.135-1.414-.45-2.042-.818-.758-.252-1.166-.683-1.84-1.023-.385-.583-1.236-1.468-1.636-2.25-.498-.7-.654-1.782-1.022-2.453-.14-.977-.27-2.005-.615-2.657-.132-1.033-.33-1.764-1.023-2.25-.058-.53-.243-.433-.408-.817m3.471 9.222c.066.445.3 2.058.408 2.864-.013 1.173-.262 1.51-.612 2.25-.398.582-.692 1.2-.82 2.04-.54.45-.83 1.027-1.43 1.434-.317.475-.635.408-1.43.408-.273.085-1.446-.074-2.045-.204m4.71-11.044c-.222 1.04-.633 1.905-1.022 2.864a16 16 0 0 0-1.43 1.84c-.713.285-1.34.41-2.454.41-.56-.382-1.285-.682-1.84-1.023-.303-.13-.722-.28-1.024-.41m34.738-146.796v.205c0-.51.03-.266-.41.613-.872.99-1.31 1.297-2.454 1.636-1.226.692-3.02.92-4.702 1.023-1.385.235-2.898.212-4.29.41-.454-.655-1.366-1.224-1.842-1.84-.483-.557-.724-1.12-1.227-1.84-.335-1.008-.953-1.823-1.225-2.863-.34-.982-.575-2.06-.82-3.067-.118-.898-.333-1.497-.407-2.453-.734-.21-.06.26.204.817.572.857.744 1.787.82 3.067.147 1.05.203 2.122.203 3.27 0 1.184-.106 1.902-.408 2.66-.708.72-1.18.868-2.25 1.02-1.23.315-2.72.205-4.09.205-.975-.132-1.306-.472-2.25-.614-.486-.436-1.31-.902-1.837-1.226-.37-.45-.81-.628-1.023-1.023"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M391.14 138.618c0 .07.618.92.618.99 0-.572-.023-.27.41.817.404 1.21.165 1.717-.614 2.658-.83.912-1.782 1.7-2.657 2.453-.927.426-1.69.997-2.86 1.227-1.354.17-2.793.238-3.887 0-.787-.447-1.76-1.158-2.25-1.84-.59-.58-.9-1.154-1.226-1.84-.182-.674-.418-1.56-.815-2.044-.057-.588.017.158.128 1.047.25.742.014.28.075 1.2v2.863c-.387 1.3-.92 2.947-1.227 4.09-.427.625-.792.995-1.637 1.225-.934.555-1.84 1.09-2.862 1.43-.56.462-1.383.41-2.453.41-.904-.36-1.09-.57-1.84-1.43-.526-.413-.648-.668-1.024-1.023m-3.879-.407v.204c0-.64.043-.257-.818.818-.39.637-.91 1.213-1.635 1.84-.47.846-1.48 1.794-1.84 2.658-.87.442-2.155.74-3.27 1.022-1.174.12-2.36.26-3.476.41-1.636.1-3.223.203-4.907.203-.978-.012-1.974-.182-2.657-.41-.655-.54-.782-1.037-.816-2.248-.292-.87-.19-1.733-.615-2.25-.085-.476-.31-.772-.612-1.02"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M404.016 145.946v.204c0-.57.024-.266-.408.818-.47.75-1.163 1.622-1.637 2.25-.712.633-1.74 1.628-2.452 2.248-1.208 1.007-2.18 1.365-3.68 1.635-1.335.174-2.262-.18-3.476-.817-.96-1.007-1.096-1.305-1.634-2.453-.098-1-.18-1.813-.615-2.658-.18-.763-.434-1.48-.818-2.044.045-.702.328.423.41.818.223.558.323 1.67.612 2.25v2.86c.28 1.12.127 1.936 0 2.863-.347 1.17-.535 2.163-1.226 2.657-.797.28-1.923.41-3.064.41-1.396 0-2.933-.05-3.887-.615-.655-.445-1.203-1.07-2.043-2.044-.686-.89-1.19-1.354-1.433-2.25-.482-.724-.776-1.526-1.227-2.043-.108-.87.072-.115.41.204.268.564.727 1.586 1.02 2.248.382.74.804 1.426 1.023 2.453.543.664.933 1.44 1.023 2.455.286.63.204 1.91.204 2.862-.18.988-.405 1.276-1.43 1.43-.84.205-1.903-.122-2.862-.612-.712-.356-1.125-.695-1.637-1.432-.837-.675-1.343-1.35-2.042-2.248-.474-.498-.943-.998-1.433-1.636-.562-.692-1.126-1.19-1.43-2.25-.32-.3-.502-.722-.82-1.022.493.567.737 1.076 1.023 2.044.307 1.122.6 1.664.615 2.863v2.862c-.195.98-.67.89-1.636 1.022-1.12 0-2.072.073-2.658-.41-.895-.12-1.51-.355-2.045-.818-.85-.222-1.395-.698-2.04-1.022-.324-.475-1.008-1.374-1.432-1.84-.283-.873-.82-1.24-1.23-1.84-.288-.29-.306-.917-.407-.818.4.47.756 1.48 1.024 2.045.164.914.204 1.845.204 2.862-.228 1.067-.612 1.597-.82 2.657-.45.86-.84 1.946-1.225 2.657-.745.507-1.333 1.06-2.247 1.43-1.208.545-2.43.777-3.886.82-.98.326-1.8.115-2.657 0-.665-.316-1.425-.634-1.84-1.227-.528-.242-.693-.508-1.024-1.227-.742-.557-1.013-1.385-1.43-2.453-.298-.86-.626-1.62-.817-2.454-.35-.797-.567-1.797-1.023-2.453-.053-.476-.15-.342-.204-.818"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M395.01 163.732v.204c0-.55.012-.273-.205.818-.673 1.046-1.46 1.932-2.453 2.25-.588.293-1.653.197-2.25 0-.927-.477-1.554-1.06-2.248-1.84-.54-.99-1.465-1.89-2.046-2.863-.513-.774-.882-1.33-1.02-2.248-.442-.52-.76-1.597-1.022-2.25-.06-.64-.053-.284-.244-.757.265.962.61 1.412.856 2.598.405 1.252.75 1.908.41 3.27-.166 1.245-.373 2.298-.818 3.477-.27 1.2-.65 2.1-1.023 2.862-.188.8-.54 1.505-1.022 2.044-.464.51-1.248.645-2.045.818h-2.86c-.873-.117-1.69-.405-2.658-.613-.95-.507-1.142-.744-1.84-1.43-.547-.677-1.074-1.165-1.432-2.045-.522-.355-1.264-.898-1.637-1.43-.625-.616-1.017-1.06-1.43-2.045-.19-.88-.395-1.502-.41-2.658-.03-.616.288.985.613 2.044.297.69.517 1.78.82 2.658v3.27c0 1.002.018 1.977-.205 2.863-.137.92-.484 1.343-.818 2.045-.582.36-1.21.804-2.042 1.022-.694.48-2.064.815-3.068 1.022-1.014.266-1.91.41-3.067.41-1.177 0-1.73.012-2.25-.614-.49-.54-1.305-1.625-1.838-2.045-.283-.796-.697-1.116-1.43-1.84-.294-.814-.76-1.813-1.227-2.453-.156-.994-.63-1.848-.82-2.658-.128-.302-.28-.72-.406-1.022"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M416.81 162.04c.04.28-.187 1.3-.336 1.895-.447 1.217-1.133 2.257-2.045 3.067-.983.59-1.373.94-2.454 1.022-.498.373-1.086.16-1.433-.205-1.054-.39-1.68-1.02-2.657-1.432-.92-.59-1.4-.94-2.25-1.43-.476-.702-1.08-1.492-1.633-2.045-.133-.222-1.307-2.18-1.08-1.566.433.642 1.498 1.884 1.898 2.793.494.68 1.07 2.022 1.636 2.657.566.718 1.292 1.516 2.045 2.453.46 1.133.936 1.946 1.023 3.067.318.618.408 1.698.408 2.658 0 1.112-.166 1.653-.203 2.658-.267.665-.527 1.427-.818 2.044-1.236 0-2.227-.206-3.07-.613-.66-.465-1.06-1.126-1.634-2.045-.402-1.13-1.094-1.917-1.634-3.067-.678-1.14-1.224-2.885-1.84-3.885-.142-.992-.534-1.88-.613-3.066-.224-.37-.29-.483-.412-.89.13.954.204 1.717.204 2.934 0 1.25.072 2.36-.408 3.067-.365 1.097-.953 1.818-1.634 2.658-.83.523-1.563 1.223-2.66 1.636-1.216.422-2.16.613-3.475.613-1.317-.272-2.607-.4-3.828-.726-1.288-.116-2.204-.196-2.713-.91-.755-.848-1.608-1.785-2.25-2.862-.595-.39-.394-.445-.778-.87.434.676.366.598.575 1.687.388.8.41 1.477.41 2.453-.486.82-.992 1.693-1.636 2.453-.667.816-1.012 1.073-2.045 1.43h-3.07c-.99 0-1.934-.046-2.658-.203-.882-.192-1.91-.597-2.86-1.022-.446-.357-3.227-2.66-3.566-3.112"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M366.796 175.793H367c-.64 0-.246-.053.614 1.022.618 1.244 1.018 2.35 1.635 3.476.15 1.262.383 2.303.41 3.68 0 1.45.108 2.814-.41 4.09-1.357 1.317-1.887 1.895-3.68 2.044-1.768.36-2.16.03-2.862-1.635-.51-1.047-.9-2.212-1.43-3.273-.273-.78-1.062-1.847-1.637-2.862-.312-.634-.752-1.585-1.226-2.453-.363-.95-.577-1.915-1.022-2.453-.154-1.504-.287-.657.204 0-.128 1.294.715 4.95-.273 5.442-.676.32-1.383.13-2.512.13"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M419.857 165.01c0 .067.112 1.312.112 1.38 0-.62-.012-.272.205 1.022.074 1.356.398 2.72.816 3.68v2.863c-.32 1.08-.492 1.578-1.225 2.453-.43.632-.673.818-1.635.818-.657.328-2.08.204-3.068.204-1.094-.3-2.498-.39-3.268-1.022-.676-.52-1.322-.83-1.714-1.467.286.096.204.583.204.26m-5.234 3.659v.41zv.41zc-.18 1.924-.714 2.78-1.842 4.294-.758.89-1.505 1.683-2.657 2.25-1.626.847-3.255 1.093-5.11 1.226-1.398 0-1.946.055-2.66-.818-.892-.714-1.853-1.71-2.248-2.862-.747-.908-1.142-2.092-1.635-3.067-.23-1.163-.657-2.176-1.022-3.27-.247-.96.196.658.204 1.43 0 1.617-.258 2.876-.613 4.293-.435 1.292-.845 2.216-1.637 3.272-.8 1.268-1.783 1.74-3.065 2.657-1.955.435-3.722.39-5.725.205-1.288-.395-2.22-.68-3.272-1.43-.964-.303-2.17-.885-2.657-1.432-.995-.407-.648-.175-1.294-.5.148.94-.774 4.186-.954 5.202-.315 1.106-.448 1.72-1.226 2.25-.82.74-1.574 2.443-2.692 2.904-.842.183-1.89.773-2.954.857-.74.335-1.568.228-2.267.426"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M419.142 177.838c.074.453.408 2.154.408 3.27v3.477c-.064 1.152-.28 2.12-.408 3.066-.28.985-.71 1.43-1.43 2.046-1.08.56-1.783.986-2.864 1.226-1.282 0-1.643-.206-2.657-.817-1.226-.97-2.07-1.742-3.067-2.862-.842-.906-1.4-1.62-2.045-2.25-.14-1.072-.495-1.79-.816-2.862-.37-.517-.612-1.16-1.022-1.634.376.752.876 1.164 1.43 2.25.64 1.11.986 2.33 1.43 3.474.36.94.83 1.96 1.434 2.454.43 1.022.707 1.393 1.02 2.453.095 1.237.206 2.37.206 3.68-.41 1.185-.86 1.995-1.84 2.658-1.312.78-2.472 1.008-4.088 1.226-1.738-.008-3.375-.094-4.702-.612-.562-.688-1.855-1.795-2.66-2.658-.678-1.12-1.343-2.155-2.043-3.27-.36-.944-.696-1.757-.818-2.66-.22-.656-.295-1.7-.616-2.247-.28-1.527-.204.844-.204 1.43v3.68c-.43 1.763-1.465 3.228-2.657 4.703-1.462 1.172-2.652 2.095-4.498 2.248-1.793 0-3.054.052-4.498-.817-.673-.8-1.698-1.855-2.453-2.862-.69-1.165-1.253-1.933-1.635-3.067-.154-.71-.252-1.78-.41-2.658 0-.83-.086-.147-.15-.83 0 .953-.055.898-.055 1.852.15 1.348.204 2.685.204 4.09-.48 1.564-.507 2.186-2.248 2.248-1.242-.09-1.605-.324-2.455-1.022-.98-.578-2.085-1.392-2.862-2.044-.792-.74-1.136-1.12-1.857-1.71"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M410.956 193.58h.204c-.6 0-.262-.036.82.613.38.574 1.112 1.464 1.633 2.248.538.745 1.155 2.097 1.635 2.66.41.72.805 1.24 1.022 2.043 0 1.246.165 2.287.207 3.476 0 1.25-.193 1.788-.614 2.657-.655.432-1.606 1.05-2.658 1.43-1.06.14-2.12.205-3.27.205-1.1 0-2.062-.085-3.07-.204-.696-.315-1.803-.76-2.452-1.227-.742-.655-1.53-1.775-2.25-2.657-.455-.73-.63-1.453-.815-2.248-.26-1.013-.38-2.104-.818-2.863-.15-.684-.332-1.512-.408-.204-.273.542-.207 1.605-.207 2.453-.228 1.077-.498 2.11-1.02 3.068-.78.72-1.303 1.67-2.456 2.044-1.36.86-2.923 1.04-4.496 1.227-1.21 0-2.607.152-3.682-.206-.687-.326-1.34-.68-2.247-1.226a9.3 9.3 0 0 1-2.456-2.25c-.764-.958-.764-1.628-1.227-2.86-.066-1.162-.33-1.852-.408-2.863-.154-.284-.382-.79-.612-1.023 0 1.436.19 2.613.612 3.885.07.975.204 1.82.204 2.862-.038 1.022-.242 1.696-.613 2.452-.74.544-1.07.872-2.045 1.227-.97.18-1.99.203-3.068.203-.908-.245-1.605-.79-2.453-1.022-.49-.594-1.035-.85-1.633-1.84-.68-1.025-.82-1.18-.82-2.452.19-1.103.412-2.058.412-3.27 0-1.148.025-1.782.407-2.66.047-.847.092-.49.092-1.463"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M371.51 204.21h-.203c.602 0 .24-.058-.408 1.022-.5.945-.75 1.902-1.227 2.454-.23.844-.602 1.21-1.227 1.635-.267.75-.845 1.033-1.433 1.432-.628.298-1.32.56-2.042.818l2.043-.818c-.628.298-1.32.56-2.042.818"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M435.91 216.274c-.068 0 1.156-.616 1.087-.616.6 0-1.028.58-2.11 1.23-.616.31-1.925.204-2.86.204-.818-.19-2.153-.495-2.66-1.022-.278-1.105-.683-2.182-1.02-3.272-.328-.95-.492-2.037-.614-3.066-.29-.986-.493-1.812-.818-2.862a52 52 0 0 1-1.02-3.476c-.302-1.014-.54-1.89-.615-2.862-.432-.35-.477-1.006-.615-1.635"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M428.546 214.025c-.148 0-.484.97-.818 1.636-1.335 1.566-2.853 2.81-4.294 4.09-1.272.6-2.255 1.48-3.68 1.635-.59-.535-.82-1.974-1.023-3.068-.573-1.932-.867-3.902-1.43-5.723-.508-.917-1.008-2.028-1.226-2.862-.35-.737-.474-1.59-.61-2.25.16 1.594.918 3.088 1.225 4.703.248 1.352.407 2.667.407 4.09v3.475c-.23 1.267-.623 2.46-1.43 3.27-.21.13-1.036-.44-1.842-.817-1.168-.635-2.527-1.364-3.27-1.84-.783-1.132-1.985-2.415-2.862-3.68-.374-1.274-.655-2.342-.82-3.68-.27-1.18-.6-2.84-1.02-3.68-.057-.672-.346-.718-.67-1.075-.195 1.326-.72 2.115-1.17 3.324-.524.55-1.166 1.127-2.045 1.84-1.277 1.16-2.702 2.358-4.088 3.27-1.295.82-2.36 1.148-3.886 1.227-1.457-.046-2.042-.175-3.065-1.023-1.688-1.05-2.817-2.543-4.295-4.09-1.102-1.21-1.52-1.65-1.634-3.27-.068-.887-.24-1.512-.41-2.453 0 .273-.066.204.207.204"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M390.108 216.682c-.06.416-.244 2.313-.408 3.068-.23.845-.54 1.253-1.227 1.634-.498.42-1.464.684-2.045 1.023-1.057.1-1.976.29-2.863.408H380.5c-1.068 0-1.767.018-2.25-.612-.61-.5-1.242-1.542-1.634-2.25-.342-1.157-.42-1.872-.207-2.862 0-1.414.18-2.674.206-4.088 0-1.022-.103-3.177-.103-4.2"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M376.836 220.364v.204c0-.55.013-.27-.204.82-.276.823-.683 1.114-1.227 1.633-1.03.227-1.337-.03-2.455-.407-.716-.577-.898-1.078-1.43-1.634a3.36 3.36 0 0 0-1.227-1.638c0-.44-.1-.305-.204-.612"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M370.4 218.616c0 .066.094.78.507 1.33.41.898.88 1.785 1.227 2.86v3.272c-.1 1.24-.28 2.66-.82 3.476-.454.652-1.6 1.17-2.656 1.635-1.046.518-2.233.573-3.475.613-1.465-.323-2.695-.834-4.09-1.634-1.235-.632-2.475-1.408-3.68-2.046-.564-.49-1.1-.737-1.635-1.43-.593-.435-1.08-1.055-1.637-1.434-.39-.575-1.104-.988-1.633-1.635-.514-.368-.872-.91-1.227-1.43"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M433.977 230.22c0 .118-1.936 1.673-2.572 1.99-.795.584-2.135 1.132-3.272 1.638-1.595.488-2.84.816-4.495.816-.467-.683-1.728-1.528-2.453-2.453a37 37 0 0 0-1.638-2.86c-.37-1.18-.808-2.38-1.226-3.476-.357-1.057-.68-1.67-.818-2.863-.336-.465-.61-1.867-.715-1.228.673.686.758 1.812 1.126 2.866 0 1.277.172 2.416.204 3.68-.29.818-.38 1.38-1.023 1.84-.45.52-.763.613-1.634.613-.6.36-1.174.016-2.045 0-1.07-.315-1.365-.527-1.84-1.226-.603-.42-1.02-1.242-1.84-1.84-.52-.963-.82-1.32-1.226-2.248-.27-.75-.494-1.613-.616-2.66 0-1.075-.167-2.013-.204-3.064 0-.737.056-2.436-.204-2.87-.154 1.246-.41 2.69-.41 4.096-.18.965-.236 2.098-.41 3.065-.45 1.036-1.09 2.114-2.044 3.068-1.282.727-2.41 1.013-3.883 1.227-1.55 0-2.968-.188-4.5-.203-.94-.536-1.99-1.26-3.064-2.046-1.002-.906-2.276-2.045-3.068-2.657-.252-.71-.755-1.14-1.227-1.636-.29-.54-.414-.47.205-.204.533.533 1.402 1.274 1.842 2.045.336.652.818 2.072 1.226 2.657 0 1.11.19 1.585.204 2.657-.193 1.054-.824 1.31-2.045 1.637-1.166 0-2.244-.117-3.065-.408-.98-.412-1.714-.72-2.25-1.23-.524-.356-1.263-.9-1.636-1.43-.773-.817-1.597-1.68-2.248-2.454-.414-.453-1.03-1.595-1.43-2.045.198.3.34.353.614.82.73.92 1.144 1.496 1.634 2.248.39 1.01.734 1.494.82 2.657 0 .99-.05 1.937-.205 2.66-.233.853-.61 1.346-1.433 1.635-.618.31-1.926.204-2.86.204-.688-.3-1.914-.827-2.658-1.023-.475-.576-1.455-1.276-2.046-2.04-.52-.67-.82-1.355-1.43-1.843.527.435.853 1.206 1.43 1.842.316.642.782 1.638 1.023 2.452.41.903.565 1.89.82 2.86 0 1.095-.072 2.067-.207 3.068 0 1.07 0 1.852-.408 2.453-.252.917-.72 1.34-1.635 2.043-.98.19-1.388.397-2.453.41-.413-.5-1.014-1.05-1.637-1.637-.278-.59-.694-1.503-1.022-2.043-.403-.657-.824-1.004-1.227-1.84a8.9 8.9 0 0 1-1.837-2.658c-.517-.775-1.04-3.013-1.227-3.877-.28-.188.33.525.408 1.83 0 1.09-.063 2.075-.204 3.068.032 1.2.204 2.266.204 3.477-.11.813-.24 1.7-.614 2.25-.504.884-1.473 1.61-2.657 2.04-.446-.62-.97-.814-1.84-1.02-.85-.436-1.46-.64-2.452-1.02-.94-.684-1.34-.817-2.044-1.842-.668-.63-1.285-1.66-1.637-2.453-.158-.723-.205-1.666-.205-2.657.013-1.285.198-2.098.614-3.068.227-.832.765-1.4 1.43-1.838.58-.582 1.197-1.074 2.045-1.23.103-.59.572-.567 0-.613v.612c.103-.59.572-.567 0-.613"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M432.23 245.292c0 .122-.595.5-1.228.82-1.298.412-2.744.097-4.09 0-1.327-.332-2.286-.406-2.86-1.228-.666-.476-1.69-1.53-2.25-2.25-.302-.635-.496-1.376-.612-2.248-.133-1.062-.225-2.228-.41-3.27v-3.27c0-1.11-.19-1.587-.205-2.66.09-.088.154.514.408 1.022 0 1.28-.045 2.506-.204 3.68-.112 1.15-.512 1.89-.82 2.66-.595.74-.93.977-1.838 1.226-.667.398-1.833.575-2.863.612-1.26-.07-1.97-.334-2.66-1.022-1.003-.798-1.646-1.672-2.248-2.86-.352-1.148-.612-2.18-.612-3.477-.14-.91-.074-2.6-.41-3.272-.03-.596.172-1.85-.098-2.148.138 1.052-.096 2.993.098 4.193 0 1.346-.037 2.644-.204 3.884-.55 1.245-.805 1.915-1.84 2.453-.62.623-1.413.93-2.452 1.227-1.573 0-3.205.116-4.702-.204-.742-.202-1.438-.607-2.25-.82-.558-.47-1.395-.76-2.044-1.43-.752-.823-1.3-1.597-1.635-2.656-.996-1.28-1.732-2.507-2.25-3.884"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M427.513 256.763h-.204c.55 0 .27-.013-.82.204-1.064.355-2.03.106-3.067-.204-.69-.305-1.412-.784-1.838-1.227-.713-.874-.99-1.107-1.43-2.25-.345-1.405-.412-2.58-.412-4.086.016-1.192.33-1.958.615-3.068.363-1.123.856-2.92.856-4.167-.045 1.354-.78 3.41-.856 4.782v3.27c-.328.98-.328 1.887-.82 2.658-.656.933-1.246 1.25-2.452 1.43-1.194-.108-1.205-.455-1.84-1.43-1.082-1.303-1.686-3.05-2.043-4.702v-3.27c0-1.368.103-2.598.204-3.885.085-.845.148-.964.148.13.077 1.576.26 2.752.26 4.366-.292 1.197-.76 2.2-1.227 3.067-.874.12-1.563.396-2.657.41-1.088 0-1.925-.05-2.656-.41-.51-.857-1.526-2.002-2.045-3.066-.24-1.12-.57-2.06-.616-3.27-.254-.51-.32-1.61-.408-2.25.218 1.278.204 2.693.204 4.09-.01 1.3-.047 2.57-.61 3.27-.566.76-1.294.8-2.25 1.023-1.04 0-2.157.098-3.068-.204-1.023 0-2.194-.063-2.86-.41-.928-.406-1.265-.705-2.046-1.227-.42-.62-1.23-1.415-1.635-2.453 0-1.083.14-1.976.613-2.657.193-.887.384-1.436.82-2.25.412-.985.8-1.42 1.225-2.044.366-.196-1 .92-1.637 2.045-.91.882-1.673 1.71-2.452 2.453-1.036.654-1.576 1.134-2.86 1.226-1.278 0-1.802-.225-2.658-.61-.554-.608-1.097-.714-1.227-1.64-.373-.918-.54-2.287-.818-3.064-.013-1.152-.196-2.15-.408-3.27-.11-.817-.204-2.428-.204-1.633 0 1.766-.085 2.802.204 4.492v3.475c0 1.076-.15 1.72-.41 2.453-.946.13-1.312.395-2.454.41-1.012-.27-1.552-.486-2.25-.818-.48-.458-.886-1.043-1.43-1.43l1.43 1.43c-.48-.458-1.71-1.557-2.253-1.944"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M420.467 268.525c-1.77 0-4.056-.927-5.828-.927-1.1-.273-2.354-.368-2.862-1.023-.437-.678-.76-1.51-1.023-2.657 0-1.45.11-2.278.816-3.475.536-1.057 1.397-1.897 1.842-2.658.59-.744 1.21-1.753 1.635-2.657.41-.64.397-.712.87-1.393.62-.11-1.896 1.372-3.73 2.62-1.42.633-2.62.805-4.296.816-1.26-.275-3.056-.683-4.086-1.02-.82-.72-.82-1.853-.82-3.27v-3.68c0-.782.036-.872-.147-1.372-.085 1.162-.318 1.655-.466 2.802-.108 1.338-.333 2.477-.815 3.68-.53 1.004-1.182 2.358-1.84 3.068-.645.826-1.51 1.284-2.25 1.838-1.378.244-2.525.098-3.884-.204-1.456-.49-1.734-1.06-2.248-2.453-.448-1.527-.408-3.21-.408-4.907.045-1.264.318-2.445.612-3.68v-3.475c0-.342.392-1.187.392-1.526"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M411.99 267.386c-.498.066-2.17.39-3.272.41-.8.265-2.162.204-3.272.204-1.19-.28-1.775-.29-2.25-1.022-.727-.506-1.008-1.004-1.633-1.43-.302-.605-.64-1.278-1.023-1.842-.103-1.155-.395-2.063-.408-3.27 0-1.072-.002-1.853-.41-2.454v-.408"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M399.724 257.982v3.27c0 1.074-.16 1.92-.408 2.862-.114.962-.38 2.03-.818 2.66-.488.935-1.174 1.248-2.045 1.634-.994.135-1.264.165-2.043-.204-.712-.193-1.634-.678-2.25-1.226-1.067-.443-1.935-.967-2.656-1.637-.895-.627-1.513-1.268-2.045-1.838-.414-.826-.693-2.018-1.024-2.657 0-1.128.088-1.777.408-2.453.326-.654.753-1.14 1.227-1.637.496-.472 1.75-1.385 2.462-1.637"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M386.426 261.054h-.204c.694 0 .262-.04-1.023.816-.907.697-1.527 1.03-2.454 1.434-1.31.307-2.143.408-3.68.408-1.343 0-2.664.013-3.886-.204-.887 0-1.854-.006-2.453-.204-.222-.67-.598-1.35-1.022-1.842-.157-.723-.204-1.666-.204-2.657.366-.582.65-1.796 1.023-2.25.52-.934.864-1.246 1.635-1.84.72-.5 1.285-.744 1.84-1.226.85-.285 1.185-.64 2.046-1.432.82-.744 1.15-1.266 1.838-1.838.46-.437 1.07-1.018 1.638-1.434.27-.853.74-1.433.816-2.453v-3.883"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M363.83 273.214c-.242-.122-.883-1.3-1.53-1.947-1.427-1.436-2.633-2.114-2.657-4.088.46-.682 1.264-1.214 2.25-1.635.556-.546 1.16-.986 1.84-1.227.774-.17 1.807-.206 2.862-.206 1.112 0 1.653-.167 2.657-.204 1.072-.014 1.55-.204 2.66-.204.375-.38.8-.204-.207-.204-.726.33-1.547.408-2.657.408-.904-.393-1.447-.594-2.453-.816-.544-.472-1.206-.628-1.635-1.23-.91-.51-1.192-.966-1.433-2.042-.133-.996-.167-1.436.41-2.25.3-1.15.867-1.832 1.43-2.656.677-.692.986-.82 2.25-.82h3.068c.726.13 1.544.208 2.246.41-.97-.28-1.95-1.29-2.86-2.25-.87-.946-.916-1.248-1.43-2.25-.34-1.278-.77-2.01-.82-3.268v-3.068c.197-1.102.47-1.55.82-2.25"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M360.465 244.074c-.12.243-1.007 1.565-1.227 2.045-.262.733-.41 1.38-.41 2.452-.18.882.007 1.338.206 2.25.596.407 1.084.84 1.635 1.633.886.427 1.18.838 1.633 1.638.556.376 1.388 1.27 1.74 1.84-1.01-.073-2.164-.892-3.17-1.228-.586-.273-1.826-.642-2.454-1.02h-3.476c-1.09.082-1.304.445-2.045.816-.422.66-.738 1.22-.817 2.25-.228.683-.228 1.77 0 2.453.46.495 1.054 1.245 1.634 1.637.758.43 1.35.808 2.25 1.43.95.562 2.156 1.105 2.86 1.635.69.188 1.505.45 2.046.818.498.088 1.128.204.203.204-.548-.32-1.59-.394-2.25-.61-.966-.163-1.906-.5-3.064-.616-1.072 0-1.427-.023-1.84.616-.833.24-1.076.74-1.635 1.226-.366.77-.58 1.256-.615 2.453.22.82.432 1.232.615 1.84.15.354.535 1.098.818 1.33l-.818-1.33"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M351.67 223.013c-.55.14-2.403.713-3.476 1.023-.73.244-1.24.654-1.84 1.023-.592.4-.95.926-1.43 1.43-.243.73-.653 1.24-1.022 1.84-.32.676-.537 1.272-.614 2.25.016 1.374.477 1.904 1.022 3.27.702 1.19 1.26 2.58 2.25 3.27.84.516 1.496.898 2.452 1.433.652.178 1.648.646 2.25 1.023 1 .132 1.658.415 2.25.815h-1.636c-.956.04-1.8.17-2.456.616-.7.28-1.004.837-1.634 1.227-.23.847-.586 1.208-.82 2.25-.338.677-.155 1.78 0 2.656.428.613.812 2.057 1.228 2.656.44 1.504.856 2.72 1.84 3.886.176.506 1.43 1.287 1.847 1.534-.63-.43-2.197-1.99-3.07-2.763-.518-.654-1.16-1.107-2.047-1.43-1.08-.414-2.09-.734-3.27-.817-1.114 0-1.742.122-2.454.408-.523.453-1.19.69-1.636 1.227-.583.417-.885 1.084-1.226 1.842.04 1.1.283 1.65.818 2.453.477.715.827 1.224 1.43 1.635.61.704 1.283 1.118 2.25 1.634.805.575 1.53.705 2.453 1.227.908.292 1.657.713 2.86 1.227 1.025.562 3.77 2.554 4.612 2.874.18.272-2.723-1.736-3.59-2.258-1.04-.23-1.4-.586-2.25-.82-1.06-.49-1.623-.88-2.656-1.02-.89-.41-2.055-.642-2.863-.817-1.23 0-2.226-.196-3.476-.204-.882 0-.954.022-1.226.613-.686.53-1.075 1.136-1.634 1.84-.384.68-.826 1.28-1.227 1.84-.297.693-.63 1.562-.82 2.248-.18.838-.394 1.376-.407 2.454"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M334.106 261.85c0-.067.207.275.207.206 0 .575-.18-.143-.615-1.227-.675-.803-1.534-1.985-2.453-2.864-1.306-.93-2.66-1.873-4.09-2.453-1.243-.59-2.56-1.222-3.884-1.635-1.19-.23-2.423-.204-3.678-.204-1.235.013-1.415.334-2.25.612-.48.54-.924 1.09-1.226 1.84-.24.6-.39 1.575-.612 2.25 0 1.044-.193 1.83-.207 2.86 0 .838.2 2.23-.304 2.563.212-.896.413-2.618.715-3.79-.016-1.23-.384-1.586-.82-2.656-.875-.983-1.697-2.022-2.452-2.864-.707-.898-1.605-1.955-2.453-2.657-.707-.432-1.404-.922-2.045-1.227-1.038-.42-1.523-.776-2.657-.818-.484.463-1.05.866-1.636 1.226-.6.41-.972.875-1.227 1.638-.373.548-.498 1.494-.61 2.453-.33.94-.41 1.56-.41 2.657-.262.347-.357.87-.41 1.43.122-.914.395-1.724.41-2.86-.16-1.058-.572-2.09-.818-3.476-.038-1.41-.306-2.268-.82-3.068-.882-.787-1.692-1.93-2.86-2.657-1.02-.49-1.828-.802-3.068-.818-1.11.013-1.664.276-2.453.615-.287.712-.41 1.34-.41 2.453.014 1.158.218 1.57.613 2.25.122.902.524 1.586.614 2.656.28.472.204 1.47.204 2.25-.094-1.103-.764-1.892-1.02-2.862-.256-1.173-.57-2.16-.82-3.068-.448-1.2-1.128-2.254-1.838-3.475-.72-.58-1.102-1.175-2.045-1.84-.925-.803-1.624-1.277-2.658-1.43h-2.864c-.837.333-1.086.65-1.635 1.226-.253.975-.743 1.76-1.02 2.453 0 1.016.04 1.95.203 2.862.485.506.808 1.052 1.022 1.84.345.587.82 2.603.82 3.586-.314-.837-1.103-3.57-1.432-4.61-.3-.83-.776-1.84-1.226-2.657-.323-1.17-.795-1.78-1.433-2.656-.52-.8-1.343-1.496-2.25-2.045-.876-.735-1.245-.978-2.453-1.023-1.05.312-1.252.667-2.248.818-.384.347-1.067.602-1.43 1.023-.194.82-.503 1.38-.82 2.045-.155.723-.203 1.666-.203 2.657.362.535.79 1.322 1.022 2.045.628.69.893 1.393 1.43 2.25.302.902 1.667 3.048 2.05 3.687-.12.12-1.197-1.558-1.64-2.053-.796-1.103-1.19-1.782-1.636-3.07-.527-.688-1.152-1.644-1.635-2.042a11 11 0 0 0-2.656-2.25c-.914-.642-1.4-.613-2.66-.613-1.29-.268-2.217.008-3.064.408-.61.62-1.897 1.626-2.453 2.045-.615.78-.917 1.3-1.434 1.84-.272.684-.495 1.38-.612 2.25.09 1.13.534 1.383 1.024 2.453.543.42 1.35 1.5 1.838 1.84.393.484 2.91 2.765 2.05 2.765-.37-.545-1.62-1.857-2.254-2.355-.598-.73-1.34-1.364-1.838-1.84-.84-.364-1.518-.692-2.453-.82-1.182-.235-1.93-.37-3.068-.407-1.034.092-1.595.604-2.25 1.022-.368.6-.78 1.11-1.022 1.84-.46.558-.408 1.384-.408 2.454.365.537.747 1.324 1.022 2.042.623.598 1.076 1.57 1.84 2.25.81.68 1.517 1.008 2.452 1.225 1.006.037 1.547.204 2.66.204.707.046-.342.18-.615.412"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"m247.825 264.737-.204-.204c.512.51.282.265-.818-.615-1.245-.585-2.61-.77-4.087-.816-1.126.29-2.35.594-3.476.816-.655.668-1.08.95-1.842 1.84-.31.777-.477 1.368-.204 2.454.55 1.13.784 1.53 1.634 2.453.594.403 1.084.72 1.842 1.023 1.547.233 3.065.76 4.702.82 1.18 0 4.116.375 5.23.41 1.382 0-3.5-.207-4.004-.207-1.48 0-2.932.01-4.294.204-1.303.265-2.55.562-3.68 1.227-.932.53-.818.984-.818 2.25.294.73.65 1.232 1.022 1.84.64.59 1.17 1.148 2.046 1.432 1.07.588 2.182 1.126 3.475 1.226.847.286 4.447-.03 3.19-.1-.656.553-5.07.67-6.258.916-1.26.533-2.612 1.28-3.68 1.637-.23.886-.405 1.53-.204 2.454.44.718.79 1.373 1.43 2.046.512.508.8.792 1.638 1.02.874.43 2.304.667 3.475 1.022.91 0 .926-.135 1.432-.408m93.848-37.827c0-.07-.41-.678-.82-1.226-1.08-1.267-2.91-2.663-4.294-3.887-1.49-.6-2.58-1.32-4.088-1.43-1.268 0-1.676.01-2.045 1.022-.445.537-.63 1.282-.818 2.25-.42 1.008-.408 1.956-.408 3.27-.307.612-.26 1.727-.612 2.25-.03.542-.133.89-.207.815-.34-.68.217-2.087.41-3.065 0-1.242.165-2.28.205-3.475-.477-1.863-.644-2.337-2.045-3.884-1.388-1.46-2.382-2.338-4.088-3.475-.895-.23-2.07-.6-3.27-.614-.74.4-1.742 1.047-2.455 1.635-.717.972-1.006 1.592-1.022 2.864.148 1.122.49 1.843 1.022 2.86.284.72.6 1.642.82 2.66.373.956.526 2.344 1.02 3.065.137 1.09.13.702-.205 0-.106-1.386-.546-2.673-1.023-3.68-.397-1.49-.837-2.037-1.634-3.272-.79-1.226-1.137-1.72-2.453-1.838-.874-.29-1.99-.29-2.864 0-.755.42-.977.67-1.02 1.838-.233.697-.31 2.382-.31 3.378 0 .303 1.04-4.243.718-5.42-.765-1.41-1.626-2.513-2.863-3.68-1.205-1.448-2.296-2.775-3.883-3.68-1.11-.33-1.722.158-2.453.818-.954.635-1.696 1.54-2.045 2.25-.232.85-.534 1.34-1.024 2.248-.768.96-1.396 4.47-1.53 3.796-.165-1.1.235-3.926.51-5.023.114-1.407.24-2.626-.206-3.68-.848-1.123-1.59-1.95-2.657-2.453-.71-.777-1.245-.82-2.453-.82-.91.29-2.096.976-3.068 1.636-.596.56-.853.943-1.02 1.637-.368.636-.657 1.952-.82 2.657-.21.877-.597 1.698-.613 2.86-.425 1.39-.205-.945-.205-1.634-.326-.983-.164-2.32-.612-3.067-.554-1.026-.81-1.264-1.84-2.043-1.048-.474-1.58-.818-2.862-.818-.57.4-1.26.657-1.84 1.226-.65.833-1.2 1.66-1.84 2.658-.22.888-.205 1.863-.205 2.864.023.832.172 1.32.206.204v-3.272c-.22-1.144-.423-1.674-1.432-2.045-.71-.385-1.67-.41-2.86-.41-.833.295-1.08.65-1.228 1.636-.508.715-.614.953-.614 2.045-.29.578-.204 1.765-.204 2.658-.326.437-.37 1.32-.408 0-.07-1.025-.33-2.138-.615-2.86-.68-.53-1.62-1.124-2.25-1.432-.998 0-1.976-.018-2.86.204-.79.403-.788 1.025-1.43 1.635-.208.88-.536 1.224-.616 2.25-.185.86-.122 1.554 0 2.452.228.64.57 1.42.41 1.84a35 35 0 0 1-2.044-2.656c-.758-.61-.967-.876-2.045-1.022-.88-.068-1.423-.206-2.454-.206-.494.432-1.1.863-1.633 1.23-.48.704-.874.855-1.023 1.837-.31.617-.21 1.83 0 2.453.498.323.665.733 1.227 1.022.425.527 1.063 1.04 1.43 1.635.245.49.333.243-.407.206-.64-.768-1.475-1.06-2.66-1.637-1.273-.23-2.187-.02-3.475.203-.58.84-.977 1.627-1.02 2.864.04 1.088.73 2.683 1.33 3.18"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M346.77 237.32h-1.025c-1.617-.152-3.072-.396-4.7-.412-1.5 0-2.65.016-3.885.615-1.2.418-1.435.866-2.25 1.634-.52.975-1.146 1.783-1.43 2.864-.367.91-.775 1.723-.818 2.862.262 1.565 0-1.126 0-1.84.326-1.845.207-3.628-.204-5.52a22.3 22.3 0 0 0-1.43-3.68c-.46-.812-.983-1.512-2.045-1.84-.737-.212-1.932-.24-2.657 0-.517.363-1.37 1.34-1.842 2.045-.52.694-1.21 1.748-1.634 2.453-.51.853-.91 1.923-1.227 2.657-.103.593-.25 1.245-.41 1.637-.408-.818-.9-1.09-2.043-1.637-1.062-.91-2.25-1.738-3.27-2.25-.817-.505-1.983-1.234-2.865-1.634-.628-.437-1.695-.704-2.657-.818-.993 0-2.4-.127-3.065.204-.795.282-1.078.725-1.433 1.432-.36.585-2.122 2.625-2.053 2.46 0-1.138 1.004-3.44.622-4.505-.544-1.078-.99-1.592-1.227-2.453-.644-.713-.877-1.484-1.635-2.045-.278-.783-.805-1.016-1.226-1.636-.91-.387-1.017-.773-2.25-.818-1.017 0-1.96.164-2.66.408-.76.21-1.398.49-1.837 1.022-.92.44-1.087.82-1.842 1.43-.524.37-1.17 1.164-1.43 1.842-.596.726-.085.93 0 2.045"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M343.298 227.94v-.206c0 .604.037.265-.612-.816-.413-.67-.845-1.2-1.637-2.045-.708-.83-1.19-.82-2.454-.82-.893 0-2.08-.083-2.657.205-.798.305-1.264 1.076-1.842 1.842-.646.898-1.29 1.547-1.634 2.25-.41.976-.79 1.395-1.023 2.248-.516.387-.492.8-1.226 1.022-.368-.667-1.043-1.065-1.43-1.637-.914-.315-2.127-1.208-3.068-1.838-.998-.665-1.912-1.04-2.86-1.637-.912-.316-1.487-.408-2.658-.408-1.285.058-1.88.355-2.863 1.022-.893.42-1.51 1.054-2.25 1.635-.72.5-3.67 4.837-4.41 5.446-.755.71 2.564-3.293 3.184-4.424.476-1.21.817-1.943.817-3.272-.233-1.672-.384-3.21-1.637-4.292-.98-.384-2.14-.604-3.475-.615-.935.13-1.412.415-2.453.616-.784.42-1.566.628-2.25 1.227-.654.402-1 .823-1.838 1.226-.408.598-1.014.847-1.43 1.43-.302.13-1.412 1.24-1.542 1.54"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M336.543 223.225h-.204c.6 0 .264.035-.817-.614-.56-.38-1.086-.868-1.637-1.43-1.15-.29-2.066-.83-3.272-1.022-1.022-.42-2.172-.816-3.065-1.023-.883 0-1.868-.005-2.454.204-.408.598-.882.945-1.226 1.636-.273.575-.464 1.52-.82 2.043-.023.817-.43 2.237-.923 2.566.455-.806 1.287-3 1.536-4.406-.315-1.5-.91-2.882-1.634-4.293-.8-.97-1.718-1.922-2.658-2.863-.946-.236-2.003-.204-3.068-.204-1.245 0-1.648.015-2.25.818-.582.46-1.096 1.27-1.634 1.635-.585.782-1.13 1.116-1.43 2.25a9 9 0 0 0-.82 2.25l.82-2.25a9 9 0 0 0-.82 2.25v.203c.256-.853.8-1.666.82-2.863 0-1.058.045-2.32-.204-3.067-.326-.808-.652-1.306-1.433-1.84-.954-.942-1.74-1.577-2.86-2.044-.915-.467-1.86-.538-2.865-.204-1 .42-1.396.78-1.838 1.43-.883.313-.98.687-1.023 1.84-.037 1.11-.185 2.008 0 2.863.138 1.17.474 1.907.82 2.864.444.688.96 1.096 1.225 1.838.273 0 1.235 1.478 1.235 1.75"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M335.537 222.404c0-.458-.414-2.808-.414-3.886 0-1.11-.19-1.586-.204-2.66 0-.742.195-2.36-.305-2.05.037 1.005.1 2.37.1 3.482-.29.818-.38 1.38-1.022 1.84-.663.442-1.696.408-2.86.408-.98-.106-2.213-.17-2.865-.612-1.05-.225-1.7-.535-2.453-1.022-.7-.398-1.28-.846-1.84-1.227-.237-.872-.663-1.094-.817-2.25-.464-1.066.615-3.587.32-3.88-.08 1.046-3.92 2.673-5.022 3.063-1.12.38-2.02.41-3.272.41-.832 0-1.7-.005-2.25-.205-.87-.636-1.31-1.045-2.044-1.636-.956-.733-1.677-1.137-2.657-2.045-.85-.807-1.298-1.548-1.84-2.25-.348-.757-.968-2.008-1.432-2.657-.107-.816-.203-1.616-.203-2.658v2.862c-.408.9-1.067 1.83-1.838 2.658-1.122.514-2 1.066-3.273 1.227-.707-.393-1.616-.723-2.25-1.022-1.064-.158-1.44-.48-2.044-1.227-.7-1.128-1.32-1.934-1.43-3.27-.313-.56.108-1.05.203-1.84 0-.44.1-.305.204-.614M273.6 197.87c-.063 1.234-1.85 2.754-2.256 3.685-.332 1.05-1.034 1.67-1.436 2.452-.973.55-1.773.775-2.864 1.227-1.497.053-2.707.363-4.292.408-1.282 0-3.163.358-3.78-.408-.86-.932-2.466-2.175-3.17-3.067-.703-.68.513-2.414.325-2.762m-28.117 18.572c-.424 1.274-.885 5.45-2.46 7.904-.714.93-1.684 1.286-2.66 1.636-1.16.302-2.067.7-3.474.818-.986.377-1.53.406-2.453.204-.572-.116.07-1.218-.504-1.335.76.38.084 1.987.707 2.973.08 1.046.368 1.337.408 2.453 0 1.204-.045 2.322-.204 3.474-.105 1.052-.288 1.976-.407 2.86-.617.928.01.142-.81.608-.843.254-1.768.675-2.862.816a26 26 0 0 1-2.66.51c-1.114.663-.63.52 0 1.432.738.593.984.805 1.228 1.944.29.575-.31 2.996-.824 3.892-.09 1.062-.49 1.81-.614 2.86-.34 1.195-.49 2.5-.82 3.68-.203.782-.61 1.7-.815 2.66-.363.652-1.274 1.8-1.637 2.453-.58.357-2.01 1.122-2.662 1.435-.175.675 1.194.598 1.64 1.22.662.663.982 1.106 1.226 2.25.172 1.137.418 1.82.614 2.657-.13.888-.45 2.005-1.022 2.657-.313 1.175-.747 1.785-1.43 2.248-.658.612-1.55 1.094-2.454 1.227-.63.44-1.695.704-2.657.818-.34.286-2.03 1.574-2.463 1.75M300.78 217.09c-.23 0-1.488-.065-2.045-.205-.977-.57-2.055-.408-3.27-.408-1.08.205-1.792.384-2.248 1.022-.482.906-.803 1.586-.818 2.86.012 1.15.367 1.99.61 2.864.432.52.48 1.402.82 2.043 0 .41.513 1.952.513 2.36-.44-.985-1.35-3.5-1.74-4.813-.22-1.463-.38-2.136-1.43-2.86-1.386-1.13-2.088-1.743-3.68-2.046-1.108.178-1.964.906-2.864 1.43-.59.69-1.697 1.325-2.454 1.84-1.012.88-1.696 1.51-2.045 2.862 0 1.044.096 1.844.207 2.66.162.747.374 1.573.612 2.246.272 1.192.526 2.263.614 3.476.206.21.204 1.242.204 1.022-.49-.67-.758-1.56-1.023-2.453-.315-.894-.742-1.755-1.226-2.656-.936-.816-1.172-.887-2.454-1.226-.99 0-1.934.048-2.657.204-.452.37-1.188.723-1.64 1.226-.555.708-1.138 1.346-1.43 2.453 0 1.045.096 1.845.205 2.658v2.456-2.456 2.456"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M299.35 208.3h-.204c.57 0 .267.025-.82-.41-.542-.37-1.458-.474-2.044-.817-1.18-.043-2.116-.204-3.475-.204-1.198.107-1.444.598-1.635 1.84-.286.854-.204 1.883-.204 2.86-.07 1.09-.286 2.018-.41 3.068-.12.552.14 3.933-.1 4.413-.176-1.195-.934-4.502-1.33-5.434-.7-1.54-1.58-2.695-2.862-4.09-.946-.82-1.44-.615-2.66 0-1.176.152-1.42.415-2.042.82-.617.45-1.248 1.05-1.637 1.84-.652.514-1.028 1.202-1.227 2.043.07.897.34 1.73.615 2.452.19.37 2.07 4.292 2.26 4.62.214.355-1.783-3.206-2.464-3.802-.7-.686-1.387-.613-2.66-.613-1.628.203-2.98.446-4.29 1.226-.7.675-.944 1.277-1.434 1.84-.114.85-.336 1.64-.408 2.658.154 1.013.477 1.437 1.023 2.25.186.424 1.524 2.268 1.643 2.768-.786-.434-3.12-1.745-4.3-1.745-1.197.16-1.642.532-2.248 1.43-.427 1.052-.41 2.064-.41 3.272-.035 1.006-.205 1.812-.205 2.86 0 .41.413 4.94.413 5.347-.18-.763-.845-5.598-1.23-6.162-.425-.99-1.135-2.228-2.044-2.864-.655-.392-1.38-.153-2.046.204-.275.562-.964 1.67-1.43 2.25-.273 1.024-.6 1.303-.615 2.452.113.845 1.53 4.597 1.644 5.44 0 .3-1.37-3.437-1.44-3.6-.345-.825-.987-2.083-1.432-3.066-.707-.48-1.05-.964-1.838-1.43-.747-.55-1.354-.9-2.045-1.227-1.008-.287-1.903-.41-3.07-.41-.815.4-1.233.703-1.837 1.635-.286 1.03-.41 1.873-.41 3.068v3.065c.222.813.553 1.407 1.226 2.045.428.63 1.898 2.586 2.462 3.282.83.83-1.38-2.026-1.85-2.26-.84-.447-1.273-.685-2.248-.818-.577-.29-1.764-.204-2.657-.204-.97.334-2.355.54-3.068 1.023-1.145.43-2.12.49-2.454 1.43.043 1.232.28 1.9.615 2.864.507.935.838 1.642 1.43 2.246.41.602.873.975 1.636 1.23.363.532 2.347 1.607 2.872 2.25-.634-.38-2.69-.643-3.484-.412-.562.38-1.372 1.01-2.25 1.634-.887.702-.818 1.19-.818 2.456.074.975.294 1.57.615 2.247.332.703.653 1.203 1.023 2.046-.14.31 4.838 3.536 4.838 3.81m47.298-57.169h-.204c.6 0 .262-.035-.82.613-.923.31-1.824.462-2.656.205a31 31 0 0 0-3.68-.205c-.41-.307-.927-.162-1.226-.613-.832-.366-1.232-.607-1.433-1.43-.473-.788-.915-1.96-1.228-2.863-.445-.834-.78-1.44-1.226-2.453 0 1.25.212 2.338.41 3.476v3.067c-.51.967-.476 1.46-1.637 1.635-1.015 0-1.96-.165-2.658-.408-1.602-.39-3.324-.783-4.906-1.023-.67-.957-1.425-1.276-2.65-2.444"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M271.958 205.03c-1.012.275-1.98.114-2.657.816-.455.685-1.048.94-1.225 1.84-.63 1.225-.82 2.82-.82 4.498.234 1.178.928 2.294 1.638 3.067.368.6 1.25 1.873 1.844 2.765.596 1.175-.466-.354-1.232-.72-.99-1.13-2.244-2.216-3.68-2.453-1.565-.38-2.81-.522-4.29 0-1.045.514-1.27.998-1.434 2.25-.288.577-.203 1.762-.203 2.657.013 1.128.204 2.127.204 3.268.297.92.176 2.13.41 3.068.372.514.67 2.755.92 3.184-.256-1.274-.858-4.575-1.533-5.637-.498-.73-1.248-1.205-2.045-1.634a9.2 9.2 0 0 0-2.453-.616c-.997-.25-2.107-.252-2.862 0-1.198.424-1.603.74-2.046 1.634-.174.803-.476 1.762-.818 2.66-.07.914.003 3.94.003 5.025m9.193-25.469c0-.29-2.228.892-2.454 1.635-1.128.712-1.552 1.46-2.96 1.536-1.387.22-2.576.72-4.09.72h-5.315"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M252.116 208.708v.205c0-.602.035-.262-.614.818-.84 1.096-1.118 1.624-.82 3.067 0 1.183.168 2.132.208 3.27.59 1.405 1.35 3.348 1.838 4.498.506.922.342.437-.612.41-.993-.38-1.9-.41-3.067-.41-1.085 0-2.09.032-3.07.207-.767.51-1.522.837-2.452 1.226-.575.443-1.587.874-2.042 1.43-.218.647-.207 1.715-.207 2.658.113.837.285 1.483.613 2.045.604.912 1.174 1.527 2.046 2.454.462.442 1.21.917 1.837 1.43.633.19 2.05 1.026 2.46 1.436-.733-.503-3.432-2.246-4.298-3.07-1.922-.85-3.962-1.566-6.137-1.84-1.295.047-2.24.69-3.065 1.43-.553.794-.832 1.242-1.637 1.637-.632.776-1.278.65-1.43 1.838-.31.93-.03 1.597.205 2.66.386.977.805 2.08 1.226 2.86.62.607 1.005 1.095 1.638 1.842.766.667 1.23 1.144 2.045 1.43.493.472 1.85.973 2.562 1.227-.495.43-2.146.728-2.768 1.022-.9.763-1.524 1.293-2.043 1.84-.11.815-.206 1.615-.206 2.66-.048.846-.204 1.273-.204 2.245.416.594.975 1.704 1.637 2.25.568.654 1.264.92 1.84 1.433.407.173.66.416 1.022.612l-1.023-.612c.407.173 2.203.52 2.566.716"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M243.72 208.912c-.097 0-.682.682-1.228 1.227-.863.835-.932 1.388-1.43 2.657 0 1.262.008 2.107.818 2.862.488.882 1.245 1.677 1.84 2.452.706.686 1.016 1.242 1.432 2.045-.408-.6-1.216-1.26-1.84-2.25-.693-.496-1.358-1.398-2.25-2.044-1.216-.44-1.75-.58-2.86-.41-.944.63-1.933 1.08-2.66 1.84-.838.712-1.61.92-2.044 1.84-.656.47-.776.934-.818 2.046 0 1.305.29 1.867.614 3.064.554.962 1.034 1.87 1.43 2.456.322.262 1.38 1.703 1.54 1.54-.564-.34-1.836-1.56-2.766-1.747-.77.353-2.376.207-3.475.207-1.21 0-1.942.005-2.864.408-.822.312-1.776.736-2.658 1.43-1.1.38-1.727.798-1.838 2.045.18.994.62 1.166 1.43 2.046.896.942 1.722 1.94 2.86 2.656.51.736 1.776 1.67 2.25 2.25.58.264 3.6.2 2.472.2-.898.233-4.816.914-5.54 1.433-.905.865-1.11 1.66-1.226 3.067.074 1.27.408 2.31.615 3.475.516 1.057.67 1.86 1.226 2.658.44.678 1.493 1.68 2.046 2.045.882.357 2.24 1.025 3.272 1.43.546.2 1.468.416 2.246.612h-3.68c-.956.254-1.692.36-2.248.82-.845.282-1.047.74-1.635 1.225 0 1.12.12 1.757.616 2.453.132.896.633 1.765 1.226 2.25.48.76 1.206 1.422 1.84 1.84.823.718 1.188.885 2.044 1.227.927.125 1.746.477 2.657.612.464.384 1.664.615 2.25 1.022l-2.25-1.022c.464.384 1.664.615 2.25 1.022l1.027.31c-.954.146-2.413.19-3.48.713-1.458.447-2.9.74-3.477 1.634-.92.46-1.004.892-1.226 1.84-.085 1.185-.133 1.61.204 2.454a6.1 6.1 0 0 0 1.638 1.637c.604.506 1.772 1.47 2.657 1.838 1.017.588 1.725.883 2.453 1.227-.975.16-1.99.204-3.068.204-.665.39-1.192.405-1.634 1.022-.684.498-1.13.978-1.227 2.046-.297.884-.1 1.494.407 2.453.636.48 1.336 1.144 2.045 1.634.737.343 1.892.78 2.86 1.022.333.132 1.51.204.412.204-.524.27-1.62.206-2.453.206-1.07.096-1.485.488-2.248 1.023-.654.65-.978.792-1.023 2.042 0 1.16.103 1.66.61 2.25.54 1.128 1.032 1.48 1.842 2.044.69.42 1.802.582 2.86.613 1.26 0 2.486-.03 3.68.207.518 0 4.547.673 4.624.617"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M224.91 241.213c0 .06-.376.596-.612 1.226-1.02.77-1.038 1.45-2.25 1.634-.86.188-1.554.122-2.452 0-.366-.512-1.078-1.055-1.634-1.43-.464-.668-1.222-2.03-1.744-2.46m10.442 8.182c-.052.31-.992 2.014-1.127 2.66-.777.78-1.916 1.976-3.068 2.66-.866.204-1.502.508-2.657.612-.97.312-2.17.204-3.272.204-.895-.206-1.534-.58-2.453-1.022-.394-.487-2.82-2.52-3.486-2.972"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M225.546 251.094c0 .312-.458 4.707-1.025 6.678-.495.874-1.223 1.873-1.838 2.86-.657 1.103-1.04 1.705-2.25 2.25-1.358.512-2.706.615-4.293.615-1.016-.244-2.285-.885-3.477-1.227-.74-.503-1.72-1.104-2.453-1.637-.742-.612-1.626-1.168-2.048-2.045"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M229.414 269.028h-.204c.553 0 .27-.013-.82.204-1.382.204-2.256.08-3.475-.41-.882-.308-1.933-1.108-2.86-1.84-.85-.82-1.627-1.588-2.25-2.044a2.47 2.47 0 0 0-.818-1.634c0 1.03.092 1.918.206 2.86 0 1.153-.15 2.054-.41 3.068-.323 1.137-.774 1.558-1.635 2.453-1.224.255-2.307.408-3.68.408-1.475-.01-2.744-.25-4.09-.408-.74-.336-1.41-.683-2.045-1.022m21.789-1.449c-.73 2.283-3.306 3.467-3.79 4.095-1.158.28-2.146.6-3.476.614-1.195 0-1.328-.05-2.045-.615-1.184-.396-1.56-.72-2.045-1.43 0-.274.07-.205-.204-.205m14.103 9.621-.204.204c.465-.464.242-.294-.203.818-.635 1.195-1.478 1.39-2.657 1.84-1.08-.163-1.502-.558-2.66-1.228-1.078-.604-1.894-1.64-2.656-2.657-.618-1.37-1.023-2.526-1.023-4.087-.282-.64-.38-1.425-.818-1.84v4.294c-.317.956-.36 1.703-.612 2.657-.17 1.245-.426 2.153-.818 3.067-.752 1.045-1.92 1.305-3.476 1.432-1.247.267-2.71.204-4.087.204-1.074-.127-1.718-.334-2.658-.612-1.084-.615-1.378-.803-2.25-1.84-.956-1.082-2.095-2.45-2.66-3.477-.322-1.144-.88-4.593-1.125-5.844 0-1.208.114 2.808.106 3.39-.297 1.832-.41 3.593-.41 5.522v3.27c-.213 1.352-.382 2.046-1.227 2.862-.59.663-1.698 1.487-2.25 1.84-.436.53-1.006.93-1.838 1.225-.898.493-1.756.697-2.66.82-.492.086-.837.388-1.226 0"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M232.3 290.062c-.484.705-1.41 2.286-2.253 2.46-.896.473-2.286.41-3.68.41-.983-.226-2.016-.173-2.453-.82-1.584-1.062-3.036-2.278-4.294-3.68a14.3 14.3 0 0 1-1.433-2.248c-.472-.162.058.47.206.818.745 1.094 1.235 2.197 1.43 3.476.263.978.263 2.28 0 3.065-.24 1.086-.56 1.857-1.43 2.66-.418.52-1.1.408-2.045.408-1.322-.166-2.38-.717-3.68-1.226-1.417-.837-2.01-1.08-2.656-2.453-.268-1.55-.427-3.175-.615-4.7-.027-.56-.04-2.814-.305-3.08-.29.76-.747 3.596-1.126 4.51-.24 1.313-.376 1.724-1.634 1.84-.668.326-1.59 0-2.66 0-.74-.25-1.216-.43-1.634-.818-.188-.347-.427-.47-.615-.82m33.527 2.662h-.204c.602 0 .24-.058-.41 1.02-.485.728-.636 1.624-.816 2.455.084 1.11.368 1.384.816 2.044 1.192.72 1.39 1.022 2.863 1.226 1.6.305 6.503-.106 8.1.202 1.256.18-3.547.924-4.013 1.025-.79.424-1.65.556-2.453 1.226-1.105.853-1.937 1.555-2.657 2.046-.207.788-.408 1.564-.408 2.656.277.696.65 1.327 1.02 2.045.756.795.99 1.254 2.044 1.638 1.62.058 3.22.19 4.906.204 1.637-.424 4.593-1.158 5.63-1.74.3 0-1.172.442-1.336.513-.686.342-1.364.867-2.25 1.635-.84.42-1.122.898-1.633 1.634-.532.684-.747 1.288-1.226 1.84-.143 1.053-.148 1.358.408 2.25.75 1.036.935 1.468 2.045 1.635.458.44 1.142 1.003 1.84 1.432.49.223 3.514.244 3.29.61-.997.07-4.685.386-5.334.82-.834.295-1.078.65-1.226 1.635.042 1.168.26 1.45.815 2.25a4.33 4.33 0 0 0 1.638 1.43c.498.477 4.055 1.192 4.72 1.743.86.3-2.983-.31-3.698-.31-.58.29-1.764.204-2.66.204-.362.588-.83 1.144-1.226 1.838-.368.615-.085 1.33 0 2.045.535.575 1.274 1.8 1.637 2.454.673.46.835.862 1.84 1.227.412.453 4.152 1.89 4.828 1.952m-8.52-5.227v.206c0-.605.06-.242-1.02.407-.5.618-1.273 1.306-1.636 1.84-.19.918.035 1.376.408 2.248.546.44 1.27 1.322 1.637 2.045.95.87 1.597 1.388 2.042 2.045.617.186 2.842 1.137 3.49 1.54-1.154-.017-4.015-1.055-5.125-1.132-1.356 0-1.97.154-2.863.615-.37.598-.777 1.11-1.02 1.838-.255.718-.5 1.404-.615 2.25-.284.88.01 1.36.407 2.044.713.575 1.015.95 1.84 1.227.592.527 1.3.803 2.454.818.51.255 2.67.1 3.284.1-.708.462-2.885.907-3.69 1.127-.642.33-1.428.567-1.842 1.023-.442.69-.776 1.112-.818 2.246.34.857.86 1.65 1.84 2.457.91 1.025 1 1.23 2.25 1.634 1.06.49 5.412.05 6.57.1-1.026.153-5.516 1.403-6.57 2.15-.745.53-.784 1.13 0 1.84.503.897 1.08 1.36 2.045 1.636 1.11 0 1.583-.19 2.656-.204.943.11 4.405-.106 5.436-.106-.792.448-4.874.993-6.05 1.13-1.023.35-1.444.383-1.635 1.43 0 .942-.11 1.623.408 2.044.53.935.842 1.007 2.045 1.02.593.358 1.404.045 2.25 0h7.076m-1.584 9.377c.618 0-6.32-8.867-9.157-7.93-1.306.224-2.154.242-2.657 1.228-.734.73-1.463 1.968-1.84 3.065-.1 1.108-.27 1.995 0 3.068.187.808.664 1.664.817 2.657.225.44.5 1.396.204 1.84-.146-.698-.352-1.132-.614-2.044-.242-1.554-.385-3.22-.612-4.7-.638-.483-1.4-1.243-2.248-1.842-1.153-.164-2.157-.196-3.068 0-.755.662-1.04 1.184-1.84 1.637-.656.217-2.335.363-3.273.408"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M218.79 294.99c.07 0-.042-.056.82 1.022.5.374.67.736 1.43 1.227.874.66 1.804 1.02 3.067 1.225 1.248.42 2.578.6 3.884.816 1.127 0 2.263.02 3.273-.203 1.17 0 1.775-.167 2.86-.204l.825-.31m.821 7.871v.206c0-.553-.012-.27.205.816 0 1.232-.19 1.563-.614 2.25-.892.646-1.89.85-3.064 1.226-1.505-.066-2.806-.334-4.09-.816-.99-.82-1.407-1.386-2.046-2.66-.664-2.024-1.205-3.58-1.226-5.725 0-1.18.032-2.08-.612-2.656-.313-.31-.344.533-.615 1.023-.09 1.23-.622 1.952-1.226 3.068-.744.717-1.615 1.55-2.656 2.25-1.076.237-1.452.42-2.453.203a53 53 0 0 0-2.044-2.25c-.25-.956-.96-2.113-1.43-3.27-.44-1.1-.936-2.04-1.023-3.273-.41-1.13-.33-.975-.612.204-.598 1.295-.773 2.145-1.433 3.27-.855.666-1.64 1.254-2.86 1.638-1.428.215-2.36.11-3.68-.207-.996-.356-1.476-.796-2.045-1.633-.633-.623-.888-1.057-1.023-2.045-.417-.678-.867-2.146-1.227-3.065-.406-.493-.697-1.44-.82-2.25-.282-.232-.46-.667-.61-1.022"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M242.818 310.3c-.03.396-.453 3.117-.922 3.898-.556 1.168-.765 1.59-2.045 1.635-1.268-.204-2.26-.843-3.27-1.635-.846-1.068-1.68-1.873-2.247-3.065-.615-.506-.548-.797-.408 0 .652.668.596.646.612 1.84v3.066a7.5 7.5 0 0 1-.41 2.452c-.387 1.08-.835 1.62-1.84 2.453-1.165.26-1.358-.164-2.248-.818-1.093-.443-1.52-.843-2.25-1.43-.58-.58-1.18-1.288-1.637-2.046-.11-.815-.204-1.615-.204-2.656 0-1.022.822-3.486.822-4.51-.156-1.25-.99 1.06-1.64 1.853-.527 1.01-1.197 1.796-1.84 2.25-.86.797-2.19 1.16-3.476 1.43-1.21 0-2.186-.186-3.272-.41-.712-.986-.96-1.54-1.43-2.454 0-1.274.185-2.146.408-3.27.214-1.064.5-2.894.514-3.994 0-1.11-.19 1.207-.514 1.745-.268 1.21-.55 1.274-1.43 2.042a24 24 0 0 1-3.272.207c-1.24 0-2.37.11-3.476.408-.763-.268-1.166-1.343-1.635-2.25-.265-.794-.4-1.55-.41-2.656 0-1.055-.242-1.674-.41-2.453-.465 1.038-.887 1.12-2.042 1.226-.672 0-1.47.073-1.84-.207-.4-.655-.94-1.26-1.227-1.84l1.227 1.84c-.4-.655-1.865-2.7-2.153-3.28"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M244.354 318.09c0 .196-.108 1.303-.203 1.84-.368.846-.49 1.61-.614 2.658a7.5 7.5 0 0 1-.408 2.453c-.474.65-1.038 1.007-1.635 1.43-1.382 0-1.79-.126-2.863-.815a39 39 0 0 0-2.453-1.84c-.586-.986-1.195-1.757-1.84-2.658l-.722-.72c-.416-.87.46.482.72 1.54.31 1.077.41 2.028.41 3.268-.036 1.306-.272 2.395-.41 3.682-.553 1.094-.574 1.333-1.838 1.43-1.335 0-2.61-.018-3.883-.203-1.26-.194-2.205-.54-3.272-1.227-.273-.713-.41-1.613-.41-2.66.015-1.245.304-2.29.41-3.475.437-1.192.604-1.947 1.022-3.065.334-.448.528-.933.612-1.637-.182 1.27-.858 2.164-1.226 3.27-.65 1.22-1.674 2.47-2.25 3.68-.778.748-1.06 1.045-1.838 1.43-.922-.136-1.343-.483-2.045-.815-.4-.588-.877-.93-1.226-1.84-.646-.912-.805-1.32-.818-2.658 0-.824.066-2.25 0-2.453-.085-.26-1.075-3.825-1.335-3.91m-.097.01c-.318.204-1.66.588-2.657.612h-3.68c-1.195-.11-1.084-.56-1.433-1.43a10.9 10.9 0 0 1-.612-3.07c-.178-.987-.694-1.082-.82-1.935-.59.38-.62-.117-1.633.098-1.407.215-2.535.514-3.886.816-1.263.175-2.405.395-3.68.41-1.19 0-2.12.114-2.656-.614-.342-.686-.397-1.637-.408-2.657 0-1.15.127-2.262.408-3.068.418-.776.96-1.602 1.634-2.25a5.5 5.5 0 0 1 1.434-1.43c.42-.62.948-.852 1.226-1.634.49-.405.737-1.033 1.023-1.637"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M188.51 302.248c.367.085 3.085.69 3.692 1.128 1.004.56 1.396 1.195 2.042 1.84.323.682.538 1.305.82 2.248.155.78.203 1.817.203 2.864-.382.628-.742 1.674-1.023 2.453-.42.623-.797 1.03-1.634 1.43-.986.76-2.69 1.442-4.09 2.046-.944.112-1.83.204-2.862.204-1.022 0-2.148.618-3.17.618-.99 0-2.403-.128-3.066.204-.302 0-.156.047-.41-.204m38.56 5.911c-.082 0-.644.657-1.226 1.02-.483.816-.684 1.293-1.227 2.25-.353.956-.54 1.692-.613 2.66v2.86c.01 1.073.204 1.547.204 2.657v5.726-2.86 2.86m5.3-14.313c0 .412-.247 3.78-.003 4.51.066 1.24.416 1.934.818 2.86.64.497 1.486 1.633 2.25 2.454.614.618 1.236 1.002 2.248 1.227 1.185.237 2.125.41 3.065.207.77-.336 1.945-.996 2.864-1.433.42-.91 1.025-1.94 1.43-3.065.35-1.08.377-2.194.41-1.842.433.353 1.246 1.325 1.636 1.84.866.523 1.716 1.138 2.453 2.044.766.853 2.003.57 3.174.61"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M222.473 340.766c0-.07 2.408 3.086 3.277 3.086.946.236 2.016.374 3.068.41 1.255-.015 2.22-.328 3.27-.818.852-.9.613-2.24.613-3.68v-3.067c-.023-.837-.28-1.494-.407-2.25.188 1.328.827 2.433 1.227 3.68.455.986 1.886 4.597 3.27 4.81.626.76 1.228.367 1.84-.515 1.107-.726 1.39-4.13 1.84-4.703 0-.575.15-.533.205-1.023"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M222.05 348.528c0 .07 1.59 1.406 2.67 2.055 1.117.843 1.295 1.023 2.66 1.023.924-.175 1.294-.887 2.042-1.637 1.043-1.018 1.284-1.832 1.022-3.27-.04-1.115-.344-2.896-.612-2.45.472.617.91 1.517 1.227 2.04.42.622.72 1.06 1.633 1.226.538.455 1.314.747 2.25.818.495.37 1.13.244 1.43-.204.69-.31 1.202-.62 1.637-1.022.196-.65.538-1.05.816-1.635"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M237.6 347.733v.204c0-.55-.014-.273.203.816.07 1.184.207 2.223.207 3.476-.297 1.225-.49 2.11-1.227 2.862-.694.347-1.92.188-2.863 0-1.235-.556-4.46-2.87-4.906-3.883-.302-.176 2.667 2.068 3.067 2.656.462.71.8 1.237 1.02 2.045.2.594.343 1.9.208 2.247-.17 1.116-.56 1.084-1.433 1.433-.885.22-1.86.204-2.86.204-.913-.124-1.424-.418-2.25-.614l-.31-.207"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M241.493 356.713v1.024c-.238.942-.347 1.787-.614 2.452-.202 1.15-.698 1.202-1.432 1.84-.906.225-1.936.24-2.657 0-1.29-.773-1.964-1.187-2.862-2.25-.898-.897.384.515.818 1.228.708.625 1.126 1.07 1.227 2.25.243 1.22.29 1.737-.41 2.452-.507.726-1.272 1.094-2.454 1.43h-2.862c-1.08-.24-.975-.556-1.43-1.226m15.643-3.053c.05.39-.015 2.113-.103 3.067-.792 1.317-.79 1.375-2.25 1.84-1.178.16-2.394.205-3.68.205-.862-.302-1.493-.882-2.044-1.84-.805-.605-.254.237 0 .818.427 1.107.787 1.827 1.023 3.067.07.845.52 1.105-.408 1.227-1.033.29-2.114.408-3.272.408-.892-.122-1.896-.096-2.662-.305"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M237.387 369.72c.075.353.467 1.044 1.026 1.534.408.85.953 1.198 1.634 1.635.72.407 1.242.802 2.045 1.02 1.134 0 1.627-.213 2.453-.407 1.232-.42 1.272-.635 1.84-1.433.393-.638.687-1.08.817-2.042.294-.588.2-1.656 0-2.25-.082-1.08-.537-1.448-.816-2.248-.29-.098-.384-.82-.617-1.13m-36.383-48.773c-.07.07-.135.138-.204.204.485-.485.286-.252-.818.41-.996.268-1.402.583-1.84 1.227-.93.514-1.578.972-1.84 2.045v2.86c-.222.746-.204 2.015-.204 3.07 0 1.11-.13 2.03-.204 3.064.143.667.54 1.624.31 2.254-.077-.893-.514-2.093-.514-3.07-.373-.543-.784-1.754-1.226-2.25-.59-.51-1.195-.736-2.25-1.022-1.088-.363-1.81-.225-2.452.408-.47.49-1.036 1.3-1.434 2.25-.222 1.123-.572 1.745-.612 2.86-.23 1.073-.407 1.722-.203 2.66v3.065c0 .955.206 2.22.206 3.175-.13 1.512-.49-.236-.82-.72-.22-1.026-.442-1.86-1.023-2.454-.514-.62-1.364-.815-2.453-.815-1.043 0-1.626-.244-1.838.612-.302.604-.355 1.976-.41 2.864v5.723c-.176-1.086-.6-1.58-1.227-2.453-.714-.82-1.283-1.04-2.658-1.227-1.336-.323-1.995-.198-3.068.41-1.028 1.005-1.706 1.347-1.84 2.454-.414.5-.502 1.438-.613 2.25v3.064c0 .57-.842-.62-1.43-1.43-.686-.943-1.094-1.184-2.25-1.226-.783.403-2.343 1-3.064 1.634-.522.422-.41 1.102-.41 2.046v2.863c-.056.71-1.118.71-1.635.204-.756-.372-1.753-.886-2.656-1.02-.78-.37-1.428-.454-2.045-.205-.32 1.033-.616 1.85-.616 3.065-.312.84-.408 1.454-.408 2.453"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M214.5 322.38c-.07 0 2.744-.926 2.675-.926.572 0-2.612.9-3.698 1.335-.827.3-1.72 1.196-2.453 2.044-1.683 1.502-3.72 3.765-5.317 5.52-1.478 1.484-2.53 2.5-3.476 4.088-2.04 1.62-3.554 3.17-5.313 5.113-1.878 1.404-3.733 2.753-5.52 4.292-1.79.895-3.373 1.698-5.317 2.453-1.738.58-3.238 1.35-4.907 2.045-.887.69-1.396.99-2.453 1.43-1.61.925-3.45 1.635-4.702 2.454-.612.414-1.036.968-2.045 1.432-.644.752-1.49 1.06-2.453 1.634a88 88 0 0 1-3.68 1.227c-1.417.485-2.296.89-3.68 1.43-3.758 1.317-7.602 2.827-11.448 3.476-1.102.402-2.213.735-3.27.817-1.553.562-3.48.59-5.112.82-1.047.275-2.36.608-3.27.815-1.053.29-2.08.535-2.863.82-1.05.12-2.226.42-3.067.613-.996.294-1.42.59-2.25.816-.465.406-2.404 1.96-2.87 2.36m57.057-51.643c.12.392.41 1.63.41 2.66-.167.974-.365 2.193-.818 2.86-.366.917-1.54 1.78-2.25 2.453-.82.18-1.554.347-2.452.615-1.055.077-3.444 2.384-4.61 2.47-.68.134-1.523.2-2.456.2-.29-.307-.39-.132-.816-.302.687.49.477.658.612 1.734 0 1.09.763 2.177.62 3.17-.25 1.21-1.295 2.676-2.14 3.153-1.033.64-1.942 1.036-3.068 1.433-1.007.035-1.814.204-2.86.204-.682 0-1.22-.037-1.638-.204m32.3-26.778v1.227c.268 1.34.464 2.275 1.43 3.27.684.918 1.776 1.636 2.862 2.25h3.068c.736-.127 2.376.128 3.18.104m-8.102-.096c-.07.067.48-.174.413-.106.51-.514-.34.045-1.436.922-1.232 1.047-1.762 1.508-2.045 3.068.016 1.174.265 1.51.615 2.25.257.91.755 1.753 1.43 2.248.273 0 .204.07.204-.204m-12.559-3.276c0 .097.96.5 1.332 1.022 1.044.665 2.37 1.85 3.68 2.657 1.274.423 2.458.118 3.68-.41.813-.214 1.414-.508 2.044-1.226l.207-.206"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M188.75 325.454c-.538.95-1.35 1.52-1.433 2.657 0 1.048.137 1.946.41 2.658.382.707.83 1.82 1.43 2.453.374.613.758 1.13 1.227 1.432-.363-1.004-1.282-1.783-2.25-2.657-.375-.43-.817-.612-1.225-.204-1.05.075-1.763.337-2.454.615-1.15.4-2.114.933-2.86 1.43-.75.774-.82 1.2-.82 2.454-.098 1.297-.204 2.545-.204 3.882.315.26.38.453.408 1.023-.222-.858-.675-2.193-1.226-2.86-.49-.687-.846-.806-2.046-.82-1.038.19-1 .702-1.634 1.227-.62.898-1.05 1.18-1.43 2.25-.5 1.165-.615 2.15-.615 3.475.272 0 .613 2.127.613 1.854"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M179.53 325.454v.204c0-.546.04-.26-.614.612-.283.962-.408 1.494-.408 2.66.154 1.18.59 1.796.82 2.86.8.954 1.117 1.397 2.04 1.842.282.28.645.38.82.204m-8.378-1.044h-.205c.053.135 0 .91 0 1.43 0 .978-.082 2.01.204 2.864.203.832 1.355 1.147 1.845 1.637m-12.468-.818c0 .07.41-.48.41-.413 0-.57-.386.35-.818 1.435-.964 1.147-1.67 2.05-2.864 3.272-1.255.39-2.05 1.15-3.27 2.044-1.334.755-2.632 1.192-3.885 1.84-1.37.573-2.955.99-4.498 1.43-1.373.505-2.97.88-4.498 1.022-1.038.357-2.185.61-3.27.818-1.274.443-2.675.972-3.886 1.43-.942.327-1.464.515-2.25 1.023-1.23.424-2.428 1.243-3.68 1.84-.447.542-1.67 1.29-2.452 2.044-1.275.684-2.577 1.845-3.884 2.454-1.507.962-3.013 1.754-4.702 2.25-1.348.64-2.67 1.117-3.885 1.84-.92.625-1.86 1.523-2.862 2.25-.623.916-1.41 1.6-2.25 2.248-.66 1.224-1.743 2.165-2.656 3.065-.545.37-1.176.962-1.636 1.434-.627.647-1.23 1.224-1.84 1.635-.6.744-.937 1-1.84 1.43-.56.578-1.258.745 0 .82 1.17-.374 2.595-.377 3.885-.41 1.27-.274 2.746-.417 4.09-.613 1.14-.146 2.486-.37 3.883-.408 1.488.25 3.678-.4 5.316-1.023a289 289 0 0 1 3.885-2.248c.745-.52 1.39-.752 2.247-1.227.742-.2 1.438-.606 2.25-.818m40.47-31.895c0 .252.085 1.465.204 2.045.395 1.263.92 2.233 1.84 3.064.71.42 2.184.308 3.376.308m-9.711-4.384c-.162 0-.1.483-.408 1.023 0 1.054.143 2.133.408 2.86 1.353.634 2.286.944 3.883 1.024.975-.075 1.523-.324 2.25-.612.638-.133-.215.492-.82 1.02-.855.858-1.242 1.584-.815 2.863.43.896 3.743 2.02 4.313 2.562"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M160.113 341.8c-.207.953-.236 1.504.41 2.245.557.46 1.384.41 2.454.41 1.822-.097 3.486-.41 5.314-.41.862 0-.706.117-1.022.207-1.028.36-1.557.474-2.25 1.02-1.09.448-1.64.96-2.656 1.84-.41.61-.59 1.403-.204 2.046.403.594.912 1.02 1.635 1.43.765.594.948.923 2.045 1.023h.408"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M157.358 343.653c-.095.387-.514 1.02-.514 2.04.085 1.09.35 1.38 1.023 1.84.56.46 1.385.41 2.453.41h1.226c-.583.34-1.5.447-2.042.815-.644.44-.96.845-1.227 1.84-.016 1.143-.196 1.562 0 2.658.445.835.694 1.45 1.227 2.25.4.588 2.432 1.782 3.18 2.047m-10.95-10.641c-.187.86-.12 1.555 0 2.453.483.54.85 1.24 1.43 1.634.577.476 2.4.187 3.484.2.86.025 1.338.205.204.205-.546.522-2.17 1.163-2.46 2.254-.294.587-.2 1.652 0 2.248.08 1.04.386 1.415.613 2.247.55.574.8.892 1.635 1.23l-1.635-1.23c.55.574.8.892 1.635 1.23v.203c-.11-.255-.183-.464-.408-.615"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M145.093 348.448c-.49.73-.77.98-.514 1.94.534.746 1.093 1.536 1.84 2.045 1.186 1.078 7.618-.456 8.533-.318.278.28-7.793 1.592-8.33 3.383-.22.73-.303 1.952 0 2.863.015 1.175.264 1.51.614 2.25.282.594.49.996 1.227 1.227-.273 0-.205.066-.205-.207"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M137.22 350.99c-.29.897.057 1.305.408 2.047.49.733 1.338 1.68 2.045 2.145.413.24 7.118-.312 6.995-.312-.752.262-6.887 1.843-8.017 2.46-.422.822-.408 1.52-.408 2.658.082 1.073.158 1.534 1.022 1.84.577.287 1.7.35 2.453.41l1.442.31"}),(0,i.jsx)("path",{fill:"none",strokeLinecap:"round",strokeLinejoin:"round",d:"M131.498 353.35c0 .224-.334 1.204-.208 1.938.287.67.137 1.113.613 1.43.174.986.46 1.65 1.432 1.842 1.07 0 1.895.05 2.453-.41.842-.37 1.343-.69 2.044-1.02l-2.044 1.02c.842-.37 1.343-.69 2.044-1.02l3.81-1.134c-.63.458-4.675 2.103-5.445 2.36-.576.548-1.044.638-1.227 1.634-.12.898-.187 1.593 0 2.453.528.504.972.95 1.43 1.43"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M127.2 356.104c-.105.236-.613 1.147-.613 2.043.1 1.096.428 1.282 1.023 2.045h2.862c.796.143 3.106-.827 3.998-.827-.897.196-3.135 1.404-3.59 2.053-.55.22-.55.55-.613 1.227-.316.53-.195 1.51 0 2.045.386.567.842 1.068 1.227 1.634"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M122.09 358.965c0 .302.077 1.63.205 2.25.79.61 1.286 1.017 2.25 1.634 1.003.04 5.15-1.853 6.26-1.853.793 0-4.012 2.175-4.217 2.262-.412.67-.735.977-.818 2.045-.372.62-.113 1.552 0 2.246.328.507.66.756 1.227 1.023-.272 0-.204.07-.204-.203"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M116.774 361.64c0 .07.013-.065-.205 1.023-.402.535-.05 1.036.408 1.434.587.79 1.527.98 2.453 1.226.915.162 1.847.204 2.864.204.773 0 3.703-1.923 4.107-2.265-.676.273-3.98 2.403-4.924 2.673-1.145.525-1.452.964-1.84 2.045.043 1.166.363 1.447.818 2.25.413.765 2.185-.062 2.87.394"}),(0,i.jsx)("path",{fill:"none",strokeLinejoin:"round",d:"M112.89 364.9v.203c0-.6.035-.262-.613.82-.207.95-.27 1.482.41 2.044.5.74.85 1.078 1.84 1.226.32.138 5.325-2.678 5.86-2.678-.805.55-6.442 3.802-6.883 4.723-.387.8-.41 1.476-.41 2.454m-5.518-3.468c0 1.07-.05 1.894.41 2.453.112.935 2.08 1 2.772 1.327"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2162.e42c8ad6.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js deleted file mode 100644 index 18ab7413de..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2168.3b00277e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2168"],{42603(i,l,e){e.r(l),e.d(l,{default:()=>h});var s=e(74848);e(47867);let h=i=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"bj_inline_svg__a",children:(0,s.jsx)("path",{fill:"gray",d:"M67.64-154h666v666h-666z"})})}),(0,s.jsx)("g",{clipPath:"url(#bj_inline_svg__a)",transform:"matrix(.961 0 0 .7207 -65 110.99)",children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#319400",d:"M0-154h333v666H0z"}),(0,s.jsx)("path",{fill:"#ffd600",d:"M333-154h666v333H333z"}),(0,s.jsx)("path",{fill:"#de2110",d:"M333 179h666v333H333z"})]})})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2168.3b00277e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js deleted file mode 100644 index 18b623a60f..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2179.7408679f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2179"],{12206(e,l,i){i.r(l),i.d(l,{default:()=>h});var s=i(74848);i(47867);let h=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v479.997H0z"}),(0,s.jsx)("path",{fill:"#00267f",d:"M0 0h213.331v479.997H0z"}),(0,s.jsx)("path",{fill:"#f31830",d:"M426.663 0h213.331v479.997H426.663z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2179.7408679f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js deleted file mode 100644 index 1fd3183e8a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2188.72e65c95.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2188"],{15623(i,e,s){s.d(e,{$w:()=>iO,AY:()=>w,Al:()=>$,As:()=>B,BC:()=>ia,Bv:()=>im,FH:()=>a,Fk:()=>E,GN:()=>K,H9:()=>u,HE:()=>o,Hs:()=>c,IV:()=>x,Io:()=>M,KB:()=>ir,Kv:()=>G,LW:()=>p,Lv:()=>iy,M0:()=>P,NX:()=>l,P1:()=>iC,PA:()=>D,PL:()=>O,Ss:()=>Y,UE:()=>W,Uj:()=>h,VV:()=>v,Vz:()=>L,X8:()=>il,XA:()=>U,Yn:()=>S,Zq:()=>d,Zz:()=>n,_k:()=>m,aA:()=>z,bP:()=>ip,cj:()=>F,dX:()=>iT,e6:()=>X,eK:()=>Q,fw:()=>it,h0:()=>iu,hS:()=>is,hp:()=>A,jR:()=>C,kJ:()=>J,ll:()=>H,lr:()=>f,m$:()=>r,mc:()=>y,mp:()=>iL,oD:()=>ii,p3:()=>T,pQ:()=>io,pU:()=>q,q9:()=>V,qA:()=>Z,qm:()=>N,qu:()=>ic,qv:()=>I,ri:()=>b,sD:()=>R,tc:()=>_,v2:()=>id,wE:()=>ie,xs:()=>k,y2:()=>j,zB:()=>g});var t=s(53996);let a=s(23004).FH.enhanceEndpoints({addTagTypes:[t.nP.DATA_OBJECT,t.nP.DATA_OBJECT_DETAIL,t.nP.CLASS_DEFINITION,t.nP.CLASS_DEFINITION_DETAIL,t.nP.CLASS_DEFINITION_COLLECTION,t.nP.CUSTOM_LAYOUT,t.nP.CUSTOM_LAYOUT_DETAIL,t.nP.CUSTOM_LAYOUT_COLLECTION,t.nP.FIELD_COLLECTION,t.nP.FIELD_COLLECTION_DETAIL,t.nP.FIELD_COLLECTION_COLLECTION,t.nP.OBJECT_BRICK,t.nP.OBJECT_BRICK_DETAIL,t.nP.OBJECT_BRICK_COLLECTION,t.nP.OBJECT_BRICK_CUSTOM_LAYOUT,t.nP.OBJECT_BRICK_CUSTOM_LAYOUT_DETAIL,t.nP.OBJECT_BRICK_CUSTOM_LAYOUT_COLLECTION,t.nP.SELECT_OPTION_DETAIL,t.nP.SELECT_OPTION_COLLECTION],endpoints:{classDefinitionCollection:{providesTags:()=>t.yc.CLASS_DEFINITION_COLLECTION()},classDefinitionGetById:{providesTags:(i,e,s)=>t.yc.CLASS_DEFINITION_DETAIL(s.id)},classDefinitionGetLayoutById:{providesTags:(i,e,s)=>t.yc.CLASS_DEFINITION_DETAIL(s.id)},classCustomLayoutCollection:{providesTags:()=>t.yc.CUSTOM_LAYOUT_COLLECTION()},classDefinitionUpdate:{invalidatesTags:()=>t.qN.CLASS_DEFINITION_COLLECTION(),async onQueryStarted(i,e){let{dispatch:s,queryFulfilled:t}=e;try{let{data:e}=await t;s(a.util.updateQueryData("classDefinitionGetById",{id:i.id},i=>{Object.assign(i,e)}))}catch{}}},classDefinitionGetIdentifierData:{providesTags:()=>t.yc.CLASS_DEFINITION_COLLECTION()},classDefinitionCreate:{invalidatesTags:()=>t.qN.CLASS_DEFINITION_COLLECTION()},classDefinitionDelete:{invalidatesTags:(i,e,s)=>[...t.qN.CLASS_DEFINITION_DETAIL(s.id),...t.qN.CLASS_DEFINITION_COLLECTION()]},classDefinitionImport:{invalidatesTags:(i,e,s)=>[...t.qN.CLASS_DEFINITION_DETAIL(s.id),...t.qN.CLASS_DEFINITION_COLLECTION()]},classCustomLayoutGet:{providesTags:(i,e,s)=>t.yc.CUSTOM_LAYOUT_DETAIL(s.customLayoutId)},classCustomLayoutUpdate:{invalidatesTags:()=>[],async onQueryStarted(i,e){let{dispatch:s,queryFulfilled:t}=e;try{let{data:e}=await t;s(a.util.updateQueryData("classCustomLayoutGet",{customLayoutId:i.customLayoutId},i=>{Object.assign(i,e)}))}catch{}}},classCustomLayoutCreate:{invalidatesTags:()=>t.qN.CUSTOM_LAYOUT_COLLECTION()},classCustomLayoutDelete:{invalidatesTags:()=>t.qN.CUSTOM_LAYOUT_COLLECTION()},classCustomLayoutExport:{providesTags:(i,e,s)=>t.yc.CUSTOM_LAYOUT_DETAIL(s.customLayoutId)},classCustomLayoutGetIdentifierData:{providesTags:()=>t.yc.CUSTOM_LAYOUT_COLLECTION()},classCustomLayoutImport:{invalidatesTags:(i,e,s)=>[...t.qN.CUSTOM_LAYOUT_DETAIL(s.customLayoutId),...t.qN.CUSTOM_LAYOUT_COLLECTION()]},classCustomLayoutEditorCollection:{providesTags:(i,e,s)=>t.yc.DATA_OBJECT_DETAIL_ID(s.objectId)},classFieldCollectionObjectLayout:{providesTags:(i,e,s)=>t.yc.DATA_OBJECT_DETAIL_ID(s.objectId)},classObjectBrickObjectLayout:{providesTags:(i,e,s)=>t.yc.DATA_OBJECT_DETAIL_ID(s.objectId)},classFieldCollectionCollection:{providesTags:()=>t.yc.FIELD_COLLECTION_COLLECTION()},classFieldCollectionGetByKey:{providesTags:(i,e,s)=>t.yc.FIELD_COLLECTION_DETAIL(s.key)},classFieldCollectionGetLayoutByKey:{providesTags:(i,e,s)=>t.yc.FIELD_COLLECTION_DETAIL(s.key)},classFieldCollectionUpdate:{invalidatesTags:()=>t.qN.FIELD_COLLECTION_COLLECTION(),async onQueryStarted(i,e){let{dispatch:s,queryFulfilled:t}=e;try{let{data:e}=await t;s(a.util.updateQueryData("classFieldCollectionGetByKey",{key:i.key},i=>{Object.assign(i,e)}))}catch{}}},classFieldCollectionCreate:{invalidatesTags:()=>t.qN.FIELD_COLLECTION_COLLECTION()},classFieldCollectionDelete:{invalidatesTags:(i,e,s)=>[...t.qN.FIELD_COLLECTION_DETAIL(s.key),...t.qN.FIELD_COLLECTION_COLLECTION()]},classFieldCollectionImport:{invalidatesTags:(i,e,s)=>[...t.qN.FIELD_COLLECTION_DETAIL(s.key),...t.qN.FIELD_COLLECTION_COLLECTION()]},classFieldCollectionGetTree:{providesTags:()=>t.yc.FIELD_COLLECTION_COLLECTION()},classObjectBrickCollection:{providesTags:()=>t.yc.OBJECT_BRICK_COLLECTION()},classObjectBrickGetByKey:{providesTags:(i,e,s)=>t.yc.OBJECT_BRICK_DETAIL(s.key)},classObjectBrickGetLayoutByKey:{providesTags:(i,e,s)=>t.yc.OBJECT_BRICK_DETAIL(s.key)},classObjectBrickGetTree:{providesTags:()=>t.yc.OBJECT_BRICK_COLLECTION()},classObjectBrickUpdate:{invalidatesTags:()=>t.qN.OBJECT_BRICK_COLLECTION(),async onQueryStarted(i,e){let{dispatch:s,queryFulfilled:t}=e;try{let{data:e}=await t;s(a.util.updateQueryData("classObjectBrickGetByKey",{key:i.key},i=>{Object.assign(i,e)}))}catch{}}},classObjectBrickCreate:{invalidatesTags:()=>t.qN.OBJECT_BRICK_COLLECTION()},classObjectBrickDelete:{invalidatesTags:(i,e,s)=>[...t.qN.OBJECT_BRICK_DETAIL(s.key),...t.qN.OBJECT_BRICK_COLLECTION()]},classObjectBrickImport:{invalidatesTags:(i,e,s)=>[...t.qN.OBJECT_BRICK_DETAIL(s.key),...t.qN.OBJECT_BRICK_COLLECTION()]},classObjectBrickCustomLayoutGet:{providesTags:(i,e,s)=>t.yc.OBJECT_BRICK_CUSTOM_LAYOUT_DETAIL(s.key,s.customLayoutId)},classObjectBrickCustomLayoutUpdate:{invalidatesTags:()=>[],async onQueryStarted(i,e){let{dispatch:s,queryFulfilled:t}=e;try{let{data:e}=await t;s(a.util.updateQueryData("classObjectBrickCustomLayoutGet",{key:i.key,customLayoutId:i.customLayoutId},i=>{Object.assign(i,e)}))}catch{}}},classObjectBrickCustomLayoutDelete:{invalidatesTags:(i,e,s)=>t.qN.OBJECT_BRICK_CUSTOM_LAYOUT_COLLECTION(s.key)},classObjectBrickCustomLayoutExport:{providesTags:(i,e,s)=>t.yc.OBJECT_BRICK_CUSTOM_LAYOUT_DETAIL(s.key,s.customLayoutId)},classObjectBrickCustomLayoutImport:{invalidatesTags:(i,e,s)=>[...t.qN.OBJECT_BRICK_CUSTOM_LAYOUT_DETAIL(s.key,s.customLayoutId),...t.qN.OBJECT_BRICK_CUSTOM_LAYOUT_COLLECTION(s.key)]},classSelectOptionGetTree:{providesTags:()=>t.yc.SELECT_OPTION_COLLECTION()},classSelectOptionGet:{providesTags:(i,e,s)=>t.yc.SELECT_OPTION_DETAIL(s.id)},classSelectOptionUpdate:{invalidatesTags:()=>t.qN.SELECT_OPTION_COLLECTION(),async onQueryStarted(i,e){let{dispatch:s,queryFulfilled:t}=e;try{let{data:e}=await t;s(a.util.updateQueryData("classSelectOptionGet",{id:i.id},i=>{Object.assign(i,e)}))}catch{}}},classSelectOptionCreate:{invalidatesTags:()=>t.qN.SELECT_OPTION_COLLECTION()},classSelectOptionDelete:{invalidatesTags:()=>t.qN.SELECT_OPTION_COLLECTION()},classSelectOptionGetUsages:{providesTags:(i,e,s)=>t.yc.SELECT_OPTION_DETAIL(s.id)},classBulkImportPrepare:i=>{let e=i.query;void 0!==e&&(i.query=i=>{let s=e(i),t=new FormData;return(t.append("file",i.body.file),null===s||"object"!=typeof s)?s:{...s,body:t}})}}}),{useClassDefinitionCollectionQuery:o,useClassDefinitionFolderCollectionQuery:l,useClassCustomLayoutCollectionQuery:c,useClassCustomLayoutCreateMutation:r,useClassCustomLayoutGetQuery:u,useClassCustomLayoutUpdateMutation:n,useClassCustomLayoutDeleteMutation:d,useClassCustomLayoutEditorCollectionQuery:y,useClassCustomLayoutExportQuery:C,useClassCustomLayoutImportMutation:T,useClassFieldCollectionObjectLayoutQuery:p,useClassDefinitionGetQuery:O,useClassObjectBrickObjectLayoutQuery:L,useClassDefinitionGetIdentifierDataQuery:m,useClassDefinitionCreateMutation:I,useClassDefinitionGetLayoutByIdQuery:D,useClassDefinitionGetTreeQuery:E,useClassDefinitionGetByIdQuery:_,useClassDefinitionUpdateMutation:f,useClassDefinitionDeleteMutation:g,useClassDefinitionExportQuery:q,useLazyClassDefinitionExportQuery:v,useClassDefinitionImportMutation:b,useClassCustomLayoutGetIdentifierDataQuery:N,useClassSelectOptionGetTreeQuery:k,useClassGetAvailableVisibleFieldsQuery:B,useClassGetSelectedVisibleFieldsQuery:S,useClassDefinitionGetBricksUsagesQuery:A,useClassFieldCollectionCollectionQuery:j,useClassFieldCollectionCreateMutation:U,useClassFieldCollectionGetByKeyQuery:F,useClassFieldCollectionUpdateMutation:P,useClassFieldCollectionDeleteMutation:$,useClassFieldCollectionExportQuery:G,useLazyClassFieldCollectionExportQuery:h,useClassFieldCollectionImportMutation:K,useClassFieldCollectionGetLayoutByKeyQuery:w,useClassFieldCollectionGetTreeQuery:J,useClassFieldCollectionGetUsagesQuery:R,useClassObjectBrickCollectionQuery:x,useClassObjectBrickGetByKeyQuery:Y,useClassObjectBrickGetLayoutByKeyQuery:M,useClassObjectBrickGetTreeQuery:Q,useClassObjectBrickCreateMutation:H,useClassObjectBrickUpdateMutation:V,useClassObjectBrickDeleteMutation:z,useClassObjectBrickGetUsagesQuery:X,useClassObjectBrickClassesQuery:Z,useClassObjectBrickExportQuery:W,useLazyClassObjectBrickExportQuery:ii,useClassObjectBrickImportMutation:ie,useClassObjectBrickCustomLayoutGetQuery:is,useClassObjectBrickCustomLayoutUpdateMutation:it,useClassObjectBrickCustomLayoutDeleteMutation:ia,useClassObjectBrickCustomLayoutExportQuery:io,useClassObjectBrickCustomLayoutImportMutation:il,useClassGetFieldsByTypeQuery:ic,useClassSelectOptionCreateMutation:ir,useClassSelectOptionGetQuery:iu,useClassSelectOptionUpdateMutation:id,useClassSelectOptionDeleteMutation:iy,useClassSelectOptionGetUsagesQuery:iC,useClassBulkExportAvailableQuery:iT,useClassBulkExportMutation:ip,useClassBulkImportPrepareMutation:iO,useClassBulkImportMutation:iL,useClassBulkImportDeleteFileMutation:im}=a},23004(i,e,s){s.d(e,{FH:()=>t,HE:()=>n,Zq:()=>L,Zz:()=>p,lr:()=>q,p1:()=>C});let t=s(53073).api.enhanceEndpoints({addTagTypes:["Class Definition"]}).injectEndpoints({endpoints:i=>({classGetAvailableVisibleFields:i.query({query:i=>({url:"/pimcore-studio/api/class/definition/available-visible-fields",params:{classNames:i.classNames}}),providesTags:["Class Definition"]}),classBulkExportAvailable:i.query({query:()=>({url:"/pimcore-studio/api/class/bulk-export/available"}),providesTags:["Class Definition"]}),classBulkExport:i.mutation({query:i=>({url:"/pimcore-studio/api/class/bulk-export",method:"POST",body:i.bulkExportParameters}),invalidatesTags:["Class Definition"]}),classBulkImport:i.mutation({query:i=>({url:`/pimcore-studio/api/class/bulk-import/${i.fileId}`,method:"POST",body:i.bulkImportParameters}),invalidatesTags:["Class Definition"]}),classBulkImportDeleteFile:i.mutation({query:i=>({url:`/pimcore-studio/api/class/bulk-import/${i.fileId}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classBulkImportPrepare:i.mutation({query:i=>({url:"/pimcore-studio/api/class/bulk-import/prepare",method:"POST",body:i.body}),invalidatesTags:["Class Definition"]}),classDefinitionCollection:i.query({query:()=>({url:"/pimcore-studio/api/class/collection"}),providesTags:["Class Definition"]}),classDefinitionCollectionCreatable:i.query({query:()=>({url:"/pimcore-studio/api/class/collection/creatable"}),providesTags:["Class Definition"]}),classCustomLayoutCollection:i.query({query:i=>({url:"/pimcore-studio/api/class/custom-layout/collection",params:{classIds:i.classIds}}),providesTags:["Class Definition"]}),classAllLayoutCollection:i.query({query:()=>({url:"/pimcore-studio/api/class/all-layouts"}),providesTags:["Class Definition"]}),classCustomLayoutGet:i.query({query:i=>({url:`/pimcore-studio/api/class/custom-layout/${i.customLayoutId}`}),providesTags:["Class Definition"]}),classCustomLayoutUpdate:i.mutation({query:i=>({url:`/pimcore-studio/api/class/custom-layout/${i.customLayoutId}`,method:"PUT",body:i.customLayoutUpdate}),invalidatesTags:["Class Definition"]}),classCustomLayoutCreate:i.mutation({query:i=>({url:`/pimcore-studio/api/class/custom-layout/${i.customLayoutId}`,method:"POST",body:i.customLayoutNew}),invalidatesTags:["Class Definition"]}),classCustomLayoutDelete:i.mutation({query:i=>({url:`/pimcore-studio/api/class/custom-layout/${i.customLayoutId}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classCustomLayoutEditorCollection:i.query({query:i=>({url:`/pimcore-studio/api/class/custom-layout/editor/collection/${i.objectId}`}),providesTags:["Class Definition"]}),classCustomLayoutExport:i.query({query:i=>({url:`/pimcore-studio/api/class/custom-layout/export/${i.customLayoutId}`}),providesTags:["Class Definition"]}),classCustomLayoutGetIdentifierData:i.query({query:i=>({url:`/pimcore-studio/api/class/custom-layout/identifier-data/${i.classDefinitionId}`}),providesTags:["Class Definition"]}),classCustomLayoutImport:i.mutation({query:i=>({url:`/pimcore-studio/api/class/custom-layout/import/${i.customLayoutId}`,method:"POST",body:i.body}),invalidatesTags:["Class Definition"]}),classDefinitionGetBricksUsages:i.query({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}/bricks`}),providesTags:["Class Definition"]}),classDefinitionCreate:i.mutation({query:i=>({url:"/pimcore-studio/api/class/definition/configuration-view/detail/create",method:"POST",body:i.createClassDefinition}),invalidatesTags:["Class Definition"]}),classDefinitionGetById:i.query({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}`}),providesTags:["Class Definition"]}),classDefinitionUpdate:i.mutation({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}`,method:"PUT",body:i.classDefinitionUpdate}),invalidatesTags:["Class Definition"]}),classDefinitionDelete:i.mutation({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classDefinitionExport:i.query({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}/export`}),providesTags:["Class Definition"]}),classDefinitionGetIdentifierData:i.query({query:()=>({url:"/pimcore-studio/api/class/definition/configuration-view/identifier-data"}),providesTags:["Class Definition"]}),classDefinitionImport:i.mutation({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}/import`,method:"POST",body:i.body}),invalidatesTags:["Class Definition"]}),classDefinitionGetLayoutById:i.query({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}/layout`}),providesTags:["Class Definition"]}),classGetSelectedVisibleFields:i.query({query:i=>({url:`/pimcore-studio/api/class/definition/configuration-view/detail/${i.id}/selected-visible-fields`,params:{relationField:i.relationField}}),providesTags:["Class Definition"]}),classDefinitionGetTextLayoutPreview:i.query({query:i=>({url:"/pimcore-studio/api/class/definition/configuration-view/text-layout/preview",params:{className:i.className,path:i.path,renderingData:i.renderingData,renderingClass:i.renderingClass,html:i.html}}),providesTags:["Class Definition"]}),classDefinitionGetTree:i.query({query:i=>({url:"/pimcore-studio/api/class/definition/configuration-view/tree",params:{withGroup:i.withGroup}}),providesTags:["Class Definition"]}),classFieldCollectionCollection:i.query({query:()=>({url:"/pimcore-studio/api/class/field-collection/collection"}),providesTags:["Class Definition"]}),classFieldCollectionCreate:i.mutation({query:i=>({url:"/pimcore-studio/api/class/field-collection",method:"POST",body:i.createFieldCollection}),invalidatesTags:["Class Definition"]}),classFieldCollectionGetByKey:i.query({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.key}`}),providesTags:["Class Definition"]}),classFieldCollectionUpdate:i.mutation({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.key}`,method:"PUT",body:i.fieldCollectionUpdate}),invalidatesTags:["Class Definition"]}),classFieldCollectionDelete:i.mutation({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.key}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classFieldCollectionExport:i.query({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.key}/export`}),providesTags:["Class Definition"]}),classFieldCollectionImport:i.mutation({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.key}/import`,method:"POST",body:i.body}),invalidatesTags:["Class Definition"]}),classFieldCollectionObjectLayout:i.query({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.objectId}/object/layout`}),providesTags:["Class Definition"]}),classFieldCollectionGetLayoutByKey:i.query({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.key}/layout`}),providesTags:["Class Definition"]}),classFieldCollectionGetTree:i.query({query:i=>({url:"/pimcore-studio/api/class/field-collection/tree",params:{allowedTypes:i.allowedTypes}}),providesTags:["Class Definition"]}),classFieldCollectionGetUsages:i.query({query:i=>({url:`/pimcore-studio/api/class/field-collection/${i.key}/usages`}),providesTags:["Class Definition"]}),classGetFieldsByType:i.query({query:i=>({url:"/pimcore-studio/api/class/definition/fields-by-type",params:{classId:i.classId,type:i.type}}),providesTags:["Class Definition"]}),classDefinitionFolderCollection:i.query({query:i=>({url:`/pimcore-studio/api/class/folder/${i.folderId}`}),providesTags:["Class Definition"]}),classDefinitionGet:i.query({query:i=>({url:`/pimcore-studio/api/class/definition/${i.dataObjectClass}`}),providesTags:["Class Definition"]}),classObjectBrickClasses:i.query({query:()=>({url:"/pimcore-studio/api/class/object-brick/classes"}),providesTags:["Class Definition"]}),classObjectBrickCollection:i.query({query:()=>({url:"/pimcore-studio/api/class/object-brick/collection"}),providesTags:["Class Definition"]}),classObjectBrickCreate:i.mutation({query:i=>({url:"/pimcore-studio/api/class/object-brick",method:"POST",body:i.createObjectBrick}),invalidatesTags:["Class Definition"]}),classObjectBrickCustomLayoutGet:i.query({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/custom-layout/${i.customLayoutId}`}),providesTags:["Class Definition"]}),classObjectBrickCustomLayoutUpdate:i.mutation({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/custom-layout/${i.customLayoutId}`,method:"PUT",body:i.customLayoutUpdate}),invalidatesTags:["Class Definition"]}),classObjectBrickCustomLayoutDelete:i.mutation({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/custom-layout/${i.customLayoutId}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classObjectBrickCustomLayoutExport:i.query({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/custom-layout/${i.customLayoutId}/export`}),providesTags:["Class Definition"]}),classObjectBrickCustomLayoutImport:i.mutation({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/custom-layout/${i.customLayoutId}/import`,method:"POST",body:i.body}),invalidatesTags:["Class Definition"]}),classObjectBrickGetByKey:i.query({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}`}),providesTags:["Class Definition"]}),classObjectBrickUpdate:i.mutation({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}`,method:"PUT",body:i.objectBrickUpdate}),invalidatesTags:["Class Definition"]}),classObjectBrickDelete:i.mutation({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classObjectBrickExport:i.query({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/export`}),providesTags:["Class Definition"]}),classObjectBrickImport:i.mutation({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/import`,method:"POST",body:i.body}),invalidatesTags:["Class Definition"]}),classObjectBrickObjectLayout:i.query({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.objectId}/object/layout`}),providesTags:["Class Definition"]}),classObjectBrickGetLayoutByKey:i.query({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/layout`}),providesTags:["Class Definition"]}),classObjectBrickGetTree:i.query({query:()=>({url:"/pimcore-studio/api/class/object-brick/tree"}),providesTags:["Class Definition"]}),classObjectBrickGetUsages:i.query({query:i=>({url:`/pimcore-studio/api/class/object-brick/${i.key}/usages`}),providesTags:["Class Definition"]}),classSelectOptionCreate:i.mutation({query:i=>({url:"/pimcore-studio/api/class/select-option",method:"POST",body:i.createSelectOption}),invalidatesTags:["Class Definition"]}),classSelectOptionGet:i.query({query:i=>({url:`/pimcore-studio/api/class/select-option/${i.id}`}),providesTags:["Class Definition"]}),classSelectOptionUpdate:i.mutation({query:i=>({url:`/pimcore-studio/api/class/select-option/${i.id}`,method:"PUT",body:i.updateSelectOption}),invalidatesTags:["Class Definition"]}),classSelectOptionDelete:i.mutation({query:i=>({url:`/pimcore-studio/api/class/select-option/${i.id}`,method:"DELETE"}),invalidatesTags:["Class Definition"]}),classSelectOptionGetTree:i.query({query:i=>({url:"/pimcore-studio/api/class/select-option/tree",params:{withGroup:i.withGroup}}),providesTags:["Class Definition"]}),classSelectOptionGetUsages:i.query({query:i=>({url:`/pimcore-studio/api/class/select-option/${i.id}/usages`}),providesTags:["Class Definition"]})}),overrideExisting:!1}),{useClassGetAvailableVisibleFieldsQuery:a,useClassBulkExportAvailableQuery:o,useClassBulkExportMutation:l,useClassBulkImportMutation:c,useClassBulkImportDeleteFileMutation:r,useClassBulkImportPrepareMutation:u,useClassDefinitionCollectionQuery:n,useClassDefinitionCollectionCreatableQuery:d,useClassCustomLayoutCollectionQuery:y,useClassAllLayoutCollectionQuery:C,useClassCustomLayoutGetQuery:T,useClassCustomLayoutUpdateMutation:p,useClassCustomLayoutCreateMutation:O,useClassCustomLayoutDeleteMutation:L,useClassCustomLayoutEditorCollectionQuery:m,useClassCustomLayoutExportQuery:I,useClassCustomLayoutGetIdentifierDataQuery:D,useClassCustomLayoutImportMutation:E,useClassDefinitionGetBricksUsagesQuery:_,useClassDefinitionCreateMutation:f,useClassDefinitionGetByIdQuery:g,useClassDefinitionUpdateMutation:q,useClassDefinitionDeleteMutation:v,useClassDefinitionExportQuery:b,useClassDefinitionGetIdentifierDataQuery:N,useClassDefinitionImportMutation:k,useClassDefinitionGetLayoutByIdQuery:B,useClassGetSelectedVisibleFieldsQuery:S,useClassDefinitionGetTextLayoutPreviewQuery:A,useClassDefinitionGetTreeQuery:j,useClassFieldCollectionCollectionQuery:U,useClassFieldCollectionCreateMutation:F,useClassFieldCollectionGetByKeyQuery:P,useClassFieldCollectionUpdateMutation:$,useClassFieldCollectionDeleteMutation:G,useClassFieldCollectionExportQuery:h,useClassFieldCollectionImportMutation:K,useClassFieldCollectionObjectLayoutQuery:w,useClassFieldCollectionGetLayoutByKeyQuery:J,useClassFieldCollectionGetTreeQuery:R,useClassFieldCollectionGetUsagesQuery:x,useClassGetFieldsByTypeQuery:Y,useClassDefinitionFolderCollectionQuery:M,useClassDefinitionGetQuery:Q,useClassObjectBrickClassesQuery:H,useClassObjectBrickCollectionQuery:V,useClassObjectBrickCreateMutation:z,useClassObjectBrickCustomLayoutGetQuery:X,useClassObjectBrickCustomLayoutUpdateMutation:Z,useClassObjectBrickCustomLayoutDeleteMutation:W,useClassObjectBrickCustomLayoutExportQuery:ii,useClassObjectBrickCustomLayoutImportMutation:ie,useClassObjectBrickGetByKeyQuery:is,useClassObjectBrickUpdateMutation:it,useClassObjectBrickDeleteMutation:ia,useClassObjectBrickExportQuery:io,useClassObjectBrickImportMutation:il,useClassObjectBrickObjectLayoutQuery:ic,useClassObjectBrickGetLayoutByKeyQuery:ir,useClassObjectBrickGetTreeQuery:iu,useClassObjectBrickGetUsagesQuery:id,useClassSelectOptionCreateMutation:iy,useClassSelectOptionGetQuery:iC,useClassSelectOptionUpdateMutation:iT,useClassSelectOptionDeleteMutation:ip,useClassSelectOptionGetTreeQuery:iO,useClassSelectOptionGetUsagesQuery:iL}=t}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2188.72e65c95.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js deleted file mode 100644 index e15cae2faa..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2189.e296ffec.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2189"],{81420(s,i,l){l.r(i),l.d(i,{default:()=>d});var e=l(74848);l(47867);let d=s=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"sd_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#sd_inline_svg__a)",transform:"scale(.9375)",children:[(0,e.jsx)("path",{d:"M0 341.32h1024V512H0z"}),(0,e.jsx)("path",{fill:"#fff",d:"M0 170.64h1024v170.68H0z"}),(0,e.jsx)("path",{fill:"red",d:"M0 0h1024.8v170.68H0z"}),(0,e.jsx)("path",{fill:"#009a00",d:"M0 0v512l341.32-256z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2189.e296ffec.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js deleted file mode 100644 index 056332d2fd..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js +++ /dev/null @@ -1,39 +0,0 @@ -/*! For license information please see 2202.bd928b8b.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2202"],{11195(t,e,n){"use strict";n.d(e,{A:()=>r});let r=(0,n(13013).E)("Column")},58683(t,e,n){"use strict";n.d(e,{A:()=>r});let r=(0,n(13013).E)("Line")},59181(t,e,n){"use strict";n.d(e,{A:()=>r});let r=(0,n(13013).E)("Pie")},13013(t,e,n){"use strict";let r,i,A,a;n.d(e,{E:()=>Nj});var o,s,l,c,u,f,h,d,p,g,y,v,b,B,w,x,C,O,E,k,F,Q,M,U,S,I,T,L,_,P,H,j,N,D,R,K,z,G,V,W,X,Y,$,q={};n.r(q),n.d(q,{add:()=>ek,adjoint:()=>t1,clone:()=>tX,copy:()=>tY,create:()=>tW,decompose:()=>eu,determinant:()=>t2,equals:()=>eS,exactEquals:()=>eU,frob:()=>eE,fromQuat:()=>ed,fromQuat2:()=>eo,fromRotation:()=>en,fromRotationTranslation:()=>ea,fromRotationTranslationScale:()=>ef,fromRotationTranslationScaleOrigin:()=>eh,fromScaling:()=>ee,fromTranslation:()=>et,fromValues:()=>t$,fromXRotation:()=>er,fromYRotation:()=>ei,fromZRotation:()=>eA,frustum:()=>ep,getRotation:()=>ec,getScaling:()=>el,getTranslation:()=>es,identity:()=>tJ,invert:()=>t0,lookAt:()=>ex,mul:()=>eI,multiply:()=>t4,multiplyScalar:()=>eQ,multiplyScalarAndAdd:()=>eM,ortho:()=>eB,orthoNO:()=>eb,orthoZO:()=>ew,perspective:()=>ey,perspectiveFromFieldOfView:()=>em,perspectiveNO:()=>eg,perspectiveZO:()=>ev,rotate:()=>t6,rotateX:()=>t8,rotateY:()=>t9,rotateZ:()=>t7,scale:()=>t3,set:()=>tq,str:()=>eO,sub:()=>eT,subtract:()=>eF,targetTo:()=>eC,translate:()=>t5,transpose:()=>tZ});var J={};n.r(J),n.d(J,{area:()=>ga,bottom:()=>gh,bottomLeft:()=>gh,bottomRight:()=>gh,inside:()=>gh,left:()=>gh,outside:()=>gy,right:()=>gh,spider:()=>gE,surround:()=>gF,top:()=>gh,topLeft:()=>gh,topRight:()=>gh});var Z={};n.r(Z),n.d(Z,{interpolateBlues:()=>mI,interpolateBrBG:()=>v1,interpolateBuGn:()=>ml,interpolateBuPu:()=>mu,interpolateCividis:()=>mz,interpolateCool:()=>m0,interpolateCubehelixDefault:()=>mJ,interpolateGnBu:()=>mh,interpolateGreens:()=>mL,interpolateGreys:()=>mP,interpolateInferno:()=>be,interpolateMagma:()=>bt,interpolateOrRd:()=>mp,interpolateOranges:()=>mK,interpolatePRGn:()=>v4,interpolatePiYG:()=>v3,interpolatePlasma:()=>bn,interpolatePuBu:()=>mm,interpolatePuBuGn:()=>my,interpolatePuOr:()=>v8,interpolatePuRd:()=>mB,interpolatePurples:()=>mj,interpolateRainbow:()=>m2,interpolateRdBu:()=>v7,interpolateRdGy:()=>me,interpolateRdPu:()=>mx,interpolateRdYlBu:()=>mr,interpolateRdYlGn:()=>mA,interpolateReds:()=>mD,interpolateSinebow:()=>m6,interpolateSpectral:()=>mo,interpolateTurbo:()=>m8,interpolateViridis:()=>m7,interpolateWarm:()=>mZ,interpolateYlGn:()=>mk,interpolateYlGnBu:()=>mO,interpolateYlOrBr:()=>mQ,interpolateYlOrRd:()=>mU,schemeAccent:()=>vi,schemeBlues:()=>mS,schemeBrBG:()=>v0,schemeBuGn:()=>ms,schemeBuPu:()=>mc,schemeCategory10:()=>vr,schemeDark2:()=>vA,schemeGnBu:()=>mf,schemeGreens:()=>mT,schemeGreys:()=>m_,schemeObservable10:()=>va,schemeOrRd:()=>md,schemeOranges:()=>mR,schemePRGn:()=>v2,schemePaired:()=>vo,schemePastel1:()=>vs,schemePastel2:()=>vl,schemePiYG:()=>v5,schemePuBu:()=>mv,schemePuBuGn:()=>mg,schemePuOr:()=>v6,schemePuRd:()=>mb,schemePurples:()=>mH,schemeRdBu:()=>v9,schemeRdGy:()=>mt,schemeRdPu:()=>mw,schemeRdYlBu:()=>mn,schemeRdYlGn:()=>mi,schemeReds:()=>mN,schemeSet1:()=>vc,schemeSet2:()=>vu,schemeSet3:()=>vf,schemeSpectral:()=>ma,schemeTableau10:()=>vh,schemeYlGn:()=>mE,schemeYlGnBu:()=>mC,schemeYlOrBr:()=>mF,schemeYlOrRd:()=>mM});var tt={};n.r(tt),n.d(tt,{geoAlbers:()=>LQ,geoAlbersUsa:()=>LM,geoAzimuthalEqualArea:()=>LT,geoAzimuthalEqualAreaRaw:()=>LI,geoAzimuthalEquidistant:()=>L_,geoAzimuthalEquidistantRaw:()=>LL,geoConicConformal:()=>LR,geoConicConformalRaw:()=>LD,geoConicEqualArea:()=>LF,geoConicEqualAreaRaw:()=>Lk,geoConicEquidistant:()=>LV,geoConicEquidistantRaw:()=>LG,geoEqualEarth:()=>LY,geoEqualEarthRaw:()=>LX,geoEquirectangular:()=>Lz,geoEquirectangularRaw:()=>LK,geoGnomonic:()=>Lq,geoGnomonicRaw:()=>L$,geoIdentity:()=>LJ,geoMercator:()=>LH,geoMercatorRaw:()=>LP,geoNaturalEarth1:()=>L0,geoNaturalEarth1Raw:()=>LZ,geoOrthographic:()=>L2,geoOrthographicRaw:()=>L1,geoProjection:()=>LC,geoProjectionMutator:()=>LO,geoStereographic:()=>L5,geoStereographicRaw:()=>L4,geoTransverseMercator:()=>L6,geoTransverseMercatorRaw:()=>L3});var te={};n.r(te),n.d(te,{frequency:()=>Pr,id:()=>Pi,name:()=>PA,weight:()=>Pn});var tn=n(47867),tr=n.n(tn),ti=function(t,e,n,r){return new(n||(n=Promise))(function(i,A){function a(t){try{s(r.next(t))}catch(t){A(t)}}function o(t){try{s(r.throw(t))}catch(t){A(t)}}function s(t){var e;t.done?i(t.value):((e=t.value)instanceof n?e:new n(function(t){t(e)})).then(a,o)}s((r=r.apply(t,e||[])).next())})},tA=function(t,e){var n,r,i,A={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},a=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return a.next=o(0),a.throw=o(1),a.return=o(2),"function"==typeof Symbol&&(a[Symbol.iterator]=function(){return this}),a;function o(o){return function(s){var l=[o,s];if(n)throw TypeError("Generator is already executing.");for(;a&&(a=0,l[0]&&(A=0)),A;)try{if(n=1,r&&(i=2&l[0]?r.return:l[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,l[1])).done)return i;switch(r=0,i&&(l=[2&l[0],i.value]),l[0]){case 0:case 1:i=l;break;case 4:return A.label++,{value:l[1],done:!1};case 5:A.label++,r=l[1],l=[0];continue;case 7:l=A.ops.pop(),A.trys.pop();continue;default:if(!(i=(i=A.trys).length>0&&i[i.length-1])&&(6===l[0]||2===l[0])){A=0;continue}if(3===l[0]&&(!i||l[1]>i[0]&&l[1]typeof document&&ts.set("tooltip",document.createElement("div"));var tl=function(t,e){void 0===e&&(e=!1);var r=null;if(e)r=ts.get("tooltip");else if(r=document.createElement("div"),null==t?void 0:t.key){var i=ts.get(t.key);i?r=i:ts.set(t.key,r)}return!function(t,e){ti(this,void 0,void 0,function(){return tA(this,function(r){switch(r.label){case 0:return[4,function(){return ti(this,void 0,void 0,function(){var t;return tA(this,function(e){switch(e.label){case 0:if(to)return[2];to=!0,e.label=1;case 1:if(e.trys.push([1,6,,7]),!(parseInt((tn.version||"").split(".")[0],10)>=18))return[3,3];return[4,n.e("1207").then(n.t.bind(n,5338,19))];case 2:return Ex=e.sent().createRoot,[3,5];case 3:return[4,Promise.resolve().then(n.t.bind(n,25765,23))];case 4:EC=(t=e.sent()).render,t.unmountComponentAtNode,e.label=5;case 5:return[3,7];case 6:return console.warn("[react-render] Failed to load ReactDOM API:",e.sent()),[3,7];case 7:return[2]}})})}()];case 1:if(r.sent(),Ex)e[ta]||(e[ta]=Ex(e)),e[ta].render(t);else{if(!EC)throw Error("ReactDOM.render not available");EC(t,e)}return[2]}})})}(t,r),r},tc=function(){return(tc=Object.assign||function(t){for(var e,n=1,r=arguments.length;ntypeof Float32Array?Float32Array:Array;function tQ(){var t=new tF(3);return tF!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t}function tM(t){var e=new tF(3);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e}function tU(t){var e=t[0],n=t[1],r=t[2];return Math.sqrt(e*e+n*n+r*r)}function tS(t,e,n){var r=new tF(3);return r[0]=t,r[1]=e,r[2]=n,r}function tI(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t}function tT(t,e,n,r){return t[0]=e,t[1]=n,t[2]=r,t}function tL(t,e,n){return t[0]=e[0]+n[0],t[1]=e[1]+n[1],t[2]=e[2]+n[2],t}function t_(t,e,n){return t[0]=e[0]-n[0],t[1]=e[1]-n[1],t[2]=e[2]-n[2],t}function tP(t,e,n){return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t}function tH(t,e){var n=e[0],r=e[1],i=e[2],A=n*n+r*r+i*i;return A>0&&(A=1/Math.sqrt(A)),t[0]=e[0]*A,t[1]=e[1]*A,t[2]=e[2]*A,t}function tj(t,e){return t[0]*e[0]+t[1]*e[1]+t[2]*e[2]}function tN(t,e,n,r){var i=e[0],A=e[1],a=e[2];return t[0]=i+r*(n[0]-i),t[1]=A+r*(n[1]-A),t[2]=a+r*(n[2]-a),t}function tD(t,e,n){var r=e[0],i=e[1],A=e[2],a=n[3]*r+n[7]*i+n[11]*A+n[15];return a=a||1,t[0]=(n[0]*r+n[4]*i+n[8]*A+n[12])/a,t[1]=(n[1]*r+n[5]*i+n[9]*A+n[13])/a,t[2]=(n[2]*r+n[6]*i+n[10]*A+n[14])/a,t}function tR(t,e){var n=t[0],r=t[1],i=t[2],A=e[0],a=e[1],o=e[2];return Math.abs(n-A)<=1e-6*Math.max(1,Math.abs(n),Math.abs(A))&&Math.abs(r-a)<=1e-6*Math.max(1,Math.abs(r),Math.abs(a))&&Math.abs(i-o)<=1e-6*Math.max(1,Math.abs(i),Math.abs(o))}var tK=function(t,e){var n=e[0]-t[0],r=e[1]-t[1],i=e[2]-t[2];return Math.sqrt(n*n+r*r+i*i)};function tz(){var t=new tF(4);return tF!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0,t[3]=0),t}function tG(t,e,n,r){var i=new tF(4);return i[0]=t,i[1]=e,i[2]=n,i[3]=r,i}function tV(t,e,n){var r=e[0],i=e[1],A=e[2],a=e[3];return t[0]=n[0]*r+n[4]*i+n[8]*A+n[12]*a,t[1]=n[1]*r+n[5]*i+n[9]*A+n[13]*a,t[2]=n[2]*r+n[6]*i+n[10]*A+n[14]*a,t[3]=n[3]*r+n[7]*i+n[11]*A+n[15]*a,t}function tW(){var t=new tF(16);return tF!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t}function tX(t){var e=new tF(16);return e[0]=t[0],e[1]=t[1],e[2]=t[2],e[3]=t[3],e[4]=t[4],e[5]=t[5],e[6]=t[6],e[7]=t[7],e[8]=t[8],e[9]=t[9],e[10]=t[10],e[11]=t[11],e[12]=t[12],e[13]=t[13],e[14]=t[14],e[15]=t[15],e}function tY(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}function t$(t,e,n,r,i,A,a,o,s,l,c,u,f,h,d,p){var g=new tF(16);return g[0]=t,g[1]=e,g[2]=n,g[3]=r,g[4]=i,g[5]=A,g[6]=a,g[7]=o,g[8]=s,g[9]=l,g[10]=c,g[11]=u,g[12]=f,g[13]=h,g[14]=d,g[15]=p,g}function tq(t,e,n,r,i,A,a,o,s,l,c,u,f,h,d,p,g){return t[0]=e,t[1]=n,t[2]=r,t[3]=i,t[4]=A,t[5]=a,t[6]=o,t[7]=s,t[8]=l,t[9]=c,t[10]=u,t[11]=f,t[12]=h,t[13]=d,t[14]=p,t[15]=g,t}function tJ(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function tZ(t,e){if(t===e){var n=e[1],r=e[2],i=e[3],A=e[6],a=e[7],o=e[11];t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=n,t[6]=e[9],t[7]=e[13],t[8]=r,t[9]=A,t[11]=e[14],t[12]=i,t[13]=a,t[14]=o}else t[0]=e[0],t[1]=e[4],t[2]=e[8],t[3]=e[12],t[4]=e[1],t[5]=e[5],t[6]=e[9],t[7]=e[13],t[8]=e[2],t[9]=e[6],t[10]=e[10],t[11]=e[14],t[12]=e[3],t[13]=e[7],t[14]=e[11],t[15]=e[15];return t}function t0(t,e){var n=e[0],r=e[1],i=e[2],A=e[3],a=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],f=e[10],h=e[11],d=e[12],p=e[13],g=e[14],y=e[15],v=n*o-r*a,b=n*s-i*a,B=n*l-A*a,w=r*s-i*o,x=r*l-A*o,C=i*l-A*s,O=c*p-u*d,E=c*g-f*d,k=c*y-h*d,F=u*g-f*p,Q=u*y-h*p,M=f*y-h*g,U=v*M-b*Q+B*F+w*k-x*E+C*O;return U?(U=1/U,t[0]=(o*M-s*Q+l*F)*U,t[1]=(i*Q-r*M-A*F)*U,t[2]=(p*C-g*x+y*w)*U,t[3]=(f*x-u*C-h*w)*U,t[4]=(s*k-a*M-l*E)*U,t[5]=(n*M-i*k+A*E)*U,t[6]=(g*B-d*C-y*b)*U,t[7]=(c*C-f*B+h*b)*U,t[8]=(a*Q-o*k+l*O)*U,t[9]=(r*k-n*Q-A*O)*U,t[10]=(d*x-p*B+y*v)*U,t[11]=(u*B-c*x-h*v)*U,t[12]=(o*E-a*F-s*O)*U,t[13]=(n*F-r*E+i*O)*U,t[14]=(p*b-d*w-g*v)*U,t[15]=(c*w-u*b+f*v)*U,t):null}function t1(t,e){var n=e[0],r=e[1],i=e[2],A=e[3],a=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],f=e[10],h=e[11],d=e[12],p=e[13],g=e[14],y=e[15],v=n*o-r*a,b=n*s-i*a,B=n*l-A*a,w=r*s-i*o,x=r*l-A*o,C=i*l-A*s,O=c*p-u*d,E=c*g-f*d,k=c*y-h*d,F=u*g-f*p,Q=u*y-h*p,M=f*y-h*g;return t[0]=o*M-s*Q+l*F,t[1]=i*Q-r*M-A*F,t[2]=p*C-g*x+y*w,t[3]=f*x-u*C-h*w,t[4]=s*k-a*M-l*E,t[5]=n*M-i*k+A*E,t[6]=g*B-d*C-y*b,t[7]=c*C-f*B+h*b,t[8]=a*Q-o*k+l*O,t[9]=r*k-n*Q-A*O,t[10]=d*x-p*B+y*v,t[11]=u*B-c*x-h*v,t[12]=o*E-a*F-s*O,t[13]=n*F-r*E+i*O,t[14]=p*b-d*w-g*v,t[15]=c*w-u*b+f*v,t}function t2(t){var e=t[0],n=t[1],r=t[2],i=t[3],A=t[4],a=t[5],o=t[6],s=t[7],l=t[8],c=t[9],u=t[10],f=t[11],h=t[12],d=t[13],p=t[14],g=t[15],y=e*a-n*A,v=e*o-r*A,b=n*o-r*a,B=l*d-c*h,w=l*p-u*h,x=c*p-u*d;return s*(e*x-n*w+r*B)-i*(A*x-a*w+o*B)+g*(l*b-c*v+u*y)-f*(h*b-d*v+p*y)}function t4(t,e,n){var r=e[0],i=e[1],A=e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],f=e[9],h=e[10],d=e[11],p=e[12],g=e[13],y=e[14],v=e[15],b=n[0],B=n[1],w=n[2],x=n[3];return t[0]=b*r+B*o+w*u+x*p,t[1]=b*i+B*s+w*f+x*g,t[2]=b*A+B*l+w*h+x*y,t[3]=b*a+B*c+w*d+x*v,b=n[4],B=n[5],w=n[6],x=n[7],t[4]=b*r+B*o+w*u+x*p,t[5]=b*i+B*s+w*f+x*g,t[6]=b*A+B*l+w*h+x*y,t[7]=b*a+B*c+w*d+x*v,b=n[8],B=n[9],w=n[10],x=n[11],t[8]=b*r+B*o+w*u+x*p,t[9]=b*i+B*s+w*f+x*g,t[10]=b*A+B*l+w*h+x*y,t[11]=b*a+B*c+w*d+x*v,b=n[12],B=n[13],w=n[14],x=n[15],t[12]=b*r+B*o+w*u+x*p,t[13]=b*i+B*s+w*f+x*g,t[14]=b*A+B*l+w*h+x*y,t[15]=b*a+B*c+w*d+x*v,t}function t5(t,e,n){var r,i,A,a,o,s,l,c,u,f,h,d,p=n[0],g=n[1],y=n[2];return e===t?(t[12]=e[0]*p+e[4]*g+e[8]*y+e[12],t[13]=e[1]*p+e[5]*g+e[9]*y+e[13],t[14]=e[2]*p+e[6]*g+e[10]*y+e[14],t[15]=e[3]*p+e[7]*g+e[11]*y+e[15]):(r=e[0],i=e[1],A=e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],f=e[9],h=e[10],d=e[11],t[0]=r,t[1]=i,t[2]=A,t[3]=a,t[4]=o,t[5]=s,t[6]=l,t[7]=c,t[8]=u,t[9]=f,t[10]=h,t[11]=d,t[12]=r*p+o*g+u*y+e[12],t[13]=i*p+s*g+f*y+e[13],t[14]=A*p+l*g+h*y+e[14],t[15]=a*p+c*g+d*y+e[15]),t}function t3(t,e,n){var r=n[0],i=n[1],A=n[2];return t[0]=e[0]*r,t[1]=e[1]*r,t[2]=e[2]*r,t[3]=e[3]*r,t[4]=e[4]*i,t[5]=e[5]*i,t[6]=e[6]*i,t[7]=e[7]*i,t[8]=e[8]*A,t[9]=e[9]*A,t[10]=e[10]*A,t[11]=e[11]*A,t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15],t}function t6(t,e,n,r){var i,A,a,o,s,l,c,u,f,h,d,p,g,y,v,b,B,w,x,C,O,E,k,F,Q=r[0],M=r[1],U=r[2],S=Math.sqrt(Q*Q+M*M+U*U);return S<1e-6?null:(Q*=S=1/S,M*=S,U*=S,i=Math.sin(n),a=1-(A=Math.cos(n)),o=e[0],s=e[1],l=e[2],c=e[3],u=e[4],f=e[5],h=e[6],d=e[7],p=e[8],g=e[9],y=e[10],v=e[11],b=Q*Q*a+A,B=M*Q*a+U*i,w=U*Q*a-M*i,x=Q*M*a-U*i,C=M*M*a+A,O=U*M*a+Q*i,E=Q*U*a+M*i,k=M*U*a-Q*i,F=U*U*a+A,t[0]=o*b+u*B+p*w,t[1]=s*b+f*B+g*w,t[2]=l*b+h*B+y*w,t[3]=c*b+d*B+v*w,t[4]=o*x+u*C+p*O,t[5]=s*x+f*C+g*O,t[6]=l*x+h*C+y*O,t[7]=c*x+d*C+v*O,t[8]=o*E+u*k+p*F,t[9]=s*E+f*k+g*F,t[10]=l*E+h*k+y*F,t[11]=c*E+d*k+v*F,e!==t&&(t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t)}function t8(t,e,n){var r=Math.sin(n),i=Math.cos(n),A=e[4],a=e[5],o=e[6],s=e[7],l=e[8],c=e[9],u=e[10],f=e[11];return e!==t&&(t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[4]=A*i+l*r,t[5]=a*i+c*r,t[6]=o*i+u*r,t[7]=s*i+f*r,t[8]=l*i-A*r,t[9]=c*i-a*r,t[10]=u*i-o*r,t[11]=f*i-s*r,t}function t9(t,e,n){var r=Math.sin(n),i=Math.cos(n),A=e[0],a=e[1],o=e[2],s=e[3],l=e[8],c=e[9],u=e[10],f=e[11];return e!==t&&(t[4]=e[4],t[5]=e[5],t[6]=e[6],t[7]=e[7],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[0]=A*i-l*r,t[1]=a*i-c*r,t[2]=o*i-u*r,t[3]=s*i-f*r,t[8]=A*r+l*i,t[9]=a*r+c*i,t[10]=o*r+u*i,t[11]=s*r+f*i,t}function t7(t,e,n){var r=Math.sin(n),i=Math.cos(n),A=e[0],a=e[1],o=e[2],s=e[3],l=e[4],c=e[5],u=e[6],f=e[7];return e!==t&&(t[8]=e[8],t[9]=e[9],t[10]=e[10],t[11]=e[11],t[12]=e[12],t[13]=e[13],t[14]=e[14],t[15]=e[15]),t[0]=A*i+l*r,t[1]=a*i+c*r,t[2]=o*i+u*r,t[3]=s*i+f*r,t[4]=l*i-A*r,t[5]=c*i-a*r,t[6]=u*i-o*r,t[7]=f*i-s*r,t}function et(t,e){return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=e[0],t[13]=e[1],t[14]=e[2],t[15]=1,t}function ee(t,e){return t[0]=e[0],t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=e[1],t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=e[2],t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function en(t,e,n){var r,i,A,a=n[0],o=n[1],s=n[2],l=Math.sqrt(a*a+o*o+s*s);return l<1e-6?null:(a*=l=1/l,o*=l,s*=l,r=Math.sin(e),A=1-(i=Math.cos(e)),t[0]=a*a*A+i,t[1]=o*a*A+s*r,t[2]=s*a*A-o*r,t[3]=0,t[4]=a*o*A-s*r,t[5]=o*o*A+i,t[6]=s*o*A+a*r,t[7]=0,t[8]=a*s*A+o*r,t[9]=o*s*A-a*r,t[10]=s*s*A+i,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t)}function er(t,e){var n=Math.sin(e),r=Math.cos(e);return t[0]=1,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=r,t[6]=n,t[7]=0,t[8]=0,t[9]=-n,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function ei(t,e){var n=Math.sin(e),r=Math.cos(e);return t[0]=r,t[1]=0,t[2]=-n,t[3]=0,t[4]=0,t[5]=1,t[6]=0,t[7]=0,t[8]=n,t[9]=0,t[10]=r,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function eA(t,e){var n=Math.sin(e),r=Math.cos(e);return t[0]=r,t[1]=n,t[2]=0,t[3]=0,t[4]=-n,t[5]=r,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=1,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function ea(t,e,n){var r=e[0],i=e[1],A=e[2],a=e[3],o=r+r,s=i+i,l=A+A,c=r*o,u=r*s,f=r*l,h=i*s,d=i*l,p=A*l,g=a*o,y=a*s,v=a*l;return t[0]=1-(h+p),t[1]=u+v,t[2]=f-y,t[3]=0,t[4]=u-v,t[5]=1-(c+p),t[6]=d+g,t[7]=0,t[8]=f+y,t[9]=d-g,t[10]=1-(c+h),t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t}function eo(t,e){var n=new tF(3),r=-e[0],i=-e[1],A=-e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=r*r+i*i+A*A+a*a;return u>0?(n[0]=(o*a+c*r+s*A-l*i)*2/u,n[1]=(s*a+c*i+l*r-o*A)*2/u,n[2]=(l*a+c*A+o*i-s*r)*2/u):(n[0]=(o*a+c*r+s*A-l*i)*2,n[1]=(s*a+c*i+l*r-o*A)*2,n[2]=(l*a+c*A+o*i-s*r)*2),ea(t,e,n),t}function es(t,e){return t[0]=e[12],t[1]=e[13],t[2]=e[14],t}function el(t,e){var n=e[0],r=e[1],i=e[2],A=e[4],a=e[5],o=e[6],s=e[8],l=e[9],c=e[10];return t[0]=Math.sqrt(n*n+r*r+i*i),t[1]=Math.sqrt(A*A+a*a+o*o),t[2]=Math.sqrt(s*s+l*l+c*c),t}function ec(t,e){var n=new tF(3);el(n,e);var r=1/n[0],i=1/n[1],A=1/n[2],a=e[0]*r,o=e[1]*i,s=e[2]*A,l=e[4]*r,c=e[5]*i,u=e[6]*A,f=e[8]*r,h=e[9]*i,d=e[10]*A,p=a+c+d,g=0;return p>0?(g=2*Math.sqrt(p+1),t[3]=.25*g,t[0]=(u-h)/g,t[1]=(f-s)/g,t[2]=(o-l)/g):a>c&&a>d?(g=2*Math.sqrt(1+a-c-d),t[3]=(u-h)/g,t[0]=.25*g,t[1]=(o+l)/g,t[2]=(f+s)/g):c>d?(g=2*Math.sqrt(1+c-a-d),t[3]=(f-s)/g,t[0]=(o+l)/g,t[1]=.25*g,t[2]=(u+h)/g):(g=2*Math.sqrt(1+d-a-c),t[3]=(o-l)/g,t[0]=(f+s)/g,t[1]=(u+h)/g,t[2]=.25*g),t}function eu(t,e,n,r){e[0]=r[12],e[1]=r[13],e[2]=r[14];var i=r[0],A=r[1],a=r[2],o=r[4],s=r[5],l=r[6],c=r[8],u=r[9],f=r[10];n[0]=Math.sqrt(i*i+A*A+a*a),n[1]=Math.sqrt(o*o+s*s+l*l),n[2]=Math.sqrt(c*c+u*u+f*f);var h=1/n[0],d=1/n[1],p=1/n[2],g=i*h,y=A*d,v=a*p,b=o*h,B=s*d,w=l*p,x=c*h,C=u*d,O=f*p,E=g+B+O,k=0;return E>0?(k=2*Math.sqrt(E+1),t[3]=.25*k,t[0]=(w-C)/k,t[1]=(x-v)/k,t[2]=(y-b)/k):g>B&&g>O?(k=2*Math.sqrt(1+g-B-O),t[3]=(w-C)/k,t[0]=.25*k,t[1]=(y+b)/k,t[2]=(x+v)/k):B>O?(k=2*Math.sqrt(1+B-g-O),t[3]=(x-v)/k,t[0]=(y+b)/k,t[1]=.25*k,t[2]=(w+C)/k):(k=2*Math.sqrt(1+O-g-B),t[3]=(y-b)/k,t[0]=(x+v)/k,t[1]=(w+C)/k,t[2]=.25*k),t}function ef(t,e,n,r){var i=e[0],A=e[1],a=e[2],o=e[3],s=i+i,l=A+A,c=a+a,u=i*s,f=i*l,h=i*c,d=A*l,p=A*c,g=a*c,y=o*s,v=o*l,b=o*c,B=r[0],w=r[1],x=r[2];return t[0]=(1-(d+g))*B,t[1]=(f+b)*B,t[2]=(h-v)*B,t[3]=0,t[4]=(f-b)*w,t[5]=(1-(u+g))*w,t[6]=(p+y)*w,t[7]=0,t[8]=(h+v)*x,t[9]=(p-y)*x,t[10]=(1-(u+d))*x,t[11]=0,t[12]=n[0],t[13]=n[1],t[14]=n[2],t[15]=1,t}function eh(t,e,n,r,i){var A=e[0],a=e[1],o=e[2],s=e[3],l=A+A,c=a+a,u=o+o,f=A*l,h=A*c,d=A*u,p=a*c,g=a*u,y=o*u,v=s*l,b=s*c,B=s*u,w=r[0],x=r[1],C=r[2],O=i[0],E=i[1],k=i[2],F=(1-(p+y))*w,Q=(h+B)*w,M=(d-b)*w,U=(h-B)*x,S=(1-(f+y))*x,I=(g+v)*x,T=(d+b)*C,L=(g-v)*C,_=(1-(f+p))*C;return t[0]=F,t[1]=Q,t[2]=M,t[3]=0,t[4]=U,t[5]=S,t[6]=I,t[7]=0,t[8]=T,t[9]=L,t[10]=_,t[11]=0,t[12]=n[0]+O-(F*O+U*E+T*k),t[13]=n[1]+E-(Q*O+S*E+L*k),t[14]=n[2]+k-(M*O+I*E+_*k),t[15]=1,t}function ed(t,e){var n=e[0],r=e[1],i=e[2],A=e[3],a=n+n,o=r+r,s=i+i,l=n*a,c=r*a,u=r*o,f=i*a,h=i*o,d=i*s,p=A*a,g=A*o,y=A*s;return t[0]=1-u-d,t[1]=c+y,t[2]=f-g,t[3]=0,t[4]=c-y,t[5]=1-l-d,t[6]=h+p,t[7]=0,t[8]=f+g,t[9]=h-p,t[10]=1-l-u,t[11]=0,t[12]=0,t[13]=0,t[14]=0,t[15]=1,t}function ep(t,e,n,r,i,A,a){var o=1/(n-e),s=1/(i-r),l=1/(A-a);return t[0]=2*A*o,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=2*A*s,t[6]=0,t[7]=0,t[8]=(n+e)*o,t[9]=(i+r)*s,t[10]=(a+A)*l,t[11]=-1,t[12]=0,t[13]=0,t[14]=a*A*2*l,t[15]=0,t}function eg(t,e,n,r,i){var A=1/Math.tan(e/2);if(t[0]=A/n,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=A,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=i&&i!==1/0){var a=1/(r-i);t[10]=(i+r)*a,t[14]=2*i*r*a}else t[10]=-1,t[14]=-2*r;return t}tQ(),tz();var ey=eg;function ev(t,e,n,r,i){var A=1/Math.tan(e/2);if(t[0]=A/n,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=A,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=-1,t[12]=0,t[13]=0,t[15]=0,null!=i&&i!==1/0){var a=1/(r-i);t[10]=i*a,t[14]=i*r*a}else t[10]=-1,t[14]=-r;return t}function em(t,e,n,r){var i=Math.tan(e.upDegrees*Math.PI/180),A=Math.tan(e.downDegrees*Math.PI/180),a=Math.tan(e.leftDegrees*Math.PI/180),o=Math.tan(e.rightDegrees*Math.PI/180),s=2/(a+o),l=2/(i+A);return t[0]=s,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=l,t[6]=0,t[7]=0,t[8]=-((a-o)*s*.5),t[9]=(i-A)*l*.5,t[10]=r/(n-r),t[11]=-1,t[12]=0,t[13]=0,t[14]=r*n/(n-r),t[15]=0,t}function eb(t,e,n,r,i,A,a){var o=1/(e-n),s=1/(r-i),l=1/(A-a);return t[0]=-2*o,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*s,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=2*l,t[11]=0,t[12]=(e+n)*o,t[13]=(i+r)*s,t[14]=(a+A)*l,t[15]=1,t}var eB=eb;function ew(t,e,n,r,i,A,a){var o=1/(e-n),s=1/(r-i),l=1/(A-a);return t[0]=-2*o,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=-2*s,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[10]=l,t[11]=0,t[12]=(e+n)*o,t[13]=(i+r)*s,t[14]=A*l,t[15]=1,t}function ex(t,e,n,r){var i,A,a,o,s,l,c,u,f,h,d=e[0],p=e[1],g=e[2],y=r[0],v=r[1],b=r[2],B=n[0],w=n[1],x=n[2];return 1e-6>Math.abs(d-B)&&1e-6>Math.abs(p-w)&&1e-6>Math.abs(g-x)?tJ(t):(h=1/Math.sqrt((c=d-B)*c+(u=p-w)*u+(f=g-x)*f),c*=h,u*=h,f*=h,(h=Math.sqrt((i=v*f-b*u)*i+(A=b*c-y*f)*A+(a=y*u-v*c)*a))?(i*=h=1/h,A*=h,a*=h):(i=0,A=0,a=0),(h=Math.sqrt((o=u*a-f*A)*o+(s=f*i-c*a)*s+(l=c*A-u*i)*l))?(o*=h=1/h,s*=h,l*=h):(o=0,s=0,l=0),t[0]=i,t[1]=o,t[2]=c,t[3]=0,t[4]=A,t[5]=s,t[6]=u,t[7]=0,t[8]=a,t[9]=l,t[10]=f,t[11]=0,t[12]=-(i*d+A*p+a*g),t[13]=-(o*d+s*p+l*g),t[14]=-(c*d+u*p+f*g),t[15]=1,t)}function eC(t,e,n,r){var i=e[0],A=e[1],a=e[2],o=r[0],s=r[1],l=r[2],c=i-n[0],u=A-n[1],f=a-n[2],h=c*c+u*u+f*f;h>0&&(c*=h=1/Math.sqrt(h),u*=h,f*=h);var d=s*f-l*u,p=l*c-o*f,g=o*u-s*c;return(h=d*d+p*p+g*g)>0&&(d*=h=1/Math.sqrt(h),p*=h,g*=h),t[0]=d,t[1]=p,t[2]=g,t[3]=0,t[4]=u*g-f*p,t[5]=f*d-c*g,t[6]=c*p-u*d,t[7]=0,t[8]=c,t[9]=u,t[10]=f,t[11]=0,t[12]=i,t[13]=A,t[14]=a,t[15]=1,t}function eO(t){return"mat4("+t[0]+", "+t[1]+", "+t[2]+", "+t[3]+", "+t[4]+", "+t[5]+", "+t[6]+", "+t[7]+", "+t[8]+", "+t[9]+", "+t[10]+", "+t[11]+", "+t[12]+", "+t[13]+", "+t[14]+", "+t[15]+")"}function eE(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1]+t[2]*t[2]+t[3]*t[3]+t[4]*t[4]+t[5]*t[5]+t[6]*t[6]+t[7]*t[7]+t[8]*t[8]+t[9]*t[9]+t[10]*t[10]+t[11]*t[11]+t[12]*t[12]+t[13]*t[13]+t[14]*t[14]+t[15]*t[15])}function ek(t,e,n){return t[0]=e[0]+n[0],t[1]=e[1]+n[1],t[2]=e[2]+n[2],t[3]=e[3]+n[3],t[4]=e[4]+n[4],t[5]=e[5]+n[5],t[6]=e[6]+n[6],t[7]=e[7]+n[7],t[8]=e[8]+n[8],t[9]=e[9]+n[9],t[10]=e[10]+n[10],t[11]=e[11]+n[11],t[12]=e[12]+n[12],t[13]=e[13]+n[13],t[14]=e[14]+n[14],t[15]=e[15]+n[15],t}function eF(t,e,n){return t[0]=e[0]-n[0],t[1]=e[1]-n[1],t[2]=e[2]-n[2],t[3]=e[3]-n[3],t[4]=e[4]-n[4],t[5]=e[5]-n[5],t[6]=e[6]-n[6],t[7]=e[7]-n[7],t[8]=e[8]-n[8],t[9]=e[9]-n[9],t[10]=e[10]-n[10],t[11]=e[11]-n[11],t[12]=e[12]-n[12],t[13]=e[13]-n[13],t[14]=e[14]-n[14],t[15]=e[15]-n[15],t}function eQ(t,e,n){return t[0]=e[0]*n,t[1]=e[1]*n,t[2]=e[2]*n,t[3]=e[3]*n,t[4]=e[4]*n,t[5]=e[5]*n,t[6]=e[6]*n,t[7]=e[7]*n,t[8]=e[8]*n,t[9]=e[9]*n,t[10]=e[10]*n,t[11]=e[11]*n,t[12]=e[12]*n,t[13]=e[13]*n,t[14]=e[14]*n,t[15]=e[15]*n,t}function eM(t,e,n,r){return t[0]=e[0]+n[0]*r,t[1]=e[1]+n[1]*r,t[2]=e[2]+n[2]*r,t[3]=e[3]+n[3]*r,t[4]=e[4]+n[4]*r,t[5]=e[5]+n[5]*r,t[6]=e[6]+n[6]*r,t[7]=e[7]+n[7]*r,t[8]=e[8]+n[8]*r,t[9]=e[9]+n[9]*r,t[10]=e[10]+n[10]*r,t[11]=e[11]+n[11]*r,t[12]=e[12]+n[12]*r,t[13]=e[13]+n[13]*r,t[14]=e[14]+n[14]*r,t[15]=e[15]+n[15]*r,t}function eU(t,e){return t[0]===e[0]&&t[1]===e[1]&&t[2]===e[2]&&t[3]===e[3]&&t[4]===e[4]&&t[5]===e[5]&&t[6]===e[6]&&t[7]===e[7]&&t[8]===e[8]&&t[9]===e[9]&&t[10]===e[10]&&t[11]===e[11]&&t[12]===e[12]&&t[13]===e[13]&&t[14]===e[14]&&t[15]===e[15]}function eS(t,e){var n=t[0],r=t[1],i=t[2],A=t[3],a=t[4],o=t[5],s=t[6],l=t[7],c=t[8],u=t[9],f=t[10],h=t[11],d=t[12],p=t[13],g=t[14],y=t[15],v=e[0],b=e[1],B=e[2],w=e[3],x=e[4],C=e[5],O=e[6],E=e[7],k=e[8],F=e[9],Q=e[10],M=e[11],U=e[12],S=e[13],I=e[14],T=e[15];return Math.abs(n-v)<=1e-6*Math.max(1,Math.abs(n),Math.abs(v))&&Math.abs(r-b)<=1e-6*Math.max(1,Math.abs(r),Math.abs(b))&&Math.abs(i-B)<=1e-6*Math.max(1,Math.abs(i),Math.abs(B))&&Math.abs(A-w)<=1e-6*Math.max(1,Math.abs(A),Math.abs(w))&&Math.abs(a-x)<=1e-6*Math.max(1,Math.abs(a),Math.abs(x))&&Math.abs(o-C)<=1e-6*Math.max(1,Math.abs(o),Math.abs(C))&&Math.abs(s-O)<=1e-6*Math.max(1,Math.abs(s),Math.abs(O))&&Math.abs(l-E)<=1e-6*Math.max(1,Math.abs(l),Math.abs(E))&&Math.abs(c-k)<=1e-6*Math.max(1,Math.abs(c),Math.abs(k))&&Math.abs(u-F)<=1e-6*Math.max(1,Math.abs(u),Math.abs(F))&&Math.abs(f-Q)<=1e-6*Math.max(1,Math.abs(f),Math.abs(Q))&&Math.abs(h-M)<=1e-6*Math.max(1,Math.abs(h),Math.abs(M))&&Math.abs(d-U)<=1e-6*Math.max(1,Math.abs(d),Math.abs(U))&&Math.abs(p-S)<=1e-6*Math.max(1,Math.abs(p),Math.abs(S))&&Math.abs(g-I)<=1e-6*Math.max(1,Math.abs(g),Math.abs(I))&&Math.abs(y-T)<=1e-6*Math.max(1,Math.abs(y),Math.abs(T))}var eI=t4,eT=eF;function eL(){var t=new tF(9);return tF!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t}function e_(){var t=new tF(4);return tF!=Float32Array&&(t[0]=0,t[1]=0,t[2]=0),t[3]=1,t}function eP(t,e,n){var r=Math.sin(n*=.5);return t[0]=r*e[0],t[1]=r*e[1],t[2]=r*e[2],t[3]=Math.cos(n),t}function eH(t,e,n){var r=e[0],i=e[1],A=e[2],a=e[3],o=n[0],s=n[1],l=n[2],c=n[3];return t[0]=r*c+a*o+i*l-A*s,t[1]=i*c+a*s+A*o-r*l,t[2]=A*c+a*l+r*s-i*o,t[3]=a*c-r*o-i*s-A*l,t}function ej(t,e){var n=e[0],r=e[1],i=e[2],A=e[3],a=n*n+r*r+i*i+A*A,o=a?1/a:0;return t[0]=-n*o,t[1]=-r*o,t[2]=-i*o,t[3]=A*o,t}function eN(t,e,n,r){var i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:"zyx",A=Math.PI/360;e*=A,r*=A;var a=Math.sin(e),o=Math.cos(e),s=Math.sin(n*=A),l=Math.cos(n),c=Math.sin(r),u=Math.cos(r);switch(i){case"xyz":t[0]=a*l*u+o*s*c,t[1]=o*s*u-a*l*c,t[2]=o*l*c+a*s*u,t[3]=o*l*u-a*s*c;break;case"xzy":t[0]=a*l*u-o*s*c,t[1]=o*s*u-a*l*c,t[2]=o*l*c+a*s*u,t[3]=o*l*u+a*s*c;break;case"yxz":t[0]=a*l*u+o*s*c,t[1]=o*s*u-a*l*c,t[2]=o*l*c-a*s*u,t[3]=o*l*u+a*s*c;break;case"yzx":t[0]=a*l*u+o*s*c,t[1]=o*s*u+a*l*c,t[2]=o*l*c-a*s*u,t[3]=o*l*u-a*s*c;break;case"zxy":t[0]=a*l*u-o*s*c,t[1]=o*s*u+a*l*c,t[2]=o*l*c+a*s*u,t[3]=o*l*u-a*s*c;break;case"zyx":t[0]=a*l*u-o*s*c,t[1]=o*s*u+a*l*c,t[2]=o*l*c-a*s*u,t[3]=o*l*u+a*s*c;break;default:throw Error("Unknown angle order "+i)}return t}var eD=function(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t},eR=function(t,e,n,r,i){return t[0]=e,t[1]=n,t[2]=r,t[3]=i,t},eK=function(t,e){var n=e[0],r=e[1],i=e[2],A=e[3],a=n*n+r*r+i*i+A*A;return a>0&&(a=1/Math.sqrt(a)),t[0]=n*a,t[1]=r*a,t[2]=i*a,t[3]=A*a,t};function ez(){var t=new tF(2);return tF!=Float32Array&&(t[0]=0,t[1]=0),t}function eG(t){return"number"==typeof t}function eV(t,e){return Math.sqrt((t[0]-e[0])*(t[0]-e[0])+(t[1]-e[1])*(t[1]-e[1]))}function eW(t){return null==t}function eX(t){return"string"==typeof t}tQ(),tS(1,0,0),tS(0,1,0),e_(),e_(),eL(),ez();let eY=function(t,e,n){return tn?n:t};var e$=n(31635),eq={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0};function eJ(t){return Array.isArray(t)&&t.every(function(t){var e=t[0].toLowerCase();return eq[e]===t.length-1&&"achlmqstvz".includes(e)})}function eZ(t){return eJ(t)&&t.every(function(t){var e=t[0];return e===e.toUpperCase()})}function e0(t){return eZ(t)&&t.every(function(t){var e=t[0];return"ACLMQZ".includes(e)})}var e1={x1:0,y1:0,x2:0,y2:0,x:0,y:0,qx:null,qy:null};function e2(t){for(var e=t.pathValue[t.segmentStart],n=e.toLowerCase(),r=t.data;r.length>=eq[n]&&("m"===n&&r.length>2?(t.segments.push([e].concat(r.splice(0,2))),n="l",e="m"===e?"l":"L"):t.segments.push([e].concat(r.splice(0,eq[n]))),eq[n]););}function e4(t){return t>=48&&t<=57}function e5(t){for(var e,n=t.pathValue,r=t.max;t.index=5760&&[5760,6158,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8239,8287,12288,65279].includes(e));)t.index+=1}var e3=function(t){this.pathValue=t,this.segments=[],this.max=t.length,this.index=0,this.param=0,this.segmentStart=0,this.data=[],this.err=""};function e6(t){if(e0(t))return[].concat(t);for(var e=function(t){if(eZ(t))return[].concat(t);var e=function(t){if(eJ(t))return[].concat(t);var e=new e3(t);for(e5(e);e.index0;o-=1){if((32|i)==97&&(3===o||4===o)?!function(t){var e=t.index,n=t.pathValue,r=n.charCodeAt(e);if(48===r){t.param=0,t.index+=1;return}if(49===r){t.param=1,t.index+=1;return}t.err='[path-util]: invalid Arc flag "'.concat(n[e],'", expecting 0 or 1 at index ').concat(e)}(t):!function(t){var e,n=t.max,r=t.pathValue,i=t.index,A=i,a=!1,o=!1,s=!1,l=!1;if(A>=n){t.err="[path-util]: Invalid path value at index ".concat(A,', "pathValue" is missing param');return}if((43===(e=r.charCodeAt(A))||45===e)&&(A+=1,e=r.charCodeAt(A)),!e4(e)&&46!==e){t.err="[path-util]: Invalid path value at index ".concat(A,', "').concat(r[A],'" is not a number');return}if(46!==e){if(a=48===e,A+=1,e=r.charCodeAt(A),a&&A=t.max||!((a=n.charCodeAt(t.index))>=48&&a<=57||43===a||45===a||46===a))break}e2(t)}(e);return e.err?e.err:e.segments}(t),n=0,r=0,i=0,A=0;return e.map(function(t){var e,a=t.slice(1).map(Number),o=t[0],s=o.toUpperCase();if("M"===o)return n=a[0],r=a[1],i=n,A=r,["M",n,r];if(o!==s)switch(s){case"A":e=[s,a[0],a[1],a[2],a[3],a[4],a[5]+n,a[6]+r];break;case"V":e=[s,a[0]+r];break;case"H":e=[s,a[0]+n];break;default:e=[s].concat(a.map(function(t,e){return t+(e%2?r:n)}))}else e=[s].concat(a);var l=e.length;switch(s){case"Z":n=i,r=A;break;case"H":n=e[1];break;case"V":r=e[1];break;default:n=e[l-2],r=e[l-1],"M"===s&&(i=n,A=r)}return e})}(t),n=(0,e$.Cl)({},e1),r=0;r=A)a={x:n,y:r};else{var o=e8([t,e],[n,r],i/A);a={x:o[0],y:o[1]}}return{length:A,point:a,min:{x:Math.min(t,n),y:Math.min(e,r)},max:{x:Math.max(t,n),y:Math.max(e,r)}}}function e7(t,e){var n=t.x,r=t.y,i=e.x,A=e.y,a=Math.sqrt((Math.pow(n,2)+Math.pow(r,2))*(Math.pow(i,2)+Math.pow(A,2)));return(n*A-r*i<0?-1:1)*Math.acos((n*i+r*A)/a)}function nt(t,e,n,r,i,A,a,o,s,l){var c,u=l.bbox,f=void 0===u||u,h=l.length,d=void 0===h||h,p=l.sampleSize,g=void 0===p?10:p,y="number"==typeof s,v=t,b=e,B=0,w=[v,b,0],x=[v,b],C={x:0,y:0},O=[{x:v,y:b}];y&&s<=0&&(C={x:v,y:b});for(var E=0;E<=g;E+=1){if(v=(c=function(t,e,n,r,i,A,a,o,s){var l=1-s;return{x:Math.pow(l,3)*t+3*Math.pow(l,2)*s*n+3*l*Math.pow(s,2)*i+Math.pow(s,3)*a,y:Math.pow(l,3)*e+3*Math.pow(l,2)*s*r+3*l*Math.pow(s,2)*A+Math.pow(s,3)*o}}(t,e,n,r,i,A,a,o,E/g)).x,b=c.y,f&&O.push({x:v,y:b}),d&&(B+=eV(x,[v,b])),x=[v,b],y&&B>=s&&s>w[2]){var k=(B-s)/(B-w[2]);C={x:x[0]*(1-k)+w[0]*k,y:x[1]*(1-k)+w[1]*k}}w=[v,b,B]}return y&&s>=B&&(C={x:a,y:o}),{length:B,point:C,min:{x:Math.min.apply(null,O.map(function(t){return t.x})),y:Math.min.apply(null,O.map(function(t){return t.y}))},max:{x:Math.max.apply(null,O.map(function(t){return t.x})),y:Math.max.apply(null,O.map(function(t){return t.y}))}}}function ne(t,e,n){for(var r,i,A,a,o,s,l,c,u,f=e6(t),h="number"==typeof e,d=[],p=0,g=0,y=0,v=0,b=[],B=[],w=0,x={x:0,y:0},C=x,O=x,E=x,k=0,F=0,Q=f.length;F1&&(p*=h(w),g*=h(w));var x=(Math.pow(p,2)*Math.pow(g,2)-Math.pow(p,2)*Math.pow(B.y,2)-Math.pow(g,2)*Math.pow(B.x,2))/(Math.pow(p,2)*Math.pow(B.y,2)+Math.pow(g,2)*Math.pow(B.x,2)),C=(A!==a?1:-1)*h(x=x<0?0:x),O={x:C*(p*B.y/g),y:C*(-(g*B.x)/p)},E={x:f(y)*O.x-u(y)*O.y+(t+o)/2,y:u(y)*O.x+f(y)*O.y+(e+s)/2},k={x:(B.x-O.x)/p,y:(B.y-O.y)/g},F=e7({x:1,y:0},k),Q=e7(k,{x:(-B.x-O.x)/p,y:(-B.y-O.y)/g});!a&&Q>0?Q-=2*d:a&&Q<0&&(Q+=2*d);var M=F+(Q%=2*d)*l,U=p*f(M),S=g*u(M);return{x:f(y)*U-u(y)*S+E.x,y:u(y)*U+f(y)*S+E.y}}(t,e,n,r,i,A,a,o,s,k/y)).x,B=u.y,h&&E.push({x:b,y:B}),p&&(w+=eV(C,[b,B])),C=[b,B],v&&w>=l&&l>x[2]){var F=(w-l)/(w-x[2]);O={x:C[0]*(1-F)+x[0]*F,y:C[1]*(1-F)+x[1]*F}}x=[b,B,w]}return v&&l>=w&&(O={x:o,y:s}),{length:w,point:O,min:{x:Math.min.apply(null,E.map(function(t){return t.x})),y:Math.min.apply(null,E.map(function(t){return t.y}))},max:{x:Math.max.apply(null,E.map(function(t){return t.x})),y:Math.max.apply(null,E.map(function(t){return t.y}))}}}(d[0],d[1],d[2],d[3],d[4],d[5],d[6],d[7],d[8],(e||0)-k,n||{})).length,x=i.min,C=i.max,O=i.point):"C"===c?(w=(A=nt(d[0],d[1],d[2],d[3],d[4],d[5],d[6],d[7],(e||0)-k,n||{})).length,x=A.min,C=A.max,O=A.point):"Q"===c?(w=(a=function(t,e,n,r,i,A,a,o){var s,l=o.bbox,c=void 0===l||l,u=o.length,f=void 0===u||u,h=o.sampleSize,d=void 0===h?10:h,p="number"==typeof a,g=t,y=e,v=0,b=[g,y,0],B=[g,y],w={x:0,y:0},x=[{x:g,y:y}];p&&a<=0&&(w={x:g,y:y});for(var C=0;C<=d;C+=1){if(g=(s=function(t,e,n,r,i,A,a){var o=1-a;return{x:Math.pow(o,2)*t+2*o*a*n+Math.pow(a,2)*i,y:Math.pow(o,2)*e+2*o*a*r+Math.pow(a,2)*A}}(t,e,n,r,i,A,C/d)).x,y=s.y,c&&x.push({x:g,y:y}),f&&(v+=eV(B,[g,y])),B=[g,y],p&&v>=a&&a>b[2]){var O=(v-a)/(v-b[2]);w={x:B[0]*(1-O)+b[0]*O,y:B[1]*(1-O)+b[1]*O}}b=[g,y,v]}return p&&a>=v&&(w={x:i,y:A}),{length:v,point:w,min:{x:Math.min.apply(null,x.map(function(t){return t.x})),y:Math.min.apply(null,x.map(function(t){return t.y}))},max:{x:Math.max.apply(null,x.map(function(t){return t.x})),y:Math.max.apply(null,x.map(function(t){return t.y}))}}}(d[0],d[1],d[2],d[3],d[4],d[5],(e||0)-k,n||{})).length,x=a.min,C=a.max,O=a.point):"Z"===c&&(w=(o=e9((d=[p,g,y,v])[0],d[1],d[2],d[3],(e||0)-k)).length,x=o.min,C=o.max,O=o.point),h&&k=e&&(E=O),B.push(C),b.push(x),k+=w,p=(s="Z"!==c?u.slice(-2):[y,v])[0],g=s[1];return h&&e>=k&&(E={x:p,y:g}),{length:k,point:E,min:{x:Math.min.apply(null,b.map(function(t){return t.x})),y:Math.min.apply(null,b.map(function(t){return t.y}))},max:{x:Math.max.apply(null,B.map(function(t){return t.x})),y:Math.max.apply(null,B.map(function(t){return t.y}))}}}function nn(t){return Array.isArray(t)}let nr=function(t){if(nn(t))return t.reduce(function(t,e){return Math.min(t,e)},t[0])};function ni(t){if(!Array.isArray(t))return-1/0;var e=t.length;if(!e)return-1/0;for(var n=t[0],r=1;r1&&(y*=k=Math.sqrt(k),v*=k);var F=y*y,Q=v*v,M=(A===a?-1:1)*Math.sqrt(Math.abs((F*Q-F*E*E-Q*O*O)/(F*E*E+Q*O*O)));h=M*y*E/v+(p+b)/2,d=-(M*v)*O/y+(g+B)/2,u=Math.asin(((g-d)/v*1e9|0)/1e9),f=Math.asin(((B-d)/v*1e9|0)/1e9),u=pf&&(u-=2*Math.PI),!a&&f>u&&(f-=2*Math.PI)}var U=f-u;if(Math.abs(U)>w){var S=f,I=b,T=B;C=ns(b=h+y*Math.cos(f=u+w*(a&&f>u?1:-1)),B=d+v*Math.sin(f),y,v,i,0,a,I,T,[f,S,h,d])}U=f-u;var L=Math.cos(u),_=Math.cos(f),P=Math.tan(U/4),H=4/3*y*P,j=4/3*v*P,N=[p,g],D=[p+H*Math.sin(u),g-j*L],R=[b+H*Math.sin(f),B-j*_],K=[b,B];if(D[0]=2*N[0]-D[0],D[1]=2*N[1]-D[1],l)return D.concat(R,K,C);C=D.concat(R,K,C);for(var z=[],G=0,V=C.length;G7){t[n].shift();for(var r=t[n],i=n;r.length;)e[n]="A",t.splice(i+=1,0,["C"].concat(r.splice(0,6)));t.splice(n,1)}}(A,o,u),l=A.length,"Z"===s&&c.push(u),r=(n=A[u]).length,a.x1=+n[r-2],a.y1=+n[r-1],a.x2=+n[r-4]||a.x1,a.y2=+n[r-3]||a.y1}return e?[A,c]:A}function nu(t){return t.map(function(t,e,n){var r,i,A,a,o,s,l,c,u,f,h,d,p=e&&n[e-1].slice(-2).concat(t.slice(1)),g=e?nt(p[0],p[1],p[2],p[3],p[4],p[5],p[6],p[7],p[8],{bbox:!1}).length:0;return d=e?g?(void 0===r&&(r=.5),i=p.slice(0,2),A=p.slice(2,4),a=p.slice(4,6),o=p.slice(6,8),s=e8(i,A,r),l=e8(A,a,r),c=e8(a,o,r),u=e8(s,l,r),f=e8(l,c,r),h=e8(u,f,r),[["C"].concat(s,u,h),["C"].concat(f,c,o)]):[t,t]:[t],{s:t,ss:d,l:g}})}function nf(t){var e,n,r;return e=0,n=0,r=0,nc(t).map(function(t){if("M"===t[0])return e=t[1],n=t[2],0;var i,A,a,o=t.slice(1),s=o[0],l=o[1],c=o[2],u=o[3],f=o[4],h=o[5];return A=e,r=3*((h-(a=n))*(s+c)-(f-A)*(l+u)+l*(A-c)-s*(a-u)+h*(c+A/3)-f*(u+a/3))/20,e=(i=t.slice(-2))[0],n=i[1],r}).reduce(function(t,e){return t+e},0)>=0}let nh=function(t){return void 0===t};var nd={}.toString;let np=function(t,e){return nd.call(t)==="[object "+e+"]"},ng=function(t){return np(t,"Boolean")};function ny(t){return"function"==typeof t}let nv=function(t){var e=typeof t;return null!==t&&"object"===e||"function"===e};var nm=n(64467),nb=n(53954);function nB(){return(nB="u">typeof Reflect&&Reflect.get?Reflect.get.bind():function(t,e,n){var r=function(t,e){for(;!({}).hasOwnProperty.call(t,e)&&null!==(t=(0,nb.A)(t)););return t}(t,e);if(r){var i=Object.getOwnPropertyDescriptor(r,e);return i.get?i.get.call(arguments.length<3?t:n):i.value}}).apply(null,arguments)}function nw(t,e,n,r){var i=nB((0,nb.A)(1&r?t.prototype:t),e,n);return 2&r&&"function"==typeof i?function(t){return i.apply(n,t)}:i}var nx=n(43145);function nC(t,e,n,r){var i=t-n,A=e-r;return Math.sqrt(i*i+A*A)}function nO(t,e){var n=Math.min.apply(Math,(0,tx.A)(t)),r=Math.min.apply(Math,(0,tx.A)(e));return{x:n,y:r,width:Math.max.apply(Math,(0,tx.A)(t))-n,height:Math.max.apply(Math,(0,tx.A)(e))-r}}function nE(t,e,n,r,i,A){var a=-1,o=1/0,s=[n,r],l=20;A&&A>200&&(l=A/10);for(var c=1/l,u=c/10,f=0;f<=l;f++){var h=f*c,d=[i.apply(void 0,(0,tx.A)(t.concat([h]))),i.apply(void 0,(0,tx.A)(e.concat([h])))],p=nC(s[0],s[1],d[0],d[1]);p=0&&w=0&&i<=1&&c.push(i);else{var u=s*s-4*o*l;nA(u,0)?c.push(-s/(2*o)):u>0&&(i=(-s+(a=Math.sqrt(u)))/(2*o),A=(-s-a)/(2*o),i>=0&&i<=1&&c.push(i),A>=0&&A<=1&&c.push(A))}return c}function nM(t,e,n,r,i,A,a,o,s,l,c){var u=nE([t,n,i,a],[e,r,A,o],s,l,nF,c);return nC(u.x,u.y,s,l)}function nU(t,e,n,r){var i=1-r;return i*i*t+2*r*i*e+r*r*n}function nS(t,e,n){var r=t+n-2*e;if(nA(r,0))return[.5];var i=(t-e)/r;return i<=1&&i>=0?[i]:[]}var nI=n(1079),nT=n(10467),nL=n(24765),n_=n(80045),nP=((O1={}).GROUP="g",O1.FRAGMENT="fragment",O1.CIRCLE="circle",O1.ELLIPSE="ellipse",O1.IMAGE="image",O1.RECT="rect",O1.LINE="line",O1.POLYLINE="polyline",O1.POLYGON="polygon",O1.TEXT="text",O1.PATH="path",O1.HTML="html",O1.MESH="mesh",O1),nH=((O2={})[O2.ZERO=0]="ZERO",O2[O2.NEGATIVE_ONE=1]="NEGATIVE_ONE",O2),nj=(0,tw.A)(function t(){(0,tB.A)(this,t),this.plugins=[]},[{key:"addRenderingPlugin",value:function(t){this.plugins.push(t),this.context.renderingPlugins.push(t)}},{key:"removeAllRenderingPlugins",value:function(){var t=this;this.plugins.forEach(function(e){var n=t.context.renderingPlugins.indexOf(e);n>=0&&t.context.renderingPlugins.splice(n,1)})}}]),nN=(0,tw.A)(function t(e){(0,tB.A)(this,t),this.clipSpaceNearZ=nH.NEGATIVE_ONE,this.plugins=[],this.config=(0,tb.A)({enableDirtyCheck:!0,enableCulling:!1,enableAutoRendering:!0,enableDirtyRectangleRendering:!0,enableDirtyRectangleRenderingDebug:!1,enableSizeAttenuation:!0,enableRenderingOptimization:!1},e)},[{key:"registerPlugin",value:function(t){-1===this.plugins.findIndex(function(e){return e===t})&&this.plugins.push(t)}},{key:"unregisterPlugin",value:function(t){var e=this.plugins.findIndex(function(e){return e===t});e>-1&&this.plugins.splice(e,1)}},{key:"getPlugins",value:function(){return this.plugins}},{key:"getPlugin",value:function(t){return this.plugins.find(function(e){return e.name===t})}},{key:"getConfig",value:function(){return this.config}},{key:"setConfig",value:function(t){Object.assign(this.config,t)}}]),nD=function(){function t(){(0,tB.A)(this,t),this.center=[0,0,0],this.halfExtents=[0,0,0],this.min=[0,0,0],this.max=[0,0,0]}return(0,tw.A)(t,[{key:"update",value:function(t,e){tI(this.center,t),tI(this.halfExtents,e),t_(this.min,this.center,this.halfExtents),tL(this.max,this.center,this.halfExtents)}},{key:"setMinMax",value:function(t,e){tL(this.center,e,t),tP(this.center,this.center,.5),t_(this.halfExtents,e,t),tP(this.halfExtents,this.halfExtents,.5),tI(this.min,t),tI(this.max,e)}},{key:"getMin",value:function(){return this.min}},{key:"getMax",value:function(){return this.max}},{key:"add",value:function(e){if(!t.isEmpty(e)){if(t.isEmpty(this))return void this.setMinMax(e.getMin(),e.getMax());var n=this.center,r=n[0],i=n[1],A=n[2],a=this.halfExtents,o=a[0],s=a[1],l=a[2],c=r-o,u=r+o,f=i-s,h=i+s,d=A-l,p=A+l,g=e.center,y=g[0],v=g[1],b=g[2],B=e.halfExtents,w=B[0],x=B[1],C=B[2],O=y-w,E=y+w,k=v-x,F=v+x,Q=b-C,M=b+C;Ou&&(u=E),kh&&(h=F),Qp&&(p=M),n[0]=(c+u)*.5,n[1]=(f+h)*.5,n[2]=(d+p)*.5,a[0]=(u-c)*.5,a[1]=(h-f)*.5,a[2]=(p-d)*.5,this.min[0]=c,this.min[1]=f,this.min[2]=d,this.max[0]=u,this.max[1]=h,this.max[2]=p}}},{key:"setFromTransformedAABB",value:function(t,e){var n=this.center,r=this.halfExtents,i=t.center,A=t.halfExtents,a=e[0],o=e[4],s=e[8],l=e[1],c=e[5],u=e[9],f=e[2],h=e[6],d=e[10],p=Math.abs(a),g=Math.abs(o),y=Math.abs(s),v=Math.abs(l),b=Math.abs(c),B=Math.abs(u),w=Math.abs(f),x=Math.abs(h),C=Math.abs(d);n[0]=e[12]+a*i[0]+o*i[1]+s*i[2],n[1]=e[13]+l*i[0]+c*i[1]+u*i[2],n[2]=e[14]+f*i[0]+h*i[1]+d*i[2],r[0]=p*A[0]+g*A[1]+y*A[2],r[1]=v*A[0]+b*A[1]+B*A[2],r[2]=w*A[0]+x*A[1]+C*A[2],t_(this.min,n,r),tL(this.max,n,r)}},{key:"intersects",value:function(t){var e=this.getMax(),n=this.getMin(),r=t.getMax(),i=t.getMin();return n[0]<=r[0]&&e[0]>=i[0]&&n[1]<=r[1]&&e[1]>=i[1]&&n[2]<=r[2]&&e[2]>=i[2]}},{key:"intersection",value:function(e){if(!this.intersects(e))return null;var n,r,i,A,a,o,s=new t,l=(n=[0,0,0],r=this.getMin(),i=e.getMin(),n[0]=Math.max(r[0],i[0]),n[1]=Math.max(r[1],i[1]),n[2]=Math.max(r[2],i[2]),n),c=(A=[0,0,0],a=this.getMax(),o=e.getMax(),A[0]=Math.min(a[0],o[0]),A[1]=Math.min(a[1],o[1]),A[2]=Math.min(a[2],o[2]),A);return s.setMinMax(l,c),s}},{key:"getNegativeFarPoint",value:function(t){return 273===t.pnVertexFlag?tI([0,0,0],this.min):272===t.pnVertexFlag?[this.min[0],this.min[1],this.max[2]]:257===t.pnVertexFlag?[this.min[0],this.max[1],this.min[2]]:256===t.pnVertexFlag?[this.min[0],this.max[1],this.max[2]]:17===t.pnVertexFlag?[this.max[0],this.min[1],this.min[2]]:16===t.pnVertexFlag?[this.max[0],this.min[1],this.max[2]]:1===t.pnVertexFlag?[this.max[0],this.max[1],this.min[2]]:[this.max[0],this.max[1],this.max[2]]}},{key:"getPositiveFarPoint",value:function(t){return 273===t.pnVertexFlag?tI([0,0,0],this.max):272===t.pnVertexFlag?[this.max[0],this.max[1],this.min[2]]:257===t.pnVertexFlag?[this.max[0],this.min[1],this.max[2]]:256===t.pnVertexFlag?[this.max[0],this.min[1],this.min[2]]:17===t.pnVertexFlag?[this.min[0],this.max[1],this.max[2]]:16===t.pnVertexFlag?[this.min[0],this.max[1],this.min[2]]:1===t.pnVertexFlag?[this.min[0],this.min[1],this.max[2]]:[this.min[0],this.min[1],this.min[2]]}}],[{key:"isEmpty",value:function(t){return!t||0===t.halfExtents[0]&&0===t.halfExtents[1]&&0===t.halfExtents[2]}}])}(),nR=(0,tw.A)(function t(e,n){(0,tB.A)(this,t),this.distance=e||0,this.normal=n||tS(0,1,0),this.updatePNVertexFlag()},[{key:"updatePNVertexFlag",value:function(){this.pnVertexFlag=(Number(this.normal[0]>=0)<<8)+(Number(this.normal[1]>=0)<<4)+Number(this.normal[2]>=0)}},{key:"distanceToPoint",value:function(t){return tj(t,this.normal)-this.distance}},{key:"normalize",value:function(){var t=1/tU(this.normal);tP(this.normal,this.normal,t),this.distance*=t}},{key:"intersectsLine",value:function(t,e,n){var r=this.distanceToPoint(t),i=r/(r-this.distanceToPoint(e)),A=i>=0&&i<=1;return A&&n&&tN(n,t,e,i),A}}]),nK=((O4={})[O4.OUTSIDE=0xffffffff]="OUTSIDE",O4[O4.INSIDE=0]="INSIDE",O4[O4.INDETERMINATE=0x7fffffff]="INDETERMINATE",O4),nz=(0,tw.A)(function t(e){if((0,tB.A)(this,t),this.planes=[],e)this.planes=e;else for(var n=0;n<6;n++)this.planes.push(new nR)},[{key:"extractFromVPMatrix",value:function(t){var e=(0,tE.A)(t,16),n=e[0],r=e[1],i=e[2],A=e[3],a=e[4],o=e[5],s=e[6],l=e[7],c=e[8],u=e[9],f=e[10],h=e[11],d=e[12],p=e[13],g=e[14],y=e[15];tT(this.planes[0].normal,A-n,l-a,h-c),this.planes[0].distance=y-d,tT(this.planes[1].normal,A+n,l+a,h+c),this.planes[1].distance=y+d,tT(this.planes[2].normal,A+r,l+o,h+u),this.planes[2].distance=y+p,tT(this.planes[3].normal,A-r,l-o,h-u),this.planes[3].distance=y-p,tT(this.planes[4].normal,A-i,l-s,h-f),this.planes[4].distance=y-g,tT(this.planes[5].normal,A+i,l+s,h+f),this.planes[5].distance=y+g,this.planes.forEach(function(t){t.normalize(),t.updatePNVertexFlag()})}}]),nG=function(){function t(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;(0,tB.A)(this,t),this.x=0,this.y=0,this.x=e,this.y=n}return(0,tw.A)(t,[{key:"clone",value:function(){return new t(this.x,this.y)}},{key:"copyFrom",value:function(t){this.x=t.x,this.y=t.y}}])}(),nV=function(){function t(e,n,r,i){(0,tB.A)(this,t),this.x=e,this.y=n,this.width=r,this.height=i,this.left=e,this.right=e+r,this.top=n,this.bottom=n+i}return(0,tw.A)(t,[{key:"toJSON",value:function(){}}],[{key:"fromRect",value:function(e){return new t(e.x,e.y,e.width,e.height)}},{key:"applyTransform",value:function(e,n){var r=tG(e.x,e.y,0,1),i=tG(e.x+e.width,e.y,0,1),A=tG(e.x,e.y+e.height,0,1),a=tG(e.x+e.width,e.y+e.height,0,1),o=tz(),s=tz(),l=tz(),c=tz();tV(o,r,n),tV(s,i,n),tV(l,A,n),tV(c,a,n);var u=Math.min(o[0],s[0],l[0],c[0]),f=Math.min(o[1],s[1],l[1],c[1]),h=Math.max(o[0],s[0],l[0],c[0]),d=Math.max(o[1],s[1],l[1],c[1]);return t.fromRect({x:u,y:f,width:h-u,height:d-f})}}])}(),nW="Method not implemented.",nX="Use document.documentElement instead.";function nY(t){return void 0===t?0:t>360||t<-360?t%360:t}var n$=tQ();function nq(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=!(arguments.length>3)||void 0===arguments[3]||arguments[3];return Array.isArray(t)&&3===t.length?r?tM(t):tI(n$,t):eG(t)?r?tS(t,e,n):tT(n$,t,e,n):r?tS(t[0],t[1]||e,t[2]||n):tT(n$,t[0],t[1]||e,t[2]||n)}var nJ=Math.PI/180,nZ=180/Math.PI,n0=Math.PI/2;function n1(t,e){var n,r,i,A,a,o,s,l,c,u,f,h,d,p,g,y,v;return 16===e.length?(i=el(tQ(),e),a=(A=(0,tE.A)(i,3))[0],o=A[1],s=A[2],(l=Math.asin(-e[2]/a))-n0?(n=Math.atan2(e[6]/o,e[10]/s),r=Math.atan2(e[1]/a,e[0]/a)):(r=0,n=-Math.atan2(e[4]/o,e[5]/o)):(r=0,n=Math.atan2(e[4]/o,e[5]/o)),t[0]=n,t[1]=l,t[2]=r,t):(c=e[0],u=e[1],f=e[2],h=e[3],y=c*c+(d=u*u)+(p=f*f)+(g=h*h),(v=c*h-u*f)>.499995*y?(t[0]=n0,t[1]=2*Math.atan2(u,c),t[2]=0):v<-.499995*y?(t[0]=-n0,t[1]=2*Math.atan2(u,c),t[2]=0):(t[0]=Math.asin(2*(c*f-h*u)),t[1]=Math.atan2(2*(c*h+u*f),1-2*(p+g)),t[2]=Math.atan2(2*(c*u+f*h),1-2*(d+p))),t)}function n2(t){var e=t[0],n=t[1],r=t[3],i=t[4],A=Math.sqrt(e*e+n*n),a=Math.sqrt(r*r+i*i);if(e*i-n*r<0&&(e7&&void 0!==arguments[7]&&arguments[7],c=2*A,u=n-e,f=r-i,h=a-A,d=a*A;l?(o=-a/h,s=-d/h):(o=-(a+A)/h,s=-2*d/h),t[0]=c/u,t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[5]=c/f,t[6]=0,t[7]=0,t[8]=(n+e)/u,t[9]=(r+i)/f,t[10]=o,t[11]=-1,t[12]=0,t[13]=0,t[14]=s,t[15]=0}(this.projectionMatrix,s,s+o,A-a,A,t,this.far,this.clipSpaceNearZ===nH.ZERO),t0(this.projectionMatrixInverse,this.projectionMatrix),this.triggerUpdate(),this}},{key:"setOrthographic",value:function(t,e,n,r,i,A){this.projectionMode=re.ORTHOGRAPHIC,this.rright=e,this.left=t,this.top=n,this.bottom=r,this.near=i,this.far=A;var a,o=(this.rright-this.left)/(2*this.zoom),s=(this.top-this.bottom)/(2*this.zoom),l=(this.rright+this.left)/2,c=(this.top+this.bottom)/2,u=l-o,f=l+o,h=c+s,d=c-s;if(null!=(a=this.view)&&a.enabled){var p=(this.rright-this.left)/this.view.fullWidth/this.zoom,g=(this.top-this.bottom)/this.view.fullHeight/this.zoom;u+=p*this.view.offsetX,f=u+p*this.view.width,h-=g*this.view.offsetY,d=h-g*this.view.height}return this.clipSpaceNearZ===nH.NEGATIVE_ONE?eB(this.projectionMatrix,u,f,h,d,i,A):ew(this.projectionMatrix,u,f,h,d,i,A),t0(this.projectionMatrixInverse,this.projectionMatrix),this._getOrthoMatrix(),this.triggerUpdate(),this}},{key:"setPosition",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.position[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.position[2],r=nq(t,e,n);return this._setPosition(r),this.setFocalPoint(this.focalPoint),this.triggerUpdate(),this}},{key:"setFocalPoint",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.focalPoint[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.focalPoint[2],r=tS(0,1,0);if(this.focalPoint=nq(t,e,n),this.trackingMode===rt.CINEMATIC){var i=t_(tQ(),this.focalPoint,this.position);t=i[0],e=i[1],n=i[2];var A=Math.asin(e/tU(i))*nZ,a=90+Math.atan2(n,t)*nZ,o=tW();t9(o,o,a*nJ),t8(o,o,A*nJ),r=tD(tQ(),[0,1,0],o)}return t0(this.matrix,ex(tW(),this.position,this.focalPoint,r)),this._getAxes(),this._getDistance(),this._getAngles(),this.triggerUpdate(),this}},{key:"getDistance",value:function(){return this.distance}},{key:"getDistanceVector",value:function(){return this.distanceVector}},{key:"setDistance",value:function(t){if(this.distance===t||t<0)return this;this.distance=t,this.distance<2e-4&&(this.distance=2e-4),this.dollyingStep=this.distance/100;var e=tQ();t=this.distance;var n=this.forward,r=this.focalPoint;return e[0]=t*n[0]+r[0],e[1]=t*n[1]+r[1],e[2]=t*n[2]+r[2],this._setPosition(e),this.triggerUpdate(),this}},{key:"setMaxDistance",value:function(t){return this.maxDistance=t,this}},{key:"setMinDistance",value:function(t){return this.minDistance=t,this}},{key:"setAzimuth",value:function(t){return this.azimuth=nY(t),this.computeMatrix(),this._getAxes(),this.type===n7.ORBITING||this.type===n7.EXPLORING?this._getPosition():this.type===n7.TRACKING&&this._getFocalPoint(),this.triggerUpdate(),this}},{key:"getAzimuth",value:function(){return this.azimuth}},{key:"setElevation",value:function(t){return this.elevation=nY(t),this.computeMatrix(),this._getAxes(),this.type===n7.ORBITING||this.type===n7.EXPLORING?this._getPosition():this.type===n7.TRACKING&&this._getFocalPoint(),this.triggerUpdate(),this}},{key:"getElevation",value:function(){return this.elevation}},{key:"setRoll",value:function(t){return this.roll=nY(t),this.computeMatrix(),this._getAxes(),this.type===n7.ORBITING||this.type===n7.EXPLORING?this._getPosition():this.type===n7.TRACKING&&this._getFocalPoint(),this.triggerUpdate(),this}},{key:"getRoll",value:function(){return this.roll}},{key:"_update",value:function(){this._getAxes(),this._getPosition(),this._getDistance(),this._getAngles(),this._getOrthoMatrix(),this.triggerUpdate()}},{key:"computeMatrix",value:function(){var t=eP(e_(),[0,0,1],this.roll*nJ);tJ(this.matrix);var e=eP(e_(),[1,0,0],(this.rotateWorld&&this.type!==n7.TRACKING||this.type===n7.TRACKING?1:-1)*this.elevation*nJ),n=eP(e_(),[0,1,0],(this.rotateWorld&&this.type!==n7.TRACKING||this.type===n7.TRACKING?1:-1)*this.azimuth*nJ),r=eH(e_(),n,e);r=eH(e_(),r,t);var i=ed(tW(),r);this.type===n7.ORBITING||this.type===n7.EXPLORING?(t5(this.matrix,this.matrix,this.focalPoint),t4(this.matrix,this.matrix,i),t5(this.matrix,this.matrix,[0,0,this.distance])):this.type===n7.TRACKING&&(t5(this.matrix,this.matrix,this.position),t4(this.matrix,this.matrix,i))}},{key:"_setPosition",value:function(t,e,n){this.position=nq(t,e,n);var r=this.matrix;r[12]=this.position[0],r[13]=this.position[1],r[14]=this.position[2],r[15]=1,this._getOrthoMatrix()}},{key:"_getAxes",value:function(){tI(this.right,nq(tV(tz(),[1,0,0,0],this.matrix))),tI(this.up,nq(tV(tz(),[0,1,0,0],this.matrix))),tI(this.forward,nq(tV(tz(),[0,0,1,0],this.matrix))),tH(this.right,this.right),tH(this.up,this.up),tH(this.forward,this.forward)}},{key:"_getAngles",value:function(){var t=this.distanceVector[0],e=this.distanceVector[1],n=this.distanceVector[2],r=tU(this.distanceVector);if(0===r){this.elevation=0,this.azimuth=0;return}this.type===n7.TRACKING||this.rotateWorld?(this.elevation=Math.asin(e/r)*nZ,this.azimuth=Math.atan2(-t,-n)*nZ):(this.elevation=-(Math.asin(e/r)*nZ),this.azimuth=-(Math.atan2(-t,-n)*nZ))}},{key:"_getPosition",value:function(){tI(this.position,nq(tV(tz(),[0,0,0,1],this.matrix))),this._getDistance()}},{key:"_getFocalPoint",value:function(){var t,e,n,r,i,A,a;n=this.distanceVector,r=[0,0,-this.distance],t=eL(),e=this.matrix,t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[4],t[4]=e[5],t[5]=e[6],t[6]=e[8],t[7]=e[9],t[8]=e[10],i=r[0],A=r[1],a=r[2],n[0]=i*m[0]+A*m[3]+a*m[6],n[1]=i*m[1]+A*m[4]+a*m[7],n[2]=i*m[2]+A*m[5]+a*m[8],tL(this.focalPoint,this.position,this.distanceVector),this._getDistance()}},{key:"_getDistance",value:function(){this.distanceVector=t_(tQ(),this.focalPoint,this.position),this.distance=tU(this.distanceVector),this.dollyingStep=this.distance/100}},{key:"_getOrthoMatrix",value:function(){if(this.projectionMode===re.ORTHOGRAPHIC){var t=this.position,e=eP(e_(),[0,0,1],-this.roll*Math.PI/180);eh(this.orthoMatrix,e,tS((this.rright-this.left)/2-t[0],(this.top-this.bottom)/2-t[1],0),tS(this.zoom,this.zoom,1),t)}}},{key:"triggerUpdate",value:function(){if(this.enableUpdate){var t=this.getViewTransform(),e=t4(tW(),this.getPerspective(),t);this.getFrustum().extractFromVPMatrix(e),this.eventEmitter.emit(rn)}}},{key:"rotate",value:function(t,e,n){throw Error(nW)}},{key:"pan",value:function(t,e){throw Error(nW)}},{key:"dolly",value:function(t){throw Error(nW)}},{key:"createLandmark",value:function(t,e){throw Error(nW)}},{key:"gotoLandmark",value:function(t,e){throw Error(nW)}},{key:"cancelLandmarkAnimation",value:function(){throw Error(nW)}}]),ri=((O8={})[O8.Standard=0]="Standard",O8),rA=((O9={})[O9.ADDED=0]="ADDED",O9[O9.REMOVED=1]="REMOVED",O9[O9.Z_INDEX_CHANGED=2]="Z_INDEX_CHANGED",O9),ra=tQ(),ro=tW(),rs=e_();function rl(t){if(t.localDirtyFlag){if(0!==t.localSkew[0]||0!==t.localSkew[1]){eh(t.localTransform,t.localRotation,t.localPosition,tS(1,1,1),t.origin),(0!==t.localSkew[0]||0!==t.localSkew[1])&&(tJ(ro),ro[4]=Math.tan(t.localSkew[0]),ro[1]=Math.tan(t.localSkew[1]),t4(t.localTransform,t.localTransform,ro));var e=eh(ro,eR(rs,0,0,0,1),tT(ra,1,1,1),t.localScale,t.origin);t4(t.localTransform,t.localTransform,e)}else{var n=t.localTransform,r=t.localPosition,i=t.localRotation,A=t.localScale,a=t.origin,o=0!==r[0]||0!==r[1]||0!==r[2],s=1!==i[3]||0!==i[0]||0!==i[1]||0!==i[2],l=1!==A[0]||1!==A[1]||1!==A[2],c=0!==a[0]||0!==a[1]||0!==a[2];s||l||c?eh(n,i,r,A,a):o?et(n,r):tJ(n)}t.localDirtyFlag=!1}}var rc={absolutePath:[],hasArc:!1,segments:[],polygons:[],polylines:[],curve:null,totalLength:0,rect:new nV(0,0,0,0)},ru=((O7={}).COORDINATE="",O7.COLOR="",O7.PAINT="",O7.NUMBER="",O7.ANGLE="",O7.OPACITY_VALUE="",O7.SHADOW_BLUR="",O7.LENGTH="",O7.PERCENTAGE="",O7.LENGTH_PERCENTAGE=" | ",O7.LENGTH_PERCENTAGE_12="[ | ]{1,2}",O7.LENGTH_PERCENTAGE_14="[ | ]{1,4}",O7.LIST_OF_POINTS="",O7.PATH="",O7.FILTER="",O7.Z_INDEX="",O7.OFFSET_DISTANCE="",O7.DEFINED_PATH="",O7.MARKER="",O7.TRANSFORM="",O7.TRANSFORM_ORIGIN="",O7.TEXT="",O7.TEXT_TRANSFORM="",O7);function rf(t,e,n){t.prototype=e.prototype=n,n.constructor=t}function rh(t,e){var n=Object.create(t.prototype);for(var r in e)n[r]=e[r];return n}function rd(){}var rp="\\s*([+-]?\\d+)\\s*",rg="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)\\s*",ry="\\s*([+-]?(?:\\d*\\.)?\\d+(?:[eE][+-]?\\d+)?)%\\s*",rv=/^#([0-9a-f]{3,8})$/,rm=RegExp(`^rgb\\(${rp},${rp},${rp}\\)$`),rb=RegExp(`^rgb\\(${ry},${ry},${ry}\\)$`),rB=RegExp(`^rgba\\(${rp},${rp},${rp},${rg}\\)$`),rw=RegExp(`^rgba\\(${ry},${ry},${ry},${rg}\\)$`),rx=RegExp(`^hsl\\(${rg},${ry},${ry}\\)$`),rC=RegExp(`^hsla\\(${rg},${ry},${ry},${rg}\\)$`),rO={aliceblue:0xf0f8ff,antiquewhite:0xfaebd7,aqua:65535,aquamarine:8388564,azure:0xf0ffff,beige:0xf5f5dc,bisque:0xffe4c4,black:0,blanchedalmond:0xffebcd,blue:255,blueviolet:9055202,brown:0xa52a2a,burlywood:0xdeb887,cadetblue:6266528,chartreuse:8388352,chocolate:0xd2691e,coral:0xff7f50,cornflowerblue:6591981,cornsilk:0xfff8dc,crimson:0xdc143c,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:0xb8860b,darkgray:0xa9a9a9,darkgreen:25600,darkgrey:0xa9a9a9,darkkhaki:0xbdb76b,darkmagenta:9109643,darkolivegreen:5597999,darkorange:0xff8c00,darkorchid:0x9932cc,darkred:9109504,darksalmon:0xe9967a,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:0xff1493,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:0xb22222,floralwhite:0xfffaf0,forestgreen:2263842,fuchsia:0xff00ff,gainsboro:0xdcdcdc,ghostwhite:0xf8f8ff,gold:0xffd700,goldenrod:0xdaa520,gray:8421504,green:32768,greenyellow:0xadff2f,grey:8421504,honeydew:0xf0fff0,hotpink:0xff69b4,indianred:0xcd5c5c,indigo:4915330,ivory:0xfffff0,khaki:0xf0e68c,lavender:0xe6e6fa,lavenderblush:0xfff0f5,lawngreen:8190976,lemonchiffon:0xfffacd,lightblue:0xadd8e6,lightcoral:0xf08080,lightcyan:0xe0ffff,lightgoldenrodyellow:0xfafad2,lightgray:0xd3d3d3,lightgreen:9498256,lightgrey:0xd3d3d3,lightpink:0xffb6c1,lightsalmon:0xffa07a,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:0xb0c4de,lightyellow:0xffffe0,lime:65280,limegreen:3329330,linen:0xfaf0e6,magenta:0xff00ff,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:0xba55d3,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:0xc71585,midnightblue:1644912,mintcream:0xf5fffa,mistyrose:0xffe4e1,moccasin:0xffe4b5,navajowhite:0xffdead,navy:128,oldlace:0xfdf5e6,olive:8421376,olivedrab:7048739,orange:0xffa500,orangered:0xff4500,orchid:0xda70d6,palegoldenrod:0xeee8aa,palegreen:0x98fb98,paleturquoise:0xafeeee,palevioletred:0xdb7093,papayawhip:0xffefd5,peachpuff:0xffdab9,peru:0xcd853f,pink:0xffc0cb,plum:0xdda0dd,powderblue:0xb0e0e6,purple:8388736,rebeccapurple:6697881,red:0xff0000,rosybrown:0xbc8f8f,royalblue:4286945,saddlebrown:9127187,salmon:0xfa8072,sandybrown:0xf4a460,seagreen:3050327,seashell:0xfff5ee,sienna:0xa0522d,silver:0xc0c0c0,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:0xfffafa,springgreen:65407,steelblue:4620980,tan:0xd2b48c,teal:32896,thistle:0xd8bfd8,tomato:0xff6347,turquoise:4251856,violet:0xee82ee,wheat:0xf5deb3,white:0xffffff,whitesmoke:0xf5f5f5,yellow:0xffff00,yellowgreen:0x9acd32};function rE(){return this.rgb().formatHex()}function rk(){return this.rgb().formatRgb()}function rF(t){var e,n;return t=(t+"").trim().toLowerCase(),(e=rv.exec(t))?(n=e[1].length,e=parseInt(e[1],16),6===n?rQ(e):3===n?new rU(e>>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===n?rM(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===n?rM(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=rm.exec(t))?new rU(e[1],e[2],e[3],1):(e=rb.exec(t))?new rU(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=rB.exec(t))?rM(e[1],e[2],e[3],e[4]):(e=rw.exec(t))?rM(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=rx.exec(t))?rP(e[1],e[2]/100,e[3]/100,1):(e=rC.exec(t))?rP(e[1],e[2]/100,e[3]/100,e[4]):rO.hasOwnProperty(t)?rQ(rO[t]):"transparent"===t?new rU(NaN,NaN,NaN,0):null}function rQ(t){return new rU(t>>16&255,t>>8&255,255&t,1)}function rM(t,e,n,r){return r<=0&&(t=e=n=NaN),new rU(t,e,n,r)}function rU(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}function rS(){return`#${r_(this.r)}${r_(this.g)}${r_(this.b)}`}function rI(){let t=rT(this.opacity);return`${1===t?"rgb(":"rgba("}${rL(this.r)}, ${rL(this.g)}, ${rL(this.b)}${1===t?")":`, ${t})`}`}function rT(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function rL(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function r_(t){return((t=rL(t))<16?"0":"")+t.toString(16)}function rP(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new rj(t,e,n,r)}function rH(t){if(t instanceof rj)return new rj(t.h,t.s,t.l,t.opacity);if(t instanceof rd||(t=rF(t)),!t)return new rj;if(t instanceof rj)return t;var e=(t=t.rgb()).r/255,n=t.g/255,r=t.b/255,i=Math.min(e,n,r),A=Math.max(e,n,r),a=NaN,o=A-i,s=(A+i)/2;return o?(a=e===A?(n-r)/o+(n0&&s<1?0:a,new rj(a,o,s,t.opacity)}function rj(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}function rN(t){return(t=(t||0)%360)<0?t+360:t}function rD(t){return Math.max(0,Math.min(1,t||0))}function rR(t,e,n){return(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)*255}function rK(t,e){if("function"!=typeof t||null!=e&&"function"!=typeof e)throw TypeError("Expected a function");var n=function(){for(var r=arguments.length,i=Array(r),A=0;A=240?t-240:t+120,i,r),rR(t,i,r),rR(t<120?t+240:t-120,i,r),this.opacity)},clamp(){return new rj(rN(this.h),rD(this.s),rD(this.l),rT(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(){let t=rT(this.opacity);return`${1===t?"hsl(":"hsla("}${rN(this.h)}, ${100*rD(this.s)}%, ${100*rD(this.l)}%${1===t?")":`, ${t})`}`}})),rK.Cache=Map,rK.cacheList=[],rK.clearCache=function(){rK.cacheList.forEach(function(t){return t.clear()})};var rz=((Et={})[Et.kUnknown=0]="kUnknown",Et[Et.kNumber=1]="kNumber",Et[Et.kPercentage=2]="kPercentage",Et[Et.kEms=3]="kEms",Et[Et.kPixels=4]="kPixels",Et[Et.kRems=5]="kRems",Et[Et.kDegrees=6]="kDegrees",Et[Et.kRadians=7]="kRadians",Et[Et.kGradians=8]="kGradians",Et[Et.kTurns=9]="kTurns",Et[Et.kMilliseconds=10]="kMilliseconds",Et[Et.kSeconds=11]="kSeconds",Et[Et.kInteger=12]="kInteger",Et),rG=((Ee={})[Ee.kUNumber=0]="kUNumber",Ee[Ee.kUPercent=1]="kUPercent",Ee[Ee.kULength=2]="kULength",Ee[Ee.kUAngle=3]="kUAngle",Ee[Ee.kUTime=4]="kUTime",Ee[Ee.kUOther=5]="kUOther",Ee),rV=((En={})[En.kYes=0]="kYes",En[En.kNo=1]="kNo",En),rW=((Er={})[Er.kYes=0]="kYes",Er[Er.kNo=1]="kNo",Er),rX=[{name:"em",unit_type:rz.kEms},{name:"px",unit_type:rz.kPixels},{name:"deg",unit_type:rz.kDegrees},{name:"rad",unit_type:rz.kRadians},{name:"grad",unit_type:rz.kGradians},{name:"ms",unit_type:rz.kMilliseconds},{name:"s",unit_type:rz.kSeconds},{name:"rem",unit_type:rz.kRems},{name:"turn",unit_type:rz.kTurns}],rY=((Ei={})[Ei.kUnknownType=0]="kUnknownType",Ei[Ei.kUnparsedType=1]="kUnparsedType",Ei[Ei.kKeywordType=2]="kKeywordType",Ei[Ei.kUnitType=3]="kUnitType",Ei[Ei.kSumType=4]="kSumType",Ei[Ei.kProductType=5]="kProductType",Ei[Ei.kNegateType=6]="kNegateType",Ei[Ei.kInvertType=7]="kInvertType",Ei[Ei.kMinType=8]="kMinType",Ei[Ei.kMaxType=9]="kMaxType",Ei[Ei.kClampType=10]="kClampType",Ei[Ei.kTransformType=11]="kTransformType",Ei[Ei.kPositionType=12]="kPositionType",Ei[Ei.kURLImageType=13]="kURLImageType",Ei[Ei.kColorType=14]="kColorType",Ei[Ei.kUnsupportedColorType=15]="kUnsupportedColorType",Ei),r$=function(t){return t?"number"===t?rz.kNumber:"percent"===t||"%"===t?rz.kPercentage:rX.find(function(e){return e.name===t}).unit_type:rz.kUnknown},rq=function(t){switch(t){case rz.kNumber:case rz.kInteger:return rG.kUNumber;case rz.kPercentage:return rG.kUPercent;case rz.kPixels:return rG.kULength;case rz.kMilliseconds:case rz.kSeconds:return rG.kUTime;case rz.kDegrees:case rz.kRadians:case rz.kGradians:case rz.kTurns:return rG.kUAngle;default:return rG.kUOther}},rJ=function(t){switch(t){case rG.kUNumber:return rz.kNumber;case rG.kULength:return rz.kPixels;case rG.kUPercent:return rz.kPercentage;case rG.kUTime:return rz.kSeconds;case rG.kUAngle:return rz.kDegrees;default:return rz.kUnknown}},rZ=function(t){var e=1;switch(t){case rz.kPixels:case rz.kDegrees:case rz.kSeconds:break;case rz.kMilliseconds:e=.001;break;case rz.kRadians:e=180/Math.PI;break;case rz.kGradians:e=.9;break;case rz.kTurns:e=360}return e},r0=function(t){switch(t){case rz.kNumber:case rz.kInteger:break;case rz.kPercentage:return"%";case rz.kEms:return"em";case rz.kRems:return"rem";case rz.kPixels:return"px";case rz.kDegrees:return"deg";case rz.kRadians:return"rad";case rz.kGradians:return"grad";case rz.kMilliseconds:return"ms";case rz.kSeconds:return"s";case rz.kTurns:return"turn"}return""},r1=(0,tw.A)(function t(){(0,tB.A)(this,t)},[{key:"toString",value:function(){return this.buildCSSText(rV.kNo,rW.kNo,"")}},{key:"isNumericValue",value:function(){return this.getType()>=rY.kUnitType&&this.getType()<=rY.kClampType}}],[{key:"isAngle",value:function(t){return t===rz.kDegrees||t===rz.kRadians||t===rz.kGradians||t===rz.kTurns}},{key:"isLength",value:function(t){return t>=rz.kEms&&t1&&void 0!==arguments[1]?arguments[1]:"";return(Number.isFinite(t)?"NaN":t>0?"infinity":"-infinity")+e},r8=function(t){return rJ(rq(t))},r9=function(t){function e(t){var n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:rz.kNumber;return(0,tB.A)(this,e),n=(0,tC.A)(this,e),n.unit="string"==typeof r?r$(r):r,n.value=t,n}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"clone",value:function(){return new e(this.value,this.unit)}},{key:"equals",value:function(t){return this.value===t.value&&this.unit===t.unit}},{key:"getType",value:function(){return rY.kUnitType}},{key:"convertTo",value:function(t){if(this.unit===t)return new e(this.value,this.unit);var n=r8(this.unit);if(n!==r8(t)||n===rz.kUnknown)return null;var r=rZ(this.unit)/rZ(t);return new e(this.value*r,t)}},{key:"buildCSSText",value:function(t,e,n){var r;switch(this.unit){case rz.kUnknown:break;case rz.kInteger:r=Number(this.value).toFixed(0);break;case rz.kNumber:case rz.kPercentage:case rz.kEms:case rz.kRems:case rz.kPixels:case rz.kDegrees:case rz.kRadians:case rz.kGradians:case rz.kMilliseconds:case rz.kSeconds:case rz.kTurns:var i=this.value,A=r0(this.unit);if(i<-999999||i>999999){var a=r0(this.unit);r=!Number.isFinite(i)||Number.isNaN(i)?r6(i,a):i+(a||"")}else r="".concat(i).concat(A)}return n+r}}])}(r1),r7=new r9(0,"px");new r9(1,"px");var it=new r9(0,"deg"),ie=function(t){function e(t,n,r){var i,A=arguments.length>3&&void 0!==arguments[3]?arguments[3]:1,a=arguments.length>4&&void 0!==arguments[4]&&arguments[4];return(0,tB.A)(this,e),(i=(0,tC.A)(this,e,["rgb"])).r=t,i.g=n,i.b=r,i.alpha=A,i.isNone=a,i}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"clone",value:function(){return new e(this.r,this.g,this.b,this.alpha)}},{key:"buildCSSText",value:function(t,e,n){return"".concat(n,"rgba(").concat(this.r,",").concat(this.g,",").concat(this.b,",").concat(this.alpha,")")}}])}(r2),ir=new r3("unset"),ii={"":ir,unset:ir,initial:new r3("initial"),inherit:new r3("inherit")},iA=new ie(0,0,0,0,!0),ia=new ie(0,0,0,0),io=rK(function(t,e,n,r){return new ie(t,e,n,r)},function(t,e,n,r){return"rgba(".concat(t,",").concat(e,",").concat(n,",").concat(r,")")}),is=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:rz.kNumber;return new r9(t,e)};new r9(50,"%");var il=function(){var t=/^(linear\-gradient)/i,e=/^(repeating\-linear\-gradient)/i,n=/^(radial\-gradient)/i,r=/^(repeating\-radial\-gradient)/i,i=/^(conic\-gradient)/i,A=/^to (left (top|bottom)|right (top|bottom)|top (left|right)|bottom (left|right)|left|right|top|bottom)/i,a=/^(closest\-side|closest\-corner|farthest\-side|farthest\-corner|contain|cover)/,o=/^(left|center|right|top|bottom)/i,s=/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))px/,l=/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))\%/,c=/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))em/,u=/^(-?(([0-9]*\.[0-9]+)|([0-9]+\.?)))deg/,f=/^\(/,h=/^\)/,d=/^,/,p=/^\#([0-9a-fA-F]+)/,g=/^([a-zA-Z]+)/,y=/^rgb/i,v=/^rgba/i,b=/^(([0-9]*\.[0-9]+)|([0-9]+\.?))/,B="";function w(t){throw Error("".concat(B,": ").concat(t))}function x(){return C("linear-gradient",t,E)||C("repeating-linear-gradient",e,E)||C("radial-gradient",n,k)||C("repeating-radial-gradient",r,k)||C("conic-gradient",i,k)}function C(t,e,n){return O(e,function(e){var r=n();return r&&!H(d)&&w("Missing comma before color stops"),{type:t,orientation:r,colorStops:S(I)}})}function O(t,e){var n=H(t);if(n){H(f)||w("Missing (");var r=e(n);return H(h)||w("Missing )"),r}}function E(){return P("directional",A,1)||P("angular",u,1)}function k(){var t,e,n=F();return n&&((t=[]).push(n),e=B,H(d)&&((n=F())?t.push(n):B=e)),t}function F(){var t,e,n=((t=P("shape",/^(circle)/i,0))&&(t.style=_()||Q()),t||((e=P("shape",/^(ellipse)/i,0))&&(e.style=L()||Q()),e));if(n)n.at=M();else{var r=Q();if(r){n=r;var i=M();i&&(n.at=i)}else{var A=U();A&&(n={type:"default-radial",at:A})}}return n}function Q(){return P("extent-keyword",a,1)}function M(){if(P("position",/^at/,0)){var t=U();return t||w("Missing positioning value"),t}}function U(){var t={x:L(),y:L()};if(t.x||t.y)return{type:"position",value:t}}function S(t){var e=t(),n=[];if(e)for(n.push(e);H(d);)(e=t())?n.push(e):w("One extra comma");return n}function I(){var t=P("hex",p,1)||O(v,function(){return{type:"rgba",value:S(T)}})||O(y,function(){return{type:"rgb",value:S(T)}})||P("literal",g,0);return t||w("Expected color definition"),t.length=L(),t}function T(){return H(b)[1]}function L(){return P("%",l,1)||P("position-keyword",o,1)||_()}function _(){return P("px",s,1)||P("em",c,1)}function P(t,e,n){var r=H(e);if(r)return{type:t,value:r[n]}}function H(t){var e=/^[\n\r\t\s]+/.exec(B);e&&j(e[0].length);var n=t.exec(B);return n&&j(n[0].length),n}function j(t){B=B.substring(t)}return function(t){var e;return B=t,e=S(x),B.length>0&&w("Invalid input not EOF"),e}}(),ic=/^l\s*\(\s*([\d.]+)\s*\)\s*(.*)/i,iu=/^r\s*\(\s*([\d.]+)\s*,\s*([\d.]+)\s*,\s*([\d.]+)\s*\)\s*(.*)/i,ih=/^p\s*\(\s*([axyn])\s*\)\s*(.*)/i,id=/[\d.]+:(#[^\s]+|[^\)]+\))/gi,ip={left:180,top:-90,bottom:90,right:0,"left top":225,"top left":225,"left bottom":135,"bottom left":135,"right top":-45,"top right":-45,"right bottom":45,"bottom right":45},ig=rK(function(t){return is("angular"===t.type?Number(t.value):ip[t.value]||0,"deg")}),iy=rK(function(t){var e=50,n=50,r="%",i="%";if((null==t?void 0:t.type)==="position"){var A=t.value,a=A.x,o=A.y;(null==a?void 0:a.type)==="position-keyword"&&("left"===a.value?e=0:"center"===a.value?e=50:"right"===a.value?e=100:"top"===a.value?n=0:"bottom"===a.value&&(n=100)),(null==o?void 0:o.type)==="position-keyword"&&("left"===o.value?e=0:"center"===o.value?n=50:"right"===o.value?e=100:"top"===o.value?n=0:"bottom"===o.value&&(n=100)),((null==a?void 0:a.type)==="px"||(null==a?void 0:a.type)==="%"||(null==a?void 0:a.type)==="em")&&(r=null==a?void 0:a.type,e=Number(a.value)),((null==o?void 0:o.type)==="px"||(null==o?void 0:o.type)==="%"||(null==o?void 0:o.type)==="em")&&(i=null==o?void 0:o.type,n=Number(o.value))}return{cx:is(e,r),cy:is(n,i)}}),iv=rK(function(t){if(t.indexOf("linear")>-1||t.indexOf("radial")>-1)return il(t).map(function(t){var e=t.type,n=t.orientation,r=t.colorStops;!function(t){var e=t.length;t[e-1].length=null!=(A=t[e-1].length)?A:{type:"%",value:"100"},e>1&&(t[0].length=null!=(a=t[0].length)?a:{type:"%",value:"0"});for(var n=0,r=Number(t[0].length.value),i=1;i=0)return is(Number(e),"px");if("deg".search(t)>=0)return is(Number(e),"deg")}var n=[];e=e.replace(t,function(t){return n.push(t),"U".concat(t)});var r="U(".concat(t.source,")");return n.map(function(t){return is(Number(e.replace(RegExp("U".concat(t),"g"),"").replace(RegExp(r,"g"),"*0")),t)})[0]}var iC=function(t){return ix(/px/g,t)},iO=rK(iC);rK(function(t){return ix(RegExp("%","g"),t)});var iE=function(t){return eG(t)||isFinite(Number(t))?is(Number(t)||0,"px"):ix(RegExp("px|%|em|rem","g"),t)},ik=rK(iE),iF=function(t){return ix(RegExp("deg|rad|grad|turn","g"),t)},iQ=rK(iF);function iM(t){var e=0;return t.unit===rz.kDegrees?e=t.value:t.unit===rz.kRadians?e=Number(t.value)*nZ:t.unit===rz.kTurns?e=360*Number(t.value):t.value&&(e=t.value),e}function iU(t,e){var n;return(Array.isArray(t)?n=t.map(function(t){return Number(t)}):eX(t)?n=t.split(" ").map(function(t){return Number(t)}):eG(t)&&(n=[t]),2===e)?1===n.length?[n[0],n[0]]:[n[0],n[1]]:4===e?1===n.length?[n[0],n[0],n[0],n[0]]:2===n.length?[n[0],n[1],n[0],n[1]]:3===n.length?[n[0],n[1],n[2],n[1]]:[n[0],n[1],n[2],n[3]]:"even"===e&&n.length%2==1?[].concat((0,tx.A)(n),(0,tx.A)(n)):n}function iS(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]&&arguments[3];if(t.unit===rz.kPixels)return Number(t.value);if(t.unit===rz.kPercentage&&n){var i=n.nodeName===nP.GROUP?n.getLocalBounds():n.getGeometryBounds();return(r?i.min[e]:0)+t.value/100*i.halfExtents[e]*2}return 0}var iI=["blur","brightness","drop-shadow","contrast","grayscale","sepia","saturate","hue-rotate","invert"];function iT(t){return t.toString()}var iL=function(t){return"number"==typeof t?is(t):/^\s*[-+]?(\d*\.)?\d+\s*$/.test(t)?is(Number(t)):is(0)},i_=rK(iL);function iP(t,e){return[t,e,iT]}function iH(t,e){return function(n,r){return[n,r,function(n){return iT(eY(n,t,e))}]}}function ij(t,e){if(t.length===e.length)return[t,e,function(t){return t}]}function iN(t){return 0===t.parsedStyle.d.totalLength&&(t.parsedStyle.d.totalLength=ne(t.parsedStyle.d.absolutePath,void 0,(0,e$.Cl)((0,e$.Cl)({},void 0),{bbox:!1,length:!0})).length),t.parsedStyle.d.totalLength}function iD(t,e){return t[0]===e[0]&&t[1]===e[1]}function iR(t,e){var n=t.prePoint,r=t.currentPoint,i=t.nextPoint,A=Math.pow(r[0]-n[0],2)+Math.pow(r[1]-n[1],2),a=Math.pow(r[0]-i[0],2)+Math.pow(r[1]-i[1],2),o=Math.acos((A+a-(Math.pow(n[0]-i[0],2)+Math.pow(n[1]-i[1],2)))/(2*Math.sqrt(A)*Math.sqrt(a)));if(!o||0===Math.sin(o)||nA(o,0))return{xExtra:0,yExtra:0};var s=Math.abs(Math.atan2(i[1]-r[1],i[0]-r[0])),l=Math.abs(Math.atan2(i[0]-r[0],i[1]-r[1]));return{xExtra:e/2*(1/Math.sin(o/2))*Math.cos(o/2-(s=s>Math.PI/2?Math.PI-s:s))-e/2||0,yExtra:e/2*(1/Math.sin(o/2))*Math.cos((l=l>Math.PI/2?Math.PI-l:l)-o/2)-e/2||0}}function iK(t,e){return[e[0]+(e[0]-t[0]),e[1]+(e[1]-t[1])]}rK(function(t){return eX(t)?t.split(" ").map(i_):t.map(i_)});var iz=function(t,e){var n=t.x*e.x+t.y*e.y,r=Math.sqrt((Math.pow(t.x,2)+Math.pow(t.y,2))*(Math.pow(e.x,2)+Math.pow(e.y,2)));return(t.x*e.y-t.y*e.x<0?-1:1)*Math.acos(n/r)},iG=function(t,e,n,r,i,A,a,o){e=Math.abs(e),n=Math.abs(n);var s=(r=na(r,360))*nJ;if(t.x===a.x&&t.y===a.y)return{x:t.x,y:t.y,ellipticalArcAngle:0};if(0===e||0===n)return{x:0,y:0,ellipticalArcAngle:0};var l=(t.x-a.x)/2,c=(t.y-a.y)/2,u={x:Math.cos(s)*l+Math.sin(s)*c,y:-Math.sin(s)*l+Math.cos(s)*c},f=Math.pow(u.x,2)/Math.pow(e,2)+Math.pow(u.y,2)/Math.pow(n,2);f>1&&(e*=Math.sqrt(f),n*=Math.sqrt(f));var h=(Math.pow(e,2)*Math.pow(n,2)-Math.pow(e,2)*Math.pow(u.y,2)-Math.pow(n,2)*Math.pow(u.x,2))/(Math.pow(e,2)*Math.pow(u.y,2)+Math.pow(n,2)*Math.pow(u.x,2)),d=(i!==A?1:-1)*Math.sqrt(h=h<0?0:h),p={x:d*(e*u.y/n),y:d*(-(n*u.x)/e)},g={x:Math.cos(s)*p.x-Math.sin(s)*p.y+(t.x+a.x)/2,y:Math.sin(s)*p.x+Math.cos(s)*p.y+(t.y+a.y)/2},y={x:(u.x-p.x)/e,y:(u.y-p.y)/n},v=iz({x:1,y:0},y),b=iz(y,{x:(-u.x-p.x)/e,y:(-u.y-p.y)/n});!A&&b>0?b-=2*Math.PI:A&&b<0&&(b+=2*Math.PI);var B=v+(b%=2*Math.PI)*o,w=e*Math.cos(B),x=n*Math.sin(B);return{x:Math.cos(s)*w-Math.sin(s)*x+g.x,y:Math.sin(s)*w+Math.cos(s)*x+g.y,ellipticalArcStartAngle:v,ellipticalArcEndAngle:v+b,ellipticalArcAngle:B,ellipticalArcCenter:g,resultantRx:e,resultantRy:n}};function iV(t,e){var n=!(arguments.length>2)||void 0===arguments[2]||arguments[2],r=t.arcParams,i=r.rx,A=void 0===i?0:i,a=r.ry,o=void 0===a?0:a,s=r.xRotation,l=r.arcFlag,c=r.sweepFlag,u=iG({x:t.prePoint[0],y:t.prePoint[1]},A,o,s,!!l,!!c,{x:t.currentPoint[0],y:t.currentPoint[1]},e),f=iG({x:t.prePoint[0],y:t.prePoint[1]},A,o,s,!!l,!!c,{x:t.currentPoint[0],y:t.currentPoint[1]},n?e+.005:e-.005),h=f.x-u.x,d=f.y-u.y,p=Math.sqrt(h*h+d*d);return{x:-h/p,y:-d/p}}function iW(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])}function iX(t,e){return iW(t)*iW(e)?(t[0]*e[0]+t[1]*e[1])/(iW(t)*iW(e)):1}function iY(t,e){return(t[0]*e[1]0&&n.push(r),{polygons:e,polylines:n}}(e),i=r.polygons,A=r.polylines,a=function(t){for(var e=[],n=null,r=null,i=null,A=0,a=t.length,o=0;o1&&(n*=Math.sqrt(h),r*=Math.sqrt(h));var d=n*n*(f*f)+r*r*(u*u),p=d?Math.sqrt((n*n*(r*r)-d)/d):1;A===a&&(p*=-1),isNaN(p)&&(p=0);var g=r?p*n*f/r:0,y=n?-(p*r)*u/n:0,v=(o+l)/2+Math.cos(i)*g-Math.sin(i)*y,b=(s+c)/2+Math.sin(i)*g+Math.cos(i)*y,B=[(u-g)/n,(f-y)/r],w=[(-1*u-g)/n,(-1*f-y)/r],x=iY([1,0],B),C=iY(B,w);return -1>=iX(B,w)&&(C=Math.PI),iX(B,w)>=1&&(C=0),0===a&&C>0&&(C-=2*Math.PI),1===a&&C<0&&(C+=2*Math.PI),{cx:v,cy:b,rx:iD(t,[l,c])?0:n,ry:iD(t,[l,c])?0:r,startAngle:x,endAngle:x+C,xRotation:i,arcFlag:A,sweepFlag:a}}(n,s)}if("Z"===l)n=i,r=t[A+1];else{var u=s.length;n=[s[u-2],s[u-1]]}r&&"Z"===r[0]&&(r=t[A],e[A]&&(e[A].prePoint=n)),c.currentPoint=n,e[A]&&iD(n,e[A].currentPoint)&&(e[A].prePoint=c.prePoint),c.nextPoint=r?[r[r.length-2],r[r.length-1]]:null;var f=c.prePoint;if(["L","H","V"].includes(l))c.startTangent=[f[0]-n[0],f[1]-n[1]],c.endTangent=[n[0]-f[0],n[1]-f[1]];else if("Q"===l){var h=[s[1],s[2]];c.startTangent=[f[0]-h[0],f[1]-h[1]],c.endTangent=[n[0]-h[0],n[1]-h[1]]}else if("T"===l){var d=e[o-1],p=iK(d.currentPoint,f);"Q"===d.command?(c.command="Q",c.startTangent=[f[0]-p[0],f[1]-p[1]],c.endTangent=[n[0]-p[0],n[1]-p[1]]):(c.command="TL",c.startTangent=[f[0]-n[0],f[1]-n[1]],c.endTangent=[n[0]-f[0],n[1]-f[1]])}else if("C"===l){var g=[s[1],s[2]],y=[s[3],s[4]];c.startTangent=[f[0]-g[0],f[1]-g[1]],c.endTangent=[n[0]-y[0],n[1]-y[1]],0===c.startTangent[0]&&0===c.startTangent[1]&&(c.startTangent=[g[0]-y[0],g[1]-y[1]]),0===c.endTangent[0]&&0===c.endTangent[1]&&(c.endTangent=[y[0]-g[0],y[1]-g[1]])}else if("S"===l){var v=e[o-1],b=iK(v.currentPoint,f),B=[s[1],s[2]];"C"===v.command?(c.command="C",c.startTangent=[f[0]-b[0],f[1]-b[1]]):(c.command="SQ",c.startTangent=[f[0]-B[0],f[1]-B[1]]),c.endTangent=[n[0]-B[0],n[1]-B[1]]}else if("A"===l){var w=iV(c,0),x=w.x,C=w.y,O=iV(c,1,!1),E=O.x,k=O.y;c.startTangent=[x,C],c.endTangent=[E,k]}e.push(c)}return e}(e),o=function(t){for(var e=[],n=[],r=[],i=0;il&&(l=p)}for(var g=Math.atan(r/(n*Math.tan(i))),y=1/0,v=-1/0,b=[A,a],B=-(2*Math.PI);B<=2*Math.PI;B+=Math.PI){var w=g+B;Av&&(v=O)}return{x:s,y:y,width:l-s,height:v-y}}(c.cx,c.cy,c.rx,c.ry,c.xRotation,c.startAngle,c.endAngle);break;default:e.push(a[0]),n.push(a[1])}l&&(A.box=l,e.push(l.x,l.x+l.width),n.push(l.y,l.y+l.height))}e=e.filter(function(t){return!Number.isNaN(t)&&t!==1/0&&t!==-1/0}),n=n.filter(function(t){return!Number.isNaN(t)&&t!==1/0&&t!==-1/0});var u=nr(e),f=nr(n),h=ni(e),d=ni(n);if(0===r.length)return{x:u,y:f,width:h-u,height:d-f};for(var p=0;p50)return console.warn("Maximum recursion depth reached in equalizeSegments"),[e,n];var A=nu(e),a=nu(n),o=A.length,s=a.length,l=A.filter(function(t){return t.l}).length,c=a.filter(function(t){return t.l}).length,u=A.filter(function(t){return t.l}).reduce(function(t,e){return t+e.l},0)/l||0,f=a.filter(function(t){return t.l}).reduce(function(t,e){return t+e.l},0)/c||0,h=r||Math.max(o,s),d=[u,f],p=[h-o,h-s],g=0,y=[A,a].map(function(t,e){return t.l===h?t.map(function(t){return t.s}):t.map(function(t,n){return g=n&&p[e]&&t.l>=d[e],p[e]-=!!g,g?t.ss:[t.s]}).flat()});return y[0].length===y[1].length?y:t(y[0],y[1],h,i+1)}(f,h));var p=nf(d[0])!==nf(d[1])?[["M"].concat((i=(r=d[0]).slice(1).map(function(t,e,n){return e?n[e-1].slice(-2).concat(t.slice(1)):r[0].slice(1).concat(t.slice(1))}).map(function(t){return t.map(function(e,n){return t[t.length-n-2*(1-n%2)]})}).reverse())[0].slice(0,2))].concat(i.map(function(t){return["C"].concat(t.slice(2))})):d[0].map(function(t){return Array.isArray(t)?[].concat(t):t});return[p,(A=d[1],a=A.length-1,o=[],s=0,(c=(l=A.length)-1,u=A.map(function(t,e){return A.map(function(t,n){var r=e+n;return 0===n||A[r]&&"M"===A[r][0]?["M"].concat(A[r].slice(-2)):(r>=l&&(r-=c),A[r])})})).forEach(function(t,e){A.slice(1).forEach(function(t,n){s+=eV(A[(e+n)%a].slice(-2),p[n%a].slice(-2))}),o[e]=s,s=0}),u[o.indexOf(Math.min.apply(null,o))]),function(t){return t}]}function i1(t,e){return[t.points,e.points,function(t){return t}]}var i2=/\s*(\w+)\(([^)]*)\)/g;function i4(t){return function(e){var n=0;return t.map(function(t){return null===t?e[n++]:t})}}function i5(t){return t}var i3={matrix:["NNNNNN",[null,null,0,0,null,null,0,0,0,0,1,0,null,null,0,1],i5],matrix3d:["NNNNNNNNNNNNNNNN",i5],rotate:["A"],rotateX:["A"],rotateY:["A"],rotateZ:["A"],rotate3d:["NNNA"],perspective:["L"],scale:["Nn",i4([null,null,new r9(1)]),i5],scaleX:["N",i4([null,new r9(1),new r9(1)]),i4([null,new r9(1)])],scaleY:["N",i4([new r9(1),null,new r9(1)]),i4([new r9(1),null])],scaleZ:["N",i4([new r9(1),new r9(1),null])],scale3d:["NNN",i5],skew:["Aa",null,i5],skewX:["A",null,i4([null,it])],skewY:["A",null,i4([it,null])],translate:["Tt",i4([null,null,r7]),i5],translateX:["T",i4([null,r7,r7]),i4([null,r7])],translateY:["T",i4([r7,null,r7]),i4([r7,null])],translateZ:["L",i4([r7,r7,null])],translate3d:["TTL",i5]};function i6(t){for(var e=[],n=t.length,r=0;rMath.abs(t2(n5))))){var a,o,s,l,c,u,f,h,d,p,g=n4[3],y=n4[7],v=n4[11],b=n4[12],B=n4[13],w=n4[14],x=n4[15];if(0!==g||0!==y||0!==v){if(n3[0]=g,n3[1]=y,n3[2]=v,n3[3]=x,!t0(n5,n5))return;tZ(n5,n5),tV(i,n3,n5)}else i[0]=i[1]=i[2]=0,i[3]=1;if(e[0]=b,e[1]=B,e[2]=w,a=n6,o=n4,a[0][0]=o[0],a[0][1]=o[1],a[0][2]=o[2],a[1][0]=o[4],a[1][1]=o[5],a[1][2]=o[6],a[2][0]=o[8],a[2][1]=o[9],a[2][2]=o[10],n[0]=tU(n6[0]),tH(n6[0],n6[0]),r[0]=tj(n6[0],n6[1]),n9(n6[1],n6[1],n6[0],1,-r[0]),n[1]=tU(n6[1]),tH(n6[1],n6[1]),r[0]/=n[1],r[1]=tj(n6[0],n6[2]),n9(n6[2],n6[2],n6[0],1,-r[1]),r[2]=tj(n6[1],n6[2]),n9(n6[2],n6[2],n6[1],1,-r[2]),n[2]=tU(n6[2]),tH(n6[2],n6[2]),r[1]/=n[2],r[2]/=n[2],s=n6[1],l=n6[2],c=s[0],u=s[1],f=s[2],h=l[0],d=l[1],p=l[2],n8[0]=u*p-f*d,n8[1]=f*h-c*p,n8[2]=c*d-u*h,0>tj(n6[0],n8))for(var C=0;C<3;C++)n[C]*=-1,n6[C][0]*=-1,n6[C][1]*=-1,n6[C][2]*=-1;A[0]=.5*Math.sqrt(Math.max(1+n6[0][0]-n6[1][1]-n6[2][2],0)),A[1]=.5*Math.sqrt(Math.max(1-n6[0][0]+n6[1][1]-n6[2][2],0)),A[2]=.5*Math.sqrt(Math.max(1-n6[0][0]-n6[1][1]+n6[2][2],0)),A[3]=.5*Math.sqrt(Math.max(1+n6[0][0]+n6[1][1]+n6[2][2],0)),n6[2][1]>n6[1][2]&&(A[0]=-A[0]),n6[0][2]>n6[2][0]&&(A[1]=-A[1]),n6[1][0]>n6[0][1]&&(A[2]=-A[2])}}(0===t.length?[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]:t.map(i7).reduce(At),e,n,r,i,A),[[e,n,r,A,i]]}var An=function(){function t(t,e){for(var n=[[0,0,0,0],[0,0,0,0],[0,0,0,0],[0,0,0,0]],r=0;r<4;r++)for(var i=0;i<4;i++)for(var A=0;A<4;A++)n[r][i]+=e[r][A]*t[A][i];return n}return function(e,n,r,i,A){for(var a,o=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]],s=0;s<4;s++)o[s][3]=A[s];for(var l=0;l<3;l++)for(var c=0;c<3;c++)o[3][l]+=e[c]*o[c][l];var u=i[0],f=i[1],h=i[2],d=i[3],p=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]];p[0][0]=1-2*(f*f+h*h),p[0][1]=2*(u*f-h*d),p[0][2]=2*(u*h+f*d),p[1][0]=2*(u*f+h*d),p[1][1]=1-2*(u*u+h*h),p[1][2]=2*(f*h-u*d),p[2][0]=2*(u*h-f*d),p[2][1]=2*(f*h+u*d),p[2][2]=1-2*(u*u+f*f),o=t(o,p);var g=[[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]];r[2]&&(g[2][1]=r[2],o=t(o,g)),r[1]&&(g[2][1]=0,g[2][0]=r[0],o=t(o,g)),r[0]&&(g[2][0]=0,g[1][0]=r[0],o=t(o,g));for(var y=0;y<3;y++)for(var v=0;v<3;v++)o[y][v]*=n[y];return 0===(a=o)[0][2]&&0===a[0][3]&&0===a[1][2]&&0===a[1][3]&&0===a[2][0]&&0===a[2][1]&&1===a[2][2]&&0===a[2][3]&&0===a[3][2]&&1===a[3][3]?[o[0][0],o[0][1],o[1][0],o[1][1],o[3][0],o[3][1]]:o[0].concat(o[1],o[2],o[3])}}();function Ar(t){return t.toFixed(6).replace(".000000","")}function Ai(t,e){var n,r;return(t.decompositionPair!==e&&(t.decompositionPair=e,n=Ae(t)),e.decompositionPair!==t&&(e.decompositionPair=t,r=Ae(e)),null===n[0]||null===r[0])?[[!1],[!0],function(n){return n?e[0].d:t[0].d}]:(n[0].push(0),r[0].push(1),[n,r,function(t){var e=function(t,e,n){var r=function(t,e){for(var n=0,r=0;r4&&void 0!==arguments[4]?arguments[4]:0,A="",a=t.value||0,o=e.value||0,s=r8(t.unit),l=t.convertTo(s),c=e.convertTo(s);return l&&c?(a=l.value,o=c.value,A=r0(t.unit)):(r9.isLength(t.unit)||r9.isLength(e.unit))&&(a=iS(t,i,n),o=iS(e,i,n),A="px"),[a,o,function(t){return r&&(t=Math.max(t,0)),t+A}]}(f[x],h[x],n,!1,x);b[x]=C[0],B[x]=C[1],w.push(C[2])}A.push(b),a.push(B),o.push([g,w])}if(r){var O=A;A=a,a=O}return[A,a,function(t){return t.map(function(t,e){var n=t.map(function(t,n){return o[e][1][n](t)}).join(",");return"matrix"===o[e][0]&&16===n.split(",").length&&(o[e][0]="matrix3d"),"matrix3d"===o[e][0]&&6===n.split(",").length&&(o[e][0]="matrix"),"".concat(o[e][0],"(").concat(n,")")}).join(" ")}]}var As=rK(function(t){if(eX(t)){if("text-anchor"===t)return[is(0,"px"),is(0,"px")];var e=t.split(" ");return(1===e.length&&("top"===e[0]||"bottom"===e[0]?(e[1]=e[0],e[0]="center"):e[1]="center"),2!==e.length)?null:[ik(Al(e[0])),ik(Al(e[1]))]}return[is(t[0]||0,"px"),is(t[1]||0,"px")]});function Al(t){return"center"===t?"50%":"left"===t||"top"===t?"0%":"right"===t||"bottom"===t?"100%":t}var Ac=[{n:"display",k:["none"]},{n:"opacity",int:!0,inh:!0,d:"1",syntax:ru.OPACITY_VALUE},{n:"fillOpacity",int:!0,inh:!0,d:"1",syntax:ru.OPACITY_VALUE},{n:"strokeOpacity",int:!0,inh:!0,d:"1",syntax:ru.OPACITY_VALUE},{n:"fill",int:!0,k:["none"],d:"none",syntax:ru.PAINT},{n:"fillRule",k:["nonzero","evenodd"],d:"nonzero"},{n:"stroke",int:!0,k:["none"],d:"none",syntax:ru.PAINT,l:!0},{n:"shadowType",k:["inner","outer","both"],d:"outer",l:!0},{n:"shadowColor",int:!0,syntax:ru.COLOR},{n:"shadowOffsetX",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"shadowOffsetY",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"shadowBlur",int:!0,l:!0,d:"0",syntax:ru.SHADOW_BLUR},{n:"lineWidth",int:!0,inh:!0,d:"1",l:!0,a:["strokeWidth"],syntax:ru.LENGTH_PERCENTAGE},{n:"increasedLineWidthForHitTesting",inh:!0,d:"0",l:!0,syntax:ru.LENGTH_PERCENTAGE},{n:"lineJoin",inh:!0,l:!0,a:["strokeLinejoin"],k:["miter","bevel","round"],d:"miter"},{n:"lineCap",inh:!0,l:!0,a:["strokeLinecap"],k:["butt","round","square"],d:"butt"},{n:"lineDash",int:!0,inh:!0,k:["none"],a:["strokeDasharray"],syntax:ru.LENGTH_PERCENTAGE_12},{n:"lineDashOffset",int:!0,inh:!0,d:"0",a:["strokeDashoffset"],syntax:ru.LENGTH_PERCENTAGE},{n:"offsetPath",syntax:ru.DEFINED_PATH},{n:"offsetDistance",int:!0,syntax:ru.OFFSET_DISTANCE},{n:"dx",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"dy",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"zIndex",ind:!0,int:!0,d:"0",k:["auto"],syntax:ru.Z_INDEX},{n:"visibility",k:["visible","hidden"],ind:!0,inh:!0,int:!0,d:"visible"},{n:"pointerEvents",inh:!0,k:["none","auto","stroke","fill","painted","visible","visiblestroke","visiblefill","visiblepainted","all"],d:"auto"},{n:"filter",ind:!0,l:!0,k:["none"],d:"none",syntax:ru.FILTER},{n:"clipPath",syntax:ru.DEFINED_PATH},{n:"textPath",syntax:ru.DEFINED_PATH},{n:"textPathSide",k:["left","right"],d:"left"},{n:"textPathStartOffset",l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"transform",p:100,int:!0,k:["none"],d:"none",syntax:ru.TRANSFORM},{n:"transformOrigin",p:100,d:"0 0",l:!0,syntax:ru.TRANSFORM_ORIGIN},{n:"cx",int:!0,l:!0,d:"0",syntax:ru.COORDINATE},{n:"cy",int:!0,l:!0,d:"0",syntax:ru.COORDINATE},{n:"cz",int:!0,l:!0,d:"0",syntax:ru.COORDINATE},{n:"r",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"rx",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"ry",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"x",int:!0,l:!0,d:"0",syntax:ru.COORDINATE},{n:"y",int:!0,l:!0,d:"0",syntax:ru.COORDINATE},{n:"z",int:!0,l:!0,d:"0",syntax:ru.COORDINATE},{n:"width",int:!0,l:!0,k:["auto","fit-content","min-content","max-content"],d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"height",int:!0,l:!0,k:["auto","fit-content","min-content","max-content"],d:"0",syntax:ru.LENGTH_PERCENTAGE},{n:"radius",int:!0,l:!0,d:"0",syntax:ru.LENGTH_PERCENTAGE_14},{n:"x1",int:!0,l:!0,syntax:ru.COORDINATE},{n:"y1",int:!0,l:!0,syntax:ru.COORDINATE},{n:"z1",int:!0,l:!0,syntax:ru.COORDINATE},{n:"x2",int:!0,l:!0,syntax:ru.COORDINATE},{n:"y2",int:!0,l:!0,syntax:ru.COORDINATE},{n:"z2",int:!0,l:!0,syntax:ru.COORDINATE},{n:"d",int:!0,l:!0,d:"",syntax:ru.PATH,p:50},{n:"points",int:!0,l:!0,syntax:ru.LIST_OF_POINTS,p:50},{n:"text",l:!0,d:"",syntax:ru.TEXT,p:50},{n:"textTransform",l:!0,inh:!0,k:["capitalize","uppercase","lowercase","none"],d:"none",syntax:ru.TEXT_TRANSFORM,p:51},{n:"font",l:!0},{n:"fontSize",int:!0,inh:!0,d:"16px",l:!0,syntax:ru.LENGTH_PERCENTAGE},{n:"fontFamily",l:!0,inh:!0,d:"sans-serif"},{n:"fontStyle",l:!0,inh:!0,k:["normal","italic","oblique"],d:"normal"},{n:"fontWeight",l:!0,inh:!0,k:["normal","bold","bolder","lighter"],d:"normal"},{n:"fontVariant",l:!0,inh:!0,k:["normal","small-caps"],d:"normal"},{n:"lineHeight",l:!0,syntax:ru.LENGTH,int:!0,d:"0"},{n:"letterSpacing",l:!0,syntax:ru.LENGTH,int:!0,d:"0"},{n:"miterLimit",l:!0,syntax:ru.NUMBER,d:function(t){return t===nP.PATH||t===nP.POLYGON||t===nP.POLYLINE?"4":"10"}},{n:"wordWrap",l:!0},{n:"wordWrapWidth",l:!0},{n:"maxLines",l:!0},{n:"textOverflow",l:!0,d:"clip"},{n:"leading",l:!0},{n:"textBaseline",l:!0,inh:!0,k:["top","hanging","middle","alphabetic","ideographic","bottom"],d:"alphabetic"},{n:"textAlign",l:!0,inh:!0,k:["start","center","middle","end","left","right"],d:"start"},{n:"markerStart",syntax:ru.MARKER},{n:"markerEnd",syntax:ru.MARKER},{n:"markerMid",syntax:ru.MARKER},{n:"markerStartOffset",syntax:ru.LENGTH,l:!0,int:!0,d:"0"},{n:"markerEndOffset",syntax:ru.LENGTH,l:!0,int:!0,d:"0"}],Au=new Set(Ac.filter(function(t){return!!t.l}).map(function(t){return t.n})),Af={},Ah=(0,tw.A)(function t(e){var n=this;(0,tB.A)(this,t),this.runtime=e,Ac.forEach(function(t){n.registerMetadata(t)})},[{key:"registerMetadata",value:function(t){[t.n].concat((0,tx.A)(t.a||[])).forEach(function(e){Af[e]=t})}},{key:"getPropertySyntax",value:function(t){return this.runtime.CSSPropertySyntaxFactory[t]}},{key:"processProperties",value:function(t,e){var n,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{skipUpdateAttribute:!1,skipParse:!1,forceUpdateGeometry:!1,usedAttributes:[],memoize:!0};Object.assign(t.attributes,e);var i=t.parsedStyle.clipPath,A=t.parsedStyle.offsetPath,a=t,o=e,s=Ad(a);for(var l in o)s.has(l)&&(a.parsedStyle[l]=o[l]);var c=!!r.forceUpdateGeometry;if(!c){for(var u in e)if(Au.has(u)){c=!0;break}}var f=Ad(t);f.has("fill")&&e.fill&&(t.parsedStyle.fill=iB(e.fill)),f.has("stroke")&&e.stroke&&(t.parsedStyle.stroke=iB(e.stroke)),f.has("shadowColor")&&e.shadowColor&&(t.parsedStyle.shadowColor=iB(e.shadowColor)),f.has("filter")&&e.filter&&(t.parsedStyle.filter=function(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";if("none"===(e=e.toLowerCase().trim()))return[];for(var n=/\s*([\w-]+)\(([^)]*)\)/g,r=[],i=0;(t=n.exec(e))&&t.index===i;)if(i=t.index+t[0].length,iI.indexOf(t[1])>-1&&r.push({name:t[1],params:t[2].split(" ").map(function(t){return ix(/deg|rad|grad|turn|px|%/g,t)||iB(t)})}),n.lastIndex===e.length)return r;return[]}(e.filter)),f.has("radius")&&!eW(e.radius)&&(t.parsedStyle.radius=iU(e.radius,4)),f.has("lineDash")&&!eW(e.lineDash)&&(t.parsedStyle.lineDash=iU(e.lineDash,"even")),f.has("points")&&e.points&&(t.parsedStyle.points={points:eX(n=e.points)?n.split(" ").map(function(t){var e=t.split(","),n=(0,tE.A)(e,2),r=n[0],i=n[1];return[Number(r),Number(i)]}):n,totalLength:0,segments:[]}),f.has("d")&&""===e.d&&(t.parsedStyle.d=(0,tb.A)({},rc)),f.has("d")&&e.d&&(t.parsedStyle.d=iZ(e.d)),f.has("textTransform")&&e.textTransform&&this.runtime.CSSPropertySyntaxFactory[ru.TEXT_TRANSFORM].calculator(null,null,{value:e.textTransform},t,null),f.has("clipPath")&&!nh(e.clipPath)&&this.runtime.CSSPropertySyntaxFactory[ru.DEFINED_PATH].calculator("clipPath",i,e.clipPath,t,this.runtime),f.has("offsetPath")&&e.offsetPath&&this.runtime.CSSPropertySyntaxFactory[ru.DEFINED_PATH].calculator("offsetPath",A,e.offsetPath,t,this.runtime),f.has("transform")&&e.transform&&(t.parsedStyle.transform=i8(e.transform)),f.has("transformOrigin")&&e.transformOrigin&&(t.parsedStyle.transformOrigin=As(e.transformOrigin)),f.has("markerStart")&&e.markerStart&&(t.parsedStyle.markerStart=this.runtime.CSSPropertySyntaxFactory[ru.MARKER].calculator(null,e.markerStart,e.markerStart,null,null)),f.has("markerEnd")&&e.markerEnd&&(t.parsedStyle.markerEnd=this.runtime.CSSPropertySyntaxFactory[ru.MARKER].calculator(null,e.markerEnd,e.markerEnd,null,null)),f.has("markerMid")&&e.markerMid&&(t.parsedStyle.markerMid=this.runtime.CSSPropertySyntaxFactory[ru.MARKER].calculator("",e.markerMid,e.markerMid,null,null)),f.has("zIndex")&&!eW(e.zIndex)&&this.runtime.CSSPropertySyntaxFactory[ru.Z_INDEX].postProcessor(t),f.has("offsetDistance")&&!eW(e.offsetDistance)&&this.runtime.CSSPropertySyntaxFactory[ru.OFFSET_DISTANCE].postProcessor(t),f.has("transform")&&e.transform&&this.runtime.CSSPropertySyntaxFactory[ru.TRANSFORM].postProcessor(t),f.has("transformOrigin")&&e.transformOrigin&&this.runtime.CSSPropertySyntaxFactory[ru.TRANSFORM_ORIGIN].postProcessor(t),c&&(t.dirty(!0,!0),r.forceUpdateGeometry||this.runtime.sceneGraphService.dirtyToRoot(t))}},{key:"updateGeometry",value:function(t){var e=t.nodeName,n=this.runtime.geometryUpdaterFactory[e];if(n){var r=t.geometry;r.contentBounds||(r.contentBounds=new nD),r.renderBounds||(r.renderBounds=new nD);var i=t.parsedStyle,A=n.update(i,t),a=A.cx,o=A.cy,s=A.cz,l=A.hwidth,c=void 0===l?0:l,u=A.hheight,f=void 0===u?0:u,h=A.hdepth,d=[Math.abs(c),Math.abs(f),void 0===h?0:h],p=i.stroke,g=i.lineWidth,y=i.increasedLineWidthForHitTesting,v=i.shadowType,b=void 0===v?"outer":v,B=i.shadowColor,w=i.filter,x=i.transformOrigin,C=[void 0===a?0:a,void 0===o?0:o,void 0===s?0:s];r.contentBounds.update(C,d);var O=e===nP.POLYLINE||e===nP.POLYGON||e===nP.PATH?Math.SQRT2:.5;if(p&&!p.isNone){var E=(((void 0===g?1:g)||0)+((void 0===y?0:y)||0))*O;d[0]+=E,d[1]+=E}if(r.renderBounds.update(C,d),B&&b&&"inner"!==b){var k=r.renderBounds,F=k.min,Q=k.max,M=i.shadowBlur,U=i.shadowOffsetX,S=i.shadowOffsetY,I=M||0,T=U||0,L=S||0,_=F[0]-I+T,P=Q[0]+I+T,H=F[1]-I+L,j=Q[1]+I+L;F[0]=Math.min(F[0],_),Q[0]=Math.max(Q[0],P),F[1]=Math.min(F[1],H),Q[1]=Math.max(Q[1],j),r.renderBounds.setMinMax(F,Q)}(void 0===w?[]:w).forEach(function(t){var e=t.name,n=t.params;if("blur"===e){var i=n[0].value;r.renderBounds.update(r.renderBounds.center,tL(r.renderBounds.halfExtents,r.renderBounds.halfExtents,[i,i,0]))}else if("drop-shadow"===e){var A=n[0].value,a=n[1].value,o=n[2].value,s=r.renderBounds,l=s.min,c=s.max,u=l[0]-o+A,f=c[0]+o+A,h=l[1]-o+a,d=c[1]+o+a;l[0]=Math.min(l[0],u),c[0]=Math.max(c[0],f),l[1]=Math.min(l[1],h),c[1]=Math.max(c[1],d),r.renderBounds.setMinMax(l,c)}}),t.geometry.dirty=!1;var N=f<0,D=(c<0?-1:1)*(x?iS(x[0],0,t,!0):0),R=(N?-1:1)*(x?iS(x[1],1,t,!0):0);(D||R)&&t.setOrigin(D,R)}}},{key:"updateSizeAttenuation",value:function(t,e){t.style.isSizeAttenuation?(t.style.rawLineWidth||(t.style.rawLineWidth=t.style.lineWidth),t.style.lineWidth=(t.style.rawLineWidth||1)/e,t.nodeName===nP.CIRCLE&&(t.style.rawR||(t.style.rawR=t.style.r),t.style.r=(t.style.rawR||1)/e)):(t.style.rawLineWidth&&(t.style.lineWidth=t.style.rawLineWidth,delete t.style.rawLineWidth),t.nodeName===nP.CIRCLE&&t.style.rawR&&(t.style.r=t.style.rawR,delete t.style.rawR))}}]);function Ad(t){return t.constructor.PARSED_STYLE_LIST}var Ap=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=iP},[{key:"calculator",value:function(t,e,n,r){return iM(n)}}]),Ag=(0,tw.A)(function t(){(0,tB.A)(this,t)},[{key:"calculator",value:function(t,e,n,r,i){return n instanceof r3&&(n=null),i.sceneGraphService.updateDisplayObjectDependency(t,e,n,r),"clipPath"===t&&r.forEach(function(t){0===t.childNodes.length&&i.sceneGraphService.dirtyToRoot(t)}),n}}]),Ay=(0,tw.A)(function t(){(0,tB.A)(this,t),this.parser=iB,this.mixer=iw},[{key:"calculator",value:function(t,e,n,r){return n instanceof r3?"none"===n.value?iA:ia:n}}]),Av=(0,tw.A)(function t(){(0,tB.A)(this,t)},[{key:"calculator",value:function(t,e,n){return n instanceof r3?[]:n}}]);function Am(t){var e=t.parsedStyle.fontSize;return eW(e)?null:e}var Ab=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=iP},[{key:"calculator",value:function(t,e,n,r,i){if(eG(n))return n;if(!r9.isRelativeUnit(n.unit))return n.value;if(n.unit===rz.kPercentage)return 0;if(n.unit===rz.kEms){if(r.parentNode){var A,a=Am(r.parentNode);if(a)return a*n.value}return 0}if(n.unit===rz.kRems){if(null!=r&&null!=(A=r.ownerDocument)&&A.documentElement){var o=Am(r.ownerDocument.documentElement);if(o)return o*n.value}return 0}}}]),AB=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=ij},[{key:"calculator",value:function(t,e,n){return n.map(function(t){return t.value})}}]),Aw=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=ij},[{key:"calculator",value:function(t,e,n){return n.map(function(t){return t.value})}}]),Ax=(0,tw.A)(function t(){(0,tB.A)(this,t)},[{key:"calculator",value:function(t,e,n,r){n instanceof r3&&(n=null);var i,A=null==(i=n)?void 0:i.cloneNode(!0);return A&&(A.style.isMarker=!0),A}}]),AC=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=iP},[{key:"calculator",value:function(t,e,n){return n.value}}]),AO=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=iH(0,1)},[{key:"calculator",value:function(t,e,n){return n.value}},{key:"postProcessor",value:function(t){var e=t.parsedStyle,n=e.offsetPath,r=e.offsetDistance;if(n){var i=n.nodeName;if(i===nP.LINE||i===nP.PATH||i===nP.POLYLINE){var A=n.getPoint(r);A&&t.setLocalPosition(A.x,A.y)}}}}]),AE=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=iH(0,1)},[{key:"calculator",value:function(t,e,n){return n.value}}]),Ak=(0,tw.A)(function t(){(0,tB.A)(this,t),this.parser=iZ,this.mixer=i0},[{key:"calculator",value:function(t,e,n){return n instanceof r3&&"unset"===n.value?{absolutePath:[],hasArc:!1,segments:[],polygons:[],polylines:[],curve:null,totalLength:0,rect:new nV(0,0,0,0)}:n}}]),AF=(0,tw.A)(function t(){(0,tB.A)(this,t),this.mixer=i1}),AQ=function(t){function e(){var t;(0,tB.A)(this,e);for(var n=arguments.length,r=Array(n),i=0;itypeof window&&void 0!==window.document;function AT(t,e){var n=Number(t.parsedStyle.zIndex||0),r=Number(e.parsedStyle.zIndex||0);if(n===r){var i=t.parentNode;if(i){var A=i.childNodes||[];return A.indexOf(t)-A.indexOf(e)}}return n-r}function AL(t){var e,n=t;do{if(null==(e=n.parsedStyle)?void 0:e.clipPath)return n;n=n.parentElement}while(null!==n);return null}function A_(t,e){if(AI)return document.defaultView.getComputedStyle(t,null).getPropertyValue(e)}var AP={touchstart:"pointerdown",touchend:"pointerup",touchendoutside:"pointerupoutside",touchmove:"pointermove",touchcancel:"pointercancel"},AH="object"==typeof performance&&performance.now?performance:Date;function Aj(t){return t.nodeName===nP.FRAGMENT||t.getRootNode().nodeName===nP.FRAGMENT}function AN(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"auto",e=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0,r=!1,i=!1,A=!!e&&!e.isNone,a=!!n&&!n.isNone;return"visiblepainted"===t||"painted"===t||"auto"===t?(r=A,i=a):"visiblefill"===t||"fill"===t?r=!0:"visiblestroke"===t||"stroke"===t?i=!0:("visible"===t||"all"===t)&&(r=!0,i=!0),[r,i]}var AD=1,AR="object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:{},AK=Date.now(),Az={},AG=Date.now(),AV=function(t){if("function"!=typeof t)throw TypeError("".concat(t," is not a function"));var e=Date.now(),n=e-AG,r=AD++;return Az[r]=t,Object.keys(Az).length>1||setTimeout(function(){AG=e;var t=Az;Az={},Object.keys(t).forEach(function(e){return t[e](AR.performance&&"function"==typeof AR.performance.now?AR.performance.now():Date.now()-AK)})},n>16?0:16-n),r},AW=function(t){return"string"!=typeof t?AV:""===t?AR.requestAnimationFrame:AR["".concat(t,"RequestAnimationFrame")]},AX=function(t,e){for(var n=0;void 0!==t[n];){if(e(t[n]))return t[n];n+=1}}(["","webkit","moz","ms","o"],function(t){return!!AW(t)}),AY=AW(AX),A$="string"!=typeof AX?function(t){delete Az[t]}:""===AX?AR.cancelAnimationFrame:AR["".concat(AX,"CancelAnimationFrame")]||AR["".concat(AX,"CancelRequestAnimationFrame")];AR.requestAnimationFrame=AY,AR.cancelAnimationFrame=A$;var Aq=(0,tw.A)(function t(){(0,tB.A)(this,t),this.callbacks=[]},[{key:"getCallbacksNum",value:function(){return this.callbacks.length}},{key:"tapPromise",value:function(t,e){this.callbacks.push(e)}},{key:"promise",value:function(){for(var t=arguments.length,e=Array(t),n=0;n=0;l--){var c=s[l].trim();!A2.test(c)&&0>A1.indexOf(c)&&(c='"'.concat(c,'"')),s[l]=c}return"".concat(i," ").concat(A," ").concat(a," ").concat(o," ").concat(s.join(","))},function(t){var e=A4(t),n=e.fontSize,r=e.fontFamily,i=e.fontStyle,A=e.fontVariant,a=e.fontWeight;return"".concat(i,"_").concat(A,"_").concat(a,"_").concat(n,"_").concat(r)}),A3=function(t){return Math.max(t,1e-6)};function A6(t,e,n){return tJ(t),t[4]=Math.tan(e),t[1]=Math.tan(n),t}var A8=tW(),A9=tW(),A7={scale:function(t){ee(A8,[t[0].value,t[1].value,1].map(function(t){return A3(t)}))},scaleX:function(t){ee(A8,[t[0].value,1,1].map(function(t){return A3(t)}))},scaleY:function(t){ee(A8,[1,t[0].value,1].map(function(t){return A3(t)}))},scaleZ:function(t){ee(A8,[1,1,t[0].value].map(function(t){return A3(t)}))},scale3d:function(t){ee(A8,[t[0].value,t[1].value,t[2].value].map(function(t){return A3(t)}))},translate:function(t){et(A8,[t[0].value,t[1].value,0])},translateX:function(t){et(A8,[t[0].value,0,0])},translateY:function(t){et(A8,[0,t[0].value,0])},translateZ:function(t){et(A8,[0,0,t[0].value])},translate3d:function(t){et(A8,[t[0].value,t[1].value,t[2].value])},rotate:function(t){eA(A8,iM(t[0])*nJ)},rotateX:function(t){er(A8,iM(t[0])*nJ)},rotateY:function(t){ei(A8,iM(t[0])*nJ)},rotateZ:function(t){eA(A8,iM(t[0])*nJ)},rotate3d:function(t){en(A8,iM(t[3])*nJ,[t[0].value,t[1].value,t[2].value])},skew:function(t){A6(A8,t[0].value*nJ,t[1].value*nJ)},skewX:function(t){A6(A8,t[0].value*nJ,0)},skewY:function(t){A6(A8,0,t[0].value*nJ)},matrix:function(t){tq(A8,t[0].value,t[1].value,0,0,t[2].value,t[3].value,0,0,0,0,1,0,t[4].value,t[5].value,0,1)},matrix3d:function(t){tq.apply(q,[A8].concat((0,tx.A)(t.map(function(t){return t.value}))))}},at=tS(1,1,1),ae=tQ(),an={translate:function(t,e){a4.sceneGraphService.setLocalScale(t,at,!1),a4.sceneGraphService.setLocalEulerAngles(t,ae,void 0,void 0,!1),a4.sceneGraphService.setLocalPosition(t,[e[0].value,e[1].value,0],!1),a4.sceneGraphService.dirtyLocalTransform(t,t.transformable)}};function ar(t,e){if(t.length){if(1===t.length&&an[t[0].t])return void an[t[0].t](e,t[0].d);for(var n=tJ(A9),r=0;r1&&void 0!==arguments[1]&&arguments[1],i=arguments.length>2?arguments[2]:void 0;if(i)return this.dispatchEventToSelf(t),!0;if(e=this.document?this:this.defaultView?this.defaultView:null==(n=this.ownerDocument)?void 0:n.defaultView){if(t.manager=e.getEventService(),!t.manager)return!1;t.defaultPrevented=!1,t.path?t.path.length=0:t.page=[],r||(t.target=this),t.manager.dispatchEvent(t,t.type,r)}else this.dispatchEventToSelf(t);return!t.defaultPrevented}}]),aw=function(t){function e(){var t;(0,tB.A)(this,e);for(var n=arguments.length,r=Array(n),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return this.parentNode?this.parentNode.getRootNode(t):t.composed&&this.host?this.host.getRootNode(t):this}},{key:"hasChildNodes",value:function(){return this.childNodes.length>0}},{key:"isDefaultNamespace",value:function(t){throw Error(nW)}},{key:"lookupNamespaceURI",value:function(t){throw Error(nW)}},{key:"lookupPrefix",value:function(t){throw Error(nW)}},{key:"normalize",value:function(){throw Error(nW)}},{key:"isEqualNode",value:function(t){return this===t}},{key:"isSameNode",value:function(t){return this.isEqualNode(t)}},{key:"parent",get:function(){return this.parentNode}},{key:"parentElement",get:function(){return null}},{key:"nextSibling",get:function(){return null}},{key:"previousSibling",get:function(){return null}},{key:"firstChild",get:function(){return this.childNodes.length>0?this.childNodes[0]:null}},{key:"lastChild",get:function(){return this.childNodes.length>0?this.childNodes[this.childNodes.length-1]:null}},{key:"compareDocumentPosition",value:function(t){if(t===this)return 0;for(var n,r=t,i=this,A=[r],a=[i];null!=(n=r.parentNode)?n:i.parentNode;)r=r.parentNode?(A.push(r.parentNode),r.parentNode):r,i=i.parentNode?(a.push(i.parentNode),i.parentNode):i;if(r!==i)return e.DOCUMENT_POSITION_DISCONNECTED|e.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC|e.DOCUMENT_POSITION_PRECEDING;var o=A.length>a.length?A:a,s=o===A?a:A;if(o[o.length-s.length]===s[0])return o===A?e.DOCUMENT_POSITION_CONTAINED_BY|e.DOCUMENT_POSITION_FOLLOWING:e.DOCUMENT_POSITION_CONTAINS|e.DOCUMENT_POSITION_PRECEDING;for(var l=o.length-s.length,c=s.length-1;c>=0;c--){var u=s[c],f=o[l+c];if(f!==u){var h=u.parentNode.childNodes;if(h.indexOf(u)0&&e;)e=e.parentNode,t--;return e}},{key:"forEach",value:function(t){for(var e=[this];e.length>0;){var n=e.pop();if(!1===t(n))break;for(var r=n.childNodes.length-1;r>=0;r--)e.push(n.childNodes[r])}}}],[{key:"isNode",value:function(t){return!!t.childNodes}}])}(aB);aw.DOCUMENT_POSITION_DISCONNECTED=1,aw.DOCUMENT_POSITION_PRECEDING=2,aw.DOCUMENT_POSITION_FOLLOWING=4,aw.DOCUMENT_POSITION_CONTAINS=8,aw.DOCUMENT_POSITION_CONTAINED_BY=16,aw.DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC=32;var ax=(0,tw.A)(function t(e,n){var r=this;(0,tB.A)(this,t),this.nativeHTMLMap=new WeakMap,this.cursor="default",this.mappingTable={},this.mappingState={trackingData:{}},this.eventPool=new Map,this.tmpMatrix=tW(),this.tmpVec3=tQ(),this.onPointerDown=function(t){var e=r.createPointerEvent(t);if(r.dispatchEvent(e,"pointerdown"),"touch"===e.pointerType)r.dispatchEvent(e,"touchstart");else if("mouse"===e.pointerType||"pen"===e.pointerType){var n=2===e.button;r.dispatchEvent(e,n?"rightdown":"mousedown")}r.trackingData(t.pointerId).pressTargetsByButton[t.button]=e.composedPath(),r.freeEvent(e)},this.onPointerUp=function(t){var e=AH.now(),n=r.createPointerEvent(t,void 0,void 0,r.context.config.alwaysTriggerPointerEventOnCanvas?r.rootTarget:void 0);if(r.dispatchEvent(n,"pointerup"),"touch"===n.pointerType)r.dispatchEvent(n,"touchend");else if("mouse"===n.pointerType||"pen"===n.pointerType){var i=2===n.button;r.dispatchEvent(n,i?"rightup":"mouseup")}var A=r.trackingData(t.pointerId),a=r.findMountedTarget(A.pressTargetsByButton[t.button]),o=a;if(a&&!n.composedPath().includes(a)){for(var s=a;s&&!n.composedPath().includes(s);){if(n.currentTarget=s,r.notifyTarget(n,"pointerupoutside"),"touch"===n.pointerType)r.notifyTarget(n,"touchendoutside");else if("mouse"===n.pointerType||"pen"===n.pointerType){var l=2===n.button;r.notifyTarget(n,l?"rightupoutside":"mouseupoutside")}aw.isNode(s)&&(s=s.parentNode)}delete A.pressTargetsByButton[t.button],o=s}if(o){var c,u=r.clonePointerEvent(n,"click");u.target=o,u.path=[],A.clicksByButton[t.button]||(A.clicksByButton[t.button]={clickCount:0,target:u.target,timeStamp:e});var f=r.context.renderingContext.root.ownerDocument.defaultView,h=A.clicksByButton[t.button];h.target===u.target&&e-h.timeStamp=1;r--)if(t.currentTarget=n[r],this.notifyTarget(t,e),t.propagationStopped||t.propagationImmediatelyStopped)return;if(t.eventPhase=t.AT_TARGET,t.currentTarget=t.target,this.notifyTarget(t,e),!t.propagationStopped&&!t.propagationImmediatelyStopped){var i=n.indexOf(t.currentTarget);t.eventPhase=t.BUBBLING_PHASE;for(var A=i+1;Ai||n>A?null:!a&&this.pickHandler(t)||this.rootTarget||null}},{key:"isNativeEventFromCanvas",value:function(t,e){var n,r=null==e?void 0:e.target;if(null!=(n=r)&&n.shadowRoot&&(r=e.composedPath()[0]),r){if(r===t)return!0;if(t&&t.contains)return t.contains(r)}return null!=e&&!!e.composedPath&&e.composedPath().indexOf(t)>-1}},{key:"getExistedHTML",value:function(t){if(t.nativeEvent.composedPath)for(var e=0,n=t.nativeEvent.composedPath();e=0;n--){var r=t[n];if(r===this.rootTarget||aw.isNode(r)&&r.parentNode===e)e=t[n];else break}return e}},{key:"getCursor",value:function(t){for(var e=t;e;){var n=!!e.getAttribute&&e.getAttribute("cursor");if(n)return n;e=aw.isNode(e)&&e.parentNode}}}]),aC=(0,tw.A)(function t(){(0,tB.A)(this,t)},[{key:"getOrCreateCanvas",value:function(t,e){if(this.canvas)return this.canvas;if(t||a4.offscreenCanvas)this.canvas=t||a4.offscreenCanvas,this.context=this.canvas.getContext("2d",(0,tb.A)({willReadFrequently:!0},e));else try{this.canvas=new window.OffscreenCanvas(0,0),this.context=this.canvas.getContext("2d",(0,tb.A)({willReadFrequently:!0},e)),this.context&&this.context.measureText||(this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d"))}catch(t){this.canvas=document.createElement("canvas"),this.context=this.canvas.getContext("2d",(0,tb.A)({willReadFrequently:!0},e))}return this.canvas.width=10,this.canvas.height=10,this.canvas}},{key:"getOrCreateContext",value:function(t,e){return this.context||this.getOrCreateCanvas(t,e),this.context}}],[{key:"createCanvas",value:function(){try{return new window.OffscreenCanvas(0,0)}catch(t){}try{return document.createElement("canvas")}catch(t){}return null}}]),aO=((Eo={})[Eo.CAMERA_CHANGED=0]="CAMERA_CHANGED",Eo[Eo.DISPLAY_OBJECT_CHANGED=1]="DISPLAY_OBJECT_CHANGED",Eo[Eo.NONE=2]="NONE",Eo),aE=(0,tw.A)(function t(e,n){(0,tB.A)(this,t),this.inited=!1,this.stats={total:0,rendered:0},this.zIndexCounter=0,this.hooks={init:new AZ,initAsync:new Aq,dirtycheck:new A0,cull:new A0,beginFrame:new AZ,beforeRender:new AZ,render:new AZ,afterRender:new AZ,endFrame:new AZ,destroy:new AZ,pick:new AJ,pickSync:new A0,pointerDown:new AZ,pointerUp:new AZ,pointerMove:new AZ,pointerOut:new AZ,pointerOver:new AZ,pointerWheel:new AZ,pointerCancel:new AZ,click:new AZ},this.globalRuntime=e,this.context=n},[{key:"init",value:function(t){var e=this,n=(0,tb.A)((0,tb.A)({},this.globalRuntime),this.context);this.context.renderingPlugins.forEach(function(t){t.apply(n,e.globalRuntime)}),this.hooks.init.call(),0===this.hooks.initAsync.getCallbacksNum()?(this.inited=!0,t()):this.hooks.initAsync.promise().then(function(){e.inited=!0,t()}).catch(function(t){})}},{key:"getStats",value:function(){return this.stats}},{key:"disableDirtyRectangleRendering",value:function(){return!this.context.config.renderer.getConfig().enableDirtyRectangleRendering||this.context.renderingContext.renderReasons.has(aO.CAMERA_CHANGED)}},{key:"render",value:function(t,e,n){var r=this,i=t.getConfig(),A=this.context.renderingContext;if(this.stats.total=0,this.stats.rendered=0,this.zIndexCounter=0,this.globalRuntime.sceneGraphService.syncHierarchy(A.root),this.globalRuntime.sceneGraphService.notifyMutationObservers(t),A.renderReasons.size&&this.inited){A.dirtyRectangleRenderingDisabled=this.disableDirtyRectangleRendering();var a=1===A.renderReasons.size&&A.renderReasons.has(aO.CAMERA_CHANGED),o=!i.disableRenderHooks||!a;o&&this.renderDisplayObject(A.root,i,A),this.hooks.beginFrame.call(e),o&&A.renderListCurrentFrame.forEach(function(t){r.hooks.beforeRender.call(t),r.hooks.render.call(t),r.hooks.afterRender.call(t)}),this.hooks.endFrame.call(e),A.renderListCurrentFrame=[],A.renderReasons.clear(),n()}}},{key:"renderDisplayObject",value:function(t,e,n){for(var r=this,i=e.renderer.getConfig(),A=i.enableDirtyCheck,a=i.enableCulling,o=[t];o.length>0;){var s,l=o.pop();!function(t){var e=t.renderable,i=t.sortable,o=A?e.dirty||n.dirtyRectangleRenderingDisabled?t:null:t,s=null;o&&(s=a?r.hooks.cull.call(o,r.context.camera):o)&&(r.stats.rendered+=1,n.renderListCurrentFrame.push(s)),t.dirty(!1),i.renderOrder=r.zIndexCounter,r.zIndexCounter+=1,r.stats.total+=1,i.dirty&&(r.sort(t,i),i.dirty=!1,i.dirtyChildren=[],i.dirtyReason=void 0)}(l);for(var c=(null==(s=l.sortable)||null==(s=s.sorted)?void 0:s.length)>0?l.sortable.sorted:l.childNodes,u=c.length-1;u>=0;u--)o.push(c[u])}}},{key:"sort",value:function(t,e){var n,r;(null==e||null==(n=e.sorted)?void 0:n.length)>0&&e.dirtyReason!==rA.Z_INDEX_CHANGED?e.dirtyChildren.forEach(function(n){var r=e.sorted.indexOf(n);if(r>-1&&e.sorted.splice(r,1),t.childNodes.indexOf(n)>-1)if(0===e.sorted.length)e.sorted.push(n);else{var i=function(t,e){for(var n=0,r=t.length;n>>1;0>AT(t[i],e)?n=i+1:r=i}return n}(e.sorted,n);e.sorted.splice(i,0,n)}}):e.sorted=t.childNodes.slice().sort(AT),(null==(r=e.sorted)?void 0:r.length)>0&&0===t.childNodes.filter(function(t){return t.parsedStyle.zIndex}).length&&(e.sorted=[])}},{key:"destroy",value:function(){this.inited=!1,this.hooks.destroy.call()}},{key:"dirty",value:function(){this.context.renderingContext.renderReasons.add(aO.DISPLAY_OBJECT_CHANGED)}}]),ak=/\[\s*(.*)=(.*)\s*\]/,aF=(0,tw.A)(function t(){(0,tB.A)(this,t)},[{key:"selectOne",value:function(t,e){var n=this;if(t.startsWith("."))return e.find(function(e){return((null==e?void 0:e.classList)||[]).indexOf(n.getIdOrClassname(t))>-1});if(t.startsWith("#"))return e.find(function(e){return e.id===n.getIdOrClassname(t)});if(t.startsWith("[")){var r=this.getAttribute(t),i=r.name,A=r.value;return i?e.find(function(t){return e!==t&&("name"===i?t.name===A:n.attributeToString(t,i)===A)}):null}return e.find(function(n){return e!==n&&n.nodeName===t})}},{key:"selectAll",value:function(t,e){var n=this;if(t.startsWith("."))return e.findAll(function(r){return e!==r&&((null==r?void 0:r.classList)||[]).indexOf(n.getIdOrClassname(t))>-1});if(t.startsWith("#"))return e.findAll(function(r){return e!==r&&r.id===n.getIdOrClassname(t)});if(t.startsWith("[")){var r=this.getAttribute(t),i=r.name,A=r.value;return i?e.findAll(function(t){return e!==t&&("name"===i?t.name===A:n.attributeToString(t,i)===A)}):[]}return e.findAll(function(n){return e!==n&&n.nodeName===t})}},{key:"is",value:function(t,e){if(t.startsWith("."))return e.className===this.getIdOrClassname(t);if(t.startsWith("#"))return e.id===this.getIdOrClassname(t);if(t.startsWith("[")){var n=this.getAttribute(t),r=n.name,i=n.value;return"name"===r?e.name===i:this.attributeToString(e,r)===i}return e.nodeName===t}},{key:"getIdOrClassname",value:function(t){return t.substring(1)}},{key:"getAttribute",value:function(t){var e=t.match(ak),n="",r="";return e&&e.length>2&&(n=e[1].replace(/"/g,""),r=e[2].replace(/"/g,"")),{name:n,value:r}}},{key:"attributeToString",value:function(t,e){if(!t.getAttribute)return"";var n=t.getAttribute(e);return eW(n)?"":n.toString?n.toString():""}}]),aQ=((Es={}).ATTR_MODIFIED="DOMAttrModified",Es.INSERTED="DOMNodeInserted",Es.MOUNTED="DOMNodeInsertedIntoDocument",Es.REMOVED="removed",Es.UNMOUNTED="DOMNodeRemovedFromDocument",Es.REPARENT="reparent",Es.DESTROY="destroy",Es.BOUNDS_CHANGED="bounds-changed",Es.CULLED="culled",Es),aM=function(t){function e(t,n,r,i,A,a,o,s){var l;return(0,tB.A)(this,e),(l=(0,tC.A)(this,e,[null])).relatedNode=n,l.prevValue=r,l.newValue=i,l.attrName=A,l.attrChange=a,l.prevParsedValue=o,l.newParsedValue=s,l.type=t,l}return(0,tO.A)(e,t),(0,tw.A)(e)}(ag);aM.ADDITION=2,aM.MODIFICATION=1,aM.REMOVAL=3;var aU=new aM(aQ.REPARENT,null,"","","",0,"",""),aS=ez(),aI=tQ(),aT=tS(1,1,1),aL=tW(),a_=ez(),aP=tQ(),aH=tW(),aj=e_(),aN=tQ(),aD=e_(),aR=tQ(),aK=tQ(),az=tQ(),aG=tW(),aV=e_(),aW=e_(),aX=e_(),aY=(0,tw.A)(function t(e){(0,tB.A)(this,t),this.displayObjectDependencyMap=new WeakMap,this.runtime=e},[{key:"matches",value:function(t,e){return this.runtime.sceneGraphSelector.is(t,e)}},{key:"querySelector",value:function(t,e){return this.runtime.sceneGraphSelector.selectOne(t,e)}},{key:"querySelectorAll",value:function(t,e){return this.runtime.sceneGraphSelector.selectAll(t,e)}},{key:"attach",value:function(t,e,n){var r=!1;t.parentNode&&(r=t.parentNode!==e,this.detach(t));var i=t.nodeName===nP.FRAGMENT,A=Aj(e);t.parentNode=e;var a=i?t.childNodes:[t];eG(n)?a.forEach(function(t){e.childNodes.splice(n,0,t),t.parentNode=e}):a.forEach(function(t){e.childNodes.push(t),t.parentNode=e});var o=e.sortable;if((null!=o&&null!=(l=o.sorted)&&l.length||o.dirty||t.parsedStyle.zIndex)&&(-1===o.dirtyChildren.indexOf(t)&&o.dirtyChildren.push(t),o.dirty=!0,o.dirtyReason=rA.ADDED),!A){if(i)this.dirtyFragment(t);else{var s=t.transformable;s&&this.dirtyWorldTransform(t,s)}if(r){var l,c,u=(null==(c=e.ownerDocument)||null==(c=c.defaultView)||null==(c=c.getConfig())||null==(c=c.future)?void 0:c.experimentalCancelEventPropagation)===!0;t.dispatchEvent(aU,u,u)}}}},{key:"detach",value:function(t){if(t.parentNode){var e,n,r=t.transformable,i=t.parentNode.sortable;(null!=i&&null!=(e=i.sorted)&&e.length||null!=(n=t.style)&&n.zIndex)&&(-1===i.dirtyChildren.indexOf(t)&&i.dirtyChildren.push(t),i.dirty=!0,i.dirtyReason=rA.REMOVED);var A=t.parentNode.childNodes.indexOf(t);A>-1&&t.parentNode.childNodes.splice(A,1),r&&this.dirtyWorldTransform(t,r),t.parentNode=null}}},{key:"getLocalPosition",value:function(t){return t.transformable.localPosition}},{key:"getLocalRotation",value:function(t){return t.transformable.localRotation}},{key:"getLocalScale",value:function(t){return t.transformable.localScale}},{key:"getLocalSkew",value:function(t){return t.transformable.localSkew}},{key:"getLocalTransform",value:function(t){var e=t.transformable;return rl(e),e.localTransform}},{key:"setLocalPosition",value:function(t,e){var n,r=!(arguments.length>2)||void 0===arguments[2]||arguments[2],i=t.transformable;aK[0]=e[0],aK[1]=e[1],aK[2]=null!=(n=e[2])?n:0,!tR(i.localPosition,aK)&&(tI(i.localPosition,aK),r&&this.dirtyLocalTransform(t,i))}},{key:"translateLocal",value:function(t,e){var n,r,i,A,a,o,s,l,c,u,f,h,d,p=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,g=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;"number"==typeof e&&(e=tS(e,p,g));var y=t.transformable;tR(e,aI)||(n=e,r=e,A=(i=y.localRotation)[0],a=i[1],o=i[2],s=i[3],l=r[0],c=r[1],f=a*(u=r[2])-o*c,h=o*l-A*u,d=A*c-a*l,f+=f,h+=h,d+=d,n[0]=l+s*f+a*d-o*h,n[1]=c+s*h+o*f-A*d,n[2]=u+s*d+A*h-a*f,tL(y.localPosition,y.localPosition,e),this.dirtyLocalTransform(t,y))}},{key:"setLocalRotation",value:function(t,e,n,r,i){var A=!(arguments.length>5)||void 0===arguments[5]||arguments[5];"number"==typeof e&&(e=eR(aj,e,n,r,i));var a=t.transformable;eD(a.localRotation,e),A&&this.dirtyLocalTransform(t,a)}},{key:"rotateLocal",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;"number"==typeof e&&(e=tS(e,n,r));var i=t.transformable;eN(aW,e[0],e[1],e[2]),eH(i.localRotation,i.localRotation,aW),this.dirtyLocalTransform(t,i)}},{key:"setLocalScale",value:function(t,e){var n,r=!(arguments.length>2)||void 0===arguments[2]||arguments[2],i=t.transformable;tT(aP,e[0],e[1],null!=(n=e[2])?n:i.localScale[2]),!tR(aP,i.localScale)&&(tI(i.localScale,aP),r&&this.dirtyLocalTransform(t,i))}},{key:"scaleLocal",value:function(t,e){var n,r,i,A,a=t.transformable;n=a.localScale,r=a.localScale,i=tT(aP,e[0],e[1],null!=(A=e[2])?A:1),n[0]=r[0]*i[0],n[1]=r[1]*i[1],n[2]=r[2]*i[2],this.dirtyLocalTransform(t,a)}},{key:"setLocalSkew",value:function(t,e,n){var r,i,A,a=!(arguments.length>3)||void 0===arguments[3]||arguments[3];"number"==typeof e&&(r=e,a_[0]=r,a_[1]=n,e=a_);var o=t.transformable;i=o.localSkew,A=e,i[0]=A[0],i[1]=A[1],a&&this.dirtyLocalTransform(t,o)}},{key:"setLocalEulerAngles",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,i=!(arguments.length>4)||void 0===arguments[4]||arguments[4];"number"==typeof e&&(e=tS(e,n,r));var A=t.transformable;eN(A.localRotation,e[0],e[1],e[2]),i&&this.dirtyLocalTransform(t,A)}},{key:"setLocalTransform",value:function(t,e){var n=es(aN,e),r=ec(aD,e),i=el(aR,e);this.setLocalScale(t,i,!1),this.setLocalPosition(t,n,!1),this.setLocalRotation(t,r,void 0,void 0,void 0,!1),this.dirtyLocalTransform(t,t.transformable)}},{key:"resetLocalTransform",value:function(t){this.setLocalScale(t,aT,!1),this.setLocalPosition(t,aI,!1),this.setLocalEulerAngles(t,aI,void 0,void 0,!1),this.setLocalSkew(t,aS,void 0,!1),this.dirtyLocalTransform(t,t.transformable)}},{key:"getPosition",value:function(t){var e=t.transformable;return es(e.position,this.getWorldTransform(t,e))}},{key:"getRotation",value:function(t){var e=t.transformable;return ec(e.rotation,this.getWorldTransform(t,e))}},{key:"getScale",value:function(t){var e=t.transformable;return el(e.scaling,this.getWorldTransform(t,e))}},{key:"getOrigin",value:function(t){return t.getGeometryBounds(),t.transformable.origin}},{key:"getWorldTransform",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:t.transformable;return(e.localDirtyFlag||e.dirtyFlag)&&(t.parentNode&&t.parentNode.transformable&&this.getWorldTransform(t.parentNode),this.internalUpdateTransform(t)),e.worldTransform}},{key:"setPosition",value:function(t,e){var n,r=t.transformable;az[0]=e[0],az[1]=e[1],az[2]=null!=(n=e[2])?n:0,tR(this.getPosition(t),az)||(tI(r.position,az),null!==t.parentNode&&t.parentNode.transformable?(tY(aG,t.parentNode.transformable.worldTransform),t0(aG,aG),tD(r.localPosition,az,aG)):tI(r.localPosition,az),this.dirtyLocalTransform(t,r))}},{key:"translate",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;"number"==typeof e&&(e=tT(aP,e,n,r)),tR(e,aI)||(tL(aP,this.getPosition(t),e),this.setPosition(t,aP))}},{key:"setRotation",value:function(t,e,n,r,i){var A=t.transformable;"number"==typeof e&&(e=tG(e,n,r,i)),null!==t.parentNode&&t.parentNode.transformable?(eD(aj,this.getRotation(t.parentNode)),ej(aj,aj),eH(A.localRotation,aj,e),eK(A.localRotation,A.localRotation),this.dirtyLocalTransform(t,A)):this.setLocalRotation(t,e)}},{key:"rotate",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;"number"==typeof e&&(e=tS(e,n,r));var i=t.transformable;if(null!==t.parentNode&&t.parentNode.transformable){eN(aj,e[0],e[1],e[2]);var A=this.getRotation(t);eD(aX,this.getRotation(t.parentNode)),ej(aX,aX),eH(aj,aX,aj),eH(i.localRotation,aj,A),eK(i.localRotation,i.localRotation),this.dirtyLocalTransform(t,i)}else this.rotateLocal(t,e)}},{key:"setOrigin",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;"number"==typeof e&&(e=[e,n,r]);var i=t.transformable;if(e[0]!==i.origin[0]||e[1]!==i.origin[1]||e[2]!==i.origin[2]){var A=i.origin;A[0]=e[0],A[1]=e[1],A[2]=e[2]||0,this.dirtyLocalTransform(t,i)}}},{key:"setEulerAngles",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0;"number"==typeof e&&(e=tS(e,n,r));var i=t.transformable;null!==t.parentNode&&t.parentNode.transformable?(eN(i.localRotation,e[0],e[1],e[2]),eD(aV,ej(aj,this.getRotation(t.parentNode))),eH(i.localRotation,i.localRotation,aV),this.dirtyLocalTransform(t,i)):this.setLocalEulerAngles(t,e)}},{key:"getGeometryBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.geometry;return n.dirty&&a4.styleValueRegistry.updateGeometry(t),(e?n.renderBounds:n.contentBounds||null)||new nD}},{key:"getTransformedGeometryBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2?arguments[2]:void 0,r=this.getGeometryBounds(t,e);if(!nD.isEmpty(r)){var i=n||new nD;return i.setFromTransformedAABB(r,this.getWorldTransform(t)),i}return null}},{key:"getBounds",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=t.renderable;if(!r.boundsDirty&&!n&&r.bounds)return r.bounds;if(!r.renderBoundsDirty&&n&&r.renderBounds)return r.renderBounds;var i=n?r.renderBounds:r.bounds,A=this.getTransformedGeometryBounds(t,n,i);if(t.childNodes.forEach(function(t){var r=e.getBounds(t,n);r&&(A?A.add(r):(A=i||new nD).update(r.center,r.halfExtents))}),A||(A=new nD),n){var a=AL(t);if(a){var o=a.parsedStyle.clipPath.getBounds(n);A?o&&(A=o.intersection(A)):A.update(o.center,o.halfExtents)}}return n?(r.renderBounds=A,r.renderBoundsDirty=!1):(r.bounds=A,r.boundsDirty=!1),A}},{key:"getLocalBounds",value:function(t){if(t.parentNode){var e=aL;t.parentNode.transformable&&(e=t0(aH,this.getWorldTransform(t.parentNode)));var n=this.getBounds(t);if(!nD.isEmpty(n)){var r=new nD;return r.setFromTransformedAABB(n,e),r}}return this.getBounds(t)}},{key:"getBoundingClientRect",value:function(t){var e,n,r=this.getGeometryBounds(t);nD.isEmpty(r)||(n=new nD).setFromTransformedAABB(r,this.getWorldTransform(t));var i=null==(e=t.ownerDocument)||null==(e=e.defaultView)?void 0:e.getContextService().getBoundingClientRect();if(n){var A=n.getMin(),a=(0,tE.A)(A,2),o=a[0],s=a[1],l=n.getMax(),c=(0,tE.A)(l,2),u=c[0],f=c[1];return new nV(o+((null==i?void 0:i.left)||0),s+((null==i?void 0:i.top)||0),u-o,f-s)}return new nV((null==i?void 0:i.left)||0,(null==i?void 0:i.top)||0,0,0)}},{key:"internalUpdateTransform",value:function(t){var e,n,r=null==(n=t.parentNode)?void 0:n.transformable;rl(t.transformable),e=t.transformable,e.dirtyFlag&&(r?t4(e.worldTransform,r.worldTransform,e.localTransform):tY(e.worldTransform,e.localTransform),e.dirtyFlag=!1)}},{key:"internalUpdateElement",value:function(t,e){var n=(null==(o=t.ownerDocument)||null==(o=o.defaultView)||null==(o=o.getConfig())||null==(o=o.future)?void 0:o.experimentalAttributeUpdateOptimization)===!0,r=e[e.length-1],i=(null==r?void 0:r.transformDirty)||(null==(s=t.transformable)?void 0:s.localDirtyFlag);t.transformable&&((u=t.transformable).dirtyFlag||(u.dirtyFlag=i)),this.internalUpdateTransform(t),i&&(null==(f=t.dirty)||f.call(t,!0,!0));var A=(null==(l=t.renderable)?void 0:l.boundsDirty)||(null==(c=t.renderable)?void 0:c.renderBoundsDirty);if((i||A)&&(null==r?void 0:r.shapeUpdated)===!1&&n)for(var a=e.length-1;a>=0;){var o,s,l,c,u,f,h,d,p=e[a];if(p.shapeUpdated)break;null==(h=(d=p.node).dirty)||h.call(d,!0,!0),p.shapeUpdated=!0,a-=1}return i}},{key:"syncHierarchy",value:function(t){for(var e,n,r=[t],i=t.parentNode?[{node:t.parentNode,transformDirty:(null==(e=t.parentNode.transformable)?void 0:e.localDirtyFlag)||(null==(n=t.parentNode.transformable)?void 0:n.dirtyFlag),shapeUpdated:!1}]:[];r.length>0;){for(var A=r.pop(),a=i[i.length-1];i.length>0&&A.parentNode!==a.node;)a=i.pop();var o=this.internalUpdateElement(A,i);if(A.childNodes.length>0){for(var s=A.childNodes.length-1;s>=0;s--)r.push(A.childNodes[s]);i.push({node:A,transformDirty:o,shapeUpdated:!1})}}}},{key:"dirtyLocalTransform",value:function(t,e){Aj(t)||!e.localDirtyFlag&&(e.localDirtyFlag=!0,e.dirtyFlag||this.dirtyWorldTransform(t,e))}},{key:"dirtyWorldTransform",value:function(t,e){this.dirtyWorldInternal(t,e),this.dirtyToRoot(t,!0)}},{key:"dirtyWorldInternal",value:function(t,e){var n,r=this,i=(null==(n=t.ownerDocument)||null==(n=n.defaultView)||null==(n=n.getConfig())||null==(n=n.future)?void 0:n.experimentalAttributeUpdateOptimization)===!0;!e.dirtyFlag&&(e.dirtyFlag=!0,t.dirty(!0,!0),i||t.childNodes.forEach(function(t){var e=t.transformable;r.dirtyWorldInternal(t,e)}))}},{key:"dirtyToRoot",value:function(t){for(var e,n,r,i=arguments.length>1&&void 0!==arguments[1]&&arguments[1],A=t,a=(null==(e=t.ownerDocument)||null==(e=e.defaultView)||null==(e=e.getConfig())||null==(e=e.future)?void 0:e.experimentalAttributeUpdateOptimization)===!0;A&&(null==(n=(r=A).dirty)||n.call(r,!0,!0),!a);)A=A.parentNode;i&&t.forEach(function(t){var e;null==(e=t.dirty)||e.call(t,!0,!0)}),this.informDependentDisplayObjects(t);var o=t.mutations||[],s=o.find(function(t){return"attributes"===t.type&&t._boundsChangeData});s?s._boundsChangeData={affectChildren:s._boundsChangeData.affectChildren||i}:(s={type:"attributes",target:t,_boundsChangeData:{affectChildren:i}},o.push(s)),t.mutations=o}},{key:"dirtyFragment",value:function(t){var e,n=t.transformable;n&&(n.dirtyFlag=!0,n.localDirtyFlag=!0),null==(e=t.dirty)||e.call(t,!0,!0);for(var r=t.childNodes.length,i=0;i0){var n=new ab(aQ.BOUNDS_CHANGED,{detail:Array.from(e)});t.dispatchEvent(n,!0,!0)}}},{key:"updateDisplayObjectDependency",value:function(t,e,n,r){if(e&&e!==n){var i=this.displayObjectDependencyMap.get(e);if(i&&i[t]){var A=i[t].indexOf(r);i[t].splice(A,1)}}if(n){var a=this.displayObjectDependencyMap.get(n);a||(this.displayObjectDependencyMap.set(n,{}),a=this.displayObjectDependencyMap.get(n)),a[t]||(a[t]=[]),a[t].push(r)}}},{key:"informDependentDisplayObjects",value:function(t){var e,n=this,r=this.displayObjectDependencyMap.get(t);if(r){var i=null==(e=t.ownerDocument)||null==(e=e.defaultView)||null==(e=e.getConfig())||null==(e=e.future)?void 0:e.experimentalCancelEventPropagation;Object.keys(r).forEach(function(t){r[t].forEach(function(e){n.dirtyToRoot(e,!0),e.dispatchEvent(new aM(aQ.ATTR_MODIFIED,e,n,n,t,aM.MODIFICATION,n,n),i,i),e.isCustomElement&&e.isConnected&&e.attributeChangedCallback&&e.attributeChangedCallback(t,n,n)})})}}}]),a$=(0,tw.A)(function t(e){if((0,tB.A)(this,t),e<=0)throw Error("LRU capacity must be a positive number.");this.capacity=e,this.cache=new Map},[{key:"get",value:function(t){if(this.cache.has(t)){var e=this.cache.get(t);return this.cache.delete(t),this.cache.set(t,e),e}}},{key:"put",value:function(t,e){if(this.cache.has(t)&&this.cache.delete(t),this.cache.set(t,e),this.cache.size>this.capacity){var n=this.cache.keys().next().value;this.cache.delete(n)}}},{key:"len",value:function(){return this.cache.size}},{key:"clear",value:function(){this.cache.clear()}}]),aq=[10,13],aJ=[9,32,8192,8193,8194,8195,8196,8197,8198,8200,8201,8202,8287,12288],aZ=/[a-zA-Z0-9\u00C0-\u00D6\u00D8-\u00f6\u00f8-\u00ff!"#$%&'()*+,-./:;]/,a0=new RegExp("".concat(/[!%),.:;?\]}¢°·'""†‡›℃∶、。〃〆〕〗〞﹚﹜!"%'),.:;?!]}~]/.source,"|").concat(/[!),.:;?\]}¢·–—'"•"、。〆〞〕〉》」︰︱︲︳﹐﹑﹒﹓﹔﹕﹖﹘﹚﹜!),.:;?︶︸︺︼︾﹀﹂﹗]|}、]/.source,"|").concat(/[)\]}〕〉》」』】〙〗〟'"⦆»ヽヾーァィゥェォッャュョヮヵヶぁぃぅぇぉっゃゅょゎゕゖㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ々〻‐゠–〜?!‼⁇⁈⁉・、:;,。.]/.source,"|").concat(/[!%),.:;?\]}¢°'"†‡℃〆〈《「『〕!%),.:;?]}]/.source)),a1=new RegExp("".concat(/[$(£¥·'"〈《「『【〔〖〝﹙﹛$(.[{£¥]/.source,"|").concat(/[([{£¥'"‵〈《「『〔〝︴﹙﹛({︵︷︹︻︽︿﹁﹃﹏]/.source,"|").concat(/[([{〔〈《「『【〘〖〝'"⦅«—...‥〳〴〵]/.source,"|").concat(/[$([{£¥'"々〇〉》」〔$([{⦆¥₩#]/.source)),a2=(0,tw.A)(function t(e){var n=this;(0,tB.A)(this,t),this.fontMetricsCache={},this.shouldBreakByKinsokuShorui=function(t,e){return!n.isBreakingSpace(e)&&!!(t&&(a1.exec(e)||a0.exec(t)))},this.trimByKinsokuShorui=function(t){var e=(0,tx.A)(t),n=e[e.length-2];if(!n)return t;var r=n[n.length-1];return e[e.length-2]=n.slice(0,-1),e[e.length-1]=r+e[e.length-1],e},this.runtime=e,this.charWidthCache=new a$(100)},[{key:"measureFont",value:function(t,e){if(this.fontMetricsCache[t])return this.fontMetricsCache[t];var n={ascent:0,descent:0,fontSize:0},r=this.runtime.offscreenCanvasCreator.getOrCreateCanvas(e),i=this.runtime.offscreenCanvasCreator.getOrCreateContext(e,{willReadFrequently:!0});i.font=t;var A="|\xc9q\xc5M",a=Math.ceil(i.measureText(A).width),o=Math.ceil(i.measureText("M").width),s=2*o;o=1.4*o|0,r.width=a,r.height=s,i.fillStyle="#f00",i.fillRect(0,0,a,s),i.font=t,i.textBaseline="alphabetic",i.fillStyle="#000",i.fillText(A,0,o);var l=i.getImageData(0,0,a||1,s||1).data,c=l.length,u=4*a,f=0,h=0,d=!1;for(f=0;fo;--f){for(var g=0;gr&&e>=n;)e-=1,t=t.slice(0,-1);return{lineTxt:t,txtLastCharIndex:e}}function O(t,e){if(!(x<=0)&&!(x>h)){if(!p[t]){p[t]=d;return}var n=C(p[t],e,v+1,h-x);p[t]=n.lineTxt+d}}for(var E=0;E=c){Eh){O(g,E-1),e.isOverflowing=!0;break}if(y>0&&y+M>h){var U=C(p[g],E-1,v+1,h);if(U.txtLastCharIndex!==E-1){if(p[g]=U.lineTxt,U.txtLastCharIndex===i.length-1)break;k=i[E=U.txtLastCharIndex+1],F=i[E-1],Q=i[E+1],M=w(k)}if(g+1>=c){O(g,E-1),e.isOverflowing=!0;break}if(v=E-1,y=0,p[g+=1]="",this.isBreakingSpace(k))continue;this.canBreakInLastChar(k)||(p=this.trimToBreakable(p),y=this.sumTextWidthByCache(p[g]||"",w)),this.shouldBreakByKinsokuShorui(k,Q)&&(p=this.trimByKinsokuShorui(p),y+=w(F||""))}y+=M,p[g]+=k}return p.join("\n")}},{key:"isBreakingSpace",value:function(t){return"string"==typeof t&&aJ.indexOf(t.charCodeAt(0))>=0}},{key:"isNewline",value:function(t){return"string"==typeof t&&aq.indexOf(t.charCodeAt(0))>=0}},{key:"trimToBreakable",value:function(t){var e=(0,tx.A)(t),n=e[e.length-2],r=this.findBreakableIndex(n);if(-1===r||!n)return e;var i=n.slice(r,r+1),A=this.isBreakingSpace(i);return e[e.length-1]+=n.slice(r+1,n.length),e[e.length-2]=n.slice(0,r+ +!A),e}},{key:"canBreakInLastChar",value:function(t){return!(t&&aZ.test(t))}},{key:"sumTextWidthByCache",value:function(t,e){return t.split("").reduce(function(t,n){return t+e(n)},0)}},{key:"findBreakableIndex",value:function(t){for(var e=t.length-1;e>=0;e--)if(!aZ.test(t[e]))return e;return -1}},{key:"getFromCache",value:function(t,e,n,r){var i=n.get(t);if("number"!=typeof i){var A=t.length*e;i=r.measureText(t).width+A,n.put(t,i)}return i}},{key:"clearCache",value:function(){this.fontMetricsCache={},this.charWidthCache.clear()}}]),a4={},a5=(Ec=new af,Eu=new au,El={},(0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)(El,nP.FRAGMENT,null),nP.CIRCLE,new ao),nP.ELLIPSE,new as),nP.RECT,Ec),nP.IMAGE,Ec),nP.GROUP,new ad),nP.LINE,new al),nP.TEXT,new ah(a4)),nP.POLYLINE,Eu),nP.POLYGON,Eu),(0,nm.A)((0,nm.A)((0,nm.A)(El,nP.PATH,new ac),nP.HTML,new ap),nP.MESH,null)),a3=(Eh=new Ay,Ed=new Ab,Ef={},(0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)(Ef,ru.PERCENTAGE,null),ru.NUMBER,new AC),ru.ANGLE,new Ap),ru.DEFINED_PATH,new Ag),ru.PAINT,Eh),ru.COLOR,Eh),ru.FILTER,new Av),ru.LENGTH,Ed),ru.LENGTH_PERCENTAGE,Ed),ru.LENGTH_PERCENTAGE_12,new AB),(0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)(Ef,ru.LENGTH_PERCENTAGE_14,new Aw),ru.COORDINATE,new Ab),ru.OFFSET_DISTANCE,new AO),ru.OPACITY_VALUE,new AE),ru.PATH,new Ak),ru.LIST_OF_POINTS,new AF),ru.SHADOW_BLUR,new AQ),ru.TEXT,new AM),ru.TEXT_TRANSFORM,new AU),ru.TRANSFORM,new ai),(0,nm.A)((0,nm.A)((0,nm.A)(Ef,ru.TRANSFORM_ORIGIN,new aA),ru.Z_INDEX,new aa),ru.MARKER,new Ax));a4.CameraContribution=rr,a4.AnimationTimeline=null,a4.EasingFunction=null,a4.offscreenCanvasCreator=new aC,a4.sceneGraphSelector=new aF,a4.sceneGraphService=new aY(a4),a4.textService=new a2(a4),a4.geometryUpdaterFactory=a5,a4.CSSPropertySyntaxFactory=a3,a4.styleValueRegistry=new Ah(a4),a4.layoutRegistry=null,a4.globalThis="u">typeof globalThis?globalThis:"u">typeof self?self:"u">typeof window?window:void 0!==n.g?n.g:{},a4.enableStyleSyntax=!0,a4.enableSizeAttenuation=!1;var a6=0,a8=new aM(aQ.INSERTED,null,"","","",0,"",""),a9=new aM(aQ.REMOVED,null,"","","",0,"",""),a7=new ab(aQ.DESTROY),ot=function(t){function e(){var t;(0,tB.A)(this,e);for(var n=arguments.length,r=Array(n),i=0;i0)||void 0===arguments[0]||arguments[0],e=arguments.length>1?arguments[1]:void 0;this.renderable.dirty=t,void 0!==e&&(this.renderable.boundsDirty=e,this.renderable.renderBoundsDirty=e,this.geometry.dirty=e)}},{key:"className",get:function(){return this.getAttribute("class")||""},set:function(t){this.setAttribute("class",t)}},{key:"classList",get:function(){return this.className.split(" ").filter(function(t){return""!==t})}},{key:"tagName",get:function(){return this.nodeName}},{key:"children",get:function(){return this.childNodes}},{key:"childElementCount",get:function(){return this.childNodes.length}},{key:"firstElementChild",get:function(){return this.firstChild}},{key:"lastElementChild",get:function(){return this.lastChild}},{key:"parentElement",get:function(){return this.parentNode}},{key:"nextSibling",get:function(){if(this.parentNode){var t=this.parentNode.childNodes.indexOf(this);return this.parentNode.childNodes[t+1]||null}return null}},{key:"previousSibling",get:function(){if(this.parentNode){var t=this.parentNode.childNodes.indexOf(this);return this.parentNode.childNodes[t-1]||null}return null}},{key:"cloneNode",value:function(t){throw Error(nW)}},{key:"appendChild",value:function(t,e){var n;if(t.destroyed)throw Error("Cannot append a destroyed element.");return a4.sceneGraphService.attach(t,this,e),null!=(n=this.ownerDocument)&&n.defaultView&&(Aj(this)||t.nodeName!==nP.FRAGMENT?this.ownerDocument.defaultView.mountChildren(t):this.ownerDocument.defaultView.mountFragment(t)),this.isMutationObserved&&(a8.relatedNode=this,t.dispatchEvent(a8)),t}},{key:"insertBefore",value:function(t,e){if(e){t.parentElement&&t.parentElement.removeChild(t);var n=this.childNodes.indexOf(e);-1===n?this.appendChild(t):this.appendChild(t,n)}else this.appendChild(t);return t}},{key:"replaceChild",value:function(t,e){var n=this.childNodes.indexOf(e);return this.removeChild(e),this.appendChild(t,n),e}},{key:"removeChild",value:function(t){var e,n,r=(null==(e=this.ownerDocument)||null==(e=e.defaultView)||null==(e=e.getConfig().future)?void 0:e.experimentalCancelEventPropagation)===!0;return a9.relatedNode=this,t.dispatchEvent(a9,r,r),null!=(n=t.ownerDocument)&&n.defaultView&&t.ownerDocument.defaultView.unmountChildren(t),a4.sceneGraphService.detach(t),t}},{key:"removeChildren",value:function(){for(var t=this.childNodes.length-1;t>=0;t--){var e=this.childNodes[t];this.removeChild(e)}}},{key:"destroyChildren",value:function(){for(var t=this.childNodes.length-1;t>=0;t--){var e=this.childNodes[t];e.childNodes.length>0&&e.destroyChildren(),e.destroy()}}},{key:"matches",value:function(t){return a4.sceneGraphService.matches(t,this)}},{key:"getElementById",value:function(t){return a4.sceneGraphService.querySelector("#".concat(t),this)}},{key:"getElementsByName",value:function(t){return a4.sceneGraphService.querySelectorAll('[name="'.concat(t,'"]'),this)}},{key:"getElementsByClassName",value:function(t){return a4.sceneGraphService.querySelectorAll(".".concat(t),this)}},{key:"getElementsByTagName",value:function(t){return a4.sceneGraphService.querySelectorAll(t,this)}},{key:"querySelector",value:function(t){return a4.sceneGraphService.querySelector(t,this)}},{key:"querySelectorAll",value:function(t){return a4.sceneGraphService.querySelectorAll(t,this)}},{key:"closest",value:function(t){var e=this;do{if(a4.sceneGraphService.matches(t,e))return e;e=e.parentElement}while(null!==e);return null}},{key:"find",value:function(t){var e=this,n=null;return this.forEach(function(r){return!(r!==e&&t(r))||(n=r,!1)}),n}},{key:"findAll",value:function(t){var e=this,n=[];return this.forEach(function(r){r!==e&&t(r)&&n.push(r)}),n}},{key:"after",value:function(){var t=this;if(this.parentNode){for(var e=this.parentNode.childNodes.indexOf(this),n=arguments.length,r=Array(n),i=0;i0&&void 0!==arguments[0]&&arguments[0];return a4.sceneGraphService.getGeometryBounds(this,t)}},{key:"getTransformedGeometryBounds",value:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return a4.sceneGraphService.getTransformedGeometryBounds(this,t)}},{key:"getBounds",value:function(){return a4.sceneGraphService.getBounds(this)}},{key:"getRenderBounds",value:function(){return a4.sceneGraphService.getBounds(this,!0)}},{key:"getLocalBounds",value:function(){return a4.sceneGraphService.getLocalBounds(this)}},{key:"getBoundingClientRect",value:function(){return a4.sceneGraphService.getBoundingClientRect(this)}},{key:"getClientRects",value:function(){return[this.getBoundingClientRect()]}},{key:"computedStyleMap",value:function(){return new Map(Object.entries(this.computedStyle))}},{key:"getAttributeNames",value:function(){return Object.keys(this.attributes)}},{key:"getAttribute",value:function(t){if("symbol"!=typeof t)return this.attributes[t]}},{key:"hasAttribute",value:function(t){return this.getAttributeNames().includes(t)}},{key:"hasAttributes",value:function(){return!!this.getAttributeNames().length}},{key:"removeAttribute",value:function(t){this.setAttribute(t,null),delete this.attributes[t]}},{key:"setAttribute",value:function(t,e){this.attributes[t]=e}},{key:"getAttributeNS",value:function(t,e){throw Error(nW)}},{key:"getAttributeNode",value:function(t){throw Error(nW)}},{key:"getAttributeNodeNS",value:function(t,e){throw Error(nW)}},{key:"hasAttributeNS",value:function(t,e){throw Error(nW)}},{key:"removeAttributeNS",value:function(t,e){throw Error(nW)}},{key:"removeAttributeNode",value:function(t){throw Error(nW)}},{key:"setAttributeNS",value:function(t,e,n){throw Error(nW)}},{key:"setAttributeNode",value:function(t){throw Error(nW)}},{key:"setAttributeNodeNS",value:function(t){throw Error(nW)}},{key:"toggleAttribute",value:function(t,e){throw Error(nW)}}])}(aw);function oe(t){return!!(null!=t&&t.nodeName)}var on=a4.globalThis.Proxy?a4.globalThis.Proxy:function(){},or=new aM(aQ.ATTR_MODIFIED,null,null,null,null,aM.MODIFICATION,null,null),oi=tQ(),oA=e_(),oa=function(t){function e(t){var n;return(0,tB.A)(this,e),(n=(0,tC.A)(this,e)).isCustomElement=!1,n.isMutationObserved=!1,n.activeAnimations=[],n.config=t,n.id=t.id||"",n.name=t.name||"",(t.className||t.class)&&(n.className=t.className||t.class),n.nodeName=t.type||nP.GROUP,t.initialParsedStyle&&Object.assign(n.parsedStyle,t.initialParsedStyle),n.initAttributes(t.style),a4.enableStyleSyntax&&(n.style=new on({setProperty:function(t,e){n.setAttribute(t,e)},getPropertyValue:function(t){return n.getAttribute(t)},removeProperty:function(t){n.removeAttribute(t)},item:function(){return""}},{get:function(t,e){return void 0!==t[e]?t[e]:n.getAttribute(e)},set:function(t,e,r){return n.setAttribute(e,r),!0}})),n}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"destroy",value:function(){nw(e,"destroy",this,3)([]),this.getAnimations().forEach(function(t){t.cancel()})}},{key:"cloneNode",value:function(t,e){var n=(0,tb.A)({},this.attributes);for(var r in n){var i=n[r];oe(i)&&"clipPath"!==r&&"offsetPath"!==r&&"textPath"!==r&&(n[r]=i.cloneNode(t)),e&&(n[r]=e(r,i))}var A=new this.constructor((0,tb.A)((0,tb.A)({},this.config),{},{style:n}));return A.setLocalTransform(this.getLocalTransform()),t&&this.children.forEach(function(e){if(!e.style.isMarker){var n=e.cloneNode(t);A.appendChild(n)}}),A}},{key:"initAttributes",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};a4.styleValueRegistry.processProperties(this,t,{forceUpdateGeometry:!0}),this.dirty()}},{key:"setAttribute",value:function(t,n){var r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],i=!(arguments.length>3)||void 0===arguments[3]||arguments[3];!nh(n)&&(r||n!==this.attributes[t])&&(this.internalSetAttribute(t,n,{memoize:i}),nw(e,"setAttribute",this,3)([t,n]))}},{key:"setAttributes",value:function(t){var e,n,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=r.skipDispatchAttrModifiedEvent,A=void 0!==i&&i;if(A||(e=(0,tb.A)({},this.attributes),n=(0,tb.A)({},this.parsedStyle)),a4.styleValueRegistry.processProperties(this,t,r),this.dirty(),!A)for(var a in t)this.dispatchAttrModifiedEvent(a,e[a],t[a],n[a])}},{key:"internalSetAttribute",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=this.attributes[t],i=this.parsedStyle[t];a4.styleValueRegistry.processProperties(this,(0,nm.A)({},t,e),n),this.dirty(),this.dispatchAttrModifiedEvent(t,r,e,i)}},{key:"dispatchAttrModifiedEvent",value:function(t,e,n,r){var i,A=this.parsedStyle[t];if(this.isConnected)if(or.relatedNode=this,or.prevValue=e,or.newValue=n,or.attrName=t,or.prevParsedValue=r,or.newParsedValue=A,this.isMutationObserved)this.dispatchEvent(or);else{var a,o=(null==(a=this.ownerDocument.defaultView.getConfig().future)?void 0:a.experimentalCancelEventPropagation)===!0;or.target=this,this.ownerDocument.defaultView.dispatchEvent(or,!0,o)}(this.isCustomElement&&this.isConnected||!this.isCustomElement)&&(null==(i=this.attributeChangedCallback)||i.call(this,t,e,n,r,A))}},{key:"getBBox",value:function(){var t=this.getBounds(),e=t.getMin(),n=(0,tE.A)(e,2),r=n[0],i=n[1],A=t.getMax(),a=(0,tE.A)(A,2);return new nV(r,i,a[0]-r,a[1]-i)}},{key:"setOrigin",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return a4.sceneGraphService.setOrigin(this,nq(t,e,n,!1)),this}},{key:"getOrigin",value:function(){return a4.sceneGraphService.getOrigin(this)}},{key:"setPosition",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return a4.sceneGraphService.setPosition(this,nq(t,e,n,!1)),this}},{key:"setLocalPosition",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return a4.sceneGraphService.setLocalPosition(this,nq(t,e,n,!1)),this}},{key:"translate",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return a4.sceneGraphService.translate(this,nq(t,e,n,!1)),this}},{key:"translateLocal",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return a4.sceneGraphService.translateLocal(this,nq(t,e,n,!1)),this}},{key:"getPosition",value:function(){return a4.sceneGraphService.getPosition(this)}},{key:"getLocalPosition",value:function(){return a4.sceneGraphService.getLocalPosition(this)}},{key:"scale",value:function(t,e,n){return this.scaleLocal(t,e,n)}},{key:"scaleLocal",value:function(t,e,n){return"number"==typeof t&&(e=e||t,n=n||t,t=nq(t,e,n,!1)),a4.sceneGraphService.scaleLocal(this,t),this}},{key:"setLocalScale",value:function(t,e,n){return"number"==typeof t&&(e=e||t,n=n||t,t=nq(t,e,n,!1)),a4.sceneGraphService.setLocalScale(this,t),this}},{key:"getLocalScale",value:function(){return a4.sceneGraphService.getLocalScale(this)}},{key:"getScale",value:function(){return a4.sceneGraphService.getScale(this)}},{key:"getEulerAngles",value:function(){var t=n1(oi,a4.sceneGraphService.getWorldTransform(this));return(0,tE.A)(t,3)[2]*nZ}},{key:"getLocalEulerAngles",value:function(){var t=n1(oi,a4.sceneGraphService.getLocalRotation(this));return(0,tE.A)(t,3)[2]*nZ}},{key:"setEulerAngles",value:function(t){return a4.sceneGraphService.setEulerAngles(this,0,0,t),this}},{key:"setLocalEulerAngles",value:function(t){return a4.sceneGraphService.setLocalEulerAngles(this,0,0,t),this}},{key:"rotateLocal",value:function(t,e,n){return eW(e)&&eW(n)?a4.sceneGraphService.rotateLocal(this,0,0,t):a4.sceneGraphService.rotateLocal(this,t,e,n),this}},{key:"rotate",value:function(t,e,n){return eW(e)&&eW(n)?a4.sceneGraphService.rotate(this,0,0,t):a4.sceneGraphService.rotate(this,t,e,n),this}},{key:"setRotation",value:function(t,e,n,r){return a4.sceneGraphService.setRotation(this,t,e,n,r),this}},{key:"setLocalRotation",value:function(t,e,n,r){return a4.sceneGraphService.setLocalRotation(this,t,e,n,r),this}},{key:"setLocalSkew",value:function(t,e){return a4.sceneGraphService.setLocalSkew(this,t,e),this}},{key:"getRotation",value:function(){return a4.sceneGraphService.getRotation(this)}},{key:"getLocalRotation",value:function(){return a4.sceneGraphService.getLocalRotation(this)}},{key:"getLocalSkew",value:function(){return a4.sceneGraphService.getLocalSkew(this)}},{key:"getLocalTransform",value:function(){return a4.sceneGraphService.getLocalTransform(this)}},{key:"getWorldTransform",value:function(){return a4.sceneGraphService.getWorldTransform(this)}},{key:"setLocalTransform",value:function(t){return a4.sceneGraphService.setLocalTransform(this,t),this}},{key:"resetLocalTransform",value:function(){a4.sceneGraphService.resetLocalTransform(this)}},{key:"getAnimations",value:function(){return this.activeAnimations}},{key:"animate",value:function(t,e){var n,r=null==(n=this.ownerDocument)?void 0:n.timeline;return r?r.play(this,t,e):null}},{key:"isVisible",value:function(){var t;return(null==(t=this.parsedStyle)?void 0:t.visibility)!=="hidden"}},{key:"interactive",get:function(){return this.isInteractive()},set:function(t){this.style.pointerEvents=t?"auto":"none"}},{key:"isInteractive",value:function(){var t;return(null==(t=this.parsedStyle)?void 0:t.pointerEvents)!=="none"}},{key:"isCulled",value:function(){return!!(this.cullable&&this.cullable.enable&&!this.cullable.visible)}},{key:"toFront",value:function(){return this.parentNode&&(this.style.zIndex=Math.max.apply(Math,(0,tx.A)(this.parentNode.children.map(function(t){return Number(t.style.zIndex)})))+1),this}},{key:"toBack",value:function(){return this.parentNode&&(this.style.zIndex=Math.min.apply(Math,(0,tx.A)(this.parentNode.children.map(function(t){return Number(t.style.zIndex)})))-1),this}},{key:"getConfig",value:function(){return this.config}},{key:"attr",value:function(){for(var t=this,e=arguments.length,n=Array(e),r=0;r1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return this.setPosition(t,e,n),this}},{key:"move",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return this.setPosition(t,e,n),this}},{key:"setZIndex",value:function(t){return this.style.zIndex=t,this}}])}(ot);oa.PARSED_STYLE_LIST=new Set(["class","className","clipPath","cursor","display","draggable","droppable","fill","fillOpacity","fillRule","filter","increasedLineWidthForHitTesting","lineCap","lineDash","lineDashOffset","lineJoin","lineWidth","miterLimit","hitArea","offsetDistance","offsetPath","offsetX","offsetY","opacity","pointerEvents","shadowColor","shadowType","shadowBlur","shadowOffsetX","shadowOffsetY","stroke","strokeOpacity","strokeWidth","strokeLinecap","strokeLineJoin","strokeDasharray","strokeDashoffset","transform","transformOrigin","textTransform","visibility","zIndex"]);var oo=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,tB.A)(this,e),(0,tC.A)(this,e,[(0,tb.A)({type:nP.CIRCLE},t)])}return(0,tO.A)(e,t),(0,tw.A)(e)}(oa);oo.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["cx","cy","cz","r","isBillboard","isSizeAttenuation"]));var os=["style"],ol=function(t){function e(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.style,i=(0,n_.A)(n,os);return(0,tB.A)(this,e),(t=(0,tC.A)(this,e,[(0,tb.A)({style:r},i)])).isCustomElement=!0,t}return(0,tO.A)(e,t),(0,tw.A)(e)}(oa);ol.PARSED_STYLE_LIST=new Set(["class","className","clipPath","cursor","draggable","droppable","opacity","pointerEvents","transform","transformOrigin","zIndex","visibility"]);var oc=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,tB.A)(this,e),(0,tC.A)(this,e,[(0,tb.A)({type:nP.ELLIPSE},t)])}return(0,tO.A)(e,t),(0,tw.A)(e)}(oa);oc.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["cx","cy","cz","rx","ry","isBillboard","isSizeAttenuation"])),function(t){function e(){return(0,tB.A)(this,e),(0,tC.A)(this,e,[{type:nP.FRAGMENT}])}return(0,tO.A)(e,t),(0,tw.A)(e)}(oa).PARSED_STYLE_LIST=new Set(["class","className"]);var ou=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,tB.A)(this,e),(0,tC.A)(this,e,[(0,tb.A)({type:nP.GROUP},t)])}return(0,tO.A)(e,t),(0,tw.A)(e)}(oa);ou.PARSED_STYLE_LIST=new Set(["class","className","clipPath","cursor","draggable","droppable","opacity","pointerEvents","transform","transformOrigin","zIndex","visibility"]);var of=["style"],oh=function(t){function e(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.style,i=(0,n_.A)(n,of);return(0,tB.A)(this,e),(t=(0,tC.A)(this,e,[(0,tb.A)({type:nP.HTML,style:r},i)])).cullable.enable=!1,t}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"getDomElement",value:function(){return this.parsedStyle.$el}},{key:"getClientRects",value:function(){return[this.getBoundingClientRect()]}},{key:"getLocalBounds",value:function(){if(this.parentNode){var t=t0(tW(),this.parentNode.getWorldTransform()),e=this.getBounds();if(!nD.isEmpty(e)){var n=new nD;return n.setFromTransformedAABB(e,t),n}}return this.getBounds()}}])}(oa);oh.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["x","y","$el","innerHTML","width","height"]));var od=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,tB.A)(this,e),(0,tC.A)(this,e,[(0,tb.A)({type:nP.IMAGE},t)])}return(0,tO.A)(e,t),(0,tw.A)(e)}(oa);od.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["x","y","z","src","width","height","isBillboard","billboardRotation","isSizeAttenuation","keepAspectRatio"]));var op=["style"],og=function(t){function e(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.style,i=(0,n_.A)(n,op);(0,tB.A)(this,e),(t=(0,tC.A)(this,e,[(0,tb.A)({type:nP.LINE,style:(0,tb.A)({x1:0,y1:0,x2:0,y2:0,z1:0,z2:0},r)},i)])).markerStartAngle=0,t.markerEndAngle=0;var A=t.parsedStyle,a=A.markerStart,o=A.markerEnd;return a&&oe(a)&&(t.markerStartAngle=a.getLocalEulerAngles(),t.appendChild(a)),o&&oe(o)&&(t.markerEndAngle=o.getLocalEulerAngles(),t.appendChild(o)),t.transformMarker(!0),t.transformMarker(!1),t}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"attributeChangedCallback",value:function(t,e,n,r,i){"x1"===t||"y1"===t||"x2"===t||"y2"===t||"markerStartOffset"===t||"markerEndOffset"===t?(this.transformMarker(!0),this.transformMarker(!1)):"markerStart"===t?(r&&oe(r)&&(this.markerStartAngle=0,r.remove()),i&&oe(i)&&(this.markerStartAngle=i.getLocalEulerAngles(),this.appendChild(i),this.transformMarker(!0))):"markerEnd"===t&&(r&&oe(r)&&(this.markerEndAngle=0,r.remove()),i&&oe(i)&&(this.markerEndAngle=i.getLocalEulerAngles(),this.appendChild(i),this.transformMarker(!1)))}},{key:"transformMarker",value:function(t){var e,n,r,i,A,a,o=this.parsedStyle,s=o.markerStart,l=o.markerEnd,c=o.markerStartOffset,u=o.markerEndOffset,f=o.x1,h=o.x2,d=o.y1,p=o.y2,g=t?s:l;if(g&&oe(g)){var y=0;t?(r=f,i=d,e=h-f,n=p-d,A=c||0,a=this.markerStartAngle):(r=h,i=p,e=f-h,n=d-p,A=u||0,a=this.markerEndAngle),y=Math.atan2(n,e),g.setLocalEulerAngles(180*y/Math.PI+a),g.setLocalPosition(r+Math.cos(y)*A,i+Math.sin(y)*A)}}},{key:"getPoint",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.parsedStyle,r=nk(n.x1,n.y1,n.x2,n.y2,t),i=r.x,A=r.y,a=tD(tQ(),tS(i,A,0),e?this.getWorldTransform():this.getLocalTransform());return new nG(a[0],a[1])}},{key:"getPointAtLength",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this.getPoint(t/this.getTotalLength(),e)}},{key:"getTotalLength",value:function(){var t=this.parsedStyle;return nC(t.x1,t.y1,t.x2,t.y2)}}])}(oa);og.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["x1","y1","x2","y2","z1","z2","isBillboard","isSizeAttenuation","markerStart","markerEnd","markerStartOffset","markerEndOffset"]));var oy=["style"],ov=function(t){function e(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.style,i=(0,n_.A)(n,oy);(0,tB.A)(this,e),(t=(0,tC.A)(this,e,[(0,tb.A)({type:nP.PATH,style:r,initialParsedStyle:{miterLimit:4,d:(0,tb.A)({},rc)}},i)])).markerStartAngle=0,t.markerEndAngle=0,t.markerMidList=[];var A=t.parsedStyle,a=A.markerStart,o=A.markerEnd,s=A.markerMid;return a&&oe(a)&&(t.markerStartAngle=a.getLocalEulerAngles(),t.appendChild(a)),s&&oe(s)&&t.placeMarkerMid(s),o&&oe(o)&&(t.markerEndAngle=o.getLocalEulerAngles(),t.appendChild(o)),t.transformMarker(!0),t.transformMarker(!1),t}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"attributeChangedCallback",value:function(t,e,n,r,i){"d"===t?(this.transformMarker(!0),this.transformMarker(!1),this.placeMarkerMid(this.parsedStyle.markerMid)):"markerStartOffset"===t||"markerEndOffset"===t?(this.transformMarker(!0),this.transformMarker(!1)):"markerStart"===t?(r&&oe(r)&&(this.markerStartAngle=0,r.remove()),i&&oe(i)&&(this.markerStartAngle=i.getLocalEulerAngles(),this.appendChild(i),this.transformMarker(!0))):"markerEnd"===t?(r&&oe(r)&&(this.markerEndAngle=0,r.remove()),i&&oe(i)&&(this.markerEndAngle=i.getLocalEulerAngles(),this.appendChild(i),this.transformMarker(!1))):"markerMid"===t&&this.placeMarkerMid(i)}},{key:"transformMarker",value:function(t){var e,n,r,i,A,a,o=this.parsedStyle,s=o.markerStart,l=o.markerEnd,c=o.markerStartOffset,u=o.markerEndOffset,f=t?s:l;if(f&&oe(f)){var h=0;if(t){var d=this.getStartTangent(),p=(0,tE.A)(d,2),g=p[0],y=p[1];r=y[0],i=y[1],e=g[0]-y[0],n=g[1]-y[1],A=c||0,a=this.markerStartAngle}else{var v=this.getEndTangent(),b=(0,tE.A)(v,2),B=b[0],w=b[1];r=w[0],i=w[1],e=B[0]-w[0],n=B[1]-w[1],A=u||0,a=this.markerEndAngle}h=Math.atan2(n,e),f.setLocalEulerAngles(180*h/Math.PI+a),f.setLocalPosition(r+Math.cos(h)*A,i+Math.sin(h)*A)}}},{key:"placeMarkerMid",value:function(t){var e=this.parsedStyle.d.segments;if(this.markerMidList.forEach(function(t){t.remove()}),t&&oe(t))for(var n=1;n1&&void 0!==arguments[1]&&arguments[1],n=ne(this.parsedStyle.d.absolutePath,t,(0,e$.Cl)((0,e$.Cl)({},void 0),{bbox:!1,length:!0})).point,r=n.x,i=n.y,A=tD(tQ(),tS(r,i,0),e?this.getWorldTransform():this.getLocalTransform());return new nG(A[0],A[1])}},{key:"getPoint",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return this.getPointAtLength(t*iN(this),e)}},{key:"getStartTangent",value:function(){var t=this.parsedStyle.d.segments,e=[];if(t.length>1){var n=t[0].currentPoint,r=t[1].currentPoint,i=t[1].startTangent;e=[],i?e.push([n[0]-i[0],n[1]-i[1]]):e.push([r[0],r[1]]),e.push([n[0],n[1]])}return e}},{key:"getEndTangent",value:function(){var t=this.parsedStyle.d.segments,e=t.length,n=[];if(e>1){var r=t[e-2].currentPoint,i=t[e-1].currentPoint,A=t[e-1].endTangent;n=[],A?n.push([i[0]-A[0],i[1]-A[1]]):n.push([r[0],r[1]]),n.push([i[0],i[1]])}return n}}])}(oa);ov.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["d","markerStart","markerMid","markerEnd","markerStartOffset","markerEndOffset","isBillboard","isSizeAttenuation"]));var om=["style"],ob=function(t){function e(){var t,n=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},r=n.style,i=(0,n_.A)(n,om);(0,tB.A)(this,e),(t=(0,tC.A)(this,e,[(0,tb.A)({type:nP.POLYGON,style:r,initialParsedStyle:{points:{points:[],totalLength:0,segments:[]},miterLimit:4,isClosed:!0}},i)])).markerStartAngle=0,t.markerEndAngle=0,t.markerMidList=[];var A=t.parsedStyle,a=A.markerStart,o=A.markerEnd,s=A.markerMid;return a&&oe(a)&&(t.markerStartAngle=a.getLocalEulerAngles(),t.appendChild(a)),s&&oe(s)&&t.placeMarkerMid(s),o&&oe(o)&&(t.markerEndAngle=o.getLocalEulerAngles(),t.appendChild(o)),t.transformMarker(!0),t.transformMarker(!1),t}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"attributeChangedCallback",value:function(t,e,n,r,i){"points"===t?(this.transformMarker(!0),this.transformMarker(!1),this.placeMarkerMid(this.parsedStyle.markerMid)):"markerStartOffset"===t||"markerEndOffset"===t?(this.transformMarker(!0),this.transformMarker(!1)):"markerStart"===t?(r&&oe(r)&&(this.markerStartAngle=0,r.remove()),i&&oe(i)&&(this.markerStartAngle=i.getLocalEulerAngles(),this.appendChild(i),this.transformMarker(!0))):"markerEnd"===t?(r&&oe(r)&&(this.markerEndAngle=0,r.remove()),i&&oe(i)&&(this.markerEndAngle=i.getLocalEulerAngles(),this.appendChild(i),this.transformMarker(!1))):"markerMid"===t&&this.placeMarkerMid(i)}},{key:"transformMarker",value:function(t){var e,n,r,i,A,a,o=this.parsedStyle,s=o.markerStart,l=o.markerEnd,c=o.markerStartOffset,u=o.markerEndOffset,f=(o.points||{}).points,h=t?s:l;if(h&&oe(h)&&f){var d=0;if(r=f[0][0],i=f[0][1],t)e=f[1][0]-f[0][0],n=f[1][1]-f[0][1],A=c||0,a=this.markerStartAngle;else{var p=f.length;this.parsedStyle.isClosed?(e=f[p-1][0]-f[0][0],n=f[p-1][1]-f[0][1]):(r=f[p-1][0],i=f[p-1][1],e=f[p-2][0]-f[p-1][0],n=f[p-2][1]-f[p-1][1]),A=u||0,a=this.markerEndAngle}d=Math.atan2(n,e),h.setLocalEulerAngles(180*d/Math.PI+a),h.setLocalPosition(r+Math.cos(d)*A,i+Math.sin(d)*A)}}},{key:"placeMarkerMid",value:function(t){var e=(this.parsedStyle.points||{}).points;if(this.markerMidList.forEach(function(t){t.remove()}),this.markerMidList=[],t&&oe(t)&&e)for(var n=1;n<(this.parsedStyle.isClosed?e.length:e.length-1);n++){var r=e[n][0],i=e[n][1],A=1===n?t:t.cloneNode(!0);this.markerMidList.push(A),this.appendChild(A),A.setLocalPosition(r,i)}}}])}(oa);ob.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["points","markerStart","markerMid","markerEnd","markerStartOffset","markerEndOffset","isClosed","isBillboard","isSizeAttenuation"]));var oB=["style"],ow=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.style,r=(0,n_.A)(t,oB);return(0,tB.A)(this,e),(0,tC.A)(this,e,[(0,tb.A)({type:nP.POLYLINE,style:n,initialParsedStyle:{points:{points:[],totalLength:0,segments:[]},miterLimit:4,isClosed:!1}},r)])}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"getTotalLength",value:function(){return 0===this.parsedStyle.points.totalLength&&(this.parsedStyle.points.totalLength=function(t){if(t.length<2)return 0;for(var e=0,n=0;n1&&void 0!==arguments[1]&&arguments[1];return this.getPoint(t/this.getTotalLength(),e)}},{key:"getPoint",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=this.parsedStyle.points.points;if(0===this.parsedStyle.points.segments.length){var r,i,A=[],a=0,o=this.getTotalLength();n.forEach(function(t,e){if(n[e+1]){var s,l;(r=[0,0])[0]=a/o,s=t[0],l=t[1],i=nC(s,l,n[e+1][0],n[e+1][1]),a+=i,r[1]=a/o,A.push(r)}}),this.parsedStyle.points.segments=A}var s=0,l=0;this.parsedStyle.points.segments.forEach(function(e,n){t>=e[0]&&t<=e[1]&&(s=(t-e[0])/(e[1]-e[0]),l=n)});var c=nk(n[l][0],n[l][1],n[l+1][0],n[l+1][1],s),u=c.x,f=c.y,h=tD(tQ(),tS(u,f,0),e?this.getWorldTransform():this.getLocalTransform());return new nG(h[0],h[1])}},{key:"getStartTangent",value:function(){var t=this.parsedStyle.points.points,e=[];return e.push([t[1][0],t[1][1]]),e.push([t[0][0],t[0][1]]),e}},{key:"getEndTangent",value:function(){var t=this.parsedStyle.points.points,e=t.length-1,n=[];return n.push([t[e-1][0],t[e-1][1]]),n.push([t[e][0],t[e][1]]),n}}])}(ob);ow.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(ob.PARSED_STYLE_LIST),["points","markerStart","markerMid","markerEnd","markerStartOffset","markerEndOffset","isBillboard"]));var ox=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return(0,tB.A)(this,e),(0,tC.A)(this,e,[(0,tb.A)({type:nP.RECT},t)])}return(0,tO.A)(e,t),(0,tw.A)(e)}(oa);ox.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["x","y","z","width","height","isBillboard","isSizeAttenuation","radius"]));var oC=["style"],oO=function(t){function e(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.style,r=(0,n_.A)(t,oC);return(0,tB.A)(this,e),(0,tC.A)(this,e,[(0,tb.A)({type:nP.TEXT,style:(0,tb.A)({fill:"black"},n)},r)])}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"getComputedTextLength",value:function(){var t;return this.getGeometryBounds(),(null==(t=this.parsedStyle.metrics)?void 0:t.maxLineWidth)||0}},{key:"getLineBoundingRects",value:function(){var t;return this.getGeometryBounds(),(null==(t=this.parsedStyle.metrics)?void 0:t.lineMetrics)||[]}},{key:"isOverflowing",value:function(){return this.getGeometryBounds(),!!this.parsedStyle.isOverflowing}}])}(oa);oO.PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(oa.PARSED_STYLE_LIST),["x","y","z","isBillboard","billboardRotation","isSizeAttenuation","text","textAlign","textBaseline","fontStyle","fontSize","fontFamily","fontWeight","fontVariant","lineHeight","letterSpacing","leading","wordWrap","wordWrapWidth","maxLines","textOverflow","isOverflowing","textPath","textDecorationLine","textDecorationColor","textDecorationStyle","textDecorationThickness","textPathSide","textPathStartOffset","metrics","dx","dy"]));var oE=(0,tw.A)(function t(){(0,tB.A)(this,t),this.registry={},this.define(nP.CIRCLE,oo),this.define(nP.ELLIPSE,oc),this.define(nP.RECT,ox),this.define(nP.IMAGE,od),this.define(nP.LINE,og),this.define(nP.GROUP,ou),this.define(nP.PATH,ov),this.define(nP.POLYGON,ob),this.define(nP.POLYLINE,ow),this.define(nP.TEXT,oO),this.define(nP.HTML,oh)},[{key:"define",value:function(t,e){this.registry[t]=e}},{key:"get",value:function(t){return this.registry[t]}}]),ok=function(t){var e=t.name,n=t.inherits,r=t.interpolable,i=t.initialValue,A=t.syntax;a4.styleValueRegistry.registerMetadata({n:e,inh:n,int:r,d:i,syntax:A})},oF=function(t){var e,n;function r(){(0,tB.A)(this,r),(t=(0,tC.A)(this,r)).defaultView=null,t.ownerDocument=null,t.nodeName="document";try{t.timeline=new a4.AnimationTimeline(t)}catch(t){}var t,e={};return Ac.forEach(function(t){var n=t.n,r=t.inh,i=t.d;r&&i&&(e[n]=ny(i)?i(nP.GROUP):i)}),t.documentElement=new ou({id:"g-root",style:e}),t.documentElement.ownerDocument=t,t.documentElement.parentNode=t,t.childNodes=[t.documentElement],t}return(0,tO.A)(r,t),(0,tw.A)(r,[{key:"children",get:function(){return this.childNodes}},{key:"childElementCount",get:function(){return this.childNodes.length}},{key:"firstElementChild",get:function(){return this.firstChild}},{key:"lastElementChild",get:function(){return this.lastChild}},{key:"createElement",value:function(t,e){if("svg"===t)return this.documentElement;var n=this.defaultView.customElements.get(t);n||(console.warn("Unsupported tagName: ",t),n="tspan"===t?oO:ou);var r=new n(e);return r.ownerDocument=this,r}},{key:"createElementNS",value:function(t,e,n){return this.createElement(e,n)}},{key:"cloneNode",value:function(t){throw Error(nW)}},{key:"destroy",value:function(){try{this.documentElement.destroyChildren(),this.timeline.destroy()}catch(t){}}},{key:"elementsFromBBox",value:function(t,e,n,r){var i=[],A=function(a){if(!(!a.isInteractive()||a.isCulled())){var o=a.parsedStyle.pointerEvents;if(!["auto","visiblepainted","visiblefill","visiblestroke","visible"].includes(void 0===o?"auto":o)||a.isVisible()){var s=a.getTransformedGeometryBounds(!0);s&&!nD.isEmpty(s)&&s.max[0]>=t&&s.min[0]<=n&&s.max[1]>=e&&s.min[1]<=r&&i.push(a)}a.childNodes&&a.childNodes.forEach(function(t){t instanceof oa&&A(t)})}};return A(this.documentElement),i.sort(function(t,e){return e.sortable.renderOrder-t.sortable.renderOrder}),i}},{key:"elementFromPointSync",value:function(t,e){var n=this.defaultView.canvas2Viewport({x:t,y:e}),r=n.x,i=n.y,A=this.defaultView.getConfig(),a=A.width,o=A.height;if(r<0||i<0||r>a||i>o)return null;var s=this.defaultView.viewport2Client({x:r,y:i}),l=s.x,c=s.y,u=this.defaultView.getRenderingService().hooks.pickSync.call({topmost:!0,position:{x:t,y:e,viewportX:r,viewportY:i,clientX:l,clientY:c},picked:[]}).picked;return u&&u[0]||this.documentElement}},{key:"elementFromPoint",value:(e=(0,nT.A)((0,nI.A)().mark(function t(e,n){var r,i,A,a,o,s,l,c,u,f;return(0,nI.A)().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:if(i=(r=this.defaultView.canvas2Viewport({x:e,y:n})).x,A=r.y,o=(a=this.defaultView.getConfig()).width,s=a.height,!(i<0||A<0||i>o||A>s)){t.next=1;break}return t.abrupt("return",null);case 1:return c=(l=this.defaultView.viewport2Client({x:i,y:A})).x,u=l.y,t.next=2,this.defaultView.getRenderingService().hooks.pick.promise({topmost:!0,position:{x:e,y:n,viewportX:i,viewportY:A,clientX:c,clientY:u},picked:[]});case 2:return f=t.sent.picked,t.abrupt("return",f&&f[0]||this.documentElement);case 3:case"end":return t.stop()}},t,this)})),function(t,n){return e.apply(this,arguments)})},{key:"elementsFromPointSync",value:function(t,e){var n=this.defaultView.canvas2Viewport({x:t,y:e}),r=n.x,i=n.y,A=this.defaultView.getConfig(),a=A.width,o=A.height;if(r<0||i<0||r>a||i>o)return[];var s=this.defaultView.viewport2Client({x:r,y:i}),l=s.x,c=s.y,u=this.defaultView.getRenderingService().hooks.pickSync.call({topmost:!1,position:{x:t,y:e,viewportX:r,viewportY:i,clientX:l,clientY:c},picked:[]}).picked;return u[u.length-1]!==this.documentElement&&u.push(this.documentElement),u}},{key:"elementsFromPoint",value:(n=(0,nT.A)((0,nI.A)().mark(function t(e,n){var r,i,A,a,o,s,l,c,u,f;return(0,nI.A)().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:if(i=(r=this.defaultView.canvas2Viewport({x:e,y:n})).x,A=r.y,o=(a=this.defaultView.getConfig()).width,s=a.height,!(i<0||A<0||i>o||A>s)){t.next=1;break}return t.abrupt("return",[]);case 1:return c=(l=this.defaultView.viewport2Client({x:i,y:A})).x,u=l.y,t.next=2,this.defaultView.getRenderingService().hooks.pick.promise({topmost:!1,position:{x:e,y:n,viewportX:i,viewportY:A,clientX:c,clientY:u},picked:[]});case 2:return(f=t.sent.picked)[f.length-1]!==this.documentElement&&f.push(this.documentElement),t.abrupt("return",f);case 3:case"end":return t.stop()}},t,this)})),function(t,e){return n.apply(this,arguments)})},{key:"appendChild",value:function(t,e){throw Error(nX)}},{key:"insertBefore",value:function(t,e){throw Error(nX)}},{key:"removeChild",value:function(t,e){throw Error(nX)}},{key:"replaceChild",value:function(t,e,n){throw Error(nX)}},{key:"append",value:function(){throw Error(nX)}},{key:"prepend",value:function(){throw Error(nX)}},{key:"getElementById",value:function(t){return this.documentElement.getElementById(t)}},{key:"getElementsByName",value:function(t){return this.documentElement.getElementsByName(t)}},{key:"getElementsByTagName",value:function(t){return this.documentElement.getElementsByTagName(t)}},{key:"getElementsByClassName",value:function(t){return this.documentElement.getElementsByClassName(t)}},{key:"querySelector",value:function(t){return this.documentElement.querySelector(t)}},{key:"querySelectorAll",value:function(t){return this.documentElement.querySelectorAll(t)}},{key:"find",value:function(t){return this.documentElement.find(t)}},{key:"findAll",value:function(t){return this.documentElement.findAll(t)}}])}(aw),oQ=function(){function t(e){(0,tB.A)(this,t),this.strategies=e}return(0,tw.A)(t,[{key:"apply",value:function(e){var n=e.config,r=e.camera,i=e.renderingService,A=e.renderingContext,a=this.strategies;i.hooks.cull.tap(t.tag,function(t){if(t){var e,i=t.cullable;if(0===a.length?i.visible=A.unculledEntities.indexOf(t.entity)>-1:i.visible=a.every(function(e){return e.isVisible(r,t)}),!t.isCulled()&&t.isVisible())return t;var o=(null==(e=n.future)?void 0:e.experimentalCancelEventPropagation)===!0;return t.dispatchEvent(new ab(aQ.CULLED),o,o),null}return t}),i.hooks.afterRender.tap(t.tag,function(t){t.cullable.visibilityPlaneMask=-1})}}])}();oQ.tag="Culling";var oM=function(){function t(){var e=this;(0,tB.A)(this,t),this.autoPreventDefault=!1,this.rootPointerEvent=new av(null),this.rootWheelEvent=new am(null),this.onPointerMove=function(t){var n=null==(r=e.context.renderingContext.root)||null==(r=r.ownerDocument)?void 0:r.defaultView;if(!n.supportsTouchEvents||"touch"!==t.pointerType){var r,i,A=e.normalizeToPointerEvent(t,n),a=(0,nL.A)(A);try{for(a.s();!(i=a.n()).done;){var o=i.value,s=e.bootstrapEvent(e.rootPointerEvent,o,n,t);e.context.eventService.mapEvent(s)}}catch(t){a.e(t)}finally{a.f()}e.setCursor(e.context.eventService.cursor)}},this.onClick=function(t){var n,r,i=null==(n=e.context.renderingContext.root)||null==(n=n.ownerDocument)?void 0:n.defaultView,A=e.normalizeToPointerEvent(t,i),a=(0,nL.A)(A);try{for(a.s();!(r=a.n()).done;){var o=r.value,s=e.bootstrapEvent(e.rootPointerEvent,o,i,t);e.context.eventService.mapEvent(s)}}catch(t){a.e(t)}finally{a.f()}e.setCursor(e.context.eventService.cursor)}}return(0,tw.A)(t,[{key:"apply",value:function(e){var n=this;this.context=e;var r=e.renderingService,i=this.context.renderingContext.root.ownerDocument.defaultView;this.context.eventService.setPickHandler(function(t){return n.context.renderingService.hooks.pickSync.call({position:t,picked:[],topmost:!0}).picked[0]||null}),r.hooks.pointerWheel.tap(t.tag,function(t){var e=n.normalizeWheelEvent(t);n.context.eventService.mapEvent(e)}),r.hooks.pointerDown.tap(t.tag,function(t){if(!i.supportsTouchEvents||"touch"!==t.pointerType){var e=n.normalizeToPointerEvent(t,i);n.autoPreventDefault&&e[0].isNormalized&&(!t.cancelable&&"cancelable"in t||t.preventDefault());var r,A=(0,nL.A)(e);try{for(A.s();!(r=A.n()).done;){var a=r.value,o=n.bootstrapEvent(n.rootPointerEvent,a,i,t);n.context.eventService.mapEvent(o)}}catch(t){A.e(t)}finally{A.f()}n.setCursor(n.context.eventService.cursor)}}),r.hooks.pointerUp.tap(t.tag,function(t){if(!i.supportsTouchEvents||"touch"!==t.pointerType){var e,r=n.context.contextService.getDomElement(),A=n.context.eventService.isNativeEventFromCanvas(r,t)?"":"outside",a=n.normalizeToPointerEvent(t,i),o=(0,nL.A)(a);try{for(o.s();!(e=o.n()).done;){var s=e.value,l=n.bootstrapEvent(n.rootPointerEvent,s,i,t);l.type+=A,n.context.eventService.mapEvent(l)}}catch(t){o.e(t)}finally{o.f()}n.setCursor(n.context.eventService.cursor)}}),r.hooks.pointerMove.tap(t.tag,this.onPointerMove),r.hooks.pointerOver.tap(t.tag,this.onPointerMove),r.hooks.pointerOut.tap(t.tag,this.onPointerMove),r.hooks.click.tap(t.tag,this.onClick),r.hooks.pointerCancel.tap(t.tag,function(t){var e,r=n.normalizeToPointerEvent(t,i),A=(0,nL.A)(r);try{for(A.s();!(e=A.n()).done;){var a=e.value,o=n.bootstrapEvent(n.rootPointerEvent,a,i,t);n.context.eventService.mapEvent(o)}}catch(t){A.e(t)}finally{A.f()}n.setCursor(n.context.eventService.cursor)})}},{key:"bootstrapEvent",value:function(t,e,n,r){t.view=n,t.originalEvent=null,t.nativeEvent=r,t.pointerId=e.pointerId,t.width=e.width,t.height=e.height,t.isPrimary=e.isPrimary,t.pointerType=e.pointerType,t.pressure=e.pressure,t.tangentialPressure=e.tangentialPressure,t.tiltX=e.tiltX,t.tiltY=e.tiltY,t.twist=e.twist,this.transferMouseData(t,e);var i=this.context.eventService.client2Viewport({x:e.clientX,y:e.clientY}),A=i.x,a=i.y;t.viewport.x=A,t.viewport.y=a;var o=this.context.eventService.viewport2Canvas(t.viewport),s=o.x,l=o.y;return t.canvas.x=s,t.canvas.y=l,t.global.copyFrom(t.canvas),t.offset.copyFrom(t.canvas),t.isTrusted=r.isTrusted,"pointerleave"===t.type&&(t.type="pointerout"),t.type.startsWith("mouse")&&(t.type=t.type.replace("mouse","pointer")),t.type.startsWith("touch")&&(t.type=AP[t.type]||t.type),t}},{key:"normalizeWheelEvent",value:function(t){var e=this.rootWheelEvent;this.transferMouseData(e,t),e.deltaMode=t.deltaMode,e.deltaX=t.deltaX,e.deltaY=t.deltaY,e.deltaZ=t.deltaZ;var n=this.context.eventService.client2Viewport({x:t.clientX,y:t.clientY}),r=n.x,i=n.y;e.viewport.x=r,e.viewport.y=i;var A=this.context.eventService.viewport2Canvas(e.viewport),a=A.x,o=A.y;return e.canvas.x=a,e.canvas.y=o,e.global.copyFrom(e.canvas),e.offset.copyFrom(e.canvas),e.nativeEvent=t,e.type=t.type,e}},{key:"transferMouseData",value:function(t,e){t.isTrusted=e.isTrusted,t.srcElement=e.srcElement,t.timeStamp=AH.now(),t.type=e.type,t.altKey=e.altKey,t.metaKey=e.metaKey,t.shiftKey=e.shiftKey,t.ctrlKey=e.ctrlKey,t.button=e.button,t.buttons=e.buttons,t.client.x=e.clientX,t.client.y=e.clientY,t.movement.x=e.movementX,t.movement.y=e.movementY,t.page.x=e.pageX,t.page.y=e.pageY,t.screen.x=e.screenX,t.screen.y=e.screenY,t.relatedTarget=null}},{key:"setCursor",value:function(t){this.context.contextService.applyCursorStyle(t||this.context.config.cursor||"default")}},{key:"normalizeToPointerEvent",value:function(t,e){var n=[];if(e.isTouchEvent(t))for(var r=0;r-1,a=0,o=r.length;a=1?Math.ceil(F):1,a&&(E=s||("auto"===(n=A_(a,"width"))?a.offsetWidth:parseFloat(n))||a.width/F,k=l||("auto"===(r=A_(a,"height"))?a.offsetHeight:parseFloat(r))||a.height/F),i.customElements=new oE,i.devicePixelRatio=F,i.requestAnimationFrame=null!=y?y:AY.bind(a4.globalThis),i.cancelAnimationFrame=null!=v?v:A$.bind(a4.globalThis),i.createImage=null!=b?b:function(){return new window.Image},i.supportsTouchEvents=null!=B?B:"ontouchstart"in a4.globalThis,i.supportsPointerEvents=null!=w?w:!!a4.globalThis.PointerEvent,i.isTouchEvent=null!=x?x:function(t){return i.supportsTouchEvents&&t instanceof a4.globalThis.TouchEvent},i.isMouseEvent=null!=C?C:function(t){return!a4.globalThis.MouseEvent||t instanceof a4.globalThis.MouseEvent&&(!i.supportsPointerEvents||!(t instanceof a4.globalThis.PointerEvent))},p&&(a4.offscreenCanvas=p),i.document=new oF,i.document.defaultView=i,f||function(t,e,n){if(t){var r="string"==typeof t?document.getElementById(t):t;AS.has(r)&&AS.get(r).destroy(n),AS.set(r,e)}}(A,i,d),i.initRenderingContext((0,tb.A)((0,tb.A)({},t),{},{width:E,height:k,background:null!=c?c:"transparent",cursor:null!=u?u:"default",cleanUpOnDestroy:d,devicePixelRatio:F,requestAnimationFrame:i.requestAnimationFrame,cancelAnimationFrame:i.cancelAnimationFrame,createImage:i.createImage,supportsTouchEvents:i.supportsTouchEvents,supportsPointerEvents:i.supportsPointerEvents,isTouchEvent:i.isTouchEvent,isMouseEvent:i.isMouseEvent,dblClickSpeed:null!=O?O:200})),i.initDefaultCamera(E,k,o.clipSpaceNearZ),i.initRenderer(o,!0),i}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"initRenderingContext",value:function(t){this.context.config=t,this.context.renderingContext={root:this.document.documentElement,unculledEntities:[],renderListCurrentFrame:[],renderReasons:new Set,force:!1,dirty:!1}}},{key:"initDefaultCamera",value:function(t,e,n){var r=this,i=new a4.CameraContribution;i.clipSpaceNearZ=n,i.setType(n7.EXPLORING,rt.DEFAULT).setPosition(t/2,e/2,500).setFocalPoint(t/2,e/2,0).setOrthographic(-(t/2),t/2,e/2,-(e/2),.1,1e3),i.canvas=this,i.eventEmitter.on(rn,function(){r.context.renderingContext.renderReasons.add(aO.CAMERA_CHANGED),a4.enableSizeAttenuation&&r.getConfig().renderer.getConfig().enableSizeAttenuation&&r.updateSizeAttenuation()}),this.context.camera=i}},{key:"updateSizeAttenuation",value:function(){var t=this.getCamera().getZoom();this.document.documentElement.forEach(function(e){a4.styleValueRegistry.updateSizeAttenuation(e,t)})}},{key:"getConfig",value:function(){return this.context.config}},{key:"getRoot",value:function(){return this.document.documentElement}},{key:"getCamera",value:function(){return this.context.camera}},{key:"getContextService",value:function(){return this.context.contextService}},{key:"getEventService",value:function(){return this.context.eventService}},{key:"getRenderingService",value:function(){return this.context.renderingService}},{key:"getRenderingContext",value:function(){return this.context.renderingContext}},{key:"getStats",value:function(){return this.getRenderingService().getStats()}},{key:"ready",get:function(){var t=this;return!this.readyPromise&&(this.readyPromise=new Promise(function(e){t.resolveReadyPromise=function(){e(t)}}),this.inited&&this.resolveReadyPromise()),this.readyPromise}},{key:"destroy",value:function(){var t,e=!(arguments.length>0)||void 0===arguments[0]||arguments[0],n=arguments.length>1?arguments[1]:void 0;rK.clearCache();var r=(null==(t=this.getConfig().future)?void 0:t.experimentalCancelEventPropagation)===!0;n||this.dispatchEvent(new ab(oT.BEFORE_DESTROY),r,r),this.frameId&&this.cancelAnimationFrame(this.frameId);var i=this.getRoot();e&&(this.unmountChildren(i),this.document.destroy(),this.getEventService().destroy()),this.getRenderingService().destroy(),this.getContextService().destroy(),n||this.dispatchEvent(new ab(oT.AFTER_DESTROY),r,r);var A=function(t){t.currentTarget=null,t.manager=null,t.target=null,t.relatedNode=null};A(oL),A(o_),A(oP),A(oH),A(oj),A(or),A(a8),A(a9),A(a7),a4.textService.clearCache()}},{key:"changeSize",value:function(t,e){this.resize(t,e)}},{key:"resize",value:function(t,e){var n,r=this.context.config;r.width=t,r.height=e,this.getContextService().resize(t,e);var i=this.context.camera,A=i.getProjectionMode();i.setPosition(t/2,e/2,500).setFocalPoint(t/2,e/2,0),A===re.ORTHOGRAPHIC?i.setOrthographic(-(t/2),t/2,e/2,-(e/2),i.getNear(),i.getFar()):i.setAspect(t/e);var a=(null==(n=r.future)?void 0:n.experimentalCancelEventPropagation)===!0;this.dispatchEvent(new ab(oT.RESIZE,{width:t,height:e}),a,a)}},{key:"appendChild",value:function(t,e){return this.document.documentElement.appendChild(t,e)}},{key:"insertBefore",value:function(t,e){return this.document.documentElement.insertBefore(t,e)}},{key:"removeChild",value:function(t){return this.document.documentElement.removeChild(t)}},{key:"removeChildren",value:function(){this.document.documentElement.removeChildren()}},{key:"destroyChildren",value:function(){this.document.documentElement.destroyChildren()}},{key:"render",value:function(t){var e,n=this;t&&(oP.detail=t,oj.detail=t);var r=(null==(e=this.getConfig().future)?void 0:e.experimentalCancelEventPropagation)===!0;this.dispatchEvent(oP,r,r),this.getRenderingService().render(this,t,function(){n.dispatchEvent(oH,r,r)}),this.dispatchEvent(oj,r,r)}},{key:"run",value:function(){var t=this,e=function(n,r){t.render(r),t.frameId=t.requestAnimationFrame(e)};e()}},{key:"initRenderer",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(!t)throw Error("Renderer is required.");this.inited=!1,this.readyPromise=void 0,this.context.renderingPlugins=[],this.context.renderingPlugins.push(new oM,new oI,new oQ([new oS])),this.loadRendererContainerModule(t),this.context.contextService=new this.context.ContextService((0,tb.A)((0,tb.A)({},a4),this.context)),this.context.renderingService=new aE(a4,this.context),this.context.eventService=new ax(a4,this.context),this.context.eventService.init(),this.context.contextService.init?(this.context.contextService.init(),this.initRenderingService(t,n,!0)):this.context.contextService.initAsync().then(function(){e.initRenderingService(t,n)}).catch(function(t){console.error(t)})}},{key:"initRenderingService",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];this.context.renderingService.init(function(){e.inited=!0;var i,A=(null==(i=e.getConfig().future)?void 0:i.experimentalCancelEventPropagation)===!0;n?r?e.requestAnimationFrame(function(){e.dispatchEvent(new ab(oT.READY),A,A)}):e.dispatchEvent(new ab(oT.READY),A,A):e.dispatchEvent(new ab(oT.RENDERER_CHANGED),A,A),e.readyPromise&&e.resolveReadyPromise(),n||e.getRoot().forEach(function(t){var e;null==(e=t.dirty)||e.call(t,!0,!0)}),e.mountChildren(e.getRoot()),t.getConfig().enableAutoRendering&&e.run()})}},{key:"loadRendererContainerModule",value:function(t){var e=this;t.getPlugins().forEach(function(t){t.context=e.context,t.init(a4)})}},{key:"setRenderer",value:function(t){var e=this.getConfig();if(e.renderer!==t){var n=e.renderer;e.renderer=t,this.destroy(!1,!0),(0,tx.A)((null==n?void 0:n.getPlugins())||[]).reverse().forEach(function(t){t.destroy(a4)}),this.initRenderer(t)}}},{key:"setCursor",value:function(t){this.getConfig().cursor=t,this.getContextService().applyCursorStyle(t)}},{key:"unmountChildren",value:function(t){var e=this;if(t.childNodes.forEach(function(t){e.unmountChildren(t)}),this.inited){if(t.isMutationObserved)t.dispatchEvent(o_);else{var n,r=(null==(n=this.getConfig().future)?void 0:n.experimentalCancelEventPropagation)===!0;o_.target=t,this.dispatchEvent(o_,!0,r)}t!==this.document.documentElement&&(t.ownerDocument=null),t.isConnected=!1}t.isCustomElement&&t.disconnectedCallback&&t.disconnectedCallback()}},{key:"mountChildren",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Aj(t);if(this.inited){if(!t.isConnected&&(t.ownerDocument=this.document,t.isConnected=!0,!n))if(t.isMutationObserved)t.dispatchEvent(oL);else{var r,i=(null==(r=this.getConfig().future)?void 0:r.experimentalCancelEventPropagation)===!0;oL.target=t,this.dispatchEvent(oL,!0,i)}}else console.warn("[g]: You are trying to call `canvas.appendChild` before canvas' initialization finished. You can either await `canvas.ready` or listen to `CanvasEvent.READY` manually.","appended child: ",t.nodeName);t.childNodes.forEach(function(t){e.mountChildren(t,n)}),t.isCustomElement&&t.connectedCallback&&t.connectedCallback()}},{key:"mountFragment",value:function(t){this.mountChildren(t,!1)}},{key:"client2Viewport",value:function(t){return this.getEventService().client2Viewport(t)}},{key:"viewport2Client",value:function(t){return this.getEventService().viewport2Client(t)}},{key:"viewport2Canvas",value:function(t){return this.getEventService().viewport2Canvas(t)}},{key:"canvas2Viewport",value:function(t){return this.getEventService().canvas2Viewport(t)}},{key:"getPointByClient",value:function(t,e){return this.client2Viewport({x:t,y:e})}},{key:"getClientByPoint",value:function(t,e){return this.viewport2Client({x:t,y:e})}}])}(aB);new WeakMap;var oD=(0,tw.A)(function t(){(0,tB.A)(this,t),this.cacheStore=new Map},[{key:"onRefAdded",value:function(t){}},{key:"has",value:function(t){return this.cacheStore.has(t)}},{key:"put",value:function(t,e,n){return!this.cacheStore.has(t)&&(this.cacheStore.set(t,{value:e,counter:new Set([n.entity])}),this.onRefAdded(n),!0)}},{key:"get",value:function(t,e){var n=this.cacheStore.get(t);return n?(n.counter.has(e.entity)||(n.counter.add(e.entity),this.onRefAdded(e)),n.value):null}},{key:"update",value:function(t,e,n){var r=this.cacheStore.get(t);return!!r&&(r.value=(0,tb.A)((0,tb.A)({},r.value),e),r.counter.has(n.entity)||(r.counter.add(n.entity),this.onRefAdded(n)),!0)}},{key:"release",value:function(t,e){var n=this.cacheStore.get(t);return!!n&&(n.counter.delete(e.entity),n.counter.size<=0&&this.cacheStore.delete(t),!0)}},{key:"releaseRef",value:function(t){var e=this;Array.from(this.cacheStore.keys()).forEach(function(n){e.release(n,t)})}},{key:"getSize",value:function(){return this.cacheStore.size}},{key:"clear",value:function(){this.cacheStore.clear()}}]),oR=[],oK=[],oz=function(){function t(){(0,tB.A)(this,t)}return(0,tw.A)(t,null,[{key:"stop",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:t.api;t.rafId&&(e.cancelAnimationFrame(t.rafId),t.rafId=null)}},{key:"executeTask",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:t.api;oR.length<=0&&oK.length<=0||(oK.forEach(function(t){return t()}),oK=oR.splice(0,t.TASK_NUM_PER_FRAME),t.rafId=e.requestAnimationFrame(function(){t.executeTask(e)}))}},{key:"sliceImage",value:function(e,n,r,i){for(var A=arguments.length>4&&void 0!==arguments[4]?arguments[4]:0,a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:t.api,o=e.naturalWidth||e.width,s=e.naturalHeight||e.height,l=n-A,c=r-A,u=Math.ceil(o/l),f=Math.ceil(s/c),h={tileSize:[n,r],gridSize:[f,u],tiles:Array(f).fill(null).map(function(){return Array(u).fill(null)})},d=function(t){for(var A=function(A){oR.push(function(){var u=A*l,f=t*c,d=[Math.min(n,o-u),Math.min(r,s-f)],p=d[0],g=d[1],y=a.createCanvas();y.width=n,y.height=r,y.getContext("2d").drawImage(e,u,f,p,g,0,0,p,g),h.tiles[t][A]={x:u,y:f,tileX:A,tileY:t,data:y},i()})},f=0;f1&&void 0!==arguments[1]?arguments[1]:[0,0,0];return"matrix(".concat([t[0],t[1],t[4],t[5],t[12]+e[0],t[13]+e[1]].join(","),")")}},{key:"apply",value:function(e,n){var r=this,i=e.camera,A=e.renderingContext,a=e.renderingService;this.context=e;var o=A.root.ownerDocument.defaultView,s=o.context.eventService.nativeHTMLMap,l=function(t,e){e.style.transform=r.joinTransformMatrix(t.getWorldTransform(),t.getOrigin())},c=function(t){var e=t.target;if(e.nodeName===nP.HTML){r.$camera||(r.$camera=r.createCamera(i));var n=r.getOrCreateEl(e);r.$camera.appendChild(n),Object.keys(e.attributes).forEach(function(t){r.updateAttribute(t,e)}),l(e,n),s.set(n,e)}},u=function(t){var e=t.target;if(e.nodeName===nP.HTML&&r.$camera){var n=r.getOrCreateEl(e);n&&(n.remove(),s.delete(n))}},f=function(t){var e=t.target;if(e.nodeName===nP.HTML){var n=t.attrName;r.updateAttribute(n,e)}},h=function(t){for(var e=t.detail,n=0;n0&&Number(this._currentTime)>=this._totalDuration||this._playbackRate<0&&0>=Number(this._currentTime))}},{key:"totalDuration",get:function(){return this._totalDuration}},{key:"_needsTick",get:function(){return this.pending||"running"===this.playState||!this._finishedFlag}},{key:"updatePromises",value:function(){if(null!=(t=this.effect.target)&&t.destroyed)return this.readyPromise=void 0,this.finishedPromise=void 0,!1;var t,e=this.oldPlayState,n=this.pending?"pending":this.playState;return this.readyPromise&&n!==e&&("idle"===n?(this.rejectReadyPromise(),this.readyPromise=void 0):"pending"===e?this.resolveReadyPromise():"pending"===n&&(this.readyPromise=void 0)),this.finishedPromise&&n!==e&&("idle"===n?(this.rejectFinishedPromise(),this.finishedPromise=void 0):"finished"===n?this.resolveFinishedPromise():"finished"===e&&(this.finishedPromise=void 0)),this.oldPlayState=n,this.readyPromise||this.finishedPromise}},{key:"play",value:function(){this.updatePromises(),this._paused=!1,(this._isFinished||this._idle)&&(this.rewind(),this._startTime=null),this._finishedFlag=!1,this._idle=!1,this.ensureAlive(),this.timeline.applyDirtiedAnimation(this),-1===this.timeline.animations.indexOf(this)&&this.timeline.animations.push(this),this.updatePromises()}},{key:"pause",value:function(){this.updatePromises(),this.currentTime&&(this._holdTime=this.currentTime),this._isFinished||this._paused||this._idle?this._idle&&(this.rewind(),this._idle=!1):this.currentTimePending=!0,this._startTime=null,this._paused=!0,this.updatePromises()}},{key:"finish",value:function(){this.updatePromises(),this._idle||(this.currentTime=this._playbackRate>0?this._totalDuration:0,this._startTime=this._totalDuration-this.currentTime,this.currentTimePending=!1,this.timeline.applyDirtiedAnimation(this),this.updatePromises())}},{key:"cancel",value:function(){var t=this;if(this.updatePromises(),this._inEffect&&(this._inEffect=!1,this._idle=!0,this._paused=!1,this._finishedFlag=!0,this._currentTime=null,this._startTime=null,this.effect.update(null),this.timeline.applyDirtiedAnimation(this),this.updatePromises(),this.oncancel)){var e=new o1(null,this,this.currentTime,null);setTimeout(function(){t.oncancel(e)})}}},{key:"reverse",value:function(){this.updatePromises();var t=this.currentTime;this.playbackRate*=-1,this.play(),null!==t&&(this.currentTime=t),this.updatePromises()}},{key:"updatePlaybackRate",value:function(t){this.playbackRate=t}},{key:"targetAnimations",value:function(){var t;return(null==(t=this.effect)?void 0:t.target).getAnimations()}},{key:"markTarget",value:function(){var t=this.targetAnimations();-1===t.indexOf(this)&&t.push(this)}},{key:"unmarkTarget",value:function(){var t=this.targetAnimations(),e=t.indexOf(this);-1!==e&&t.splice(e,1)}},{key:"tick",value:function(t,e){!this._idle&&!this._paused&&(null===this._startTime?e&&(this.startTime=t-this._currentTime/this.playbackRate):this._isFinished||this.tickCurrentTime((t-this._startTime)*this.playbackRate)),e&&(this.currentTimePending=!1,this.fireEvents(t))}},{key:"rewind",value:function(){if(this.playbackRate>=0)this.currentTime=0;else if(this._totalDuration<1/0)this.currentTime=this._totalDuration;else throw Error("Unable to rewind negative playback rate animation with infinite duration")}},{key:"persist",value:function(){throw Error(nW)}},{key:"addEventListener",value:function(t,e,n){throw Error(nW)}},{key:"removeEventListener",value:function(t,e,n){throw Error(nW)}},{key:"dispatchEvent",value:function(t){throw Error(nW)}},{key:"commitStyles",value:function(){throw Error(nW)}},{key:"ensureAlive",value:function(){var t,e;this.playbackRate<0&&0===this.currentTime?this._inEffect=!!(null!=(t=this.effect)&&t.update(-1)):this._inEffect=!!(null!=(e=this.effect)&&e.update(this.currentTime)),this._inTimeline||!this._inEffect&&this._finishedFlag||(this._inTimeline=!0,this.timeline.animations.push(this))}},{key:"tickCurrentTime",value:function(t,e){t!==this._currentTime&&(this._currentTime=t,this._isFinished&&!e&&(this._currentTime=this._playbackRate>0?this._totalDuration:0),this.ensureAlive())}},{key:"fireEvents",value:function(t){var e=this;if(this._isFinished){if(!this._finishedFlag){if(this.onfinish){var n=new o1(null,this,this.currentTime,t);setTimeout(function(){e.onfinish&&e.onfinish(n)})}this._finishedFlag=!0}}else{if(this.onframe&&"running"===this.playState){var r=new o1(null,this,this.currentTime,t);this.onframe(r)}this._finishedFlag=!1}}}]),o5="function"==typeof Float32Array,o3=function(t,e){return 1-3*e+3*t},o6=function(t,e){return 3*e-6*t},o8=function(t){return 3*t},o9=function(t,e,n){return((o3(e,n)*t+o6(e,n))*t+o8(e))*t},o7=function(t,e,n){return 3*o3(e,n)*t*t+2*o6(e,n)*t+o8(e)},st=function(t,e,n,r,i){var A,a,o=0;do(A=o9(a=e+(n-e)/2,r,i)-t)>0?n=a:e=a;while(Math.abs(A)>1e-7&&++o<10);return a},se=function(t,e,n,r){for(var i=0;i<4;++i){var A=o7(e,n,r);if(0===A)break;var a=o9(e,n,r)-t;e-=a/A}return e},sn=function(t,e,n,r){if(!(t>=0&&t<=1&&n>=0&&n<=1))throw Error("bezier x values must be in [0, 1] range");if(t===e&&n===r)return function(t){return t};for(var i=o5?new Float32Array(11):Array(11),A=0;A<11;++A)i[A]=o9(.1*A,t,n);var a=function(e){for(var r=0,A=1;10!==A&&i[A]<=e;++A)r+=.1;var a=r+(e-i[--A])/(i[A+1]-i[A])*.1,o=o7(a,t,n);return o>=.001?se(e,a,t,n):0===o?a:st(e,r,r+.1,t,n)};return function(t){return 0===t||1===t?t:o9(a(t),e,r)}},sr=function(t){return Math.pow(t,2)},si=function(t){return Math.pow(t,3)},sA=function(t){return Math.pow(t,4)},sa=function(t){return Math.pow(t,5)},so=function(t){return Math.pow(t,6)},ss=function(t){return 1-Math.cos(t*Math.PI/2)},sl=function(t){return 1-Math.sqrt(1-t*t)},sc=function(t){return t*t*(3*t-2)},su=function(t){for(var e,n=4;t<((e=Math.pow(2,--n))-1)/11;);return 1/Math.pow(4,3-n)-7.5625*Math.pow((3*e-2)/22-t,2)},sf=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=(0,tE.A)(e,2),r=n[0],i=n[1],A=eY(Number(void 0===r?1:r),1,10),a=eY(Number(void 0===i?.5:i),.1,2);return 0===t||1===t?t:-A*Math.pow(2,10*(t-1))*Math.sin(2*Math.PI*(t-1-a/(2*Math.PI)*Math.asin(1/A))/a)},sh=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2?arguments[2]:void 0,r=(0,tE.A)(e,4),i=r[0],A=void 0===i?1:i,a=r[1],o=void 0===a?100:a,s=r[2],l=void 0===s?10:s,c=r[3],u=void 0===c?0:c;A=eY(A,.1,1e3),o=eY(o,.1,1e3),l=eY(l,.1,1e3),u=eY(u,.1,1e3);var f=Math.sqrt(o/A),h=l/(2*Math.sqrt(o*A)),d=h<1?f*Math.sqrt(1-h*h):0,p=h<1?(h*f+-u)/d:-u+f,g=n?n*t/1e3:t;return(g=h<1?Math.exp(-g*h*f)*(+Math.cos(d*g)+p*Math.sin(d*g)):(1+p*g)*Math.exp(-g*f),0===t||1===t)?t:1-g},sd=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=(0,tE.A)(e,2),r=n[0],i=void 0===r?10:r;return("start"===n[1]?Math.ceil:Math.floor)(eY(t,0,1)*i)/i},sp=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=(0,tE.A)(e,4);return sn(n[0],n[1],n[2],n[3])(t)},sg=sn(.42,0,1,1),sy=function(t){return function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2?arguments[2]:void 0;return 1-t(1-e,n,r)}},sv=function(t){return function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2?arguments[2]:void 0;return e<.5?t(2*e,n,r)/2:1-t(-2*e+2,n,r)/2}},sm=function(t){return function(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],r=arguments.length>2?arguments[2]:void 0;return e<.5?(1-t(1-2*e,n,r))/2:(t(2*e-1,n,r)+1)/2}},sb={steps:sd,"step-start":function(t){return sd(t,[1,"start"])},"step-end":function(t){return sd(t,[1,"end"])},linear:function(t){return t},"cubic-bezier":sp,ease:function(t){return sp(t,[.25,.1,.25,1])},in:sg,out:sy(sg),"in-out":sv(sg),"out-in":sm(sg),"in-quad":sr,"out-quad":sy(sr),"in-out-quad":sv(sr),"out-in-quad":sm(sr),"in-cubic":si,"out-cubic":sy(si),"in-out-cubic":sv(si),"out-in-cubic":sm(si),"in-quart":sA,"out-quart":sy(sA),"in-out-quart":sv(sA),"out-in-quart":sm(sA),"in-quint":sa,"out-quint":sy(sa),"in-out-quint":sv(sa),"out-in-quint":sm(sa),"in-expo":so,"out-expo":sy(so),"in-out-expo":sv(so),"out-in-expo":sm(so),"in-sine":ss,"out-sine":sy(ss),"in-out-sine":sv(ss),"out-in-sine":sm(ss),"in-circ":sl,"out-circ":sy(sl),"in-out-circ":sv(sl),"out-in-circ":sm(sl),"in-back":sc,"out-back":sy(sc),"in-out-back":sv(sc),"out-in-back":sm(sc),"in-bounce":su,"out-bounce":sy(su),"in-out-bounce":sv(su),"out-in-bounce":sm(su),"in-elastic":sf,"out-elastic":sy(sf),"in-out-elastic":sv(sf),"out-in-elastic":sm(sf),spring:sh,"spring-in":sh,"spring-out":sy(sh),"spring-in-out":sv(sh),"spring-out-in":sm(sh)},sB=function(t){var e;return("-"===(e=(e=t).replace(/([A-Z])/g,function(t){return"-".concat(t.toLowerCase())})).charAt(0)?e.substring(1):e).replace(/^ease-/,"").replace(/(\(|\s).+/,"").toLowerCase().trim()},sw=function(t){return t};function sx(t,e){return function(n){if(n>=1)return 1;var r=1/t;return(n+=e*r)-n%r}}var sC="\\s*(-?\\d+\\.?\\d*|-?\\.\\d+)\\s*",sO=new RegExp("cubic-bezier\\(".concat(sC,",").concat(sC,",").concat(sC,",").concat(sC,"\\)")),sE=/steps\(\s*(\d+)\s*\)/,sk=/steps\(\s*(\d+)\s*,\s*(start|middle|end)\s*\)/;function sF(t){var e=sO.exec(t);if(e)return sn.apply(void 0,(0,tx.A)(e.slice(1).map(Number)));var n=sE.exec(t);if(n)return sx(Number(n[1]),0);var r=sk.exec(t);return r?sx(Number(r[1]),{start:1,middle:.5,end:0}[r[2]]):sb[sB(t)]||sb.linear}function sQ(t){return"offset"!==t&&"easing"!==t&&"composite"!==t&&"computedOffset"!==t}var sM=function(t,e,n){return function(r){var i=function t(e,n,r){if("number"==typeof e&&"number"==typeof n)return e*(1-r)+n*r;if("boolean"==typeof e&&"boolean"==typeof n||"string"==typeof e&&"string"==typeof n)return r<.5?e:n;if(Array.isArray(e)&&Array.isArray(n)){for(var i=e.length,A=n.length,a=Math.max(i,A),o=[],s=0;s1)throw Error("Keyframe offsets must be between 0 and 1.");n.computedOffset=i}}else if("composite"===r&&-1===["replace","add","accumulate","auto"].indexOf(i))throw Error("".concat(i," compositing is not supported"));n[r]=i}return void 0===n.offset&&(n.offset=null),void 0===n.easing&&(n.easing=(null==e?void 0:e.easing)||"linear"),void 0===n.composite&&(n.composite="auto"),n}),r=!0,i=-1/0,A=0;A=0&&1>=Number(t.offset)}),r||function(){var t,e,r=n.length;n[r-1].computedOffset=Number(null!=(t=n[r-1].offset)?t:1),r>1&&(n[0].computedOffset=Number(null!=(e=n[0].offset)?e:0));for(var i=0,A=Number(n[0].computedOffset),a=1;a=t.applyFrom&&e=Math.min(n.delay+t+n.endDelay,r)?2:3}(t,e,n),u=function(t,e,n,r,i){switch(r){case 1:if("backwards"===e||"both"===e)return 0;return null;case 3:return n-i;case 2:if("forwards"===e||"both"===e)return t;return null;case 0:return null}}(t,n.fill,e,c,n.delay);if(null===u)return null;var f="auto"===n.duration?0:n.duration,h=(r=n.iterations,A=i=n.iterationStart,0===f?1!==c&&(A+=r):A+=u/f,A),d=(a=n.iterationStart,o=n.iterations,0==(s=h===1/0?a%1:h%1)&&2===c&&0!==o&&(0!==u||0===f)&&(s=1),s),p=(l=n.iterations,2===c&&l===1/0?1/0:1===d?Math.floor(h)-1:Math.floor(h)),g=function(t,e,n){var r=t;if("normal"!==t&&"reverse"!==t){var i=e;"alternate-reverse"===t&&(i+=1),r="normal",i!==1/0&&i%2!=0&&(r="reverse")}return"normal"===r?n:1-n}(n.direction,p,d);return n.currentIteration=p,n.progress=g,n.easingFunction(g)}(this.timing.activeDuration,t,this.timing),null!==this.timeFraction)}},{key:"getKeyframes",value:function(){return this.normalizedKeyframes}},{key:"setKeyframes",value:function(t){this.normalizedKeyframes=sS(t)}},{key:"getComputedTiming",value:function(){return this.computedTiming}},{key:"getTiming",value:function(){return this.timing}},{key:"updateTiming",value:function(t){var e=this;Object.keys(t||{}).forEach(function(n){e.timing[n]=t[n]})}}]);function s_(t,e){return Number(t.id)-Number(e.id)}var sP=(0,tw.A)(function t(e){var n=this;(0,tB.A)(this,t),this.animations=[],this.ticking=!1,this.timelineTicking=!1,this.hasRestartedThisFrame=!1,this.animationsWithPromises=[],this.inTick=!1,this.pendingEffects=[],this.currentTime=null,this.rafId=0,this.rafCallbacks=[],this.webAnimationsNextTick=function(t){n.currentTime=t,n.discardAnimations(),0===n.animations.length?n.timelineTicking=!1:n.requestAnimationFrame(n.webAnimationsNextTick)},this.processRafCallbacks=function(t){var e=n.rafCallbacks;n.rafCallbacks=[],t90)return this;this.computeMatrix()}return this._getAxes(),this.type===n7.ORBITING||this.type===n7.EXPLORING?this._getPosition():this.type===n7.TRACKING&&this._getFocalPoint(),this._update(),this}},{key:"pan",value:function(t,e){var n=nq(t,e,0),r=tM(this.position);return tL(r,r,tP(tQ(),this.right,n[0])),tL(r,r,tP(tQ(),this.up,n[1])),this._setPosition(r),this.triggerUpdate(),this}},{key:"dolly",value:function(t){var e=this.forward,n=tM(this.position),r=t*this.dollyingStep;return r=Math.max(Math.min(this.distance+t*this.dollyingStep,this.maxDistance),this.minDistance)-this.distance,n[0]+=r*e[0],n[1]+=r*e[1],n[2]+=r*e[2],this._setPosition(n),this.type===n7.ORBITING||this.type===n7.EXPLORING?this._getDistance():this.type===n7.TRACKING&&tL(this.focalPoint,n,this.distanceVector),this.triggerUpdate(),this}},{key:"cancelLandmarkAnimation",value:function(){void 0!==this.landmarkAnimationID&&this.canvas.cancelAnimationFrame(this.landmarkAnimationID)}},{key:"createLandmark",value:function(t){var e,n,r,i,A=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},a=A.position,o=void 0===a?this.position:a,s=A.focalPoint,l=void 0===s?this.focalPoint:s,c=A.roll,u=A.zoom,f=new a4.CameraContribution;f.setType(this.type,void 0),f.setPosition(o[0],null!=(e=o[1])?e:this.position[1],null!=(n=o[2])?n:this.position[2]),f.setFocalPoint(l[0],null!=(r=l[1])?r:this.focalPoint[1],null!=(i=l[2])?i:this.focalPoint[2]),f.setRoll(null!=c?c:this.roll),f.setZoom(null!=u?u:this.zoom);var h={name:t,matrix:tX(f.getWorldTransform()),right:tM(f.right),up:tM(f.up),forward:tM(f.forward),position:tM(f.getPosition()),focalPoint:tM(f.getFocalPoint()),distanceVector:tM(f.getDistanceVector()),distance:f.getDistance(),dollyingStep:f.getDollyingStep(),azimuth:f.getAzimuth(),elevation:f.getElevation(),roll:f.getRoll(),relAzimuth:f.relAzimuth,relElevation:f.relElevation,relRoll:f.relRoll,zoom:f.getZoom()};return this.landmarks.push(h),h}},{key:"gotoLandmark",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=eX(t)?this.landmarks.find(function(e){return e.name===t}):t;if(r){var i,A=eG(n)?{duration:n}:n,a=A.easing,o=A.duration,s=void 0===o?100:o,l=A.easingFunction,c=A.onfinish,u=void 0===c?void 0:c,f=A.onframe,h=void 0===f?void 0:f;this.cancelLandmarkAnimation();var d=r.position,p=r.focalPoint,g=r.zoom,y=r.roll,v=(void 0===l?void 0:l)||a4.EasingFunction(void 0===a?"linear":a),b=function(){e.setFocalPoint(p),e.setPosition(d),e.setRoll(y),e.setZoom(g),e.computeMatrix(),e.triggerUpdate(),null==u||u()};if(0===s)return b();var B=function(t){void 0===i&&(i=t);var n=t-i;if(n>=s)return void b();var r=v(n/s),A=tQ(),a=tQ(),o=1,l=0;if(tN(A,e.focalPoint,p,r),tN(a,e.position,d,r),l=e.roll*(1-r)+y*r,o=e.zoom*(1-r)+g*r,e.setFocalPoint(A),e.setPosition(a),e.setRoll(l),e.setZoom(o),tK(A,p)+tK(a,d)<=.01&&void 0===g&&void 0===y)return b();e.computeMatrix(),e.triggerUpdate(),nU*U+S*S&&(O=k,E=F),{cx:O,cy:E,x0:-c,y0:-u,x1:O*(i/w-1),y1:E*(i/w-1)}}function s0(t,e){return(e=e<0&&t>=0?e+sz:e)-t<=sK?0:1}(function(t){function e(t){var n;return(0,tB.A)(this,e),(n=(0,tC.A)(this,e,[t])).updatePath(),n}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"setAttribute",value:function(t,n,r){nw(e,"setAttribute",this,3)([t,n,r]),["startAngle","endAngle","sr","sr0","radius"].indexOf(t)>-1&&this.updatePath()}},{key:"updatePath",value:function(){var t=this.parsedStyle,n=t.x,r=t.y,i=t.startAngle,A=t.endAngle,a=t.sr,o=t.sr0,s=t.radius,l=this.createPath(n,r,i?i*nJ:0,A?A*nJ:2*Math.PI,a||0,o||0,s||[0,0,0,0]);nw(e,"setAttribute",this,3)(["d",l])}},{key:"createPath",value:function(t,e,n,r,i,A,a){if(!(i<=0)){var o=sJ(t,e,i,n),s=sJ(t,e,i,r),l=sJ(t,e,A,n),c=sJ(t,e,A,r);if(nA(r-n,2*Math.PI)){var u=sJ(t,e,i,n+Math.PI),f=sJ(t,e,A,n+Math.PI),h=[["M",o.x,o.y],["A",i,i,0,1,1,u.x,u.y],["A",i,i,0,1,1,s.x,s.y],["M",l.x,l.y]];return A&&(h.push(["A",A,A,0,1,0,f.x,f.y]),h.push(["A",A,A,0,1,0,c.x,c.y])),h.push(["M",o.x,o.y]),h.push(["Z"]),h}var d=r-n,p=i*sV(n),g=i*sG(n),y=A*sV(r),v=A*sG(r),b=i*sV(r),B=i*sG(r),w=A*sV(n),x=A*sG(n),C=(0,tE.A)(a,4),O=C[0],E=C[1],k=C[2],F=C[3],Q=(i-A)/2,M=sq(Q,O),U=sq(Q,E),S=sq(Q,k),I=sq(Q,F),T=s$(M,U),L=s$(S,I),_=T,P=L;if((T>1e-4||L>1e-4)&&d1e-4){var W=sq(O,_),X=sq(E,_),Y=sZ(w,x,p,g,i,W,!0),$=sZ(b,B,y,v,i,X,!0);if(V.push(["M",t+Y.cx+Y.x0,e+Y.cy+Y.y0]),_0){var Z=sX(Y.y0,Y.x0),tt=sX(Y.y1,Y.x1),te=sJ(t,e,i,tt);V.push(["A",W,W,0,s0(Z,tt),1,te.x,te.y])}var tn=sX(Y.cy+Y.y1,Y.cx+Y.x1),tr=sX($.cy+$.y1,$.cx+$.x1),ti=sJ(t,e,i,tr);if(V.push(["A",i,i,0,s0(tn,tr),1,ti.x,ti.y]),X>0){var tA=sX($.y1,$.x1),ta=sX($.y0,$.x0);V.push(["A",X,X,0,s0(tA,ta),1,t+$.cx+$.x0,e+$.cy+$.y0])}}}else V.push(["M",o.x,o.y]),V.push(["A",i,i,0,G,1,s.x,s.y]);if(A<1e-4)V.push(["L",c.x,c.y]);else if(P>1e-4){var to=sq(F,P),ts=sq(k,P),tl=sZ(y,v,0,0,A-i,ts,!0),tc=sZ(0,0,w,x,A-i,to,!0);if(V.push(["L",t+tl.cx+tl.x0,e+tl.cy+tl.y0]),P0){var td=sX(tl.y0,tl.x0),tp=sX(tl.y1,tl.x1),tg=sJ(t,e,A-i,tp);V.push(["A",ts,ts,0,s0(td,tp),1,tg.x,tg.y])}var ty=sX(tl.cy+tl.y1,tl.cx+tl.x1),tv=sX(tc.cy+tc.y1,tc.cx+tc.x1),tm=sJ(t,e,A,tv);if(V.push(["A",A,A,0,s0(tv,ty),0,tm.x,tm.y]),V.push(["L",tm.x,tm.y]),to>0){var tb=sX(tc.y1,tc.x1),tB=sX(tc.y0,tc.x0);V.push(["A",to,to,0,s0(tb,tB),1,t+tc.cx+tc.x0,e+tc.cy+tc.y0])}}}else V.push(["L",c.x,c.y]),V.push(["A",A,A,0,G,0,l.x,l.y]);return V.push(["Z"]),V}}}])})(ov).PARSED_STYLE_LIST=new Set([].concat((0,tx.A)(ov.PARSED_STYLE_LIST),["x","y","sr","sr0","radius","startAngle","endAngle"]));var s1=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let s2=(t,e,n)=>[["M",t-n,e],["A",n,n,0,1,0,t+n,e],["A",n,n,0,1,0,t-n,e],["Z"]];s2.style=["fill"];let s4=s2.bind(void 0);s4.style=["stroke","lineWidth"];let s5=(t,e,n)=>[["M",t-n,e-n],["L",t+n,e-n],["L",t+n,e+n],["L",t-n,e+n],["Z"]];s5.style=["fill"];let s3=s5.bind(void 0);s3.style=["fill"];let s6=s5.bind(void 0);s6.style=["stroke","lineWidth"];let s8=(t,e,n)=>{let r=.618*n;return[["M",t-r,e],["L",t,e-n],["L",t+r,e],["L",t,e+n],["Z"]]};s8.style=["fill"];let s9=s8.bind(void 0);s9.style=["stroke","lineWidth"];let s7=(t,e,n)=>{let r=n*Math.sin(1/3*Math.PI);return[["M",t-n,e+r],["L",t,e-r],["L",t+n,e+r],["Z"]]};s7.style=["fill"];let lt=s7.bind(void 0);lt.style=["stroke","lineWidth"];let le=(t,e,n)=>{let r=n*Math.sin(1/3*Math.PI);return[["M",t-n,e-r],["L",t+n,e-r],["L",t,e+r],["Z"]]};le.style=["fill"];let ln=le.bind(void 0);ln.style=["stroke","lineWidth"];let lr=(t,e,n)=>{let r=n/2*Math.sqrt(3);return[["M",t,e-n],["L",t+r,e-n/2],["L",t+r,e+n/2],["L",t,e+n],["L",t-r,e+n/2],["L",t-r,e-n/2],["Z"]]};lr.style=["fill"];let li=lr.bind(void 0);li.style=["stroke","lineWidth"];let lA=(t,e,n)=>{let r=n-1.5;return[["M",t-n,e-r],["L",t+n,e+r],["L",t+n,e-r],["L",t-n,e+r],["Z"]]};lA.style=["fill"];let la=lA.bind(void 0);la.style=["stroke","lineWidth"];let lo=(t,e,n)=>[["M",t,e+n],["L",t,e-n]];lo.style=["stroke","lineWidth"];let ls=(t,e,n)=>[["M",t-n,e-n],["L",t+n,e+n],["M",t+n,e-n],["L",t-n,e+n]];ls.style=["stroke","lineWidth"];let ll=(t,e,n)=>[["M",t-n/2,e-n],["L",t+n/2,e-n],["M",t,e-n],["L",t,e+n],["M",t-n/2,e+n],["L",t+n/2,e+n]];ll.style=["stroke","lineWidth"];let lc=(t,e,n)=>[["M",t-n,e],["L",t+n,e],["M",t,e-n],["L",t,e+n]];lc.style=["stroke","lineWidth"];let lu=(t,e,n)=>[["M",t-n,e],["L",t+n,e]];lu.style=["stroke","lineWidth"];let lf=(t,e,n)=>[["M",t-n,e],["L",t+n,e]];lf.style=["stroke","lineWidth"];let lh=lf.bind(void 0);lh.style=["stroke","lineWidth"];let ld=(t,e,n)=>[["M",t-n,e],["A",n/2,n/2,0,1,1,t,e],["A",n/2,n/2,0,1,0,t+n,e]];ld.style=["stroke","lineWidth"];let lp=(t,e,n)=>[["M",t-n-1,e-2.5],["L",t,e-2.5],["L",t,e+2.5],["L",t+n+1,e+2.5]];lp.style=["stroke","lineWidth"];let lg=(t,e,n)=>[["M",t-n-1,e+2.5],["L",t,e+2.5],["L",t,e-2.5],["L",t+n+1,e-2.5]];lg.style=["stroke","lineWidth"];let ly=(t,e,n)=>[["M",t-(n+1),e+2.5],["L",t-n/2,e+2.5],["L",t-n/2,e-2.5],["L",t+n/2,e-2.5],["L",t+n/2,e+2.5],["L",t+n+1,e+2.5]];ly.style=["stroke","lineWidth"];let lv=(t,e,n)=>[["M",t-5,e+2.5],["L",t-5,e],["L",t,e],["L",t,e-3],["L",t,e+3],["L",t+6.5,e+3]];lv.style=["stroke","lineWidth"];let lm=new Map([["bowtie",lA],["cross",ls],["dash",lh],["diamond",s8],["dot",lf],["hexagon",lr],["hollowBowtie",la],["hollowDiamond",s9],["hollowHexagon",li],["hollowPoint",s4],["hollowSquare",s6],["hollowTriangle",lt],["hollowTriangleDown",ln],["hv",lp],["hvh",ly],["hyphen",lu],["line",lo],["plus",lc],["point",s2],["rect",s3],["smooth",ld],["square",s5],["tick",ll],["triangleDown",le],["triangle",s7],["vh",lg],["vhv",lv]]),lb={};function lB(t,e){if(t.startsWith("symbol.")){var n;n=t.split(".").pop(),lm.set(n,e)}else Object.assign(lb,{[t]:e})}function lw(t,e){if(!({}).hasOwnProperty.call(t,e))throw TypeError("attempted to use private field on non-instance");return t}var lx=0,lC="__private_"+lx+++"_renderState",lO=function(){function t(e){(0,tB.A)(this,t),this.renderQueue=[],Object.defineProperty(this,lC,{writable:!0,value:{restoreStack:[],prevObject:null,currentContext:new Map}}),this.clearFullScreenLastFrame=!1,this.clearFullScreen=!1,this.vpMatrix=tW(),this.dprMatrix=tW(),this.tmpMat4=tW(),this.vec3a=tQ(),this.vec3b=tQ(),this.vec3c=tQ(),this.vec3d=tQ(),this.canvasRendererPluginOptions=e}return(0,tw.A)(t,[{key:"apply",value:function(e,n){var r=this;this.context=e;var i=this.context,A=i.config,a=i.camera,o=i.renderingService,s=i.renderingContext,l=i.pathGeneratorFactory,c=A.renderer.getConfig().enableRenderingOptimization;A.renderer.getConfig().enableDirtyCheck=!1,A.renderer.getConfig().enableDirtyRectangleRendering=!1,this.pathGeneratorFactory=l;var u=e.contextService,f=s.root.ownerDocument.defaultView;o.hooks.init.tap(t.tag,function(){var t=u.getDPR(),e=A.width,n=A.height,i=u.getContext();r.clearRect(i,0,0,e*t,n*t,A.background)}),o.hooks.destroy.tap(t.tag,function(){r.renderQueue=[],lw(r,lC)[lC]={restoreStack:[],prevObject:null,currentContext:null}});var h=function(){var t,e=u.getContext(),n=u.getDPR(),i=A.width,a=A.height,s=r.canvasRendererPluginOptions,l=s.dirtyObjectNumThreshold,c=s.dirtyObjectRatioThreshold,h=o.getStats(),d=h.total,p=h.rendered;r.clearFullScreen=r.clearFullScreenLastFrame||!(null!=(t=f.context.renderingPlugins[1])&&t.isFirstTimeRenderingFinished)||o.disableDirtyRectangleRendering()||p>l&&p/d>c,e&&("function"==typeof e.resetTransform?e.resetTransform():e.setTransform(1,0,0,1,0,0),r.clearFullScreen&&r.clearRect(e,0,0,i*n,a*n,A.background))},d=function(t,e){for(var i=[t];i.length>0;){var A,a=i.pop();a.isVisible()&&!a.isCulled()&&(c?r.renderDisplayObjectOptimized(a,e,r.context,lw(r,lC)[lC],n):r.renderDisplayObject(a,e,r.context,lw(r,lC)[lC],n));for(var o=(null==(A=a.sortable)||null==(A=A.sorted)?void 0:A.length)>0?a.sortable.sorted:a.childNodes,s=o.length-1;s>=0;s--)i.push(o[s])}};o.hooks.endFrame.tap(t.tag,function(){if(h(),0===s.root.childNodes.length){r.clearFullScreenLastFrame=!0;return}c=A.renderer.getConfig().enableRenderingOptimization,lw(r,lC)[lC]={restoreStack:[],prevObject:null,currentContext:lw(r,lC)[lC].currentContext},lw(r,lC)[lC].currentContext.clear(),r.clearFullScreenLastFrame=!1;var t=u.getContext(),e=u.getDPR();if(ee(r.dprMatrix,[e,e,1]),t4(r.vpMatrix,r.dprMatrix,a.getOrthoMatrix()),r.clearFullScreen)c?(t.save(),d(s.root,t),t.restore()):d(s.root,t);else{var i=r.safeMergeAABB(r.mergeDirtyAABBs(r.renderQueue));if(nD.isEmpty(i)){r.renderQueue=[];return}var o=r.convertAABB2Rect(i),l=o.x,p=o.y,g=o.width,y=o.height,v=tD(r.vec3a,[l,p,0],r.vpMatrix),b=tD(r.vec3b,[l+g,p,0],r.vpMatrix),B=tD(r.vec3c,[l,p+y,0],r.vpMatrix),w=tD(r.vec3d,[l+g,p+y,0],r.vpMatrix),x=Math.min(v[0],b[0],w[0],B[0]),C=Math.min(v[1],b[1],w[1],B[1]),O=Math.max(v[0],b[0],w[0],B[0]),E=Math.max(v[1],b[1],w[1],B[1]),k=Math.floor(x),F=Math.floor(C),Q=Math.ceil(O-x),M=Math.ceil(E-C);t.save(),r.clearRect(t,k,F,Q,M,A.background),t.beginPath(),t.rect(k,F,Q,M),t.clip(),t.setTransform(r.vpMatrix[0],r.vpMatrix[1],r.vpMatrix[4],r.vpMatrix[5],r.vpMatrix[12],r.vpMatrix[13]),A.renderer.getConfig().enableDirtyRectangleRenderingDebug&&f.dispatchEvent(new ab(oT.DIRTY_RECTANGLE,{dirtyRect:{x:k,y:F,width:Q,height:M}}));var U=i.getMin(),S=(0,tE.A)(U,2),I=S[0],T=S[1],L=i.getMax(),_=(0,tE.A)(L,2),P=_[0],H=_[1];s.root.ownerDocument.elementsFromBBox(I,T,P,H).sort(function(t,e){return t.sortable.renderOrder-e.sortable.renderOrder}).forEach(function(e){e&&e.isVisible()&&!e.isCulled()&&r.renderDisplayObject(e,t,r.context,lw(r,lC)[lC],n)}),t.restore(),r.renderQueue.forEach(function(t){r.saveDirtyAABB(t)}),r.renderQueue=[]}lw(r,lC)[lC].restoreStack.forEach(function(){t.restore()}),lw(r,lC)[lC].restoreStack=[]}),o.hooks.render.tap(t.tag,function(t){r.clearFullScreen||r.renderQueue.push(t)})}},{key:"clearRect",value:function(t,e,n,r,i,A){t.clearRect(e,n,r,i),A&&(t.fillStyle=A,t.fillRect(e,n,r,i))}},{key:"renderDisplayObjectOptimized",value:function(t,e,n,r,i){var A=t.nodeName,a=!1,o=this.context.styleRendererFactory[A],s=this.pathGeneratorFactory[A],l=t.parsedStyle.clipPath;if(l){r.prevObject&&eU(l.getWorldTransform(),r.prevObject.getWorldTransform())||(this.applyWorldTransform(e,l),r.prevObject=null);var c=this.pathGeneratorFactory[l.nodeName];c&&(e.save(),a=!0,e.beginPath(),c(e,l.parsedStyle),e.closePath(),e.clip())}if(o){r.prevObject&&eU(t.getWorldTransform(),r.prevObject.getWorldTransform())||this.applyWorldTransform(e,t);var u=!r.prevObject;if(!u){var f=r.prevObject.nodeName;u=A===nP.TEXT?f!==nP.TEXT:A===nP.IMAGE?f!==nP.IMAGE:f===nP.TEXT||f===nP.IMAGE}o.applyStyleToContext(e,t,u,r),r.prevObject=t}s&&(e.beginPath(),s(e,t.parsedStyle),A!==nP.LINE&&A!==nP.PATH&&A!==nP.POLYLINE&&e.closePath()),o&&o.drawToContext(e,t,lw(this,lC)[lC],this,i),a&&e.restore(),t.dirty(!1)}},{key:"renderDisplayObject",value:function(t,e,n,r,i){var A=t.nodeName,a=r.restoreStack[r.restoreStack.length-1];a&&!(t.compareDocumentPosition(a)&aw.DOCUMENT_POSITION_CONTAINS)&&(e.restore(),r.restoreStack.pop());var o=this.context.styleRendererFactory[A],s=this.pathGeneratorFactory[A],l=t.parsedStyle.clipPath;if(l){this.applyWorldTransform(e,l);var c=this.pathGeneratorFactory[l.nodeName];c&&(e.save(),r.restoreStack.push(t),e.beginPath(),c(e,l.parsedStyle),e.closePath(),e.clip())}o&&(this.applyWorldTransform(e,t),e.save(),this.applyAttributesToContext(e,t)),s&&(e.beginPath(),s(e,t.parsedStyle),A!==nP.LINE&&A!==nP.PATH&&A!==nP.POLYLINE&&e.closePath()),o&&(o.render(e,t.parsedStyle,t,n,this,i),e.restore()),t.dirty(!1)}},{key:"applyAttributesToContext",value:function(t,e){var n=e.parsedStyle,r=n.stroke,i=n.fill,A=n.opacity,a=n.lineDash,o=n.lineDashOffset;a&&t.setLineDash(a),eW(o)||(t.lineDashOffset=o),eW(A)||(t.globalAlpha*=A),eW(r)||Array.isArray(r)||r.isNone||(t.strokeStyle=e.attributes.stroke),eW(i)||Array.isArray(i)||i.isNone||(t.fillStyle=e.attributes.fill)}},{key:"convertAABB2Rect",value:function(t){var e=t.getMin(),n=t.getMax(),r=Math.floor(e[0]),i=Math.floor(e[1]);return{x:r,y:i,width:Math.ceil(n[0])-r,height:Math.ceil(n[1])-i}}},{key:"mergeDirtyAABBs",value:function(t){var e=new nD;return t.forEach(function(t){var n=t.getRenderBounds();e.add(n);var r=t.renderable.dirtyRenderBounds;r&&e.add(r)}),e}},{key:"saveDirtyAABB",value:function(t){var e=t.renderable;e.dirtyRenderBounds||(e.dirtyRenderBounds=new nD);var n=t.getRenderBounds();n&&e.dirtyRenderBounds.update(n.center,n.halfExtents)}},{key:"applyWorldTransform",value:function(t,e,n){n?(tY(this.tmpMat4,e.getLocalTransform()),t4(this.tmpMat4,n,this.tmpMat4)):tY(this.tmpMat4,e.getWorldTransform()),t4(this.tmpMat4,this.vpMatrix,this.tmpMat4),t.setTransform(this.tmpMat4[0],this.tmpMat4[1],this.tmpMat4[4],this.tmpMat4[5],this.tmpMat4[12],this.tmpMat4[13])}},{key:"safeMergeAABB",value:function(){for(var t=new nD,e=arguments.length,n=Array(e),r=0;r0,O=(null==a?void 0:a.alpha)===0,E=!!(B&&B.length),k=!eW(v)&&b>0,F=n.nodeName,Q="inner"===y,M=C&&k&&(F===nP.PATH||F===nP.LINE||F===nP.POLYLINE||O||Q);x&&(t.globalAlpha=l*(void 0===c?1:c),M||lT(n,t,k),lL(t,n,a,o,r,i,A,this.imagePool),M||this.clearShadowAndFilter(t,E,k)),C&&(t.globalAlpha=l*(void 0===f?1:f),t.lineWidth=d,eW(w)||(t.miterLimit=w),eW(p)||(t.lineCap=p),eW(g)||(t.lineJoin=g),M&&(Q&&(t.globalCompositeOperation="source-atop"),lT(n,t,!0),Q&&(l_(t,n,u,r,i,A,this.imagePool),t.globalCompositeOperation=lM.globalCompositeOperation,this.clearShadowAndFilter(t,E,!0))),l_(t,n,u,r,i,A,this.imagePool))}},{key:"clearShadowAndFilter",value:function(t,e,n){if(n&&(t.shadowColor="transparent",t.shadowBlur=0),e){var r=t.filter;!eW(r)&&r.indexOf("drop-shadow")>-1&&(t.filter=r.replace(/drop-shadow\([^)]*\)/,"").trim()||"none")}}}])}((0,tw.A)(function t(e){(0,tB.A)(this,t),this.imagePool=e},[{key:"applyAttributesToContext",value:function(t,e){}},{key:"render",value:function(t,e,n,r,i,A){}},{key:"applyCommonStyleToContext",value:function(t,e,n,r){var i=n?lU:r.prevObject.parsedStyle,A=e.parsedStyle;(n||A.opacity!==i.opacity)&&lS(t,"globalAlpha",eW(A.opacity)?lM.globalAlpha:A.opacity,r.currentContext),(n||A.blend!==i.blend)&&lS(t,"globalCompositeOperation",eW(A.blend)?lM.globalCompositeOperation:A.blend,r.currentContext)}},{key:"applyStrokeFillStyleToContext",value:function(t,e,n,r){var i=n?lU:r.prevObject.parsedStyle,A=e.parsedStyle,a=A.lineWidth,o=void 0===a?lM.lineWidth:a,s=A.fill&&!A.fill.isNone;if(A.stroke&&!A.stroke.isNone&&o>0){(n||e.attributes.stroke!==r.prevObject.attributes.stroke)&&lS(t,"strokeStyle",eW(A.stroke)||Array.isArray(A.stroke)||A.stroke.isNone?lM.strokeStyle:e.attributes.stroke,r.currentContext),(n||A.lineWidth!==i.lineWidth)&&lS(t,"lineWidth",eW(A.lineWidth)?lM.lineWidth:A.lineWidth,r.currentContext),(n||A.lineDash!==i.lineDash)&&lS(t,"lineDash",A.lineDash||lM.lineDash,r.currentContext),(n||A.lineDashOffset!==i.lineDashOffset)&&lS(t,"lineDashOffset",eW(A.lineDashOffset)?lM.lineDashOffset:A.lineDashOffset,r.currentContext);for(var l=0;l4&&void 0!==arguments[4]&&arguments[4];if(e){lS(t,"shadowColor",lM.shadowColor,r.currentContext);for(var A=0;A-1&&lS(t,"filter",o.replace(/drop-shadow\([^)]*\)/,"").trim()||lM.filter,r.currentContext)}else lS(t,"filter",lM.filter,r.currentContext)}},{key:"fillToContext",value:function(t,e,n,r,i){var A=this,a=e.parsedStyle,o=a.fill,s=a.fillRule,l=null;if(Array.isArray(o)&&o.length>0)o.forEach(function(r){var i=lS(t,"fillStyle",lk(r,e,t,A.imagePool),n.currentContext);l=null!=l?l:i,s?t.fill(s):t.fill()});else{if(im(o)){var c=lE(o,e,t,e.ownerDocument.defaultView.context,r,i,this.imagePool);c&&(t.fillStyle=c,l=!0)}s?t.fill(s):t.fill()}null!==l&&lS(t,"fillStyle",l,n.currentContext)}},{key:"strokeToContext",value:function(t,e,n,r,i){var A=this,a=e.parsedStyle.stroke,o=null;if(Array.isArray(a)&&a.length>0)a.forEach(function(r){var i=lS(t,"strokeStyle",lk(r,e,t,A.imagePool),n.currentContext);o=null!=o?o:i,t.stroke()});else{if(im(a)){var s=lE(a,e,t,e.ownerDocument.defaultView.context,r,i,this.imagePool);if(s){var l=lS(t,"strokeStyle",s,n.currentContext);o=null!=o?o:l}}t.stroke()}null!==o&&lS(t,"strokeStyle",o,n.currentContext)}},{key:"drawToContext",value:function(t,e,n,r,i){var A,a=e.nodeName,o=e.parsedStyle,s=o.opacity,l=void 0===s?lM.globalAlpha:s,c=o.fillOpacity,u=void 0===c?lM.fillOpacity:c,f=o.strokeOpacity,h=void 0===f?lM.strokeOpacity:f,d=o.lineWidth,p=void 0===d?lM.lineWidth:d,g=o.fill&&!o.fill.isNone,y=o.stroke&&!o.stroke.isNone&&p>0;if(g||y){var v=!eW(o.shadowColor)&&o.shadowBlur>0,b="inner"===o.shadowType,B=(null==(A=o.fill)?void 0:A.alpha)===0,w=!!(o.filter&&o.filter.length),x=v&&y&&(a===nP.PATH||a===nP.LINE||a===nP.POLYLINE||B||b),C=null;if(g&&(x||this.applyShadowAndFilterStyleToContext(t,e,v,n),C=lS(t,"globalAlpha",l*u,n.currentContext),this.fillToContext(t,e,n,r,i),x||this.clearShadowAndFilterStyleForContext(t,v,w,n)),y){var O=!1,E=lS(t,"globalAlpha",l*h,n.currentContext);if(C=g?C:E,x&&(this.applyShadowAndFilterStyleToContext(t,e,v,n),O=!0,b)){var k=t.globalCompositeOperation;t.globalCompositeOperation="source-atop",this.strokeToContext(t,e,n,r,i),t.globalCompositeOperation=k,this.clearShadowAndFilterStyleForContext(t,v,w,n,!0)}this.strokeToContext(t,e,n,r,i),O&&this.clearShadowAndFilterStyleForContext(t,v,w,n)}null!==C&&lS(t,"globalAlpha",C,n.currentContext)}}}]));function lT(t,e,n){var r=t.parsedStyle,i=r.filter,A=r.shadowColor,a=r.shadowBlur,o=r.shadowOffsetX,s=r.shadowOffsetY;i&&i.length&&(e.filter=t.style.filter),n&&(e.shadowColor=A.toString(),e.shadowBlur=a||0,e.shadowOffsetX=o||0,e.shadowOffsetY=s||0)}function lL(t,e,n,r,i,A,a,o){var s=arguments.length>8&&void 0!==arguments[8]&&arguments[8];Array.isArray(n)?n.forEach(function(n){t.fillStyle=lk(n,e,t,o),s||(r?t.fill(r):t.fill())}):(im(n)&&(t.fillStyle=lE(n,e,t,i,A,a,o)),s||(r?t.fill(r):t.fill()))}function l_(t,e,n,r,i,A,a){var o=arguments.length>7&&void 0!==arguments[7]&&arguments[7];Array.isArray(n)?n.forEach(function(n){t.strokeStyle=lk(n,e,t,a),o||t.stroke()}):(im(n)&&(t.strokeStyle=lE(n,e,t,r,i,A,a)),o||t.stroke())}var lP=function(t){function e(){return(0,tB.A)(this,e),(0,tC.A)(this,e,arguments)}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"renderDownSampled",value:function(t,e,n,r){var i=r.src,A=r.imageCache;A.downSampled?t.drawImage(A.downSampled,Math.floor(r.drawRect[0]),Math.floor(r.drawRect[1]),Math.ceil(r.drawRect[2]),Math.ceil(r.drawRect[3])):this.imagePool.createDownSampledImage(i,n).then(function(){n.ownerDocument&&(n.dirty(),n.ownerDocument.defaultView.context.renderingService.dirty())}).catch(function(t){console.error(t)})}},{key:"renderTile",value:function(t,e,n,r){var i=r.src,A=r.imageCache,a=r.imageRect,o=r.drawRect,s=A.size,l=t.getTransform(),c=l.a,u=l.b,f=l.c,h=l.d,d=l.e,p=l.f;if(t.resetTransform(),!(null!=A&&A.gridSize))return void this.imagePool.createImageTiles(i,[],function(){n.ownerDocument&&(n.dirty(),n.ownerDocument.defaultView.context.renderingService.dirty())},n).catch(function(t){console.error(t)});for(var g=[s[0]/a[2],s[1]/a[3]],y=[A.tileSize[0]/g[0],A.tileSize[1]/g[1]],v=[Math.floor((o[0]-a[0])/y[0]),Math.ceil((o[0]+o[2]-a[0])/y[0])],b=v[0],B=v[1],w=[Math.floor((o[1]-a[1])/y[1]),Math.ceil((o[1]+o[3]-a[1])/y[1])],x=w[0],C=w[1],O=x;O<=C;O++)for(var E=b;E<=B;E++){var k=A.tiles[O][E];if(k){var F=[Math.floor(a[0]+k.tileX*y[0]),Math.floor(a[1]+k.tileY*y[1]),Math.ceil(y[0]),Math.ceil(y[1])];t.drawImage(k.data,F[0],F[1],F[2],F[3])}}t.setTransform(c,u,f,h,d,p)}},{key:"render",value:function(t,n,r){var i=n.x,A=void 0===i?0:i,a=n.y,o=void 0===a?0:a,s=n.width,l=n.height,c=n.src,u=n.shadowColor,f=n.shadowBlur,h=this.imagePool.getImageSync(c,r),d=null==h?void 0:h.img,p=s,g=l;if(d){p||(p=d.width),g||(g=d.height),lT(r,t,!eW(u)&&f>0);try{var y,v,b,B,w,x,C,O,E,k,F,Q,M,U,S,I,T,L,_,P,H=r.ownerDocument.defaultView.getContextService().getDomElement(),j=H.width,N=H.height,D=t.getTransform(),R=D.a,K=D.b,z=D.c,G=D.d,V=D.e,W=D.f,X=t$(R,z,0,0,K,G,0,0,0,0,1,0,V,W,0,1),Y=(y=[A,o,p,g],v=tD(tQ(),[y[0],y[1],0],X),b=tD(tQ(),[y[0]+y[2],y[1],0],X),B=tD(tQ(),[y[0],y[1]+y[3],0],X),w=tD(tQ(),[y[0]+y[2],y[1]+y[3],0],X),[Math.min(v[0],b[0],B[0],w[0]),Math.min(v[1],b[1],B[1],w[1]),Math.max(v[0],b[0],B[0],w[0])-Math.min(v[0],b[0],B[0],w[0]),Math.max(v[1],b[1],B[1],w[1])-Math.min(v[1],b[1],B[1],w[1])]),$=(x=[0,0,j,N],O=(C=(0,tE.A)(x,4))[0],E=C[1],k=C[2],F=C[3],M=(Q=(0,tE.A)(Y,4))[0],U=Q[1],S=Q[2],I=Q[3],T=Math.max(O,M),L=Math.max(E,U),_=Math.min(O+k,M+S),P=Math.min(E+F,U+I),_<=T||P<=L?null:[T,L,_-T,P-L]);if(!$)return;if(!r.ownerDocument.defaultView.getConfig().enableLargeImageOptimization)return void e.renderFull(t,n,r,{image:d,drawRect:[A,o,p,g]});if(Y[2]/h.size[0]<(h.downSamplingRate||.5))return void this.renderDownSampled(t,n,r,{src:c,imageCache:h,drawRect:[A,o,p,g]});if(!ImagePool.isSupportTile)return void e.renderFull(t,n,r,{image:d,drawRect:[A,o,p,g]});this.renderTile(t,n,r,{src:c,imageCache:h,imageRect:Y,drawRect:$})}catch(t){}}}},{key:"drawToContext",value:function(t,e,n,r,i){this.render(t,e.parsedStyle,e)}}],[{key:"renderFull",value:function(t,e,n,r){t.drawImage(r.image,Math.floor(r.drawRect[0]),Math.floor(r.drawRect[1]),Math.ceil(r.drawRect[2]),Math.ceil(r.drawRect[3]))}}])}(lI),lH=function(t){function e(){return(0,tB.A)(this,e),(0,tC.A)(this,e,arguments)}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"render",value:function(t,e,n,r,i,A){n.getBounds();var a=e.lineWidth,o=void 0===a?1:a,s=e.textAlign,l=void 0===s?"start":s,c=e.textBaseline,u=void 0===c?"alphabetic":c,f=e.lineJoin,h=e.miterLimit,d=void 0===h?10:h,p=e.letterSpacing,g=void 0===p?0:p,y=e.stroke,v=e.fill,b=e.fillRule,B=e.fillOpacity,w=void 0===B?1:B,x=e.strokeOpacity,C=void 0===x?1:x,O=e.opacity,E=void 0===O?1:O,k=e.metrics,F=e.x,Q=e.y,M=void 0===Q?0:Q,U=e.dx,S=e.dy,I=e.shadowColor,T=e.shadowBlur,L=e.textDecorationLine,_=k.font,P=k.lines,H=k.height,j=k.lineHeight,N=k.lineMetrics;t.font=_,t.lineWidth=o,t.textAlign="middle"===l?"center":l;var D=u;"alphabetic"===D&&(D="bottom"),t.lineJoin=void 0===f?"miter":f,eW(d)||(t.miterLimit=d);var R=M;"middle"===u?R+=-H/2-j/2:"bottom"===u||"alphabetic"===u||"ideographic"===u?R+=-H:("top"===u||"hanging"===u)&&(R+=-j);var K=(void 0===F?0:F)+(U||0);R+=S||0,1===P.length&&("bottom"===D?(D="middle",R-=.5*H):"top"===D&&(D="middle",R+=.5*H)),t.textBaseline=D,lT(n,t,!eW(I)&&T>0);for(var z=0;z0&&void 0!==arguments[0]?arguments[0]:{};return(0,tB.A)(this,e),(t=(0,tC.A)(this,e)).name="canvas-renderer",t.options=n,t}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"init",value:function(){var t,e=(0,tb.A)({dirtyObjectNumThreshold:500,dirtyObjectRatioThreshold:.8},this.options),n=this.context.imagePool,r=new lI(n),i=(t={},(0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)((0,nm.A)(t,nP.CIRCLE,r),nP.ELLIPSE,r),nP.RECT,r),nP.IMAGE,new lP(n)),nP.TEXT,new lH(n)),nP.LINE,r),nP.POLYLINE,r),nP.POLYGON,r),nP.PATH,r),nP.GROUP,void 0),(0,nm.A)((0,nm.A)((0,nm.A)(t,nP.HTML,void 0),nP.MESH,void 0),nP.FRAGMENT,void 0));this.context.defaultStyleRendererFactory=i,this.context.styleRendererFactory=i,this.addRenderingPlugin(new lO(e))}},{key:"destroy",value:function(){this.removeAllRenderingPlugins(),delete this.context.defaultStyleRendererFactory,delete this.context.styleRendererFactory}}])}(nj),lN=tQ(),lD=tQ(),lR=tQ(),lK=tW(),lz=function(){function t(){var e=this;(0,tB.A)(this,t),this.isHit=function(t,n,r,i){var A=e.context.pointInPathPickerFactory[t.nodeName];if(A){var a=t0(lK,r),o=tD(lD,tT(lR,n[0],n[1],0),a);if(A(t,new nG(o[0],o[1]),i,e.isPointInPath,e.context,e.runtime))return!0}return!1},this.isPointInPath=function(t,n){var r=e.runtime.offscreenCanvasCreator.getOrCreateContext(e.context.config.offscreenCanvas),i=e.context.pathGeneratorFactory[t.nodeName];return i&&(r.beginPath(),i(r,t.parsedStyle),r.closePath()),r.isPointInPath(n.x,n.y)}}return(0,tw.A)(t,[{key:"apply",value:function(e,n){var r,i,A=this,a=e.renderingService,o=e.renderingContext;this.context=e,this.runtime=n;var s=null==(i=o.root)?void 0:i.ownerDocument;a.hooks.pick.tapPromise(t.tag,(r=(0,nT.A)((0,nI.A)().mark(function t(e){return(0,nI.A)().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return t.abrupt("return",A.pick(s,e));case 1:case"end":return t.stop()}},t)})),function(t){return r.apply(this,arguments)})),a.hooks.pickSync.tap(t.tag,function(t){return A.pick(s,t)})}},{key:"pick",value:function(t,e){var n,r=e.topmost,i=e.position,A=tT(lN,i.x,i.y,0),a=t.elementsFromBBox(A[0],A[1],A[0],A[1]),o=[],s=(0,nL.A)(a);try{for(s.s();!(n=s.n()).done;){var l=n.value,c=l.getWorldTransform();if(this.isHit(l,A,c,!1)){var u=AL(l);if(u){var f=u.parsedStyle.clipPath;if(this.isHit(f,A,f.getWorldTransform(),!0)){if(r)return e.picked=[l],e;o.push(l)}}else{if(r)return e.picked=[l],e;o.push(l)}}}}catch(t){s.e(t)}finally{s.f()}return e.picked=o,e}}])}();function lG(t,e,n){var r=t.parsedStyle,i=r.cx,A=r.cy,a=r.r,o=r.fill,s=r.stroke,l=r.lineWidth,c=r.increasedLineWidthForHitTesting,u=r.pointerEvents,f=((void 0===l?1:l)+(void 0===c?0:c))/2,h=nC(void 0===i?0:i,void 0===A?0:A,e.x,e.y),d=AN(void 0===u?"auto":u,o,s),p=(0,tE.A)(d,2),g=p[0],y=p[1];return g&&y||n?h<=a+f:g?h<=a:!!y&&h>=a-f&&h<=a+f}function lV(t,e,n){var r,i,A,a,o,s,l=t.parsedStyle,c=l.cx,u=void 0===c?0:c,f=l.cy,h=void 0===f?0:f,d=l.rx,p=l.ry,g=l.fill,y=l.stroke,v=l.lineWidth,b=l.increasedLineWidthForHitTesting,B=l.pointerEvents,w=e.x,x=e.y,C=AN(void 0===B?"auto":B,g,y),O=(0,tE.A)(C,2),E=O[0],k=O[1],F=((void 0===v?1:v)+(void 0===b?0:b))/2,Q=(w-u)*(w-u),M=(x-h)*(x-h);return E&&k||n?1>=Q/((r=d+F)*r)+M/((i=p+F)*i):E?1>=Q/(d*d)+M/(p*p):!!k&&Q/((A=d-F)*A)+M/((a=p-F)*a)>=1&&1>=Q/((o=d+F)*o)+M/((s=p+F)*s)}function lW(t,e,n,r,i,A){return i>=t&&i<=t+n&&A>=e&&A<=e+r}function lX(t,e,n,r,i,A,a,o){var s=(Math.atan2(o-e,a-t)+2*Math.PI)%(2*Math.PI),l={x:t+n*Math.cos(s),y:e+n*Math.sin(s)};return nC(l.x,l.y,a,o)<=A/2}function lY(t,e,n,r,i,A,a){var o=Math.min(t,n),s=Math.max(t,n),l=Math.min(e,r),c=Math.max(e,r),u=i/2;return!!(A>=o-u&&A<=s+u&&a>=l-u&&a<=c+u)&&function(t,e,n,r,i,A){var a,o,s,l,c,u=[n-t,r-e];if(a=[0,0],u[0]===a[0]&&u[1]===a[1])return Math.sqrt((i-t)*(i-t)+(A-e)*(A-e));var f=[-u[1],u[0]];return(l=(o=f[0])*o+(s=f[1])*s)>0&&(l=1/Math.sqrt(l)),f[0]=f[0]*l,f[1]=f[1]*l,Math.abs((c=[i-t,A-e])[0]*f[0]+c[1]*f[1])}(t,e,n,r,A,a)<=i/2}function l$(t,e,n,r,i){var A=t.length;if(A<2)return!1;for(var a=0;aMath.abs(t)?0:t<0?-1:1}function lJ(t,e,n){var r=!1,i=t.length;if(i<=2)return!1;for(var A=0;A0!=lq(s[1]-n)>0&&0>lq(e-(n-o[1])*(o[0]-s[0])/(o[1]-s[1])-o[0])&&(r=!r)}return r}function lZ(t,e,n){for(var r=!1,i=0;i=i.min[0]&&e.y>=i.min[1]&&e.x<=i.max[0]&&e.y<=i.max[1]}lz.tag="CanvasPicker";var l8=function(t){function e(){var t;(0,tB.A)(this,e);for(var n=arguments.length,r=Array(n),i=0;io?1:a/o,a>o?o/a:1),t.arc(r,A,a>o?a:o,0,2*Math.PI))}function ct(t,e){var n=e.x1,r=e.y1,i=e.x2,A=e.y2,a=e.markerStart,o=e.markerEnd,s=e.markerStartOffset,l=e.markerEndOffset,c=0,u=0,f=0,h=0,d=0;a&&oe(a)&&s&&(c=Math.cos(d=Math.atan2(A-r,i-n))*(s||0),u=Math.sin(d)*(s||0)),o&&oe(o)&&l&&(f=Math.cos(d=Math.atan2(r-A,n-i))*(l||0),h=Math.sin(d)*(l||0)),t.moveTo(n+c,r+u),t.lineTo(i+f,A+h)}function ce(t,e){var n,r=e.markerStart,i=e.markerEnd,A=e.markerStartOffset,a=e.markerEndOffset,o=e.d,s=o.absolutePath,l=o.segments,c=0,u=0,f=0,h=0,d=0;if(r&&oe(r)&&A){var p=r.parentNode.getStartTangent(),g=(0,tE.A)(p,2),y=g[0],v=g[1];n=y[0]-v[0],c=Math.cos(d=Math.atan2(y[1]-v[1],n))*(A||0),u=Math.sin(d)*(A||0)}if(i&&oe(i)&&a){var b=i.parentNode.getEndTangent(),B=(0,tE.A)(b,2),w=B[0],x=B[1];n=w[0]-x[0],f=Math.cos(d=Math.atan2(w[1]-x[1],n))*(a||0),h=Math.sin(d)*(a||0)}for(var C=0;CR?D:R,X=D>R?1:D/R,Y=D>R?R/D:1;t.translate(j,N),t.rotate(G),t.scale(X,Y),t.arc(0,0,W,K,z,!!(1-V)),t.scale(1/X,1/Y),t.rotate(-G),t.translate(-j,-N)}Q&&t.lineTo(O[6]+f,O[7]+h);break;case"Z":t.closePath()}}}function cn(t,e){var n,r=e.markerStart,i=e.markerEnd,A=e.markerStartOffset,a=e.markerEndOffset,o=e.points.points,s=o.length,l=o[0][0],c=o[0][1],u=o[s-1][0],f=o[s-1][1],h=0,d=0,p=0,g=0,y=0;r&&oe(r)&&A&&(n=o[1][0]-o[0][0],h=Math.cos(y=Math.atan2(o[1][1]-o[0][1],n))*(A||0),d=Math.sin(y)*(A||0)),i&&oe(i)&&a&&(n=o[s-1][0]-o[0][0],p=Math.cos(y=Math.atan2(o[s-1][1]-o[0][1],n))*(a||0),g=Math.sin(y)*(a||0)),t.moveTo(l+(h||p),c+(d||g));for(var v=1;v0?1:-1,c=s>0?1:-1,u=l+c===0,f=a.map(function(t){return eY(t,0,Math.min(Math.abs(o)/2,Math.abs(s)/2))}),h=(0,tE.A)(f,4),d=h[0],p=h[1],g=h[2],y=h[3];t.moveTo(l*d+r,A),t.lineTo(o-l*p+r,A),0!==p&&t.arc(o-l*p+r,c*p+A,p,-c*Math.PI/2,l>0?0:Math.PI,u),t.lineTo(o+r,s-c*g+A),0!==g&&t.arc(o-l*g+r,s-c*g+A,g,l>0?0:Math.PI,c>0?Math.PI/2:1.5*Math.PI,u),t.lineTo(l*y+r,s+A),0!==y&&t.arc(l*y+r,s-c*y+A,y,c>0?Math.PI/2:-Math.PI/2,l>0?Math.PI:0,u),t.lineTo(r,c*d+A),0!==d&&t.arc(l*d+r,c*d+A,d,l>0?Math.PI:0,c>0?1.5*Math.PI:Math.PI/2,u)}else t.rect(r,A,o,s)}var cA=function(t){function e(){var t;(0,tB.A)(this,e);for(var n=arguments.length,r=Array(n),i=0;i0&&void 0!==i[0]?i[0]:{}).type,r=e.encoderOptions,t.abrupt("return",this.context.canvas.toDataURL(n,r));case 1:case"end":return t.stop()}},t,this)})),function(){return Ev.apply(this,arguments)})}]),co=function(t){function e(){var t;(0,tB.A)(this,e);for(var n=arguments.length,r=Array(n),i=0;i0&&void 0!==arguments[0]?arguments[0]:{};return(0,tB.A)(this,e),(t=(0,tC.A)(this,e)).name="dragndrop",t.options=n,t}return(0,tO.A)(e,t),(0,tw.A)(e,[{key:"init",value:function(){this.addRenderingPlugin(new cl((0,tb.A)({overlap:"pointer",isDocumentDraggable:!1,isDocumentDroppable:!1,dragstartDistanceThreshold:0,dragstartTimeThreshold:0},this.options)))}},{key:"destroy",value:function(){this.removeAllRenderingPlugins()}},{key:"setOptions",value:function(t){Object.assign(this.plugins[0].dragndropPluginOptions,t)}}])}(nj);let cu=function(t,e,n){var r;return function(){var i=this,A=arguments,a=n&&!r;clearTimeout(r),r=setTimeout(function(){r=null,n||t.apply(i,A)},e),a&&t.apply(i,A)}},cf=function(t,e,n){for(var r=0,i=eX(e)?e.split("."):e;t&&r=r.length)return n(i);let a=new ch,o=r[A++],s=-1;for(let t of i){let e=o(t,++s,i),n=a.get(e);n?n.push(t):a.set(e,[t])}for(let[e,n]of a)a.set(e,t(n,A));return e(a)}(t,0)}let cw=function(t){return"object"==typeof t&&null!==t},cx=function(t){if(!cw(t)||!np(t,"Object"))return!1;if(null===Object.getPrototypeOf(t))return!0;for(var e=t;null!==Object.getPrototypeOf(e);)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e},cC=function(t){for(var e=[],n=1;n`${t}`:"object"==typeof t?t=>JSON.stringify(t):t=>t}class cL extends cM{getDefaultOptions(){return{domain:[],range:[],unknown:cU}}constructor(t){super(t)}map(t){return 0===this.domainIndexMap.size&&cS(this.domainIndexMap,this.getDomain(),this.domainKey),cI({value:this.domainKey(t),mapper:this.domainIndexMap,from:this.getDomain(),to:this.getRange(),notFoundReturn:this.options.unknown})}invert(t){return 0===this.rangeIndexMap.size&&cS(this.rangeIndexMap,this.getRange(),this.rangeKey),cI({value:this.rangeKey(t),mapper:this.rangeIndexMap,from:this.getRange(),to:this.getDomain(),notFoundReturn:this.options.unknown})}rescale(t){let[e]=this.options.domain,[n]=this.options.range;if(this.domainKey=cT(e),this.rangeKey=cT(n),!this.rangeIndexMap){this.rangeIndexMap=new Map,this.domainIndexMap=new Map;return}(!t||t.range)&&this.rangeIndexMap.clear(),(!t||t.domain||t.compare)&&(this.domainIndexMap.clear(),this.sortedDomain=void 0)}clone(){return new cL(this.options)}getRange(){return this.options.range}getDomain(){if(this.sortedDomain)return this.sortedDomain;let{domain:t,compare:e}=this.options;return this.sortedDomain=e?[...t].sort(e):t,this.sortedDomain}}class c_ extends cL{getDefaultOptions(){return{domain:[],range:[0,1],align:.5,round:!1,paddingInner:0,paddingOuter:0,padding:0,unknown:cU,flex:[]}}constructor(t){super(t)}clone(){return new c_(this.options)}getStep(t){return void 0===this.valueStep?1:"number"==typeof this.valueStep?this.valueStep:void 0===t?Array.from(this.valueStep.values())[0]:this.valueStep.get(t)}getBandWidth(t){return void 0===this.valueBandWidth?1:"number"==typeof this.valueBandWidth?this.valueBandWidth:void 0===t?Array.from(this.valueBandWidth.values())[0]:this.valueBandWidth.get(t)}getRange(){return this.adjustedRange}getPaddingInner(){let{padding:t,paddingInner:e}=this.options;return t>0?t:e}getPaddingOuter(){let{padding:t,paddingOuter:e}=this.options;return t>0?t:e}rescale(){super.rescale();let{align:t,domain:e,range:n,round:r,flex:i}=this.options,{adjustedRange:A,valueBandWidth:a,valueStep:o}=function(t){var e;let n,r,{domain:i}=t,A=i.length;if(0===A)return{valueBandWidth:void 0,valueStep:void 0,adjustedRange:[]};if(null==(e=t.flex)?void 0:e.length)return function(t){let e,n,{domain:r,range:i,paddingOuter:A,paddingInner:a,flex:o,round:s,align:l}=t,c=r.length,u=(e=c-o.length)>0?[...o,...Array(e).fill(1)]:e<0?o.slice(0,c):o,[f,h]=i,d=h-f,p=d/(2/c*A+1-1/c*a),g=p*a/c,y=p-c*g,v=(n=u.reduce((t,e)=>Math.min(t,e),1/0))===1/0?[]:u.map(t=>t/n),b=y/v.reduce((t,e)=>t+e),B=new cQ(r.map((t,e)=>{let n=v[e]*b;return[t,s?Math.floor(n):n]})),w=new cQ(r.map((t,e)=>{let n=v[e]*b+g;return[t,s?Math.floor(n):n]})),x=Array.from(w.values()).reduce((t,e)=>t+e),C=f+(d-(x-x/c*a))*l,O=s?Math.round(C):C,E=Array(c);for(let t=0;tu+e*n);return{valueStep:n,valueBandWidth:r,adjustedRange:h}}({align:t,range:n,round:r,flex:i,paddingInner:this.getPaddingInner(),paddingOuter:this.getPaddingOuter(),domain:e});this.valueStep=o,this.valueBandWidth=a,this.adjustedRange=A}}let cP=Math.sqrt(50),cH=Math.sqrt(10),cj=Math.sqrt(2);function cN(t,e,n){let r=(e-t)/Math.max(0,n),i=Math.floor(Math.log(r)/Math.LN10),A=r/10**i;return i>=0?(A>=cP?10:A>=cH?5:A>=cj?2:1)*10**i:-(10**-i)/(A>=cP?10:A>=cH?5:A>=cj?2:1)}function cD(t,e,n){let r=Math.abs(e-t)/Math.max(0,n),i=10**Math.floor(Math.log(r)/Math.LN10),A=r/i;return A>=cP?i*=10:A>=cH?i*=5:A>=cj&&(i*=2),e{let i,A,a=t,o=e;if(a===o&&n>0)return[a];let s=cN(a,o,n);if(0===s||!Number.isFinite(s))return[];if(s>0){a=Math.ceil(a/s),A=Array(i=Math.ceil((o=Math.floor(o/s))-a+1));for(let t=0;t[t.start,t.end])])).sort((t,e)=>t-e).filter(t=>!r.some(({start:e,end:n})=>t>e&&tt.key===r);if(s)return A?A.map(t=>s.data[t]):cz(t)?s.data[Math.round(s.data.length*a.x)]:s.data[i]}function cV(t){return t}function cW(t){return t.reduce((t,e)=>(n,...r)=>e(t(n,...r),...r),cV)}function cX(t){return t.replace(/( |^)[a-z]/g,t=>t.toUpperCase())}function cY(t=""){throw Error(t)}function c$(t,e){let{attributes:n}=e,r=new Set(["id","className"]);for(let[e,i]of Object.entries(n))r.has(e)||t.attr(e,i)}function cq(t){return null!=t&&!Number.isNaN(t)}function cJ(t,e){return cZ(t,e)||{}}function cZ(t,e){let n=Object.entries(t||{}).filter(([t])=>t.startsWith(e)).map(([t,n])=>[cE(t.replace(e,"").trim()),n]).filter(([t])=>!!t);return 0===n.length?null:Object.fromEntries(n)}function c0(t,...e){return Object.fromEntries(Object.entries(t).filter(([t])=>e.every(e=>!t.startsWith(e))))}function c1(t,e){if(void 0===t)return null;if("number"==typeof t)return t;let n=+t.replace("%","");return Number.isNaN(n)?null:n/100*e}function c2(t){return"object"==typeof t&&!(t instanceof Date)&&null!==t&&!Array.isArray(t)}function c4(t){return null===t||!1===t}function c5(t){return new c3([t],null,t,t.ownerDocument)}class c3{constructor(t=null,e=null,n=null,r=null,i=[null,null,null,null,null],A=[],a=[]){this._elements=Array.from(t),this._data=e,this._parent=n,this._document=r,this._enter=i[0],this._update=i[1],this._exit=i[2],this._merge=i[3],this._split=i[4],this._transitions=A,this._facetElements=a}selectAll(t){return new c3("string"==typeof t?this._parent.querySelectorAll(t):t,null,this._elements[0],this._document)}selectFacetAll(t){let e="string"==typeof t?this._parent.querySelectorAll(t):t;return new c3(this._elements,null,this._parent,this._document,void 0,void 0,e)}select(t){let e="string"==typeof t?this._parent.querySelectorAll(t)[0]||null:t;return new c3([e],null,e,this._document)}append(t){let e="function"==typeof t?t:()=>this.createElement(t),n=[];if(null!==this._data){for(let t=0;tt,n=()=>null){let r=[],i=[],A=new Set(this._elements),a=[],o=new Set,s=new Map(this._elements.map((t,n)=>[e(t.__data__,n),t])),l=new Map(this._facetElements.map((t,n)=>[e(t.__data__,n),t])),c=cy(this._elements,t=>n(t.__data__));for(let u=0;ut,e=t=>t,n=t=>t.remove(),r=t=>t,i=t=>t.remove()){let A=t(this._enter),a=e(this._update),o=n(this._exit),s=r(this._merge),l=i(this._split);return a.merge(A).merge(o).merge(s).merge(l)}remove(){for(let t=0;tt.finished)).then(()=>{let e=this._elements[t];e.__removed__&&e.remove()});else{let e=this._elements[t];e.__removed__&&e.remove()}}return new c3([],null,this._parent,this._document,void 0,this._transitions)}each(t){for(let e=0;ee:e;return this.each(function(r,i,A){void 0!==e&&(A[t]=n(r,i,A))})}style(t,e){let n="function"!=typeof e?()=>e:e;return this.each(function(r,i,A){void 0!==e&&(A.style[t]=n(r,i,A))})}transition(t){let e="function"!=typeof t?()=>t:t,{_transitions:n}=this;return this.each(function(t,r,i){n[r]=e(t,r,i)})}on(t,e){return this.each(function(n,r,i){i.addEventListener(t,e)}),this}call(t,...e){return t(this,...e),this}node(){return this._elements[0]}nodes(){return this._elements}transitions(){return this._transitions}parent(){return this._parent}}c3.registry={g:ou,rect:ox,circle:oo,path:ov,text:oO,ellipse:oc,image:od,line:og,polygon:ob,polyline:ow,html:oh};let c6="beforechangesize",c8="afterchangesize",c9={abs:Math.abs,ceil:Math.ceil,floor:Math.floor,max:Math.max,min:Math.min,round:Math.round,sqrt:Math.sqrt,pow:Math.pow};class c7 extends Error{constructor(t,e,n){super(t),this.position=e,this.token=n,this.name="ExpressionError"}}(Em=EE||(EE={}))[Em.STRING=0]="STRING",Em[Em.NUMBER=1]="NUMBER",Em[Em.BOOLEAN=2]="BOOLEAN",Em[Em.NULL=3]="NULL",Em[Em.IDENTIFIER=4]="IDENTIFIER",Em[Em.OPERATOR=5]="OPERATOR",Em[Em.FUNCTION=6]="FUNCTION",Em[Em.DOT=7]="DOT",Em[Em.BRACKET_LEFT=8]="BRACKET_LEFT",Em[Em.BRACKET_RIGHT=9]="BRACKET_RIGHT",Em[Em.PAREN_LEFT=10]="PAREN_LEFT",Em[Em.PAREN_RIGHT=11]="PAREN_RIGHT",Em[Em.COMMA=12]="COMMA",Em[Em.QUESTION=13]="QUESTION",Em[Em.COLON=14]="COLON",Em[Em.DOLLAR=15]="DOLLAR";let ut=new Set([32,9,10,13]),ue=new Set([43,45,42,47,37,33,38,124,61,60,62]),un=new Map([["true",EE.BOOLEAN],["false",EE.BOOLEAN],["null",EE.NULL]]),ur=new Map([["===",!0],["!==",!0],["<=",!0],[">=",!0],["&&",!0],["||",!0],["+",!0],["-",!0],["*",!0],["/",!0],["%",!0],["!",!0],["<",!0],[">",!0]]),ui=new Map([[46,EE.DOT],[91,EE.BRACKET_LEFT],[93,EE.BRACKET_RIGHT],[40,EE.PAREN_LEFT],[41,EE.PAREN_RIGHT],[44,EE.COMMA],[63,EE.QUESTION],[58,EE.COLON],[36,EE.DOLLAR]]),uA=new Map;for(let[t,e]of ui.entries())uA.set(t,{type:e,value:String.fromCharCode(t)});function ua(t){return t>=48&&t<=57}function uo(t){return t>=97&&t<=122||t>=65&&t<=90||95===t}(Eb=Ek||(Ek={}))[Eb.Program=0]="Program",Eb[Eb.Literal=1]="Literal",Eb[Eb.Identifier=2]="Identifier",Eb[Eb.MemberExpression=3]="MemberExpression",Eb[Eb.CallExpression=4]="CallExpression",Eb[Eb.BinaryExpression=5]="BinaryExpression",Eb[Eb.UnaryExpression=6]="UnaryExpression",Eb[Eb.ConditionalExpression=7]="ConditionalExpression";let us=new Map([["||",2],["&&",3],["===",4],["!==",4],[">",5],[">=",5],["<",5],["<=",5],["+",6],["-",6],["*",7],["/",7],["%",7],["!",8]]),ul={type:Ek.Literal,value:null},uc={type:Ek.Literal,value:!0},uu={type:Ek.Literal,value:!1};var uf=function(t){return t};let uh=function(t,e){void 0===e&&(e=uf);var n={};return nv(t)&&!eW(t)&&Object.keys(t).forEach(function(r){n[r]=e(t[r],r)}),n};function ud(t){var e,n,r,i=t||1;function A(t,A){++e>i&&(r=n,a(1),++e),n[t]=A}function a(t){e=0,n=Object.create(null),t||(r=Object.create(null))}return a(),{clear:a,has:function(t){return void 0!==n[t]||void 0!==r[t]},get:function(t){var e=n[t];return void 0!==e?e:void 0!==(e=r[t])?(A(t,e),e):void 0},set:function(t,e){void 0!==n[t]?n[t]=e:A(t,e)}}}function up(t,e=(...t)=>`${t[0]}`,n=16){let r=ud(n);return(...n)=>{let i=e(...n),A=r.get(i);return r.has(i)?r.get(i):(A=t(...n),r.set(i,A),A)}}ud(3);let ug=["style","encode","labels","children"],uy=up(t=>{let e,n,r,i,A,a,o,s,l,c,u,f,h,d=(u=(t=>{let e=t.length,n=Array(Math.ceil(e/3)),r=0,i=0;for(;ie>=n?null:u[e],i=()=>u[e++],A=t=>{let e=r();return null!==e&&e.type===t},a=t=>t.type===EE.OPERATOR?us.get(t.value)||-1:t.type===EE.DOT||t.type===EE.BRACKET_LEFT?9:t.type===EE.QUESTION?1:-1,o=t=>{let n,a;if(i().type===EE.DOT){if(!A(EE.IDENTIFIER)){let t=r();throw new c7("Expected property name",e,t?t.value:"")}let t=i();n={type:Ek.Identifier,name:t.value},a=!1}else{if(n=l(0),!A(EE.BRACKET_RIGHT)){let t=r();throw new c7("Expected closing bracket",e,t?t.value:"")}i(),a=!0}return{type:Ek.MemberExpression,object:t,property:n,computed:a}},s=()=>{let t=r();if(!t)throw new c7("Unexpected end of input",e,"");if(t.type===EE.OPERATOR&&("!"===t.value||"-"===t.value)){i();let e=s();return{type:Ek.UnaryExpression,operator:t.value,argument:e,prefix:!0}}switch(t.type){case EE.NUMBER:return i(),{type:Ek.Literal,value:Number(t.value)};case EE.STRING:return i(),{type:Ek.Literal,value:t.value};case EE.BOOLEAN:return i(),"true"===t.value?uc:uu;case EE.NULL:return i(),ul;case EE.IDENTIFIER:return i(),{type:Ek.Identifier,name:t.value};case EE.FUNCTION:return(()=>{let t=i(),n=[];if(!A(EE.PAREN_LEFT)){let t=r();throw new c7("Expected opening parenthesis after function name",e,t?t.value:"")}for(i();;){if(A(EE.PAREN_RIGHT)){i();break}if(!r()){let t=r();throw new c7("Expected closing parenthesis",e,t?t.value:"")}if(n.length>0){if(!A(EE.COMMA)){let t=r();throw new c7("Expected comma between function arguments",e,t?t.value:"")}i()}let t=l(0);n.push(t)}return{type:Ek.CallExpression,callee:{type:Ek.Identifier,name:t.value},arguments:n}})();case EE.PAREN_LEFT:{i();let t=l(0);if(!A(EE.PAREN_RIGHT)){let t=r();throw new c7("Expected closing parenthesis",e,t?t.value:"")}return i(),t}default:throw new c7(`Unexpected token: ${t.type}`,e,t.value)}},c=(l=(t=0)=>{let c=s();for(;e")}i();let n=l(0);c={type:Ek.ConditionalExpression,test:c,consequent:t,alternate:n}}}return c})(),f={type:Ek.Program,body:c},h=((t={},e={})=>({context:t,functions:e}))({},c9),(t={})=>{let e,n;return e=h,t&&(e={...h,context:{...h.context,...t}}),(n=t=>{switch(t.type){case Ek.Literal:return t.value;case Ek.Identifier:if(!(t.name in e.context))throw new c7(`Undefined variable: ${t.name}`);return e.context[t.name];case Ek.MemberExpression:let r=n(t.object);if(null==r)throw new c7("Cannot access property of null or undefined");return r[t.computed?n(t.property):t.property.name];case Ek.CallExpression:let i=e.functions[t.callee.name];if(!i)throw new c7(`Undefined function: ${t.callee.name}`);return i(...t.arguments.map(t=>n(t)));case Ek.BinaryExpression:if("&&"===t.operator){let e=n(t.left);return e?n(t.right):e}if("||"===t.operator)return n(t.left)||n(t.right);let A=n(t.left),a=n(t.right);switch(t.operator){case"+":return A+a;case"-":return A-a;case"*":return A*a;case"/":return A/a;case"%":return A%a;case"===":return A===a;case"!==":return A!==a;case">":return A>a;case">=":return A>=a;case"<":return A{let e=Array.from({length:t.length},(t,e)=>String.fromCharCode(97+e)),n=Object.fromEntries(t.map((t,n)=>[e[n],t]));return d(Object.assign(Object.assign({},n),{global:Object.assign({},n)}))}},t=>t,128),uv=function(t){var e=cO(t);return e.charAt(0).toUpperCase()+e.substring(1)};function um(t,e){if(!isFinite(t)||0===t)return null;var n=(t=e?t.toExponential(e-1):t.toExponential()).indexOf("e"),r=t.slice(0,n);return[r.length>1?r[0]+r.slice(2):r,+t.slice(n+1)]}var ub=/^(?:(.)?([<>=^]))?([+\-( ])?([$#])?(0)?(\d+)?(,)?(\.\d+)?(~)?([a-z%])?$/i;function uB(t){var e;if(!(e=ub.exec(t)))throw Error("invalid format: "+t);return new uw({fill:e[1],align:e[2],sign:e[3],symbol:e[4],zero:e[5],width:e[6],comma:e[7],precision:e[8]&&e[8].slice(1),trim:e[9],type:e[10]})}function uw(t){this.fill=void 0===t.fill?" ":t.fill+"",this.align=void 0===t.align?">":t.align+"",this.sign=void 0===t.sign?"-":t.sign+"",this.symbol=void 0===t.symbol?"":t.symbol+"",this.zero=!!t.zero,this.width=void 0===t.width?void 0:+t.width,this.comma=!!t.comma,this.precision=void 0===t.precision?void 0:+t.precision,this.trim=!!t.trim,this.type=void 0===t.type?"":t.type+""}function ux(t,e){var n=um(t,e);if(!n)return t+"";var r=n[0],i=n[1];return i<0?"0."+Array(-i).join("0")+r:r.length>i+1?r.slice(0,i+1)+"."+r.slice(i+1):r+Array(i-r.length+2).join("0")}uB.prototype=uw.prototype,uw.prototype.toString=function(){return this.fill+this.align+this.sign+this.symbol+(this.zero?"0":"")+(void 0===this.width?"":Math.max(1,0|this.width))+(this.comma?",":"")+(void 0===this.precision?"":"."+Math.max(0,0|this.precision))+(this.trim?"~":"")+this.type};let uC={"%":(t,e)=>(100*t).toFixed(e),b:t=>Math.round(t).toString(2),c:t=>t+"",d:function(t){return Math.abs(t=Math.round(t))>=1e21?t.toLocaleString("en").replace(/,/g,""):t.toString(10)},e:(t,e)=>t.toExponential(e),f:(t,e)=>t.toFixed(e),g:(t,e)=>t.toPrecision(e),o:t=>Math.round(t).toString(8),p:(t,e)=>ux(100*t,e),r:ux,s:function(t,e){var n=um(t,e);if(!n)return EF=void 0,t.toPrecision(e);var r=n[0],i=n[1],A=i-(EF=3*Math.max(-8,Math.min(8,Math.floor(i/3))))+1,a=r.length;return A===a?r:A>a?r+Array(A-a+1).join("0"):A>0?r.slice(0,A)+"."+r.slice(A):"0."+Array(1-A).join("0")+um(t,Math.max(0,e+A-1))[0]},X:t=>Math.round(t).toString(16).toUpperCase(),x:t=>Math.round(t).toString(16)};function uO(t){return t}var uE=Array.prototype.map,uk=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"];function uF(t,e){return Object.entries(t).reduce((n,[r,i])=>(n[r]=e(i,r,t),n),{})}function uQ(t){return t.map((t,e)=>e)}function uM(t){return t[t.length-1]}function uU(t,e){let n=[[],[]];return t.forEach(t=>{n[+!e(t)].push(t)}),n}EM=(EQ=function(t){var e,n,r,i=void 0===t.grouping||void 0===t.thousands?uO:(e=uE.call(t.grouping,Number),n=t.thousands+"",function(t,r){for(var i=t.length,A=[],a=0,o=e[0],s=0;i>0&&o>0&&(s+o+1>r&&(o=Math.max(1,r-s)),A.push(t.substring(i-=o,i+o)),!((s+=o+1)>r));)o=e[a=(a+1)%e.length];return A.reverse().join(n)}),A=void 0===t.currency?"":t.currency[0]+"",a=void 0===t.currency?"":t.currency[1]+"",o=void 0===t.decimal?".":t.decimal+"",s=void 0===t.numerals?uO:(r=uE.call(t.numerals,String),function(t){return t.replace(/[0-9]/g,function(t){return r[+t]})}),l=void 0===t.percent?"%":t.percent+"",c=void 0===t.minus?"−":t.minus+"",u=void 0===t.nan?"NaN":t.nan+"";function f(t,e){var n=(t=uB(t)).fill,r=t.align,f=t.sign,h=t.symbol,d=t.zero,p=t.width,g=t.comma,y=t.precision,v=t.trim,b=t.type;"n"===b?(g=!0,b="g"):uC[b]||(void 0===y&&(y=12),v=!0,b="g"),(d||"0"===n&&"="===r)&&(d=!0,n="0",r="=");var B=(e&&void 0!==e.prefix?e.prefix:"")+("$"===h?A:"#"===h&&/[boxX]/.test(b)?"0"+b.toLowerCase():""),w=("$"===h?a:/[%p]/.test(b)?l:"")+(e&&void 0!==e.suffix?e.suffix:""),x=uC[b],C=/[defgprs%]/.test(b);function O(t){var e,A,a,l=B,h=w;if("c"===b)h=x(t)+h,t="";else{var O=(t*=1)<0||1/t<0;if(t=isNaN(t)?u:x(Math.abs(t),y),v&&(t=function(t){t:for(var e,n=t.length,r=1,i=-1;r0&&(i=0)}return i>0?t.slice(0,i)+t.slice(e+1):t}(t)),O&&0==+t&&"+"!==f&&(O=!1),l=(O?"("===f?f:c:"-"===f||"("===f?"":f)+l,h=("s"!==b||isNaN(t)||void 0===EF?"":uk[8+EF/3])+h+(O&&"("===f?")":""),C){for(e=-1,A=t.length;++e(a=t.charCodeAt(e))||a>57){h=(46===a?o+t.slice(e+1):t.slice(e))+h,t=t.slice(0,e);break}}}g&&!d&&(t=i(t,1/0));var E=l.length+t.length+h.length,k=E>1)+l+t+h+k.slice(E);break;default:t=k+l+t+h}return s(t)}return y=void 0===y?6:/[gprs]/.test(b)?Math.max(1,Math.min(21,y)):Math.max(0,Math.min(20,y)),O.toString=function(){return t+""},O}return{format:f,formatPrefix:function(t,e){var n,r=3*Math.max(-8,Math.min(8,Math.floor(((n=um(Math.abs(n=e)))?n[1]:NaN)/3))),i=Math.pow(10,-r),A=f(((t=uB(t)).type="f",t),{suffix:uk[8+r/3]});return function(t){return A(i*t)}}}}({thousands:",",grouping:[3],currency:["$",""]})).format,EQ.formatPrefix;let uS=function(t){return null!==t&&"function"!=typeof t&&isFinite(t.length)};var uI=function(t,e){if(t===e)return!0;if(!t||!e||eX(t)||eX(e))return!1;if(uS(t)||uS(e)){if(t.length!==e.length)return!1;for(var n=!0,r=0;r=e)&&(n=e);else{let r=-1;for(let i of t)null!=(i=e(i,++r,t))&&(n=i)&&(n=i)}return n}let u_=(t={})=>{var e,n;let r=Object.assign(Object.assign({},{startAngle:-Math.PI/2,endAngle:3*Math.PI/2,innerRadius:0,outerRadius:1}),t);return Object.assign(Object.assign({},r),(e=r.startAngle,n=r.endAngle,e%=2*Math.PI,n%=2*Math.PI,e<0&&(e=2*Math.PI+e),n<0&&(n=2*Math.PI+n),e>=n&&(n+=2*Math.PI),{startAngle:e,endAngle:n}))},uP=t=>{let{startAngle:e,endAngle:n,innerRadius:r,outerRadius:i}=u_(t);return[["translate",0,.5],["reflect.y"],["translate",0,-.5],["polar",e,n,r,i]]};uP.props={};let uH=(t={})=>Object.assign(Object.assign({},{startAngle:-Math.PI/2,endAngle:3*Math.PI/2,innerRadius:0,outerRadius:1}),t),uj=t=>{let{startAngle:e,endAngle:n,innerRadius:r,outerRadius:i}=uH(t);return[["transpose"],["translate",.5,.5],["reflect"],["translate",-.5,-.5],...uP({startAngle:e,endAngle:n,innerRadius:r,outerRadius:i})]};function uN(t,e,n){return Math.max(e,Math.min(t,n))}function uD(t,e=10){return"number"!=typeof t||1e-15>Math.abs(t)?t:parseFloat(t.toFixed(e))}function uR(t){return`.g2-${t}`}uj.props={};let uK=[["legendCategory",[[["color","discrete"],["opacity","discrete"],["shape","discrete"],["size","constant"]],[["color","discrete"],["opacity","constant"],["shape","discrete"],["size","constant"]],[["color","discrete"],["opacity","discrete"],["shape","constant"],["size","constant"]],[["color","discrete"],["opacity","constant"],["shape","constant"],["size","constant"]],[["color","constant"],["opacity","discrete"],["shape","discrete"],["size","constant"]],[["color","constant"],["opacity","constant"],["shape","discrete"],["size","constant"]],[["color","constant"],["opacity","discrete"],["shape","constant"],["size","constant"]],[["color","discrete"],["shape","discrete"],["size","constant"]],[["color","discrete"],["opacity","discrete"],["shape","discrete"]],[["color","discrete"],["opacity","discrete"],["size","constant"]],[["color","discrete"],["opacity","constant"],["shape","discrete"]],[["color","discrete"],["opacity","constant"],["size","constant"]],[["color","discrete"],["shape","constant"],["size","constant"]],[["color","discrete"],["opacity","discrete"],["shape","constant"]],[["color","discrete"],["opacity","constant"],["shape","constant"]],[["color","constant"],["shape","discrete"],["size","constant"]],[["color","constant"],["opacity","discrete"],["shape","discrete"]],[["color","constant"],["opacity","discrete"],["size","constant"]],[["color","constant"],["opacity","constant"],["shape","discrete"]],[["color","constant"],["opacity","discrete"],["shape","constant"]],[["color","discrete"],["shape","discrete"]],[["color","discrete"],["size","constant"]],[["color","discrete"],["opacity","discrete"]],[["color","discrete"],["opacity","constant"]],[["color","discrete"],["shape","constant"]],[["color","constant"],["shape","discrete"]],[["color","constant"],["size","constant"]],[["color","constant"],["opacity","discrete"]],[["color","discrete"]]]],["legendContinuousSize",[[["color","continuous"],["opacity","continuous"],["size","continuous"]],[["color","constant"],["opacity","continuous"],["size","continuous"]],[["color","continuous"],["size","continuous"]],[["color","constant"],["size","continuous"]],[["size","continuous"],["opacity","continuous"]],[["size","continuous"]]]],["legendContinuousBlockSize",[[["color","distribution"],["opacity","distribution"],["size","distribution"]],[["color","distribution"],["size","distribution"]]]],["legendContinuousBlock",[[["color","distribution"],["opacity","continuous"]],[["color","distribution"]]]],["legendContinuous",[[["color","continuous"],["opacity","continuous"]],[["color","continuous"]],[["opacity","continuous"]]]]],uz=["lineX","lineY","rangeX","rangeY","range","connector"];var uG=n(37705);function uV(t){let{transformations:e}=t.getOptions();return e.map(([t])=>t).filter(t=>"transpose"===t).length%2!=0}function uW(t){let{transformations:e}=t.getOptions();return e.some(([t])=>"polar"===t)}function uX(t){let{transformations:e}=t.getOptions();return e.some(([t])=>"reflect"===t)&&e.some(([t])=>t.startsWith("transpose"))}function uY(t){let{transformations:e}=t.getOptions();return e.some(([t])=>"helix"===t)}function u$(t){let{transformations:e}=t.getOptions();return e.some(([t])=>"parallel"===t)}function uq(t){let{transformations:e}=t.getOptions();return e.some(([t])=>"fisheye"===t)}function uJ(t){return uY(t)||uW(t)}function uZ(t){let{transformations:e}=t.getOptions(),[,,,n,r]=e.find(t=>"polar"===t[0]);return[+n,+r]}function u0(t,e=!0){let{transformations:n}=t.getOptions(),[,r,i]=n.find(t=>"polar"===t[0]);return e?[180*r/Math.PI,180*i/Math.PI]:[r,i]}function u1(t){u4(t,!0)}function u2(t){u4(t,!1)}function u4(t,e){var n=e?"visible":"hidden";!function t(e,n){n(e),e.children&&e.children.forEach(function(e){e&&t(e,n)})}(t,function(t){t.attr("visibility",n)})}function u5(t){if(!t)return{enter:!1,update:!1,exit:!1};var e=["enter","update","exit"],n=Object.fromEntries(Object.entries(t).filter(function(t){var n=(0,e$.zs)(t,1)[0];return!e.includes(n)}));return Object.fromEntries(e.map(function(e){return"boolean"!=typeof t&&"enter"in t&&"update"in t&&"exit"in t?!1===t[e]?[e,!1]:[e,(0,e$.Cl)((0,e$.Cl)({},t[e]),n)]:[e,n]}))}function u3(t,e){t?t.finished.then(e):e()}function u6(t,e){"update"in t?t.update(e):t.attr(e)}function u8(t,e,n){return 0===e.length?null:n?t.animate(e,n):(u6(t,{style:e.slice(-1)[0]}),null)}function u9(t,e,n){var r={},i={};return(Object.entries(e).forEach(function(e){var n=(0,e$.zs)(e,2),A=n[0],a=n[1];if(!eW(a)){var o=t.style[A]||t.parsedStyle[A]||0;o!==a&&(r[A]=o,i[A]=a)}}),n)?u8(t,[r,i],(0,e$.Cl)({fill:"both"},n)):(u6(t,i),null)}var u7=function(t,e,n,r){void 0===n&&(n=0),void 0===r&&(r=5),Object.entries(e).forEach(function(i){var A=(0,e$.zs)(i,2),a=A[0],o=A[1];Object.prototype.hasOwnProperty.call(e,a)&&(o?cx(o)?(cx(t[a])||(t[a]={}),n="A"&&n<="Z"};function fN(t,e,n){void 0===n&&(n=!1);var r={};return Object.entries(t).forEach(function(t){var i=(0,e$.zs)(t,2),A=i[0],a=i[1];if("className"===A||"class"===A);else if(fj(A,"show")&&fj(fH(A,"show"),e)!==n)A==="".concat("show").concat(fP(e))?r[A]=a:r[A.replace(new RegExp(fP(e)),"")]=a;else if(!fj(A,"show")&&fj(A,e)!==n){var o=fH(A,e);"filter"===o&&"function"==typeof a||(r[o]=a)}}),r}function fD(t,e){return Object.entries(t).reduce(function(t,n){var r=(0,e$.zs)(n,2),i=r[0],A=r[1];return i.startsWith("show")?t["show".concat(e).concat(i.slice(4))]=A:t["".concat(e).concat(fP(i))]=A,t},{})}function fR(t,e){void 0===e&&(e=["x","y","class","className"]);var n=["transform","transformOrigin","anchor","visibility","pointerEvents","zIndex","cursor","clipPath","clipPathTargets","offsetPath","offsetPathTargets","offsetDistance","draggable","droppable"],r={},i={};return Object.entries(t).forEach(function(t){var A=(0,e$.zs)(t,2),a=A[0],o=A[1];e.includes(a)||(-1!==n.indexOf(a)?i[a]=o:r[a]=o)}),[r,i]}function fK(t,e){return ny(t)?t.apply(void 0,(0,e$.fX)([],(0,e$.zs)(e),!1)):t}function fz(t,e){return t.style.opacity||(t.style.opacity=1),u9(t,{opacity:0},e)}var fG=["$el","cx","cy","d","dx","dy","fill","fillOpacity","filter","fontFamily","fontSize","fontStyle","fontVariant","fontWeight","height","img","increasedLineWidthForHitTesting","innerHTML","isBillboard","billboardRotation","isSizeAttenuation","isClosed","isOverflowing","leading","letterSpacing","lineDash","lineHeight","lineWidth","markerEnd","markerEndOffset","markerMid","markerStart","markerStartOffset","maxLines","metrics","miterLimit","offsetX","offsetY","opacity","path","points","r","radius","rx","ry","shadowColor","src","stroke","strokeOpacity","text","textAlign","textBaseline","textDecorationColor","textDecorationLine","textDecorationStyle","textOverflow","textPath","textPathSide","textPathStartOffset","transform","transformOrigin","visibility","width","wordWrap","wordWrapWidth","x","x1","x2","y","y1","y2","z1","z2","zIndex"];function fV(t){var e={};for(var n in t)fG.includes(n)&&(e[n]=t[n]);return e}var fW=fc({lineGroup:"line-group",line:"line",regionGroup:"region-group",region:"region"},"grid");function fX(t){return t.reduce(function(t,e,n){return t.push((0,e$.fX)([0===n?"M":"L"],(0,e$.zs)(e),!1)),t},[])}function fY(t,e,n){if("surround"===e.type){var r=e.connect,i=e.center;if("line"===(void 0===r?"line":r))return fX(t);if(!i)return[];var A=fI(t[0],i),a=+!n;return t.reduce(function(t,e,n){return 0===n?t.push((0,e$.fX)(["M"],(0,e$.zs)(e),!1)):t.push((0,e$.fX)(["A",A,A,0,0,a],(0,e$.zs)(e),!1)),t},[])}return fX(t)}var f$=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return(0,e$.C6)(e,t),e.prototype.render=function(t,e){t.type,t.center,t.areaFill,t.closed;var n,r,i,A,a,o=(0,e$.Tt)(t,["type","center","areaFill","closed"]),s=(r=void 0===(n=t.data)?[]:n,t.closed?r.map(function(t){var e=t.points,n=(0,e$.zs)(e,1)[0];return(0,e$.Cl)((0,e$.Cl)({},t),{points:(0,e$.fX)((0,e$.fX)([],(0,e$.zs)(e),!1),[n],!1)})}):r),l=fl(e).maybeAppendByClassName(fW.lineGroup,"g"),c=fl(e).maybeAppendByClassName(fW.regionGroup,"g"),u=(i=t.animate,A=t.isBillboard,a=s.map(function(e,n){return{id:e.id||"grid-line-".concat(n),d:fY(e.points,t)}}),l.selectAll(fW.line.class).data(a,function(t){return t.id}).join(function(t){return t.append("path").each(function(t,e){var n=fK(fV((0,e$.Cl)({d:t.d},o)),[t,e,a]);this.attr((0,e$.Cl)({class:fW.line.name,stroke:"#D9D9D9",lineWidth:1,lineDash:[4,4],isBillboard:A},n))})},function(t){return t.transition(function(t,e){return u9(this,fK(fV((0,e$.Cl)({d:t.d},o)),[t,e,a]),i.update)})},function(t){return t.transition(function(){var t=this,e=fz(this,i.exit);return u3(e,function(){return t.remove()}),e})}).transitions()),f=function(t,e,n){var r=n.animate,i=n.connect,A=n.areaFill;if(e.length<2||!A||!i)return[];for(var a=Array.isArray(A)?A:[A,"transparent"],o=[],s=0;s180),",").concat(t>e?0:1,",").concat(y,",").concat(v)}function hn(t){var e=(0,e$.zs)(t,2),n=(0,e$.zs)(e[0],2),r=n[0],i=n[1],A=(0,e$.zs)(e[1],2);return{x1:r,y1:i,x2:A[0],y2:A[1]}}function hr(t){var e=t.type,n=t.gridCenter;return"linear"===e?n:n||t.center}function hi(t,e,n,r,i){return void 0===r&&(r=!0),void 0===i&&(i=!1),!!r&&t===e||!!i&&t===n||t>e&&tr&&(n=e,A(1),++t),e[i]=a}function A(r){t=0,e=Object.create(null),r||(n=Object.create(null))}return A(),{clear:A,has:function(t){return void 0!==e[t]||void 0!==n[t]},get:function(t){var r=e[t];return void 0!==r?r:void 0!==(r=n[t])?(i(t,r),r):void 0},set:function(t,n){void 0!==e[t]?e[t]=n:i(t,n)}}}());var r=ha.get(EB);if(r.has(n))return r.get(n);var i=EB.apply(this,t);return r.set(n,i),i}),hs=function(t){var e=t.style.fontFamily||"sans-serif",n=t.style.fontWeight||"normal",r=t.style.fontStyle||"normal",i=t.style.fontVariant,A=t.style.fontSize;return{fontSize:A="object"==typeof A?A.value:A,fontFamily:e,fontWeight:n,fontStyle:r,fontVariant:i}};function hl(t){return"text"===t.nodeName?t:"g"===t.nodeName&&1===t.children.length&&"text"===t.children[0].nodeName?t.children[0]:null}function hc(t,e){var n=hl(t);n&&n.attr(e)}function hu(t,e,n){void 0===n&&(n="..."),hc(t,{wordWrap:!0,wordWrapWidth:e,maxLines:1,textOverflow:n})}function hf(t,e){if(e)try{var n=e.replace(/translate\(([+-]*[\d]+[%]*),[ ]*([+-]*[\d]+[%]*)\)/g,function(e,n,r){var i,A,a,o;return"translate(".concat((A=(i=t.getBBox()).width,a=i.height,[(o=(0,e$.zs)([n,r].map(function(t,e){var n;return t.includes("%")?parseFloat((null==(n=t.match(/[+-]?([0-9]*[.])?[0-9]+/))?void 0:n[0])||"0")/100*(0===e?A:a):t}),2))[0],o[1]]),")")});t.attr("transform",n)}catch(t){}}function hh(t){if(eG(t))return[t,t,t,t];if(nn(t)){var e=t.length;if(1===e)return[t[0],t[0],t[0],t[0]];if(2===e)return[t[0],t[1],t[0],t[1]];if(3===e)return[t[0],t[1],t[2],t[1]];if(4===e)return t}return[0,0,0,0]}var hd=function(){function t(t,e,n,r){this.set(t,e,n,r)}return Object.defineProperty(t.prototype,"left",{get:function(){return this.x1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"top",{get:function(){return this.y1},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"right",{get:function(){return this.x2},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"bottom",{get:function(){return this.y2},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"width",{get:function(){return this.defined("x2")&&this.defined("x1")?this.x2-this.x1:void 0},enumerable:!1,configurable:!0}),Object.defineProperty(t.prototype,"height",{get:function(){return this.defined("y2")&&this.defined("y1")?this.y2-this.y1:void 0},enumerable:!1,configurable:!0}),t.prototype.rotatedPoints=function(t,e,n){var r=this.x1,i=this.y1,A=this.x2,a=this.y2,o=Math.cos(t),s=Math.sin(t),l=e-e*o+n*s,c=n-e*s-n*o;return[[o*r-s*a+l,s*r+o*a+c],[o*A-s*a+l,s*A+o*a+c],[o*r-s*i+l,s*r+o*i+c],[o*A-s*i+l,s*A+o*i+c]]},t.prototype.set=function(t,e,n,r){return n0,v=r-s,b=i-l,B=f*b-h*v;if(B<0===y)return!1;var w=d*b-p*v;return w<0!==y&&B>g!==y&&w>g!==y}(e,t)})}(a,c))return!0}}catch(t){r={error:t}}finally{try{l&&!l.done&&(i=s.return)&&i.call(s)}finally{if(r)throw r.error}}return!1}(u.firstChild,f.firstChild,hh(n)):0)?(a.add(o),a.add(f)):o=f}}catch(t){r={error:t}}finally{try{c&&!c.done&&(i=l.return)&&i.call(l)}finally{if(r)throw r.error}}return Array.from(a)}function hm(t,e){return(void 0===e&&(e={}),eW(t))?0:"number"==typeof t?t:Math.floor(ho(t,e))}var hb=function(t){return void 0!==t&&null!=t&&!Number.isNaN(t)};function hB(t){var e=t.getLocalBounds(),n=e.min,r=e.max,i=(0,e$.zs)([n,r],2),A=(0,e$.zs)(i[0],2),a=A[0],o=A[1],s=(0,e$.zs)(i[1],2),l=s[0],c=s[1];return{x:a,y:o,width:l-a,height:c-o,left:a,bottom:c,top:o,right:l}}function hw(t,e){var n=(0,e$.zs)(t,2),r=n[0],i=n[1],A=(0,e$.zs)(e,2),a=A[0],o=A[1];return r!==a&&i===o}var hx=function(t,e){var n=e.seq,r=void 0===n?2:n;return t.filter(function(t,e){return!(e%r)||(u2(t),!1)})},hC=new Map([["hide",function(t,e,n,r){var i,A,a=t.length,o=e.keepHeader,s=e.keepTail;if(!(a<=1)&&(2!==a||!o||!s)){var l=function(t){return t.forEach(r.show),t},c=2,u=t.slice(),f=t.slice(),h=Math.min.apply(Math,(0,e$.fX)([1],(0,e$.zs)(t.map(function(t){return t.getBBox().width})),!1));if("linear"===n.type&&(f7(n)||ht(n))){var d=hB(t[0]).left,p=Math.abs(hB(t[a-1]).right-d)||1;c=Math.max(Math.floor(a*h/p),c)}for(o&&(i=u.splice(0,1)[0]),s&&(A=u.splice(-1,1)[0],u.reverse()),l(u);cd+h;b-=h){var B=v(b);if("object"==typeof B)return B.value}}}],["wrap",function(t,e,n,r,i){var A,a,o,s=e.maxLines,l=void 0===s?3:s,c=e.recoverWhenFailed,u=e.margin,f=void 0===u?[0,0,0,0]:u,h=fK(null!=(o=e.wordWrapWidth)?o:50,[i]),d=t.map(function(t){return t.attr("maxLines")||1}),p=Math.min.apply(Math,(0,e$.fX)([],(0,e$.zs)(d),!1)),g=function(){return hv(t,n,f).length<1},y=(A=n.type,a=n.labelDirection,"linear"===A&&f7(n)?"negative"===a?"bottom":"top":"middle"),v=function(e){return t.forEach(function(t,n){var i=Array.isArray(e)?e[n]:e;r.wrap(t,h,i,y)})};if(!(p>l)){if("linear"===n.type&&f7(n)){if(v(l),g())return}else for(var b=p;b<=l;b++)if(v(b),g())return;(void 0===c||c)&&v(d)}}]]);function hO(t){for(var e=t;e<0;)e+=360;return Math.round(e%360)}function hE(t,e){var n=(0,e$.zs)(t,2),r=n[0],i=n[1],A=(0,e$.zs)(e,2),a=A[0],o=A[1],s=(0,e$.zs)([r*a+i*o,r*o-i*a],2),l=s[0];return Math.atan2(s[1],l)}function hk(t,e,n){var r=n.type,i=n.labelAlign,A=f3(t,n),a=hO(e),o=hO(f_(hE([1,0],A))),s="center",l="middle";return"linear"===r?[90,270].includes(o)&&0===a?(s="center",l=1===A[1]?"top":"bottom"):!(o%180)&&[90,270].includes(a)?s="center":0===o?hi(a,0,90,!1,!0)?s="start":(hi(a,0,90)||hi(a,270,360))&&(s="start"):90===o?hi(a,0,90,!1,!0)?s="start":(hi(a,90,180)||hi(a,270,360))&&(s="end"):270===o?hi(a,0,90,!1,!0)?s="end":(hi(a,90,180)||hi(a,270,360))&&(s="start"):180===o&&(90===a?s="start":(hi(a,0,90)||hi(a,270,360))&&(s="end")):"parallel"===i?l=hi(o,0,180,!0)?"top":"bottom":"horizontal"===i?hi(o,90,270,!1)?s="end":(hi(o,270,360,!1)||hi(o,0,90))&&(s="start"):"perpendicular"===i&&(s=hi(o,90,270)?"end":"start"),{textAlign:s,textBaseline:l}}function hF(t,e,n){var r=n.showTick,i=n.tickLength,A=n.tickDirection,a=n.labelDirection,o=n.labelSpacing,s=e.indexOf(t),l=fK(o,[t,s,e]),c=(0,e$.zs)([f3(t.value,n),function(){for(var t=[],e=0;e=1))||null==a||a(n,i,t,r,e)})}function hS(t,e,n,r,i){var A,a,o,s,l,c=n.indexOf(e),u=i.labelRender,f=i.classNamePrefix,h=fl(t).append(u?(A=i.labelRender,a=(cf(i,"endPos.0",400)-cf(i,"startPos.0",0))/n.length,s=hA(o=ny(A)?fK(A,[e,c,n,f3(e.value,i)]):e.label||"")||30,function(){var t;return t={width:a,height:s},"function"==typeof o?o():eX(o)||eG(o)?new oh({style:(0,e$.Cl)((0,e$.Cl)({pointerEvents:"auto"},t),{innerHTML:o})}):o}):ny(l=i.labelFormatter)?function(){return fq(fK(l,[e,c,n,f3(e.value,i)]))}:function(){return fq(e.label||"")}).attr("className",fk.labelItem.name).node();f8(fl(h),fk.labelItem,fC,f);var d=(0,e$.zs)(fR(f0(r,[e,c,n])),2),p=d[0],g=d[1],y=g.transform,v=(0,e$.Tt)(g,["transform"]);hf(h,y);var b=function(t,e,n){var r,i,A=n.labelAlign;if(null==(i=e.style.transform)?void 0:i.includes("rotate"))return e.getLocalEulerAngles();var a=0,o=f3(t.value,n),s=f4(t.value,n);return"horizontal"===A?0:(hi(r=(f_(a="perpendicular"===A?hE([1,0],o):hE([s[0]<0?-1:1,0],s))+360)%180,-90,90)||(r+=180),r)}(e,h,i);if(h.getLocalEulerAngles()||h.setLocalEulerAngles(b),hM(h,(0,e$.Cl)((0,e$.Cl)({},hk(e.value,b,i)),p)),"html"===h.nodeName){var B=h.getBBox(),w=h.style.x||0;h.attr("x",w-B.width/2)}return t.attr(v),h}function hI(t,e){return f5(t,e.tickDirection,e)}function hT(t,e,n,r,i,A){var a,o,s,l,c,u,f,h,d,p,g,y,v,b,B,w,x,C,O,E,k,F,Q,M=(a=fl(this),o=r.tickFormatter,s=r.classNamePrefix,l=hI(t.value,r),c="line",ny(o)&&(c=function(){return fK(o,[t,e,n,l])}),f8(u=a.append(c).attr("className",fk.tickItem.name),fk.tickItem,fw,s),u);f=hI(t.value,r),x=(h=r.tickLength,g=(0,e$.zs)((d=fK(h,[t,e,n]),[[0,0],[(p=(0,e$.zs)(f,2))[0]*d,p[1]*d]]),2),v=(y=(0,e$.zs)(g[0],2))[0],b=y[1],w={x1:v,x2:(B=(0,e$.zs)(g[1],2))[0],y1:b,y2:B[1]}).x1,C=w.x2,O=w.y1,E=w.y2,F=(k=(0,e$.zs)(fR(f0(i,[t,e,n,f])),2))[0],Q=k[1],"line"===M.node().nodeName&&M.styles((0,e$.Cl)({x1:x,x2:C,y1:O,y2:E},F)),this.attr(Q),M.styles(F);var U=(0,e$.zs)(f9(t.value,r),2),S=U[0],I=U[1];return u9(this,{transform:"translate(".concat(S,", ").concat(I,")")},A)}function hL(t){return/\S+-\S+/g.test(t)?t.split("-").map(function(t){return t[0]}):t.length>2?[t[0]]:t.split("")}function h_(t,e,n,r,i){var A=fN(r,"title"),a=(0,e$.zs)(fR(A),2),o=a[0],s=a[1],l=s.transform,c=s.transformOrigin,u=(0,e$.Tt)(s,["transform","transformOrigin"]);e.styles(u);var f=l||function(t,e,n){var r=2*t.getGeometryBounds().halfExtents[1];if("vertical"===e){if("left"===n)return"rotate(-90) translate(0, ".concat(r/2,")");if("right"===n)return"rotate(-90) translate(0, -".concat(r/2,")")}return""}(t.node(),o.direction,o.position);t.styles((0,e$.Cl)((0,e$.Cl)({},o),{transformOrigin:c})),hf(t.node(),f);var h=function(t,e,n){var r=n.titlePosition,i=void 0===r?"lb":r,A=n.titleSpacing,a=hL(i),o=t.node().getLocalBounds(),s=(0,e$.zs)(o.min,2),l=s[0],c=s[1],u=(0,e$.zs)(o.halfExtents,2),f=u[0],h=u[1],d=(0,e$.zs)(e.node().getLocalBounds().halfExtents,2),p=d[0],g=d[1],y=(0,e$.zs)([l+f,c+h],2),v=y[0],b=y[1],B=(0,e$.zs)(hh(A),4),w=B[0],x=B[1],C=B[2],O=B[3];if(["start","end"].includes(i)&&"linear"===n.type){var E=n.startPos,k=n.endPos,F=(0,e$.zs)("start"===i?[E,k]:[k,E],2),Q=F[0],M=F[1],U=fT([-M[0]+Q[0],-M[1]+Q[1]]),S=(0,e$.zs)(fF(U,w),2),I=S[0],T=S[1];return{x:Q[0]+I,y:Q[1]+T}}return a.includes("t")&&(b-=h+g+w),a.includes("r")&&(v+=f+p+x),a.includes("l")&&(v-=f+p+O),a.includes("b")&&(b+=h+g+C),{x:v,y:b}}(fl(n._offscreen||n.querySelector(fk.mainGroup.class)),e,r),d=h.x,p=h.y;return u9(e.node(),{transform:"translate(".concat(d,", ").concat(p,")")},i)}function hP(t,e,n,r){var i=t.showLine,A=t.showTick,a=t.showLabel,o=t.classNamePrefix,s=e.maybeAppendByClassName(fk.lineGroup,"g");f8(s,fk.lineGroup,fh,o);var l=fA(i,s,function(e){return function(t,e,n){var r,i,A,a,o,s,l,c=e.type,u=fN(e,"line");return"linear"===c?l=function(t,e,n,r){var i,A,a,o,s,l,c,u,f,h,d,p,g,y,v,b,B,w,x=e.showTrunc,C=e.startPos,O=e.endPos,E=e.truncRange,k=e.lineExtension,F=e.classNamePrefix,Q=(0,e$.zs)([C,O],2),M=(0,e$.zs)(Q[0],2),U=M[0],S=M[1],I=(0,e$.zs)(Q[1],2),T=I[0],L=I[1],_=(0,e$.zs)(k?(void 0===(i=k)&&(i=[0,0]),A=(0,e$.zs)([C,O,i],3),o=(a=(0,e$.zs)(A[0],2))[0],s=a[1],c=(l=(0,e$.zs)(A[1],2))[0],u=l[1],h=(f=(0,e$.zs)(A[2],2))[0],d=f[1],v=Math.sqrt(Math.pow(g=(p=(0,e$.zs)([c-o,u-s],2))[0],2)+Math.pow(y=p[1],2)),[(B=(b=(0,e$.zs)([-h/v,d/v],2))[0])*g,B*y,(w=b[1])*g,w*y]):[,,,,].fill(0),4),P=_[0],H=_[1],j=_[2],N=_[3],D=function(e){return t.selectAll(fk.line.class).data(e,function(t,e){return e}).join(function(t){var e=t.append("line").styles(n).transition(function(t){return u9(this,hn(t.line),!1)});return e.attr("className",function(t){if(!F)return"".concat(fk.line.name," ").concat(t.className);var e=f6(fk.line.name,fv,F);if(t.className===fk.lineFirst.name){var n=f6(fk.lineFirst.name,fm,F);return"".concat(e," ").concat(n)}if(t.className===fk.lineSecond.name){var n=f6(fk.lineSecond.name,fb,F);return"".concat(e," ").concat(n)}return e}),e},function(t){return t.styles(n).transition(function(t){return u9(this,hn(t.line),r.update)})},function(t){return t.remove()}).transitions()};if(!x||!E)return D([{line:[[U+P,S+H],[T+j,L+N]],className:fk.line.name}]);var R=(0,e$.zs)(E,2),K=R[0],z=R[1],G=T-U,V=L-S,W=(0,e$.zs)([U+G*K,S+V*K],2),X=W[0],Y=W[1],$=(0,e$.zs)([U+G*z,S+V*z],2),q=$[0],J=$[1],Z=D([{line:[[U+P,S+H],[X,Y]],className:fk.lineFirst.name},{line:[[q,J],[T+j,L+N]],className:fk.lineSecond.name}]);return e.truncRange,e.truncShape,e.lineExtension,Z}(t,e,fZ(u,"arrow"),n):(r=fZ(u,"arrow"),i=e.startAngle,A=e.endAngle,a=e.center,o=e.radius,s=e.classNamePrefix,l=t.selectAll(fk.line.class).data([{d:he.apply(void 0,(0,e$.fX)((0,e$.fX)([i,A],(0,e$.zs)(a),!1),[o],!1))}],function(t,e){return e}).join(function(t){var n=t.append("path").attr("className",fk.line.name).styles(e).styles({d:function(t){return t.d}});return f8(n,fk.line,fv,s),n},function(t){return t.transition(function(){var t,e,r,s,l,c=this,u=function(t,e,n,r){if(!r)return t.attr("__keyframe_data__",n),null;var i=r.duration,A=function t(e,n){var r,i,A,a,o,s;return"number"==typeof e&&"number"==typeof n?function(t){return e*(1-t)+n*t}:Array.isArray(e)&&Array.isArray(n)?(r=n?n.length:0,i=e?Math.min(r,e.length):0,function(A){var a=Array(i),o=Array(r),s=0;for(s=0;sc[0])||!(e(n-t)/(e-t):t=>.5}function hR(t,...e){return e.reduce((t,e)=>n=>t(e(n)),t)}function hK(t,e,n,r,i){let A=n||0,a=r||t.length,o=i||(t=>t);for(;Ae?a=n:A=n+1}return A}var hz=n(28854),hG=n.n(hz);function hV(t,e,n){let r=n;return(r<0&&(r+=1),r>1&&(r-=1),r<1/6)?t+(e-t)*6*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}function hW(t){let e=hG().get(t);if(!e)return null;let{model:n,value:r}=e;return"rgb"===n?r:"hsl"===n?function(t){let e=t[0]/360,n=t[1]/100,r=t[2]/100,i=t[3];if(0===n)return[255*r,255*r,255*r,i];let A=r<.5?r*(1+n):r+n-r*n,a=2*r-A;return[255*hV(a,A,e+1/3),255*hV(a,A,e),255*hV(a,A,e-1/3),i]}(r):null}let hX=(t,e)=>n=>t*(1-n)+e*n,hY=(t,e)=>{if("number"==typeof t&&"number"==typeof e)return hX(t,e);if("string"==typeof t&&"string"==typeof e){let n,r;return n=hW(t),r=hW(e),null===n||null===r?n?()=>t:()=>e:t=>{let e=[,,,,];for(let i=0;i<4;i+=1){let A=n[i],a=r[i];e[i]=A*(1-t)+a*t}let[i,A,a,o]=e;return`rgba(${Math.round(i)}, ${Math.round(A)}, ${Math.round(a)}, ${o})`}}return()=>t},h$=(t,e)=>{let n=hX(t,e);return t=>Math.round(n(t))};function hq(t){return!nh(t)&&null!==t&&!Number.isNaN(t)}let hJ=(t,e,n=5)=>{let r,i=[t,e],A=0,a=i.length-1,o=i[A],s=i[a];return s0?r=cN(o=Math.floor(o/r)*r,s=Math.ceil(s/r)*r,n):r<0&&(r=cN(o=Math.ceil(o*r)/r,s=Math.floor(s*r)/r,n)),r>0?(i[A]=Math.floor(o/r)*r,i[a]=Math.ceil(s/r)*r):r<0&&(i[A]=Math.ceil(o*r)/r,i[a]=Math.floor(s*r)/r),i},hZ=(t,e,n,r)=>(Math.min(t.length,e.length)>2?(t,e,n)=>{let r=Math.min(t.length,e.length)-1,i=Array(r),A=Array(r),a=t[0]>t[r],o=a?[...t].reverse():t,s=a?[...e].reverse():e;for(let t=0;t{let n=hK(t,e,1,r)-1,a=i[n];return hR(A[n],a)(e)}}:(t,e,n)=>{let r,i,[A,a]=t,[o,s]=e;return An?e:n,t=>Math.min(Math.max(r,t),i)):hN}composeOutput(t,e){let{domain:n,range:r,round:i,interpolate:A}=this.options,a=hZ(n.map(t),r,A,i);this.output=hR(a,e,t)}composeInput(t,e,n){let{domain:r,range:i}=this.options,A=hZ(i,r.map(t),hX);this.input=hR(e,n,A)}}class h1 extends h0{getDefaultOptions(){return{domain:[0,1],range:[0,1],unknown:void 0,nice:!1,clamp:!1,round:!1,interpolate:hY,tickMethod:cR,tickCount:5}}removeUnsortedValues(t,e,n){let r=-1/0;return e.reduce((t,i,A)=>{if(0===A)return t;let a=r>0?r:i;return r>0&&(n?i>r:i{t.splice(n,1),e.splice(n,1)}),{breaksDomain:t,breaksRange:e}}transformDomain(t){let e=.03,{domain:n=[],range:r=[1,0],breaks:i=[],tickCount:A=5,nice:a}=t,[o,s]=[Math.min(...n),Math.max(...n)],l=o,c=s;if(a&&i.length<2){let t=this.chooseNice()(o,s,A);l=t[0],c=t[t.length-1]}let u=Math.min(l,o),f=Math.max(c,s),h=i.filter(({end:t})=>tt.start-e.start),d=cR(u,f,A,h);if(hj(d)g,B=d.map(t=>{let e=(t-u)/y;return b?p-e*v:p+e*v}),[w,x]=[.2,.8];return h.forEach(({start:t,end:n,gap:r=e,compress:i="middle"})=>{let A=d.indexOf(t),a=d.indexOf(n),o=(B[A]+B[a])/2;"start"===i&&(o=B[A]),"end"===i&&(o=B[a]);let s=r*v/2,l=b?o+s:o-s,c=b?o-s:o+s;lx&&(l-=c-x,c=x),l>x&&(c-=l-x,l=x),ct[...a]}}chooseTransforms(){return[hN,hN]}clone(){return new h1(this.options)}}let h2=function(t,e){if(t){if(nn(t))for(var n,r=0,i=t.length;r=e&&(n=r=e):(n>e&&(n=e),r=A&&(n=r=A):(n>A&&(n=A),r=this.left&&t<=this.right&&e>=this.top&&e<=this.bottom},t}();function h8(t){for(var e=1/0,n=1/0,r=-1/0,i=-1/0,A=0;Ar&&(r=f),h>i&&(i=h)}return new h6(e,n,r-e,i-n)}var h9=function(t,e,n){var r=t.width,i=t.height,A=n.flexDirection,a=void 0===A?"row":A,o=(n.flexWrap,n.justifyContent),s=void 0===o?"flex-start":o,l=(n.alignContent,n.alignItems),c=void 0===l?"flex-start":l,u="row"===a,f="row"===a||"column"===a,h=u?f?[1,0]:[-1,0]:f?[0,1]:[0,-1],d=(0,e$.zs)([0,0],2),p=d[0],g=d[1],y=e.map(function(t){var e,n=t.width,r=t.height,i=(0,e$.zs)([p,g],2),A=i[0],a=i[1];return p=(e=(0,e$.zs)([p+n*h[0],g+r*h[1]],2))[0],g=e[1],new h6(A,a,n,r)}),v=h8(y),b={"flex-start":0,"flex-end":u?r-v.width:i-v.height,center:u?(r-v.width)/2:(i-v.height)/2},B=y.map(function(t){var e=t.x,n=t.y,r=h6.fromRect(t);return r.x=u?e+b[s]:e,r.y=u?n:n+b[s],r});h8(B);var w=function(t){var e=(0,e$.zs)(u?["height",i]:["width",r],2),n=e[0],A=e[1];switch(c){case"flex-start":default:return 0;case"flex-end":return A-t[n];case"center":return A/2-t[n]/2}};return B.map(function(t){var e=t.x,n=t.y,r=h6.fromRect(t);return r.x=u?e:e+w(r),r.y=u?n+w(r):n,r}).map(function(e){var n,r,i=h6.fromRect(e);return i.x+=null!=(n=t.x)?n:0,i.y+=null!=(r=t.y)?r:0,i})},h7=function(t,e,n){return[]};let dt=function(t,e,n){if(0===e.length)return[];var r={flex:h9,grid:h7},i=n.display in r?r[n.display]:null;return(null==i?void 0:i.call(null,t,e,n))||[]};var de=function(t){function e(e){var n=t.call(this,e)||this;n.layoutEvents=[aQ.BOUNDS_CHANGED,aQ.INSERTED,aQ.REMOVED],n.$margin=hh(0),n.$padding=hh(0);var r=e.style||{},i=r.margin,A=r.padding;return n.margin=void 0===i?0:i,n.padding=void 0===A?0:A,n.isMutationObserved=!0,n.bindEvents(),n}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"margin",{get:function(){return this.$margin},set:function(t){this.$margin=hh(t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"padding",{get:function(){return this.$padding},set:function(t){this.$padding=hh(t)},enumerable:!1,configurable:!0}),e.prototype.getBBox=function(){var t=this.attributes,e=t.x,n=t.y,r=t.width,i=t.height,A=(0,e$.zs)(this.$margin,4),a=A[0],o=A[1],s=A[2],l=A[3];return new h6((void 0===e?0:e)-l,(void 0===n?0:n)-a,r+l+o,i+a+s)},e.prototype.appendChild=function(e,n){return e.isMutationObserved=!0,t.prototype.appendChild.call(this,e,n),e},e.prototype.getAvailableSpace=function(){var t=this.attributes,e=t.width,n=t.height,r=(0,e$.zs)(this.$padding,4),i=r[0],A=r[1],a=r[2],o=r[3],s=(0,e$.zs)(this.$margin,4),l=s[0];return new h6(o+s[3],i+l,e-o-A,n-i-a)},e.prototype.layout=function(){if(this.attributes.display&&this.isConnected&&!this.children.some(function(t){return!t.isConnected}))try{var t=this.attributes,e=t.x,n=t.y;this.style.transform="translate(".concat(e,", ").concat(n,")");var r=dt(this.getAvailableSpace(),this.children.map(function(t){return t.getBBox()}),this.attributes);this.children.forEach(function(t,e){var n=r[e],i=n.x,A=n.y;t.style.transform="translate(".concat(i,", ").concat(A,")")})}catch(t){}},e.prototype.bindEvents=function(){var t=this;this.layoutEvents.forEach(function(e){t.addEventListener(e,function(e){e.target&&(e.target.isMutationObserved=!0,t.layout())})})},e.prototype.attributeChangedCallback=function(t,e,n){"margin"===t?this.margin=n:"padding"===t&&(this.padding=n),this.layout()},e}(ou),dn=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function dr(t,e,n){return t.querySelector(e)?c5(t).select(e):c5(t).append(n)}function di(t){return Array.isArray(t)?t.join(", "):`${t||""}`}function dA(t,e){let{flexDirection:n,justifyContent:r,alignItems:i}={display:"flex",flexDirection:"row",justifyContent:"flex-start",alignItems:"center"},A={top:["row","flex-start","center"],bottom:["row","flex-start","center"],left:["column","flex-start","center"],right:["column","flex-start","center"],center:["column","center","center"]};return t in A&&([n,r,i]=A[t]),Object.assign({display:"flex",flexDirection:n,justifyContent:r,alignItems:i},e)}class da extends de{get child(){var t;return null==(t=this.children)?void 0:t[0]}update(t){var e;let{subOptions:n}=t;null==(e=this.child)||e.update(n),this.attr(t)}}class ds extends da{update(t){var e;let{subOptions:n}=t;null==(e=this.child)||e.update(n),this.attr(t)}}function dl(t,e){var n;return null==(n=t.filter(t=>t.getOptions().name===e))?void 0:n[0]}function dc(t,e,n){let{bbox:r}=t,{position:i="top",size:A,length:a}=e,o=["top","bottom","center"].includes(i),[s,l]=o?[r.height,r.width]:[r.width,r.height],{defaultSize:c,defaultLength:u}=n.props,f=A||c||s,h=a||u||l,[d,p]=o?[h,f]:[f,h];return{orientation:o?"horizontal":"vertical",width:d,height:p,size:f,length:h}}function du(t){let e=["arrow","crosshairs","grid","handle","handleLabel","indicator","label","line","tick","tip","title","trunc"],{style:n}=t,r=dn(t,["style"]),i={};return Object.entries(r).forEach(([t,n])=>{e.includes(t)?i[`show${uv(t)}`]=n:i[t]=n}),Object.assign(Object.assign({},i),n)}var df=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function dh(t,e){let{eulerAngles:n,origin:r}=e;r&&t.setOrigin(r),n&&t.rotate(n[0],n[1],n[2])}function dd(t){let{innerWidth:e,innerHeight:n,depth:r}=t.getOptions();return[e,n,r]}function dp(t,e,n,r,i,A,a,o){var s;(void 0!==n||void 0!==A)&&t.update(Object.assign(Object.assign({},n&&{tickCount:n}),A&&{tickMethod:A}));let l=function(t,e,n){if(t.getTicks)return t.getTicks();if(!n)return e;let[r,i]=h3(e,t=>+t),{tickCount:A}=t.getOptions();return n(r,i,A)}(t,e,A),c=i?l.filter(i):l,u=t=>t instanceof Date?String(t):"object"==typeof t&&t?t:String(t),f=r||(null==(s=t.getFormatter)?void 0:s.call(t))||u,h=function(t,e){if(uW(e))return t=>t;let{innerWidth:n,innerHeight:r,insetTop:i,insetBottom:A,insetLeft:a,insetRight:o}=e.getOptions(),[s,l,c]="left"===t||"right"===t?[i,A,r]:[a,o,n],u=new h1({domain:[0,1],range:[s/c,1-l/c]});return t=>u.map(t)}(a,o),d=function(t,e){let{width:n,height:r}=e.getOptions();return i=>{if(!uq(e))return i;let A=e.map("bottom"===t?[i,1]:[0,i]);if("bottom"===t){let t=A[0];return new h1({domain:[0,n],range:[0,1]}).map(t)}if("left"===t){let t=A[1];return new h1({domain:[0,r],range:[0,1]}).map(t)}return i}}(a,o),p=t=>["left","right"].includes(t);return uW(o)||uV(o)?c.map((e,n,r)=>{var i,A;let s=(null==(i=t.getBandWidth)?void 0:i.call(t,e))/2||0,l=h(t.map(e)+s);return{value:uX(o)&&"center"===a||uV(o)&&(null==(A=t.getTicks)?void 0:A.call(t))&&["top","bottom","center","outer"].includes(a)||uV(o)&&p(a)?1-l:l,label:u(f(uD(e),n,r)),id:String(n)}}):c.map((e,n,r)=>{var i;let A=(null==(i=t.getBandWidth)?void 0:i.call(t,e))/2||0,o=d(h(t.map(e)+A));return{value:p(a)?1-o:o,label:u(f(uD(e),n,r)),id:String(n)}})}let dg=t=>e=>{let{labelFormatter:n,labelFilter:r=()=>!0}=e;return i=>{var A;let{scales:[a]}=i,o=(null==(A=a.getTicks)?void 0:A.call(a))||a.getOptions().domain,s="string"==typeof n?EM(n):n;return t(Object.assign(Object.assign({},e),{labelFormatter:s,labelFilter:(t,e,n)=>r(o[e],e,o),scale:a}))(i)}},dy=dg(t=>{let{direction:e="left",important:n={},labelFormatter:r,order:i,orientation:A,actualPosition:a,position:o,size:s,style:l={},title:c,tickCount:u,tickFilter:f,tickMethod:h,tickLength:d,transform:p,indexBBox:g}=t,y=df(t,["direction","important","labelFormatter","order","orientation","actualPosition","position","size","style","title","tickCount","tickFilter","tickMethod","tickLength","transform","indexBBox"]);return({scales:i,value:v,coordinate:b,theme:B})=>{var w;let{bbox:x}=v,[C]=i,{domain:O,xScale:E}=C.getOptions(),k=Object.assign(Object.assign(Object.assign({},function(t,e,n,r,i){let A,a,o,s=(A=e.axis,a=["top","right","bottom","left"].includes(r)?e[`axis${cX(r)}`]:e.axisLinear,o=t.getOptions().name,Object.assign({},A,a,e[`axis${uv(o)}`]||{}));return"center"===r?Object.assign(Object.assign(Object.assign(Object.assign({},s),{labelDirection:"right"===n?"negative":"positive"}),"center"===n?{labelTransform:"translate(50%,0)"}:null),{tickDirection:"right"===n?"negative":"positive",labelSpacing:4*("center"!==n),titleSpacing:10*("vertical"===i||i===-Math.PI/2),tick:"center"!==n&&void 0}):s}(C,B,e,o,A)),l),y),F=function(t,e,n="xy"){let[r,i,A]=dd(e);return"xy"===n?t.includes("bottom")||t.includes("top")?i:r:"xz"===n?t.includes("bottom")||t.includes("top")?A:r:t.includes("bottom")||t.includes("top")?i:A}(a||o,b,t.plane),Q=function(t,e,n,r,i){let{x:A,y:a,width:o,height:s}=n;if("bottom"===t)return{startPos:[A,a],endPos:[A+o,a]};if("left"===t)return{startPos:[A+o,a+s],endPos:[A+o,a]};if("right"===t)return{startPos:[A,a+s],endPos:[A,a]};if("top"===t)return{startPos:[A,a+s],endPos:[A+o,a+s]};if("center"===t){if("vertical"===e)return{startPos:[A,a],endPos:[A,a+s]};else if("horizontal"===e)return{startPos:[A,a],endPos:[A+o,a]};else if("number"==typeof e){let[t,n]=r.getCenter(),[l,c]=uZ(r),[u,f]=u0(r),h=Math.min(o,s)/2,{insetLeft:d,insetTop:p}=r.getOptions(),g=l*h,y=c*h,[v,b]=[t+A-d,n+a-p],[B,w]=[Math.cos(e),Math.sin(e)],x=uW(r)&&i?(()=>{let{domain:t}=i.getOptions();return t.length})():3;return{startPos:[v+y*B,b+y*w],endPos:[v+g*B,b+g*w],gridClosed:1e-6>Math.abs(f-u-360),gridCenter:[v,b],gridControlAngles:Array(x).fill(0).map((t,e,n)=>(f-u)/x*e)}}}return{}}(o,A,x,b,E),M=function(t){let{depth:e}=t.getOptions();return e?{tickIsBillboard:!0,lineIsBillboard:!0,labelIsBillboard:!0,titleIsBillboard:!0,gridIsBillboard:!0}:{}}(b),U=dp(C,O,u,r,f,h,o,b),S=g?U.map((t,e)=>{let n=g.get(e);return n&&n[0]===t.label?Object.assign(Object.assign({},t),{bbox:n[1]}):t}):U,I=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},k),{type:"linear",data:S,crossSize:s,titleText:di(c),labelOverlap:function(t=[],e){if(t.length>0)return t;let{labelAutoRotate:n,labelAutoHide:r,labelAutoEllipsis:i,labelAutoWrap:A}=e,a=[],o=(t,e)=>{e&&a.push(Object.assign(Object.assign({},t),e))};return o({type:"rotate",optionalAngles:[0,15,30,45,60,90]},n),o({type:"ellipsis",minLength:20},i),o({type:"hide"},r),o({type:"wrap",wordWrapWidth:100,maxLines:3,recoveryWhenFail:!0},A),a}(p,k),grid:(w=k.grid,!(uW(b)&&uV(b)||u$(b))&&(void 0===w?!!C.getTicks:w)),gridLength:F,line:!0,indexBBox:g,classNamePrefix:"g2-"}),void 0!==d?{tickLength:d}:null),k.line?null:{lineOpacity:0}),Q),M),n);return I.labelOverlap.find(t=>"hide"===t.type)&&(I.crossSize=!1),new hH({className:"axis",style:du(I)})}}),dv=dg(t=>{let{order:e,size:n,position:r,orientation:i,labelFormatter:A,tickFilter:a,tickCount:o,tickMethod:s,tickLength:l,important:c={},style:u={},indexBBox:f,title:h,grid:d=!1}=t,p=df(t,["order","size","position","orientation","labelFormatter","tickFilter","tickCount","tickMethod","tickLength","important","style","indexBBox","title","grid"]);return({scales:[t],value:e,coordinate:n,theme:i})=>{let{bbox:u}=e,{domain:g}=t.getOptions(),y=dp(t,g,o,A,a,s,r,n),v=f?y.map((t,e)=>{let n=f.get(e);return n&&n[0]===t.label?Object.assign(Object.assign({},t),{bbox:n[1]}):t}):y,[b,B]=uZ(n),w=function(t,e,n,r,i){let{x:A,y:a,width:o,height:s}=e,l=[A+o/2,a+s/2],c=Math.min(o,s)/2,[u,f]=u0(i),[h,d]=dd(i),p={center:l,radius:c,startAngle:u,endAngle:f,gridLength:Math.min(h,d)/2*(r-n)};if("inner"===t){let{insetLeft:t,insetTop:e}=i.getOptions();return Object.assign(Object.assign({},p),{center:[l[0]-t,l[1]-e],labelAlign:"perpendicular",labelDirection:"positive",tickDirection:"positive",gridDirection:"negative"})}return Object.assign(Object.assign({},p),{labelAlign:"parallel",labelDirection:"negative",tickDirection:"negative",gridDirection:"positive"})}(r,u,b,B,n),{axis:x,axisArc:C={}}=i,O=du(cC({},x,C,w,Object.assign(Object.assign(Object.assign({type:"arc",data:v,titleText:di(h),grid:d,classNamePrefix:"g2-"},void 0!==l?{tickLength:l}:null),p),c)));return new hH({style:h5(O,["transform"])})}});dy.props={defaultPosition:"center",defaultSize:45,defaultOrder:0,defaultCrossPadding:[12,12],defaultPadding:[12,12]},dv.props={defaultPosition:"outer",defaultOrientation:"vertical",defaultSize:45,defaultOrder:0,defaultCrossPadding:[12,12],defaultPadding:[12,12]};var dm=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let db=t=>{let{important:e={}}=t,n=dm(t,["important"]);return r=>{let i,{theme:A,coordinate:a,scales:o}=r;return dy(Object.assign(Object.assign(Object.assign({},n),(i=t.orientation%(2*Math.PI))==Math.PI/2?{titleTransform:"translate(0, 50%)"}:i>-Math.PI/2&&iMath.PI/2&&i<3*Math.PI/2?{titleTransform:"translate(-50%, 0)"}:{}),{important:Object.assign(Object.assign({},function(t,e,n,r){let{radar:i}=t,[A]=r,a=A.getOptions().name,[o,s]=u0(n),{axisRadar:l={}}=e;return Object.assign(Object.assign({},l),{grid:"position"===a,gridConnect:"line",gridControlAngles:Array(i.count).fill(0).map((t,e)=>(s-o)/i.count*e)})}(t,A,a,o)),e)}))(r)}};db.props=Object.assign(Object.assign({},dy.props),{defaultPosition:"center"});class dB{constructor(t){this.options=cC({},this.getDefaultOptions()),this.update(t)}getOptions(){return this.options}update(t={}){this.options=cC({},this.options,t),this.rescale(t)}rescale(t){}}function dw(t,e){return e-t?n=>(n-t)/(e-t):t=>.5}function dx(t,...e){return e.reduce((t,e)=>n=>t(e(n)),t)}function dC(t,e,n){let r=n;return(r<0&&(r+=1),r>1&&(r-=1),r<1/6)?t+(e-t)*6*r:r<.5?e:r<2/3?t+(e-t)*(2/3-r)*6:t}function dO(t){let e=hG().get(t);if(!e)return null;let{model:n,value:r}=e;return"rgb"===n?r:"hsl"===n?function(t){let e=t[0]/360,n=t[1]/100,r=t[2]/100,i=t[3];if(0===n)return[255*r,255*r,255*r,i];let A=r<.5?r*(1+n):r+n-r*n,a=2*r-A;return[255*dC(a,A,e+1/3),255*dC(a,A,e),255*dC(a,A,e-1/3),i]}(r):null}let dE=(t,e)=>n=>t*(1-n)+e*n,dk=(t,e)=>{if("number"==typeof t&&"number"==typeof e)return dE(t,e);if("string"==typeof t&&"string"==typeof e){let n,r;return n=dO(t),r=dO(e),null===n||null===r?n?()=>t:()=>e:t=>{let e=[,,,,];for(let i=0;i<4;i+=1){let A=n[i],a=r[i];e[i]=A*(1-t)+a*t}let[i,A,a,o]=e;return`rgba(${Math.round(i)}, ${Math.round(A)}, ${Math.round(a)}, ${o})`}}return()=>t},dF=(t,e)=>{let n=dE(t,e);return t=>Math.round(n(t))};function dQ(t){return!nh(t)&&null!==t&&!Number.isNaN(t)}let dM=Math.sqrt(50),dU=Math.sqrt(10),dS=Math.sqrt(2);function dI(t,e,n){let r=(e-t)/Math.max(0,n),i=Math.floor(Math.log(r)/Math.LN10),A=r/10**i;return i>=0?(A>=dM?10:A>=dU?5:A>=dS?2:1)*10**i:-(10**-i)/(A>=dM?10:A>=dU?5:A>=dS?2:1)}let dT=(t,e,n=5)=>{let r,i=[t,e],A=0,a=i.length-1,o=i[A],s=i[a];return s0?r=dI(o=Math.floor(o/r)*r,s=Math.ceil(s/r)*r,n):r<0&&(r=dI(o=Math.ceil(o*r)/r,s=Math.floor(s*r)/r,n)),r>0?(i[A]=Math.floor(o/r)*r,i[a]=Math.ceil(s/r)*r):r<0&&(i[A]=Math.ceil(o*r)/r,i[a]=Math.floor(s*r)/r),i},dL=(t,e,n,r)=>(Math.min(t.length,e.length)>2?(t,e,n)=>{let r=Math.min(t.length,e.length)-1,i=Array(r),A=Array(r),a=t[0]>t[r],o=a?[...t].reverse():t,s=a?[...e].reverse():e;for(let t=0;t{let n=function(t,e,n){let r=1,i=n||t.length,A=t=>t;for(;re?i=n:r=n+1}return r}(t,e,r)-1,a=i[n];return dx(A[n],a)(e)}}:(t,e,n)=>{let r,i,[A,a]=t,[o,s]=e;return An?e:n,t=>Math.min(Math.max(r,t),i)):hN}composeOutput(t,e){let{domain:n,range:r,round:i,interpolate:A}=this.options,a=dL(n.map(t),r,A,i);this.output=dx(a,e,t)}composeInput(t,e,n){let{domain:r,range:i}=this.options,A=dL(i,r.map(t),dE);this.input=dx(e,n,A)}}let dP=(t,e,n)=>{let r,i,A=t,a=e;if(A===a&&n>0)return[A];let o=dI(A,a,n);if(0===o||!Number.isFinite(o))return[];if(o>0){A=Math.ceil(A/o),i=Array(r=Math.ceil((a=Math.floor(a/o))-A+1));for(let t=0;t=r&&e<=i)return[r,i]}return[e,e]}(t,e),2),r=n[0],i=n[1];return{tick:e>(r+i)/2?i:r,range:[r,i]}}var ps=fc({trackGroup:"background-group",track:"background",selectionGroup:"ribbon-group",selection:"ribbon",clipPath:"clip-path"},"ribbon");function pl(t){var e=t.orientation,n=t.size,r=t.length;return d7(e,[r,n],[n,r])}function pc(t){var e=t.type,n=(0,e$.zs)(pl(t),2),r=n[0],i=n[1];return"size"===e?[["M",0,i],["L",0+r,0],["L",0+r,i],["Z"]]:[["M",0,i],["L",0,0],["L",0+r,0],["L",0+r,i],["Z"]]}var pu=function(t){function e(e){return t.call(this,e,{type:"color",orientation:"horizontal",size:30,range:[0,1],length:200,block:!1,partition:[],color:["#fff","#000"],trackFill:"#e5e5e5"})||this}return(0,e$.C6)(e,t),e.prototype.render=function(t,e){var n,r,i,A,a,o,s,l,c,u,f,h;n=fl(e).maybeAppendByClassName(ps.trackGroup,"g"),r=fN(t,"track"),i=t.classNamePrefix,A=dJ(ps.track.name,"track",i),n.maybeAppendByClassName(ps.track,"path").attr("className",A).styles((0,e$.Cl)({d:pc(t)},r)),a=fl(e).maybeAppendByClassName(ps.selectionGroup,"g"),s=fN(o=t,"selection"),l=function(t){var e,n,r,i=t.orientation,A=t.color,a=t.block,o=t.partition,s=(r=ny(A)?Array(20).fill(0).map(function(t,e,n){return A(e/(n.length-1))}):A).length,l=r.map(function(t){return iB(t).toString()});return s?1===s?l[0]:a?(e=Array.from(l),Array(n=o.length).fill(0).reduce(function(t,r,i){var A=e[i%e.length];return t+" ".concat(o[i],":").concat(A).concat(ih?Math.max(c-o,0):Math.max((c-o-h)/p,0));var v=Math.max(d,s),b=u-v,B=(0,e$.zs)(this.ifHorizontal([b,g],[g,b]),2),w=B[0],x=B[1],C=["top","left"].includes(y)?o:0,O=(0,e$.zs)(this.ifHorizontal([v/2,C],[C,v/2]),2);return new h6(O[0],O[1],w,x)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"ribbonShape",{get:function(){var t=this.ribbonBBox,e=t.width,n=t.height;return this.ifHorizontal({size:n,length:e},{size:e,length:n})},enumerable:!1,configurable:!0}),e.prototype.renderRibbon=function(t){var e=this.attributes,n=e.data,r=e.type,i=e.orientation,A=e.color,a=e.block,o=e.classNamePrefix,s=fN(this.attributes,"ribbon"),l=this.range,c=l.min,u=l.max,f=this.ribbonBBox,h=f.x,d=f.y,p=this.ribbonShape,g=p.length,y=p.size,v=ft({transform:"translate(".concat(h,", ").concat(d,")"),length:g,size:y,type:r,orientation:i,color:A,block:a,partition:n.map(function(t){return(t.value-c)/(u-c)}),range:this.ribbonRange,classNamePrefix:o},s),b=dJ(pa.ribbon.name,"ribbon",o);this.ribbon=t.maybeAppendByClassName(pa.ribbon,function(){return new pu({style:v,className:b})}).update(v)},e.prototype.getHandleClassName=function(t){return"".concat(pa.prefix("".concat(t,"-handle")))},e.prototype.renderHandles=function(){var t=this.attributes,e=t.showHandle,n=t.orientation,r=t.classNamePrefix,i=fN(this.attributes,"handle"),A=(0,e$.zs)(this.selection,2),a=A[0],o=A[1],s=(0,e$.Cl)((0,e$.Cl)({},i),{orientation:n,classNamePrefix:r}),l=i.shape,c="basic"===(void 0===l?"slider":l)?pn:dq,u=this,f=dJ(pa.handle.name,"handle",r);this.handlesGroup.selectAll(pa.handle.class).data(e?[{value:a,type:"start"},{value:o,type:"end"}]:[],function(t){return t.type}).join(function(t){return t.append(function(){return new c({style:s,className:f})}).attr("className",function(t){var e=t.type;return"".concat(f," ").concat(u.getHandleClassName(e))}).each(function(t){var e=t.type,n=t.value;this.update({labelText:n}),u["".concat(e,"Handle")]=this,this.addEventListener("pointerdown",u.onDragStart(e))})},function(t){return t.update(s).each(function(t){var e=t.value;this.update({labelText:e})})},function(t){return t.each(function(t){var e=t.type;u["".concat(e,"Handle")]=void 0}).remove()})},e.prototype.adjustHandles=function(){var t=(0,e$.zs)(this.selection,2),e=t[0],n=t[1];this.setHandlePosition("start",e),this.setHandlePosition("end",n);var r=this.attributes,i=r.classNamePrefix,A=r.showHandle,a=fN(this.attributes,"handle").shape;A&&"slider"===(void 0===a?"slider":a)&&i&&(this.startHandle&&this.updateSliderHandleClassNames(this.startHandle,i),this.endHandle&&this.updateSliderHandleClassNames(this.endHandle,i))},e.prototype.updateSliderHandleClassNames=function(t,e){var n=t.container||t,r=n.querySelector(".handle-icon-rect");if(r){var i=dJ("handle-icon-rect",d0,e);r.setAttribute("class",i),r.querySelectorAll("line").forEach(function(t){var n=dJ((t.getAttribute("class")||"").split(" ")[0],d0,e);t.setAttribute("class",n)})}var A=n.querySelector(".handle-label");if(A){var a=dJ("handle-label",d1,e);A.setAttribute("class",a)}},Object.defineProperty(e.prototype,"handleBBox",{get:function(){if(this.cacheHandleBBox)return this.cacheHandleBBox;if(!this.attributes.showHandle)return new h6(0,0,0,0);var t=this.startHandle.getBBox(),e=t.width,n=t.height,r=this.endHandle.getBBox(),i=r.width,A=r.height,a=(0,e$.zs)([Math.max(e,i),Math.max(n,A)],2),o=a[0],s=a[1];return this.cacheHandleBBox=new h6(0,0,o,s),this.cacheHandleBBox},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"handleShape",{get:function(){var t=this.handleBBox,e=t.width,n=t.height,r=(0,e$.zs)(this.ifHorizontal([n,e],[e,n]),2);return{width:e,height:n,size:r[0],length:r[1]}},enumerable:!1,configurable:!0}),e.prototype.setHandlePosition=function(t,e){var n=this.attributes.handleFormatter,r=this.ribbonBBox,i=r.x,A=r.y,a=this.ribbonShape.size,o=this.getOffset(e),s=(0,e$.zs)(this.ifHorizontal([i+o,A+a*this.handleOffsetRatio],[i+a*this.handleOffsetRatio,A+o]),2),l=s[0],c=s[1],u=this.handlesGroup.select(".".concat(this.getHandleClassName(t))).node();null==u||u.update({transform:"translate(".concat(l,", ").concat(c,")"),formatter:n})},e.prototype.renderIndicator=function(t){var e=this.attributes.classNamePrefix,n=fN(this.attributes,"indicator"),r=dJ(pa.indicator.name,"indicator",e);this.indicator=t.maybeAppendByClassName(pa.indicator,function(){return new dz({style:n,className:r})}).update(n)},Object.defineProperty(e.prototype,"labelData",{get:function(){var t=this;return this.attributes.data.reduce(function(e,n,r,i){var A,a,o=null!=(A=null==n?void 0:n.id)?A:r.toString();if(e.push((0,e$.Cl)((0,e$.Cl)({},n),{id:o,index:r,type:"value",label:null!=(a=null==n?void 0:n.label)?a:n.value.toString(),value:t.ribbonScale.map(n.value)})),rb&&(v=(o=(0,e$.zs)([b,v],2))[0],b=o[1]),B>c-l)?[l,c]:vc?g===c&&p===v?[v,c]:[c-B,c]:[v,b]),2))[0],F=w[1],this.update({defaultValue:[k,F]}),this.dispatchSelection()},Object.defineProperty(e.prototype,"step",{get:function(){var t=this.attributes.step,e=void 0===t?1:t,n=this.range,r=n.min,i=n.max;return nh(e)?dj((i-r)*.01,0):e},enumerable:!1,configurable:!0}),e.prototype.getTickValue=function(t){var e,n,r=this.attributes,i=r.data,A=r.block,a=this.range.min;return A?po(i.map(function(t){return t.value}),t).tick:(n=Math.round((t-a)/(e=this.step)),a+n*e)},e.prototype.getValueByCanvasPoint=function(t){var e=this.range,n=e.min,r=e.max,i=(0,e$.zs)(this.ribbon.node().getPosition(),2),A=i[0],a=i[1],o=this.ifHorizontal(A,a),s=this.ifHorizontal.apply(this,(0,e$.fX)([],(0,e$.zs)(dN(t)),!1));return eY(this.getOffset(s-o,!0),n,r)},e.prototype.getOffset=function(t,e){void 0===e&&(e=!1);var n=this.range,r=n.min,i=n.max,A=this.ribbonShape.length,a=this.eventToOffsetScale;return(a.update({domain:[r,i],range:[0,A]}),e)?a.invert(t):a.map(t)},e.prototype.getRealSelection=function(t){var e=this.range.max,n=(0,e$.zs)(t,2),r=n[0],i=n[1];return this.ifHorizontal([r,i],[e-i,e-r])},e.prototype.getRealValue=function(t){var e=this.range.max;return this.ifHorizontal(t,e-t)},e.prototype.dispatchSelection=function(){var t=new ab("valuechange",{detail:{value:this.getRealSelection(this.selection)}});this.dispatchEvent(t)},e.prototype.dispatchIndicated=function(t,e){var n=this,r=this.range.max,i=new ab("indicate",{detail:this.ifHorizontal(function(){return{value:t,range:e}},function(){return{value:r-t,range:e?n.getRealSelection(e):void 0}})});this.dispatchEvent(i)},e}(fi);class ph extends cM{getDefaultOptions(){return{domain:[.5],range:[0,1]}}constructor(t){super(t)}map(t){if(!hq(t))return this.options.unknown;let e=hK(this.thresholds,t,0,this.n);return this.options.range[e]}invert(t){let{range:e}=this.options,n=e.indexOf(t),r=this.thresholds;return[r[n-1],r[n]]}clone(){return new ph(this.options)}rescale(){let{domain:t,range:e}=this.options;this.n=Math.min(t.length,e.length-1),this.thresholds=t}}function pd(t){return eW(t)?0:uS(t)?t.length:Object.keys(t).length}let pp=function(t,e){if(!uS(t))return -1;var n=Array.prototype.indexOf;if(n)return n.call(t,e);for(var r=-1,i=0;iMath.abs(t)?t:parseFloat(t.toFixed(14))}let py=[1,5,2,2.5,4,3],pv=100*Number.EPSILON,pm=(t,e,n=5,r=!0,i=py,A=[.25,.2,.5,.05])=>{let a=n<0?0:Math.round(n);if(Number.isNaN(t)||Number.isNaN(e)||"number"!=typeof t||"number"!=typeof e||!a)return[];if(e-t<1e-15||1===a)return[t];let o={score:-2,lmin:0,lmax:0,lstep:0},s=1;for(;s<1/0;){for(let n=0;n=a?2-(l-1)/(a-1):1;if(A[0]*u+A[1]+A[2]*n+A[3]r?1-((n-r)/2)**2/(.1*r)**2:1}(t,e,l*(f-1));if(A[0]*u+A[1]*d+A[2]*n+A[3]=0&&(s=1),1-o/(a-1)-n+s}(c,i,s,n,h,l),g=1-.5*((e-h)**2+(t-n)**2)/(.1*(e-t))**2,y=function(t,e,n,r,i,A){let a=(t-1)/(A-i),o=(e-1)/(Math.max(A,r)-Math.min(n,i));return 2-Math.max(a/o,o/a)}(f,a,t,e,n,h),v=A[0]*d+A[1]*g+A[2]*y+ +A[3];v>o.score&&(!r||n<=t&&h>=e)&&(o.lmin=n,o.lmax=h,o.lstep=l,o.score=v)}}h+=1}f+=1}}s+=1}let c=pg(o.lmax),u=pg(o.lmin),f=pg(o.lstep),h=Math.floor(Math.round((c-u)/f*1e12)/1e12)+1,d=Array(h);d[0]=pg(u);for(let t=1;tt-e);let r=[];for(let n=1;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function px(t){let{domain:e}=t.getOptions(),[n,r]=[e[0],uM(e)];return[n,r]}let pC=t=>{let{labelFormatter:e,layout:n,order:r,orientation:i,position:A,size:a,title:o,style:s,crossPadding:l,padding:c}=t,u=pw(t,["labelFormatter","layout","order","orientation","position","size","title","style","crossPadding","padding"]);return({scales:r,value:i,theme:a,scale:l})=>{let{bbox:c}=i,{x:f,y:h,width:d,height:p}=c,g=dA(A,n),{legendContinuous:y={}}=a,v=du(Object.assign({},y,Object.assign(Object.assign(Object.assign({titleText:di(o),labelAlign:"value",labelFormatter:"string"==typeof e?t=>EM(e)(t.label):e},function(t,e,n,r,i,A){let a=dl(t,"color"),o=function(t,e,n){let{size:r}=e,i=dc(t,e,n);var A=i.orientation;return(i.size=r,"horizontal"===A||0===A)?i.height=r:i.width=r,i}(n,r,i);if(a instanceof ph){let t,{range:e}=a.getOptions(),[n,r]=px(a);if(a instanceof pb||a instanceof pB){let t,i;return t=a.thresholds,i=t=>({value:t/r,label:String(t),domainValue:t}),Object.assign(Object.assign({},o),{color:e,data:[n,...t,r].map(i)})}return t=[-1/0,...a.thresholds,1/0].map((t,e)=>({value:e,domainValue:t,label:t})),Object.assign(Object.assign({},o),{data:t,color:e,labelFilter:(e,n)=>n>0&&nvoid 0!==t).find(t=>!(t instanceof cK)));return Object.assign(Object.assign({},t),{domain:[d,p],data:u.getTicks().map(t=>({value:t})),color:Array(Math.floor(s)).fill(0).map((t,e)=>{let n=(h-f)/(s-1)*e+f,i=u.map(n)||c,A=r?r.map(n):1;return i.replace(/rgb[a]*\(([\d]{1,3}) *, *([\d]{1,3}) *, *([\d]{1,3})[\S\s]*\)/,(t,e,n,r)=>`rgba(${e}, ${n}, ${r}, ${A})`)})})}(o,a,dl(t,"size"),dl(t,"opacity"),e,A)}(r,l,i,t,pC,a)),s),{classNamePrefix:"g2-"}),u)),b=new da({style:Object.assign(Object.assign({x:f,y:h,width:d,height:p},g),{subOptions:v})});return b.appendChild(new pf({className:"legend-continuous",style:v})),b}};pC.props={defaultPosition:"top",defaultOrientation:"vertical",defaultOrder:1,defaultSize:60,defaultLength:200,defaultLegendSize:60,defaultPadding:[20,10],defaultCrossPadding:[12,12]};let pO=t=>(...e)=>pC(Object.assign({},{block:!0},t))(...e);pO.props=Object.assign(Object.assign({},pC.props),{defaultPosition:"top",defaultOrientation:"horizontal"});let pE=t=>e=>{let{scales:n}=e;return pC(Object.assign({},{type:"size",data:dl(n,"size").getTicks().map((t,e)=>({value:t,label:String(t)}))},t))(e)};pE.props=Object.assign(Object.assign({},pC.props),{defaultPosition:"top",defaultOrientation:"horizontal"});let pk=t=>pE(Object.assign({},{block:!0},t));pk.props=Object.assign(Object.assign({},pC.props),{defaultPosition:"top",defaultOrientation:"horizontal"});var pF=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let pQ=({static:t=!1}={})=>e=>{let{width:n,height:r,depth:i,paddingLeft:A,paddingRight:a,paddingTop:o,paddingBottom:s,padding:l,inset:c,insetLeft:u,insetTop:f,insetRight:h,insetBottom:d,margin:p,marginLeft:g,marginBottom:y,marginTop:v,marginRight:b,data:B,coordinate:w,theme:x,component:C,interaction:O,x:E,y:k,z:F,key:Q,frame:M,labelTransform:U,parentKey:S,clip:I,viewStyle:T,title:L}=e,_=pF(e,["width","height","depth","paddingLeft","paddingRight","paddingTop","paddingBottom","padding","inset","insetLeft","insetTop","insetRight","insetBottom","margin","marginLeft","marginBottom","marginTop","marginRight","data","coordinate","theme","component","interaction","x","y","z","key","frame","labelTransform","parentKey","clip","viewStyle","title"]);return[Object.assign(Object.assign({type:"standardView",x:E,y:k,z:F,key:Q,width:n,height:r,depth:i,padding:l,paddingLeft:A,paddingRight:a,paddingTop:o,inset:c,insetLeft:u,insetTop:f,insetRight:h,insetBottom:d,paddingBottom:s,theme:x,coordinate:w,component:C,interaction:O,frame:M,labelTransform:U,margin:p,marginLeft:g,marginBottom:y,marginTop:v,marginRight:b,parentKey:S,clip:I,style:T},!t&&{title:L}),{marks:[Object.assign(Object.assign(Object.assign({},_),{key:`${Q}-0`,data:B}),t&&{title:L})]})]};pQ.props={};var pM=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function pU(t){return(e,...n)=>cC({},t(e,...n),e)}function pS(t){return(e,...n)=>cC({},e,t(e,...n))}function pI(t,e){if(!t)return e;if(Array.isArray(t))return t;if(!(t instanceof Date)&&"object"==typeof t){let{value:n=e}=t;return Object.assign(Object.assign({},pM(t,["value"])),{value:n})}return t}var pT=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let pL=()=>t=>{let{children:e}=t,n=pT(t,["children"]);if(!Array.isArray(e))return[];let{data:r,scale:i={},axis:A={},legend:a={},encode:o={},transform:s=[],slider:l={}}=n,c=pT(n,["data","scale","axis","legend","encode","transform","slider"]),u=e.map(t=>{var{data:e,scale:n={},axis:c={},legend:u={},encode:f={},transform:h=[],slider:d={}}=t,p=pT(t,["data","scale","axis","legend","encode","transform","slider"]);return Object.assign({data:pI(e,r),scale:cC({},i,n),encode:cC({},o,f),transform:[...s,...h],axis:!!c&&!!A&&cC({},A,c),legend:!!u&&!!a&&cC({},a,u),slider:cC({},l,d)},p)});return[Object.assign(Object.assign({},c),{marks:u,type:"standardView",slider:l})]};function p_([t,e],[n,r]){return[t-n,e-r]}function pP([t,e],[n,r]){return Math.sqrt(Math.pow(t-n,2)+Math.pow(e-r,2))}function pH([t,e]){return Math.atan2(e,t)}function pj([t,e]){return pH([t,e])+Math.PI/2}function pN(t,e){let n=pH(t),r=pH(e);return n{if("y"===t||!0===t)if(e)return 180;else return 90;return 90*!!e})(r,A),s=uQ(a),[l,c]=h3(s,t=>a[t]),u=new h1({domain:[l,c],range:[0,100]}),f=t=>eG(a[t])&&!Number.isNaN(a[t])?u.map(a[t]):0,h={between:e=>`${t[e]} ${f(e)}%`,start:e=>0===e?`${t[e]} ${f(e)}%`:`${t[e-1]} ${f(e)}%, ${t[e]} ${f(e)}%`,end:e=>e===t.length-1?`${t[e]} ${f(e)}%`:`${t[e]} ${f(e)}%, ${t[e+1]} ${f(e)}%`},d=s.sort((t,e)=>f(t)-f(e)).map(h[i]||h.between).join(",");return`linear-gradient(${o}deg, ${d})`}function pV(t){let[e,n,r,i]=t;return[i,e,n,r]}function pW(t,e,n){let[r,i,,A]=uV(t)?pV(e):e,[a,o]=n,s=t.getCenter(),l=pj(p_(r,s)),c=pj(p_(i,s)),u=c===l&&a!==o?c+2*Math.PI:c;return{startAngle:l+1e-4,endAngle:(u-l>=0?u:2*Math.PI+u)-1e-4,innerRadius:pP(A,s),outerRadius:pP(r,s)}}function pX(t){let{colorAttribute:e,opacityAttribute:n=e}=t;return`${n}Opacity`}function pY(t,e){if(!uW(t))return"";let n=t.getCenter(),{transform:r}=e;return`translate(${n[0]}, ${n[1]}) ${r||""}`}function p$(t){if(1===t.length)return t[0];let[[e,n,r=0],[i,A,a=0]]=t;return[(e+i)/2,(n+A)/2,(r+a)/2]}function pq(t){return t.replace(/-(\w)/g,function(t,e){return e.toUpperCase()})}function pJ(t){return"object"==typeof t&&"length"in t?t:Array.from(t)}function pZ(t){return function(){return t}}function p0(t){this._context=t}function p1(t){return new p0(t)}pL.props={},Array.prototype.slice,p0.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t*=1,e*=1,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:this._context.lineTo(t,e)}}};let p2=Math.PI,p4=2*p2,p5=p4-1e-6;function p3(t){this._+=t[0];for(let e=1,n=t.length;e=0))throw Error(`invalid digits: ${t}`);if(e>15)return p3;let n=10**e;return function(t){this._+=t[0];for(let e=1,r=t.length;e1e-6)if(Math.abs(c*o-s*l)>1e-6&&i){let f=n-A,h=r-a,d=o*o+s*s,p=Math.sqrt(d),g=Math.sqrt(u),y=i*Math.tan((p2-Math.acos((d+u-(f*f+h*h))/(2*p*g)))/2),v=y/g,b=y/p;Math.abs(v-1)>1e-6&&this._append`L${t+v*l},${e+v*c}`,this._append`A${i},${i},0,0,${+(c*f>l*h)},${this._x1=t+b*o},${this._y1=e+b*s}`}else this._append`L${this._x1=t},${this._y1=e}`}arc(t,e,n,r,i,A){if(t*=1,e*=1,n*=1,A=!!A,n<0)throw Error(`negative radius: ${n}`);let a=n*Math.cos(r),o=n*Math.sin(r),s=t+a,l=e+o,c=1^A,u=A?r-i:i-r;null===this._x1?this._append`M${s},${l}`:(Math.abs(this._x1-s)>1e-6||Math.abs(this._y1-l)>1e-6)&&this._append`L${s},${l}`,n&&(u<0&&(u=u%p4+p4),u>p5?this._append`A${n},${n},0,1,${c},${t-a},${e-o}A${n},${n},0,1,${c},${this._x1=s},${this._y1=l}`:u>1e-6&&this._append`A${n},${n},0,${+(u>=p2)},${c},${this._x1=t+n*Math.cos(i)},${this._y1=e+n*Math.sin(i)}`)}rect(t,e,n,r){this._append`M${this._x0=this._x1=+t},${this._y0=this._y1=+e}h${n*=1}v${+r}h${-n}Z`}toString(){return this._}}function p8(){return new p6}function p9(t){let e=3;return t.digits=function(n){if(!arguments.length)return e;if(null==n)e=null;else{let t=Math.floor(n);if(!(t>=0))throw RangeError(`invalid digits: ${n}`);e=t}return t},()=>new p6(e)}function p7(t){return t[0]}function gt(t){return t[1]}function ge(t,e){var n=pZ(!0),r=null,i=p1,A=null,a=p9(o);function o(o){var s,l,c,u=(o=pJ(o)).length,f=!1;for(null==r&&(A=i(c=a())),s=0;s<=u;++s)!(se.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let gi=gn(t=>{let e,n=t.attributes,{className:r,class:i,transform:A,rotate:a,labelTransform:o,labelTransformOrigin:s,x:l,y:c,x0:u=l,y0:f=c,text:h,background:d,connector:p,startMarker:g,endMarker:y,coordCenter:v,innerHTML:b}=n,B=gr(n,["className","class","transform","rotate","labelTransform","labelTransformOrigin","x","y","x0","y0","text","background","connector","startMarker","endMarker","coordCenter","innerHTML"]);if(t.style.transform=`translate(${l}, ${c})`,[l,c,u,f].some(t=>!eG(t)))return void t.children.forEach(t=>t.remove());let w=cJ(B,"background"),{padding:x}=w,C=gr(w,["padding"]),O=cJ(B,"connector"),{points:E=[]}=O,k=gr(O,["points"]);e=b?c5(t).maybeAppend("html","html",r).style("zIndex",0).style("innerHTML",b).call(pK,Object.assign({transform:o,transformOrigin:s},B)).node():c5(t).maybeAppend("text","text").style("zIndex",0).style("text",h).call(pK,Object.assign({textBaseline:"middle",transform:o,transformOrigin:s},B)).node();let F=c5(t).maybeAppend("background","rect").style("zIndex",-1).call(pK,function(t,e=[]){let[n=0,r=0,i=n,A=r]=e,a=t.parentNode,o=a.getEulerAngles();a.setEulerAngles(0);let{min:s,halfExtents:l}=t.getLocalBounds(),[c,u]=s,[f,h]=l;return a.setEulerAngles(o),{x:c-A,y:u-n,width:2*f+A+r,height:2*h+n+i}}(e,x)).call(pK,d?C:{}).node(),Q=+u0&&(A=e),r<0&&(A=r),n>0&&(a=n),i<0&&(a=i),[A,a]}(t),e],ge()(n)}if(!n.length){let t;return t=[[0,0],e],ge()(t)}let[a,o]=n,s=[...o],l=[...a];if(o[0]!==a[0]){let t=r?-4:4;s[1]=o[1],i&&!r&&(s[0]=Math.max(a[0],o[0]-t),o[1]a[1]?l[1]=s[1]:(l[1]=a[1],l[0]=Math.max(l[0],s[0]-t))),!i&&r&&(s[0]=Math.min(a[0],o[0]-t),o[1]>a[1]?l[1]=s[1]:(l[1]=a[1],l[0]=Math.min(l[0],s[0]-t))),i&&r&&(s[0]=Math.min(a[0],o[0]-t),o[1]=e)&&(n=e,r=i);else for(let A of t)null!=(A=e(A,++i,t))&&(n=A)&&(n=A,r=i);return r}function ga(t,e,n,r){let i=e.length/2,A=e.slice(0,i),a=e.slice(i),o=gA(A,(t,e)=>Math.abs(t[1]-a[e][1])),s=t=>[A[t][0],(A[t][1]+a[t][1])/2],l=s(o=Math.max(Math.min(o,i-2),1)),c=s(o-1),u=pH(p_(s(o+1),c))/Math.PI*180;return{x:l[0],y:l[1],transform:`rotate(${u})`,textAlign:"center",textBaseline:"middle"}}function go(t,e,n,r){let{bounds:i}=n,[[A,a],[o,s]]=i,l=o-A,c=s-a,u=t=>{let{x:e,y:r}=t,i=c1(n.x,l),o=c1(n.y,c);return Object.assign(Object.assign({},t),{x:(i||e)+A,y:(o||r)+a})};return u("left"===t?{x:0,y:c/2,textAlign:"start",textBaseline:"middle"}:"right"===t?{x:l,y:c/2,textAlign:"end",textBaseline:"middle"}:"top"===t?{x:l/2,y:0,textAlign:"center",textBaseline:"top"}:"bottom"===t?{x:l/2,y:c,textAlign:"center",textBaseline:"bottom"}:"top-left"===t?{x:0,y:0,textAlign:"start",textBaseline:"top"}:"top-right"===t?{x:l,y:0,textAlign:"end",textBaseline:"top"}:"bottom-left"===t?{x:0,y:c,textAlign:"start",textBaseline:"bottom"}:"bottom-right"===t?{x:l,y:c,textAlign:"end",textBaseline:"bottom"}:{x:l/2,y:c/2,textAlign:"center",textBaseline:"middle"})}function gs(t,e,n,r){let{y:i,y1:A,autoRotate:a,rotateToAlignArc:o}=n,s=r.getCenter(),{innerRadius:l,outerRadius:c,startAngle:u,endAngle:f}=pW(r,e,[i,A]),h="inside"===t?(u+f)/2:f,d=gc(h,a,o);return Object.assign(Object.assign({},(()=>{let[n,r]=e,[i,A]="inside"===t?gl(s,h,l+(c-l)*.5):pR(n,r);return{x:i,y:A}})()),{textAlign:"inside"===t?"center":"start",textBaseline:"middle",rotate:d})}function gl(t,e,n){return[t[0]+Math.sin(e)*n,t[1]-Math.cos(e)*n]}function gc(t,e,n){if(!e)return 0;let r=n?0:0>Math.sin(t)?90:-90;return t/Math.PI*180+r}function gu(t){return void 0===t?null:t}function gf(t,e,n,r){let{bounds:i}=n,[A]=i;return{x:gu(A[0]),y:gu(A[1])}}function gh(t,e,n,r){let{bounds:i}=n;return 1===i.length?gf(t,e,n,r):(uX(r)?gs:uJ(r)?function(t,e,n,r){let{y:i,y1:A,autoRotate:a,rotateToAlignArc:o,radius:s=.5,offset:l=0}=n,c=pW(r,e,[i,A]),{startAngle:u,endAngle:f}=c,h=r.getCenter(),d=(u+f)/2,p=gc(d,a,o),{innerRadius:g,outerRadius:y}=c,[v,b]=gl(h,d,g+(y-g)*s+l);return Object.assign({x:v,y:b},{textAlign:"center",textBaseline:"middle",rotate:p})}:go)(t,e,n,r)}function gd(t,e,n){let{innerRadius:r,outerRadius:i}=pW(n,t,[e.y,e.y1]);return r+(i-r)}function gp(t,e,n){let{startAngle:r,endAngle:i}=pW(n,t,[e.y,e.y1]);return(r+i)/2}function gg(t,e,n,r){let{autoRotate:i,rotateToAlignArc:A,offset:a=0,connector:o=!0,connectorLength:s=a,connectorLength2:l=0,connectorDistance:c=0}=n,u=r.getCenter(),f=gp(e,n,r),h=Math.sin(f)>0?1:-1,d=gc(f,i,A),p={textAlign:h>0||uX(r)?"start":"end",textBaseline:"middle",rotate:d},g=gd(e,n,r),[[y,v],[b,B],[w,x]]=function(t,e,n,r,i){let[A,a]=gl(t,e,n),[o,s]=gl(t,e,r);return[[A,a],[o,s],[o+(Math.sin(e)>0?1:-1)*i,s]]}(u,f,g,g+(o?s:a),o?l:0),C=o?c*h:0,O=w+C;return Object.assign(Object.assign({x0:y,y0:v,x:w+C,y:x},p),{connector:o,connectorPoints:[[b-O,B-x],[w-O,x-x]]})}function gy(t,e,n,r){let{bounds:i}=n;return 1===i.length?gf(t,e,n,r):(uX(r)?gs:uJ(r)?gg:go)(t,e,n,r)}function gv(t,e){return null==t||null==e?NaN:te?1:t>=e?0:NaN}function gm(t,...e){if("function"!=typeof t[Symbol.iterator])throw TypeError("values is not iterable");t=Array.from(t);let[n]=e;if(n&&2!==n.length||e.length>1){var r;let i=Uint32Array.from(t,(t,e)=>e);return e.length>1?(e=e.map(e=>t.map(e)),i.sort((t,n)=>{for(let r of e){let e=gB(r[t],r[n]);if(e)return e}})):(n=t.map(n),i.sort((t,e)=>gB(n[t],n[e]))),r=t,Array.from(i,t=>r[t])}return t.sort(gb(n))}function gb(t=gv){if(t===gv)return gB;if("function"!=typeof t)throw TypeError("compare is not a function");return(e,n)=>{let r=t(e,n);return r||0===r?r:(0===t(n,n))-(0===t(e,e))}}function gB(t,e){return(null==t||!(t>=t))-(null==e||!(e>=e))||(te))}function gw(t,e={}){let{labelHeight:n=14,height:r}=e,i=gm(t,t=>t.y),A=i.length,a=Array(A);for(let t=0;t0;t--){let e=a[t],n=a[t-1];if(n.y1>e.y){o=!0,n.labels.push(...e.labels),a.splice(t,1),n.y1+=e.y1-e.y;let i=n.y1-n.y;n.y1=Math.max(Math.min(n.y1,r),i),n.y=n.y1-i}}}let s=0;for(let t of a){let{y:e,labels:r}=t,A=e-n;for(let t of r){let e=i[s++],r=A+n-t;e.connectorPoints[0][1]-=r,e.y=A+n,A+=n}}}function gx(t,e){let n=gm(t,t=>t.y),{height:r,labelHeight:i=14}=e,A=Math.ceil(r/i);if(n.length<=A)return gw(n,e);let a=[];for(let t=0;te.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let gO=new WeakMap;function gE(t,e,n,r,i,A){if(!uJ(r))return{};if(gO.has(e))return gO.get(e);let a=A.map(t=>(function(t,e,n){let{connectorLength:r,connectorLength2:i,connectorDistance:A}=e,a=gC(gg("outside",t,e,n),[]),o=n.getCenter(),s=gd(t,e,n),l=Math.sin(gp(t,e,n))>0?1:-1,c=o[0]+(s+r+i+ +A)*l,{x:u}=a,f=c-u;return a.x+=f,a.connectorPoints[0][0]-=f,a})(t,n,r)),{width:o,height:s}=r.getOptions(),l=a.filter(t=>t.xt.x>=o/2),u=Object.assign(Object.assign({},i),{height:s});return gx(l,u),gx(c,u),a.forEach((t,e)=>gO.set(A[e],t)),gO.get(e)}var gk=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function gF(t,e,n,r){if(!uJ(r))return{};let{connectorLength:i,connectorLength2:A,connectorDistance:a}=n,o=gk(gg("outside",e,n,r),[]),{x0:s,y0:l}=o,c=r.getCenter(),u=function(t){if(uJ(t)){let[e,n]=t.getSize(),r=t.getOptions().transformations.find(t=>"polar"===t[0]);if(r)return Math.max(e,n)/2*r[4]}return 0}(r),f=pj([s-c[0],l-c[1]]),h=Math.sin(f)>0?1:-1,[d,p]=gl(c,f,u+i);return o.x=d+(A+a)*h,o.y=p,o}var gQ=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let gM=(t,e)=>{let{coordinate:n,theme:r}=e,{render:i}=t;return(e,A,a,o)=>{let{text:s,x:l,y:c,transform:u="",transformOrigin:f,className:h=""}=A,d=gQ(A,["text","x","y","transform","transformOrigin","className"]),p=function(t,e,n,r,i,A){let{position:a}=e,{render:o}=i,s=void 0!==a?a:uJ(n)?"inside":uV(n)?"right":"top",l=r[o?"htmlLabel":"inside"===s?"innerLabel":"label"],c=Object.assign({},l,e),u=J[pq(s)];if(!u)throw Error(`Unknown position: ${s}`);return Object.assign(Object.assign({},l),u(s,t,c,n,i,A))}(e,A,n,r,t,o),{rotate:g=0,transform:y=""}=p,v=gQ(p,["rotate","transform"]);return c5(new gi).call(pK,v).style("text",`${s}`).style("className",`${h} g2-label`).style("innerHTML",i?i(s,A.datum,A.index):void 0).style("labelTransform",`${y} rotate(${+g}) ${u}`.trim()).style("labelTransformOrigin",f).style("coordCenter",n.getCenter()).call(pK,d).node()}};gM.props={defaultMarker:"point"};let gU=function(t,e,n){var r=t,i=eX(e)?e.split("."):e;return i.forEach(function(t,e){ee.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let gN={fill:"#fff",stroke:"#aaa",lineDash:"4 3",lineWidth:.5,fillOpacity:1,strokeOpacity:1},gD=(t,e,n,r,i,A)=>{let a=[],o=[],s=r-1;for(let r=1;r{let{context:n,selection:r,view:i}=e,A=r.select(".plot").node(),{document:a}=n.canvas,{scale:o}=i,s=new Map;return t=>{let{key:e,start:r,end:i,gap:l=.03,vertices:c=50,lineWidth:u=.5,verticeOffset:f=3}=t,h=gj(t,["key","start","end","gap","vertices","lineWidth","verticeOffset"]),d=a.createElement("g",{id:`break-group-${e}`,className:gP}),p=cf(o,"x.sortedDomain",[]),{range:g,domain:y}=o.y.getOptions(),v=y.indexOf(r),b=y.indexOf(i),{width:B,height:w}=A.getBBox();if(-1===v||-1===b||!p.length)return d;let x=g[0]>g[1],C=g[v]*w,O=g[b]*w,E="",k="";for(let[t,{y:e,isLower:n}]of[{y:O,isLower:!1},{y:C,isLower:!0}].entries()){let r=x?u:-u,[i,A]=gD(e,B-0,f,c,n,r);0===t?(E=`M 0,${e} L ${i.join(" L ")} `,k=`M ${0-u},${e+r} L ${A.join(" L ")} `):(E+=`L ${B-0},${e} L ${[...i].reverse().join(" L ")} L 0,${e} Z`,k+=`L ${B-0+u+2},${e-r} L ${[...A].reverse().join(" L ")} L ${0-u},${e-r} Z`)}let F=Object.assign(Object.assign({},gN),h);try{let t=new ov({style:Object.assign(Object.assign({},F),{d:E})}),a=new ov({style:Object.assign(Object.assign({},F),{d:k,lineWidth:0,cursor:"pointer"})});a.addEventListener("click",t=>gH(void 0,void 0,void 0,function*(){t.stopPropagation(),2===t.detail&&(yield gH(void 0,void 0,void 0,function*(){let{update:t,setState:A}=n.externals;A("options",t=>{let{marks:n}=t;if(!n||!n.length)return t;let A=n.map(t=>{let e=cf(t,"scale.y.breaks",[]),n=e.filter(t=>t.start!==r&&t.end!==i&&!t.collapsed);return e.forEach(t=>{t.start===r&&t.end===i&&(t.collapsed=!0)}),console.log("breaks group:",e,n),cC({},t,{scale:{y:{breaks:n}}})});return s.set(e,{start:r,end:i}),Object.assign(Object.assign({},t),{marks:A})}),yield t()}))})),d.appendChild(t),d.appendChild(a),A.addEventListener("click",t=>gH(void 0,void 0,void 0,function*(){2===t.detail&&(yield gH(void 0,void 0,void 0,function*(){if(!s.size)return;let{update:t,setState:e}=n.externals;e("options",t=>{let{marks:e}=t,n=e.map(t=>{let e=cf(t,"scale.y.breaks",[]);return gU(t,"scale.y.breaks",e.map(t=>Object.assign(Object.assign({},t),{collapsed:!1}))),t});return s.clear(),Object.assign(Object.assign({},t),{marks:n})}),yield t()}))})),A.appendChild(d)}catch(t){console.error("Failed to create break path:",t)}return d}};function gK(t,e){return null==t||null==e?NaN:et?1:e>=t?0:NaN}function gz(t){let e,n,r;function i(t,r,A=0,a=t.length){if(A>>1;0>n(t[e],r)?A=e+1:a=e}while(Agv(t(e),n),r=(e,n)=>t(e)-n):(e=t===gv||t===gK?t:gG,n=t,r=t),{left:i,center:function(t,e,n=0,A=t.length){let a=i(t,e,n,A-1);return a>n&&r(t[a-1],e)>-r(t[a],e)?a-1:a},right:function(t,r,i=0,A=t.length){if(i>>1;0>=n(t[e],r)?i=e+1:A=e}while(it+a),e)+(n?-1:0),Math.min(A.length-1,Math.max(0,r)));return A[o]}function g0(t,e,n){if(!e)return t.getOptions().domain;if(!gJ(t)){let r=gm(e);if(!n)return r;let[i]=r,{range:A}=t.getOptions(),[a,o]=A,s=t.invert(t.map(i)+(a>o?-1:1)*n);return[i,s]}let{domain:r}=t.getOptions(),i=e[0],A=r.indexOf(i);if(n){let t=A+Math.round(r.length*n);return r.slice(A,t)}let a=e[e.length-1],o=r.indexOf(a);return r.slice(A,o+1)}function g1(t,e,n,r,i,A){let{x:a,y:o}=i,s=(t,e)=>{let[n,r]=A.invert(t);return[gZ(a,n,e),gZ(o,r,e)]},l=s([t,e],!0),c=s([n,r],!1);return[g0(a,[l[0],c[0]]),g0(o,[l[1],c[1]])]}function g2(t,e){let[n,r]=t;return[e.map(n),e.map(r)+(e.getStep?e.getStep():0)]}let g4=(t,e)=>{var n,r;let[i,A]=t,a=(null==(r=null==(n=e.getOptions)?void 0:n.call(e))?void 0:r.domain)||[],o=a.indexOf(i),s=a.indexOf(A);if(-1===o||-1===s)return[e.map(i),e.map(A)];let l=a.length;return l<=1?[0,1]:[o/(l-1),s/(l-1)]},g5=Math.abs,g3=Math.atan2,g6=Math.cos,g8=Math.max,g9=Math.min,g7=Math.sin,yt=Math.sqrt,ye=Math.PI,yn=ye/2,yr=2*ye;function yi(t){return t>=1?yn:t<=-1?-yn:Math.asin(t)}function yA(t){return t.innerRadius}function ya(t){return t.outerRadius}function yo(t){return t.startAngle}function ys(t){return t.endAngle}function yl(t){return t&&t.padAngle}function yc(t,e,n,r,i,A,a){var o=t-n,s=e-r,l=(a?A:-A)/yt(o*o+s*s),c=l*s,u=-l*o,f=t+c,h=e+u,d=n+c,p=r+u,g=(f+d)/2,y=(h+p)/2,v=d-f,b=p-h,B=v*v+b*b,w=i-A,x=f*p-d*h,C=(b<0?-1:1)*yt(g8(0,w*w*B-x*x)),O=(x*b-v*C)/B,E=(-x*v-b*C)/B,k=(x*b+v*C)/B,F=(-x*v+b*C)/B,Q=O-g,M=E-y,U=k-g,S=F-y;return Q*Q+M*M>U*U+S*S&&(O=k,E=F),{cx:O,cy:E,x01:-c,y01:-u,x11:O*(i/w-1),y11:E*(i/w-1)}}function yu(){var t=yA,e=ya,n=pZ(0),r=null,i=yo,A=ys,a=yl,o=null,s=p9(l);function l(){var l,c,u=+t.apply(this,arguments),f=+e.apply(this,arguments),h=i.apply(this,arguments)-yn,d=A.apply(this,arguments)-yn,p=g5(d-h),g=d>h;if(o||(o=l=s()),f1e-12)if(p>yr-1e-12)o.moveTo(f*g6(h),f*g7(h)),o.arc(0,0,f,h,d,!g),u>1e-12&&(o.moveTo(u*g6(d),u*g7(d)),o.arc(0,0,u,d,h,g));else{var y,v,b=h,B=d,w=h,x=d,C=p,O=p,E=a.apply(this,arguments)/2,k=E>1e-12&&(r?+r.apply(this,arguments):yt(u*u+f*f)),F=g9(g5(f-u)/2,+n.apply(this,arguments)),Q=F,M=F;if(k>1e-12){var U=yi(k/u*g7(E)),S=yi(k/f*g7(E));(C-=2*U)>1e-12?(U*=g?1:-1,w+=U,x-=U):(C=0,w=x=(h+d)/2),(O-=2*S)>1e-12?(S*=g?1:-1,b+=S,B-=S):(O=0,b=B=(h+d)/2)}var I=f*g6(b),T=f*g7(b),L=u*g6(x),_=u*g7(x);if(F>1e-12){var P,H=f*g6(B),j=f*g7(B),N=u*g6(w),D=u*g7(w);if(p1?0:R<-1?ye:Math.acos(R))/2),X=yt(P[0]*P[0]+P[1]*P[1]);Q=g9(F,(u-X)/(W-1)),M=g9(F,(f-X)/(W+1))}else Q=M=0}O>1e-12?M>1e-12?(y=yc(N,D,I,T,f,M,g),v=yc(H,j,L,_,f,M,g),o.moveTo(y.cx+y.x01,y.cy+y.y01),M1e-12&&C>1e-12?Q>1e-12?(y=yc(L,_,H,j,u,-Q,g),v=yc(I,T,N,D,u,-Q,g),o.lineTo(y.cx+y.x01,y.cy+y.y01),Qe.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function yh(t,e,n,r,i={}){let{inset:A=0,radius:a=0,insetLeft:o=A,insetTop:s=A,insetRight:l=A,insetBottom:c=A,radiusBottomLeft:u=a,radiusBottomRight:f=a,radiusTopLeft:h=a,radiusTopRight:d=a,minWidth:p=-1/0,maxWidth:g=1/0,minHeight:y=-1/0}=i,v=yf(i,["inset","radius","insetLeft","insetTop","insetRight","insetBottom","radiusBottomLeft","radiusBottomRight","radiusTopLeft","radiusTopRight","minWidth","maxWidth","minHeight"]);if(!uW(r)&&!uY(r)){let n=!!uV(r),[i,,A]=n?pV(e):e,[a,b]=i,[B,w]=p_(A,i),x=Math.abs(B),C=Math.abs(w),O=(B>0?a:a+B)+o,E=(w>0?b:b+w)+s,k=x-(o+l),F=C-(s+c),Q=n?uN(k,y,1/0):uN(k,p,g),M=n?uN(F,p,g):uN(F,y,1/0),U=n?O:O-(Q-k)/2,S=n?E-(M-F)/2:E-(M-F);return c5(t.createElement("rect",{})).style("x",U).style("y",S).style("width",Q).style("height",M).style("radius",[h,d,f,u]).call(pK,v).node()}let{y:b,y1:B}=n,w=r.getCenter(),x=pW(r,e,[b,B]),C=yu().cornerRadius(a).padAngle(A*Math.PI/180);return c5(t.createElement("path",{})).style("d",C(x)).style("transform",`translate(${w[0]}, ${w[1]})`).style("radius",a).style("inset",A).call(pK,v).node()}let yd=(t,e)=>{let{colorAttribute:n,opacityAttribute:r="fill",first:i=!0,last:A=!0}=t,a=yf(t,["colorAttribute","opacityAttribute","first","last"]),{coordinate:o,document:s}=e;return(e,r,l)=>{let{color:c,radius:u=0}=l,f=yf(l,["color","radius"]),h=f.lineWidth||1,{stroke:d,radius:p=u,radiusTopLeft:g=p,radiusTopRight:y=p,radiusBottomRight:v=p,radiusBottomLeft:b=p,innerRadius:B=0,innerRadiusTopLeft:w=B,innerRadiusTopRight:x=B,innerRadiusBottomRight:C=B,innerRadiusBottomLeft:O=B,lineWidth:E="stroke"===n||d?h:0,inset:k=0,insetLeft:F=k,insetRight:Q=k,insetBottom:M=k,insetTop:U=k,minWidth:S,maxWidth:I,minHeight:T}=a,L=yf(a,["stroke","radius","radiusTopLeft","radiusTopRight","radiusBottomRight","radiusBottomLeft","innerRadius","innerRadiusTopLeft","innerRadiusTopRight","innerRadiusBottomRight","innerRadiusBottomLeft","lineWidth","inset","insetLeft","insetRight","insetBottom","insetTop","minWidth","maxWidth","minHeight"]),{color:_=c,opacity:P}=r,H=[i?g:w,i?y:x,A?v:C,A?b:O],j=["radiusTopLeft","radiusTopRight","radiusBottomRight","radiusBottomLeft"];uV(o)&&j.push(j.shift());let N=Object.assign(Object.assign({radius:p},Object.fromEntries(j.map((t,e)=>[t,H[e]]))),{inset:k,insetLeft:F,insetRight:Q,insetBottom:M,insetTop:U,minWidth:S,maxWidth:I,minHeight:T});return c5(yh(s,e,r,o,N)).call(pK,f).style("fill","transparent").style(n,_).style(pX(t),P).style("lineWidth",E).style("stroke",void 0===d?_:d).call(pK,L).node()}};function yp(t,e){if(e(t))return!0;if("g"===t.tagName){let{childNodes:n=[]}=t;for(let t of n)if(yp(t,e))return!0}return!1}yd.props={defaultEnterAnimation:"scaleInY",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let yg={visibility:"visible",opacity:1,fillOpacity:1,strokeOpacity:1};function yy(t,e,n,r){t.style[e]=n,r&&t.children.forEach(t=>yy(t,e,n,r))}function yv(t){yy(t,"visibility","hidden",!0)}function ym(t){yy(t,"visibility","visible",!0)}var yb=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function yB(t){return c5(t).selectAll(`.${gT}`).nodes().filter(t=>!t.__removed__)}function yw(t,e){return yx(t,e).flatMap(({container:t})=>yB(t))}function yx(t,e){return e.filter(e=>e!==t&&e.options.parentKey===t.options.key)}function yC(t){return c5(t).select(".plot").node()}function yO(t){if("g"===t.tagName)return t.getRenderBounds();let e=t.getGeometryBounds(),n=new nD;return n.setFromTransformedAABB(e,t.getWorldTransform()),n}function yE(t,e){let{offsetX:n,offsetY:r}=e,{min:[i,A],max:[a,o]}=yO(t);return na||ro?null:[n-i,r-A]}function yk(t,e){let{offsetX:n,offsetY:r}=e,[i,A,a,o]=function(t){let{min:[e,n],max:[r,i]}=t.getRenderBounds();return[e,n,r,i]}(t);return[Math.min(a,Math.max(i,n))-i,Math.min(o,Math.max(A,r))-A]}function yF(t){return t=>t.__data__.color}function yQ(t){return t=>t.__data__.x}function yM(t){let e=new Map((Array.isArray(t)?t:[t]).flatMap(t=>Array.from(t.markState.keys()).map(e=>[y_(t.key,e.key),e.data])));return t=>{let{index:n,markKey:r,viewKey:i}=t.__data__;return e.get(y_(i,r))[n]}}let yU={selected:3,unselected:3,active:2,inactive:2,default:1},yS={selection:["selected","unselected"],highlight:["active","inactive"]},yI=(t,e,n)=>{yp(t,t=>{"setAttribute"in t&&"function"==typeof t.setAttribute&&t.setAttribute(e,n)})};function yT(t,e){return e.forEach(e=>{let n=e.__interactionStyle__;n?e.__interactionStyle__=Object.assign(Object.assign({},n),t):e.__interactionStyle__=t}),(t=(t,e)=>t,e=yI)=>yL(void 0,t,e)}function yL(t,e=(t,e)=>t,n=yI){let r="__states__",i="__ordinal__",A=t=>yU[t]||yU.default,a=t=>{var e;return null==(e=Object.entries(yS).find(([e,n])=>n.includes(t)))?void 0:e[0]},o=a=>{var o;let{[r]:s=[],[i]:l={}}=a,c=[...s].sort((t,e)=>A(e)-A(t)),u=new Map;for(let e of c)for(let[n,r]of Object.entries((null==(o=null!=t?t:a.__interactionStyle__)?void 0:o[e])||{}))u.has(n)||u.set(n,r);let f=Object.assign({},l);for(let[t,e]of u.entries())f[t]=e;if(0!==Object.keys(f).length){for(let[t,r]of Object.entries(f)){let i=function(t,e){let n;return yp(t,t=>{var r;return"g"!==t.tagName&&(null==(r=t.style)?void 0:r[e])!==void 0&&(n=t.style[e],!0)}),null!=n?n:yg[e]}(a,t),A=e(r,a);n(a,t,A),t in l||(l[t]=i)}a[i]=l}},s=t=>{t[r]||(t[r]=[])};return{setState:(t,...e)=>{s(t),t[r]=[...e],o(t)},updateState:(t,...e)=>{s(t);let n=t[r],i=new Set(e.map(t=>a(t)).filter(t=>void 0!==t)),A=n.filter(t=>!i.has(a(t)));t[r]=[...A,...e],o(t)},removeState:(t,...e)=>{for(let n of(s(t),e)){let e=t[r].indexOf(n);-1!==e&&t[r].splice(e,1)}o(t)},hasState:(t,e)=>(s(t),-1!==t[r].indexOf(e))}}function y_(t,e){return`${t},${e}`}function yP(t,e){let n=(Array.isArray(t)?t:[t]).flatMap(t=>t.marks.map(e=>[y_(t.key,e.key),e.state])),r={};for(let t of e){let[e,i]=Array.isArray(t)?t:[t,{}];r[e]=n.reduce((t,n)=>{var r;let[A,a={}]=n;for(let[n,o]of Object.entries(void 0===(r=a[e])||"object"==typeof r&&0===Object.keys(r).length?i:a[e])){let e=t[n],r=(t,n,r,i)=>A!==y_(i.__data__.viewKey,i.__data__.markKey)?null==e?void 0:e(t,n,r,i):"function"!=typeof o?o:o(t,n,r,i);t[n]=r}return t},{})}return r}function yH(t,e){let n=new Map(t.map((t,e)=>[t,e])),r=e?t.map(e):t;return(t,i)=>{if("function"!=typeof t)return t;let A=n.get(i);return t(e?e(i):i,A,r,i)}}function yj(t){var{link:e=!1,valueof:n=(t,e)=>t,coordinate:r}=t,i=yb(t,["link","valueof","coordinate"]);if(!e)return[()=>{},()=>{}];let A=t=>t.__data__.points,a=(t,e)=>{let[,n,r]=t,[i,,,A]=e;return[n,i,A,r]};return[t=>{var e;if(t.length<=1)return;let r=gm(t,(t,e)=>{let{x:n}=t.__data__,{x:r}=e.__data__;return n-r});for(let t=1;tn(t,s)),{fill:p=s.getAttribute("fill")}=d,g=yb(d,["fill"]),y=new ov({className:"element-link",style:Object.assign({d:o.toString(),fill:p,zIndex:-2},g)});null==(e=s.link)||e.remove(),s.parentNode.appendChild(y),s.link=y}},t=>{var e;null==(e=t.link)||e.remove(),t.link=null}]}function yN(t,e,n){let r=e=>{let{transform:n}=t.style;return n?`${n} ${e}`:e};if(uW(n)){let{points:i}=t.__data__,[A,a]=uV(n)?pV(i):i,o=n.getCenter(),s=p_(A,o),l=p_(a,o),c=pH(s)+pN(s,l)/2,u=e*Math.cos(c),f=e*Math.sin(c);return r(`translate(${u}, ${f})`)}return r(uV(n)?`translate(${e}, 0)`:`translate(0, ${-e})`)}function yD(t){var{document:e,background:n,scale:r,coordinate:i,valueof:A}=t,a=yb(t,["document","background","scale","coordinate","valueof"]);let o="element-background";if(!n)return[()=>{},()=>{}];let s=(t,e,n)=>{let r=t.invert(e),i=e+t.getBandWidth(r)/2,A=t.getStep(r)/2,a=A*n;return[i-A+a,i+A-a]};return[t=>{t.background&&t.background.remove();let n=uF(a,e=>A(e,t)),{fill:l="#CCD6EC",fillOpacity:c=.3,zIndex:u=-2,padding:f=.001,lineWidth:h=0}=n,d=Object.assign(Object.assign({},yb(n,["fill","fillOpacity","zIndex","padding","lineWidth"])),{fill:l,fillOpacity:c,zIndex:u,padding:f,lineWidth:h}),p=((()=>{let{x:t,y:e}=r;return[t,e].some(gJ)})()?(t,n)=>{let{padding:A}=n,[a,o]=((t,e)=>{let{x:n}=r;if(!gJ(n))return[0,1];let{__data__:i}=t,{x:A}=i,[a,o]=s(n,A,e);return[a,o]})(t,A),[l,c]=((t,e)=>{let{y:n}=r;if(!gJ(n))return[0,1];let{__data__:i}=t,{y:A}=i,[a,o]=s(n,A,e);return[a,o]})(t,A),u=[[a,l],[o,l],[o,c],[a,c]].map(t=>i.map(t)),{__data__:f}=t,{y:h,y1:d}=f;return yh(e,u,{y:h,y1:d},i,n)}:(t,e)=>{let{transform:n="scale(1.2, 1.2)",transformOrigin:r="center center",stroke:i=""}=e,A=Object.assign({transform:n,transformOrigin:r,stroke:i},yb(e,["transform","transformOrigin","stroke"])),a=t.cloneNode(!0);for(let[t,e]of Object.entries(A))a.style[t]=e;return a})(t,d);p.className=o,t.parentNode.parentNode.appendChild(p),t.background=p},t=>{var e;null==(e=t.background)||e.remove(),t.background=null},t=>t.className===o]}function yR(t,e){let n=t.getRootNode().defaultView.getContextService().getDomElement();(null==n?void 0:n.style)&&(t.cursor=n.style.cursor,n.style.cursor=e)}function yK(t,e,n){return t.find(t=>Object.entries(e).every(([e,r])=>n(t)[e]===r))}function yz(t,e){return Math.sqrt(Math.pow(t[0]-e[0],2)+Math.pow(t[1]-e[1],2))}function yG(t,e=!1){let n=gV(t,t=>!!t).map((t,e)=>[0===e?"M":"L",...t]);return e&&n.push(["Z"]),n}function yV(t){return t.querySelectorAll(".element")}function yW(t,e){if(e(t))return t;let n=t.parent;for(;n&&!e(n);)n=n.parent;return n}let yX=["interval","point","density"];function yY({elementsof:t,root:e,coordinate:n,scale:r,validFindByXMarks:i=yX}){var A,a;let o=t(e),s=t=>i.includes(t.markType);if(o.find(s)){o=o.filter(s);let t=r.x,i=r.series,l=null!=(a=null==(A=null==t?void 0:t.getBandWidth)?void 0:A.call(t))?a:0,c=i?t=>{var e,n;let r=Math.round(1/(null!=(e=i.valueBandWidth)?e:1));return t.__data__.x+(null!=(n=t.__data__.series)?n:0)*l+l/(2*r)}:t=>t.__data__.x+l/2;return o.sort((t,e)=>c(t)-c(e)),t=>{let r=yE(e,t);if(!r)return;let[i]=n.invert(r),A=(0,gz(c).center)(o,i);return o[A]}}return t=>{let{target:e}=t;return yW(e,t=>!!t.classList&&t.classList.includes("element"))}}function y$(t){return!1===t||null==t}function yq(t,e){let n=new Set;for(let r of e){let{scale:e}=r,i=null==e?void 0:e[t];if(!i)continue;if(i.independent)return!0;let A=i.key||"default";if(n.add(A),n.size>1)return!0}return!1}function yJ(t){var e,n,r,i,A,a,o,s;let l=Array.from(t.markState.keys()),c=yq("x",l),u=yq("y",l),f=[],h=[],d=[],p=[],g=new Map,y=new Map,v=new Map,b=new Map,B=1,w=1;for(let[l]of t.markState.entries()){let t=l.key,x=(null==(n=null==(e=null==l?void 0:l.scale)?void 0:e.x)?void 0:n.key)||"x";if((null==(i=null==(r=null==l?void 0:l.scale)?void 0:r.x)?void 0:i.independent)||c&&"x"!==x){h.push(t),v.has(x)||v.set(x,B++);let e=v.get(x);g.set(t,`x${e}`)}else f.push(t),g.set(t,"x");let C=(null==(a=null==(A=null==l?void 0:l.scale)?void 0:A.y)?void 0:a.key)||"y";if((null==(s=null==(o=null==l?void 0:l.scale)?void 0:o.y)?void 0:s.independent)||u&&"y"!==C){p.push(t),b.has(C)||b.set(C,w++);let e=b.get(C);y.set(t,`y${e}`)}else d.push(t),y.set(t,"y")}return{hasIndependentX:c,hasIndependentY:u,marksWithSharedX:f,marksWithIndependentX:h,marksWithSharedY:d,marksWithIndependentY:p,markToXScaleMap:g,markToYScaleMap:y}}function yZ(t,e,n,r=t=>!0){return i=>{if(!r(i))return;n.emit(`plot:${t}`,i);let{target:A}=i;if(!A)return;let{className:a}=A;if("plot"===a)return;let o=yW(A,t=>"element"===t.className),s=yW(A,t=>"component"===t.className),l=yW(A,t=>"label"===t.className),c=o||s||l;if(!c)return;let{className:u,markType:f}=c,h=Object.assign(Object.assign({},i),{nativeEvent:!0});"element"===u?(h.data={data:cG(c,e)},n.emit(`element:${t}`,h),n.emit(`${f}:${t}`,h)):"label"===u?(h.data={data:c.attributes.datum},n.emit(`label:${t}`,h),a.split(/\s+/).filter(Boolean).forEach(e=>{n.emit(`${e}:${t}`,h)})):(n.emit(`component:${t}`,h),a.split(/\s+/).filter(Boolean).forEach(e=>{n.emit(`${e}:${t}`,h)}))}}function y0(){return(t,e,n)=>{let{container:r,view:i}=t,A=yZ("click",i,n,t=>1===t.detail),a=yZ("dblclick",i,n,t=>2===t.detail),o=yZ("pointertap",i,n),s=yZ("pointerdown",i,n),l=yZ("pointerup",i,n),c=yZ("pointerover",i,n),u=yZ("pointerout",i,n),f=yZ("pointermove",i,n),h=yZ("pointerenter",i,n),d=yZ("pointerleave",i,n),p=yZ("pointerupoutside",i,n),g=yZ("dragstart",i,n),y=yZ("drag",i,n),v=yZ("dragend",i,n),b=yZ("dragenter",i,n),B=yZ("dragleave",i,n),w=yZ("dragover",i,n),x=yZ("DROP",i,n);return r.addEventListener("click",A),r.addEventListener("click",a),r.addEventListener("pointertap",o),r.addEventListener("pointerdown",s),r.addEventListener("pointerup",l),r.addEventListener("pointerover",c),r.addEventListener("pointerout",u),r.addEventListener("pointermove",f),r.addEventListener("pointerenter",h),r.addEventListener("pointerleave",d),r.addEventListener("pointerupoutside",p),r.addEventListener("dragstart",g),r.addEventListener("drag",y),r.addEventListener("dragend",v),r.addEventListener("dragenter",b),r.addEventListener("dragleave",B),r.addEventListener("dragover",w),r.addEventListener("drop",x),()=>{r.removeEventListener("click",A),r.removeEventListener("click",a),r.removeEventListener("pointertap",o),r.removeEventListener("pointerdown",s),r.removeEventListener("pointerup",l),r.removeEventListener("pointerover",c),r.removeEventListener("pointerout",u),r.removeEventListener("pointermove",f),r.removeEventListener("pointerenter",h),r.removeEventListener("pointerleave",d),r.removeEventListener("pointerupoutside",p),r.removeEventListener("dragstart",g),r.removeEventListener("drag",y),r.removeEventListener("dragend",v),r.removeEventListener("dragenter",b),r.removeEventListener("dragleave",B),r.removeEventListener("dragover",w),r.removeEventListener("drop",x)}}}y0.props={reapplyWhenUpdate:!0};var y1=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function y2(t,e){let n=Object.assign(Object.assign({},{"component.axisRadar":db,"component.axisLinear":dy,"component.axisArc":dv,"component.legendContinuousBlock":pO,"component.legendContinuousBlockSize":pk,"component.legendContinuousSize":pE,"interaction.event":y0,"composition.mark":pQ,"composition.view":pL,"shape.label.label":gM,"shape.break":gR}),e),r=e=>{if("string"!=typeof e)return e;let r=`${t}.${e}`;return n[r]||cY(`Unknown Component: ${r}`)};return[(t,e)=>{let{type:n}=t,i=y1(t,["type"]);n||cY("Plot type is required!");let A=r(n);return null==A?void 0:A(i,e)},r]}function y4(t){let{canvas:e,group:n}=t;return(null==e?void 0:e.document)||(null==n?void 0:n.ownerDocument)||cY("Cannot find library document")}var y5=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function y3(t,e){let{coordinate:n={},coordinates:r}=t,i=y5(t,["coordinate","coordinates"]);if(r)return t;let{type:A,transform:a=[]}=n,o=y5(n,["type","transform"]);if(!A)return Object.assign(Object.assign({},i),{coordinates:a});let[,s]=y2("coordinate",e),{transform:l=!1}=s(A).props||{};if(l)throw Error(`Unknown coordinate: ${A}.`);return Object.assign(Object.assign({},i),{coordinates:[Object.assign({type:A},o),...a]})}function y6(t,e){return t.filter(t=>t.type===e)}function y8(t){return y6(t,"polar").length>0}function y9(t){return y6(t,"transpose").length%2==1}function y7(t){return y6(t,"theta").length>0}function vt(t){return y6(t,"radial").length>0}function ve(t){return y6(t,"radar").length>0}function vn(t){for(var e=t.length/6|0,n=Array(e),r=0;r>8&15|e>>4&240,e>>4&15|240&e,(15&e)<<4|15&e,1):8===n?vS(e>>24&255,e>>16&255,e>>8&255,(255&e)/255):4===n?vS(e>>12&15|e>>8&240,e>>8&15|e>>4&240,e>>4&15|240&e,((15&e)<<4|15&e)/255):null):(e=vB.exec(t))?new vL(e[1],e[2],e[3],1):(e=vw.exec(t))?new vL(255*e[1]/100,255*e[2]/100,255*e[3]/100,1):(e=vx.exec(t))?vS(e[1],e[2],e[3],e[4]):(e=vC.exec(t))?vS(255*e[1]/100,255*e[2]/100,255*e[3]/100,e[4]):(e=vO.exec(t))?vD(e[1],e[2]/100,e[3]/100,1):(e=vE.exec(t))?vD(e[1],e[2]/100,e[3]/100,e[4]):vk.hasOwnProperty(t)?vU(vk[t]):"transparent"===t?new vL(NaN,NaN,NaN,0):null}function vU(t){return new vL(t>>16&255,t>>8&255,255&t,1)}function vS(t,e,n,r){return r<=0&&(t=e=n=NaN),new vL(t,e,n,r)}function vI(t){return(t instanceof vg||(t=vM(t)),t)?new vL((t=t.rgb()).r,t.g,t.b,t.opacity):new vL}function vT(t,e,n,r){return 1==arguments.length?vI(t):new vL(t,e,n,null==r?1:r)}function vL(t,e,n,r){this.r=+t,this.g=+e,this.b=+n,this.opacity=+r}function v_(){return`#${vN(this.r)}${vN(this.g)}${vN(this.b)}`}function vP(){let t=vH(this.opacity);return`${1===t?"rgb(":"rgba("}${vj(this.r)}, ${vj(this.g)}, ${vj(this.b)}${1===t?")":`, ${t})`}`}function vH(t){return isNaN(t)?1:Math.max(0,Math.min(1,t))}function vj(t){return Math.max(0,Math.min(255,Math.round(t)||0))}function vN(t){return((t=vj(t))<16?"0":"")+t.toString(16)}function vD(t,e,n,r){return r<=0?t=e=n=NaN:n<=0||n>=1?t=e=NaN:e<=0&&(t=NaN),new vK(t,e,n,r)}function vR(t){if(t instanceof vK)return new vK(t.h,t.s,t.l,t.opacity);if(t instanceof vg||(t=vM(t)),!t)return new vK;if(t instanceof vK)return t;var e=(t=t.rgb()).r/255,n=t.g/255,r=t.b/255,i=Math.min(e,n,r),A=Math.max(e,n,r),a=NaN,o=A-i,s=(A+i)/2;return o?(a=e===A?(n-r)/o+(n0&&s<1?0:a,new vK(a,o,s,t.opacity)}function vK(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}function vz(t){return(t=(t||0)%360)<0?t+360:t}function vG(t){return Math.max(0,Math.min(1,t||0))}function vV(t,e,n){return(t<60?e+(n-e)*t/60:t<180?n:t<240?e+(n-e)*(240-t)/60:e)*255}function vW(t,e,n,r,i){var A=t*t,a=A*t;return((1-3*t+3*A-a)*e+(4-6*A+3*a)*n+(1+3*t+3*A-3*a)*r+a*i)/6}vd(vg,vM,{copy(t){return Object.assign(new this.constructor,this,t)},displayable(){return this.rgb().displayable()},hex:vF,formatHex:vF,formatHex8:function(){return this.rgb().formatHex8()},formatHsl:function(){return vR(this).formatHsl()},formatRgb:vQ,toString:vQ}),vd(vL,vT,vp(vg,{brighter(t){return t=null==t?1.4285714285714286:Math.pow(1.4285714285714286,t),new vL(this.r*t,this.g*t,this.b*t,this.opacity)},darker(t){return t=null==t?.7:Math.pow(.7,t),new vL(this.r*t,this.g*t,this.b*t,this.opacity)},rgb(){return this},clamp(){return new vL(vj(this.r),vj(this.g),vj(this.b),vH(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:v_,formatHex:v_,formatHex8:function(){return`#${vN(this.r)}${vN(this.g)}${vN(this.b)}${vN((isNaN(this.opacity)?1:this.opacity)*255)}`},formatRgb:vP,toString:vP})),vd(vK,function(t,e,n,r){return 1==arguments.length?vR(t):new vK(t,e,n,null==r?1:r)},vp(vg,{brighter(t){return t=null==t?1.4285714285714286:Math.pow(1.4285714285714286,t),new vK(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=null==t?.7:Math.pow(.7,t),new vK(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=this.h%360+(this.h<0)*360,e=isNaN(t)||isNaN(this.s)?0:this.s,n=this.l,r=n+(n<.5?n:1-n)*e,i=2*n-r;return new vL(vV(t>=240?t-240:t+120,i,r),vV(t,i,r),vV(t<120?t+240:t-120,i,r),this.opacity)},clamp(){return new vK(vz(this.h),vG(this.s),vG(this.l),vH(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(){let t=vH(this.opacity);return`${1===t?"hsl(":"hsla("}${vz(this.h)}, ${100*vG(this.s)}%, ${100*vG(this.l)}%${1===t?")":`, ${t})`}`}}));let vX=t=>()=>t;function vY(t,e){return function(n){return t+n*e}}function v$(t,e){var n=e-t;return n?vY(t,n):vX(isNaN(t)?e:t)}function vq(t){return function(e){var n,r,i=e.length,A=Array(i),a=Array(i),o=Array(i);for(n=0;n=1?(n=1,e-1):Math.floor(n*e),i=t[r],A=t[r+1],a=r>0?t[r-1]:2*i-A,o=rvJ(t[t.length-1]);var v0=[,,,].concat("d8b365f5f5f55ab4ac","a6611adfc27d80cdc1018571","a6611adfc27df5f5f580cdc1018571","8c510ad8b365f6e8c3c7eae55ab4ac01665e","8c510ad8b365f6e8c3f5f5f5c7eae55ab4ac01665e","8c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e","8c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e","5430058c510abf812ddfc27df6e8c3c7eae580cdc135978f01665e003c30","5430058c510abf812ddfc27df6e8c3f5f5f5c7eae580cdc135978f01665e003c30").map(vn);let v1=vZ(v0);var v2=[,,,].concat("af8dc3f7f7f77fbf7b","7b3294c2a5cfa6dba0008837","7b3294c2a5cff7f7f7a6dba0008837","762a83af8dc3e7d4e8d9f0d37fbf7b1b7837","762a83af8dc3e7d4e8f7f7f7d9f0d37fbf7b1b7837","762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b7837","762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b7837","40004b762a839970abc2a5cfe7d4e8d9f0d3a6dba05aae611b783700441b","40004b762a839970abc2a5cfe7d4e8f7f7f7d9f0d3a6dba05aae611b783700441b").map(vn);let v4=vZ(v2);var v5=[,,,].concat("e9a3c9f7f7f7a1d76a","d01c8bf1b6dab8e1864dac26","d01c8bf1b6daf7f7f7b8e1864dac26","c51b7de9a3c9fde0efe6f5d0a1d76a4d9221","c51b7de9a3c9fde0eff7f7f7e6f5d0a1d76a4d9221","c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221","c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221","8e0152c51b7dde77aef1b6dafde0efe6f5d0b8e1867fbc414d9221276419","8e0152c51b7dde77aef1b6dafde0eff7f7f7e6f5d0b8e1867fbc414d9221276419").map(vn);let v3=vZ(v5);var v6=[,,,].concat("998ec3f7f7f7f1a340","5e3c99b2abd2fdb863e66101","5e3c99b2abd2f7f7f7fdb863e66101","542788998ec3d8daebfee0b6f1a340b35806","542788998ec3d8daebf7f7f7fee0b6f1a340b35806","5427888073acb2abd2d8daebfee0b6fdb863e08214b35806","5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b35806","2d004b5427888073acb2abd2d8daebfee0b6fdb863e08214b358067f3b08","2d004b5427888073acb2abd2d8daebf7f7f7fee0b6fdb863e08214b358067f3b08").map(vn);let v8=vZ(v6);var v9=[,,,].concat("ef8a62f7f7f767a9cf","ca0020f4a58292c5de0571b0","ca0020f4a582f7f7f792c5de0571b0","b2182bef8a62fddbc7d1e5f067a9cf2166ac","b2182bef8a62fddbc7f7f7f7d1e5f067a9cf2166ac","b2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac","b2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac","67001fb2182bd6604df4a582fddbc7d1e5f092c5de4393c32166ac053061","67001fb2182bd6604df4a582fddbc7f7f7f7d1e5f092c5de4393c32166ac053061").map(vn);let v7=vZ(v9);var mt=[,,,].concat("ef8a62ffffff999999","ca0020f4a582bababa404040","ca0020f4a582ffffffbababa404040","b2182bef8a62fddbc7e0e0e09999994d4d4d","b2182bef8a62fddbc7ffffffe0e0e09999994d4d4d","b2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d","b2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d","67001fb2182bd6604df4a582fddbc7e0e0e0bababa8787874d4d4d1a1a1a","67001fb2182bd6604df4a582fddbc7ffffffe0e0e0bababa8787874d4d4d1a1a1a").map(vn);let me=vZ(mt);var mn=[,,,].concat("fc8d59ffffbf91bfdb","d7191cfdae61abd9e92c7bb6","d7191cfdae61ffffbfabd9e92c7bb6","d73027fc8d59fee090e0f3f891bfdb4575b4","d73027fc8d59fee090ffffbfe0f3f891bfdb4575b4","d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4","d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4","a50026d73027f46d43fdae61fee090e0f3f8abd9e974add14575b4313695","a50026d73027f46d43fdae61fee090ffffbfe0f3f8abd9e974add14575b4313695").map(vn);let mr=vZ(mn);var mi=[,,,].concat("fc8d59ffffbf91cf60","d7191cfdae61a6d96a1a9641","d7191cfdae61ffffbfa6d96a1a9641","d73027fc8d59fee08bd9ef8b91cf601a9850","d73027fc8d59fee08bffffbfd9ef8b91cf601a9850","d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850","d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850","a50026d73027f46d43fdae61fee08bd9ef8ba6d96a66bd631a9850006837","a50026d73027f46d43fdae61fee08bffffbfd9ef8ba6d96a66bd631a9850006837").map(vn);let mA=vZ(mi);var ma=[,,,].concat("fc8d59ffffbf99d594","d7191cfdae61abdda42b83ba","d7191cfdae61ffffbfabdda42b83ba","d53e4ffc8d59fee08be6f59899d5943288bd","d53e4ffc8d59fee08bffffbfe6f59899d5943288bd","d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd","d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd","9e0142d53e4ff46d43fdae61fee08be6f598abdda466c2a53288bd5e4fa2","9e0142d53e4ff46d43fdae61fee08bffffbfe6f598abdda466c2a53288bd5e4fa2").map(vn);let mo=vZ(ma);var ms=[,,,].concat("e5f5f999d8c92ca25f","edf8fbb2e2e266c2a4238b45","edf8fbb2e2e266c2a42ca25f006d2c","edf8fbccece699d8c966c2a42ca25f006d2c","edf8fbccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45005824","f7fcfde5f5f9ccece699d8c966c2a441ae76238b45006d2c00441b").map(vn);let ml=vZ(ms);var mc=[,,,].concat("e0ecf49ebcda8856a7","edf8fbb3cde38c96c688419d","edf8fbb3cde38c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68856a7810f7c","edf8fbbfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d6e016b","f7fcfde0ecf4bfd3e69ebcda8c96c68c6bb188419d810f7c4d004b").map(vn);let mu=vZ(mc);var mf=[,,,].concat("e0f3dba8ddb543a2ca","f0f9e8bae4bc7bccc42b8cbe","f0f9e8bae4bc7bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc443a2ca0868ac","f0f9e8ccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe08589e","f7fcf0e0f3dbccebc5a8ddb57bccc44eb3d32b8cbe0868ac084081").map(vn);let mh=vZ(mf);var md=[,,,].concat("fee8c8fdbb84e34a33","fef0d9fdcc8afc8d59d7301f","fef0d9fdcc8afc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59e34a33b30000","fef0d9fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301f990000","fff7ecfee8c8fdd49efdbb84fc8d59ef6548d7301fb300007f0000").map(vn);let mp=vZ(md);var mg=[,,,].concat("ece2f0a6bddb1c9099","f6eff7bdc9e167a9cf02818a","f6eff7bdc9e167a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf1c9099016c59","f6eff7d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016450","fff7fbece2f0d0d1e6a6bddb67a9cf3690c002818a016c59014636").map(vn);let my=vZ(mg);var mv=[,,,].concat("ece7f2a6bddb2b8cbe","f1eef6bdc9e174a9cf0570b0","f1eef6bdc9e174a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf2b8cbe045a8d","f1eef6d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0034e7b","fff7fbece7f2d0d1e6a6bddb74a9cf3690c00570b0045a8d023858").map(vn);let mm=vZ(mv);var mb=[,,,].concat("e7e1efc994c7dd1c77","f1eef6d7b5d8df65b0ce1256","f1eef6d7b5d8df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0dd1c77980043","f1eef6d4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125691003f","f7f4f9e7e1efd4b9dac994c7df65b0e7298ace125698004367001f").map(vn);let mB=vZ(mb);var mw=[,,,].concat("fde0ddfa9fb5c51b8a","feebe2fbb4b9f768a1ae017e","feebe2fbb4b9f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1c51b8a7a0177","feebe2fcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a0177","fff7f3fde0ddfcc5c0fa9fb5f768a1dd3497ae017e7a017749006a").map(vn);let mx=vZ(mw);var mC=[,,,].concat("edf8b17fcdbb2c7fb8","ffffcca1dab441b6c4225ea8","ffffcca1dab441b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c42c7fb8253494","ffffccc7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea80c2c84","ffffd9edf8b1c7e9b47fcdbb41b6c41d91c0225ea8253494081d58").map(vn);let mO=vZ(mC);var mE=[,,,].concat("f7fcb9addd8e31a354","ffffccc2e69978c679238443","ffffccc2e69978c67931a354006837","ffffccd9f0a3addd8e78c67931a354006837","ffffccd9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443005a32","ffffe5f7fcb9d9f0a3addd8e78c67941ab5d238443006837004529").map(vn);let mk=vZ(mE);var mF=[,,,].concat("fff7bcfec44fd95f0e","ffffd4fed98efe9929cc4c02","ffffd4fed98efe9929d95f0e993404","ffffd4fee391fec44ffe9929d95f0e993404","ffffd4fee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c028c2d04","ffffe5fff7bcfee391fec44ffe9929ec7014cc4c02993404662506").map(vn);let mQ=vZ(mF);var mM=[,,,].concat("ffeda0feb24cf03b20","ffffb2fecc5cfd8d3ce31a1c","ffffb2fecc5cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cf03b20bd0026","ffffb2fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cb10026","ffffccffeda0fed976feb24cfd8d3cfc4e2ae31a1cbd0026800026").map(vn);let mU=vZ(mM);var mS=[,,,].concat("deebf79ecae13182bd","eff3ffbdd7e76baed62171b5","eff3ffbdd7e76baed63182bd08519c","eff3ffc6dbef9ecae16baed63182bd08519c","eff3ffc6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b5084594","f7fbffdeebf7c6dbef9ecae16baed64292c62171b508519c08306b").map(vn);let mI=vZ(mS);var mT=[,,,].concat("e5f5e0a1d99b31a354","edf8e9bae4b374c476238b45","edf8e9bae4b374c47631a354006d2c","edf8e9c7e9c0a1d99b74c47631a354006d2c","edf8e9c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45005a32","f7fcf5e5f5e0c7e9c0a1d99b74c47641ab5d238b45006d2c00441b").map(vn);let mL=vZ(mT);var m_=[,,,].concat("f0f0f0bdbdbd636363","f7f7f7cccccc969696525252","f7f7f7cccccc969696636363252525","f7f7f7d9d9d9bdbdbd969696636363252525","f7f7f7d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525","fffffff0f0f0d9d9d9bdbdbd969696737373525252252525000000").map(vn);let mP=vZ(m_);var mH=[,,,].concat("efedf5bcbddc756bb1","f2f0f7cbc9e29e9ac86a51a3","f2f0f7cbc9e29e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8756bb154278f","f2f0f7dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a34a1486","fcfbfdefedf5dadaebbcbddc9e9ac8807dba6a51a354278f3f007d").map(vn);let mj=vZ(mH);var mN=[,,,].concat("fee0d2fc9272de2d26","fee5d9fcae91fb6a4acb181d","fee5d9fcae91fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4ade2d26a50f15","fee5d9fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181d99000d","fff5f0fee0d2fcbba1fc9272fb6a4aef3b2ccb181da50f1567000d").map(vn);let mD=vZ(mN);var mR=[,,,].concat("fee6cefdae6be6550d","feeddefdbe85fd8d3cd94701","feeddefdbe85fd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3ce6550da63603","feeddefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d948018c2d04","fff5ebfee6cefdd0a2fdae6bfd8d3cf16913d94801a636037f2704").map(vn);let mK=vZ(mR);function mz(t){return"rgb("+Math.max(0,Math.min(255,Math.round(-4.54-(t=Math.max(0,Math.min(1,t)))*(35.34-t*(2381.73-t*(6402.7-t*(7024.72-2710.57*t)))))))+", "+Math.max(0,Math.min(255,Math.round(32.49+t*(170.73+t*(52.82-t*(131.46-t*(176.58-67.37*t)))))))+", "+Math.max(0,Math.min(255,Math.round(81.24+t*(442.36-t*(2482.43-t*(6167.24-t*(6614.94-2475.67*t)))))))+")"}let mG=Math.PI/180,mV=180/Math.PI;var mW=-1.78277*.29227-.1347134789;function mX(t,e,n,r){return 1==arguments.length?function(t){if(t instanceof mY)return new mY(t.h,t.s,t.l,t.opacity);t instanceof vL||(t=vI(t));var e=t.r/255,n=t.g/255,r=t.b/255,i=(mW*r+-1.7884503806*e-3.5172982438*n)/(mW+-1.7884503806-3.5172982438),A=r-i,a=-((1.97294*(n-i)- -.29227*A)/.90649),o=Math.sqrt(a*a+A*A)/(1.97294*i*(1-i)),s=o?Math.atan2(a,A)*mV-120:NaN;return new mY(s<0?s+360:s,o,i,t.opacity)}(t):new mY(t,e,n,null==r?1:r)}function mY(t,e,n,r){this.h=+t,this.s=+e,this.l=+n,this.opacity=+r}function m$(t){return function e(n){function r(e,r){var i=t((e=mX(e)).h,(r=mX(r)).h),A=v$(e.s,r.s),a=v$(e.l,r.l),o=v$(e.opacity,r.opacity);return function(t){return e.h=i(t),e.s=A(t),e.l=a(Math.pow(t,n)),e.opacity=o(t),e+""}}return n*=1,r.gamma=e,r}(1)}vd(mY,mX,vp(vg,{brighter(t){return t=null==t?1.4285714285714286:Math.pow(1.4285714285714286,t),new mY(this.h,this.s,this.l*t,this.opacity)},darker(t){return t=null==t?.7:Math.pow(.7,t),new mY(this.h,this.s,this.l*t,this.opacity)},rgb(){var t=isNaN(this.h)?0:(this.h+120)*mG,e=+this.l,n=isNaN(this.s)?0:this.s*e*(1-e),r=Math.cos(t),i=Math.sin(t);return new vL(255*(e+n*(-.14861*r+1.78277*i)),255*(e+n*(-.29227*r+-.90649*i)),255*(e+1.97294*r*n),this.opacity)}})),m$(function(t,e){var n=e-t;return n?vY(t,n>180||n<-180?n-360*Math.round(n/360):n):vX(isNaN(t)?e:t)});var mq=m$(v$);let mJ=mq(mX(300,.5,0),mX(-240,.5,1));var mZ=mq(mX(-100,.75,.35),mX(80,1.5,.8)),m0=mq(mX(260,.75,.35),mX(80,1.5,.8)),m1=mX();function m2(t){(t<0||t>1)&&(t-=Math.floor(t));var e=Math.abs(t-.5);return m1.h=360*t-100,m1.s=1.5-1.5*e,m1.l=.8-.9*e,m1+""}var m4=vT(),m5=Math.PI/3,m3=2*Math.PI/3;function m6(t){var e;return m4.r=255*(e=Math.sin(t=(.5-t)*Math.PI))*e,m4.g=255*(e=Math.sin(t+m5))*e,m4.b=255*(e=Math.sin(t+m3))*e,m4+""}function m8(t){return"rgb("+Math.max(0,Math.min(255,Math.round(34.61+(t=Math.max(0,Math.min(1,t)))*(1172.33-t*(10793.56-t*(33300.12-t*(38394.49-14825.05*t)))))))+", "+Math.max(0,Math.min(255,Math.round(23.31+t*(557.33+t*(1225.33-t*(3574.96-t*(1073.77+707.56*t)))))))+", "+Math.max(0,Math.min(255,Math.round(27.2+t*(3211.1-t*(15327.97-t*(27814-t*(22569.18-6838.66*t)))))))+")"}function m9(t){var e=t.length;return function(n){return t[Math.max(0,Math.min(e-1,Math.floor(n*e)))]}}let m7=m9(vn("44015444025645045745055946075a46085c460a5d460b5e470d60470e6147106347116447136548146748166848176948186a481a6c481b6d481c6e481d6f481f70482071482173482374482475482576482677482878482979472a7a472c7a472d7b472e7c472f7d46307e46327e46337f463480453581453781453882443983443a83443b84433d84433e85423f854240864241864142874144874045884046883f47883f48893e49893e4a893e4c8a3d4d8a3d4e8a3c4f8a3c508b3b518b3b528b3a538b3a548c39558c39568c38588c38598c375a8c375b8d365c8d365d8d355e8d355f8d34608d34618d33628d33638d32648e32658e31668e31678e31688e30698e306a8e2f6b8e2f6c8e2e6d8e2e6e8e2e6f8e2d708e2d718e2c718e2c728e2c738e2b748e2b758e2a768e2a778e2a788e29798e297a8e297b8e287c8e287d8e277e8e277f8e27808e26818e26828e26828e25838e25848e25858e24868e24878e23888e23898e238a8d228b8d228c8d228d8d218e8d218f8d21908d21918c20928c20928c20938c1f948c1f958b1f968b1f978b1f988b1f998a1f9a8a1e9b8a1e9c891e9d891f9e891f9f881fa0881fa1881fa1871fa28720a38620a48621a58521a68522a78522a88423a98324aa8325ab8225ac8226ad8127ad8128ae8029af7f2ab07f2cb17e2db27d2eb37c2fb47c31b57b32b67a34b67935b77937b87838b9773aba763bbb753dbc743fbc7340bd7242be7144bf7046c06f48c16e4ac16d4cc26c4ec36b50c46a52c56954c56856c66758c7655ac8645cc8635ec96260ca6063cb5f65cb5e67cc5c69cd5b6ccd5a6ece5870cf5773d05675d05477d1537ad1517cd2507fd34e81d34d84d44b86d54989d5488bd6468ed64590d74393d74195d84098d83e9bd93c9dd93ba0da39a2da37a5db36a8db34aadc32addc30b0dd2fb2dd2db5de2bb8de29bade28bddf26c0df25c2df23c5e021c8e020cae11fcde11dd0e11cd2e21bd5e21ad8e219dae319dde318dfe318e2e418e5e419e7e419eae51aece51befe51cf1e51df4e61ef6e620f8e621fbe723fde725"));var bt=m9(vn("00000401000501010601010802010902020b02020d03030f03031204041405041606051806051a07061c08071e0907200a08220b09240c09260d0a290e0b2b100b2d110c2f120d31130d34140e36150e38160f3b180f3d19103f1a10421c10441d11471e114920114b21114e22115024125325125527125829115a2a115c2c115f2d11612f116331116533106734106936106b38106c390f6e3b0f703d0f713f0f72400f74420f75440f764510774710784910784a10794c117a4e117b4f127b51127c52137c54137d56147d57157e59157e5a167e5c167f5d177f5f187f601880621980641a80651a80671b80681c816a1c816b1d816d1d816e1e81701f81721f817320817521817621817822817922827b23827c23827e24828025828125818326818426818627818827818928818b29818c29818e2a81902a81912b81932b80942c80962c80982d80992d809b2e7f9c2e7f9e2f7fa02f7fa1307ea3307ea5317ea6317da8327daa337dab337cad347cae347bb0357bb2357bb3367ab5367ab73779b83779ba3878bc3978bd3977bf3a77c03a76c23b75c43c75c53c74c73d73c83e73ca3e72cc3f71cd4071cf4070d0416fd2426fd3436ed5446dd6456cd8456cd9466bdb476adc4869de4968df4a68e04c67e24d66e34e65e44f64e55064e75263e85362e95462ea5661eb5760ec5860ed5a5fee5b5eef5d5ef05f5ef1605df2625df2645cf3655cf4675cf4695cf56b5cf66c5cf66e5cf7705cf7725cf8745cf8765cf9785df9795df97b5dfa7d5efa7f5efa815ffb835ffb8560fb8761fc8961fc8a62fc8c63fc8e64fc9065fd9266fd9467fd9668fd9869fd9a6afd9b6bfe9d6cfe9f6dfea16efea36ffea571fea772fea973feaa74feac76feae77feb078feb27afeb47bfeb67cfeb77efeb97ffebb81febd82febf84fec185fec287fec488fec68afec88cfeca8dfecc8ffecd90fecf92fed194fed395fed597fed799fed89afdda9cfddc9efddea0fde0a1fde2a3fde3a5fde5a7fde7a9fde9aafdebacfcecaefceeb0fcf0b2fcf2b4fcf4b6fcf6b8fcf7b9fcf9bbfcfbbdfcfdbf")),be=m9(vn("00000401000501010601010802010a02020c02020e03021004031204031405041706041907051b08051d09061f0a07220b07240c08260d08290e092b10092d110a30120a32140b34150b37160b39180c3c190c3e1b0c411c0c431e0c451f0c48210c4a230c4c240c4f260c51280b53290b552b0b572d0b592f0a5b310a5c320a5e340a5f3609613809623909633b09643d09653e0966400a67420a68440a68450a69470b6a490b6a4a0c6b4c0c6b4d0d6c4f0d6c510e6c520e6d540f6d550f6d57106e59106e5a116e5c126e5d126e5f136e61136e62146e64156e65156e67166e69166e6a176e6c186e6d186e6f196e71196e721a6e741a6e751b6e771c6d781c6d7a1d6d7c1d6d7d1e6d7f1e6c801f6c82206c84206b85216b87216b88226a8a226a8c23698d23698f24699025689225689326679526679727669827669a28659b29649d29649f2a63a02a63a22b62a32c61a52c60a62d60a82e5fa92e5eab2f5ead305dae305cb0315bb1325ab3325ab43359b63458b73557b93556ba3655bc3754bd3853bf3952c03a51c13a50c33b4fc43c4ec63d4dc73e4cc83f4bca404acb4149cc4248ce4347cf4446d04545d24644d34743d44842d54a41d74b3fd84c3ed94d3dda4e3cdb503bdd513ade5238df5337e05536e15635e25734e35933e45a31e55c30e65d2fe75e2ee8602de9612bea632aeb6429eb6628ec6726ed6925ee6a24ef6c23ef6e21f06f20f1711ff1731df2741cf3761bf37819f47918f57b17f57d15f67e14f68013f78212f78410f8850ff8870ef8890cf98b0bf98c0af98e09fa9008fa9207fa9407fb9606fb9706fb9906fb9b06fb9d07fc9f07fca108fca309fca50afca60cfca80dfcaa0ffcac11fcae12fcb014fcb216fcb418fbb61afbb81dfbba1ffbbc21fbbe23fac026fac228fac42afac62df9c72ff9c932f9cb35f8cd37f8cf3af7d13df7d340f6d543f6d746f5d949f5db4cf4dd4ff4df53f4e156f3e35af3e55df2e661f2e865f2ea69f1ec6df1ed71f1ef75f1f179f2f27df2f482f3f586f3f68af4f88ef5f992f6fa96f8fb9af9fc9dfafda1fcffa4")),bn=m9(vn("0d088710078813078916078a19068c1b068d1d068e20068f2206902406912605912805922a05932c05942e05952f059631059733059735049837049938049a3a049a3c049b3e049c3f049c41049d43039e44039e46039f48039f4903a04b03a14c02a14e02a25002a25102a35302a35502a45601a45801a45901a55b01a55c01a65e01a66001a66100a76300a76400a76600a76700a86900a86a00a86c00a86e00a86f00a87100a87201a87401a87501a87701a87801a87a02a87b02a87d03a87e03a88004a88104a78305a78405a78606a68707a68808a68a09a58b0aa58d0ba58e0ca48f0da4910ea3920fa39410a29511a19613a19814a099159f9a169f9c179e9d189d9e199da01a9ca11b9ba21d9aa31e9aa51f99a62098a72197a82296aa2395ab2494ac2694ad2793ae2892b02991b12a90b22b8fb32c8eb42e8db52f8cb6308bb7318ab83289ba3388bb3488bc3587bd3786be3885bf3984c03a83c13b82c23c81c33d80c43e7fc5407ec6417dc7427cc8437bc9447aca457acb4679cc4778cc4977cd4a76ce4b75cf4c74d04d73d14e72d24f71d35171d45270d5536fd5546ed6556dd7566cd8576bd9586ada5a6ada5b69db5c68dc5d67dd5e66de5f65de6164df6263e06363e16462e26561e26660e3685fe4695ee56a5de56b5de66c5ce76e5be76f5ae87059e97158e97257ea7457eb7556eb7655ec7754ed7953ed7a52ee7b51ef7c51ef7e50f07f4ff0804ef1814df1834cf2844bf3854bf3874af48849f48948f58b47f58c46f68d45f68f44f79044f79143f79342f89441f89540f9973ff9983ef99a3efa9b3dfa9c3cfa9e3bfb9f3afba139fba238fca338fca537fca636fca835fca934fdab33fdac33fdae32fdaf31fdb130fdb22ffdb42ffdb52efeb72dfeb82cfeba2cfebb2bfebd2afebe2afec029fdc229fdc328fdc527fdc627fdc827fdca26fdcb26fccd25fcce25fcd025fcd225fbd324fbd524fbd724fad824fada24f9dc24f9dd25f8df25f8e125f7e225f7e425f6e626f6e826f5e926f5eb27f4ed27f3ee27f3f027f2f227f1f426f1f525f0f724f0f921"));function br(t,e){let n=Object.keys(t);for(let r of Object.values(e)){let{name:e}=r.getOptions();if(e in t){let i=uL(n.filter(t=>t.startsWith(e)).map(t=>+(t.replace(e,"")||0)))+1,A=`${e}${i}`;t[A]=r,r.getOptions().key=A}else t[e]=r}return t}function bi(t,e){let n,r,[i]=y2("scale",e),{relations:A}=t,[a]=A&&Array.isArray(A)?[t=>{var e;n=t.map.bind(t),r=null==(e=t.invert)?void 0:e.bind(t);let i=A.filter(([t])=>"function"==typeof t),a=A.filter(([t])=>"function"!=typeof t),o=new Map(a);if(t.map=t=>{for(let[e,n]of i)if(e(t))return n;return o.has(t)?o.get(t):n(t)},!r)return t;let s=new Map(a.map(([t,e])=>[e,t])),l=new Map(i.map(([t,e])=>[e,t]));return t.invert=t=>l.has(t)?t:s.has(t)?s.get(t):r(t),t},t=>(null!==n&&(t.map=n),null!==r&&(t.invert=r),t)]:[cV,cV];return a(i(t))}function bA(t,e){let n=t.filter(({name:t,facet:n=!0})=>n&&t===e),r=n.flatMap(t=>t.domain),i=n.every(ba)?h3(r):n.every(bo)?Array.from(new Set(r)):null;if(null!==i)for(let t of n)t.domain=i}function ba(t){let{type:e}=t;return"string"==typeof e&&["linear","log","pow","time"].includes(e)}function bo(t){let{type:e}=t;return"string"==typeof e&&["band","point","ordinal"].includes(e)}function bs(t,e,n,r,i){let[A]=y2("palette",i),{category10:a,category20:o}=r,s=Array.from(new Set(n)).length<=a.length?a:o,{palette:l=s,offset:c}=e;if(Array.isArray(l))return l;try{return A({type:l})}catch(e){let t=function(t,e,n=t=>t){if(!t)return null;let r=uv(t),i=Z[`scheme${r}`],A=Z[`interpolate${r}`];if(!i&&!A)return null;if(i){if(!i.some(Array.isArray))return i;let t=i[e.length];if(t)return t}return e.map((t,r)=>A(n(r/e.length)))}(l,n,c);if(t)return t;throw Error(`Unknown Component: ${l} `)}}function bl(t,e){var n;return e||((n=t).startsWith("x")||n.startsWith("y")||n.startsWith("position")||n.startsWith("size")?"point":"ordinal")}function bc(t,e,n){return n||("color"!==t||e?"linear":"sequential")}function bu(t,e){if(0===t.length)return t;let{domainMin:n,domainMax:r}=e,[i,A]=t;return[null!=n?n:i,null!=r?r:A]}function bf(t){return bd(t,t=>{let e=typeof t;return"string"===e||"boolean"===e})}function bh(t){return bd(t,t=>t instanceof Date)}function bd(t,e){for(let n of t)if(n.some(e))return!0;return!1}let bp={linear:"linear",identity:"identity",log:"log",pow:"pow",sqrt:"sqrt",sequential:"sequential"},bg={threshold:"threshold",quantize:"quantize",quantile:"quantile"},by={ordinal:"ordinal",band:"band",point:"point"},bv={constant:"constant"};var bm=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function bb(t,e,n,r,i){let[A]=y2("component",r),{scaleInstances:a,scale:o,bbox:s}=t;return A(bm(t,["scaleInstances","scale","bbox"]))({coordinate:e,library:r,markState:i,scales:a,theme:n,value:{bbox:s,library:r},scale:o})}function bB(t,e){let n=["left","right","bottom","top"];return cv(t,({type:t,position:e,group:r})=>n.includes(e)?void 0===r?t.startsWith("legend")?`legend-${e}`:Symbol("independent"):"independent"===r?Symbol("independent"):r:Symbol("independent")).flatMap(([,t])=>{if(1===t.length)return t[0];if(void 0!==e){let n=t.filter(t=>void 0!==t.length).map(t=>t.length),r=uT(n);if(r>e)return t.forEach(t=>t.group=Symbol("independent")),t;let i=(e-r)/(t.length-n.length);t.forEach(t=>{void 0===t.length&&(t.length=i)})}let n=uL(t,t=>t.size),r=uL(t,t=>t.order),i=uL(t,t=>t.crossPadding);return{type:"group",size:n,order:r,position:t[0].position,children:t,crossPadding:i}})}function bw(t){let e=y6(t,"polar");if(e.length){let{startAngle:t,endAngle:n}=u_(e[e.length-1]);return[t,n]}let n=y6(t,"radial");if(n.length){let{startAngle:t,endAngle:e}=uH(n[n.length-1]);return[t,e]}return[-Math.PI/2,Math.PI/2*3]}function bx(t,e,n,r,i,A){let{type:a}=t;if(["left","right","bottom","top"].includes(r)&&"string"==typeof a)return(a.startsWith("axis")?function(t,e,n,r,i,A){var a,o;t.transform=t.transform||[{type:"hide"}];let s="left"===r||"right"===r,l=bk(t,r,i),{tickLength:c=0,labelSpacing:u=0,titleSpacing:f=0,labelAutoRotate:h}=l,d=bm(l,["tickLength","labelSpacing","titleSpacing","labelAutoRotate"]),p=bC(t,A),g=bO(d,p),y=c;"function"==typeof t.tickLength&&(y=Math.max(...((null==(a=p.getTicks)?void 0:a.call(p))||p.getOptions().domain).map((e,n,r)=>t.tickLength(e,n,r)),0));let v=y+u;if(g&&g.length){let r=uL(g,t=>t.width),i=uL(g,t=>t.height);if(s)t.size=r+v;else{let{tickFilter:A,labelTransform:a}=t;(function(t,e,n,r,i){if(uT(e,t=>t.width)>n)return!0;let A=t.clone();A.update({range:[0,n]});let a=bF(t,i),o=a.map(t=>A.map(t)+(A.getBandWidth?A.getBandWidth(t)/2:0)),s=a.map((t,e)=>e),l=-r[0],c=n+r[1],u=(t,e)=>{let{width:n}=e;return[t-n/2,t+n/2]};for(let t=0;tc)return!0;let i=o[t+1];if(i){let[n]=u(i,e[t+1]);if(r>n)return!0}}return!1})(p,g,e,n,A)&&!a&&!1!==h&&null!==h?(t.labelTransform="rotate(90)",t.size=r+v):(t.labelTransform=null!=(o=t.labelTransform)?o:"rotate(0)",t.size=i+v)}}else t.size=y;let b=bE(d);b&&(s?t.size+=f+b.width:t.size+=f+b.height)}:a.startsWith("group")?function(t,e,n,r,i,A){let{children:a}=t,o=uL(a,t=>t.crossPadding);a.forEach(t=>t.crossPadding=o),a.forEach(t=>bx(t,e,n,r,i,A));let s=uL(a,t=>t.size);t.size=s,a.forEach(t=>t.size=s)}:a.startsWith("legendContinuous")?function(t,e,n,r,i,A){let a=(()=>{let{legendContinuous:e}=i;return cC({},e,t)})(),{labelSpacing:o=0,titleSpacing:s=0}=a,l=bm(a,["labelSpacing","titleSpacing"]),c="left"===r||"right"===r,{size:u}=cJ(l,"ribbon"),{size:f}=cJ(l,"handleIcon");t.size=Math.max(u,2.4*f);let h=bO(l,bC(t,A));if(h){let e=c?"width":"height",n=uL(h,t=>t[e]);t.size+=n+o}let d=bE(l);d&&(c?t.size=Math.max(t.size,d.width):t.size+=s+d.height)}:"legendCategory"===a?function(t,e,n,r,i,A){let a=(()=>{let{legendCategory:e}=i,{title:n}=t,[r,A]=Array.isArray(n)?[n,void 0]:[void 0,n];return cC({title:r},e,Object.assign(Object.assign({},t),{title:A}))})(),{focus:o,itemSpacing:s,focusMarkerSize:l,itemMarkerSize:c,titleSpacing:u,rowPadding:f,colPadding:h,maxCols:d=1/0,maxRows:p=1/0}=a,g=bm(a,["focus","itemSpacing","focusMarkerSize","itemMarkerSize","titleSpacing","rowPadding","colPadding","maxCols","maxRows"]),{cols:y,length:v}=t,b="left"===r||"right"===r,B=void 0===v?e+(b?0:n[0]+n[1]):v,w=bC(t,A),{render:x}=t;if(x&&"u">typeof document){let e=w.getOptions().domain,{labelFormatter:n}=g,r=x(e.map((t,e)=>({id:t,index:e,label:n?"string"==typeof n?EM(n)(t):n(t):`${t}`,value:t,color:w.map(t)})),g),i=document.createElement("div"),{width:A,height:a}=t,o={position:"absolute",visibility:"hidden",top:"-9999px"};A?o.width=`${A}px`:b||(o.width=`${B}px`),a?o.height=`${a}px`:b&&(o.height=`${B}px`),Object.assign(i.style,o),"string"==typeof r?i.innerHTML=r:r instanceof HTMLElement&&i.appendChild(r),document.body.appendChild(i);let s=i.getBoundingClientRect();document.body.removeChild(i),t.size=b?s.width:s.height;return}let C=bE(g),O=bO(g,w,"itemLabel"),E=void 0!==g.itemValueText?bO(g,w,"itemValue"):null,k=Math.max(O[0].height,c,...(null==E?void 0:E[0])?[E[0].height]:[])+f,F=(t,e=0)=>{let n=c+t+s[0]+e;return(null==E?void 0:E[0])&&(n+=E[0].width+s[1]),o&&(n+=l+s[2]),n};if(b)(()=>{let e=-1/0,n=0,r=1,i=0,A=-1/0,a=-1/0,o=C?C.height:0,s=B-o;for(let{width:t}of O)e=Math.max(e,F(t,h)),n+k>s?(r++,A=Math.max(A,i),a=Math.max(a,n),i=1,n=k):(n+=k,i++);r<=1&&(A=i,a=n),t.size=e*Math.min(r,d),t.length=a+o,cC(t,{cols:Math.min(r,d),gridRow:A})})();else if("number"==typeof y){let e=Math.ceil(O.length/y),n=uL(O,t=>F(t.width))*y;t.size=k*Math.min(e,p)-f,t.length=Math.min(n,B)}else{let e=1,n=0,r=-1/0;for(let{width:t}of O){let i=F(t,h);n+i>B?(r=Math.max(r,n),n=i,e++):n+=i}1===e&&(r=n),t.size=k*Math.min(e,p)-f,t.length=r}C&&(b?t.size=Math.max(t.size,C.width):t.size+=u+C.height)}:a.startsWith("slider")?function(t,e,n,r,i,A){let{trackSize:a,handleIconSize:o}=(()=>{let{slider:e}=i;return cC({},e,t)})();t.size=Math.max(a,2.4*o)}:"title"===a?function(t,e,n,r,i,A){let a=cC({},i.title,t),{title:o,subtitle:s,spacing:l=0}=a,c=bm(a,["title","subtitle","spacing"]);if(o&&(t.size=bQ(o,cJ(c,"title")).height),s){let e=bQ(s,cJ(c,"subtitle"));t.size+=l+e.height}}:a.startsWith("scrollbar")?function(t,e,n,r,i,A){let{trackSize:a=6}=cC({},i.scrollbar,t);t.size=a}:()=>{})(t,e,n,r,i,A)}function bC(t,e){let[n]=y2("scale",e),{scales:r,tickCount:i,tickMethod:A}=t,a=r.find(t=>"constant"!==t.type&&"identity"!==t.type);return void 0!==i&&(a.tickCount=i),void 0!==A&&(a.tickMethod=A),n(a)}function bO(t,e,n="label"){var r,i;let A,a,{labelFormatter:o,tickFilter:s,label:l=!0}=t,c=bm(t,["labelFormatter","tickFilter","label"]);if(!l)return null;let u=(r=e,i=o,A=bF(r,s).map(t=>"number"==typeof t?uD(t):t),a=i?"string"==typeof i?EM(i):i:r.getFormatter?r.getFormatter():t=>`${t}`,A.map(a)),f=cJ(c,n),h=u.map((t,e)=>Object.fromEntries(Object.entries(f).map(([n,r])=>[n,"function"==typeof r?r(t,e):r]))),d=u.map((t,e)=>bQ(t,h[e]));return h.some(t=>t.transform)||(t.indexBBox=new Map(u.map((t,e)=>e).map(t=>[t,[u[t],d[t]]]))),d}function bE(t){let{title:e}=t,n=bm(t,["title"]);if(!1===e||null==e)return null;let r=cJ(n,"title"),{direction:i,transform:A}=r,a=Array.isArray(e)?e.join(","):e;return"string"!=typeof a?null:bQ(a,Object.assign(Object.assign({},r),{transform:A||("vertical"===i?"rotate(-90)":"")}))}function bk(t,e,n){let{title:r}=t,[i,A]=Array.isArray(r)?[r,void 0]:[void 0,r],{axis:a,[`axis${cX(e)}`]:o}=n;return cC({title:i},a,o,Object.assign(Object.assign({},t),{title:A}))}function bF(t,e){let n=t.getTicks?t.getTicks():t.getOptions().domain;return e?n.filter(e):n}function bQ(t,e){var n;let r=(n=t)instanceof oa?n:new oO({style:{text:`${n}`}}),{filter:i}=e,A=bm(e,["filter"]);return r.attr(Object.assign(Object.assign({},A),{visibility:"none"})),r.getBBox()}function bM(t,e){let n;if(void 0===e)for(let e of t)null!=e&&(n>e||void 0===n&&e>=e)&&(n=e);else{let r=-1;for(let i of t)null!=(i=e(i,++r,t))&&(n>i||void 0===n&&i>=i)&&(n=i)}return n}function bU(t,e,n,r,i,A,a){let o=cy(t,t=>t.position),{padding:s=A.padding,paddingLeft:l=s,paddingRight:c=s,paddingBottom:u=s,paddingTop:f=s}=i,h={paddingBottom:u,paddingLeft:l,paddingTop:f,paddingRight:c};for(let t of r){let r=`padding${cX(pq(t))}`,i=o.get(t)||[],s=h[r],l=t=>{void 0===t.size&&(t.size=t.defaultSize)},c=t=>{"group"===t.type?(t.children.forEach(l),t.size=uL(t.children,t=>t.size)):t.size=t.defaultSize},u=r=>{r.size||("auto"!==s?c(r):(bx(r,e,n,t,A,a),l(r)))},f=t=>{t.type.startsWith("axis")&&void 0===t.labelAutoHide&&(t.labelAutoHide=!0)},d="bottom"===t||"top"===t,p=bM(i,t=>t.order),g=i.filter(t=>t.type.startsWith("axis")&&t.order==p);if(g.length&&(g[0].crossPadding=0),"number"==typeof s)i.forEach(l),i.forEach(f);else if(0===i.length)h[r]=0;else{let t=bB(i,d?e+n[0]+n[1]:e);t.forEach(u);let A=t.reduce((t,{size:e,crossPadding:n=12})=>t+e+n,0);h[r]=A}}return h}function bS({width:t,height:e,paddingLeft:n,paddingRight:r,paddingTop:i,paddingBottom:A,marginLeft:a,marginTop:o,marginBottom:s,marginRight:l,innerHeight:c,innerWidth:u,insetBottom:f,insetLeft:h,insetRight:d,insetTop:p}){let g=n+a,y=i+o,v=r+l,b=A+s,B=t-a-l,w=[g+h,y+p,u-h-d,c-p-f,"center",null,null];return{top:[g,0,u,y,"vertical",!0,gv,a,B],right:[t-v,y,v,c,"horizontal",!1,gv],bottom:[g,e-b,u,b,"vertical",!1,gv,a,B],left:[0,y,g,c,"horizontal",!0,gv],"top-left":[g,0,u,y,"vertical",!0,gv],"top-right":[g,0,u,y,"vertical",!0,gv],"bottom-left":[g,e-b,u,b,"vertical",!1,gv],"bottom-right":[g,e-b,u,b,"vertical",!1,gv],center:w,inner:w,outer:w}}function bI(t,e,n={},r=!1){return c4(t)||Array.isArray(t)&&r?t:cC(n,cJ(t,e))}function bT(t,e={}){return c4(t)||Array.isArray(t)||!bL(t)?t:cC(e,t)}function bL(t){if(0===Object.keys(t).length)return!0;let{title:e,items:n}=t;return void 0!==e||void 0!==n}function b_(t,e){return"object"==typeof t?cJ(t,e):t}var bP=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let bH=Symbol("CALLBACK_ITEM");function bj(t,e,n){let{encode:r={},scale:i={},transform:A=[]}=e;return[t,Object.assign(Object.assign({},bP(e,["encode","scale","transform"])),{encode:r,scale:i,transform:A})]}function bN(t,e,n){var r,i,A,a;return r=this,i=void 0,A=void 0,a=function*(){let{library:t}=n,{data:r}=e,[i]=y2("data",t),A=function(t){if(eG(t))return{type:"inline",value:t};if(!t)return{type:"inline",value:null};if(Array.isArray(t))return{type:"inline",value:t};let{type:e="inline"}=t;return Object.assign(Object.assign({},bP(t,["type"])),{type:e})}(r),{transform:a=[]}=A,o=[bP(A,["transform"]),...a].map(t=>i(t,n)),s=yield(function(t){return t.reduce((t,e)=>n=>{var r,i,A,a;return r=this,i=void 0,A=void 0,a=function*(){return e((yield t(n)))},new(A||(A=Promise))(function(t,e){function n(t){try{s(a.next(t))}catch(t){e(t)}}function o(t){try{s(a.throw(t))}catch(t){e(t)}}function s(e){var r;e.done?t(e.value):((r=e.value)instanceof A?r:new A(function(t){t(r)})).then(n,o)}s((a=a.apply(r,i||[])).next())})},cV)})(o)(r),l=!r||Array.isArray(r)||Array.isArray(s)?s:{value:s};return[Array.isArray(s)?uQ(s):[],Object.assign(Object.assign({},e),{data:l})]},new(A||(A=Promise))(function(t,e){function n(t){try{s(a.next(t))}catch(t){e(t)}}function o(t){try{s(a.throw(t))}catch(t){e(t)}}function s(e){var r;e.done?t(e.value):((r=e.value)instanceof A?r:new A(function(t){t(r)})).then(n,o)}s((a=a.apply(r,i||[])).next())})}function bD(t,e,n){let{encode:r}=e;if(!r)return[t,e];let i={};for(let[t,e]of Object.entries(r))if(Array.isArray(e))for(let n=0;n{var e,n,r,A;return!function(t){if("object"!=typeof t||t instanceof Date||null===t)return!1;let{type:e}=t;return cq(e)}(t)?{type:(e=i,"function"==typeof(n=t)?"transform":"string"==typeof n&&(r=e,A=n,Array.isArray(r)&&r.some(t=>void 0!==t[A]))?"field":"constant"),value:t}:t});return[t,Object.assign(Object.assign({},e),{encode:A})]}function bK(t,e,n){let{encode:r}=e;if(!r)return[t,e];let i=uF(r,(t,e)=>{var n;let{type:r}=t;return"constant"!==r||(n=e).startsWith("x")||n.startsWith("y")||n.startsWith("position")||"enterDelay"===n||"enterDuration"===n||"updateDelay"===n||"updateDuration"===n||"exitDelay"===n||"exitDuration"===n?t:Object.assign(Object.assign({},t),{constant:!0})});return[t,Object.assign(Object.assign({},e),{encode:i})]}function bz(t,e,n){let{encode:r,data:i}=e;if(!r)return[t,e];let{library:A}=n,a=function(t){let[e]=y2("encode",t);return(t,n)=>void 0===n||void 0===t?null:Object.assign(Object.assign({},n),{type:"column",value:e(n)(t),field:function(t){let{type:e,value:n}=t;return"field"===e&&"string"==typeof n?n:null}(n)})}(A),o=uF(r,t=>a(i,t));return[t,Object.assign(Object.assign({},e),{encode:o})]}function bG(t,e,n){let{tooltip:r={}}=e;return c4(r)?[t,e]:Array.isArray(r)?[t,Object.assign(Object.assign({},e),{tooltip:{items:r}})]:c2(r)&&bL(r)?[t,Object.assign(Object.assign({},e),{tooltip:r})]:[t,Object.assign(Object.assign({},e),{tooltip:{items:[r]}})]}function bV(t,e,n){let{data:r,encode:i,tooltip:A={}}=e;if(c4(A))return[t,e];let a=e=>{if(!e)return e;if("string"==typeof e)return t.map(t=>({name:e,value:r[t][e]}));if(c2(e)){let{field:n,channel:A,color:a,name:o=n,valueFormatter:s=t=>t}=e,l="string"==typeof s?EM(s):s,c=A&&i[A],u=c&&i[A].field,f=o||u||A,h=[];for(let e of t){let t=n?r[e][n]:c?i[A].value[e]:null;h[e]={name:f,color:a,value:l(t)}}return h}if("function"==typeof e){let n=[];for(let A of t){let t=e(r[A],A,r,i);c2(t)?n[A]=Object.assign(Object.assign({},t),{[bH]:!0}):n[A]={value:t}}return n}return e},{title:o,items:s=[]}=A,l=bP(A,["title","items"]),c=Object.assign({title:a(o),items:Array.isArray(s)?s.map(a):[]},l);return[t,Object.assign(Object.assign({},e),{tooltip:c})]}function bW(t,e,n){let{encode:r}=e,i=bP(e,["encode"]);if(!r)return[t,e];let A=Object.entries(r),a=A.filter(([,t])=>{let{value:e}=t;return Array.isArray(e[0])}).flatMap(([e,n])=>{let r=[[e,Array(t.length).fill(void 0)]],{value:i}=n,A=bP(n,["value"]);for(let n=0;n[t,Object.assign({type:"column",value:e},A)])}),o=Object.fromEntries([...A,...a]);return[t,Object.assign(Object.assign({},i),{encode:o})]}function bX(t,e,n){let{axis:r={},legend:i={},slider:A={},scrollbar:a={}}=e,o=(t,e)=>{if("boolean"==typeof t)return t?{}:null;let n=t[e];return void 0===n||n?n:null};return cC(e,{scale:Object.assign(Object.assign({},Object.fromEntries(("object"==typeof r?Array.from(new Set(["x","y","z",...Object.keys(r)])):["x","y","z"]).map(t=>{let e=o(a,t);return[t,Object.assign({guide:o(r,t),slider:o(A,t),scrollbar:e},e&&{ratio:void 0===e.ratio?.5:e.ratio})]}))),{color:{guide:o(i,"color")},size:{guide:o(i,"size")},shape:{guide:o(i,"shape")},opacity:{guide:o(i,"opacity")}})}),[t,e]}function bY(t,e,n){let{animate:r}=e;return r||void 0===r||cC(e,{animate:{enter:{type:null},exit:{type:null},update:{type:null}}}),[t,e]}function b$(t,e,n){var r,i;return cC(e,{scale:{series:Object.assign({key:`DEFAULT_${e.type}_SERIES_KEY`},null!=(i=null==(r=null==e?void 0:e.scale)?void 0:r.series)?i:{})}}),[t,e]}var bq=function(t,e,n,r){return new(n||(n=Promise))(function(i,A){function a(t){try{s(r.next(t))}catch(t){A(t)}}function o(t){try{s(r.throw(t))}catch(t){A(t)}}function s(t){var e;t.done?i(t.value):((e=t.value)instanceof n?e:new n(function(t){t(e)})).then(a,o)}s((r=r.apply(t,e||[])).next())})},bJ=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n},bZ=function(t,e,n,r){return new(n||(n=Promise))(function(i,A){function a(t){try{s(r.next(t))}catch(t){A(t)}}function o(t){try{s(r.throw(t))}catch(t){A(t)}}function s(t){var e;t.done?i(t.value):((e=t.value)instanceof n?e:new n(function(t){t(e)})).then(a,o)}s((r=r.apply(t,e||[])).next())})},b0=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function b1(t){t.style("transform",t=>`translate(${t.layout.x}, ${t.layout.y})`)}function b2(t,e){return bZ(this,void 0,void 0,function*(){let{library:n}=e,r=function(t){let{coordinate:e={},interaction:n={},style:r={},marks:i}=t,A=b0(t,["coordinate","interaction","style","marks"]),a=i.map(t=>t.coordinate||{}),o=i.map(t=>t.interaction||{}),s=i.map(t=>t.viewStyle||{}),l=[...a,e].reduceRight((t,e)=>cC(t,e),{}),c=[n,...o].reduce((t,e)=>cC(t,e),{}),u=[...s,r].reduce((t,e)=>cC(t,e),{});return Object.assign(Object.assign({},A),{marks:i,coordinate:l,interaction:c,style:u})}((yield function(t,e){return bZ(this,void 0,void 0,function*(){let{library:n}=e,[r,i]=y2("mark",n),A=new Set(Object.keys(n).map(t=>{var e;return null==(e=/component\.(.*)/.exec(t))?void 0:e[1]}).filter(cq)),{marks:a}=t,o=[],s=[],l=[...a],{width:c,height:u}=function(t){let{height:e,width:n,padding:r=0,paddingLeft:i=r,paddingRight:A=r,paddingTop:a=r,paddingBottom:o=r,margin:s=16,marginLeft:l=s,marginRight:c=s,marginTop:u=s,marginBottom:f=s,inset:h=0,insetLeft:d=h,insetRight:p=h,insetTop:g=h,insetBottom:y=h}=t,v=t=>"auto"===t?20:t;return{width:n-v(i)-v(A)-l-c-d-p,height:e-v(a)-v(o)-u-f-g-y}}(t),f={options:t,width:c,height:u};for(;l.length;){let[t]=l.splice(0,1),n=yield Br(t,e),{type:a=cY("G2Mark type is required."),key:c}=n;if(A.has(a))s.push(n);else{let{props:t={}}=i(a),{composite:e=!0}=t;if(e){let{data:t}=n,e=Object.assign(Object.assign({},n),{data:t?Array.isArray(t)?t:t.value:t}),i=yield r(e,f),A=Array.isArray(i)?i:[i];l.unshift(...A.map((t,e)=>Object.assign(Object.assign({},t),{key:`${c}-${e}`})))}else o.push(n)}}return Object.assign(Object.assign({},t),{marks:o,components:s})})}(t,e)));t.interaction=r.interaction,t.coordinate=r.coordinate,t.marks=[...r.marks,...r.components];let i=y3(r,n);return b3((yield b4(i,e)),i,n)})}function b4(t,e){return bZ(this,void 0,void 0,function*(){let{library:n}=e,[r]=y2("theme",n),[,i]=y2("mark",n),{theme:A,marks:a,coordinates:o=[]}=t,s=r(Be(A)),l=new Map;for(let t of a){let{type:n}=t,{props:r={}}=i(n),A=yield function(t,e,n){return bq(this,void 0,void 0,function*(){let[r,i]=yield function(t,e,n){return bq(this,void 0,void 0,function*(){let{library:r}=n,[i]=y2("transform",r),{preInference:A=[],postInference:a=[]}=e,{transform:o=[]}=t,s=[bj,bN,bD,bR,bK,bz,bW,bY,bX,bG,b$,...A.map(i),...o.map(i),...a.map(i),bV],l=[],c=t;for(let t of s)[l,c]=yield t(l,c,n);return[l,c]})}(t,e,n),{encode:A,scale:a,data:o,tooltip:s,key:l}=i;if(!1===Array.isArray(o))return null;let{channels:c}=e,u=cb(Object.entries(A).filter(([,t])=>cq(t)),t=>t.map(([t,e])=>Object.assign({name:t},e)),([t])=>{var e;let n=null==(e=/([^\d]+)\d*$/.exec(t))?void 0:e[1],r=c.find(t=>t.name===n);return(null==r?void 0:r.independent)?t:n}),f=c.filter(t=>{let{name:e,required:n}=t;if(u.find(([t])=>t===e))return!0;if(n)throw Error(`Missing encoding for channel: ${e}.`);return!1}).flatMap(t=>{let{name:e,scale:n,scaleKey:r,range:i,quantitative:A,ordinal:o}=t;return u.filter(([t])=>t.startsWith(e)).map(([t,e],s)=>{let c=e.some(t=>t.visual),u=e.some(t=>t.constant),f=a[t]||{},{independent:h=!1,key:d=r||t,type:p=u?"constant":c?"identity":n}=f,g=bJ(f,["independent","key","type"]),y="constant"===p;return{name:t,values:e,scaleKey:h||y?Symbol("independent"):d,scale:Object.assign(Object.assign({type:p,markKey:l,range:y?void 0:i},g),{quantitative:A,ordinal:o})}})});return[i,Object.assign(Object.assign({},e),{index:r,channels:f,tooltip:s})]})}(t,r,e);if(A){let[t,e]=A;l.set(t,e)}}for(let t of cy(Array.from(l.values()).flatMap(t=>t.channels),({scaleKey:t})=>t).values()){let e=t.reduce((t,{scale:e})=>cC(t,e),{}),{scaleKey:r}=t[0],{values:i}=t[0],A=Array.from(new Set(i.map(t=>t.field).filter(cq))),a=cC({guide:{title:0===A.length?void 0:A},field:A[0]},e),{name:l}=t[0],c=Object.assign(Object.assign({},function(t,e,n,r,i,A){let{guide:a={}}=n,o=function(t,e,n){let{type:r,domain:i,range:A,quantitative:a,ordinal:o}=n;if(void 0!==r)return r;return bd(e,c2)?"identity":"string"==typeof A?"linear":(i||A||[]).length>2?bl(t,o):void 0!==i?bf([i])?bl(t,o):bh(e)?"time":bc(t,A,a):bf(e)?bl(t,o):bh(e)?"time":bc(t,A,a)}(t,e,n);if("string"!=typeof o)return n;let s=function(t,e,n){let{domain:r}=n;if(void 0!==r)return r;switch(t){case"linear":case"time":case"log":case"pow":case"sqrt":case"quantize":case"threshold":return bu(function(t,e){let{zero:n=!1}=e,r=1/0,i=-1/0;for(let e of t)for(let t of e)cq(t)&&(r=Math.min(r,+t),i=Math.max(i,+t));return r===1/0?[]:n?[Math.min(0,r),i]:[r,i]}(e,n),n);case"band":case"ordinal":case"point":return Array.from(new Set(e.flat()));case"quantile":return e.flat().sort();case"sequential":return bu(function(t){let e=1/0,n=-1/0;for(let r of t)for(let t of r)cq(t)&&(e=Math.min(e,+t),n=Math.max(n,+t));return e===1/0?[]:[e<0?-n:e,n]}(e),n);default:return[]}}(o,e,n),l=function(t,e,n){let{ratio:r}=n;return null==r?e:ba({type:t})?function(t,e,n){let r=t.map(Number),i=new h1({domain:r,range:[r[0],r[0]+(r[r.length-1]-r[0])*e]});return"time"===n?t.map(t=>new Date(i.map(t))):t.map(t=>i.map(t))}(e,r,t):bo({type:t})?function(t,e){let n=Math.round(t.length*e);return t.slice(0,n)}(e,r):e}(o,s,n);return Object.assign(Object.assign(Object.assign({},n),function(t,e,n,r){switch(t){case"linear":case"time":case"log":case"pow":case"sqrt":return function(t){let{interpolate:e=hY,nice:n=!1,tickCount:r=5}=t;return Object.assign(Object.assign({},t),{interpolate:e,nice:n,tickCount:r})}(n);case"band":case"point":return function(t,e,n,r){var i,A,a;if(void 0!==r.padding||void 0!==r.paddingInner||void 0!==r.paddingOuter)return Object.assign(Object.assign({},r),{unknown:NaN});let o=(i=t,A=e,a=n,"enterDelay"===A||"enterDuration"===A||"size"===A?0:"band"===i?.1*!y7(a):.5*("point"===i)),{paddingInner:s=o,paddingOuter:l=o}=r;return Object.assign(Object.assign({},r),{paddingInner:s,paddingOuter:l,padding:o,unknown:NaN})}(t,e,r,n);case"sequential":return function(t){let{palette:e="ylGnBu",offset:n}=t,r=uv(e),i=Z[`interpolate${r}`];if(!i)throw Error(`Unknown palette: ${r}`);return{interpolator:n?t=>i(n(t)):i}}(n);default:return n}}(o,t,n,r)),{domain:l,range:function(t,e,n,r,i,A,a){let{range:o}=r;if("string"==typeof o)return o.split("-");if(void 0!==o)return o;let{rangeMin:s,rangeMax:l}=r;switch(t){case"linear":case"time":case"log":case"pow":case"sqrt":{var c,u;let[t,o]=(c=e,u=bs(n,r,i,A,a),"enterDelay"===c?[0,1e3]:"enterDuration"==c?[300,1e3]:c.startsWith("y")||c.startsWith("position")?[1,0]:"color"===c?[u[0],uM(u)]:"opacity"===c?[0,1]:"size"===c?[1,10]:[0,1]);return[null!=s?s:t,null!=l?l:o]}case"band":case"point":{let t=5*("size"===e),n="size"===e?10:1;return[null!=s?s:t,null!=l?l:n]}case"ordinal":return bs(n,r,i,A,a);case"sequential":return;case"constant":return[n[0][0]];default:return[]}}(o,t,e,n,l,i,A),expectedDomain:s,guide:a,name:t,type:o})}(l,t.flatMap(({values:t})=>t.map(t=>t.value)),a,o,s,n)),{uid:Symbol("scale"),key:r});t.forEach(t=>t.scale=c)}return l})}function b5(t,e,n,r){let i=t.theme;return r(cC("string"==typeof e&&i[e]||{},Object.assign({type:e},n)))}function b3(t,e,n){var r;let i,A,a,[o]=y2("mark",n),[s]=y2("theme",n),[l]=y2("labelTransform",n),{key:c,frame:u=!1,theme:f,clip:h,style:d={},labelTransform:p=[]}=e,g=s(Be(f)),y=Array.from(t.values()),v=(function(t,e,n){let{coordinates:r=[],title:i}=e,[,A]=y2("component",n),a=t.filter(({guide:t})=>null!==t),o=[],s=function(t,e,n){let[,r]=y2("component",n),{coordinates:i}=t;function A(t,e,n,A){let a=function(t,e,n=[]){return"x"===t?y9(n)?`${e}Y`:`${e}X`:"y"===t?y9(n)?`${e}X`:`${e}Y`:null}(e,t,i);if(!A||!a)return;let{props:o}=r(a),{defaultPosition:s,defaultSize:l,defaultOrder:c,defaultCrossPadding:[u]}=o;return Object.assign(Object.assign({position:s,defaultSize:l,order:c,type:a,crossPadding:u},A),{scales:[n]})}return e.filter(t=>t.slider||t.scrollbar).flatMap(t=>{let{slider:e,scrollbar:n,name:r}=t;return[A("slider",r,t,e),A("scrollbar",r,t,n)]}).filter(t=>!!t)}(e,t,n);if(o.push(...s),i){let{props:t}=A("title"),{defaultPosition:e,defaultOrientation:n,defaultOrder:r,defaultSize:a,defaultCrossPadding:s}=t;o.push(Object.assign({type:"title",position:e,orientation:n,order:r,crossPadding:s[0],defaultSize:a},"string"==typeof i?{title:i}:i))}return(function(t,e){let n=t.filter(t=>(function(t){if(!t||!t.type)return!1;if("function"==typeof t.type)return!0;let{type:e,domain:n,range:r,interpolator:i}=t,A=n&&n.length>0,a=r&&r.length>0;return!!(["linear","sqrt","log","time","pow","threshold","quantize","quantile","ordinal","band","point"].includes(e)&&A&&a||["sequential"].includes(e)&&A&&(a||i)||["constant","identity"].includes(e)&&a)})(t));return[...function(t){let e=["shape","size","color","opacity"],n=t.filter(({type:t,name:n})=>"string"==typeof t&&e.includes(n)&&("constant"!==t||"size"!==n)),r=n.filter(({type:t})=>"constant"===t),i=new Map(cv(n.filter(({type:t})=>"constant"!==t),t=>t.field?t.field:Symbol("independent")).map(([t,e])=>[t,[...e,...r]]).filter(([,t])=>t.some(t=>"constant"!==t.type)));if(0===i.size)return[];let A=t=>t.sort(([t],[e])=>t.localeCompare(e));return Array.from(i).map(([,t])=>{let e=(function(t){if(1===t.length)return[t];let e=[];for(let n=1;n<=t.length;n++)e.push(...function t(e,n=e.length){if(1===n)return e.map(t=>[t]);let r=[];for(let i=0;i{r.push([e[i],...t])});return r}(t,n));return e})(t).sort((t,e)=>e.length-t.length).map(t=>({combination:t,option:t.map(t=>[t.name,function(t){let{type:e}=t;return"string"!=typeof e?null:e in bp?"continuous":e in by?"discrete":e in bg?"distribution":e in bv?"constant":null}(t)])}));for(let{option:t,combination:n}of e)if(!t.every(t=>"constant"===t[1])&&t.every(t=>"discrete"===t[1]||"constant"===t[1]))return["legendCategory",n];for(let[t,n]of uK)for(let{option:r,combination:i}of e)if(n.some(t=>uI(A(t),A(r))))return[t,i];return null}).filter(cq)}(n),...n.map(t=>{let{name:n}=t;if(y6(e,"helix").length>0||y7(e)||y9(e)&&(y8(e)||vt(e)))return null;if(n.startsWith("x"))return y8(e)?["axisArc",[t]]:vt(e)?["axisLinear",[t]]:[y9(e)?"axisY":"axisX",[t]];if(n.startsWith("y"))return y8(e)?["axisLinear",[t]]:vt(e)?["axisArc",[t]]:[y9(e)?"axisX":"axisY",[t]];if(n.startsWith("z"))return["axisZ",[t]];if(n.startsWith("position")){if(ve(e))return["axisRadar",[t]];if(!y8(e))return["axisY",[t]]}return null}).filter(cq)]})(a,r).forEach(([t,e])=>{let{props:n}=A(t),{defaultPosition:i,defaultPlane:s="xy",defaultOrientation:l,defaultSize:c,defaultOrder:u,defaultLength:f,defaultPadding:h=[0,0],defaultCrossPadding:d=[0,0]}=n,{guide:p,field:g}=cC({},...e);for(let n of Array.isArray(p)?p:[p]){let[A,p]=function(t,e,n,r,i,A,a){let[o]=bw(a),s=[r.position||e,null!=o?o:n];return"string"==typeof t&&t.startsWith("axis")?function(t,e,n,r,i){let{name:A}=n[0];if("axisRadar"===t){let t,e=r.filter(t=>t.name.startsWith("position")),n=(t=/position(\d*)/g.exec(A))?+t[1]:null;if(null===n)return[null,null];let[a,o]=bw(i);return["center",(o-a)/(ve(i)?e.length:e.length-1)*n+a]}if("axisY"===t&&y6(i,"parallel").length>0)return y9(i)?["center","horizontal"]:["center","vertical"];if("axisLinear"===t){let[t]=bw(i);return["center",t]}return"axisArc"===t?"inner"===e[0]?["inner",null]:["outer",null]:y8(i)||vt(i)?["center",null]:"axisX"===t&&y6(i,"reflect").length>0||"axisX"===t&&y6(i,"reflectY").length>0?["top",null]:e}(t,s,i,A,a):"string"==typeof t&&t.startsWith("legend")&&y8(a)&&"center"===r.position?["center","vertical"]:s}(t,i,l,n,e,a,r);if(!A&&!p)continue;let y="left"===A||"right"===A,v=y?h[1]:h[0],b=y?d[1]:d[0],{size:B,order:w=u,length:x=f,padding:C=v,crossPadding:O=b}=n;o.push(Object.assign(Object.assign({title:g},n),{defaultSize:c,length:x,position:A,plane:s,orientation:p,padding:C,order:w,crossPadding:O,size:B,type:t,scales:e}))}}),o})(function(t,e,n){var r;for(let[e]of n.entries())if("cell"===e.type)return t.filter(t=>"shape"!==t.name);if(1!==e.length||t.some(t=>"shape"===t.name))return t;let{defaultShape:i}=e[0];if(!["point","line","rect","hollow"].includes(i))return t;let A=(null==(r=t.find(t=>"color"===t.name))?void 0:r.field)||null;return[...t,{field:A,name:"shape",type:"constant",domain:[],range:[{point:"point",line:"hyphen",rect:"square",hollow:"hollow"}[i]]}]}(Array.from(function(t,e){var n;let{components:r=[]}=e,i=["scale","encode","axis","legend","data","transform"],A=Array.from(new Set(t.flatMap(t=>t.channels.map(t=>t.scale)))),a=new Map(A.map(t=>[t.name,t]));for(let t of r)for(let e of function(t){let{channels:e=[],type:n,scale:r={}}=t,i=["shape","color","opacity","size"];return 0!==e.length?e:"axisX"===n?["x"]:"axisY"===n?["y"]:"legends"===n?Object.keys(r).filter(t=>i.includes(t)):[]}(t)){let r=a.get(e),o=(null==(n=t.scale)?void 0:n[e])||{},{independent:s=!1}=o;if(r&&!s){let{guide:e}=r;r.guide=cC({},"boolean"==typeof e?{}:e,t),Object.assign(r,o)}else{let n=Object.assign(Object.assign({},o),{expectedDomain:o.domain,name:e,guide:h5(t,i)});A.push(n)}}return A}(y,e)),y,t),e,n).map(t=>{let e=cC(t,t.style);return delete e.style,e}),b=function(t,e,n,r){var i,A,a,o;let{width:s,height:l,depth:c,x:u=0,y:f=0,z:h=0,inset:d=null!=(i=n.inset)?i:0,insetLeft:p=d,insetTop:g=d,insetBottom:y=d,insetRight:v=d,margin:b=null!=(A=n.margin)?A:0,marginLeft:B=b,marginBottom:w=b,marginTop:x=b,marginRight:C=b,padding:O=n.padding,paddingBottom:E=O,paddingLeft:k=O,paddingRight:F=O,paddingTop:Q=O}=function(t,e,n,r){let{coordinates:i}=e;if(!y8(i)&&!vt(i))return e;let A=t.filter(t=>"string"==typeof t.type&&t.type.startsWith("axis"));if(0===A.length)return e;let a=A.map(t=>{let e="axisArc"===t.type?"arc":"linear";return bk(t,e,n)}),o=uL(a,t=>{var e;return null!=(e=t.labelSpacing)?e:0}),s=uL(A.flatMap((t,e)=>bO(a[e],bC(t,r))).filter(cq),t=>t.height)+o,l=A.flatMap((t,e)=>bE(a[e])).filter(t=>null!==t),c=0===l.length?0:uL(l,t=>t.height),{inset:u=s,insetLeft:f=u,insetBottom:h=u,insetTop:d=u+c,insetRight:p=u}=e;return Object.assign(Object.assign({},e),{insetLeft:f,insetBottom:h,insetTop:d,insetRight:p})}(t,e,n,r),M=16===B&&"auto"===k,U=16===C&&"auto"===F,S=cf(e,"coordinates",[]).some(t=>"transpose"===t.type),I=t.find(({type:t})=>"axisX"===t),{size:T,labelTransform:L}=I||{},_=1/4,P=(t,n,r,i,A)=>{let{marks:a}=e;if(0===a.length||t-i-A-t*_>0)return[i,A];let o=t*(1-_);return["auto"===n?o*i/(i+A):i,"auto"===r?o*A/(i+A):A]},H=t=>"auto"===t?20:null!=t?t:20,j=H(Q),N=H(E),{paddingLeft:D,paddingRight:R}=bU(t,l-j-N,[j+x,N+w],["left","right"],e,n,r),K=s-B-C,[z,G]=P(K,k,F,D,R),V=K-z-G,{paddingTop:W,paddingBottom:X}=bU(t,V,[z+B,G+C],["bottom","top"],e,n,r),Y=l-w-x,[$,q]=P(Y,E,Q,X,W),J=Y-$-q;if(T&&!S&&!L){let{fontSize:t=12,fontFamily:e="sans-serif",scales:n=[]}=I,r=null!=(o=null==(a=null==n?void 0:n[0])?void 0:a.domain)?o:[];if(!r.length)return;let i=(n,r,i,A)=>{let a=ho(r,{fontSize:t,fontFamily:e}),o=a/2-i-A;o>0&&(V-=o,"left"===n?z+=a/2-i:G+=a/2-i)};M&&i("left",function(t){if(uS(t))return t[0]}(r),B,z),U&&i("right",hj(r),C,G)}return{width:s,height:l,depth:c,insetLeft:p,insetTop:g,insetBottom:y,insetRight:v,innerWidth:V,innerHeight:J,paddingLeft:z,paddingRight:G,paddingTop:q,paddingBottom:$,marginLeft:B,marginBottom:w,marginTop:x,marginRight:C,x:u,y:f,z:h}}(v,e,g,n),B=function(t,e,n){var r;let[i]=y2("coordinate",n),{innerHeight:A,innerWidth:a,insetLeft:o,insetTop:s,insetRight:l,insetBottom:c}=t,{coordinates:u=[]}=e,f=(r=u).find(t=>"cartesian"===t.type||"cartesian3D"===t.type)?r:[...r,{type:"cartesian"}],h="cartesian3D"===f[0].type,d=Object.assign(Object.assign({},t),{x:o,y:s,width:a-o-l,height:A-c-s,transformations:f.flatMap(i)});return h?new uG.Coordinate3D(d):new uG.Coordinate(d)}(b,e,n),w=u?cC({mainLineWidth:1,mainStroke:"#000"},d):d;!function(t,e,n){let r=cy(t,t=>`${t.plane||"xy"}-${t.position}`),{paddingLeft:i,paddingRight:A,paddingTop:a,paddingBottom:o,marginLeft:s,marginTop:l,marginBottom:c,marginRight:u,innerHeight:f,innerWidth:h,insetBottom:d,insetLeft:p,insetRight:g,insetTop:y,height:v,width:b,depth:B}=n,w={xy:bS({width:b,height:v,paddingLeft:i,paddingRight:A,paddingTop:a,paddingBottom:o,marginLeft:s,marginTop:l,marginBottom:c,marginRight:u,innerHeight:f,innerWidth:h,insetBottom:d,insetLeft:p,insetRight:g,insetTop:y}),yz:bS({width:B,height:v,paddingLeft:0,paddingRight:0,paddingTop:0,paddingBottom:0,marginLeft:0,marginTop:0,marginBottom:0,marginRight:0,innerWidth:B,innerHeight:v,insetBottom:0,insetLeft:0,insetRight:0,insetTop:0}),xz:bS({width:b,height:B,paddingLeft:0,paddingRight:0,paddingTop:0,paddingBottom:0,marginLeft:0,marginTop:0,marginBottom:0,marginRight:0,innerWidth:b,innerHeight:B,insetBottom:0,insetLeft:0,insetRight:0,insetTop:0})};for(let[t,n]of r.entries()){let[r,i]=t.split("-"),A=w[r][i],[a,o]=uU(n,t=>"string"==typeof t.type&&!!("center"===i||t.type.startsWith("axis")&&["inner","outer"].includes(i)));a.length&&function(t,e,n,r){let[i,A]=uU(t,t=>!!("string"==typeof t.type&&t.type.startsWith("axis")));(function(t,e,n,r){if("center"===r)if(u$(e)&&uW(e))!function(t,e){let[n,r,i,A]=e;for(let e of t)e.bbox={x:n,y:r,width:i,height:A},e.radar={index:t.indexOf(e),count:t.length}}(t,n);else{var i,A,a,o;uW(e)?function(t,e){let[n,r,i,A]=e;for(let e of t)e.bbox={x:n,y:r,width:i,height:A}}(t,n):u$(e)&&(i=t,A=e,a=n,"horizontal"===(o=t[0].orientation)?function(t,e,n){let[r,i,A]=n,a=Array(t.length).fill(0),o=e.map(a).filter((t,e)=>e%2==1).map(t=>t+i);for(let e=0;ee%2==0).map(t=>t+r);for(let e=0;enull==s?void 0:s(t.order,e.order));let b=t=>"title"===t||"group"===t||t.startsWith("legend"),B=(t,e,n)=>void 0===n?e:b(t)?n:e,w=(t,e,n)=>void 0===n?e:b(t)?n:e;for(let e=0,n=o?f+g:f;e"group"===t.type)){let{bbox:t,children:n}=e,r=t[y],i=r/n.length,A=n.reduce((t,e)=>{var n;return(null==(n=e.layout)?void 0:n.justifyContent)||t},"flex-start"),a=n.map((t,e)=>{let{length:r=i,padding:A=0}=t;return r+(e===n.length-1?0:A)}),o=r-uT(a),s="flex-start"===A?0:"center"===A?o/2:o;for(let e=0,r=t[h]+s;e"axisX"===t),A=v.find(({type:t})=>"axisY"===t),a=v.find(({type:t})=>"axisZ"===t),i&&A&&a&&(i.plane="xy",A.plane="xy",a.plane="yz",a.origin=[i.bbox.x,i.bbox.y,0],a.eulerAngles=[0,-90,0],a.bbox.x=i.bbox.x,a.bbox.y=i.bbox.y,v.push(Object.assign(Object.assign({},i),{plane:"xz",showLabel:!1,showTitle:!1,origin:[i.bbox.x,i.bbox.y,0],eulerAngles:[-90,0,0]})),v.push(Object.assign(Object.assign({},A),{plane:"yz",showLabel:!1,showTitle:!1,origin:[A.bbox.x+A.bbox.width,A.bbox.y,0],eulerAngles:[0,-90,0]})),v.push(Object.assign(Object.assign({},a),{plane:"xz",actualPosition:"left",showLabel:!1,showTitle:!1,eulerAngles:[90,-90,0]})));let x=new Map(Array.from(t.values()).flatMap(t=>{let{channels:e}=t;return e.map(({scale:t})=>[t.uid,bi(t,n)])}));cb(Array.from(t.values()).flatMap(t=>t.channels),t=>t.map(t=>x.get(t.scale.uid)),t=>t.name).filter(([,t])=>t.some(t=>"function"==typeof t.getOptions().groupTransform)&&t.every(t=>t.getTicks)).map(t=>t[1]).forEach(t=>{(0,t.map(t=>t.getOptions().groupTransform)[0])(t)});let C={};for(let t of v){let{scales:e=[]}=t,i=[];for(let t of e){let{name:e,uid:A}=t,a=null!=(r=x.get(A))?r:bi(t,n);i.push(a),"y"===e&&a.update(Object.assign(Object.assign({},a.getOptions()),{xScale:C.x})),br(C,{[e]:a})}t.scaleInstances=i}let O=[],E=new Map;for(let[e,n]of t.entries()){let{children:t,dataDomain:r,modifier:i,key:A,data:a}=e;E.set(A,a);let{index:s,channels:l,tooltip:u}=n,f=uF(Object.fromEntries(l.map(({name:t,scale:e})=>[t,e])),({uid:t})=>x.get(t));br(C,f);let h=function(t,e){let n={};for(let r of t){let{values:t,name:i}=r,A=e[i];for(let e of t){let{name:t,value:r}=e;n[t]=r.map(t=>A.map(t))}}return n}(l,f),[d,p,g]=function([t,e,n]){if(n)return[t,e,n];let r=[],i=[];for(let n=0;ncq(t)&&cq(e))&&(r.push(A),i.push(a))}return[r,i]}(o(e)(s,f,h,B)),y=r||d.length,v=i?i(p,y,b):[],w=t=>{var e,n;return null==(n=null==(e=u.title)?void 0:e[t])?void 0:n.value},k=t=>u.items.map(e=>e[t]),F=d.map((t,e)=>{let n=Object.assign({points:p[e],transform:v[e],index:t,markKey:A,viewKey:c,data:a[t]},u&&{title:w(t),items:k(t)});for(let[r,i]of Object.entries(h))n[r]=i[t],g&&(n[`series${uv(r)}`]=g[e].map(t=>i[t]));return g&&(n.seriesIndex=g[e]),g&&u&&(n.seriesItems=g[e].map(t=>k(t)),n.seriesTitle=g[e].map(t=>w(t))),n});n.data=F,n.index=d;let Q=null==t?void 0:t(F,f,b);O.push(...Q||[])}return[{layout:b,theme:g,coordinate:B,markState:t,key:c,clip:h,scale:C,style:w,components:v,data:E,options:e,labelTransform:cW(p.map(l))},O]}function b6(t,e,n,r){return bZ(this,void 0,void 0,function*(){let{library:i}=r,{components:A,theme:a,layout:o,markState:s,coordinate:l,key:c,style:u,clip:f,scale:h}=t,{x:d,y:p,width:g,height:y}=o,v=b0(o,["x","y","width","height"]),b=["view","plot","main","content"],B=b.map((t,e)=>e),w=b.map(t=>cZ(Object.assign({},a.view,u),t)),x=["a","margin","padding","inset"].map(t=>cJ(v,t)),C=t=>t.style("x",t=>Q[t].x).style("y",t=>Q[t].y).style("width",t=>Q[t].width).style("height",t=>Q[t].height).each(function(t,e,n){var r=c5(n),i=w[t];for(let[t,e]of Object.entries(i))r.style(t,e)}),O=0,E=0,k=g,F=y,Q=B.map(t=>{let{left:e=0,top:n=0,bottom:r=0,right:i=0}=x[t];return O+=e,E+=n,k-=e+i,F-=n+r,{x:O,y:E,width:k,height:F}});e.selectAll(Bo("area")).data(B.filter(t=>cq(w[t])),t=>b[t]).join(t=>t.append("rect").attr("className","area").style("zIndex",-2).call(C),t=>t.call(C),t=>t.remove());let M=function(t){let e=-1/0,n=1/0;for(let[r,i]of t){let{animate:t={}}=r,{data:A}=i,{enter:a={},update:o={},exit:s={}}=t,{type:l,duration:c=300,delay:u=0}=o,{type:f,duration:h=300,delay:d=0}=a,{type:p,duration:g=300,delay:y=0}=s;for(let t of A){let{updateType:r=l,updateDuration:i=c,updateDelay:A=u,enterType:a=f,enterDuration:o=h,enterDelay:s=d,exitDuration:v=g,exitDelay:b=y,exitType:B=p}=t;(void 0===r||r)&&(e=Math.max(e,i+A),n=Math.min(n,A)),(void 0===B||B)&&(e=Math.max(e,v+b),n=Math.min(n,b)),(void 0===a||a)&&(e=Math.max(e,o+s),n=Math.min(n,s))}}return e===-1/0?null:[n,e-n]}(s),U=!!M&&{duration:M[1]};for(let[,t]of cv(A,t=>`${t.type}-${t.position}`))t.forEach((t,e)=>t.index=e);let S=e.selectAll(Bo(gL)).data(A,t=>`${t.type}-${t.position}-${t.index}`).join(t=>t.append("g").style("zIndex",({zIndex:t})=>t||-1).attr("className",gL).append(t=>bb(cC({animate:U,scale:h},t),l,a,i,s)),t=>t.transition(function(t,e,n){let{preserve:r=!1}=t;if(r)return;let{attributes:A}=bb(cC({animate:U,scale:h},t),l,a,i,s),[o]=n.childNodes;return o.update(A,!1)})).transitions();n.push(...S.flat().filter(cq));let I=e.selectAll(Bo("plot")).data([o],()=>c).join(t=>t.append("rect").style("zIndex",0).style("fill","transparent").attr("className","plot").call(Bi).call(Ba,Array.from(s.keys())).call(Bs,f),t=>t.call(Ba,Array.from(s.keys())).call(Bi).call(Bs,f)).transitions();for(let[A,a]of(n.push(...I.flat()),s.entries())){let{data:o}=a,{key:s,class:l,type:c}=A,u=e.select(`#${s}`),f=function(t,e,n,r){let{library:i}=r,[A]=y2("shape",i),{data:a,encode:o}=t,{defaultShape:s,data:l,shape:c}=e,u=uF(o,t=>t.value),f=l.map(t=>t.points),{theme:h,coordinate:d}=n,{type:p,style:g={}}=t,y=Object.assign(Object.assign({},r),{document:y4(r),coordinate:d,theme:h});return e=>{let{shape:n=s}=g,{shape:r=n,points:i,seriesIndex:o,index:l}=e,d=Object.assign(Object.assign({},b0(e,["shape","points","seriesIndex","index"])),{index:l}),v=o?o.map(t=>a[t]):a[l],b=o||l,B=uF(g,t=>b8(t,v,b,a,{channel:u}));return(c[r]?c[r](B,y):A(Object.assign(Object.assign({},B),{type:BA(t,r)}),y))(i,d,b9(h,p,r,s),f)}}(A,a,t,r),h=b7("enter",A,a,t,i),d=b7("update",A,a,t,i),p=b7("exit",A,a,t,i),g=function(t,e,n,r){let i=t.node().parentElement;return i&&"function"==typeof i.findAll?i.findAll(t=>void 0!==t.style.facet&&t.style.facet===n&&t!==e.node()).flatMap(t=>t.getElementsByClassName(r)):[]}(e,u,l,"element"),y=u.selectAll(Bo(gT)).selectFacetAll(g).data(o,t=>t.key,t=>t.groupKey).join(t=>t.append(f).attr("className",gT).attr("markType",c).transition(function(t,e,n){return h(t,[n])}),t=>t.call(t=>{let e=t.parent(),n=function(t){let e=new Map;return n=>{if(e.has(n))return e.get(n);let r=t(n);return e.set(n,r),r}}(t=>{let[e,n]=t.getBounds().min;return[e,n]});t.transition(function(t,r,i){!function(t,e,n){if(!t.__facet__)return;let r=t.parentNode.parentNode,i=e.parentNode,[A,a]=n(r),[o,s]=n(i);!function(t,e){let{transform:n}=t.style,r="none"===n||void 0===n?"":n;t.style.transform=`${r} ${e}`.trimStart()}(t,`translate(${A-o}, ${a-s})`),e.append(t)}(i,e,n);let A=f(t,r),a=d(t,[i],[A]);return(null==a?void 0:a.length)||(i.nodeName===A.nodeName&&"g"!==A.nodeName?c$(i,A):(i.parentNode.replaceChild(A,i),A.className=gT,A.markType=c,A.__data__=i.__data__)),a}).each(function(t,e,n){n.__removed__&&(n.__removed__=!1)}).attr("markType",c).attr("className",gT)}),t=>t.each(function(t,e,n){n.__removed__=!0}).transition(function(t,e,n){return p(t,[n])}).remove(),t=>t.append(f).attr("className",gT).attr("markType",c).transition(function(t,e,n){let{__fromElements__:r}=n,i=d(t,r,[n]);return new c3(r,null,n.parentNode).transition(i).remove(),i}),t=>t.transition(function(t,e,n){let r=new c3([],n.__toData__,n.parentNode).append(f).attr("className",gT).attr("markType",c).nodes();return d(t,[n],r)}).remove()).transitions();n.push(...y.flat())}(function(t,e,n,r){let[i]=y2("labelTransform",n),{markState:A,labelTransform:a}=t,o=e.select(Bo(gI)).node(),s=new Map,l=new Map,c=Array.from(A.entries()).flatMap(([i,A])=>{let{labels:a=[],key:o}=i,c=function(t,e,n,r,i){let[A]=y2("shape",r),{data:a,encode:o}=t,{data:s,defaultLabelShape:l}=e,c=s.map(t=>t.points),u=uF(o,t=>t.value),{theme:f,coordinate:h}=n,d=Object.assign(Object.assign({},i),{document:y4(i),theme:f,coordinate:h});return t=>{let{index:e,points:n}=t,r=a[e],{formatter:i=t=>`${t}`,transform:o,style:s,render:h,selector:p,element:g}=t,y=uF(Object.assign(Object.assign({},b0(t,["formatter","transform","style","render","selector","element"])),s),t=>b8(t,r,e,a,{channel:u,element:g})),{shape:v=l,text:b}=y,B=b0(y,["shape","text"]),w="string"==typeof i?EM(i):i,x=Object.assign(Object.assign({},B),{text:w(b,r,e,a),datum:r});return A(Object.assign({type:`label.${v}`,render:h},B),d)(n,x,b9(f,"label",v,"label"),c)}}(i,A,t,n,r),u=e.select(`#${o}`).selectAll(Bo(gT)).nodes().filter(t=>{var e;return!t.__removed__&&!((null==(e=t.style)?void 0:e.visibility)==="hidden"||t.children&&t.children.some(t=>{var e;return(null==(e=t.style)?void 0:e.visibility)==="hidden"}))});return a.flatMap((t,e)=>{let{transform:n=[]}=t,r=b0(t,["transform"]);return u.flatMap(n=>{let i=function(t,e,n){let{seriesIndex:r,seriesKey:i,points:A,key:a,index:o}=n.__data__,s=function(t){let e=t.cloneNode(!0),n=t.getAnimations();e.style.visibility="hidden",n.forEach(t=>{let n=t.effect.getKeyframes();e.attr(n[n.length-1])}),t.parentNode.appendChild(e);let r=e.getLocalBounds();e.destroy();let{min:i,max:A}=r;return[i,A]}(n);if(!r)return[Object.assign(Object.assign({},t),{key:`${a}-${e}`,bounds:s,index:o,points:A,dependentElement:n})];let l=function(t){let{selector:e}=t;if(!e)return null;if("function"==typeof e)return e;if("first"===e)return t=>[t[0]];if("last"===e)return t=>[t[t.length-1]];throw Error(`Unknown selector: ${e}`)}(t),c=r.map((r,a)=>Object.assign(Object.assign({},t),{key:`${i[a]}-${e}`,bounds:[A[a]],index:r,points:A,dependentElement:n}));return l?l(c):c}(r,e,n);return i.forEach(e=>{s.set(e,t=>c(Object.assign(Object.assign({},t),{element:n}))),l.set(e,t)}),i})})}),u=c5(o).selectAll(Bo("label")).data(c,t=>t.key).join(t=>t.append(t=>s.get(t)(t)).attr("className","label"),t=>t.each(function(t,e,n){c$(n,s.get(t)(t))}),t=>t.remove()).nodes(),f=cy(u,t=>l.get(t.__data__)),{coordinate:h,layout:d}=t,p={canvas:r.canvas,coordinate:h,layout:d};for(let[t,e]of f){let{transform:n=[]}=t;cW(n.map(i))(e,p)}a&&a(u,p)})(t,e,i,r),function(t,e,n,r){let i=cf(t.scale,"y.options.breaks",[]),{document:A}=r.canvas;if([g_,gP].forEach(t=>{A.getElementsByClassName(t).forEach(t=>{t.remove()})}),!i.length)return;let a=e.select(Bo("plot")).node(),[o]=y2("shape",n),s=new Map;i.forEach((n,i)=>{s.set(n,o({type:"break"},{view:t,selection:e,context:r}))}),c5(a).selectAll(Bo(g_)).data(i,t=>t.key).join(t=>t.append((t,e)=>s.get(t)(t,e)).attr("className",g_),t=>t.each(function(t,e,n){c$(n,s.get(t)(t,e))}),t=>t.remove()).nodes()}(t,e,i,r)})}function b8(t,e,n,r,i){return"function"==typeof t?t(e,n,r,i):"string"!=typeof t?t:c2(e)&&void 0!==e[t]?e[t]:t}function b9(t,e,n,r){if("string"!=typeof e)return;let{color:i}=t,A=t[e]||{};return Object.assign({color:i},A[n]||A[r])}function b7(t,e,n,r,i){var A,a;let[,o]=y2("shape",i),[s]=y2("animation",i),{defaultShape:l,shape:c}=n,{theme:u,coordinate:f}=r,h=uv(t),d=`default${h}Animation`,{[d]:p}=(null==(A=c[l])?void 0:A.props)||o(BA(e,l)).props,{[t]:g={}}=u,y=(null==(a=e.animate)?void 0:a[t])||{},v={coordinate:f};return(e,n,r)=>{let{[`${t}Type`]:i,[`${t}Delay`]:A,[`${t}Duration`]:a,[`${t}Easing`]:o}=e,l=Object.assign({type:i||p},y);if(!l.type)return null;let c=s(l,v)(n,r,cC(g,{delay:A,duration:a,easing:o}));return(Array.isArray(c)?c:[c]).filter(Boolean)}}function Bt(t){return t.finished.then(()=>{t.cancel()}),t}function Be(t={}){if("string"==typeof t)return{type:t};let{type:e="light"}=t;return Object.assign(Object.assign({},b0(t,["type"])),{type:e})}function Bn(t){let{interaction:e={}}=t;return Object.entries(cC({event:!0,tooltip:!0,sliderFilter:!0,legendFilter:!0,scrollbarFilter:!0},e)).reverse()}function Br(t,e){return bZ(this,void 0,void 0,function*(){let{data:n}=t,r=b0(t,["data"]);if(void 0==n)return t;let[,{data:i}]=yield bN([],{data:n},e);return Object.assign({data:i},r)})}function Bi(t){t.style("transform",t=>`translate(${t.paddingLeft+t.marginLeft}, ${t.paddingTop+t.marginTop})`).style("width",t=>t.innerWidth).style("height",t=>t.innerHeight)}function BA(t,e){let{type:n}=t;return"string"==typeof e?`${n}.${e}`:e}function Ba(t,e){let n=t=>void 0!==t.class?`${t.class}`:"";0===t.nodes().length||(t.selectAll(Bo(gS)).data(e,t=>t.key).join(t=>t.append("g").attr("className",gS).attr("id",t=>t.key).style("facet",n).style("fill","transparent").style("zIndex",t=>{var e;return null!=(e=t.zIndex)?e:0}),t=>t.style("facet",n).style("fill","transparent").style("zIndex",t=>{var e;return null!=(e=t.zIndex)?e:0}),t=>t.remove()),t.select(Bo(gI)).node()||t.append("g").attr("className",gI).style("zIndex",0))}function Bo(...t){return t.map(t=>`.${t}`).join("")}function Bs(t,e){t.node()&&t.style("clipPath",t=>{if(!e)return null;let{paddingTop:n,paddingLeft:r,marginLeft:i,marginTop:A,innerWidth:a,innerHeight:o}=t;return new ox({style:{x:r+i,y:n+A,width:a,height:o}})})}function Bl(t){let{style:e,scale:n,type:r}=t,i={},A=cf(e,"columnWidthRatio");return A&&"interval"===r&&(i.x=Object.assign(Object.assign({},null==n?void 0:n.x),{padding:1-A})),Object.assign(Object.assign({},t),{scale:Object.assign(Object.assign({},n),i)})}function Bc(t){let{axis:e}=t,n=cf(e,"y.breaks");return n&&gU(t,"scale.y.breaks",n.map(t=>Object.assign(Object.assign({key:`break-${t.start}-${t.end}`},t),{gap:(t=>{if(!t||"string"!=typeof t)return t;let e=t.endsWith("%")?parseFloat(t.slice(0,-1))/100:parseFloat(t);if(isNaN(e)||e<0||e>1)throw Error(`Invalid gap value: ${t}. It should be between 0 and 1.`);return e})(t.gap)}))),t}function Bu(t,e={},n=!1,r=!0){let i,{canvas:A,emitter:a}=e;A&&(null==(i=A.getRoot().querySelectorAll(".view"))||i.forEach(t=>{let{nameInteraction:e=new Map}=t;(null==e?void 0:e.size)>0&&Array.from(null==e?void 0:e.values()).forEach(t=>{null==t||t.destroy()})}),n?A.destroy():A.destroyChildren()),r&&a.off()}function Bf(t,e){let n,r=-1,i=-1;if(void 0===e)for(let e of t)++i,null!=e&&(n>e||void 0===n&&e>=e)&&(n=e,r=i);else for(let A of t)null!=(A=e(A,++i,t))&&(n>A||void 0===n&&A>=A)&&(n=A,r=i);return r}function Bh(t,e){let n=0,r=0;if(void 0===e)for(let e of t)null!=e&&(e*=1)>=e&&(++n,r+=e);else{let i=-1;for(let A of t)null!=(A=e(A,++i,t))&&(A*=1)>=A&&(++n,r+=A)}if(n)return r/n}let Bd=function(t,e,n){var r,i,A,a,o=0;n||(n={});var s=function(){o=!1===n.leading?0:Date.now(),r=null,a=t.apply(i,A),r||(i=A=null)},l=function(){var l=Date.now();o||!1!==n.leading||(o=l);var c=e-(l-o);return i=this,A=arguments,c<=0||c>e?(r&&(clearTimeout(r),r=null),o=l,a=t.apply(i,A),r||(i=A=null)):r||!1===n.trailing||(r=setTimeout(s,c)),a};return l.cancel=function(){clearTimeout(r),o=0,r=i=A=null},l};function Bp(t){var e=document.createElement("div");e.innerHTML=t;var n=e.childNodes[0];return n&&e.contains(n)&&e.removeChild(n),n}var Bg=function(t,e){if(null==e){t.innerHTML="";return}t.replaceChildren?Array.isArray(e)?t.replaceChildren.apply(t,(0,e$.fX)([],(0,e$.zs)(e),!1)):t.replaceChildren(e):(t.innerHTML="",Array.isArray(e)?e.forEach(function(e){return t.appendChild(e)}):t.appendChild(e))};function By(t){return void 0===t&&(t=""),{CONTAINER:"".concat(t,"tooltip"),TITLE:"".concat(t,"tooltip-title"),LIST:"".concat(t,"tooltip-list"),LIST_ITEM:"".concat(t,"tooltip-list-item"),NAME:"".concat(t,"tooltip-list-item-name"),MARKER:"".concat(t,"tooltip-list-item-marker"),NAME_LABEL:"".concat(t,"tooltip-list-item-name-label"),VALUE:"".concat(t,"tooltip-list-item-value"),CROSSHAIR_X:"".concat(t,"tooltip-crosshair-x"),CROSSHAIR_Y:"".concat(t,"tooltip-crosshair-y")}}var Bv={overflow:"hidden","white-space":"nowrap","text-overflow":"ellipsis"},Bm=function(t){function e(e){var n,r,i,A,a,o=this,s=null==(a=null==(A=e.style)?void 0:A.template)?void 0:a.prefixCls,l=By(s);return(o=t.call(this,e,{data:[],x:0,y:0,visibility:"visible",title:"",position:"bottom-right",offset:[5,5],enterable:!1,container:{x:0,y:0},bounding:null,template:{prefixCls:"",container:'
'),title:'
'),item:'
  • \n \n \n {name}\n \n {value}\n
  • ')},style:(void 0===(n=s)&&(n=""),i=By(n),(r={})[".".concat(i.CONTAINER)]={position:"absolute",visibility:"visible","z-index":8,transition:"visibility 0.2s cubic-bezier(0.23, 1, 0.32, 1), left 0.4s cubic-bezier(0.23, 1, 0.32, 1), top 0.4s cubic-bezier(0.23, 1, 0.32, 1)","background-color":"rgba(255, 255, 255, 0.96)","box-shadow":"0 6px 12px 0 rgba(0, 0, 0, 0.12)","border-radius":"4px",color:"rgba(0, 0, 0, 0.65)","font-size":"12px","line-height":"20px",padding:"12px","min-width":"120px","max-width":"360px","font-family":"Roboto-Regular"},r[".".concat(i.TITLE)]={color:"rgba(0, 0, 0, 0.45)"},r[".".concat(i.LIST)]={margin:"0px","list-style-type":"none",padding:"0px"},r[".".concat(i.LIST_ITEM)]={"list-style-type":"none",display:"flex","line-height":"2em","align-items":"center","justify-content":"space-between","white-space":"nowrap"},r[".".concat(i.MARKER)]={width:"8px",height:"8px","border-radius":"50%",display:"inline-block","margin-right":"4px"},r[".".concat(i.NAME)]={display:"flex","align-items":"center","max-width":"216px"},r[".".concat(i.NAME_LABEL)]=(0,e$.Cl)({flex:1},Bv),r[".".concat(i.VALUE)]=(0,e$.Cl)({display:"inline-block",float:"right",flex:1,"text-align":"right","min-width":"28px","margin-left":"30px",color:"rgba(0, 0, 0, 0.85)"},Bv),r[".".concat(i.CROSSHAIR_X)]={position:"absolute",width:"1px","background-color":"rgba(0, 0, 0, 0.25)"},r[".".concat(i.CROSSHAIR_Y)]={position:"absolute",height:"1px","background-color":"rgba(0, 0, 0, 0.25)"},r)})||this).timestamp=-1,o.prevCustomContentKey=o.attributes.contentKey,o.initShape(),o.render(o.attributes,o),o}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"HTMLTooltipElement",{get:function(){return this.element},enumerable:!1,configurable:!0}),e.prototype.getContainer=function(){return this.element},Object.defineProperty(e.prototype,"elementSize",{get:function(){return{width:this.element.offsetWidth,height:this.element.offsetHeight}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"HTMLTooltipItemsElements",{get:function(){var t=this.attributes,e=t.data,n=t.template;return e.map(function(t,e){var r,i=t.name,A=t.color,a=t.index,o=(0,e$.Tt)(t,["name","color","index"]),s=(0,e$.Cl)({name:void 0===i?"":i,color:void 0===A?"black":A,index:null!=a?a:e},o);return Bp((r=n.item,r&&s?r.replace(/\\?\{([^{}]+)\}/g,function(t,e){return"\\"===t.charAt(0)?t.slice(1):void 0===s[e]?"":s[e]}):r))})},enumerable:!1,configurable:!0}),e.prototype.render=function(t,e){this.renderHTMLTooltipElement(),this.updatePosition()},e.prototype.destroy=function(){var e;null==(e=this.element)||e.remove(),t.prototype.destroy.call(this)},e.prototype.show=function(t,e){var n=this;if(void 0!==t&&void 0!==e){var r="hidden"===this.element.style.visibility,i=function(){n.attributes.x=null!=t?t:n.attributes.x,n.attributes.y=null!=e?e:n.attributes.y,n.updatePosition()};r?this.closeTransition(i):i()}this.element.style.visibility="visible"},e.prototype.hide=function(t,e){void 0===t&&(t=0),void 0===e&&(e=0),this.attributes.enterable&&this.isCursorEntered(t,e)||(this.element.style.visibility="hidden")},e.prototype.initShape=function(){var t=this.attributes.template;this.element=Bp(t.container),this.id&&this.element.setAttribute("id",this.id)},e.prototype.renderCustomContent=function(){if(void 0===this.prevCustomContentKey||this.prevCustomContentKey!==this.attributes.contentKey){this.prevCustomContentKey=this.attributes.contentKey;var t=this.attributes.content;t&&("string"==typeof t?this.element.innerHTML=t:Bg(this.element,t))}},e.prototype.renderHTMLTooltipElement=function(){var t,e,n=this.attributes,r=n.template,i=n.title,A=n.enterable,a=n.style,o=n.content,s=By(r.prefixCls),l=this.element;if(this.element.style.pointerEvents=A?"auto":"none",o)this.renderCustomContent();else{i?(l.innerHTML=r.title,l.getElementsByClassName(s.TITLE)[0].innerHTML=i):null==(e=null==(t=l.getElementsByClassName(s.TITLE))?void 0:t[0])||e.remove();var c=this.HTMLTooltipItemsElements,u=document.createElement("ul");u.className=s.LIST,Bg(u,c);var f=this.element.querySelector(".".concat(s.LIST));f?f.replaceWith(u):l.appendChild(u)}Object.entries(a).forEach(function(t){var e=(0,e$.zs)(t,2),n=e[0],r=e[1];(0,e$.fX)([l],(0,e$.zs)(l.querySelectorAll(n)),!1).filter(function(t){return t.matches(n)}).forEach(function(t){t&&(t.style.cssText+=Object.entries(r).reduce(function(t,e){return"".concat(t).concat(e.join(":"),";")},""))})})},e.prototype.getRelativeOffsetFromCursor=function(t){var e=this.attributes,n=e.position,r=e.offset,i=(t||n).split("-"),A={left:[-1,0],right:[1,0],top:[0,-1],bottom:[0,1]},a=this.elementSize,o=a.width,s=a.height,l=[-o/2,-s/2];return i.forEach(function(t){var e=(0,e$.zs)(l,2),n=e[0],i=e[1],a=(0,e$.zs)(A[t],2),c=a[0],u=a[1];l=[n+(o/2+r[0])*c,i+(s/2+r[1])*u]}),l},e.prototype.setOffsetPosition=function(t){var e=(0,e$.zs)(t,2),n=e[0],r=e[1],i=this.attributes,A=i.x,a=i.y,o=i.container,s=o.x,l=o.y;this.element.style.left="".concat(+(void 0===A?0:A)+s+n,"px"),this.element.style.top="".concat(+(void 0===a?0:a)+l+r,"px")},e.prototype.updatePosition=function(){var t=this.attributes.showDelay,e=Date.now();this.timestamp>0&&e-this.timestamp<(void 0===t?60:t)||(this.timestamp=e,this.setOffsetPosition(this.autoPosition(this.getRelativeOffsetFromCursor())))},e.prototype.autoPosition=function(t){var e=(0,e$.zs)(t,2),n=e[0],r=e[1],i=this.attributes,A=i.x,a=i.y,o=i.bounding,s=i.position;if(!o)return[n,r];var l=this.element,c=l.offsetWidth,u=l.offsetHeight,f=(0,e$.zs)([+A+n,+a+r],2),h=f[0],d=f[1],p={left:"right",right:"left",top:"bottom",bottom:"top"},g=o.x,y=o.y,v={left:hg+o.width,top:dy+o.height},b=[];s.split("-").forEach(function(t){v[t]?b.push(p[t]):b.push(t)});var B=b.join("-");return this.getRelativeOffsetFromCursor(B)},e.prototype.isCursorEntered=function(t,e){if(this.element){var n=this.element.getBoundingClientRect();return new h6(n.x,n.y,n.width,n.height).isPointIn(t,e)}return!1},e.prototype.closeTransition=function(t){var e=this,n=this.element.style.transition;this.element.style.transition="none",t(),setTimeout(function(){e.element.style.transition=n},10)},e.tag="tooltip",e}(fi),Bb=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let BB="tooltipLocked";function Bw(t,e){var n;if(e)return"string"==typeof e?document.querySelector(e):e;let r=null==(n=t.ownerDocument)?void 0:n.defaultView;if(r)return r.getContextService().getDomElement().parentElement}function Bx({root:t,data:e,x:n,y:r,render:i,event:A,single:a,position:o="right-bottom",enterable:s=!1,css:l,mount:c,bounding:u,offset:f}){let h,d,p=Bw(t,c),g=Bw(t),y=a?g:t,v=u||function(t){let{min:[e,n],max:[r,i]}=t.getRenderBounds();return{x:e,y:n,width:r-e,height:i-n}}(t),b=(h=g.getBoundingClientRect(),d=p.getBoundingClientRect(),{x:h.x-d.x,y:h.y-d.y}),{tooltipElement:B=function(t,e,n,r,i,A,a,o={},s=[10,10]){let l=new Bm({className:"tooltip",style:{x:e,y:n,container:a,data:[],bounding:A,position:r,enterable:i,title:"",offset:s,template:{prefixCls:"g2-"},style:cC({[uR("tooltip")]:{},[uR("tooltip-title")]:{overflow:"hidden","white-space":"nowrap","text-overflow":"ellipsis"}},o)}});return t.appendChild(l.HTMLTooltipElement),l}(p,n,r,o,s,v,b,l,f)}=y,{items:w,title:x=""}=e;B.update(Object.assign({x:n,y:r,data:w.map(t=>Object.assign(Object.assign({},t),{value:t.value||0===t.value?t.value:""})),title:x,position:o,enterable:s,container:b},void 0!==i&&{content:i(A,{items:w,title:x})})),y.tooltipElement=B}function BC({root:t,single:e,emitter:n,nativeEvent:r=!0,event:i=null}){r&&n.emit("tooltip:hide",{nativeEvent:r});let A=Bw(t),{tooltipElement:a}=e?A:t;a&&a.hide(null==i?void 0:i.clientX,null==i?void 0:i.clientY),BM(t),BU(t),BS(t)}function BO({root:t,single:e}){let n=Bw(t),r=e?n:t;if(!r)return;let{tooltipElement:i}=r;i&&(i.destroy(),r.tooltipElement=void 0),BM(t),BU(t),BS(t)}function BE(t){let{value:e}=t;return Object.assign(Object.assign({},t),{value:void 0===e?"undefined":e})}function Bk(t){let e=t.getAttribute("fill"),n=t.getAttribute("stroke"),{__data__:r}=t,{color:i=e&&"transparent"!==e?e:n}=r;return i}function BF(t,e=t=>t){return Array.from(new Map(t.map(t=>[e(t),t])).values())}function BQ(t,e,n,r=t.map(t=>t.__data__),i={}){let A=t=>t instanceof Date?+t:t,a=BF(r.map(t=>t.title),A).filter(cq),o=r.flatMap((r,A)=>{let a=r.element||t[A],{items:o=[],title:s}=r,l=o.filter(cq),c=void 0!==n?n:o.length<=1;return l.map(t=>{var{color:n=Bk(a)||i.color,name:A}=t,o=Bb(t,["color","name"]);let l=function(t,e){var n,r,i,A;let a,o,{color:s,facet:l=!1}=t,{color:c,series:u}=e,f=(a=null!=(n=e.markKey)?n:null==(i=null==(r=e.element)?void 0:r.__data__)?void 0:i.markKey,o=Object.keys(t).find(e=>{if(e.startsWith("series")){let n=t[e].getOptions();return"series"===n.name&&n.markKey===a}}),null!=(A=t[o])?A:t.series),h=t=>t&&t.invert&&!(t instanceof c_)&&!(t instanceof cK);if(h(f))return f.clone().invert(u);if(u&&f instanceof c_&&f.invert(u)!==c&&!l)return f.invert(u);if(h(s)){let t=s.invert(c);return Array.isArray(t)?null:t}return null}(e,r),u=!c||bH in o?A||l:l||A;return Object.assign(Object.assign({},o),{color:n,name:u||s})})}).map(BE);return Object.assign(Object.assign({},a.length>0&&{title:a.join(",")}),{items:BF(o,t=>`(${A(t.name)}, ${A(t.value)}, ${A(t.color)})`)})}function BM(t){t.ruleY&&(t.ruleY.remove(),t.ruleY=void 0)}function BU(t){t.ruleX&&(t.ruleX.remove(),t.ruleX=void 0)}function BS(t){t.markers&&(t.markers.forEach(t=>t.remove()),t.markers=[])}function BI(t,e){return Array.from(t.values()).some(t=>{var n;return null==(n=t.interaction)?void 0:n[e]})}function BT(t,e){return void 0===t?e:t}function BL(t){let{title:e,items:n}=t;return 0===n.length&&void 0===e}function B_({root:t,event:e,elements:n=[],coordinate:r,scale:i,shared:A}){var a,o;let s=n.filter(t=>!uz.includes(t.markType)),l=s.length>0&&s.every(t=>"interval"===t.markType)&&!uW(r),c=i.x,u=function(t){let{x:e}=t;if(!e||!e.valueBandWidth)return!0;let{valueBandWidth:n}=e;return!!eG(n)||1===new Set(n.values()).size}(i),f=i.series,h=null!=(o=null==(a=null==c?void 0:c.getBandWidth)?void 0:a.call(c))?o:0,d=f&&f.valueBandWidth?t=>{let e=Math.round(1/f.valueBandWidth);return t.__data__.x+t.__data__.series*h+h/(2*e)}:t=>t.__data__.x+h/2;l&&s.sort((t,e)=>d(t)-d(e));let p=t=>{let{target:e=hj(n)}=t;return yW(e,e=>!!e.classList&&(cz(e)&&gU(e,"__data__.normalized",function(t,e){let{innerWidth:n,innerHeight:r,marginLeft:i,paddingLeft:A,insetLeft:a,marginTop:o,paddingTop:s,insetTop:l}=t.getOptions();return{x:(e.x-i-A-a)/n,y:(e.y-o-s-l)/r}}(r,{x:t.offsetX,y:t.offsetY})),e.classList.includes("element")))};return(l?e=>{let n=yE(t,e);if(!n)return;let[i]=r.invert(n),a=gz(d).center,o=u?a(s,i):function(t,e){let{adjustedRange:n,valueBandWidth:r,valueStep:i}=t,A=Array.from(r.values()),a=Array.from(i.values()),o=n.map((t,e)=>{let n=(a[e]-A[e])/2;return[t-n,t+A[e]+n]}).findIndex(([t,n])=>t<=e&&e<=n);return -1!==o?o:e>.5?n.length-1:0}(c,i),l=s[o];if(!A){let t=s.find(t=>t!==l&&d(t)===d(l));if(t)return p(e)||t}return l}:p)(e)}function BP({root:t,event:e,elements:n,coordinate:r,scale:i,startX:A,startY:a}){let o=uV(r),s=[],l=[];for(let t of n){if(uz.includes(t.markType))continue;let{__data__:e}=t,{seriesX:n,title:r,items:i}=e;n?s.push(t):(r||i)&&l.push(t)}let c=l.length&&l.every(t=>"interval"===t.markType)&&!uW(r),u=t=>t.__data__.x,f=!!i.x.getBandWidth&&l.length>0;s.sort((t,e)=>{let n=+!o,r=t=>t.getBounds().min[n];return o?r(e)-r(t):r(t)-r(e)});let h=t=>{let e=+!!o,{min:n,max:r}=t.getLocalBounds();return gm([n[e],r[e]])};c?l.sort((t,e)=>u(t)-u(e)):l.sort((t,e)=>{let[n,r]=h(t),[i,A]=h(e),a=(n+r)/2,s=(i+A)/2;return o?s-a:a-s});let d=new Map(s.map(t=>{let{__data__:e}=t,{seriesX:n}=e;return[t,[gm(n.map((t,e)=>e),t=>n[+t]),n]]})),{x:p}=i,g=(null==p?void 0:p.getBandWidth)?p.getBandWidth()/2:0,y=t=>{let[e]=r.invert(t);return e-g},v=(t,e,n,r)=>{let{_x:i}=t,A=void 0!==i?p.map(i):y(e),a=r.filter(cq),[o,s]=gm([a[0],a[a.length-1]]);if(!f&&(As)&&o!==s)return null;let l=(0,gz(t=>r[+t]).center)(n,A);return n[l]},b=c?(t,e)=>{let n=(0,gz(u).center)(e,y(t)),r=e[n];return cy(e,u).get(u(r))}:(t,e)=>{let n=t[+!!o],r=e.filter(t=>{let[e,r]=h(t);return n>=e&&n<=r});if(!f||r.length>0)return r;let i=(0,gz(t=>{let[e,n]=h(t);return(e+n)/2}).center)(e,n);return[e[i]].filter(cq)},B=(t,e)=>{let{__data__:n}=t;return Object.fromEntries(Object.entries(n).filter(([t])=>t.startsWith("series")&&"series"!==t).map(([t,n])=>{let r=n[e];return[cE(t.replace("series","")),r]}))},w=yE(t,e);if(!w)return;let x=[w[0]-A,w[1]-a];if(!x)return;let C=b(x,l),O=[],E=[];for(let t of s){let[n,i]=d.get(t),A=v(e,x,n,i);if(null!==A){O.push(t);let e=B(t,A),{x:n,y:i}=e,a=r.map([(n||0)+g,i||0]);E.push([Object.assign(Object.assign({},e),{element:t}),a])}}let k=Array.from(new Set(E.map(t=>t[0].x))),F=k[Bf(k,t=>Math.abs(t-y(x)))],Q=E.filter(t=>t[0].x===F),M=[...Q.map(t=>t[0]),...C.map(t=>t.__data__)];return{selectedElements:[...O,...C],selectedData:M,filteredSeriesData:Q,abstractX:y}}function BH(t,e){var{elements:n,sort:r,filter:i,scale:A,coordinate:a,crosshairs:o,crosshairsX:s,crosshairsY:l,render:c,groupName:u,emitter:f,wait:h=50,leading:d=!0,trailing:p=!1,startX:g=0,startY:y=0,body:v=!0,single:b=!0,position:B,enterable:w,mount:x,bounding:C,theme:O,offset:E,disableNative:k=!1,marker:F=!0,preserve:Q=!1,style:M={},css:U={},clickLock:S=!1,disableAutoHide:I=!1}=e,T=Bb(e,["elements","sort","filter","scale","coordinate","crosshairs","crosshairsX","crosshairsY","render","groupName","emitter","wait","leading","trailing","startX","startY","body","single","position","enterable","mount","bounding","theme","offset","disableNative","marker","preserve","style","css","clickLock","disableAutoHide"]);let L=n(t),_=cC(M,T),P=uW(a),H=uV(a),{innerWidth:j,innerHeight:N,width:D,height:R,insetLeft:K,insetTop:z}=a.getOptions(),G=Bd(e=>{var n;if(S&&t.getAttribute(BB))return;let h=yE(t,e);if(!h)return;let d=yO(t),p=d.min[0],k=d.min[1],{selectedElements:Q,selectedData:M,filteredSeriesData:I,abstractX:T}=BP({root:t,event:e,elements:L,coordinate:a,scale:A,startX:g,startY:y}),G=BQ(Q,A,u,M,O);if(r&&G.items.sort((t,e)=>r(t)-r(e)),i&&(G.items=G.items.filter(i)),0===Q.length||BL(G))return void V(e);if(v&&Bx({root:t,data:G,x:h[0]+p,y:h[1]+k,render:c,event:e,single:b,position:B,enterable:w,mount:x,bounding:C,css:U,offset:E}),o||s||l){let e=cJ(_,"crosshairs"),n=Object.assign(Object.assign({},e),cJ(_,"crosshairsX")),r=Object.assign(Object.assign({},e),cJ(_,"crosshairsY")),i=I.map(t=>t[1]);s&&function(t,e,n,r){var{plotWidth:i,plotHeight:A,mainWidth:a,mainHeight:o,startX:s,startY:l,transposed:c,polar:u,insetLeft:f,insetTop:h}=r;let d=Object.assign({lineWidth:1,stroke:"#1b1e23",strokeOpacity:.5},Bb(r,["plotWidth","plotHeight","mainWidth","mainHeight","startX","startY","transposed","polar","insetLeft","insetTop"])),p=((t,e)=>{if(1===e.length)return e[0];let n=Bf(e.map(e=>pP(e,t)),t=>t);return e[n]})(n,e);if(u){let e,n,r,i,[A,c,u]=(r=pP([e=s+f+a/2,n=l+h+o/2],p),[e,n,r]),g=t.ruleX||(i=new oo({style:Object.assign({cx:A,cy:c,r:u},d)}),t.appendChild(i),i);g.style.cx=A,g.style.cy=c,g.style.r=u,t.ruleX=g}else{let e,[n,r,a,o]=c?[s+p[0],s+p[0],l,l+A]:[s,s+i,p[1]+l,p[1]+l],u=t.ruleX||(e=new og({style:Object.assign({x1:n,x2:r,y1:a,y2:o},d)}),t.appendChild(e),e);u.style.x1=n,u.style.x2=r,u.style.y1=a,u.style.y2=o,t.ruleX=u}}(t,i,h,Object.assign(Object.assign({},n),{plotWidth:j,plotHeight:N,mainWidth:D,mainHeight:R,insetLeft:K,insetTop:z,startX:g,startY:y,transposed:H,polar:P})),l&&function(t,e,n){var{plotWidth:r,plotHeight:i,mainWidth:A,mainHeight:a,startX:o,startY:s,transposed:l,polar:c,insetLeft:u,insetTop:f}=n;let h=Object.assign({lineWidth:1,stroke:"#1b1e23",strokeOpacity:.5},Bb(n,["plotWidth","plotHeight","mainWidth","mainHeight","startX","startY","transposed","polar","insetLeft","insetTop"])),d=e.map(t=>t[1]),p=e.map(t=>t[0]),g=Bh(d),y=Bh(p),[v,b,B,w]=(()=>{if(c){let t=Math.min(A,a)/2,e=o+u+A/2,n=s+f+a/2,r=pH(p_([y,g],[e,n])),i=e+t*Math.cos(r),l=n+t*Math.sin(r);return[e,i,n,l]}return l?[o,o+r,g+s,g+s]:[y+o,y+o,s,s+i]})();if(p.length>0){let e,n=t.ruleY||(e=new og({style:Object.assign({x1:v,x2:b,y1:B,y2:w},h)}),t.appendChild(e),e);n.style.x1=v,n.style.x2=b,n.style.y1=B,n.style.y2=w,t.ruleY=n}}(t,i,Object.assign(Object.assign({},r),{plotWidth:j,plotHeight:N,mainWidth:D,mainHeight:R,insetLeft:K,insetTop:z,startX:g,startY:y,transposed:H,polar:P}))}F&&function(t,{data:e,style:n,theme:r}){t.markers&&t.markers.forEach(t=>t.remove());let{type:i=""}=n,A=e.filter(t=>{let[{x:e,y:n}]=t;return cq(e)&&cq(n)}).map(t=>{let[{color:e,element:A},a]=t,o=e||A.style.fill||A.style.stroke||r.color,s="hollow"===i?"transparent":o,l="hollow"===i?o:"#fff";return new oo({className:"g2-tooltip-marker",style:Object.assign({cx:a[0],cy:a[1],fill:s,r:4,stroke:l,lineWidth:2,pointerEvents:"none"},n)})});for(let e of A)t.appendChild(e);t.markers=A}(t,{data:I,style:cJ(_,"marker"),theme:O});let W=null==(n=I[0])?void 0:n[0].x,X=null!=W?W:T(focus);f.emit("tooltip:show",Object.assign(Object.assign({},e),{nativeEvent:!0,data:Object.assign(Object.assign({},G),{data:{x:gZ(A.x,X,!0)}})}))},h,{leading:d,trailing:p}),V=e=>{S&&t.getAttribute(BB)||I||BC({root:t,single:b,emitter:f,event:e})},W=()=>{BO({root:t,single:b})},X=e=>{var n,{nativeEvent:r,data:i,offsetX:o,offsetY:s}=e,l=Bb(e,["nativeEvent","data","offsetX","offsetY"]);if(r)return;let c=null==(n=null==i?void 0:i.data)?void 0:n.x,u=A.x.map(c),[f,h]=a.map([u,.5]),d=yO(t),p=d.min[0],g=d.min[1];G(Object.assign(Object.assign({},l),{offsetX:void 0!==o?o:p+f,offsetY:void 0!==s?s:g+h,_x:c}))},Y=()=>{BC({root:t,single:b,emitter:f,nativeEvent:!1})},$=()=>{te(),W()},q=e=>{yE(t,e)||V(e)},J=()=>{tt()},Z=e=>{S&&t.setAttribute(BB,!t.getAttribute(BB)),G(e)},tt=()=>{k||(t.addEventListener("pointerdown",Z),t.addEventListener("pointerenter",G),t.addEventListener("pointermove",G),t.addEventListener("pointerleave",q),t.addEventListener("pointerup",V))},te=()=>{k||(t.removeEventListener("pointerdown",Z),t.removeEventListener("pointerenter",G),t.removeEventListener("pointermove",G),t.removeEventListener("pointerleave",q),t.removeEventListener("pointerup",V))};return tt(),f.on("tooltip:show",X),f.on("tooltip:hide",Y),f.on("tooltip:disable",$),f.on("tooltip:enable",J),()=>{te(),f.off("tooltip:show",X),f.off("tooltip:hide",Y),f.off("tooltip:disable",$),f.off("tooltip:enable",J),Q?BC({root:t,single:b,emitter:f,nativeEvent:!1}):W()}}function Bj(t){let{shared:e,crosshairs:n,crosshairsX:r,crosshairsY:i,series:A,name:a,item:o=()=>({}),facet:s=!1}=t,l=Bb(t,["shared","crosshairs","crosshairsX","crosshairsY","series","name","item","facet"]);return(t,a,c)=>{let{container:u,view:f}=t,{scale:h,markState:d,coordinate:p,theme:g}=f,y=BI(d,"seriesTooltip"),v=BI(d,"crosshairs"),b=yC(u),B=BT(A,y),w=BT(n,v);if(l.clickLock&&!s&&b.setAttribute(BB,!1),B&&Array.from(d.values()).some(t=>{var e;return(null==(e=t.interaction)?void 0:e.seriesTooltip)&&t.tooltip})&&!s)return BH(b,Object.assign(Object.assign({},l),{theme:g,elements:yB,scale:h,coordinate:p,crosshairs:w,crosshairsX:BT(BT(r,n),!1),crosshairsY:BT(i,w),item:o,emitter:c}));if(B&&s){let e=a.filter(e=>e!==t&&e.options.parentKey===t.options.key),A=yw(t,a),s=e[0].view.scale,u=b.getBounds(),f=u.min[0],h=u.min[1];Object.assign(s,{facet:!0});let d=b.parentNode.parentNode;return l.clickLock&&d.setAttribute(BB,!1),BH(d,Object.assign(Object.assign({},l),{theme:g,elements:()=>A,scale:s,coordinate:p,crosshairs:BT(n,v),crosshairsX:BT(BT(r,n),!1),crosshairsY:BT(i,w),item:o,startX:f,startY:h,emitter:c}))}return function(t,{elements:e,coordinate:n,scale:r,render:i,groupName:A,sort:a,filter:o,emitter:s,wait:l=50,leading:c=!0,trailing:u=!1,groupKey:f=t=>t,single:h=!0,position:d,enterable:p,datum:g,view:y,mount:v,bounding:b,theme:B,offset:w,shared:x=!1,body:C=!0,disableNative:O=!1,preserve:E=!1,css:k={},clickLock:F=!1,disableAutoHide:Q=!1}){let M=e(t),U=cy(M,f),S=Bd(e=>{if(F&&t.getAttribute(BB))return;let l=B_({root:t,event:e,elements:M,coordinate:n,scale:r,shared:x});if(!l){Q||BC({root:t,single:h,emitter:s,event:e});return}let c=f(l),u=U.get(c);if(!u)return;let g=1!==u.length||x?BQ(u,r,A,void 0,B):function(t){let{__data__:e}=t;if(cz(t))return function(t){var e,n,r,i,A,a,o;let{__data__:s}=t,{title:l,items:c=[]}=s;if(c.some(t=>bH in t)){let e=c.filter(cq).map(e=>{var{color:n=Bk(t)}=e;return Object.assign(Object.assign({},Bb(e,["color"])),{color:n})}).map(BE);return Object.assign(Object.assign({},l&&{title:l}),{items:e})}let u=null!=(n=null==(e=null==s?void 0:s.normalized)?void 0:e.x)?n:0,f=null==(r=t.parentNode)?void 0:r.__data__,{x:h={},y:d={},color:p={}}=null!=(i=null==f?void 0:f.encode)?i:{},{value:g=[]}=h,{value:y=[]}=d,{value:v=[]}=p,b=Math.min(Math.round(g.length*u),g.length-1);return{title:`${g[b]}, ${y[b]}`,items:[{name:null!=(A=p.field)?A:"value",value:v[b],color:(null==(a=t.style)?void 0:a.fill)||(null==(o=t.getAttribute)?void 0:o.call(t,"color"))||"#000"}]}}(t);let{title:n,items:r=[]}=e,i=r.filter(cq).map(e=>{var{color:n=Bk(t)}=e;return Object.assign(Object.assign({},Bb(e,["color"])),{color:n})}).map(BE);return Object.assign(Object.assign({},n&&{title:n}),{items:i})}(u[0]);if(a&&g.items.sort((t,e)=>a(t)-a(e)),o&&(g.items=g.items.filter(o)),BL(g)){Q||BC({root:t,single:h,emitter:s,event:e});return}let{offsetX:O,offsetY:E}=e;C&&Bx({root:t,data:g,x:O,y:E,render:i,event:e,single:h,position:d,enterable:p,mount:v,bounding:b,css:k,offset:w}),s.emit("tooltip:show",Object.assign(Object.assign({},e),{nativeEvent:!0,data:Object.assign(Object.assign({},g),{data:cG(l,y)})}))},l,{leading:c,trailing:u}),I=e=>{Q||BC({root:t,single:h,emitter:s,event:e})},T=e=>{F&&t.setAttribute(BB,!t.getAttribute(BB)),S(e)},L=()=>{O||(t.addEventListener("pointerdown",T),t.addEventListener("pointermove",S),t.addEventListener("pointerleave",I),t.addEventListener("pointerup",I))},_=()=>{O||(t.removeEventListener("pointerdown",T),t.removeEventListener("pointermove",S),t.removeEventListener("pointerleave",I),t.removeEventListener("pointerup",I))},P=({nativeEvent:e,offsetX:n,offsetY:r,data:i})=>{if(e)return;let{data:A}=i,a=yK(M,A,g);if(!a)return;let{x:o,y:s,width:l,height:c}=a.getBBox(),u=t.getBBox();S({target:a,offsetX:void 0!==n?n+u.x:o+l/2,offsetY:void 0!==r?r+u.y:s+c/2})},H=({nativeEvent:e}={})=>{e||BC({root:t,single:h,emitter:s,nativeEvent:!1})},j=()=>{_(),BO({root:t,single:h})},N=()=>{L()};return s.on("tooltip:show",P),s.on("tooltip:hide",H),s.on("tooltip:enable",N),s.on("tooltip:disable",j),L(),()=>{_(),s.off("tooltip:show",P),s.off("tooltip:hide",H),s.off("tooltip:enable",N),s.off("tooltip:disable",j),E?BC({root:t,single:h,emitter:s,nativeEvent:!1}):BO({root:t,single:h})}}(b,Object.assign(Object.assign({},l),{datum:yM(f),elements:yB,scale:h,coordinate:p,groupKey:e?yQ(f):void 0,item:o,emitter:c,view:f,theme:g,shared:e}))}}Bj.props={reapplyWhenUpdate:!0};let BN=t=>t?parseInt(t):0;function BD(t,e){let n=[t];for(;n.length;){let t=n.shift();for(let r of(e&&e(t),t.children||[]))n.push(r)}}class BR{constructor(t={},e){this.parentNode=null,this.children=[],this.index=0,this.type=e,this.value=t}map(t=t=>t){let e=t(this.value);return this.value=e,this}attr(t,e){return 1==arguments.length?this.value[t]:this.map(n=>(n[t]=e,n))}append(t){let e=new t({});return e.children=[],this.push(e),e}push(t){return t.parentNode=this,t.index=this.children.length,this.children.push(t),this}remove(){let t=this.parentNode;if(t){let{children:e}=t,n=e.findIndex(t=>t===this);e.splice(n,1)}return this}getNodeByKey(t){let e=null;return BD(this,n=>{t===n.attr("key")&&(e=n)}),e}getNodesByType(t){let e=[];return BD(this,n=>{t===n.type&&e.push(n)}),e}getNodeByType(t){let e=null;return BD(this,n=>{e||t===n.type&&(e=n)}),e}call(t,...e){return t(this.map(),...e),this}getRoot(){let t=this;for(;t&&t.parentNode;)t=t.parentNode;return t}}var BK=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Bz=["width","height","depth","padding","paddingLeft","paddingRight","paddingBottom","paddingTop","inset","insetLeft","insetRight","insetTop","insetBottom","margin","marginLeft","marginRight","marginTop","marginBottom","autoFit","theme","title","interaction"],BG="__remove__",BV="__callback__";function BW(t){return Object.assign(Object.assign({},t.value),{type:t.type})}function BX(t,e){let{width:n,height:r,autoFit:i,depth:A=0}=t,a=640,o=480;if(i){let t,n,r,{width:i,height:A}=(t=getComputedStyle(e),n=e.clientWidth||BN(t.width),r=e.clientHeight||BN(t.height),{width:n-(BN(t.paddingLeft)+BN(t.paddingRight)),height:r-(BN(t.paddingTop)+BN(t.paddingBottom))});a=i||a,o=A||o}return a=n||a,o=r||o,{width:Math.max(eG(a)?a:1,1),height:Math.max(eG(o)?o:1,1),depth:A}}function BY(t){return e=>{for(let[n,r]of Object.entries(t)){let{type:t}=r;"value"===t?function(t,e,{key:n=e}){t.prototype[e]=function(t){return 0==arguments.length?this.attr(n):this.attr(n,t)}}(e,n,r):"array"===t?function(t,e,{key:n=e}){t.prototype[e]=function(t){if(0==arguments.length)return this.attr(n);if(Array.isArray(t))return this.attr(n,t);let e=[...this.attr(n)||[],t];return this.attr(n,e)}}(e,n,r):"object"===t?function(t,e,{key:n=e}){t.prototype[e]=function(t,e){if(0==arguments.length)return this.attr(n);if(1==arguments.length&&"string"!=typeof t)return this.attr(n,t);let r=this.attr(n)||{};return r[t]=1==arguments.length||e,this.attr(n,r)}}(e,n,r):"node"===t?function(t,e,{ctor:n}){t.prototype[e]=function(t){let r=this.append(n);return"mark"===e&&(r.type=t),r}}(e,n,r):"container"===t?function(t,e,{ctor:n}){t.prototype[e]=function(){return this.type=null,this.append(n)}}(e,n,r):"mix"===t&&function(t,e){t.prototype[e]=function(t){if(0==arguments.length)return this.attr(e);if(Array.isArray(t))return this.attr(e,{items:t});if(c2(t)&&(void 0!==t.title||void 0!==t.items)||null===t||!1===t)return this.attr(e,t);let n=this.attr(e)||{},{items:r=[]}=n;return r.push(t),n.items=r,this.attr(e,n)}}(e,n)}return e}}function B$(t){return Object.fromEntries(Object.entries(t).map(([t,e])=>[t,{type:"node",ctor:e}]))}let Bq={encode:{type:"object"},scale:{type:"object"},data:{type:"value"},transform:{type:"array"},style:{type:"object"},animate:{type:"object"},coordinate:{type:"object"},interaction:{type:"object"},label:{type:"array",key:"labels"},axis:{type:"object"},legend:{type:"object"},slider:{type:"object"},scrollbar:{type:"object"},state:{type:"object"},layout:{type:"object"},theme:{type:"object"},title:{type:"value"}},BJ=Object.assign(Object.assign({},Bq),{tooltip:{type:"mix"},viewStyle:{type:"object"}}),BZ=Object.assign(Object.assign({},Bq),{labelTransform:{type:"array"}}),B0=class extends BR{changeData(t){var e;let n=this.getRoot();if(n)return this.attr("data",t),(null==(e=this.children)?void 0:e.length)&&this.children.forEach(e=>{e.attr("data",t)}),null==n?void 0:n.render()}getView(){let{views:t}=this.getRoot().getContext();if(null==t?void 0:t.length)return t.find(t=>t.key===this._key)}getScale(){var t;return null==(t=this.getView())?void 0:t.scale}getScaleByChannel(t){let e=this.getScale();if(e)return e[t]}getCoordinate(){var t;return null==(t=this.getView())?void 0:t.coordinate}getTheme(){var t;return null==(t=this.getView())?void 0:t.theme}getGroup(){let t=this._key;if(t)return this.getRoot().getContext().canvas.getRoot().getElementById(t)}show(){let t=this.getGroup();t&&(t.isVisible()||ym(t))}hide(){let t=this.getGroup();t&&t.isVisible()&&yv(t)}};B0=function(t,e,n,r){var i,A=arguments.length,a=A<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var o=t.length-1;o>=0;o--)(i=t[o])&&(a=(A<3?i(a):A>3?i(e,n,a):i(e,n))||a);return A>3&&a&&Object.defineProperty(e,n,a),a}([BY(BZ)],B0);let B1=class extends BR{changeData(t){let e=this.getRoot();if(e)return this.attr("data",t),null==e?void 0:e.render()}getMark(){var t;let e=null==(t=this.getRoot())?void 0:t.getView();if(!e)return;let{markState:n}=e,r=Array.from(n.keys()).find(t=>t.key===this.attr("key"));return n.get(r)}getScale(){var t;let e=null==(t=this.getRoot())?void 0:t.getView();if(e)return null==e?void 0:e.scale}getScaleByChannel(t){var e,n;let r=null==(e=this.getRoot())?void 0:e.getView();if(r)return null==(n=null==r?void 0:r.scale)?void 0:n[t]}getGroup(){let t=this.attr("key");if(t)return this.getRoot().getContext().canvas.getRoot().getElementById(t)}};B1=function(t,e,n,r){var i,A=arguments.length,a=A<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var o=t.length-1;o>=0;o--)(i=t[o])&&(a=(A<3?i(a):A>3?i(e,n,a):i(e,n))||a);return A>3&&a&&Object.defineProperty(e,n,a),a}([BY(BJ)],B1);var B2=function(t,e,n,r){var i,A=arguments.length,a=A<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var o=t.length-1;o>=0;o--)(i=t[o])&&(a=(A<3?i(a):A>3?i(e,n,a):i(e,n))||a);return A>3&&a&&Object.defineProperty(e,n,a),a},B4=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n},B5=Object.prototype.hasOwnProperty;let B3=function(t,e){if(null===t||!cx(t))return{};var n={};return h2(e,function(e){B5.call(t,e)&&(n[e]=t[e])}),n};function B6(t){t.x0=Math.round(t.x0),t.y0=Math.round(t.y0),t.x1=Math.round(t.x1),t.y1=Math.round(t.y1)}function B8(t,e,n,r,i){for(var A,a=t.children,o=-1,s=a.length,l=t.value&&(r-e)/t.value;++o=0;)e+=n[r].value;else e=1;t.value=e}function B7(t,e){t instanceof Map?(t=[void 0,t],void 0===e&&(e=we)):void 0===e&&(e=wt);for(var n,r,i,A,a,o=new wi(t),s=[o];n=s.pop();)if((i=e(n.data))&&(a=(i=Array.from(i)).length))for(n.children=i,A=a-1;A>=0;--A)s.push(r=i[A]=new wi(i[A])),r.parent=n,r.depth=n.depth+1;return o.eachBefore(wr)}function wt(t){return t.children}function we(t){return Array.isArray(t)?t[1]:null}function wn(t){void 0!==t.data.value&&(t.value=t.data.value),t.data=t.data.data}function wr(t){var e=0;do t.height=e;while((t=t.parent)&&t.height<++e)}function wi(t){this.data=t,this.depth=this.height=0,this.parent=null}function wA(t,e){for(var n in e)e.hasOwnProperty(n)&&"constructor"!==n&&void 0!==e[n]&&(t[n]=e[n])}function wa(t,e,n,r){return e&&wA(t,e),n&&wA(t,n),r&&wA(t,r),t}wi.prototype=B7.prototype={constructor:wi,count:function(){return this.eachAfter(B9)},each:function(t,e){let n=-1;for(let r of this)t.call(e,r,++n,this);return this},eachAfter:function(t,e){for(var n,r,i,A=this,a=[A],o=[],s=-1;A=a.pop();)if(o.push(A),n=A.children)for(r=0,i=n.length;r=0;--r)A.push(n[r]);return this},find:function(t,e){let n=-1;for(let r of this)if(t.call(e,r,++n,this))return r},sum:function(t){return this.eachAfter(function(e){for(var n=+t(e.data)||0,r=e.children,i=r&&r.length;--i>=0;)n+=r[i].value;e.value=n})},sort:function(t){return this.eachBefore(function(e){e.children&&e.children.sort(t)})},path:function(t){for(var e=this,n=function(t,e){if(t===e)return t;var n=t.ancestors(),r=e.ancestors(),i=null;for(t=n.pop(),e=r.pop();t===e;)i=t,t=n.pop(),e=r.pop();return i}(e,t),r=[e];e!==n;)r.push(e=e.parent);for(var i=r.length;t!==n;)r.splice(i,0,t),t=t.parent;return r},ancestors:function(){for(var t=this,e=[t];t=t.parent;)e.push(t);return e},descendants:function(){return Array.from(this)},leaves:function(){var t=[];return this.eachBefore(function(e){e.children||t.push(e)}),t},links:function(){var t=this,e=[];return t.each(function(n){n!==t&&e.push({source:n.parent,target:n})}),e},copy:function(){return B7(this).eachBefore(wn)},[Symbol.iterator]:function*(){var t,e,n,r,i=this,A=[i];do for(t=A.reverse(),A=[];i=t.pop();)if(yield i,e=i.children)for(n=0,r=e.length;ne.value-t.value,as:["x","y"],ignoreParentValue:!0},ws="childNodeCount",wl="Invalid field: it must be a string!";var wc=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let wu="sunburst",wf="markType",wh="path",wd="ancestor-node",wp={id:wu,encode:{x:"x",y:"y",key:wh,color:wd,value:"value"},axis:{x:!1,y:!1},style:{[wf]:wu,stroke:"#fff",lineWidth:.5,fillOpacity:"fillOpacity",[ws]:ws,depth:"depth"},state:{active:{zIndex:2,stroke:"#000"},inactive:{zIndex:1,stroke:"#fff"}},legend:!1,interaction:{drillDown:!0},coordinate:{type:"polar",innerRadius:.2}},wg=t=>{let{encode:e,data:n=[]}=t,r=wc(t,["encode","data"]),i=Object.assign(Object.assign({},r.coordinate),{innerRadius:Math.max(cf(r,["coordinate","innerRadius"],.2),1e-5)}),A=Object.assign(Object.assign({},wp.encode),e),{value:a}=A;return[cC({},wp,Object.assign(Object.assign({type:"rect",data:function(t){let{data:e,encode:n}=t,{color:r,value:i}=n,A=function(t,e){let n,r=(e=wa({},wo,e)).as;if(!nn(r)||2!==r.length)throw TypeError('Invalid as: it must be an array with 2 strings (e.g. [ "x", "y" ])!');try{n=function(t){let{field:e,fields:n}=t;if(eX(e))return e;if(nn(e))return console.warn(wl),e[0];if(console.warn(`${wl} will try to get fields instead.`),eX(n))return n;if(nn(n)&&n.length)return n[0];throw TypeError(wl)}(e)}catch(t){console.warn(t)}let i=(function(){var t=1,e=1,n=0,r=!1;function i(i){var A,a=i.height+1;return i.x0=i.y0=n,i.x1=t,i.y1=e/a,i.eachBefore((A=e,function(t){t.children&&B8(t,t.x0,A*(t.depth+1)/a,t.x1,A*(t.depth+2)/a);var e=t.x0,r=t.y0,i=t.x1-n,o=t.y1-n;ipd(t.children)?e.ignoreParentValue?0:t[n]-h4(t.children,(t,e)=>t+e[n],0):t[n]).sort(e.sort)),A=r[0],a=r[1];i.each(t=>{var e,n;t[A]=[t.x0,t.x1,t.x1,t.x0],t[a]=[t.y1,t.y1,t.y0,t.y0],t.name=t.name||(null==(e=t.data)?void 0:e.name)||(null==(n=t.data)?void 0:n.label),t.data.name=t.name,["x0","x1","y0","y1"].forEach(e=>{-1===r.indexOf(e)&&delete t[e]})});let o=[];if(i&&i.each){let t,e;i.each(n=>{var r,i;n.parent!==t?(t=n.parent,e=0):e+=1;let A=gV(((null==(r=n.ancestors)?void 0:r.call(n))||[]).map(t=>o.find(e=>e.name===t.name)||t),({depth:t})=>t>0&&t{o.push(t)});return o}(e,{field:i,type:"hierarchy.partition",as:["x","y"]}),a=[];return A.forEach(t=>{var e,n,A,o;if(0===t.depth)return null;let s=t.data.name,l=[s],c=Object.assign({},t);for(;c.depth>1;)s=`${null==(e=c.parent.data)?void 0:e.name} / ${s}`,l.unshift(null==(n=c.parent.data)?void 0:n.name),c=c.parent;let u=Object.assign(Object.assign(Object.assign({},B3(t.data,[i])),{[wh]:s,[wd]:c.data.name}),t);r&&r!==wd&&(u[r]=t.data[r]||(null==(o=null==(A=t.parent)?void 0:A.data)?void 0:o[r])),a.push(u)}),a.map(t=>{let e=t.x.slice(0,2),n=[t.y[2],t.y[0]];return e[0]===e[1]&&(n[0]=n[1]=(t.y[2]+t.y[0])/2),Object.assign(Object.assign({},t),{x:e,y:n,fillOpacity:Math.pow(.85,t.depth)})})}({encode:A,data:n}),encode:A,tooltip:{title:"path",items:[t=>({name:a,value:t[a]})]}},r),{coordinate:i}))]};wg.props={};var wy=Object.keys?function(t){return Object.keys(t)}:function(t){var e=[];return h2(t,function(n,r){ny(t)&&"prototype"===r||e.push(r)}),e};let wv={rootText:"root",style:{fill:"rgba(0, 0, 0, 0.85)",fontSize:12,y:1},active:{fill:"rgba(0, 0, 0, 0.5)"}},wm=()=>[["cartesian"]];wm.props={};let wb=()=>[["transpose"],["translate",.5,.5],["reflect.x"],["translate",-.5,-.5]];wb.props={transform:!0};let wB=t=>{let{startAngle:e,endAngle:n,innerRadius:r,outerRadius:i}=((t={})=>Object.assign(Object.assign({},{startAngle:-Math.PI/2,endAngle:3*Math.PI/2,innerRadius:0,outerRadius:1}),t))(t);return[...wb(),...uP({startAngle:e,endAngle:n,innerRadius:r,outerRadius:i})]};wB.props={};let ww=()=>[["parallel",0,1,0,1]];ww.props={};let wx=({focusX:t=0,focusY:e=0,distortionX:n=2,distortionY:r=2,visual:i=!1})=>[["fisheye",t,e,n,r,i]];wx.props={transform:!0};let wC=t=>{let{startAngle:e=-Math.PI/2,endAngle:n=3*Math.PI/2,innerRadius:r=0,outerRadius:i=1}=t;return[...ww(),...uP({startAngle:e,endAngle:n,innerRadius:r,outerRadius:i})]};wC.props={};let wO=({startAngle:t=0,endAngle:e=6*Math.PI,innerRadius:n=0,outerRadius:r=1})=>[["translate",.5,.5],["reflect.y"],["translate",-.5,-.5],["helix",t,e,n,r]];wO.props={};let wE=({value:t})=>e=>e.map(()=>t);wE.props={};let wk=({value:t})=>e=>e.map(e=>e[t]);wk.props={};let wF=({value:t})=>e=>e.map(t);wF.props={};let wQ=({value:t})=>()=>t;function wM(t,e){if(null!==t)return{type:"column",value:t,field:e}}function wU(t,e){return Object.assign(Object.assign({},wM(t,e)),{inferred:!0})}function wS(t,e){if(null!==t)return{type:"column",value:t,field:e,visual:!0}}function wI(t,e){let n=[];for(let r of t)n[r]=e;return n}function wT(t,e){let n=t[e];if(!n)return[null,null];let{value:r,field:i=null}=n;return[r,i]}function wL(t,...e){for(let n of e)if("string"!=typeof n)return[n,null];else{let[e,r]=wT(t,n);if(null!==e)return[e,r]}return[null,null]}function w_(t){return!(t instanceof Date)&&"object"==typeof t}wQ.props={};let wP=()=>(t,e)=>{let{encode:n}=e,{y1:r}=n;return void 0!==r?[t,e]:[t,cC({},e,{encode:{y1:wU(wI(t,0))}})]};wP.props={};let wH=()=>(t,e)=>{let{encode:n}=e,{x:r}=n;return void 0!==r?[t,e]:[t,cC({},e,{encode:{x:wU(wI(t,0))},scale:{x:{guide:null}}})]};wH.props={};let wj=(t,e)=>yd(Object.assign({colorAttribute:"fill"},t),e);wj.props=Object.assign(Object.assign({},yd.props),{defaultMarker:"square"});let wN=(t,e)=>yd(Object.assign({colorAttribute:"stroke"},t),e);function wD(){}function wR(t){this._context=t}function wK(t){return new wR(t)}wN.props=Object.assign(Object.assign({},yd.props),{defaultMarker:"hollowSquare"}),wR.prototype={areaStart:wD,areaEnd:wD,lineStart:function(){this._point=0},lineEnd:function(){this._point&&this._context.closePath()},point:function(t,e){t*=1,e*=1,this._point?this._context.lineTo(t,e):(this._point=1,this._context.moveTo(t,e))}};var wz=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function wG(t,e,n,r,i){let[A,a,o,s]=t;if(uV(r))return i?[[n?n[1][0]:A[0],A[1]],a,o,[n?n[2][0]:s[0],s[1]]]:[A,[e?e[0][0]:a[0],a[1]],[e?e[3][0]:o[0],o[1]],s];return i?[[A[0],n?n[1][1]:A[1]],a,o,[s[0],n?n[2][1]:s[1]]]:[A,[a[0],e?e[0][1]:a[1]],[o[0],e?e[3][1]:o[1]],s]}let wV=(t,e)=>e/Math.tan(t/2),wW=(t,e)=>{let{adjustPoints:n=wG,radius:r,radiusTopLeft:i=r,radiusTopRight:A=r,radiusBottomRight:a=r,radiusBottomLeft:o=r,innerRadius:s=0,innerRadiusTopLeft:l=s,innerRadiusTopRight:c=s,innerRadiusBottomRight:u=s,innerRadiusBottomLeft:f=s,first:h=!0,last:d=!0}=t,p=wz(t,["adjustPoints","radius","radiusTopLeft","radiusTopRight","radiusBottomRight","radiusBottomLeft","innerRadius","innerRadiusTopLeft","innerRadiusTopRight","innerRadiusBottomRight","innerRadiusBottomLeft","first","last"]),{coordinate:g,document:y}=e;return(t,e,r,s)=>{let{index:v}=e,{color:b}=r,B=wz(r,["color"]),w=n(t,s[v+1],s[v-1],g,p.reverse),[x,C,O,E]=uV(g)?pV(w):w,{color:k=b,opacity:F}=e,Q=[h&&null!=i?i:l,h&&null!=A?A:c,d&&null!=a?a:u,d&&null!=o?o:f],M=Q.find(t=>t>0)?function(t,e){let[n,r,i,A]=t,[a,o,s,l]=e,c=r[0]-n[0]>i[0]-A[0],u=Math.atan2(Math.abs(r[1]-i[1]),Math.abs(r[0]-i[0])),f=c?[wV(u,a),wV(u,o),s,l]:[a,o,wV(u,s),wV(u,l)],h=c?1:-1,d=f.map(t=>({x:Math.cos(u)*t*h,y:Math.sin(u)*t}));return`M${n[0]+f[0]} ${n[1]} L${r[0]-f[1]} ${r[1]} Q${r[0]} ${r[1]} ${r[0]-d[1].x} ${r[1]+d[1].y} L${i[0]+d[2].x} ${i[1]-d[2].y} Q${i[0]} ${i[1]} ${i[0]-f[2]} ${i[1]} L${A[0]+f[3]} ${A[1]} Q${A[0]} ${A[1]} ${A[0]-d[3].x} ${A[1]-d[3].y} L${n[0]+d[0].x} ${n[1]+d[0].y} Q${n[0]} ${n[1]} ${n[0]+f[0]} ${n[1]} Z`}([x,C,O,E],Q):ge().curve(wK)([x,C,O,E]);return c5(y.createElement("path",{})).call(pK,B).style("d",M).style("fill",k).style("fillOpacity",F).call(pK,p).node()}};function wX(t,e,n,r,i){let[A,a,o,s]=t;if(uV(r))return i?[[n?n[1][0]:(A[0]+s[0])/2,A[1]],a,o,[n?n[2][0]:(A[0]+s[0])/2,s[1]]]:[A,[e?e[0][0]:(a[0]+o[0])/2,a[1]],[e?e[3][0]:(a[0]+o[0])/2,o[1]],s];return i?[[A[0],n?n[1][1]:(A[1]+s[1])/2],a,o,[s[0],n?n[2][1]:(A[1]+s[1])/2]]:[A,[a[0],e?e[0][1]:(a[1]+o[1])/2],[o[0],e?e[3][1]:(a[1]+o[1])/2],s]}wW.props={defaultMarker:"square"};let wY=(t,e)=>wW(Object.assign({adjustPoints:wX},t),e);function w$(t){return Math.abs(t)>10?String(t):t.toString().padStart(2,"0")}wY.props={defaultMarker:"square"};let wq=(t={})=>{let{channel:e="x"}=t;return(t,n)=>{let{encode:r}=n,{tooltip:i}=n;if(c4(i))return[t,n];let{title:A}=i;if(void 0!==A)return[t,n];let a=Object.keys(r).filter(t=>t.startsWith(e)).filter(t=>!r[t].inferred).map(t=>wT(r,t)).filter(([t])=>t).map(t=>t[0]);if(0===a.length)return[t,n];let o=[];for(let e of t)o[e]={value:a.map(t=>t[e]instanceof Date?function(t){let e=t.getFullYear(),n=w$(t.getMonth()+1),r=w$(t.getDate()),i=`${e}-${n}-${r}`,A=t.getHours(),a=t.getMinutes(),o=t.getSeconds();return A||a||o?`${i} ${w$(A)}:${w$(a)}:${w$(o)}`:i}(t[e]):t[e]).join(", ")};return[t,cC({},n,{tooltip:{title:o}})]}};wq.props={};let wJ=t=>{let{channel:e}=t;return(t,n)=>{let{encode:r,tooltip:i}=n;if(c4(i))return[t,n];let{items:A=[]}=i;return!A||A.length>0?[t,n]:[t,cC({},n,{tooltip:{items:(Array.isArray(e)?e:[e]).flatMap(t=>Object.keys(r).filter(e=>e.startsWith(t)).map(t=>{let{field:e,value:n,inferred:i=!1,aggregate:A}=r[t];return i?null:A&&n?{channel:t}:e?{field:e}:n?{channel:t}:null}).filter(t=>null!==t))}})]}};wJ.props={};var wZ=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let w0=()=>(t,e)=>{let{encode:n}=e,{key:r}=n,i=wZ(n,["key"]);if(void 0!==r)return[t,e];let A=Object.values(i).map(({value:t})=>t),a=t.map(t=>A.filter(Array.isArray).map(e=>e[t]).join("-"));return[t,cC({},e,{encode:{key:wM(a)}})]};function w1(t={}){let{shapes:e}=t;return[{name:"color"},{name:"opacity"},{name:"shape",range:e},{name:"enterType"},{name:"enterDelay",scaleKey:"enter"},{name:"enterDuration",scaleKey:"enter"},{name:"enterEasing"},{name:"key",scale:"identity"},{name:"groupKey",scale:"identity"},{name:"label",scale:"identity"}]}function w2(t={}){return[...w1(t),{name:"title",scale:"identity"}]}function w4(){return[{type:wq,channel:"color"},{type:wJ,channel:["x","y"]}]}function w5(){return[{type:wq,channel:"x"},{type:wJ,channel:["y"]}]}function w3(t={}){return w1(t)}function w6(){return[{type:w0}]}w0.props={};function w8(t,e){return t.getBandWidth(t.invert(e))}function w9(t,e,n={}){let{x:r,y:i,series:A}=e,{x:a,y:o,series:s}=t,{style:{bandOffset:l=.5*!s,bandOffsetX:c=l,bandOffsetY:u=l}={}}=n,f=!!(null==a?void 0:a.getBandWidth),h=!!(null==o?void 0:o.getBandWidth),d=!!(null==s?void 0:s.getBandWidth);return f||h?(t,e)=>{let n=f?w8(a,r[e]):0,l=h?w8(o,i[e]):0,p=d&&A?(w8(s,A[e])/2+ +A[e])*n:0,[g,y]=t;return[g+c*n+p,y+u*l]}:t=>t}function w7(t){return parseFloat(t)/100}function xt(t,e,n,r){let{x:i,y:A}=n,{innerWidth:a,innerHeight:o}=r.getOptions(),s=Array.from(t,t=>{let e=i[t],n=A[t];return[["string"==typeof e?w7(e)*a:+e,"string"==typeof n?w7(n)*o:+n]]});return[t,s]}function xe(t){return"function"==typeof t?t:e=>e[t]}function xn(t,e){return Array.from(t,xe(e))}function xr(t,e){let n=Array.isArray(t)?{links:t}:t&&"object"==typeof t?{links:t.links||[],nodes:t.nodes}:{links:[]},{source:r=t=>t.source,target:i=t=>t.target,value:A=t=>t.value}=e,{links:a,nodes:o}=n;if(!a.length)return{links:[],nodes:o||[]};let s=xn(a,r),l=xn(a,i),c=xn(a,A);return{links:a.map((t,e)=>({target:l[e],source:s[e],value:c[e]})),nodes:o||Array.from(new Set([...s,...l]),t=>({key:t}))}}function xi(t,e){return t.getBandWidth(t.invert(e))}let xA={rect:wj,hollow:wN,funnel:wW,pyramid:wY},xa=()=>(t,e,n,r)=>{let{x:i,y1:A,series:a,size:o}=n,{y:s}=n;s=s.map(t=>void 0!==t?t:1);let l=e.x,c=e.series,[u]=r.getSize(),f=o?o.map(t=>t/u):null,h=o?(t,e,n)=>{let r=t+e/2,i=f[n];return[r-i/2,r+i/2]}:(t,e,n)=>[t,t+e],d=Array.from(t,t=>{let e=xi(l,i[t]),n=c?xi(c,null==a?void 0:a[t]):1,o=(+(null==a?void 0:a[t])||0)*e,[u,f]=h(+i[t]+o,e*n,t),d=+s[t],p=+A[t];return[[u,d],[f,d],[f,p],[u,p]].map(t=>r.map(t))});return[t,d]};xa.props={defaultShape:"rect",defaultLabelShape:"label",composite:!1,shape:xA,channels:[...w2({shapes:Object.keys(xA)}),{name:"x",scale:"band",required:!0},{name:"y",required:!0},{name:"series",scale:"band"},{name:"size"}],preInference:[...w6(),{type:wP},{type:wH}],postInference:[...w5()],interaction:{shareTooltip:!0}};let xo={rect:wj,hollow:wN},xs=()=>(t,e,n,r)=>{let{x:i,x1:A,y:a,y1:o}=n,s=Array.from(t,t=>[[+i[t],+a[t]],[+A[t],+a[t]],[+A[t],+o[t]],[+i[t],+o[t]]].map(t=>r.map(t)));return[t,s]};xs.props={defaultShape:"rect",defaultLabelShape:"label",composite:!1,shape:xo,channels:[...w2({shapes:Object.keys(xo)}),{name:"x",required:!0},{name:"y",required:!0}],preInference:[...w6(),{type:wP}],postInference:[...w5()],interaction:{shareTooltip:!0}};var xl=xu(p1);function xc(t){this._curve=t}function xu(t){function e(e){return new xc(t(e))}return e._curve=t,e}function xf(t){var e=t.curve;return t.angle=t.x,delete t.x,t.radius=t.y,delete t.y,t.curve=function(t){return arguments.length?e(xu(t)):e()._curve},t}xc.prototype={areaStart:function(){this._curve.areaStart()},areaEnd:function(){this._curve.areaEnd()},lineStart:function(){this._curve.lineStart()},lineEnd:function(){this._curve.lineEnd()},point:function(t,e){this._curve.point(e*Math.sin(t),-(e*Math.cos(t)))}};var xh=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let xd=gn(t=>{let{d1:e,d2:n,style1:r,style2:i}=t.attributes,A=t.ownerDocument;c5(t).maybeAppend("line",()=>A.createElement("path",{})).style("d",e).call(pK,r),c5(t).maybeAppend("line1",()=>A.createElement("path",{})).style("d",n).call(pK,i)}),xp=(t,e)=>{let{curve:n,gradient:r=!1,gradientColor:i="between",defined:A=t=>!Number.isNaN(t)&&null!=t,connect:a=!1}=t,o=xh(t,["curve","gradient","gradientColor","defined","connect"]),{coordinate:s,document:l}=e;return(t,e,c)=>{let u,{color:f,lineWidth:h}=c,d=xh(c,["color","lineWidth"]),{color:p=f,size:g=h,seriesColor:y,seriesX:v,seriesY:b}=e,B=pY(s,e),w=uV(s),x=r&&y?pG(y,v,b,r,i,w):p,C=Object.assign(Object.assign(Object.assign(Object.assign(Object.assign({},d),x&&{stroke:x}),g&&{lineWidth:g}),B&&{transform:B}),o);if(uW(s)){let t=s.getCenter();u=e=>xf(ge().curve(xl)).angle((n,r)=>pj(p_(e[r],t))).radius((n,r)=>pP(e[r],t)).defined(([t,e])=>A(t)&&A(e)).curve(n)(e)}else u=ge().x(t=>t[0]).y(t=>t[1]).defined(([t,e])=>A(t)&&A(e)).curve(n);let[O,E]=function(t,e){let n=[],r=[],i=!1,A=null;for(let a of t)e(a[0])&&e(a[1])?(n.push(a),i&&(i=!1,r.push([A,a])),A=a):i=!0;return[n,r]}(t,A),k=cJ(C,"connect"),F=!!E.length;return F&&(!a||Object.keys(k).length)?F&&!a?c5(l.createElement("path",{})).style("d",u(t)).call(pK,C).node():c5(new xd).style("style1",Object.assign(Object.assign({},C),k)).style("style2",C).style("d1",E.map(u).join(",")).style("d2",u(t)).node():c5(l.createElement("path",{})).style("d",u(O)||[]).call(pK,C).node()}};xp.props={defaultMarker:"smooth",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let xg=(t,e)=>{let{coordinate:n}=e;return(...r)=>xp(Object.assign({curve:uW(n)?wK:p1},t),e)(...r)};function xy(t,e,n){t._context.bezierCurveTo(t._x1+t._k*(t._x2-t._x0),t._y1+t._k*(t._y2-t._y0),t._x2+t._k*(t._x1-e),t._y2+t._k*(t._y1-n),t._x2,t._y2)}function xv(t,e){this._context=t,this._k=(1-e)/6}function xm(t,e){this._context=t,this._k=(1-e)/6}function xb(t,e,n){var r=t._x1,i=t._y1,A=t._x2,a=t._y2;if(t._l01_a>1e-12){var o=2*t._l01_2a+3*t._l01_a*t._l12_a+t._l12_2a,s=3*t._l01_a*(t._l01_a+t._l12_a);r=(r*o-t._x0*t._l12_2a+t._x2*t._l01_2a)/s,i=(i*o-t._y0*t._l12_2a+t._y2*t._l01_2a)/s}if(t._l23_a>1e-12){var l=2*t._l23_2a+3*t._l23_a*t._l12_a+t._l12_2a,c=3*t._l23_a*(t._l23_a+t._l12_a);A=(A*l+t._x1*t._l23_2a-e*t._l12_2a)/c,a=(a*l+t._y1*t._l23_2a-n*t._l12_2a)/c}t._context.bezierCurveTo(r,i,A,a,t._x2,t._y2)}function xB(t,e){this._context=t,this._alpha=e}function xw(t,e){this._context=t,this._alpha=e}xg.props=Object.assign(Object.assign({},xp.props),{defaultMarker:"line"}),xv.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:xy(this,this._x1,this._y1)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){switch(t*=1,e*=1,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2,this._x1=t,this._y1=e;break;case 2:this._point=3;default:xy(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},function t(e){function n(t){return new xv(t,e)}return n.tension=function(e){return t(+e)},n}(0),xm.prototype={areaStart:wD,areaEnd:wD,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){switch(t*=1,e*=1,this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:xy(this,t,e)}this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},function t(e){function n(t){return new xm(t,e)}return n.tension=function(e){return t(+e)},n}(0),xB.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._x2=this._y0=this._y1=this._y2=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x2,this._y2);break;case 3:this.point(this._x2,this._y2)}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){if(t*=1,e*=1,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3;default:xb(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}},function t(e){function n(t){return e?new xB(t,e):new xv(t,0)}return n.alpha=function(e){return t(+e)},n}(.5),xw.prototype={areaStart:wD,areaEnd:wD,lineStart:function(){this._x0=this._x1=this._x2=this._x3=this._x4=this._x5=this._y0=this._y1=this._y2=this._y3=this._y4=this._y5=NaN,this._l01_a=this._l12_a=this._l23_a=this._l01_2a=this._l12_2a=this._l23_2a=this._point=0},lineEnd:function(){switch(this._point){case 1:this._context.moveTo(this._x3,this._y3),this._context.closePath();break;case 2:this._context.lineTo(this._x3,this._y3),this._context.closePath();break;case 3:this.point(this._x3,this._y3),this.point(this._x4,this._y4),this.point(this._x5,this._y5)}},point:function(t,e){if(t*=1,e*=1,this._point){var n=this._x2-t,r=this._y2-e;this._l23_a=Math.sqrt(this._l23_2a=Math.pow(n*n+r*r,this._alpha))}switch(this._point){case 0:this._point=1,this._x3=t,this._y3=e;break;case 1:this._point=2,this._context.moveTo(this._x4=t,this._y4=e);break;case 2:this._point=3,this._x5=t,this._y5=e;break;default:xb(this,t,e)}this._l01_a=this._l12_a,this._l12_a=this._l23_a,this._l01_2a=this._l12_2a,this._l12_2a=this._l23_2a,this._x0=this._x1,this._x1=this._x2,this._x2=t,this._y0=this._y1,this._y1=this._y2,this._y2=e}};let xx=function t(e){function n(t){return e?new xw(t,e):new xm(t,0)}return n.alpha=function(e){return t(+e)},n}(.5);function xC(t,e,n){var r=t._x1-t._x0,i=e-t._x1,A=(t._y1-t._y0)/(r||i<0&&-0),a=(n-t._y1)/(i||r<0&&-0);return((A<0?-1:1)+(a<0?-1:1))*Math.min(Math.abs(A),Math.abs(a),.5*Math.abs((A*i+a*r)/(r+i)))||0}function xO(t,e){var n=t._x1-t._x0;return n?(3*(t._y1-t._y0)/n-e)/2:e}function xE(t,e,n){var r=t._x0,i=t._y0,A=t._x1,a=t._y1,o=(A-r)/3;t._context.bezierCurveTo(r+o,i+o*e,A-o,a-o*n,A,a)}function xk(t){this._context=t}function xF(t){this._context=new xQ(t)}function xQ(t){this._context=t}function xM(t){return new xk(t)}function xU(t){return new xF(t)}xk.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x0=this._x1=this._y0=this._y1=this._t0=NaN,this._point=0},lineEnd:function(){switch(this._point){case 2:this._context.lineTo(this._x1,this._y1);break;case 3:xE(this,this._t0,xO(this,this._t0))}(this._line||0!==this._line&&1===this._point)&&this._context.closePath(),this._line=1-this._line},point:function(t,e){var n=NaN;if(e*=1,(t*=1)!==this._x1||e!==this._y1){switch(this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;break;case 2:this._point=3,xE(this,xO(this,n=xC(this,t,e)),n);break;default:xE(this,this._t0,n=xC(this,t,e))}this._x0=this._x1,this._x1=t,this._y0=this._y1,this._y1=e,this._t0=n}}},(xF.prototype=Object.create(xk.prototype)).point=function(t,e){xk.prototype.point.call(this,e,t)},xQ.prototype={moveTo:function(t,e){this._context.moveTo(e,t)},closePath:function(){this._context.closePath()},lineTo:function(t,e){this._context.lineTo(e,t)},bezierCurveTo:function(t,e,n,r,i,A){this._context.bezierCurveTo(e,t,r,n,A,i)}};var xS=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let xI=(t,e)=>{let n=xS(t,[]),{coordinate:r}=e;return(...t)=>xp(Object.assign({curve:uW(r)?xx:uV(r)?xU:xM},n),e)(...t)};function xT(t,e){this._context=t,this._t=e}function xL(t){return new xT(t,.5)}function x_(t){return new xT(t,0)}function xP(t){return new xT(t,1)}xI.props=Object.assign(Object.assign({},xp.props),{defaultMarker:"smooth"}),xT.prototype={areaStart:function(){this._line=0},areaEnd:function(){this._line=NaN},lineStart:function(){this._x=this._y=NaN,this._point=0},lineEnd:function(){0=0&&(this._t=1-this._t,this._line=1-this._line)},point:function(t,e){switch(t*=1,e*=1,this._point){case 0:this._point=1,this._line?this._context.lineTo(t,e):this._context.moveTo(t,e);break;case 1:this._point=2;default:if(this._t<=0)this._context.lineTo(this._x,e),this._context.lineTo(t,e);else{var n=this._x*(1-this._t)+t*this._t;this._context.lineTo(n,this._y),this._context.lineTo(n,e)}}this._x=t,this._y=e}};let xH=(t,e)=>xp(Object.assign({curve:xP},t),e);xH.props=Object.assign(Object.assign({},xp.props),{defaultMarker:"hv"});let xj=(t,e)=>xp(Object.assign({curve:x_},t),e);xj.props=Object.assign(Object.assign({},xp.props),{defaultMarker:"vh"});let xN=(t,e)=>xp(Object.assign({curve:xL},t),e);xN.props=Object.assign(Object.assign({},xp.props),{defaultMarker:"hvh"});var xD=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let xR=(t,e)=>{let{document:n}=e;return(e,r,i)=>{let{seriesSize:A,color:a}=r,{color:o}=i,s=xD(i,["color"]),l=p8();for(let t=0;t(t,e)=>{let{style:n={},encode:r}=e,{series:i}=r,{gradient:A}=n;return!A||i?[t,e]:[t,cC({},e,{encode:{series:wS(wI(t,void 0))}})]};xK.props={};let xz=()=>(t,e)=>{let{encode:n}=e,{series:r,color:i}=n;if(void 0!==r||void 0===i)return[t,e];let[A,a]=wT(n,"color");return[t,cC({},e,{encode:{series:wM(A,a)}})]};xz.props={};let xG={line:xg,smooth:xI,hv:xH,vh:xj,hvh:xN,trail:xR},xV=()=>(t,e,n,r)=>(u$(r)?(t,e,n,r)=>{let i=Object.entries(n).filter(([t])=>t.startsWith("position")).map(([,t])=>t);if(0===i.length)throw Error("Missing encode for position channel.");uW(r)&&i.push(i[0]);let A=Array.from(t,t=>{let e=i.map(e=>+e[t]),n=r.map(e),A=[];for(let t=0;t{var i,A;let{series:a,x:o,y:s}=n,{x:l,y:c}=e;if(void 0===o||void 0===s)throw Error("Missing encode for x or y channel.");let u=a?Array.from(cy(t,t=>a[t]).values()):[t],f=u.map(t=>t[0]).filter(t=>void 0!==t),h=((null==(i=null==l?void 0:l.getBandWidth)?void 0:i.call(l))||0)/2,d=((null==(A=null==c?void 0:c.getBandWidth)?void 0:A.call(c))||0)/2;return[f,Array.from(u,t=>t.map(t=>r.map([+o[t]+h,+s[t]+d]))),u]})(t,e,n,r);xV.props={defaultShape:"line",defaultLabelShape:"label",composite:!1,shape:xG,channels:[...w2({shapes:Object.keys(xG)}),{name:"x"},{name:"y"},{name:"position",independent:!0},{name:"size"},{name:"series",scale:"band"}],preInference:[...w6(),{type:xK},{type:xz}],postInference:[...w5(),{type:wq,channel:"color"},{type:wJ,channel:["position"]}],interaction:{shareTooltip:!0,seriesTooltip:!0,crosshairs:!0}};var xW=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function xX(t,e,n,r){if(1===e.length)return;let{size:i}=n;if("fixed"===t)return i;if("normal"===t||uq(r)){let[[t,n],[r,i]]=e;return Math.max(0,(Math.abs((r-t)/2)+Math.abs((i-n)/2))/2)}return i}let xY=(t,e)=>{let{colorAttribute:n,symbol:r,mode:i="auto"}=t,A=xW(t,["colorAttribute","symbol","mode"]),a=lm.get(pq(r))||lm.get("point"),{coordinate:o,document:s}=e;return(e,r,l)=>{let{lineWidth:c,color:u}=l,f=A.stroke?c||1:c,{color:h=u,transform:d,opacity:p}=r,[g,y]=p$(e),v=xX(i,e,r,o)||A.r||l.r;return c5(s.createElement("path",{})).call(pK,l).style("fill","transparent").style("d",a(g,y,v)).style("lineWidth",f).style("transform",d).style("transformOrigin",`${g-v} ${y-v}`).style("stroke",h).style(pX(t),p).style(n,h).call(pK,A).node()}};xY.props={defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let x$=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"point"},t),e);x$.props=Object.assign({defaultMarker:"hollowPoint"},xY.props);let xq=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"diamond"},t),e);xq.props=Object.assign({defaultMarker:"hollowDiamond"},xY.props);let xJ=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"hexagon"},t),e);xJ.props=Object.assign({defaultMarker:"hollowHexagon"},xY.props);let xZ=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"square"},t),e);xZ.props=Object.assign({defaultMarker:"hollowSquare"},xY.props);let x0=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"triangle-down"},t),e);x0.props=Object.assign({defaultMarker:"hollowTriangleDown"},xY.props);let x1=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"triangle"},t),e);x1.props=Object.assign({defaultMarker:"hollowTriangle"},xY.props);let x2=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"bowtie"},t),e);x2.props=Object.assign({defaultMarker:"hollowBowtie"},xY.props);var x4=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let x5=(t,e)=>{let{colorAttribute:n,mode:r="auto"}=t,i=x4(t,["colorAttribute","mode"]),{coordinate:A,document:a}=e;return(e,o,s)=>{let{lineWidth:l,color:c}=s,u=i.stroke?l||1:l,{color:f=c,transform:h,opacity:d}=o,[p,g]=p$(e),y=xX(r,e,o,A)||i.r||s.r;return c5(a.createElement("circle",{})).call(pK,s).style("fill","transparent").style("cx",p).style("cy",g).style("r",y).style("lineWidth",u).style("transform",h).style("transformOrigin",`${p} ${g}`).style("stroke",f).style(pX(t),d).style(n,f).call(pK,i).node()}},x3=(t,e)=>x5(Object.assign({colorAttribute:"fill"},t),e);x3.props={defaultMarker:"circle",defaultEnterAnimation:"fadeIn",defaultExitAnimation:"fadeOut"};let x6=(t,e)=>x5(Object.assign({colorAttribute:"stroke"},t),e);x6.props=Object.assign({defaultMarker:"hollowPoint"},x3.props);let x8=(t,e)=>xY(Object.assign({colorAttribute:"fill",symbol:"point"},t),e);x8.props=Object.assign({defaultMarker:"point"},xY.props);let x9=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"plus"},t),e);x9.props=Object.assign({defaultMarker:"plus"},xY.props);let x7=(t,e)=>xY(Object.assign({colorAttribute:"fill",symbol:"diamond"},t),e);x7.props=Object.assign({defaultMarker:"diamond"},xY.props);let Ct=(t,e)=>xY(Object.assign({colorAttribute:"fill",symbol:"square"},t),e);Ct.props=Object.assign({defaultMarker:"square"},xY.props);let Ce=(t,e)=>xY(Object.assign({colorAttribute:"fill",symbol:"triangle"},t),e);Ce.props=Object.assign({defaultMarker:"triangle"},xY.props);let Cn=(t,e)=>xY(Object.assign({colorAttribute:"fill",symbol:"hexagon"},t),e);Cn.props=Object.assign({defaultMarker:"hexagon"},xY.props);let Cr=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"cross"},t),e);Cr.props=Object.assign({defaultMarker:"cross"},xY.props);let Ci=(t,e)=>xY(Object.assign({colorAttribute:"fill",symbol:"bowtie"},t),e);Ci.props=Object.assign({defaultMarker:"bowtie"},xY.props);let CA=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"hyphen"},t),e);CA.props=Object.assign({defaultMarker:"hyphen"},xY.props);let Ca=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"line"},t),e);Ca.props=Object.assign({defaultMarker:"line"},xY.props);let Co=(t,e)=>xY(Object.assign({colorAttribute:"stroke",symbol:"tick"},t),e);Co.props=Object.assign({defaultMarker:"tick"},xY.props);let Cs=(t,e)=>xY(Object.assign({colorAttribute:"fill",symbol:"triangle-down"},t),e);Cs.props=Object.assign({defaultMarker:"triangleDown"},xY.props);let Cl=()=>(t,e)=>{let{encode:n}=e,{y:r}=n;return void 0!==r?[t,e]:[t,cC({},e,{encode:{y:wU(wI(t,0))},scale:{y:{guide:null}}})]};Cl.props={};let Cc=()=>(t,e)=>{let{encode:n}=e,{size:r}=n;return void 0!==r?[t,e]:[t,cC({},e,{encode:{size:wS(wI(t,3))}})]};Cc.props={};let Cu={hollow:x$,hollowDiamond:xq,hollowHexagon:xJ,hollowSquare:xZ,hollowTriangleDown:x0,hollowTriangle:x1,hollowBowtie:x2,hollowCircle:x6,point:x8,plus:x9,diamond:x7,square:Ct,triangle:Ce,hexagon:Cn,cross:Cr,bowtie:Ci,hyphen:CA,line:Ca,tick:Co,triangleDown:Cs,circle:x3},Cf=t=>(e,n,r,i)=>{let{x:A,y:a,x1:o,y1:s,size:l,dx:c,dy:u}=r,[f,h]=i.getSize(),d=w9(n,r,t),p=t=>{let e=+((null==c?void 0:c[t])||0),n=+((null==u?void 0:u[t])||0);return[(o?(+A[t]+ +o[t])/2:+A[t])+e,(s?(+a[t]+ +s[t])/2:+a[t])+n]},g=l?Array.from(e,t=>{let[e,n]=p(t),r=+l[t],A=r/f,a=r/h;return[i.map(d([e-A,n-a],t)),i.map(d([e+A,n+a],t))]}):Array.from(e,t=>[i.map(d(p(t),t))]);return[e,g]};Cf.props={defaultShape:"hollow",defaultLabelShape:"label",composite:!1,shape:Cu,channels:[...w2({shapes:Object.keys(Cu)}),{name:"x",required:!0},{name:"y",required:!0},{name:"series",scale:"band"},{name:"size",quantitative:"sqrt"},{name:"dx",scale:"identity"},{name:"dy",scale:"identity"}],preInference:[...w6(),{type:wH},{type:Cl}],postInference:[{type:Cc},...w4()]};let Ch=(t,e)=>{let{coordinate:n}=e;return(e,r,i)=>{let{color:A,text:a="",fontSize:o,rotate:s=0,transform:l=""}=r,c={text:String(a),stroke:A,fill:A,fontSize:o},[[u,f]]=e;return c5(new gi).style("x",u).style("y",f).call(pK,i).style("transform",`${l}rotate(${+s})`).style("coordCenter",n.getCenter()).call(pK,c).call(pK,t).node()}};Ch.props={defaultMarker:"point",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};var Cd=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Cp=gn(t=>{let e=t.attributes,{class:n,x:r,y:i,transform:A}=e,a=Cd(e,["class","x","y","transform"]),o=cJ(a,"marker"),{size:s=24}=o,l=()=>(function(t){let e=t/Math.sqrt(2),n=t*Math.sqrt(2),[r,i]=[-e,e-n],[A,a]=[0,0],[o,s]=[e,e-n];return[["M",r,i],["A",t,t,0,1,1,o,s],["L",A,a],["Z"]]})(s/2),[c,u]=function(t){let{min:e,max:n}=t.getLocalBounds();return[(e[0]+n[0])*.5,(e[1]+n[1])*.5]}(c5(t).maybeAppend("marker",()=>new d9({})).call(t=>t.node().update(Object.assign({symbol:l},o))).node());c5(t).maybeAppend("text","text").style("x",c).style("y",u).call(pK,a)}),Cg=(t,e)=>{let n=Cd(t,[]);return(t,e,r)=>{let{color:i}=r,A=Cd(r,["color"]),{color:a=i,text:o=""}=e,s={text:String(o),stroke:a,fill:a},[[l,c]]=t;return c5(new Cp).call(pK,A).style("transform",`translate(${l},${c})`).call(pK,s).call(pK,n).node()}};Cg.props={defaultMarker:"point",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let Cy=(t,e)=>{let{coordinate:n}=e;return(e,r,i)=>{let{color:A,text:a="",fontSize:o,rotate:s=0,transform:l=""}=r,c={text:String(a),stroke:A,fill:A,fontSize:o,textAlign:"center",textBaseline:"middle"},[[u,f]]=e;return c5(new oO).style("x",u).style("y",f).call(pK,i).style("transformOrigin","center center").style("transform",`${l}rotate(${s}deg)`).style("coordCenter",n.getCenter()).call(pK,c).call(pK,t).node()}};Cy.props={defaultMarker:"point",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let Cv=()=>(t,e)=>{let{data:n}=e;if(!Array.isArray(n)||n.some(w_))return[t,e];let r=Array.isArray(n[0])?n:[n],i=r.map(t=>t[0]),A=r.map(t=>t[1]);return[t,cC({},e,{encode:{x:wM(i),y:wM(A)}})]};Cv.props={};var Cm=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Cb=()=>(t,e)=>{let{data:n,style:r={}}=e,i=Cm(e,["data","style"]),{x:A,y:a}=r,o=Cm(r,["x","y"]);return void 0==A||void 0==a?[t,e]:[[0],cC({},i,{data:[0],cartesian:!0,encode:{x:wM([A||0]),y:wM([a||0])},scale:{x:{type:"identity",independent:!0,guide:null},y:{type:"identity",independent:!0,guide:null}},style:o})]};Cb.props={};let CB={text:Ch,badge:Cg,tag:Cy},Cw=t=>{let{cartesian:e=!1}=t;return e?xt:(e,n,r,i)=>{let{x:A,y:a}=r,o=w9(n,r,t),s=Array.from(e,t=>{let e=[+A[t],+a[t]];return[i.map(o(e,t))]});return[e,s]}};Cw.props={defaultShape:"text",defaultLabelShape:"label",composite:!1,shape:CB,channels:[...w2({shapes:Object.keys(CB)}),{name:"x",required:!0},{name:"y",required:!0},{name:"text",scale:"identity"},{name:"fontSize",scale:"identity"},{name:"rotate",scale:"identity"}],preInference:[...w6(),{type:Cv},{type:Cb}],postInference:[...w4()]};let Cx=()=>(t,e)=>[t,cC({scale:{x:{padding:0},y:{padding:0}}},e)];Cx.props={};let CC={cell:wj,hollow:wN},CO=()=>(t,e,n,r)=>{let{x:i,y:A}=n,a=e.x,o=e.y,s=Array.from(t,t=>{let e=a.getBandWidth(a.invert(+i[t])),n=o.getBandWidth(o.invert(+A[t])),s=+i[t],l=+A[t];return[[s,l],[s+e,l],[s+e,l+n],[s,l+n]].map(t=>r.map(t))});return[t,s]};function CE(t,e,n){var r=null,i=pZ(!0),A=null,a=p1,o=null,s=p9(l);function l(l){var c,u,f,h,d,p=(l=pJ(l)).length,g=!1,y=Array(p),v=Array(p);for(null==A&&(o=a(d=s())),c=0;c<=p;++c){if(!(c=u;--f)o.point(y[f],v[f]);o.lineEnd(),o.areaEnd()}g&&(y[c]=+t(h,c,l),v[c]=+e(h,c,l),o.point(r?+r(h,c,l):y[c],n?+n(h,c,l):v[c]))}if(d)return o=null,d+""||null}function c(){return ge().defined(i).curve(a).context(A)}return t="function"==typeof t?t:void 0===t?p7:pZ(+t),e="function"==typeof e?e:void 0===e?pZ(0):pZ(+e),n="function"==typeof n?n:void 0===n?gt:pZ(+n),l.x=function(e){return arguments.length?(t="function"==typeof e?e:pZ(+e),r=null,l):t},l.x0=function(e){return arguments.length?(t="function"==typeof e?e:pZ(+e),l):t},l.x1=function(t){return arguments.length?(r=null==t?null:"function"==typeof t?t:pZ(+t),l):r},l.y=function(t){return arguments.length?(e="function"==typeof t?t:pZ(+t),n=null,l):e},l.y0=function(t){return arguments.length?(e="function"==typeof t?t:pZ(+t),l):e},l.y1=function(t){return arguments.length?(n=null==t?null:"function"==typeof t?t:pZ(+t),l):n},l.lineX0=l.lineY0=function(){return c().x(t).y(e)},l.lineY1=function(){return c().x(t).y(n)},l.lineX1=function(){return c().x(r).y(e)},l.defined=function(t){return arguments.length?(i="function"==typeof t?t:pZ(!!t),l):i},l.curve=function(t){return arguments.length?(a=t,null!=A&&(o=a(A)),l):a},l.context=function(t){return arguments.length?(null==t?A=o=null:o=a(A=t),l):A},l}CO.props={defaultShape:"cell",defaultLabelShape:"label",shape:CC,composite:!1,channels:[...w2({shapes:Object.keys(CC)}),{name:"x",required:!0,scale:"band"},{name:"y",required:!0,scale:"band"}],preInference:[...w6(),{type:wH},{type:Cl},{type:Cx}],postInference:[...w4()]};var Ck=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let CF=gn(t=>{let{areaPath:e,connectPath:n,areaStyle:r,connectStyle:i}=t.attributes,A=t.ownerDocument;c5(t).maybeAppend("connect-path",()=>A.createElement("path",{})).style("d",n).call(pK,i),c5(t).maybeAppend("area-path",()=>A.createElement("path",{})).style("d",e).call(pK,r)}),CQ=(t,e)=>{let{curve:n,gradient:r=!1,defined:i=t=>!Number.isNaN(t)&&null!=t,connect:A=!1}=t,a=Ck(t,["curve","gradient","defined","connect"]),{coordinate:o,document:s}=e;return(t,e,l)=>{let{color:c}=l,{color:u=c,seriesColor:f,seriesX:h,seriesY:d}=e,p=uV(o),g=pY(o,e),y=r&&f?pG(f,h,d,r,void 0,p):u,v=Object.assign(Object.assign(Object.assign(Object.assign({},l),{stroke:y,fill:y}),g&&{transform:g}),a),[b,B]=function(t,e){let n=[],r=[],i=[],A=!1,a=null,o=t.length/2;for(let s=0;s!e(t)))A=!0;else{if(n.push(l),r.push(c),A&&a){A=!1;let[t,e]=a;i.push([t,l,e,c])}a=[l,c]}}return[n.concat(r),i]}(t,i),w=cJ(v,"connect"),x=!!B.length,C=t=>c5(s.createElement("path",{})).style("d",t||"").call(pK,v).node();if(uW(o)){let e=t=>{var e,r,A,a,s,l;let c=o.getCenter(),u=t.slice(0,t.length/2),f=t.slice(t.length/2);return(r=(e=CE().curve(xl)).curve,A=e.lineX0,a=e.lineX1,s=e.lineY0,l=e.lineY1,e.angle=e.x,delete e.x,e.startAngle=e.x0,delete e.x0,e.endAngle=e.x1,delete e.x1,e.radius=e.y,delete e.y,e.innerRadius=e.y0,delete e.y0,e.outerRadius=e.y1,delete e.y1,e.lineStartAngle=function(){return xf(A())},delete e.lineX0,e.lineEndAngle=function(){return xf(a())},delete e.lineX1,e.lineInnerRadius=function(){return xf(s())},delete e.lineY0,e.lineOuterRadius=function(){return xf(l())},delete e.lineY1,e.curve=function(t){return arguments.length?r(xu(t)):r()._curve},e).angle((t,e)=>pj(p_(u[e],c))).outerRadius((t,e)=>pP(u[e],c)).innerRadius((t,e)=>pP(f[e],c)).defined((t,e)=>[...u[e],...f[e]].every(i)).curve(n)(f)};return x&&(!A||Object.keys(w).length)?x&&!A?C(e(t)):c5(new CF).style("areaStyle",v).style("connectStyle",Object.assign(Object.assign({},w),a)).style("areaPath",e(t)).style("connectPath",B.map(e).join("")).node():C(e(b))}{let e=t=>{let e=t.slice(0,t.length/2),r=t.slice(t.length/2);return p?CE().y((t,n)=>e[n][1]).x1((t,n)=>e[n][0]).x0((t,e)=>r[e][0]).defined((t,n)=>[...e[n],...r[n]].every(i)).curve(n)(e):CE().x((t,n)=>e[n][0]).y1((t,n)=>e[n][1]).y0((t,e)=>r[e][1]).defined((t,n)=>[...e[n],...r[n]].every(i)).curve(n)(e)};return x&&(!A||Object.keys(w).length)?x&&!A?C(e(t)):c5(new CF).style("areaStyle",v).style("connectStyle",Object.assign(Object.assign({},w),a)).style("areaPath",e(t)).style("connectPath",B.map(e).join("")).node():C(e(b))}}};CQ.props={defaultMarker:"smooth",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let CM=(t,e)=>{let{coordinate:n}=e;return(...r)=>CQ(Object.assign({curve:uW(n)?wK:p1},t),e)(...r)};CM.props=Object.assign(Object.assign({},CQ.props),{defaultMarker:"square"});var CU=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let CS=(t,e)=>{let n=CU(t,[]),{coordinate:r}=e;return(...t)=>CQ(Object.assign({curve:uW(r)?xx:uV(r)?xU:xM},n),e)(...t)};CS.props=Object.assign(Object.assign({},CQ.props),{defaultMarker:"smooth"});let CI=(t,e)=>(...n)=>CQ(Object.assign({curve:xL},t),e)(...n);CI.props=Object.assign(Object.assign({},CQ.props),{defaultMarker:"hvh"});let CT=(t,e)=>(...n)=>CQ(Object.assign({curve:x_},t),e)(...n);CT.props=Object.assign(Object.assign({},CQ.props),{defaultMarker:"vh"});let CL=(t,e)=>(...n)=>CQ(Object.assign({curve:xP},t),e)(...n);CL.props=Object.assign(Object.assign({},CQ.props),{defaultMarker:"hv"});let C_={area:CM,smooth:CS,hvh:CI,vh:CT,hv:CL},CP=()=>(t,e,n,r)=>{var i,A;let{x:a,y:o,y1:s,series:l}=n,{x:c,y:u}=e,f=l?Array.from(cy(t,t=>l[t]).values()):[t],h=f.map(t=>t[0]).filter(t=>void 0!==t),d=((null==(i=null==c?void 0:c.getBandWidth)?void 0:i.call(c))||0)/2,p=((null==(A=null==u?void 0:u.getBandWidth)?void 0:A.call(u))||0)/2;return[h,Array.from(f,t=>{let e=t.length,n=Array(2*e);for(let i=0;i(t,e)=>{let{encode:n}=e,{y1:r}=n;if(r)return[t,e];let[i]=wT(n,"y");return[t,cC({},e,{encode:{y1:wM([...i])}})]};CH.props={};let Cj=()=>(t,e)=>{let{encode:n}=e,{x1:r}=n;if(r)return[t,e];let[i]=wT(n,"x");return[t,cC({},e,{encode:{x1:wM([...i])}})]};Cj.props={};var CN=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let CD=(t,e)=>{let{arrow:n=!0,arrowSize:r="40%"}=t,i=CN(t,["arrow","arrowSize"]),{document:A}=e;return(t,e,a)=>{let{defaultColor:o}=a,s=CN(a,["defaultColor"]),{color:l=o,transform:c}=e,[u,f]=t,h=p8();if(h.moveTo(...u),h.lineTo(...f),n){let[t,e]=function(t,e,n){let{arrowSize:r}=n,i="string"==typeof r?parseFloat(r)/100*pP(t,e):r,A=Math.PI/6,a=Math.atan2(e[1]-t[1],e[0]-t[0]),o=Math.PI/2-a-A,s=[e[0]-i*Math.sin(o),e[1]-i*Math.cos(o)],l=a-A;return[s,[e[0]-i*Math.cos(l),e[1]-i*Math.sin(l)]]}(u,f,{arrowSize:r});h.moveTo(...t),h.lineTo(...f),h.lineTo(...e)}return c5(A.createElement("path",{})).call(pK,s).style("d",h.toString()).style("stroke",l).style("transform",c).call(pK,i).node()}};CD.props={defaultMarker:"line",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let CR=(t,e)=>{let{arrow:n=!1}=t;return(...r)=>CD(Object.assign(Object.assign({},t),{arrow:n}),e)(...r)};CR.props={defaultMarker:"line",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};var CK=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Cz=(t,e)=>{let n=CK(t,[]),{coordinate:r,document:i}=e;return(t,e,A)=>{let{color:a}=A,o=CK(A,["color"]),{color:s=a,transform:l}=e,[c,u]=t,f=p8();if(f.moveTo(c[0],c[1]),uW(r)){let t=r.getCenter();f.quadraticCurveTo(t[0],t[1],u[0],u[1])}else{let t=pR(c,u),e=pP(c,u)/2;pz(f,c,u,t,e)}return c5(i.createElement("path",{})).call(pK,o).style("d",f.toString()).style("stroke",s).style("transform",l).call(pK,n).node()}};Cz.props={defaultMarker:"smooth",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};var CG=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let CV=(t,e)=>{let n=CG(t,[]),{document:r}=e;return(t,e,i)=>{let{color:A}=i,a=CG(i,["color"]),{color:o=A,transform:s}=e,[l,c]=t,u=p8();return u.moveTo(l[0],l[1]),u.bezierCurveTo(l[0]/2+c[0]/2,l[1],l[0]/2+c[0]/2,c[1],c[0],c[1]),c5(r.createElement("path",{})).call(pK,a).style("d",u.toString()).style("stroke",o).style("transform",s).call(pK,n).node()}};CV.props={defaultMarker:"smooth",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};var CW=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let CX=(t,e)=>{let{cornerRatio:n=1/3}=t,r=CW(t,["cornerRatio"]),{coordinate:i,document:A}=e;return(t,e,a)=>{let{defaultColor:o}=a,s=CW(a,["defaultColor"]),{color:l=o,transform:c}=e,[u,f]=t,h=function(t,e,n,r){let i=p8();if(uW(n)){let A=n.getCenter(),a=pP(t,A),o=pP(e,A);return i.moveTo(t[0],t[1]),pz(i,t,e,A,(o-a)*r+a),i.lineTo(e[0],e[1]),i}return uV(n)?(i.moveTo(t[0],t[1]),i.lineTo(t[0]+(e[0]-t[0])*r,t[1]),i.lineTo(t[0]+(e[0]-t[0])*r,e[1])):(i.moveTo(t[0],t[1]),i.lineTo(t[0],t[1]+(e[1]-t[1])*r),i.lineTo(e[0],t[1]+(e[1]-t[1])*r)),i.lineTo(e[0],e[1]),i}(u,f,i,n);return c5(A.createElement("path",{})).call(pK,s).style("d",h.toString()).style("stroke",l).style("transform",c).call(pK,r).node()}};CX.props={defaultMarker:"vhv",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let CY={link:CR,arc:Cz,smooth:CV,vhv:CX},C$=t=>(e,n,r,i)=>{let{x:A,y:a,x1:o=A,y1:s=a}=r,l=w9(n,r,t),c=e.map(t=>[i.map(l([+A[t],+a[t]],t)),i.map(l([+o[t],+s[t]],t))]);return[e,c]};C$.props={defaultShape:"link",defaultLabelShape:"label",composite:!1,shape:CY,channels:[...w2({shapes:Object.keys(CY)}),{name:"x",required:!0},{name:"y",required:!0}],preInference:[...w6(),{type:CH},{type:Cj}],postInference:[...w4()]};var Cq=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let CJ=(t,e)=>{let{coordinate:n,document:r}=e;return(e,i,A)=>{let{color:a}=A,o=Cq(A,["color"]),{color:s=a,src:l="",size:c=32,transform:u=""}=i,{width:f=c,height:h=c}=t,[[d,p]]=e,[g,y]=n.getSize();f="string"==typeof f?w7(f)*g:f,h="string"==typeof h?w7(h)*y:h;let v=d-Number(f)/2,b=p-Number(h)/2;return c5(r.createElement("image",{})).call(pK,o).style("x",v).style("y",b).style("src",l).style("stroke",s).style("transform",u).call(pK,t).style("width",f).style("height",h).node()}};CJ.props={defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let CZ={image:CJ},C0=t=>{let{cartesian:e}=t;return e?xt:(e,n,r,i)=>{let{x:A,y:a}=r,o=w9(n,r,t),s=Array.from(e,t=>{let e=[+A[t],+a[t]];return[i.map(o(e,t))]});return[e,s]}};C0.props={defaultShape:"image",defaultLabelShape:"label",composite:!1,shape:CZ,channels:[...w2({shapes:Object.keys(CZ)}),{name:"x",required:!0},{name:"y",required:!0},{name:"src",scale:"identity"},{name:"size"}],preInference:[...w6(),{type:Cv},{type:Cb}],postInference:[...w4()]};var C1=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let C2=(t,e)=>{let{coordinate:n,document:r}=e;return(e,i,A)=>{let{color:a}=A,o=C1(A,["color"]),{color:s=a,transform:l}=i,c=function(t,e){let n=p8();if(uW(e)){let r=e.getCenter(),i=[...t,t[0]],A=i.map(t=>pP(t,r));return i.forEach((e,i)=>{if(0===i)return void n.moveTo(e[0],e[1]);let a=A[i],o=t[i-1],s=A[i-1];void 0!==s&&1e-10>Math.abs(a-s)?pz(n,o,e,r,a):n.lineTo(e[0],e[1])}),n.closePath(),n}return t.forEach((t,e)=>0===e?n.moveTo(t[0],t[1]):n.lineTo(t[0],t[1])),n.closePath(),n}(e,n);return c5(r.createElement("path",{})).call(pK,o).style("d",c.toString()).style("stroke",s).style("fill",s).style("transform",l).call(pK,t).node()}};C2.props={defaultMarker:"square",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};var C4=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let C5=(t,e)=>{let n=C4(t,[]),{coordinate:r,document:i}=e;return(t,e,A)=>{let{color:a}=A,o=C4(A,["color"]),{color:s=a,transform:l}=e,c=function(t,e){let[n,r,i,A]=t,a=p8();if(uW(e)){let t=e.getCenter(),o=pP(t,n);return a.moveTo(n[0],n[1]),a.quadraticCurveTo(t[0],t[1],i[0],i[1]),pz(a,i,A,t,o),a.quadraticCurveTo(t[0],t[1],r[0],r[1]),pz(a,r,n,t,o),a.closePath(),a}return a.moveTo(n[0],n[1]),a.bezierCurveTo(n[0]/2+i[0]/2,n[1],n[0]/2+i[0]/2,i[1],i[0],i[1]),a.lineTo(A[0],A[1]),a.bezierCurveTo(A[0]/2+r[0]/2,A[1],A[0]/2+r[0]/2,r[1],r[0],r[1]),a.lineTo(n[0],n[1]),a.closePath(),a}(t,r);return c5(i.createElement("path",{})).call(pK,o).style("d",c.toString()).style("fill",s||a).style("stroke",s||a).style("transform",l).call(pK,n).node()}};C5.props={defaultMarker:"square",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let C3={polygon:C2,ribbon:C5},C6=()=>(t,e,n,r)=>{let i=Object.entries(n).filter(([t])=>t.startsWith("x")).map(([,t])=>t),A=Object.entries(n).filter(([t])=>t.startsWith("y")).map(([,t])=>t),a=t.map(t=>{let e=[];for(let n=0;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let C9=(t,e)=>{let{coordinate:n,document:r}=e;return(e,i,A)=>{let{color:a,transform:o}=i,{color:s,fill:l=s,stroke:c=s}=A,u=C8(A,["color","fill","stroke"]),f=function(t,e){let n=p8();if(uW(e)){let r=e.getCenter(),[i,A]=r,a=pH(p_(t[0],r)),o=pH(p_(t[1],r)),s=pP(r,t[2]),l=pP(r,t[3]),c=pP(r,t[8]),u=pP(r,t[10]),f=pP(r,t[11]);n.moveTo(...t[0]),n.arc(i,A,s,a,o),n.arc(i,A,s,o,a,!0),n.moveTo(...t[2]),n.lineTo(...t[3]),n.moveTo(...t[4]),n.arc(i,A,l,a,o),n.lineTo(...t[6]),n.arc(i,A,u,o,a,!0),n.closePath(),n.moveTo(...t[8]),n.arc(i,A,c,a,o),n.arc(i,A,c,o,a,!0),n.moveTo(...t[10]),n.lineTo(...t[11]),n.moveTo(...t[12]),n.arc(i,A,f,a,o),n.arc(i,A,f,o,a,!0)}else n.moveTo(...t[0]),n.lineTo(...t[1]),n.moveTo(...t[2]),n.lineTo(...t[3]),n.moveTo(...t[4]),n.lineTo(...t[5]),n.lineTo(...t[6]),n.lineTo(...t[7]),n.closePath(),n.moveTo(...t[8]),n.lineTo(...t[9]),n.moveTo(...t[10]),n.lineTo(...t[11]),n.moveTo(...t[12]),n.lineTo(...t[13]);return n}(e,n);return c5(r.createElement("path",{})).call(pK,u).style("d",f.toString()).style("stroke",c).style("fill",a||l).style("transform",o).call(pK,t).node()}};C9.props={defaultMarker:"point",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};var C7=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Ot=(t,e)=>{let{coordinate:n,document:r}=e;return(e,i,A)=>{let{color:a,transform:o}=i,{color:s,fill:l=s,stroke:c=s}=A,u=C7(A,["color","fill","stroke"]),f=function(t,e,n=4){let r=p8();if(!uW(e))return r.moveTo(...t[2]),r.lineTo(...t[3]),r.lineTo(t[3][0]-n,t[3][1]),r.lineTo(t[10][0]-n,t[10][1]),r.lineTo(t[10][0]+n,t[10][1]),r.lineTo(t[3][0]+n,t[3][1]),r.lineTo(...t[3]),r.closePath(),r.moveTo(...t[10]),r.lineTo(...t[11]),r.moveTo(t[3][0]+n/2,t[8][1]),r.arc(t[3][0],t[8][1],n/2,0,2*Math.PI),r.closePath(),r;let i=e.getCenter(),[A,a]=i,o=pP(i,t[3]),s=pP(i,t[8]),l=pP(i,t[10]),c=pH(p_(t[2],i)),u=Math.asin(n/s),f=c-u,h=c+u;r.moveTo(...t[2]),r.lineTo(...t[3]),r.moveTo(Math.cos(f)*o+A,Math.sin(f)*o+a),r.arc(A,a,o,f,h),r.lineTo(Math.cos(h)*l+A,Math.sin(h)*l+a),r.arc(A,a,l,h,f,!0),r.lineTo(Math.cos(f)*o+A,Math.sin(f)*o+a),r.closePath(),r.moveTo(...t[10]),r.lineTo(...t[11]);let d=(f+h)/2;return r.moveTo(Math.cos(d)*(s+n/2)+A,Math.sin(d)*(s+n/2)+a),r.arc(Math.cos(d)*s+A,Math.sin(d)*s+a,n/2,d,2*Math.PI+d),r.closePath(),r}(e,n,4);return c5(r.createElement("path",{})).call(pK,u).style("d",f.toString()).style("stroke",c).style("fill",a||l).style("transform",o).call(pK,t).node()}};Ot.props={defaultMarker:"point",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let Oe={box:C9,violin:Ot},On=()=>(t,e,n,r)=>{let{x:i,y:A,y1:a,y2:o,y3:s,y4:l,series:c}=n,u=e.x,f=e.series,h=Array.from(t,t=>{let e=u.getBandWidth(u.invert(+i[t])),n=e*(f?f.getBandWidth(f.invert(+(null==c?void 0:c[t]))):1),h=(+(null==c?void 0:c[t])||0)*e,d=+i[t]+h+n/2,[p,g,y,v,b]=[+A[t],+a[t],+o[t],+s[t],+l[t]];return[[d-n/2,b],[d+n/2,b],[d,b],[d,v],[d-n/2,v],[d+n/2,v],[d+n/2,g],[d-n/2,g],[d-n/2,y],[d+n/2,y],[d,g],[d,p],[d-n/2,p],[d+n/2,p]].map(t=>r.map(t))});return[t,h]};On.props={defaultShape:"box",defaultLabelShape:"label",composite:!1,shape:Oe,channels:[...w2({shapes:Object.keys(Oe)}),{name:"x",scale:"band",required:!0},{name:"y",required:!0},{name:"series",scale:"band"}],preInference:[...w6(),{type:wH}],postInference:[...w5()],interaction:{shareTooltip:!0}};let Or={vector:CD},Oi=()=>(t,e,n,r)=>{let{x:i,y:A,size:a,rotate:o}=n,[s,l]=r.getSize(),c=t.map(t=>{let e=o[t]/180*Math.PI,n=+a[t],c=n/s*Math.cos(e),u=-(n/l)*Math.sin(e);return[r.map([i[t]-c/2,A[t]-u/2]),r.map([+i[t]+c/2,+A[t]+u/2])]});return[t,c]};Oi.props={defaultShape:"vector",defaultLabelShape:"label",composite:!1,shape:Or,channels:[...w2({shapes:Object.keys(Or)}),{name:"x",required:!0},{name:"y",required:!0},{name:"rotate",required:!0,scale:"identity"},{name:"size",required:!0}],preInference:[...w6()],postInference:[...w4()]};var OA=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Oa=(t,e)=>{let{arrow:n,arrowSize:r=4}=t,i=OA(t,["arrow","arrowSize"]),{coordinate:A,document:a}=e;return(t,e,o)=>{var s;let{color:l,lineWidth:c}=o,u=OA(o,["color","lineWidth"]),{color:f=l,size:h=c}=e,d=n?(s=Object.assign({fill:i.stroke||f,stroke:i.stroke||f},cJ(i,"arrow")),a.createElement("path",{style:Object.assign({d:`M ${r},${r} L -${r},0 L ${r},-${r} L 0,0 Z`,transformOrigin:"center"},s)})):null,p=function(t,e){if(!uW(e))return ge().x(t=>t[0]).y(t=>t[1])(t);let n=e.getCenter();return yu()({startAngle:0,endAngle:2*Math.PI,outerRadius:pP(t[0],n),innerRadius:pP(t[1],n)})}(t,A),g=function(t,e){if(!uW(t))return e;let[n,r]=t.getCenter();return`translate(${n}, ${r}) ${e||""}`}(A,e.transform);return c5(a.createElement("path",{})).call(pK,u).style("d",p).style("stroke",f).style("lineWidth",h).style("transform",g).style("markerEnd",d).call(pK,i).node()}};Oa.props={defaultMarker:"line",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let Oo=()=>(t,e)=>{let{data:n}=e;return!Array.isArray(n)||n.some(w_)?[t,e]:[t,cC({},e,{encode:{x:wM(n)}})]};Oo.props={};let Os={line:Oa},Ol=t=>(e,n,r,i)=>{let{x:A}=r,a=w9(n,r,cC({style:{bandOffset:0}},t)),o=Array.from(e,t=>[[A[t],1],[A[t],0]].map(e=>i.map(a(e,t))));return[e,o]};Ol.props={defaultShape:"line",defaultLabelShape:"label",composite:!1,shape:Os,channels:[...w3({shapes:Object.keys(Os)}),{name:"x",required:!0}],preInference:[...w6(),{type:Oo}],postInference:[]};let Oc=()=>(t,e)=>{let{data:n}=e;return!Array.isArray(n)||n.some(w_)?[t,e]:[t,cC({},e,{encode:{y:wM(n)}})]};Oc.props={};let Ou={line:Oa},Of=t=>(e,n,r,i)=>{let{y:A}=r,a=w9(n,r,cC({style:{bandOffset:0}},t)),o=Array.from(e,t=>[[0,A[t]],[1,A[t]]].map(e=>i.map(a(e,t))));return[e,o]};Of.props={defaultShape:"line",defaultLabelShape:"label",composite:!1,shape:Ou,channels:[...w3({shapes:Object.keys(Ou)}),{name:"y",required:!0}],preInference:[...w6(),{type:Oc}],postInference:[]};var Oh=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function Od(t,e,n){return[["M",t,e],["L",t+2*n,e-n],["L",t+2*n,e+n],["Z"]]}let Op=(t,e)=>{let{offsetX:n=0,sourceOffsetX:r=n,targetOffsetX:i=n,offsetY:A=0,sourceOffsetY:a=A,targetOffsetY:o=A,connectLength1:s,endMarker:l=!0}=t,c=Oh(t,["offsetX","sourceOffsetX","targetOffsetX","offsetY","sourceOffsetY","targetOffsetY","connectLength1","endMarker"]),{coordinate:u}=e;return(t,e,n)=>{let{color:A,connectLength1:f}=n,h=Oh(n,["color","connectLength1"]),{color:d,transform:p}=e,g=function(t,e,n,r,i,A,a=0){let[[o,s],[l,c]]=e;if(uV(t)){let t=o+n,e=t+a,u=s+i,f=c+A;return[[t,u],[e,u],[e,f],[l+r,f]]}let u=s-n,f=u-a,h=o-i,d=l-A;return[[h,u],[h,f],[d,f],[d,c-r]]}(u,t,a,o,r,i,null!=s?s:f),y=cJ(Object.assign(Object.assign({},c),n),"endMarker");return c5(new ov).call(pK,h).style("d",ge().x(t=>t[0]).y(t=>t[1])(g)).style("stroke",d||A).style("transform",p).style("markerEnd",l?new d9({className:"marker",style:Object.assign(Object.assign({},y),{symbol:Od})}):null).call(pK,c).node()}};Op.props={defaultMarker:"line",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let Og={connector:Op},Oy=(...t)=>C$(...t);function Ov(t,e,n,r){if(e)return()=>[0,1];let{[t]:i,[`${t}1`]:A}=n;return t=>{var e;let n=(null==(e=r.getBandWidth)?void 0:e.call(r,r.invert(+A[t])))||0;return[i[t],A[t]+n]}}function Om(t={}){let{extendX:e=!1,extendY:n=!1}=t;return(t,r,i,A)=>{let a=Ov("x",e,i,r.x),o=Ov("y",n,i,r.y),s=Array.from(t,t=>{let[e,n]=a(t),[r,i]=o(t);return[[e,r],[n,r],[n,i],[e,i]].map(t=>A.map(t))});return[t,s]}}Oy.props={defaultShape:"connector",defaultLabelShape:"label",composite:!1,shape:Og,channels:[...w3({shapes:Object.keys(Og)}),{name:"x",required:!0},{name:"y",required:!0}],preInference:[...w6()],postInference:[]};let Ob={range:wj},OB=()=>Om();OB.props={defaultShape:"range",defaultLabelShape:"label",composite:!1,shape:Ob,channels:[...w3({shapes:Object.keys(Ob)}),{name:"x",required:!0},{name:"y",required:!0}],preInference:[...w6()],postInference:[]};let Ow=()=>(t,e)=>{let{data:n}=e;if(Array.isArray(n)&&(n.every(Array.isArray)||!n.some(w_))){let r=(t,e)=>Array.isArray(t[0])?t.map(t=>t[e]):[t[e]];return[t,cC({},e,{encode:{x:wM(r(n,0)),x1:wM(r(n,1))}})]}return[t,e]};Ow.props={};let Ox={range:wj},OC=()=>Om({extendY:!0});OC.props={defaultShape:"range",defaultLabelShape:"label",composite:!1,shape:Ox,channels:[...w3({shapes:Object.keys(Ox)}),{name:"x",required:!0}],preInference:[...w6(),{type:Ow}],postInference:[]};let OO=()=>(t,e)=>{let{data:n}=e;if(Array.isArray(n)&&(n.every(Array.isArray)||!n.some(w_))){let r=(t,e)=>Array.isArray(t[0])?t.map(t=>t[e]):[t[e]];return[t,cC({},e,{encode:{y:wM(r(n,0)),y1:wM(r(n,1))}})]}return[t,e]};OO.props={};let OE={range:wj},Ok=()=>Om({extendX:!0});Ok.props={defaultShape:"range",defaultLabelShape:"label",composite:!1,shape:OE,channels:[...w3({shapes:Object.keys(OE)}),{name:"y",required:!0}],preInference:[...w6(),{type:OO}],postInference:[]};var OF=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let OQ=(t,e)=>{let{arrow:n,colorAttribute:r}=t,i=OF(t,["arrow","colorAttribute"]),{coordinate:A,document:a}=e;return(t,e,n)=>{let{color:o,stroke:s}=n,l=OF(n,["color","stroke"]),{d:c,color:u=o}=e,[f,h]=A.getSize();return c5(a.createElement("path",{})).call(pK,l).style("d","function"==typeof c?c({width:f,height:h}):c).style(r,u).call(pK,i).node()}};OQ.props={defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let OM=(t,e)=>OQ(Object.assign({colorAttribute:"fill"},t),e);OM.props={defaultMarker:"hvh",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let OU=(t,e)=>OQ(Object.assign({fill:"none",colorAttribute:"stroke"},t),e);OU.props={defaultMarker:"hvh",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let OS={path:OM,hollow:OU},OI=t=>(t,e,n,r)=>[t,t.map(()=>[[0,0]])];OI.props={defaultShape:"path",defaultLabelShape:"label",shape:OS,composite:!1,channels:[...w2({shapes:Object.keys(OS)}),{name:"d",scale:"identity"}],preInference:[...w6()],postInference:[]};var OT=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let OL=(t,e)=>{let{render:n}=t,r=OT(t,["render"]);return t=>{let[[i,A]]=t;return n(Object.assign(Object.assign({},r),{x:i,y:A}),e)}};OL.props={defaultMarker:"point",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let O_=()=>(t,e)=>{let{style:n={}}=e;return[t,cC({},e,{style:Object.assign(Object.assign({},n),Object.fromEntries(Object.entries(n).filter(([,t])=>"function"==typeof t).map(([t,e])=>[t,()=>e])))})]};O_.props={};let OP=t=>{let{cartesian:e}=t;return e?xt:(e,n,r,i)=>{let{x:A,y:a}=r,o=w9(n,r,t),s=Array.from(e,t=>{let e=[+A[t],+a[t]];return[i.map(o(e,t))]});return[e,s]}};OP.props={defaultShape:"shape",defaultLabelShape:"label",composite:!1,shape:{shape:OL},channels:[{name:"x",required:!0},{name:"y",required:!0}],preInference:[...w6(),{type:Cv},{type:Cb},{type:O_}]};var OH=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Oj=(t,e)=>{let{document:n}=e;return(e,r,i)=>{let{transform:A}=r,{color:a}=i,o=OH(i,["color"]),{color:s=a}=r,[l,...c]=e,u=p8();return u.moveTo(...l),c.forEach(([t,e])=>{u.lineTo(t,e)}),u.closePath(),c5(n.createElement("path",{})).call(pK,o).style("d",u.toString()).style("stroke",s||a).style("fill",s||a).style("fillOpacity",.4).style("transform",A).call(pK,t).node()}};Oj.props={defaultMarker:"square",defaultEnterAnimation:"fadeIn",defaultUpdateAnimation:"morphing",defaultExitAnimation:"fadeOut"};let ON={density:Oj},OD=()=>(t,e,n,r)=>{let{x:i,series:A}=n,a=Object.entries(n).filter(([t])=>t.startsWith("y")).map(([,t])=>t),o=Object.entries(n).filter(([t])=>t.startsWith("size")).map(([,t])=>t);if(void 0===i||void 0===a||void 0===o)throw Error("Missing encode for x or y or size channel.");let s=e.x,l=e.series,c=Array.from(t,e=>{let n=s.getBandWidth(s.invert(+i[e])),c=l?l.getBandWidth(l.invert(+(null==A?void 0:A[e]))):1,u=(+(null==A?void 0:A[e])||0)*n,f=+i[e]+u+n*c/2;return[...a.map((n,r)=>[f+o[r][e]/t.length,+a[r][e]]),...a.map((n,r)=>[f-o[r][e]/t.length,+a[r][e]]).reverse()].map(t=>r.map(t))});return[t,c]};function OR(t,e,n){let r=t?t():document.createElement("canvas");return r.width=e,r.height=n,r}OD.props={defaultShape:"density",defaultLabelShape:"label",composite:!1,shape:ON,channels:[...w2({shapes:Object.keys(ON)}),{name:"x",scale:"band",required:!0},{name:"y",required:!0},{name:"size",required:!0},{name:"series",scale:"band"},{name:"size",required:!0,scale:"identity"}],preInference:[...w6(),{type:wP},{type:wH}],postInference:[...w5()],interaction:{shareTooltip:!0}};let OK=up((t,e,n)=>{let r=OR(n,2*t,2*t),i=r.getContext("2d");if(1===e)i.beginPath(),i.arc(t,t,t,0,2*Math.PI,!1),i.fillStyle="rgba(0,0,0,1)",i.fill();else{let n=i.createRadialGradient(t,t,t*e,t,t,t);n.addColorStop(0,"rgba(0,0,0,1)"),n.addColorStop(1,"rgba(0,0,0,0)"),i.fillStyle=n,i.fillRect(0,0,2*t,2*t)}return r},t=>`${t}`);var Oz=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let OG=(t,e)=>{let{gradient:n,opacity:r,maxOpacity:i,minOpacity:A,blur:a,useGradientOpacity:o}=t,s=Oz(t,["gradient","opacity","maxOpacity","minOpacity","blur","useGradientOpacity"]),{coordinate:l,createCanvas:c,document:u}=e;return(t,e,f)=>{var h,d,p,g;let y,v,b,B,w,x,C,{transform:O}=e,[E,k]=l.getSize(),F=t.map(t=>({x:t[0],y:t[1],value:t[2],radius:t[3]})),Q=bM(t,t=>t[2]),M=uL(t,t=>t[2]),U=E&&k?(h={gradient:n,opacity:r,minOpacity:A,maxOpacity:i,blur:a,useGradientOpacity:o},d=t=>void 0===t,p=Object.keys(h).reduce((t,e)=>{let n=h[e];return d(n,e)||(t[e]=n),t},{}),y=Object.assign({blur:.85,minOpacity:0,opacity:.6,maxOpacity:1,gradient:[[.25,"rgb(0,0,255)"],[.55,"rgb(0,255,0)"],[.85,"yellow"],[1,"rgb(255,0,0)"]]},p),y.minOpacity*=255,y.opacity*=255,y.maxOpacity*=255,v=OR(c,E,k).getContext("2d"),g=y.gradient,B=(b=OR(c,256,1).getContext("2d")).createLinearGradient(0,0,256,1),("string"==typeof g?g.split(" ").map(t=>{let[e,n]=t.split(":");return[+e,n]}):g).forEach(([t,e])=>{B.addColorStop(t,e)}),b.fillStyle=B,b.fillRect(0,0,256,1),w=b.getImageData(0,0,256,1).data,v.clearRect(0,0,E,k),!function(t,e,n,r,i,A){let{blur:a}=i,o=r.length;for(;o--;){let{x:i,y:s,value:l,radius:c}=r[o],u=Math.min(l,n),f=i-c,h=s-c,d=OK(c,1-a,A);t.globalAlpha=Math.max((u-e)/(n-e),.001),t.drawImage(d,f,h)}}(v,Q,M,F,y,c),x=function(t,e,n,r,i){let{minOpacity:A,opacity:a,maxOpacity:o,useGradientOpacity:s}=i,l=t.getImageData(0,0,e,n),c=l.data,u=c.length;for(let t=3;t(t,e,n,r)=>{let{x:i,y:A,size:a,color:o}=n;return[[0],[Array.from(t,t=>{let e=a?+a[t]:40;return[...r.map([+i[t],+A[t]]),o[t],e]})]]};OW.props={defaultShape:"heatmap",defaultLabelShape:"label",composite:!1,shape:OV,channels:[...w2({shapes:Object.keys(OV)}),{name:"x",required:!0},{name:"y",required:!0},{name:"color",scale:"identity",required:!0},{name:"size"}],preInference:[...w6(),{type:wH},{type:Cl}],postInference:[...w4()]};var OX=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let OY=(t,e)=>{var n,r,i,A;return n=void 0,r=void 0,i=void 0,A=function*(){let{width:n,height:r}=e,{data:i,encode:A={},scale:a,style:o={},layout:s={}}=t,l=OX(t,["data","encode","scale","style","layout"]);return cC({},{axis:!1,type:"text",encode:{x:"x",y:"y",text:"text",rotate:"rotate",fontSize:"size",shape:"tag"},scale:{x:{range:[0,1]},y:{range:[0,1]}},style:{fontFamily:t=>t.fontFamily},tooltip:{items:[t=>({name:t.text,value:t.value})]}},Object.assign(Object.assign({data:{value:function(t,e){let{text:n="text",value:r="value"}=e;return t.map(t=>Object.assign(Object.assign({},t),{text:t[n],value:t[r]}))}(i,A),transform:[Object.assign({type:"wordCloud",size:[n,r]},s)]},encode:A,scale:a,style:o},l),{axis:!1}))},new(i||(i=Promise))(function(t,e){function a(t){try{s(A.next(t))}catch(t){e(t)}}function o(t){try{s(A.throw(t))}catch(t){e(t)}}function s(e){var n;e.done?t(e.value):((n=e.value)instanceof i?n:new i(function(t){t(n)})).then(a,o)}s((A=A.apply(n,r||[])).next())})};OY.props={};var O$={value:()=>{}};function Oq(){for(var t,e=0,n=arguments.length,r={};e=0&&(e=t.slice(n+1),t=t.slice(0,n)),t&&!r.hasOwnProperty(t))throw Error("unknown type: "+t);return{type:t,name:e}}),A=-1,a=i.length;if(arguments.length<2){for(;++A0)for(var n,r,i=Array(n),A=0;A=0&&e._call.call(void 0,t),e=e._next;--EL}finally{EL=0,function(){for(var t,e,n=EI,r=1/0;n;)n._call?(r>n._time&&(r=n._time),t=n,n=n._next):(e=n._next,n._next=null,n=t?t._next=e:EI=e);ET=t,EY(r)}(),Ej=0}}function EX(){var t=ED.now(),e=t-EH;e>1e3&&(EN-=e,EH=t)}function EY(t){!EL&&(E_&&(E_=clearTimeout(E_)),t-Ej>24?(t<1/0&&(E_=setTimeout(EW,t-ED.now()-EN)),EP&&(EP=clearInterval(EP))):(EP||(EH=ED.now(),EP=setInterval(EX,1e3)),EL=1,ER(EW)))}function E$(t){return t.x}function Eq(t){return t.y}EG.prototype=EV.prototype={constructor:EG,restart:function(t,e,n){if("function"!=typeof t)throw TypeError("callback is not a function");n=(null==n?EK():+n)+(null==e?0:+e),this._next||ET===this||(ET?ET._next=this:EI=this,ET=this),this._call=t,this._time=n,EY()},stop:function(){this._call&&(this._call=null,this._time=1/0,EY())}};var EJ=Math.PI*(3-Math.sqrt(5));function EZ(t){let e;var n,r=1,i=.001,A=1-Math.pow(.001,1/300),a=0,o=.6,s=new Map,l=EV(f),c=Oq("tick","end"),u=(e=1,()=>(e=(1664525*e+0x3c6ef35f)%0x100000000)/0x100000000);function f(){h(),c.call("tick",n),r1?(null==e?s.delete(t):s.set(t,p(e)),n):s.get(t)},find:function(e,n,r){var i,A,a,o,s,l=0,c=t.length;for(null==r?r=1/0:r*=r,l=0;l1?(c.on(t,e),n):c.on(t)}}}function E0(t,e,n,r){if(isNaN(e)||isNaN(n))return t;var i,A,a,o,s,l,c,u,f,h=t._root,d={data:r},p=t._x0,g=t._y0,y=t._x1,v=t._y1;if(!h)return t._root=d,t;for(;h.length;)if((l=e>=(A=(p+y)/2))?p=A:y=A,(c=n>=(a=(g+v)/2))?g=a:v=a,i=h,!(h=h[u=c<<1|l]))return i[u]=d,t;if(o=+t._x.call(null,h.data),s=+t._y.call(null,h.data),e===o&&n===s)return d.next=h,i?i[u]=d:t._root=d,t;do i=i?i[u]=[,,,,]:t._root=[,,,,],(l=e>=(A=(p+y)/2))?p=A:y=A,(c=n>=(a=(g+v)/2))?g=a:v=a;while((u=c<<1|l)==(f=(s>=a)<<1|o>=A));return i[f]=h,i[u]=d,t}function E1(t,e,n,r,i){this.node=t,this.x0=e,this.y0=n,this.x1=r,this.y1=i}function E2(t){return t[0]}function E4(t){return t[1]}function E5(t,e,n){var r=new E3(null==e?E2:e,null==n?E4:n,NaN,NaN,NaN,NaN);return null==t?r:r.addAll(t)}function E3(t,e,n,r,i,A){this._x=t,this._y=e,this._x0=n,this._y0=r,this._x1=i,this._y1=A,this._root=void 0}function E6(t){for(var e={data:t.data},n=e;t=t.next;)n=n.next={data:t.data};return e}var E8=E5.prototype=E3.prototype;function E9(t){return function(){return t}}function E7(t){return(t()-.5)*1e-6}function kt(t){return t.x+t.vx}function ke(t){return t.y+t.vy}function kn(t){var e,n,r,i=E9(.1);function A(t){for(var i,A=0,a=e.length;Ac&&(c=r),iu&&(u=i));if(s>c||l>u)return this;for(this.cover(s,l).cover(c,u),n=0;nt||t>=i||r>e||e>=A;)switch(o=(ef)&&!((A=s.y0)>h)&&!((a=s.x1)=y)<<1|t>=g)&&(s=d[d.length-1],d[d.length-1]=d[d.length-1-l],d[d.length-1-l]=s)}else{var v=t-this._x.call(null,p.data),b=e-this._y.call(null,p.data),B=v*v+b*b;if(B=(o=(d+g)/2))?d=o:g=o,(c=a>=(s=(p+y)/2))?p=s:y=s,e=h,!(h=h[u=c<<1|l]))return this;if(!h.length)break;(e[u+1&3]||e[u+2&3]||e[u+3&3])&&(n=e,f=u)}for(;h.data!==t;)if(r=h,!(h=h.next))return this;return((i=h.next)&&delete h.next,r)?i?r.next=i:delete r.next:e?(i?e[u]=i:delete e[u],(h=e[0]||e[1]||e[2]||e[3])&&h===(e[3]||e[2]||e[1]||e[0])&&!h.length&&(n?n[f]=h:this._root=h)):this._root=i,this},E8.removeAll=function(t){for(var e=0,n=t.length;e(e,n,r,i)=>{let{x:A,y:a,size:o}=r;if(!A.length||!a.length)return[e,a.map(()=>[[]])];let[s,l]=i.getSize(),c=w9(n,r,t),u=Array.from(e,t=>{let e=A[t]*s,n=a[t]*l,r=+o[t]||4;return{i:t,x:e,y:n,r}}),f=EZ(u).stop().force("collide",(function(t){var e,n,r,i=1,A=1;function a(){for(var t,a,s,l,c,u,f,h=e.length,d=0;ds.index){var p=l-o.x-o.vx,g=c-o.y-o.vy,y=p*p+g*g;yl+d||Ac+d||at.r&&(t.r=t[e].r)}function s(){if(e){var r,i,A=e.length;for(r=0,n=Array(A);rt.r+1).strength(1));f.force("x",kn(t=>t.x).strength(0)),f.force("y",kr(t=>t.y).strength(5));for(let t=0;t<200;t++)f.tick();f.stop();let h=t=>{let e=u.find(e=>e.i===t);return[e.x/s,e.y/l]},d=o?Array.from(e,t=>{let[e,n]=h(t),r=+o[t],A=r/s,a=r/l;return[i.map(c([e-A,n-a],t)),i.map(c([e+A,n+a],t))]}):Array.from(e,t=>[i.map(c(h(t),t))]);return[e,d]};kA.props={defaultShape:"point",defaultLabelShape:"label",composite:!1,shape:ki,channels:[...w2({shapes:Object.keys(ki)}),{name:"x",required:!0},{name:"y",required:!0},{name:"series",scale:"band"},{name:"size",quantitative:"sqrt"}],preInference:[...w6(),{type:wH},{type:Cl}],postInference:[{type:Cc},...w4()]};let ka=()=>["#5B8FF9","#5AD8A6","#5D7092","#F6BD16","#6F5EF9","#6DC8EC","#945FB9","#FF9845","#1E9493","#FF99C3"];ka.props={};let ko=()=>["#5B8FF9","#CDDDFD","#5AD8A6","#CDF3E4","#5D7092","#CED4DE","#F6BD16","#FCEBB9","#6F5EF9","#D3CEFD","#6DC8EC","#D3EEF9","#945FB9","#DECFEA","#FF9845","#FFE0C7","#1E9493","#BBDEDE","#FF99C3","#FFE0ED"];ko.props={};let ks=t=>new h1(t);ks.props={};let kl=t=>new cL(t);kl.props={};let kc=t=>new c_(t);kc.props={};class ku extends cM{getDefaultOptions(){return{domain:[0,1],range:[0,1],tickCount:5,unknown:void 0,tickMethod:pm}}map(t){return hq(t)?t:this.options.unknown}invert(t){return this.map(t)}clone(){return new ku(this.options)}getTicks(){let{domain:t,tickCount:e,tickMethod:n}=this.options,[r,i]=t;return eG(r)&&eG(i)?n(r,i,e):[]}}let kf=t=>new ku(t);kf.props={};class kh extends c_{getDefaultOptions(){return{domain:[],range:[0,1],align:.5,round:!1,padding:0,unknown:cU,paddingInner:1,paddingOuter:0}}constructor(t){super(t)}getPaddingInner(){return 1}clone(){return new kh(this.options)}update(t){super.update(t)}getPaddingOuter(){return this.options.padding}}let kd=t=>new kh(t);kd.props={};var kp=/d{1,4}|M{1,4}|YY(?:YY)?|S{1,3}|Do|ZZ|Z|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g,kg=/\[([^]*?)\]/gm;function ky(t,e){for(var n=[],r=0,i=t.length;r-1?r:null}};function km(t){for(var e=[],n=1;n3?0:(t-t%10!=10)*t%10]}}),kC=function(t,e){for(void 0===e&&(e=2),t=String(t);t.lengtht.getHours()?e.amPm[0]:e.amPm[1]},A:function(t,e){return 12>t.getHours()?e.amPm[0].toUpperCase():e.amPm[1].toUpperCase()},ZZ:function(t){var e=t.getTimezoneOffset();return(e>0?"-":"+")+kC(100*Math.floor(Math.abs(e)/60)+Math.abs(e)%60,4)},Z:function(t){var e=t.getTimezoneOffset();return(e>0?"-":"+")+kC(Math.floor(Math.abs(e)/60),2)+":"+kC(Math.abs(e)%60,2)}};kv("monthNamesShort"),kv("monthNames");var kE={default:"ddd MMM DD YYYY HH:mm:ss",shortDate:"M/D/YY",mediumDate:"MMM D, YYYY",longDate:"MMMM D, YYYY",fullDate:"dddd, MMMM D, YYYY",isoDate:"YYYY-MM-DD",isoDateTime:"YYYY-MM-DDTHH:mm:ssZ",shortTime:"HH:mm",mediumTime:"HH:mm:ss",longTime:"HH:mm:ss.SSS"},kk=function(t,e,n){if(void 0===e&&(e=kE.default),void 0===n&&(n={}),"number"==typeof t&&(t=new Date(t)),"[object Date]"!==Object.prototype.toString.call(t)||isNaN(t.getTime()))throw Error("Invalid Date pass to format");e=kE[e]||e;var r=[];e=e.replace(kg,function(t,e){return r.push(e),"@@@"});var i=km(km({},kx),n);return(e=e.replace(kp,function(e){return kO[e](t,i)})).replace(/@@@/g,function(){return r.shift()})};function kF(t,e,n,r){let i=(t,i)=>{i&&((t,e)=>{let i=t=>r(t)%e==0,A=e;for(;A&&!i(t);)n(t,-1),A-=1})(t,i),e(t)},A=(t,e)=>{let r=new Date(t-1);return i(r,e),n(r,e),i(r),r};return{ceil:A,floor:(t,e)=>{let n=new Date(+t);return i(n,e),n},range:(t,e,r,a)=>{let o=[],s=Math.floor(r),l=a?A(t,r):A(t);for(;lt,(t,e=1)=>{t.setTime(+t+e)},t=>t.getTime()),kM=kF(1e3,t=>{t.setMilliseconds(0)},(t,e=1)=>{t.setTime(+t+1e3*e)},t=>t.getSeconds()),kU=kF(6e4,t=>{t.setSeconds(0,0)},(t,e=1)=>{t.setTime(+t+6e4*e)},t=>t.getMinutes()),kS=kF(36e5,t=>{t.setMinutes(0,0,0)},(t,e=1)=>{t.setTime(+t+36e5*e)},t=>t.getHours()),kI=kF(864e5,t=>{t.setHours(0,0,0,0)},(t,e=1)=>{t.setTime(+t+864e5*e)},t=>t.getDate()-1),kT=kF(2592e6,t=>{t.setDate(1),t.setHours(0,0,0,0)},(t,e=1)=>{let n=t.getMonth();t.setMonth(n+e)},t=>t.getMonth()),kL={millisecond:kQ,second:kM,minute:kU,hour:kS,day:kI,week:kF(6048e5,t=>{t.setDate(t.getDate()-t.getDay()%7),t.setHours(0,0,0,0)},(t,e=1)=>{t.setDate(t.getDate()+7*e)},t=>{let e=kT.floor(t);return Math.floor((new Date(+t)-e)/6048e5)}),month:kT,year:kF(31536e6,t=>{t.setMonth(0,1),t.setHours(0,0,0,0)},(t,e=1)=>{let n=t.getFullYear();t.setFullYear(n+e)},t=>t.getFullYear())},k_=kF(1,t=>t,(t,e=1)=>{t.setTime(+t+e)},t=>t.getTime()),kP=kF(1e3,t=>{t.setUTCMilliseconds(0)},(t,e=1)=>{t.setTime(+t+1e3*e)},t=>t.getUTCSeconds()),kH=kF(6e4,t=>{t.setUTCSeconds(0,0)},(t,e=1)=>{t.setTime(+t+6e4*e)},t=>t.getUTCMinutes()),kj=kF(36e5,t=>{t.setUTCMinutes(0,0,0)},(t,e=1)=>{t.setTime(+t+36e5*e)},t=>t.getUTCHours()),kN=kF(864e5,t=>{t.setUTCHours(0,0,0,0)},(t,e=1)=>{t.setTime(+t+864e5*e)},t=>t.getUTCDate()-1),kD=kF(2592e6,t=>{t.setUTCDate(1),t.setUTCHours(0,0,0,0)},(t,e=1)=>{let n=t.getUTCMonth();t.setUTCMonth(n+e)},t=>t.getUTCMonth()),kR={millisecond:k_,second:kP,minute:kH,hour:kj,day:kN,week:kF(6048e5,t=>{t.setUTCDate(t.getUTCDate()-(t.getUTCDay()+7)%7),t.setUTCHours(0,0,0,0)},(t,e=1)=>{t.setTime(+t+6048e5*e)},t=>{let e=kD.floor(t);return Math.floor((new Date(+t)-e)/6048e5)}),month:kD,year:kF(31536e6,t=>{t.setUTCMonth(0,1),t.setUTCHours(0,0,0,0)},(t,e=1)=>{let n=t.getUTCFullYear();t.setUTCFullYear(n+e)},t=>t.getUTCFullYear())};function kK(t,e,n,r,i){let A,a=+t,o=+e,{tickIntervals:s,year:l,millisecond:c}=function(t){let{year:e,month:n,week:r,day:i,hour:A,minute:a,second:o,millisecond:s}=t?kR:kL;return{tickIntervals:[[o,1],[o,5],[o,15],[o,30],[a,1],[a,5],[a,15],[a,30],[A,1],[A,3],[A,6],[A,12],[i,1],[i,2],[r,1],[n,1],[n,3],[e,1]],year:e,millisecond:s}}(i),u=([t,e])=>t.duration*e,f=r?(o-a)/r:n||5,h=r||(o-a)/f,d=s.length,p=hK(s,h,0,d,u);if(p===d){let t=cD(a/l.duration,o/l.duration,f);A=[l,t]}else if(p){let[t,e]=h/u(s[p-1]){let A=t>e,a=A?e:t,o=A?t:e,[s,l]=kK(a,o,n,r,i),c=s.range(a,new Date(+o+1),l,!0);return A?c.reverse():c},kG=(t,e,n,r,i)=>{let A=t>e,a=A?e:t,o=A?t:e,[s,l]=kK(a,o,n,r,i),c=[s.floor(a,l),s.ceil(o,l)];return A?c.reverse():c};function kV(t){let e=t.getTimezoneOffset(),n=new Date(t);return n.setMinutes(n.getMinutes()+e,n.getSeconds(),n.getMilliseconds()),n}class kW extends h0{getDefaultOptions(){return{domain:[new Date(2e3,0,1),new Date(2e3,0,2)],range:[0,1],nice:!1,tickCount:5,tickInterval:void 0,unknown:void 0,clamp:!1,tickMethod:kz,interpolate:hX,mask:void 0,utc:!1}}chooseTransforms(){return[t=>+t,t=>new Date(t)]}chooseNice(){return kG}getTickMethodOptions(){let{domain:t,tickCount:e,tickInterval:n,utc:r}=this.options;return[t[0],t[t.length-1],e,n,r]}getFormatter(){let{mask:t,utc:e}=this.options,n=e?kR:kL,r=e?kV:hN;return e=>kk(r(e),t||function(t,e){let{second:n,minute:r,hour:i,day:A,week:a,month:o,year:s}=e;return n.floor(t)new kW(t);kX.props={};let kY=t=>e=>-t(-e),k$=(t,e)=>{let n=Math.log(t),r=t===Math.E?Math.log:10===t?Math.log10:2===t?Math.log2:t=>Math.log(t)/n;return e?kY(r):r},kq=(t,e)=>{let n=t===Math.E?Math.exp:e=>t**e;return e?kY(n):n},kJ=(t,e,n,r=10)=>{let i=t<0,A=kq(r,i),a=k$(r,i),o=e=1;e-=1){let n=t*e;if(n>l)break;n>=s&&f.push(n)}}else for(;c<=u;c+=1){let t=A(c);for(let e=1;el)break;n>=s&&f.push(n)}}2*f.length{let i=t<0,A=k$(r,i),a=kq(r,i),o=t>e,s=[a(Math.floor(A(o?e:t))),a(Math.ceil(A(o?t:e)))];return o?s.reverse():s};class k0 extends h0{getDefaultOptions(){return{domain:[1,10],range:[0,1],base:10,interpolate:hY,tickMethod:kJ,tickCount:5}}chooseNice(){return kZ}getTickMethodOptions(){let{domain:t,tickCount:e,base:n}=this.options;return[t[0],t[t.length-1],e,n]}chooseTransforms(){let{base:t,domain:e}=this.options,n=e[0]<0;return[k$(t,n),kq(t,n)]}clone(){return new k0(this.options)}}let k1=t=>new k0(t);k1.props={};let k2=t=>t<0?-Math.sqrt(-t):Math.sqrt(t);class k4 extends h0{getDefaultOptions(){return{domain:[0,1],range:[0,1],nice:!1,clamp:!1,round:!1,exponent:2,interpolate:hY,tickMethod:cR,tickCount:5}}constructor(t){super(t)}chooseTransforms(){let{exponent:t}=this.options;return 1===t?[hN,hN]:[.5===t?k2:e=>e<0?-((-e)**t):e**t,e=>e<0?-((-e)**(1/t)):e**(1/t)]}clone(){return new k4(this.options)}}let k5=t=>new k4(t);k5.props={};class k3 extends k4{getDefaultOptions(){return{domain:[0,1],range:[0,1],nice:!1,clamp:!1,round:!1,interpolate:hY,tickMethod:cR,tickCount:5,exponent:.5}}constructor(t){super(t)}update(t){super.update(t)}clone(){return new k3(this.options)}}let k6=t=>new k3(t);k6.props={};let k8=t=>new ph(t);k8.props={};let k9=t=>new pB(t);k9.props={};let k7=t=>new pb(t);k7.props={};let Ft=I5=class extends h1{getDefaultOptions(){return{domain:[0,1],unknown:void 0,nice:!1,clamp:!1,round:!1,interpolator:hN,tickMethod:cR,tickCount:5}}constructor(t){super(t)}clone(){return new I5(this.options)}};Ft=I5=function(t,e,n,r){var i,A=arguments.length,a=A<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)a=Reflect.decorate(t,e,n,r);else for(var o=t.length-1;o>=0;o--)(i=t[o])&&(a=(A<3?i(a):A>3?i(e,n,a):i(e,n))||a);return A>3&&a&&Object.defineProperty(e,n,a),a}([(I1=function(t){return[t(0),t(1)]},I2=t=>{let[e,n]=t;return hR(hX(0,1),hD(e,n))},t=>{t.prototype.rescale=function(){this.initRange(),this.nice();let[t]=this.chooseTransforms();this.composeOutput(t,this.chooseClamp(t))},t.prototype.initRange=function(){let{interpolator:t}=this.options;this.options.range=I1(t)},t.prototype.composeOutput=function(t,e){let{domain:n,interpolator:r,round:i}=this.getOptions(),A=I2(n.map(t)),a=i?t=>{let e=r(t);return eG(e)?Math.round(e):e}:r;this.output=hR(a,A,e,t)},t.prototype.invert=void 0})],Ft);let Fe=t=>new Ft(t);Fe.props={};let Fn=t=>new cK(t);function Fr({colorDefault:t,colorBlack:e,colorWhite:n,colorStroke:r,colorBackground:i,padding1:A,padding2:a,padding3:o,alpha90:s,alpha65:l,alpha45:c,alpha25:u,alpha10:f,category10:h,category20:d,sizeDefault:p=1,padding:g="auto",margin:y=16}){return{padding:g,margin:y,size:p,color:t,category10:h,category20:d,enter:{duration:300,fill:"both",delay:0},update:{duration:300,fill:"both",delay:0},exit:{duration:300,fill:"both",delay:0},view:{viewFill:i,plotFill:"transparent",mainFill:"transparent",contentFill:"transparent"},line:{line:{fill:"",strokeOpacity:1,lineWidth:1,lineCap:"round"}},point:{point:{r:3,fillOpacity:.95,lineWidth:0},hollow:{r:3,strokeOpacity:.95,lineWidth:1},plus:{r:3,strokeOpacity:.95,lineWidth:3},diamond:{r:3,strokeOpacity:.95,lineWidth:1}},interval:{rect:{fillOpacity:.95},hollow:{fill:"",strokeOpacity:1,lineWidth:2}},area:{area:{fillOpacity:.85,lineWidth:0}},polygon:{polygon:{fillOpacity:.95}},cell:{cell:{fillOpacity:.95},hollow:{fill:"",strokeOpacity:1,lineWidth:2}},rect:{rect:{fillOpacity:.95},hollow:{fill:"",strokeOpacity:1,lineWidth:2}},link:{link:{fill:"",strokeOpacity:1}},vector:{vector:{fillOpacity:1}},box:{box:{fillOpacity:.95,stroke:e,lineWidth:1}},text:{text:{fill:"#1D2129",fontSize:12,lineWidth:0,connectorStroke:r,connectorStrokeOpacity:.45,connectorLineWidth:1,backgroundFill:r,backgroundFillOpacity:.15,backgroundPadding:[2,4],startMarkerSymbol:"circle",startMarkerSize:4,endMarkerSymbol:"circle",endMarkerSize:4},badge:{fill:"#1D2129",fillOpacity:.65,lineWidth:0,fontSize:10,textAlign:"center",textBaseline:"middle",markerFill:r,markerFillOpacity:.25,markerStrokeOpacity:0}},lineX:{line:{stroke:r,strokeOpacity:.45,lineWidth:1}},lineY:{line:{stroke:r,strokeOpacity:.45,lineWidth:1}},rangeX:{range:{fill:r,fillOpacity:.15,lineWidth:0}},rangeY:{range:{fill:r,fillOpacity:.15,lineWidth:0}},connector:{connector:{stroke:r,strokeOpacity:.45,lineWidth:1,connectLength1:12,endMarker:!0,endMarkerSize:6,endMarkerFill:r,endMarkerFillOpacity:.95}},axis:{arrow:!1,gridLineDash:[3,4],gridLineWidth:.5,gridStroke:e,gridStrokeOpacity:f,labelAlign:"horizontal",labelFill:e,labelOpacity:c,labelFontSize:12,labelFontWeight:"normal",labelSpacing:A,line:!1,lineLineWidth:.5,lineStroke:e,lineStrokeOpacity:c,tickLength:4,tickLineWidth:1,tickStroke:e,tickOpacity:c,titleFill:e,titleOpacity:s,titleFontSize:12,titleFontWeight:"normal",titleSpacing:12,titleTransformOrigin:"center",lineArrowOffset:6,lineArrowSize:6},axisTop:{gridDirection:"positive",labelDirection:"negative",tickDirection:"negative",titlePosition:"top",titleSpacing:12,labelSpacing:4,titleTextBaseline:"middle"},axisBottom:{gridDirection:"negative",labelDirection:"positive",tickDirection:"positive",titlePosition:"bottom",titleSpacing:12,labelSpacing:4,titleTextBaseline:"bottom",titleTransform:"translate(0, 8)"},axisLeft:{gridDirection:"positive",labelDirection:"negative",labelSpacing:4,tickDirection:"negative",titlePosition:"left",titleSpacing:12,titleTextBaseline:"middle",titleDirection:"vertical",titleTransform:"rotate(-90) translate(0, -8)",titleTransformOrigin:"center"},axisRight:{gridDirection:"negative",labelDirection:"positive",labelSpacing:4,tickDirection:"positive",titlePosition:"right",titleSpacing:12,titleTextBaseline:"top",titleDirection:"vertical",titleTransformOrigin:"center"},axisLinear:{girdClosed:!0,gridConnect:"arc",gridDirection:"negative",gridType:"surround",titlePosition:"top",titleSpacing:0},axisArc:{title:!1,titlePosition:"inner",line:!1,tick:!0,labelSpacing:4},axisRadar:{girdClosed:!0,gridStrokeOpacity:.3,gridType:"surround",tick:!1,titlePosition:"start"},legendCategory:{backgroundFill:"transparent",itemBackgroundFill:"transparent",itemLabelFill:e,itemLabelFillOpacity:s,itemLabelFontSize:12,itemLabelFontWeight:"normal",itemMarkerFillOpacity:1,itemMarkerSize:8,focusMarkerSize:12,itemSpacing:[A,A,A/2],itemValueFill:e,itemValueFillOpacity:.65,itemValueFontSize:12,itemValueFontWeight:"normal",navButtonFill:e,navButtonFillOpacity:.65,navPageNumFill:e,navPageNumFillOpacity:.45,navPageNumFontSize:12,padding:8,title:!1,titleFill:e,titleFillOpacity:.65,titleFontSize:12,titleFontWeight:"normal",titleSpacing:4,tickStroke:e,tickStrokeOpacity:.25,rowPadding:A,colPadding:a,maxRows:3,maxCols:3},legendContinuous:{handleHeight:12,handleLabelFill:e,handleLabelFillOpacity:c,handleLabelFontSize:12,handleLabelFontWeight:"normal",handleMarkerFill:e,handleMarkerFillOpacity:.6,handleMarkerLineWidth:1,handleMarkerStroke:e,handleMarkerStrokeOpacity:.25,handleWidth:10,labelFill:e,labelFillOpacity:c,labelFontSize:12,labelFontWeight:"normal",labelSpacing:3,tick:!0,tickLength:12,ribbonSize:12,ribbonFill:"#aaa",handle:!0,handleLabel:!1,handleShape:"slider",handleIconSize:12/1.8,indicator:!1,titleFontSize:12,titleSpacing:4,titleFontWeight:"normal",titleFillOpacity:s,tickStroke:e,tickStrokeOpacity:c},label:{fill:e,fillOpacity:.65,fontSize:12,fontWeight:"normal",stroke:void 0,offset:12,connectorStroke:e,connectorStrokeOpacity:.45,connectorLineWidth:1,connectorLength:12,connectorLength2:8,connectorDistance:4},innerLabel:{fill:n,fontSize:12,fillOpacity:.85,fontWeight:"normal",stroke:void 0,offset:0},htmlLabel:{fontSize:12,opacity:.65,color:e,fontWeight:"normal"},slider:{trackSize:16,trackFill:r,trackFillOpacity:1,selectionFill:t,selectionFillOpacity:.15,handleIconSize:10,handleIconFill:"#f7f7f7",handleIconFillOpacity:1,handleIconStroke:e,handleIconStrokeOpacity:.25,handleIconLineWidth:1,handleIconRadius:2,handleLabelFill:e,handleLabelFillOpacity:.45,handleLabelFontSize:12,handleLabelFontWeight:"normal"},scrollbar:{padding:[0,0,0,0],trackSize:6,isRound:!0,slidable:!0,scrollable:!0,trackFill:"#e5e5e5",trackFillOpacity:0,thumbFill:"#000",thumbFillOpacity:.15,thumbHighlightedFillOpacity:.2},title:{spacing:8,titleFill:e,titleFillOpacity:s,titleFontSize:16,titleFontWeight:"bold",titleTextBaseline:"top",subtitleFill:e,subtitleFillOpacity:l,subtitleFontSize:12,subtitleFontWeight:"normal",subtitleTextBaseline:"top"},tooltip:{css:{[uR("tooltip")]:{"font-family":"sans-serif"}}}}}Fn.props={};let Fi=Fr({colorBlack:"#1D2129",colorWhite:"#ffffff",colorStroke:"#416180",colorDefault:"#1783FF",colorBackground:"transparent",category10:["#1783FF","#00C9C9","#F0884D","#D580FF","#7863FF","#60C42D","#BD8F24","#FF80CA","#2491B3","#17C76F"],category20:["#1783FF","#00C9C9","#F0884D","#D580FF","#7863FF","#60C42D","#BD8F24","#FF80CA","#2491B3","#17C76F","#AABA01","#BC7CFC","#237CBC","#2DE379","#CE8032","#FF7AF4","#545FD3","#AFE410","#D8C608","#FFA1E0"],padding1:8,padding2:12,padding3:20,alpha90:.9,alpha65:.65,alpha45:.45,alpha25:.25,alpha10:.1}),FA=t=>cC({},Fi,t);FA.props={};let Fa=t=>cC({},FA(),{category10:"category10",category20:"category20"},t);Fa.props={};let Fo=Fr({colorBlack:"#fff",colorWhite:"#000",colorStroke:"#416180",colorDefault:"#1783FF",colorBackground:"transparent",category10:["#1783FF","#00C9C9","#F0884D","#D580FF","#7863FF","#60C42D","#BD8F24","#FF80CA","#2491B3","#17C76F"],category20:["#1783FF","#00C9C9","#F0884D","#D580FF","#7863FF","#60C42D","#BD8F24","#FF80CA","#2491B3","#17C76F","#AABA01","#BC7CFC","#237CBC","#2DE379","#CE8032","#FF7AF4","#545FD3","#AFE410","#D8C608","#FFA1E0"],padding1:8,padding2:12,padding3:20,alpha90:.9,alpha65:.65,alpha45:.45,alpha25:.25,alpha10:.25}),Fs=t=>cC({},Fo,{tooltip:{crosshairsStroke:"#fff",crosshairsLineWidth:1,crosshairsStrokeOpacity:.25,css:{[uR("tooltip")]:{background:"#1f1f1f",opacity:.95},[uR("tooltip-title")]:{color:"#A6A6A6"},[uR("tooltip-list-item-name-label")]:{color:"#A6A6A6"},[uR("tooltip-list-item-value")]:{color:"#A6A6A6"}}}},t),Fl=t=>Object.assign({},Fs(),{category10:"category10",category20:"category20"},t);Fl.props={};let Fc=Fr({colorBlack:"#000",colorWhite:"#fff",colorStroke:"#888",colorDefault:"#4e79a7",colorBackground:"transparent",category10:["#4e79a7","#f28e2c","#e15759","#76b7b2","#59a14f","#edc949","#af7aa1","#ff9da7","#9c755f","#bab0ab"],category20:["#4e79a7","#f28e2c","#e15759","#76b7b2","#59a14f","#edc949","#af7aa1","#ff9da7","#9c755f","#bab0ab"],padding1:8,padding2:12,padding3:20,alpha90:.9,alpha65:.65,alpha45:.45,alpha25:.25,alpha10:.1}),Fu=t=>cC({},Fc,{text:{text:{fontSize:10}},axis:{gridLineDash:[0,0],gridLineWidth:1,gridStroke:"#ddd",gridStrokeOpacity:1,labelOpacity:1,labelStrokeOpacity:1,labelFontSize:10,line:!0,lineLineWidth:1,lineStroke:"#888",lineStrokeOpacity:1,tickLength:5,tickStrokeOpacity:1,titleOpacity:1,titleStrokeOpacity:1,titleFillOpacity:1,titleFontSize:11,titleFontWeight:"bold"},axisLeft:{gridFilter:(t,e)=>0!==e},axisRight:{gridFilter:(t,e)=>0!==e},legendCategory:{itemLabelFillOpacity:1,itemLabelFontSize:10,itemValueFillOpacity:1,itemValueFontSize:10,titleFillOpacity:1,titleFontSize:11,titleFontWeight:"bold"},legendContinuous:{handleLabelFontSize:10,labelFillOpacity:.45,labelFontSize:10},label:{fontSize:10},innerLabel:{fontSize:10},htmlLabel:{fontSize:10},slider:{handleLabelFontSize:10,trackFillOpacity:.05}},t);Fu.props={};let Ff=t=>(...e)=>{let n=dy(Object.assign({},{crossPadding:50},t))(...e);return dh(n,t),n};Ff.props=Object.assign(Object.assign({},dy.props),{defaultPosition:"bottom"});let Fh=t=>(...e)=>{let n=dy(Object.assign({},{crossPadding:10},t))(...e);return dh(n,t),n};Fh.props=Object.assign(Object.assign({},dy.props),{defaultPosition:"left"});let Fd=function(){};var Fp=fc({prevBtnGroup:"prev-btn-group",prevBtn:"prev-btn",nextBtnGroup:"next-btn-group",nextBtn:"next-btn",pageInfoGroup:"page-info-group",pageInfo:"page-info",playWindow:"play-window",contentGroup:"content-group",controller:"controller",clipPath:"clip-path"},"navigator"),Fg=function(t){function e(e){var n=t.call(this,e,{x:0,y:0,animate:{easing:"linear",duration:200,fill:"both"},buttonCursor:"pointer",buttonFill:"black",buttonD:[["M",-6,-6],["L",6,0],["L",-6,6],["Z"]],buttonSize:12,controllerPadding:5,controllerSpacing:5,formatter:function(t,e){return"".concat(t,"/").concat(e)},defaultPage:0,loop:!1,orientation:"horizontal",pageNumFill:"black",pageNumFontSize:12,pageNumTextAlign:"start",pageNumTextBaseline:"middle"})||this;return n.playState="idle",n.contentGroup=n.appendChild(new ou({class:Fp.contentGroup.name})),n.playWindow=n.contentGroup.appendChild(new ou({class:Fp.playWindow.name})),n.innerCurrPage=n.defaultPage,n}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"defaultPage",{get:function(){return eY(this.attributes.defaultPage,0,Math.max(this.pageViews.length-1,0))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pageViews",{get:function(){return this.playWindow.children},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"controllerShape",{get:function(){return this.totalPages>1?{width:55,height:0}:{width:0,height:0}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"pageShape",{get:function(){var t,e,n=this.pageViews,r=(0,e$.zs)(((null==(e=(t=n.map(function(t){var e=t.getBBox();return[e.width,e.height]}))[0])?void 0:e.map(function(e,n){return t.map(function(t){return t[n]})}))||[]).map(function(t){return Math.max.apply(Math,(0,e$.fX)([],(0,e$.zs)(t),!1))}),2),i=r[0],A=r[1],a=this.attributes,o=a.pageWidth,s=a.pageHeight;return{pageWidth:void 0===o?i:o,pageHeight:void 0===s?A:s}},enumerable:!1,configurable:!0}),e.prototype.getContainer=function(){return this.playWindow},Object.defineProperty(e.prototype,"totalPages",{get:function(){return this.pageViews.length},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"currPage",{get:function(){return this.innerCurrPage},enumerable:!1,configurable:!0}),e.prototype.getBBox=function(){var e=t.prototype.getBBox.call(this),n=e.x,r=e.y,i=this.controllerShape,A=this.pageShape,a=A.pageWidth,o=A.pageHeight;return new h6(n,r,a+i.width,o)},e.prototype.goTo=function(t){var e=this,n=this.attributes.animate,r=this.currPage,i=this.playState,A=this.playWindow,a=this.pageViews;if("idle"!==i||t<0||a.length<=0||t>=a.length)return null;a[r].setLocalPosition(0,0),this.prepareFollowingPage(t);var o=(0,e$.zs)(this.getFollowingPageDiff(t),2),s=o[0],l=o[1];this.playState="running";var c=u8(A,[{transform:"translate(0, 0)"},{transform:"translate(".concat(-s,", ").concat(-l,")")}],n);return u3(c,function(){e.innerCurrPage=t,e.playState="idle",e.setVisiblePages([t]),e.updatePageInfo()}),c},e.prototype.prev=function(){var t=this.attributes.loop,e=this.pageViews.length,n=this.currPage;if(!t&&n<=0)return null;var r=t?(n-1+e)%e:eY(n-1,0,e);return this.goTo(r)},e.prototype.next=function(){var t=this.attributes.loop,e=this.pageViews.length,n=this.currPage;if(!t&&n>=e-1)return null;var r=t?(n+1)%e:eY(n+1,0,e);return this.goTo(r)},e.prototype.renderClipPath=function(t){var e=this.pageShape,n=e.pageWidth,r=e.pageHeight;if(!n||!r){this.contentGroup.style.clipPath=void 0;return}this.clipPath=t.maybeAppendByClassName(Fp.clipPath,"rect").styles({width:n,height:r}),this.contentGroup.attr("clipPath",this.clipPath.node())},e.prototype.setVisiblePages=function(t){this.playWindow.children.forEach(function(e,n){t.includes(n)?u1(e):u2(e)})},e.prototype.adjustControllerLayout=function(){var t=this.prevBtnGroup,e=this.nextBtnGroup,n=this.pageInfoGroup,r=this.attributes,i=r.orientation,A=r.controllerPadding,a=n.getBBox(),o=a.width;a.height;var s=(0,e$.zs)("horizontal"===i?[-180,0]:[-90,90],2),l=s[0],c=s[1];t.setLocalEulerAngles(l),e.setLocalEulerAngles(c);var u=t.getBBox(),f=u.width,h=u.height,d=e.getBBox(),p=d.width,g=d.height,y=Math.max(f,o,p),v="horizontal"===i?{offset:[[0,0],[f/2+A,0],[f+o+2*A,0]],textAlign:"start"}:{offset:[[y/2,-h-A],[y/2,0],[y/2,g+A]],textAlign:"center"},b=(0,e$.zs)(v.offset,3),B=(0,e$.zs)(b[0],2),w=B[0],x=B[1],C=(0,e$.zs)(b[1],2),O=C[0],E=C[1],k=(0,e$.zs)(b[2],2),F=k[0],Q=k[1],M=v.textAlign,U=n.querySelector("text");U&&(U.style.textAlign=M),t.setLocalPosition(w,x),n.setLocalPosition(O,E),e.setLocalPosition(F,Q)},e.prototype.updatePageInfo=function(){var t,e=this.currPage,n=this.pageViews,r=this.attributes.formatter;n.length<2||(null==(t=this.pageInfoGroup.querySelector(Fp.pageInfo.class))||t.attr("text",r(e+1,n.length)),this.adjustControllerLayout())},e.prototype.getFollowingPageDiff=function(t){var e=this.currPage;if(e===t)return[0,0];var n=this.attributes.orientation,r=this.pageShape,i=r.pageWidth,A=r.pageHeight,a=t=2,c=t.maybeAppendByClassName(Fp.controller,"g");if(u4(c.node(),l),l){var u=fN(this.attributes,"button"),f=fN(this.attributes,"pageNum"),h=(0,e$.zs)(fR(u),2),d=h[0],p=h[1],g=d.size,y=(0,e$.Tt)(d,["size"]),v=!c.select(Fp.prevBtnGroup.class).node(),b=c.maybeAppendByClassName(Fp.prevBtnGroup,"g").styles(p);this.prevBtnGroup=b.node();var B=b.maybeAppendByClassName(Fp.prevBtn,"path");if(A){var w=dJ(Fp.prevBtn.name,"prev-btn",A);B.node().setAttribute("class",w)}var x=c.maybeAppendByClassName(Fp.nextBtnGroup,"g").styles(p);this.nextBtnGroup=x.node();var C=x.maybeAppendByClassName(Fp.nextBtn,"path");if(A){var O=dJ(Fp.nextBtn.name,"next-btn",A);C.node().setAttribute("class",O)}[B,C].forEach(function(t){t.styles((0,e$.Cl)((0,e$.Cl)({},y),{transformOrigin:"center"})),fJ(t.node(),g,!0)});var E=c.maybeAppendByClassName(Fp.pageInfoGroup,"g");this.pageInfoGroup=E.node();var k=E.maybeAppendByClassName(Fp.pageInfo,"text");if(k.styles(f),A){var F=dJ(Fp.pageInfo.name,"page-info",A);k.node().setAttribute("class",F)}this.updatePageInfo(),c.node().setLocalPosition(o+r,s/2),v&&(this.prevBtnGroup.addEventListener("click",function(){e.prev()}),this.nextBtnGroup.addEventListener("click",function(){e.next()}))}},e.prototype.render=function(t,e){var n=t.x,r=t.y;this.attr("transform","translate(".concat(void 0===n?0:n,", ").concat(void 0===r?0:r,")"));var i=fl(e);this.renderClipPath(i),this.renderController(i),this.setVisiblePages([this.defaultPage]),this.goTo(this.defaultPage)},e.prototype.bindEvents=function(){var t=this,e=cu(function(){return t.render(t.attributes,t)},50);this.playWindow.addEventListener(aQ.INSERTED,e),this.playWindow.addEventListener(aQ.REMOVED,e)},e}(fi),Fy="component-poptip",Fv="component-poptip-arrow",Fm="component-poptip-text",Fb=((I3={})[".".concat(Fy)]={visibility:"visible",position:"absolute","background-color":"rgba(0, 0, 0)","box-shadow":"0px 0px 10px #aeaeae","border-radius":"3px",color:"#fff",opacity:.8,"font-size":"12px",padding:"4px 6px",display:"flex","justify-content":"center","align-items":"center","z-index":8,transition:"visibility 50ms"},I3[".".concat(Fm)]={"text-align":"center"},I3[".".concat(Fy,"[data-position='top']")]={transform:"translate(-50%, -100%)"},I3[".".concat(Fy,"[data-position='left']")]={transform:"translate(-100%, -50%)"},I3[".".concat(Fy,"[data-position='right']")]={transform:"translate(0, -50%)"},I3[".".concat(Fy,"[data-position='bottom']")]={transform:"translate(-50%, 0)"},I3[".".concat(Fy,"[data-position='top-left']")]={transform:"translate(0,-100%)"},I3[".".concat(Fy,"[data-position='top-right']")]={transform:"translate(-100%,-100%)"},I3[".".concat(Fy,"[data-position='left-top']")]={transform:"translate(-100%, 0)"},I3[".".concat(Fy,"[data-position='left-bottom']")]={transform:"translate(-100%, -100%)"},I3[".".concat(Fy,"[data-position='right-top']")]={transform:"translate(0, 0)"},I3[".".concat(Fy,"[data-position='right-bottom']")]={transform:"translate(0, -100%)"},I3[".".concat(Fy,"[data-position='bottom-left']")]={transform:"translate(0, 0)"},I3[".".concat(Fy,"[data-position='bottom-right']")]={transform:"translate(-100%, 0)"},I3[".".concat(Fv)]={width:"4px",height:"4px",transform:"rotate(45deg)","background-color":"rgba(0, 0, 0)",position:"absolute","z-index":-1},I3[".".concat(Fy,"[data-position='top']")]={transform:"translate(-50%, calc(-100% - 5px))"},I3["[data-position='top'] .".concat(Fv)]={bottom:"-2px"},I3[".".concat(Fy,"[data-position='left']")]={transform:"translate(calc(-100% - 5px), -50%)"},I3["[data-position='left'] .".concat(Fv)]={right:"-2px"},I3[".".concat(Fy,"[data-position='right']")]={transform:"translate(5px, -50%)"},I3["[data-position='right'] .".concat(Fv)]={left:"-2px"},I3[".".concat(Fy,"[data-position='bottom']")]={transform:"translate(-50%, 5px)"},I3["[data-position='bottom'] .".concat(Fv)]={top:"-2px"},I3[".".concat(Fy,"[data-position='top-left']")]={transform:"translate(0, calc(-100% - 5px))"},I3["[data-position='top-left'] .".concat(Fv)]={left:"10px",bottom:"-2px"},I3[".".concat(Fy,"[data-position='top-right']")]={transform:"translate(-100%, calc(-100% - 5px))"},I3["[data-position='top-right'] .".concat(Fv)]={right:"10px",bottom:"-2px"},I3[".".concat(Fy,"[data-position='left-top']")]={transform:"translate(calc(-100% - 5px), 0)"},I3["[data-position='left-top'] .".concat(Fv)]={right:"-2px",top:"8px"},I3[".".concat(Fy,"[data-position='left-bottom']")]={transform:"translate(calc(-100% - 5px), -100%)"},I3["[data-position='left-bottom'] .".concat(Fv)]={right:"-2px",bottom:"8px"},I3[".".concat(Fy,"[data-position='right-top']")]={transform:"translate(5px, 0)"},I3["[data-position='right-top'] .".concat(Fv)]={left:"-2px",top:"8px"},I3[".".concat(Fy,"[data-position='right-bottom']")]={transform:"translate(5px, -100%)"},I3["[data-position='right-bottom'] .".concat(Fv)]={left:"-2px",bottom:"8px"},I3[".".concat(Fy,"[data-position='bottom-left']")]={transform:"translate(0, 5px)"},I3["[data-position='bottom-left'] .".concat(Fv)]={top:"-2px",left:"8px"},I3[".".concat(Fy,"[data-position='bottom-right']")]={transform:"translate(-100%, 5px)"},I3["[data-position='bottom-right'] .".concat(Fv)]={top:"-2px",right:"8px"},I3),FB=void 0,Fw=function(t){var e;return function(){for(var n=[],r=0;r'),eX(r))?t.innerHTML+=r:r&&(r instanceof Element||r instanceof Document)&&t.appendChild(r),i&&(t.getElementsByClassName(Fm)[0].textContent=i),this.applyStyles(),this.container.style.visibility=this.visibility},e.prototype.applyStyles=function(){var t=Object.entries(ft({},Fb,this.style.domStyles)).reduce(function(t,e){var n=(0,e$.zs)(e,2),r=n[0],i=Object.entries(n[1]).reduce(function(t,e){var n=(0,e$.zs)(e,2),r=n[0],i=n[1];return"".concat(t).concat(r,": ").concat(i,";")},"");return"".concat(t).concat(r,"{").concat(i,"}")},"");if(this.domStyles!==t){this.domStyles=t;var e=this.container.querySelector("style");e&&this.container.removeChild(e),(e=document.createElement("style")).innerHTML=t,this.container.appendChild(e)}},e.prototype.setOffsetPosition=function(t,e,n){void 0===n&&(n=this.style.offset);var r=(0,e$.zs)(n,2),i=r[0],A=r[1];this.container.style.left="".concat(t+(void 0===i?0:i),"px"),this.container.style.top="".concat(e+(void 0===A?0:A),"px")},e.tag="poptip",e.defaultOptions={style:{x:0,y:0,width:0,height:0,target:null,visibility:"hidden",text:"",position:"top",follow:!1,offset:[0,0],domStyles:Fb,template:'
    ')}},e}(fi),FO=fc({layout:"flex",markerGroup:"marker-group",marker:"marker",labelGroup:"label-group",label:"label",valueGroup:"value-group",focusGroup:"focus-group",focus:"focus",value:"value",backgroundGroup:"background-group",background:"background"},"legend-category-item"),FE={offset:[0,20],domStyles:{".component-poptip":{opacity:"1",padding:"8px 12px",background:"#fff",boxShadow:"0 2px 8px rgba(0, 0, 0, 0.15)"},".component-poptip-arrow":{display:"none"},".component-poptip-text":{color:"#000",lineHeight:"20px"}}},Fk=function(t){function e(e,n){var r=t.call(this,e,{span:[1,1],marker:function(){return new oo({style:{r:6}})},markerSize:10,labelFill:"#646464",valueFill:"#646464",labelFontSize:12,valueFontSize:12,labelTextBaseline:"middle",valueTextBaseline:"middle"})||this;return r.keyFields={},r.keyFields=n||{},r}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"showValue",{get:function(){var t=this.attributes.valueText;return!!t&&("string"==typeof t||"number"==typeof t?""!==t:"function"==typeof t||""!==t.attr("text"))},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"actualSpace",{get:function(){var t=this.labelGroup,e=this.valueGroup,n=this.attributes,r=n.markerSize,i=n.focus,A=n.focusMarkerSize,a=t.node().getBBox(),o=a.width,s=a.height,l=e.node().getBBox();return{markerWidth:r,labelWidth:o,valueWidth:l.width,focusWidth:i?null!=A?A:12:0,height:Math.max(r,s,l.height)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"span",{get:function(){var t=this.attributes.span;if(!t)return[1,1];var e=(0,e$.zs)(hh(t),2),n=e[0],r=e[1],i=this.showValue?r:0,A=n+i;return[n/A,i/A]},enumerable:!1,configurable:!0}),e.prototype.setAttribute=function(e,n){t.prototype.setAttribute.call(this,e,n)},Object.defineProperty(e.prototype,"shape",{get:function(){var t,e=this.attributes,n=e.markerSize,r=e.width,i=this.actualSpace,A=i.markerWidth,a=i.focusWidth,o=i.height,s=this.actualSpace,l=s.labelWidth,c=s.valueWidth,u=(0,e$.zs)(this.spacing,3),f=u[0],h=u[1],d=u[2];if(r){var p=r-n-f-h-a-d,g=(0,e$.zs)(this.span,2),y=g[0],v=g[1];l=(t=(0,e$.zs)([y*p,v*p],2))[0],c=t[1]}return{width:A+l+c+f+h+a+d,height:o,markerWidth:A,labelWidth:l,valueWidth:c,focusWidth:a}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"spacing",{get:function(){var t=this.attributes,e=t.spacing,n=t.focus;if(!e)return[0,0,0];var r=(0,e$.zs)(hh(e),3),i=r[0],A=r[1],a=r[2];return[i,this.showValue?A:0,n?a:0]},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"layout",{get:function(){var t=this.shape,e=t.markerWidth,n=t.labelWidth,r=t.valueWidth,i=t.focusWidth,A=t.width,a=t.height,o=(0,e$.zs)(this.spacing,3),s=o[0],l=o[1];return{height:a,width:A,markerWidth:e,labelWidth:n,valueWidth:r,focusWidth:i,position:[e/2,e+s,e+n+s+l,e+n+r+s+l+o[2]+i/2]}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"scaleSize",{get:function(){var t,e=(t=this.markerGroup.node().querySelector(FO.marker.class))?t.style:{},n=this.attributes,r=n.markerSize,i=n.markerStrokeWidth,A=void 0===i?e.strokeWidth:i,a=n.markerLineWidth,o=void 0===a?e.lineWidth:a,s=n.markerStroke,l=void 0===s?e.stroke:s,c=(A||o||+!!l)*Math.sqrt(2),u=this.markerGroup.node().getBBox();return(1-c/Math.max(u.width,u.height))*r},enumerable:!1,configurable:!0}),e.prototype.renderMarker=function(t){var e=this,n=this.attributes,r=n.marker,i=n.classNamePrefix,A=fN(this.attributes,"marker");this.markerGroup=t.maybeAppendByClassName(FO.markerGroup,"g").style("zIndex",0),fA(!!r,this.markerGroup,function(){var t,n=e.markerGroup.node(),a=null==(t=n.childNodes)?void 0:t[0],o=dJ(FO.marker.name,dZ,i),s="string"==typeof r?new d9({style:{symbol:r},className:o}):r();a?s.nodeName===a.nodeName?a instanceof d9?a.update((0,e$.Cl)((0,e$.Cl)({},A),{symbol:r})):(!function(t,e){var n,r,i=e.attributes;try{for(var A=(0,e$.Ju)(Object.entries(i)),a=A.next();!a.done;a=A.next()){var o=(0,e$.zs)(a.value,2),s=o[0],l=o[1];"id"!==s&&"className"!==s&&t.attr(s,l)}}catch(t){n={error:t}}finally{try{a&&!a.done&&(r=A.return)&&r.call(A)}finally{if(n)throw n.error}}}(a,s),fl(a).styles(A)):(a.remove(),s instanceof d9||(s.className=dJ(FO.marker.name,dZ,i)),fl(s).styles(A),n.appendChild(s)):(s instanceof d9||(s.className=dJ(FO.marker.name,dZ,i),fl(s).styles(A)),n.appendChild(s)),e.markerGroup.node().scale(1/e.markerGroup.node().getScale()[0]);var l=fJ(e.markerGroup.node(),e.scaleSize,!0);e.markerGroup.node().style._transform="scale(".concat(l,")")})},e.prototype.renderLabel=function(t){var e=fN(this.attributes,"label"),n=e.text,r=(0,e$.Tt)(e,["text"]),i=this.attributes.classNamePrefix;this.labelGroup=t.maybeAppendByClassName(FO.labelGroup,"g").style("zIndex",0);var A=dJ(FO.label.name,"label",i),a=this.labelGroup.maybeAppendByClassName(FO.label,function(){return fq(n)});a.node().setAttribute("class",A),a.styles(r)},e.prototype.renderValue=function(t){var e=this,n=fN(this.attributes,"value"),r=n.text,i=(0,e$.Tt)(n,["text"]),A=this.attributes.classNamePrefix;this.valueGroup=t.maybeAppendByClassName(FO.valueGroup,"g").style("zIndex",0),fA(this.showValue,this.valueGroup,function(){var t=dJ(FO.value.name,"value",A),n=e.valueGroup.maybeAppendByClassName(FO.value,function(){return fq(r)});n.node().setAttribute("class",t),n.styles(i)})},e.prototype.createPoptip=function(){var t=this.attributes.poptip||{},e=new FC({style:ft(FE,(t.render,(0,e$.Tt)(t,["render"])))});return this.poptipGroup=e,e},e.prototype.bindPoptip=function(t){var e=this,n=this.attributes.poptip;n&&(this.poptipGroup||this.createPoptip()).bind(t,function(){var t=e.attributes,r=t.labelText,i=t.valueText,A=t.markerFill,a="string"==typeof r?r:null==r?void 0:r.attr("text"),o="string"==typeof i?i:null==i?void 0:i.attr("text");if("function"==typeof n.render)return{html:n.render((0,e$.Cl)((0,e$.Cl)({},e.keyFields),{label:a,value:o,color:A}))};var s="";return("string"==typeof a||"number"==typeof a)&&(s+='
    '.concat(a,"
    ")),("string"==typeof o||"number"==typeof o)&&(s+='
    '.concat(o,"
    ")),{html:s}})},e.prototype.renderFocus=function(t){var e=this,n=this.attributes,r=n.focus,i=n.focusMarkerSize,A=n.classNamePrefix,a={x:0,y:0,size:i,opacity:.6,symbol:"focus",stroke:"#aaaaaa",lineWidth:1};nh(r)||(this.focusGroup=t.maybeAppendByClassName(FO.focusGroup,"g").style("zIndex",0),fA(r,this.focusGroup,function(){var n=dJ(FO.focus.name,"focus-icon",A),r=new d9({style:(0,e$.Cl)((0,e$.Cl)({},a),{symbol:"focus"}),className:n}),i=new oo({style:{r:a.size/2,fill:"transparent"}}),o=e.focusGroup.node();o.appendChild(i),o.appendChild(r),r.update({opacity:0}),t.node().addEventListener("pointerenter",function(){r.update({opacity:1})}),t.node().addEventListener("pointerleave",function(){r.update({opacity:0})})}))},e.prototype.renderPoptip=function(t){var e=this;this.attributes.poptip&&[t.maybeAppendByClassName(FO.value,"g").node(),t.maybeAppendByClassName(FO.label,"g").node()].forEach(function(t){t&&e.bindPoptip(t)})},e.prototype.renderBackground=function(t){var e=this.shape,n=e.width,r=e.height,i=fN(this.attributes,"background");this.background=t.maybeAppendByClassName(FO.backgroundGroup,"g").style("zIndex",-1);var A=this.background.maybeAppendByClassName(FO.background,"rect");A.styles((0,e$.Cl)({width:n,height:r},i));var a=this.attributes.classNamePrefix,o=void 0===a?"":a;if(o){var s=dJ(FO.background.name,"background",o);A.node().setAttribute("class",s)}},e.prototype.adjustLayout=function(){var t=this.layout,e=t.labelWidth,n=t.valueWidth,r=t.height,i=(0,e$.zs)(t.position,4),A=i[0],a=i[1],o=i[2],s=i[3],l=r/2;this.markerGroup.styles({transform:"translate(".concat(A,", ").concat(l,")").concat(this.markerGroup.node().style._transform)}),this.labelGroup.styles({transform:"translate(".concat(a,", ").concat(l,")")}),this.focusGroup&&this.focusGroup.styles({transform:"translate(".concat(s,", ").concat(l,")")}),hu(this.labelGroup.select(FO.label.class).node(),Math.ceil(e)),this.showValue&&(this.valueGroup.styles({transform:"translate(".concat(o,", ").concat(l,")")}),hu(this.valueGroup.select(FO.value.class).node(),Math.ceil(n)))},e.prototype.render=function(t,e){var n=fl(e),r=t.x,i=t.y;n.styles({transform:"translate(".concat(void 0===r?0:r,", ").concat(void 0===i?0:i,")")}),this.renderMarker(n),this.renderLabel(n),this.renderValue(n),this.renderBackground(n),this.renderPoptip(n),this.renderFocus(n),this.adjustLayout()},e}(fi),FF=fc({page:"item-page",navigator:"navigator",item:"item"},"items"),FQ=function(t,e,n){return(void 0===n&&(n=!0),t)?e(t):n},FM=function(t){function e(e){var n=t.call(this,e,{data:[],gridRow:1/0,gridCol:void 0,padding:0,width:1e3,height:100,rowPadding:0,colPadding:0,layout:"flex",orientation:"horizontal",click:Fd,mouseenter:Fd,mouseleave:Fd})||this;return n.navigatorShape=[0,0],n}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"pageViews",{get:function(){return this.navigator.getContainer()},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"grid",{get:function(){var t=this.attributes,e=t.gridRow,n=t.gridCol,r=t.data;if(!e&&!n)throw Error("gridRow and gridCol can not be set null at the same time");return e&&n?[e,n]:e?[e,r.length]:[r.length,n]},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"renderData",{get:function(){var t=this.attributes,e=t.data,n=t.layout,r=t.poptip,i=t.focus,A=t.focusMarkerSize,a=t.classNamePrefix,o=fN(this.attributes,"item");return e.map(function(t,s){var l=t.id,c=void 0===l?s:l,u=t.label,f=t.value;return{id:"".concat(c),index:s,style:(0,e$.Cl)({layout:n,labelText:u,valueText:f,poptip:r,focus:i,focusMarkerSize:A,classNamePrefix:a},Object.fromEntries(Object.entries(o).map(function(n){var r=(0,e$.zs)(n,2);return[r[0],fK(r[1],[t,s,e])]})))}})},enumerable:!1,configurable:!0}),e.prototype.getGridLayout=function(){var t=this,e=this.attributes,n=e.orientation,r=e.width,i=e.rowPadding,A=e.colPadding,a=(0,e$.zs)(this.navigatorShape,1)[0],o=(0,e$.zs)(this.grid,2),s=o[0],l=o[1],c=l*s,u=0;return this.pageViews.children.map(function(e,o){var f,h,d=Math.floor(o/c),p=o%c,g=t.ifHorizontal(l,s),y=[Math.floor(p/g),p%g];"vertical"===n&&y.reverse();var v=(0,e$.zs)(y,2),b=v[0],B=v[1],w=(r-a-(l-1)*A)/l,x=e.getBBox().height,C=(0,e$.zs)([0,0],2),O=C[0],E=C[1];return"horizontal"===n?(O=(f=(0,e$.zs)([u,b*(x+i)],2))[0],E=f[1],u=B===l-1?0:u+w+A):(O=(h=(0,e$.zs)([B*(w+A),u],2))[0],E=h[1],u=b===s-1?0:u+x+i),{page:d,index:o,row:b,col:B,pageIndex:p,width:w,height:x,x:O,y:E}})},e.prototype.getFlexLayout=function(){var t=this.attributes,e=t.width,n=t.height,r=t.rowPadding,i=t.colPadding,A=(0,e$.zs)(this.navigatorShape,1)[0],a=(0,e$.zs)(this.grid,2),o=a[0],s=a[1],l=(0,e$.zs)([e-A,n],2),c=l[0],u=l[1],f=(0,e$.zs)([0,0,0,0,0,0,0,0],8),h=f[0],d=f[1],p=f[2],g=f[3],y=f[4],v=f[5],b=f[6],B=f[7];return this.pageViews.children.map(function(t,e){var n,A,a,l,f=t.getBBox(),w=f.width,x=f.height,C=0===b?0:i,O=b+C+w;return O<=c&&FQ(y,function(t){return t0?(this.navigatorShape=[55,0],t.call(this)):e},enumerable:!1,configurable:!0}),e.prototype.ifHorizontal=function(t,e){return d7(this.attributes.orientation,t,e)},e.prototype.flattenPage=function(t){t.querySelectorAll(FF.item.class).forEach(function(e){t.appendChild(e)}),t.querySelectorAll(FF.page.class).forEach(function(e){t.removeChild(e).destroy()})},e.prototype.renderItems=function(t){var e=this.attributes,n=e.click,r=e.mouseenter,i=e.mouseleave,A=e.classNamePrefix;this.flattenPage(t);var a=this.dispatchCustomEvent.bind(this),o=dJ(FF.item.name,"item",A);fl(t).selectAll(FF.item.class).data(this.renderData,function(t){return t.id}).join(function(t){return t.append(function(t){return new Fk({style:t.style},(0,e$.Tt)(t,["style"]))}).attr("className",o).on("click",function(){null==n||n(this),a("itemClick",{item:this})}).on("pointerenter",function(){null==r||r(this),a("itemMouseenter",{item:this})}).on("pointerleave",function(){null==i||i(this),a("itemMouseleave",{item:this})})},function(t){return t.each(function(t){var e=t.style;this.update(e)})},function(t){return t.remove()})},e.prototype.relayoutNavigator=function(){var t,e=this.attributes,n=e.layout,r=e.width,i=(null==(t=this.pageViews.children[0])?void 0:t.getBBox().height)||0,A=(0,e$.zs)(this.navigatorShape,2),a=A[0],o=A[1];this.navigator.update("grid"===n?{pageWidth:r-a,pageHeight:i-o}:{})},e.prototype.adjustLayout=function(){var t,e,n=this,r=Object.entries((t=this.itemsLayout,e="page",t.reduce(function(t,n){return(t[n[e]]=t[n[e]]||[]).push(n),t},{}))).map(function(t){var e=(0,e$.zs)(t,2);return{page:e[0],layouts:e[1]}}),i=(0,e$.fX)([],(0,e$.zs)(this.navigator.getContainer().children),!1);r.forEach(function(t){var e=t.layouts,r=n.pageViews.appendChild(new ou({className:FF.page.name}));e.forEach(function(t){var e=t.x,n=t.y,A=t.index,a=t.width,o=t.height,s=i[A];r.appendChild(s),gU(s,"__layout__",t),s.update({x:e,y:n,width:a,height:o})})}),this.relayoutNavigator()},e.prototype.renderNavigator=function(t){var e=this.attributes,n=ft({orientation:e.orientation,classNamePrefix:e.classNamePrefix},fN(this.attributes,"nav")),r=this;return t.selectAll(FF.navigator.class).data(["nav"]).join(function(t){return t.append(function(){return new Fg({style:n})}).attr("className",FF.navigator.name).each(function(){r.navigator=this})},function(t){return t.each(function(){this.update(n)})},function(t){return t.remove()}),this.navigator},e.prototype.getBBox=function(){return this.navigator.getBBox()},e.prototype.render=function(t,e){var n=this.attributes.data;if(n&&0!==n.length){var r=this.renderNavigator(fl(e));this.renderItems(r.getContainer()),this.adjustLayout()}},e.prototype.dispatchCustomEvent=function(t,e){var n=new ab(t,{detail:e});this.dispatchEvent(n)},e}(fi),FU=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return(0,e$.C6)(e,t),e.prototype.update=function(t){this.attr(t)},e}(oh),FS=function(t){function e(e){return t.call(this,e,pi)||this}return(0,e$.C6)(e,t),e.prototype.renderTitle=function(t,e,n){var r=this.attributes,i=r.showTitle,A=r.titleText,a=r.classNamePrefix,o=fN(this.attributes,"title"),s=(0,e$.zs)(fR(o),2),l=s[0],c=s[1];this.titleGroup=t.maybeAppendByClassName(pa.titleGroup,"g").styles(c);var u=(0,e$.Cl)((0,e$.Cl)({width:e,height:n},l),{text:i?A:"",classNamePrefix:a});this.title=this.titleGroup.maybeAppendByClassName(pa.title,function(){return new d5({style:u})}).update(u)},e.prototype.renderCustom=function(t){var e=this.attributes.data,n={innerHTML:this.attributes.render(e),pointerEvents:"auto"};t.maybeAppendByClassName(pa.html,function(){return new FU({className:pa.html.name,style:n})}).update(n)},e.prototype.renderItems=function(t,e){var n=e.x,r=e.y,i=e.width,A=e.height,a=fN(this.attributes,"title",!0),o=(0,e$.zs)(fR(a),2),s=o[0],l=o[1],c=(0,e$.Cl)((0,e$.Cl)({},s),{width:i,height:A,x:0,y:0});this.itemsGroup=t.maybeAppendByClassName(pa.itemsGroup,"g").styles((0,e$.Cl)((0,e$.Cl)({},l),{transform:"translate(".concat(n,", ").concat(r,")")}));var u=this;this.itemsGroup.selectAll(pa.items.class).data(["items"]).join(function(t){return t.append(function(){return new FM({style:c})}).attr("className",pa.items.name).each(function(){u.items=fl(this)})},function(t){return t.update(c)},function(t){return t.remove()})},e.prototype.adjustLayout=function(){if(this.attributes.showTitle){var t=this.title.node().getAvailableSpace(),e=t.x,n=t.y;this.itemsGroup.node().style.transform="translate(".concat(e,", ").concat(n,")")}},Object.defineProperty(e.prototype,"availableSpace",{get:function(){var t=this.attributes,e=t.showTitle,n=t.width,r=t.height;return e?this.title.node().getAvailableSpace():new h6(0,0,n,r)},enumerable:!1,configurable:!0}),e.prototype.getBBox=function(){var e,n,r=null==(e=this.title)?void 0:e.node(),i=null==(n=this.items)?void 0:n.node();return r&&i?function(t,e){var n=t.attributes,r=n.position,i=n.spacing,A=n.inset,a=n.text,o=t.getBBox(),s=e.getBBox(),l=hL(r),c=(0,e$.zs)(hh(a?i:0),4),u=c[0],f=c[1],h=c[2],d=c[3],p=(0,e$.zs)(hh(A),4),g=p[0],y=p[1],v=p[2],b=p[3],B=(0,e$.zs)([d+f,u+h],2),w=B[0],x=B[1],C=(0,e$.zs)([b+y,g+v],2),O=C[0],E=C[1];if("l"===l[0])return new h6(o.x,o.y,s.width+o.width+w+O,Math.max(s.height+E,o.height));if("t"===l[0])return new h6(o.x,o.y,Math.max(s.width+O,o.width),s.height+o.height+x+E);var k=(0,e$.zs)([e.attributes.width||s.width,e.attributes.height||s.height],2),F=k[0],Q=k[1];return new h6(s.x,s.y,F+o.width+w+O,Q+o.height+x+E)}(r,i):t.prototype.getBBox.call(this)},e.prototype.render=function(t,e){var n=this.attributes,r=n.width,i=n.height,A=n.x,a=n.y,o=n.classNamePrefix,s=n.render,l=fl(e),c=e.className||"legend-category";o?e.attr("className","".concat(c," ").concat(o,"legend")):e.className||e.attr("className","legend-category"),e.style.transform="translate(".concat(void 0===A?0:A,", ").concat(void 0===a?0:a,")"),s?this.renderCustom(l):(this.renderTitle(l,r,i),this.renderItems(l,this.availableSpace),this.adjustLayout())},e}(fi),FI=function(t,e,n,r){return new(n||(n=Promise))(function(i,A){function a(t){try{s(r.next(t))}catch(t){A(t)}}function o(t){try{s(r.throw(t))}catch(t){A(t)}}function s(t){var e;t.done?i(t.value):((e=t.value)instanceof n?e:new n(function(t){t(e)})).then(a,o)}s((r=r.apply(t,e||[])).next())})};let FT="legend-category",FL="legend-html-category";function F_(t){return t.getElementsByClassName("legend-category-item-marker")[0]}function FP(t){return t.getElementsByClassName("legend-category-item-label")[0]}function FH(t){return t.getElementsByClassName("legend-category-item-focus-group")[0]}function Fj(t){return t.getElementsByClassName("items-item")}function FN(t){return t.getElementsByClassName(FT)}function FD(t){return t.getElementsByClassName("legend-continuous")}function FR(t){let e=t.parentNode;for(;e&&!e.__data__;)e=e.parentNode;return e.__data__}function FK(t,e){return FI(this,arguments,void 0,function*(t,{legend:e,channel:n,value:r,ordinal:i,channels:A,allChannels:a,facet:o=!1}){let{view:s,update:l,setState:c}=t;c(e,t=>{var l,c;let{marks:u}=t,f=null==(c=null==(l=e.attributes)?void 0:l.scales)?void 0:c.find(t=>t.name===n),h=u.map(e=>{var l,c;if((null!=(l=e.scale[n].key)?l:n)!==(null!=(c=null==f?void 0:f.key)?c:null==f?void 0:f.name)||"legends"===e.type||uz.includes(e.type))return e;let{transform:u=[],data:h=[]}=e,d=u.findIndex(({type:t})=>t.startsWith("group")||t.startsWith("bin")),p=[...u];return h.length&&p.splice(d+1,0,{type:"filter",[n]:{value:r,ordinal:i}}),cC({},e,Object.assign(Object.assign({transform:p,scale:Object.fromEntries(A.map(e=>{var n,r,i;let A,a=(n=s.scale,r=t.key,A=Object.keys(n).find(t=>{if(t.startsWith(e)){let i=n[t].getOptions();return i.name===e&&i.markKey===r}}),null!=(i=n[A])?i:n[e]);return[e,{domain:a.getOptions().domain}]}))},!i&&{animate:!1}),{legend:!o&&Object.fromEntries(a.map(t=>[t,{preserve:!0}]))}))});return Object.assign(Object.assign({},t),{marks:h})}),yield l()})}function Fz(t,e){for(let n of t)FK(n,Object.assign(Object.assign({},e),{facet:!0}))}var FG=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function FV(t,e){let n=dl(t,"shape"),r=dl(t,"color"),i=n?n.clone():null,A=[];for(let[t,n]of e){let e=t.type,a=((null==r?void 0:r.getOptions().domain.length)>0?null==r?void 0:r.getOptions().domain:n.data).map((e,r)=>{var A;return i?i.map(e||"point"):(null==(A=null==t?void 0:t.style)?void 0:A.shape)||n.defaultShape||"point"});"string"==typeof e&&A.push([e,a])}if(0===A.length)return["point",["point"]];if(1===A.length||!n)return A[0];let{range:a}=n.getOptions();return A.map(([t,e])=>{let n=0;for(let t=0;te[0]-t[0])[0][1]}let FW=t=>{let{labelFormatter:e,layout:n,order:r,orientation:i,position:A,size:a,title:o,cols:s,itemMarker:l,render:c}=t,u=FG(t,["labelFormatter","layout","order","orientation","position","size","title","cols","itemMarker","render"]),{gridRow:f}=u;return e=>{let{value:r,theme:i}=e,{bbox:a}=r,{width:l,height:h}=function(t,e,n){let{position:r}=e;if("center"===r){let{bbox:e}=t,{width:n,height:r}=e;return{width:n,height:r}}let{width:i,height:A}=dc(t,e,n);return{width:i,height:A}}(r,t,FW),d=dA(A,n),p=Object.assign(Object.assign(Object.assign(Object.assign({orientation:["right","left","center"].includes(A)?"vertical":"horizontal",width:l,height:h,layout:void 0!==s?"grid":"flex"},void 0!==s&&{gridCol:s}),void 0!==f&&{gridRow:f}),{titleText:di(o)}),function(t,e){let n,{labelFormatter:r=t=>`${t}`}=t,{scales:i,theme:A}=e,a=A.legendCategory.itemMarkerSize,o=(n=dl(i,"size"))instanceof ku?2*n.map(NaN):a,s={itemMarker:function(t,e){let{scales:n,library:r,markState:i}=e,[A,a]=FV(n,i),{itemMarker:o,itemMarkerSize:s}=t,l=(t,e)=>{var n,i,a;let o=(null==(a=null==(i=null==(n=r[`mark.${A}`])?void 0:n.props)?void 0:i.shape[t])?void 0:a.props.defaultMarker)||hj(t.split(".")),l="function"==typeof s?s(e):s;return()=>(function(t,e){var{d:n,fill:r,lineWidth:i,path:A,stroke:a,color:o}=e,s=s1(e,["d","fill","lineWidth","path","stroke","color"]);let l=lm.get(t)||lm.get("point");return(...t)=>new ov({style:Object.assign(Object.assign({},s),{d:l(...t),stroke:l.style.includes("stroke")?o||a:"",fill:l.style.includes("fill")?o||r:"",lineWidth:l.style.includes("lineWidth")?i||i||2:0})})})(o,{color:e.color})(0,0,l)},c=t=>`${a[t]}`;return dl(n,"shape")&&!o?(t,e)=>l(c(e),t):"function"==typeof o?(t,e)=>{let n=o(t.id,e);return"string"==typeof n?l(n,t):n}:(t,e)=>l(o||c(e),t)}(Object.assign(Object.assign({},t),{itemMarkerSize:o}),e),itemMarkerSize:o,itemMarkerOpacity:function(t){let e=dl(t,"opacity");if(e){let{range:t}=e.getOptions();return(e,n)=>t[n]}}(i),itemMarkerLineWidth:function(t,e){let{scales:n,markState:r}=e,[i,A]=FV(n,r),{itemMarker:a,itemMarkerLineWidth:o}=t;if(void 0!==o)return o;let s=["line","hyphen","dash","smooth","hv","hvh","vh","vhv"];return"string"==typeof a&&s.includes(a)?4:"function"==typeof a?(t,e)=>{let n=a(t.id,e);if("string"==typeof n&&s.includes(n))return 4}:(Array.isArray(A)?A:[A]).some(t=>s.includes(t))?4:void 0}(t,e)},l="string"==typeof r?EM(r):r,c=dl(i,"color"),u=i.find(t=>t.getOptions().domain.length>0).getOptions().domain,f=c?t=>c.map(t):()=>e.theme.color;return Object.assign(Object.assign({},s),{data:u.map(t=>({id:t,label:l(t),color:f(t)}))})}(t,e)),{legendCategory:g={}}=i,y=du(Object.assign({},g,Object.assign(Object.assign({},p),{data:(null==p?void 0:p.data.filter(t=>""!==t.id&&void 0!==t.id))||[]}),u,{classNamePrefix:"g2-"}));if(c)return new FS({className:FL,style:Object.assign(Object.assign({},y),{x:a.x,y:a.y,render:c})});let v=new ds({style:Object.assign(Object.assign({x:a.x,y:a.y,width:a.width,height:a.height},d),{subOptions:y})});return v.appendChild(new FS({className:"legend-category",style:y})),v}};FW.props={defaultPosition:"top",defaultOrder:1,defaultSize:40,defaultCrossPadding:[12,12],defaultPadding:[12,12]};let FX=t=>()=>new ou;FX.props={};var FY=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function F$(t,e,n,r){switch(r){case"center":return{x:t+n/2,y:e,textAlign:"middle"};case"right":return{x:t+n,y:e,textAlign:"right"};default:return{x:t,y:e,textAlign:"left"}}}let Fq=(I4={render(t,e){let{width:n,title:r,subtitle:i,spacing:A=2,align:a="left",x:o,y:s}=t,l=FY(t,["width","title","subtitle","spacing","align","x","y"]);e.style.transform=`translate(${o}, ${s})`;let c=cJ(l,"title"),u=cJ(l,"subtitle"),f=dr(e,".title","text").attr("className","title").call(pK,Object.assign(Object.assign(Object.assign({},F$(0,0,n,a)),{fontSize:14,textBaseline:"top",text:r}),c)).node().getLocalBounds();dr(e,".sub-title","text").attr("className","sub-title").call(t=>{if(!i)return t.node().remove();t.node().attr(Object.assign(Object.assign(Object.assign({},F$(0,f.max[1]+A,n,a)),{fontSize:12,textBaseline:"top",text:i}),u))})}},class extends ol{constructor(t){super(t),this.descriptor=I4}connectedCallback(){var t,e;null==(e=(t=this.descriptor).render)||e.call(t,this.attributes,this)}update(t={}){var e,n;this.attr(cC({},this.attributes,t)),null==(n=(e=this.descriptor).render)||n.call(e,this.attributes,this)}}),FJ=t=>({value:e,theme:n})=>{let{x:r,y:i,width:A,height:a}=e.bbox;return new Fq({style:cC({},n.title,Object.assign({x:r,y:i,width:A,height:a},t))})};function FZ({map:t,initKey:e},n){let r=e(n);return t.has(r)?t.get(r):n}function F0(t){return"object"==typeof t?t.valueOf():t}FJ.props={defaultPosition:"top",defaultOrder:2,defaultSize:36,defaultCrossPadding:[20,20],defaultPadding:[12,12]};class F1 extends Map{constructor(t){if(super(),this.map=new Map,this.initKey=F0,null!==t)for(const[e,n]of t)this.set(e,n)}get(t){return super.get(FZ({map:this.map,initKey:this.initKey},t))}has(t){return super.has(FZ({map:this.map,initKey:this.initKey},t))}set(t,e){return super.set(function({map:t,initKey:e},n){let r=e(n);return t.has(r)?t.get(r):(t.set(r,n),n)}({map:this.map,initKey:this.initKey},t),e)}delete(t){return super.delete(function({map:t,initKey:e},n){let r=e(n);return t.has(r)&&(n=t.get(r),t.delete(r)),n}({map:this.map,initKey:this.initKey},t))}}let F2=Symbol("defaultUnknown");function F4(t,e,n){for(let r=0;r`${t}`:"object"==typeof t?t=>JSON.stringify(t):t=>t}class F6 extends dB{getDefaultOptions(){return{domain:[],range:[],unknown:F2}}constructor(t){super(t)}map(t){return 0===this.domainIndexMap.size&&F4(this.domainIndexMap,this.getDomain(),this.domainKey),F5({value:this.domainKey(t),mapper:this.domainIndexMap,from:this.getDomain(),to:this.getRange(),notFoundReturn:this.options.unknown})}invert(t){return 0===this.rangeIndexMap.size&&F4(this.rangeIndexMap,this.getRange(),this.rangeKey),F5({value:this.rangeKey(t),mapper:this.rangeIndexMap,from:this.getRange(),to:this.getDomain(),notFoundReturn:this.options.unknown})}rescale(t){let[e]=this.options.domain,[n]=this.options.range;if(this.domainKey=F3(e),this.rangeKey=F3(n),!this.rangeIndexMap){this.rangeIndexMap=new Map,this.domainIndexMap=new Map;return}(!t||t.range)&&this.rangeIndexMap.clear(),(!t||t.domain||t.compare)&&(this.domainIndexMap.clear(),this.sortedDomain=void 0)}clone(){return new F6(this.options)}getRange(){return this.options.range}getDomain(){if(this.sortedDomain)return this.sortedDomain;let{domain:t,compare:e}=this.options;return this.sortedDomain=e?[...t].sort(e):t,this.sortedDomain}}class F8 extends F6{getDefaultOptions(){return{domain:[],range:[0,1],align:.5,round:!1,paddingInner:0,paddingOuter:0,padding:0,unknown:F2,flex:[]}}constructor(t){super(t)}clone(){return new F8(this.options)}getStep(t){return void 0===this.valueStep?1:"number"==typeof this.valueStep?this.valueStep:void 0===t?Array.from(this.valueStep.values())[0]:this.valueStep.get(t)}getBandWidth(t){return void 0===this.valueBandWidth?1:"number"==typeof this.valueBandWidth?this.valueBandWidth:void 0===t?Array.from(this.valueBandWidth.values())[0]:this.valueBandWidth.get(t)}getRange(){return this.adjustedRange}getPaddingInner(){let{padding:t,paddingInner:e}=this.options;return t>0?t:e}getPaddingOuter(){let{padding:t,paddingOuter:e}=this.options;return t>0?t:e}rescale(){super.rescale();let{align:t,domain:e,range:n,round:r,flex:i}=this.options,{adjustedRange:A,valueBandWidth:a,valueStep:o}=function(t){var e;let n,r,{domain:i}=t,A=i.length;if(0===A)return{valueBandWidth:void 0,valueStep:void 0,adjustedRange:[]};if(null==(e=t.flex)?void 0:e.length)return function(t){let e,n,{domain:r,range:i,paddingOuter:A,paddingInner:a,flex:o,round:s,align:l}=t,c=r.length,u=(e=c-o.length)>0?[...o,...Array(e).fill(1)]:e<0?o.slice(0,c):o,[f,h]=i,d=h-f,p=d/(2/c*A+1-1/c*a),g=p*a/c,y=p-c*g,v=(n=Math.min(...u),u.map(t=>t/n)),b=y/v.reduce((t,e)=>t+e),B=new F1(r.map((t,e)=>{let n=v[e]*b;return[t,s?Math.floor(n):n]})),w=new F1(r.map((t,e)=>{let n=v[e]*b+g;return[t,s?Math.floor(n):n]})),x=Array.from(w.values()).reduce((t,e)=>t+e),C=f+(d-(x-x/c*a))*l,O=s?Math.round(C):C,E=Array(c);for(let t=0;tu+e*n);return{valueStep:n,valueBandWidth:r,adjustedRange:h}}({align:t,range:n,round:r,flex:i,paddingInner:this.getPaddingInner(),paddingOuter:this.getPaddingOuter(),domain:e});this.valueStep=o,this.valueBandWidth=a,this.adjustedRange=A}}var F9=function(t){if("object"!=typeof t||null===t)return t;if(nn(t)){e=[];for(var e,n=0,r=t.length;nr&&(n=A,r=a)}return n}};function Qa(t){return 0===t.length?[0,0]:[nr(Qi(t,function(t){return nr(t)||0})),ni(QA(t,function(t){return ni(t)||0}))]}function Qo(t){for(var e=F9(t),n=e[0].length,r=(0,e$.zs)([Array(n).fill(0),Array(n).fill(0)],2),i=r[0],A=r[1],a=0;a=0?(o[s]+=i[s],i[s]=o[s]):(o[s]+=A[s],A[s]=o[s]);return e}var Qs=function(t){function e(e){return t.call(this,e,{type:"line",x:0,y:0,width:200,height:20,isStack:!1,color:["#83daad","#edbf45","#d2cef9","#e290b3","#6f63f4"],smooth:!0,lineLineWidth:1,areaOpacity:0,isGroup:!1,columnLineWidth:1,columnStroke:"#fff",scale:1,spacing:0})||this}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"rawData",{get:function(){var t=this.attributes.data;if(!t||(null==t?void 0:t.length)===0)return[[]];var e=F9(t);return eG(e[0])?[e]:e},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"data",{get:function(){return this.attributes.isStack?Qo(this.rawData):this.rawData},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"scales",{get:function(){return this.createScales(this.data)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"baseline",{get:function(){var t=this.scales.y,e=(0,e$.zs)(t.getOptions().domain||[0,0],2),n=e[0],r=e[1];return r<0?t.map(r):t.map(n<0?0:n)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"containerShape",{get:function(){var t=this.attributes;return{width:t.width,height:t.height}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"linesStyle",{get:function(){var t=this,e=this.attributes,n=e.type,r=e.isStack,i=e.smooth;if("line"!==n)throw Error("linesStyle can only be used in line type");var A=fN(this.attributes,"area"),a=fN(this.attributes,"line"),o=this.containerShape.width,s=this.data;if(0===s[0].length)return{lines:[],areas:[]};var l=this.scales,c=(d=(f={type:"line",x:l.x,y:l.y}).x,p=f.y,y=(g=(0,e$.zs)(p.getOptions().range||[0,0],2))[0],(v=g[1])>y&&(v=(h=(0,e$.zs)([y,v],2))[0],y=h[1]),s.map(function(t){return t.map(function(t,e){return[d.map(e),eY(p.map(t),v,y)]})})),u=[];if(A){var f,h,d,p,g,y,v,b=this.baseline;u=r?i?function(t,e,n){for(var r=[],i=t.length-1;i>=0;i-=1){var A=t[i],a=Qn(A),o=void 0;if(0===i)o=Qr(a,e,n);else{var s=Qn(t[i-1],!0),l=A[0];s[0][0]="L",o=(0,e$.fX)((0,e$.fX)((0,e$.fX)([],(0,e$.zs)(a),!1),(0,e$.zs)(s),!1),[(0,e$.fX)(["M"],(0,e$.zs)(l),!1),["Z"]],!1)}r.push(o)}return r}(c,o,b):function(t,e,n){for(var r=[],i=t.length-1;i>=0;i-=1){var A=Qe(t[i]),a=void 0;if(0===i)a=Qr(A,e,n);else{var o=Qe(t[i-1],!0);o[0][0]="L",a=(0,e$.fX)((0,e$.fX)((0,e$.fX)([],(0,e$.zs)(A),!1),(0,e$.zs)(o),!1),[["Z"]],!1)}r.push(a)}return r}(c,o,b):c.map(function(t){return Qr(i?Qn(t):Qe(t),o,b)})}return{lines:c.map(function(e,n){return(0,e$.Cl)({stroke:t.getColor(n),d:i?Qn(e):Qe(e)},a)}),areas:u.map(function(e,n){return(0,e$.Cl)({d:e,fill:t.getColor(n)},A)})}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"columnsStyle",{get:function(){var t=this,e=fN(this.attributes,"column"),n=this.attributes,r=n.isStack,i=n.type,A=n.scale;if("column"!==i)throw Error("columnsStyle can only be used in column type");var a=this.containerShape.height,o=this.rawData;if(!o)return{columns:[]};r&&(o=Qo(o));var s=this.createScales(o),l=s.x,c=s.y,u=(0,e$.zs)(Qa(o),2),f=u[0],h=new dH({domain:[0,u[1]-(f>0?0:f)],range:[0,a*A]}),d=l.getBandWidth(),p=this.rawData;return{columns:o.map(function(n,i){return n.map(function(n,A){var a=d/o.length;return(0,e$.Cl)((0,e$.Cl)({fill:t.getColor(i)},e),r?{x:l.map(A),y:c.map(n),width:d,height:h.map(p[i][A])}:{x:l.map(A)+a*i,y:n>=0?c.map(n):c.map(0),width:a,height:h.map(Math.abs(n))})})})}},enumerable:!1,configurable:!0}),e.prototype.render=function(t,e){(n=".container",!e.querySelector(n)?fl(e).append("rect"):fl(e).select(n)).attr("className","container").node();var n,r=t.type,i=t.x,A=t.y,a="spark".concat(r),o=(0,e$.Cl)({x:i,y:A},"line"===r?this.linesStyle:this.columnsStyle);fl(e).selectAll(".spark").data([r]).join(function(t){return t.append(function(t){return"line"===t?new Qt({className:a,style:o}):new F7({className:a,style:o})}).attr("className","spark ".concat(a))},function(t){return t.update(o)},function(t){return t.remove()})},e.prototype.getColor=function(t){var e=this.attributes.color;return nn(e)?e[t%e.length]:ny(e)?e.call(null,t):e},e.prototype.createScales=function(t){var e,n,r=this.attributes,i=r.type,A=r.scale,a=r.range,o=void 0===a?[]:a,s=r.spacing,l=this.containerShape,c=l.width,u=l.height,f=(0,e$.zs)(Qa(t),2),h=f[0],d=f[1],p=new dH({domain:[null!=(e=o[0])?e:h,null!=(n=o[1])?n:d],range:[u,u*(1-A)]});return"line"===i?{type:i,x:new dH({domain:[0,t[0].length-1],range:[0,c]}),y:p}:{type:i,x:new F8({domain:t[0].map(function(t,e){return e}),range:[0,c],paddingInner:s,paddingOuter:s/2,align:.5}),y:p}},e.tag="sparkline",e}(fi),Ql=function(t){function e(e){var n=t.call(this,e,(0,e$.Cl)((0,e$.Cl)((0,e$.Cl)({x:0,y:0,animate:{duration:100,fill:"both"},brushable:!0,formatter:function(t){return t.toString()},handleSpacing:2,orientation:"horizontal",padding:0,autoFitLabel:!0,scrollable:!0,selectionFill:"#5B8FF9",selectionFillOpacity:.45,selectionZIndex:2,showHandle:!0,showLabel:!0,slidable:!0,trackFill:"#416180",trackLength:200,trackOpacity:.05,trackSize:20,trackZIndex:-1,values:[0,1],type:"range",selectionType:"select",handleIconOffset:0},fD(dW,"handle")),fD(dG,"handleIcon")),fD(dV,"handleLabel")))||this;return n.range=[0,1],n.onDragStart=function(t){return function(e){e.stopPropagation(),n.target=t,n.prevPos=n.getOrientVal(dD(e));var r=n.availableSpace,i=r.x,A=r.y,a=n.getBBox(),o=a.x,s=a.y;n.selectionStartPos=n.getRatio(n.prevPos-n.getOrientVal([i,A])-n.getOrientVal([+o,+s])),n.selectionWidth=0,document.addEventListener("pointermove",n.onDragging),document.addEventListener("pointerup",n.onDragEnd)}},n.onDragging=function(t){var e=n.attributes,r=e.slidable,i=e.brushable,A=e.type;t.stopPropagation();var a=n.getOrientVal(dD(t)),o=a-n.prevPos;if(o){var s=n.getRatio(o);switch(n.target){case"start":r&&n.setValuesOffset(s);break;case"end":r&&n.setValuesOffset(0,s);break;case"selection":r&&n.setValuesOffset(s,s);break;case"track":if(!i)return;n.selectionWidth+=s,"range"===A?n.innerSetValues([n.selectionStartPos,n.selectionStartPos+n.selectionWidth].sort(),!0):n.innerSetValues([0,n.selectionStartPos+n.selectionWidth],!0)}n.prevPos=a}},n.onDragEnd=function(){document.removeEventListener("pointermove",n.onDragging),document.removeEventListener("pointermove",n.onDragging),document.removeEventListener("pointerup",n.onDragEnd),n.target="",n.updateHandlesPosition(!1)},n.onValueChange=function(t){var e=n.attributes,r=e.onChange,i=e.type,A="range"===i?t:t[1],a="range"===i?n.getValues():n.getValues()[1],o=new ab("valuechange",{detail:{oldValue:A,value:a}});n.dispatchEvent(o),null==r||r(a)},n.selectionStartPos=0,n.selectionWidth=0,n.prevPos=0,n.target="",n}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"values",{get:function(){return this.attributes.values},set:function(t){this.attributes.values=this.clampValues(t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"sparklineStyle",{get:function(){if("horizontal"!==this.attributes.orientation)return null;var t=fN(this.attributes,"sparkline");return(0,e$.Cl)((0,e$.Cl)({zIndex:0},this.availableSpace),t)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"shape",{get:function(){var t=this.attributes,e=t.trackLength,n=t.trackSize,r=(0,e$.zs)(this.getOrientVal([[e,n],[n,e]]),2);return{width:r[0],height:r[1]}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"availableSpace",{get:function(){var t=this.attributes,e=(t.x,t.y,t.padding),n=(0,e$.zs)(hh(e),4),r=n[0],i=n[1],A=n[2],a=n[3],o=this.shape;return{x:a,y:r,width:o.width-(a+i),height:o.height-(r+A)}},enumerable:!1,configurable:!0}),e.prototype.getValues=function(){return this.values},e.prototype.setValues=function(t,e){void 0===t&&(t=[0,0]),void 0===e&&(e=!1),this.attributes.values=t;var n=!1!==e&&this.attributes.animate;this.updateSelectionArea(n),this.updateHandlesPosition(n)},e.prototype.updateSelectionArea=function(t){var e=this.calcSelectionArea();this.foregroundGroup.selectAll(dX.selection.class).each(function(n,r){u9(this,e[r],t)})},e.prototype.updateHandlesPosition=function(t){this.attributes.showHandle&&(this.startHandle&&u9(this.startHandle,this.getHandleStyle("start"),t),this.endHandle&&u9(this.endHandle,this.getHandleStyle("end"),t))},e.prototype.innerSetValues=function(t,e){void 0===t&&(t=[0,0]),void 0===e&&(e=!1);var n=this.values,r=this.clampValues(t);this.attributes.values=r,this.setValues(r),e&&this.onValueChange(n)},e.prototype.renderTrack=function(t){var e=this.attributes,n=e.x,r=e.y,i=fN(this.attributes,"track");this.trackShape=fl(t).maybeAppendByClassName(dX.track,"rect").styles((0,e$.Cl)((0,e$.Cl)({x:n,y:r},this.shape),i))},e.prototype.renderBrushArea=function(t){var e=this.attributes,n=e.x,r=e.y,i=e.brushable;this.brushArea=fl(t).maybeAppendByClassName(dX.brushArea,"rect").styles((0,e$.Cl)({x:n,y:r,fill:"transparent",cursor:i?"crosshair":"default"},this.shape))},e.prototype.renderSparkline=function(t){var e=this,n=this.attributes,r=n.x,i=n.y;fA("horizontal"===n.orientation,fl(t).maybeAppendByClassName(dX.sparklineGroup,"g"),function(t){var n=(0,e$.Cl)((0,e$.Cl)({},e.sparklineStyle),{x:r,y:i});t.maybeAppendByClassName(dX.sparkline,function(){return new Qs({style:n})}).update(n)})},e.prototype.renderHandles=function(){var t,e=this,n=this.attributes,r=n.showHandle,i=n.type,A=this;null==(t=this.foregroundGroup)||t.selectAll(dX.handle.class).data((r?"range"===i?["start","end"]:["end"]:[]).map(function(t){return{type:t}}),function(t){return t.type}).join(function(t){return t.append(function(t){var n=t.type;return new dq({style:e.getHandleStyle(n)})}).each(function(t){var e=t.type;this.attr("class","".concat(dX.handle.name," ").concat(e,"-handle")),A["".concat(e,"Handle")]=this,this.addEventListener("pointerdown",A.onDragStart(e))})},function(t){return t.each(function(t){var e=t.type;this.update(A.getHandleStyle(e))})},function(t){return t.each(function(t){var e=t.type;A["".concat(e,"Handle")]=void 0}).remove()})},e.prototype.renderSelection=function(t){var e=this.attributes,n=e.x,r=e.y,i=e.type,A=e.selectionType;this.foregroundGroup=fl(t).maybeAppendByClassName(dX.foreground,"g");var a=fN(this.attributes,"selection"),o=function(t){return t.style("visibility",function(t){return t.show?"visible":"hidden"}).style("cursor",function(t){return"select"===A?"grab":"invert"===A?"crosshair":"default"}).styles((0,e$.Cl)((0,e$.Cl)({},a),{transform:"translate(".concat(n,", ").concat(r,")")}))},s=this;this.foregroundGroup.selectAll(dX.selection.class).data("value"===i?[]:this.calcSelectionArea().map(function(t,e){return{style:(0,e$.Cl)({},t),index:e,show:"select"===A?1===e:1!==e}}),function(t){return t.index}).join(function(t){return t.append("rect").attr("className",dX.selection.name).call(o).each(function(t,e){var n=this;1===e?(s.selectionShape=fl(this),this.on("pointerdown",function(t){n.attr("cursor","grabbing"),s.onDragStart("selection")(t)}),s.dispatchCustomEvent(this,"pointerenter","selectionMouseenter"),s.dispatchCustomEvent(this,"pointerleave","selectionMouseleave"),s.dispatchCustomEvent(this,"click","selectionClick"),this.addEventListener("pointerdown",function(){n.attr("cursor","grabbing")}),this.addEventListener("pointerup",function(){n.attr("cursor","pointer")}),this.addEventListener("pointerover",function(){n.attr("cursor","pointer")})):this.on("pointerdown",s.onDragStart("track"))})},function(t){return t.call(o)},function(t){return t.remove()}),this.updateSelectionArea(!1),this.renderHandles()},e.prototype.render=function(t,e){this.renderTrack(e),this.renderSparkline(e),this.renderBrushArea(e),this.renderSelection(e)},e.prototype.clampValues=function(t,e){void 0===e&&(e=4);var n,r=(0,e$.zs)(this.range,2),i=r[0],A=r[1],a=(0,e$.zs)(this.getValues().map(function(t){return dj(t,e)}),2),o=a[0],s=a[1],l=Array.isArray(t)?t:[o,null!=t?t:s],c=(0,e$.zs)((l||[o,s]).map(function(t){return dj(t,e)}),2),u=c[0],f=c[1];if("value"===this.attributes.type)return[0,eY(f,i,A)];u>f&&(u=(n=(0,e$.zs)([f,u],2))[0],f=n[1]);var h=f-u;return h>A-i?[i,A]:uA?s===A&&o===u?[u,A]:[A-h,A]:[u,f]},e.prototype.calcSelectionArea=function(t){var e=(0,e$.zs)(this.clampValues(t),2),n=e[0],r=e[1],i=this.availableSpace,A=i.x,a=i.y,o=i.width,s=i.height;return this.getOrientVal([[{y:a,height:s,x:A,width:n*o},{y:a,height:s,x:n*o+A,width:(r-n)*o},{y:a,height:s,x:r*o,width:(1-r)*o}],[{x:A,width:o,y:a,height:n*s},{x:A,width:o,y:n*s+a,height:(r-n)*s},{x:A,width:o,y:r*s,height:(1-r)*s}]])},e.prototype.calcHandlePosition=function(t){var e=this.attributes.handleIconOffset,n=this.availableSpace,r=n.x,i=n.y,A=n.width,a=n.height,o=(0,e$.zs)(this.clampValues(),2),s=o[0],l=o[1],c=("start"===t?s:l)*this.getOrientVal([A,a])+("start"===t?-e:e);return{x:r+this.getOrientVal([c,A/2]),y:i+this.getOrientVal([a/2,c])}},e.prototype.inferTextStyle=function(t){return"horizontal"===this.attributes.orientation?{}:"start"===t?{transformOrigin:"left center",transform:"rotate(90)",textAlign:"start"}:"end"===t?{transformOrigin:"right center",transform:"rotate(90)",textAlign:"end"}:{}},e.prototype.calcHandleText=function(t){var e,n=this.attributes,r=n.type,i=n.orientation,A=n.formatter,a=n.autoFitLabel,o=fN(this.attributes,"handle"),s=fN(o,"label"),l=o.spacing,c=this.getHandleSize(),u=this.clampValues(),f=A("start"===t?u[0]:u[1]),h=new fo({style:(0,e$.Cl)((0,e$.Cl)((0,e$.Cl)({},s),this.inferTextStyle(t)),{text:f})}),d=h.getBBox(),p=d.width,g=d.height;if(h.destroy(),!a){if("value"===r)return{text:f,x:0,y:-g-l};var y=l+c+("horizontal"===i?p/2:0);return(e={text:f})["horizontal"===i?"x":"y"]="start"===t?-y:y,e}var v=0,b=0,B=this.availableSpace,w=B.width,x=B.height,C=this.calcSelectionArea()[1],O=C.x,E=C.y,k=C.width,F=C.height,Q=l+c;if("horizontal"===i){var M=Q+p/2;v="start"===t?O-Q-p>0?-M:M:w-O-k-Q>p?M:-M}else{var U=g+Q;b="start"===t?E-c>g?-U:Q:x-(E+F)-c>g?U:-Q}return{x:v,y:b,text:f}},e.prototype.getHandleLabelStyle=function(t){var e=fN(this.attributes,"handleLabel");return(0,e$.Cl)((0,e$.Cl)((0,e$.Cl)({},e),this.calcHandleText(t)),this.inferTextStyle(t))},e.prototype.getHandleIconStyle=function(){var t=this.attributes.handleIconShape,e=fN(this.attributes,"handleIcon"),n=this.getOrientVal(["ew-resize","ns-resize"]),r=this.getHandleSize();return(0,e$.Cl)({cursor:n,shape:t,size:r},e)},e.prototype.getHandleStyle=function(t){var e=this.attributes,n=e.x,r=e.y,i=e.showLabel,A=e.showLabelOnInteraction,a=e.orientation,o=this.calcHandlePosition(t),s=o.x,l=o.y,c=this.calcHandleText(t),u=i;return!i&&A&&(u=!!this.target),(0,e$.Cl)((0,e$.Cl)((0,e$.Cl)({},fD(this.getHandleIconStyle(),"icon")),fD((0,e$.Cl)((0,e$.Cl)({},this.getHandleLabelStyle(t)),c),"label")),{transform:"translate(".concat(s+n,", ").concat(l+r,")"),orientation:a,showLabel:u,type:t,zIndex:3})},e.prototype.getHandleSize=function(){var t=this.attributes,e=t.handleIconSize,n=t.width,r=t.height;return e||Math.floor((this.getOrientVal([+r,+n])+4)/2.4)},e.prototype.getOrientVal=function(t){var e=(0,e$.zs)(t,2),n=e[0],r=e[1];return"horizontal"===this.attributes.orientation?n:r},e.prototype.setValuesOffset=function(t,e){void 0===e&&(e=0);var n=this.attributes.type,r=(0,e$.zs)(this.getValues(),2),i=[r[0]+("range"===n?t:0),r[1]+e].sort();this.innerSetValues(i,!0)},e.prototype.getRatio=function(t){var e=this.availableSpace,n=e.width,r=e.height;return t/this.getOrientVal([n,r])},e.prototype.dispatchCustomEvent=function(t,e,n){var r=this;t.on(e,function(t){t.stopPropagation(),r.dispatchEvent(new ab(n,{detail:t}))})},e.prototype.bindEvents=function(){this.addEventListener("wheel",this.onScroll);var t=this.brushArea;this.dispatchCustomEvent(t,"click","trackClick"),this.dispatchCustomEvent(t,"pointerenter","trackMouseenter"),this.dispatchCustomEvent(t,"pointerleave","trackMouseleave"),t.on("pointerdown",this.onDragStart("track"))},e.prototype.onScroll=function(t){if(this.attributes.scrollable){var e=t.deltaX,n=t.deltaY,r=this.getRatio(n||e);this.setValuesOffset(r,r)}},e.tag="slider",e}(fi),Qc=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Qu=t=>{let{orientation:e,labelFormatter:n,size:r,style:i={},position:A}=t,a=Qc(t,["orientation","labelFormatter","size","style","position"]);return r=>{var o;let{scales:[s],value:l,theme:c,coordinate:u}=r,{bbox:f}=l,{width:h,height:d}=f,{slider:p={}}=c,g=(null==(o=s.getFormatter)?void 0:o.call(s))||(t=>t+""),y="string"==typeof n?EM(n):n,v="horizontal"===e,b=uV(u)&&v,{trackSize:B=p.trackSize}=i,[w,x]=function(t,e,n){let{x:r,y:i,width:A,height:a}=t;return"left"===e?[r+A-n,i]:"right"===e||"bottom"===e?[r,i]:"top"===e?[r,i+a-n]:void 0}(f,A,B);return new Ql({className:"slider",style:Object.assign({},p,Object.assign(Object.assign({x:w,y:x,trackLength:v?h:d,orientation:e,formatter:t=>(y||g)(gZ(s,b?1-t:t,!0)),sparklineData:function(t,e){let{markState:n}=e;return nn(t.sparklineData)?t.sparklineData:function(t,e){let[n]=Array.from(t.entries()).filter(([t])=>"line"===t.type||"area"===t.type||"interval"===t.type).filter(([t])=>t.slider).map(([t])=>{let{encode:n,slider:r}=t;if(null==r?void 0:r.x)return Object.fromEntries(e.map(t=>{let e=n[t];return[t,e?e.value:void 0]}))});return(null==n?void 0:n.series)?Object.values(n.series.reduce((t,e,r)=>(t[e]=t[e]||[],t[e].push(n.y[r]),t),{})):null==n?void 0:n.y}(n,["y","series"])}(t,r)},i),a))})}};Qu.props={defaultPosition:"bottom",defaultSize:24,defaultOrder:1,defaultCrossPadding:[12,12],defaultPadding:[12,12]};let Qf=t=>Qu(Object.assign(Object.assign({},t),{orientation:"horizontal"}));Qf.props=Object.assign(Object.assign({},Qu.props),{defaultPosition:"bottom"});let Qh=t=>Qu(Object.assign(Object.assign({},t),{orientation:"vertical"}));Qh.props=Object.assign(Object.assign({},Qu.props),{defaultPosition:"left"});var Qd=function(t){function e(e){var n=t.call(this,e,{x:0,y:0,isRound:!0,orientation:"vertical",padding:[2,2,2,2],scrollable:!0,slidable:!0,thumbCursor:"default",trackSize:10,value:0})||this;return n.range=[0,1],n.onValueChange=function(t){var e=n.attributes.value;if(t!==e){var r={detail:{oldValue:t,value:e}};n.dispatchEvent(new ab("scroll",r)),n.dispatchEvent(new ab("valuechange",r))}},n.onTrackClick=function(t){if(n.attributes.slidable){var e=(0,e$.zs)(n.getLocalPosition(),2),r=e[0],i=e[1],A=(0,e$.zs)(n.padding,4),a=A[0],o=A[3],s=n.getOrientVal([r+o,i+a]),l=(n.getOrientVal(dN(t))-s)/n.trackLength;n.setValue(l,!0)}},n.onThumbMouseenter=function(t){n.dispatchEvent(new ab("thumbMouseenter",{detail:t.detail}))},n.onTrackMouseenter=function(t){n.dispatchEvent(new ab("trackMouseenter",{detail:t.detail}))},n.onThumbMouseleave=function(t){n.dispatchEvent(new ab("thumbMouseleave",{detail:t.detail}))},n.onTrackMouseleave=function(t){n.dispatchEvent(new ab("trackMouseleave",{detail:t.detail}))},n}return(0,e$.C6)(e,t),Object.defineProperty(e.prototype,"padding",{get:function(){return hh(this.attributes.padding)},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"value",{get:function(){var t=this.attributes.value,e=(0,e$.zs)(this.range,2);return eY(t,e[0],e[1])},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"trackLength",{get:function(){var t=this.attributes,e=t.viewportLength,n=t.trackLength;return void 0===n?e:n},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"availableSpace",{get:function(){var t=this.attributes.trackSize,e=this.trackLength,n=(0,e$.zs)(this.padding,4),r=n[0],i=n[1],A=n[2],a=n[3],o=(0,e$.zs)(this.getOrientVal([[e,t],[t,e]]),2);return{x:a,y:r,width:o[0]-(a+i),height:o[1]-(r+A)}},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"trackRadius",{get:function(){var t=this.attributes,e=t.isRound,n=t.trackSize;return e?n/2:0},enumerable:!1,configurable:!0}),Object.defineProperty(e.prototype,"thumbRadius",{get:function(){var t=this.attributes,e=t.isRound,n=t.thumbRadius;if(!e)return 0;var r=this.availableSpace,i=r.width,A=r.height;return n||this.getOrientVal([A,i])/2},enumerable:!1,configurable:!0}),e.prototype.getValues=function(t){void 0===t&&(t=this.value);var e=this.attributes,n=e.viewportLength/e.contentLength,r=(0,e$.zs)(this.range,2),i=r[0],A=t*(r[1]-i-n);return[A,A+n]},e.prototype.getValue=function(){return this.value},e.prototype.renderSlider=function(t){var e=this.attributes,n=e.x,r=e.y,i=e.orientation,A=e.trackSize,a=e.padding,o=e.slidable,s=fN(this.attributes,"track"),l=fN(this.attributes,"thumb"),c=(0,e$.Cl)((0,e$.Cl)({x:n,y:r,brushable:!1,orientation:i,padding:a,selectionRadius:this.thumbRadius,showHandle:!1,slidable:o,trackLength:this.trackLength,trackRadius:this.trackRadius,trackSize:A,values:this.getValues()},fD(s,"track")),fD(l,"selection"));this.slider=fl(t).maybeAppendByClassName("scrollbar",function(){return new Ql({style:c})}).update(c).node()},e.prototype.render=function(t,e){this.renderSlider(e)},e.prototype.setValue=function(t,e){void 0===e&&(e=!1);var n=this.attributes.value,r=(0,e$.zs)(this.range,2),i=r[0],A=r[1];this.slider.setValues(this.getValues(eY(t,i,A)),e),this.onValueChange(n)},e.prototype.bindEvents=function(){var t=this;this.slider.addEventListener("trackClick",function(e){e.stopPropagation(),t.onTrackClick(e.detail)}),this.onHover()},e.prototype.getOrientVal=function(t){return"horizontal"===this.attributes.orientation?t[0]:t[1]},e.prototype.onHover=function(){this.slider.addEventListener("selectionMouseenter",this.onThumbMouseenter),this.slider.addEventListener("trackMouseenter",this.onTrackMouseenter),this.slider.addEventListener("selectionMouseleave",this.onThumbMouseleave),this.slider.addEventListener("trackMouseleave",this.onTrackMouseleave)},e.tag="scrollbar",e}(fi),Qp=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Qg=t=>{let{orientation:e,labelFormatter:n,style:r}=t,i=Qp(t,["orientation","labelFormatter","style"]);return({scales:[t],value:n,theme:A})=>{let{bbox:a}=n,{x:o,y:s,width:l,height:c}=a,{scrollbar:u={}}=A,{ratio:f,range:h}=t.getOptions(),d="horizontal"===e?l:c,p=d/f,[g,y]=h;return new Qd({className:"g2-scrollbar",style:Object.assign({},u,Object.assign(Object.assign(Object.assign(Object.assign({},r),{x:o,y:s,trackLength:d,value:y>g?0:1}),i),{orientation:e,contentLength:p,viewportLength:d}))})}};Qg.props={defaultPosition:"bottom",defaultSize:24,defaultOrder:1,defaultCrossPadding:[12,12],defaultPadding:[12,12]};let Qy=t=>Qg(Object.assign(Object.assign({},t),{orientation:"horizontal"}));Qy.props=Object.assign(Object.assign({},Qg.props),{defaultPosition:"bottom"});let Qv=t=>Qg(Object.assign(Object.assign({},t),{orientation:"vertical"}));Qv.props=Object.assign(Object.assign({},Qg.props),{defaultPosition:"left"});let Qm=(t,e)=>{let{coordinate:n}=e;return(e,r,i)=>{let[A]=e,{transform:a="",fillOpacity:o=1,strokeOpacity:s=1,opacity:l=1}=A.style,[c,u]=uV(n)?["left bottom","scale(1, 0.0001)"]:["left top","scale(0.0001, 1)"],f=[{transform:`${a} ${u}`.trimStart(),transformOrigin:c,fillOpacity:0,strokeOpacity:0,opacity:0},{transform:`${a} ${u}`.trimStart(),transformOrigin:c,fillOpacity:o,strokeOpacity:s,opacity:l,offset:.01},{transform:`${a} scale(1, 1)`.trimStart(),transformOrigin:c,fillOpacity:o,strokeOpacity:s,opacity:l}];return A.animate(f,Object.assign(Object.assign({},i),t))}},Qb=(t,e)=>{let{coordinate:n}=e;return ok({name:"scaleInYRadius",inherits:!1,initialValue:"",interpolable:!0,syntax:ru.NUMBER}),(e,r,i)=>{let[A]=e;return uW(n)?(e=>{let{__data__:r,style:A}=e,{fillOpacity:a=1,strokeOpacity:o=1,opacity:s=1}=A,{points:l,y:c,y1:u}=r,{innerRadius:f,outerRadius:h}=pW(n,l,[c,u]);return e.animate([{scaleInYRadius:f+1e-4,fillOpacity:0,strokeOpacity:0,opacity:0},{scaleInYRadius:f+1e-4,fillOpacity:a,strokeOpacity:o,opacity:s,offset:.01},{scaleInYRadius:h,fillOpacity:a,strokeOpacity:o,opacity:s}],Object.assign(Object.assign({},i),t))})(A):(e=>{let{style:r}=e,{transform:A="",fillOpacity:a=1,strokeOpacity:o=1,opacity:s=1}=r,[l,c]=uV(n)?["left top","scale(0.0001, 1)"]:["left bottom","scale(1, 0.0001)"],u=[{transform:`${A} ${c}`.trimStart(),transformOrigin:l,fillOpacity:0,strokeOpacity:0,opacity:0},{transform:`${A} ${c}`.trimStart(),transformOrigin:l,fillOpacity:a,strokeOpacity:o,opacity:s,offset:.01},{transform:`${A} scale(1, 1)`.trimStart(),transformOrigin:l,fillOpacity:a,strokeOpacity:o,opacity:s}];return e.animate(u,Object.assign(Object.assign({},i),t))})(A)}},QB=(t,e)=>{ok({name:"waveInArcAngle",inherits:!1,initialValue:"",interpolable:!0,syntax:ru.NUMBER});let{coordinate:n}=e;return(r,i,A)=>{let[a]=r;if(!uW(n))return Qm(t,e)(r,i,A);let{__data__:o,style:s}=a,{radius:l=0,inset:c=0,fillOpacity:u=1,strokeOpacity:f=1,opacity:h=1}=s,{points:d,y:p,y1:g}=o,y=yu().cornerRadius(l).padAngle(c*Math.PI/180),v=pW(n,d,[p,g]),{startAngle:b,endAngle:B}=v,w=a.animate([{waveInArcAngle:b+1e-4,fillOpacity:0,strokeOpacity:0,opacity:0},{waveInArcAngle:b+1e-4,fillOpacity:u,strokeOpacity:f,opacity:h,offset:.01},{waveInArcAngle:B,fillOpacity:u,strokeOpacity:f,opacity:h}],Object.assign(Object.assign({},A),t));return w.onframe=function(){a.style.d=y(Object.assign(Object.assign({},v),{endAngle:Number(a.style.waveInArcAngle)}))},w.onfinish=function(){a.style.d=y(Object.assign(Object.assign({},v),{endAngle:B}))},w}};QB.props={};let Qw=t=>(e,n,r)=>{let[i]=e,{fillOpacity:A=1,strokeOpacity:a=1,opacity:o=1}=i.style;return i.animate([{fillOpacity:0,strokeOpacity:0,opacity:0},{fillOpacity:A,strokeOpacity:a,opacity:o}],Object.assign(Object.assign({},r),t))};Qw.props={};let Qx=t=>(e,n,r)=>{let[i]=e,{fillOpacity:A=1,strokeOpacity:a=1,opacity:o=1}=i.style;return i.animate([{fillOpacity:A,strokeOpacity:a,opacity:o},{fillOpacity:0,strokeOpacity:0,opacity:0}],Object.assign(Object.assign({},r),t))};Qx.props={};let QC=t=>(e,n,r)=>{var i;let[A]=e,a=(null==(i=A.getTotalLength)?void 0:i.call(A))||0;return A.animate([{lineDash:[0,a]},{lineDash:[a,0]}],Object.assign(Object.assign({},r),t))};QC.props={};let QO={opacity:1,strokeOpacity:1,fillOpacity:1,lineWidth:0,x:0,y:0,cx:0,cy:0,r:0,rx:0,ry:0,width:0,height:0},QE={[nP.CIRCLE]:["cx","cy","r"],[nP.ELLIPSE]:["cx","cy","rx","ry"],[nP.RECT]:["x","y","width","height"],[nP.IMAGE]:["x","y","width","height"],[nP.LINE]:["x1","y1","x2","y2"],[nP.POLYLINE]:["points"],[nP.POLYGON]:["points"]};function Qk(t,e,n=!1){let r={};for(let i of e){let e=t.style[i];e?r[i]=e:n&&(r[i]=QO[i])}return r}let QF=["fill","stroke","fillOpacity","strokeOpacity","opacity","lineWidth"];function QQ(t){let{min:e,max:n}=t.getLocalBounds(),[r,i]=e,[A,a]=n;return[r,i,A-r,a-i]}function QM(t,e){let[n,r,i,A]=QQ(t),a=Math.ceil(Math.sqrt(e/(A/i))),o=[],s=A/Math.ceil(e/a),l=0,c=e;for(;c>0;){let t=Math.min(c,a),e=i/t;for(let i=0;i1&&void 0!==arguments[1]?arguments[1]:t.getLocalTransform(),A=[];switch(t.nodeName){case nP.LINE:var a=t.parsedStyle,o=a.x1,s=a.y1,l=a.x2,c=a.y2;A=[["M",void 0===o?0:o,void 0===s?0:s],["L",void 0===l?0:l,void 0===c?0:c]];break;case nP.CIRCLE:var u=t.parsedStyle,f=u.r,h=void 0===f?0:f,d=u.cx,p=u.cy;A=i$(h,h,void 0===d?0:d,void 0===p?0:p);break;case nP.ELLIPSE:var g=t.parsedStyle,y=g.rx,v=g.ry,b=g.cx,B=g.cy;A=i$(void 0===y?0:y,void 0===v?0:v,void 0===b?0:b,void 0===B?0:B);break;case nP.POLYLINE:case nP.POLYGON:e=t.parsedStyle.points.points,n=t.nodeName===nP.POLYGON,r=e.map(function(t,e){return[0===e?"M":"L",t[0],t[1]]}),n&&r.push(["Z"]),A=r;break;case nP.RECT:var w=t.parsedStyle,x=w.width,C=void 0===x?0:x,O=w.height,E=void 0===O?0:O,k=w.x,F=w.y,Q=w.radius;A=function(t,e,n,r,i){if(i){var A=(0,tE.A)(i,4),a=A[0],o=A[1],s=A[2],l=A[3],c=t>0?1:-1,u=e>0?1:-1,f=+(c+u!==0);return[["M",c*a+n,r],["L",t-c*o+n,r],o?["A",o,o,0,0,f,t+n,u*o+r]:null,["L",t+n,e-u*s+r],s?["A",s,s,0,0,f,t+n-c*s,e+r]:null,["L",n+c*l,e+r],l?["A",l,l,0,0,f,n,e+r-u*l]:null,["L",n,u*a+r],a?["A",a,a,0,0,f,c*a+n,r]:null,["Z"]].filter(function(t){return t})}return[["M",n,r],["L",n+t,r],["L",n+t,r+e],["L",n,r+e],["Z"]]}(C,E,void 0===k?0:k,void 0===F?0:F,Q&&Q.some(function(t){return 0!==t})&&Q.map(function(t){return eY(t,0,Math.min(Math.abs(C)/2,Math.abs(E)/2))}));break;case nP.PATH:var M=t.parsedStyle.d.absolutePath;A=(0,tx.A)(M)}if(A.length)return A.reduce(function(t,e){var n="";if("M"===e[0]||"L"===e[0]){var r=tS(e[1],e[2],0);i&&tD(r,r,i),n="".concat(e[0]).concat(r[0],",").concat(r[1])}else if("Z"===e[0])n=e[0];else if("C"===e[0]){var A=tS(e[1],e[2],0),a=tS(e[3],e[4],0),o=tS(e[5],e[6],0);i&&(tD(A,A,i),tD(a,a,i),tD(o,o,i)),n="".concat(e[0]).concat(A[0],",").concat(A[1],",").concat(a[0],",").concat(a[1],",").concat(o[0],",").concat(o[1])}else if("A"===e[0]){var s=tS(e[6],e[7],0);i&&tD(s,s,i),n="".concat(e[0]).concat(e[1],",").concat(e[2],",").concat(e[3],",").concat(e[4],",").concat(e[5],",").concat(s[0],",").concat(s[1])}else if("Q"===e[0]){var l=tS(e[1],e[2],0),c=tS(e[3],e[4],0);i&&(tD(l,l,i),tD(c,c,i)),n="".concat(e[0]).concat(e[1],",").concat(e[2],",").concat(e[3],",").concat(e[4],"}")}return t+n},"")}(t);if(e&&!(!QS(e,"m")||!QS(e,"M")))return e}function QT(t){let{nodeName:e}=t;if("path"===e){let e=cf(t,"attributes");return e.markerEnd||e.markerStart}return!1}function QL(t,e,n,r){let{nodeName:i}=e,{nodeName:A}=n,a=QI(e),o=QI(n),{opacity:s=1,strokeOpacity:l=1,fillOpacity:c=1}=e.style,{opacity:u=1,strokeOpacity:f=1,fillOpacity:h=1}=n.style,d=void 0===a||void 0===o,p=QT(e)||QT(n);if(i===A&&"path"!==i||d||p)return function(t,e,n){let{transform:r}=t.style,{transform:i}=e.style;QU(e,t);let A=QF;if(t.nodeName===nP.GROUP){let[n,i,A,a]=QQ(t),[o,s,l,c]=QQ(e);r=`translate(${n-o}, ${i-s}) scale(${A/l}, ${a/c})`}else A=A.concat(QE[t.nodeName]||[]);let a=[Object.assign({transform:null!=r?r:"none"},Qk(t,A,!0)),Object.assign({transform:null!=i?i:"none"},Qk(e,A,!0))];return e.animate(a,n)}(e,n,r);let g=function(t,e){let{nodeName:n}=t;if("path"===n)return t;let r=new ov({style:Object.assign(Object.assign({},Qk(t,QF)),{d:e})});return QU(r,t),r}(t,a),y=Object.assign(Object.assign({},Qk(e,QF)),{opacity:s,strokeOpacity:l,fillOpacity:c}),v=Object.assign(Object.assign({},Qk(n,QF)),{opacity:u,strokeOpacity:f,fillOpacity:h}),b=[y,v];if(a!==o){b[0].d=a,b[1].d=o;let t=g.animate(b,r);return t.onfinish=()=>{c$(g,n),g.style.d=o,g.style.transform="none"},g.style.transform="none",t}return uI(y,v)?null:g.animate(b,r)}let Q_=t=>(e,n,r)=>{let i=function(t="pack"){return"function"==typeof t?t:QM}(t.split),A=Object.assign(Object.assign({},r),t),{length:a}=e,{length:o}=n;if(1===a&&1===o||a>1&&o>1){let[t]=e,[r]=n;return QL(t,t,r,A)}if(1===a&&o>1){let t,[r]=e;return r.style.visibility="hidden",t=i(r,n.length),n.map((e,n)=>QL(e,new ov({style:Object.assign({d:t[n]},Qk(r,QF))}),e,A))}if(a>1&&1===o){let[t]=n;return function(t,e,n,r){let i=r(e,t.length),{fillOpacity:A=1,strokeOpacity:a=1,opacity:o=1}=e.style,s=e.animate([{fillOpacity:0,strokeOpacity:0,opacity:0},{fillOpacity:0,strokeOpacity:0,opacity:0,offset:.99},{fillOpacity:A,strokeOpacity:a,opacity:o}],n);return[...t.map((t,r)=>QL(t,t,new ov({style:{d:i[r],fill:e.style.fill}}),n)),s]}(e,t,A,i)}return null};Q_.props={};let QP=(t,e)=>(n,r,i)=>{let[A]=n,{min:[a,o],halfExtents:s}=A.getLocalBounds(),l=2*s[0],c=2*s[1],u=new ov({style:{d:`M${a},${o}L${a+l},${o}L${a+l},${o+c}L${a},${o+c}Z`}});return A.appendChild(u),A.style.clipPath=u,Qm(t,e)([u],r,i)};QP.props={};let QH=(t,e)=>(n,r,i)=>{let[A]=n,{min:[a,o],halfExtents:s}=A.getLocalBounds(),l=2*s[0],c=2*s[1],u=new ov({style:{d:`M${a},${o}L${a+l},${o}L${a+l},${o+c}L${a},${o+c}Z`}});return A.appendChild(u),A.style.clipPath=u,Qb(t,e)([u],r,i)};QH.props={};var Qj=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function QN(t){var{delay:e,createGroup:n,createRegionGroup:r,background:i=!1,link:A=!1}=t,a=Qj(t,["delay","createGroup","createRegionGroup","background","link"]);return(t,o,s)=>{let{container:l,view:c,options:u}=t,{scale:f,coordinate:h}=c;return function(t,{elements:e,datum:n,groupKey:r=t=>t,regionGroupKey:i=t=>t,link:A=!1,background:a=!1,delay:o=60,scale:s,coordinate:l,emitter:c,state:u={},region:f=!1,regionEleFilter:h=t=>yX.includes(t.markType)}){var d,p;let g,y=null!=(d=e(t))?d:[],v=f?y.filter(h):y,b=new Set(v),B=f?i:r,w=cy(v,B),x=yY({elementsof:e,root:t,coordinate:l,scale:s}),C=yH(v,n),[O,E]=yj(Object.assign({elements:v,valueof:C,link:A,coordinate:l},cJ(u.active,"link"))),[k,F,Q]=yD(Object.assign({document:t.ownerDocument,scale:s,coordinate:l,background:a,valueof:C},cJ(u.active,"background"))),{updateState:M,removeState:U,hasState:S}=yT(cC(u,{active:Object.assign({},(null==(p=u.active)?void 0:p.offset)&&{transform:(...t)=>{let e=u.active.offset(...t),[,n]=t;return yN(v[n],e,l)}})}),v)(C),I=t=>{let{nativeEvent:e=!0}=t,r=t.target;if(f&&(r=x(t)),!b.has(r))return;g&&clearTimeout(g);let i=B(r),A=w.get(i),a=new Set(A);for(let t of v)a.has(t)?S(t,"active")||M(t,"active"):(M(t,"inactive"),E(t)),t!==r&&F(t);k(r),O(A),e&&c.emit("element:highlight",{nativeEvent:e,data:{data:n(r),group:A.map(n)}})},T=()=>{g&&clearTimeout(g),g=setTimeout(()=>{L(),g=null},o)},L=(t=!0)=>{for(let t of v)U(t,"active","inactive"),F(t),E(t);t&&c.emit("element:unhighlight",{nativeEvent:t})},_=t=>{let e=t.target;(f&&(e=x(t)),e)?a&&!Q(e)||(a||b.has(e))&&(o>0?T():L()):o>0?T():L()},P=()=>{L()};t.addEventListener("pointerover",I),t.addEventListener("pointermove",I),t.addEventListener("pointerout",_),t.addEventListener("pointerleave",P);let H=t=>{let{nativeEvent:e}=t;e||L(!1)},j=t=>{let{nativeEvent:e}=t;if(e)return;let{data:r}=t.data,i=yK(v,r,n);i&&I({target:i,nativeEvent:!1})};return c.on("element:highlight",j),c.on("element:unhighlight",H),()=>{for(let e of(t.removeEventListener("pointerover",I),t.removeEventListener("pointermove",I),t.removeEventListener("pointerout",_),t.removeEventListener("pointerleave",P),c.off("element:highlight",j),c.off("element:unhighlight",H),v))F(e),E(e)}}(yC(l),Object.assign({elements:yB,datum:yM(c),groupKey:n?n(c):void 0,regionGroupKey:r?r(c):yQ(c),coordinate:h,scale:f,state:yP(u,[["active",i?{}:{lineWidth:"1",stroke:"#000"}],"inactive"]),background:i,link:A,delay:e,emitter:s},a))}}function QD(t){return QN(Object.assign(Object.assign({},t),{createGroup:yQ}))}function QR(t){return QN(Object.assign(Object.assign({},t),{createGroup:yF}))}QN.props={reapplyWhenUpdate:!0},QD.props={reapplyWhenUpdate:!0},QR.props={reapplyWhenUpdate:!0};var QK=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function Qz(t){var{delay:e,createGroup:n,scale:r,shadow:i,shadowColor:A,shadowBlur:a,shadowOffsetX:o,shadowOffsetY:s,zIndex:l}=t,c=QK(t,["delay","createGroup","scale","shadow","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY","zIndex"]);return(t,u,f)=>{let{container:h,view:d,options:p}=t,g=yC(h),y=yM(d),{coordinate:v}=d;return function(t,{elements:e,datum:n,groupKey:r=t=>t,scaleFactor:i=1.04,shadow:A=!0,shadowColor:a="rgba(0, 0, 0, 0.4)",shadowBlur:o=10,shadowOffsetX:s=0,shadowOffsetY:l=2,zIndex:c=10,delay:u=60,emitter:f,state:h={},coordinate:d}){let p,g=()=>{var n;return null!=(n=e(t))?n:[]},y=g(),v=yH(y,n),{updateState:b,removeState:B,hasState:w}=yT(cC(h,{active:{}}),y)(v),x=new Map,C=t=>{if(x.has(t))return;let e=t.style.transform||"",n=t.style.transformOrigin||"",r="none"===e?"":e;if(x.set(t,{transform:e,transformOrigin:n,zIndex:t.style.zIndex||0,shadowColor:t.style.shadowColor||"",shadowBlur:t.style.shadowBlur||0,shadowOffsetX:t.style.shadowOffsetX||0,shadowOffsetY:t.style.shadowOffsetY||0}),d&&uW(d)&&!r){let e=d.getCenter();t.style.transformOrigin=`${e[0]}px ${e[1]}px`}let u=`scale(${i})`;t.style.transform=r?`${r} ${u}`:u,t.style.zIndex=c,A&&(t.style.shadowColor=a,t.style.shadowBlur=o,t.style.shadowOffsetX=s,t.style.shadowOffsetY=l)},O=t=>{let e=x.get(t);e&&(t.style.transform=e.transform,t.style.transformOrigin=e.transformOrigin,t.style.zIndex=e.zIndex,t.style.shadowColor=e.shadowColor,t.style.shadowBlur=e.shadowBlur,t.style.shadowOffsetX=e.shadowOffsetX,t.style.shadowOffsetY=e.shadowOffsetY,x.delete(t))},E=t=>{let{nativeEvent:e=!0}=t,i=t.target,A=g();if(!new Set(A).has(i))return;p&&clearTimeout(p);let a=cy(A,r),o=r(i),s=a.get(o);if(!s)return;let l=new Set(s);for(let t of A)l.has(t)||(B(t,"active"),O(t));for(let t of s)w(t,"active")||b(t,"active"),C(t);e&&f.emit("element:hoverscale",{nativeEvent:e,data:{data:n(i),group:s.map(n)}})},k=(t=!0)=>{for(let t of g())B(t,"active"),O(t);t&&f.emit("element:unhoverscale",{nativeEvent:t})},F=()=>{u>0?(p&&clearTimeout(p),p=setTimeout(()=>{k(),p=null},u)):k()},Q=()=>{k()};t.addEventListener("pointerover",E),t.addEventListener("pointermove",E),t.addEventListener("pointerout",F),t.addEventListener("pointerleave",Q);let M=t=>{let{nativeEvent:e}=t;e||k(!1)},U=t=>{let{nativeEvent:e}=t;if(e)return;let{data:r}=t.data,i=yK(g(),r,n);i&&E({target:i,nativeEvent:!1})};return f.on("element:hoverscale",U),f.on("element:unhoverscale",M),()=>{for(let e of(t.removeEventListener("pointerover",E),t.removeEventListener("pointermove",E),t.removeEventListener("pointerout",F),t.removeEventListener("pointerleave",Q),f.off("element:hoverscale",U),f.off("element:unhoverscale",M),g()))O(e);x.clear()}}(g,Object.assign({elements:yB,datum:y,groupKey:n?t=>n(d)(y(t)):void 0,state:yP(p,["active"]),scaleFactor:r,shadow:i,shadowColor:A,shadowBlur:a,shadowOffsetX:o,shadowOffsetY:s,zIndex:l,delay:e,emitter:f,coordinate:v},c))}}Qz.props={reapplyWhenUpdate:!0};var QG=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function QV(t){var{createGroup:e,createRegionGroup:n,background:r=!1,link:i=!1}=t,A=QG(t,["createGroup","createRegionGroup","background","link"]);return(t,a,o)=>{let{container:s,view:l,options:c}=t,{coordinate:u,scale:f}=l;return function(t,{elements:e,datum:n,groupKey:r=t=>t,regionGroupKey:i=t=>t,link:A=!1,single:a=!1,multipleSelectHotkey:o,coordinate:s,background:l=!1,scale:c,emitter:u,state:f={},region:h=!1,regionEleFilter:d=t=>yX.includes(t.markType)}){var p;let g=e(t),y=new Set(g),v=yY({elementsof:e,root:t,coordinate:s,scale:c}),b=cy(g,r),B=cy(g,i),w=yH(g,n),[x,C]=yj(Object.assign({link:A,elements:g,valueof:w,coordinate:s},cJ(f.selected,"link"))),[O,E]=yD(Object.assign({document:t.ownerDocument,background:l,coordinate:s,scale:c,valueof:w},cJ(f.selected,"background"))),{updateState:k,removeState:F,hasState:Q}=yT(cC(f,{selected:Object.assign({},(null==(p=f.selected)?void 0:p.offset)&&{transform:(...t)=>{let e=f.selected.offset(...t),[,n]=t;return yN(g[n],e,s)}})}),g)(w),M=!a,U=null,S=(t=!0)=>{for(let t of g)F(t,"selected","unselected"),C(t),E(t);t&&u.emit("element:unselect",{nativeEvent:!0})},I=({event:t,element:e,nativeEvent:i=!0,filter:A=t=>!0,groupBy:a=r,groupMap:o=b})=>{let s=g.filter(A);if(Q(e,"selected"))S();else{let r=a(e),A=o.get(r),l=new Set(A);for(let t of s)l.has(t)?k(t,"selected"):(k(t,"unselected"),C(t)),t!==e&&E(t);if(x(A),O(e),!i)return;u.emit("element:select",Object.assign(Object.assign({},t),{nativeEvent:i,data:{data:[n(e),...A.map(n)]}}))}},T=({event:t,element:e,nativeEvent:i=!0,filter:a=t=>!0,groupBy:o=r,groupMap:s=b})=>{let l=o(e),c=s.get(l),f=new Set(c),h=g.filter(a);if(Q(e,"selected")){if(!g.some(t=>!f.has(t)&&Q(t,"selected")))return S();for(let t of c)k(t,"unselected"),C(t),E(t)}else{let t=c.some(t=>Q(t,"selected"));for(let t of h)f.has(t)?k(t,"selected"):Q(t,"selected")||k(t,"unselected");!t&&A&&x(c),O(e)}i&&u.emit("element:select",Object.assign(Object.assign({},t),{nativeEvent:i,data:{data:g.filter(t=>Q(t,"selected")).map(n)}}))},L=t=>{let{target:e,nativeEvent:n=!0}=t,A=M?T:I,a=e,o=(t=>{if(y.has(t))return!0;for(let e of y)if(yp(e,e=>e===t))return!0;return!1})(e);return!h||o?o?A({event:t,element:(t=>{if(y.has(t))return t;for(let e of y){let n=null;if(yp(e,r=>{r===t&&(n=e)}),n)return n}return t})(a),nativeEvent:n,groupBy:r}):S():(a=v(t),y.has(a))?A({event:t,element:a,nativeEvent:n,filter:d,groupBy:i,groupMap:B}):S()},_=Array.isArray(o)?o:[o],P=t=>{_.includes(t.code)&&!U&&(U=t.code,M=!0)},H=t=>{t.code===U&&(U=null,M=!1)};t.addEventListener("click",L),o&&(M=!1,document.addEventListener("keydown",P),document.addEventListener("keyup",H));let j=t=>{let{nativeEvent:e,data:r}=t;if(!e)for(let t of M?r.data:r.data.slice(0,1))L({target:yK(g,t,n),nativeEvent:!1})},N=()=>{S(!1)};return u.on("element:select",j),u.on("element:unselect",N),()=>{for(let t of g)C(t);t.removeEventListener("click",L),o&&(document.removeEventListener("keydown",P),document.removeEventListener("keyup",H)),u.off("element:select",j),u.off("element:unselect",N)}}(yC(s),Object.assign({elements:yB,datum:yM(l),groupKey:e?e(l):void 0,regionGroupKey:n?n(l):yQ(l),coordinate:u,scale:f,state:yP(c,[["selected",r?{}:{lineWidth:"1",stroke:"#000"}],"unselected"]),background:r,link:i,emitter:o},A))}}function QW(t){return QV(Object.assign(Object.assign({},t),{createGroup:yQ}))}function QX(t){return QV(Object.assign(Object.assign({},t),{createGroup:yF}))}QV.props={reapplyWhenUpdate:!0},QW.props={reapplyWhenUpdate:!0},QX.props={reapplyWhenUpdate:!0};var QY=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function Q$(t){var{wait:e=20,leading:n,trailing:r=!1,labelFormatter:i=t=>`${t}`}=t,A=QY(t,["wait","leading","trailing","labelFormatter"]);return t=>{let a,{view:o,container:s,update:l,setState:c}=t,{markState:u,scale:f,coordinate:h}=o,d=function(t,e,n){let[r]=Array.from(t.entries()).filter(([t])=>t.type===e).map(([t])=>{let{encode:e}=t;return Object.fromEntries(n.map(t=>{let n=e[t];return[t,n?n.value:void 0]}))});return r}(u,"line",["x","y","series"]);if(!d)return;let{y:p,x:g,series:y=[]}=d,v=p.map((t,e)=>e),b=gm(v.map(t=>g[t])),B=yC(s),w=s.getElementsByClassName(gT),x=cy(s.getElementsByClassName("label"),t=>t.__data__.key.split("-")[0]),C=new og({style:Object.assign({x1:0,y1:0,x2:0,y2:B.getAttribute("height"),stroke:"black",lineWidth:1},cJ(A,"rule"))}),O=new oO({style:Object.assign({x:0,y:B.getAttribute("height"),text:"",fontSize:10},cJ(A,"label"))});C.append(O),B.appendChild(C);let E=(t,e,n)=>{let[r]=t.invert(n);return b[gq(b,e.invert(r))]},k=(t,e)=>{C.setAttribute("x1",t[0]),C.setAttribute("x2",t[0]),O.setAttribute("text",i(e))},F=t=>{var e,n,r,i;return e=this,n=void 0,r=void 0,i=function*(){let{x:e}=f,n=E(h,e,t);k(t,n),c("chartIndex",t=>{let e=cC({},t),r=e.marks.find(t=>"line"===t.type),i=uL(cm(v,t=>uL(t,t=>+p[t])/bM(t,t=>+p[t]),t=>y[t]).values());cC(r,{scale:{y:{domain:[1/i,i]}}});let A=function(t){let{transform:e=[]}=t,n=e.find(t=>"normalizeY"===t.type);if(n)return n;let r={type:"normalizeY"};return e.push(r),t.transform=e,r}(r);for(let t of(A.groupBy="color",A.basis=(t,e)=>e[t[gz(t=>g[+t]).center(t,n)]],e.marks))t.animate=!1;return e}),a=(yield l("chartIndex")).view},new(r||(r=Promise))(function(t,A){function a(t){try{s(i.next(t))}catch(t){A(t)}}function o(t){try{s(i.throw(t))}catch(t){A(t)}}function s(e){var n;e.done?t(e.value):((n=e.value)instanceof r?n:new r(function(t){t(n)})).then(a,o)}s((i=i.apply(e,n||[])).next())})},Q=Bd(t=>{let e=yE(B,t);e&&(t=>{let{scale:e,coordinate:n}=a,{x:r,y:i}=e,A=E(n,r,t);for(let e of(k(t,A),w)){let{seriesIndex:t,key:r}=e.__data__,a=t[gz(t=>g[+t]).center(t,A)],o=[0,i.map(1)],s=[0,i.map(p[a]/p[t[0]])],[,l]=n.map(o),[,c]=n.map(s),u=l-c;for(let t of(e.setAttribute("transform",`translate(0, ${u})`),x.get(r)||[]))t.setAttribute("dy",u)}})(e)},e,{leading:n,trailing:r});return F([0,0]),B.addEventListener("pointerenter",Q),B.addEventListener("pointermove",Q),B.addEventListener("pointerleave",Q),()=>{C.remove(),B.removeEventListener("pointerenter",Q),B.removeEventListener("pointermove",Q),B.removeEventListener("pointerleave",Q)}}}Q$.props={reapplyWhenUpdate:!0};var Qq=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function QJ(t,e){for(let[n,r]of Object.entries(e))t.style(n,r)}let QZ=gn(t=>{let e=t.attributes,{x:n,y:r,width:i,height:A,class:a,renders:o={},handleSize:s=10,document:l}=e,c=Qq(e,["x","y","width","height","class","renders","handleSize","document"]);if(!l||void 0===i||void 0===A||void 0===n||void 0===r)return;let u=s/2,f=(t,e,n)=>{t.handle||(t.handle=n.createElement("rect"),t.append(t.handle));let{handle:r}=t;return r.attr(e),r},h=cJ(c0(c,"handleNW","handleNE"),"handleN"),{render:d=f}=h,p=Qq(h,["render"]),g=cJ(c,"handleE"),{render:y=f}=g,v=Qq(g,["render"]),b=cJ(c0(c,"handleSE","handleSW"),"handleS"),{render:B=f}=b,w=Qq(b,["render"]),x=cJ(c,"handleW"),{render:C=f}=x,O=Qq(x,["render"]),E=cJ(c,"handleNW"),{render:k=f}=E,F=Qq(E,["render"]),Q=cJ(c,"handleNE"),{render:M=f}=Q,U=Qq(Q,["render"]),S=cJ(c,"handleSE"),{render:I=f}=S,T=Qq(S,["render"]),L=cJ(c,"handleSW"),{render:_=f}=L,P=Qq(L,["render"]),H=t=>()=>new(gn(e=>((t,e)=>{let{id:n}=t,r=e(t,t.attributes,l);r.id=n,r.style.draggable=!0})(e,t)))({}),j=c5(t).attr("className",a).style("transform",`translate(${n}, ${r})`).style("draggable",!0);j.maybeAppend("selection","rect").style("draggable",!0).style("fill","transparent").call(QJ,Object.assign(Object.assign({width:i,height:A},c0(c,"handle")),{transform:void 0})),j.maybeAppend("handle-n",H(d)).style("x",u).style("y",-u).style("width",i-s).style("height",s).style("fill","transparent").call(QJ,p),j.maybeAppend("handle-e",H(y)).style("x",i-u).style("y",u).style("width",s).style("height",A-s).style("fill","transparent").call(QJ,v),j.maybeAppend("handle-s",H(B)).style("x",u).style("y",A-u).style("width",i-s).style("height",s).style("fill","transparent").call(QJ,w),j.maybeAppend("handle-w",H(C)).style("x",-u).style("y",u).style("width",s).style("height",A-s).style("fill","transparent").call(QJ,O),j.maybeAppend("handle-nw",H(k)).style("x",-u).style("y",-u).style("width",s).style("height",s).style("fill","transparent").call(QJ,F),j.maybeAppend("handle-ne",H(M)).style("x",i-u).style("y",-u).style("width",s).style("height",s).style("fill","transparent").call(QJ,U),j.maybeAppend("handle-se",H(I)).style("x",i-u).style("y",A-u).style("width",s).style("height",s).style("fill","transparent").call(QJ,T),j.maybeAppend("handle-sw",H(_)).style("x",-u).style("y",A-u).style("width",s).style("height",s).style("fill","transparent").call(QJ,P)});function Q0(t,e){var{brushed:n=()=>{},brushended:r=()=>{},brushcreated:i=()=>{},brushstarted:A=()=>{},brushupdated:a=()=>{},extent:o=function(t){let{width:e,height:n}=t.getBBox();return[0,0,e,n]}(t),brushRegion:s=(t,e,n,r,i)=>[t,e,n,r],reverse:l=!1,fill:c="#777",fillOpacity:u="0.3",stroke:f="#fff",selectedHandles:h=["handle-n","handle-e","handle-s","handle-w","handle-nw","handle-ne","handle-se","handle-sw"]}=e,d=Qq(e,["brushed","brushended","brushcreated","brushstarted","brushupdated","extent","brushRegion","reverse","fill","fillOpacity","stroke","selectedHandles"]);let p=null,g=null,y=null,v=null,b=null,B=!1,[w,x,C,O]=o;yR(t,"crosshair"),t.style.draggable=!0;let E=(t,e,n)=>{if(A(n),v&&v.remove(),b&&b.remove(),p=[t,e],l)return k();F()},k=()=>{b=new ov({style:Object.assign(Object.assign({},d),{fill:c,fillOpacity:u,stroke:f,pointerEvents:"none"})}),v=new QZ({style:{x:0,y:0,width:0,height:0,draggable:!0,document:t.ownerDocument},className:"mask"}),t.appendChild(b),t.appendChild(v)},F=()=>{v=new QZ({style:Object.assign(Object.assign({document:t.ownerDocument,x:0,y:0},d),{fill:c,fillOpacity:u,stroke:f,draggable:!0}),className:"mask"}),t.appendChild(v)},Q=(t=!0)=>{v&&v.remove(),b&&b.remove(),p=null,g=null,y=null,B=!1,v=null,b=null,r(t)},M=(t,e,r=!0)=>{let[i,A,a,c]=function(t,e,n,r,i){let[A,a,o,s]=i;return[Math.max(A,Math.min(t,n)),Math.max(a,Math.min(e,r)),Math.min(o,Math.max(t,n)),Math.min(s,Math.max(e,r))]}(t[0],t[1],e[0],e[1],o),[u,f,h,d]=s(i,A,a,c,o);return l?S(u,f,h,d):U(u,f,h,d),n(u,f,h,d,r),[u,f,h,d]},U=(t,e,n,r)=>{v.style.x=t,v.style.y=e,v.style.width=n-t,v.style.height=r-e},S=(t,e,n,r)=>{b.style.d=` - M${w},${x}L${C},${x}L${C},${O}L${w},${O}Z - M${t},${e}L${t},${r}L${n},${r}L${n},${e}Z - `,v.style.x=t,v.style.y=e,v.style.width=n-t,v.style.height=r-e},I={"handle-n":{vector:[0,1,0,0],cursor:"ns-resize"},"handle-e":{vector:[0,0,1,0],cursor:"ew-resize"},"handle-s":{vector:[0,0,0,1],cursor:"ns-resize"},"handle-w":{vector:[1,0,0,0],cursor:"ew-resize"},"handle-nw":{vector:[1,1,0,0],cursor:"nwse-resize"},"handle-ne":{vector:[0,1,1,0],cursor:"nesw-resize"},"handle-se":{vector:[0,0,1,1],cursor:"nwse-resize"},"handle-sw":{vector:[1,0,0,1],cursor:"nesw-resize"}},T=t=>_(t)||L(t),L=t=>{let{id:e}=t;return -1!==h.indexOf(e)&&new Set(Object.keys(I)).has(e)},_=t=>t===v.getElementById("selection"),P=e=>{let{target:n}=e,[r,i]=yk(t,e);if(!v||!T(n)){E(r,i,e),B=!0;return}T(n)&&(y=[r,i])},H=e=>{let{target:n}=e,r=yk(t,e);if(!p)return;if(!y)return M(p,r);if(_(n)){let t,e,n,i,A;return t=(t,e,n,r,i)=>t+ei?i-n:t,e=r[0]-y[0],n=r[1]-y[1],i=t(e,p[0],g[0],w,C),A=t(n,p[1],g[1],x,O),void M([p[0]+i,p[1]+A],[g[0]+i,g[1]+A])}let[i,A]=[r[0]-y[0],r[1]-y[1]],{id:a}=n;if(I[a]){let[t,e,n,r]=I[a].vector;return M([p[0]+i*t,p[1]+A*e],[g[0]+i*n,g[1]+A*r])}},j=e=>{if(y){y=null;let{x:t,y:n,width:r,height:i}=v.style;p=[t,n],g=[t+r,n+i],a(t,n,t+r,n+i,e);return}g=yk(t,e);let[n,r,A,o]=M(p,g);B=!1,i(n,r,A,o,e)},N=t=>{let{target:e}=t;v&&!T(e)&&Q()},D=e=>{let{target:n}=e;v&&T(n)&&!B?_(n)?yR(t,"move"):L(n)&&yR(t,I[n.id].cursor):yR(t,"crosshair")},R=()=>{yR(t,"default")};return t.addEventListener("dragstart",P),t.addEventListener("drag",H),t.addEventListener("dragend",j),t.addEventListener("click",N),t.addEventListener("pointermove",D),t.addEventListener("pointerleave",R),{mask:v,move(t,e,n,r,i=!0){v||E(t,e,{}),p=[t,e],g=[n,r],M([t,e],[n,r],i)},remove(t=!0){v&&Q(t)},destroy(){v&&Q(!1),yR(t,"default"),t.removeEventListener("dragstart",P),t.removeEventListener("drag",H),t.removeEventListener("dragend",j),t.removeEventListener("click",N),t.removeEventListener("pointermove",D),t.removeEventListener("pointerleave",R)}}}function Q1(t,e,n){return e.filter(e=>{if(e===t)return!1;let{interaction:r={}}=e.options;return Object.values(r).find(t=>t.brushKey===n)})}function Q2(t,e){var{elements:n,selectedHandles:r,siblings:i=t=>[],datum:A,brushRegion:a,extent:o,reverse:s,scale:l,coordinate:c,series:u=!1,key:f=t=>t,bboxOf:h=t=>{let{x:e,y:n,width:r,height:i}=t.style;return{x:e,y:n,width:r,height:i}},state:d={},emitter:p}=e,g=Qq(e,["elements","selectedHandles","siblings","datum","brushRegion","extent","reverse","scale","coordinate","series","key","bboxOf","state","emitter"]);let y=n(t),v=i(t),b=v.flatMap(n),B=yH(y,A),w=cJ(g,"mask"),{setState:x,removeState:C}=yL(d,B),O=new Map,{width:E,height:k,x:F=0,y:Q=0}=h(t),M=Q0(t,Object.assign(Object.assign({},w),{extent:o||[0,0,E,k],brushRegion:a,reverse:s,selectedHandles:r,brushended:t=>{t&&p.emit("brush:remove",{nativeEvent:!0}),(u?()=>{for(let t of y)C(t,"inactive");for(let t of O.values())t.remove();O.clear()}:()=>{for(let t of[...y,...b])C(t,"active","inactive")})()},brushed:(e,n,r,i,A)=>{let a=g1(e,n,r,i,l,c);A&&p.emit("brush:highlight",{nativeEvent:!0,data:{selection:a}}),(u?(e,n,r,i)=>{let A=t=>{let e=t.cloneNode();return e.__data__=t.__data__,t.parentNode.appendChild(e),O.set(t,e),e},a=new ox({style:{x:e+F,y:n+Q,width:r-e,height:i-n}});for(let e of(t.appendChild(a),y)){let t=O.get(e)||A(e);t.style.clipPath=a,x(e,"inactive"),x(t,"active")}}:(t,e,n,r)=>{var i;for(let t of v)null==(i=t.brush)||i.remove();let A=new Set;for(let i of y){let{min:a,max:o}=i.getLocalBounds(),[s,l]=a,[c,u]=o;!function(t,e){let[n,r,i,A]=t,[a,o,s,l]=e;return!(a>i||sA||l{let A=g1(t,e,n,r,l,c);p.emit("brush:end",Object.assign(Object.assign({},i),{nativeEvent:!0,data:{selection:A}}))},brushupdated:(t,e,n,r,i)=>{let A=g1(t,e,n,r,l,c);p.emit("brush:end",Object.assign(Object.assign({},i),{nativeEvent:!0,data:{selection:A}}))},brushstarted:t=>{p.emit("brush:start",t)}})),U=({nativeEvent:t,data:e})=>{if(t)return;let{selection:n}=e,[r,i,A,a]=function(t,e,n){let{x:r,y:i}=e,[A,a]=t,o=g2(A,r),s=g2(a,i),l=[o[0],s[0]],c=[o[1],s[1]],[u,f]=n.map(l),[h,d]=n.map(c);return[u,f,h,d]}(n,l,c);M.move(r,i,A,a,!1)};p.on("brush:highlight",U);let S=({nativeEvent:t}={})=>{t||M.remove(!1)};p.on("brush:remove",S);let I=M.destroy.bind(M);return M.destroy=()=>{p.off("brush:highlight",U),p.off("brush:remove",S),I()},M}function Q4(t){var{facet:e,brushKey:n}=t,r=Qq(t,["facet","brushKey"]);return(t,i,A)=>{let{container:a,view:o,options:s}=t,l=yC(a),c={maskFill:"#777",maskFillOpacity:"0.3",maskStroke:"#fff",reverse:!1},u=["active",["inactive",{opacity:.5}]],{scale:f,coordinate:h}=o;if(e){let e=l.getBounds(),n=e.min[0],a=e.min[1],o=e.max[0],s=e.max[1];return Q2(l.parentNode.parentNode,Object.assign(Object.assign({elements:()=>yw(t,i),datum:yM(yx(t,i).map(t=>t.view)),brushRegion:(t,e,n,r)=>[t,e,n,r],extent:[n,a,o,s],state:yP(yx(t,i).map(t=>t.options),u),emitter:A,scale:f,coordinate:h,selectedHandles:void 0},c),r))}let d=Q2(l,Object.assign(Object.assign({elements:yB,key:t=>t.__data__.key,siblings:()=>Q1(t,i,n).map(t=>yC(t.container)),datum:yM([o,...Q1(t,i,n).map(t=>t.view)]),brushRegion:(t,e,n,r)=>[t,e,n,r],extent:void 0,state:yP([s,...Q1(t,i,n).map(t=>t.options)],u),emitter:A,scale:f,coordinate:h,selectedHandles:void 0},c),r));return l.brush=d,()=>d.destroy()}}function Q5(t,e,n,r,i){let[,A,,a]=i;return[t,A,n,a]}function Q3(t,e,n,r,i){let[A,,a]=i;return[A,e,a,r]}Q4.props={reapplyWhenUpdate:!0};var Q6=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Q8="axis-hot-area";function Q9(t){return t.getElementsByClassName("axis")}function Q7(t){return t.getElementsByClassName("axis-line")[0]}function Mt(t){return t.getElementsByClassName("axis-main-group")[0].getLocalBounds()}var Me=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function Mn(t){var{hideX:e=!0,hideY:n=!0}=t,r=Me(t,["hideX","hideY"]);return(t,i,A)=>{let{container:a,view:o,options:s,update:l,setState:c}=t,u=yC(a),f=!1,h=!1,d=o,{scale:p,coordinate:g}=o;return function(t,e){var{filter:n,reset:r,brushRegion:i,extent:A,reverse:a,emitter:o,scale:s,coordinate:l,selection:c,series:u=!1}=e;let f=cJ(Me(e,["filter","reset","brushRegion","extent","reverse","emitter","scale","coordinate","selection","series"]),"mask"),{width:h,height:d}=t.getBBox(),p=function(t=300){let e=null;return n=>{let{timeStamp:r}=n;return null!==e&&r-e{if(t)return;let{selection:r}=e;n(r,{nativeEvent:!1})};return o.on("brush:filter",v),()=>{g.destroy(),o.off("brush:filter",v),t.removeEventListener("click",y)}}(u,Object.assign(Object.assign({brushRegion:(t,e,n,r)=>[t,e,n,r],selection:(t,e,n,r)=>{let{scale:i,coordinate:A}=d;return g1(t,e,n,r,i,A)},filter:(t,r)=>{var i,a,o,u;return i=this,a=void 0,o=void 0,u=function*(){if(h)return;h=!0;let[i,a]=t;c("brushFilter",t=>{let{marks:r}=t,A=r.map(t=>cC({axis:Object.assign(Object.assign({},e&&{x:{transform:[{type:"hide"}]}}),n&&{y:{transform:[{type:"hide"}]}})},t,{scale:{x:{domain:i,nice:!1},y:{domain:a,nice:!1}}}));return Object.assign(Object.assign({},s),{marks:A,clip:!0})}),A.emit("brush:filter",Object.assign(Object.assign({},r),{data:{selection:[i,a]}})),d=(yield l()).view,h=!1,f=!0},new(o||(o=Promise))(function(t,e){function n(t){try{A(u.next(t))}catch(t){e(t)}}function r(t){try{A(u.throw(t))}catch(t){e(t)}}function A(e){var i;e.done?t(e.value):((i=e.value)instanceof o?i:new o(function(t){t(i)})).then(n,r)}A((u=u.apply(i,a||[])).next())})},reset:t=>{if(h||!f)return;let{scale:e}=o,{x:n,y:r}=e,i=n.getOptions().domain,a=r.getOptions().domain;A.emit("brush:filter",Object.assign(Object.assign({},t),{data:{selection:[i,a]}})),f=!1,d=o,c("brushFilter"),l()},extent:void 0,emitter:A,scale:p,coordinate:g},{maskFill:"#777",maskFillOpacity:"0.3",maskStroke:"#fff",unhighlightedOpacity:.5,reverse:!1}),r))}}function Mr(t,e,n){let r=t?n:e,i=t?e:n,A=gJ(r),a=gJ(i),o=i.getOptions().domain,s=!a&&o&&o.length>=2&&0===o[0];return{currentScale:r,targetScale:i,isSourceDiscrete:A,isTargetDiscrete:a,shouldPreserveZeroBaseline:s}}function Mi(t){return t instanceof Date?t.getTime():"string"==typeof t?parseFloat(t):Number(t)}function MA(t,e,n,r,i,A="filter",a=!1){if(y$(A))return[];let o=a?"y":"x",s=a?"x":"y",l=[];for(let r of t){let{channelData:t}=r,i=t[o]||[],a=t[s]||[],c=Array.isArray(i[0])?i[0]:i,u=Array.isArray(a[0]);if(0===c.length)continue;let f=c.length;for(let t=0;t=2){let t=Mi(r),n=Mi(e[0]),A=Mi(e[e.length-1]);isNaN(t)||isNaN(n)||isNaN(A)||(i=t>=n&&t<=A)}if("filter"===A&&i){if(u){let e=a.length;for(let n=0;n0?function({isTargetDiscrete:t,filteredValues:e,shouldPreserveZeroBaseline:n}){if(t)return Array.from(new Set(e)).sort((t,e)=>t-e);{let t=Math.min(...e),r=Math.max(...e);return n?[0,r]:[t,r]}}({isTargetDiscrete:r,filteredValues:l,shouldPreserveZeroBaseline:i}):[]}function Ma(t,e,n,r){r&&e instanceof Map?e.forEach((e,n)=>{e&&Array.isArray(e)&&e.length>0&&(t[n]=e)}):!r&&Array.isArray(e)&&e.length>0&&(t[n?"x":"y"]=e)}let Mo="slider";function Ms(t){var e,n,r,i;if(!(null==t?void 0:t.markState))return 0;let A=0;for(let[a,o]of t.markState.entries()){if("point"!==a.type||!(null==o?void 0:o.channels))continue;let t=null==(e=o.channels)?void 0:e.find(t=>"size"===t.name);if(t){if((null==(r=null==(n=t.scale)?void 0:n.range)?void 0:r.length)>0){A=Math.max(A,Math.max(...t.scale.range.filter(t=>"number"==typeof t)));continue}if((null==(i=t.values)?void 0:i.length)>0){let e=t.values.filter(t=>void 0!==t.value).flatMap(t=>Array.isArray(t.value)?t.value:[t.value]).filter(t=>"number"==typeof t&&!isNaN(t));e.length>0&&(A=Math.max(A,...e))}}}return A}function Ml(t,e,n,r,i,A,a){if(a){let o=A?r:i.x,s=A?i.y:r;t.emit(e,Object.assign(Object.assign({},n),{nativeEvent:a,data:{selection:[Mu(o),Mu(s)]}}))}}function Mc(t,e,n,r){let{domain0:i,filteredDomain:A,channel0:a,channel1:o,prefix:s,hasState:l,isMultiAxis:c,markToScaleMap:u,enableAdaptiveFiltering:f}=r;c&&A instanceof Map?t(e,t=>Object.assign({},function(t,e,n,r,i=!1,A="x",a="y",o=new Map,s=new Map){let{marks:l}=t,c=Ms(e),u=l.map(t=>{var e,l;let c="string"==typeof(null==t?void 0:t.key)?t.key:String((null==t?void 0:t.key)||""),u=o.get(c),f=s.get(u),h=f&&{y:Object.assign({domain:f,nice:!0},"y"!==u?{independent:!0}:void 0)};return cC({axis:{x:{transform:[{type:"hide"}]},y:{transform:[{type:"hide"}]}}},t,{scale:Object.assign(Object.assign({},n),h),[r]:Object.assign(Object.assign({},(null==(e=t[r])?void 0:e[A])&&{[A]:Object.assign({preserve:!0},i&&{ratio:null})}),(null==(l=t[r])?void 0:l[a])&&{[a]:{preserve:!0}}),animate:!1})});return Object.assign(Object.assign({},t),{marks:u,insetLeft:c,insetRight:c,insetTop:c,insetBottom:c,clip:!0,animate:!1})}(t,n,{[a]:{domain:i,nice:!1}},s,l,a,o,u||new Map,A))):t(e,t=>Object.assign({},function(t,e,n,r,i=!1,A="x",a="y"){let{marks:o}=t,s=Ms(e),l=o.map(t=>{var e,o;return cC({axis:{x:{transform:[{type:"hide"}]},y:{transform:[{type:"hide"}]}}},t,{scale:n,[r]:Object.assign(Object.assign({},(null==(e=t[r])?void 0:e[A])&&{[A]:Object.assign({preserve:!0},i&&{ratio:null})}),(null==(o=t[r])?void 0:o[a])&&{[a]:{preserve:!0}}),animate:!1})});return Object.assign(Object.assign({},t),{marks:l,insetLeft:s,insetRight:s,insetTop:s,insetBottom:s,clip:!0,animate:!1})}(t,n,Object.assign({[a]:{domain:i,nice:!1}},f&&Array.isArray(A)?{[o]:{domain:A,nice:!0}}:{}),s,l,a,o)))}function Mu(t){return[t[0],t[t.length-1]]}function Mf({initDomain:t={},className:e=Mo,prefix:n="slider",setValue:r=(t,e)=>t.setValues(e),hasState:i=!1,wait:A=50,leading:a=!0,trailing:o=!1,adaptiveMode:s="filter",getInitValues:l=t=>{var e;let n=null==(e=null==t?void 0:t.attributes)?void 0:e.values;if(0!==n[0]||1!==n[1])return n}}){return(c,u,f)=>{let{container:h,view:d,update:p,setState:g}=c,y=h.getElementsByClassName(e);if(!y.length)return()=>{};let{scale:v,coordinate:b}=d,{x:B,y:w}=v,x=uV(b),C=t=>{let e="vertical"===t?"y":"x",n="vertical"===t?"x":"y";return x?[n,e]:[e,n]},O=new Map,E=new Set,k=yJ(d),F=function(t,e,n,r,i){var A,a,o,s;let l={x:e.x||n.getOptions().domain||[],y:e.y||r.getOptions().domain||[]},{hasIndependentX:c,hasIndependentY:u}=i||yJ(t);if(c||u){let e=1,n=1;for(let[r,i]of t.markState.entries())if(null==i?void 0:i.channels){if(c){let t=i.channels.find(t=>"x"===t.name);(null==(a=null==(A=null==r?void 0:r.scale)?void 0:A.x)?void 0:a.independent)&&(l[`x${e}`]=t.scale.domain,e++)}if(u){let t=i.channels.find(t=>"y"===t.name);(null==(s=null==(o=null==r?void 0:r.scale)?void 0:o.y)?void 0:s.independent)&&(l[`y${n}`]=t.scale.domain,n++)}}}return l}(d,t,B,w,k),Q=Array.from(y),M=t=>Q.some(e=>{let{orientation:n}=e.attributes,[r]=C(n);return r===t}),U=M("x")&&!M("y"),S=M("y")&&!M("x"),I=!y$(s)&&(U||S);for(let t of y){let{orientation:e}=t.attributes,[c,u]=C(e),h=`${n}${uv(c)}:filter`,y="x"===c,{ratio:b}=B.getOptions(),{ratio:Q}=w.getOptions(),M=!1,T=function({getFiltering:t,setFiltering:e,domainsOf:n,view:r,independentScaleInfo:i,enableAdaptiveFiltering:A,hasOnlyXSlider:a,hasOnlyYSlider:o,adaptiveMode:s,scaleX:l,scaleY:c,scale:u,channelDomain:f,channel0:h,channel1:d,isX:p,emitter:g,eventName:y,setState:v,slider:b,prefix:B,hasState:w,update:x,wait:C,leading:O,trailing:E}){return Bd(C=>{var O,E,k,F;return O=this,E=void 0,k=void 0,F=function*(){let{initValue:O=!1}=C;if(t()&&!O)return;e(!0);let{nativeEvent:E=!0}=C,{markDataPairs:k}=function(t){var e,n;let r=[],i=[],A=[],a=t.markState;if(a){for(let[t,o]of a.entries())if(null==o?void 0:o.channels){let a={};for(let t of o.channels)if((null==t?void 0:t.name)==="x"&&(null==(e=t.values)?void 0:e.length)>0){let e=[];for(let n of t.values)(null==n?void 0:n.value)&&(e=e.concat(n.value),r.push(n.value));a.x=e}else if(t&&("y"===t.name||t.name.startsWith("y"))&&(null==(n=t.values)?void 0:n.length)>0){let e=t.name,n=[];for(let r of t.values)if(null==r?void 0:r.value){let t=r.value;n.push(t),("y"===e||"y1"===e)&&(Array.isArray(t)?i.push(t.flat()):i.push([t]))}a[e]=n}let s=a.x||[],l=a.y||[];s.length>0&&l.length>0&&A.push({markKey:t.key||`mark_${A.length}`,channelData:a})}}return{xChannelValues:r.flat(),yChannelValues:i.flat(),markDataPairs:A}}(r);if(i[`hasIndependent${d.toUpperCase()}`]){let[t]=n(C),{filteredDomain:e,markToScaleMap:x}=function({view:t,domain0:e,shouldFilterXAxis:n,enableAdaptiveFiltering:r,markDataPairs:i,adaptiveMode:A,scaleX:a,scaleY:o,scale:s,channelDomain:l,independentScaleInfo:c,channel0:u}){let f=new Map,h=new Map;if(!r||0===i.length||!(null==e?void 0:e.length))return{filteredDomain:f,markToScaleMap:h};let d=cf(t,"options.slider");if(Object.keys(d).length>0&&Object.prototype.hasOwnProperty.call(d,u)){let t,r,u,f,d,p,g=(t=n?o:a,u=(r=Object.keys((t=>{let e={};return Object.keys(l).forEach(n=>{(n===t||n.match(RegExp(`^${t}\\d+$`)))&&(e[n]=l[n])}),e})(n?"x":"y"))).map(t=>s[t]),f=gJ(t),d=u.map(t=>gJ(t)),p=u.map((t,e)=>{let n=t.getOptions().domain;return!d[e]&&n&&n.length>=2&&0===n[0]}),{currentScale:t,targetScales:u,isSourceDiscrete:f,isTargetDiscrete:d,shouldPreserveZeroBaseline:p,targetScaleKeys:r});(n?c.markToXScaleMap:c.markToYScaleMap).forEach((t,e)=>{h.set(e,t)});let y=function({markDataPairs:t,domain:e,scaleInfo:n,markToScaleMap:r,adaptiveMode:i,shouldFilterXAxis:A=!1}){let a=new Map,{isSourceDiscrete:o,isTargetDiscrete:s,shouldPreserveZeroBaseline:l,targetScaleKeys:c}=n;return t.forEach(t=>{let n=r.get(t.markKey);if(!n)return;let u=c.indexOf(n);if(-1===u)return;let f=MA([t],e,o,s[u],l[u],i,A);a.set(n,f)}),a}({markDataPairs:i,domain:e,scaleInfo:g,markToScaleMap:h,adaptiveMode:A,isViewSlider:!0,shouldFilterXAxis:n});return Ma(l,y,n,!0),{filteredDomain:y,markToScaleMap:h}}{let r=function(t,e){for(let[n]of t.markState.entries()){let t=cf(n,"slider");if(Object.keys(t||{}).length>0&&Object.prototype.hasOwnProperty.call(t,e))return String(n.key||"")}return null}(t,u);if(r){let t=Mr(n,a,o),s=n?c.markToXScaleMap:c.markToYScaleMap,l=s.get(r)||"";if(l)return h.set(r,l),{filteredDomain:function(t,e,n,r,i,A,a=!1,o){let s=new Map;if(0===t.length||0===e.length)return s;let{isSourceDiscrete:l,isTargetDiscrete:c,shouldPreserveZeroBaseline:u}=n,f=o?t.filter(t=>o.get(t.markKey)===i):t.filter(t=>t.markKey===r);if(0===f.length)return s;let h=MA(f,e,l,c,u,A,a);return s.set(i,h),s}(i,e,t,r,l,A,n,s),markToScaleMap:h}}}return{filteredDomain:f,markToScaleMap:h}}({view:r,domain0:t,shouldFilterXAxis:o&&!p,enableAdaptiveFiltering:A&&(a&&p||o&&!p),markDataPairs:k,adaptiveMode:s,scaleX:l,scaleY:c,scale:u,channelDomain:f,independentScaleInfo:i,channel0:h});f[h]=t,Ml(g,y,C,t,f,p,E),Mc(v,b,r,{domain0:t,filteredDomain:e,channel0:h,channel1:d,prefix:B,hasState:w,isMultiAxis:!0,markToScaleMap:x,enableAdaptiveFiltering:A})}else{let[t,e]=n(C),i=function({domain0:t,domain1:e,shouldFilterXAxis:n,enableAdaptiveFiltering:r,markDataPairs:i,adaptiveMode:A,scaleX:a,scaleY:o,channelDomain:s,hasOnlyXSlider:l,hasOnlyYSlider:c,isX:u}){let f=e;return r&&i.length>0&&(l&&u||c&&!u)&&(null==t?void 0:t.length)>0&&Ma(s,f=function({markDataPairs:t,domain:e,scaleInfo:n,adaptiveMode:r,shouldFilterXAxis:i=!1}){let{isSourceDiscrete:A,isTargetDiscrete:a,shouldPreserveZeroBaseline:o}=n;return MA(t,e,A,a,o,r,i)}({markDataPairs:i,domain:t,scaleInfo:Mr(n,a,o),adaptiveMode:A,shouldFilterXAxis:n}),n,!1),f}({domain0:t,domain1:e,shouldFilterXAxis:o&&!p,enableAdaptiveFiltering:A,markDataPairs:k,adaptiveMode:s,scaleX:l,scaleY:c,channelDomain:f,hasOnlyXSlider:a,hasOnlyYSlider:o,isX:p});f[h]=t,Ml(g,y,C,t,f,p,E),Mc(v,b,r,{domain0:t,filteredDomain:i,channel0:h,channel1:d,prefix:B,hasState:w,isMultiAxis:!1,markToScaleMap:void 0,enableAdaptiveFiltering:A})}yield x(),e(!1)},new(k||(k=Promise))(function(t,e){function n(t){try{i(F.next(t))}catch(t){e(t)}}function r(t){try{i(F.throw(t))}catch(t){e(t)}}function i(e){var i;e.done?t(e.value):((i=e.value)instanceof k?i:new k(function(t){t(i)})).then(n,r)}i((F=F.apply(O,E||[])).next())})},C,{leading:O,trailing:E})}({getFiltering:()=>M,setFiltering:t=>{M=t},domainsOf:t=>{if(t.data){let{selection:e}=t.data,[n=Mu(F.x),r=Mu(F.y)]=e;return y?[g0(B,n,b),g0(w,r,Q)]:[g0(w,r,Q),g0(B,n,b)]}let{value:n}=t.detail;return[function(t,e,n){let[r,i]=t,A=n?t=>1-t:t=>t,a=gZ(e,A(r),!0),o=gZ(e,A(i),!1);return g0(e,[a,o])}(n,v[c],x&&"horizontal"===e),F[u]]},view:d,independentScaleInfo:k,enableAdaptiveFiltering:I,hasOnlyXSlider:U,hasOnlyYSlider:S,adaptiveMode:s,scaleX:B,scaleY:w,scale:v,channelDomain:F,channel0:c,channel1:u,isX:y,emitter:f,eventName:h,setState:g,slider:t,prefix:n,hasState:i,update:p,wait:A,leading:a,trailing:o}),L=e=>{let{nativeEvent:n}=e;if(n)return;let{data:i}=e,{selection:A}=i,[a,o]=A;t.dispatchEvent(new ab("valuechange",{data:i,nativeEvent:!1})),r(t,y?g4(a,B):g4(o,w))};f.on(h,L),t.addEventListener("valuechange",T),O.set(t,T),E.add([h,L]);let _=l(t);_&&t.dispatchEvent(new ab("valuechange",{detail:{value:_},nativeEvent:!1,initValue:!0}))}return()=>{for(let[t,e]of O)t.removeEventListener("valuechange",e);for(let[t,e]of E)f.off(t,e)}}}function Mh({className:t=Mo,setValue:e=(t,e)=>t.setValues(e),minRange:n=.01,wheelSensitivity:r=.05,x:i=!0,y:A=!0}={}){return a=>{let{container:o,view:s}=a,{coordinate:l}=s,c=uV(l),u=function(t){var e;try{let n=null==(e=t.ownerDocument)?void 0:e.defaultView;if(!n||"function"!=typeof n.getContextService)return null;let r=n.getContextService().getDomElement();return r instanceof HTMLElement?r:null}catch(t){return null}}(o),f=Math.max(1e-6,Math.min(1,n)),h=o.getElementsByClassName(t);if(!h.length)return()=>{};let d=(t,e)=>!0===t||!1!==t&&("shift"===t?e.shiftKey&&!e.ctrlKey&&!e.altKey:"ctrl"===t?e.ctrlKey&&!e.shiftKey&&!e.altKey:"alt"===t&&e.altKey&&!e.shiftKey&&!e.ctrlKey),p=(t,n)=>{e(t,n),t.dispatchEvent(new ab("valuechange",{detail:{value:n},nativeEvent:!0}))},g=(t,e,n,r,i)=>Math.max(r,Math.min(i,Math.max(0,Math.min(1,(t-e)/n)))),y=t=>{if(!u)return;let e=t.target;if(!u.contains(e))return;let n=u.getBoundingClientRect(),a=t.clientX-n.left,o=t.clientY-n.top,s=[];for(let e of h){let{values:n,orientation:r}=e.attributes;if(!n)continue;let a="horizontal"===r;d("x"==(c?a?"y":"x":a?"x":"y")?i:A,t)&&s.push(e)}if(0!==s.length)for(let e of(t.preventDefault(),t.stopPropagation(),s)){let{values:n,orientation:i,x:A,y:s,trackLength:l}=e.attributes,[c,u]=n,h=u-c,d="horizontal"===i?g(a,A,l,c,u):g(o,s,l,c,u),y=r*Math.max(.1,Math.min(100,.01/Math.max(h,1e-4))),v=Math.max(f,Math.min(1,h*(1+t.deltaY*y))),b=(d-c)/h,B=(u-d)/h,w=d-v*b,x=d+v*B;w<0?(w=0,x=Math.min(1,v)):x>1&&(x=1,w=Math.max(0,1-v)),p(e,[w,x])}};return u&&u.addEventListener("wheel",y,{passive:!1,capture:!0}),()=>{u&&u.removeEventListener("wheel",y,{capture:!0})}}}Mh.props={reapplyWhenUpdate:!0};let Md="g2-scrollbar";var Mp=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Mg={backgroundColor:"rgba(0,0,0,0.75)",color:"#fff",width:"max-content",padding:"1px 4px",fontSize:"12px",borderRadius:"2.5px",boxShadow:"0 3px 6px -4px rgba(0,0,0,0.12), 0 6px 16px 0 rgba(0,0,0,0.08), 0 9px 28px 8px rgba(0,0,0,0.05)"};function My(t){return"text"===t.nodeName&&!!t.isOverflowing()}function Mv(t){var{offsetX:e=8,offsetY:n=8}=t,r=Mp(t,["offsetX","offsetY"]);return t=>{let{container:i}=t,[A,a]=i.getBounds().min,o=cJ(r,"tip"),s=new Set,l=t=>{var r;let{target:l}=t;if(!My(l))return void t.stopPropagation();let{offsetX:c,offsetY:u}=t,f=c+e-A,h=u+n-a;if(l.tip){l.tip.style.x=f,l.tip.style.y=h;return}let{text:d}=l.style,p=new oh({className:"poptip",style:{innerHTML:(r=Object.assign(Object.assign({},Mg),o),`
    ${d}
    `),x:f,y:h}});i.appendChild(p),l.tip=p,s.add(p)},c=t=>{let{target:e}=t;My(e)?e.tip&&(e.tip.remove(),e.tip=null,s.delete(e.tip)):t.stopPropagation()};return i.addEventListener("pointerover",l),i.addEventListener("pointerout",c),()=>{i.removeEventListener("pointerover",l),i.removeEventListener("pointerout",c),s.forEach(t=>t.remove())}}}Mv.props={reapplyWhenUpdate:!0};let Mm=function(t,e){var n=wy(e),r=n.length;if(eW(t))return!r;for(var i=0;i{var i;let A;return i=t(e,n,r),A=(i=`${i}`).length,MM(i,A-1)&&!MM(i,A-2)&&(i=i.slice(0,-1)),"/"===i[0]?i:`/${i}`}),n=e.map(MQ),i=new Set(e).add("");for(let t of n)i.has(t)||(i.add(t),e.push(t),n.push(MQ(t)),f.push(MO));h=(t,n)=>e[n],d=(t,e)=>n[e]}for(a=0,i=f.length;a=0&&(l=f[t]).data===MO;--t)l.data=null}if(o.parent=Mx,o.eachBefore(function(t){t.depth=t.parent.depth+1,--i}).eachBefore(wr),o.parent=null,i>0)throw Error("cycle");return o}return r.id=function(t){return arguments.length?(e=MB(t),r):e},r.parentId=function(t){return arguments.length?(n=MB(t),r):n},r.path=function(e){return arguments.length?(t=MB(e),r):t},r}function MQ(t){let e=t.length;if(e<2)return"";for(;--e>1&&!MM(t,e););return t.slice(0,e)}function MM(t,e){if("/"===t[e]){let n=0;for(;e>0&&"\\"===t[--e];)++n;if((1&n)==0)return!0}return!1}function MU(t,e,n,r,i){var A,a,o=t.children,s=o.length,l=Array(s+1);for(l[0]=a=A=0;A=n-1){var c=o[e];c.x0=i,c.y0=A,c.x1=a,c.y1=s;return}for(var u=l[e],f=r/2+u,h=e+1,d=n-1;h>>1;l[p]s-A){var v=r?(i*y+a*g)/r:a;t(e,h,g,i,A,v,s),t(h,n,y,v,A,a,s)}else{var b=r?(A*y+s*g)/r:s;t(e,h,g,i,A,a,b),t(h,n,y,i,b,a,s)}}(0,s,t.value,e,n,r,i)}function MS(t,e,n,r,i){for(var A,a=t.children,o=-1,s=a.length,l=t.value&&(i-n)/t.value;++of&&(f=o),(h=Math.max(f/(g=c*c*p),g/u))>d){c-=o;break}d=h}y.push(a={value:c,dice:s1?e:1)},n}(MT),MP=function t(e){function n(t,n,r,i,A){if((a=t._squarify)&&a.ratio===e)for(var a,o,s,l,c,u=-1,f=a.length,h=t.value;++u1?e:1)},n}(MT);function MH(){return 0}function Mj(t){return function(){return t}}function MN(t,e,n){var r;let{value:i}=n,A=function(t,e){let n={treemapBinary:MU,treemapDice:B8,treemapSlice:MS,treemapSliceDice:MI,treemapSquarify:M_,treemapResquarify:MP},r="treemapSquarify"===t?n[t].ratio(e):n[t];if(!r)throw TypeError("Invalid tile method!");return r}(e.tile,e.ratio),a=(r=e.path,Array.isArray(t)?"function"==typeof r?MF().path(r)(t):MF()(t):B7(t));nn(t)?function t(e){let n=cf(e,["data","name"]);n.replaceAll&&(e.path=n.replaceAll(".","/").split("/")),e.children&&e.children.forEach(e=>{t(e)})}(a):function t(e,n=[e.data.name]){e.id=e.id||e.data.name,e.path=n,e.children&&e.children.forEach(r=>{r.id=`${e.id}/${r.data.name}`,r.path=[...n,r.data.name],t(r,r.path)})}(a),i?a.sum(t=>e.ignoreParentValue&&t.children?0:xe(i)(t)).sort(e.sort):a.count(),(function(){var t=M_,e=!1,n=1,r=1,i=[0],A=MH,a=MH,o=MH,s=MH,l=MH;function c(t){return t.x0=t.y0=0,t.x1=n,t.y1=r,t.eachBefore(u),i=[0],e&&t.eachBefore(B6),t}function u(e){var n=i[e.depth],r=e.x0+n,c=e.y0+n,u=e.x1-n,f=e.y1-n;uObject.assign(t,{id:t.id.replace(/^\//,""),x:[t.x0,t.x1],y:[t.y0,t.y1]}));return[o.filter("function"==typeof e.layer?e.layer:t=>t.height===e.layer),o]}var MD=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let MR={breadCrumbFill:"rgba(0, 0, 0, 0.85)",breadCrumbFontSize:12,breadCrumbY:12,activeFill:"rgba(0, 0, 0, 0.5)"};var MK=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Mz="partition",MG="markType",MV="path",MW="ancestor-node",MX="childNodeCount",MY={id:Mz,encode:{x:"x",y:"y",key:MV,color:MW,value:"value",name:"name"},labels:[{style:{pointerEvents:"none"},text:"value",position:"inside",transform:[{type:"overflowHide"}]}],axis:{x:{title:"Time/Order",label:!0},y:!1},style:{[MG]:Mz,[MX]:"childNodeCount"},state:{active:{zIndex:2},inactive:{zIndex:1}},legend:!1,coordinate:{type:"cartesian",grid:!1},interaction:{drillDown:!0}},M$=t=>{let{encode:e,data:n=[],layout:r={}}=t,i=MK(t,["encode","data","layout"]),{fillParent:A=!0,sort:a}=r,o=Object.assign(Object.assign({},MY.encode),e),{value:s}=o;return[cC({},MY,Object.assign({type:"rect",data:function(t){let{data:e,encode:n,fillParent:r,sort:i}=t,{color:A,value:a,name:o}=n;return(function(t,e={}){let{valueField:n="value",sort:r,fillParent:i=!0,nameField:A="name"}=e;if(!t||0===t.length)return[];let a=(t,e=null,r=0)=>{let i={data:t,depth:r,parent:e,children:[],x0:0,x1:0,value:t[n]||0};return t.children&&t.children.length>0&&(i.children=t.children.map(t=>a(t,i,r+1))),i},o=[],s=0;return t.forEach(t=>{let e=a(t),l=(t,e=0,n=!1,A=0)=>{if(n||0===t.depth)t.x0=n?e:0,t.x1=t.x0+t.value;else if(t.x0=e,i&&A>0){let n=t.parent?t.parent.children.reduce((t,e)=>t+e.value,0):t.value,r=t.parent?t.parent.children.length:1,i=n>0?t.value/n:1/r;t.x1=e+A*i}else t.x1=e+t.value;let a=t.x0,o=t.x1-t.x0,s=r?[...t.children].sort((t,e)=>r(t.data,e.data)):t.children;if(i&&s.length>0){let e=t.children.reduce((t,e)=>t+e.value,0);s.forEach(t=>{l(t,a,!1,o);let n=e>0?t.value/e:1/s.length;a+=o*n})}else s.forEach(t=>{l(t,a,!1,0),a+=t.x1-t.x0})};l(e,s,!0),s+=e.value;let c=t=>{o.push((t=>{var e,r,i;let a=t=>{var e;return null!=(e=t[A])?e:t.name},o=[a(t.data)],s=t;for(;s.parent;)o.unshift(a(s.parent.data)),s=s.parent;return Object.assign(Object.assign({},B3(t.data,[n])),{[MV]:o,[MW]:null!=(i=null==(r=null==(e=s.parent)?void 0:e.data)?void 0:r[A])?i:t.data[A],name:t.data[A],depth:t.depth,value:t.value,x:[t.x0,t.x1],y:[t.depth,t.depth+1],[MX]:t.children.length})})(t)),t.children.forEach(c)};c(e)}),o})(e,{valueField:a,fillParent:r,nameField:o,sort:i}).map(t=>{let e=Object.assign({},t);return A&&A!==MW&&(e[A]=t[A]),e})}({encode:o,data:n,fillParent:A,sort:a}),encode:o,tooltip:{title:"path",items:[t=>({name:s,value:t[s]})]},interaction:{elementHighlight:!0}},i))]};M$.props={};let Mq={rootText:"root",style:{fill:"rgba(0, 0, 0, 0.6)",fontSize:11},y:4,active:{fill:"rgba(0, 0, 0, 0.4)"}};var MJ=function(t,e,n,r){return new(n||(n=Promise))(function(i,A){function a(t){try{s(r.next(t))}catch(t){A(t)}}function o(t){try{s(r.throw(t))}catch(t){A(t)}}function s(t){var e;t.done?i(t.value):((e=t.value)instanceof n?e:new n(function(t){t(e)})).then(a,o)}s((r=r.apply(t,e||[])).next())})},MZ=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let M0={pointR:6,pointStrokeWidth:1,pointStroke:"#888",pointActiveStroke:"#f5f5f5",pathStroke:"#888",pathLineDash:[3,4],labelFontSize:12,labelFill:"#888",labelStroke:"#fff",labelLineWidth:1,labelY:-6,labelX:2},M1="movePoint",M2=t=>{let e=t.target,{markType:n}=e;"line"===n&&(e.attr("_lineWidth",e.attr("lineWidth")||1),e.attr("lineWidth",e.attr("_lineWidth")+3)),"interval"===n&&(e.attr("_opacity",e.attr("opacity")||1),e.attr("opacity",.7*e.attr("_opacity")))},M4=t=>{let e=t.target,{markType:n}=e;"line"===n&&e.attr("lineWidth",e.attr("_lineWidth")),"interval"===n&&e.attr("opacity",e.attr("_opacity"))},M5=(t,e,n)=>{t.forEach((t,r)=>{t.attr("stroke",e[1]===r?n.activeStroke:n.stroke)})},M3=(t,e,n,r)=>{let i=new ov({style:n}),A=new oO({style:r});return e.appendChild(A),t.appendChild(i),[i,A]},M6=(t,e)=>{if(!cf(t,["options","range","indexOf"]))return;let n=t.options.range.indexOf(e);return t.sortedDomain[n]},M8=(t,e,n)=>{let r=yz(t,e),i=yz(t,n)/r;return[t[0]+(e[0]-t[0])*i,t[1]+(e[1]-t[1])*i]};var M9=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let M7=()=>t=>{let{children:e}=t;if(!Array.isArray(e))return[];let{x:n=0,y:r=0,width:i,height:A,data:a}=t;return e.map(t=>{var{data:e,x:o,y:s,width:l,height:c}=t;return Object.assign(Object.assign({},M9(t,["data","x","y","width","height"])),{data:pI(e,a),x:null!=o?o:n,y:null!=s?s:r,width:null!=l?l:i,height:null!=c?c:A})})};M7.props={};var Ut=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Ue=()=>t=>{let{children:e}=t;if(!Array.isArray(e))return[];let{direction:n="row",ratio:r=e.map(()=>1),padding:i=0,data:A}=t,[a,o,s,l]="col"===n?["y","height","width","x"]:["x","width","height","y"],c=r.reduce((t,e)=>t+e),u=t[o]-i*(e.length-1),f=r.map(t=>t/c*u),h=[],d=t[a]||0;for(let n=0;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Ui=pU(t=>{let{encode:e,data:n,scale:r,shareSize:i=!1}=t,{x:A,y:a}=e,o=(t,e)=>{var A;if(void 0===t||!i)return{};let a=cy(n,e=>e[t]),o=(null==(A=null==r?void 0:r[e])?void 0:A.domain)||Array.from(a.keys()),s=o.map(t=>a.has(t)?a.get(t).length:1);return{domain:o,flex:s}};return{scale:{x:Object.assign(Object.assign({paddingOuter:0,paddingInner:.1,guide:void 0===A?null:{position:"top"}},void 0===A&&{paddingInner:0}),o(A,"x")),y:Object.assign(Object.assign({range:[0,1],paddingOuter:0,paddingInner:.1,guide:void 0===a?null:{position:"right"}},void 0===a&&{paddingInner:0}),o(a,"y"))}}}),UA=pS(t=>{let e,n,r,{data:i,scale:A,legend:a}=t,o=[t];for(;o.length;){let{children:t,encode:i={},scale:A={},legend:a={}}=o.shift(),{color:s}=i,{color:l}=A,{color:c}=a;void 0!==s&&(e=s),void 0!==l&&(n=l),void 0!==c&&(r=c),Array.isArray(t)&&o.push(...t)}let s="string"==typeof e?e:"",[l,c]=(()=>{var t;let n=null==(t=null==A?void 0:A.color)?void 0:t.domain;if(void 0!==n)return[n];if(void 0===e)return[void 0];let r="function"==typeof e?e:t=>t[e],a=i.map(r);return a.some(t=>"number"==typeof t)?[h3(a)]:[Array.from(new Set(a)),"ordinal"]})();return Object.assign({encode:{color:{type:"column",value:null!=l?l:[]}},scale:{color:cC({},n,{domain:l,type:c})}},void 0===a&&{legend:{color:cC({title:s},r)}})}),Ua=pU(()=>({animate:{enterType:"fadeIn"}})),Uo=pS(()=>({frame:!1,encode:{shape:"hollow"},style:{lineWidth:0}})),Us=pS(()=>({type:"cell"})),Ul=pS(t=>{let{data:e}=t;return{data:{type:"inline",value:e,transform:[{type:"custom",callback:()=>{let{data:e,encode:n}=t,{x:r,y:i}=n,A=r?Array.from(new Set(e.map(t=>t[r]))):[],a=i?Array.from(new Set(e.map(t=>t[i]))):[];if(A.length&&a.length){let t=[];for(let e of A)for(let n of a)t.push({[r]:e,[i]:n});return t}return A.length?A.map(t=>({[r]:t})):a.length?a.map(t=>({[i]:t})):void 0}}]}}}),Uc=pS((t,e=Uu,n=Uh,r=Ud,i={})=>{let{data:A,encode:a,children:o,scale:s,x:l=0,y:c=0,shareData:u=!1,key:f}=t,{value:h}=A,{x:d,y:p}=a,{color:g}=s,{domain:y}=g;return{children:(t,A,a)=>{let{x:s,y:g}=A,{paddingLeft:v,paddingTop:b,marginLeft:B,marginTop:w}=a,{domain:x}=s.getOptions(),{domain:C}=g.getOptions(),O=uQ(t),E=t.map(e),k=t.map(({x:t,y:e})=>[s.invert(t),g.invert(e)]),F=k.map(([t,e])=>n=>{let{[d]:r,[p]:i}=n;return(void 0===d||r===t)&&(void 0===p||i===e)}).map(t=>h.filter(t)),Q=u?uL(F,t=>t.length):void 0,M=k.map(([t,e])=>({columnField:d,columnIndex:x.indexOf(t),columnValue:t,columnValuesLength:x.length,rowField:p,rowIndex:C.indexOf(e),rowValue:e,rowValuesLength:C.length})),U=M.map(t=>Array.isArray(o)?o:[o(t)].flat(1));return O.flatMap(t=>{let[e,A,a,o]=E[t],s=M[t],u=F[t];return U[t].map(g=>{var x,C,{scale:O,key:E,facet:k=!0,axis:F={},legend:M={}}=g,U=Ur(g,["scale","key","facet","axis","legend"]);let S=(null==(x=null==O?void 0:O.y)?void 0:x.guide)||F.y,I=(null==(C=null==O?void 0:O.x)?void 0:C.guide)||F.x,T=k?u:0===u.length?[]:h,L={x:Up(I,n)(s,T),y:Up(S,r)(s,T)};return Object.assign(Object.assign({key:`${E}-${t}`,data:T,margin:0,x:e+v+l+B,y:A+b+c+w,parentKey:f,width:a,height:o,paddingLeft:0,paddingRight:0,paddingTop:0,paddingBottom:0,frame:!!T.length,dataDomain:Q,scale:cC({x:{tickCount:d?5:void 0},y:{tickCount:p?5:void 0}},O,{color:{domain:y}}),axis:cC({},F,L),legend:!1},U),i)})})}}});function Uu(t){let{points:e}=t;return pD(e)}function Uf(t,e){return e.length?cC({title:!1,tick:null,label:null},t):cC({title:!1,tick:null,label:null,grid:null},t)}function Uh(t){return(e,n)=>{let{rowIndex:r,rowValuesLength:i,columnIndex:A,columnValuesLength:a}=e;return r!==i-1?Uf(t,n):cC({title:A===a-1&&void 0,grid:n.length?void 0:null},t)}}function Ud(t){return(e,n)=>{let{rowIndex:r,columnIndex:i}=e;return 0!==i?Uf(t,n):cC({title:0===r&&void 0,grid:n.length?void 0:null},t)}}function Up(t,e){return"function"==typeof t?t:null===t||!1===t?()=>null:e(t)}let Ug=()=>t=>[Un.of(t).call(Us).call(UA).call(Ua).call(Ui).call(Uo).call(Ul).call(Uc).value()];Ug.props={};var Uy=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Uv=pU(t=>({scale:{x:{guide:null,paddingOuter:0,paddingInner:.1},y:{guide:null,range:[0,1],paddingOuter:0,paddingInner:.1}}})),Um=pS(t=>{let{data:e,children:n,x:r=0,y:i=0,key:A}=t;return{children:(t,a,o)=>{let{x:s,y:l}=a,{paddingLeft:c,paddingTop:u,marginLeft:f,marginTop:h}=o,{domain:d}=s.getOptions(),{domain:p}=l.getOptions(),g=uQ(t),y=t.map(({points:t})=>pD(t)),v=t.map(({x:t,y:e})=>[s.invert(t),l.invert(e)]),b=v.map(([t,e])=>({columnField:t,columnIndex:d.indexOf(t),columnValue:t,columnValuesLength:d.length,rowField:e,rowIndex:p.indexOf(e),rowValue:e,rowValuesLength:p.length})),B=b.map(t=>Array.isArray(n)?n:[n(t)].flat(1));return g.flatMap(t=>{let[n,a,o,s]=y[t],[l,d]=v[t],p=b[t];return B[t].map(g=>{var y,v,b,B;let{scale:w,key:x,encode:C,axis:O,interaction:E}=g,k=Uy(g,["scale","key","encode","axis","interaction"]),F=null==(y=null==w?void 0:w.y)?void 0:y.guide,Q={x:("function"==typeof(b=null==(v=null==w?void 0:w.x)?void 0:v.guide)?b:null===b?()=>null:(t,e)=>{let{rowIndex:n,rowValuesLength:r}=t;if(n!==r-1)return Uf(b,e)})(p,e),y:("function"==typeof(B=F)?B:null===B?()=>null:(t,e)=>{let{columnIndex:n}=t;if(0!==n)return Uf(B,e)})(p,e)};return Object.assign({data:e,parentKey:A,key:`${x}-${t}`,x:n+c+r+f,y:a+u+i+h,width:o,height:s,margin:0,paddingLeft:0,paddingRight:0,paddingTop:0,paddingBottom:0,frame:!0,scale:cC({x:{facet:!1},y:{facet:!1}},w),axis:cC({x:{tickCount:5},y:{tickCount:5}},O,Q),legend:!1,encode:cC({},C,{x:l,y:d}),interaction:cC({},E,{legendFilter:!1})},k)})})}}}),Ub=pS(t=>{let{encode:e}=t,n=Uy(t,["encode"]),{position:r=[],x:i=r,y:A=[...r].reverse()}=e,a=Uy(e,["position","x","y"]),o=[];for(let t of[i].flat(1))for(let e of[A].flat(1))o.push({$x:t,$y:e});return Object.assign(Object.assign({},n),{data:o,encode:Object.assign(Object.assign({},a),{x:"$x",y:"$y"}),scale:Object.assign(Object.assign({},1===[i].flat(1).length&&{x:{paddingInner:0}}),1===[A].flat(1).length&&{y:{paddingInner:0}})})});var UB=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Uw=pU(t=>({scale:{x:{guide:{type:"axisArc"},paddingOuter:0,paddingInner:.1},y:{guide:null,range:[0,1],paddingOuter:0,paddingInner:.1}}})),Ux=pU(t=>({coordinate:{type:"polar"}})),UC=t=>{let{encode:e}=t,n=UB(t,["encode"]),{position:r}=e;return Object.assign(Object.assign({},n),{encode:{x:r}})};function UO(t){return t=>null}function UE(t){let{points:e}=t,[n,r,i,A]=e,a=pP(n,A),o=p_(n,A),s=pN(o,p_(r,i)),l=1/Math.sin(s/2),c=a/(1+l),u=c*Math.sqrt(2),[f,h]=i,d=pj(o)+s/2,p=c*l;return[f+p*Math.sin(d)-u/2,h-p*Math.cos(d)-u/2,u,u]}let Uk=()=>t=>{let{children:e=[],duration:n=1e3,iterationCount:r=1,direction:i="normal",easing:A="ease-in-out-sine"}=t,a=e.length;if(!Array.isArray(e)||0===a)return[];let{key:o}=e[0],s=e.map(t=>Object.assign(Object.assign({},t),{key:o})).map(t=>(function(t,e,n){let r=[t];for(;r.length;){let t=r.pop();t.animate=cC({enter:{duration:e},update:{duration:e,easing:n,type:"morphing",fill:"both"},exit:{type:"fadeOut",duration:e}},t.animate||{});let{children:i}=t;Array.isArray(i)&&r.push(...i)}return t})(t,n,A));return function*(){let t,e=0;for(;"infinite"===r||e{var e;return[t,null==(e=wT(i,t))?void 0:e[0]]}).filter(([,t])=>cq(t));return Array.from(cy(e,t=>A.map(([,e])=>e[t]).join("-")).values())}function UQ(t){var e,n;return Array.isArray(t)?(e=t,(t,n,r)=>(n,r)=>e.reduce((e,i)=>0!==e?e:gv(t[n][i],t[r][i]),0)):"function"==typeof t?(n=t,(t,e,r)=>U_(e=>n(t[e]))):"series"===t?US:"value"===t?UI:"sum"===t?UT:"maxIndex"===t?UL:null}function UM(t,e){for(let n of t)n.sort(e)}function UU(t,e){return(null==e?void 0:e.domain)||Array.from(new Set(t))}function US(t,e,n){return U_(t=>n[t])}function UI(t,e,n){return U_(t=>e[t])}function UT(t,e,n){let r=new Map(Array.from(cy(uQ(t),t=>n[+t]).entries()).map(([t,n])=>[t,n.reduce((t,n)=>t+ +e[n])]));return U_(t=>r.get(n[t]))}function UL(t,e,n){let r=new Map(Array.from(cy(uQ(t),t=>n[+t]).entries()).map(([t,n])=>[t,gA(n,t=>e[t])]));return U_(t=>r.get(n[t]))}function U_(t){return(e,n)=>gv(t(e),t(n))}Uk.props={};let UP=(t={})=>{let{groupBy:e="x",orderBy:n=null,reverse:r=!1,y:i="y",y1:A="y1",series:a=!0}=t;return(t,o)=>{var s;let l,{data:c,encode:u,style:f={}}=o,[h,d]=wT(u,"y"),[p,g]=wT(u,"y1"),[y]=a?wL(u,"series","color"):wT(u,"color"),v=UF(e,t,o),b=(null!=(s=UQ(n))?s:()=>null)(c,h,y);b&&UM(v,b);let B=Array(t.length),w=Array(t.length),x=Array(t.length),C=[],O=[];for(let t of v){r&&t.reverse();let e=p?+p[t[0]]:0,n=[],i=[];for(let r of t){let t=x[r]=h[r]-e;t<0?i.push(r):t>=0&&n.push(r)}let A=n.length>0?n:i,a=i.length>0?i:n,o=n.length-1,s=0;for(;o>0&&0===h[A[o]];)o--;for(;s0?c=B[t]=(w[t]=c)+e:B[t]=w[t]=c}}let E=new Set(C),k=new Set(O),F="y"===i?B:w,Q="y"===A?B:w;return l="point"===o.type?{y0:wU(h,d),y:wM(F,d)}:{y0:wU(h,d),y:wM(F,d),y1:wM(Q,g)},[t,cC({},o,{encode:Object.assign({},l),style:Object.assign({first:(t,e)=>E.has(e),last:(t,e)=>k.has(e)},f)})]}};function UH(t,e){let n=0;if(void 0===e)for(let e of t)null!=e&&(e*=1)>=e&&++n;else{let r=-1;for(let i of t)null!=(i=e(i,++r,t))&&(i*=1)>=i&&++n}return n}function Uj(t,e){let n=function(t,e){let n,r=0,i=0,A=0;if(void 0===e)for(let e of t)null!=e&&(e*=1)>=e&&(n=e-i,i+=n/++r,A+=n*(e-i));else{let a=-1;for(let o of t)null!=(o=e(o,++a,t))&&(o*=1)>=o&&(n=o-i,i+=n/++r,A+=n*(o-i))}if(r>1)return A/(r-1)}(t,e);return n?Math.sqrt(n):n}UP.props={};var UN=Array.prototype,UD=UN.slice;UN.map;let UR=Math.sqrt(50),UK=Math.sqrt(10),Uz=Math.sqrt(2);function UG(t,e,n){let r,i,A,a=(e-t)/Math.max(0,n),o=Math.floor(Math.log10(a)),s=a/Math.pow(10,o),l=s>=UR?10:s>=UK?5:s>=Uz?2:1;return(o<0?(r=Math.round(t*(A=Math.pow(10,-o)/l)),i=Math.round(e*A),r/Ae&&--i,A=-A):(r=Math.round(t/(A=Math.pow(10,o)*l)),i=Math.round(e/A),r*Ae&&--i),in;){if(r-n>600){let A=r-n+1,a=e-n+1,o=Math.log(A),s=.5*Math.exp(2*o/3),l=.5*Math.sqrt(o*s*(A-s)/A)*(a-A/2<0?-1:1),c=Math.max(n,Math.floor(e-a*s/A+l)),u=Math.min(r,Math.floor(e+(A-a)*s/A+l));UX(t,e,c,u,i)}let A=t[e],a=n,o=r;for(UY(t,n,e),i(t[r],A)>0&&UY(t,n,r);ai(t[a],A);)++a;for(;i(t[o],A)>0;)--o}0===i(t[n],A)?UY(t,n,o):UY(t,++o,r),o<=e&&(n=o+1),e<=o&&(r=o-1)}return t}function UY(t,e,n){let r=t[e];t[e]=t[n],t[n]=r}function U$(t,e,n){if(!(!(r=(t=Float64Array.from(function*(t,e){if(void 0===e)for(let e of t)null!=e&&(e*=1)>=e&&(yield e);else{let n=-1;for(let r of t)null!=(r=e(r,++n,t))&&(r*=1)>=r&&(yield r)}}(t,n))).length)||isNaN(e*=1))){if(e<=0||r<2)return bM(t);if(e>=1)return uL(t);var r,i=(r-1)*e,A=Math.floor(i),a=uL(UX(t,A).subarray(0,A+1));return a+(bM(t.subarray(A+1))-a)*(i-A)}}var Uq=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function UJ(t){return e=>null===e?t:`${t} of ${e}`}function UZ(){return[(t,e)=>Bh(t,t=>+e[t]),UJ("mean")]}function U0(){return[(t,e)=>U$(t,.5,t=>+e[t]),UJ("median")]}function U1(){return[(t,e)=>uL(t,t=>+e[t]),UJ("max")]}function U2(){return[(t,e)=>bM(t,t=>+e[t]),UJ("min")]}function U4(){return[(t,e)=>t.length,UJ("count")]}function U5(){return[(t,e)=>uT(t,t=>+e[t]),UJ("sum")]}function U3(){return[(t,e)=>e[t[0]],UJ("first")]}function U6(){return[(t,e)=>e[t[t.length-1]],UJ("last")]}let U8=(t={})=>{let{groupBy:e}=t,n=Uq(t,["groupBy"]);return(t,r)=>{let{data:i,encode:A}=r,a=e(t,r);if(!a)return[t,r];let o=Object.entries(n).map(([t,e])=>{let[n,r]=function(t){if("function"==typeof t)return[t,null];let e={mean:UZ,max:U1,count:U4,first:U3,last:U6,sum:U5,min:U2,median:U0}[t];if(!e)throw Error(`Unknown reducer: ${t}.`);return e()}(e),[o,s]=wT(A,t),l=((t,e)=>{if(t)return t;let{from:n}=e;if(!n)return t;let[,r]=wT(A,n);return r})(s,e);return[t,Object.assign(Object.assign({},Object.assign(Object.assign({},wM(a.map(t=>n(t,null!=o?o:i)),(null==r?void 0:r(l))||l)),{constant:!1})),{aggregate:!0})]}),s=Object.keys(A).map(t=>{let[e,n]=wT(A,t);return[t,wM(a.map(t=>e[t[0]]),n)]}),l=a.map(t=>i[t[0]]);return[uQ(a),cC({},r,{data:l,encode:Object.fromEntries([...s,...o])})]}};U8.props={};var U9=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let U7="thresholds",St=(t={})=>{let{groupChannels:e=["color"],binChannels:n=["x","y"]}=t,r=U9(t,["groupChannels","binChannels"]),i={};return U8(Object.assign(Object.assign(Object.assign({},Object.fromEntries(Object.entries(r).filter(([t])=>!t.startsWith(U7)))),Object.fromEntries(n.flatMap(t=>{let e=([e])=>+i[t].get(e).split(",")[1];return e.from=t,[[t,([e])=>+i[t].get(e).split(",")[0]],[`${t}1`,e]]}))),{groupBy:(t,A)=>{let{encode:a}=A,o=n.map(t=>{let[e]=wT(a,t);return e}),s=cJ(r,U7),l=t.filter(t=>o.every(e=>cq(e[t]))),c=[...e.map(t=>{let[e]=wT(a,t);return e}).filter(cq).map(t=>e=>t[e]),...n.map((t,e)=>{let n=o[e],r=s[t]||function(t){let e,n,[r,i]=h3(t);return Math.min(200,(e=UH(t),n=Uj(t),e&&n?Math.ceil((i-r)*Math.cbrt(e)/(3.49*n)):1))}(n),A=new Map((function(){var t=cg,e=h3,n=UW;function r(r){Array.isArray(r)||(r=Array.from(r));var i,A,a,o=r.length,s=Array(o);for(i=0;i0?(t=Math.floor(t/i)*i,e=Math.ceil(e/i)*i):i<0&&(t=Math.ceil(t*i)/i,e=Math.floor(e*i)/i),r=i}}(c,u,n)),(f=function(t,e,n){if(e*=1,t*=1,!((n*=1)>0))return[];if(t===e)return[t];let r=e=i))return[];let o=A-i+1,s=Array(o);if(r)if(a<0)for(let t=0;t=u)if(t>=u&&e===h3){let t=UV(c,u,n);isFinite(t)&&(t>0?u=(Math.floor(u/t)+1)*t:t<0&&(u=-((Math.ceil(-(u*t))+1)/t)))}else f.pop()}for(var h=f.length,d=0,p=h;f[d]<=c;)++d;for(;f[p-1]>u;)--p;(d||p0?f[i-1]:c,g.x1=i0)for(i=0;ie,r):t},r.domain=function(t){var n;return arguments.length?(e="function"==typeof t?t:(n=[t[0],t[1]],()=>n),r):e},r.thresholds=function(t){var e;return arguments.length?(n="function"==typeof t?t:(e=Array.isArray(t)?UD.call(t):t,()=>e),r):n},r})().thresholds(r).value(t=>+n[t])(l).flatMap(t=>{let{x0:e,x1:n}=t,r=`${e},${n}`;return t.map(t=>[t,r])}));return i[t]=A,t=>A.get(t)})];return Array.from(cy(l,t=>c.map(e=>e(t)).join("-")).values())}}))};St.props={};let Se=(t={})=>{let{thresholds:e}=t;return St(Object.assign(Object.assign({},t),{thresholdsX:e,groupChannels:["color"],binChannels:["x"]}))};Se.props={};var Sn=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Sr=(t={})=>{let{groupBy:e="x",reverse:n=!1,orderBy:r,padding:i}=t;return Sn(t,["groupBy","reverse","orderBy","padding"]),(t,A)=>{let{data:a,encode:o,scale:s}=A,{series:l}=s,[c]=wT(o,"y"),[u]=wL(o,"series","color"),f=UU(u,l),h=cC({},A,{scale:{series:{domain:f,paddingInner:i}}}),d=UF(e,t,A),p=UQ(r);if(!p)return[t,cC(h,{encode:{series:wM(u)}})];let g=p(a,c,u);g&&UM(d,g);let y=Array(t.length);for(let t of d){n&&t.reverse();for(let e=0;e{let{padding:e=0,paddingX:n=e,paddingY:r=e,random:i=Math.random}=t;return(t,e)=>{let{encode:A,scale:a}=e,{x:o,y:s}=a,[l]=wT(A,"x"),[c]=wT(A,"y"),u=Si(l,o,n),f=Si(c,s,r),h=t.map(()=>(function(t,e,n){return e*(1-t)+n*t})(i(),...f)),d=t.map(()=>(function(t,e,n){return e*(1-t)+n*t})(i(),...u));return[t,cC({scale:{x:{padding:.5},y:{padding:.5}}},e,{encode:{dy:wM(h),dx:wM(d)}})]}};SA.props={};let Sa=(t={})=>{let{padding:e=0,random:n=Math.random}=t;return(t,r)=>{let{encode:i,scale:A}=r,{x:a}=A,[o]=wT(i,"x"),s=Si(o,a,e),l=t.map(()=>(function(t,e,n){return e*(1-t)+n*t})(n(),...s));return[t,cC({scale:{x:{padding:.5}}},r,{encode:{dx:wM(l)}})]}};Sa.props={};let So=(t={})=>{let{padding:e=0,random:n=Math.random}=t;return(t,r)=>{let{encode:i,scale:A}=r,{y:a}=A,[o]=wT(i,"y"),s=Si(o,a,e),l=t.map(()=>(function(t,e,n){return e*(1-t)+n*t})(n(),...s));return[t,cC({scale:{y:{padding:.5}}},r,{encode:{dy:wM(l)}})]}};So.props={};var Ss=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Sl=(t={})=>{let{groupBy:e="x"}=t;return(t,n)=>{let{encode:r,style:i={}}=n,{x:A}=r,a=Object.entries(Ss(r,["x"])).filter(([t])=>t.startsWith("y")).map(([t])=>[t,wT(r,t)[0]]),o=a.map(([e])=>[e,Array(t.length)]),s=UF(e,t,n),l=Array(s.length);for(let t=0;ta.map(([,e])=>+e[t])));l[t]=(e+n)/2}let c=Math.max(...l);for(let t=0;t[t,wM(e,wT(r,t)[1])])),style:Object.assign({first:(t,e)=>0===e,last:(t,e)=>e===s.length-1},i)})]}};Sl.props={};let Sc=(t={})=>{let{groupBy:e="x"}=t;return(t,n)=>{let{encode:r}=n,[i]=wT(r,"y"),[A,a]=wT(r,"y1"),o=UF(e,t,n),s=Array(t.length);for(let t of o){let e=t.map(t=>+i[t]);for(let n=0;ne!==n));s[r]=+i[r]>A?A:i[r]}}return[t,cC({},n,{encode:{y1:wM(s,a)}})]}};Sc.props={};let Su=t=>{let{groupBy:e=["x"],reducer:n=(t,e)=>e[t[0]],orderBy:r=null,reverse:i=!1,duration:A}=t;return(t,a)=>{let{encode:o}=a,s=(Array.isArray(e)?e:[e]).map(t=>[t,wT(o,t)[0]]);if(0===s.length)return[t,a];let l=[t];for(let[,t]of s){let e=[];for(let n of l){let r=Array.from(cy(n,e=>t[e]).values());e.push(...r)}l=e}if(r){let[t]=wT(o,r);t&&l.sort((e,r)=>n(e,t)-n(r,t)),i&&l.reverse()}let c=(A||3e3)/l.length,[u]=A?[wI(t,c)]:wL(o,"enterDuration",wI(t,c)),[f]=wL(o,"enterDelay",wI(t,0)),h=Array(t.length);for(let t=0,e=0;t+u[t]);for(let t of n)h[t]=+f[t]+e;e+=r}return[t,cC({},a,{encode:{enterDuration:wS(u),enterDelay:wS(h)}})]}};Su.props={};var Sf=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Sh=(t={})=>{let{groupBy:e="x",basis:n="max"}=t;return(t,r)=>{let{encode:i,tooltip:A}=r,{x:a}=i,o=Object.entries(Sf(i,["x"])).filter(([t])=>t.startsWith("y")).map(([t])=>[t,wT(i,t)[0]]),[,s]=o.find(([t])=>"y"===t),l=o.map(([e])=>[e,Array(t.length)]),c=UF(e,t,r),u="function"==typeof n?n:({min:(t,e)=>bM(t,t=>e[+t]),max:(t,e)=>uL(t,t=>e[+t]),first:(t,e)=>e[t[0]],last:(t,e)=>e[t[t.length-1]],mean:(t,e)=>Bh(t,t=>e[+t]),median:(t,e)=>U$(t,.5,t=>e[+t]),sum:(t,e)=>uT(t,t=>e[+t]),deviation:(t,e)=>Uj(t,t=>e[+t])})[n]||uL;for(let t of c){let e=u(t,s);for(let n of t)for(let t=0;t[t,wM(e,wT(i,t)[1])]))},!f&&i.y0&&{tooltip:{items:[{channel:"y0"}]}}))]}};function Sd(t,e){return[t[0]]}function Sp(t,e){let n=t.length-1;return[t[n]]}function Sg(t,e){let n=gA(t,t=>e[t]);return[t[n]]}function Sy(t,e){let n=Bf(t,t=>e[t]);return[t[n]]}Sh.props={};let Sv=(t={})=>{let{groupBy:e="series",channel:n,selector:r}=t;return(t,i)=>{let{encode:A}=i,a=UF(e,t,i),[o]=wT(A,n),s="function"==typeof r?r:({first:Sd,last:Sp,max:Sg,min:Sy})[r]||Sd;return[a.flatMap(t=>s(t,o)),i]}};Sv.props={};var Sm=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Sb=(t={})=>{let{selector:e}=t;return Sv(Object.assign({channel:"x",selector:e},Sm(t,["selector"])))};Sb.props={};var SB=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Sw=(t={})=>{let{selector:e}=t;return Sv(Object.assign({channel:"y",selector:e},SB(t,["selector"])))};Sw.props={};var Sx=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let SC=(t={})=>{let{channels:e=["x","y"]}=t;return U8(Object.assign(Object.assign({},Sx(t,["channels"])),{groupBy:(t,n)=>UF(e,t,n)}))};SC.props={};let SO=(t={})=>SC(Object.assign(Object.assign({},t),{channels:["x","color","series"]}));SO.props={};let SE=(t={})=>SC(Object.assign(Object.assign({},t),{channels:["y","color","series"]}));SE.props={};let Sk=(t={})=>SC(Object.assign(Object.assign({},t),{channels:["color"]}));Sk.props={};let SF=(t={})=>(e,n)=>{var r,i;let{reverse:A,slice:a,channel:o,by:s,ordinal:l=!0,reducer:c}=t,{encode:u,scale:f={}}=n,h=f[o].domain,[d]=wT(u,null!=s?s:o),[p]=wT(u,o),g=function(t,e,n){let{by:r=t,reducer:i="max"}=e,[A]=wT(n,r);if("function"==typeof i)return t=>i(t,A);if("max"===i)return t=>uL(t,t=>+A[t]);if("min"===i)return t=>bM(t,t=>+A[t]);if("sum"===i)return t=>uT(t,t=>+A[t]);if("median"===i)return t=>U$(t,.5,t=>+A[t]);if("mean"===i)return t=>Bh(t,t=>+A[t]);if("first"===i)return t=>A[t[0]];if("last"===i)return t=>A[t[t.length-1]];throw Error(`Unknown reducer: ${i}`)}(o,{by:s,reducer:c},u),y=(r=function(t,e,n){if(!Array.isArray(n))return t;let r=new Set(n);return t.filter(t=>r.has(e[t]))}(e,p,h),i=t=>p[t],(2!==g.length?gm(cm(r,g,i),([t,e],[n,r])=>gv(e,r)||gv(t,n)):gm(cy(r,i),([t,e],[n,r])=>g(e,r)||gv(t,n))).map(([t])=>t)),v=l?e:gm(e,t=>d[t]);return A&&(l||v.reverse(),y.reverse()),[v,cC(n,{scale:{[o]:{domain:a?y.slice(..."number"==typeof a?[0,a]:a):y}}})]};SF.props={};let SQ=(t={})=>SF(Object.assign(Object.assign({},t),{channel:"x"}));SQ.props={};let SM=(t={})=>SF(Object.assign(Object.assign({},t),{channel:"y"}));SM.props={};let SU=(t={})=>SF(Object.assign(Object.assign({},t),{channel:"color"}));SU.props={};let SS=(t={})=>{let{field:e,channel:n="y",reducer:r="sum"}=t;return(t,i)=>{let{data:A,encode:a}=i,[o]=wT(a,"x"),s=cb(t,function(t,e){if("function"==typeof t)return n=>t(n,e);if("sum"===t)return t=>uT(t,t=>+e[t]);throw Error(`Unknown reducer: ${t}`)}(r,e?"string"==typeof e?A.map(t=>t[e]):A.map(e):wT(a,n)[0]),t=>o[t]).map(t=>t[1]);return[t,cC({},i,{scale:{x:{flex:s}}})]}};SS.props={};let SI=t=>(e,n)=>[e,cC({},n,{modifier:function(t){let{padding:e=0,direction:n="col"}=t;return(t,r,i)=>{let A=t.length;if(0===A)return[];let{innerWidth:a,innerHeight:o}=i,s=Math.ceil(Math.sqrt(r/(o/a))),l=a/s,c=Math.ceil(r/s),u=c*l;for(;u>o;)s+=1,l=a/s,u=(c=Math.ceil(r/s))*l;let f=o-c*l,h=c<=1?0:f/(c-1),[d,p]=c<=1?[(a-A*l)/(A-1),(o-l)/2]:[0,0];return t.map((t,r)=>{let[i,A,a,o]=pD(t),u="col"===n?r%s:Math.floor(r/c),g="col"===n?Math.floor(r/s):r%c,y=u*l,v=(c-g-1)*l+f,b=(l-e)/a,B=(l-e)/o;return`translate(${y-i+d*u+.5*e}, ${v-A-h*g-p+.5*e}) scale(${b}, ${B})`})}}(t),axis:!1})];function ST(t,e,n,r){let i,A,a,o=t.length;if(r>=o||0===r)return t;let s=n=>+e[t[n]],l=e=>+n[t[e]],c=[],u=(o-2)/(r-2),f=0;c.push(f);for(let t=0;ti&&(i=A,a=p);c.push(a),f=a}return c.push(o-1),c.map(e=>t[e])}SI.props={};let SL=(t={})=>{let{strategy:e="median",thresholds:n=2e3,groupBy:r=["series","color"]}=t,i=function(t){if("function"==typeof t)return t;if("lttb"===t)return ST;let e={first:t=>[t[0]],last:t=>[t[t.length-1]],min:(t,e,n)=>[t[Bf(t,t=>n[t])]],max:(t,e,n)=>[t[gA(t,t=>n[t])]],median:(t,e,n)=>[t[function(t,e,n=gW){if(!isNaN(e*=1)){if(r=Float64Array.from(t,(e,r)=>gW(n(t[r],r,t))),e<=0)return Bf(r);if(e>=1)return gA(r);var r,i=Uint32Array.from(t,(t,e)=>e),A=r.length-1,a=Math.floor(A*e);return UX(i,a,0,A,(t,e)=>gB(r[t],r[e])),(a=function(t,e=gv){let n,r=!1;if(1===e.length){let i;for(let A of t){let t=e(A);(r?gv(t,i)>0:0===gv(t,t))&&(n=A,i=t,r=!0)}}else for(let i of t)(r?e(i,n)>0:0===e(i,i))&&(n=i,r=!0);return n}(i.subarray(0,a+1),t=>r[t]))>=0?a:-1}}(t,.5,t=>n[t])]]},n=e[t]||e.median;return(t,e,r,i)=>{let A=Math.max(1,Math.floor(t.length/i));return(function(t,e){let n=t.length,r=[],i=0;for(;in(t,e,r))}}(e);return(t,e)=>{let{encode:A}=e,a=UF(r,t,e),[o]=wT(A,"x"),[s]=wT(A,"y");return[a.flatMap(t=>i(t,o,s,n)),e]}};SL.props={};let S_=(t={})=>(e,n)=>{let{encode:r,data:i}=n,A=Object.keys(t).length>0,a=Object.entries(t).map(([t,e])=>{let[n]=wT(r,t);if(!n)return null;let[i,A=!0]="object"==typeof e?[e.value,e.ordinal]:[e,!0];if("function"==typeof i)return t=>i(n[t]);if(A){let t=Array.isArray(i)?i:[i];return 0===t.length?null:e=>t.includes(n[e])}{let[t,e]=i;return r=>n[r]>=t&&n[r]<=e}}).filter(cq),o=e.filter(t=>a.every(e=>e(t))),s=o.map((t,e)=>e);if(0===a.length&&A)return[[],function(t){var e;let n,{encode:r}=t,i=Object.assign(Object.assign({},t),{encode:Object.assign(Object.assign({},t.encode),{y:Object.assign(Object.assign({},t.encode.y),{value:[]})})}),A=null==(e=null==r?void 0:r.color)?void 0:e.field;if(!r||!A)return i;for(let[t,e]of Object.entries(r))("x"===t||"y"===t)&&e.field===A&&(n=Object.assign(Object.assign({},n),{[t]:Object.assign(Object.assign({},e),{value:[]})}));return n?Object.assign(Object.assign({},t),{encode:Object.assign(Object.assign({},t.encode),n)}):i}(n)];let l=Object.entries(r).map(([t,e])=>[t,Object.assign(Object.assign({},e),{value:s.map(t=>e.value[o[t]]).filter(t=>void 0!==t)})]);return[s,cC({},n,{encode:Object.fromEntries(l),data:o.map(t=>i[t])})]};S_.props={};var SP={},SH={};function Sj(t){return Function("d","return {"+t.map(function(t,e){return JSON.stringify(t)+": d["+e+'] || ""'}).join(",")+"}")}function SN(t){var e=Object.create(null),n=[];return t.forEach(function(t){for(var r in t)r in e||n.push(e[r]=r)}),n}function SD(t,e){var n=t+"",r=n.length;return r{let{value:e,format:n=e.split(".").pop(),delimiter:r=",",autoType:i=!0}=t;return()=>{var t,A,a,o;return t=void 0,A=void 0,a=void 0,o=function*(){let t=yield fetch(e);if("csv"===n){let e=yield t.text();return(function(t){var e=RegExp('["'+t+"\n\r]"),n=t.charCodeAt(0);function r(t,e){var r,i=[],A=t.length,a=0,o=0,s=A<=0,l=!1;function c(){if(s)return SH;if(l)return l=!1,SP;var e,r,i=a;if(34===t.charCodeAt(i)){for(;a++=A?s=!0:10===(r=t.charCodeAt(a++))?l=!0:13===r&&(l=!0,10===t.charCodeAt(a)&&++a),t.slice(i+1,e-1).replace(/""/g,'"')}for(;a9999?"+"+SD(o,6):SD(o,4))+"-"+SD(n.getUTCMonth()+1,2)+"-"+SD(n.getUTCDate(),2)+(a?"T"+SD(r,2)+":"+SD(i,2)+":"+SD(A,2)+"."+SD(a,3)+"Z":A?"T"+SD(r,2)+":"+SD(i,2)+":"+SD(A,2)+"Z":i||r?"T"+SD(r,2)+":"+SD(i,2)+"Z":"")):e.test(t+="")?'"'+t.replace(/"/g,'""')+'"':t}return{parse:function(t,e){var n,i,A=r(t,function(t,r){var A;if(n)return n(t,r-1);i=t,n=e?(A=Sj(t),function(n,r){return e(A(n),r,t)}):Sj(t)});return A.columns=i||[],A},parseRows:r,format:function(e,n){return null==n&&(n=SN(e)),[n.map(a).join(t)].concat(i(e,n)).join("\n")},formatBody:function(t,e){return null==e&&(e=SN(t)),i(t,e).join("\n")},formatRows:function(t){return t.map(A).join("\n")},formatRow:A,formatValue:a}})(r).parse(e,i?SR:cV)}if("json"===n)return yield t.json();throw Error(`Unknown format: ${n}.`)},new(a||(a=Promise))(function(e,n){function r(t){try{s(o.next(t))}catch(t){n(t)}}function i(t){try{s(o.throw(t))}catch(t){n(t)}}function s(t){var n;t.done?e(t.value):((n=t.value)instanceof a?n:new a(function(t){t(n)})).then(r,i)}s((o=o.apply(t,A||[])).next())})}};Sz.props={};let SG=t=>{let{value:e}=t;return()=>e};SG.props={};let SV=t=>{let{fields:e=[]}=t,n=e.map(t=>{if(Array.isArray(t)){let[e,n=!0]=t;return[e,n]}return[t,!0]});return t=>[...t].sort((t,e)=>n.reduce((n,[r,i=!0])=>0!==n?n:i?t[r]e[r]?-1:+(t[r]!==e[r]),0))};SV.props={};let SW=t=>{let{callback:e}=t;return t=>Array.isArray(t)?[...t].sort(e):t};function SX(t){return null!=t&&!Number.isNaN(t)}SW.props={};let SY=t=>{let{callback:e=SX}=t;return t=>t.filter(e)};SY.props={};let S$=t=>{let{fields:e}=t;return t=>t.map(t=>(function(t,e=[]){return e.reduce((e,n)=>(n in t&&(e[n]=t[n]),e),{})})(t,e))};S$.props={};let Sq=t=>e=>t&&0!==Object.keys(t).length?e.map(e=>Object.entries(e).reduce((e,[n,r])=>(e[t[n]||n]=r,e),{})):e;Sq.props={};let SJ=t=>{let{fields:e,key:n="key",value:r="value"}=t;return t=>e&&0!==Object.keys(e).length?t.flatMap(t=>e.map(e=>Object.assign(Object.assign({},t),{[n]:e,[r]:t[e]}))):t};SJ.props={};let SZ=t=>{let{start:e,end:n}=t;return t=>t.slice(e,n)};SZ.props={};let S0=t=>{let{callback:e=cV}=t;return t=>e(t)};S0.props={};let S1=t=>{let{callback:e=cV}=t;return t=>Array.isArray(t)?t.map(e):t};function S2(t){return"string"==typeof t?e=>e[t]:t}S1.props={};let S4=t=>{let{join:e,on:n,select:r=[],as:i=r,unknown:A=NaN}=t,[a,o]=n,s=S2(o),l=S2(a),c=cm(e,([t])=>t,t=>s(t));return t=>t.map(t=>{let e=c.get(l(t));return Object.assign(Object.assign({},t),r.reduce((t,n,r)=>(t[i[r]]=e?e[n]:A,t),{}))})};S4.props={};var S5=n(39870),S3=n.n(S5);let S6=t=>{let{field:e,groupBy:n,as:r=["y","size"],min:i,max:A,size:a=10,width:o}=t,[s,l]=r;return t=>Array.from(cy(t,t=>n.map(e=>t[e]).join("-")).values()).map(t=>{let n=S3().create(t.map(t=>t[e]),{min:i,max:A,size:a,width:o}),r=n.map(t=>t.x),c=n.map(t=>t.y);return Object.assign(Object.assign({},t[0]),{[s]:r,[l]:c})})};S6.props={};let S8=()=>t=>(console.log("G2 data section:",t),t);S8.props={};let S9=Math.PI/180;function S7(t){return t.text}function It(){return"serif"}function Ie(){return"normal"}function In(t){return t.value}function Ir(){return 90*~~(2*Math.random())}function Ii(){return 1}function IA(){}function Ia(t){let e=t[0]/t[1];return function(t){return[e*(t*=.1)*Math.cos(t),t*Math.sin(t)]}}function Io(t){let e=[],n=-1;for(;++ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let If={fontSize:[20,60],font:"Impact",padding:2,rotate:function(){return(~~(6*Math.random())-3)*30}};function Ih(t){return new Promise((e,n)=>{if(t instanceof HTMLImageElement)return void e(t);if("string"==typeof t){let r=new Image;r.crossOrigin="anonymous",r.src=t,r.onload=()=>e(r),r.onerror=()=>{console.error(`'image ${t} load failed !!!'`),n()};return}n()})}let Id=(t,e)=>n=>{var r,i,A,a;return r=void 0,i=void 0,A=void 0,a=function*(){let r,i,A,a,o,s,l,c,u,f,h,d,p,g,y,v=Object.assign({},If,t,{canvas:e.createCanvas}),b=(r=[256,256],i=S7,A=It,a=In,o=Ie,s=Ir,l=Ii,c=Ia,u=Math.random,f=IA,h=[],d=null,p=1/0,g=Is,(y={}).start=function(){var t;let e,n,[v,b]=r,B=((t=g()).width=t.height=1,e=Math.sqrt(t.getContext("2d").getImageData(0,0,1,1).data.length>>2),t.width=2048/e,t.height=2048/e,(n=t.getContext("2d")).fillStyle=n.strokeStyle="red",n.textAlign="center",n.textBaseline="middle",{context:n,ratio:e}),w=y.board?y.board:Io((r[0]>>5)*r[1]),x=h.length,C=[],O=h.map(function(t,e,n){return t.text=i.call(this,t,e,n),t.font=A.call(this,t,e,n),t.style=Ie.call(this,t,e,n),t.weight=o.call(this,t,e,n),t.rotate=s.call(this,t,e,n),t.size=~~a.call(this,t,e,n),t.padding=l.call(this,t,e,n),t}).sort(function(t,e){return e.size-t.size}),E=-1,k=y.board?[{x:0,y:0},{x:v,y:b}]:void 0;function F(){let t=Date.now();for(;Date.now()-t>1,t.y=b*(u()+.5)>>1,function(t,e,n,r){if(e.sprite)return;let i=t.context,A=t.ratio;i.clearRect(0,0,2048/A,2048/A);let a=0,o=0,s=0,l=n.length;for(--r;++r>5<<5,l=~~Math.max(Math.abs(A+a),Math.abs(A-a))}else t=t+31>>5<<5;if(l>s&&(s=l),a+t>=2048&&(a=0,o+=s,s=0),o+l>=2048)break;i.translate((a+(t>>1))/A,(o+(l>>1))/A),e.rotate&&i.rotate(e.rotate*S9),i.fillText(e.text,0,0),e.padding&&(i.lineWidth=2*e.padding,i.strokeText(e.text,0,0)),i.restore(),e.width=t,e.height=l,e.xoff=a,e.yoff=o,e.x1=t>>1,e.y1=l>>1,e.x0=-e.x1,e.y0=-e.y1,e.hasText=!0,a+=t}let c=i.getImageData(0,0,2048/A,2048/A).data,u=[];for(;--r>=0;){if(!(e=n[r]).hasText)continue;let t=e.width,i=t>>5,A=e.y1-e.y0;for(let t=0;t>5),r=c[(o+n)*2048+(a+e)<<2]?1<<31-e%32:0;u[t]|=r,s|=r}s?l=n:(e.y0++,A--,n--,o++)}e.y1=e.y0+l,e.sprite=u.slice(0,(e.y1-e.y0)*i)}}(B,t,O,E),t.hasText&&function(t,e,n){let i=e.x,A=e.y,a=Math.sqrt(r[0]*r[0]+r[1]*r[1]),o=c(r),s=.5>u()?1:-1,l,f=-s,h,d;for(;(l=o(f+=s))&&!(Math.min(Math.abs(h=~~l[0]),Math.abs(d=~~l[1]))>=a);){;if((e.x=i+h,e.y=A+d,!(e.x+e.x0<0)&&!(e.y+e.y0<0)&&!(e.x+e.x1>r[0])&&!(e.y+e.y1>r[1]))&&(!n||!function(t,e,n){n>>=5;let r=t.sprite,i=t.width>>5,A=t.x-(i<<4),a=127&A,o=32-a,s=t.y1-t.y0,l=(t.y+t.y0)*n+(A>>5),c;for(let t=0;t>>a:0))&e[l+n])return!0;l+=n}return!1}(e,t,r[0]))&&(!n||e.x+e.x1>n[0].x&&e.x+e.x0n[0].y&&e.y+e.y0>5,A=r[0]>>5,a=e.x-(i<<4),o=127&a,s=32-o,l=e.y1-e.y0,c,u=(e.y+e.y0)*A+(a>>5);for(let e=0;e>>o:0);u+=A}return delete e.sprite,!0}}return!1}(w,t,k)&&(f.call(null,"word",{cloud:y,word:t}),C.push(t),k?y.hasImage||function(t,e){let n=t[0],r=t[1];e.x+e.x0r.x&&(r.x=e.x+e.x1),e.y+e.y1>r.y&&(r.y=e.y+e.y1)}(k,t):k=[{x:t.x+t.x0,y:t.y+t.y0},{x:t.x+t.x1,y:t.y+t.y1}],t.x-=r[0]>>1,t.y-=r[1]>>1)}y._tags=C,y._bounds=k,E>=x&&(y.stop(),f.call(null,"end",{cloud:y,words:C,bounds:k}))}return d&&clearInterval(d),d=setInterval(F,0),F(),y},y.stop=function(){return d&&(clearInterval(d),d=null),y},y.createMask=t=>{let e=document.createElement("canvas"),[n,i]=r;if(!n||!i)return;let A=n>>5,a=Io((n>>5)*i);e.width=n,e.height=i;let o=e.getContext("2d");o.drawImage(t,0,0,t.width,t.height,0,0,n,i);let s=o.getImageData(0,0,n,i).data;for(let t=0;t>5),i=t*n+e<<2,o=s[i]>=250&&s[i+1]>=250&&s[i+2]>=250?1<<31-e%32:0;a[r]|=o}y.board=a,y.hasImage=!0},y.timeInterval=function(t){p=null==t?1/0:t},y.words=function(t){h=t},y.size=function(t=[]){r=[+t[0],+t[1]]},y.text=function(t){i=Il(t)},y.font=function(t){A=Il(t)},y.fontWeight=function(t){o=Il(t)},y.rotate=function(t){s=Il(t)},y.canvas=function(t){g=Il(t)},y.spiral=function(t){c=Ic[t]||t},y.fontSize=function(t){a=Il(t)},y.padding=function(t){l=Il(t)},y.random=function(t){u=Il(t)},y.on=function(t){f=Il(t)},y);yield({set(t,e,n){if(void 0===v[t])return this;let r=e?e.call(null,v[t]):v[t];return n?n.call(null,r):"function"==typeof b[t]?b[t](r):b[t]=r,this},setAsync(t,e,n){var r,i,A,a;return r=this,i=void 0,A=void 0,a=function*(){if(void 0===v[t])return this;let r=e?yield e.call(null,v[t]):v[t];return n?n.call(null,r):"function"==typeof b[t]?b[t](r):b[t]=r,this},new(A||(A=Promise))(function(t,e){function n(t){try{s(a.next(t))}catch(t){e(t)}}function o(t){try{s(a.throw(t))}catch(t){e(t)}}function s(e){var r;e.done?t(e.value):((r=e.value)instanceof A?r:new A(function(t){t(r)})).then(n,o)}s((a=a.apply(r,i||[])).next())})}}).set("fontSize",t=>{let e=n.map(t=>t.value);return function(t,e){if("function"==typeof t)return t;if(Array.isArray(t)){let[n,r]=t;if(!e)return()=>(r+n)/2;let[i,A]=e;return A===i?()=>(r+n)/2:({value:t})=>(r-n)/(A-i)*(t-i)+n}return()=>t}(t,[bM(e),uL(e)])}).set("font").set("fontStyle").set("fontWeight").set("padding").set("rotate").set("size").set("spiral").set("timeInterval").set("random").set("text").set("on").set("canvas").setAsync("imageMask",Ih,b.createMask),b.words([...n]);let B=b.start(),[w,x]=v.size,C=[{x:0,y:0},{x:w,y:x}],{_bounds:O=C,_tags:E,hasImage:k}=B,F=E.map(t=>{var{x:e,y:n,font:r}=t;return Object.assign(Object.assign({},Iu(t,["x","y","font"])),{x:e+w/2,y:n+x/2,fontFamily:r})}),[{x:Q,y:M},{x:U,y:S}]=O,I={text:"",value:0,opacity:0,fontSize:0};return F.push(Object.assign(Object.assign({},I),{x:k?0:Q,y:k?0:M}),Object.assign(Object.assign({},I),{x:k?w:U,y:k?x:S})),F},new(A||(A=Promise))(function(t,e){function n(t){try{s(a.next(t))}catch(t){e(t)}}function o(t){try{s(a.throw(t))}catch(t){e(t)}}function s(e){var r;e.done?t(e.value):((r=e.value)instanceof A?r:new A(function(t){t(r)})).then(n,o)}s((a=a.apply(r,i||[])).next())})};Id.props={};let Ip=t=>{let{field:e="y",alpha:n=.6,as:r=e}=t;return t=>{let i=function(t,e){if(e<0||e>1)throw Error("alpha must be between 0 and 1.");if(0===t.length)return[];let n=t[0],r=[];for(let i of t){if(null==i){r.push(i),console.warn("EMA:The value is null or undefined",t);continue}null==n&&(n=i);let A=n*e+(1-e)*i;r.push(A),n=A}return r}(t.map(t=>t[e]),n);return t.map((t,e)=>Object.assign(Object.assign({},t),{[r]:i[e]}))}};function Ig(t){let{min:e,max:n}=t;return[[e[0],e[1]],[n[0],n[1]]]}function Iy(t,e,n=.01){let[r,i]=t,[A,a]=e;return r>=A[0]-n&&r<=a[0]+n&&i>=A[1]-n&&i<=a[1]+n}function Iv(t,e,n=.01){let[r,i]=t;return!(Iy(r,e,n)&&Iy(i,e,n))}Ip.props={};function Im(){let t=new Map;return[e=>t.get(e),(e,n)=>t.set(e,n)]}function Ib(t){return"object"==typeof t?t:iB(t)}function IB(t){let e=t/255;return e<=.03928?e/12.92:Math.pow((e+.055)/1.055,2.4)}function Iw(t,e,n){return .2126*IB(t)+.7152*IB(e)+.0722*IB(n)}function Ix(t,e){if(!t||!e||t===e)return 1;let{r:n,g:r,b:i}=t,{r:A,g:a,b:o}=e,s=Iw(n,r,i),l=Iw(A,a,o);return(Math.max(s,l)+.05)/(Math.min(s,l)+.05)}function IC(t,e){let n=gA(e,e=>Ix(t,Ib(e)));return e[n]}function IO(t){var e;let n=t.getAnimations();if(!n||0===n.length)return yO(t);let r=t.cloneNode(!0);r.style.visibility="hidden",n.forEach(t=>{let e=t.effect.getKeyframes();e&&e.length>0&&r.attr(e[e.length-1])}),null==(e=t.parentNode)||e.appendChild(r);let i=yO(r);return r.destroy(),i}let IE=t=>t;function Ik(t,e){t&&IQ.hasOwnProperty(t.type)&&IQ[t.type](t,e)}var IF={Feature:function(t,e){Ik(t.geometry,e)},FeatureCollection:function(t,e){for(var n=t.features,r=-1,i=n.length;++r0){for(A=t[--e];e>0&&(A=(n=A)+(r=t[--e]),!(i=r-(A-n))););e>0&&(i<0&&t[e-1]<0||i>0&&t[e-1]>0)&&(n=A+(r=2*i),r==n-A&&(A=n))}return A}}var IT=Math.PI,IL=IT/2,I_=IT/4,IP=2*IT,IH=180/IT,Ij=IT/180,IN=Math.abs,ID=Math.atan,IR=Math.atan2,IK=Math.cos,Iz=Math.ceil,IG=Math.exp,IV=Math.log,IW=Math.pow,IX=Math.sin,IY=Math.sign||function(t){return t>0?1:t<0?-1:0},I$=Math.sqrt,Iq=Math.tan;function IJ(t){return t>1?0:t<-1?IT:Math.acos(t)}function IZ(t){return t>1?IL:t<-1?-IL:Math.asin(t)}function I0(){}var I1,I2,I4,I5,I3,I6,I8,I9,I7,Tt=new II,Te=new II,Tn={point:I0,lineStart:I0,lineEnd:I0,polygonStart:function(){Tn.lineStart=Tr,Tn.lineEnd=Ta},polygonEnd:function(){Tn.lineStart=Tn.lineEnd=Tn.point=I0,Tt.add(IN(Te)),Te=new II},result:function(){var t=Tt/2;return Tt=new II,t}};function Tr(){Tn.point=Ti}function Ti(t,e){Tn.point=TA,I6=I9=t,I8=I7=e}function TA(t,e){Te.add(I7*t-I9*e),I9=t,I7=e}function Ta(){TA(I6,I8)}var To=1/0,Ts=1/0,Tl=-1/0,Tc=Tl;let Tu={point:function(t,e){tTl&&(Tl=t),eTc&&(Tc=e)},lineStart:I0,lineEnd:I0,polygonStart:I0,polygonEnd:I0,result:function(){var t=[[To,Ts],[Tl,Tc]];return Tl=Tc=-(Ts=To=1/0),t}};var Tf,Th,Td,Tp,Tg=0,Ty=0,Tv=0,Tm=0,Tb=0,TB=0,Tw=0,Tx=0,TC=0,TO={point:TE,lineStart:Tk,lineEnd:TM,polygonStart:function(){TO.lineStart=TU,TO.lineEnd=TS},polygonEnd:function(){TO.point=TE,TO.lineStart=Tk,TO.lineEnd=TM},result:function(){var t=TC?[Tw/TC,Tx/TC]:TB?[Tm/TB,Tb/TB]:Tv?[Tg/Tv,Ty/Tv]:[NaN,NaN];return Tg=Ty=Tv=Tm=Tb=TB=Tw=Tx=TC=0,t}};function TE(t,e){Tg+=t,Ty+=e,++Tv}function Tk(){TO.point=TF}function TF(t,e){TO.point=TQ,TE(Td=t,Tp=e)}function TQ(t,e){var n=t-Td,r=e-Tp,i=I$(n*n+r*r);Tm+=i*(Td+t)/2,Tb+=i*(Tp+e)/2,TB+=i,TE(Td=t,Tp=e)}function TM(){TO.point=TE}function TU(){TO.point=TI}function TS(){TT(Tf,Th)}function TI(t,e){TO.point=TT,TE(Tf=Td=t,Th=Tp=e)}function TT(t,e){var n=t-Td,r=e-Tp,i=I$(n*n+r*r);Tm+=i*(Td+t)/2,Tb+=i*(Tp+e)/2,TB+=i,Tw+=(i=Tp*t-Td*e)*(Td+t),Tx+=i*(Tp+e),TC+=3*i,TE(Td=t,Tp=e)}function TL(t){this._context=t}TL.prototype={_radius:4.5,pointRadius:function(t){return this._radius=t,this},polygonStart:function(){this._line=0},polygonEnd:function(){this._line=NaN},lineStart:function(){this._point=0},lineEnd:function(){0===this._line&&this._context.closePath(),this._point=NaN},point:function(t,e){switch(this._point){case 0:this._context.moveTo(t,e),this._point=1;break;case 1:this._context.lineTo(t,e);break;default:this._context.moveTo(t+this._radius,e),this._context.arc(t,e,this._radius,0,IP)}},result:I0};var T_,TP,TH,Tj,TN,TD=new II,TR={point:I0,lineStart:function(){TR.point=TK},lineEnd:function(){T_&&Tz(TP,TH),TR.point=I0},polygonStart:function(){T_=!0},polygonEnd:function(){T_=null},result:function(){var t=+TD;return TD=new II,t}};function TK(t,e){TR.point=Tz,TP=Tj=t,TH=TN=e}function Tz(t,e){Tj-=t,TN-=e,TD.add(I$(Tj*Tj+TN*TN)),Tj=t,TN=e}class TG{constructor(t){this._append=null==t?TV:function(t){let e=Math.floor(t);if(!(e>=0))throw RangeError(`invalid digits: ${t}`);if(e>15)return TV;if(e!==r){let t=10**e;r=e,i=function(e){let n=1;this._+=e[0];for(let r=e.length;n=0))throw RangeError(`invalid digits: ${t}`);n=e}return null===e&&(A=new TG(n)),a},a.projection(t).digits(n).context(e)}function TX(t,e,n){t*=1,e*=1,n=(i=arguments.length)<2?(e=t,t=0,1):i<3?1:+n;for(var r=-1,i=0|Math.max(0,Math.ceil((e-t)/n)),A=Array(i);++r1&&e.push(e.pop().concat(e.shift()))},result:function(){var n=e;return e=[],t=null,n}}}function TJ(t,e){return 1e-6>IN(t[0]-e[0])&&1e-6>IN(t[1]-e[1])}function TZ(t,e,n,r){this.x=t,this.z=e,this.o=n,this.e=r,this.v=!1,this.n=this.p=null}function T0(t,e,n,r,i){var A,a,o=[],s=[];if(t.forEach(function(t){if(!((e=t.length-1)<=0)){var e,n,r=t[0],a=t[e];if(TJ(r,a)){if(!r[2]&&!a[2]){for(i.lineStart(),A=0;A=0;--A)i.point((c=l[A])[0],c[1]);else r(f.x,f.p.x,-1,i);f=f.p}l=(f=f.o).z,h=!h}while(!f.v);i.lineEnd()}}}function T1(t){if(e=t.length){for(var e,n,r=0,i=t[0];++r=0?1:-1,k=E*O,F=k>IT,Q=g*x;if(s.add(IR(Q*E*IX(k),y*C+Q*IK(k))),a+=F?O+E*IP:O,F^d>=n^B>=n){var M=T3(T4(h),T4(b));T9(M);var U=T3(A,M);T9(U);var S=(F^O>=0?-1:1)*IZ(U[2]);(r>S||r===S&&(M[0]||M[1]))&&(o+=F^O>=0?1:-1)}}return(a<-1e-6||a<1e-6&&s<-1e-12)^1&o}(A,r);a.length?(u||(i.polygonStart(),u=!0),T0(a,Lr,t,n,i)):t&&(u||(i.polygonStart(),u=!0),i.lineStart(),n(null,null,1,i),i.lineEnd()),u&&(i.polygonEnd(),u=!1),a=A=null},sphere:function(){i.polygonStart(),i.lineStart(),n(null,null,1,i),i.lineEnd(),i.polygonEnd()}};function h(e,n){t(e,n)&&i.point(e,n)}function d(t,e){s.point(t,e)}function p(){f.point=d,s.lineStart()}function g(){f.point=h,s.lineEnd()}function y(t,e){o.push([t,e]),c.point(t,e)}function v(){c.lineStart(),o=[]}function b(){y(o[0][0],o[0][1]),c.lineEnd();var t,e,n,r,s=c.clean(),f=l.result(),h=f.length;if(o.pop(),A.push(o),o=null,h){if(1&s){if((e=(n=f[0]).length-1)>0){for(u||(i.polygonStart(),u=!0),i.lineStart(),t=0;t1&&2&s&&f.push(f.pop().concat(f.shift())),a.push(f.filter(Ln))}}return f}}function Ln(t){return t.length>1}function Lr(t,e){return((t=t.x)[0]<0?t[1]-IL-1e-6:IL-t[1])-((e=e.x)[0]<0?e[1]-IL-1e-6:IL-e[1])}let Li=Le(function(){return!0},function(t){var e,n=NaN,r=NaN,i=NaN;return{lineStart:function(){t.lineStart(),e=1},point:function(A,a){var o,s,l,c,u,f,h,d=A>0?IT:-IT,p=IN(A-n);1e-6>IN(p-IT)?(t.point(n,r=(r+a)/2>0?IL:-IL),t.point(i,r),t.lineEnd(),t.lineStart(),t.point(d,r),t.point(A,r),e=0):i!==d&&p>=IT&&(1e-6>IN(n-i)&&(n-=1e-6*i),1e-6>IN(A-d)&&(A-=1e-6*d),o=n,s=r,l=A,c=a,r=IN(h=IX(o-l))>1e-6?ID((IX(s)*(f=IK(c))*IX(l)-IX(c)*(u=IK(s))*IX(o))/(u*f*h)):(s+c)/2,t.point(i,r),t.lineEnd(),t.lineStart(),t.point(d,r),e=0),t.point(n=A,r=a),i=d},lineEnd:function(){t.lineEnd(),n=r=NaN},clean:function(){return 2-e}}},function(t,e,n,r){var i;if(null==t)i=n*IL,r.point(-IT,i),r.point(0,i),r.point(IT,i),r.point(IT,0),r.point(IT,-i),r.point(0,-i),r.point(-IT,-i),r.point(-IT,0),r.point(-IT,i);else if(IN(t[0]-e[0])>1e-6){var A=t[0]-e[2]?-n:n)+IP-1e-6)%IP}function La(t,e,n,r){function i(i,A){return t<=i&&i<=n&&e<=A&&A<=r}function A(i,A,o,l){var c=0,u=0;if(null==i||(c=a(i,o))!==(u=a(A,o))||0>s(i,A)^o>0)do l.point(0===c||3===c?t:n,c>1?r:e);while((c=(c+o+4)%4)!==u);else l.point(A[0],A[1])}function a(r,i){return 1e-6>IN(r[0]-t)?i>0?0:3:1e-6>IN(r[0]-n)?i>0?2:1:1e-6>IN(r[1]-e)?+(i>0):i>0?3:2}function o(t,e){return s(t.x,e.x)}function s(t,e){var n=a(t,1),r=a(e,1);return n!==r?n-r:0===n?e[1]-t[1]:1===n?t[0]-e[0]:2===n?t[1]-e[1]:e[0]-t[0]}return function(a){var s,l,c,u,f,h,d,p,g,y,v,b=a,B=Tq(),w={point:x,lineStart:function(){w.point=C,l&&l.push(c=[]),y=!0,g=!1,d=p=NaN},lineEnd:function(){s&&(C(u,f),h&&g&&B.rejoin(),s.push(B.result())),w.point=x,g&&b.lineEnd()},polygonStart:function(){b=B,s=[],l=[],v=!0},polygonEnd:function(){var e=function(){for(var e=0,n=0,i=l.length;nr&&(f-A)*(r-a)>(h-a)*(t-A)&&++e:h<=r&&(f-A)*(r-a)<(h-a)*(t-A)&&--e;return e}(),n=v&&e,i=(s=Lt(s)).length;(n||i)&&(a.polygonStart(),n&&(a.lineStart(),A(null,null,1,a),a.lineEnd()),i&&T0(s,o,e,A,a),a.polygonEnd()),b=a,s=l=c=null}};function x(t,e){i(t,e)&&b.point(t,e)}function C(A,a){var o=i(A,a);if(l&&c.push([A,a]),y)u=A,f=a,h=o,y=!1,o&&(b.lineStart(),b.point(A,a));else if(o&&g)b.point(A,a);else{var s=[d=Math.max(-1e9,Math.min(1e9,d)),p=Math.max(-1e9,Math.min(1e9,p))],B=[A=Math.max(-1e9,Math.min(1e9,A)),a=Math.max(-1e9,Math.min(1e9,a))];!function(t,e,n,r,i,A){var a,o=t[0],s=t[1],l=e[0],c=e[1],u=0,f=1,h=l-o,d=c-s;if(a=n-o,!h&&a>0)return;if(a/=h,h<0){if(a0){if(a>f)return;a>u&&(u=a)}if(a=i-o,h||!(a<0)){if(a/=h,h<0){if(a>f)return;a>u&&(u=a)}else if(h>0){if(a0)){if(a/=d,d<0){if(a0){if(a>f)return;a>u&&(u=a)}if(a=A-s,d||!(a<0)){if(a/=d,d<0){if(a>f)return;a>u&&(u=a)}else if(d>0){if(a0&&(t[0]=o+u*h,t[1]=s+u*d),f<1&&(e[0]=o+f*h,e[1]=s+f*d),!0}}}}(s,B,t,e,n,r)?o&&(b.lineStart(),b.point(A,a),v=!1):(g||(b.lineStart(),b.point(s[0],s[1])),b.point(B[0],B[1]),o||b.lineEnd(),v=!1)}d=A,p=a,g=o}return w}}function Lo(t,e){function n(n,r){return e((n=t(n,r))[0],n[1])}return t.invert&&e.invert&&(n.invert=function(n,r){return(n=e.invert(n,r))&&t.invert(n[0],n[1])}),n}function Ls(t,e){return IN(t)>IT&&(t-=Math.round(t/IP)*IP),[t,e]}function Ll(t,e,n){return(t%=IP)?e||n?Lo(Lu(t),Lf(e,n)):Lu(t):e||n?Lf(e,n):Ls}function Lc(t){return function(e,n){return IN(e+=t)>IT&&(e-=Math.round(e/IP)*IP),[e,n]}}function Lu(t){var e=Lc(t);return e.invert=Lc(-t),e}function Lf(t,e){var n=IK(t),r=IX(t),i=IK(e),A=IX(e);function a(t,e){var a=IK(e),o=IK(t)*a,s=IX(t)*a,l=IX(e),c=l*n+o*r;return[IR(s*i-c*A,o*n-l*r),IZ(c*i+s*A)]}return a.invert=function(t,e){var a=IK(e),o=IK(t)*a,s=IX(t)*a,l=IX(e),c=l*i-s*A;return[IR(s*i+l*A,o*n+c*r),IZ(c*n-o*r)]},a}function Lh(t){return function(e){var n=new Ld;for(var r in t)n[r]=t[r];return n.stream=e,n}}function Ld(){}function Lp(t,e,n){var r=t.clipExtent&&t.clipExtent();return t.scale(150).translate([0,0]),null!=r&&t.clipExtent(null),IS(n,t.stream(Tu)),e(Tu.result()),null!=r&&t.clipExtent(r),t}function Lg(t,e,n){return Lp(t,function(n){var r=e[1][0]-e[0][0],i=e[1][1]-e[0][1],A=Math.min(r/(n[1][0]-n[0][0]),i/(n[1][1]-n[0][1])),a=+e[0][0]+(r-A*(n[1][0]+n[0][0]))/2,o=+e[0][1]+(i-A*(n[1][1]+n[0][1]))/2;t.scale(150*A).translate([a,o])},n)}function Ly(t,e,n){return Lg(t,[[0,0],e],n)}function Lv(t,e,n){return Lp(t,function(n){var r=+e,i=r/(n[1][0]-n[0][0]),A=(r-i*(n[1][0]+n[0][0]))/2,a=-i*n[0][1];t.scale(150*i).translate([A,a])},n)}function Lm(t,e,n){return Lp(t,function(n){var r=+e,i=r/(n[1][1]-n[0][1]),A=-i*n[0][0],a=(r-i*(n[1][1]+n[0][1]))/2;t.scale(150*i).translate([A,a])},n)}Ls.invert=Ls,Ld.prototype={constructor:Ld,point:function(t,e){this.stream.point(t,e)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}};var Lb=IK(30*Ij);function LB(t,e){var n;return+e?function(t,e){function n(r,i,A,a,o,s,l,c,u,f,h,d,p,g){var y=l-r,v=c-i,b=y*y+v*v;if(b>4*e&&p--){var B=a+f,w=o+h,x=s+d,C=I$(B*B+w*w+x*x),O=IZ(x/=C),E=1e-6>IN(IN(x)-1)||1e-6>IN(A-u)?(A+u)/2:IR(w,B),k=t(E,O),F=k[0],Q=k[1],M=F-r,U=Q-i,S=v*M-y*U;(S*S/b>e||IN((y*M+v*U)/b-.5)>.3||a*f+o*h+s*d0,i=IN(e)>1e-6;function A(t,n){return IK(t)*IK(n)>e}function a(t,n,r){var i=T4(t),A=T4(n),a=[1,0,0],o=T3(i,A),s=T5(o,o),l=o[0],c=s-l*l;if(!c)return!r&&t;var u=T3(a,o),f=T8(a,e*s/c);T6(f,T8(o,-e*l/c));var h=T5(f,u),d=T5(u,u),p=h*h-d*(T5(f,f)-1);if(!(p<0)){var g=I$(p),y=T8(u,(-h-g)/d);if(T6(y,f),y=T2(y),!r)return y;var v,b=t[0],B=n[0],w=t[1],x=n[1];BIN(C-IT);if(!O&&x0^y[1]<(1e-6>IN(y[0]-b)?w:x):w<=y[1]&&y[1]<=x:C>IT^(b<=y[0]&&y[0]<=B)){var E=T8(u,(-h+g)/d);return T6(E,f),[y,T2(E)]}}}function o(e,n){var i=r?t:IT-t,A=0;return e<-i?A|=1:e>i&&(A|=2),n<-i?A|=4:n>i&&(A|=8),A}return Le(A,function(t){var e,n,s,l,c;return{lineStart:function(){l=s=!1,c=1},point:function(u,f){var h,d,p=[u,f],g=A(u,f),y=r?g?0:o(u,f):g?o(u+(u<0?IT:-IT),f):0;!e&&(l=s=g)&&t.lineStart(),g!==s&&(!(d=a(e,p))||TJ(e,d)||TJ(p,d))&&(p[2]=1),g!==s?(c=0,g?(t.lineStart(),d=a(p,e),t.point(d[0],d[1])):(d=a(e,p),t.point(d[0],d[1],2),t.lineEnd()),e=d):i&&e&&r^g&&!(y&n)&&(h=a(p,e,!0))&&(c=0,r?(t.lineStart(),t.point(h[0][0],h[0][1]),t.point(h[1][0],h[1][1]),t.lineEnd()):(t.point(h[1][0],h[1][1]),t.lineEnd(),t.lineStart(),t.point(h[0][0],h[0][1],3))),!g||e&&TJ(e,p)||t.point(p[0],p[1]),e=p,s=g,n=y},lineEnd:function(){s&&t.lineEnd(),e=null},clean:function(){return c|(l&&s)<<1}}},function(e,r,i,A){!function(t,e,n,r,i,A){if(n){var a=IK(e),o=IX(e),s=r*n;null==i?(i=e+r*IP,A=e-s/2):(i=LA(a,i),A=LA(a,A),(r>0?iA)&&(i+=r*IP));for(var l,c=i;r>0?c>A:c2?t[2]%360*Ij:0,M()):[g*IH,y*IH,v*IH]},F.angle=function(t){return arguments.length?(b=t%360*Ij,M()):b*IH},F.reflectX=function(t){return arguments.length?(B=t?-1:1,M()):B<0},F.reflectY=function(t){return arguments.length?(w=t?-1:1,M()):w<0},F.precision=function(t){return arguments.length?(a=LB(o,k=t*t),U()):I$(k)},F.fitExtent=function(t,e){return Lg(F,t,e)},F.fitSize=function(t,e){return Ly(F,t,e)},F.fitWidth=function(t,e){return Lv(F,t,e)},F.fitHeight=function(t,e){return Lm(F,t,e)},function(){return e=t.apply(this,arguments),F.invert=e.invert&&Q,M()}}function LE(t){var e=0,n=IT/3,r=LO(t),i=r(e,n);return i.parallels=function(t){return arguments.length?r(e=t[0]*Ij,n=t[1]*Ij):[e*IH,n*IH]},i}function Lk(t,e){var n=IX(t),r=(n+IX(e))/2;if(1e-6>IN(r)){var i=IK(t);function A(t,e){return[t*i,IX(e)/i]}return A.invert=function(t,e){return[t/i,IZ(e*i)]},A}var a=1+n*(2*r-n),o=I$(a)/r;function s(t,e){var n=I$(a-2*r*IX(e))/r;return[n*IX(t*=r),o-n*IK(t)]}return s.invert=function(t,e){var n=o-e,i=IR(t,IN(n))*IY(n);return n*r<0&&(i-=IT*IY(t)*IY(n)),[i/r,IZ((a-(t*t+n*n)*r*r)/(2*r))]},s}function LF(){return LE(Lk).scale(155.424).center([0,33.6442])}function LQ(){return LF().parallels([29.5,45.5]).scale(1070).translate([480,250]).rotate([96,0]).center([-.6,38.7])}function LM(){var t,e,n,r,i,A,a=LQ(),o=LF().rotate([154,0]).center([-2,58.5]).parallels([55,65]),s=LF().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(t,e){A=[t,e]}};function c(t){var e=t[0],a=t[1];return A=null,n.point(e,a),A||(r.point(e,a),A)||(i.point(e,a),A)}function u(){return t=e=null,c}return c.invert=function(t){var e=a.scale(),n=a.translate(),r=(t[0]-n[0])/e,i=(t[1]-n[1])/e;return(i>=.12&&i<.234&&r>=-.425&&r<-.214?o:i>=.166&&i<.234&&r>=-.214&&r<-.115?s:a).invert(t)},c.stream=function(n){var r,i;return t&&e===n?t:(i=(r=[a.stream(e=n),o.stream(n),s.stream(n)]).length,t={point:function(t,e){for(var n=-1;++n2?t[2]*Ij:0),e.invert=function(e){return e=t.invert(e[0]*Ij,e[1]*Ij),e[0]*=IH,e[1]*=IH,e},e})(i.rotate()).invert([0,0]));return s(null==l?[[o[0]-A,o[1]-A],[o[0]+A,o[1]+A]]:t===LP?[[Math.max(o[0]-A,l),e],[Math.min(o[0]+A,n),r]]:[[l,Math.max(o[1]-A,e)],[n,Math.min(o[1]+A,r)]])}return i.scale=function(t){return arguments.length?(a(t),c()):a()},i.translate=function(t){return arguments.length?(o(t),c()):o()},i.center=function(t){return arguments.length?(A(t),c()):A()},i.clipExtent=function(t){return arguments.length?(null==t?l=e=n=r=null:(l=+t[0][0],e=+t[0][1],n=+t[1][0],r=+t[1][1]),c()):null==l?null:[[l,e],[n,r]]},c()}function LN(t){return Iq((IL+t)/2)}function LD(t,e){var n=IK(t),r=t===e?IX(t):IV(n/IK(e))/IV(LN(e)/LN(t)),i=n*IW(LN(t),r)/r;if(!r)return LP;function A(t,e){i>0?e<-IL+1e-6&&(e=-IL+1e-6):e>IL-1e-6&&(e=IL-1e-6);var n=i/IW(LN(e),r);return[n*IX(r*t),i-n*IK(r*t)]}return A.invert=function(t,e){var n=i-e,A=IY(r)*I$(t*t+n*n),a=IR(t,IN(n))*IY(n);return n*r<0&&(a-=IT*IY(t)*IY(n)),[a/r,2*ID(IW(i/A,1/r))-IL]},A}function LR(){return LE(LD).scale(109.5).parallels([30,30])}function LK(t,e){return[t,e]}function Lz(){return LC(LK).scale(152.63)}function LG(t,e){var n=IK(t),r=t===e?IX(t):(n-IK(e))/(e-t),i=n/r+t;if(1e-6>IN(r))return LK;function A(t,e){var n=i-e,A=r*t;return[n*IX(A),i-n*IK(A)]}return A.invert=function(t,e){var n=i-e,A=IR(t,IN(n))*IY(n);return n*r<0&&(A-=IT*IY(t)*IY(n)),[A/r,i-IY(r)*I$(t*t+n*n)]},A}function LV(){return LE(LG).scale(131.154).center([0,13.9389])}LL.invert=LS(function(t){return t}),LP.invert=function(t,e){return[t,2*ID(IG(e))-IL]},LK.invert=LK;var LW=I$(3)/2;function LX(t,e){var n=IZ(LW*IX(e)),r=n*n,i=r*r*r;return[t*IK(n)/(LW*(1.340264+-.24331799999999998*r+i*(.0062510000000000005+.034164*r))),n*(1.340264+-.081106*r+i*(893e-6+.003796*r))]}function LY(){return LC(LX).scale(177.158)}function L$(t,e){var n=IK(e),r=IK(t)*n;return[n*IX(t)/r,IX(e)/r]}function Lq(){return LC(L$).scale(144.049).clipAngle(60)}function LJ(){var t,e,n,r,i,A,a,o=1,s=0,l=0,c=1,u=1,f=0,h=null,d=1,p=1,g=Lh({point:function(t,e){var n=b([t,e]);this.stream.point(n[0],n[1])}}),y=IE;function v(){return d=o*c,p=o*u,A=a=null,b}function b(n){var r=n[0]*d,i=n[1]*p;if(f){var A=i*t-r*e;r=r*t+i*e,i=A}return[r+s,i+l]}return b.invert=function(n){var r=n[0]-s,i=n[1]-l;if(f){var A=i*t+r*e;r=r*t-i*e,i=A}return[r/d,i/p]},b.stream=function(t){return A&&a===t?A:A=g(y(a=t))},b.postclip=function(t){return arguments.length?(y=t,h=n=r=i=null,v()):y},b.clipExtent=function(t){return arguments.length?(y=null==t?(h=n=r=i=null,IE):La(h=+t[0][0],n=+t[0][1],r=+t[1][0],i=+t[1][1]),v()):null==h?null:[[h,n],[r,i]]},b.scale=function(t){return arguments.length?(o=+t,v()):o},b.translate=function(t){return arguments.length?(s=+t[0],l=+t[1],v()):[s,l]},b.angle=function(n){return arguments.length?(e=IX(f=n%360*Ij),t=IK(f),v()):f*IH},b.reflectX=function(t){return arguments.length?(c=t?-1:1,v()):c<0},b.reflectY=function(t){return arguments.length?(u=t?-1:1,v()):u<0},b.fitExtent=function(t,e){return Lg(b,t,e)},b.fitSize=function(t,e){return Ly(b,t,e)},b.fitWidth=function(t,e){return Lv(b,t,e)},b.fitHeight=function(t,e){return Lm(b,t,e)},b}function LZ(t,e){var n=e*e,r=n*n;return[t*(.8707-.131979*n+r*(-.013791+r*(.003971*n-.001529*r))),e*(1.007226+n*(.015085+r*(-.044475+.028874*n-.005916*r)))]}function L0(){return LC(LZ).scale(175.295)}function L1(t,e){return[IK(e)*IX(t),IX(e)]}function L2(){return LC(L1).scale(249.5).clipAngle(90.000001)}function L4(t,e){var n=IK(e),r=1+IK(t)*n;return[n*IX(t)/r,IX(e)/r]}function L5(){return LC(L4).scale(250).clipAngle(142)}function L3(t,e){return[IV(Iq((IL+e)/2)),-t]}function L6(){var t=Lj(L3),e=t.center,n=t.rotate;return t.center=function(t){return arguments.length?e([-t[1],t[0]]):[(t=e())[1],-t[0]]},t.rotate=function(t){return arguments.length?n([t[0],t[1],t.length>2?t[2]+90:90]):[(t=n())[0],t[1],t[2]-90]},n([0,0,90]).scale(159.155)}LX.invert=function(t,e){for(var n,r,i=e,A=i*i,a=A*A*A,o=0;o<12&&(r=i*(1.340264+-.081106*A+a*(893e-6+.003796*A))-e,i-=n=r/(1.340264+-.24331799999999998*A+a*(.0062510000000000005+.034164*A)),a=(A=i*i)*A*A,!(1e-12>IN(n)));++o);return[LW*t*(1.340264+-.24331799999999998*A+a*(.0062510000000000005+.034164*A))/IK(i),IZ(IX(i)/LW)]},L$.invert=LS(ID),LZ.invert=function(t,e){var n,r=e,i=25;do{var A=r*r,a=A*A;r-=n=(r*(1.007226+A*(.015085+a*(-.044475+.028874*A-.005916*a)))-e)/(1.007226+A*(.045255+a*(-.311325+.259866*A-.005916*11*a)))}while(IN(n)>1e-6&&--i>0);return[t/(.8707+(A=r*r)*(-.131979+A*(-.013791+A*A*A*(.003971-.001529*A)))),r]},L1.invert=LS(IZ),L4.invert=LS(function(t){return 2*ID(t)}),L3.invert=function(t,e){return[-e,2*ID(IG(t))-IL]};var L8=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function L9(t){let{data:e}=t;if(Array.isArray(e))return Object.assign(Object.assign({},t),{data:{value:e}});let{type:n}=e;return"graticule10"===n?Object.assign(Object.assign({},t),{data:{value:[(function(){var t,e,n,r,i,A,a,o,s,l,c,u,f=10,h=10,d=90,p=360,g=2.5;function y(){return{type:"MultiLineString",coordinates:v()}}function v(){return TX(Iz(r/d)*d,n,d).map(c).concat(TX(Iz(o/p)*p,a,p).map(u)).concat(TX(Iz(e/f)*f,t,f).filter(function(t){return IN(t%d)>1e-6}).map(s)).concat(TX(Iz(A/h)*h,i,h).filter(function(t){return IN(t%p)>1e-6}).map(l))}return y.lines=function(){return v().map(function(t){return{type:"LineString",coordinates:t}})},y.outline=function(){return{type:"Polygon",coordinates:[c(r).concat(u(a).slice(1),c(n).reverse().slice(1),u(o).reverse().slice(1))]}},y.extent=function(t){return arguments.length?y.extentMajor(t).extentMinor(t):y.extentMinor()},y.extentMajor=function(t){return arguments.length?(r=+t[0][0],n=+t[1][0],o=+t[0][1],a=+t[1][1],r>n&&(t=r,r=n,n=t),o>a&&(t=o,o=a,a=t),y.precision(g)):[[r,o],[n,a]]},y.extentMinor=function(n){return arguments.length?(e=+n[0][0],t=+n[1][0],A=+n[0][1],i=+n[1][1],e>t&&(n=e,e=t,t=n),A>i&&(n=A,A=i,i=n),y.precision(g)):[[e,A],[t,i]]},y.step=function(t){return arguments.length?y.stepMajor(t).stepMinor(t):y.stepMinor()},y.stepMajor=function(t){return arguments.length?(d=+t[0],p=+t[1],y):[d,p]},y.stepMinor=function(t){return arguments.length?(f=+t[0],h=+t[1],y):[f,h]},y.precision=function(f){return arguments.length?(g=+f,s=TY(A,i,90),l=T$(e,t,g),c=TY(o,a,90),u=T$(r,n,g),y):g},y.extentMajor([[-180,-89.999999],[180,89.999999]]).extentMinor([[-180,-80.000001],[180,80.000001]])})()()]}}):"sphere"===n?Object.assign(Object.assign({},t),{sphere:!0,data:{value:[{type:"Sphere"}]}}):t}function L7(t){return"geoPath"===t.type}let _t=()=>t=>{let e,{children:n,coordinate:r={}}=t;if(!Array.isArray(n))return[];let{type:i="equalEarth"}=r,A=L8(r,["type"]),a=function(t){if("function"==typeof t)return t;let e=tt[`geo${uv(t)}`];if(!e)throw Error(`Unknown coordinate: ${t}`);return e}(i),o=n.map(e=>Object.assign(Object.assign({},e),{data:pI(e.data,t.data)})).map(L9);return[Object.assign(Object.assign({},t),{type:"view",scale:{x:{type:"identity"},y:{type:"identity"}},axis:!1,coordinate:{type:function(){return[["custom",(t,n,r,i)=>{var s;let l=a();for(let[e,a]of(!function(t,e,n,r){let i,{outline:A=(i=e.filter(L7)).find(t=>t.sphere)?{type:"Sphere"}:{type:"FeatureCollection",features:i.filter(t=>!t.sphere).flatMap(t=>t.data.value).flatMap(t=>(function(t){if(!t||!t.type)return null;let e={Point:"geometry",MultiPoint:"geometry",LineString:"geometry",MultiLineString:"geometry",Polygon:"geometry",MultiPolygon:"geometry",GeometryCollection:"geometry",Feature:"feature",FeatureCollection:"featureCollection"}[t.type];return e?"geometry"===e?{type:"FeatureCollection",features:[{type:"Feature",properties:{},geometry:t}]}:"feature"===e?{type:"FeatureCollection",features:[t]}:"featureCollection"===e?t:void 0:null})(t).features)}}=r,{size:a="fitExtent"}=r;"fitExtent"===a?function(t,e,n){let{x:r,y:i,width:A,height:a}=n;t.fitExtent([[r,i],[A,a]],e)}(t,A,n):"fitWidth"===a&&function(t,e,n){let{width:r,height:i}=n,[[A,a],[o,s]]=TW(t.fitWidth(r,e)).bounds(e),l=Math.ceil(s-a),c=Math.min(Math.ceil(o-A),l),u=t.scale()*(c-1)/c,[f,h]=t.translate();t.scale(u).translate([f,h+(i-l)/2]).precision(.2)}(t,A,n)}(l,o,{x:t,y:n,width:r,height:i},A),Object.entries(A)))null==(s=l[e])||s.call(l,a);e=TW(l);let c=new h1({domain:[t,t+r]}),u=new h1({domain:[n,n+i]});return{transform:t=>(t=>{let e=l(t);if(!e)return[null,null];let[n,r]=e;return[c.map(n),u.map(r)]})(t),untransform:t=>(t=>{if(!t)return null;let[e,n]=t,r=[c.invert(e),u.invert(n)];return l.invert(r)})(t)}}]]}},children:o.flatMap(t=>L7(t)?function(t){let{style:n,tooltip:r={}}=t;return Object.assign(Object.assign({},t),{type:"path",tooltip:bT(r,{title:"id",items:[{channel:"color"}]}),style:Object.assign(Object.assign({},n),{d:t=>e(t)||[]})})}(t):t)})]};_t.props={};var _e=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let _n=()=>t=>{let{type:e,data:n,scale:r,encode:i,style:A,animate:a,key:o,state:s,tooltip:l}=t;return[Object.assign(Object.assign({type:"geoView"},_e(t,["type","data","scale","encode","style","animate","key","state","tooltip"])),{children:[{type:"geoPath",key:`${o}-0`,data:{value:n},scale:r,encode:i,style:A,animate:a,state:s,tooltip:l}]})]};function _r(t){return t.index}function _i(t,e){var n=t.get(e);if(!n)throw Error("node not found: "+e);return n}_n.props={};var _A=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let _a={joint:!0},_o={type:"link",axis:!1,legend:!1,encode:{x:[t=>t.source.x,t=>t.target.x],y:[t=>t.source.y,t=>t.target.y]},style:{stroke:"#999",strokeOpacity:.6}},_s={type:"point",axis:!1,legend:!1,encode:{x:"x",y:"y",size:5,color:"group",shape:"point"},style:{stroke:"#fff"}},_l={text:""},_c=t=>{let{data:e,encode:n={},scale:r,style:i={},layout:A={},nodeLabels:a=[],linkLabels:o=[],animate:s={},tooltip:l={}}=t,{nodeKey:c=t=>t.id,linkKey:u=t=>t.id}=n,f=Object.assign({nodeKey:c,linkKey:u},_A(n,["nodeKey","linkKey"])),h=cJ(f,"node"),d=cJ(f,"link"),{links:p,nodes:g}=xr(e,f),{nodesData:y,linksData:v}=function(t,e,n){let{nodes:r,links:i}=t,{joint:A,nodeStrength:a,linkStrength:o}=e,{nodeKey:s=t=>t.id,linkKey:l=t=>t.id}=n,c=function(){var t,e,n,r,i,A=E9(-30),a=1,o=1/0,s=.81;function l(n){var i,A=t.length,a=E5(t,E$,Eq).visitAfter(u);for(r=n,i=0;i=o)){(t.data!==e||t.next)&&(0===u&&(d+=(u=E7(n))*u),0===f&&(d+=(f=E7(n))*f),d[o(t,e,r),t]));for(a=0,i=Array(l);a({name:"source",value:xe(u)(t.source)}),t=>({name:"target",value:xe(u)(t.target)})]}),B=bI(l,"node",{items:[t=>({name:"key",value:xe(c)(t)})]},!0);return[cC({},_o,{data:v,encode:d,labels:o,style:cJ(i,"link"),tooltip:b,animate:b_(s,"link")}),cC({},_s,{data:y,encode:Object.assign({},h),scale:r,style:cJ(i,"node"),tooltip:B,labels:[Object.assign(Object.assign({},_l),cJ(i,"label")),...a],animate:b_(s,"link")})]};function _u(t,e){return t.parent===e.parent?1:2}function _f(t){var e=t.children;return e?e[0]:t.t}function _h(t){var e=t.children;return e?e[e.length-1]:t.t}function _d(t,e){this._=t,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=e}function _p(){var t=_u,e=1,n=1,r=null;function i(i){var s=function(t){for(var e,n,r,i,A,a=new _d(t,0),o=[a];e=o.pop();)if(r=e._.children)for(e.children=Array(A=r.length),i=A-1;i>=0;--i)o.push(n=e.children[i]=new _d(r[i],i)),n.parent=e;return(a.parent=new _d(null,0)).children=[a],a}(i);if(s.eachAfter(A),s.parent.m=-s.z,s.eachBefore(a),r)i.eachBefore(o);else{var l=i,c=i,u=i;i.eachBefore(function(t){t.xc.x&&(c=t),t.depth>u.depth&&(u=t)});var f=l===c?1:t(l,c)/2,h=f-l.x,d=e/(c.x+f+h),p=n/(u.depth||1);i.eachBefore(function(t){t.x=(t.x+h)*d,t.y=t.depth*p})}return i}function A(e){var n=e.children,r=e.parent.children,i=e.i?r[e.i-1]:null;if(n){!function(t){for(var e,n=0,r=0,i=t.children,A=i.length;--A>=0;)e=i[A],e.z+=n,e.m+=n,n+=e.s+(r+=e.c)}(e);var A=(n[0].z+n[n.length-1].z)/2;i?(e.z=i.z+t(e._,i._),e.m=e.z-A):e.z=A}else i&&(e.z=i.z+t(e._,i._));e.parent.A=function(e,n,r){if(n){for(var i,A,a,o=e,s=e,l=n,c=o.parent.children[0],u=o.m,f=s.m,h=l.m,d=c.m;l=_h(l),o=_f(o),l&&o;)c=_f(c),(s=_h(s)).a=e,(a=l.z+h-o.z-u+t(l._,o._))>0&&(!function(t,e,n){var r=n/(e.i-t.i);e.c-=r,e.s+=n,t.c+=r,e.z+=n,e.m+=n}((i=l,A=r,i.a.parent===e.parent?i.a:A),e,a),u+=a,f+=a),h+=l.m,u+=o.m,d+=c.m,f+=s.m;l&&!_h(s)&&(s.t=l,s.m+=h-f),o&&!_f(c)&&(c.t=o,c.m+=u-d,r=e)}return r}(e,i,e.parent.A||r[0])}function a(t){t._.x=t.z+t.parent.m,t.m+=t.parent.m}function o(t){t.x*=e,t.y=t.depth*n}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(r=!1,e=+t[0],n=+t[1],i):r?null:[e,n]},i.nodeSize=function(t){return arguments.length?(r=!0,e=+t[0],n=+t[1],i):r?[e,n]:null},i}function _g(t,e){return t.parent===e.parent?1:2}function _y(t,e){return t+e.x}function _v(t,e){return Math.max(t,e.y)}function _m(){var t=_g,e=1,n=1,r=!1;function i(i){var A,a=0;i.eachAfter(function(e){var n=e.children;n?(e.x=n.reduce(_y,0)/n.length,e.y=1+n.reduce(_v,0)):(e.x=A?a+=t(e,A):0,e.y=0,A=e)});var o=function(t){for(var e;e=t.children;)t=e[0];return t}(i),s=function(t){for(var e;e=t.children;)t=e[e.length-1];return t}(i),l=o.x-t(o,s)/2,c=s.x+t(s,o)/2;return i.eachAfter(r?function(t){t.x=(t.x-i.x)*e,t.y=(i.y-t.y)*n}:function(t){t.x=(t.x-l)/(c-l)*e,t.y=(1-(i.y?t.y/i.y:1))*n})}return i.separation=function(e){return arguments.length?(t=e,i):t},i.size=function(t){return arguments.length?(r=!1,e=+t[0],n=+t[1],i):r?null:[e,n]},i.nodeSize=function(t){return arguments.length?(r=!0,e=+t[0],n=+t[1],i):r?[e,n]:null},i}_c.props={},_d.prototype=Object.create(wi.prototype);let _b=t=>e=>n=>{let{field:r="value",nodeSize:i,separation:A,sortBy:a,as:o=["x","y"]}=e,[s,l]=o,c=B7(n,t=>t.children).sum(t=>t[r]).sort(a),u=t();u.size([1,1]),i&&u.nodeSize(i),A&&u.separation(A),u(c);let f=[];c.each(t=>{t[s]=t.x,t[l]=t.y,t.name=t.data.name,f.push(t)});let h=c.links();return h.forEach(t=>{t[s]=[t.source[s],t.target[s]],t[l]=[t.source[l],t.target[l]]}),{nodes:f,edges:h}},_B=t=>_b(_m)(t);_B.props={};let _w=t=>_b(_p)(t);_w.props={};let _x={sortBy:(t,e)=>e.value-t.value},_C={axis:!1,legend:!1,type:"point",encode:{x:"x",y:"y",size:2,shape:"point"}},_O={type:"link",encode:{x:"x",y:"y",shape:"smooth"}},_E={text:"",fontSize:10},_k=t=>{let{data:e,encode:n={},scale:r={},style:i={},layout:A={},nodeLabels:a=[],linkLabels:o=[],animate:s={},tooltip:l={}}=t,c=null==n?void 0:n.value,{nodes:u,edges:f}=_w(Object.assign(Object.assign(Object.assign({},_x),A),{field:c}))(e),h=bI(l,"node",{title:"name",items:["value"]},!0),d=bI(l,"link",{title:"",items:[t=>({name:"source",value:t.source.name}),t=>({name:"target",value:t.target.name})]});return[cC({},_O,{data:f,encode:cJ(n,"link"),scale:cJ(r,"link"),labels:o,style:Object.assign({stroke:"#999"},cJ(i,"link")),tooltip:d,animate:b_(s,"link")}),cC({},_C,{data:u,scale:cJ(r,"node"),encode:cJ(n,"node"),labels:[Object.assign(Object.assign({},_E),cJ(i,"label")),...a],style:Object.assign({},cJ(i,"node")),tooltip:h,animate:b_(s,"node")})]};function _F(t,e){var n=t.r-e.r,r=e.x-t.x,i=e.y-t.y;return n<0||n*n0&&n*n>r*r+i*i}function _M(t,e){for(var n=0;n1e-6?(F+Math.sqrt(F*F-4*k*Q))/(2*k):Q/F);return{x:r+x+C*M,y:i+O+E*M,r:M}}function _I(t,e,n){var r,i,A,a,o=t.x-e.x,s=t.y-e.y,l=o*o+s*s;l?(i=e.r+n.r,i*=i,a=t.r+n.r,i>(a*=a)?(r=(l+a-i)/(2*l),A=Math.sqrt(Math.max(0,a/l-r*r)),n.x=t.x-r*o-A*s,n.y=t.y-r*s+A*o):(r=(l+i-a)/(2*l),A=Math.sqrt(Math.max(0,i/l-r*r)),n.x=e.x+r*o-A*s,n.y=e.y+r*s+A*o)):(n.x=e.x+n.r,n.y=e.y)}function _T(t,e){var n=t.r+e.r-1e-6,r=e.x-t.x,i=e.y-t.y;return n>0&&n*n>r*r+i*i}function _L(t){var e=t._,n=t.next._,r=e.r+n.r,i=(e.x*n.r+n.x*e.r)/r,A=(e.y*n.r+n.y*e.r)/r;return i*i+A*A}function __(t){this._=t,this.next=null,this.previous=null}function _P(t){return Math.sqrt(t.value)}function _H(t){return function(e){e.children||(e.r=Math.max(0,+t(e)||0))}}function _j(t,e,n){return function(r){if(i=r.children){var i,A,a,o=i.length,s=t(r)*e||0;if(s)for(A=0;A1))return n.r;if(r=t[1],n.x=-r.r,r.x=n.r,r.y=0,!(A>2))return n.r+r.r;_I(r,n,i=t[2]),n=new __(n),r=new __(r),i=new __(i),n.next=i.previous=r,r.next=n.previous=i,i.next=r.previous=n;e:for(s=3;se.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let _R={text:"",position:"inside",textOverflow:"clip",wordWrap:!0,maxLines:1,wordWrapWidth:t=>2*t.r},_K={title:t=>t.data.name,items:[{field:"value"}]},_z=(t,e)=>{let{width:n,height:r}=e,{data:i,encode:A={},scale:a={},style:o={},layout:s={},labels:l=[],tooltip:c={}}=t,u=_D(t,["data","encode","scale","style","layout","labels","tooltip"]),f={type:"point",axis:!1,legend:!1,scale:{x:{domain:[0,n]},y:{domain:[0,r]},size:{type:"identity"}},encode:{x:"x",y:"y",size:"r",shape:"point"},style:{fill:A.color?void 0:t=>0===t.height?"#ddd":"#fff",stroke:A.color?void 0:t=>0===t.height?"":"#000"}},h=((t,e,n)=>{let{value:r}=n,i=nn(t)?MF().path(e.path)(t):B7(t);return r?i.sum(t=>xe(r)(t)).sort(e.sort):i.count(),(function(){var t=null,e=1,n=1,r=MH;function i(i){let A,a=(A=1,()=>(A=(1664525*A+0x3c6ef35f)%0x100000000)/0x100000000);return i.x=e/2,i.y=n/2,t?i.eachBefore(_H(t)).eachAfter(_j(r,.5,a)).eachBefore(_N(1)):i.eachBefore(_H(_P)).eachAfter(_j(MH,1,a)).eachAfter(_j(r,i.r/Math.min(e,n),a)).eachBefore(_N(Math.min(e,n)/(2*i.r))),i}return i.radius=function(e){return arguments.length?(t=MB(e),i):t},i.size=function(t){return arguments.length?(e=+t[0],n=+t[1],i):[e,n]},i.padding=function(t){return arguments.length?(r="function"==typeof t?t:Mj(+t),i):r},i})().size(e.size).padding(e.padding)(i),i.descendants()})(i,cC({},{size:[n,r],padding:0,sort:(t,e)=>e.value-t.value},s),cC({},f.encode,A)),d=cJ(o,"label");return cC({},f,Object.assign(Object.assign({data:h,encode:A,scale:a,style:o,labels:[Object.assign(Object.assign({},_R),d),...l]},u),{tooltip:bT(c,_K),axis:!1}))};function _G(t){return t.target.depth}function _V(t,e){return t.sourceLinks.length?t.depth:e-1}function _W(t){return function(){return t}}function _X(t,e){return _$(t.source,e.source)||t.index-e.index}function _Y(t,e){return _$(t.target,e.target)||t.index-e.index}function _$(t,e){return t.y0-e.y0}function _q(t){return t.value}function _J(t){return t.index}function _Z(t){return t.nodes}function _0(t){return t.links}function _1(t,e){let n=t.get(e);if(!n)throw Error("missing: "+e);return n}function _2({nodes:t}){for(let e of t){let t=e.y0,n=t;for(let n of e.sourceLinks)n.y0=t+n.width/2,t+=n.width;for(let t of e.targetLinks)t.y1=n+t.width/2,n+=t.width}}_z.props={};let _4={nodeAlign:"justify",nodeWidth:.008,nodePadding:.03,nodes:t=>t.nodes,links:t=>t.links,nodeSort:void 0,linkSort:void 0,iterations:6},_5={left:function(t){return t.depth},right:function(t,e){return e-1-t.height},center:function(t){return t.targetLinks.length?t.depth:t.sourceLinks.length?bM(t.sourceLinks,_G)-1:0},justify:_V},_3=t=>e=>{let n,{nodeId:r,nodeSort:i,nodeAlign:A,nodeWidth:a,nodePadding:o,nodeDepth:s,nodes:l,links:c,linkSort:u,iterations:f}=Object.assign({},_4,t),h=(function(){let t,e,n,r=0,i=0,A=1,a=1,o=24,s=8,l,c=_J,u=_V,f=_Z,h=_0,d=6;function p(p){let y={nodes:f(p),links:h(p)};return function({nodes:t,links:e}){t.forEach((t,e)=>{t.index=e,t.sourceLinks=[],t.targetLinks=[]});let r=new Map(t.map(t=>[c(t),t]));if(e.forEach((t,e)=>{t.index=e;let{source:n,target:i}=t;"object"!=typeof n&&(n=t.source=_1(r,n)),"object"!=typeof i&&(i=t.target=_1(r,i)),n.sourceLinks.push(t),i.targetLinks.push(t)}),null!=n)for(let{sourceLinks:e,targetLinks:r}of t)e.sort(n),r.sort(n)}(y),function({nodes:t}){for(let e of t)e.value=void 0===e.fixedValue?Math.max(uT(e.sourceLinks,_q),uT(e.targetLinks,_q)):e.fixedValue}(y),function({nodes:e}){let n=e.length,r=new Set(e),i=new Set,A=0;for(;r.size;){if(r.forEach(t=>{for(let{target:e}of(t.depth=A,t.sourceLinks))i.add(e)}),++A>n)throw Error("circular link");r=i,i=new Set}if(t){let n,r=Math.max(uL(e,t=>t.depth)+1,0);for(let i=0;i{for(let{source:e}of(t.height=i,t.targetLinks))r.add(e)}),++i>e)throw Error("circular link");n=r,r=new Set}}(y),function(t){let c=function({nodes:t}){let n=Math.max(uL(t,t=>t.depth)+1,0),i=(A-r-o)/(n-1),a=Array(n).fill(0).map(()=>[]);for(let e of t){let t=Math.max(0,Math.min(n-1,Math.floor(u.call(null,e,n))));e.layer=t,e.x0=r+t*i,e.x1=e.x0+o,a[t]?a[t].push(e):a[t]=[e]}if(e)for(let t of a)t.sort(e);return a}(t);l=Math.min(s,(a-i)/(uL(c,t=>t.length)-1));let f=bM(c,t=>(a-i-(t.length-1)*l)/uT(t,_q));for(let t of c){let e=i;for(let n of t)for(let t of(n.y0=e,n.y1=e+n.value*f,e=n.y1+l,n.sourceLinks))t.width=t.value*f;e=(a-e+l)/(t.length+1);for(let n=0;n=0;--A){let i=t[A];for(let t of i){let e=0,r=0;for(let{target:n,value:i}of t.sourceLinks){let A=i*(n.layer-t.layer);e+=function(t,e){let n=e.y0-(e.targetLinks.length-1)*l/2;for(let{source:r,width:i}of e.targetLinks){if(r===t)break;n+=i+l}for(let{target:r,width:i}of t.sourceLinks){if(r===e)break;n-=i}return n}(t,n)*A,r+=A}if(!(r>0))continue;let i=(e/r-t.y0)*n;t.y0+=i,t.y1+=i,b(t)}void 0===e&&i.sort(_$),i.length&&g(i,r)}})(c,n,r),function(t,n,r){for(let i=1,A=t.length;i0))continue;let i=(e/r-t.y0)*n;t.y0+=i,t.y1+=i,b(t)}void 0===e&&A.sort(_$),A.length&&g(A,r)}}(c,n,r)}}(y),_2(y),y}function g(t,e){let n=t.length>>1,r=t[n];v(t,r.y0-l,n-1,e),y(t,r.y1+l,n+1,e),v(t,a,t.length-1,e),y(t,i,0,e)}function y(t,e,n,r){for(;n1e-6&&(i.y0+=A,i.y1+=A),e=i.y1+l}}function v(t,e,n,r){for(;n>=0;--n){let i=t[n],A=(i.y1-e)*r;A>1e-6&&(i.y0-=A,i.y1-=A),e=i.y0-l}}function b({sourceLinks:t,targetLinks:e}){if(void 0===n){for(let{source:{sourceLinks:t}}of e)t.sort(_Y);for(let{target:{targetLinks:e}}of t)e.sort(_X)}}return p.update=function(t){return _2(t),t},p.nodeId=function(t){return arguments.length?(c="function"==typeof t?t:_W(t),p):c},p.nodeAlign=function(t){return arguments.length?(u="function"==typeof t?t:_W(t),p):u},p.nodeDepth=function(e){return arguments.length?(t=e,p):t},p.nodeSort=function(t){return arguments.length?(e=t,p):e},p.nodeWidth=function(t){return arguments.length?(o=+t,p):o},p.nodePadding=function(t){return arguments.length?(s=l=+t,p):s},p.nodes=function(t){return arguments.length?(f="function"==typeof t?t:_W(t),p):f},p.links=function(t){return arguments.length?(h="function"==typeof t?t:_W(t),p):h},p.linkSort=function(t){return arguments.length?(n=t,p):n},p.size=function(t){return arguments.length?(r=i=0,A=+t[0],a=+t[1],p):[A-r,a-i]},p.extent=function(t){return arguments.length?(r=+t[0][0],A=+t[1][0],i=+t[0][1],a=+t[1][1],p):[[r,i],[A,a]]},p.iterations=function(t){return arguments.length?(d=+t,p):d},p})().nodeSort(i).linkSort(u).links(c).nodes(l).nodeWidth(a).nodePadding(o).nodeDepth(s).nodeAlign("string"==(n=typeof A)?_5[A]||_V:"function"===n?A:_V).iterations(f).extent([[0,0],[1,1]]);"function"==typeof r&&h.nodeId(r);let{nodes:d,links:p}=h(e);return{nodes:d.map(t=>{let{x0:e,x1:n,y0:r,y1:i}=t;return Object.assign(Object.assign({},t),{x:[e,n,n,e],y:[r,r,i,i]})}),links:p.map(t=>{let{source:e,target:n}=t,r=e.x1,i=n.x0,A=t.width/2;return Object.assign(Object.assign({},t),{x:[r,r,i,i],y:[t.y0+A,t.y0-A,t.y1+A,t.y1-A]})})}};_3.props={};var _6=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let _8={nodeId:t=>t.key,nodeWidth:.02,nodePadding:.02},_9={type:"polygon",axis:!1,legend:!1,encode:{shape:"polygon",x:"x",y:"y"},scale:{x:{type:"identity"},y:{type:"identity"}},style:{stroke:"#000"}},_7={type:"polygon",axis:!1,legend:!1,encode:{shape:"ribbon",x:"x",y:"y"},style:{fillOpacity:.5,stroke:void 0}},Pt={textAlign:t=>t.x[0]<.5?"start":"end",position:t=>t.x[0]<.5?"right":"left",fontSize:10},Pe=t=>{let{data:e,encode:n={},scale:r,style:i={},layout:A={},nodeLabels:a=[],linkLabels:o=[],animate:s={},tooltip:l={},interaction:c,state:u={},viewStyle:f={}}=t,{links:h,nodes:d}=xr(e,n);if(!h||0===h.length)return[cC({},_9,{data:[],encode:{},scale:r,style:cJ(i,"node"),viewStyle:f,labels:[],tooltip:!1,animate:!1,axis:!1,interaction:c,state:{}}),cC({},_7,{data:[],encode:{},labels:[],style:cJ(i,"link"),tooltip:!1,animate:!1,interaction:c,state:{}})];let p=cJ(n,"node"),g=cJ(n,"link"),{key:y=t=>t.key,color:v=y}=p,{links:b,nodes:B}=_3(Object.assign(Object.assign(Object.assign({},_8),{nodeId:xe(y)}),A))({links:h,nodes:d}),w=cJ(i,"label"),{text:x=y,spacing:C=5}=w,O=_6(w,["text","spacing"]),E=xe(y),k=bI(l,"node",{title:E,items:[{field:"value"}]},!0),F=bI(l,"link",{title:"",items:[t=>({name:"source",value:E(t.source)}),t=>({name:"target",value:E(t.target)})]}),[Q,M]=Object.entries(u).reduce((t,[e,n])=>{let r=c0(n,"node","link"),i=cJ(n,"node");t[0][e]=Object.assign(Object.assign({},r),i);let A=cJ(n,"link");return t[1][e]=Object.assign(Object.assign({},r),A),t},[{},{}]);return[cC({},_9,{data:B,encode:Object.assign(Object.assign({},p),{color:v}),scale:r,style:cJ(i,"node"),viewStyle:f,labels:[Object.assign(Object.assign(Object.assign({},Pt),{text:x,dx:t=>t.x[0]<.5?C:-C}),O),...a],tooltip:k,animate:b_(s,"node"),axis:!1,interaction:c,state:Q}),cC({},_7,{data:b,encode:g,labels:o,style:Object.assign({fill:g.color?void 0:"#aaa",lineWidth:0},cJ(i,"link")),tooltip:F,animate:b_(s,"link"),interaction:c,state:M})]};function Pn(t,e){return e.value-t.value}function Pr(t,e){return e.frequency-t.frequency}function Pi(t,e){return`${t.id}`.localeCompare(`${e.id}`)}function PA(t,e){return`${t.name}`.localeCompare(`${e.name}`)}Pe.props={};let Pa={y:0,thickness:.05,weight:!1,marginRatio:.1,id:t=>t.id,source:t=>t.source,target:t=>t.target,sourceWeight:t=>t.value||1,targetWeight:t=>t.value||1,sortBy:null},Po=t=>e=>(function(t){let{y:e,thickness:n,weight:r,marginRatio:i,id:A,source:a,target:o,sourceWeight:s,targetWeight:l,sortBy:c}=Object.assign(Object.assign({},Pa),t);return function(t){var u,f,h;let d,p,g,y=t.nodes.map(t=>Object.assign({},t)),v=t.edges.map(t=>Object.assign({},t));return u=y,(f=v).forEach(t=>{t.source=a(t),t.target=o(t),t.sourceWeight=s(t),t.targetWeight=l(t)}),d=cy(f,t=>t.source),p=cy(f,t=>t.target),u.forEach(t=>{t.id=A(t);let e=d.has(t.id)?d.get(t.id):[],n=p.has(t.id)?p.get(t.id):[];t.frequency=e.length+n.length,t.value=uT(e,t=>t.sourceWeight)+uT(n,t=>t.targetWeight)}),h=y,(g="function"==typeof c?c:te[c])&&h.sort(g),function(t){let A=t.length;if(!A)throw cY("Invalid nodes: it's empty!");if(!r){let n=1/A;return t.forEach((t,r)=>{t.x=(r+.5)*n,t.y=e})}let a=i/(2*A),o=t.reduce((t,e)=>t+=e.value,0);t.reduce((t,r)=>{r.weight=r.value/o,r.width=r.weight*(1-i),r.height=n;let A=a+t,s=A+r.width,l=e-n/2,c=l+n;return r.x=[A,s,s,A],r.y=[l,l,c,c],t+r.width+2*a},0)}(y),function(t,n){let i=new Map(t.map(t=>[t.id,t]));if(!r)return n.forEach(t=>{let e=a(t),n=o(t),r=i.get(e),A=i.get(n);r&&A&&(t.x=[r.x,A.x],t.y=[r.y,A.y])});n.forEach(t=>{t.x=[0,0,0,0],t.y=[e,e,e,e]});let A=cy(n,t=>t.source),s=cy(n,t=>t.target);t.forEach(t=>{let{edges:e,width:n,x:r,y:i,value:a,id:o}=t,l=A.get(o)||[],c=s.get(o)||[],u=0;l.map(t=>{let e=t.sourceWeight/a*n;t.x[0]=r[0]+u,t.x[1]=r[0]+u+e,u+=e}),c.forEach(t=>{let e=t.targetWeight/a*n;t.x[3]=r[0]+u,t.x[2]=r[0]+u+e,u+=e})})}(y,v),{nodes:y,edges:v}}})(t)(e);Po.props={};var Ps=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Pl={y:0,thickness:.05,marginRatio:.1,id:t=>t.key,source:t=>t.source,target:t=>t.target,sourceWeight:t=>t.value||1,targetWeight:t=>t.value||1,sortBy:null},Pc={type:"polygon",axis:!1,legend:!1,encode:{shape:"polygon",x:"x",y:"y"},scale:{x:{type:"identity"},y:{type:"identity"}},style:{opacity:1,fillOpacity:1,lineWidth:1}},Pu={type:"polygon",axis:!1,legend:!1,encode:{shape:"ribbon",x:"x",y:"y"},style:{opacity:.5,lineWidth:1}},Pf={position:"outside",fontSize:10},Ph=(t,e)=>{let{data:n,encode:r={},scale:i,style:A={},layout:a={},nodeLabels:o=[],linkLabels:s=[],animate:l={},tooltip:c={}}=t,{nodes:u,links:f}=xr(n,r),h=cJ(r,"node"),d=cJ(r,"link"),{key:p=t=>t.key,color:g=p}=h,{linkEncodeColor:y=t=>t.source}=d,{nodeWidthRatio:v=Pl.thickness,nodePaddingRatio:b=Pl.marginRatio}=a,B=Ps(a,["nodeWidthRatio","nodePaddingRatio"]),{nodes:w,edges:x}=Po(Object.assign(Object.assign(Object.assign(Object.assign({},Pl),{id:xe(p),thickness:v,marginRatio:b}),B),{weight:!0}))({nodes:u,edges:f}),C=cJ(A,"label"),{text:O=p}=C,E=Ps(C,["text"]),k=bI(c,"node",{title:"",items:[t=>({name:t.key,value:t.value})]},!0),F=bI(c,"link",{title:"",items:[t=>({name:`${t.source} -> ${t.target}`,value:t.value})]}),{height:Q,width:M}=e,U=Math.min(Q,M);return[cC({},Pu,{data:x,encode:Object.assign(Object.assign({},d),{color:y}),labels:s,style:Object.assign({fill:y?void 0:"#aaa"},cJ(A,"link")),tooltip:F,animate:b_(l,"link")}),cC({},Pc,{data:w,encode:Object.assign(Object.assign({},h),{color:g}),scale:i,style:cJ(A,"node"),coordinate:{type:"polar",outerRadius:(U-20)/U,startAngle:-(2*Math.PI),endAngle:0},labels:[Object.assign(Object.assign(Object.assign({},Pf),{text:O}),E),...o],tooltip:k,animate:b_(l,"node"),axis:!1})]};Ph.props={};var Pd=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let Pp={fontSize:10,text:t=>hj(t.path),position:"inside",fill:"#000",textOverflow:"clip",wordWrap:!0,maxLines:1,wordWrapWidth:t=>t.x1-t.x0,isTreemapLabel:!0},Pg={title:t=>{var e,n;return null==(n=null==(e=t.path)?void 0:e.join)?void 0:n.call(e,".")},items:[{field:"value"}]},Py={title:t=>hj(t.path),items:[{field:"value"}]},Pv=(t,e)=>{let{width:n,height:r,options:i}=e,{data:A,encode:a={},scale:o,style:s={},layout:l={},labels:c=[],tooltip:u={}}=t,f=Pd(t,["data","encode","scale","style","layout","labels","tooltip"]),h=cf(i,["interaction","treemapDrillDown"])||cf(i,["marks",0,"interaction","treemapDrillDown"]),d=cC({},{tile:"treemapSquarify",ratio:.5*(1+Math.sqrt(5)),size:[n,r],round:!1,ignoreParentValue:!0,padding:0,paddingInner:0,paddingOuter:0,paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0,sort:(t,e)=>e.value-t.value,layer:0},l,{layer:h?t=>1===t.depth:l.layer}),[p,g]=MN(A,d,a),y=cJ(s,"label");return cC({},{type:"rect",axis:!1,encode:{x:"x",y:"y",key:"id",color:t=>t.path[1]},scale:{x:{domain:[0,n],range:[0,1]},y:{domain:[0,r],range:[0,1]}},style:{stroke:"#fff"},state:{active:{opacity:.6},inactive:{opacity:1}}},Object.assign(Object.assign({data:p,scale:o,style:s,labels:[Object.assign(Object.assign(Object.assign({},Pp),y),h&&{cursor:"pointer"}),...c]},f),{encode:a,tooltip:bT(u,Pg),axis:!1}),h?{interaction:Object.assign(Object.assign({},f.interaction),{treemapDrillDown:h?Object.assign(Object.assign({},h),{originData:g,layout:d}):void 0}),encode:Object.assign({color:t=>hj(t.path)},a),tooltip:bT(u,Py)}:{})};Pv.props={};var Pm=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function Pb(t,e){return bM(t,t=>e[t])}function PB(t,e){return uL(t,t=>e[t])}function Pw(t,e){let n=2.5*Px(t,e)-1.5*PO(t,e);return bM(t,t=>e[t]>=n?e[t]:NaN)}function Px(t,e){return U$(t,.25,t=>e[t])}function PC(t,e){return U$(t,.5,t=>e[t])}function PO(t,e){return U$(t,.75,t=>e[t])}function PE(t,e){let n=2.5*PO(t,e)-1.5*Px(t,e);return uL(t,t=>e[t]<=n?e[t]:NaN)}function Pk(){return(t,e)=>{let{encode:n}=e,{y:r,x:i}=n,{value:A}=r,{value:a}=i;return[Array.from(cy(t,t=>a[+t]).values()).flatMap(t=>{let e=Pw(t,A),n=PE(t,A);return t.filter(t=>A[t]n)}),e]}}let PF=t=>{let{data:e,encode:n,style:r={},tooltip:i={},transform:A,animate:a}=t,o=Pm(t,["data","encode","style","tooltip","transform","animate"]),{point:s=!0}=r,l=Pm(r,["point"]),{y:c}=n,u={y:c,y1:c,y2:c,y3:c,y4:c},f={y1:Px,y2:PC,y3:PO},h=bI(i,"box",{items:[{channel:"y",name:"min"},{channel:"y1",name:"q1"},{channel:"y2",name:"q2"},{channel:"y3",name:"q3"},{channel:"y4",name:"max"}]},!0),d=bI(i,"point",{title:{channel:"x"},items:[{name:"outlier",channel:"y"}]});if(!s)return Object.assign({type:"box",data:e,transform:[Object.assign(Object.assign({type:"groupX",y:Pb},f),{y4:PB})],encode:Object.assign(Object.assign({},n),u),style:l,tooltip:h},o);let p=cJ(l,"box"),g=cJ(l,"point");return[Object.assign({type:"box",data:e,transform:[Object.assign(Object.assign({type:"groupX",y:Pw},f),{y4:PE})],encode:Object.assign(Object.assign({},n),u),style:p,tooltip:h,animate:b_(a,"box")},o),{type:"point",data:e,transform:[{type:Pk}],encode:n,style:Object.assign({},g),tooltip:d,animate:b_(a,"point")}]};PF.props={};let PQ=(t,e)=>Math.sqrt(Math.pow(t[0]-e[0],2)+Math.pow(t[1]-e[1],2))/2,PM=(t,e)=>{if(!e)return;let{coordinate:n}=e;if(!(null==n?void 0:n.getCenter))return;let r=n.getCenter();return(n,i,A)=>{var a,o;let s,l,{document:c}=e.canvas,{color:u,index:f}=i,h=c.createElement("g",{}),d=PQ(n[0],n[1]),p=2*PQ(n[0],r),g=(a=n[3],o=n[0],s=Math.atan2(a[1]-r[1],a[0]-r[0]),(l=Math.atan2(o[1]-r[1],o[0]-r[0])-s)<0&&(l+=2*Math.PI),l>Math.PI),y=c.createElement("path",{style:Object.assign(Object.assign(Object.assign({d:[["M",...n[0]],["A",d,d,0,1,0,...n[1]],["A",p+2*d,p+2*d,0,+!!g,0,...n[2]],["A",d,d,0,1,+(0!==f),...n[3]],["A",p,p,0,+!!g,1,...n[0]],["Z"]]},A),h5(t,["shape","last","first"])),{fill:u||A.color})});return h.appendChild(y),h}};var PU=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let PS={coordinate:{type:"radial",innerRadius:.9,outerRadius:1,startAngle:-1.1*Math.PI,endAngle:.1*Math.PI},axis:{x:!1},legend:!1,tooltip:!1,encode:{x:"x",y:"y",color:"color"},scale:{color:{range:["#30BF78","#D0D0D0"]}}},PI={style:{shape:(t,e)=>{let{shape:n,radius:r}=t,i=PU(t,["shape","radius"]),A=cJ(i,"pointer"),a=cJ(i,"pin"),{shape:o}=A,s=PU(A,["shape"]),{shape:l}=a,c=PU(a,["shape"]),{coordinate:u,theme:f}=e;return(t,e)=>{let n=t.map(t=>u.invert(t)),[A,a,h]=function(t,e){let{transformations:n}=t.getOptions(),[,...r]=n.find(t=>t[0]===e);return r}(u,"polar"),d=u.clone(),{color:p}=e,g=uj({startAngle:A,endAngle:a,innerRadius:h,outerRadius:r});g.push(["cartesian"]),d.update({transformations:g});let y=n.map(t=>d.map(t)),[v,b]=p$(y),[B,w]=u.getCenter(),x=Object.assign(Object.assign({x1:v,y1:b,x2:B,y2:w,stroke:p},s),i),C=Object.assign(Object.assign({cx:B,cy:w,stroke:p},c),i),O=c5(new ou);return c4(o)||("function"==typeof o?O.append(()=>o(y,e,d,f)):O.append("line").call(pK,x).node()),c4(l)||("function"==typeof l?O.append(()=>l(y,e,d,f)):O.append("circle").call(pK,C).node()),O.node()}},lineWidth:4,pointerLineCap:"round",pinR:10,pinFill:"#fff",radius:.6}},PT={type:"text",style:{x:"50%",y:"60%",textAlign:"center",textBaseline:"middle",fontSize:20,fontWeight:800,fill:"#888"},tooltip:!1},PL=t=>{var e;let{data:n={},scale:r={},style:i={},animate:A={},transform:a=[]}=t,o=PU(t,["data","scale","style","animate","transform"]),{targetData:s,totalData:l,target:c,total:u,scale:f}=function(t,e){let{name:n="score",target:r,total:i,percent:A,thresholds:a=[]}=function(t){if(eG(t)){let e=Math.max(0,Math.min(t,1));return{percent:e,target:e,total:1}}return t}(t),o=A||r,s=A?1:i,l=Object.assign({y:{domain:[0,s]}},e);return a.length?{targetData:[{x:n,y:o,color:"target"}],totalData:a.map((t,e)=>({x:n,y:e>=1?t-a[e-1]:t,color:e})),target:o,total:s,scale:l}:{targetData:[{x:n,y:o,color:"target"}],totalData:[{x:n,y:o,color:"target"},{x:n,y:s-o,color:"total"}],target:o,total:s,scale:l}}(n,r),h=cJ(i,"text"),{tooltip:d}=h,p=PU(h,["tooltip"]),g=(e=["pointer","pin"],Object.fromEntries(Object.entries(i).filter(([t])=>e.find(e=>t.startsWith(e))))),y=cJ(i,"arc");return[cC({},PS,Object.assign({type:"interval",transform:[{type:"stackY"}],data:l,scale:f,style:"round"===y.shape?Object.assign(Object.assign({},y),{shape:PM}):y,animate:"object"==typeof A?cJ(A,"arc"):A},o)),cC({},PS,PI,Object.assign({type:"point",data:s,scale:f,style:g,animate:"object"==typeof A?cJ(A,"indicator"):A},o)),cC({},PT,{style:Object.assign({text:function(t,{target:e,total:n}){let{content:r}=t;return r?r(e,n):e.toString()}(p,{target:c,total:u})},p),tooltip:d,animate:"object"==typeof A?cJ(A,"text"):A})]};PL.props={};let P_={pin:function(t,e,n){let r=4*n/3,i=Math.max(r,2*n),A=r/2,a=A+e-i/2,o=Math.asin(A/((i-A)*.85)),s=Math.sin(o)*A,l=Math.cos(o)*A,c=t-l,u=a+s,f=a+A/Math.sin(o);return` - M ${c} ${u} - A ${A} ${A} 0 1 1 ${c+2*l} ${u} - Q ${t} ${f} ${t} ${e+i/2} - Q ${t} ${f} ${c} ${u} - Z - `},rect:function(t,e,n){let r=.618*n;return` - M ${t-r} ${e-n} - L ${t+r} ${e-n} - L ${t+r} ${e+n} - L ${t-r} ${e+n} - Z - `},circle:function(t,e,n){return` - M ${t} ${e-n} - a ${n} ${n} 0 1 0 0 ${2*n} - a ${n} ${n} 0 1 0 0 ${-(2*n)} - Z - `},diamond:function(t,e,n){return` - M ${t} ${e-n} - L ${t+n} ${e} - L ${t} ${e+n} - L ${t-n} ${e} - Z - `},triangle:function(t,e,n){return` - M ${t} ${e-n} - L ${t+n} ${e+n} - L ${t-n} ${e+n} - Z - `}};var PP=function(t,e){var n={};for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&0>e.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let PH=(t,e)=>{if(!e)return;let{coordinate:n}=e,{liquidOptions:r,styleOptions:i}=t,{liquidShape:A,percent:a}=r,{background:o,outline:s={},wave:l={}}=i,c=PP(i,["background","outline","wave"]),{border:u=2,distance:f=0}=s,h=PP(s,["border","distance"]),{length:d=192,count:p=3}=l;return(t,r,i)=>{let{document:s}=e.canvas,{color:l,fillOpacity:g}=i,y=Object.assign(Object.assign({fill:l},i),c),v=s.createElement("g",{}),[b,B]=n.getCenter(),w=n.getSize(),x=Math.min(...w)/2,C=ny(A)?A:((t="circle")=>P_[t]||P_.circle)(A),O=C(b,B,x,...w),E=C(b,B,x+u/2,...w);if(Object.keys(o).length){let t=s.createElement("path",{style:Object.assign({d:O,fill:"#fff"},o)});v.appendChild(t)}if(a>0){let t=s.createElement("path",{style:{d:E}});v.appendChild(t),v.style.clipPath=t,function(t,e,n,r,i,A,a,o,s,l,c){let{fill:u,fillOpacity:f,opacity:h}=i;for(let i=0;i0;)s-=2*Math.PI;let l=i-t+(s=s/Math.PI/2*n)-2*t;o.push(["M",l,e]);let c=0;for(let t=0;te.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};let PN={axis:{x:!1,y:!1},legend:!1,tooltip:!1,encode:{x:"type",y:"percent"},scale:{y:{domain:[0,1]}},style:{shape:PH},animate:{enter:{type:"fadeIn"}}},PD={type:"text",style:{x:"50%",y:"50%",textAlign:"center",textBaseline:"middle",fontSize:20,fontWeight:800,fill:"#888"},animate:{enter:{type:"fadeIn"}}},PR=t=>{let{data:e={},style:n={},animate:r}=t,i=Pj(t,["data","style","animate"]),A=Math.max(0,eG(e)?e:null==e?void 0:e.percent),a=[{percent:A,type:"liquid"}],o=Object.assign(Object.assign({},cJ(n,"text")),cJ(n,"content")),s=cJ(n,"outline"),l=cJ(n,"wave"),c=cJ(n,"background");return[cC({},PN,Object.assign({type:"interval",data:a,style:{liquidOptions:{percent:A,liquidShape:null==n?void 0:n.shape},styleOptions:Object.assign(Object.assign({},n),{outline:s,wave:l,background:c})},animate:r},i)),cC({},PD,{style:Object.assign({text:`${uD(100*A)} %`},o),animate:r})]};function PK(t){let e=Array(t);for(let n=0;nPK(e))}function PG(t,e){let n=0;for(let r=0;rr[t].radius+1e-10)return!1;return!0}),i=0,A=0,a,o=[];if(r.length>1){let e=function(t){let e={x:0,y:0};for(let n=0;n-1){let i=t[e.parentIndex[r]],A=Math.atan2(e.x-i.x,e.y-i.y),a=Math.atan2(n.x-i.x,n.y-i.y),o=a-A;o<0&&(o+=2*Math.PI);let c=a-o/2,u=Pq(s,{x:i.x+i.radius*Math.sin(c),y:i.y+i.radius*Math.cos(c)});u>2*i.radius&&(u=2*i.radius),(null===l||l.width>u)&&(l={circle:i,width:u,p1:e,p2:n})}null!==l&&(o.push(l),i+=P$(l.circle.radius,l.width),n=e)}}else{let e=t[0];for(a=1;aMath.abs(e.radius-t[a].radius)){n=!0;break}n?i=A=0:(i=e.radius*e.radius*Math.PI,o.push({circle:e,p1:{x:e.x,y:e.y+e.radius},p2:{x:e.x-1e-10,y:e.y+e.radius},width:2*e.radius}))}return A/=2,e&&(e.area=i+A,e.arcArea=i,e.polygonArea=A,e.arcs=o,e.innerPoints=r,e.intersectionPoints=n),i+A}function P$(t,e){return t*t*Math.acos(1-e/t)-(t-e)*Math.sqrt(e*(2*t-e))}function Pq(t,e){return Math.sqrt((t.x-e.x)*(t.x-e.x)+(t.y-e.y)*(t.y-e.y))}function PJ(t,e,n){return n>=t+e?0:n<=Math.abs(t-e)?Math.PI*Math.min(t,e)*Math.min(t,e):P$(t,t-(n*n-e*e+t*t)/(2*n))+P$(e,e-(n*n-t*t+e*e)/(2*n))}function PZ(t,e){let n=Pq(t,e),r=t.radius,i=e.radius;if(n>=r+i||n<=Math.abs(r-i))return[];let A=(r*r-i*i+n*n)/(2*n),a=Math.sqrt(r*r-A*A),o=t.x+A*(e.x-t.x)/n,s=t.y+A*(e.y-t.y)/n,l=-(e.y-t.y)*(a/n),c=-(e.x-t.x)*(a/n);return[{x:o+l,y:s-c},{x:o-l,y:s+c}]}function P0(t,e,n){return Math.min(t,e)*Math.min(t,e)*Math.PI<=n+1e-10?Math.abs(t-e):function(t,e,n,r){let i=(r=r||{}).maxIterations||100,A=r.tolerance||1e-10,a=t(e),o=t(n),s=n-e;if(a*o>0)throw"Initial bisect points must have opposite signs";if(0===a)return e;if(0===o)return n;for(let n=0;n=0&&(e=n),Math.abs(s)=Math.min(i[a].size,i[o].size)&&(r=0),A[a].push({set:o,size:n.size,weight:r}),A[o].push({set:a,size:n.size,weight:r})}let a=[];for(n in A)if(A.hasOwnProperty(n)){let t=0;for(let e=0;e=8){let i=function(t,e){let n,r,i,A,a,o=(e=e||{}).restarts||10,s=[],l={};for(n=0;n=Math.min(s[e].size,s[n].size)?i=1:t.size<=1e-10&&(i=-1),a[e][n]=a[n][e]=i}),{distances:A,constraints:a}),u=c.distances,f=c.constraints,h=PV(u.map(PV))/u.length;u=u.map(function(t){return t.map(function(t){return t/h})});let d=function(t,e){return function(t,e,n,r){let i=0,A;for(A=0;A0&&d<=u||f<0&&d>=u||(i+=2*p*p,e[2*A]+=4*p*(a-l),e[2*A+1]+=4*p*(o-c),e[2*s]+=4*p*(l-a),e[2*s+1]+=4*p*(c-o))}}return i}(t,e,u,f)};for(n=0;no+A*i*s||l>=h)f=i;else{if(Math.abs(u)<=-a*s)return i;u*(f-c)>=0&&(f=c),c=i,h=l}return 0}i=i||1,A=A||1e-6,a=a||.1;for(let d=0;d<10;++d){if(PX(r.x,1,n.x,i,e),l=r.fx=t(r.x,r.fxprime),u=PG(r.fxprime,e),l>o+A*i*s||d&&l>=c)return h(f,i,c);if(Math.abs(u)<=-a*s)break;if(u>=0)return h(i,f,l);c=l,f=i,i*=2}return i}(t,l,i,A,o),n.history&&n.history.push({x:i.x.slice(),fx:i.fx,fxprime:i.fxprime.slice(),alpha:o}),o){PX(a,1,A.fxprime,-1,i.fxprime);let t=PG(i.fxprime,i.fxprime);PX(l,Math.max(0,PG(a,A.fxprime)/t),l,-1,A.fxprime),r=i,i=A,A=r}else PW(l,i.fxprime,-1);if(1e-5>=PV(i.fxprime))break}return n.history&&n.history.push({x:i.x.slice(),fx:i.fx,fxprime:i.fxprime.slice(),alpha:o}),i}(d,PK(2*u.length).map(Math.random),e),(!r||i.fx{let{sets:e="sets",size:n="size",as:r=["key","path"],padding:i=0}=t,[A,a]=r;return t=>{let r,o=t.map(t=>Object.assign(Object.assign({},t),{sets:t[e],size:t[n],[A]:t.sets.join("&")}));o.sort((t,e)=>t.sets.length-e.sets.length);let s=function(t,e){let n;(e=e||{}).maxIterations=e.maxIterations||500;let r=e.initialLayout||P1,i=e.lossFunction||P2,A=r(t=function(t){let e,n,r,i;t=t.slice();let A=[],a={};for(e=0;et>e?1:-1),e=0;et.fx-e.fx,y=e.slice(),v=e.slice(),b=e.slice(),B=e.slice();for(let e=0;e{let e=t.slice();return e.fx=t.fx,e.id=t.id,e});t.sort((t,e)=>t.id-e.id),n.history.push({x:d[0].slice(),fx:d[0].fx,simplex:t})}r=0;for(let t=0;t=d[h-1].fx){let n=!1;if(v.fx>e.fx?(PX(b,1+u,y,-u,e),b.fx=t(b),b.fx=1)break;for(let e=1;e{let n=t[e];return Object.assign(Object.assign({},t),{[a]:({width:t,height:e})=>{r=r||function(t,e,n,r){let i,A=[],a=[];for(let e in t)t.hasOwnProperty(e)&&(a.push(e),A.push(t[e]));e-=2*r,n-=2*r;let o={xRange:(i=function(t){return{max:Math.max.apply(null,A.map(function(e){return e[t]+e.radius})),min:Math.min.apply(null,A.map(function(e){return e[t]-e.radius}))}})("x"),yRange:i("y")},s=o.xRange,l=o.yRange;if(s.max==s.min||l.max==l.min)return console.log("not scaling solution: zero size detected"),t;let c=e/(s.max-s.min),u=Math.min(n/(l.max-l.min),c),f=(e-(s.max-s.min)*u)/2,h=(n-(l.max-l.min)*u)/2,d={};for(let t=0;ti;t.push("\nA",i,i,0,+!!A,1,r.p1.x,r.p1.y)}return t.join(" ")}}(n.map(t=>r[t]));return/[zZ]$/.test(A)||(A+=" Z"),A}})})}};P4.props={};var P5=function(){return(P5=Object.assign||function(t){for(var e,n=1,r=arguments.length;n{this.forceFit()},300),this._renderer=r||new cs,this._plugins=i||[],this._container=function(t){if(void 0===t){let t=document.createElement("div");return t[BG]=!0,t}return"string"==typeof t?document.getElementById(t):t}(e),this._emitter=new tm,this._context={library:Object.assign(Object.assign({},A),lb),emitter:this._emitter,canvas:n,createCanvas:a},this._create()}render(){let t,e;if(this._rendering)return this._addToTrailing();this._context.canvas||this._createCanvas(),this._bindAutoFit(),this._rendering=!0;let n=new Promise((t,e)=>(function(t,e={},n=()=>{},r=t=>{throw t}){var i;let A,a=function t(e,n=!0){if(Array.isArray(e))return e.map((r,i)=>t(e[i],n));if("object"==typeof e&&e)return uh(e,(e,r)=>n&&ug.includes(r)?t(e,"children"===r):n?e:t(e,!1));if("string"==typeof e){let t=e.trim();if(t.startsWith("{")&&t.endsWith("}"))return uy(t.slice(1,-1))}return e}(t),{width:o=640,height:s=480,depth:l=0}=a,c=function(t){let e=cC({},t),n=new Map([[e,null]]),r=new Map([[null,-1]]),i=[e];for(;i.length;){let t=i.shift();if(void 0===t.key){let e=n.get(t),i=r.get(t);t.key=null===e?"0":`${e.key}-${i}`}let{children:e=[]}=t;if(Array.isArray(e))for(let A=0;At.reduce((t,e)=>e(t),e)})(Bl,Bc)(n));return r.children&&Array.isArray(r.children)&&(r.children=r.children.map(e=>t(e))),r}(a)),{canvas:u=((A=new cs).registerPlugin(new cc),new oN({width:o,height:s,container:document.createElement("div"),renderer:A})),emitter:f=new tm,library:h}=e;e.canvas=u,e.emitter=f,e.externals={};let{width:d,height:p}=u.getConfig();(d!==o||p!==s)&&u.resize(o,s),f.emit("beforerender");let g=c5(u.document.documentElement);return u.ready.then(()=>(function t(e,n,r){return bZ(this,void 0,void 0,function*(){var i;let{library:A}=r,[a]=y2("composition",A),[o]=y2("interaction",A),s=new Set(Object.keys(A).map(t=>{var e;return null==(e=/mark\.(.*)/.exec(t))?void 0:e[1]}).filter(cq)),l=new Set(Object.keys(A).map(t=>{var e;return null==(e=/component\.(.*)/.exec(t))?void 0:e[1]}).filter(cq)),c=t=>{let{type:e}=t;if("function"==typeof e){let{props:t={}}=e,{composite:n=!0}=t;if(n)return"mark"}return"string"!=typeof e?e:s.has(e)||l.has(e)?"mark":e},u=t=>"mark"===c(t),f=t=>"standardView"===c(t),h=t=>f(t)?[t]:a({type:c(t),static:(t=>{let{type:e}=t;return"string"==typeof e&&!!l.has(e)})(t)})(t),d=[],p=new Map,g=new Map,y=[e],v=[];for(;y.length;){let t=y.shift();if(f(t)){let e=g.get(t),[n,i]=e?b3(e,t,A):yield b2(t,r);p.set(n,t),d.push(n);let a=i.flatMap(h).map(t=>y3(t,A));if(y.push(...a),a.every(f)){let t=yield Promise.all(a.map(t=>b4(t,r)));!function(t){let e=t.flatMap(t=>Array.from(t.values())).flatMap(t=>t.channels.map(t=>t.scale));bA(e,"x"),bA(e,"y")}(t);for(let e=0;et.key).join(t=>t.append("g").attr("className","view").attr("id",t=>t.key).call(b1).each(function(t,e,n){b6(t,c5(n),w,r),b.set(t,n)}),t=>t.call(b1).each(function(t,e,n){b6(t,c5(n),w,r),B.set(t,n)}),t=>t.each(function(t,e,n){for(let t of n.nameInteraction.values())t.destroy()}).remove());let x=(e,n,i)=>Array.from(e.entries()).map(([A,a])=>{let o=i||new Map,s=(t,e=t=>t)=>o.set(t,e),l=p.get(A),c=function(e,n,r){let{library:i}=r,A=function(t){let[,e]=y2("interaction",t);return t=>{let[n,r]=t;try{return[n,e(n)]}catch(t){return[n,r.type]}}}(i),a=Bn(n).map(A).filter(t=>t[1]&&t[1].props&&t[1].props.reapplyWhenUpdate).map(t=>t[0]);return(n,i,A)=>bZ(this,void 0,void 0,function*(){let[o,s]=yield b2(n,r);for(let t of(b6(o,e,[],r),a.filter(t=>t!==i)))!function(t,e,n,r,i){var A;let{library:a}=i,[o]=y2("interaction",a),s=e.node().nameInteraction,l=Bn(n).find(([e])=>e===t),c=s.get(t);if(!c||(null==(A=c.destroy)||A.call(c),!l[1]))return;let u=b5(r,t,l[1],o)({options:n,view:r,container:e.node(),update:t=>Promise.resolve(t)},[],i.emitter);s.set(t,{destroy:u})}(t,e,n,o,r);for(let n of s)t(n,e,r);return A(),{options:n,view:o}})}(c5(a),l,r),u={view:A,container:a,options:l,setState:s,update:(t,r)=>bZ(this,void 0,void 0,function*(){let i=cW(Array.from(o.values()))(l);return yield c(i,t,()=>{nn(r)&&n(e,r,o)})})};return r.externals.update=u.update,r.externals.setState=s,u}),C=(t=B,e,n)=>{var i;let A=x(t,C,n);for(let t of A){let{options:n,container:a}=t,s=a.nameInteraction,l=Bn(n);for(let n of(e&&(l=l.filter(t=>e.includes(t[0]))),l)){let[e,a]=n,l=s.get(e);if(l&&(null==(i=l.destroy)||i.call(l)),a){let n=b5(t.view,e,a,o)(t,A,r.emitter);s.set(e,{destroy:n})}}}},O=x(b,C);for(let t of O){let{options:e}=t,n=new Map;for(let i of(t.container.nameInteraction=n,Bn(e))){let[e,A]=i;if(A){let i=b5(t.view,e,A,o)(t,O,r.emitter);n.set(e,{destroy:i})}}}C();let{width:E,height:k}=e,F=[];for(let e of v){let i=new Promise(i=>bZ(this,void 0,void 0,function*(){for(let i of e){let e=Object.assign({width:E,height:k},i);yield t(e,n,r)}i()}));F.push(i)}return r.views=d,null==(i=r.animations)||i.forEach(t=>null==t?void 0:t.cancel()),r.animations=w,r.emitter.emit("afterpaint"),Promise.all([...w.filter(cq).map(Bt).map(t=>t.finished),...F])})})(Object.assign(Object.assign({},c),{width:o,height:s,depth:l}),g,e)).then(()=>{if(l){let[t,e]=u.document.documentElement.getPosition();u.document.documentElement.setPosition(t,e,-l/2)}u.requestAnimationFrame(()=>{u.requestAnimationFrame(()=>{f.emit("afterrender"),null==n||n()})})}).catch(t=>{null==r||r(t)}),"string"==typeof(i=u.getConfig().container)?document.getElementById(i):i})(this._computedOptions(),this._context,this._createResolve(t),this._createReject(e))),[r,i,A]=[new Promise((n,r)=>{e=n,t=r}),e,t];return n.then(i).then(()=>{if(this._trailingClear){let t=this.options();this._trailingClear(),this._trailing&&this.options(t)}}).catch(A).then(()=>{this._trailingClear=null,this._renderTrailing()}),r}options(t){if(0==arguments.length)return function(t){let e=function(t){if(null!==t.type)return t;let e=t.children[t.children.length-1];for(let n of Bz)e.attr(n,t.attr(n));return e}(t),n=[e],r=new Map;for(r.set(e,BW(e));n.length;){let t=n.pop(),e=r.get(t),{children:i=[]}=t;for(let t of i)if(t.type===BV)e.children=t.value;else{let i=BW(t),{children:A=[]}=e;A.push(i),n.push(t),r.set(t,i),e.children=A}}return r.get(e)}(this);let{type:e}=t;return e&&(this._previousDefinedType=e),!function(t,e,n,r,i){let A=function(t,e,n,r,i){let{type:A}=t,{type:a=n||A}=e;if("function"!=typeof a&&new Set(Object.keys(i)).has(a)){for(let n of Bz)void 0!==t.attr(n)&&void 0===e[n]&&(e[n]=t.attr(n));return e}if("function"==typeof a||new Set(Object.keys(r)).has(a)){let t={type:"view"},n=Object.assign({},e);for(let e of Bz)void 0!==n[e]&&(t[e]=n[e],delete n[e]);return Object.assign(Object.assign({},t),{children:[n]})}return e}(t,e,n,r,i),a=[[null,t,A]];for(;a.length;){let[t,e,n]=a.shift();if(e)if(n){!function(t,e){let{type:n,children:r}=e,i=BK(e,["type","children"]);t.type===n||void 0===n?function t(e,n,r=5,i=0){if(!(i>=r)){for(let A of Object.keys(n)){let a=n[A];cx(a)&&cx(e[A])?t(e[A],a,r,i+1):e[A]=a}return e}}(t.value,i):"string"==typeof n&&(t.type=n,t.value=i)}(e,n);let{children:t}=n,{children:r}=e;if(Array.isArray(t)&&Array.isArray(r)){let n=Math.max(t.length,r.length);for(let i=0;i{this.clear(t)},this._reset();return}let e=this.options();this.emit("beforeclear"),this._reset(),Bu(e,this._context,!1,t),this.emit("afterclear")}destroy(){var t;let e,n=this.options();this.emit("beforedestroy"),this._unbindAutoFit(),this._reset(),Bu(n,this._context,!0),this._container[BG]&&(e=(t=this._container).parentNode)&&e.removeChild(t),this.emit("afterdestroy")}forceFit(){this.options.autoFit=!0;let{width:t,height:e}=BX(this.options(),this._container);if(t===this._width&&e===this._height)return Promise.resolve(this);this.emit(c6);let n=this.render();return n.then(()=>{this.emit(c8)}),n}changeSize(t,e){if(t===this._width&&e===this._height)return Promise.resolve(this);this.emit(c6),this.attr("width",t),this.attr("height",e);let n=this.render();return n.then(()=>{this.emit(c8)}),n}getDataByXY(t,e={}){let{shared:n=!1,series:r,facet:i=!1,startX:A=0,startY:a=0}=e,{canvas:o,views:s}=this._context,{document:l}=o,{x:c,y:u}=t,{coordinate:f,scale:h,markState:d,data:p,key:g}=s[0],y=l.getElementsByClassName(gT),v=n?t=>t.__data__.x:t=>t,b=cy(y,v),B=yC(l.getElementsByClassName("view")[0]),w=t=>Array.from(t.values()).some(t=>{var e,n;return(null==(e=t.interaction)?void 0:e.seriesTooltip)||(null==(n=t.channels)?void 0:n.some(t=>"series"===t.name&&void 0!==t.values))}),x=BT(r,w(d)),C=t=>cf(t,"__data__.data",null);try{if(x&&w(d)&&!i){let{selectedData:t}=BP({root:B,event:{offsetX:c,offsetY:u},elements:y,coordinate:f,scale:h,startX:A,startY:a}),e=p.get(`${g}-0`);return t.map(({index:t})=>e[t])}let t=B_({root:B,event:{offsetX:c,offsetY:u},elements:y,coordinate:f,scale:h,shared:n});if(cz(t))return cG(t,p.get(g));let e=v(t),r=b.get(e);return r?r.map(C):[]}catch(e){let t=o.document.elementFromPointSync(c,u);return t?C(t):[]}}_create(){let{library:t}=this._context,e=["mark.mark",...Object.keys(t).filter(t=>t.startsWith("mark.")||"component.axisX"===t||"component.axisY"===t||"component.legends"===t)];for(let t of(this._marks={},e)){let e=t.split(".").pop();class n extends B1{constructor(){super({},e)}}this._marks[e]=n,this[e]=function(t){let r=this.append(n);return"mark"===e&&(r.type=t),r}}let n=["composition.view",...Object.keys(t).filter(t=>t.startsWith("composition.")&&"composition.mark"!==t)];for(let t of(this._compositions=Object.fromEntries(n.map(t=>{let e=t.split(".").pop(),n=class extends B0{constructor(){super({},e)}};return[e,n=B2([BY(B$(this._marks))],n)]})),Object.values(this._compositions)))BY(B$(this._compositions))(t);for(let t of n){let e=t.split(".").pop();this[e]=function(){let t=this._compositions[e];return this.type=null,this.append(t)}}}_reset(){let t=["theme","type","width","height","autoFit"];this.type="view",this.value=Object.fromEntries(Object.entries(this.value).filter(([e])=>e.startsWith("margin")||e.startsWith("padding")||e.startsWith("inset")||t.includes(e))),this.children=[]}_renderTrailing(){this._trailing&&(this._trailing=!1,this.render().then(()=>{let t=this._trailingResolve.bind(this);this._trailingResolve=null,t(this)}).catch(t=>{let e=this._trailingReject.bind(this);this._trailingReject=null,e(t)}))}_createResolve(t){return()=>{this._rendering=!1,t(this)}}_createReject(t){return e=>{this._rendering=!1,t(e)}}_computedOptions(){let t=this.options(),{key:e="G2_CHART_KEY"}=t,{width:n,height:r,depth:i}=BX(t,this._container);return this._width=n,this._height=r,this._key=e,Object.assign(Object.assign({key:this._key},t),{width:n,height:r,depth:i})}_createCanvas(){var t,e;let{width:n,height:r}=BX(this.options(),this._container);this._plugins.push(new cc),this._plugins.forEach(t=>this._renderer.registerPlugin(t)),this._context.canvas=new oN({container:this._container,width:n,height:r,renderer:this._renderer});let i=null==(e=null==(t=this._context.canvas)?void 0:t.getContextService())?void 0:e.getDomElement();i&&(i.style.display="block")}_addToTrailing(){var t;return null==(t=this._trailingResolve)||t.call(this,this),this._trailing=!0,new Promise((t,e)=>{this._trailingResolve=t,this._trailingReject=e})}_bindAutoFit(){let{autoFit:t}=this.options();if(this._hasBindAutoFit){t||this._unbindAutoFit();return}t&&(this._hasBindAutoFit=!0,window.addEventListener("resize",this._onResize))}_unbindAutoFit(){this._hasBindAutoFit&&(this._hasBindAutoFit=!1,window.removeEventListener("resize",this._onResize))}},s=P5(P5({},Object.assign(Object.assign(Object.assign(Object.assign({},{"composition.geoView":_t,"composition.geoPath":_n}),{"data.arc":Po,"data.cluster":_B,"mark.forceGraph":_c,"mark.tree":_k,"mark.pack":_z,"mark.sankey":Pe,"mark.chord":Ph,"mark.treemap":Pv,"mark.partition":M$}),{"data.venn":P4,"mark.boxplot":PF,"mark.gauge":PL,"mark.wordCloud":OY,"mark.liquid":PR}),{"data.fetch":Sz,"data.inline":SG,"data.sortBy":SV,"data.sort":SW,"data.filter":SY,"data.pick":S$,"data.rename":Sq,"data.fold":SJ,"data.slice":SZ,"data.custom":S0,"data.map":S1,"data.join":S4,"data.kde":S6,"data.log":S8,"data.wordCloud":Id,"data.ema":Ip,"transform.stackY":UP,"transform.binX":Se,"transform.bin":St,"transform.dodgeX":Sr,"transform.jitter":SA,"transform.jitterX":Sa,"transform.jitterY":So,"transform.symmetryY":Sl,"transform.diffY":Sc,"transform.stackEnter":Su,"transform.normalizeY":Sh,"transform.select":Sv,"transform.selectX":Sb,"transform.selectY":Sw,"transform.groupX":SO,"transform.groupY":SE,"transform.groupColor":Sk,"transform.group":SC,"transform.sortX":SQ,"transform.sortY":SM,"transform.sortColor":SU,"transform.flexX":SS,"transform.pack":SI,"transform.sample":SL,"transform.filter":S_,"coordinate.cartesian":wm,"coordinate.polar":uP,"coordinate.transpose":wb,"coordinate.theta":wB,"coordinate.parallel":ww,"coordinate.fisheye":wx,"coordinate.radial":uj,"coordinate.radar":wC,"coordinate.helix":wO,"encode.constant":wE,"encode.field":wk,"encode.transform":wF,"encode.column":wQ,"mark.interval":xa,"mark.rect":xs,"mark.line":xV,"mark.point":Cf,"mark.text":Cw,"mark.cell":CO,"mark.area":CP,"mark.link":C$,"mark.image":C0,"mark.polygon":C6,"mark.box":On,"mark.vector":Oi,"mark.lineX":Ol,"mark.lineY":Of,"mark.connector":Oy,"mark.range":OB,"mark.rangeX":OC,"mark.rangeY":Ok,"mark.path":OI,"mark.shape":OP,"mark.density":OD,"mark.heatmap":OW,"mark.wordCloud":OY,"mark.beeswarm":kA,"palette.category10":ka,"palette.category20":ko,"scale.linear":ks,"scale.ordinal":kl,"scale.band":kc,"scale.identity":kf,"scale.point":kd,"scale.time":kX,"scale.log":k1,"scale.pow":k5,"scale.sqrt":k6,"scale.threshold":k8,"scale.quantile":k9,"scale.quantize":k7,"scale.sequential":Fe,"scale.constant":Fn,"theme.classic":Fa,"theme.classicDark":Fl,"theme.academy":Fu,"theme.light":FA,"theme.dark":Fs,"component.axisX":Ff,"component.axisY":Fh,"component.legendCategory":FW,"component.legendContinuous":pC,"component.legends":FX,"component.title":FJ,"component.sliderX":Qf,"component.sliderY":Qh,"component.scrollbarX":Qy,"component.scrollbarY":Qv,"animation.scaleInX":Qm,"animation.scaleOutX":(t,e)=>{let{coordinate:n}=e;return(e,r,i)=>{let[A]=e,{transform:a="",fillOpacity:o=1,strokeOpacity:s=1,opacity:l=1}=A.style,[c,u]=uV(n)?["left bottom","scale(1, 0.0001)"]:["left top","scale(0.0001, 1)"],f=[{transform:`${a} scale(1, 1)`.trimStart(),transformOrigin:c},{transform:`${a} ${u}`.trimStart(),transformOrigin:c,fillOpacity:o,strokeOpacity:s,opacity:l,offset:.99},{transform:`${a} ${u}`.trimStart(),transformOrigin:c,fillOpacity:0,strokeOpacity:0,opacity:0}];return A.animate(f,Object.assign(Object.assign({},i),t))}},"animation.scaleInY":Qb,"animation.scaleOutY":(t,e)=>{let{coordinate:n}=e;return(e,r,i)=>{let[A]=e,{transform:a="",fillOpacity:o=1,strokeOpacity:s=1,opacity:l=1}=A.style,[c,u]=uV(n)?["left top","scale(0.0001, 1)"]:["left bottom","scale(1, 0.0001)"],f=[{transform:`${a} scale(1, 1)`.trimStart(),transformOrigin:c},{transform:`${a} ${u}`.trimStart(),transformOrigin:c,fillOpacity:o,strokeOpacity:s,opacity:l,offset:.99},{transform:`${a} ${u}`.trimStart(),transformOrigin:c,fillOpacity:0,strokeOpacity:0,opacity:0}];return A.animate(f,Object.assign(Object.assign({},i),t))}},"animation.waveIn":QB,"animation.fadeIn":Qw,"animation.fadeOut":Qx,"animation.zoomIn":t=>(e,n,r)=>{let[i]=e,{transform:A="",fillOpacity:a=1,strokeOpacity:o=1,opacity:s=1}=i.style,l="center center",c=[{transform:`${A} scale(0.0001)`.trimStart(),transformOrigin:l,fillOpacity:0,strokeOpacity:0,opacity:0},{transform:`${A} scale(0.0001)`.trimStart(),transformOrigin:l,fillOpacity:a,strokeOpacity:o,opacity:s,offset:.01},{transform:`${A} scale(1)`.trimStart(),transformOrigin:l,fillOpacity:a,strokeOpacity:o,opacity:s}];return i.animate(c,Object.assign(Object.assign({},r),t))},"animation.zoomOut":t=>(e,n,r)=>{let[i]=e,{transform:A="",fillOpacity:a=1,strokeOpacity:o=1,opacity:s=1}=i.style,l="center center",c=[{transform:`${A} scale(1)`.trimStart(),transformOrigin:l},{transform:`${A} scale(0.0001)`.trimStart(),transformOrigin:l,fillOpacity:a,strokeOpacity:o,opacity:s,offset:.99},{transform:`${A} scale(0.0001)`.trimStart(),transformOrigin:l,fillOpacity:0,strokeOpacity:0,opacity:0}];return i.animate(c,Object.assign(Object.assign({},r),t))},"animation.pathIn":QC,"animation.morphing":Q_,"animation.growInX":QP,"animation.growInY":QH,"interaction.elementHighlight":QN,"interaction.elementHighlightByX":QD,"interaction.elementHighlightByColor":QR,"interaction.elementHoverScale":Qz,"interaction.elementSelect":QV,"interaction.elementSelectByX":QW,"interaction.elementSelectByColor":QX,"interaction.fisheye":function({wait:t=30,leading:e,trailing:n=!1}){return r=>{let{options:i,update:A,setState:a,container:o}=r,s=yC(o),l=Bd(t=>{let e=yE(s,t);if(!e){a("fisheye"),A();return}a("fisheye",t=>{let n=cC({},t,{interaction:{tooltip:{preserve:!0}}});for(let t of n.marks)t.animate=!1;let[r,i]=e,A=function(t){let{coordinate:e={}}=t,{transform:n=[]}=e,r=n.find(t=>"fisheye"===t.type);if(r)return r;let i={type:"fisheye"};return n.push(i),e.transform=n,t.coordinate=e,i}(n);return A.focusX=r,A.focusY=i,A.visual=!0,n}),A()},t,{leading:e,trailing:n});return s.addEventListener("pointerenter",l),s.addEventListener("pointermove",l),s.addEventListener("pointerleave",l),()=>{s.removeEventListener("pointerenter",l),s.removeEventListener("pointermove",l),s.removeEventListener("pointerleave",l)}}},"interaction.chartIndex":Q$,"interaction.tooltip":Bj,"interaction.legendFilter":function(){return(t,e,n)=>{let{container:r}=t,i=e.filter(e=>e!==t),A=i.length>0,a=t=>FR(t).scales.map(t=>t.name),o=[...FN(r),...r.getElementsByClassName(FL),...FD(r)],s=o.flatMap(a),l=A?Bd(Fz,50,{trailing:!0}):Bd(FK,50,{trailing:!0}),c=o.map(e=>{let{name:o,domain:c}=FR(e).scales[0],u=a(e),f={legend:e,channel:o,channels:u,allChannels:s};return e.className===FT?function(t,{legends:e,marker:n,label:r,datum:i,filter:A,defaultSelect:a,emitter:o,channel:s,state:l={}}){let c=new Map,u=new Map,f=new Map,h=new Map,{unselected:d={markerStroke:"#aaa",markerFill:"#aaa",labelFill:"#aaa"}}=l,p={unselected:cJ(d,"marker")},g={unselected:cJ(d,"label")},{setState:y,removeState:v}=yL(p,void 0),{setState:b,removeState:B}=yL(g,void 0),w=Array.from(e(t)),x=w.map(i),C=()=>{for(let t of w){let e=i(t),A=n(t),a=r(t);x.includes(e)?(v(A,"unselected"),B(a,"unselected")):(y(A,"unselected"),b(a,"unselected"))}};for(let e of w){let n=()=>{yR(t,"pointer")},r=()=>{yR(t,t.cursor)},a=t=>FI(this,void 0,void 0,function*(){let n=i(e),r=x.indexOf(n);-1===r?x.push(n):x.splice(r,1),yield A(x),C();let{nativeEvent:a=!0}=t;a&&(x.length===w.length?o.emit("legend:reset",{nativeEvent:a}):o.emit("legend:filter",Object.assign(Object.assign({},t),{nativeEvent:a,data:{channel:s,values:x}})))});e.addEventListener("click",a),e.addEventListener("pointerenter",n),e.addEventListener("pointerout",r),c.set(e,a),u.set(e,n),f.set(e,r);let l=FH(e);if(l){let t=t=>FI(this,void 0,void 0,function*(){t.stopPropagation();let n=i(e),r=x.indexOf(n),{nativeEvent:a=!0}=t;if(-1!==r&&1===x.length){if(!a)return;x=w.map(i),yield A(x),C(),o.emit("legend:reset",{nativeEvent:a})}else{if(x=[n],yield A(x),C(),!a)return;o.emit("legend:focus",Object.assign(Object.assign({},t),{nativeEvent:a,data:{channel:s,value:n}}))}});l.addEventListener("click",t),h.set(e,t)}}let O=t=>FI(this,void 0,void 0,function*(){let{nativeEvent:e}=t;if(e)return;let{data:n}=t,{channel:r,value:i}=n;r===s&&(x=[i],yield A(x),C())}),E=t=>FI(this,void 0,void 0,function*(){let{nativeEvent:e}=t;if(e)return;let{data:n}=t,{channel:r,values:i}=n;r===s&&(x=i,yield A(x),C())}),k=t=>FI(this,void 0,void 0,function*(){let{nativeEvent:e}=t;e||(x=w.map(i),yield A(x),C())});return o.on("legend:filter",E),o.on("legend:focus",O),o.on("legend:reset",k),a&&o.emit("legend:filter",{data:{channel:s,values:a}}),()=>{for(let t of w){t.removeEventListener("click",c.get(t)),t.removeEventListener("pointerenter",u.get(t)),t.removeEventListener("pointerout",f.get(t));let e=FH(t);e&&e.removeEventListener("click",h.get(t))}o.off("legend:focus",O),o.off("legend:filter",E),o.off("legend:reset",k)}}(e,{legends:Fj,marker:F_,label:FP,datum:t=>{let{__data__:e}=t,{index:n}=e;return c[n]},filter:e=>{let n=Object.assign(Object.assign({},f),{value:e,ordinal:!0});A?l(i,n):l(t,n)},state:e.attributes.state,defaultSelect:e.attributes.defaultSelect,channel:o,emitter:n}):e.className===FL?function(t,{domain:e,filter:n,defaultSelect:r,emitter:i,channel:A}){let a,o,s=new Map,l=new Map,c=new Map,u=[...e],f=()=>{var e;let n=null==(e=t.ownerDocument)?void 0:e.defaultView;return n&&n.getContextService().getDomElement().parentElement||document.body},h=()=>{f().querySelectorAll("[legend-value]").forEach(t=>{let n=t.getAttribute("legend-value");n&&e.includes(n)&&(u.includes(n)?(t.style.opacity="1",t.classList.remove("legend-item-inactive")):(t.style.opacity="0.4",t.classList.add("legend-item-inactive")))})};a=f().querySelector(".legend-html"),o=t=>FI(this,void 0,void 0,function*(){let r=t.target;for(;r&&!r.hasAttribute("legend-value")&&(r=r.parentElement)!==a;);if(!r||!r.hasAttribute("legend-value"))return;t.preventDefault(),t.stopPropagation();let o=r.getAttribute("legend-value");if(!o)return;let s=u.indexOf(o);-1===s?u.push(o):u.splice(s,1),yield n(u),h(),u.length===e.length?i.emit("legend:reset",{nativeEvent:!0}):i.emit("legend:filter",{nativeEvent:!0,data:{channel:A,values:u}})}),a.addEventListener("click",o),s.set(a,o);let d=t=>FI(this,void 0,void 0,function*(){let{nativeEvent:e}=t;if(e)return;let{data:r}=t,{channel:i,value:a}=r;i===A&&(u=[a],yield n(u),h())}),p=t=>FI(this,void 0,void 0,function*(){let{nativeEvent:e}=t;if(e)return;let{data:r}=t,{channel:i,values:a}=r;i===A&&(u=a,yield n(u),h())}),g=t=>FI(this,void 0,void 0,function*(){let{nativeEvent:r}=t;r||(u=[...e],yield n(u),h())});return i.on("legend:filter",p),i.on("legend:focus",d),i.on("legend:reset",g),r&&i.emit("legend:filter",{data:{channel:A,values:r}}),()=>{f().querySelectorAll("[legend-value]").forEach(t=>{let n=t.getAttribute("legend-value");if(!n||!e.includes(n))return;let r=s.get(t),i=l.get(t),A=c.get(t);r&&t.removeEventListener("click",r),i&&t.removeEventListener("pointerenter",i),A&&t.removeEventListener("pointerout",A)}),s.clear(),l.clear(),c.clear(),i.off("legend:filter",p),i.off("legend:focus",d),i.off("legend:reset",g)}}(r,{domain:c,filter:e=>{let n=Object.assign(Object.assign({},f),{value:e,ordinal:!0});A?l(i,n):l(t,n)},defaultSelect:e.attributes.defaultSelect,channel:o,emitter:n}):function({legend:t,filter:e,emitter:n,channel:r}){let{attributes:i}=t,A=t=>{let{value:A}=t.detail,a=A.map(t=>{var e,n;let r=null==(e=i.data)?void 0:e.find(e=>e.value===t);return r&&null!=(n=r.domainValue)?n:t});e(a),n.emit({nativeEvent:!0,data:{channel:r,values:a}})};return t.addEventListener("valuechange",A),()=>{t.removeEventListener("valuechange",A)}}({legend:e,filter:e=>{let n=Object.assign(Object.assign({},f),{value:e,ordinal:!1});A?l(i,n):l(t,n)},emitter:n,channel:o})});return()=>{c.forEach(t=>t())}}},"interaction.legendHighlight":function(){return(t,e,n)=>{let{container:r,view:i,options:A}=t,a=FN(r),o=yB(r),s=t=>FR(t).scales[0].name,l=t=>{let{scale:{[t]:e}}=i;return e},c=yP(A,["active","inactive"]),u=yH(o,yM(i)),f=[];for(let t of a){let e=e=>{let{data:n}=t.attributes,{__data__:r}=e,{index:i}=r;return n[i].label},r=s(t),i=Fj(t),A=l(r),a=cy(o,t=>A.invert(t.__data__[r])),{state:h={}}=t.attributes,{inactive:d={}}=h,{setState:p,removeState:g}=yL(c,u),y={inactive:cJ(d,"marker")},v={inactive:cJ(d,"label")},{setState:b,removeState:B}=yL(y),{setState:w,removeState:x}=yL(v),C=t=>{for(let e of i){let n=F_(e),r=FP(e);e===t||null===t?(B(n,"inactive"),x(r,"inactive")):(b(n,"inactive"),w(r,"inactive"))}},O=(t,i)=>{let A=e(i),s=new Set(a.get(A));for(let t of o)s.has(t)?p(t,"active"):p(t,"inactive");C(i);let{nativeEvent:l=!0}=t;l&&n.emit("legend:highlight",Object.assign(Object.assign({},t),{nativeEvent:l,data:{channel:r,value:A}}))},E=new Map;for(let t of i){let e=e=>{O(e,t)};t.addEventListener("pointerover",e),E.set(t,e)}let k=t=>{for(let t of o)g(t,"inactive","active");C(null);let{nativeEvent:e=!0}=t;e&&n.emit("legend:unhighlight",{nativeEvent:e})},F=t=>{let{nativeEvent:n,data:A}=t;if(n)return;let{channel:a,value:o}=A;if(a!==r)return;let s=i.find(t=>e(t)===o);s&&O({nativeEvent:!1},s)},Q=t=>{let{nativeEvent:e}=t;e||k({nativeEvent:!1})};t.addEventListener("pointerleave",k),n.on("legend:highlight",F),n.on("legend:unhighlight",Q);let M=()=>{for(let[e,r]of(t.removeEventListener(k),n.off("legend:highlight",F),n.off("legend:unhighlight",Q),E))e.removeEventListener(r)};f.push(M)}return()=>f.forEach(t=>t())}},"interaction.brushHighlight":Q4,"interaction.brushXHighlight":function(t){return Q4(Object.assign(Object.assign({},t),{brushRegion:Q5,selectedHandles:["handle-e","handle-w"]}))},"interaction.brushYHighlight":function(t){return Q4(Object.assign(Object.assign({},t),{brushRegion:Q3,selectedHandles:["handle-n","handle-s"]}))},"interaction.brushAxisHighlight":function(t){return(e,n,r)=>{let{container:i,view:A,options:a}=e,{x:o,y:s}=yC(i).getBBox(),{coordinate:l}=A;return function(t,e){var{axes:n,elements:r,points:i,horizontal:A,datum:a,offsetY:o,offsetX:s,reverse:l=!1,state:c={},emitter:u,coordinate:f}=e,h=Q6(e,["axes","elements","points","horizontal","datum","offsetY","offsetX","reverse","state","emitter","coordinate"]);let d=r(t),p=n(t),{setState:g,removeState:y}=yL(c,yH(d,a)),v=new Map,b=cJ(h,"mask"),B=t=>Array.from(v.values()).every(([e,n,r,i])=>t.some(([t,A])=>t>=e&&t<=r&&A>=n&&A<=i)),w=p.map(t=>t.attributes.scale),x=t=>t.length>2?[t[0],t[t.length-1]]:t,C=new Map,O=()=>{C.clear();for(let t=0;t{let n=[];for(let t of d)B(i(t))?(g(t,"active"),n.push(t)):g(t,"inactive");C.set(t,F(n,t)),e&&u.emit("brushAxis:highlight",{nativeEvent:!0,data:{selection:(()=>{if(!Q)return Array.from(C.values());let t=[];for(let[e,n]of C){let{name:r}=w[e].getOptions();"x"===r?t[0]=n:t[1]=n}return t})()}})},k=t=>{for(let t of d)y(t,"active","inactive");O(),t&&u.emit("brushAxis:remove",{nativeEvent:!0})},F=(t,e)=>{let n=w[e],{name:r}=n.getOptions(),i=t.map(t=>{let e=t.__data__;return n.invert(e[r])});return x(g0(n,i))},Q=p.some(A)&&p.some(t=>!A(t)),M=[];for(let t=0;t[t,-1/0,n,1/0]:(t,e,r,i)=>[t,Math.floor(l-n),r,Math.ceil(u-n)]}}:function(t,e){var{cross:n,offsetX:r,offsetY:i}=e,A=Q6(e,["cross","offsetX","offsetY"]);let a=Mt(t),[o]=Q7(t).getLocalBounds().min,[s,l]=a.min,[c,u]=a.max,f=(c-s)*2;return{brushRegion:Q3,hotZone:new ox({className:Q8,style:Object.assign({width:n?f/2:f,transform:`translate(${(n?s:o-f/2).toFixed(2)}, ${l})`,height:u-l},A)}),extent:n?(t,e,n,r)=>[-1/0,e,1/0,r]:(t,e,n,i)=>[Math.floor(s-r),e,Math.ceil(c-r),i]}})(e,{offsetY:o,offsetX:s,cross:Q,zIndex:999,fill:"transparent"});e.parentNode.appendChild(n);let a=Q0(n,Object.assign(Object.assign({},b),{reverse:l,brushRegion:r,brushended(n){v.delete(e),0===Array.from(v.entries()).length?k(n):E(t,n)},brushed(n,r,A,a,o){v.set(e,i(n,r,A,a)),E(t,o)}}));M.push(a)}let U=(t={})=>{let{nativeEvent:e}=t;e||M.forEach(t=>t.remove(!1))},S=(t,e,n)=>{let[r,i]=t,a=I(r,e,n),o=I(i,e,n)+(e.getStep?e.getStep():0);return A(n)?[a,-1/0,o,1/0]:[-1/0,a,1/0,o]},I=(t,e,n)=>{let{height:r,width:i}=f.getOptions(),a=e.clone();return A(n)?a.update({range:[0,i]}):a.update({range:[r,0]}),a.map(t)},T=t=>{let{nativeEvent:e}=t;if(e)return;let{selection:n}=t.data;for(let t=0;t{M.forEach(t=>t.destroy()),u.off("brushAxis:remove",U),u.off("brushAxis:highlight",T)}}(i,Object.assign({elements:yB,axes:Q9,offsetY:s,offsetX:o,points:t=>t.__data__.points,horizontal:t=>{let{startPos:[e,n],endPos:[r,i]}=t.attributes;return e!==r&&n===i},datum:yM(A),state:yP(a,["active",["inactive",{opacity:.5}]]),coordinate:l,emitter:r},t))}},"interaction.brushFilter":Mn,"interaction.brushXFilter":function(t){return Mn(Object.assign(Object.assign({hideX:!0},t),{brushRegion:Q5}))},"interaction.brushYFilter":function(t){return Mn(Object.assign(Object.assign({hideY:!0},t),{brushRegion:Q3}))},"interaction.sliderFilter":Mf,"interaction.sliderWheel":Mh,"interaction.scrollbarFilter":function(t={}){return(e,n,r)=>{let{view:i,container:A}=e;if(!A.getElementsByClassName(Md).length)return()=>{};let{scale:a}=i,{x:o,y:s}=a,l={x:[...o.getOptions().domain],y:[...s.getOptions().domain]};return o.update({domain:o.getOptions().expectedDomain}),s.update({domain:s.getOptions().expectedDomain}),Mf(Object.assign({initDomain:l,className:Md,prefix:"scrollbar",hasState:!0,setValue:(t,e)=>t.setValue(e[0]),getInitValues:t=>{let e=t.slider.attributes.values;if(0!==e[0]||1!==e[1])return e},adaptiveMode:!1},t))(e,n,r)}},"interaction.poptip":Mv,"interaction.treemapDrillDown":function(t={}){let{originData:e=[],layout:n}=t,r=cC({},MR,MD(t,["originData","layout"])),i=cJ(r,"breadCrumb"),A=cJ(r,"active");return t=>{let{update:r,setState:a,container:o,options:s}=t,l=c5(o).select(".plot").node(),{state:c}=s.marks[0],u=new ou;l.appendChild(u);let f=(t,s)=>{var c,h,d,p;return c=this,h=void 0,d=void 0,p=function*(){if(u.removeChildren(),s){let e="",n=i.y,r=0,a=[],o=l.getBBox().width,s=t.map((A,s)=>{e=`${e}${A}/`,a.push(A);let l=new oO({name:e.replace(/\/$/,""),style:Object.assign(Object.assign({text:A,x:r,path:[...a],depth:s},i),{y:n})});u.appendChild(l);let c=new oO({style:Object.assign(Object.assign({x:r+=l.getBBox().width,text:" / "},i),{y:n})});return u.appendChild(c),(r+=c.getBBox().width)>o&&(n=u.getBBox().height+i.y,r=0,l.attr({x:r,y:n}),r+=l.getBBox().width,c.attr({x:r,y:n}),r+=c.getBBox().width),s===pd(t)-1&&c.remove(),l});s.forEach((t,e)=>{if(e===pd(s)-1)return;let n=Object.assign({},t.attributes);t.attr("cursor","pointer"),t.addEventListener("mouseenter",()=>{t.attr(A)}),t.addEventListener("mouseleave",()=>{t.attr(n)}),t.addEventListener("click",()=>{f(cf(t,["style","path"]),cf(t,["style","depth"]))})})}[...FN(o),...FD(o)].forEach(t=>{a(t,t=>t)}),a("treemapDrillDown",r=>{let{marks:i}=r,A=t.join("/"),a=i.map(t=>{if("rect"!==t.type)return t;let r=e;if(s){let t=e.filter(t=>{let e=cf(t,["id"]);return e&&(e.match(`${A}/`)||A.match(e))}).map(t=>({value:0===t.height?cf(t,["value"]):void 0,name:cf(t,["id"])})),{paddingLeft:i,paddingBottom:a,paddingRight:o}=n;r=MN(t,Object.assign(Object.assign({},n),{paddingTop:(n.paddingTop||u.getBBox().height+10)/(s+1),paddingLeft:i/(s+1),paddingBottom:a/(s+1),paddingRight:o/(s+1),path:t=>t.name,layer:t=>t.depth===s+1}),{value:"value"})[0]}else r=e.filter(t=>1===t.depth);let i=[];return r.forEach(({path:t})=>{i.push(hj(t))}),cC({},t,{data:r,scale:{color:{domain:i}}})});return Object.assign(Object.assign({},r),{marks:a})}),yield r(void 0,["legendFilter"])},new(d||(d=Promise))(function(t,e){function n(t){try{i(p.next(t))}catch(t){e(t)}}function r(t){try{i(p.throw(t))}catch(t){e(t)}}function i(e){var i;e.done?t(e.value):((i=e.value)instanceof d?i:new d(function(t){t(i)})).then(n,r)}i((p=p.apply(c,h||[])).next())})},h=t=>{let n=t.target,{markType:r,nodeName:i,attributes:A}=n||{};if("rect"!==r&&i!==nP.TEXT)return;let a=i===nP.TEXT&&!0===cf(A,"isTreemapLabel")?n.attributes.key.split("-")[0]:cf(n,["__data__","key"]),o=Mb(e,t=>t.id===a);cf(o,"height")&&f(cf(o,"path"),cf(o,"depth"))};l.addEventListener("click",h);let d=wy(Object.assign(Object.assign({},c.active),c.inactive)),p=()=>{yV(l).forEach(t=>{let n=cf(t,["style","cursor"]),r=Mb(e,e=>e.id===cf(t,["__data__","key"]));if("pointer"!==n&&(null==r?void 0:r.height)){t.style.cursor="pointer";let e=B3(t.attributes,d);t.addEventListener("mouseenter",()=>{t.attr(c.active)}),t.addEventListener("mouseleave",()=>{t.attr(cC(e,c.inactive))})}})};return p(),l.addEventListener("mousemove",p),()=>{u.remove(),l.removeEventListener("click",h),l.removeEventListener("mousemove",p)}}},"interaction.drillDown":function(t={}){let{breadCrumb:e={}}=t,n=cC({},Mq,e);return t=>{let{update:e,setState:r,container:i,view:A,options:a}=t,o=i.ownerDocument,s=c5(i).select(".plot").node(),l=a.marks.find(({id:t})=>t===Mz);if(!l)return;let{state:c}=l,u=o.createElement("g");u.style.transform=`translate(${n.x||0}px, ${n.y||0}px)`,u.setAttribute("x","drilldown-breadcrumb"),s.appendChild(u);let f=t=>{var i,A,a,l;return i=this,A=void 0,a=void 0,l=function*(){if(u.removeChildren(),t&&t.length>0){let e=o.createElement("text",{style:Object.assign({text:n.rootText},n.style)});u.appendChild(e);let r="",i=n.style.y,A=e.getBBox().width,a=s.getBBox().width,l=t.map((t,e)=>{let s=o.createElement("text",{style:Object.assign(Object.assign({x:A,text:" / "},n.style),{y:i})});u.appendChild(s),A+=s.getBBox().width,r=`${r}${t} / `;let l=o.createElement("text",{name:r.replace(/\s\/\s$/,""),style:Object.assign(Object.assign({text:t,x:A},n.style),{y:i})});return u.appendChild(l),(A+=l.getBBox().width)>a&&(i=u.getBBox().height,A=0,s.attr({x:A,y:i}),A+=s.getBBox().width,l.attr({x:A,y:i}),A+=l.getBBox().width),l});[e,...l].forEach((e,r)=>{if(r===l.length)return;let i=Object.assign({},e.attributes);e.attr("cursor","pointer"),e.addEventListener("mouseenter",()=>{e.attr(n.active)}),e.addEventListener("mouseleave",()=>{e.attr(i)}),e.addEventListener("click",()=>{f(t.slice(0,r))})})}r("drillDown",e=>{let{marks:n}=e,r=n.map(e=>{if(e.id!==Mz&&"rect"!==e.type)return e;let{data:n}=e;return cC({},e,{data:n.filter(e=>{var n;let r=null!=(n=e.path)?n:[];if(0===t.length)return!0;if(!Array.isArray(r)||r.length{var e,n;let r=t.target,i=r.markType,A=r.style||{},a=A[MG],o=A[MX],s=r.__data__;"rect"===i&&a===Mz&&o&&f(null!=(n=null==(e=null==s?void 0:s.data)?void 0:e.path)?n:[])};s.addEventListener("click",h);let d=wy(Object.assign(Object.assign({},c.active),c.inactive)),p=()=>{s.querySelectorAll(".element").filter(t=>(t.style||{})[MG]===Mz).forEach(t=>{let e=cf(t,["style",MX]);if("pointer"!==cf(t,["style","cursor"])&&e){t.style.cursor="pointer";let e=B3(t.attributes,d);t.addEventListener("mouseenter",()=>{t.attr(c.active)}),t.addEventListener("mouseleave",()=>{t.attr(cC(e,c.inactive))})}})};return s.addEventListener("mousemove",p),()=>{u.remove(),s.removeEventListener("click",h),s.removeEventListener("mousemove",p)}}},"interaction.elementPointMove":function(t={}){let{selection:e=[],precision:n=2}=t,r=MZ(t,["selection","precision"]),i=Object.assign(Object.assign({},M0),r||{}),A=cJ(i,"path"),a=cJ(i,"label"),o=cJ(i,"point");return(t,r,i)=>{let s,{update:l,setState:c,container:u,view:f,options:{marks:h,coordinate:d}}=t,p=yC(u),g=yV(p),y=e,{transform:v=[],type:b}=d,B=!!Mb(v,({type:t})=>"transpose"===t),w="polar"===b,x="theta"===b,C=!!Mb(g,({markType:t})=>"area"===t);C&&(g=g.filter(({markType:t})=>"area"===t));let O=new ou({style:{zIndex:2}});p.appendChild(O);let E=()=>{i.emit("element-point:select",{nativeEvent:!0,data:{selection:y}})},k=t=>{let e=t.target;y=[e.parentNode.childNodes.indexOf(e)],E(),Q(e)},F=t=>{let{data:{selection:e},nativeEvent:n}=t;if(n)return;let r=cf(g,[null==(y=e)?void 0:y[0]]);r&&Q(r)},Q=t=>{let e,{attributes:r,markType:d,__data__:p}=t,{stroke:g}=r,{points:v,seriesTitle:b,color:k,title:F,seriesX:M,y1:U}=p;if(B&&"interval"!==d)return;let{scale:S,coordinate:I}=(null==s?void 0:s.view)||f,{color:T,y:L,x:_}=S,P=I.getCenter();O.removeChildren();let H=(t,e,n,r)=>MJ(this,void 0,void 0,function*(){return c("elementPointMove",A=>{var a;let o=((null==(a=null==s?void 0:s.options)?void 0:a.marks)||h).map(A=>{if(!r.includes(A.type))return A;let{data:a,encode:o}=A,s=Object.keys(o).reduce((r,i)=>{let A=o[i];return"x"===i&&(r[A]=t),"y"===i&&(r[A]=e),"color"===i&&(r[A]=n),r},{}),l=a.map(t=>["x","color"].reduce((e,n)=>{let r=o[n];return r?t[r]===s[r]&&e:e},!0)?Object.assign(Object.assign({},t),s):t);return i.emit("element-point:moved",{nativeEvent:!0,data:{changeData:s,data:l}}),cC({},A,{data:l,animate:!1})});return Object.assign(Object.assign({},A),{marks:o})}),yield l("elementPointMove")});if(["line","area"].includes(d))v.forEach((r,i)=>{let l=_.invert(M[i]);if(!l)return;let c=new oo({name:M1,style:Object.assign({cx:r[0],cy:r[1],fill:g},o)}),f=((t,e)=>{let n=cf(t,["__data__","seriesItems",e,"0","value"]),r=cf(t,["__data__","seriesIndex",e]),{__data__:{data:i,encode:A,transform:a}}=t.parentNode,o=Mb(a,({type:t})=>"normalizeY"===t),s=cf(A,["y","field"]),l=i[r][s];return t=>o?1===n?t:t/(1-t)/(n/(1-n))*l:t})(t,i);c.addEventListener("mousedown",h=>{let d=I.output([M[i],0]),p=null==b?void 0:b.length;u.attr("cursor","move"),y[1]!==i&&(y[1]=i,E()),M5(O.childNodes,y,o);let[g,B]=M3(O,c,A,a),x=t=>{let A=r[1]+t.clientY-e[1];if(C)if(w){let[a,o]=M8(P,d,[r[0]+t.clientX-e[0],A]),[,s]=I.output([1,L.output(0)]),[,l]=I.invert([a,s-(v[i+p][1]-o)]),u=(i+1)%p,h=yG([v[(i-1+p)%p],[a,o],b[u]&&v[u]]);B.attr("text",f(L.invert(l)).toFixed(n)),g.attr("d",h),c.attr("cx",a),c.attr("cy",o)}else{let[,t]=I.output([1,L.output(0)]),[,e]=I.invert([r[0],t-(v[i+p][1]-A)]),a=yG([v[i-1],[r[0],A],b[i+1]&&v[i+1]]);B.attr("text",f(L.invert(e)).toFixed(n)),g.attr("d",a),c.attr("cy",A)}else{let[,t]=I.invert([r[0],A]),e=yG([v[i-1],[r[0],A],v[i+1]]);B.attr("text",L.invert(t).toFixed(n)),g.attr("d",e),c.attr("cy",A)}};e=[h.clientX,h.clientY],window.addEventListener("mousemove",x);let F=()=>MJ(this,void 0,void 0,function*(){if(u.attr("cursor","default"),window.removeEventListener("mousemove",x),u.removeEventListener("mouseup",F),nh(B.attr("text")))return;let e=Number(B.attr("text")),n=M6(T,k);s=yield H(l,e,n,["line","area"]),B.remove(),g.remove(),Q(t)});u.addEventListener("mouseup",F)}),O.appendChild(c)}),M5(O.childNodes,y,o);else if("interval"===d){let r=[(v[0][0]+v[1][0])/2,v[0][1]];B?r=[v[0][0],(v[0][1]+v[1][1])/2]:x&&(r=v[0]);let i=(t=>{let e=cf(t,["__data__","y"]),n=cf(t,["__data__","y1"])-e,{__data__:{data:r,encode:i,transform:A},childNodes:a}=t.parentNode,o=Mb(A,({type:t})=>"normalizeY"===t),s=cf(i,["y","field"]),l=r[a.indexOf(t)][s];return(t,e=!1)=>o||e?t/(1-t)/(n/(1-n))*l:t})(t),l=new oo({name:M1,style:Object.assign(Object.assign({cx:r[0],cy:r[1],fill:g},o),{stroke:o.activeStroke})});l.addEventListener("mousedown",o=>{u.attr("cursor","move");let c=M6(T,k),[f,h]=M3(O,l,A,a),p=t=>{if(B){let A=r[0]+t.clientX-e[0],[a]=I.output([L.output(0),L.output(0)]),[,o]=I.invert([a+(A-v[2][0]),r[1]]),s=yG([[A,v[0][1]],[A,v[1][1]],v[2],v[3]],!0);h.attr("text",i(L.invert(o)).toFixed(n)),f.attr("d",s),l.attr("cx",A)}else if(x){let A=r[1]+t.clientY-e[1],a=r[0]+t.clientX-e[0],[o,s]=M8(P,[a,A],r),[c,u]=M8(P,[a,A],v[1]),d=U-I.invert([o,s])[1];if(d<0)return;let p=function(t,e,n=0){let r=[["M",...e[1]]],i=yz(t,e[1]),A=yz(t,e[0]);return 0===i?r.push(["L",...e[3]],["A",A,A,0,n,1,...e[0]],["Z"]):r.push(["A",i,i,0,n,0,...e[2]],["L",...e[3]],["A",A,A,0,n,1,...e[0]],["Z"]),r}(P,[[o,s],[c,u],v[2],v[3]],+(d>.5));h.attr("text",i(d,!0).toFixed(n)),f.attr("d",p),l.attr("cx",o),l.attr("cy",s)}else{let A=r[1]+t.clientY-e[1],[,a]=I.output([1,L.output(0)]),[,o]=I.invert([r[0],a-(v[2][1]-A)]),s=yG([[v[0][0],A],[v[1][0],A],v[2],v[3]],!0);h.attr("text",i(L.invert(o)).toFixed(n)),f.attr("d",s),l.attr("cy",A)}};e=[o.clientX,o.clientY],window.addEventListener("mousemove",p);let g=()=>MJ(this,void 0,void 0,function*(){if(u.attr("cursor","default"),u.removeEventListener("mouseup",g),window.removeEventListener("mousemove",p),nh(h.attr("text")))return;let e=Number(h.attr("text"));s=yield H(F,e,c,[d]),h.remove(),f.remove(),Q(t)});u.addEventListener("mouseup",g)}),O.appendChild(l)}};g.forEach((t,e)=>{y[0]===e&&Q(t),t.addEventListener("click",k),t.addEventListener("mouseenter",M2),t.addEventListener("mouseleave",M4)});let M=t=>{let e=null==t?void 0:t.target;e&&(e.name===M1||g.includes(e))||(y=[],E(),O.removeChildren())};return i.on("element-point:select",F),i.on("element-point:unselect",M),u.addEventListener("mousedown",M),()=>{O.remove(),i.off("element-point:select",F),i.off("element-point:unselect",M),u.removeEventListener("mousedown",M),g.forEach(t=>{t.removeEventListener("click",k),t.removeEventListener("mouseenter",M2),t.removeEventListener("mouseleave",M4)})}}},"composition.spaceLayer":M7,"composition.spaceFlex":Ue,"composition.facetRect":Ug,"composition.repeatMatrix":()=>t=>[Un.of(t).call(Us).call(UA).call(Um).call(Ub).call(Ua).call(Uo).call(Uv).value()],"composition.facetCircle":()=>t=>[Un.of(t).call(Us).call(UC).call(UA).call(Ux).call(Ul).call(Uc,UE,UO,UO,{frame:!1}).call(Ua).call(Uo).call(Uw).value()],"composition.timingKeyframe":Uk,"labelTransform.overlapHide":t=>{let{priority:e}=t;return t=>{let n=[];return e&&t.sort(e),t.forEach(t=>{ym(t);let e=t.getLocalBounds();n.some(t=>(function(t,e){let[n,r]=t,[i,A]=e;return n[0]i[0]&&n[1]i[1]})(Ig(e),Ig(t.getLocalBounds())))?yv(t):n.push(t)}),t}},"labelTransform.overlapDodgeY":t=>{let{maxIterations:e=10,maxError:n=.1,padding:r=1}=t;return t=>{let i=t.length;if(i<=1)return t;let[A,a]=Im(),[o,s]=Im(),[l,c]=Im(),[u,f]=Im();for(let e of t){let{min:t,max:n}=function(t){let e=t.cloneNode(!0),n=e.getElementById("connector");n&&e.removeChild(n);let{min:r,max:i}=e.getRenderBounds();return e.destroy(),{min:r,max:i}}(e),[r,i]=t,[A,o]=n;a(e,i),s(e,i),c(e,o-i),f(e,[r,A])}for(let A=0;Agv(o(t),o(e)));let e=0;for(let n=0;nt&&e>n}(u(A),u(i));)a+=1;if(i){let t=o(A),n=l(A),a=o(i),c=a-(t+n);if(ct=>(t.forEach(t=>{ym(t);let e=t.attr("bounds");Iv(Ig(t.getLocalBounds()),e)&&yv(t)}),t),"labelTransform.contrastReverse":t=>{let{threshold:e=4.5,palette:n=["#000","#fff"]}=t;return t=>(t.forEach(t=>{let r=t.attr("dependentElement").parsedStyle.fill;Ix(t.parsedStyle.fill,r){let{palette:e=["#000","#fff"],threshold:n=2}=t;return t=>(t.forEach(t=>{var r,i;let A=t.attr("dependentElement"),a=null!=(i=null!=(r=t.attributes.fill)?r:t.parsedStyle.fill)?i:"#fff";if(Iv(Ig(IO(t)),Ig(IO(A)),n)){let n=IC(Ib(a),e);t.attr("stroke",n)}else t.removeAttribute("stroke")}),t)},"labelTransform.exceedAdjust":(t={})=>(e,{canvas:n,layout:r})=>{let{bounds:i="view",offsetX:A=0,offsetY:a=0}=t,o=(()=>{if("main"===i){let{x:t=0,y:e=0,width:n=0,height:i=0,marginLeft:o=0,marginRight:s=0,marginTop:l=0,marginBottom:c=0,paddingLeft:u=0,paddingRight:f=0,paddingTop:h=0,paddingBottom:d=0}=r;return[[t+o+u+A,e+l+h+a],[t+n-s-f-A,e+i-c-d-a]]}{let{x:t=0,y:e=0,width:n=0,height:i=0}=r;return[[t+A,e+a],[t+n-A,e+i-a]]}})();return e.forEach(t=>{var e,n;ym(t);let{max:r,min:i}=(e=t.getRenderBounds(),n=t.getBounds(),e&&e.min&&e.max?n&&n.min&&n.max?{min:[Math.min(e.min[0],n.min[0]),Math.min(e.min[1],n.min[1])],max:[Math.max(e.max[0],n.max[0]),Math.max(e.max[1],n.max[1])]}:e:n&&n.min&&n.max?n:{min:[0,0],max:[0,0]});if(!r||!i||0===r[0]&&0===r[1]&&0===i[0]&&0===i[1])return;let[A,a]=r,[s,l]=i,c=((t,e)=>{let[[n,r],[i,A]]=e,[[a,o],[s,l]]=t,c=0,u=0;return ai&&(c=i-s),oA&&(u=A-l),[c,u]})([[s,l],[A,a]],o);t.style.connector&&t.style.connectorPoints&&(t.style.connectorPoints[0][0]-=c[0],t.style.connectorPoints[0][1]-=c[1]),t.style.x+=c[0],t.style.y+=c[1]}),e}})),{"interaction.drillDown":function(t={}){let{breadCrumb:e={},isFixedColor:n=!1}=t,r=cC({},wv,e);return t=>{let{update:e,setState:i,container:A,view:a,options:o}=t,s=A.ownerDocument,l=c5(A).select(".plot").node(),{state:c}=o.marks.find(({id:t})=>t===wu),u=s.createElement("g");l.appendChild(u);let f=(t,A)=>{var o,c,h,d;return o=this,c=void 0,h=void 0,d=function*(){if(u.removeChildren(),t){let e=s.createElement("text",{style:Object.assign({x:0,text:r.rootText,depth:0},r.style)});u.appendChild(e);let n="",i=null==t?void 0:t.split(" / "),A=r.style.y,a=u.getBBox().width,o=l.getBBox().width,c=i.map((t,e)=>{let i=s.createElement("text",{style:Object.assign(Object.assign({x:a,text:" / "},r.style),{y:A})});u.appendChild(i),a+=i.getBBox().width,n=`${n}${t} / `;let l=s.createElement("text",{name:n.replace(/\s\/\s$/,""),style:Object.assign(Object.assign({text:t,x:a,depth:e+1},r.style),{y:A})});return u.appendChild(l),(a+=l.getBBox().width)>o&&(A=u.getBBox().height,a=0,i.attr({x:a,y:A}),a+=i.getBBox().width,l.attr({x:a,y:A}),a+=l.getBBox().width),l});[e,...c].forEach((t,e)=>{if(e===c.length)return;let n=Object.assign({},t.attributes);t.attr("cursor","pointer"),t.addEventListener("mouseenter",()=>{t.attr(r.active)}),t.addEventListener("mouseleave",()=>{t.attr(n)}),t.addEventListener("click",()=>{f(t.name,cf(t,["style","depth"]))})})}i("drillDown",e=>{let{marks:r}=e,i=r.map(e=>{if(e.id!==wu&&"rect"!==e.type)return e;let{data:r}=e,i=Object.fromEntries(["color"].map(t=>[t,{domain:a.scale[t].getOptions().domain}])),o=r.filter(e=>{let r=e.path;return n||(e[wd]=r.split(" / ")[A]),!t||RegExp(`^${t}.+`).test(r)});return cC({},e,n?{data:o,scale:i}:{data:o})});return Object.assign(Object.assign({},e),{marks:i})}),yield e()},new(h||(h=Promise))(function(t,e){function n(t){try{i(d.next(t))}catch(t){e(t)}}function r(t){try{i(d.throw(t))}catch(t){e(t)}}function i(e){var i;e.done?t(e.value):((i=e.value)instanceof h?i:new h(function(t){t(i)})).then(n,r)}i((d=d.apply(o,c||[])).next())})},h=t=>{let e=t.target;if(cf(e,["style",wf])!==wu||"rect"!==cf(e,["markType"])||!cf(e,["style",ws]))return;let n=cf(e,["__data__","key"]),r=cf(e,["style","depth"]);e.style.cursor="pointer",f(n,r)};l.addEventListener("click",h);let d=wy(Object.assign(Object.assign({},c.active),c.inactive)),p=()=>{l.querySelectorAll(".element").filter(t=>cf(t,["style",wf])===wu).forEach(t=>{let e=cf(t,["style",ws]);if("pointer"!==cf(t,["style","cursor"])&&e){t.style.cursor="pointer";let e=B3(t.attributes,d);t.addEventListener("mouseenter",()=>{t.attr(c.active)}),t.addEventListener("mouseleave",()=>{t.attr(cC(e,c.inactive))})}})};return l.addEventListener("mousemove",p),()=>{u.remove(),l.removeEventListener("click",h),l.removeEventListener("mousemove",p)}}},"mark.sunburst":wg}),class extends o{constructor(t){super(Object.assign(Object.assign({},t),{lib:s}))}}),P6=function(){return(P6=Object.assign||function(t){for(var e,n=1,r=arguments.length;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n},P9=["renderer","plugins"],P7=["width","height","autoFit","theme","inset","insetLeft","insetRight","insetTop","insetBottom","padding","paddingTop","paddingRight","paddingBottom","paddingLeft","margin","marginTop","marginRight","marginBottom","marginLeft","depth","title","clip","children","type","data","direction","plugins"],Ht="__transform__",He=function(t,e){return(0,tp.isBoolean)(e)?{type:t,available:e}:P6({type:t},e)},Hn={xField:"encode.x",yField:"encode.y",colorField:"encode.color",angleField:"encode.y",keyField:"encode.key",y1Field:"encode.y1",sizeField:"encode.size",setsField:"encode.sets",shapeField:"encode.shape",seriesField:"encode.series",positionField:"encode.position",textField:"encode.text",valueField:"encode.value",binField:"encode.x",srcField:"encode.src",linkColorField:"encode.linkColor",fontSizeField:"encode.fontSize",coordinateType:"coordinate.type",radius:"coordinate.outerRadius",innerRadius:"coordinate.innerRadius",startAngle:"coordinate.startAngle",endAngle:"coordinate.endAngle",focusX:"coordinate.focusX",focusY:"coordinate.focusY",distortionX:"coordinate.distortionX",distortionY:"coordinate.distortionY",visual:"coordinate.visual",stack:{target:"transform",value:function(t){return He("stackY",t)}},normalize:{target:"transform",value:function(t){return He("normalizeY",t)}},percent:{target:"transform",value:function(t){return He("normalizeY",t)}},group:{target:"transform",value:function(t){return He("dodgeX",t)}},sort:{target:"transform",value:function(t){return He("sortX",t)}},symmetry:{target:"transform",value:function(t){return He("symmetryY",t)}},diff:{target:"transform",value:function(t){return He("diffY",t)}},meta:{target:"scale",value:function(t){return t}},label:{target:"labels",value:function(t){return t}},shape:"style.shape",connectNulls:{target:"style",value:function(t){return(0,tp.isBoolean)(t)?{connect:t}:t}},transpose:{target:"transpose",value:function(t){return He("transpose",t)}}},Hr=["xField","yField","seriesField","colorField","shapeField","keyField","positionField","meta","tooltip","animate","stack","normalize","percent","group","sort","symmetry","diff"],Hi=[{key:"annotations",extendedProperties:[]},{key:"line",type:"line",extendedProperties:Hr},{key:"connector",type:"connector",extendedProperties:[]},{key:"point",type:"point",extendedProperties:Hr,defaultShapeConfig:{shapeField:"circle"}},{key:"area",type:"area",extendedProperties:Hr}],HA=[{key:"transform",callback:function(t,e,n){t[e]=t[e]||[];var r,i=n.available,A=P8(n,["available"]);if(void 0===i||i)t[e].push(P6(((r={})[Ht]=!0,r),A));else{var a=t[e].indexOf(function(t){return t.type===n.type});-1!==a&&t[e].splice(a,1)}}},{key:"labels",callback:function(t,e,n){var r;if(!n||(0,tp.isArray)(n)){t[e]=n||[];return}n.text||(n.text=t.yField),t[e]=t[e]||[],t[e].push(P6(((r={})[Ht]=!0,r),n))}},{key:"transpose",callback:function(t,e,n){var r;n.available?t.coordinate={transform:[P6(((r={})[Ht]=!0,r),n)]}:t.coordinate={}}}],Ha=[{key:"conversionTag",shape:"ConversionTag"},{key:"axisText",shape:"BidirectionalBarAxisText"}],Ho=(l=function(t,e){return(l=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}l(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),Hs=function(){return(Hs=Object.assign||function(t){for(var e,n=1,r=arguments.length;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n},Hc=function(t){function e(e){void 0===e&&(e={});var n=e.style,r=Hl(e,["style"]);return t.call(this,Hs({style:Hs({fill:"#eee"},n)},r))||this}return Ho(e,t),e}(ob),Hu=(c=function(t,e){return(c=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}c(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),Hf=function(){return(Hf=Object.assign||function(t){for(var e,n=1,r=arguments.length;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n},Hd=function(t){function e(e){void 0===e&&(e={});var n=e.style,r=Hh(e,["style"]);return t.call(this,Hf({style:Hf({text:"",fontSize:12,textBaseline:"middle",textAlign:"center",fill:"#000",fontStyle:"normal",fontVariant:"normal",fontWeight:"normal",lineWidth:1},n)},r))||this}return Hu(e,t),e}(oO),Hp=function(t,e,n){if(n||2==arguments.length)for(var r,i=0,A=e.length;i0){var r=e.x,i=e.y,A=e.height,a=e.width,o=e.data,f=e.key,h=(0,tp.get)(o,s),p=d/2;if(t){var y=r+a/2,b=i;u.push({points:[[y+p,b-c+v],[y+p,b-g-v],[y,b-v],[y-p,b-g-v],[y-p,b-c+v]],center:[y,b-c/2],width:c,value:[l,h],key:f})}else{var y=r,b=i+A/2;u.push({points:[[r-c+v,b-p],[r-g-v,b-p],[y-v,b],[r-g-v,b+p],[r-c+v,b+p]],center:[y-c/2,b],width:c,value:[l,h],key:f})}l=h}}),u},e.prototype.render=function(){this.setDirection(),this.drawConversionTag()},e.prototype.setDirection=function(){var t=this.chart.getCoordinate(),e=(0,tp.get)(t,"options.transformations"),n="horizontal";e.forEach(function(t){t.includes("transpose")&&(n="vertical")}),this.direction=n},e.prototype.drawConversionTag=function(){var t=this,e=this.getConversionTagLayout(),n=this.attributes,r=n.style,i=n.text,A=i.style,a=i.formatter;e.forEach(function(e){var n=e.points,i=e.center,o=e.value,s=e.key,l=o[0],c=o[1],u=i[0],f=i[1],h=new Hc({style:HB({points:n,fill:"#eee"},r),id:"polygon-".concat(s)}),d=new Hd({style:HB({x:u,y:f,text:(0,tp.isFunction)(a)?a(l,c):(c/l*100).toFixed(2)+"%"},A),id:"text-".concat(s)});t.appendChild(h),t.appendChild(d)})},e.prototype.update=function(){this.clear(),this.drawConversionTag()},e.prototype.destroy=function(){this.clear()},e.tag="ConversionTag",e}(Hm),Hx=(h=function(t,e){return(h=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}h(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),HC=function(){return(HC=Object.assign||function(t){for(var e,n=1,r=arguments.length;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n},HE={ConversionTag:Hw,BidirectionalBarAxisText:function(t){function e(n,r){return t.call(this,n,r,{type:e.tag})||this}return Hx(e,t),e.prototype.render=function(){this.drawText()},e.prototype.getBidirectionalBarAxisTextLayout=function(){var t="vertical"===this.attributes.layout,e=this.getElementsLayout(),n=t?(0,tp.uniqBy)(e,"x"):(0,tp.uniqBy)(e,"y"),r=["title"],i=[],A=this.chart.getContext().views,a=(0,tp.get)(A,[0,"layout"]),o=a.width,s=a.height;return n.forEach(function(e){var n=e.x,A=e.y,a=e.height,l=e.width,c=e.data,u=e.key,f=(0,tp.get)(c,r);t?i.push({x:n+l/2,y:s,text:f,key:u}):i.push({x:o,y:A+a/2,text:f,key:u})}),(0,tp.uniqBy)(i,"text").length!==i.length&&(i=Object.values((0,tp.groupBy)(i,"text")).map(function(e){var n,r=e.reduce(function(e,n){return e+(t?n.x:n.y)},0);return HC(HC({},e[0]),((n={})[t?"x":"y"]=r/e.length,n))})),i},e.prototype.transformLabelStyle=function(t){var e={},n=/^label[A-Z]/;return Object.keys(t).forEach(function(r){n.test(r)&&(e[r.replace("label","").replace(/^[A-Z]/,function(t){return t.toLowerCase()})]=t[r])}),e},e.prototype.drawText=function(){var t=this,e=this.getBidirectionalBarAxisTextLayout(),n=this.attributes,r=n.layout,i=n.labelFormatter,A=HO(n,["layout","labelFormatter"]);e.forEach(function(e){var n=e.x,a=e.y,o=e.text,s=e.key,l=new Hd({style:HC({x:n,y:a,text:(0,tp.isFunction)(i)?i(o):o,wordWrap:!0,wordWrapWidth:"horizontal"===r?64:120,maxLines:2,textOverflow:"ellipsis"},t.transformLabelStyle(A)),id:"text-".concat(s)});t.appendChild(l)})},e.prototype.destroy=function(){this.clear()},e.prototype.update=function(){this.destroy(),this.drawText()},e.tag="BidirectionalBarAxisText",e}(Hm)},Hk=function(){function t(t,e){this.container=new Map,this.chart=t,this.config=e,this.init()}return t.prototype.init=function(){var t=this;Ha.forEach(function(e){var n,r=e.key,i=e.shape,A=t.config[r];if(A){var a=new HE[i](t.chart,A);t.chart.getContext().canvas.appendChild(a),t.container.set(r,a)}else null==(n=t.container.get(r))||n.clear()})},t.prototype.update=function(){var t=this;this.container.size&&Ha.forEach(function(e){var n=e.key,r=t.container.get(n);null==r||r.update()})},t.prototype.destroy=function(){this.container.forEach(function(t){t.destroy()}),this.container.clear()},t}(),HF=(d=function(t,e){return(d=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}d(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),HQ=function(){return(HQ=Object.assign||function(t){for(var e,n=1,r=arguments.length;n1&&(0,tp.set)(e,"children",[{type:"interval"}]);var n=e.scale,r=e.markBackground,i=e.data,A=e.children,a=e.yField,o=(0,tp.get)(n,"y.domain",[]);if(r&&o.length&&(0,tp.isArray)(i)){var s="domainMax",l=i.map(function(t){var e;return HG(HG({originData:HG({},t)},(0,tp.omit)(t,a)),((e={})[s]=o[o.length-1],e))});A.unshift(HG({type:"interval",data:l,yField:s,tooltip:!1,style:{fill:"#eee"},label:!1},r))}return t},HD,HH)(t)}var HW=(y=function(t,e){return(y=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}y(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});lB("shape.interval.bar25D",function(t,e){return function(n){var r=t.fill,i=void 0===r?"#2888FF":r,A=t.stroke,a=t.fillOpacity,o=void 0===a?1:a,s=t.strokeOpacity,l=void 0===s?.2:s,c=t.pitch,u=void 0===c?8:c,f=n[0],h=n[1],d=n[2],p=n[3],g=(h[1]-f[1])/2,y=e.document,v=y.createElement("g",{}),b=y.createElement("polygon",{style:{points:[f,[f[0]-u,f[1]+g],[d[0]-u,f[1]+g],p],fill:i,fillOpacity:o,stroke:A,strokeOpacity:l,inset:30}}),B=y.createElement("polygon",{style:{points:[[f[0]-u,f[1]+g],h,d,[d[0]-u,f[1]+g]],fill:i,fillOpacity:o,stroke:A,strokeOpacity:l}}),w=y.createElement("polygon",{style:{points:[f,[f[0]-u,f[1]+g],h,[f[0]+u,f[1]+g]],fill:i,fillOpacity:o-.2}});return v.appendChild(b),v.appendChild(B),v.appendChild(w),v}});var HX=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="Bar",e}return HW(e,t),e.getDefaultOptions=function(){return{type:"view",coordinate:{transform:[{type:"transpose"}]},children:[{type:"interval"}],scale:{y:{nice:!0}},axis:{y:{title:!1},x:{title:!1}},interaction:{tooltip:{shared:!0},elementHighlight:{background:!0}}}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return HV},e}(HU),HY=(v=function(t,e){return(v=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}v(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)});lB("shape.interval.column25D",function(t,e){return function(n){var r=t.fill,i=void 0===r?"#2888FF":r,A=t.stroke,a=t.fillOpacity,o=void 0===a?1:a,s=t.strokeOpacity,l=void 0===s?.2:s,c=t.pitch,u=void 0===c?8:c,f=(n[1][0]-n[0][0])/2+n[0][0],h=e.document,d=h.createElement("g",{}),p=h.createElement("polygon",{style:{points:[[n[0][0],n[0][1]],[f,n[1][1]+u],[f,n[3][1]+u],[n[3][0],n[3][1]]],fill:i,fillOpacity:o,stroke:A,strokeOpacity:l,inset:30}}),g=h.createElement("polygon",{style:{points:[[f,n[1][1]+u],[n[1][0],n[1][1]],[n[2][0],n[2][1]],[f,n[2][1]+u]],fill:i,fillOpacity:o,stroke:A,strokeOpacity:l}}),y=h.createElement("polygon",{style:{points:[[n[0][0],n[0][1]],[f,n[1][1]-u],[n[1][0],n[1][1]],[f,n[1][1]+u]],fill:i,fillOpacity:o-.2}});return d.appendChild(g),d.appendChild(p),d.appendChild(y),d}});var H$=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="column",e}return HY(e,t),e.getDefaultOptions=function(){return{type:"view",scale:{y:{nice:!0}},interaction:{tooltip:{shared:!0},elementHighlight:{background:!0}},axis:{y:{title:!1},x:{title:!1}},children:[{type:"interval"}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return HV},e}(HU);function Hq(t){return(0,tp.flow)(function(t){var e=t.options,n=e.children;return e.legend&&(void 0===n?[]:n).forEach(function(t){if(!(0,tp.get)(t,"colorField")){var e=(0,tp.get)(t,"yField");(0,tp.set)(t,"colorField",function(){return e})}}),t},function(t){var e=t.options,n=e.annotations,r=void 0===n?[]:n,i=e.children,A=e.scale,a=!1;return(0,tp.get)(A,"y.key")||(void 0===i?[]:i).forEach(function(t,e){if(!(0,tp.get)(t,"scale.y.key")){var n="child".concat(e,"Scale");(0,tp.set)(t,"scale.y.key",n);var i=t.annotations,A=void 0===i?[]:i;A.length>0&&((0,tp.set)(t,"scale.y.independent",!1),A.forEach(function(t){(0,tp.set)(t,"scale.y.key",n)})),!a&&r.length>0&&void 0===(0,tp.get)(t,"scale.y.independent")&&(a=!0,(0,tp.set)(t,"scale.y.independent",!1),r.forEach(function(t){(0,tp.set)(t,"scale.y.key",n)}))}}),t},HD,HH)(t)}var HJ=(b=function(t,e){return(b=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}b(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),HZ=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="DualAxes",e}return HJ(e,t),e.getDefaultOptions=function(){return{type:"view",axis:{y:{title:!1,tick:!1},x:{title:!1}},scale:{y:{independent:!0,nice:!0}}}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return Hq},e}(HU);function H0(t){return(0,tp.flow)(function(t){var e=t.options,n=e.xField;return e.colorField||(0,tp.set)(e,"colorField",n),t},function(t){var e=t.options,n=e.compareField,r=e.transform,i=e.isTransposed,A=e.coordinate;return r||(n?(0,tp.set)(e,"transform",[]):(0,tp.set)(e,"transform",[{type:"symmetryY"}])),!A&&(void 0===i||i)&&(0,tp.set)(e,"coordinate",{transform:[{type:"transpose"}]}),t},function(t){var e=t.options,n=e.compareField,r=e.seriesField,i=e.data,A=e.children,a=e.yField,o=e.isTransposed;if(n||r){var s=Object.values((0,tp.groupBy)(i,function(t){return t[n||r]}));A[0].data=s[0],A.push({type:"interval",data:s[1],yField:function(t){return-t[a]}}),delete e.compareField,delete e.data}return r&&((0,tp.set)(e,"type","spaceFlex"),(0,tp.set)(e,"ratio",[1,1]),(0,tp.set)(e,"direction",void 0===o||o?"row":"col"),delete e.seriesField),t},function(t){var e=t.options,n=e.tooltip,r=e.xField,i=e.yField;return n||(0,tp.set)(e,"tooltip",{title:!1,items:[function(t){return{name:t[r],value:t[i]}}]}),t},HD,HH)(t)}var H1=(B=function(t,e){return(B=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}B(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),H2=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="column",e}return H1(e,t),e.getDefaultOptions=function(){return{type:"view",scale:{x:{padding:0}},animate:{enter:{type:"fadeIn"}},axis:!1,shapeField:"funnel",label:{position:"inside",transform:[{type:"contrastReverse"}]},children:[{type:"interval"}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return H0},e}(HU);function H4(t){return(0,tp.flow)(HD,HH)(t)}var H5=(w=function(t,e){return(w=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}w(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),H3=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="line",e}return H5(e,t),e.getDefaultOptions=function(){return{type:"view",scale:{y:{nice:!0}},interaction:{tooltip:{shared:!0}},axis:{y:{title:!1},x:{title:!1}},children:[{type:"line"}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return H4},e}(HU);function H6(t){switch(typeof t){case"function":return t;case"string":return function(e){return(0,tp.get)(e,[t])};default:return function(){return t}}}var H8=function(){return(H8=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0)if(0===r.reduce(function(t,e){return t+e[n]},0)){var s=r.map(function(t){var e;return H8(H8({},t),((e={})[n]=1,e))});if((0,tp.set)(e,"data",s),i){var l=a===(0,tp.get)(i,"text");(0,tp.set)(e,"label",H8(H8({},i),l?{}:{formatter:function(){return 0}}))}!1!==A&&((0,tp.isFunction)(A)?(0,tp.set)(e,"tooltip",function(t,e,r){var i;return A(H8(H8({},t),((i={})[n]=0,i)),e,r.map(function(t){var e;return H8(H8({},t),((e={})[n]=0,e))}))}):(0,tp.set)(e,"tooltip",H8(H8({},A),{items:[function(t,e,n){return{name:o(t,e,n),value:0}}]})))}else(0,tp.set)(e,"tooltip",A),(0,tp.set)(e,"label",i);return t},HH)(t)}var H7=(x=function(t,e){return(x=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}x(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jt=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="pie",e}return H7(e,t),e.getDefaultOptions=function(){return{type:"view",children:[{type:"interval"}],coordinate:{type:"theta"},transform:[{type:"stackY",reverse:!0}],animate:{enter:{type:"waveIn"}}}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return H9},e}(HU);function je(t){return(0,tp.flow)(HD,HH)(t)}var jn=(C=function(t,e){return(C=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}C(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jr=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="scatter",e}return jn(e,t),e.getDefaultOptions=function(){return{axis:{y:{title:!1},x:{title:!1}},legend:{size:!1},children:[{type:"point"}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return je},e}(HU);function ji(t){return(0,tp.flow)(function(t){return(0,tp.set)(t,"options.coordinate",{type:(0,tp.get)(t,"options.coordinateType","polar")}),t},HH)(t)}var jA=(O=function(t,e){return(O=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}O(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),ja=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="radar",e}return jA(e,t),e.getDefaultOptions=function(){return{axis:{x:{grid:!0,line:!0},y:{zIndex:1,title:!1,line:!0,nice:!0}},meta:{x:{padding:.5,align:0}},interaction:{tooltip:{style:{crosshairsLineDash:[4,4]}}},children:[{type:"line"}],coordinateType:"polar"}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return ji},e}(HU);function jo(t){return(0,tp.flow)(function(t){var e=t.options,n=e.yField,r=e.children,i=e.style,A=e.lineStyle,a=n[0],o=n[1],s=n[2],l=n[3];return(0,tp.set)(r,[0,"yField"],[s,l]),(0,tp.set)(r,[0,"style"],void 0===A?{}:A),(0,tp.set)(r,[1,"yField"],[a,o]),(0,tp.set)(r,[1,"style"],void 0===i?{}:i),delete e.yField,delete e.lineStyle,delete e.style,t},HH)(t)}var js=(E=function(t,e){return(E=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}E(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jl=["#26a69a","#999999","#ef5350"],jc=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="stock",e}return js(e,t),e.getDefaultOptions=function(){return{type:"view",scale:{color:{domain:[-1,0,1],range:jl},y:{nice:!0}},children:[{type:"link"},{type:"interval"}],axis:{x:{title:!1,grid:!1},y:{title:!1,grid:!0,gridLineDash:null}},animate:{enter:{type:"scaleInY"}},interaction:{tooltip:{shared:!0,marker:!1,groupName:!1,crosshairs:!0}}}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return jo},e}(HU);function ju(t){return(0,tp.flow)(HD,HH)(t)}var jf=(k=function(t,e){return(k=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}k(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jh=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="TinyLine",e}return jf(e,t),e.getDefaultOptions=function(){return{type:"view",children:[{type:"line",axis:!1}],padding:0,margin:0,tooltip:!1}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return ju},e}(HU);function jd(t){return(0,tp.flow)(HD,HH)(t)}var jp=(F=function(t,e){return(F=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}F(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jg=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="TinyArea",e}return jp(e,t),e.getDefaultOptions=function(){return{type:"view",animate:{enter:{type:"growInX",duration:500}},children:[{type:"area",axis:!1}],padding:0,margin:0,tooltip:!1}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return jd},e}(HU);function jy(t){return(0,tp.flow)(HD,HH)(t)}var jv=(Q=function(t,e){return(Q=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}Q(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jm=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="TinyColumn",e}return jv(e,t),e.getDefaultOptions=function(){return{type:"view",children:[{type:"interval",axis:!1}],padding:0,margin:0,tooltip:!1}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return jy},e}(HU),jb=function(){return(jb=Object.assign||function(t){for(var e,n=1,r=arguments.length;n0&&(e.x1=t[r],e.x2=e[r],e.y1=t[jS]),e},[]),a.shift(),i.push({type:"link",xField:["x1","x2"],yField:"y1",zIndex:-1,data:a,style:jT({stroke:"#697474"},A),label:!1,tooltip:!1}),t},HD,function(t){var e=t.options,n=e.data,r=void 0===n?[]:n,i=e.connector;return i&&(0,tp.set)(e,"connector",jT({xField:i.reverse?["x2","x1"]:["x1","x2"],yField:i.reverse?["y2","y1"]:["y1","y2"],data:[{x1:r[0].x,y1:r[0][jS],x2:r[r.length-1].x,y2:r[r.length-1][jS]}]},(0,tp.isObject)(i)?i:{})),t},HH)(t)}var jP=(I=function(t,e){return(I=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}I(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jH=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="waterfall",e}return jP(e,t),e.getDefaultOptions=function(){return{type:"view",legend:null,tooltip:{field:jI,valueFormatter:"~s",name:"value"},axis:{y:{title:null,labelFormatter:"~s"},x:{title:null}},children:[{type:"interval",interaction:{elementHighlight:{background:!0}}}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return j_},e}(HU);function jj(t){return(0,tp.flow)(function(t){var e=t.options,n=e.data,r=e.binNumber,i=e.binWidth,A=e.children,a=e.channel,o=void 0===a?"count":a,s=(0,tp.get)(A,"[0].transform[0]",{});return(0,tp.isNumber)(i)?(0,tp.assign)(s,{thresholds:(0,tp.ceil)((0,tp.divide)(n.length,i)),y:o}):(0,tp.isNumber)(r)&&(0,tp.assign)(s,{thresholds:r,y:o}),t},HD,HH)(t)}var jN=(T=function(t,e){return(T=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}T(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jD=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="Histogram",e}return jN(e,t),e.getDefaultOptions=function(){return{type:"view",autoFit:!0,axis:{y:{title:!1},x:{title:!1}},children:[{type:"rect",transform:[{type:"binX",y:"count"}],interaction:{elementHighlight:{background:!0}}}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return jj},e}(HU);function jR(t){return(0,tp.flow)(function(t){var e=t.options,n=e.tooltip,r=void 0===n?{}:n,i=e.colorField,A=e.sizeField;return r&&!r.field&&(r.field=i||A),t},function(t){var e=t.options,n=e.mark,r=e.children;return n&&(r[0].type=n),t},HD,HH)(t)}var jK=(L=function(t,e){return(L=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}L(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jz=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="heatmap",e}return jK(e,t),e.getDefaultOptions=function(){return{type:"view",legend:null,tooltip:{valueFormatter:"~s"},axis:{y:{title:null,grid:!0},x:{title:null,grid:!0}},children:[{type:"point"}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return jR},e}(HU);function jG(t){return(0,tp.flow)(function(t){var e=t.options.boxType;return t.options.children[0].type=void 0===e?"box":e,t},HD,HH)(t)}var jV=(_=function(t,e){return(_=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}_(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jW=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="box",e}return jV(e,t),e.getDefaultOptions=function(){return{type:"view",children:[{type:"box"}],axis:{y:{title:!1},x:{title:!1}},tooltip:{items:[{name:"min",channel:"y"},{name:"q1",channel:"y1"},{name:"q2",channel:"y2"},{name:"q3",channel:"y3"},{name:"max",channel:"y4"}]}}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return jG},e}(HU),jX=function(t){var e=t.options,n=e.data;return(0,tp.get)(n,"value")||"fetch"!==(0,tp.get)(n,"type")&&(0,tp.isPlainObject)(n)&&(0,tp.set)(e,"data.value",n),t},jY=function(t){var e=t.options,n=e.data,r=[{type:"custom",callback:function(t){return{links:t}}}];if((0,tp.isArray)(n))n.length>0?(0,tp.set)(e,"data",{value:n,transform:r}):delete e.children;else if("fetch"===(0,tp.get)(n,"type")&&(0,tp.get)(n,"value")){var i=(0,tp.get)(n,"transform");(0,tp.isArray)(i)||(0,tp.set)(n,"transform",r)}return t};function j$(t){return(0,tp.flow)(jX,jY,HD,HH)(t)}var jq=(P=function(t,e){return(P=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}P(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),jJ=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="sankey",e}return jq(e,t),e.getDefaultOptions=function(){return{type:"view",children:[{type:"sankey"}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return j$},e}(HU);function jZ(t){e=t.options.layout,t.options.coordinate.transform="horizontal"!==(void 0===e?"horizontal":e)?void 0:[{type:"transpose"}];var e,n=t.options.layout,r=void 0===n?"horizontal":n;return t.options.children.forEach(function(t){var e;(null==(e=null==t?void 0:t.coordinate)?void 0:e.transform)&&(t.coordinate.transform="horizontal"!==r?void 0:[{type:"transpose"}])}),t}var j0=function(){return(j0=Object.assign||function(t){for(var e,n=1,r=arguments.length;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n};function Nu(t){return(0,tp.flow)(function(t){var e=t.options,n=e.startAngle,r=e.maxAngle,i=e.coordinate,A=(0,tp.isNumber)(n)?n/(2*Math.PI)*360:-90,a=(0,tp.isNumber)(r)?(Number(r)+A)/180*Math.PI:Math.PI;return(0,tp.set)(t,["options","coordinate"],Nl(Nl({},i),{endAngle:a,startAngle:null!=n?n:-Math.PI/2})),t},function(t){var e=t.options,n=e.tooltip,r=e.xField,i=e.yField,A=H6(r),a=H6(i);return n||(0,tp.set)(e,"tooltip",{title:!1,items:[function(t,e,n){return{name:A(t,e,n),value:a(t,e,n)}}]}),t},function(t){var e=t.options,n=e.markBackground,r=e.children,i=e.scale,A=e.coordinate,a=e.xField,o=(0,tp.get)(i,"y.domain",[]);if(n){var s=n.style,l=Nc(n,["style"]);r.unshift(Nl({type:"interval",xField:a,yField:o[o.length-1],style:Nl({fillOpacity:.4,fill:"#e0e4ee"},s),coordinate:Nl(Nl({},A),{startAngle:-Math.PI/2,endAngle:1.5*Math.PI}),animate:!1},l))}return t},HD,HH)(t)}var Nf=(K=function(t,e){return(K=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}K(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),Nh=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="radial",e}return Nf(e,t),e.getDefaultOptions=function(){return{type:"view",children:[{type:"interval"}],coordinate:{type:"radial",innerRadius:.1,outerRadius:1,endAngle:Math.PI},animate:{enter:{type:"waveIn",duration:800}},axis:{y:{nice:!0,labelAutoHide:!0,labelAutoRotate:!1},x:{title:!1,nice:!0,labelAutoRotate:!1,labelAutoHide:{type:"equidistance",cfg:{minGap:6}}}}}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return Nu},e}(HU);function Nd(t){return(0,tp.flow)(jX,HH)(t)}var Np=(z=function(t,e){return(z=Object.setPrototypeOf||({__proto__:[]})instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}z(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),Ng=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="CirclePacking",e}return Np(e,t),e.getDefaultOptions=function(){return{legend:!1,type:"view",children:[{type:"pack",encode:{color:"depth"}}]}},e.prototype.getDefaultOptions=function(){return e.getDefaultOptions()},e.prototype.getSchemaAdaptor=function(){return Nd},e}(HU),Ny=function(){return(Ny=Object.assign||function(t){for(var e,n=1,r=arguments.length;ne.indexOf(r)&&(n[r]=t[r]);if(null!=t&&"function"==typeof Object.getOwnPropertySymbols)for(var i=0,r=Object.getOwnPropertySymbols(t);ie.indexOf(r[i])&&Object.prototype.propertyIsEnumerable.call(t,r[i])&&(n[r[i]]=t[r[i]]);return n},NT=(0,tn.forwardRef)(function(t,e){var n,r,i,A,a,o,s,l,c,u,f=t.chartType,h=NI(t,["chartType"]),d=h.containerStyle,p=h.containerAttributes,g=h.className,y=h.loading,v=h.loadingTemplate,b=h.errorTemplate,B=h.onReady,w=NI(h,["containerStyle","containerAttributes","className","loading","loadingTemplate","errorTemplate","onReady"]),x=(n=NU[void 0===f?"Base":f],r=NS(NS({},w),{onReady:function(t){e&&("function"==typeof e?e(t):e.current=t),null==B||B(t)}}),i=(0,tn.useRef)(null),A=(0,tn.useRef)(null),a=(0,tn.useRef)(null),o=r.onReady,s=r.onEvent,l=function(t,e){void 0===t&&(t="image/png");var n,r=null==(n=a.current)?void 0:n.getElementsByTagName("canvas")[0];return null==r?void 0:r.toDataURL(t,e)},c=function(t,e,n){void 0===t&&(t="download"),void 0===e&&(e="image/png");var r=t;-1===t.indexOf(".")&&(r="".concat(t,".").concat(e.split("/")[1]));var i=l(e,n),A=document.createElement("a");return A.href=i,A.download=r,document.body.appendChild(A),A.click(),document.body.removeChild(A),A=null,r},u=function(t,e){if(void 0===e&&(e=!1),(0,tp.isObject)(t)){var n=Object.keys(t),r=e;n.forEach(function(n){var i=t[n];"tooltip"===n&&(r=!0),(0,tp.isFunction)(i)&&ty("".concat(i))?t[n]=function(){for(var t=[],e=0;e0&&(0,tp.isString)(e)&&!(0,tp.get)(t,"scale.y.domainMax"),i=Object.isFrozen(t)?N_({},t):t;return r&&0===n.reduce(function(t,n){return t+n[e]},0)?(0,tp.set)(i,"scale.y.domainMax",1):r&&0!==n.reduce(function(t,n){return t+n[e]},0)&&(0,tp.set)(i,"scale.y.domainMax",void 0),i}var NH=function(){return(NH=Object.assign||function(t){for(var e,n=1,r=arguments.length;n=t.length?void 0:t)&&t[r++],done:!t}}};throw TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function n(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,A=n.call(t),a=[];try{for(;(void 0===e||0typeof Float32Array?Float32Array:Array;function p(){var t=new d(9);return d!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[5]=0,t[6]=0,t[7]=0),t[0]=1,t[4]=1,t[8]=1,t}Math.hypot||(Math.hypot=function(){for(var t=0,e=arguments.length;e--;)t+=arguments[e]*arguments[e];return Math.sqrt(t)});var g=function(t,e,n){var r=e[0],i=e[1],A=e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],e=e[8],u=n[0],f=n[1],h=n[2],d=n[3],p=n[4],g=n[5],y=n[6],v=n[7],n=n[8];return t[0]=u*r+f*a+h*l,t[1]=u*i+f*o+h*c,t[2]=u*A+f*s+h*e,t[3]=d*r+p*a+g*l,t[4]=d*i+p*o+g*c,t[5]=d*A+p*s+g*e,t[6]=y*r+v*a+n*l,t[7]=y*i+v*o+n*c,t[8]=y*A+v*s+n*e,t};function y(){var t=new d(16);return d!=Float32Array&&(t[1]=0,t[2]=0,t[3]=0,t[4]=0,t[6]=0,t[7]=0,t[8]=0,t[9]=0,t[11]=0,t[12]=0,t[13]=0,t[14]=0),t[0]=1,t[5]=1,t[10]=1,t[15]=1,t}var v=function(t,e,n){var r=e[0],i=e[1],A=e[2],a=e[3],o=e[4],s=e[5],l=e[6],c=e[7],u=e[8],f=e[9],h=e[10],d=e[11],p=e[12],g=e[13],y=e[14],e=e[15],v=n[0],b=n[1],B=n[2],w=n[3];return t[0]=v*r+b*o+B*u+w*p,t[1]=v*i+b*s+B*f+w*g,t[2]=v*A+b*l+B*h+w*y,t[3]=v*a+b*c+B*d+w*e,v=n[4],b=n[5],B=n[6],w=n[7],t[4]=v*r+b*o+B*u+w*p,t[5]=v*i+b*s+B*f+w*g,t[6]=v*A+b*l+B*h+w*y,t[7]=v*a+b*c+B*d+w*e,v=n[8],b=n[9],B=n[10],w=n[11],t[8]=v*r+b*o+B*u+w*p,t[9]=v*i+b*s+B*f+w*g,t[10]=v*A+b*l+B*h+w*y,t[11]=v*a+b*c+B*d+w*e,v=n[12],b=n[13],B=n[14],w=n[15],t[12]=v*r+b*o+B*u+w*p,t[13]=v*i+b*s+B*f+w*g,t[14]=v*A+b*l+B*h+w*y,t[15]=v*a+b*c+B*d+w*e,t};function b(t){for(var e=[],n=1;nn=>t(e(n)),t)}function O(t,e){return e-t?n=>(n-t)/(e-t):t=>.5}T=new d(3),d!=Float32Array&&(T[0]=0,T[1]=0,T[2]=0),T=new d(4),d!=Float32Array&&(T[0]=0,T[1]=0,T[2]=0,T[3]=0);let E=Math.sqrt(50),k=Math.sqrt(10),F=Math.sqrt(2);function Q(t,e,n){return t=Math.floor(Math.log(e=(e-t)/Math.max(0,n))/Math.LN10),n=e/10**t,0<=t?(n>=E?10:n>=k?5:n>=F?2:1)*10**t:-(10**-t)/(n>=E?10:n>=k?5:n>=F?2:1)}let M=(t,e,n=5)=>{let r=0,i=(t=[t,e]).length-1,A=t[r],a=t[i],o;return a{n.prototype.rescale=function(){this.initRange(),this.nice();var[t]=this.chooseTransforms();this.composeOutput(t,this.chooseClamp(t))},n.prototype.initRange=function(){var e=this.options.interpolator;this.options.range=t(e)},n.prototype.composeOutput=function(t,n){var{domain:r,interpolator:i,round:A}=this.getOptions(),r=e(r.map(t)),A=A?t=>o(t=i(t),"Number")?Math.round(t):t:i;this.output=C(A,r,n,t)},n.prototype.invert=void 0}}var I,T={exports:{}},L={exports:{}},_=Array.prototype.concat,P=Array.prototype.slice,H=L.exports=function(t){for(var e=[],n=0,r=t.length;nn=>t*(1-n)+e*n,$=(t,e)=>{if("number"==typeof t&&"number"==typeof e)return Y(t,e);if("string"!=typeof t||"string"!=typeof e)return()=>t;{let n=X(t),r=X(e);return null===n||null===r?n?()=>t:()=>e:t=>{var e=[,,,,];for(let a=0;a<4;a+=1){var i=n[a],A=r[a];e[a]=i*(1-t)+A*t}var[a,o,s,l]=e;return`rgba(${Math.round(a)}, ${Math.round(o)}, ${Math.round(s)}, ${l})`}}},q=(t,e)=>{let n=Y(t,e);return t=>Math.round(n(t))};function J({map:t,initKey:e},n){return e=e(n),t.has(e)?t.get(e):n}function Z(t){return"object"==typeof t?t.valueOf():t}class tt extends Map{constructor(t){if(super(),this.map=new Map,this.initKey=Z,null!==t)for(var[e,n]of t)this.set(e,n)}get(t){return super.get(J({map:this.map,initKey:this.initKey},t))}has(t){return super.has(J({map:this.map,initKey:this.initKey},t))}set(t,e){var n,r;return super.set(([{map:t,initKey:n},r]=[{map:this.map,initKey:this.initKey},t],n=n(r),t.has(n)?t.get(n):(t.set(n,r),r)),e)}delete(t){var e,n;return super.delete(([{map:t,initKey:e},n]=[{map:this.map,initKey:this.initKey},t],e=e(n),t.has(e)&&(n=t.get(e),t.delete(e)),n))}}class te{constructor(t){this.options=u({},this.getDefaultOptions()),this.update(t)}getOptions(){return this.options}update(t={}){this.options=u({},this.options,t),this.rescale(t)}rescale(t){}}let tn=Symbol("defaultUnknown");function tr(t,e,n){for(let r=0;r""+t:"object"==typeof t?t=>JSON.stringify(t):t=>t}class ta extends te{getDefaultOptions(){return{domain:[],range:[],unknown:tn}}constructor(t){super(t)}map(t){return 0===this.domainIndexMap.size&&tr(this.domainIndexMap,this.getDomain(),this.domainKey),ti({value:this.domainKey(t),mapper:this.domainIndexMap,from:this.getDomain(),to:this.getRange(),notFoundReturn:this.options.unknown})}invert(t){return 0===this.rangeIndexMap.size&&tr(this.rangeIndexMap,this.getRange(),this.rangeKey),ti({value:this.rangeKey(t),mapper:this.rangeIndexMap,from:this.getRange(),to:this.getDomain(),notFoundReturn:this.options.unknown})}rescale(t){var[e]=this.options.domain,[n]=this.options.range;this.domainKey=tA(e),this.rangeKey=tA(n),this.rangeIndexMap?(t&&!t.range||this.rangeIndexMap.clear(),(!t||t.domain||t.compare)&&(this.domainIndexMap.clear(),this.sortedDomain=void 0)):(this.rangeIndexMap=new Map,this.domainIndexMap=new Map)}clone(){return new ta(this.options)}getRange(){return this.options.range}getDomain(){var t,e;return this.sortedDomain||({domain:t,compare:e}=this.options,this.sortedDomain=e?[...t].sort(e):t),this.sortedDomain}}class to extends ta{getDefaultOptions(){return{domain:[],range:[0,1],align:.5,round:!1,paddingInner:0,paddingOuter:0,padding:0,unknown:tn,flex:[]}}constructor(t){super(t)}clone(){return new to(this.options)}getStep(t){return void 0===this.valueStep?1:"number"==typeof this.valueStep?this.valueStep:void 0===t?Array.from(this.valueStep.values())[0]:this.valueStep.get(t)}getBandWidth(t){return void 0===this.valueBandWidth?1:"number"==typeof this.valueBandWidth?this.valueBandWidth:void 0===t?Array.from(this.valueBandWidth.values())[0]:this.valueBandWidth.get(t)}getRange(){return this.adjustedRange}getPaddingInner(){var{padding:t,paddingInner:e}=this.options;return 0t/e)),g=h/p.reduce((t,e)=>t+e);var u=new tt(n.map((t,e)=>(e=p[e]*g,[t,o?Math.floor(e):e]))),y=new tt(n.map((t,e)=>(e=p[e]*g+d,[t,o?Math.floor(e):e]))),h=Array.from(y.values()).reduce((t,e)=>t+e),t=t+(f-(h-h/c*A))*s;let v=o?Math.round(t):t;var b=Array(c);for(let t=0;ts+e*a),{valueStep:a,valueBandWidth:o,adjustedRange:t}}({align:t,range:n,round:r,flex:i,paddingInner:this.getPaddingInner(),paddingOuter:this.getPaddingOuter(),domain:e});this.valueStep=r,this.valueBandWidth=n,this.adjustedRange=t}}let ts=(t,e,n)=>{let r,i,A=t,a=e;if(A===a&&0(2{let r=Math.min(t.length,e.length)-1,i=Array(r),A=Array(r);var a=t[0]>t[r],o=a?[...t].reverse():t,s=a?[...e].reverse():e;for(let t=0;t{var n=function(t,e,n){let r=1,i=n||t.length;for(var A=t=>t;re?i=a:r=a+1}return r}(t,e,r)-1,a=i[n];return C(A[n],a)(e)}}:(t,e,n)=>{let r;var[t,i]=t,[e,A]=e;return C(tMath.min(Math.max(r,t),i)}return f}composeOutput(t,e){var{domain:n,range:r,round:i,interpolate:A}=this.options,n=tl(n.map(t),r,A,i);this.output=C(n,e,t)}composeInput(t,e,n){var{domain:r,range:i}=this.options,i=tl(i,r.map(t),Y);this.input=C(e,n,i)}}class tu extends tc{getDefaultOptions(){return{domain:[0,1],range:[0,1],unknown:void 0,nice:!1,clamp:!1,round:!1,interpolate:$,tickMethod:ts,tickCount:5}}chooseTransforms(){return[f,f]}clone(){return new tu(this.options)}}class tf extends to{getDefaultOptions(){return{domain:[],range:[0,1],align:.5,round:!1,padding:0,unknown:tn,paddingInner:1,paddingOuter:0}}constructor(t){super(t)}getPaddingInner(){return 1}clone(){return new tf(this.options)}update(t){super.update(t)}getPaddingOuter(){return this.options.padding}}function th(t,e){for(var n=[],r=0,i=t.length;r{var[t,e]=t;return C(Y(0,1),O(t,e))})],tg);let ty=A=class extends tu{getDefaultOptions(){return{domain:[0,.5,1],unknown:void 0,nice:!1,clamp:!1,round:!1,interpolator:f,tickMethod:ts,tickCount:5}}constructor(t){super(t)}clone(){return new A(this.options)}};function tv(t,e,r,i,A){var a=new tu({range:[e,e+i]}),o=new tu({range:[r,r+A]});return{transform:function(t){var t=n(t,2),e=t[0],t=t[1];return[a.map(e),o.map(t)]},untransform:function(t){var t=n(t,2),e=t[0],t=t[1];return[a.invert(e),o.invert(t)]}}}function tm(t,e,r,i,A){return(0,n(t,1)[0])(e,r,i,A)}function tb(t,e,r,i,A){return n(t,1)[0]}function tB(t,e,r,i,A){var a=(t=n(t,4))[0],o=t[1],s=t[2],t=t[3],l=new tu({range:[s,t]}),c=new tu({range:[a,o]}),u=1<(s=A/i)?1:s,f=1{let[e,n,r]=t,i=C(Y(0,.5),O(e,n)),A=C(Y(.5,1),O(n,r));return t=>(e>r?t=4&&1!==t[3]&&(e=", "+t[3]),"hwb("+t[0]+", "+t[1]+"%, "+t[2]+"%"+e+")"},s.to.keyword=function(t){return a[t.slice(0,3)]}},30228(t){"use strict";var e=Object.prototype.hasOwnProperty,n="~";function r(){}function i(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function A(t,e,r,A,a){if("function"!=typeof r)throw TypeError("The listener must be a function");var o=new i(r,A||t,a),s=n?n+e:e;return t._events[s]?t._events[s].fn?t._events[s]=[t._events[s],o]:t._events[s].push(o):(t._events[s]=o,t._eventsCount++),t}function a(t,e){0==--t._eventsCount?t._events=new r:delete t._events[e]}function o(){this._events=new r,this._eventsCount=0}Object.create&&(r.prototype=Object.create(null),new r().__proto__||(n=!1)),o.prototype.eventNames=function(){var t,r,i=[];if(0===this._eventsCount)return i;for(r in t=this._events)e.call(t,r)&&i.push(n?r.slice(1):r);return Object.getOwnPropertySymbols?i.concat(Object.getOwnPropertySymbols(t)):i},o.prototype.listeners=function(t){var e=n?n+t:t,r=this._events[e];if(!r)return[];if(r.fn)return[r.fn];for(var i=0,A=r.length,a=Array(A);i0&&i[i.length-1])&&(6===s[0]||2===s[0])){a=0;continue}if(3===s[0]&&(!i||s[1]>i[0]&&s[1]=55296&&i<=56319&&n>10)+55296,a%1024+56320)),(i+1===n||r.length>16384)&&(A+=String.fromCharCode.apply(String,r),r.length=0)}return A},T="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",L="u"=0){if(t<55296||t>56319&&t<=65535)return e=((e=this.index[t>>5])<<2)+(31&t),this.data[e];if(t<=65535)return e=((e=this.index[2048+(t-55296>>5)])<<2)+(31&t),this.data[e];if(t>11),e=this.index[e]+(t>>5&63),e=((e=this.index[e])<<2)+(31&t),this.data[e];if(t<=1114111)return this.data[this.highValueIndex]}return this.errorValue},t}(),K="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",z="u"typeof ArrayBuffer&&"u">typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(a):Array(a),c=Array.isArray(l)?l:new Uint8Array(l);for(e=0;e>4,c[s++]=(15&r)<<4|i>>2,c[s++]=(3&i)<<6|63&A;return l}("KwAAAAAAAAAACA4AUD0AADAgAAACAAAAAAAIABAAGABAAEgAUABYAGAAaABgAGgAYgBqAF8AZwBgAGgAcQB5AHUAfQCFAI0AlQCdAKIAqgCyALoAYABoAGAAaABgAGgAwgDKAGAAaADGAM4A0wDbAOEA6QDxAPkAAQEJAQ8BFwF1AH0AHAEkASwBNAE6AUIBQQFJAVEBWQFhAWgBcAF4ATAAgAGGAY4BlQGXAZ8BpwGvAbUBvQHFAc0B0wHbAeMB6wHxAfkBAQIJAvEBEQIZAiECKQIxAjgCQAJGAk4CVgJeAmQCbAJ0AnwCgQKJApECmQKgAqgCsAK4ArwCxAIwAMwC0wLbAjAA4wLrAvMC+AIAAwcDDwMwABcDHQMlAy0DNQN1AD0DQQNJA0kDSQNRA1EDVwNZA1kDdQB1AGEDdQBpA20DdQN1AHsDdQCBA4kDkQN1AHUAmQOhA3UAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AKYDrgN1AHUAtgO+A8YDzgPWAxcD3gPjA+sD8wN1AHUA+wMDBAkEdQANBBUEHQQlBCoEFwMyBDgEYABABBcDSARQBFgEYARoBDAAcAQzAXgEgASIBJAEdQCXBHUAnwSnBK4EtgS6BMIEyAR1AHUAdQB1AHUAdQCVANAEYABgAGAAYABgAGAAYABgANgEYADcBOQEYADsBPQE/AQEBQwFFAUcBSQFLAU0BWQEPAVEBUsFUwVbBWAAYgVgAGoFcgV6BYIFigWRBWAAmQWfBaYFYABgAGAAYABgAKoFYACxBbAFuQW6BcEFwQXHBcEFwQXPBdMF2wXjBeoF8gX6BQIGCgYSBhoGIgYqBjIGOgZgAD4GRgZMBmAAUwZaBmAAYABgAGAAYABgAGAAYABgAGAAYABgAGIGYABpBnAGYABgAGAAYABgAGAAYABgAGAAYAB4Bn8GhQZgAGAAYAB1AHcDFQSLBmAAYABgAJMGdQA9A3UAmwajBqsGqwaVALMGuwbDBjAAywbSBtIG1QbSBtIG0gbSBtIG0gbdBuMG6wbzBvsGAwcLBxMHAwcbByMHJwcsBywHMQcsB9IGOAdAB0gHTgfSBkgHVgfSBtIG0gbSBtIG0gbSBtIG0gbSBiwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdgAGAALAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAdbB2MHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB2kH0gZwB64EdQB1AHUAdQB1AHUAdQB1AHUHfQdgAIUHjQd1AHUAlQedB2AAYAClB6sHYACzB7YHvgfGB3UAzgfWBzMB3gfmB1EB7gf1B/0HlQENAQUIDQh1ABUIHQglCBcDLQg1CD0IRQhNCEEDUwh1AHUAdQBbCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIaQhjCGQIZQhmCGcIaAhpCGMIZAhlCGYIZwhoCGkIYwhkCGUIZghnCGgIcAh3CHoIMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIgggwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAALAcsBywHLAcsBywHLAcsBywHLAcsB4oILAcsB44I0gaWCJ4Ipgh1AHUAqgiyCHUAdQB1AHUAdQB1AHUAdQB1AHUAtwh8AXUAvwh1AMUIyQjRCNkI4AjoCHUAdQB1AO4I9gj+CAYJDgkTCS0HGwkjCYIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiCCIIIggiAAIAAAAFAAYABgAGIAXwBgAHEAdQBFAJUAogCyAKAAYABgAEIA4ABGANMA4QDxAMEBDwE1AFwBLAE6AQEBUQF4QkhCmEKoQrhCgAHIQsAB0MLAAcABwAHAAeDC6ABoAHDCwMMAAcABwAHAAdDDGMMAAcAB6MM4wwjDWMNow3jDaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAGgAaABoAEjDqABWw6bDqABpg6gAaABoAHcDvwOPA+gAaABfA/8DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DvwO/A78DpcPAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcAB9cPKwkyCToJMAB1AHUAdQBCCUoJTQl1AFUJXAljCWcJawkwADAAMAAwAHMJdQB2CX4JdQCECYoJjgmWCXUAngkwAGAAYABxAHUApgn3A64JtAl1ALkJdQDACTAAMAAwADAAdQB1AHUAdQB1AHUAdQB1AHUAowYNBMUIMAAwADAAMADICcsJ0wnZCRUE4QkwAOkJ8An4CTAAMAB1AAAKvwh1AAgKDwoXCh8KdQAwACcKLgp1ADYKqAmICT4KRgowADAAdQB1AE4KMAB1AFYKdQBeCnUAZQowADAAMAAwADAAMAAwADAAMAAVBHUAbQowADAAdQC5CXUKMAAwAHwBxAijBogEMgF9CoQKiASMCpQKmgqIBKIKqgquCogEDQG2Cr4KxgrLCjAAMADTCtsKCgHjCusK8Qr5CgELMAAwADAAMAB1AIsECQsRC3UANAEZCzAAMAAwADAAMAB1ACELKQswAHUANAExCzkLdQBBC0kLMABRC1kLMAAwADAAMAAwADAAdQBhCzAAMAAwAGAAYABpC3ELdwt/CzAAMACHC4sLkwubC58Lpwt1AK4Ltgt1APsDMAAwADAAMAAwADAAMAAwAL4LwwvLC9IL1wvdCzAAMADlC+kL8Qv5C/8LSQswADAAMAAwADAAMAAwADAAMAAHDDAAMAAwADAAMAAODBYMHgx1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1ACYMMAAwADAAdQB1AHUALgx1AHUAdQB1AHUAdQA2DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AD4MdQBGDHUAdQB1AHUAdQB1AEkMdQB1AHUAdQB1AFAMMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQBYDHUAdQB1AF8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUA+wMVBGcMMAAwAHwBbwx1AHcMfwyHDI8MMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAYABgAJcMMAAwADAAdQB1AJ8MlQClDDAAMACtDCwHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsB7UMLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHdQB1AHUAdQB1AHUAdQB1AHUAdQB1AHUAdQB1AA0EMAC9DDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAsBywHLAcsBywHLAcsBywHLQcwAMEMyAwsBywHLAcsBywHLAcsBywHLAcsBywHzAwwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwAHUAdQB1ANQM2QzhDDAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMABgAGAAYABgAGAAYABgAOkMYADxDGAA+AwADQYNYABhCWAAYAAODTAAMAAwADAAFg1gAGAAHg37AzAAMAAwADAAYABgACYNYAAsDTQNPA1gAEMNPg1LDWAAYABgAGAAYABgAGAAYABgAGAAUg1aDYsGVglhDV0NcQBnDW0NdQ15DWAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAlQCBDZUAiA2PDZcNMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAnw2nDTAAMAAwADAAMAAwAHUArw23DTAAMAAwADAAMAAwADAAMAAwADAAMAB1AL8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAB1AHUAdQB1AHUAdQDHDTAAYABgAM8NMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA1w11ANwNMAAwAD0B5A0wADAAMAAwADAAMADsDfQN/A0EDgwOFA4wABsOMAAwADAAMAAwADAAMAAwANIG0gbSBtIG0gbSBtIG0gYjDigOwQUuDsEFMw7SBjoO0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGQg5KDlIOVg7SBtIGXg5lDm0OdQ7SBtIGfQ6EDooOjQ6UDtIGmg6hDtIG0gaoDqwO0ga0DrwO0gZgAGAAYADEDmAAYAAkBtIGzA5gANIOYADaDokO0gbSBt8O5w7SBu8O0gb1DvwO0gZgAGAAxA7SBtIG0gbSBtIGYABgAGAAYAAED2AAsAUMD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHJA8sBywHLAcsBywHLAccDywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywPLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAc0D9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAccD9IG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIGFA8sBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHLAcsBywHPA/SBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gbSBtIG0gYUD0QPlQCVAJUAMAAwADAAMACVAJUAlQCVAJUAlQCVAEwPMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAA//8EAAQABAAEAAQABAAEAAQABAANAAMAAQABAAIABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQACgATABcAHgAbABoAHgAXABYAEgAeABsAGAAPABgAHABLAEsASwBLAEsASwBLAEsASwBLABgAGAAeAB4AHgATAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABYAGwASAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWAA0AEQAeAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAFAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJABYAGgAbABsAGwAeAB0AHQAeAE8AFwAeAA0AHgAeABoAGwBPAE8ADgBQAB0AHQAdAE8ATwAXAE8ATwBPABYAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AHgAeAFAATwBAAE8ATwBPAEAATwBQAFAATwBQAB4AHgAeAB4AHgAeAB0AHQAdAB0AHgAdAB4ADgBQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgBQAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAJAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAkACQAJAAkACQAJAAkABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAFAAHgAeAB4AKwArAFAAUABQAFAAGABQACsAKwArACsAHgAeAFAAHgBQAFAAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUAAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAYAA0AKwArAB4AHgAbACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAB4ABAAEAB4ABAAEABMABAArACsAKwArACsAKwArACsAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAKwArACsAKwBWAFYAVgBWAB4AHgArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AGgAaABoAGAAYAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQAEwAEACsAEwATAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABLAEsASwBLAEsASwBLAEsASwBLABoAGQAZAB4AUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQABMAUAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABABQAFAABAAEAB4ABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUAAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAFAABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQAUABQAB4AHgAYABMAUAArACsABAAbABsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAFAABAAEAAQABAAEAFAABAAEAAQAUAAEAAQABAAEAAQAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArACsAHgArAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAUAAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEAA0ADQBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUAArACsAKwBQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABABQACsAKwArACsAKwArACsAKwAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUAAaABoAUABQAFAAUABQAEwAHgAbAFAAHgAEACsAKwAEAAQABAArAFAAUABQAFAAUABQACsAKwArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQACsAUABQACsAKwAEACsABAAEAAQABAAEACsAKwArACsABAAEACsAKwAEAAQABAArACsAKwAEACsAKwArACsAKwArACsAUABQAFAAUAArAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLAAQABABQAFAAUAAEAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsAKwAEAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAArACsAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AGwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAKwArACsAKwArAAQABAAEACsAKwArACsAUABQACsAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAAQAUAArAFAAUABQAFAAUABQACsAKwArAFAAUABQACsAUABQAFAAUAArACsAKwBQAFAAKwBQACsAUABQACsAKwArAFAAUAArACsAKwBQAFAAUAArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArAAQABAAEAAQABAArACsAKwAEAAQABAArAAQABAAEAAQAKwArAFAAKwArACsAKwArACsABAArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAHgAeAB4AHgAeAB4AGwAeACsAKwArACsAKwAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAUABQAFAAKwArACsAKwArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwAOAFAAUABQAFAAUABQAFAAHgBQAAQABAAEAA4AUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAKwArAAQAUAAEAAQABAAEAAQABAAEACsABAAEAAQAKwAEAAQABAAEACsAKwArACsAKwArACsABAAEACsAKwArACsAKwArACsAUAArAFAAUAAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAFAABAAEAAQABAAEAAQABAArAAQABAAEACsABAAEAAQABABQAB4AKwArACsAKwBQAFAAUAAEAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQABoAUABQAFAAUABQAFAAKwAEAAQABAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQACsAUAArACsAUABQAFAAUABQAFAAUAArACsAKwAEACsAKwArACsABAAEAAQABAAEAAQAKwAEACsABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArAAQABAAeACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAXAAqACoAKgAqACoAKgAqACsAKwArACsAGwBcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAeAEsASwBLAEsASwBLAEsASwBLAEsADQANACsAKwArACsAKwBcAFwAKwBcACsAXABcAFwAXABcACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAXAArAFwAXABcAFwAXABcAFwAXABcAFwAKgBcAFwAKgAqACoAKgAqACoAKgAqACoAXAArACsAXABcAFwAXABcACsAXAArACoAKgAqACoAKgAqACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwBcAFwAXABcAFAADgAOAA4ADgAeAA4ADgAJAA4ADgANAAkAEwATABMAEwATAAkAHgATAB4AHgAeAAQABAAeAB4AHgAeAB4AHgBLAEsASwBLAEsASwBLAEsASwBLAFAAUABQAFAAUABQAFAAUABQAFAADQAEAB4ABAAeAAQAFgARABYAEQAEAAQAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQADQAEAAQABAAEAAQADQAEAAQAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAA0ADQAeAB4AHgAeAB4AHgAEAB4AHgAeAB4AHgAeACsAHgAeAA4ADgANAA4AHgAeAB4AHgAeAAkACQArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgBcAEsASwBLAEsASwBLAEsASwBLAEsADQANAB4AHgAeAB4AXABcAFwAXABcAFwAKgAqACoAKgBcAFwAXABcACoAKgAqAFwAKgAqACoAXABcACoAKgAqACoAKgAqACoAXABcAFwAKgAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKgAqAFwAKgBLAEsASwBLAEsASwBLAEsASwBLACoAKgAqACoAKgAqAFAAUABQAFAAUABQACsAUAArACsAKwArACsAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAKwBQACsAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsABAAEAAQAHgANAB4AHgAeAB4AHgAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUAArACsADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAWABEAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQANAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAANAA0AKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUAArAAQABAArACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqAA0ADQAVAFwADQAeAA0AGwBcACoAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwAeAB4AEwATAA0ADQAOAB4AEwATAB4ABAAEAAQACQArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAHgArACsAKwATABMASwBLAEsASwBLAEsASwBLAEsASwBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAXABcAFwAXABcACsAKwArACsAKwArACsAKwArACsAKwBcAFwAXABcAFwAXABcAFwAXABcAFwAXAArACsAKwArAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAXAArACsAKwAqACoAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAArACsAHgAeAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcACoAKgAqACoAKgAqACoAKgAqACoAKwAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKwArAAQASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACoAKgAqACoAKgAqACoAXAAqACoAKgAqACoAKgArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABABQAFAAUABQAFAAUABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwANAA0AHgANAA0ADQANAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAEAAQABAAEAAQAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwAeAB4AHgAeAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArAA0ADQANAA0ADQBLAEsASwBLAEsASwBLAEsASwBLACsAKwArAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAA0ADQBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUAAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArAAQABAAEAB4ABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAAQAUABQAFAAUABQAFAABABQAFAABAAEAAQAUAArACsAKwArACsABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQACsAUAArAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAFAAUABQACsAHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQACsAKwAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQACsAHgAeAB4AHgAeAB4AHgAOAB4AKwANAA0ADQANAA0ADQANAAkADQANAA0ACAAEAAsABAAEAA0ACQANAA0ADAAdAB0AHgAXABcAFgAXABcAFwAWABcAHQAdAB4AHgAUABQAFAANAAEAAQAEAAQABAAEAAQACQAaABoAGgAaABoAGgAaABoAHgAXABcAHQAVABUAHgAeAB4AHgAeAB4AGAAWABEAFQAVABUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ADQAeAA0ADQANAA0AHgANAA0ADQAHAB4AHgAeAB4AKwAEAAQABAAEAAQABAAEAAQABAAEAFAAUAArACsATwBQAFAAUABQAFAAHgAeAB4AFgARAE8AUABPAE8ATwBPAFAAUABQAFAAUAAeAB4AHgAWABEAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArABsAGwAbABsAGwAbABsAGgAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGgAbABsAGwAbABoAGwAbABoAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbABsAGwAbAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAHgAeAFAAGgAeAB0AHgBQAB4AGgAeAB4AHgAeAB4AHgAeAB4AHgBPAB4AUAAbAB4AHgBQAFAAUABQAFAAHgAeAB4AHQAdAB4AUAAeAFAAHgBQAB4AUABPAFAAUAAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAHgBQAFAAUABQAE8ATwBQAFAAUABQAFAATwBQAFAATwBQAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAUABQAFAATwBPAE8ATwBPAE8ATwBPAE8ATwBQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABPAB4AHgArACsAKwArAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHQAdAB4AHgAeAB0AHQAeAB4AHQAeAB4AHgAdAB4AHQAbABsAHgAdAB4AHgAeAB4AHQAeAB4AHQAdAB0AHQAeAB4AHQAeAB0AHgAdAB0AHQAdAB0AHQAeAB0AHgAeAB4AHgAeAB0AHQAdAB0AHgAeAB4AHgAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB4AHgAeAB0AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAeAB0AHQAdAB0AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAdAB4AHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAWABEAHgAeAB4AHgAeAB4AHQAeAB4AHgAeAB4AHgAeACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAWABEAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAFAAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAeAB4AHQAdAB0AHQAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB0AHQAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB0AHQAeAB4AHQAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AHQAdAB0AHgAeAB0AHgAeAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlAB4AHQAdAB4AHgAdAB4AHgAeAB4AHQAdAB4AHgAeAB4AJQAlAB0AHQAlAB4AJQAlACUAIAAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAeAB4AHgAeAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHgAdAB0AHQAeAB0AJQAdAB0AHgAdAB0AHgAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHQAdAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAdAB0AHQAdACUAHgAlACUAJQAdACUAJQAdAB0AHQAlACUAHQAdACUAHQAdACUAJQAlAB4AHQAeAB4AHgAeAB0AHQAlAB0AHQAdAB0AHQAdACUAJQAlACUAJQAdACUAJQAgACUAHQAdACUAJQAlACUAJQAlACUAJQAeAB4AHgAlACUAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB0AHgAeAB4AFwAXABcAFwAXABcAHgATABMAJQAeAB4AHgAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARABYAEQAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAWABEAFgARABYAEQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAWABEAFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AFgARAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAdAB0AHQAdAB0AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAFAAUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAEAAQABAAeAB4AKwArACsAKwArABMADQANAA0AUAATAA0AUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUAANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAA0ADQANAA0ADQANAA0ADQAeAA0AFgANAB4AHgAXABcAHgAeABcAFwAWABEAFgARABYAEQAWABEADQANAA0ADQATAFAADQANAB4ADQANAB4AHgAeAB4AHgAMAAwADQANAA0AHgANAA0AFgANAA0ADQANAA0ADQANAA0AHgANAB4ADQANAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArACsAKwArACsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArAA0AEQARACUAJQBHAFcAVwAWABEAFgARABYAEQAWABEAFgARACUAJQAWABEAFgARABYAEQAWABEAFQAWABEAEQAlAFcAVwBXAFcAVwBXAFcAVwBXAAQABAAEAAQABAAEACUAVwBXAFcAVwA2ACUAJQBXAFcAVwBHAEcAJQAlACUAKwBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBRAFcAUQBXAFEAVwBXAFcAVwBXAFcAUQBXAFcAVwBXAFcAVwBRAFEAKwArAAQABAAVABUARwBHAFcAFQBRAFcAUQBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFEAVwBRAFcAUQBXAFcAVwBXAFcAVwBRAFcAVwBXAFcAVwBXAFEAUQBXAFcAVwBXABUAUQBHAEcAVwArACsAKwArACsAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwAlACUAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACsAKwArACsAKwArACsAKwArACsAKwArAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAUQBRAFEAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBPAE8ATwBPAE8ATwBPAE8AJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADQATAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABLAEsASwBLAEsASwBLAEsASwBLAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAABAAEAAQABAAeAAQABAAEAAQABAAEAAQABAAEAAQAHgBQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUABQAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAeAA0ADQANAA0ADQArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AUAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAB4AHgAeAB4AHgAeAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AUABQAFAAUABQAFAAUABQAFAAUABQAAQAUABQAFAABABQAFAAUABQAAQAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAeAB4AHgAeAAQAKwArACsAUABQAFAAUABQAFAAHgAeABoAHgArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAADgAOABMAEwArACsAKwArACsAKwArACsABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwANAA0ASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUAAeAB4AHgBQAA4AUABQAAQAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArAB4AWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYAFgAWABYACsAKwArAAQAHgAeAB4AHgAeAB4ADQANAA0AHgAeAB4AHgArAFAASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArAB4AHgBcAFwAXABcAFwAKgBcAFwAXABcAFwAXABcAFwAXABcAEsASwBLAEsASwBLAEsASwBLAEsAXABcAFwAXABcACsAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAFAAUABQAAQAUABQAFAAUABQAFAAUABQAAQABAArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAHgANAA0ADQBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKgAqACoAXAAqACoAKgBcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXAAqAFwAKgAqACoAXABcACoAKgBcAFwAXABcAFwAKgAqAFwAKgBcACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFwAXABcACoAKgBQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAA0ADQBQAFAAUAAEAAQAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQADQAEAAQAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAVABVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBUAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVAFUAVQBVACsAKwArACsAKwArACsAKwArACsAKwArAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAWQBZAFkAKwArACsAKwBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAWgBaAFoAKwArACsAKwAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYABgAGAAYAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAKwArACsAKwArAFYABABWAFYAVgBWAFYAVgBWAFYAVgBWAB4AVgBWAFYAVgBWAFYAVgBWAFYAVgBWAFYAVgArAFYAVgBWAFYAVgArAFYAKwBWAFYAKwBWAFYAKwBWAFYAVgBWAFYAVgBWAFYAVgBWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAEQAWAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAaAB4AKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAGAARABEAGAAYABMAEwAWABEAFAArACsAKwArACsAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACUAJQAlACUAJQAWABEAFgARABYAEQAWABEAFgARABYAEQAlACUAFgARACUAJQAlACUAJQAlACUAEQAlABEAKwAVABUAEwATACUAFgARABYAEQAWABEAJQAlACUAJQAlACUAJQAlACsAJQAbABoAJQArACsAKwArAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAcAKwATACUAJQAbABoAJQAlABYAEQAlACUAEQAlABEAJQBXAFcAVwBXAFcAVwBXAFcAVwBXABUAFQAlACUAJQATACUAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXABYAJQARACUAJQAlAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAWACUAEQAlABYAEQARABYAEQARABUAVwBRAFEAUQBRAFEAUQBRAFEAUQBRAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAEcARwArACsAVwBXAFcAVwBXAFcAKwArAFcAVwBXAFcAVwBXACsAKwBXAFcAVwBXAFcAVwArACsAVwBXAFcAKwArACsAGgAbACUAJQAlABsAGwArAB4AHgAeAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwAEAAQABAAQAB0AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsADQANAA0AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAA0AUABQAFAAUAArACsAKwArAFAAUABQAFAAUABQAFAAUAANAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwArAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwBQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwANAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAB4AUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAUABQAFAAUABQAAQABAAEACsABAAEACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAKwBQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAA0ADQANAA0ADQANAA0ADQAeACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAArACsAKwArAFAAUABQAFAAUAANAA0ADQANAA0ADQAUACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsADQANAA0ADQANAA0ADQBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAB4AHgAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArAAQABAANACsAKwBQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAB4AHgAeAB4AHgArACsAKwArACsAKwAEAAQABAAEAAQABAAEAA0ADQAeAB4AHgAeAB4AKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwAeACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEACsASwBLAEsASwBLAEsASwBLAEsASwANAA0ADQANAFAABAAEAFAAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAeAA4AUAArACsAKwArACsAKwArACsAKwAEAFAAUABQAFAADQANAB4ADQAEAAQABAAEAB4ABAAEAEsASwBLAEsASwBLAEsASwBLAEsAUAAOAFAADQANAA0AKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAANAA0AHgANAA0AHgAEACsAUABQAFAAUABQAFAAUAArAFAAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAA0AKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsABAAEAAQABAArAFAAUABQAFAAUABQAFAAUAArACsAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQACsABAAEAFAABAAEAAQABAAEAAQABAArACsABAAEACsAKwAEAAQABAArACsAUAArACsAKwArACsAKwAEACsAKwArACsAKwBQAFAAUABQAFAABAAEACsAKwAEAAQABAAEAAQABAAEACsAKwArAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsABAAEAAQABAAEAAQABABQAFAAUABQAA0ADQANAA0AHgBLAEsASwBLAEsASwBLAEsASwBLAA0ADQArAB4ABABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAFAAUAAeAFAAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABAAEAAQADgANAA0AEwATAB4AHgAeAA0ADQANAA0ADQANAA0ADQANAA0ADQANAA0ADQANAFAAUABQAFAABAAEACsAKwAEAA0ADQAeAFAAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAFAAKwArACsAKwArACsAKwBLAEsASwBLAEsASwBLAEsASwBLACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAXABcAFwAKwArACoAKgAqACoAKgAqACoAKgAqACoAKgAqACoAKgAqACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBcAFwADQANAA0AKgBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAKwArAFAAKwArAFAAUABQAFAAUABQAFAAUAArAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQAKwAEAAQAKwArAAQABAAEAAQAUAAEAFAABAAEAA0ADQANACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAArACsABAAEAAQABAAEAAQABABQAA4AUAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAABAAEAAQABAAEAAQABAAEAAQABABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAFAABAAEAAQABAAOAB4ADQANAA0ADQAOAB4ABAArACsAKwArACsAKwArACsAUAAEAAQABAAEAAQABAAEAAQABAAEAAQAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAA0ADQANAFAADgAOAA4ADQANACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAEAAQABAAEACsABAAEAAQABAAEAAQABAAEAFAADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAOABMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQACsAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAArACsAKwAEACsABAAEACsABAAEAAQABAAEAAQABABQAAQAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAUABQAFAAUABQAFAAKwBQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAUAArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAABAAEAAQABAAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAaABoAGgAaAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArAA0AUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsADQANAA0ADQANACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABIAEgAQwBDAEMAUABQAFAAUABDAFAAUABQAEgAQwBIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAASABDAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwAJAAkACQAJAAkACQAJABYAEQArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABIAEMAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwANAA0AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArAAQABAAEAAQABAANACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEAA0ADQANAB4AHgAeAB4AHgAeAFAAUABQAFAADQAeACsAKwArACsAKwArACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAANAA0AHgAeACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwAEAFAABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwAEAAQABAAEAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAARwBHABUARwAJACsAKwArACsAKwArACsAKwArACsAKwAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUQBRAFEAKwArACsAKwArACsAKwArACsAKwArACsAKwBRAFEAUQBRACsAKwArACsAKwArACsAKwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUAArACsAHgAEAAQADQAEAAQABAAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAAQABAAEAAQABAAeAB4AHgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAB4AHgAEAAQABAAEAAQABAAEAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4ABAAEAAQAHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwArACsAKwArACsAKwArACsAKwArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAKwArAFAAKwArAFAAUAArACsAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACsAUAArAFAAUABQAFAAUABQAFAAKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwBQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAHgAeAFAAUABQAFAAUAArAFAAKwArACsAUABQAFAAUABQAFAAUAArAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAB4AHgAeAB4AHgAeAB4AHgAeACsAKwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAEsASwBLAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAeAB4AHgAeAB4AHgAeAB4ABAAeAB4AHgAeAB4AHgAeAB4AHgAeAAQAHgAeAA0ADQANAA0AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQAKwAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArAAQABAAEAAQABAAEAAQAKwAEAAQAKwAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwAEAAQABAAEAAQABAAEAFAAUABQAFAAUABQAFAAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwBQAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArABsAUABQAFAAUABQACsAKwBQAFAAUABQAFAAUABQAFAAUAAEAAQABAAEAAQABAAEACsAKwArACsAKwArACsAKwArAB4AHgAeAB4ABAAEAAQABAAEAAQABABQACsAKwArACsASwBLAEsASwBLAEsASwBLAEsASwArACsAKwArABYAFgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAGgBQAFAAUAAaAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAeAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQACsAKwBQAFAAUABQACsAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUAArACsAKwArACsAKwBQACsAKwArACsAUAArAFAAKwBQACsAUABQAFAAKwBQAFAAKwBQACsAKwBQACsAUAArAFAAKwBQACsAUAArAFAAUAArAFAAKwArAFAAUABQAFAAKwBQAFAAUABQAFAAUABQACsAUABQAFAAUAArAFAAUABQAFAAKwBQACsAUABQAFAAUABQAFAAUABQAFAAUAArAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAArACsAKwArACsAUABQAFAAKwBQAFAAUABQAFAAKwBQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwAeAB4AKwArACsAKwArACsAKwArACsAKwArACsAKwArAE8ATwBPAE8ATwBPAE8ATwBPAE8ATwBPAE8AJQAlACUAHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHgAeAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB4AHgAeACUAJQAlAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAdAB0AHQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAKQApACkAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAlACUAJQAlACUAHgAlACUAJQAlACUAIAAgACAAJQAlACAAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACEAIQAhACEAIQAlACUAIAAgACUAJQAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlACUAIAAlACUAJQAlACAAIAAgACUAIAAgACAAJQAlACUAJQAlACUAJQAgACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAlAB4AJQAeACUAJQAlACUAJQAgACUAJQAlACUAHgAlAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAgACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACAAIAAgACAAIAAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeABcAFwAXABUAFQAVAB4AHgAeAB4AJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAgACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlACUAJQAeAB4AHgAeAB4AHgAeAB4AHgAeACUAJQAlACUAJQAlAB4AHgAeAB4AHgAeAB4AHgAlACUAJQAlACUAJQAlACUAHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAgACUAJQAgACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAJQAlACUAJQAlACUAIAAlACUAJQAlACUAJQAlACUAJQAgACAAIAAgACAAIAAgACAAIAAgACUAJQAgACAAIAAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACAAIAAlACAAIAAlACAAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAgACAAIAAlACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAJQAlAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AKwAeAB4AHgAeAB4AHgAeAB4AHgAeAB4AHgArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAEsASwBLAEsASwBLAEsASwBLAEsAKwArACsAKwArACsAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwArAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwAlACUAJQAlACUAJQAlACUAJQAlACUAVwBXACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQBXAFcAVwBXAFcAVwBXAFcAVwBXAFcAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAJQAlACUAKwAEACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArACsAKwArAA=="))?function(t){for(var e=t.length,n=[],r=0;r50?(i.push(!0),a-=50):i.push(!1),-1!==["normal","auto","loose"].indexOf(e)&&-1!==[8208,8211,12316,12448].indexOf(t))return r.push(A),n.push(16);if(4===a||11===a){if(0===A)return r.push(A),n.push(30);var o=n[A-1];return -1===J.indexOf(o)?(r.push(r[A-1]),n.push(o)):(r.push(A),n.push(30))}if(r.push(A),31===a)return n.push("strict"===e?21:37);if(42===a||29===a)return n.push(30);if(43===a)if(t>=131072&&t<=196605||t>=196608&&t<=262141)return n.push(37);else return n.push(30);n.push(a)}),[r,n,i]},tn=function(t,e,n,r){var i=r[n];if(Array.isArray(t)?-1!==t.indexOf(i):t===i)for(var A=n;A<=r.length;){var a=r[++A];if(a===e)return!0;if(10!==a)break}if(10===i)for(var A=n;A>0;){var o=r[--A];if(Array.isArray(t)?-1!==t.indexOf(o):t===o)for(var s=n;s<=r.length;){var a=r[++s];if(a===e)return!0;if(10!==a)break}if(10!==o)break}return!1},tr=function(t,e){for(var n=t;n>=0;){var r=e[n];if(10!==r)return r;n--}return 0},ti=function(t,e,n,r,i){if(0===n[r])return"\xd7";var A=r-1;if(Array.isArray(i)&&!0===i[A])return"\xd7";var a=A-1,o=A+1,s=e[A],l=a>=0?e[a]:0,c=e[o];if(2===s&&3===c)return"\xd7";if(-1!==Y.indexOf(s))return"!";if(-1!==Y.indexOf(c)||-1!==$.indexOf(c))return"\xd7";if(8===tr(A,e))return"\xf7";if(11===W.get(t[A])||(32===s||33===s)&&11===W.get(t[o])||7===s||7===c||9===s||-1===[10,13,15].indexOf(s)&&9===c||-1!==[17,18,19,24,28].indexOf(c)||22===tr(A,e)||tn(23,22,A,e)||tn([17,18],21,A,e)||tn(12,12,A,e))return"\xd7";if(10===s)return"\xf7";if(23===s||23===c)return"\xd7";if(16===c||16===s)return"\xf7";if(-1!==[13,15,21].indexOf(c)||14===s||36===l&&-1!==tt.indexOf(s)||28===s&&36===c||20===c||-1!==X.indexOf(c)&&25===s||-1!==X.indexOf(s)&&25===c||27===s&&-1!==[37,32,33].indexOf(c)||-1!==[37,32,33].indexOf(s)&&26===c||-1!==X.indexOf(s)&&-1!==q.indexOf(c)||-1!==q.indexOf(s)&&-1!==X.indexOf(c)||-1!==[27,26].indexOf(s)&&(25===c||-1!==[22,15].indexOf(c)&&25===e[o+1])||-1!==[22,15].indexOf(s)&&25===c||25===s&&-1!==[25,28,24].indexOf(c))return"\xd7";if(-1!==[25,28,24,17,18].indexOf(c))for(var u=A;u>=0;){var f=e[u];if(25===f)return"\xd7";if(-1!==[28,24].indexOf(f))u--;else break}if(-1!==[27,26].indexOf(c))for(var u=-1!==[17,18].indexOf(s)?a:A;u>=0;){var f=e[u];if(25===f)return"\xd7";if(-1!==[28,24].indexOf(f))u--;else break}if(38===s&&-1!==[38,39,34,35].indexOf(c)||-1!==[39,34].indexOf(s)&&-1!==[39,40].indexOf(c)||-1!==[40,35].indexOf(s)&&40===c||-1!==Z.indexOf(s)&&-1!==[20,26].indexOf(c)||-1!==Z.indexOf(c)&&27===s||-1!==X.indexOf(s)&&-1!==X.indexOf(c)||24===s&&-1!==X.indexOf(c)||-1!==X.concat(25).indexOf(s)&&22===c&&-1===V.indexOf(t[o])||-1!==X.concat(25).indexOf(c)&&18===s)return"\xd7";if(41===s&&41===c){for(var h=n[A],d=1;h>0;)if(41===e[--h])d++;else break;if(d%2!=0)return"\xd7"}return 32===s&&33===c?"\xd7":"\xf7"},tA=function(t,e){e||(e={lineBreak:"normal",wordBreak:"normal"});var n=te(t,e.lineBreak),r=n[0],i=n[1],A=n[2];return("break-all"===e.wordBreak||"break-word"===e.wordBreak)&&(i=i.map(function(t){return -1!==[25,30,42].indexOf(t)?37:t})),[r,i,"keep-all"===e.wordBreak?A.map(function(e,n){return e&&t[n]>=19968&&t[n]<=40959}):void 0]},ta=function(){function t(t,e,n,r){this.codePoints=t,this.required="!"===e,this.start=n,this.end=r}return t.prototype.slice=function(){return I.apply(void 0,this.codePoints.slice(this.start,this.end))},t}(),to=function(t,e){var n=S(t),r=tA(n,e),i=r[0],A=r[1],a=r[2],o=n.length,s=0,l=0;return{next:function(){if(l>=o)return{done:!0,value:null};for(var t="\xd7";l=48&&t<=57},tl=function(t){return ts(t)||t>=65&&t<=70||t>=97&&t<=102},tc=function(t){return t>=97&&t<=122||t>=65&&t<=90},tu=function(t){return 10===t||9===t||32===t},tf=function(t){return tc(t)||t>=128||95===t},th=function(t){return tf(t)||ts(t)||45===t},td=function(t,e){return 92===t&&10!==e},tp=function(t,e,n){return 45===t?tf(e)||td(e,n):!!(tf(t)||92===t&&td(t,e))||!1},tg=function(t,e,n){return 43===t||45===t?!!ts(e)||46===e&&ts(n):46===t?ts(e):ts(t)},ty=function(t){var e=0,n=1;(43===t[0]||45===t[e])&&(45===t[e]&&(n=-1),e++);for(var r=[];ts(t[e]);)r.push(t[e++]);var i=r.length?parseInt(I.apply(void 0,r),10):0;46===t[e]&&e++;for(var A=[];ts(t[e]);)A.push(t[e++]);var a=A.length,o=a?parseInt(I.apply(void 0,A),10):0;(69===t[e]||101===t[e])&&e++;var s=1;(43===t[e]||45===t[e])&&(45===t[e]&&(s=-1),e++);for(var l=[];ts(t[e]);)l.push(t[e++]);return n*(i+o*Math.pow(10,-a))*Math.pow(10,s*(l.length?parseInt(I.apply(void 0,l),10):0))},tv={type:2},tm={type:3},tb={type:4},tB={type:13},tw={type:8},tx={type:21},tC={type:9},tO={type:10},tE={type:11},tk={type:12},tF={type:14},tQ={type:23},tM={type:1},tU={type:25},tS={type:24},tI={type:26},tT={type:27},tL={type:28},t_={type:29},tP={type:31},tH={type:32},tj=function(){function t(){this._value=[]}return t.prototype.write=function(t){this._value=this._value.concat(S(t))},t.prototype.read=function(){for(var t=[],e=this.consumeToken();e!==tH;)t.push(e),e=this.consumeToken();return t},t.prototype.consumeToken=function(){var t=this.consumeCodePoint();switch(t){case 34:return this.consumeStringToken(34);case 35:var e=this.peekCodePoint(0),n=this.peekCodePoint(1),r=this.peekCodePoint(2);if(th(e)||td(n,r)){var i=tp(e,n,r)?2:1,A=this.consumeName();return{type:5,value:A,flags:i}}break;case 36:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),tB;break;case 39:return this.consumeStringToken(39);case 40:return tv;case 41:return tm;case 42:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),tF;break;case 43:case 46:if(tg(t,this.peekCodePoint(0),this.peekCodePoint(1)))return this.reconsumeCodePoint(t),this.consumeNumericToken();break;case 44:return tb;case 45:var a=this.peekCodePoint(0),o=this.peekCodePoint(1);if(tg(t,a,o))return this.reconsumeCodePoint(t),this.consumeNumericToken();if(tp(t,a,o))return this.reconsumeCodePoint(t),this.consumeIdentLikeToken();if(45===a&&62===o)return this.consumeCodePoint(),this.consumeCodePoint(),tS;break;case 47:if(42===this.peekCodePoint(0))for(this.consumeCodePoint();;){var s=this.consumeCodePoint();if(42===s&&47===(s=this.consumeCodePoint())||-1===s)return this.consumeToken()}break;case 58:return tI;case 59:return tT;case 60:if(33===this.peekCodePoint(0)&&45===this.peekCodePoint(1)&&45===this.peekCodePoint(2))return this.consumeCodePoint(),this.consumeCodePoint(),tU;break;case 64:if(tp(this.peekCodePoint(0),this.peekCodePoint(1),this.peekCodePoint(2))){var A=this.consumeName();return{type:7,value:A}}break;case 91:return tL;case 92:if(td(t,this.peekCodePoint(0)))return this.reconsumeCodePoint(t),this.consumeIdentLikeToken();break;case 93:return t_;case 61:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),tw;break;case 123:return tE;case 125:return tk;case 117:case 85:var l=this.peekCodePoint(0),c=this.peekCodePoint(1);return 43===l&&(tl(c)||63===c)&&(this.consumeCodePoint(),this.consumeUnicodeRangeToken()),this.reconsumeCodePoint(t),this.consumeIdentLikeToken();case 124:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),tC;if(124===this.peekCodePoint(0))return this.consumeCodePoint(),tx;break;case 126:if(61===this.peekCodePoint(0))return this.consumeCodePoint(),tO;break;case -1:return tH}return tu(t)?(this.consumeWhiteSpace(),tP):ts(t)?(this.reconsumeCodePoint(t),this.consumeNumericToken()):tf(t)?(this.reconsumeCodePoint(t),this.consumeIdentLikeToken()):{type:6,value:I(t)}},t.prototype.consumeCodePoint=function(){var t=this._value.shift();return void 0===t?-1:t},t.prototype.reconsumeCodePoint=function(t){this._value.unshift(t)},t.prototype.peekCodePoint=function(t){return t>=this._value.length?-1:this._value[t]},t.prototype.consumeUnicodeRangeToken=function(){for(var t=[],e=this.consumeCodePoint();tl(e)&&t.length<6;)t.push(e),e=this.consumeCodePoint();for(var n=!1;63===e&&t.length<6;)t.push(e),e=this.consumeCodePoint(),n=!0;if(n){var r=parseInt(I.apply(void 0,t.map(function(t){return 63===t?48:t})),16),i=parseInt(I.apply(void 0,t.map(function(t){return 63===t?70:t})),16);return{type:30,start:r,end:i}}var A=parseInt(I.apply(void 0,t),16);if(!(45===this.peekCodePoint(0)&&tl(this.peekCodePoint(1))))return{type:30,start:A,end:A};this.consumeCodePoint(),e=this.consumeCodePoint();for(var a=[];tl(e)&&a.length<6;)a.push(e),e=this.consumeCodePoint();var i=parseInt(I.apply(void 0,a),16);return{type:30,start:A,end:i}},t.prototype.consumeIdentLikeToken=function(){var t=this.consumeName();return"url"===t.toLowerCase()&&40===this.peekCodePoint(0)?(this.consumeCodePoint(),this.consumeUrlToken()):40===this.peekCodePoint(0)?(this.consumeCodePoint(),{type:19,value:t}):{type:20,value:t}},t.prototype.consumeUrlToken=function(){var t=[];if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0))return{type:22,value:""};var e=this.peekCodePoint(0);if(39===e||34===e){var n=this.consumeStringToken(this.consumeCodePoint());return 0===n.type&&(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))?(this.consumeCodePoint(),{type:22,value:n.value}):(this.consumeBadUrlRemnants(),tQ)}for(;;){var r,i=this.consumeCodePoint();if(-1===i||41===i)return{type:22,value:I.apply(void 0,t)};if(tu(i)){if(this.consumeWhiteSpace(),-1===this.peekCodePoint(0)||41===this.peekCodePoint(0))return this.consumeCodePoint(),{type:22,value:I.apply(void 0,t)};return this.consumeBadUrlRemnants(),tQ}if(34===i||39===i||40===i||(r=i)>=0&&r<=8||11===r||r>=14&&r<=31||127===r)return this.consumeBadUrlRemnants(),tQ;if(92===i)if(!td(i,this.peekCodePoint(0)))return this.consumeBadUrlRemnants(),tQ;else t.push(this.consumeEscapedCodePoint());else t.push(i)}},t.prototype.consumeWhiteSpace=function(){for(;tu(this.peekCodePoint(0));)this.consumeCodePoint()},t.prototype.consumeBadUrlRemnants=function(){for(;;){var t=this.consumeCodePoint();if(41===t||-1===t)return;td(t,this.peekCodePoint(0))&&this.consumeEscapedCodePoint()}},t.prototype.consumeStringSlice=function(t){for(var e="";t>0;){var n=Math.min(5e4,t);e+=I.apply(void 0,this._value.splice(0,n)),t-=n}return this._value.shift(),e},t.prototype.consumeStringToken=function(t){for(var e="",n=0;;){var r=this._value[n];if(-1===r||void 0===r||r===t)return{type:0,value:e+=this.consumeStringSlice(n)};if(10===r)return this._value.splice(0,n),tM;if(92===r){var i=this._value[n+1];-1!==i&&void 0!==i&&(10===i?(e+=this.consumeStringSlice(n),n=-1,this._value.shift()):td(r,i)&&(e+=this.consumeStringSlice(n),e+=I(this.consumeEscapedCodePoint()),n=-1))}n++}},t.prototype.consumeNumber=function(){var t=[],e=4,n=this.peekCodePoint(0);for((43===n||45===n)&&t.push(this.consumeCodePoint());ts(this.peekCodePoint(0));)t.push(this.consumeCodePoint());n=this.peekCodePoint(0);var r=this.peekCodePoint(1);if(46===n&&ts(r))for(t.push(this.consumeCodePoint(),this.consumeCodePoint()),e=8;ts(this.peekCodePoint(0));)t.push(this.consumeCodePoint());n=this.peekCodePoint(0),r=this.peekCodePoint(1);var i=this.peekCodePoint(2);if((69===n||101===n)&&((43===r||45===r)&&ts(i)||ts(r)))for(t.push(this.consumeCodePoint(),this.consumeCodePoint()),e=8;ts(this.peekCodePoint(0));)t.push(this.consumeCodePoint());return[ty(t),e]},t.prototype.consumeNumericToken=function(){var t=this.consumeNumber(),e=t[0],n=t[1],r=this.peekCodePoint(0);return tp(r,this.peekCodePoint(1),this.peekCodePoint(2))?{type:15,number:e,flags:n,unit:this.consumeName()}:37===r?(this.consumeCodePoint(),{type:16,number:e,flags:n}):{type:17,number:e,flags:n}},t.prototype.consumeEscapedCodePoint=function(){var t=this.consumeCodePoint();if(tl(t)){for(var e=I(t);tl(this.peekCodePoint(0))&&e.length<6;)e+=I(this.consumeCodePoint());tu(this.peekCodePoint(0))&&this.consumeCodePoint();var n=parseInt(e,16);return 0===n||n>=55296&&n<=57343||n>1114111?65533:n}return -1===t?65533:t},t.prototype.consumeName=function(){for(var t="";;){var e=this.consumeCodePoint();if(th(e))t+=I(e);else{if(!td(e,this.peekCodePoint(0)))return this.reconsumeCodePoint(e),t;t+=I(this.consumeEscapedCodePoint())}}},t}(),tN=function(){function t(t){this._tokens=t}return t.create=function(e){var n=new tj;return n.write(e),new t(n.read())},t.parseValue=function(e){return t.create(e).parseComponentValue()},t.parseValues=function(e){return t.create(e).parseComponentValues()},t.prototype.parseComponentValue=function(){for(var t=this.consumeToken();31===t.type;)t=this.consumeToken();if(32===t.type)throw SyntaxError("Error parsing CSS component value, unexpected EOF");this.reconsumeToken(t);var e=this.consumeComponentValue();do t=this.consumeToken();while(31===t.type);if(32===t.type)return e;throw SyntaxError("Error parsing CSS component value, multiple values found when expecting only one")},t.prototype.parseComponentValues=function(){for(var t=[];;){var e=this.consumeComponentValue();if(32===e.type)return t;t.push(e),t.push()}},t.prototype.consumeComponentValue=function(){var t=this.consumeToken();switch(t.type){case 11:case 28:case 2:return this.consumeSimpleBlock(t.type);case 19:return this.consumeFunction(t)}return t},t.prototype.consumeSimpleBlock=function(t){for(var e={type:t,values:[]},n=this.consumeToken();;){if(32===n.type||tY(n,t))return e;this.reconsumeToken(n),e.values.push(this.consumeComponentValue()),n=this.consumeToken()}},t.prototype.consumeFunction=function(t){for(var e={name:t.value,values:[],type:18};;){var n=this.consumeToken();if(32===n.type||3===n.type)return e;this.reconsumeToken(n),e.values.push(this.consumeComponentValue())}},t.prototype.consumeToken=function(){var t=this._tokens.shift();return void 0===t?tH:t},t.prototype.reconsumeToken=function(t){this._tokens.unshift(t)},t}(),tD=function(t){return 15===t.type},tR=function(t){return 17===t.type},tK=function(t){return 20===t.type},tz=function(t){return 0===t.type},tG=function(t,e){return tK(t)&&t.value===e},tV=function(t){return 31!==t.type},tW=function(t){return 31!==t.type&&4!==t.type},tX=function(t){var e=[],n=[];return t.forEach(function(t){if(4===t.type){if(0===n.length)throw Error("Error parsing function args, zero tokens for arg");e.push(n),n=[];return}31!==t.type&&n.push(t)}),n.length&&e.push(n),e},tY=function(t,e){return 11===e&&12===t.type||28===e&&29===t.type||2===e&&3===t.type},t$=function(t){return 17===t.type||15===t.type},tq=function(t){return 16===t.type||t$(t)},tJ=function(t){return t.length>1?[t[0],t[1]]:[t[0]]},tZ={type:17,number:0,flags:4},t0={type:16,number:50,flags:4},t1={type:16,number:100,flags:4},t2=function(t,e,n){var r=t[0],i=t[1];return[t4(r,e),t4(void 0!==i?i:r,n)]},t4=function(t,e){if(16===t.type)return t.number/100*e;if(tD(t))switch(t.unit){case"rem":case"em":return 16*t.number}return t.number},t5="grad",t3="turn",t6=function(t,e){if(15===e.type)switch(e.unit){case"deg":return Math.PI*e.number/180;case t5:return Math.PI/200*e.number;case"rad":return e.number;case t3:return 2*Math.PI*e.number}throw Error("Unsupported angle type")},t8=function(t){return 15===t.type&&("deg"===t.unit||t.unit===t5||"rad"===t.unit||t.unit===t3)},t9=function(t){switch(t.filter(tK).map(function(t){return t.value}).join(" ")){case"to bottom right":case"to right bottom":case"left top":case"top left":return[tZ,tZ];case"to top":case"bottom":return t7(0);case"to bottom left":case"to left bottom":case"right top":case"top right":return[tZ,t1];case"to right":case"left":return t7(90);case"to top left":case"to left top":case"right bottom":case"bottom right":return[t1,t1];case"to bottom":case"top":return t7(180);case"to top right":case"to right top":case"left bottom":case"bottom left":return[t1,tZ];case"to left":case"right":return t7(270)}return 0},t7=function(t){return Math.PI*t/180},et=function(t,e){if(18===e.type){var n=es[e.name];if(void 0===n)throw Error('Attempting to parse an unsupported color function "'+e.name+'"');return n(t,e.values)}if(5===e.type){if(3===e.value.length){var r=e.value.substring(0,1),i=e.value.substring(1,2),A=e.value.substring(2,3);return er(parseInt(r+r,16),parseInt(i+i,16),parseInt(A+A,16),1)}if(4===e.value.length){var r=e.value.substring(0,1),i=e.value.substring(1,2),A=e.value.substring(2,3),a=e.value.substring(3,4);return er(parseInt(r+r,16),parseInt(i+i,16),parseInt(A+A,16),parseInt(a+a,16)/255)}if(6===e.value.length){var r=e.value.substring(0,2),i=e.value.substring(2,4),A=e.value.substring(4,6);return er(parseInt(r,16),parseInt(i,16),parseInt(A,16),1)}if(8===e.value.length){var r=e.value.substring(0,2),i=e.value.substring(2,4),A=e.value.substring(4,6),a=e.value.substring(6,8);return er(parseInt(r,16),parseInt(i,16),parseInt(A,16),parseInt(a,16)/255)}}if(20===e.type){var o=ec[e.value.toUpperCase()];if(void 0!==o)return o}return ec.TRANSPARENT},ee=function(t){return(255&t)==0},en=function(t){var e=255&t,n=255&t>>8,r=255&t>>16,i=255&t>>24;return e<255?"rgba("+i+","+r+","+n+","+e/255+")":"rgb("+i+","+r+","+n+")"},er=function(t,e,n,r){return(t<<24|e<<16|n<<8|(0|Math.round(255*r)))>>>0},ei=function(t,e){if(17===t.type)return t.number;if(16===t.type){var n=3===e?1:255;return 3===e?t.number/100*n:Math.round(t.number/100*n)}return 0},eA=function(t,e){var n=e.filter(tW);if(3===n.length){var r=n.map(ei),i=r[0],A=r[1],a=r[2];return er(i,A,a,1)}if(4===n.length){var o=n.map(ei),i=o[0],A=o[1],a=o[2];return er(i,A,a,o[3])}return 0};function ea(t,e,n){return(n<0&&(n+=1),n>=1&&(n-=1),n<1/6)?(e-t)*n*6+t:n<.5?e:n<2/3?(e-t)*6*(2/3-n)+t:t}var eo=function(t,e){var n=e.filter(tW),r=n[0],i=n[1],A=n[2],a=n[3],o=(17===r.type?t7(r.number):t6(t,r))/(2*Math.PI),s=tq(i)?i.number/100:0,l=tq(A)?A.number/100:0,c=void 0!==a&&tq(a)?t4(a,1):1;if(0===s)return er(255*l,255*l,255*l,1);var u=l<=.5?l*(s+1):l+s-l*s,f=2*l-u;return er(255*ea(f,u,o+1/3),255*ea(f,u,o),255*ea(f,u,o-1/3),c)},es={hsl:eo,hsla:eo,rgb:eA,rgba:eA},el=function(t,e){return et(t,tN.create(e).parseComponentValue())},ec={ALICEBLUE:0xf0f8ffff,ANTIQUEWHITE:0xfaebd7ff,AQUA:0xffffff,AQUAMARINE:0x7fffd4ff,AZURE:0xf0ffffff,BEIGE:0xf5f5dcff,BISQUE:0xffe4c4ff,BLACK:255,BLANCHEDALMOND:0xffebcdff,BLUE:65535,BLUEVIOLET:0x8a2be2ff,BROWN:0xa52a2aff,BURLYWOOD:0xdeb887ff,CADETBLUE:0x5f9ea0ff,CHARTREUSE:0x7fff00ff,CHOCOLATE:0xd2691eff,CORAL:0xff7f50ff,CORNFLOWERBLUE:0x6495edff,CORNSILK:0xfff8dcff,CRIMSON:0xdc143cff,CYAN:0xffffff,DARKBLUE:35839,DARKCYAN:9145343,DARKGOLDENROD:0xb886bbff,DARKGRAY:0xa9a9a9ff,DARKGREEN:6553855,DARKGREY:0xa9a9a9ff,DARKKHAKI:0xbdb76bff,DARKMAGENTA:0x8b008bff,DARKOLIVEGREEN:0x556b2fff,DARKORANGE:0xff8c00ff,DARKORCHID:0x9932ccff,DARKRED:0x8b0000ff,DARKSALMON:0xe9967aff,DARKSEAGREEN:0x8fbc8fff,DARKSLATEBLUE:0x483d8bff,DARKSLATEGRAY:0x2f4f4fff,DARKSLATEGREY:0x2f4f4fff,DARKTURQUOISE:0xced1ff,DARKVIOLET:0x9400d3ff,DEEPPINK:0xff1493ff,DEEPSKYBLUE:0xbfffff,DIMGRAY:0x696969ff,DIMGREY:0x696969ff,DODGERBLUE:0x1e90ffff,FIREBRICK:0xb22222ff,FLORALWHITE:0xfffaf0ff,FORESTGREEN:0x228b22ff,FUCHSIA:0xff00ffff,GAINSBORO:0xdcdcdcff,GHOSTWHITE:0xf8f8ffff,GOLD:0xffd700ff,GOLDENROD:0xdaa520ff,GRAY:0x808080ff,GREEN:8388863,GREENYELLOW:0xadff2fff,GREY:0x808080ff,HONEYDEW:0xf0fff0ff,HOTPINK:0xff69b4ff,INDIANRED:0xcd5c5cff,INDIGO:0x4b0082ff,IVORY:0xfffff0ff,KHAKI:0xf0e68cff,LAVENDER:0xe6e6faff,LAVENDERBLUSH:0xfff0f5ff,LAWNGREEN:0x7cfc00ff,LEMONCHIFFON:0xfffacdff,LIGHTBLUE:0xadd8e6ff,LIGHTCORAL:0xf08080ff,LIGHTCYAN:0xe0ffffff,LIGHTGOLDENRODYELLOW:0xfafad2ff,LIGHTGRAY:0xd3d3d3ff,LIGHTGREEN:0x90ee90ff,LIGHTGREY:0xd3d3d3ff,LIGHTPINK:0xffb6c1ff,LIGHTSALMON:0xffa07aff,LIGHTSEAGREEN:0x20b2aaff,LIGHTSKYBLUE:0x87cefaff,LIGHTSLATEGRAY:0x778899ff,LIGHTSLATEGREY:0x778899ff,LIGHTSTEELBLUE:0xb0c4deff,LIGHTYELLOW:0xffffe0ff,LIME:0xff00ff,LIMEGREEN:0x32cd32ff,LINEN:0xfaf0e6ff,MAGENTA:0xff00ffff,MAROON:0x800000ff,MEDIUMAQUAMARINE:0x66cdaaff,MEDIUMBLUE:52735,MEDIUMORCHID:0xba55d3ff,MEDIUMPURPLE:0x9370dbff,MEDIUMSEAGREEN:0x3cb371ff,MEDIUMSLATEBLUE:0x7b68eeff,MEDIUMSPRINGGREEN:0xfa9aff,MEDIUMTURQUOISE:0x48d1ccff,MEDIUMVIOLETRED:0xc71585ff,MIDNIGHTBLUE:0x191970ff,MINTCREAM:0xf5fffaff,MISTYROSE:0xffe4e1ff,MOCCASIN:0xffe4b5ff,NAVAJOWHITE:0xffdeadff,NAVY:33023,OLDLACE:0xfdf5e6ff,OLIVE:0x808000ff,OLIVEDRAB:0x6b8e23ff,ORANGE:0xffa500ff,ORANGERED:0xff4500ff,ORCHID:0xda70d6ff,PALEGOLDENROD:0xeee8aaff,PALEGREEN:0x98fb98ff,PALETURQUOISE:0xafeeeeff,PALEVIOLETRED:0xdb7093ff,PAPAYAWHIP:0xffefd5ff,PEACHPUFF:0xffdab9ff,PERU:0xcd853fff,PINK:0xffc0cbff,PLUM:0xdda0ddff,POWDERBLUE:0xb0e0e6ff,PURPLE:0x800080ff,REBECCAPURPLE:0x663399ff,RED:0xff0000ff,ROSYBROWN:0xbc8f8fff,ROYALBLUE:0x4169e1ff,SADDLEBROWN:0x8b4513ff,SALMON:0xfa8072ff,SANDYBROWN:0xf4a460ff,SEAGREEN:0x2e8b57ff,SEASHELL:0xfff5eeff,SIENNA:0xa0522dff,SILVER:0xc0c0c0ff,SKYBLUE:0x87ceebff,SLATEBLUE:0x6a5acdff,SLATEGRAY:0x708090ff,SLATEGREY:0x708090ff,SNOW:0xfffafaff,SPRINGGREEN:0xff7fff,STEELBLUE:0x4682b4ff,TAN:0xd2b48cff,TEAL:8421631,THISTLE:0xd8bfd8ff,TOMATO:0xff6347ff,TRANSPARENT:0,TURQUOISE:0x40e0d0ff,VIOLET:0xee82eeff,WHEAT:0xf5deb3ff,WHITE:0xffffffff,WHITESMOKE:0xf5f5f5ff,YELLOW:0xffff00ff,YELLOWGREEN:0x9acd32ff},eu={name:"background-clip",initialValue:"border-box",prefix:!1,type:1,parse:function(t,e){return e.map(function(t){if(tK(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},ef={name:"background-color",initialValue:"transparent",prefix:!1,type:3,format:"color"},eh=function(t,e){var n=et(t,e[0]),r=e[1];return r&&tq(r)?{color:n,stop:r}:{color:n,stop:null}},ed=function(t,e){var n=t[0],r=t[t.length-1];null===n.stop&&(n.stop=tZ),null===r.stop&&(r.stop=t1);for(var i=[],A=0,a=0;aA?i.push(s):i.push(A),A=s}else i.push(null)}for(var l=null,a=0;at.optimumDistance)?{optimumCorner:e,optimumDistance:A}:t},{optimumDistance:i?1/0:-1/0,optimumCorner:null}).optimumCorner},em=function(t,e,n,r,i){var A=0,a=0;switch(t.size){case 0:0===t.shape?A=a=Math.min(Math.abs(e),Math.abs(e-r),Math.abs(n),Math.abs(n-i)):1===t.shape&&(A=Math.min(Math.abs(e),Math.abs(e-r)),a=Math.min(Math.abs(n),Math.abs(n-i)));break;case 2:if(0===t.shape)A=a=Math.min(ey(e,n),ey(e,n-i),ey(e-r,n),ey(e-r,n-i));else if(1===t.shape){var o=Math.min(Math.abs(n),Math.abs(n-i))/Math.min(Math.abs(e),Math.abs(e-r)),s=ev(r,i,e,n,!0),l=s[0],c=s[1];A=ey(l-e,(c-n)/o),a=o*A}break;case 1:0===t.shape?A=a=Math.max(Math.abs(e),Math.abs(e-r),Math.abs(n),Math.abs(n-i)):1===t.shape&&(A=Math.max(Math.abs(e),Math.abs(e-r)),a=Math.max(Math.abs(n),Math.abs(n-i)));break;case 3:if(0===t.shape)A=a=Math.max(ey(e,n),ey(e,n-i),ey(e-r,n),ey(e-r,n-i));else if(1===t.shape){var o=Math.max(Math.abs(n),Math.abs(n-i))/Math.max(Math.abs(e),Math.abs(e-r)),u=ev(r,i,e,n,!1),l=u[0],c=u[1];A=ey(l-e,(c-n)/o),a=o*A}}return Array.isArray(t.size)&&(A=t4(t.size[0],r),a=2===t.size.length?t4(t.size[1],i):A),[A,a]},eb=function(t,e){var n=t7(180),r=[];return tX(e).forEach(function(e,i){if(0===i){var A=e[0];if(20===A.type&&-1!==["top","left","right","bottom"].indexOf(A.value)){n=t9(e);return}if(t8(A)){n=(t6(t,A)+t7(270))%t7(360);return}}var a=eh(t,e);r.push(a)}),{angle:n,stops:r,type:1}},eB="closest-side",ew="farthest-side",ex="closest-corner",eC="farthest-corner",eO="circle",eE="ellipse",ek="cover",eF="contain",eQ=function(t,e){var n=0,r=3,i=[],A=[];return tX(e).forEach(function(e,a){var o=!0;if(0===a?o=e.reduce(function(t,e){if(tK(e))switch(e.value){case"center":return A.push(t0),!1;case"top":case"left":return A.push(tZ),!1;case"right":case"bottom":return A.push(t1),!1}else if(tq(e)||t$(e))return A.push(e),!1;return t},o):1===a&&(o=e.reduce(function(t,e){if(tK(e))switch(e.value){case eO:return n=0,!1;case eE:return n=1,!1;case eF:case eB:return r=0,!1;case ew:return r=1,!1;case ex:return r=2,!1;case ek:case eC:return r=3,!1}else if(t$(e)||tq(e))return Array.isArray(r)||(r=[]),r.push(e),!1;return t},o)),o){var s=eh(t,e);i.push(s)}}),{size:r,shape:n,stops:i,position:A,type:2}},eM=function(t,e){if(22===e.type){var n={url:e.value,type:0};return t.cache.addImage(e.value),n}if(18===e.type){var r=eU[e.name];if(void 0===r)throw Error('Attempting to parse an unsupported image function "'+e.name+'"');return r(t,e.values)}throw Error("Unsupported image type "+e.type)},eU={"linear-gradient":function(t,e){var n=t7(180),r=[];return tX(e).forEach(function(e,i){if(0===i){var A=e[0];if(20===A.type&&"to"===A.value){n=t9(e);return}if(t8(A)){n=t6(t,A);return}}var a=eh(t,e);r.push(a)}),{angle:n,stops:r,type:1}},"-moz-linear-gradient":eb,"-ms-linear-gradient":eb,"-o-linear-gradient":eb,"-webkit-linear-gradient":eb,"radial-gradient":function(t,e){var n=0,r=3,i=[],A=[];return tX(e).forEach(function(e,a){var o=!0;if(0===a){var s=!1;o=e.reduce(function(t,e){if(s)if(tK(e))switch(e.value){case"center":A.push(t0);break;case"top":case"left":A.push(tZ);break;case"right":case"bottom":A.push(t1)}else(tq(e)||t$(e))&&A.push(e);else if(tK(e))switch(e.value){case eO:return n=0,!1;case eE:return n=1,!1;case"at":return s=!0,!1;case eB:return r=0,!1;case ek:case ew:return r=1,!1;case eF:case ex:return r=2,!1;case eC:return r=3,!1}else if(t$(e)||tq(e))return Array.isArray(r)||(r=[]),r.push(e),!1;return t},o)}if(o){var l=eh(t,e);i.push(l)}}),{size:r,shape:n,stops:i,position:A,type:2}},"-moz-radial-gradient":eQ,"-ms-radial-gradient":eQ,"-o-radial-gradient":eQ,"-webkit-radial-gradient":eQ,"-webkit-gradient":function(t,e){var n=t7(180),r=[],i=1;return tX(e).forEach(function(e,n){var A=e[0];if(0===n){if(tK(A)&&"linear"===A.value){i=1;return}else if(tK(A)&&"radial"===A.value){i=2;return}}if(18===A.type){if("from"===A.name){var a=et(t,A.values[0]);r.push({stop:tZ,color:a})}else if("to"===A.name){var a=et(t,A.values[0]);r.push({stop:t1,color:a})}else if("color-stop"===A.name){var o=A.values.filter(tW);if(2===o.length){var a=et(t,o[1]),s=o[0];tR(s)&&r.push({stop:{type:16,number:100*s.number,flags:s.flags},color:a})}}}}),1===i?{angle:(n+t7(180))%t7(360),stops:r,type:i}:{size:3,shape:0,stops:r,position:[],type:i}}},eS={name:"background-image",initialValue:"none",type:1,prefix:!1,parse:function(t,e){if(0===e.length)return[];var n=e[0];return 20===n.type&&"none"===n.value?[]:e.filter(function(t){var e;return tW(t)&&(20!==(e=t).type||"none"!==e.value)&&(18!==e.type||!!eU[e.name])}).map(function(e){return eM(t,e)})}},eI={name:"background-origin",initialValue:"border-box",prefix:!1,type:1,parse:function(t,e){return e.map(function(t){if(tK(t))switch(t.value){case"padding-box":return 1;case"content-box":return 2}return 0})}},eT={name:"background-position",initialValue:"0% 0%",type:1,prefix:!1,parse:function(t,e){return tX(e).map(function(t){return t.filter(tq)}).map(tJ)}},eL={name:"background-repeat",initialValue:"repeat",prefix:!1,type:1,parse:function(t,e){return tX(e).map(function(t){return t.filter(tK).map(function(t){return t.value}).join(" ")}).map(e_)}},e_=function(t){switch(t){case"no-repeat":return 1;case"repeat-x":case"repeat no-repeat":return 2;case"repeat-y":case"no-repeat repeat":return 3;default:return 0}};(a=y||(y={})).AUTO="auto",a.CONTAIN="contain",a.COVER="cover";var eP={name:"background-size",initialValue:"0",prefix:!1,type:1,parse:function(t,e){return tX(e).map(function(t){return t.filter(eH)})}},eH=function(t){return tK(t)||tq(t)},ej=function(t){return{name:"border-"+t+"-color",initialValue:"transparent",prefix:!1,type:3,format:"color"}},eN=ej("top"),eD=ej("right"),eR=ej("bottom"),eK=ej("left"),ez=function(t){return{name:"border-radius-"+t,initialValue:"0 0",prefix:!1,type:1,parse:function(t,e){return tJ(e.filter(tq))}}},eG=ez("top-left"),eV=ez("top-right"),eW=ez("bottom-right"),eX=ez("bottom-left"),eY=function(t){return{name:"border-"+t+"-style",initialValue:"solid",prefix:!1,type:2,parse:function(t,e){switch(e){case"none":return 0;case"dashed":return 2;case"dotted":return 3;case"double":return 4}return 1}}},e$=eY("top"),eq=eY("right"),eJ=eY("bottom"),eZ=eY("left"),e0=function(t){return{name:"border-"+t+"-width",initialValue:"0",type:0,prefix:!1,parse:function(t,e){return tD(e)?e.number:0}}},e1=e0("top"),e2=e0("right"),e4=e0("bottom"),e5=e0("left"),e3={name:"color",initialValue:"transparent",prefix:!1,type:3,format:"color"},e6={name:"direction",initialValue:"ltr",prefix:!1,type:2,parse:function(t,e){return+("rtl"===e)}},e8={name:"display",initialValue:"inline-block",prefix:!1,type:1,parse:function(t,e){return e.filter(tK).reduce(function(t,e){return t|e9(e.value)},0)}},e9=function(t){switch(t){case"block":case"-webkit-box":return 2;case"inline":return 4;case"run-in":return 8;case"flow":return 16;case"flow-root":return 32;case"table":return 64;case"flex":case"-webkit-flex":return 128;case"grid":case"-ms-grid":return 256;case"ruby":return 512;case"subgrid":return 1024;case"list-item":return 2048;case"table-row-group":return 4096;case"table-header-group":return 8192;case"table-footer-group":return 16384;case"table-row":return 32768;case"table-cell":return 65536;case"table-column-group":return 131072;case"table-column":return 262144;case"table-caption":return 524288;case"ruby-base":return 1048576;case"ruby-text":return 2097152;case"ruby-base-container":return 4194304;case"ruby-text-container":return 8388608;case"contents":return 0x1000000;case"inline-block":return 0x2000000;case"inline-list-item":return 0x4000000;case"inline-table":return 0x8000000;case"inline-flex":return 0x10000000;case"inline-grid":return 0x20000000}return 0},e7={name:"float",initialValue:"none",prefix:!1,type:2,parse:function(t,e){switch(e){case"left":return 1;case"right":return 2;case"inline-start":return 3;case"inline-end":return 4}return 0}},nt={name:"letter-spacing",initialValue:"0",prefix:!1,type:0,parse:function(t,e){return 20===e.type&&"normal"===e.value?0:17===e.type||15===e.type?e.number:0}};(o=v||(v={})).NORMAL="normal",o.STRICT="strict";var ne={name:"line-break",initialValue:"normal",prefix:!1,type:2,parse:function(t,e){return"strict"===e?v.STRICT:v.NORMAL}},nn={name:"line-height",initialValue:"normal",prefix:!1,type:4},nr=function(t,e){return tK(t)&&"normal"===t.value?1.2*e:17===t.type?e*t.number:tq(t)?t4(t,e):e},ni={name:"list-style-image",initialValue:"none",type:0,prefix:!1,parse:function(t,e){return 20===e.type&&"none"===e.value?null:eM(t,e)}},nA={name:"list-style-position",initialValue:"outside",prefix:!1,type:2,parse:function(t,e){return+("inside"!==e)}},na={name:"list-style-type",initialValue:"none",prefix:!1,type:2,parse:function(t,e){switch(e){case"disc":return 0;case"circle":return 1;case"square":return 2;case"decimal":return 3;case"cjk-decimal":return 4;case"decimal-leading-zero":return 5;case"lower-roman":return 6;case"upper-roman":return 7;case"lower-greek":return 8;case"lower-alpha":return 9;case"upper-alpha":return 10;case"arabic-indic":return 11;case"armenian":return 12;case"bengali":return 13;case"cambodian":return 14;case"cjk-earthly-branch":return 15;case"cjk-heavenly-stem":return 16;case"cjk-ideographic":return 17;case"devanagari":return 18;case"ethiopic-numeric":return 19;case"georgian":return 20;case"gujarati":return 21;case"gurmukhi":case"hebrew":return 22;case"hiragana":return 23;case"hiragana-iroha":return 24;case"japanese-formal":return 25;case"japanese-informal":return 26;case"kannada":return 27;case"katakana":return 28;case"katakana-iroha":return 29;case"khmer":return 30;case"korean-hangul-formal":return 31;case"korean-hanja-formal":return 32;case"korean-hanja-informal":return 33;case"lao":return 34;case"lower-armenian":return 35;case"malayalam":return 36;case"mongolian":return 37;case"myanmar":return 38;case"oriya":return 39;case"persian":return 40;case"simp-chinese-formal":return 41;case"simp-chinese-informal":return 42;case"tamil":return 43;case"telugu":return 44;case"thai":return 45;case"tibetan":return 46;case"trad-chinese-formal":return 47;case"trad-chinese-informal":return 48;case"upper-armenian":return 49;case"disclosure-open":return 50;case"disclosure-closed":return 51;default:return -1}}},no=function(t){return{name:"margin-"+t,initialValue:"0",prefix:!1,type:4}},ns=no("top"),nl=no("right"),nc=no("bottom"),nu=no("left"),nf={name:"overflow",initialValue:"visible",prefix:!1,type:1,parse:function(t,e){return e.filter(tK).map(function(t){switch(t.value){case"hidden":return 1;case"scroll":return 2;case"clip":return 3;case"auto":return 4;default:return 0}})}},nh={name:"overflow-wrap",initialValue:"normal",prefix:!1,type:2,parse:function(t,e){return"break-word"===e?"break-word":"normal"}},nd=function(t){return{name:"padding-"+t,initialValue:"0",prefix:!1,type:3,format:"length-percentage"}},np=nd("top"),ng=nd("right"),ny=nd("bottom"),nv=nd("left"),nm={name:"text-align",initialValue:"left",prefix:!1,type:2,parse:function(t,e){switch(e){case"right":return 2;case"center":case"justify":return 1;default:return 0}}},nb={name:"position",initialValue:"static",prefix:!1,type:2,parse:function(t,e){switch(e){case"relative":return 1;case"absolute":return 2;case"fixed":return 3;case"sticky":return 4}return 0}},nB={name:"text-shadow",initialValue:"none",type:1,prefix:!1,parse:function(t,e){return 1===e.length&&tG(e[0],"none")?[]:tX(e).map(function(e){for(var n={color:ec.TRANSPARENT,offsetX:tZ,offsetY:tZ,blur:tZ},r=0,i=0;i1)],this.overflowWrap=n0(t,nh,e.overflowWrap),this.paddingTop=n0(t,np,e.paddingTop),this.paddingRight=n0(t,ng,e.paddingRight),this.paddingBottom=n0(t,ny,e.paddingBottom),this.paddingLeft=n0(t,nv,e.paddingLeft),this.paintOrder=n0(t,nX,e.paintOrder),this.position=n0(t,nb,e.position),this.textAlign=n0(t,nm,e.textAlign),this.textDecorationColor=n0(t,nI,null!=(n=e.textDecorationColor)?n:e.color),this.textDecorationLine=n0(t,nT,null!=(r=e.textDecorationLine)?r:e.textDecoration),this.textShadow=n0(t,nB,e.textShadow),this.textTransform=n0(t,nw,e.textTransform),this.transform=n0(t,nx,e.transform),this.transformOrigin=n0(t,nk,e.transformOrigin),this.visibility=n0(t,nF,e.visibility),this.webkitTextStrokeColor=n0(t,nY,e.webkitTextStrokeColor),this.webkitTextStrokeWidth=n0(t,n$,e.webkitTextStrokeWidth),this.wordBreak=n0(t,nQ,e.wordBreak),this.zIndex=n0(t,nM,e.zIndex)}return t.prototype.isVisible=function(){return this.display>0&&this.opacity>0&&0===this.visibility},t.prototype.isTransparent=function(){return ee(this.backgroundColor)},t.prototype.isTransformed=function(){return null!==this.transform},t.prototype.isPositioned=function(){return 0!==this.position},t.prototype.isPositionedWithZIndex=function(){return this.isPositioned()&&!this.zIndex.auto},t.prototype.isFloating=function(){return 0!==this.float},t.prototype.isInlineLevel=function(){return nN(this.display,4)||nN(this.display,0x2000000)||nN(this.display,0x10000000)||nN(this.display,0x20000000)||nN(this.display,0x4000000)||nN(this.display,0x8000000)},t}(),nJ=function(t,e){this.content=n0(t,nD,e.content),this.quotes=n0(t,nG,e.quotes)},nZ=function(t,e){this.counterIncrement=n0(t,nR,e.counterIncrement),this.counterReset=n0(t,nK,e.counterReset)},n0=function(t,e,n){var r=new tj,i=null!=n?n.toString():e.initialValue;r.write(i);var A=new tN(r.read());switch(e.type){case 2:var a=A.parseComponentValue();return e.parse(t,tK(a)?a.value:e.initialValue);case 0:return e.parse(t,A.parseComponentValue());case 1:return e.parse(t,A.parseComponentValues());case 4:return A.parseComponentValue();case 3:switch(e.format){case"angle":return t6(t,A.parseComponentValue());case"color":return et(t,A.parseComponentValue());case"image":return eM(t,A.parseComponentValue());case"length":var o=A.parseComponentValue();return t$(o)?o:tZ;case"length-percentage":var s=A.parseComponentValue();return tq(s)?s:tZ;case"time":return nU(t,A.parseComponentValue())}}},n1=function(t){switch(t.getAttribute("data-html2canvas-debug")){case"all":return 1;case"clone":return 2;case"parse":return 3;case"render":return 4;default:return 0}},n2=function(t,e){var n=n1(t);return 1===n||e===n},n4=function(t,e){this.context=t,this.textNodes=[],this.elements=[],this.flags=0,n2(e,3),this.styles=new nq(t,window.getComputedStyle(e,null)),r8(e)&&(this.styles.animationDuration.some(function(t){return t>0})&&(e.style.animationDuration="0s"),null!==this.styles.transform&&(e.style.transform="none")),this.bounds=M(this.context,e),n2(e,4)&&(this.flags|=16)},n5="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n3="u"=0){if(t<55296||t>56319&&t<=65535)return e=((e=this.index[t>>5])<<2)+(31&t),this.data[e];if(t<=65535)return e=((e=this.index[2048+(t-55296>>5)])<<2)+(31&t),this.data[e];if(t>11),e=this.index[e]+(t>>5&63),e=((e=this.index[e])<<2)+(31&t),this.data[e];if(t<=1114111)return this.data[this.highValueIndex]}return this.errorValue},t}(),rt="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",re="u"=55296&&i<=56319&&n>10)+55296,a%1024+56320)),(i+1===n||r.length>16384)&&(A+=String.fromCharCode.apply(String,r),r.length=0)}return A},rA=(c=Array.isArray(l=function(t){var e,n,r,i,A,a=.75*t.length,o=t.length,s=0;"="===t[t.length-1]&&(a--,"="===t[t.length-2]&&a--);var l="u">typeof ArrayBuffer&&"u">typeof Uint8Array&&void 0!==Uint8Array.prototype.slice?new ArrayBuffer(a):Array(a),c=Array.isArray(l)?l:new Uint8Array(l);for(e=0;e>4,c[s++]=(15&r)<<4|i>>2,c[s++]=(3&i)<<6|63&A;return l}("AAAAAAAAAAAAEA4AGBkAAFAaAAACAAAAAAAIABAAGAAwADgACAAQAAgAEAAIABAACAAQAAgAEAAIABAACAAQAAgAEAAIABAAQABIAEQATAAIABAACAAQAAgAEAAIABAAVABcAAgAEAAIABAACAAQAGAAaABwAHgAgACIAI4AlgAIABAAmwCjAKgAsAC2AL4AvQDFAMoA0gBPAVYBWgEIAAgACACMANoAYgFkAWwBdAF8AX0BhQGNAZUBlgGeAaMBlQGWAasBswF8AbsBwwF0AcsBYwHTAQgA2wG/AOMBdAF8AekB8QF0AfkB+wHiAHQBfAEIAAMC5gQIAAsCEgIIAAgAFgIeAggAIgIpAggAMQI5AkACygEIAAgASAJQAlgCYAIIAAgACAAKBQoFCgUTBRMFGQUrBSsFCAAIAAgACAAIAAgACAAIAAgACABdAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABoAmgCrwGvAQgAbgJ2AggAHgEIAAgACADnAXsCCAAIAAgAgwIIAAgACAAIAAgACACKAggAkQKZAggAPADJAAgAoQKkAqwCsgK6AsICCADJAggA0AIIAAgACAAIANYC3gIIAAgACAAIAAgACABAAOYCCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAkASoB+QIEAAgACAA8AEMCCABCBQgACABJBVAFCAAIAAgACAAIAAgACAAIAAgACABTBVoFCAAIAFoFCABfBWUFCAAIAAgACAAIAAgAbQUIAAgACAAIAAgACABzBXsFfQWFBYoFigWKBZEFigWKBYoFmAWfBaYFrgWxBbkFCAAIAAgACAAIAAgACAAIAAgACAAIAMEFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAMgFCADQBQgACAAIAAgACAAIAAgACAAIAAgACAAIAO4CCAAIAAgAiQAIAAgACABAAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAD0AggACAD8AggACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIANYFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAMDvwAIAAgAJAIIAAgACAAIAAgACAAIAAgACwMTAwgACAB9BOsEGwMjAwgAKwMyAwsFYgE3A/MEPwMIAEUDTQNRAwgAWQOsAGEDCAAIAAgACAAIAAgACABpAzQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFOgU0BTUFNgU3BTgFOQU6BTQFNQU2BTcFOAU5BToFNAU1BTYFNwU4BTkFIQUoBSwFCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABtAwgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABMAEwACAAIAAgACAAIABgACAAIAAgACAC/AAgACAAyAQgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACAAIAAwAAgACAAIAAgACAAIAAgACAAIAAAARABIAAgACAAIABQASAAIAAgAIABwAEAAjgCIABsAqAC2AL0AigDQAtwC+IJIQqVAZUBWQqVAZUBlQGVAZUBlQGrC5UBlQGVAZUBlQGVAZUBlQGVAXsKlQGVAbAK6wsrDGUMpQzlDJUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAZUBlQGVAfAKAAuZA64AtwCJALoC6ADwAAgAuACgA/oEpgO6AqsD+AAIAAgAswMIAAgACAAIAIkAuwP5AfsBwwPLAwgACAAIAAgACADRA9kDCAAIAOED6QMIAAgACAAIAAgACADuA/YDCAAIAP4DyQAIAAgABgQIAAgAXQAOBAgACAAIAAgACAAIABMECAAIAAgACAAIAAgACAD8AAQBCAAIAAgAGgQiBCoECAExBAgAEAEIAAgACAAIAAgACAAIAAgACAAIAAgACAA4BAgACABABEYECAAIAAgATAQYAQgAVAQIAAgACAAIAAgACAAIAAgACAAIAFoECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAOQEIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAB+BAcACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAEABhgSMBAgACAAIAAgAlAQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAwAEAAQABAADAAMAAwADAAQABAAEAAQABAAEAAQABHATAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAdQMIAAgACAAIAAgACAAIAMkACAAIAAgAfQMIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACACFA4kDCAAIAAgACAAIAOcBCAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAIcDCAAIAAgACAAIAAgACAAIAAgACAAIAJEDCAAIAAgACADFAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABgBAgAZgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAbAQCBXIECAAIAHkECAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACABAAJwEQACjBKoEsgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAC6BMIECAAIAAgACAAIAAgACABmBAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAxwQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAGYECAAIAAgAzgQIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBd0FXwUIAOIF6gXxBYoF3gT5BQAGCAaKBYoFigWKBYoFigWKBYoFigWKBYoFigXWBIoFigWKBYoFigWKBYoFigWKBYsFEAaKBYoFigWKBYoFigWKBRQGCACKBYoFigWKBQgACAAIANEECAAIABgGigUgBggAJgYIAC4GMwaKBYoF0wQ3Bj4GigWKBYoFigWKBYoFigWKBYoFigWKBYoFigUIAAgACAAIAAgACAAIAAgAigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWKBYoFigWLBf///////wQABAAEAAQABAAEAAQABAAEAAQAAwAEAAQAAgAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAQADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUAAAAFAAUAAAAFAAUAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUAAQAAAAUABQAFAAUABQAFAAAAAAAFAAUAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAFAAUAAQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAAABwAHAAcAAAAHAAcABwAFAAEAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAcABwAFAAUAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAQABAAAAAAAAAAAAAAAFAAUABQAFAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAHAAcAAAAHAAcAAAAAAAUABQAHAAUAAQAHAAEABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwABAAUABQAFAAUAAAAAAAAAAAAAAAEAAQABAAEAAQABAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABQANAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAEAAQABAAEAAQABAAEAAQABAAEAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAABQAHAAUABQAFAAAAAAAAAAcABQAFAAUABQAFAAQABAAEAAQABAAEAAQABAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAEAAQABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUAAAAFAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAUAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAcABwAFAAcABwAAAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUABwAHAAUABQAFAAUAAAAAAAcABwAAAAAABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAABQAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAAAAAAAAAAABQAFAAAAAAAFAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAFAAUABQAFAAUAAAAFAAUABwAAAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABwAFAAUABQAFAAAAAAAHAAcAAAAAAAcABwAFAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAAAAAAAAAHAAcABwAAAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAABQAHAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAUABQAFAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAHAAcABQAHAAcAAAAFAAcABwAAAAcABwAFAAUAAAAAAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAFAAcABwAFAAUABQAAAAUAAAAHAAcABwAHAAcABwAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAHAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAABwAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAUAAAAFAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABwAFAAUABQAFAAUAAAAFAAUAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABwAFAAUABQAFAAUABQAAAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABQAFAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABQAFAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAHAAUABQAFAAUABQAFAAUABwAHAAcABwAHAAcABwAHAAUABwAHAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABwAHAAcABwAFAAUABwAHAAcAAAAAAAAAAAAHAAcABQAHAAcABwAHAAcABwAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAcABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAUABQAFAAUABQAFAAUAAAAFAAAABQAAAAAABQAFAAUABQAFAAUABQAFAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAFAAUAAAAAAAUABQAFAAUABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABwAFAAcABwAHAAcABwAFAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAUABQAFAAUABwAHAAUABQAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABQAFAAcABwAHAAUABwAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAcABQAFAAUABQAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAABwAFAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAAAAAAAAAFAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAUABQAHAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAUABQAFAAUABQAHAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAcABwAFAAUABQAFAAcABwAFAAUABwAHAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAFAAcABwAFAAUABwAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAFAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAFAAUABQAAAAAABQAFAAAAAAAAAAAAAAAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAcABwAAAAAAAAAAAAAABwAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAcABwAFAAcABwAAAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAFAAUABQAAAAUABQAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABwAFAAUABQAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAUABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAHAAcABQAHAAUABQAAAAAAAAAAAAAAAAAFAAAABwAHAAcABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAHAAcABwAAAAAABwAHAAAAAAAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABwAHAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAFAAUABwAFAAcABwAFAAcABQAFAAcABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAHAAcABQAFAAUABQAAAAAABwAHAAcABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAHAAUABQAFAAUABQAFAAUABQAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABwAFAAcABwAFAAUABQAFAAUABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAcABwAFAAUABQAFAAcABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAUABQAFAAUABQAHAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAFAAUABQAFAAAAAAAFAAUABwAHAAcABwAFAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABwAHAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAcABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUAAAAHAAUABQAFAAUABQAFAAUABwAFAAUABwAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUAAAAAAAAABQAAAAUABQAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAcABwAHAAcAAAAFAAUAAAAHAAcABQAHAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAAAAUABQAFAAAAAAAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAFAAUABQAAAAAABQAFAAUABQAFAAUABQAAAAUABQAAAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAUABQAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAFAAUABQAFAAUABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAFAAUABQAFAAUADgAOAA4ADgAOAA4ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAA8ADwAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAcABwAHAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAgACAAIAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAMAAwADAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkACQAJAAkAAAAAAAAAAAAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAKAAoACgAAAAAAAAAAAAsADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwACwAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAMAAwADAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAADgAOAA4AAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAAAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4AAAAOAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAAAAAAAAAAAA4AAAAOAAAAAAAAAAAADgAOAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAA4ADgAOAA4ADgAOAA4ADgAOAAAADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4ADgAOAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAOAA4ADgAOAA4AAAAAAAAAAAAAAAAAAAAAAA4ADgAOAA4ADgAOAA4ADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAOAA4ADgAOAA4ADgAAAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4ADgAOAA4AAAAAAAAAAAA="))?function(t){for(var e=t.length,n=[],r=0;r=n)return{done:!0,value:null};for(var t="\xd7";ra.x||i.y>a.y;return a=i,0===e||o});return t.body.removeChild(e),o},rf=function(t){var e=new Image,n=t.createElement("canvas"),r=n.getContext("2d");if(!r)return!1;e.src="data:image/svg+xml,";try{r.drawImage(e,0,0),n.toDataURL()}catch(t){return!1}return!0},rh=function(t){return 0===t[0]&&255===t[1]&&0===t[2]&&255===t[3]},rd=function(t){var e=t.createElement("canvas");e.width=100,e.height=100;var n=e.getContext("2d");if(!n)return Promise.reject(!1);n.fillStyle="rgb(0, 255, 0)",n.fillRect(0,0,100,100);var r=new Image,i=e.toDataURL();r.src=i;var A=rp(100,100,0,0,r);return n.fillStyle="red",n.fillRect(0,0,100,100),rg(A).then(function(e){n.drawImage(e,0,0);var r=n.getImageData(0,0,100,100).data;n.fillStyle="red",n.fillRect(0,0,100,100);var A=t.createElement("div");return A.style.backgroundImage="url("+i+")",A.style.height="100px",rh(r)?rg(rp(100,100,0,0,A)):Promise.reject(!1)}).then(function(t){return n.drawImage(t,0,0),rh(n.getImageData(0,0,100,100).data)}).catch(function(){return!1})},rp=function(t,e,n,r,i){var A="http://www.w3.org/2000/svg",a=document.createElementNS(A,"svg"),o=document.createElementNS(A,"foreignObject");return a.setAttributeNS(null,"width",t.toString()),a.setAttributeNS(null,"height",e.toString()),o.setAttributeNS(null,"width","100%"),o.setAttributeNS(null,"height","100%"),o.setAttributeNS(null,"x",n.toString()),o.setAttributeNS(null,"y",r.toString()),o.setAttributeNS(null,"externalResourcesRequired","true"),a.appendChild(o),o.appendChild(i),a},rg=function(t){return new Promise(function(e,n){var r=new Image;r.onload=function(){return e(r)},r.onerror=n,r.src="data:image/svg+xml;charset=utf-8,"+encodeURIComponent(new XMLSerializer().serializeToString(t))})},ry={get SUPPORT_RANGE_BOUNDS(){var rv=rc(document);return Object.defineProperty(ry,"SUPPORT_RANGE_BOUNDS",{value:rv}),rv},get SUPPORT_WORD_BREAKING(){var rm=ry.SUPPORT_RANGE_BOUNDS&&ru(document);return Object.defineProperty(ry,"SUPPORT_WORD_BREAKING",{value:rm}),rm},get SUPPORT_SVG_DRAWING(){var rb=rf(document);return Object.defineProperty(ry,"SUPPORT_SVG_DRAWING",{value:rb}),rb},get SUPPORT_FOREIGNOBJECT_DRAWING(){var rB="function"==typeof Array.from&&"function"==typeof window.fetch?rd(document):Promise.resolve(!1);return Object.defineProperty(ry,"SUPPORT_FOREIGNOBJECT_DRAWING",{value:rB}),rB},get SUPPORT_CORS_IMAGES(){var rw=void 0!==new Image().crossOrigin;return Object.defineProperty(ry,"SUPPORT_CORS_IMAGES",{value:rw}),rw},get SUPPORT_RESPONSE_TYPE(){var rx="string"==typeof new XMLHttpRequest().responseType;return Object.defineProperty(ry,"SUPPORT_RESPONSE_TYPE",{value:rx}),rx},get SUPPORT_CORS_XHR(){var rC="withCredentials"in new XMLHttpRequest;return Object.defineProperty(ry,"SUPPORT_CORS_XHR",{value:rC}),rC},get SUPPORT_NATIVE_TEXT_SEGMENTATION(){var rO=!!("u">typeof Intl&&Intl.Segmenter);return Object.defineProperty(ry,"SUPPORT_NATIVE_TEXT_SEGMENTATION",{value:rO}),rO}},rE=function(t,e){this.text=t,this.bounds=e},rk=function(t,e,n,r){var i=rU(e,n),A=[],a=0;return i.forEach(function(e){if(n.textDecorationLine.length||e.trim().length>0)if(ry.SUPPORT_RANGE_BOUNDS){var i=rQ(r,a,e.length).getClientRects();if(i.length>1){var o=rM(e),s=0;o.forEach(function(e){A.push(new rE(e,Q.fromDOMRectList(t,rQ(r,s+a,e.length).getClientRects()))),s+=e.length})}else A.push(new rE(e,Q.fromDOMRectList(t,i)))}else{var l=r.splitText(e.length);A.push(new rE(e,rF(t,r))),r=l}else ry.SUPPORT_RANGE_BOUNDS||(r=r.splitText(e.length));a+=e.length}),A},rF=function(t,e){var n=e.ownerDocument;if(n){var r=n.createElement("html2canvaswrapper");r.appendChild(e.cloneNode(!0));var i=e.parentNode;if(i){i.replaceChild(r,e);var A=M(t,r);return r.firstChild&&i.replaceChild(r.firstChild,r),A}}return Q.EMPTY},rQ=function(t,e,n){var r=t.ownerDocument;if(!r)throw Error("Node has no owner document");var i=r.createRange();return i.setStart(t,e),i.setEnd(t,e+n),i},rM=function(t){return ry.SUPPORT_NATIVE_TEXT_SEGMENTATION?Array.from(new Intl.Segmenter(void 0,{granularity:"grapheme"}).segment(t)).map(function(t){return t.segment}):rl(t)},rU=function(t,e){return 0!==e.letterSpacing?rM(t):ry.SUPPORT_NATIVE_TEXT_SEGMENTATION?Array.from(new Intl.Segmenter(void 0,{granularity:"word"}).segment(t)).map(function(t){return t.segment}):rI(t,e)},rS=[32,160,4961,65792,65793,4153,4241],rI=function(t,e){for(var n,r=to(t,{lineBreak:e.lineBreak,wordBreak:"break-word"===e.overflowWrap?"break-word":e.wordBreak}),i=[];!(n=r.next()).done;)!function(){if(n.value){var t=S(n.value.slice()),e="";t.forEach(function(t){-1===rS.indexOf(t)?e+=I(t):(e.length&&i.push(e),i.push(I(t)),e="")}),e.length&&i.push(e)}}();return i},rT=function(t,e,n){this.text=rL(e.data,n.textTransform),this.textBounds=rk(t,this.text,n,e)},rL=function(t,e){switch(e){case 1:return t.toLowerCase();case 3:return t.replace(r_,rP);case 2:return t.toUpperCase();default:return t}},r_=/(^|\s|:|-|\(|\))([a-z])/g,rP=function(t,e,n){return t.length>0?e+n.toUpperCase():t},rH=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.src=n.currentSrc||n.src,r.intrinsicWidth=n.naturalWidth,r.intrinsicHeight=n.naturalHeight,r.context.cache.addImage(r.src),r}return C(e,t),e}(n4),rj=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.canvas=n,r.intrinsicWidth=n.width,r.intrinsicHeight=n.height,r}return C(e,t),e}(n4),rN=function(t){function e(e,n){var r=t.call(this,e,n)||this,i=new XMLSerializer,A=M(e,n);return n.setAttribute("width",A.width+"px"),n.setAttribute("height",A.height+"px"),r.svg="data:image/svg+xml,"+encodeURIComponent(i.serializeToString(n)),r.intrinsicWidth=n.width.baseVal.value,r.intrinsicHeight=n.height.baseVal.value,r.context.cache.addImage(r.svg),r}return C(e,t),e}(n4),rD=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.value=n.value,r}return C(e,t),e}(n4),rR=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.start=n.start,r.reversed="boolean"==typeof n.reversed&&!0===n.reversed,r}return C(e,t),e}(n4),rK=[{type:15,flags:0,unit:"px",number:3}],rz=[{type:16,flags:0,number:50}],rG=function(t){var e=t.type===rX?Array(t.value.length+1).join("•"):t.value;return 0===e.length?t.placeholder||"":e},rV="checkbox",rW="radio",rX="password",rY=function(t){function e(e,n){var r,i=t.call(this,e,n)||this;switch(i.type=n.type.toLowerCase(),i.checked=n.checked,i.value=rG(n),(i.type===rV||i.type===rW)&&(i.styles.backgroundColor=0xdededeff,i.styles.borderTopColor=i.styles.borderRightColor=i.styles.borderBottomColor=i.styles.borderLeftColor=0xa5a5a5ff,i.styles.borderTopWidth=i.styles.borderRightWidth=i.styles.borderBottomWidth=i.styles.borderLeftWidth=1,i.styles.borderTopStyle=i.styles.borderRightStyle=i.styles.borderBottomStyle=i.styles.borderLeftStyle=1,i.styles.backgroundClip=[0],i.styles.backgroundOrigin=[0],i.bounds=(r=i.bounds).width>r.height?new Q(r.left+(r.width-r.height)/2,r.top,r.height,r.height):r.width0)n.textNodes.push(new rT(t,i,n.styles));else if(r6(i))if(ih(i)&&i.assignedNodes)i.assignedNodes().forEach(function(e){return r0(t,e,n,r)});else{var a=r1(t,i);a.styles.isVisible()&&(r4(i,a,r)?a.flags|=4:r5(a.styles)&&(a.flags|=2),-1!==rZ.indexOf(i.tagName)&&(a.flags|=8),n.elements.push(a),i.slot,i.shadowRoot?r0(t,i.shadowRoot,a,r):ic(i)||ir(i)||iu(i)||r0(t,i,a,r))}},r1=function(t,e){return io(e)?new rH(t,e):iA(e)?new rj(t,e):ir(e)?new rN(t,e):r7(e)?new rD(t,e):it(e)?new rR(t,e):ie(e)?new rY(t,e):iu(e)?new r$(t,e):ic(e)?new rq(t,e):is(e)?new rJ(t,e):new n4(t,e)},r2=function(t,e){var n=r1(t,e);return n.flags|=4,r0(t,e,n,n),n},r4=function(t,e,n){return e.styles.isPositionedWithZIndex()||e.styles.opacity<1||e.styles.isTransformed()||ii(t)&&n.styles.isTransparent()},r5=function(t){return t.isPositioned()||t.isFloating()},r3=function(t){return t.nodeType===Node.TEXT_NODE},r6=function(t){return t.nodeType===Node.ELEMENT_NODE},r8=function(t){return r6(t)&&void 0!==t.style&&!r9(t)},r9=function(t){return"object"==typeof t.className},r7=function(t){return"LI"===t.tagName},it=function(t){return"OL"===t.tagName},ie=function(t){return"INPUT"===t.tagName},ir=function(t){return"svg"===t.tagName},ii=function(t){return"BODY"===t.tagName},iA=function(t){return"CANVAS"===t.tagName},ia=function(t){return"VIDEO"===t.tagName},io=function(t){return"IMG"===t.tagName},is=function(t){return"IFRAME"===t.tagName},il=function(t){return"STYLE"===t.tagName},ic=function(t){return"TEXTAREA"===t.tagName},iu=function(t){return"SELECT"===t.tagName},ih=function(t){return"SLOT"===t.tagName},id=function(t){return t.tagName.indexOf("-")>0},ip=function(){function t(){this.counters={}}return t.prototype.getCounterValue=function(t){var e=this.counters[t];return e&&e.length?e[e.length-1]:1},t.prototype.getCounterValues=function(t){return this.counters[t]||[]},t.prototype.pop=function(t){var e=this;t.forEach(function(t){return e.counters[t].pop()})},t.prototype.parse=function(t){var e=this,n=t.counterIncrement,r=t.counterReset,i=!0;null!==n&&n.forEach(function(t){var n=e.counters[t.counter];n&&0!==t.increment&&(i=!1,n.length||n.push(1),n[Math.max(0,n.length-1)]+=t.increment)});var A=[];return i&&r.forEach(function(t){var n=e.counters[t.counter];A.push(t.counter),n||(n=e.counters[t.counter]=[]),n.push(t.reset)}),A},t}(),ig={integers:[1e3,900,500,400,100,90,50,40,10,9,5,4,1],values:["M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"]},iy={integers:[9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["Ք","Փ","Ւ","Ց","Ր","Տ","Վ","Ս","Ռ","Ջ","Պ","Չ","Ո","Շ","Ն","Յ","Մ","Ճ","Ղ","Ձ","Հ","Կ","Ծ","Խ","Լ","Ի","Ժ","Թ","Ը","Է","Զ","Ե","Դ","Գ","Բ","Ա"]},iv={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,400,300,200,100,90,80,70,60,50,40,30,20,19,18,17,16,15,10,9,8,7,6,5,4,3,2,1],values:["י׳","ט׳","ח׳","ז׳","ו׳","ה׳","ד׳","ג׳","ב׳","א׳","ת","ש","ר","ק","צ","פ","ע","ס","נ","מ","ל","כ","יט","יח","יז","טז","טו","י","ט","ח","ז","ו","ה","ד","ג","ב","א"]},im={integers:[1e4,9e3,8e3,7e3,6e3,5e3,4e3,3e3,2e3,1e3,900,800,700,600,500,400,300,200,100,90,80,70,60,50,40,30,20,10,9,8,7,6,5,4,3,2,1],values:["ჵ","ჰ","ჯ","ჴ","ხ","ჭ","წ","ძ","ც","ჩ","შ","ყ","ღ","ქ","ფ","ჳ","ტ","ს","რ","ჟ","პ","ო","ჲ","ნ","მ","ლ","კ","ი","თ","ჱ","ზ","ვ","ე","დ","გ","ბ","ა"]},ib=function(t,e,n,r,i,A){return tn?iQ(t,i,A.length>0):r.integers.reduce(function(e,n,i){for(;t>=n;)t-=n,e+=r.values[i];return e},"")+A},iB=function(t,e,n,r){var i="";do!n&&t--,i=r(t)+i,t/=e;while(t*e>=e);return i},iw=function(t,e,n,r,i){var A=n-e+1;return(t<0?"-":"")+(iB(Math.abs(t),A,r,function(t){return I(Math.floor(t%A)+e)})+i)},ix=function(t,e,n){void 0===n&&(n=". ");var r=e.length;return iB(Math.abs(t),r,!1,function(t){return e[Math.floor(t%r)]})+n},iC=function(t,e,n,r,i,A){if(t<-9999||t>9999)return iQ(t,4,i.length>0);var a=Math.abs(t),o=i;if(0===a)return e[0]+o;for(var s=0;a>0&&s<=4;s++){var l=a%10;0===l&&nN(A,1)&&""!==o?o=e[l]+o:l>1||1===l&&0===s||1===l&&1===s&&nN(A,2)||1===l&&1===s&&nN(A,4)&&t>100||1===l&&s>1&&nN(A,8)?o=e[l]+(s>0?n[s-1]:"")+o:1===l&&s>0&&(o=n[s-1]+o),a=Math.floor(a/10)}return(t<0?r:"")+o},iO="十百千萬",iE="拾佰仟萬",ik="マイナス",iF="마이너스",iQ=function(t,e,n){var r=n?". ":"",i=n?"、":"",A=n?", ":"",a=n?" ":"";switch(e){case 0:return"•"+a;case 1:return"◦"+a;case 2:return"◾"+a;case 5:var o=iw(t,48,57,!0,r);return o.length<4?"0"+o:o;case 4:return ix(t,"〇一二三四五六七八九",i);case 6:return ib(t,1,3999,ig,3,r).toLowerCase();case 7:return ib(t,1,3999,ig,3,r);case 8:return iw(t,945,969,!1,r);case 9:return iw(t,97,122,!1,r);case 10:return iw(t,65,90,!1,r);case 11:return iw(t,1632,1641,!0,r);case 12:case 49:return ib(t,1,9999,iy,3,r);case 35:return ib(t,1,9999,iy,3,r).toLowerCase();case 13:return iw(t,2534,2543,!0,r);case 14:case 30:return iw(t,6112,6121,!0,r);case 15:return ix(t,"子丑寅卯辰巳午未申酉戌亥",i);case 16:return ix(t,"甲乙丙丁戊己庚辛壬癸",i);case 17:case 48:return iC(t,"零一二三四五六七八九",iO,"負",i,14);case 47:return iC(t,"零壹貳參肆伍陸柒捌玖",iE,"負",i,15);case 42:return iC(t,"零一二三四五六七八九",iO,"负",i,14);case 41:return iC(t,"零壹贰叁肆伍陆柒捌玖",iE,"负",i,15);case 26:return iC(t,"〇一二三四五六七八九","十百千万",ik,i,0);case 25:return iC(t,"零壱弐参四伍六七八九","拾百千万",ik,i,7);case 31:return iC(t,"영일이삼사오육칠팔구","십백천만",iF,A,7);case 33:return iC(t,"零一二三四五六七八九","十百千萬",iF,A,0);case 32:return iC(t,"零壹貳參四五六七八九","拾百千",iF,A,7);case 18:return iw(t,2406,2415,!0,r);case 20:return ib(t,1,19999,im,3,r);case 21:return iw(t,2790,2799,!0,r);case 22:return iw(t,2662,2671,!0,r);case 22:return ib(t,1,10999,iv,3,r);case 23:return ix(t,"あいうえおかきくけこさしすせそたちつてとなにぬねのはひふへほまみむめもやゆよらりるれろわゐゑをん");case 24:return ix(t,"いろはにほへとちりぬるをわかよたれそつねならむうゐのおくやまけふこえてあさきゆめみしゑひもせす");case 27:return iw(t,3302,3311,!0,r);case 28:return ix(t,"アイウエオカキクケコサシスセソタチツテトナニヌネノハヒフヘホマミムメモヤユヨラリルレロワヰヱヲン",i);case 29:return ix(t,"イロハニホヘトチリヌルヲワカヨタレソツネナラムウヰノオクヤマケフコエテアサキユメミシヱヒモセス",i);case 34:return iw(t,3792,3801,!0,r);case 37:return iw(t,6160,6169,!0,r);case 38:return iw(t,4160,4169,!0,r);case 39:return iw(t,2918,2927,!0,r);case 40:return iw(t,1776,1785,!0,r);case 43:return iw(t,3046,3055,!0,r);case 44:return iw(t,3174,3183,!0,r);case 45:return iw(t,3664,3673,!0,r);case 46:return iw(t,3872,3881,!0,r);default:return iw(t,48,57,!0,r)}},iM="data-html2canvas-ignore",iU=function(){function t(t,e,n){if(this.context=t,this.options=n,this.scrolledElements=[],this.referenceElement=e,this.counters=new ip,this.quoteDepth=0,!e.ownerDocument)throw Error("Cloned element does not have an owner document");this.documentElement=this.cloneNode(e.ownerDocument.documentElement,!1)}return t.prototype.toIFrame=function(t,e){var n=this,r=iS(t,e);if(!r.contentWindow)return Promise.reject("Unable to find iframe window");var i=t.defaultView.pageXOffset,A=t.defaultView.pageYOffset,a=r.contentWindow,o=a.document,s=iL(r).then(function(){return E(n,void 0,void 0,function(){var t,n;return k(this,function(i){switch(i.label){case 0:if(this.scrolledElements.forEach(iN),a&&(a.scrollTo(e.left,e.top),/(iPad|iPhone|iPod)/g.test(navigator.userAgent)&&(a.scrollY!==e.top||a.scrollX!==e.left)&&(this.context.logger.warn("Unable to restore scroll position for cloned document"),this.context.windowBounds=this.context.windowBounds.add(a.scrollX-e.left,a.scrollY-e.top,0,0))),t=this.options.onclone,void 0===(n=this.clonedReferenceElement))return[2,Promise.reject("Error finding the "+this.referenceElement.nodeName+" in the cloned document")];if(!(o.fonts&&o.fonts.ready))return[3,2];return[4,o.fonts.ready];case 1:i.sent(),i.label=2;case 2:if(!/(AppleWebKit)/g.test(navigator.userAgent))return[3,4];return[4,iT(o)];case 3:i.sent(),i.label=4;case 4:if("function"==typeof t)return[2,Promise.resolve().then(function(){return t(o,n)}).then(function(){return r})];return[2,r]}})})});return o.open(),o.write(iH(document.doctype)+""),ij(this.referenceElement.ownerDocument,i,A),o.replaceChild(o.adoptNode(this.documentElement),o.documentElement),o.close(),s},t.prototype.createElementClone=function(t){if(n2(t,2),iA(t))return this.createCanvasClone(t);if(ia(t))return this.createVideoClone(t);if(il(t))return this.createStyleClone(t);var e=t.cloneNode(!1);return(io(e)&&(io(t)&&t.currentSrc&&t.currentSrc!==t.src&&(e.src=t.currentSrc,e.srcset=""),"lazy"===e.loading&&(e.loading="eager")),id(e))?this.createCustomElementClone(e):e},t.prototype.createCustomElementClone=function(t){var e=document.createElement("html2canvascustomelement");return iP(t.style,e),e},t.prototype.createStyleClone=function(t){try{var e=t.sheet;if(e&&e.cssRules){var n=[].slice.call(e.cssRules,0).reduce(function(t,e){return e&&"string"==typeof e.cssText?t+e.cssText:t},""),r=t.cloneNode(!1);return r.textContent=n,r}}catch(t){if(this.context.logger.error("Unable to access cssRules property",t),"SecurityError"!==t.name)throw t}return t.cloneNode(!1)},t.prototype.createCanvasClone=function(t){if(this.options.inlineImages&&t.ownerDocument){var e,n=t.ownerDocument.createElement("img");try{return n.src=t.toDataURL(),n}catch(e){this.context.logger.info("Unable to inline canvas contents, canvas is tainted",t)}}var r=t.cloneNode(!1);try{r.width=t.width,r.height=t.height;var i=t.getContext("2d"),A=r.getContext("2d");if(A)if(!this.options.allowTaint&&i)A.putImageData(i.getImageData(0,0,t.width,t.height),0,0);else{var a=null!=(e=t.getContext("webgl2"))?e:t.getContext("webgl");if(a){var o=a.getContextAttributes();(null==o?void 0:o.preserveDrawingBuffer)===!1&&this.context.logger.warn("Unable to clone WebGL context as it has preserveDrawingBuffer=false",t)}A.drawImage(t,0,0)}}catch(e){this.context.logger.info("Unable to clone canvas as it is tainted",t)}return r},t.prototype.createVideoClone=function(t){var e=t.ownerDocument.createElement("canvas");e.width=t.offsetWidth,e.height=t.offsetHeight;var n=e.getContext("2d");try{return n&&(n.drawImage(t,0,0,e.width,e.height),this.options.allowTaint||n.getImageData(0,0,e.width,e.height)),e}catch(e){this.context.logger.info("Unable to clone video as it is tainted",t)}var r=t.ownerDocument.createElement("canvas");return r.width=t.offsetWidth,r.height=t.offsetHeight,r},t.prototype.appendChildNode=function(t,e,n){r6(e)&&("SCRIPT"===e.tagName||e.hasAttribute(iM)||"function"==typeof this.options.ignoreElements&&this.options.ignoreElements(e))||this.options.copyStyles&&r6(e)&&il(e)||t.appendChild(this.cloneNode(e,n))},t.prototype.cloneChildNodes=function(t,e,n){for(var r=this,i=t.shadowRoot?t.shadowRoot.firstChild:t.firstChild;i;i=i.nextSibling)if(r6(i)&&ih(i)&&"function"==typeof i.assignedNodes){var A=i.assignedNodes();A.length&&A.forEach(function(t){return r.appendChildNode(e,t,n)})}else this.appendChildNode(e,i,n)},t.prototype.cloneNode=function(t,e){if(r3(t))return document.createTextNode(t.data);if(!t.ownerDocument)return t.cloneNode(!1);var n=t.ownerDocument.defaultView;if(n&&r6(t)&&(r8(t)||r9(t))){var r=this.createElementClone(t);r.style.transitionProperty="none";var i=n.getComputedStyle(t),A=n.getComputedStyle(t,":before"),a=n.getComputedStyle(t,":after");this.referenceElement===t&&r8(r)&&(this.clonedReferenceElement=r),ii(r)&&iz(r);var o=this.counters.parse(new nZ(this.context,i)),s=this.resolvePseudoContent(t,r,A,B.BEFORE);id(t)&&(e=!0),ia(t)||this.cloneChildNodes(t,r,e),s&&r.insertBefore(s,r.firstChild);var l=this.resolvePseudoContent(t,r,a,B.AFTER);return l&&r.appendChild(l),this.counters.pop(o),(i&&(this.options.copyStyles||r9(t))&&!is(t)||e)&&iP(i,r),(0!==t.scrollTop||0!==t.scrollLeft)&&this.scrolledElements.push([r,t.scrollLeft,t.scrollTop]),(ic(t)||iu(t))&&(ic(r)||iu(r))&&(r.value=t.value),r}return t.cloneNode(!1)},t.prototype.resolvePseudoContent=function(t,e,n,r){var i=this;if(n){var A=n.content,a=e.ownerDocument;if(a&&A&&"none"!==A&&"-moz-alt-content"!==A&&"none"!==n.display){this.counters.parse(new nZ(this.context,n));var o=new nJ(this.context,n),s=a.createElement("html2canvaspseudoelement");iP(n,s),o.content.forEach(function(e){if(0===e.type)s.appendChild(a.createTextNode(e.value));else if(22===e.type){var n=a.createElement("img");n.src=e.value,n.style.opacity="1",s.appendChild(n)}else if(18===e.type){if("attr"===e.name){var r=e.values.filter(tK);r.length&&s.appendChild(a.createTextNode(t.getAttribute(r[0].value)||""))}else if("counter"===e.name){var A=e.values.filter(tW),l=A[0],c=A[1];if(l&&tK(l)){var u=i.counters.getCounterValue(l.value),f=c&&tK(c)?na.parse(i.context,c.value):3;s.appendChild(a.createTextNode(iQ(u,f,!1)))}}else if("counters"===e.name){var h=e.values.filter(tW),l=h[0],d=h[1],c=h[2];if(l&&tK(l)){var p=i.counters.getCounterValues(l.value),g=c&&tK(c)?na.parse(i.context,c.value):3,y=d&&0===d.type?d.value:"",v=p.map(function(t){return iQ(t,g,!1)}).join(y);s.appendChild(a.createTextNode(v))}}}else if(20===e.type)switch(e.value){case"open-quote":s.appendChild(a.createTextNode(nV(o.quotes,i.quoteDepth++,!0)));break;case"close-quote":s.appendChild(a.createTextNode(nV(o.quotes,--i.quoteDepth,!1)));break;default:s.appendChild(a.createTextNode(e.value))}}),s.className=iD+" "+iR;var l=r===B.BEFORE?" "+iD:" "+iR;return r9(e)?e.className.baseValue+=l:e.className+=l,s}}},t.destroy=function(t){return!!t.parentNode&&(t.parentNode.removeChild(t),!0)},t}();(p=B||(B={}))[p.BEFORE=0]="BEFORE",p[p.AFTER=1]="AFTER";var iS=function(t,e){var n=t.createElement("iframe");return n.className="html2canvas-container",n.style.visibility="hidden",n.style.position="fixed",n.style.left="-10000px",n.style.top="0px",n.style.border="0",n.width=e.width.toString(),n.height=e.height.toString(),n.scrolling="no",n.setAttribute(iM,"true"),t.body.appendChild(n),n},iI=function(t){return new Promise(function(e){t.complete||!t.src?e():(t.onload=e,t.onerror=e)})},iT=function(t){return Promise.all([].slice.call(t.images,0).map(iI))},iL=function(t){return new Promise(function(e,n){var r=t.contentWindow;if(!r)return n("No window assigned for iframe");var i=r.document;r.onload=t.onload=function(){r.onload=t.onload=null;var n=setInterval(function(){i.body.childNodes.length>0&&"complete"===i.readyState&&(clearInterval(n),e(t))},50)}})},i_=["all","d","content"],iP=function(t,e){for(var n=t.length-1;n>=0;n--){var r=t.item(n);-1===i_.indexOf(r)&&e.style.setProperty(r,t.getPropertyValue(r))}return e},iH=function(t){var e="";return t&&(e+=""),e},ij=function(t,e,n){t&&t.defaultView&&(e!==t.defaultView.pageXOffset||n!==t.defaultView.pageYOffset)&&t.defaultView.scrollTo(e,n)},iN=function(t){var e=t[0],n=t[1],r=t[2];e.scrollLeft=n,e.scrollTop=r},iD="___html2canvas___pseudoelement_before",iR="___html2canvas___pseudoelement_after",iK='{\n content: "" !important;\n display: none !important;\n}',iz=function(t){iG(t,"."+iD+":before"+iK+"\n ."+iR+":after"+iK)},iG=function(t,e){var n=t.ownerDocument;if(n){var r=n.createElement("style");r.textContent=e,t.appendChild(r)}},iV=function(){function t(){}return t.getOrigin=function(e){var n=t._link;return n?(n.href=e,n.href=n.href,n.protocol+n.hostname+n.port):"about:blank"},t.isSameOrigin=function(e){return t.getOrigin(e)===t._origin},t.setContext=function(e){t._link=e.document.createElement("a"),t._origin=t.getOrigin(e.location.href)},t._origin="about:blank",t}(),iW=function(){function t(t,e){this.context=t,this._options=e,this._cache={}}return t.prototype.addImage=function(t){var e=Promise.resolve();return this.has(t)||(i0(t)||iq(t))&&(this._cache[t]=this.loadImage(t)).catch(function(){}),e},t.prototype.match=function(t){return this._cache[t]},t.prototype.loadImage=function(t){return E(this,void 0,void 0,function(){var e,n,r,i,A=this;return k(this,function(a){switch(a.label){case 0:if(e=iV.isSameOrigin(t),n=!iJ(t)&&!0===this._options.useCORS&&ry.SUPPORT_CORS_IMAGES&&!e,r=!iJ(t)&&!e&&!i0(t)&&"string"==typeof this._options.proxy&&ry.SUPPORT_CORS_XHR&&!n,!e&&!1===this._options.allowTaint&&!iJ(t)&&!i0(t)&&!r&&!n)return[2];if(i=t,!r)return[3,2];return[4,this.proxy(i)];case 1:i=a.sent(),a.label=2;case 2:return this.context.logger.debug("Added image "+t.substring(0,256)),[4,new Promise(function(t,e){var r=new Image;r.onload=function(){return t(r)},r.onerror=e,(iZ(i)||n)&&(r.crossOrigin="anonymous"),r.src=i,!0===r.complete&&setTimeout(function(){return t(r)},500),A._options.imageTimeout>0&&setTimeout(function(){return e("Timed out ("+A._options.imageTimeout+"ms) loading image")},A._options.imageTimeout)})];case 3:return[2,a.sent()]}})})},t.prototype.has=function(t){return void 0!==this._cache[t]},t.prototype.keys=function(){return Promise.resolve(Object.keys(this._cache))},t.prototype.proxy=function(t){var e=this,n=this._options.proxy;if(!n)throw Error("No proxy defined");var r=t.substring(0,256);return new Promise(function(i,A){var a=ry.SUPPORT_RESPONSE_TYPE?"blob":"text",o=new XMLHttpRequest;o.onload=function(){if(200===o.status)if("text"===a)i(o.response);else{var t=new FileReader;t.addEventListener("load",function(){return i(t.result)},!1),t.addEventListener("error",function(t){return A(t)},!1),t.readAsDataURL(o.response)}else A("Failed to proxy resource "+r+" with status code "+o.status)},o.onerror=A;var s=n.indexOf("?")>-1?"&":"?";if(o.open("GET",""+n+s+"url="+encodeURIComponent(t)+"&responseType="+a),"text"!==a&&o instanceof XMLHttpRequest&&(o.responseType=a),e._options.imageTimeout){var l=e._options.imageTimeout;o.timeout=l,o.ontimeout=function(){return A("Timed out ("+l+"ms) proxying "+r)}}o.send()})},t}(),iX=/^data:image\/svg\+xml/i,iY=/^data:image\/.*;base64,/i,i$=/^data:image\/.*/i,iq=function(t){return ry.SUPPORT_SVG_DRAWING||!i1(t)},iJ=function(t){return i$.test(t)},iZ=function(t){return iY.test(t)},i0=function(t){return"blob"===t.substr(0,4)},i1=function(t){return"svg"===t.substr(-3).toLowerCase()||iX.test(t)},i2=function(){function t(t,e){this.type=0,this.x=t,this.y=e}return t.prototype.add=function(e,n){return new t(this.x+e,this.y+n)},t}(),i4=function(t,e,n){return new i2(t.x+(e.x-t.x)*n,t.y+(e.y-t.y)*n)},i5=function(){function t(t,e,n,r){this.type=1,this.start=t,this.startControl=e,this.endControl=n,this.end=r}return t.prototype.subdivide=function(e,n){var r=i4(this.start,this.startControl,e),i=i4(this.startControl,this.endControl,e),A=i4(this.endControl,this.end,e),a=i4(r,i,e),o=i4(i,A,e),s=i4(a,o,e);return n?new t(this.start,r,a,s):new t(s,o,A,this.end)},t.prototype.add=function(e,n){return new t(this.start.add(e,n),this.startControl.add(e,n),this.endControl.add(e,n),this.end.add(e,n))},t.prototype.reverse=function(){return new t(this.end,this.endControl,this.startControl,this.start)},t}(),i3=function(t){return 1===t.type},i6=function(t){var e=t.styles,n=t.bounds,r=t2(e.borderTopLeftRadius,n.width,n.height),i=r[0],A=r[1],a=t2(e.borderTopRightRadius,n.width,n.height),o=a[0],s=a[1],l=t2(e.borderBottomRightRadius,n.width,n.height),c=l[0],u=l[1],f=t2(e.borderBottomLeftRadius,n.width,n.height),h=f[0],d=f[1],p=[];p.push((i+o)/n.width),p.push((h+c)/n.width),p.push((A+d)/n.height),p.push((s+u)/n.height);var g=Math.max.apply(Math,p);g>1&&(i/=g,A/=g,o/=g,s/=g,c/=g,u/=g,h/=g,d/=g);var y=n.width-o,v=n.height-u,b=n.width-c,B=n.height-d,x=e.borderTopWidth,C=e.borderRightWidth,O=e.borderBottomWidth,E=e.borderLeftWidth,k=t4(e.paddingTop,t.bounds.width),F=t4(e.paddingRight,t.bounds.width),Q=t4(e.paddingBottom,t.bounds.width),M=t4(e.paddingLeft,t.bounds.width);this.topLeftBorderDoubleOuterBox=i>0||A>0?i8(n.left+E/3,n.top+x/3,i-E/3,A-x/3,w.TOP_LEFT):new i2(n.left+E/3,n.top+x/3),this.topRightBorderDoubleOuterBox=i>0||A>0?i8(n.left+y,n.top+x/3,o-C/3,s-x/3,w.TOP_RIGHT):new i2(n.left+n.width-C/3,n.top+x/3),this.bottomRightBorderDoubleOuterBox=c>0||u>0?i8(n.left+b,n.top+v,c-C/3,u-O/3,w.BOTTOM_RIGHT):new i2(n.left+n.width-C/3,n.top+n.height-O/3),this.bottomLeftBorderDoubleOuterBox=h>0||d>0?i8(n.left+E/3,n.top+B,h-E/3,d-O/3,w.BOTTOM_LEFT):new i2(n.left+E/3,n.top+n.height-O/3),this.topLeftBorderDoubleInnerBox=i>0||A>0?i8(n.left+2*E/3,n.top+2*x/3,i-2*E/3,A-2*x/3,w.TOP_LEFT):new i2(n.left+2*E/3,n.top+2*x/3),this.topRightBorderDoubleInnerBox=i>0||A>0?i8(n.left+y,n.top+2*x/3,o-2*C/3,s-2*x/3,w.TOP_RIGHT):new i2(n.left+n.width-2*C/3,n.top+2*x/3),this.bottomRightBorderDoubleInnerBox=c>0||u>0?i8(n.left+b,n.top+v,c-2*C/3,u-2*O/3,w.BOTTOM_RIGHT):new i2(n.left+n.width-2*C/3,n.top+n.height-2*O/3),this.bottomLeftBorderDoubleInnerBox=h>0||d>0?i8(n.left+2*E/3,n.top+B,h-2*E/3,d-2*O/3,w.BOTTOM_LEFT):new i2(n.left+2*E/3,n.top+n.height-2*O/3),this.topLeftBorderStroke=i>0||A>0?i8(n.left+E/2,n.top+x/2,i-E/2,A-x/2,w.TOP_LEFT):new i2(n.left+E/2,n.top+x/2),this.topRightBorderStroke=i>0||A>0?i8(n.left+y,n.top+x/2,o-C/2,s-x/2,w.TOP_RIGHT):new i2(n.left+n.width-C/2,n.top+x/2),this.bottomRightBorderStroke=c>0||u>0?i8(n.left+b,n.top+v,c-C/2,u-O/2,w.BOTTOM_RIGHT):new i2(n.left+n.width-C/2,n.top+n.height-O/2),this.bottomLeftBorderStroke=h>0||d>0?i8(n.left+E/2,n.top+B,h-E/2,d-O/2,w.BOTTOM_LEFT):new i2(n.left+E/2,n.top+n.height-O/2),this.topLeftBorderBox=i>0||A>0?i8(n.left,n.top,i,A,w.TOP_LEFT):new i2(n.left,n.top),this.topRightBorderBox=o>0||s>0?i8(n.left+y,n.top,o,s,w.TOP_RIGHT):new i2(n.left+n.width,n.top),this.bottomRightBorderBox=c>0||u>0?i8(n.left+b,n.top+v,c,u,w.BOTTOM_RIGHT):new i2(n.left+n.width,n.top+n.height),this.bottomLeftBorderBox=h>0||d>0?i8(n.left,n.top+B,h,d,w.BOTTOM_LEFT):new i2(n.left,n.top+n.height),this.topLeftPaddingBox=i>0||A>0?i8(n.left+E,n.top+x,Math.max(0,i-E),Math.max(0,A-x),w.TOP_LEFT):new i2(n.left+E,n.top+x),this.topRightPaddingBox=o>0||s>0?i8(n.left+Math.min(y,n.width-C),n.top+x,y>n.width+C?0:Math.max(0,o-C),Math.max(0,s-x),w.TOP_RIGHT):new i2(n.left+n.width-C,n.top+x),this.bottomRightPaddingBox=c>0||u>0?i8(n.left+Math.min(b,n.width-E),n.top+Math.min(v,n.height-O),Math.max(0,c-C),Math.max(0,u-O),w.BOTTOM_RIGHT):new i2(n.left+n.width-C,n.top+n.height-O),this.bottomLeftPaddingBox=h>0||d>0?i8(n.left+E,n.top+Math.min(B,n.height-O),Math.max(0,h-E),Math.max(0,d-O),w.BOTTOM_LEFT):new i2(n.left+E,n.top+n.height-O),this.topLeftContentBox=i>0||A>0?i8(n.left+E+M,n.top+x+k,Math.max(0,i-(E+M)),Math.max(0,A-(x+k)),w.TOP_LEFT):new i2(n.left+E+M,n.top+x+k),this.topRightContentBox=o>0||s>0?i8(n.left+Math.min(y,n.width+E+M),n.top+x+k,y>n.width+E+M?0:o-E+M,s-(x+k),w.TOP_RIGHT):new i2(n.left+n.width-(C+F),n.top+x+k),this.bottomRightContentBox=c>0||u>0?i8(n.left+Math.min(b,n.width-(E+M)),n.top+Math.min(v,n.height+x+k),Math.max(0,c-(C+F)),u-(O+Q),w.BOTTOM_RIGHT):new i2(n.left+n.width-(C+F),n.top+n.height-(O+Q)),this.bottomLeftContentBox=h>0||d>0?i8(n.left+E+M,n.top+B,Math.max(0,h-(E+M)),d-(O+Q),w.BOTTOM_LEFT):new i2(n.left+E+M,n.top+n.height-(O+Q))};(g=w||(w={}))[g.TOP_LEFT=0]="TOP_LEFT",g[g.TOP_RIGHT=1]="TOP_RIGHT",g[g.BOTTOM_RIGHT=2]="BOTTOM_RIGHT",g[g.BOTTOM_LEFT=3]="BOTTOM_LEFT";var i8=function(t,e,n,r,i){var A=(Math.sqrt(2)-1)/3*4,a=n*A,o=r*A,s=t+n,l=e+r;switch(i){case w.TOP_LEFT:return new i5(new i2(t,l),new i2(t,l-o),new i2(s-a,e),new i2(s,e));case w.TOP_RIGHT:return new i5(new i2(t,e),new i2(t+a,e),new i2(s,l-o),new i2(s,l));case w.BOTTOM_RIGHT:return new i5(new i2(s,e),new i2(s,e+o),new i2(t+a,l),new i2(t,l));case w.BOTTOM_LEFT:default:return new i5(new i2(s,l),new i2(s-a,l),new i2(t,e+o),new i2(t,e))}},i9=function(t){return[t.topLeftBorderBox,t.topRightBorderBox,t.bottomRightBorderBox,t.bottomLeftBorderBox]},i7=function(t){return[t.topLeftPaddingBox,t.topRightPaddingBox,t.bottomRightPaddingBox,t.bottomLeftPaddingBox]},At=function(t,e,n){this.offsetX=t,this.offsetY=e,this.matrix=n,this.type=0,this.target=6},Ae=function(t,e){this.path=t,this.target=e,this.type=1},An=function(t){this.opacity=t,this.type=2,this.target=6},Ar=function(t){return 1===t.type},Ai=function(t,e){return t.length===e.length&&t.some(function(t,n){return t===e[n]})},AA=function(t){this.element=t,this.inlineLevel=[],this.nonInlineLevel=[],this.negativeZIndex=[],this.zeroOrAutoZIndexOrTransformedOrOpacity=[],this.positiveZIndex=[],this.nonPositionedFloats=[],this.nonPositionedInlineLevel=[]},Aa=function(){function t(t,e){if(this.container=t,this.parent=e,this.effects=[],this.curves=new i6(this.container),this.container.styles.opacity<1&&this.effects.push(new An(this.container.styles.opacity)),null!==this.container.styles.transform){var n=this.container.bounds.left+this.container.styles.transformOrigin[0].number,r=this.container.bounds.top+this.container.styles.transformOrigin[1].number,i=this.container.styles.transform;this.effects.push(new At(n,r,i))}if(0!==this.container.styles.overflowX){var A=i9(this.curves),a=i7(this.curves);Ai(A,a)?this.effects.push(new Ae(A,6)):(this.effects.push(new Ae(A,2)),this.effects.push(new Ae(a,4)))}}return t.prototype.getEffects=function(t){for(var e=-1===[2,3].indexOf(this.container.styles.position),n=this.parent,r=this.effects.slice(0);n;){var i=n.effects.filter(function(t){return!Ar(t)});if(e||0!==n.container.styles.position||!n.parent){if(r.unshift.apply(r,i),e=-1===[2,3].indexOf(n.container.styles.position),0!==n.container.styles.overflowX){var A=i9(n.curves),a=i7(n.curves);Ai(A,a)||r.unshift(new Ae(a,6))}}else r.unshift.apply(r,i);n=n.parent}return r.filter(function(e){return nN(e.target,t)})},t}(),Ao=function(t,e,n,r){t.container.elements.forEach(function(i){var A=nN(i.flags,4),a=nN(i.flags,2),o=new Aa(i,t);nN(i.styles.display,2048)&&r.push(o);var s=nN(i.flags,8)?[]:r;if(A||a){var l=A||i.styles.isPositioned()?n:e,c=new AA(o);if(i.styles.isPositioned()||i.styles.opacity<1||i.styles.isTransformed()){var u=i.styles.zIndex.order;if(u<0){var f=0;l.negativeZIndex.some(function(t,e){if(u>t.element.container.styles.zIndex.order)f=e;else if(f>0)return!0;return!1}),l.negativeZIndex.splice(f,0,c)}else if(u>0){var h=0;l.positiveZIndex.some(function(t,e){if(u>=t.element.container.styles.zIndex.order)h=e+1;else if(h>0)return!0;return!1}),l.positiveZIndex.splice(h,0,c)}else l.zeroOrAutoZIndexOrTransformedOrOpacity.push(c)}else i.styles.isFloating()?l.nonPositionedFloats.push(c):l.nonPositionedInlineLevel.push(c);Ao(o,c,A?c:n,s)}else i.styles.isInlineLevel()?e.inlineLevel.push(o):e.nonInlineLevel.push(o),Ao(o,e,n,s);nN(i.flags,8)&&As(i,s)})},As=function(t,e){for(var n=t instanceof rR?t.start:1,r=t instanceof rR&&t.reversed,i=0;i0&&t.intrinsicHeight>0){var r=Ay(t),i=i7(e);this.path(i),this.ctx.save(),this.ctx.clip(),this.ctx.drawImage(n,0,0,t.intrinsicWidth,t.intrinsicHeight,r.left,r.top,r.width,r.height),this.ctx.restore()}},e.prototype.renderNodeContent=function(t){return E(this,void 0,void 0,function(){var n,r,i,A,a,o,s,l,c,u,f,h,d,p,g,y,v,b;return k(this,function(B){switch(B.label){case 0:this.applyEffects(t.getEffects(4)),n=t.container,r=t.curves,i=n.styles,A=0,a=n.textNodes,B.label=1;case 1:if(!(A0&&u>0&&(f=r.ctx.createPattern(B,"repeat"),r.renderRepeat(o,f,s,l))):2===n.type&&(o=(C=Av(t,e,[null,null,null]))[0],O=C[1],E=C[2],c=C[3],u=C[4],s=t4((F=0===n.position.length?[t0]:n.position)[0],c),l=t4(F[F.length-1],u),M=(Q=em(n,s,l,c,u))[0],U=Q[1],M>0&&U>0&&(S=r.ctx.createRadialGradient(O+s,E+l,0,O+s,E+l,M),ed(n.stops,2*M).forEach(function(t){return S.addColorStop(t.stop,en(t.color))}),r.path(o),r.ctx.fillStyle=S,M!==U?(I=t.bounds.left+.5*t.bounds.width,T=t.bounds.top+.5*t.bounds.height,_=1/(L=U/M),r.ctx.save(),r.ctx.translate(I,T),r.ctx.transform(1,0,0,L,0,0),r.ctx.translate(-I,-T),r.ctx.fillRect(O,_*(E-T)+T,c,u*_),r.ctx.restore()):r.ctx.fill())),k.label=6;case 6:return e--,[2]}})},r=this,i=0,A=t.styles.backgroundImage.slice(0).reverse(),o.label=1;case 1:if(!(i0))return[3,11];if(2!==s.style)return[3,5];return[4,this.renderDashedDottedBorder(s.color,s.width,A,t.curves,2)];case 4:case 6:case 8:return c.sent(),[3,11];case 5:if(3!==s.style)return[3,7];return[4,this.renderDashedDottedBorder(s.color,s.width,A,t.curves,3)];case 7:if(4!==s.style)return[3,9];return[4,this.renderDoubleBorder(s.color,s.width,A,t.curves)];case 9:return[4,this.renderSolidBorder(s.color,A,t.curves)];case 10:c.sent(),c.label=11;case 11:A++,c.label=12;case 12:return a++,[3,3];case 13:return[2]}})})},e.prototype.renderDashedDottedBorder=function(t,e,n,r,i){return E(this,void 0,void 0,function(){var A,a,o,s,l,c,u,f,h,d,p,g,y,v,b,B;return k(this,function(w){return this.ctx.save(),A=Ah(r,n),a=Ac(r,n),2===i&&(this.path(a),this.ctx.clip()),i3(a[0])?(o=a[0].start.x,s=a[0].start.y):(o=a[0].x,s=a[0].y),i3(a[1])?(l=a[1].end.x,c=a[1].end.y):(l=a[1].x,c=a[1].y),u=0===n||2===n?Math.abs(o-l):Math.abs(s-c),this.ctx.beginPath(),3===i?this.formatPath(A):this.formatPath(a.slice(0,2)),f=e<3?3*e:2*e,h=e<3?2*e:e,3===i&&(f=e,h=e),d=!0,u<=2*f?d=!1:u<=2*f+h?(p=u/(2*f+h),f*=p,h*=p):(g=Math.floor((u+h)/(f+h)),y=(u-g*f)/(g-1),h=(v=(u-(g+1)*f)/g)<=0||Math.abs(h-y)typeof window&&window.console&&"function"==typeof console.debug?console.debug.apply(console,F([this.id,this.getTime()+"ms"],t)):this.info.apply(this,t))},t.prototype.getTime=function(){return Date.now()-this.start},t.prototype.info=function(){for(var t=[],e=0;etypeof window&&window.console&&"function"==typeof console.info&&console.info.apply(console,F([this.id,this.getTime()+"ms"],t))},t.prototype.warn=function(){for(var t=[],e=0;etypeof window&&window.console&&"function"==typeof console.warn?console.warn.apply(console,F([this.id,this.getTime()+"ms"],t)):this.info.apply(this,t))},t.prototype.error=function(){for(var t=[],e=0;etypeof window&&window.console&&"function"==typeof console.error?console.error.apply(console,F([this.id,this.getTime()+"ms"],t)):this.info.apply(this,t))},t.instances={},t}(),A_=function(){function t(e,n){var r;this.windowBounds=n,this.instanceName="#"+t.instanceCount++,this.logger=new AL({id:this.instanceName,enabled:e.logging}),this.cache=null!=(r=e.cache)?r:new iW(this,e)}return t.instanceCount=1,t}();"u">typeof window&&iV.setContext(window);var AP=function(t,e,n){var r=e.ownerDocument,i=r.documentElement?el(t,getComputedStyle(r.documentElement).backgroundColor):ec.TRANSPARENT,A=r.body?el(t,getComputedStyle(r.body).backgroundColor):ec.TRANSPARENT,a="string"==typeof n?el(t,n):null===n?ec.TRANSPARENT:0xffffffff;return e===r.documentElement?ee(i)?ee(A)?a:A:i:a};return function(t,e){var n,r;return void 0===e&&(e={}),n=t,r=e,E(void 0,void 0,void 0,function(){var t,e,i,A,a,o,s,l,c,u,f,h,d,p,g,y,v,b,B,w,x,C,E,F,S,I,T,L,_,P,H,j,N,D,R,K,z;return k(this,function(k){switch(k.label){case 0:if(!n||"object"!=typeof n)return[2,Promise.reject("Invalid element provided as first argument")];if(!(t=n.ownerDocument))throw Error("Element is not attached to a Document");if(!(e=t.defaultView))throw Error("Document is not attached to a Window");if(i={allowTaint:null!=(x=r.allowTaint)&&x,imageTimeout:null!=(C=r.imageTimeout)?C:15e3,proxy:r.proxy,useCORS:null!=(E=r.useCORS)&&E},o=new A_(O({logging:null==(F=r.logging)||F,cache:r.cache},i),a=new Q((A={windowWidth:null!=(S=r.windowWidth)?S:e.innerWidth,windowHeight:null!=(I=r.windowHeight)?I:e.innerHeight,scrollX:null!=(T=r.scrollX)?T:e.pageXOffset,scrollY:null!=(L=r.scrollY)?L:e.pageYOffset}).scrollX,A.scrollY,A.windowWidth,A.windowHeight)),s=null!=(_=r.foreignObjectRendering)&&_,l={allowTaint:null!=(P=r.allowTaint)&&P,onclone:r.onclone,ignoreElements:r.ignoreElements,inlineImages:s,copyStyles:s},o.logger.debug("Starting document clone with size "+a.width+"x"+a.height+" scrolled to "+-a.left+","+-a.top),!(u=(c=new iU(o,n,l)).clonedReferenceElement))return[2,Promise.reject("Unable to find element in cloned iframe")];return[4,c.toIFrame(t,a)];case 1:if(f=k.sent(),d=(h=ii(u)||"HTML"===u.tagName?U(u.ownerDocument):M(o,u)).width,p=h.height,g=h.left,y=h.top,v=AP(o,u,r.backgroundColor),b={canvas:r.canvas,backgroundColor:v,scale:null!=(j=null!=(H=r.scale)?H:e.devicePixelRatio)?j:1,x:(null!=(N=r.x)?N:0)+g,y:(null!=(D=r.y)?D:0)+y,width:null!=(R=r.width)?R:Math.ceil(d),height:null!=(K=r.height)?K:Math.ceil(p)},!s)return[3,3];return o.logger.debug("Document cloned, using foreign object rendering"),[4,new AI(o,b).render(u)];case 2:return B=k.sent(),[3,5];case 3:return o.logger.debug("Document cloned, element located at "+g+","+y+" with size "+d+"x"+p+" using computed rendering"),o.logger.debug("Starting DOM parsing"),w=r2(o,u),v===w.styles.backgroundColor&&(w.styles.backgroundColor=ec.TRANSPARENT),o.logger.debug("Starting renderer for element at "+b.x+","+b.y+" with size "+b.width+"x"+b.height),[4,new Ak(o,b).render(w)];case 4:B=k.sent(),k.label=5;case 5:return(null==(z=r.removeContainer)||z)&&!iU.destroy(f)&&o.logger.error("Cannot detach cloned iframe as it is not in the DOM anymore"),o.logger.debug("Finished rendering"),[2,B]}})})}}()},47136(t){"use strict";var e=t.exports;t.exports.isNumber=function(t){return"number"==typeof t},t.exports.findMin=function(t){if(0===t.length)return 1/0;for(var e=t[0],n=1;n=u.length)){var n=Math.max(e-r,0),i=Math.min(e+r,u.length-1),a=n-(e-r),o=e+r-i,l=d/(d-(h[-r-1+a]||0)-(h[-r-1+o]||0));a>0&&(g+=l*(a-1)*p);var f=Math.max(0,e-r+1);A.inside(0,u.length-1,f)&&(u[f].y+=l*p),A.inside(0,u.length-1,e+1)&&(u[e+1].y-=2*l*p),A.inside(0,u.length-1,i+1)&&(u[i+1].y+=l*p)}});var y=g,v=0,b=0;return u.forEach(function(t){v+=t.y,t.y=y+=v,b+=y}),b>0&&u.forEach(function(t){t.y/=b}),u},t.exports.getExpectedValueFromPdf=function(t){if(t&&0!==t.length){var e=0;return t.forEach(function(t){e+=t.x*t.y}),e}},t.exports.getXWithLeftTailArea=function(t,e){if(t&&0!==t.length){for(var n=0,r=0,i=0;i=e));i++);return t[r].x}},t.exports.getPerplexity=function(t){if(t&&0!==t.length){var e=0;return t.forEach(function(t){var n=Math.log(t.y);isFinite(n)&&(e+=t.y*n)}),Math.pow(2,e=-e/r)}}},19872(t,e,n){"use strict";var r=n(83496),i=Array.prototype.concat,A=Array.prototype.slice,a=t.exports=function(t){for(var e=[],n=0,a=t.length;n=0&&(t.splice instanceof Function||Object.getOwnPropertyDescriptor(t,t.length-1)&&"String"!==t.constructor.name))}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js.LICENSE.txt deleted file mode 100644 index 3cadd7f32e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2202.bd928b8b.js.LICENSE.txt +++ /dev/null @@ -1,79 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/*! - * @antv/g - * @description A core module for rendering engine implements DOM API. - * @version 6.3.1 - * @date 12/24/2025, 11:55:39 AM - * @author AntVis - * @docs https://g.antv.antgroup.com/ - */ - -/*! - * @antv/g-canvas - * @description A renderer implemented by Canvas 2D API - * @version 2.2.0 - * @date 12/24/2025, 11:55:53 AM - * @author AntVis - * @docs https://g.antv.antgroup.com/ - */ - -/*! - * @antv/g-lite - * @description A core module for rendering engine implements DOM API. - * @version 2.7.0 - * @date 12/24/2025, 11:55:20 AM - * @author AntVis - * @docs https://g.antv.antgroup.com/ - */ - -/*! - * @antv/g-math - * @description Geometry util - * @version 3.1.0 - * @date 12/22/2025, 3:02:36 AM - * @author AntVis - * @docs https://g.antv.antgroup.com/ - */ - -/*! - * @antv/g-plugin-dragndrop - * @description A G plugin for Drag n Drop implemented with PointerEvents - * @version 2.1.1 - * @date 12/24/2025, 11:56:44 AM - * @author AntVis - * @docs https://g.antv.antgroup.com/ - */ - -/*! - * html2canvas 1.4.1 - * Copyright (c) 2022 Niklas von Hertzen - * Released under MIT License - */ - -/*! ***************************************************************************** - Copyright (c) Microsoft Corporation. - - Permission to use, copy, modify, and/or distribute this software for any - purpose with or without fee is hereby granted. - - THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH - REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY - AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, - INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM - LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR - OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR - PERFORMANCE OF THIS SOFTWARE. - ***************************************************************************** */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js deleted file mode 100644 index 08b1e51b21..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2204.875d7d36.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2204"],{51463(e,l,d){d.r(l),d.d(l,{default:()=>s});var i=d(74848);d(47867);let s=e=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#e00000",fillRule:"evenodd",d:"M463.663 480 .05 1.003 0 479.747zM176.337 0 639.95 478.997 640 .253z"}),(0,i.jsx)("path",{fillRule:"evenodd",d:"M27.74.23h118.598l468.175 479.315h-122.35L27.738.229z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2204.875d7d36.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js deleted file mode 100644 index cc80f35441..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js +++ /dev/null @@ -1,6 +0,0 @@ -/*! For license information please see 2237.e23d4ce3.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2237"],{85160(e,t,r){var n=r(47867),o="function"==typeof Object.is?Object.is:function(e,t){return e===t&&(0!==e||1/e==1/t)||e!=e&&t!=t},u=n.useSyncExternalStore,c=n.useRef,a=n.useEffect,s=n.useMemo,i=n.useDebugValue;t.useSyncExternalStoreWithSelector=function(e,t,r,n,l){var f=c(null);if(null===f.current){var p={hasValue:!1,value:null};f.current=p}else p=f.current;var d=u(e,(f=s(function(){function e(e){if(!a){if(a=!0,u=e,e=n(e),void 0!==l&&p.hasValue){var t=p.value;if(l(t,e))return c=t}return c=e}if(t=c,o(u,e))return t;var r=n(e);return void 0!==l&&l(t,r)?(u=e,t):(u=e,c=r)}var u,c,a=!1,s=void 0===r?null:r;return[function(){return e(t())},null===s?void 0:function(){return e(s())}]},[t,r,n,l]))[0],f[1]);return a(function(){p.hasValue=!0,p.value=d},[d]),i(d),d}},78418(e,t,r){e.exports=r(85160)},71468(e,t,r){r.r(t),r.d(t,{Provider:()=>J,ReactReduxContext:()=>z,batch:()=>eo,connect:()=>G,createDispatchHook:()=>Z,createSelectorHook:()=>er,createStoreHook:()=>X,shallowEqual:()=>N,useDispatch:()=>ee,useSelector:()=>en,useStore:()=>Y});var n=r(47867),o=r(78418),u=Symbol.for(n.version.startsWith("19")?"react.transitional.element":"react.element"),c=Symbol.for("react.portal"),a=Symbol.for("react.fragment"),s=Symbol.for("react.strict_mode"),i=Symbol.for("react.profiler"),l=Symbol.for("react.consumer"),f=Symbol.for("react.context"),p=Symbol.for("react.forward_ref"),d=Symbol.for("react.suspense"),y=Symbol.for("react.suspense_list"),m=Symbol.for("react.memo"),b=Symbol.for("react.lazy");function v(e){return function(t){let r=e(t);function n(){return r}return n.dependsOnOwnProps=!1,n}}function S(e){return e.dependsOnOwnProps?!!e.dependsOnOwnProps:1!==e.length}function h(e,t){return function(t,{displayName:r}){let n=function(e,t){return n.dependsOnOwnProps?n.mapToProps(e,t):n.mapToProps(e,void 0)};return n.dependsOnOwnProps=!0,n.mapToProps=function(t,r){n.mapToProps=e,n.dependsOnOwnProps=S(e);let o=n(t,r);return"function"==typeof o&&(n.mapToProps=o,n.dependsOnOwnProps=S(o),o=n(t,r)),o},n}}function g(e,t){return(r,n)=>{throw Error(`Invalid value of type ${typeof e} for ${t} argument when connecting component ${n.wrappedComponentName}.`)}}function O(e,t,r){return{...r,...e,...t}}var w={notify(){},get:()=>[]};function P(e,t){let r,n=w,o=0,u=!1;function c(){i.onStateChange&&i.onStateChange()}function a(){if(o++,!r){let o,u;r=t?t.addNestedSub(c):e.subscribe(c),o=null,u=null,n={clear(){o=null,u=null},notify(){let e=o;for(;e;)e.callback(),e=e.next},get(){let e=[],t=o;for(;t;)e.push(t),t=t.next;return e},subscribe(e){let t=!0,r=u={callback:e,next:null,prev:u};return r.prev?r.prev.next=r:o=r,function(){t&&null!==o&&(t=!1,r.next?r.next.prev=r.prev:u=r.prev,r.prev?r.prev.next=r.next:o=r.next)}}}}}function s(){o--,r&&0===o&&(r(),r=void 0,n.clear(),n=w)}let i={addNestedSub:function(e){a();let t=n.subscribe(e),r=!1;return()=>{r||(r=!0,t(),s())}},notifyNestedSubs:function(){n.notify()},handleChangeWrapper:c,isSubscribed:function(){return u},trySubscribe:function(){u||(u=!0,a())},tryUnsubscribe:function(){u&&(u=!1,s())},getListeners:()=>n};return i}var x="u">typeof window&&void 0!==window.document&&void 0!==window.document.createElement,C="u">typeof navigator&&"ReactNative"===navigator.product,T=x||C?n.useLayoutEffect:n.useEffect;function j(e,t){return e===t?0!==e||0!==t||1/e==1/t:e!=e&&t!=t}function N(e,t){if(j(e,t))return!0;if("object"!=typeof e||null===e||"object"!=typeof t||null===t)return!1;let r=Object.keys(e),n=Object.keys(t);if(r.length!==n.length)return!1;for(let n=0;ntypeof globalThis?globalThis:{},z=function(){if(!n.createContext)return{};let e=L[q]??=new Map,t=e.get(n.createContext);return t||(t=n.createContext(null),e.set(n.createContext,t)),t}(),I=[null,null];function A(e,t,r,n,o,u){e.current=n,r.current=!1,o.current&&(o.current=null,u())}function B(e,t){return e===t}var G=function(e,t,r,{pure:o,areStatesEqual:u=B,areOwnPropsEqual:c=N,areStatePropsEqual:a=N,areMergedPropsEqual:s=N,forwardRef:i=!1,context:l=z}={}){let f=e?"function"==typeof e?h(e,"mapStateToProps"):g(e,"mapStateToProps"):v(()=>({})),p=t&&"object"==typeof t?v(e=>(function(e,t){let r={};for(let n in e){let o=e[n];"function"==typeof o&&(r[n]=(...e)=>t(o(...e)))}return r})(t,e)):t?"function"==typeof t?h(t,"mapDispatchToProps"):g(t,"mapDispatchToProps"):v(e=>({dispatch:e})),d=r?"function"==typeof r?function(e,{displayName:t,areMergedPropsEqual:n}){let o,u=!1;return function(e,t,c){let a=r(e,t,c);return u?n(a,o)||(o=a):(u=!0,o=a),o}}:g(r,"mergeProps"):()=>O,y=!!e;return e=>{let t=e.displayName||e.name||"Component",r=`Connect(${t})`,o={shouldHandleStateChanges:y,displayName:r,wrappedComponentName:t,WrappedComponent:e,initMapStateToProps:f,initMapDispatchToProps:p,initMergeProps:d,areStatesEqual:u,areStatePropsEqual:a,areOwnPropsEqual:c,areMergedPropsEqual:s};function m(t){var r;let u,[c,a,s]=n.useMemo(()=>{let{reactReduxForwardedRef:e,...r}=t;return[t.context,e,r]},[t]),i=n.useMemo(()=>(c?.Consumer,l),[c,l]),f=n.useContext(i),p=!!t.store&&!!t.store.getState&&!!t.store.dispatch,d=!!f&&!!f.store,m=p?t.store:f.store,b=d?f.getServerState:m.getState,v=n.useMemo(()=>(function(e,{initMapStateToProps:t,initMapDispatchToProps:r,initMergeProps:n,...o}){return function(e,t,r,n,{areStatesEqual:o,areOwnPropsEqual:u,areStatePropsEqual:c}){let a,s,i,l,f,p=!1;return function(d,y){return p?function(p,d){let y=!u(d,s),m=!o(p,a,d,s);if(a=p,s=d,y&&m)return i=e(a,s),t.dependsOnOwnProps&&(l=t(n,s)),f=r(i,l,s);if(y)return e.dependsOnOwnProps&&(i=e(a,s)),t.dependsOnOwnProps&&(l=t(n,s)),f=r(i,l,s);if(m){let t,n;return n=!c(t=e(a,s),i),i=t,n&&(f=r(i,l,s)),f}return f}(d,y):(i=e(a=d,s=y),l=t(n,s),f=r(i,l,s),p=!0,f)}}(t(e,o),r(e,o),n(e,o),e,o)})(m.dispatch,o),[m]),[S,h]=n.useMemo(()=>{if(!y)return I;let e=P(m,p?void 0:f.subscription),t=e.notifyNestedSubs.bind(e);return[e,t]},[m,p,f]),g=n.useMemo(()=>p?f:{...f,subscription:S},[p,f,S]),O=n.useRef(void 0),w=n.useRef(s),x=n.useRef(void 0),C=n.useRef(!1),j=n.useRef(!1),N=n.useRef(void 0);T(()=>(j.current=!0,()=>{j.current=!1}),[]);let R=n.useMemo(()=>()=>x.current&&s===w.current?x.current:v(m.getState(),s),[m,s]),E=n.useMemo(()=>e=>{if(!S)return()=>{};if(!y)return()=>{};let t=!1,r=null,n=()=>{let n,o;if(t||!j.current)return;let u=m.getState();try{n=v(u,w.current)}catch(e){o=e,r=e}o||(r=null),n===O.current?C.current||h():(O.current=n,x.current=n,C.current=!0,e())};return S.onStateChange=n,S.trySubscribe(),n(),()=>{if(t=!0,S.tryUnsubscribe(),S.onStateChange=null,r)throw r}},[S]);r=[w,O,C,s,x,h],T(()=>A(...r),void 0);try{u=n.useSyncExternalStore(E,R,b?()=>v(b(),s):R)}catch(e){throw N.current&&(e.message+=` -The error may be correlated with this previous error: -${N.current.stack} - -`),e}T(()=>{N.current=void 0,x.current=void 0,O.current=u});let M=n.useMemo(()=>n.createElement(e,{...u,ref:a}),[a,e,u]);return n.useMemo(()=>y?n.createElement(i.Provider,{value:g},M):M,[i,M,g])}let b=n.memo(m);if(b.WrappedComponent=e,b.displayName=m.displayName=r,i){let t=n.forwardRef(function(e,t){return n.createElement(b,{...e,reactReduxForwardedRef:t})});return t.displayName=r,t.WrappedComponent=e,U(t,e)}return U(b,e)}},J=function(e){let{children:t,context:r,serverState:o,store:u}=e,c=n.useMemo(()=>{let e=P(u);return{store:u,subscription:e,getServerState:o?()=>o:void 0}},[u,o]),a=n.useMemo(()=>u.getState(),[u]);return T(()=>{let{subscription:e}=c;return e.onStateChange=e.notifyNestedSubs,e.trySubscribe(),a!==u.getState()&&e.notifyNestedSubs(),()=>{e.tryUnsubscribe(),e.onStateChange=void 0}},[c,a]),n.createElement((r||z).Provider,{value:c},t)};function K(e=z){return function(){return n.useContext(e)}}var Q=K();function X(e=z){let t=e===z?Q:K(e),r=()=>{let{store:e}=t();return e};return Object.assign(r,{withTypes:()=>r}),r}var Y=X();function Z(e=z){let t=e===z?Y:X(e),r=()=>t().dispatch;return Object.assign(r,{withTypes:()=>r}),r}var ee=Z(),et=(e,t)=>e===t;function er(e=z){let t=e===z?Q:K(e),r=(e,r={})=>{let{equalityFn:u=et}="function"==typeof r?{equalityFn:r}:r,{store:c,subscription:a,getServerState:s}=t();n.useRef(!0);let i=n.useCallback({[e.name]:t=>e(t)}[e.name],[e]),l=(0,o.useSyncExternalStoreWithSelector)(a.addNestedSub,c.getState,s||c.getState,i,u);return n.useDebugValue(l),l};return Object.assign(r,{withTypes:()=>r}),r}var en=er(),eo=function(e){e()}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js.LICENSE.txt deleted file mode 100644 index 9a1071f8bf..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2237.e23d4ce3.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * @license React - * use-sync-external-store-with-selector.production.js - * - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js deleted file mode 100644 index 8be2282a10..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2267.ad4d61d8.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2267"],{64790(l,e,s){s.r(e),s.d(e,{default:()=>i});var h=s(74848);s(47867);let i=l=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,h.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,h.jsx)("path",{fill:"#0b7226",d:"M-.006 0h213.328v480H-.006z"}),(0,h.jsx)("path",{fill:"#ff0",d:"M213.322 0H426.65v480H213.322z"}),(0,h.jsx)("path",{fill:"#bc0000",d:"M426.65 0h213.328v480H426.65z"})]}),(0,h.jsx)("path",{fill:"#0b7226",d:"M342.047 218.852h71.73l-56.627 43.556 20.762 69.314-56.627-43.569-56.627 41.588 20.762-67.333-56.627-43.556h69.844l22.648-71.295z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2267.ad4d61d8.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js deleted file mode 100644 index 4800d6db81..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2272.b29c0e6c.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2272"],{39027(O,e,t){t.r(e),t.d(e,{yaml:()=>Y,yamlFrontmatter:()=>q,yamlLanguage:()=>D});var n=t(48820),a=t(43720);class P{constructor(O,e,t){this.parent=O,this.depth=e,this.type=t,this.hash=(O?O.hash+O.hash<<8:0)+e+(e<<4)+t}}function Q(O,e){for(let t=0,n=e-O.pos-1;;n--,t++){let e=O.peek(n);if(o(e)||-1==e)return t}}function r(O){return 32==O||9==O}function o(O){return 10==O||13==O}function c(O){var e;return O<0||r(e=O)||o(e)}P.top=new P(null,-1,0);let s=new n.Aj({start:P.top,reduce:(O,e)=>3==O.type&&(20==e||34==e)?O.parent:O,shift(O,e,t,n){if(3==e)return new P(O,Q(n,n.pos),1);if(65==e||5==e)return new P(O,Q(n,n.pos),2);if(63==e)return O.parent;if(19==e||33==e)return new P(O,0,3);if(13==e&&4==O.type)return O.parent;if(47==e){let e=/[1-9]/.exec(n.read(n.pos,t.pos));if(e)return new P(O,O.depth+ +e[0],4)}return O},hash:O=>O.hash});function i(O,e,t=0){return O.peek(t)==e&&O.peek(t+1)==e&&O.peek(t+2)==e&&c(O.peek(t+3))}let p=new n.Lu((O,e)=>{if(-1==O.next&&e.canShift(64))return O.acceptToken(64);let t=O.peek(-1);if((o(t)||t<0)&&3!=e.context.type){if(i(O,45))if(!e.canShift(63))return O.acceptToken(1,3);else O.acceptToken(63);if(i(O,46))if(!e.canShift(63))return O.acceptToken(2,3);else O.acceptToken(63);let t=0;for(;32==O.next;)t++,O.advance();!(t{if(3==e.context.type){63==O.next&&(O.advance(),c(O.next)&&O.acceptToken(7));return}if(45==O.next)O.advance(),c(O.next)&&O.acceptToken(1==e.context.type&&e.context.depth==Q(O,O.pos-1)?4:3);else if(63==O.next)O.advance(),c(O.next)&&O.acceptToken(2==e.context.type&&e.context.depth==Q(O,O.pos-1)?6:5);else{let t=O.pos;for(;;)if(r(O.next)){if(O.pos==t)return;O.advance()}else if(33==O.next)R(O);else if(38==O.next)d(O);else if(42==O.next){d(O);break}else if(39==O.next||34==O.next){if(u(O,!0))break;return}else if(91==O.next||123==O.next){if(!function(O){for(let e=[],t=O.pos+1024;;)if(91==O.next||123==O.next)e.push(O.next),O.advance();else if(39==O.next||34==O.next){if(!u(O,!0))return!1}else if(93==O.next||125==O.next){if(e[e.length-1]!=O.next-2)return!1;if(e.pop(),O.advance(),!e.length)return!0}else{if(O.next<0||O.pos>t||o(O.next))return!1;O.advance()}}(O))return;break}else{k(O,!0,!1,0);break}for(;r(O.next);)O.advance();if(58==O.next){if(O.pos==t&&e.canShift(29))return;c(O.peek(1))&&O.acceptTokenTo(2==e.context.type&&e.context.depth==Q(O,t)?66:65,t)}}},{contextual:!0});function l(O){return O>=48&&O<=57||O>=97&&O<=102||O>=65&&O<=70}function f(O,e){var t;return 37==O.next?(O.advance(),l(O.next)&&O.advance(),l(O.next)&&O.advance(),!0):(!!((t=O.next)>32)&&!!(t<127)&&34!=t&&37!=t&&44!=t&&60!=t&&62!=t&&92!=t&&94!=t&&96!=t&&123!=t&&124!=t&&125!=t||!!e&&44==O.next)&&(O.advance(),!0)}function R(O){if(O.advance(),60==O.next){for(O.advance();;)if(!f(O,!0)){62==O.next&&O.advance();break}}else for(;f(O,!1););}function d(O){for(O.advance();!c(O.next)&&"f"!=S(O.next);)O.advance()}function u(O,e){let t=O.next,n=!1,a=O.pos;for(O.advance();;){let P=O.next;if(P<0)break;if(O.advance(),P==t)if(39==P)if(39==O.next)O.advance();else break;else break;else if(92==P&&34==t)O.next>=0&&O.advance();else if(o(P)){if(e)return!1;n=!0}else if(e&&O.pos>=a+1024)return!1}return!n}function S(O){return O<33?"u":O>125?"s":"iiisiiissisfissssssssssssisssiiissssssssssssssssssssssssssfsfssissssssssssssssssssssssssssfif"[O-33]}function b(O,e){let t=S(O);return"u"!=t&&!(e&&"f"==t)}function k(O,e,t,n){if(!("s"==S(O.next)||(63==O.next||58==O.next||45==O.next)&&b(O.peek(1),t)))return!1;O.advance();let a=O.pos;for(;;){var P;let Q=O.next,c=0,s=n+1;for(;r(P=Q)||o(P);){if(o(Q)){if(e)return!1;s=0}else s++;Q=O.peek(++c)}if(!(Q>=0&&(58==Q?b(O.peek(c+1),t):35==Q?32!=O.peek(c-1):b(Q,t)))||!t&&s<=n||0==s&&!t&&(i(O,45,c)||i(O,46,c)))break;if(e&&"f"==S(Q))return!1;for(let e=c;e>=0;e--)O.advance();if(e&&O.pos>a+1024)return!1}return!0}let x=new n.Lu((O,e)=>{if(33==O.next)R(O),O.acceptToken(12);else if(38==O.next||42==O.next){let e=38==O.next?10:11;d(O),O.acceptToken(e)}else 39==O.next||34==O.next?(u(O,!1),O.acceptToken(9)):k(O,!1,3==e.context.type,e.context.depth)&&O.acceptToken(8)}),m=new n.Lu((O,e)=>{let t=4==e.context.type?e.context.depth:-1,n=O.pos;O:for(;;){let a=0,P=O.next;for(;32==P;)P=O.peek(++a);if(!a&&(i(O,45,a)||i(O,46,a))||!o(P)&&(t<0&&(t=Math.max(e.context.depth+1,a)),aYAN>Y",stateData:";S~O!fOS!gOS^OS~OP_OQbORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!V[O!cTO~O`cO~P]OVkOWROXROYeOZfO[dOcPOmhOqQO~OboO~P!bOVtOWROXROYeOZfO[dOcPOmrOqQO~OpwO~P#WORSOTUOWROXROYYOZZO[XOcPOqQO!PVO!cTO~OSvP!avP!bvP~P#|OWROXROYeOZfO[dOcPOqQO~OmzO~P%OOm!OOUzP!azP!bzP!dzP~P#|O^!SO!b!QO!f!TO!g!RO~ORSOTUOWROXROcPOqQO!PVO!cTO~OY!UOP!QXQ!QX!V!QX!`!QXS!QX!a!QX!b!QXU!QXm!QX!d!QX~P&aO[!WOP!SXQ!SX!V!SX!`!SXS!SX!a!SX!b!SXU!SXm!SX!d!SX~P&aO^!ZO!W![O!b!YO!f!]O!g!YO~OP!_O!V[OQaX!`aX~OPaXQaX!VaX!`aX~P#|OP!bOQ!cO!V[O~OP_O!V[O~P#|OWROXROY!fOcPOqQObfXmfXofXpfX~OWROXRO[!hOcPOqQObhXmhXohXphX~ObeXmlXoeX~ObkXokX~P%OOm!kO~Om!lObnPonP~P%OOb!pOo!oO~Ob!pO~P!bOm!sOosXpsX~OosXpsX~P%OOm!uOotPptP~P%OOo!xOp!yO~Op!yO~P#WOS!|O!a#OO!b#OO~OUyX!ayX!byX!dyX~P#|Om#QO~OU#SO!a#UO!b#UO!d#RO~Om#WOUzX!azX!bzX!dzX~O]#XO~O!b#XO!g#YO~O^#ZO!b#XO!g#YO~OP!RXQ!RX!V!RX!`!RXS!RX!a!RX!b!RXU!RXm!RX!d!RX~P&aOP!TXQ!TX!V!TX!`!TXS!TX!a!TX!b!TXU!TXm!TX!d!TX~P&aO!b#^O!g#^O~O^#_O!b#^O!f#`O!g#^O~O^#_O!W#aO!b#^O!g#^O~OPaaQaa!Vaa!`aa~P#|OP#cO!V[OQ!XX!`!XX~OP!XXQ!XX!V!XX!`!XX~P#|OP_O!V[OQ!_X!`!_X~P#|OWROXROcPOqQObgXmgXogXpgX~OWROXROcPOqQObiXmiXoiXpiX~Obkaoka~P%OObnXonX~P%OOm#kO~Ob#lOo!oO~Oosapsa~P%OOotXptX~P%OOm#pO~Oo!xOp#qO~OSwP!awP!bwP~P#|OS!|O!a#vO!b#vO~OUya!aya!bya!dya~P#|Om#xO~P%OOm#{OU}P!a}P!b}P!d}P~P#|OU#SO!a$OO!b$OO!d#RO~O]$QO~O!b$QO!g$RO~O!b$SO!g$SO~O^$TO!b$SO!g$SO~O^$TO!b$SO!f$UO!g$SO~OP!XaQ!Xa!V!Xa!`!Xa~P#|Obnaona~P%OOotapta~P%OOo!xO~OU|X!a|X!b|X!d|X~P#|Om$ZO~Om$]OU}X!a}X!b}X!d}X~O]$^O~O!b$_O!g$_O~O^$`O!b$_O!g$_O~OU|a!a|a!b|a!d|a~P#|O!b$cO!g$cO~O",goto:",]!mPPPPPPPPPPPPPPPPP!nPP!v#v#|$`#|$c$f$j$nP%VPPP!v%Y%^%a%{&O%a&R&U&X&_&b%aP&e&{&e'O'RPP']'a'g'm's'y(XPPPPPPPP(_)e*X+c,VUaObcR#e!c!{ROPQSTUXY_bcdehknrtvz!O!U!W!_!b!c!f!h!k!l!s!u!|#Q#R#S#W#c#k#p#x#{$Z$]QmPR!qnqfPQThknrtv!k!l!s!u#R#k#pR!gdR!ieTlPnTjPnSiPnSqQvQ{TQ!mkQ!trQ!vtR#y#RR!nkTsQvR!wt!RWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]RySR#t!|R|TR|UQ!PUR#|#SR#z#RR#z#SyZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]R!VXR!XYa]O^abc!a!c!eT!da!eQnPR!rnQvQR!{vQ!}yR#u!}Q#T|R#}#TW^Obc!cS!^^!aT!aa!eQ!eaR#f!eW`Obc!cQxSS}U#SQ!`_Q#PzQ#V!OQ#b!_Q#d!bQ#s!|Q#w#QQ$P#WQ$V#cQ$Y#xQ$[#{Q$a$ZR$b$]xZOSU_bcz!O!_!b!c!|#Q#S#W#c#x#{$Z$]Q!VXQ!XYQ#[!UR#]!W!QWOSUXY_bcz!O!U!W!_!b!c!|#Q#S#W#c#x#{$Z$]pfPQThknrtv!k!l!s!u#R#k#pQ!gdQ!ieQ#g!fR#h!hSgPn^pQTkrtv#RQ!jhQ#i!kQ#j!lQ#n!sQ#o!uQ$W#kR$X#pQuQR!zv",nodeNames:"⚠ DirectiveEnd DocEnd - - ? ? ? Literal QuotedLiteral Anchor Alias Tag BlockLiteralContent Comment Stream BOM Document ] [ FlowSequence Item Tagged Anchored Anchored Tagged FlowMapping Pair Key : Pair , } { FlowMapping Pair Pair BlockSequence Item Item BlockMapping Pair Pair Key Pair Pair BlockLiteral BlockLiteralHeader Tagged Anchored Anchored Tagged Directive DirectiveName DirectiveContent Document",maxTerm:74,context:s,nodeProps:[["isolate",-3,8,9,14,""],["openedBy",18,"[",32,"{"],["closedBy",19,"]",33,"}"]],propSources:[h],skippedNodes:[0],repeatNodeCount:6,tokenData:"-Y~RnOX#PXY$QYZ$]Z]#P]^$]^p#Ppq$Qqs#Pst$btu#Puv$yv|#P|}&e}![#P![!]'O!]!`#P!`!a'i!a!}#P!}#O*g#O#P#P#P#Q+Q#Q#o#P#o#p+k#p#q'i#q#r,U#r;'S#P;'S;=`#z<%l?HT#P?HT?HU,o?HUO#PQ#UU!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PQ#kTOY#PZs#Pt;'S#P;'S;=`#z<%lO#PQ#}P;=`<%l#P~$VQ!f~XY$Qpq$Q~$bO!g~~$gS^~OY$bZ;'S$b;'S;=`$s<%lO$b~$vP;=`<%l$bR%OX!WQOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR%rX!WQ!VPOX%kXY#PZ]%k]^#P^p%kpq#hq;'S%k;'S;=`&_<%lO%kR&bP;=`<%l%kR&lUoP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'VUmP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR'p[!PP!WQOY#PZp#Ppq#hq{#P{|(f|}#P}!O(f!O!R#P!R![)p![;'S#P;'S;=`#z<%lO#PR(mW!PP!WQOY#PZp#Ppq#hq!R#P!R![)V![;'S#P;'S;=`#z<%lO#PR)^U!PP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR)wY!PP!WQOY#PZp#Ppq#hq{#P{|)V|}#P}!O)V!O;'S#P;'S;=`#z<%lO#PR*nUcP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+XUbP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR+rUqP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,]UpP!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#PR,vU`P!WQOY#PZp#Ppq#hq;'S#P;'S;=`#z<%lO#P",tokenizers:[p,X,x,m,0,1],topRules:{Stream:[0,15]},tokenPrec:0});var g=t(15874),v=t(90365);let T=n.U1.deserialize({version:14,states:"!vOQOPOOO]OPO'#C_OhOPO'#C^OOOO'#Cc'#CcOpOPO'#CaQOOOOOO{OPOOOOOO'#Cb'#CbO!WOPO'#C`O!`OPO,58xOOOO-E6a-E6aOOOO-E6`-E6`OOOO'#C_'#C_OOOO1G.d1G.d",stateData:"!h~OXPOYROWTP~OWVXXRXYRX~OYVOXSP~OXROYROWTX~OXROYROWTP~OYVOXSX~OX[O~OXY~",goto:"vWPPX[beioRUOQQOR]XRXQTTOUQWQRZWSSOURYS",nodeNames:"⚠ Document Frontmatter DashLine FrontmatterContent Body",maxTerm:10,skippedNodes:[0],repeatNodeCount:2,tokenData:"$z~RXOYnYZ!^Z]n]^!^^}n}!O!i!O;'Sn;'S;=`!c<%lOn~qXOYnYZ!^Z]n]^!^^;'Sn;'S;=`!c<%l~n~On~~!^~!cOY~~!fP;=`<%ln~!lZOYnYZ!^Z]n]^!^^}n}!O#_!O;'Sn;'S;=`!c<%l~n~On~~!^~#bZOYnYZ!^Z]n]^!^^}n}!O$T!O;'Sn;'S;=`!c<%l~n~On~~!^~$WXOYnYZ$sZ]n]^$s^;'Sn;'S;=`!c<%l~n~On~~$s~$zOX~Y~",tokenizers:[0],topRules:{Document:[0,1]},tokenPrec:67}),D=g.bj.define({name:"yaml",parser:$.configure({props:[g.Oh.add({Stream:O=>{for(let e=O.node.resolve(O.pos,-1);e&&e.to>=O.pos;e=e.parent){if("BlockLiteralContent"==e.name&&e.fromO.pos)break}}return null},FlowMapping:(0,g.Ay)({closing:"}"}),FlowSequence:(0,g.Ay)({closing:"]"})}),g.b_.add({"FlowMapping FlowSequence":g.yd,"Item Pair BlockLiteral":(O,e)=>({from:e.doc.lineAt(O.from).to,to:O.to})})]}),languageData:{commentTokens:{line:"#"},indentOnInput:/^\s*[\]\}]$/}});function Y(){return new g.Yy(D)}let _=g.bj.define({name:"yaml-frontmatter",parser:T.configure({props:[(0,a.pn)({DashLine:a._A.meta})]})});function q(O){let{language:e,support:t}=O.content instanceof g.Yy?O.content:{language:O.content,support:[]};return new g.Yy(_.configure({wrap:(0,v.$g)(O=>"FrontmatterContent"==O.name?{parser:D.parser}:"Body"==O.name?{parser:e.parser}:null)}),t)}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2272.b29c0e6c.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2287.6a200c82.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2287.6a200c82.js deleted file mode 100644 index d003c3be7c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2287.6a200c82.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2287.6a200c82.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2287"],{15874(t,e,i){i.d(e,{Ay:()=>H,EI:()=>E,KB:()=>R,Lv:()=>tc,Oh:()=>P,Q0:()=>u,Q_:()=>tT,SG:()=>tO,TM:()=>f,WD:()=>_,Xt:()=>T,Yy:()=>A,Zt:()=>tw,_Y:()=>F,_v:()=>B,b_:()=>j,bj:()=>p,cr:()=>tf,f7:()=>te,iB:()=>a,jU:()=>tB,mv:()=>g,mz:()=>V,nq:()=>w,p9:()=>c,t:()=>z,t$:()=>M,tp:()=>D,y9:()=>tm,yd:()=>q});var s,n=i(90365),r=i(52704),o=i(29332),l=i(43720),h=i(97417);let a=new n.uY;function c(t){return r.sj.define({combine:t?e=>e.concat(t):void 0})}let u=new n.uY;class f{constructor(t,e,i=[],s=""){this.data=t,this.name=s,r.$t.prototype.hasOwnProperty("tree")||Object.defineProperty(r.$t.prototype,"tree",{get(){return g(this)}}),this.parser=e,this.extension=[C.of(this),r.$t.languageData.of((t,e,i)=>{let s=d(t,e,i),n=s.type.prop(a);if(!n)return[];let r=t.facet(n),o=s.type.prop(u);if(o){let n=s.resolve(e-s.from,i);for(let e of o)if(e.test(n,t)){let i=t.facet(e.facet);return"replace"==e.type?i:i.concat(r)}}return r})].concat(i)}isActiveAt(t,e,i=-1){return d(t,e,i).type.prop(a)==this.data}findRegions(t){let e=t.facet(C);if((null==e?void 0:e.data)==this.data)return[{from:0,to:t.doc.length}];if(!e||!e.allowsNesting)return[];let i=[],s=(t,e)=>{if(t.prop(a)==this.data)return void i.push({from:e,to:e+t.length});let r=t.prop(n.uY.mounted);if(r){if(r.tree.prop(a)==this.data){if(r.overlay)for(let t of r.overlay)i.push({from:t.from+e,to:t.to+e});else i.push({from:e,to:e+t.length});return}else if(r.overlay){let t=i.length;if(s(r.tree,r.overlay[0].from+e),i.length>t)return}}for(let i=0;it.isTop?e:void 0)]}),t.name)}configure(t,e){return new p(this.data,this.parser.configure(t),e||this.name)}get allowsNesting(){return this.parser.hasWrappers()}}function g(t){let e=t.field(f.state,!1);return e?e.tree:n.PH.empty}class m{constructor(t){this.doc=t,this.cursorPos=0,this.string="",this.cursor=t.iter()}get length(){return this.doc.length}syncTo(t){return this.string=this.cursor.next(t-this.cursorPos).value,this.cursorPos=t+this.string.length,this.cursorPos-this.string.length}chunk(t){return this.syncTo(t),this.string}get lineChunks(){return!0}read(t,e){let i=this.cursorPos-this.string.length;return t=this.cursorPos?this.doc.sliceString(t,e):this.string.slice(t-i,e-i)}}let v=null;class w{constructor(t,e,i=[],s,n,r,o,l){this.parser=t,this.state=e,this.fragments=i,this.tree=s,this.treeLen=n,this.viewport=r,this.skipped=o,this.scheduleOn=l,this.parse=null,this.tempSkipped=[]}static create(t,e,i){return new w(t,e,[],n.PH.empty,0,i,[],null)}startParse(){return this.parser.startParse(new m(this.state.doc),this.fragments)}work(t,e){return(null!=e&&e>=this.state.doc.length&&(e=void 0),this.tree!=n.PH.empty&&this.isDone(null!=e?e:this.state.doc.length))?(this.takeTree(),!0):this.withContext(()=>{var i;if("number"==typeof t){let e=Date.now()+t;t=()=>Date.now()>e}for(this.parse||(this.parse=this.startParse()),null!=e&&(null==this.parse.stoppedAt||this.parse.stoppedAt>e)&&e=this.treeLen&&((null==this.parse.stoppedAt||this.parse.stoppedAt>t)&&this.parse.stopAt(t),this.withContext(()=>{for(;!(e=this.parse.advance()););}),this.treeLen=t,this.tree=e,this.fragments=this.withoutTempSkipped(n.rr.addTree(this.tree,this.fragments,!0)),this.parse=null)}withContext(t){let e=v;v=this;try{return t()}finally{v=e}}withoutTempSkipped(t){for(let e;e=this.tempSkipped.pop();)t=b(t,e.from,e.to);return t}changes(t,e){let{fragments:i,tree:s,treeLen:r,viewport:o,skipped:l}=this;if(this.takeTree(),!t.empty){let e=[];if(t.iterChangedRanges((t,i,s,n)=>e.push({fromA:t,toA:i,fromB:s,toB:n})),i=n.rr.applyChanges(i,e),s=n.PH.empty,r=0,o={from:t.mapPos(o.from,-1),to:t.mapPos(o.to,1)},this.skipped.length)for(let e of(l=[],this.skipped)){let i=t.mapPos(e.from,1),s=t.mapPos(e.to,-1);it.from&&(this.fragments=b(this.fragments,i,s),this.skipped.splice(e--,1))}return!(this.skipped.length>=e)&&(this.reset(),!0)}reset(){this.parse&&(this.takeTree(),this.parse=null)}skipUntilInView(t,e){this.skipped.push({from:t,to:e})}static getSkippingParser(t){return new class extends n.iX{createParse(e,i,s){let r=s[0].from,o=s[s.length-1].to;return{parsedPos:r,advance(){let e=v;if(e){for(let t of s)e.tempSkipped.push(t);t&&(e.scheduleOn=e.scheduleOn?Promise.all([e.scheduleOn,t]):t)}return this.parsedPos=o,new n.PH(n.Z6.none,[],[],o-r)},stoppedAt:null,stopAt(){}}}}}isDone(t){t=Math.min(t,this.state.doc.length);let e=this.fragments;return this.treeLen>=t&&e.length&&0==e[0].from&&e[0].to>=t}static get(){return v}}function b(t,e,i){return n.rr.applyChanges(t,[{fromA:e,toA:i,fromB:e,toB:i}])}class y{constructor(t){this.context=t,this.tree=t.tree}apply(t){if(!t.docChanged&&this.tree==this.context.tree)return this;let e=this.context.changes(t.changes,t.state),i=this.context.treeLen==t.startState.doc.length?void 0:Math.max(t.changes.mapPos(this.context.treeLen),e.viewport.to);return e.work(20,i)||e.takeTree(),new y(e)}static init(t){let e=Math.min(3e3,t.doc.length),i=w.create(t.facet(C).parser,t,{from:0,to:e});return i.work(20,e)||i.takeTree(),new y(i)}}f.state=r.sU.define({create:y.init,update(t,e){for(let t of e.effects)if(t.is(f.setState))return t.value;return e.startState.facet(C)!=e.state.facet(C)?y.init(e.state):t.apply(e)}});let x=t=>{let e=setTimeout(()=>t(),500);return()=>clearTimeout(e)};"u">typeof requestIdleCallback&&(x=t=>{let e=-1,i=setTimeout(()=>{e=requestIdleCallback(t,{timeout:400})},100);return()=>e<0?clearTimeout(i):cancelIdleCallback(e)});let k="u">typeof navigator&&(null==(s=navigator.scheduling)?void 0:s.isInputPending)?()=>navigator.scheduling.isInputPending():null,S=o.Z9.fromClass(class{constructor(t){this.view=t,this.working=null,this.workScheduled=0,this.chunkEnd=-1,this.chunkBudget=-1,this.work=this.work.bind(this),this.scheduleWork()}update(t){let e=this.view.state.field(f.state).context;(e.updateViewport(t.view.viewport)||this.view.viewport.to>e.treeLen)&&this.scheduleWork(),(t.docChanged||t.selectionSet)&&(this.view.hasFocus&&(this.chunkBudget+=50),this.scheduleWork()),this.checkAsyncSchedule(e)}scheduleWork(){if(this.working)return;let{state:t}=this.view,e=t.field(f.state);e.tree==e.context.tree&&e.context.isDone(t.doc.length)||(this.working=x(this.work))}work(t){this.working=null;let e=Date.now();if(this.chunkEnds+1e3,l=n.context.work(()=>k&&k()||Date.now()>r,s+1e5*!o);this.chunkBudget-=Date.now()-e,(l||this.chunkBudget<=0)&&(n.context.takeTree(),this.view.dispatch({effects:f.setState.of(new y(n.context))})),this.chunkBudget>0&&!(l&&!o)&&this.scheduleWork(),this.checkAsyncSchedule(n.context)}checkAsyncSchedule(t){t.scheduleOn&&(this.workScheduled++,t.scheduleOn.then(()=>this.scheduleWork()).catch(t=>(0,o.c_)(this.view.state,t)).then(()=>this.workScheduled--),t.scheduleOn=null)}destroy(){this.working&&this.working()}isWorking(){return!!(this.working||this.workScheduled>0)}},{eventHandlers:{focus(){this.scheduleWork()}}}),C=r.sj.define({combine:t=>t.length?t[0]:null,enables:t=>[f.state,S,o.Lz.contentAttributes.compute([t],e=>{let i=e.facet(t);return i&&i.name?{"data-language":i.name}:{}})]});class A{constructor(t,e=[]){this.language=t,this.support=e,this.extension=[t,e]}}class M{constructor(t,e,i,s,n,r){this.name=t,this.alias=e,this.extensions=i,this.filename=s,this.loadFunc=n,this.support=r,this.loading=null}load(){return this.loading||(this.loading=this.loadFunc().then(t=>this.support=t,t=>{throw this.loading=null,t}))}static of(t){let{load:e,support:i}=t;if(!e){if(!i)throw RangeError("Must pass either 'load' or 'support' to LanguageDescription.of");e=()=>Promise.resolve(i)}return new M(t.name,(t.alias||[]).concat(t.name).map(t=>t.toLowerCase()),t.extensions||[],t.filename,e,i)}static matchFilename(t,e){for(let i of t)if(i.filename&&i.filename.test(e))return i;let i=/\.([^.]+)$/.exec(e);if(i){for(let e of t)if(e.extensions.indexOf(i[1])>-1)return e}return null}static matchLanguageName(t,e,i=!0){for(let i of(e=e.toLowerCase(),t))if(i.alias.some(t=>t==e))return i;if(i)for(let i of t)for(let t of i.alias){let s=e.indexOf(t);if(s>-1&&(t.length>2||!/\w/.test(e[s-1])&&!/\w/.test(e[s+t.length])))return i}return null}}let O=r.sj.define(),T=r.sj.define({combine:t=>{if(!t.length)return" ";let e=t[0];if(!e||/\S/.test(e)||Array.from(e).some(t=>t!=e[0]))throw Error("Invalid indent unit: "+JSON.stringify(t[0]));return e}});function D(t){let e=t.facet(T);return 9==e.charCodeAt(0)?t.tabSize*e.length:e.length}function E(t,e){let i="",s=t.tabSize,n=t.facet(T)[0];if(" "==n){for(;e>=s;)i+=" ",e-=s;n=" "}for(let t=0;t=e?function(t,e,i){let s=e.resolveStack(i),n=e.resolveInner(i,-1).resolve(i,0).enterUnfinishedNodesBefore(i);if(n!=s.node){let t=[];for(let e=n;e&&!(e.froms.node.to||e.from==s.node.from&&e.type==s.node.type);e=e.parent)t.push(e);for(let e=t.length-1;e>=0;e--)s={node:t[e],next:s}}return L(s,t,i)}(t,i,e):null}class R{constructor(t,e={}){this.state=t,this.options=e,this.unit=D(t)}lineAt(t,e=1){let i=this.state.doc.lineAt(t),{simulateBreak:s,simulateDoubleBreak:n}=this.options;if(null!=s&&s>=i.from&&s<=i.to)if(n&&s==t)return{text:"",from:t};else if(e<0?s-1&&(n+=r-this.countColumn(i,i.search(/\S|$/))),n}countColumn(t,e=t.length){return(0,r.y$)(t,this.state.tabSize,e)}lineIndent(t,e=1){let{text:i,from:s}=this.lineAt(t,e),n=this.options.overrideIndentation;if(n){let t=n(s);if(t>-1)return t}return this.countColumn(i,i.search(/\S|$/))}get simulatedBreak(){return this.options.simulateBreak||null}}let P=new n.uY;function L(t,e,i){for(let s=t;s;s=s.next){let t=function(t){let e=t.type.prop(P);if(e)return e;let i=t.firstChild,s;if(i&&(s=i.type.prop(n.uY.closedBy))){let e=t.lastChild,i=e&&s.indexOf(e.name)>-1;return t=>W(t,!0,1,void 0,i&&!(t.pos==t.options.simulateBreak&&t.options.simulateDoubleBreak)?e.from:void 0)}return null==t.parent?N:null}(s.node);if(t)return t(I.create(e,i,s))}return 0}function N(){return 0}class I extends R{constructor(t,e,i){super(t.state,t.options),this.base=t,this.pos=e,this.context=i}get node(){return this.context.node}static create(t,e,i){return new I(t,e,i)}get textAfter(){return this.textAfterPos(this.pos)}get baseIndent(){return this.baseIndentFor(this.node)}baseIndentFor(t){let e=this.state.doc.lineAt(t.from);for(;;){let i=t.resolve(e.from);for(;i.parent&&i.parent.from==i.from;)i=i.parent;if(function(t,e){for(let i=e;i;i=i.parent)if(t==i)return!0;return!1}(i,t))break;e=this.state.doc.lineAt(i.from)}return this.lineIndent(e.from)}continue(){return L(this.context.next,this.base,this.pos)}}function H({closing:t,align:e=!0,units:i=1}){return s=>W(s,e,i,t)}function W(t,e,i,s,n){let r=t.textAfter,o=r.match(/^\s*/)[0].length,l=s&&r.slice(o,o+s.length)==s||n==t.pos+o,h=e?function(t){let e=t.node,i=e.childAfter(e.from),s=e.lastChild;if(!i)return null;let n=t.options.simulateBreak,r=t.state.doc.lineAt(i.from),o=null==n||n<=r.from?r.to:Math.min(r.to,n);for(let t=i.to;;){let n=e.childAfter(t);if(!n||n==s)return null;if(!n.type.isSkipped){if(n.from>=o)return null;let t=/^ */.exec(r.text.slice(i.to-r.from))[0].length;return{from:i.from,to:i.to+t}}t=n.to}}(t):null;return h?l?t.column(h.from):t.column(h.to):t.baseIndent+(l?0:t.unit*i)}let F=t=>t.baseIndent;function V({except:t,units:e=1}={}){return i=>{let s=t&&t.test(i.textAfter);return i.baseIndent+(s?0:e*i.unit)}}function _(){return r.$t.transactionFilter.of(t=>{if(!t.docChanged||!t.isUserEvent("input.type")&&!t.isUserEvent("input.complete"))return t;let e=t.startState.languageDataAt("indentOnInput",t.startState.selection.main.head);if(!e.length)return t;let i=t.newDoc,{head:s}=t.newSelection.main,n=i.lineAt(s);if(s>n.from+200)return t;let r=i.sliceString(n.from,s);if(!e.some(t=>t.test(r)))return t;let{state:o}=t,l=-1,h=[];for(let{head:t}of o.selection.ranges){let e=o.doc.lineAt(t);if(e.from==l)continue;l=e.from;let i=B(o,e.from);if(null==i)continue;let s=/^\s*/.exec(e.text)[0],n=E(o,i);s!=n&&h.push({from:e.from,to:e.from+s.length,insert:n})}return h.length?[t,{changes:h,sequential:!0}]:t})}let z=r.sj.define(),j=new n.uY;function q(t){let e=t.firstChild,i=t.lastChild;return e&&e.toi)continue;if(r&&n.from=e&&s.to>i&&(r=s)}}return r}(t,e,i)}function Y(t,e){let i=e.mapPos(t.from,1),s=e.mapPos(t.to,-1);return i>=s?void 0:{from:i,to:s}}let $=r.Pe.define({map:Y}),U=r.Pe.define({map:Y});function G(t){let e=[];for(let{head:i}of t.state.selection.ranges)e.some(t=>t.from<=i&&t.to>=i)||e.push(t.lineBlockAt(i));return e}let X=r.sU.define({create:()=>o.NZ.none,update(t,e){for(let i of(e.isUserEvent("delete")&&e.changes.iterChangedRanges((e,i)=>t=J(t,e,i)),t=t.map(e.changes),e.effects))if(i.is($)&&!function(t,e,i){let s=!1;return t.between(e,e,(t,n)=>{t==e&&n==i&&(s=!0)}),s}(t,i.value.from,i.value.to)){let{preparePlaceholder:s}=e.state.facet(ts),n=s?o.NZ.replace({widget:new tl(s(e.state,i.value))}):to;t=t.update({add:[n.range(i.value.from,i.value.to)]})}else i.is(U)&&(t=t.update({filter:(t,e)=>i.value.from!=t||i.value.to!=e,filterFrom:i.value.from,filterTo:i.value.to}));return e.selection&&(t=J(t,e.selection.main.head)),t},provide:t=>o.Lz.decorations.from(t),toJSON(t,e){let i=[];return t.between(0,e.doc.length,(t,e)=>{i.push(t,e)}),i},fromJSON(t){if(!Array.isArray(t)||t.length%2)throw RangeError("Invalid JSON for fold state");let e=[];for(let i=0;i{te&&(s=!0)}),s?t.update({filterFrom:e,filterTo:i,filter:(t,s)=>t>=i||s<=e}):t}function Q(t,e,i){var s;let n=null;return null==(s=t.field(X,!1))||s.between(e,i,(t,e)=>{(!n||n.from>t)&&(n={from:t,to:e})}),n}function Z(t,e){return t.field(X,!1)?e:e.concat(r.Pe.appendConfig.of(tn()))}function tt(t,e,i=!0){let s=t.state.doc.lineAt(e.from).number,n=t.state.doc.lineAt(e.to).number;return o.Lz.announce.of(`${t.state.phrase(i?"Folded lines":"Unfolded lines")} ${s} ${t.state.phrase("to")} ${n}.`)}let te=[{key:"Ctrl-Shift-[",mac:"Cmd-Alt-[",run:t=>{for(let e of G(t)){let i=K(t.state,e.from,e.to);if(i)return t.dispatch({effects:Z(t.state,[$.of(i),tt(t,i)])}),!0}return!1}},{key:"Ctrl-Shift-]",mac:"Cmd-Alt-]",run:t=>{if(!t.state.field(X,!1))return!1;let e=[];for(let i of G(t)){let s=Q(t.state,i.from,i.to);s&&e.push(U.of(s),tt(t,s,!1))}return e.length&&t.dispatch({effects:e}),e.length>0}},{key:"Ctrl-Alt-[",run:t=>{let{state:e}=t,i=[];for(let s=0;s{let e=t.state.field(X,!1);if(!e||!e.size)return!1;let i=[];return e.between(0,t.state.doc.length,(t,e)=>{i.push(U.of({from:t,to:e}))}),t.dispatch({effects:i}),!0}}],ti={placeholderDOM:null,preparePlaceholder:null,placeholderText:"…"},ts=r.sj.define({combine:t=>(0,r.QR)(t,ti)});function tn(t){let e=[X,tu];return t&&e.push(ts.of(t)),e}function tr(t,e){let{state:i}=t,s=i.facet(ts),n=e=>{let i=t.lineBlockAt(t.posAtDOM(e.target)),s=Q(t.state,i.from,i.to);s&&t.dispatch({effects:U.of(s)}),e.preventDefault()};if(s.placeholderDOM)return s.placeholderDOM(t,n,e);let r=document.createElement("span");return r.textContent=s.placeholderText,r.setAttribute("aria-label",i.phrase("folded code")),r.title=i.phrase("unfold"),r.className="cm-foldPlaceholder",r.onclick=n,r}let to=o.NZ.replace({widget:new class extends o.xO{toDOM(t){return tr(t,null)}}});class tl extends o.xO{constructor(t){super(),this.value=t}eq(t){return this.value==t.value}toDOM(t){return tr(t,this.value)}}let th={openText:"⌄",closedText:"›",markerDOM:null,domEventHandlers:{},foldingChanged:()=>!1};class ta extends o.wJ{constructor(t,e){super(),this.config=t,this.open=e}eq(t){return this.config==t.config&&this.open==t.open}toDOM(t){if(this.config.markerDOM)return this.config.markerDOM(this.open);let e=document.createElement("span");return e.textContent=this.open?this.config.openText:this.config.closedText,e.title=t.state.phrase(this.open?"Fold line":"Unfold line"),e}}function tc(t={}){let e={...th,...t},i=new ta(e,!0),s=new ta(e,!1),n=o.Z9.fromClass(class{constructor(t){this.from=t.viewport.from,this.markers=this.buildMarkers(t)}update(t){(t.docChanged||t.viewportChanged||t.startState.facet(C)!=t.state.facet(C)||t.startState.field(X,!1)!=t.state.field(X,!1)||g(t.startState)!=g(t.state)||e.foldingChanged(t))&&(this.markers=this.buildMarkers(t.view))}buildMarkers(t){let e=new r.vB;for(let n of t.viewportLineBlocks){let r=Q(t.state,n.from,n.to)?s:K(t.state,n.from,n.to)?i:null;r&&e.add(n.from,n.from,r)}return e.finish()}}),{domEventHandlers:l}=e;return[n,(0,o.cU)({class:"cm-foldGutter",markers(t){var e;return(null==(e=t.plugin(n))?void 0:e.markers)||r.om.empty},initialSpacer:()=>new ta(e,!1),domEventHandlers:{...l,click:(t,e,i)=>{if(l.click&&l.click(t,e,i))return!0;let s=Q(t.state,e.from,e.to);if(s)return t.dispatch({effects:U.of(s)}),!0;let n=K(t.state,e.from,e.to);return!!n&&(t.dispatch({effects:$.of(n)}),!0)}}}),tn()]}let tu=o.Lz.baseTheme({".cm-foldPlaceholder":{backgroundColor:"#eee",border:"1px solid #ddd",color:"#888",borderRadius:".2em",margin:"0 1px",padding:"0 1px",cursor:"pointer"},".cm-foldGutter span":{padding:"0 1px",cursor:"pointer"}});class tf{constructor(t,e){let i;function s(t){let e=h.G.newName();return(i||(i=Object.create(null)))["."+e]=t,e}this.specs=t;const n="string"==typeof e.all?e.all:e.all?s(e.all):void 0,r=e.scope;this.scope=r instanceof f?t=>t.prop(a)==r.data:r?t=>t==r:void 0,this.style=(0,l.az)(t.map(t=>({tag:t.tag,class:t.class||s(Object.assign({},t,{tag:null}))})),{all:n}).style,this.module=i?new h.G(i):null,this.themeType=e.themeType}static define(t,e){return new tf(t,e||{})}}let td=r.sj.define(),tp=r.sj.define({combine:t=>t.length?[t[0]]:null});function tg(t){let e=t.facet(td);return e.length?e:t.facet(tp)}function tm(t,e){let i=[tv],s;return t instanceof tf&&(t.module&&i.push(o.Lz.styleModule.of(t.module)),s=t.themeType),(null==e?void 0:e.fallback)?i.push(tp.of(t)):s?i.push(td.computeN([o.Lz.darkTheme],e=>e.facet(o.Lz.darkTheme)==("dark"==s)?[t]:[])):i.push(td.of(t)),i}let tv=r.Nb.high(o.Z9.fromClass(class{constructor(t){this.markCache=Object.create(null),this.tree=g(t.state),this.decorations=this.buildDeco(t,tg(t.state)),this.decoratedTo=t.viewport.to}update(t){let e=g(t.state),i=tg(t.state),s=i!=tg(t.startState),{viewport:n}=t.view,r=t.changes.mapPos(this.decoratedTo,1);e.length=n.to?(this.decorations=this.decorations.map(t.changes),this.decoratedTo=r):(e!=this.tree||t.viewportChanged||s)&&(this.tree=e,this.decorations=this.buildDeco(t.view,i),this.decoratedTo=n.to)}buildDeco(t,e){if(!e||!this.tree.length)return o.NZ.none;let i=new r.vB;for(let{from:s,to:n}of t.visibleRanges)(0,l.DM)(this.tree,e,(t,e,s)=>{i.add(t,e,this.markCache[s]||(this.markCache[s]=o.NZ.mark({class:s})))},s,n);return i.finish()}},{decorations:t=>t.decorations})),tw=tf.define([{tag:l._A.meta,color:"#404740"},{tag:l._A.link,textDecoration:"underline"},{tag:l._A.heading,textDecoration:"underline",fontWeight:"bold"},{tag:l._A.emphasis,fontStyle:"italic"},{tag:l._A.strong,fontWeight:"bold"},{tag:l._A.strikethrough,textDecoration:"line-through"},{tag:l._A.keyword,color:"#708"},{tag:[l._A.atom,l._A.bool,l._A.url,l._A.contentSeparator,l._A.labelName],color:"#219"},{tag:[l._A.literal,l._A.inserted],color:"#164"},{tag:[l._A.string,l._A.deleted],color:"#a11"},{tag:[l._A.regexp,l._A.escape,l._A.special(l._A.string)],color:"#e40"},{tag:l._A.definition(l._A.variableName),color:"#00f"},{tag:l._A.local(l._A.variableName),color:"#30a"},{tag:[l._A.typeName,l._A.namespace],color:"#085"},{tag:l._A.className,color:"#167"},{tag:[l._A.special(l._A.variableName),l._A.macroName],color:"#256"},{tag:l._A.definition(l._A.propertyName),color:"#00c"},{tag:l._A.comment,color:"#940"},{tag:l._A.invalid,color:"#f00"}]),tb=o.Lz.baseTheme({"&.cm-focused .cm-matchingBracket":{backgroundColor:"#328c8252"},"&.cm-focused .cm-nonmatchingBracket":{backgroundColor:"#bb555544"}}),ty="()[]{}",tx=r.sj.define({combine:t=>(0,r.QR)(t,{afterCursor:!0,brackets:ty,maxScanDistance:1e4,renderMatch:tC})}),tk=o.NZ.mark({class:"cm-matchingBracket"}),tS=o.NZ.mark({class:"cm-nonmatchingBracket"});function tC(t){let e=[],i=t.matched?tk:tS;return e.push(i.range(t.start.from,t.start.to)),t.end&&e.push(i.range(t.end.from,t.end.to)),e}function tA(t){let e=[],i=t.facet(tx);for(let s of t.selection.ranges){if(!s.empty)continue;let n=tB(t,s.head,-1,i)||s.head>0&&tB(t,s.head-1,1,i)||i.afterCursor&&(tB(t,s.head,1,i)||s.headt.decorations}),tb];function tO(t={}){return[tx.of(t),tM]}let tT=new n.uY;function tD(t,e,i){let s=t.prop(e<0?n.uY.openedBy:n.uY.closedBy);if(s)return s;if(1==t.name.length){let s=i.indexOf(t.name);if(s>-1&&s%2==+(e<0))return[i[s+e]]}return null}function tE(t){let e=t.type.prop(tT);return e?e(t.node):t}function tB(t,e,i,s={}){let n=s.maxScanDistance||1e4,r=s.brackets||ty,o=g(t),l=o.resolveInner(e,i);for(let t=l;t;t=t.parent){let s=tD(t.type,i,r);if(s&&t.from0?e>=n.from&&en.from&&e<=n.to))return function(t,e,i,s,n){let r=e.parent,o={from:i.from,to:i.to},l=0,h=null==r?void 0:r.cursor();if(h&&(t<0?h.childBefore(e.from):h.childAfter(e.to)))do if(t<0?h.to<=e.from:h.from>=e.to){if(0==l&&s.indexOf(h.type.name)>-1&&h.from0)return null;let a={from:i<0?e-1:e,to:i>0?e+1:e},c=t.doc.iterRange(e,i>0?t.doc.length:0),u=0;for(let t=0;!c.next().done&&t<=r;){let r=c.value;i<0&&(t+=r.length);let l=e+t*i;for(let t=i>0?0:r.length-1,e=i>0?r.length:-1;t!=e;t+=i){let e=o.indexOf(r[t]);if(!(e<0)&&s.resolveInner(l+t,1).type==n)if(e%2==0==i>0)u++;else{if(1==u)return{start:a,end:{from:l+t,to:l+t+1},matched:e>>1==h>>1};u--}}i>0&&(t+=r.length)}return c.done?{start:a,matched:!1}:null}(t,e,i,o,l.type,n,r)}let tR=Object.create(null),tP=[n.Z6.none],tL=[],tN=Object.create(null),tI=Object.create(null);for(let[t,e]of[["variable","variableName"],["variable-2","variableName.special"],["string-2","string.special"],["def","variableName.definition"],["tag","tagName"],["attribute","attributeName"],["type","typeName"],["builtin","variableName.standard"],["qualifier","modifier"],["error","invalid"],["header","heading"],["property","propertyName"]])tI[t]=function(t,e){let i=[];for(let s of e.split(" ")){let e=[];for(let i of s.split(".")){let s=t[i]||l._A[i];s?"function"==typeof s?e.length?e=e.map(s):tH(i,`Modifier ${i} used at start of tag`):e.length?tH(i,`Tag ${i} used as modifier`):e=Array.isArray(s)?s:[s]:tH(i,`Unknown highlighting tag ${i}`)}for(let t of e)i.push(t)}if(!i.length)return 0;let s=e.replace(/ /g,"_"),r=s+" "+i.map(t=>t.id),o=tN[r];if(o)return o.id;let h=tN[r]=n.Z6.define({id:tP.length,name:s,props:[(0,l.pn)({[s]:i})]});return tP.push(h),h.id}(tR,e);function tH(t,e){tL.indexOf(t)>-1||(tL.push(t),console.warn(e))}o.OP.RTL,o.OP.LTR},52704(t,e,i){let s;i.d(e,{iR:()=>D,sU:()=>U,UJ:()=>tu,om:()=>tT,N1:()=>y,Pe:()=>td,DA:()=>tf,Nb:()=>X,vS:()=>S,FB:()=>tS,Je:()=>tb,EY:()=>d,yn:()=>W,kn:()=>t_,Fh:()=>A,zK:()=>k,Q6:()=>tA,OF:()=>F,$t:()=>tx,xx:()=>Q,QR:()=>tk,y$:()=>tV,YH:()=>tc,ZX:()=>tp,Gu:()=>E,vB:()=>tD,VR:()=>B,MK:()=>C,sj:()=>z});let n=[],r=[],o="lc,34,7n,7,7b,19,,,,2,,2,,,20,b,1c,l,g,,2t,7,2,6,2,2,,4,z,,u,r,2j,b,1m,9,9,,o,4,,9,,3,,5,17,3,3b,f,,w,1j,,,,4,8,4,,3,7,a,2,t,,1m,,,,2,4,8,,9,,a,2,q,,2,2,1l,,4,2,4,2,2,3,3,,u,2,3,,b,2,1l,,4,5,,2,4,,k,2,m,6,,,1m,,,2,,4,8,,7,3,a,2,u,,1n,,,,c,,9,,14,,3,,1l,3,5,3,,4,7,2,b,2,t,,1m,,2,,2,,3,,5,2,7,2,b,2,s,2,1l,2,,,2,4,8,,9,,a,2,t,,20,,4,,2,3,,,8,,29,,2,7,c,8,2q,,2,9,b,6,22,2,r,,,,,,1j,e,,5,,2,5,b,,10,9,,2u,4,,6,,2,2,2,p,2,4,3,g,4,d,,2,2,6,,f,,jj,3,qa,3,t,3,t,2,u,2,1s,2,,7,8,,2,b,9,,19,3,3b,2,y,,3a,3,4,2,9,,6,3,63,2,2,,1m,,,7,,,,,2,8,6,a,2,,1c,h,1r,4,1c,7,,,5,,14,9,c,2,w,4,2,2,,3,1k,,,2,3,,,3,1m,8,2,2,48,3,,d,,7,4,,6,,3,2,5i,1m,,5,ek,,5f,x,2da,3,3x,,2o,w,fe,6,2x,2,n9w,4,,a,w,2,28,2,7k,,3,,4,,p,2,5,,47,2,q,i,d,,12,8,p,b,1a,3,1c,,2,4,2,2,13,,1v,6,2,2,2,2,c,,8,,1b,,1f,,,3,2,2,5,2,,,16,2,8,,6m,,2,,4,,fn4,,kh,g,g,g,a6,2,gt,,6a,,45,5,1ae,3,,2,5,4,14,3,4,,4l,2,fx,4,ar,2,49,b,4w,,1i,f,1k,3,1d,4,2,2,1x,3,10,5,,8,1q,,c,2,1g,9,a,4,2,,2n,3,2,,,2,6,,4g,,3,8,l,2,1l,2,,,,,m,,e,7,3,5,5f,8,2,3,,,n,,29,,2,6,,,2,,,2,,2,6j,,2,4,6,2,,2,r,2,2d,8,2,,,2,2y,,,,2,6,,,2t,3,2,4,,5,77,9,,2,6t,,a,2,,,4,,40,4,2,2,4,,w,a,14,6,2,4,8,,9,6,2,3,1a,d,,2,ba,7,,6,,,2a,m,2,7,,2,,2,3e,6,3,,,2,,7,,,20,2,3,,,,9n,2,f0b,5,1n,7,t4,,1r,4,29,,f5k,2,43q,,,3,4,5,8,8,2,7,u,4,44,3,1iz,1j,4,1e,8,,e,,m,5,,f,11s,7,,h,2,7,,2,,5,79,7,c5,4,15s,7,31,7,240,5,gx7k,2o,3k,6o".split(",").map(t=>t?parseInt(t,36):1);for(let t=0,e=0;t=127462&&t<=127487}function h(t,e,i){if(e==t.length)return e;e&&c(t.charCodeAt(e))&&u(t.charCodeAt(e-1))&&e--;let s=a(t,e);for(e+=f(s);e>1;if(t=r[s]))return!0;e=s+1}if(e==i)return!1}}(o))e+=f(o),s=o;else if(l(o)){let i=0,s=e-2;for(;s>=0&&l(a(t,s));)i++,s-=2;if(i%2==0)break;e+=2}else break}return e}function a(t,e){let i=t.charCodeAt(e);if(!u(i)||e+1==t.length)return i;let s=t.charCodeAt(e+1);return c(s)?(i-55296<<10)+(s-56320)+65536:i}function c(t){return t>=56320&&t<57344}function u(t){return t>=55296&&t<56320}function f(t){return t<65536?1:2}class d{lineAt(t){if(t<0||t>this.length)throw RangeError(`Invalid position ${t} in document of length ${this.length}`);return this.lineInner(t,!1,1,0)}line(t){if(t<1||t>this.lines)throw RangeError(`Invalid line number ${t} in ${this.lines}-line document`);return this.lineInner(t,!0,1,0)}replace(t,e,i){[t,e]=x(this,t,e);let s=[];return this.decompose(0,t,s,2),i.length&&i.decompose(0,i.length,s,3),this.decompose(e,this.length,s,1),g.from(s,this.length-(e-t)+i.length)}append(t){return this.replace(this.length,this.length,t)}slice(t,e=this.length){[t,e]=x(this,t,e);let i=[];return this.decompose(t,e,i,0),g.from(i,e-t)}eq(t){if(t==this)return!0;if(t.length!=this.length||t.lines!=this.lines)return!1;let e=this.scanIdentical(t,1),i=this.length-this.scanIdentical(t,-1),s=new v(this),n=new v(t);for(let t=e,r=e;;){if(s.next(t),n.next(t),t=0,s.lineBreak!=n.lineBreak||s.done!=n.done||s.value!=n.value)return!1;if(r+=s.value.length,s.done||r>=i)return!0}}iter(t=1){return new v(this,t)}iterRange(t,e=this.length){return new w(this,t,e)}iterLines(t,e){let i;if(null==t)i=this.iter();else{null==e&&(e=this.lines+1);let s=this.line(t).from;i=this.iterRange(s,Math.max(s,e==this.lines+1?this.length:e<=1?0:this.line(e-1).to))}return new b(i)}toString(){return this.sliceString(0)}toJSON(){let t=[];return this.flatten(t),t}static of(t){if(0==t.length)throw RangeError("A document must have at least one line");return 1!=t.length||t[0]?t.length<=32?new p(t):g.from(p.split(t,[])):d.empty}}class p extends d{constructor(t,e=function(t){let e=-1;for(let i of t)e+=i.length+1;return e}(t)){super(),this.text=t,this.length=e}get lines(){return this.text.length}get children(){return null}lineInner(t,e,i,s){for(let n=0;;n++){let r=this.text[n],o=s+r.length;if((e?i:o)>=t)return new y(s,o,i,r);s=o+1,i++}}decompose(t,e,i,s){var n;let r=t<=0&&e>=this.length?this:new p((n=this.text,m(n,[""],t,e)),Math.min(e,this.length)-Math.max(0,t));if(1&s){let t=i.pop(),e=m(r.text,t.text.slice(),0,r.length);if(e.length<=32)i.push(new p(e,t.length+r.length));else{let t=e.length>>1;i.push(new p(e.slice(0,t)),new p(e.slice(t)))}}else i.push(r)}replace(t,e,i){var s;if(!(i instanceof p))return super.replace(t,e,i);[t,e]=x(this,t,e);let n=m(this.text,m(i.text,(s=this.text,m(s,[""],0,t))),e),r=this.length+i.length-(e-t);return n.length<=32?new p(n,r):g.from(p.split(n,[]),r)}sliceString(t,e=this.length,i="\n"){[t,e]=x(this,t,e);let s="";for(let n=0,r=0;n<=e&&rt&&r&&(s+=i),tn&&(s+=o.slice(Math.max(0,t-n),e-n)),n=l+1}return s}flatten(t){for(let e of this.text)t.push(e)}scanIdentical(){return 0}static split(t,e){let i=[],s=-1;for(let n of t)i.push(n),s+=n.length+1,32==i.length&&(e.push(new p(i,s)),i=[],s=-1);return s>-1&&e.push(new p(i,s)),e}}class g extends d{constructor(t,e){for(let i of(super(),this.children=t,this.length=e,this.lines=0,t))this.lines+=i.lines}lineInner(t,e,i,s){for(let n=0;;n++){let r=this.children[n],o=s+r.length,l=i+r.lines-1;if((e?l:o)>=t)return r.lineInner(t,e,i,s);s=o+1,i=l+1}}decompose(t,e,i,s){for(let n=0,r=0;r<=e&&n=r){let n=s&(r<=t|2*(l>=e));r>=t&&l<=e&&!n?i.push(o):o.decompose(t-r,e-r,i,n)}r=l+1}}replace(t,e,i){if([t,e]=x(this,t,e),i.lines=n&&e<=o){let l=r.replace(t-n,e-n,i),h=this.lines-r.lines+l.lines;if(l.lines>4&&l.lines>h>>6){let n=this.children.slice();return n[s]=l,new g(n,this.length-(e-t)+i.length)}return super.replace(n,o,l)}n=o+1}return super.replace(t,e,i)}sliceString(t,e=this.length,i="\n"){[t,e]=x(this,t,e);let s="";for(let n=0,r=0;nt&&n&&(s+=i),tr&&(s+=o.sliceString(t-r,e-r,i)),r=l+1}return s}flatten(t){for(let e of this.children)e.flatten(t)}scanIdentical(t,e){if(!(t instanceof g))return 0;let i=0,[s,n,r,o]=e>0?[0,0,this.children.length,t.children.length]:[this.children.length-1,t.children.length-1,-1,-1];for(;;s+=e,n+=e){if(s==r||n==o)return i;let l=this.children[s],h=t.children[n];if(l!=h)return i+l.scanIdentical(h,e);i+=l.length+1}}static from(t,e=t.reduce((t,e)=>t+e.length+1,-1)){let i=0;for(let e of t)i+=e.lines;if(i<32){let i=[];for(let e of t)e.flatten(i);return new p(i,e)}let s=Math.max(32,i>>5),n=s<<1,r=s>>1,o=[],l=0,h=-1,a=[];function c(){0!=l&&(o.push(1==a.length?a[0]:g.from(a,h)),h=-1,l=a.length=0)}for(let e of t)!function t(e){let i;if(e.lines>n&&e instanceof g)for(let i of e.children)t(i);else e.lines>r&&(l>r||!l)?(c(),o.push(e)):e instanceof p&&l&&(i=a[a.length-1])instanceof p&&e.lines+i.lines<=32?(l+=e.lines,h+=e.length+1,a[a.length-1]=new p(i.text.concat(e.text),i.length+1+e.length)):(l+e.lines>s&&c(),l+=e.lines,h+=e.length+1,a.push(e))}(e);return c(),1==o.length?o[0]:new g(o,e)}}function m(t,e,i=0,s=1e9){for(let n=0,r=0,o=!0;r=i&&(h>s&&(l=l.slice(0,s-n)),n0?1:(t instanceof p?t.text.length:t.children.length)<<1]}nextInner(t,e){for(this.done=this.lineBreak=!1;;){let i=this.nodes.length-1,s=this.nodes[i],n=this.offsets[i],r=n>>1,o=s instanceof p?s.text.length:s.children.length;if(r==(e>0?o:0)){if(0==i)return this.done=!0,this.value="",this;e>0&&this.offsets[i-1]++,this.nodes.pop(),this.offsets.pop()}else if((1&n)==(e>0?0:1)){if(this.offsets[i]+=e,0==t)return this.lineBreak=!0,this.value="\n",this;t--}else if(s instanceof p){let n=s.text[r+(e<0?-1:0)];if(this.offsets[i]+=e,n.length>Math.max(0,t))return this.value=0==t?n:e>0?n.slice(t):n.slice(0,n.length-t),this;t-=n.length}else{let n=s.children[r+(e<0?-1:0)];t>n.length?(t-=n.length,this.offsets[i]+=e):(e<0&&this.offsets[i]--,this.nodes.push(n),this.offsets.push(e>0?1:(n instanceof p?n.text.length:n.children.length)<<1))}}}next(t=0){return t<0&&(this.nextInner(-t,-this.dir),t=this.value.length),this.nextInner(t,this.dir)}}class w{constructor(t,e,i){this.value="",this.done=!1,this.cursor=new v(t,e>i?-1:1),this.pos=e>i?t.length:0,this.from=Math.min(e,i),this.to=Math.max(e,i)}nextInner(t,e){if(e<0?this.pos<=this.from:this.pos>=this.to)return this.value="",this.done=!0,this;t+=Math.max(0,e<0?this.pos-this.to:this.from-this.pos);let i=e<0?this.pos-this.from:this.to-this.pos;t>i&&(t=i),i-=t;let{value:s}=this.cursor.next(t);return this.pos+=(s.length+t)*e,this.value=s.length<=i?s:e<0?s.slice(s.length-i):s.slice(0,i),this.done=!this.value,this}next(t=0){return t<0?t=Math.max(t,this.from-this.pos):t>0&&(t=Math.min(t,this.to-this.pos)),this.nextInner(t,this.cursor.dir)}get lineBreak(){return this.cursor.lineBreak&&""!=this.value}}class b{constructor(t){this.inner=t,this.afterBreak=!0,this.value="",this.done=!1}next(t=0){let{done:e,lineBreak:i,value:s}=this.inner.next(t);return e&&this.afterBreak?(this.value="",this.afterBreak=!1):e?(this.done=!0,this.value=""):i?this.afterBreak?this.value="":(this.afterBreak=!0,this.next()):(this.value=s,this.afterBreak=!1),this}get lineBreak(){return!1}}"u">typeof Symbol&&(d.prototype[Symbol.iterator]=function(){return this.iter()},v.prototype[Symbol.iterator]=w.prototype[Symbol.iterator]=b.prototype[Symbol.iterator]=function(){return this});class y{constructor(t,e,i,s){this.from=t,this.to=e,this.number=i,this.text=s}get length(){return this.to-this.from}}function x(t,e,i){return[e=Math.max(0,Math.min(t.length,e)),Math.max(e,Math.min(t.length,i))]}function k(t,e,i=!0,s=!0){return function(t,e,i=!0,s=!0){return(i?h:function(t,e,i){for(;e>0;){let s=h(t,e-2,i);if(s=55296&&i<56320)||e+1==t.length)return i;let s=t.charCodeAt(e+1);return s>=56320&&s<57344?(i-55296<<10)+(s-56320)+65536:i}function C(t){return t<=65535?String.fromCharCode(t):String.fromCharCode(((t-=65536)>>10)+55296,(1023&t)+56320)}function A(t){return t<65536?1:2}let M=/\r\n?|\n/;var O,T,D=((O=D||(D={}))[O.Simple=0]="Simple",O[O.TrackDel=1]="TrackDel",O[O.TrackBefore=2]="TrackBefore",O[O.TrackAfter=3]="TrackAfter",O);class E{constructor(t){this.sections=t}get length(){let t=0;for(let e=0;et)return n+(t-s);n+=o}else{if(i!=D.Simple&&h>=t&&(i==D.TrackDel&&st||i==D.TrackBefore&&st))return null;if(h>t||h==t&&e<0&&!o)return t==s||e<0?n:n+l;n+=l}s=h}if(t>s)throw RangeError(`Position ${t} is out of range for changeset of length ${s}`);return n}touchesRange(t,e=t){for(let i=0,s=0;i=0&&s<=e&&o>=t)return!(se)||"cover";s=o}return!1}toString(){let t="";for(let e=0;e=0?":"+s:"")}return t}toJSON(){return this.sections}static fromJSON(t){if(!Array.isArray(t)||t.length%2||t.some(t=>"number"!=typeof t))throw RangeError("Invalid JSON representation of ChangeDesc");return new E(t)}static create(t){return new E(t)}}class B extends E{constructor(t,e){super(t),this.inserted=e}apply(t){if(this.length!=t.length)throw RangeError("Applying change set to a document with the wrong length");return L(this,(e,i,s,n,r)=>t=t.replace(s,s+(i-e),r),!1),t}mapDesc(t,e=!1){return N(this,t,e,!0)}invert(t){let e=this.sections.slice(),i=[];for(let s=0,n=0;s=0){e[s]=o,e[s+1]=r;let l=s>>1;for(;i.length0&&P(i,e,n.text),n.forward(t),o+=t}let h=t[r++];for(;o>1].toJSON()))}return t}static of(t,e,i){let s=[],n=[],r=0,o=null;function l(t=!1){if(!t&&!s.length)return;ro||t<0||o>e)throw RangeError(`Invalid change range ${t} to ${o} (in doc of length ${e})`);let c=a?"string"==typeof a?d.of(a.split(i||M)):a:d.empty,u=c.length;if(t==o&&0==u)return;tr&&R(s,t-r,-1),R(s,o-t,u),P(n,s,c),r=o}}(t),l(!o),o}static empty(t){return new B(t?[t,-1]:[],[])}static fromJSON(t){if(!Array.isArray(t))throw RangeError("Invalid JSON representation of ChangeSet");let e=[],i=[];for(let s=0;se&&"string"!=typeof t))throw RangeError("Invalid JSON representation of ChangeSet");else if(1==n.length)e.push(n[0],0);else{for(;i.length=0&&i<=0&&i==t[n+1]?t[n]+=e:n>=0&&0==e&&0==t[n]?t[n+1]+=i:s?(t[n]+=e,t[n+1]+=i):t.push(e,i)}function P(t,e,i){if(0==i.length)return;let s=e.length-2>>1;if(s>1])),!i&&o!=t.sections.length&&!(t.sections[o+1]<0);)l=t.sections[o++],h=t.sections[o++];e(n,a,r,c,u),n=a,r=c}}}function N(t,e,i,s=!1){let n=[],r=s?[]:null,o=new H(t),l=new H(e);for(let t=-1;;)if(o.done&&l.len||l.done&&o.len)throw Error("Mismatched change set lengths");else if(-1==o.ins&&-1==l.ins){let t=Math.min(o.len,l.len);R(n,t,-1),o.forward(t),l.forward(t)}else if(l.ins>=0&&(o.ins<0||t==o.i||0==o.off&&(l.len=0&&t=0){let e=0,i=o.len;for(;i;)if(-1==l.ins){let t=Math.min(i,l.len);e+=t,i-=t,l.forward(t)}else if(0==l.ins&&l.lene||o.ins>=0&&o.len>e)&&(t||s.length>i),r.forward2(e),o.forward(e)}else R(s,0,o.ins,t),n&&P(n,s,o.text),o.next()}class H{constructor(t){this.set=t,this.i=0,this.next()}next(){let{sections:t}=this.set;this.i>1;return e>=t.length?d.empty:t[e]}textBit(t){let{inserted:e}=this.set,i=this.i-2>>1;return i>=e.length&&!t?d.empty:e[i].slice(this.off,null==t?void 0:this.off+t)}forward(t){t==this.len?this.next():(this.len-=t,this.off+=t)}forward2(t){-1==this.ins?this.forward(t):t==this.ins?this.next():(this.ins-=t,this.off+=t)}}class W{constructor(t,e,i){this.from=t,this.to=e,this.flags=i}get anchor(){return 32&this.flags?this.to:this.from}get head(){return 32&this.flags?this.from:this.to}get empty(){return this.from==this.to}get assoc(){return 8&this.flags?-1:16&this.flags?1:0}get bidiLevel(){let t=7&this.flags;return 7==t?null:t}get goalColumn(){let t=this.flags>>6;return 0xffffff==t?void 0:t}map(t,e=-1){let i,s;return this.empty?i=s=t.mapPos(this.from,e):(i=t.mapPos(this.from,1),s=t.mapPos(this.to,-1)),i==this.from&&s==this.to?this:new W(i,s,this.flags)}extend(t,e=t,i=0){if(t<=this.anchor&&e>=this.anchor)return F.range(t,e,void 0,void 0,i);let s=Math.abs(t-this.anchor)>Math.abs(e-this.anchor)?t:e;return F.range(this.anchor,s,void 0,void 0,i)}eq(t,e=!1){return this.anchor==t.anchor&&this.head==t.head&&this.goalColumn==t.goalColumn&&(!e||!this.empty||this.assoc==t.assoc)}toJSON(){return{anchor:this.anchor,head:this.head}}static fromJSON(t){if(!t||"number"!=typeof t.anchor||"number"!=typeof t.head)throw RangeError("Invalid JSON representation for SelectionRange");return F.range(t.anchor,t.head)}static create(t,e,i){return new W(t,e,i)}}class F{constructor(t,e){this.ranges=t,this.mainIndex=e}map(t,e=-1){return t.empty?this:F.create(this.ranges.map(i=>i.map(t,e)),this.mainIndex)}eq(t,e=!1){if(this.ranges.length!=t.ranges.length||this.mainIndex!=t.mainIndex)return!1;for(let i=0;it.toJSON()),main:this.mainIndex}}static fromJSON(t){if(!t||!Array.isArray(t.ranges)||"number"!=typeof t.main||t.main>=t.ranges.length)throw RangeError("Invalid JSON representation for EditorSelection");return new F(t.ranges.map(t=>W.fromJSON(t)),t.main)}static single(t,e=t){return new F([F.range(t,e)],0)}static create(t,e=0){if(0==t.length)throw RangeError("A selection needs at least one range");for(let i=0,s=0;st.from-e.from),e=t.indexOf(i);for(let i=1;is.head?F.range(o,r):F.range(r,o))}}return new F(t,e)}}function V(t,e){for(let i of t.ranges)if(i.to>e)throw RangeError("Selection points outside of document")}let _=0;class z{constructor(t,e,i,s,n){this.combine=t,this.compareInput=e,this.compare=i,this.isStatic=s,this.id=_++,this.default=t([]),this.extensions="function"==typeof n?n(this):n}get reader(){return this}static define(t={}){return new z(t.combine||(t=>t),t.compareInput||((t,e)=>t===e),t.compare||(!t.combine?j:(t,e)=>t===e),!!t.static,t.enables)}of(t){return new q([],this,0,t)}compute(t,e){if(this.isStatic)throw Error("Can't compute a static facet");return new q(t,this,1,e)}computeN(t,e){if(this.isStatic)throw Error("Can't compute a static facet");return new q(t,this,2,e)}from(t,e){return e||(e=t=>t),this.compute([t],i=>e(i.field(t)))}}function j(t,e){return t==e||t.length==e.length&&t.every((t,i)=>t===e[i])}class q{constructor(t,e,i,s){this.dependencies=t,this.facet=e,this.type=i,this.value=s,this.id=_++}dynamicSlot(t){var e;let i=this.value,s=this.facet.compareInput,n=this.id,r=t[n]>>1,o=2==this.type,l=!1,h=!1,a=[];for(let i of this.dependencies)"doc"==i?l=!0:"selection"==i?h=!0:((null!=(e=t[i.id])?e:1)&1)==0&&a.push(t[i.id]);return{create:t=>(t.values[r]=i(t),1),update(t,e){if(l&&e.docChanged||h&&(e.docChanged||e.selection)||Y(t,a)){let e=i(t);if(o?!K(e,t.values[r],s):!s(e,t.values[r]))return t.values[r]=e,1}return 0},reconfigure:(t,e)=>{let l,h=e.config.address[n];if(null!=h){let n=ti(e,h);if(this.dependencies.every(i=>i instanceof z?e.facet(i)===t.facet(i):!(i instanceof U)||e.field(i,!1)==t.field(i,!1))||(o?K(l=i(t),n,s):s(l=i(t),n)))return t.values[r]=n,0}else l=i(t);return t.values[r]=l,1}}}}function K(t,e,i){if(t.length!=e.length)return!1;for(let s=0;st===e),t);return t.provide&&(e.provides=t.provide(e)),e}create(t){let e=t.facet($).find(t=>t.field==this);return((null==e?void 0:e.create)||this.createF)(t)}slot(t){let e=t[this.id]>>1;return{create:t=>(t.values[e]=this.create(t),1),update:(t,i)=>{let s=t.values[e],n=this.updateF(s,i);return this.compareF(s,n)?0:(t.values[e]=n,1)},reconfigure:(t,i)=>{let s=t.facet($),n=i.facet($),r;return(r=s.find(t=>t.field==this))&&r!=n.find(t=>t.field==this)?(t.values[e]=r.create(t),1):null!=i.config.address[this.id]?(t.values[e]=i.field(this),0):(t.values[e]=this.create(t),1)}}}init(t){return[this,$.of({field:this,create:t})]}get extension(){return this}}function G(t){return e=>new J(e,t)}let X={highest:G(0),high:G(1),default:G(2),low:G(3),lowest:G(4)};class J{constructor(t,e){this.inner=t,this.prec=e}}class Q{of(t){return new Z(this,t)}reconfigure(t){return Q.reconfigure.of({compartment:this,extension:t})}get(t){return t.config.compartments.get(this)}}class Z{constructor(t,e){this.compartment=t,this.inner=e}}class tt{constructor(t,e,i,s,n,r){for(this.base=t,this.compartments=e,this.dynamicSlots=i,this.address=s,this.staticValues=n,this.facets=r,this.statusTemplate=[];this.statusTemplate.length>1]}static resolve(t,e,i){var s,n,r;let o,l,h=[],a=Object.create(null),c=new Map;for(let i of(s=t,n=e,r=c,o=[[],[],[],[],[]],l=new Map,!function t(e,i){let s=l.get(e);if(null!=s){if(s<=i)return;let t=o[s].indexOf(e);t>-1&&o[s].splice(t,1),e instanceof Z&&r.delete(e.compartment)}if(l.set(e,i),Array.isArray(e))for(let s of e)t(s,i);else if(e instanceof Z){if(r.has(e.compartment))throw RangeError("Duplicate use of compartment in extensions");let s=n.get(e.compartment)||e.inner;r.set(e.compartment,s),t(s,i)}else if(e instanceof J)t(e.inner,e.prec);else if(e instanceof U)o[i].push(e),e.provides&&t(e.provides,i);else if(e instanceof q)o[i].push(e),e.facet.extensions&&t(e.facet.extensions,2);else{let s=e.extension;if(!s)throw Error(`Unrecognized extension value in extension set (${e}). This sometimes happens because multiple instances of @codemirror/state are loaded, breaking instanceof checks.`);t(s,i)}}(s,2),o.reduce((t,e)=>t.concat(e))))i instanceof U?h.push(i):(a[i.facet.id]||(a[i.facet.id]=[])).push(i);let u=Object.create(null),f=[],d=[];for(let t of h)u[t.id]=d.length<<1,d.push(e=>t.slot(e));let p=null==i?void 0:i.config.facets;for(let t in a){let e=a[t],s=e[0].facet,n=p&&p[t]||[];if(e.every(t=>0==t.type))if(u[s.id]=f.length<<1|1,j(n,e))f.push(i.facet(s));else{let t=s.combine(e.map(t=>t.value));f.push(i&&s.compare(t,i.facet(s))?i.facet(s):t)}else{for(let t of e)0==t.type?(u[t.id]=f.length<<1|1,f.push(t.value)):(u[t.id]=d.length<<1,d.push(e=>t.dynamicSlot(e)));u[s.id]=d.length<<1,d.push(t=>(function(t,e,i){let s=i.map(e=>t[e.id]),n=i.map(t=>t.type),r=s.filter(t=>!(1&t)),o=t[e.id]>>1;function l(t){let i=[];for(let e=0;et(u)),u,f,a)}}function te(t,e){if(1&e)return 2;let i=e>>1,s=t.status[i];if(4==s)throw Error("Cyclic dependency between fields and/or facets");if(2&s)return s;t.status[i]=4;let n=t.computeSlot(t,t.config.dynamicSlots[i]);return t.status[i]=2|n}function ti(t,e){return 1&e?t.config.staticValues[e>>1]:t.values[e>>1]}let ts=z.define(),tn=z.define({combine:t=>t.some(t=>t),static:!0}),tr=z.define({combine:t=>t.length?t[0]:void 0,static:!0}),to=z.define(),tl=z.define(),th=z.define(),ta=z.define({combine:t=>!!t.length&&t[0]});class tc{constructor(t,e){this.type=t,this.value=e}static define(){return new tu}}class tu{of(t){return new tc(this,t)}}class tf{constructor(t){this.map=t}of(t){return new td(this,t)}}class td{constructor(t,e){this.type=t,this.value=e}map(t){let e=this.type.map(this.value,t);return void 0===e?void 0:e==this.value?this:new td(this.type,e)}is(t){return this.type==t}static define(t={}){return new tf(t.map||(t=>t))}static mapEffects(t,e){if(!t.length)return t;let i=[];for(let s of t){let t=s.map(e);t&&i.push(t)}return i}}td.reconfigure=td.define(),td.appendConfig=td.define();class tp{constructor(t,e,i,s,n,r){this.startState=t,this.changes=e,this.selection=i,this.effects=s,this.annotations=n,this.scrollIntoView=r,this._doc=null,this._state=null,i&&V(i,e.newLength),n.some(t=>t.type==tp.time)||(this.annotations=n.concat(tp.time.of(Date.now())))}static create(t,e,i,s,n,r){return new tp(t,e,i,s,n,r)}get newDoc(){return this._doc||(this._doc=this.changes.apply(this.startState.doc))}get newSelection(){return this.selection||this.startState.selection.map(this.changes)}get state(){return this._state||this.startState.applyTransaction(this),this._state}annotation(t){for(let e of this.annotations)if(e.type==t)return e.value}get docChanged(){return!this.changes.empty}get reconfigured(){return this.startState.config!=this.state.config}isUserEvent(t){let e=this.annotation(tp.userEvent);return!!(e&&(e==t||e.length>t.length&&e.slice(0,t.length)==t&&"."==e[t.length]))}}function tg(t,e,i){var s;let n,r,o;return i?(n=e.changes,r=B.empty(e.changes.length),o=t.changes.compose(e.changes)):(n=e.changes.map(t.changes),r=t.changes.mapDesc(e.changes,!0),o=t.changes.compose(n)),{changes:o,selection:e.selection?e.selection.map(r):null==(s=t.selection)?void 0:s.map(n),effects:td.mapEffects(t.effects,n).concat(td.mapEffects(e.effects,r)),annotations:t.annotations.length?t.annotations.concat(e.annotations):e.annotations,scrollIntoView:t.scrollIntoView||e.scrollIntoView}}function tm(t,e,i){let s=e.selection,n=tw(e.annotations);return e.userEvent&&(n=n.concat(tp.userEvent.of(e.userEvent))),{changes:e.changes instanceof B?e.changes:B.of(e.changes||[],i,t.facet(tr)),selection:s&&(s instanceof F?s:F.single(s.anchor,s.head)),effects:tw(e.effects),annotations:n,scrollIntoView:!!e.scrollIntoView}}tp.time=tc.define(),tp.userEvent=tc.define(),tp.addToHistory=tc.define(),tp.remote=tc.define();let tv=[];function tw(t){return null==t?tv:Array.isArray(t)?t:[t]}var tb=((T=tb||(tb={}))[T.Word=0]="Word",T[T.Space=1]="Space",T[T.Other=2]="Other",T);let ty=/[\u00df\u0587\u0590-\u05f4\u0600-\u06ff\u3040-\u309f\u30a0-\u30ff\u3400-\u4db5\u4e00-\u9fcc\uac00-\ud7af]/;try{s=RegExp("[\\p{Alphabetic}\\p{Number}_]","u")}catch(t){}class tx{constructor(t,e,i,s,n,r){this.config=t,this.doc=e,this.selection=i,this.values=s,this.status=t.statusTemplate.slice(),this.computeSlot=n,r&&(r._state=this);for(let t=0;t=0;n--){let r=i[n](t);r&&Object.keys(r).length&&(s=tg(s,tm(e,r,t.changes.newLength),!0))}return s==t?t:tp.create(e,t.changes,t.selection,s.effects,s.annotations,s.scrollIntoView)}(s?function(e){let i=e.startState,s=!0;for(let t of i.facet(to)){let i=t(e);if(!1===i){s=!1;break}Array.isArray(i)&&(s=!0===s?i:function(t,e){let i=[];for(let s=0,n=0;;){let r,o;if(s=t[s]))r=t[s++],o=t[s++];else{if(!(n=0;s--){let r=n[s](e);e=r instanceof tp?r:Array.isArray(r)&&1==r.length&&r[0]instanceof tp?r[0]:t(i,tw(r),!1)}return e}(r):r)}(this,t,!0)}applyTransaction(t){let e,i=this.config,{base:s,compartments:n}=i;for(let e of t.effects)e.is(Q.reconfigure)?(i&&(n=new Map,i.compartments.forEach((t,e)=>n.set(e,t)),i=null),n.set(e.value.compartment,e.value.extension)):e.is(td.reconfigure)?(i=null,s=e.value):e.is(td.appendConfig)&&(i=null,s=tw(s).concat(e.value));e=i?t.startState.values.slice():new tx(i=tt.resolve(s,n,this),this.doc,this.selection,i.dynamicSlots.map(()=>null),(t,e)=>e.reconfigure(t,this),null).values;let r=t.startState.facet(tn)?t.newSelection:t.newSelection.asSingle();new tx(i,t.newDoc,r,e,(e,i)=>i.update(e,t),t)}replaceSelection(t){return"string"==typeof t&&(t=this.toText(t)),this.changeByRange(e=>({changes:{from:e.from,to:e.to,insert:t},range:F.cursor(e.from+t.length)}))}changeByRange(t){let e=this.selection,i=t(e.ranges[0]),s=this.changes(i.changes),n=[i.range],r=tw(i.effects);for(let i=1;in.spec.fromJSON(r,t)))}}return tx.create({doc:t.doc,selection:F.fromJSON(t.selection),extensions:e.extensions?s.concat([e.extensions]):s})}static create(t={}){let e=tt.resolve(t.extensions||[],new Map),i=t.doc instanceof d?t.doc:d.of((t.doc||"").split(e.staticFacet(tx.lineSeparator)||M)),s=t.selection?t.selection instanceof F?t.selection:F.single(t.selection.anchor,t.selection.head):F.single(0);return V(s,i.length),e.staticFacet(tn)||(s=s.asSingle()),new tx(e,i,s,e.dynamicSlots.map(()=>null),(t,e)=>e.create(t),null)}get tabSize(){return this.facet(tx.tabSize)}get lineBreak(){return this.facet(tx.lineSeparator)||"\n"}get readOnly(){return this.facet(ta)}phrase(t,...e){for(let e of this.facet(tx.phrases))if(Object.prototype.hasOwnProperty.call(e,t)){t=e[t];break}return e.length&&(t=t.replace(/\$(\$|\d*)/g,(t,i)=>{if("$"==i)return"$";let s=+(i||1);return!s||s>e.length?t:e[s-1]})),t}languageDataAt(t,e,i=-1){let s=[];for(let n of this.facet(ts))for(let r of n(this,e,i))Object.prototype.hasOwnProperty.call(r,t)&&s.push(r[t]);return s}charCategorizer(t){var e;let i=this.languageDataAt("wordChars",t);return e=i.length?i[0]:"",t=>{if(!/\S/.test(t))return tb.Space;if(function(t){if(s)return s.test(t);for(let e=0;e"\x80"&&(i.toUpperCase()!=i.toLowerCase()||ty.test(i)))return!0}return!1}(t))return tb.Word;for(let i=0;i-1)return tb.Word;return tb.Other}}wordAt(t){let{text:e,from:i,length:s}=this.doc.lineAt(t),n=this.charCategorizer(t),r=t-i,o=t-i;for(;r>0;){let t=k(e,r,!1);if(n(e.slice(t,r))!=tb.Word)break;r=t}for(;ot.length?t[0]:4}),tx.lineSeparator=tr,tx.readOnly=ta,tx.phrases=z.define({compare(t,e){let i=Object.keys(t),s=Object.keys(e);return i.length==s.length&&i.every(i=>t[i]==e[i])}}),tx.languageData=ts,tx.changeFilter=to,tx.transactionFilter=tl,tx.transactionExtender=th,Q.reconfigure=td.define();class tS{eq(t){return this==t}range(t,e=t){return tA.create(t,e,this)}}function tC(t,e){return t==e||t.constructor==e.constructor&&t.eq(e)}tS.prototype.startSide=tS.prototype.endSide=0,tS.prototype.point=!1,tS.prototype.mapMode=D.TrackDel;class tA{constructor(t,e,i){this.from=t,this.to=e,this.value=i}static create(t,e,i){return new tA(t,e,i)}}function tM(t,e){return t.from-e.from||t.value.startSide-e.value.startSide}class tO{constructor(t,e,i,s){this.from=t,this.to=e,this.value=i,this.maxPoint=s}get length(){return this.to[this.to.length-1]}findIndex(t,e,i,s=0){let n=i?this.to:this.from;for(let r=s,o=n.length;;){if(r==o)return r;let s=r+o>>1,l=n[s]-t||(i?this.value[s].endSide:this.value[s].startSide)-e;if(s==r)return l>=0?r:o;l>=0?o=s:r=s+1}}between(t,e,i,s){for(let n=this.findIndex(e,-1e9,!0),r=this.findIndex(i,1e9,!1,n);n(f=e.mapPos(c,h.endSide))||u==f&&h.startSide>0&&h.endSide<=0)continue;0>(f-u||h.endSide-h.startSide)||(r<0&&(r=u),h.point&&(o=Math.max(o,f-u)),i.push(h),s.push(u-r),n.push(f-r))}return{mapped:i.length?new tO(s,n,i,o):null,pos:r}}}class tT{constructor(t,e,i,s){this.chunkPos=t,this.chunk=e,this.nextLayer=i,this.maxPoint=s}static create(t,e,i,s){return new tT(t,e,i,s)}get length(){let t=this.chunk.length-1;return t<0?0:Math.max(this.chunkEnd(t),this.nextLayer.length)}get size(){if(this.isEmpty)return 0;let t=this.nextLayer.size;for(let e of this.chunk)t+=e.value.length;return t}chunkEnd(t){return this.chunkPos[t]+this.chunk[t].length}update(t){let{add:e=[],sort:i=!1,filterFrom:s=0,filterTo:n=this.length}=t,r=t.filter;if(0==e.length&&!r)return this;if(i&&(e=e.slice().sort(tM)),this.isEmpty)return e.length?tT.of(e):this;let o=new tB(this,null,-1).goto(0),l=0,h=[],a=new tD;for(;o.value||l=0){let t=e[l++];a.addInner(t.from,t.to,t.value)||h.push(t)}else 1==o.rangeIndex&&o.chunkIndexthis.chunkEnd(o.chunkIndex)||no.to||n=n&&t<=n+r.length&&!1===r.between(n,t-n,e-n,i))return}this.nextLayer.between(t,e,i)}}iter(t=0){return tR.from([this]).goto(t)}get isEmpty(){return this.nextLayer==this}static iter(t,e=0){return tR.from(t).goto(e)}static compare(t,e,i,s,n=-1){let r=t.filter(t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=n),o=e.filter(t=>t.maxPoint>0||!t.isEmpty&&t.maxPoint>=n),l=tE(r,o,i),h=new tL(r,l,n),a=new tL(o,l,n);i.iterGaps((t,e,i)=>tN(h,t,a,e,i,s)),i.empty&&0==i.length&&tN(h,0,a,0,0,s)}static eq(t,e,i=0,s){null==s&&(s=0x3b9ac9ff);let n=t.filter(t=>!t.isEmpty&&0>e.indexOf(t)),r=e.filter(e=>!e.isEmpty&&0>t.indexOf(e));if(n.length!=r.length)return!1;if(!n.length)return!0;let o=tE(n,r),l=new tL(n,o,0).goto(i),h=new tL(r,o,0).goto(i);for(;;){if(l.to!=h.to||!tI(l.active,h.active)||l.point&&(!h.point||!tC(l.point,h.point)))return!1;if(l.to>s)return!0;l.next(),h.next()}}static spans(t,e,i,s,n=-1){let r=new tL(t,null,n).goto(e),o=e,l=r.openStart;for(;;){let t=Math.min(r.to,i);if(r.point){let i=r.activeForPoint(r.to),n=r.pointFromo&&(s.span(o,t,r.active,l),l=r.openEnd(t));if(r.to>i)return l+(r.point&&r.to>i?1:0);o=r.to,r.next()}}static of(t,e=!1){let i=new tD;for(let s of t instanceof tA?[t]:e?function(t){if(t.length>1)for(let e=t[0],i=1;i0)return t.slice().sort(tM);e=s}return t}(t):t)i.add(s.from,s.to,s.value);return i.finish()}static join(t){if(!t.length)return tT.empty;let e=t[t.length-1];for(let i=t.length-2;i>=0;i--)for(let s=t[i];s!=tT.empty;s=s.nextLayer)e=new tT(s.chunkPos,s.chunk,e,Math.max(s.maxPoint,e.maxPoint));return e}}tT.empty=new tT([],[],null,-1),tT.empty.nextLayer=tT.empty;class tD{finishChunk(t){this.chunks.push(new tO(this.from,this.to,this.value,this.maxPoint)),this.chunkPos.push(this.chunkStart),this.chunkStart=-1,this.setMaxPoint=Math.max(this.setMaxPoint,this.maxPoint),this.maxPoint=-1,t&&(this.from=[],this.to=[],this.value=[])}constructor(){this.chunks=[],this.chunkPos=[],this.chunkStart=-1,this.last=null,this.lastFrom=-1e9,this.lastTo=-1e9,this.from=[],this.to=[],this.value=[],this.maxPoint=-1,this.setMaxPoint=-1,this.nextLayer=null}add(t,e,i){this.addInner(t,e,i)||(this.nextLayer||(this.nextLayer=new tD)).add(t,e,i)}addInner(t,e,i){let s=t-this.lastTo||i.startSide-this.last.endSide;if(s<=0&&0>(t-this.lastFrom||i.startSide-this.last.startSide))throw Error("Ranges must be added sorted by `from` position and `startSide`");return!(s<0)&&(250==this.from.length&&this.finishChunk(!0),this.chunkStart<0&&(this.chunkStart=t),this.from.push(t-this.chunkStart),this.to.push(e-this.chunkStart),this.last=i,this.lastFrom=t,this.lastTo=e,this.value.push(i),i.point&&(this.maxPoint=Math.max(this.maxPoint,e-t)),!0)}addChunk(t,e){if(0>(t-this.lastTo||e.value[0].startSide-this.last.endSide))return!1;this.from.length&&this.finishChunk(!0),this.setMaxPoint=Math.max(this.setMaxPoint,e.maxPoint),this.chunks.push(e),this.chunkPos.push(t);let i=e.value.length-1;return this.last=e.value[i],this.lastFrom=e.from[i]+t,this.lastTo=e.to[i]+t,!0}finish(){return this.finishInner(tT.empty)}finishInner(t){if(this.from.length&&this.finishChunk(!1),0==this.chunks.length)return t;let e=tT.create(this.chunkPos,this.chunks,this.nextLayer?this.nextLayer.finishInner(t):t,this.setMaxPoint);return this.from=null,e}}function tE(t,e,i){let s=new Map;for(let e of t)for(let t=0;t(this.to-t||this.endSide-e)&&this.gotoInner(t,e,!0)}next(){for(;;)if(this.chunkIndex==this.layer.chunk.length){this.from=this.to=1e9,this.value=null;break}else{let t=this.layer.chunkPos[this.chunkIndex],e=this.layer.chunk[this.chunkIndex],i=t+e.from[this.rangeIndex];if(this.from=i,this.to=t+e.to[this.rangeIndex],this.value=e.value[this.rangeIndex],this.setRangeIndex(this.rangeIndex+1),this.minPoint<0||this.value.point&&this.to-this.from>=this.minPoint)break}}setRangeIndex(t){if(t==this.layer.chunk[this.chunkIndex].value.length){if(this.chunkIndex++,this.skip)for(;this.chunkIndex=i&&s.push(new tB(r,e,i,n));return 1==s.length?s[0]:new tR(s)}get startSide(){return this.value?this.value.startSide:0}goto(t,e=-1e9){for(let i of this.heap)i.goto(t,e);for(let t=this.heap.length>>1;t>=0;t--)tP(this.heap,t);return this.next(),this}forward(t,e){for(let i of this.heap)i.forward(t,e);for(let t=this.heap.length>>1;t>=0;t--)tP(this.heap,t);0>(this.to-t||this.value.endSide-e)&&this.next()}next(){if(0==this.heap.length)this.from=this.to=1e9,this.value=null,this.rank=-1;else{let t=this.heap[0];this.from=t.from,this.to=t.to,this.value=t.value,this.rank=t.rank,t.value&&t.next(),tP(this.heap,0)}}}function tP(t,e){for(let i=t[e];;){let s=(e<<1)+1;if(s>=t.length)break;let n=t[s];if(s+1=0&&(n=t[s+1],s++),0>i.compare(n))break;t[s]=i,t[e]=n,e=s}}class tL{constructor(t,e,i){this.minPoint=i,this.active=[],this.activeTo=[],this.activeRank=[],this.minActive=-1,this.point=null,this.pointFrom=0,this.pointRank=0,this.to=-1e9,this.endSide=0,this.openStart=-1,this.cursor=tR.from(t,e,i)}goto(t,e=-1e9){return this.cursor.goto(t,e),this.active.length=this.activeTo.length=this.activeRank.length=0,this.minActive=-1,this.to=t,this.endSide=e,this.openStart=-1,this.next(),this}forward(t,e){for(;this.minActive>-1&&0>(this.activeTo[this.minActive]-t||this.active[this.minActive].endSide-e);)this.removeActive(this.minActive);this.cursor.forward(t,e)}removeActive(t){tH(this.active,t),tH(this.activeTo,t),tH(this.activeRank,t),this.minActive=tF(this.active,this.activeTo)}addActive(t){let e=0,{value:i,to:s,rank:n}=this.cursor;for(;e0;)e++;tW(this.active,e,i),tW(this.activeTo,e,s),tW(this.activeRank,e,n),t&&tW(t,e,this.cursor.from),this.minActive=tF(this.active,this.activeTo)}next(){let t=this.to,e=this.point;this.point=null;let i=this.openStart<0?[]:null;for(;;){let s=this.minActive;if(s>-1&&0>(this.activeTo[s]-this.cursor.from||this.active[s].endSide-this.cursor.startSide)){if(this.activeTo[s]>t){this.to=this.activeTo[s],this.endSide=this.active[s].endSide;break}this.removeActive(s),i&&tH(i,s)}else if(this.cursor.value)if(this.cursor.from>t){this.to=this.cursor.from,this.endSide=this.cursor.startSide;break}else{let t=this.cursor.value;if(t.point)if(e&&this.cursor.to==this.to&&this.cursor.from=0&&i[e]=0&&!(this.activeRank[i]t||this.activeTo[i]==t&&this.active[i].endSide>=this.point.endSide)&&e.push(this.active[i]);return e.reverse()}openEnd(t){let e=0;for(let i=this.activeTo.length-1;i>=0&&this.activeTo[i]>t;i--)e++;return e}}function tN(t,e,i,s,n,r){t.goto(e),i.goto(s);let o=s+n,l=s,h=s-e,a=!!r.boundChange;for(let e=!1;;){let s=t.to+h-i.to,n=s||t.endSide-i.endSide,c=n<0?t.to+h:i.to,u=Math.min(c,o);if(t.point||i.point?(t.point&&i.point&&tC(t.point,i.point)&&tI(t.activeForPoint(t.to),i.activeForPoint(i.to))||r.comparePoint(l,u,t.point,i.point),e=!1):(e&&r.boundChange(l),u>l&&!tI(t.active,i.active)&&r.compareRange(l,u,t.active,i.active),a&&uo)break;l=c,n<=0&&t.next(),n>=0&&i.next()}}function tI(t,e){if(t.length!=e.length)return!1;for(let i=0;i=e;i--)t[i+1]=t[i];t[e]=i}function tF(t,e){let i=-1,s=1e9;for(let n=0;n(e[n]-s||t[n].endSide-t[i].endSide)&&(i=n,s=e[n]);return i}function tV(t,e,i=t.length){let s=0;for(let n=0;n=e)return s;if(s==t.length)break;n+=9==t.charCodeAt(s)?i-n%i:1,s=k(t,s)}return!0===s?-1:t.length}},29332(t,e,i){let s;i.d(e,{C3:()=>s1,Z9:()=>tj,Eg:()=>sG,n6:()=>sX,NZ:()=>L,QO:()=>nn,Wu:()=>nM,qf:()=>sO,Pq:()=>sZ,ld:()=>s2,pK:()=>nm,qy:()=>nv,DK:()=>sj,tF:()=>tw,$G:()=>st,rC:()=>s6,_B:()=>P,Hm:()=>na,qd:()=>i9,X3:()=>t3,ui:()=>s9,vo:()=>sQ,wu:()=>nP,rU:()=>nL,Ux:()=>sU,N$:()=>sv,D4:()=>sD,Lz:()=>i_,BE:()=>sk,TS:()=>iQ,l_:()=>V,dT:()=>su,Ip:()=>i2,OP:()=>th,vX:()=>sN,EV:()=>ns,Yq:()=>nB,wJ:()=>ni,S7:()=>s5,dz:()=>sS,$K:()=>nk,HJ:()=>sR,uF:()=>is,xO:()=>R,cU:()=>nl,c_:()=>tF,A:()=>sa,VH:()=>i7,w4:()=>iG});for(var n,r,o,l=i(52704),h=i(97417),a={8:"Backspace",9:"Tab",10:"Enter",12:"NumLock",13:"Enter",16:"Shift",17:"Control",18:"Alt",20:"CapsLock",27:"Escape",32:" ",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"ArrowLeft",38:"ArrowUp",39:"ArrowRight",40:"ArrowDown",44:"PrintScreen",45:"Insert",46:"Delete",59:";",61:"=",91:"Meta",92:"Meta",106:"*",107:"+",108:",",109:"-",110:".",111:"/",144:"NumLock",145:"ScrollLock",160:"Shift",161:"Shift",162:"Control",163:"Control",164:"Alt",165:"Alt",173:"-",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"},c={48:")",49:"!",50:"@",51:"#",52:"$",53:"%",54:"^",55:"&",56:"*",57:"(",59:":",61:"+",173:"_",186:":",187:"+",188:"<",189:"_",190:">",191:"?",192:"~",219:"{",220:"|",221:"}",222:'"'},u="u">typeof navigator&&/Mac/.test(navigator.platform),f="u">typeof navigator&&/MSIE \d|Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(navigator.userAgent),d=0;d<10;d++)a[48+d]=a[96+d]=String(d);for(var d=1;d<=24;d++)a[d+111]="F"+d;for(var d=65;d<=90;d++)a[d]=String.fromCharCode(d+32),c[d]=String.fromCharCode(d);for(var p in a)c.hasOwnProperty(p)||(c[p]=a[p]);var g=i(93748);let m="u">typeof navigator?navigator:{userAgent:"",vendor:"",platform:""},v="u">typeof document?document:{documentElement:{style:{}}},w=/Edge\/(\d+)/.exec(m.userAgent),b=/MSIE \d/.test(m.userAgent),y=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(m.userAgent),x=!!(b||y||w),k=!x&&/gecko\/(\d+)/i.test(m.userAgent),S=!x&&/Chrome\/(\d+)/.exec(m.userAgent),C="webkitFontSmoothing"in v.documentElement.style,A=!x&&/Apple Computer/.test(m.vendor),M=A&&(/Mobile\/\w+/.test(m.userAgent)||m.maxTouchPoints>2);var O={mac:M||/Mac/.test(m.platform),windows:/Win/.test(m.platform),linux:/Linux|X11/.test(m.platform),ie:x,ie_version:b?v.documentMode||6:y?+y[1]:w?+w[1]:0,gecko:k,gecko_version:k?+(/Firefox\/(\d+)/.exec(m.userAgent)||[0,0])[1]:0,chrome:!!S,chrome_version:S?+S[1]:0,ios:M,android:/Android\b/.test(m.userAgent),webkit:C,webkit_version:C?+(/\bAppleWebKit\/(\d+)/.exec(m.userAgent)||[0,0])[1]:0,safari:A,safari_version:A?+(/\bVersion\/(\d+(\.\d+)?)/.exec(m.userAgent)||[0,0])[1]:0,tabSize:null!=v.documentElement.style.tabSize?"tab-size":"-moz-tab-size"};function T(t,e){for(let i in t)"class"==i&&e.class?e.class+=" "+t.class:"style"==i&&e.style?e.style+=";"+t.style:e[i]=t[i];return e}let D=Object.create(null);function E(t,e,i){if(t==e)return!0;t||(t=D),e||(e=D);let s=Object.keys(t),n=Object.keys(e);if(s.length-(i&&s.indexOf(i)>-1?1:0)!=n.length-(i&&n.indexOf(i)>-1?1:0))return!1;for(let r of s)if(r!=i&&(-1==n.indexOf(r)||t[r]!==e[r]))return!1;return!0}function B(t,e,i){let s=!1;if(e)for(let n in e)i&&n in i||(s=!0,"style"==n?t.style.cssText="":t.removeAttribute(n));if(i)for(let n in i)e&&e[n]==i[n]||(s=!0,"style"==n?t.style.cssText=i[n]:t.setAttribute(n,i[n]));return s}class R{eq(t){return!1}updateDOM(t,e,i){return!1}compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}get estimatedHeight(){return -1}get lineBreaks(){return 0}ignoreEvent(t){return!0}coordsAt(t,e,i){return null}get isHidden(){return!1}get editable(){return!1}destroy(t){}}var P=((n=P||(P={}))[n.Text=0]="Text",n[n.WidgetBefore=1]="WidgetBefore",n[n.WidgetAfter=2]="WidgetAfter",n[n.WidgetRange=3]="WidgetRange",n);class L extends l.FB{constructor(t,e,i,s){super(),this.startSide=t,this.endSide=e,this.widget=i,this.spec=s}get heightRelevant(){return!1}static mark(t){return new N(t)}static widget(t){let e=Math.max(-1e4,Math.min(1e4,t.side||0)),i=!!t.block;return e+=i&&!t.inlineOrder?e>0?3e8:-4e8:e>0?1e8:-1e8,new H(t,e,e,i,t.widget||null,!1)}static replace(t){let e=!!t.block,i,s;if(t.isBlockGap)i=-5e8,s=4e8;else{let{start:n,end:r}=W(t,e);i=(n?e?-3e8:-1:5e8)-1,s=(r?e?2e8:1:-6e8)+1}return new H(t,i,s,e,t.widget||null,!0)}static line(t){return new I(t)}static set(t,e=!1){return l.om.of(t,e)}hasHeight(){return!!this.widget&&this.widget.estimatedHeight>-1}}L.none=l.om.empty;class N extends L{constructor(t){let{start:e,end:i}=W(t);super(e?-1:5e8,i?1:-6e8,null,t),this.tagName=t.tagName||"span",this.attrs=t.class&&t.attributes?T(t.attributes,{class:t.class}):t.class?{class:t.class}:t.attributes||D}eq(t){return this==t||t instanceof N&&this.tagName==t.tagName&&E(this.attrs,t.attrs)}range(t,e=t){if(t>=e)throw RangeError("Mark decorations may not be empty");return super.range(t,e)}}N.prototype.point=!1;class I extends L{constructor(t){super(-2e8,-2e8,null,t)}eq(t){return t instanceof I&&this.spec.class==t.spec.class&&E(this.spec.attributes,t.spec.attributes)}range(t,e=t){if(e!=t)throw RangeError("Line decoration ranges must be zero-length");return super.range(t,e)}}I.prototype.mapMode=l.iR.TrackBefore,I.prototype.point=!0;class H extends L{constructor(t,e,i,s,n,r){super(e,i,n,t),this.block=s,this.isReplace=r,this.mapMode=s?e<=0?l.iR.TrackBefore:l.iR.TrackAfter:l.iR.TrackDel}get type(){return this.startSide!=this.endSide?P.WidgetRange:this.startSide<=0?P.WidgetBefore:P.WidgetAfter}get heightRelevant(){return this.block||!!this.widget&&(this.widget.estimatedHeight>=5||this.widget.lineBreaks>0)}eq(t){var e,i;return t instanceof H&&(e=this.widget,e==(i=t.widget)||!!(e&&i&&e.compare(i)))&&this.block==t.block&&this.startSide==t.startSide&&this.endSide==t.endSide}range(t,e=t){if(this.isReplace&&(t>e||t==e&&this.startSide>0&&this.endSide<=0))throw RangeError("Invalid range for replacement decoration");if(!this.isReplace&&e!=t)throw RangeError("Widget decorations can only have zero-length ranges");return super.range(t,e)}}function W(t,e=!1){let{inclusiveStart:i,inclusiveEnd:s}=t;return null==i&&(i=t.inclusive),null==s&&(s=t.inclusive),{start:null!=i?i:e,end:null!=s?s:e}}function F(t,e,i,s=0){let n=i.length-1;n>=0&&i[n]+s>=t?i[n]=Math.max(i[n],e):i.push(t,e)}H.prototype.point=!0;class V extends l.FB{constructor(t,e){super(),this.tagName=t,this.attributes=e}eq(t){return t==this||t instanceof V&&this.tagName==t.tagName&&E(this.attributes,t.attributes)}static create(t){return new V(t.tagName,t.attributes||D)}static set(t,e=!1){return l.om.of(t,e)}}function _(t){return(11==t.nodeType?t.getSelection?t:t.ownerDocument:t).getSelection()}function z(t,e){return!!e&&(t==e||t.contains(1!=e.nodeType?e.parentNode:e))}function j(t,e){if(!e.anchorNode)return!1;try{return z(t,e.anchorNode)}catch(t){return!1}}function q(t){return 3==t.nodeType?ti(t,0,t.nodeValue.length).getClientRects():1==t.nodeType?t.getClientRects():[]}function K(t,e,i,s){return!!i&&(U(t,e,i,s,-1)||U(t,e,i,s,1))}function Y(t){for(var e=0;;e++)if(!(t=t.previousSibling))return e}function $(t){return 1==t.nodeType&&/^(DIV|P|LI|UL|OL|BLOCKQUOTE|DD|DT|H\d|SECTION|PRE)$/.test(t.nodeName)}function U(t,e,i,s,n){for(;;){if(t==i&&e==s)return!0;if(e==(n<0?0:G(t))){if("DIV"==t.nodeName)return!1;let i=t.parentNode;if(!i||1!=i.nodeType)return!1;e=Y(t)+(n<0?0:1),t=i}else{if(1!=t.nodeType||1==(t=t.childNodes[e+(n<0?-1:0)]).nodeType&&"false"==t.contentEditable)return!1;e=n<0?G(t):0}}}function G(t){return 3==t.nodeType?t.nodeValue.length:t.childNodes.length}function X(t,e){let i=e?t.left:t.right;return{left:i,right:i,top:t.top,bottom:t.bottom}}function J(t,e){let i=e.width/t.offsetWidth,s=e.height/t.offsetHeight;return(i>.995&&i<1.005||!isFinite(i)||1>Math.abs(e.width-t.offsetWidth))&&(i=1),(s>.995&&s<1.005||!isFinite(s)||1>Math.abs(e.height-t.offsetHeight))&&(s=1),{scaleX:i,scaleY:s}}function Q(t,e=!0){let i=t.ownerDocument,s=null,n=null;for(let r=t.parentNode;r;)if(r==i.body||(!e||s)&&n)break;else if(1==r.nodeType)!n&&r.scrollHeight>r.clientHeight&&(n=r),e&&!s&&r.scrollWidth>r.clientWidth&&(s=r),r=r.assignedSlot||r.parentNode;else if(11==r.nodeType)r=r.host;else break;return{x:s,y:n}}V.prototype.startSide=V.prototype.endSide=-1;class Z{constructor(){this.anchorNode=null,this.anchorOffset=0,this.focusNode=null,this.focusOffset=0}eq(t){return this.anchorNode==t.anchorNode&&this.anchorOffset==t.anchorOffset&&this.focusNode==t.focusNode&&this.focusOffset==t.focusOffset}setRange(t){let{anchorNode:e,focusNode:i}=t;this.set(e,Math.min(t.anchorOffset,e?G(e):0),i,Math.min(t.focusOffset,i?G(i):0))}set(t,e,i,s){this.anchorNode=t,this.anchorOffset=e,this.focusNode=i,this.focusOffset=s}}let tt=null;function te(t){if(t.setActive)return t.setActive();if(tt)return t.focus(tt);let e=[];for(let i=t;i&&(e.push(i,i.scrollTop,i.scrollLeft),i!=i.ownerDocument);i=i.parentNode);if(t.focus(null==tt?{get preventScroll(){return tt={preventScroll:!0},!0}}:void 0),!tt){tt=!1;for(let t=0;tMath.max(0,t.document.documentElement.scrollHeight-t.innerHeight-4):t.scrollTop>Math.max(1,t.scrollHeight-t.clientHeight-4)}function tr(t,e){for(let i=t,s=e;;)if(3==i.nodeType&&s>0)return{node:i,offset:s};else if(1==i.nodeType&&s>0){if("false"==i.contentEditable)return null;s=G(i=i.childNodes[s-1])}else{if(!i.parentNode||$(i))return null;s=Y(i),i=i.parentNode}}function to(t,e){for(let i=t,s=e;;)if(3==i.nodeType&&s=26&&(tt=!1);class tl{constructor(t,e,i=!0){this.node=t,this.offset=e,this.precise=i}static before(t,e){return new tl(t.parentNode,Y(t),e)}static after(t,e){return new tl(t.parentNode,Y(t)+1,e)}}var th=((r=th||(th={}))[r.LTR=0]="LTR",r[r.RTL=1]="RTL",r);let ta=th.LTR,tc=th.RTL;function tu(t){let e=[];for(let i=0;i=e){if(o.level==i)return r;(n<0||(0!=s?s<0?o.frome:t[n].level>o.level))&&(n=r)}}if(n<0)throw RangeError("Index out of range");return n}}let tb=[];function ty(t,e,i){if(!t)return[new tw(0,0,+(e==tc))];if(e==ta&&!i.length&&!tv.test(t))return tx(t.length);if(i.length)for(;t.length>tb.length;)tb[tb.length]=256;let s=[],n=+(e!=ta);return function t(e,i,s,n,r,o,l){let h=i%2?2:1;!function(t,e,i,s,n){for(let r=0;r<=s.length;r++){let o=r?s[r-1].to:e,l=r=0;t-=3)if(tg[t+1]==-s){let i=tg[t+2],s=2&i?n:4&i?1&i?r:n:0;s&&(tb[e]=tb[tg[t]]=s),l=t;break}}else if(189==tg.length)break;else tg[l++]=e,tg[l++]=i,tg[l++]=h;else if(2==(o=tb[e])||1==o){let t=o==n;h=+!t;for(let e=l-3;e>=0;e-=3){let i=tg[e+2];if(2&i)break;if(t)tg[e+2]|=2;else{if(4&i)break;tg[e+2]|=4}}}}}(e,r,o,n,h),function(t,e,i,s){for(let n=0,r=s;n<=i.length;n++){let o=n?i[n-1].to:t,l=nh;)e==r&&(e=i[--s].from,r=s?i[s-1].to:t),tb[--e]=c;h=o}else r=o,h++}}}(r,o,n,h),function e(i,s,n,r,o,l,h){let a=r%2?2:1;if(r%2==o%2)for(let c=s,u=0;cc&&h.push(new tw(c,e.from,p)),t(i,e.direction==ta!=!(p%2)?r+1:r,o,e.inner,e.from,e.to,h),c=e.to),g=e.to}else if(g==n||(s?tb[g]!=a:tb[g]==a))break;else g++;d?e(i,c,g,r+1,o,d,h):cs;){let n=!0,f=!1;if(!u||c>l[u-1].to){let t=tb[c-1];t!=a&&(n=!1,f=16==t)}let d=n||1!=a?null:[],p=n?r:r+1,g=c;e:for(;;)if(u&&g==l[u-1].to){if(f)break;let e=l[--u];if(!n)for(let t=e.from,i=u;;){if(t==s)break e;if(i&&l[i-1].to==t)t=l[--i].from;else if(tb[t-1]==a)break e;else break}d?d.push(e):(e.to=e.length)return null;o=(a=e[h=t]).side(!n,i),c=a.side(n,i)}let u=(0,l.zK)(t.text,o,a.forward(n,i));(ua.to)&&(u=c),tk=t.text.slice(Math.min(o,u),Math.max(o,u));let f=h==(n?e.length-1:0)?null:e[h+(n?1:-1)];return f&&u==c&&f.level+ +!nt.some(t=>t)}),tL=l.sj.define({combine:t=>t.some(t=>t)}),tN=l.sj.define();class tI{constructor(t,e="nearest",i="nearest",s=5,n=5,r=!1){this.range=t,this.y=e,this.x=i,this.yMargin=s,this.xMargin=n,this.isSnapshot=r}map(t){return t.empty?this:new tI(this.range.map(t),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}clip(t){return this.range.to<=t.doc.length?this:new tI(l.OF.cursor(t.doc.length),this.y,this.x,this.yMargin,this.xMargin,this.isSnapshot)}}let tH=l.Pe.define({map:(t,e)=>t.map(e)}),tW=l.Pe.define();function tF(t,e,i){let s=t.facet(tO);s.length?s[0](e):window.onerror&&window.onerror(String(e),i,void 0,void 0,e)||(i?console.error(i+":",e):console.error(e))}let tV=l.sj.define({combine:t=>!t.length||t[0]}),t_=0,tz=l.sj.define({combine:t=>t.filter((e,i)=>{for(let s=0;s{let e=[];return r&&e.push(t$.of(e=>{let i=e.plugin(t);return i?r(i):L.none})),n&&e.push(n(t)),e})}static fromClass(t,e){return tj.define((e,i)=>new t(e,i),e)}}class tq{constructor(t){this.spec=t,this.mustUpdate=null,this.value=null}get plugin(){return this.spec&&this.spec.plugin}update(t){if(this.value){if(this.mustUpdate){let t=this.mustUpdate;if(this.mustUpdate=null,this.value.update)try{this.value.update(t)}catch(e){if(tF(t.state,e,"CodeMirror plugin crashed"),this.value.destroy)try{this.value.destroy()}catch(t){}this.deactivate()}}}else if(this.spec)try{this.value=this.spec.plugin.create(t,this.spec.arg)}catch(e){tF(t.state,e,"CodeMirror plugin crashed"),this.deactivate()}return this}destroy(t){var e;if(null==(e=this.value)?void 0:e.destroy)try{this.value.destroy()}catch(e){tF(t.state,e,"CodeMirror plugin crashed")}}deactivate(){this.spec=this.value=null}}let tK=l.sj.define(),tY=l.sj.define(),t$=l.sj.define(),tU=l.sj.define(),tG=l.sj.define(),tX=l.sj.define(),tJ=l.sj.define();function tQ(t,e){let i=t.state.facet(tJ);if(!i.length)return i;let s=i.map(e=>e instanceof Function?e(t):e),n=[];return l.om.spans(s,e.from,e.to,{point(){},span(t,i,s,r){let o=t-e.from,l=i-e.from,h=n;for(let t=s.length-1;t>=0;t--,r--){let i=s[t].spec.bidiIsolate,n;if(null==i&&(i=function(t,e,i){for(let s=e;s0&&h.length&&(n=h[h.length-1]).to==o&&n.direction==i)n.to=l,h=n.inner;else{let t={from:o,to:l,direction:i,inner:[]};h.push(t),h=t.inner}}}}),n}let tZ=l.sj.define();function t0(t){let e=0,i=0,s=0,n=0;for(let r of t.state.facet(tZ)){let o=r(t);o&&(null!=o.left&&(e=Math.max(e,o.left)),null!=o.right&&(i=Math.max(i,o.right)),null!=o.top&&(s=Math.max(s,o.top)),null!=o.bottom&&(n=Math.max(n,o.bottom)))}return{left:e,right:i,top:s,bottom:n}}let t1=l.sj.define();class t2{constructor(t,e,i,s){this.fromA=t,this.toA=e,this.fromB=i,this.toB=s}join(t){return new t2(Math.min(this.fromA,t.fromA),Math.max(this.toA,t.toA),Math.min(this.fromB,t.fromB),Math.max(this.toB,t.toB))}addToSet(t){let e=t.length,i=this;for(;e>0;e--){let s=t[e-1];if(!(s.fromA>i.toA)){if(s.toAs.push(new t2(t,e,i,n))),this.changedRanges=s}static create(t,e,i){return new t3(t,e,i)}get viewportChanged(){return(4&this.flags)>0}get viewportMoved(){return(8&this.flags)>0}get heightChanged(){return(2&this.flags)>0}get geometryChanged(){return this.docChanged||(18&this.flags)>0}get focusChanged(){return(1&this.flags)>0}get docChanged(){return!this.changes.empty}get selectionSet(){return this.transactions.some(t=>t.selection)}get empty(){return 0==this.flags&&0==this.transactions.length}}let t8=[];class t4{constructor(t,e,i=0){this.dom=t,this.length=e,this.flags=i,this.parent=null,t.cmTile=this}get breakAfter(){return 1&this.flags}get children(){return t8}isWidget(){return!1}get isHidden(){return!1}isComposite(){return!1}isLine(){return!1}isText(){return!1}isBlock(){return!1}get domAttrs(){return null}sync(t){if(this.flags|=2,4&this.flags){this.flags&=-5;let t=this.domAttrs;t&&function(t,e){for(let i=t.attributes.length-1;i>=0;i--){let s=t.attributes[i].name;null==e[s]&&t.removeAttribute(s)}for(let i in e){let s=e[i];"style"==i?t.style.cssText=s:t.getAttribute(i)!=s&&t.setAttribute(i,s)}}(this.dom,t)}}toString(){return this.constructor.name+(this.children.length?`(${this.children})`:"")+(this.breakAfter?"#":"")}destroy(){this.parent=null}setDOM(t){this.dom=t,t.cmTile=this}get posAtStart(){return this.parent?this.parent.posBefore(this):0}get posAtEnd(){return this.posAtStart+this.length}posBefore(t,e=this.posAtStart){let i=e;for(let e of this.children){if(e==t)return i;i+=e.length+e.breakAfter}throw RangeError("Invalid child in posBefore")}posAfter(t){return this.posBefore(t)+t.length}covers(t){return!0}coordsIn(t,e){return null}domPosFor(t,e){let i=Y(this.dom),s=this.length?t>0:e>0;return new tl(this.parent.dom,i+ +!!s,0==t||t==this.length)}markDirty(t){this.flags&=-3,t&&(this.flags|=4),this.parent&&2&this.parent.flags&&this.parent.markDirty(!1)}get overrideDOMText(){return null}get root(){for(let t=this;t;t=t.parent)if(t instanceof t6)return t;return null}static get(t){return t.cmTile}}class t5 extends t4{constructor(t){super(t,0),this._children=[]}isComposite(){return!0}get children(){return this._children}get lastChild(){return this.children.length?this.children[this.children.length-1]:null}append(t){this.children.push(t),t.parent=this}sync(t){if(2&this.flags)return;super.sync(t);let e=this.dom,i=null,s,n=(null==t?void 0:t.node)==e?t:null,r=0;for(let o of this.children){if(o.sync(t),r+=o.length+o.breakAfter,s=i?i.nextSibling:e.firstChild,n&&s!=o.dom&&(n.written=!0),o.dom.parentNode==e)for(;s&&s!=o.dom;)s=t9(s);else e.insertBefore(o.dom,s);i=o.dom}for(s=i?i.nextSibling:e.firstChild,n&&s&&(n.written=!0);s;)s=t9(s);this.length=r}}function t9(t){let e=t.nextSibling;return t.parentNode.removeChild(t),e}class t6 extends t5{constructor(t,e){super(e),this.view=t}owns(t){for(;t;t=t.parent)if(t==this)return!0;return!1}isBlock(){return!0}nearest(t){for(;;){if(!t)return null;let e=t4.get(t);if(e&&this.owns(e))return e;t=t.parentNode}}blockTiles(t){for(let e=[],i=this,s=0,n=0;;)if(s==i.children.length){if(!e.length)return;(i=i.parent).breakAfter&&n++,s=e.pop()}else{let r=i.children[s++];if(r instanceof t7)e.push(s),i=r,s=0;else{let e=n+r.length,i=t(r,n);if(void 0!==i)return i;n=e+r.breakAfter}}}resolveBlock(t,e){let i,s=-1,n,r=-1;if(this.blockTiles((o,l)=>{let h=l+o.length;if(t>=l&&t<=h){if(o.isWidget()&&e>=-1&&e<=1){if(32&o.flags)return!0;16&o.flags&&(i=void 0)}(lt||t==l&&(e>1?o.length:o.covers(-1)))&&(!n||!o.isWidget()&&n.isWidget())&&(n=o,r=t-l)}}),!i&&!n)throw Error("No tile at position "+t);return i&&e<0||!n?{tile:i,offset:s}:{tile:n,offset:r}}}class t7 extends t5{constructor(t,e){super(t),this.wrapper=e}isBlock(){return!0}covers(t){return!!this.children.length&&(t<0?this.children[0].covers(-1):this.lastChild.covers(1))}get domAttrs(){return this.wrapper.attributes}static of(t,e){let i=new t7(e||document.createElement(t.tagName),t);return e||(i.flags|=4),i}}class et extends t5{constructor(t,e){super(t),this.attrs=e}isLine(){return!0}static start(t,e,i){let s=new et(e||document.createElement("div"),t);return e&&i||(s.flags|=4),s}get domAttrs(){return this.attrs}resolveInline(t,e,i){let s=null,n=-1,r=null,o=-1;!function t(l,h){for(let a=0,c=0;a=h&&(u.isComposite()?t(u,h-c):(!r||r.isHidden&&(e>0||i&&function(t,e){let i=t.coordsIn(0,1),s=e.coordsIn(0,1);return i&&s&&s.toph||32&u.flags)?(r=u,o=h-c):(ci&&(t=i);let s=t,n=t,r=0;0==t&&e<0||t==i&&e>=0?!(O.chrome||O.gecko)&&(t?(s--,r=1):n=0)?0:o.length-1];return O.safari&&!r&&0==l.width&&(l=Array.prototype.find.call(o,t=>t.width)||l),r?X(l,r<0):l||null}static of(t,e){let i=new ei(e||document.createTextNode(t),t);return e||(i.flags|=2),i}}class es extends t4{constructor(t,e,i,s){super(t,e,s),this.widget=i}isWidget(){return!0}get isHidden(){return this.widget.isHidden}covers(t){return!(48&this.flags)&&(this.flags&(t<0?64:128))>0}coordsIn(t,e){return this.coordsInWidget(t,e,!1)}coordsInWidget(t,e,i){let s=this.widget.coordsAt(this.dom,t,e);if(s)return s;if(i)return X(this.dom.getBoundingClientRect(),this.length?0==t:e<=0);{let e=this.dom.getClientRects(),i=null;if(!e.length)return null;let s=!!(16&this.flags)||!(32&this.flags)&&t>0;for(let n=s?e.length-1:0;i=e[n],t>0?0!=n:n!=e.length-1&&!(i.top0;)if(s.isComposite())if(r){if(!t)break;i&&i.break(),t--,r=!1}else if(n==s.children.length){if(!t&&!o.length)break;i&&i.leave(s),r=!!s.breakAfter,({tile:s,index:n}=o.pop()),n++}else{let l=s.children[n],h=l.breakAfter;(e>0?l.length<=t:l.length=0;t--){let i=e.marks[t],n=s.lastChild;if(n instanceof ee&&n.mark.eq(i.mark))n.dom!=i.dom&&n.setDOM(ep(i.dom)),s=n;else{if(this.cache.reused.get(i)){let t=t4.get(i.dom);t&&t.setDOM(ep(i.dom))}let t=ee.of(i.mark,i.dom);s.append(t),s=t}this.cache.reused.set(i,2)}let n=t4.get(t.text);n&&this.cache.reused.set(n,2);let r=new ei(t.text,t.text.nodeValue);r.flags|=8,s.append(r)}addInlineWidget(t,e,i){let s=this.afterWidget&&48&t.flags&&(48&this.afterWidget.flags)==(48&t.flags);s||this.flushBuffer();let n=this.ensureMarks(e,i);s||16&t.flags||n.append(this.getBuffer(1)),n.append(t),this.pos+=t.length,this.afterWidget=t}addMark(t,e,i){this.flushBuffer(),this.ensureMarks(e,i).append(t),this.pos+=t.length,this.afterWidget=null}addBlockWidget(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}continueWidget(t){let e=this.afterWidget||this.lastBlock;e.length+=t,this.pos+=t}addLineStart(t,e){var i;t||(t=ed);let s=et.start(t,e||(null==(i=this.cache.find(et))?void 0:i.dom),!!e);this.getBlockPos().append(this.lastBlock=this.curLine=s)}addLine(t){this.getBlockPos().append(t),this.pos+=t.length,this.lastBlock=t,this.endLine()}addBreak(){this.lastBlock.flags|=1,this.endLine(),this.pos++}addLineStartIfNotCovered(t){this.blockPosCovered()||this.addLineStart(t)}ensureLine(t){this.curLine||this.addLineStart(t)}ensureMarks(t,e){var i;let s=this.curLine;for(let n=t.length-1;n>=0;n--){let r=t[n],o;if(e>0&&(o=s.lastChild)&&o instanceof ee&&o.mark.eq(r))s=o,e--;else{let t=ee.of(r,null==(i=this.cache.find(ee,t=>t.mark.eq(r)))?void 0:i.dom);s.append(t),s=t,e=0}}return s}endLine(){if(this.curLine){this.flushBuffer();let t=this.curLine.lastChild;(!t||!ef(this.curLine,!1)||"BR"!=t.dom.nodeName&&t.isWidget()&&!(O.ios&&ef(this.curLine,!0)))&&this.curLine.append(this.cache.findWidget(em,0,32)||new es(em.toDOM(),0,em,32)),this.curLine=this.afterWidget=null}}updateBlockWrappers(){this.wrapperPos>this.pos+1e4&&(this.blockWrappers.goto(this.pos),this.wrappers.length=0);for(let t=this.wrappers.length-1;t>=0;t--)this.wrappers[t].to=this.pos){let e=new eo(t.from,t.to,t.value,t.rank),i=this.wrappers.length;for(;i>0&&0>(this.wrappers[i-1].rank-e.rank||this.wrappers[i-1].to-e.to);)i--;this.wrappers.splice(i,0,e)}this.wrapperPos=this.pos}getBlockPos(){var t;this.updateBlockWrappers();let e=this.root;for(let i of this.wrappers){let s=e.lastChild;if(i.fromt.wrapper.eq(i.wrapper)))?void 0:t.dom);e.append(s),e=s}}return e}blockPosCovered(){let t=this.lastBlock;return null!=t&&!t.breakAfter&&(!t.isWidget()||(160&t.flags)>0)}getBuffer(t){let e=2|(t<0?16:32),i=this.cache.find(en,void 0,1);return i&&(i.flags=e),i||new en(e)}flushBuffer(){this.afterWidget&&!(32&this.afterWidget.flags)&&(this.afterWidget.parent.append(this.getBuffer(-1)),this.afterWidget=null)}}class eh{constructor(t){this.skipCount=0,this.text="",this.textOff=0,this.cursor=t.iter()}skip(t){this.textOff+t<=this.text.length?this.textOff+=t:(this.skipCount+=t-(this.text.length-this.textOff),this.text="",this.textOff=0)}next(t){if(this.textOff==this.text.length){let{value:e,lineBreak:i,done:s}=this.cursor.next(this.skipCount);if(this.skipCount=0,s)throw Error("Ran out of text content when drawing inline views");this.text=e;let n=this.textOff=Math.min(t,e.length);return i?null:e.slice(0,n)}let e=Math.min(this.text.length,this.textOff+t),i=this.text.slice(this.textOff,e);return this.textOff=e,i}}let ea=[es,et,ei,ee,en,t7,t6];for(let t=0;t[]),this.index=ea.map(()=>0),this.reused=new Map}add(t){let e=t.constructor.bucket,i=this.buckets[e];i.length<6?i.push(t):i[this.index[e]=(this.index[e]+1)%6]=t}find(t,e,i=2){let s=t.bucket,n=this.buckets[s],r=this.index[s];for(let t=n.length-1;t>=0;t--){let o=(t+r)%n.length,l=n[o];if((!e||e(l))&&!this.reused.has(l))return n.splice(o,1),o{if(this.cache.add(t),t.isComposite())return!1},enter:t=>this.cache.add(t),leave:()=>{},break:()=>{}}}run(t,e){let i=e&&this.getCompositionContext(e.text);for(let s=0,n=0,r=0;;){let o=rs){let t=l-s;this.preserve(t,!r,!o),s=l,n+=t}if(!o)break;e&&o.fromA<=e.range.fromA&&o.toA>=e.range.toA?(this.forward(o.fromA,e.range.fromA,e.range.fromA1;i--){let s=i==t.parents.length?t.tile:t.parents[i].tile;s instanceof ee&&e.push(s.mark)}return e}(this.old),n=this.openMarks;this.old.advance(t,i?1:-1,{skip:(t,e,i)=>{if(t.isWidget())if(this.openWidget)this.builder.continueWidget(i-e);else{let r=i>0||e{t.isLine()?this.builder.addLineStart(t.attrs,this.cache.maybeReuse(t)):(this.cache.add(t),t instanceof ee&&s.unshift(t.mark)),this.openWidget=!1},leave:t=>{t.isLine()?s.length&&(s.length=n=0):t instanceof ee&&(s.shift(),n=Math.min(n,s.length))},break:()=>{this.builder.addBreak(),this.openWidget=!1}}),this.text.skip(t)}emit(t,e){let i=null,s=this.builder,n=0,r=l.om.spans(this.decorations,t,e,{point:(t,e,r,o,l,h)=>{var a,c,u;if(r instanceof H){if(this.disallowBlockEffectsFor[h]){if(r.block)throw RangeError("Block decorations may not be specified via plugins");if(e>this.view.state.doc.lineAt(t).to)throw RangeError("Decorations that replace line breaks may not be specified via plugins")}if(n=o.length,l>o.length)s.continueWidget(e-t);else{let n,h=r.widget||(r.block?eg.block:eg.inline),c=(n=(a=r).isReplace?64*(a.startSide<0)|128*(a.endSide>0):a.startSide>0?32:16,a.block&&(n|=256),n),u=this.cache.findWidget(h,e-t,c)||es.of(h,this.view,e-t,c);r.block?(r.startSide>0&&s.addLineStartIfNotCovered(i),s.addBlockWidget(u)):(s.ensureLine(i),s.addInlineWidget(u,o,l))}i=null}else{let t,e;c=i,t=(u=r).spec.attributes,e=u.spec.class,(t||e)&&(c||(c={class:"cm-line"}),t&&T(t,c),e&&(c.class+=" "+e)),i=c}e>t&&this.text.skip(e-t)},span:(t,e,n,r)=>{for(let o=t;on,this.openMarks=r}forward(t,e,i=1){e-t<=10?this.old.advance(e-t,i,this.reuseWalker):(this.old.advance(5,-1,this.reuseWalker),this.old.advance(e-t-10,-1),this.old.advance(5,i,this.reuseWalker))}getCompositionContext(t){let e=[],i=null;for(let s=t.parentNode;;s=s.parentNode){let t=t4.get(s);if(s==this.view.contentDOM)break;t instanceof ee?e.push(t):(null==t?void 0:t.isLine())?i=t:t instanceof t7||("DIV"!=s.nodeName||i||s==this.view.contentDOM?i||e.push(ee.of(new N({tagName:s.nodeName.toLowerCase(),attributes:function(t){let e=Object.create(null);for(let i=0;i{for(let s of t.children)if((e?s.isText():s.length)||i(s))return!0;return!1};return i(t)}let ed={class:"cm-line"};function ep(t){let e=t4.get(t);return e&&e.setDOM(t.cloneNode()),t}class eg extends R{constructor(t){super(),this.tag=t}eq(t){return t.tag==this.tag}toDOM(){return document.createElement(this.tag)}updateDOM(t){return t.nodeName.toLowerCase()==this.tag}get isHidden(){return!0}}eg.inline=new eg("span"),eg.block=new eg("div");let em=new class extends R{toDOM(){return document.createElement("br")}get isHidden(){return!0}get editable(){return!0}};class ev{constructor(t){this.view=t,this.decorations=[],this.blockWrappers=[],this.dynamicDecorationMap=[!1],this.domChanged=null,this.hasComposition=null,this.editContextFormatting=L.none,this.lastCompositionAfterCursor=!1,this.minWidth=0,this.minWidthFrom=0,this.minWidthTo=0,this.impreciseAnchor=null,this.impreciseHead=null,this.forceSelection=!1,this.lastUpdate=Date.now(),this.updateDeco(),this.tile=new t6(t,t.contentDOM),this.updateInner([new t2(0,0,0,t.state.doc.length)],null)}update(t){var e,i,s,n,r,o,h,a,c;let u,f,d,p=t.changedRanges;this.minWidth>0&&p.length&&(p.every(({fromA:t,toA:e})=>ethis.minWidthTo)?(this.minWidthFrom=t.changes.mapPos(this.minWidthFrom,1),this.minWidthTo=t.changes.mapPos(this.minWidthTo,1)):this.minWidth=this.minWidthFrom=this.minWidthTo=0),this.updateEditContextFormatting(t);let g=-1;this.view.inputState.composing>=0&&!this.view.observer.editContext&&((null==(e=this.domChanged)?void 0:e.newSel)?g=this.domChanged.newSel.head:(i=t.changes,s=this.hasComposition,u=!1,s&&i.iterChangedRanges((t,e)=>{ts.from&&(u=!0)}),u||t.selectionSet||(g=t.state.selection.main.head)));let m=g>-1?function(t,e,i){let s=eb(t,i);if(!s)return null;let{node:n,from:r,to:o}=s,l=n.nodeValue;if(/[\n\r]/.test(l)||t.state.doc.sliceString(s.from,s.to)!=l)return null;let h=e.invertedDesc;return{range:new t2(h.mapPos(r),h.mapPos(o),r,o),text:n}}(this.view,t.changes,g):null;if(this.domChanged=null,this.hasComposition){let{from:e,to:i}=this.hasComposition;p=new t2(e,i,t.changes.mapPos(e,-1),t.changes.mapPos(i,1)).addToSet(p.slice())}this.hasComposition=m?{from:m.range.fromB,to:m.range.toB}:null,(O.ie||O.chrome)&&!m&&t&&t.state.doc.lines!=t.startState.doc.lines&&(this.forceSelection=!0);let v=this.decorations,w=this.blockWrappers;this.updateDeco();let b=(n=v,r=this.decorations,o=t.changes,f=new ey,l.om.compare(n,r,o,f),f.changes);b.length&&(p=t2.extendWithRanges(p,b));let y=(h=w,a=this.blockWrappers,c=t.changes,d=new ex,l.om.compare(h,a,c,d),d.changes);return y.length&&(p=t2.extendWithRanges(p,y)),m&&!p.some(t=>t.fromA<=m.range.fromA&&t.toA>=m.range.toA)&&(p=m.range.addToSet(p.slice())),(!(2&this.tile.flags)||0!=p.length)&&(this.updateInner(p,m),t.transactions.length&&(this.lastUpdate=Date.now()),!0)}updateInner(t,e){this.view.viewState.mustMeasureContent=!0;let{observer:i}=this.view;i.ignore(()=>{if(e||t.length){let i=this.tile,s=new eu(this.view,i,this.blockWrappers,this.decorations,this.dynamicDecorationMap);e&&t4.get(e.text)&&s.cache.reused.set(t4.get(e.text),2),this.tile=s.run(t,e),ew(i,s.cache.reused)}this.tile.dom.style.height=this.view.viewState.contentHeight/this.view.scaleY+"px",this.tile.dom.style.flexBasis=this.minWidth?this.minWidth+"px":"";let s=O.chrome||O.ios?{node:i.selectionRange.focusNode,written:!1}:void 0;this.tile.sync(s),s&&(s.written||i.selectionRange.focusNode!=s.node||!this.tile.dom.contains(s.node))&&(this.forceSelection=!0),this.tile.dom.style.height=""});let s=[];if(this.view.viewport.from||this.view.viewport.to-1)&&j(s,this.view.observer.selectionRange)&&!(n&&s.contains(n));if(!(r||e||o))return;let l=this.forceSelection;this.forceSelection=!1;let h=this.view.state.selection.main,a,c;if(h.empty?c=a=this.inlineDOMNearPos(h.anchor,h.assoc||1):(c=this.inlineDOMNearPos(h.head,h.head==h.from?1:-1),a=this.inlineDOMNearPos(h.anchor,h.anchor==h.from?1:-1)),O.gecko&&h.empty&&!this.hasComposition&&1==(i=a).node.nodeType&&i.node.firstChild&&(0==i.offset||"false"==i.node.childNodes[i.offset-1].contentEditable)&&(i.offset==i.node.childNodes.length||"false"==i.node.childNodes[i.offset].contentEditable)){let t=document.createTextNode("");this.view.observer.ignore(()=>a.node.insertBefore(t,a.node.childNodes[a.offset]||null)),a=c=new tl(t,0),l=!0}let u=this.view.observer.selectionRange;!l&&u.focusNode&&(K(a.node,a.offset,u.anchorNode,u.anchorOffset)&&K(c.node,c.offset,u.focusNode,u.focusOffset)||this.suppressWidgetCursorChange(u,h))||(this.view.observer.ignore(()=>{O.android&&O.chrome&&s.contains(u.focusNode)&&function(t,e){for(let i=t;i&&i!=e;i=i.assignedSlot||i.parentNode)if(1==i.nodeType&&"false"==i.contentEditable)return!0;return!1}(u.focusNode,s)&&(s.blur(),s.focus({preventScroll:!0}));let t=_(this.view.root);if(t)if(h.empty){if(O.gecko){var e,i;let t=(e=a.node,i=a.offset,1!=e.nodeType?0:(i&&"false"==e.childNodes[i-1].contentEditable?1:0)|2*(ih.head&&([a,c]=[c,a]),e.setEnd(c.node,c.offset),e.setStart(a.node,a.offset),t.removeAllRanges(),t.addRange(e)}o&&this.view.root.activeElement==s&&(s.blur(),n&&n.focus())}),this.view.observer.setSelectionRange(a,c)),this.impreciseAnchor=a.precise?null:new tl(u.anchorNode,u.anchorOffset),this.impreciseHead=c.precise?null:new tl(u.focusNode,u.focusOffset)}suppressWidgetCursorChange(t,e){return this.hasComposition&&e.empty&&K(t.focusNode,t.focusOffset,t.anchorNode,t.anchorOffset)&&this.posFromDOM(t.focusNode,t.focusOffset)==e.head}enforceCursorAssoc(){if(this.hasComposition)return;let{view:t}=this,e=t.state.selection.main,i=_(t.root),{anchorNode:s,anchorOffset:n}=t.observer.selectionRange;if(!i||!e.empty||!e.assoc||!i.modify)return;let r=this.lineAt(e.head,e.assoc);if(!r)return;let o=r.posAtStart;if(e.head==o||e.head==o+r.length)return;let l=this.coordsAt(e.head,-1),h=this.coordsAt(e.head,1);if(!l||!h||l.bottom>h.top)return;let a=this.domAtPos(e.head+e.assoc,e.assoc);i.collapse(a.node,a.offset),i.modify("move",e.assoc<0?"forward":"backward","lineboundary"),t.observer.readSelectionRange();let c=t.observer.selectionRange;t.docView.posFromDOM(c.anchorNode,c.anchorOffset)!=e.from&&i.collapse(s,n)}posFromDOM(t,e){let i=this.tile.nearest(t);if(!i)return 2&this.tile.dom.compareDocumentPosition(t)?0:this.view.state.doc.length;let s=i.posAtStart;if(i.isComposite()){let n;if(t==i.dom)n=i.dom.childNodes[e];else{let s=0==G(t)?0:0==e?-1:1;for(;;){let e=t.parentNode;if(e==i.dom)break;0==s&&e.firstChild!=e.lastChild&&(s=t==e.firstChild?-1:1),t=e}n=s<0?t:t.nextSibling}if(n==i.dom.firstChild)return s;for(;n&&!t4.get(n);)n=n.nextSibling;if(!n)return s+i.length;for(let t=0,e=s;;t++){let s=i.children[t];if(s.dom==n)return e;e+=s.length+s.breakAfter}}else if(i.isText())return t==i.dom?s+e:s+(e?i.length:0);else return s}domAtPos(t,e){let{tile:i,offset:s}=this.tile.resolveBlock(t,e);return i.isWidget()?i.domPosFor(t,e):i.domIn(s,e)}inlineDOMNearPos(t,e){let i,s=-1,n=!1,r,o=-1,l=!1;return(this.tile.blockTiles((e,h)=>{if(e.isWidget()){if(32&e.flags&&h>=t)return!0;16&e.flags&&(n=!0)}else{let a=h+e.length;if(h<=t&&(i=e,s=t-h,n=a=t&&!r&&(r=e,o=t-h,l=h>t),h>t&&r)return!0}}),i||r)?(n&&r?i=null:l&&i&&(r=null),i&&e<0||!r?i.domIn(s,e):r.domIn(o,e)):this.domAtPos(t,e)}coordsAt(t,e){let{tile:i,offset:s}=this.tile.resolveBlock(t,e);return i.isWidget()?i.widget instanceof ek?null:i.coordsInWidget(s,e,!0):i.coordsIn(s,e)}lineAt(t,e){let{tile:i}=this.tile.resolveBlock(t,e);return i.isLine()?i:null}coordsForChar(t){let{tile:e,offset:i}=this.tile.resolveBlock(t,1);return e.isLine()?function t(e,i){if(e.isComposite())for(let s of e.children){if(s.length>=i){let e=t(s,i);if(e)return e}if((i-=s.length)<0)break}else if(e.isText()&&iMath.max(this.view.scrollDOM.clientWidth,this.minWidth)+1,o=-1,l=this.view.textDirection==th.LTR,h=0,a=(t,c,u)=>{for(let f=0;fs);f++){let s=t.children[f],d=c+s.length,p=s.dom.getBoundingClientRect(),{height:g}=p;if(u&&!f&&(h+=p.top-u.top),s instanceof t7)d>i&&a(s,c,p);else if(c>=i&&(h>0&&e.push(-h),e.push(g+h),h=0,r)){let t=s.dom.lastChild,e=t?q(t):[];if(e.length){let t=e[e.length-1],i=l?t.right-p.left:p.right-t.left;i>o&&(o=i,this.minWidth=n,this.minWidthFrom=c,this.minWidthTo=d)}}u&&f==t.children.length-1&&(h+=u.bottom-p.bottom),c=d+s.breakAfter}};return a(this.tile,0,null),e}textDirectionAt(t){let{tile:e}=this.tile.resolveBlock(t,1);return"rtl"==getComputedStyle(e.dom).direction?th.RTL:th.LTR}measureTextSize(){let t=this.tile.blockTiles(t=>{if(t.isLine()&&t.children.length&&t.length<=20){let e=0,i;for(let s of t.children){if(!s.isText()||/[^ -~]/.test(s.text))return;let t=q(s.dom);if(1!=t.length)return;e+=t[0].width,i=t[0].height}if(e)return{lineHeight:t.dom.getBoundingClientRect().height,charWidth:e/t.length,textHeight:i}}});if(t)return t;let e=document.createElement("div"),i,s,n;return e.className="cm-line",e.style.width="99999px",e.style.position="absolute",e.textContent="abc def ghi jkl mno pqr stu",this.view.observer.ignore(()=>{this.tile.dom.appendChild(e);let t=q(e.firstChild)[0];i=e.getBoundingClientRect().height,s=t&&t.width?t.width/27:7,n=t&&t.height?t.height:i,e.remove()}),{lineHeight:i,charWidth:s,textHeight:n}}computeBlockGapDeco(){let t=[],e=this.view.viewState;for(let i=0,s=0;;s++){let n=s==e.viewports.length?null:e.viewports[s],r=n?n.from-1:this.view.state.doc.length;if(r>i){let s=(e.lineBlockAt(r).bottom-e.lineBlockAt(i).top)/this.view.scaleY;t.push(L.replace({widget:new ek(s),block:!0,inclusive:!0,isBlockGap:!0}).range(i,r))}if(!n)break;i=n.to+1}return L.set(t)}updateDeco(){let t=1,e=this.view.state.facet(t$).map(e=>(this.dynamicDecorationMap[t++]="function"==typeof e)?e(this.view):e),i=!1,s=this.view.state.facet(tG).map((t,e)=>{let s="function"==typeof t;return s&&(i=!0),s?t(this.view):t});for(s.length&&(this.dynamicDecorationMap[t++]=i,e.push(l.om.join(s))),this.decorations=[this.editContextFormatting,...e,this.computeBlockGapDeco(),this.view.viewState.lineGapDeco];t"function"==typeof t?t(this.view):t)}scrollIntoView(t){var e;if(t.isSnapshot){let e=this.view.viewState.lineBlockAt(t.range.head);this.view.scrollDOM.scrollTop=e.top-t.yMargin,this.view.scrollDOM.scrollLeft=t.xMargin;return}for(let e of this.view.state.facet(tN))try{if(e(this.view,t.range,t))return!0}catch(t){tF(this.view.state,t,"scroll handler")}let{range:i}=t,s=this.coordsAt(i.head,null!=(e=i.assoc)?e:i.empty?0:i.head>i.anchor?-1:1),n;if(!s)return;!i.empty&&(n=this.coordsAt(i.anchor,i.anchor>i.head?-1:1))&&(s={left:Math.min(s.left,n.left),top:Math.min(s.top,n.top),right:Math.max(s.right,n.right),bottom:Math.max(s.bottom,n.bottom)});let r=t0(this.view),o={left:s.left-r.left,top:s.top-r.top,right:s.right+r.right,bottom:s.bottom+r.bottom},{offsetWidth:l,offsetHeight:h}=this.view.scrollDOM;if(!function(t,e,i,s,n,r,o,l){let h=t.ownerDocument,a=h.defaultView||window;for(let c=t,u=!1;c&&!u;)if(1==c.nodeType){let t,f=c==h.body,d=1,p=1;if(f)t=function(t){let e=t.visualViewport;return e?{left:0,right:e.width,top:0,bottom:e.height}:{left:0,right:t.innerWidth,top:0,bottom:t.innerHeight}}(a);else{if(/^(fixed|sticky)$/.test(getComputedStyle(c).position)&&(u=!0),c.scrollHeight<=c.clientHeight&&c.scrollWidth<=c.clientWidth){c=c.assignedSlot||c.parentNode;continue}let e=c.getBoundingClientRect();({scaleX:d,scaleY:p}=J(c,e)),t={left:e.left,right:e.left+c.clientWidth*d,top:e.top,bottom:e.top+c.clientHeight*p}}let g=0,m=0;if("nearest"==n)e.top0&&e.bottom>t.bottom+m&&(m=e.bottom-t.bottom+o)):e.bottom>t.bottom&&(m=e.bottom-t.bottom+o,i<0&&e.top-m0&&e.right>t.right+g&&(g=e.right-t.right+r)):e.right>t.right&&(g=e.right-t.right+r,i<0&&e.leftMath.abs(t-g)&&(s="nearest"),i&&1>Math.abs(i-m)&&(n="nearest")}if(f)break;(e.topt.bottom||e.leftt.right)&&(e={left:Math.max(e.left,t.left),right:Math.min(e.right,t.right),top:Math.max(e.top,t.top),bottom:Math.min(e.bottom,t.bottom)}),c=c.assignedSlot||c.parentNode}else if(11==c.nodeType)c=c.host;else break}(this.view.scrollDOM,o,i.head1&&(s.top>window.pageYOffset+window.visualViewport.offsetTop+window.visualViewport.height||s.bottomt.isWidget()||t.children.some(e);return e(this.tile.resolveBlock(t,1).tile)}destroy(){ew(this.tile)}}function ew(t,e){let i=null==e?void 0:e.get(t);if(1!=i)for(let s of(null==i&&t.destroy(),t.children))ew(s,e)}function eb(t,e){let i=t.observer.selectionRange;if(!i.focusNode)return null;let s=tr(i.focusNode,i.focusOffset),n=to(i.focusNode,i.focusOffset),r=s||n;if(n&&s&&n.node!=s.node){let e=t4.get(n.node);if(!e||e.isText()&&e.text!=n.node.nodeValue)r=n;else if(t.docView.lastCompositionAfterCursor){let t=t4.get(s.node);!t||t.isText()&&t.text!=s.node.nodeValue||(r=n)}}if(t.docView.lastCompositionAfterCursor=r!=s,!r)return null;let o=e-r.offset;return{from:o,to:o+r.node.nodeValue.length,node:r.node}}let ey=class{constructor(){this.changes=[]}compareRange(t,e){F(t,e,this.changes)}comparePoint(t,e){F(t,e,this.changes)}boundChange(t){F(t,t,this.changes)}};class ex{constructor(){this.changes=[]}compareRange(t,e){F(t,e,this.changes)}comparePoint(){}boundChange(t){F(t,t,this.changes)}}class ek extends R{constructor(t){super(),this.height=t}toDOM(){let t=document.createElement("div");return t.className="cm-gap",this.updateDOM(t),t}eq(t){return t.height==this.height}updateDOM(t){return t.style.height=this.height+"px",!0}get editable(){return!0}get estimatedHeight(){return this.height}ignoreEvent(){return!1}}function eS(t,e,i){let s=t.lineBlockAt(e);if(Array.isArray(s.type)){let t;for(let n of s.type){if(n.from>e)break;if(!(n.toe)return n;(!t||n.type==P.Text&&(t.type!=n.type||(i<0?n.frome)))&&(t=n)}}return t||s}return s}function eC(t,e,i,s){let n=t.state.doc.lineAt(e.head),r=t.bidiSpans(n),o=t.textDirectionAt(n.from);for(let l=e,h=null;;){let e=tS(n,r,o,l,i),a=tk;if(!e){if(n.number==(i?t.state.doc.lines:1))return l;a="\n",n=t.state.doc.line(n.number+(i?1:-1)),r=t.bidiSpans(n),e=t.visualLineSide(n,!i)}if(h){if(!h(a))return l}else{if(!s)return e;h=s(a)}l=e}}function eA(t,e,i){for(;;){let s=0;for(let n of t)n.between(e-1,e+1,(t,n,r)=>{if(e>t&&ee(t)),i.from,e.head>i.from?-1:1);return s==i.from?i:l.OF.cursor(s,st.viewState.docHeight)return new eT(t.state.doc.length,-1);if(c=t.elementAtHeight(a),null==s)break;if(c.type==P.Text){if(s<0?c.tot.viewport.to)break;let e=t.docView.coordsAt(s<0?c.from:c.to,s>0?-1:1);if(e&&(s<0?e.top<=a+r:e.bottom>=a+r))break}let e=t.viewState.heightOracle.textHeight/2;a=s>0?c.bottom+e:c.top-e}if(t.viewport.from>=c.to||t.viewport.to<=c.from){if(i)return null;if(c.type==P.Text){let e=function(t,e,i,s,n){let r=Math.round((s-e.left)*t.defaultCharacterWidth);if(t.lineWrapping&&i.height>1.5*t.defaultLineHeight){let e=t.viewState.heightOracle.textHeight;r+=Math.floor((n-i.top-(t.defaultLineHeight-e)*.5)/e)*t.viewState.heightOracle.lineLength}let o=t.state.sliceDoc(i.from,i.to);return i.from+(0,l.kn)(o,r,t.state.tabSize)}(t,n,c,o,h);return new eT(e,e==c.from?1:-1)}}if(c.type!=P.Text)return a<(c.top+c.bottom)/2?new eT(c.from,1):new eT(c.to,-1);let u=t.docView.lineAt(c.from,2);return u&&u.length==c.length||(u=t.docView.lineAt(c.from,-2)),new eE(t,o,h,t.textDirectionAt(c.from)).scanTile(u,c.from)}class eE{constructor(t,e,i,s){this.view=t,this.x=e,this.y=i,this.baseDir=s,this.line=null,this.spans=null}bidiSpansAt(t){return(!this.line||this.line.from>t||this.line.to1||i.length&&(i[0].level!=this.baseDir||i[0].to+s.from>1;i:if(o.has(f)){let t=n+Math.floor(Math.random()*u);for(let e=0;e1)){if(o.bottomthis.y)(!s||s.top>o.top)&&(s=o),u=-1;else{let t=o.left>this.x?this.x-o.left:o.right(c.left+c.right)/2==u}}scanText(t,e){let i=[];for(let s=0;s{let n=i[s]-e,r=i[s+1]-e;return ti(t.dom,n,r).getClientRects()});return s.after?new eT(i[s.i+1],-1):new eT(i[s.i],1)}scanTile(t,e){if(!t.length)return new eT(e,1);if(1==t.children.length){let i=t.children[0];if(i.isText())return this.scanText(i,e);if(i.isComposite())return this.scanTile(i,e)}let i=[e];for(let s=0,n=e;s{let i=t.children[e];return 48&i.flags?null:(1==i.dom.nodeType?i.dom:ti(i.dom,0,i.length)).getClientRects()}),n=t.children[s.i],r=i[s.i];return n.isText()?this.scanText(n,r):n.isComposite()?this.scanTile(n,r):s.after?new eT(i[s.i+1],-1):new eT(r,1)}}class eB{constructor(t,e){this.points=t,this.view=e,this.text="",this.lineSeparator=e.state.facet(l.$t.lineSeparator)}append(t){this.text+=t}lineBreak(){this.text+="￿"}readRange(t,e){if(!t)return this;let i=t.parentNode;for(let s=t;;){this.findPointBefore(i,s);let t=this.text.length;this.readNode(s);let n=t4.get(s),r=s.nextSibling;if(r==e){(null==n?void 0:n.breakAfter)&&!r&&i!=this.view.contentDOM&&this.lineBreak();break}let o=t4.get(r);(n&&o?n.breakAfter:(n?n.breakAfter:$(s))||$(r)&&("BR"!=s.nodeName||(null==n?void 0:n.isWidget()))&&this.text.length>t)&&!function(t,e){let i;for(;t!=e&&t;t=t.nextSibling){let e=t4.get(t);if(!(null==e?void 0:e.isWidget()))return!1;e&&(i||(i=[])).push(e)}if(i)for(let t of i){let e=t.overrideDOMText;if(null==e?void 0:e.length)return!1}return!0}(r,e)&&this.lineBreak(),s=r}return this.findPointBefore(i,e),this}readTextNode(t){let e=t.nodeValue;for(let i of this.points)i.node==t&&(i.pos=this.text.length+Math.min(i.offset,e.length));for(let i=0,s=this.lineSeparator?null:/\r\n?|\n/g;;){let n=-1,r=1,o;if(this.lineSeparator?(n=e.indexOf(this.lineSeparator,i),r=this.lineSeparator.length):(o=s.exec(e))&&(n=o.index,r=o[0].length),this.append(e.slice(i,n<0?e.length:n)),n<0)break;if(this.lineBreak(),r>1)for(let e of this.points)e.node==t&&e.pos>this.text.length&&(e.pos-=r-1);i=n+r}}readNode(t){let e=t4.get(t),i=e&&e.overrideDOMText;if(null!=i){this.findPointInside(t,i.length);for(let t=i.iter();!t.next().done;)t.lineBreak?this.lineBreak():this.append(t.value)}else 3==t.nodeType?this.readTextNode(t):"BR"==t.nodeName?t.nextSibling&&this.lineBreak():1==t.nodeType&&this.readRange(t.firstChild,null)}findPointBefore(t,e){for(let i of this.points)i.node==t&&t.childNodes[i.offset]==e&&(i.pos=this.text.length)}findPointInside(t,e){for(let i of this.points)(3==t.nodeType?i.node==t:t.contains(i.node))&&(i.pos=this.text.length+(!function(t,e,i){for(;;){if(!e||i-1;let{impreciseHead:n,impreciseAnchor:r}=t.docView,o=t.state.selection;if(t.state.readOnly&&e>-1)this.newSel=null;else if(e>-1&&(this.bounds=function t(e,i,s,n){if(e.isComposite()){let r=-1,o=-1,l=-1,h=-1;for(let a=0,c=n,u=n;as)return t(n,i,s,c);if(f>=i&&-1==r&&(r=a,o=c),c>s&&n.dom.parentNode==e.dom){l=a,h=u;break}u=f,c=f+n.breakAfter}return{from:o,to:h<0?n+e.length:h,startDOM:(r?e.children[r-1].dom.nextSibling:null)||e.dom.firstChild,endDOM:l=0?e.children[l].dom:null}}return e.isText()?{from:n,to:n+e.length,startDOM:e.dom,endDOM:e.dom.nextSibling}:null}(t.docView.tile,e,i,0))){let e=n||r?[]:function(t){let e=[];if(t.root.activeElement!=t.contentDOM)return e;let{anchorNode:i,anchorOffset:s,focusNode:n,focusOffset:r}=t.observer.selectionRange;return i&&(e.push(new eR(i,s)),(n!=i||r!=s)&&e.push(new eR(n,r))),e}(t),i=new eB(e,t);i.readRange(this.bounds.startDOM,this.bounds.endDOM),this.text=i.text,this.newSel=function(t,e){if(0==t.length)return null;let i=t[0].pos,s=2==t.length?t[1].pos:i;return i>-1&&s>-1?l.OF.single(i+e,s+e):null}(e,this.bounds.from)}else{let e=t.observer.selectionRange,i=n&&n.node==e.focusNode&&n.offset==e.focusOffset||!z(t.contentDOM,e.focusNode)?o.main.head:t.docView.posFromDOM(e.focusNode,e.focusOffset),s=r&&r.node==e.anchorNode&&r.offset==e.anchorOffset||!z(t.contentDOM,e.anchorNode)?o.main.anchor:t.docView.posFromDOM(e.anchorNode,e.anchorOffset),h=t.viewport;if((O.ios||O.chrome)&&o.main.empty&&i!=s&&(h.from>0||h.to-1&&o.ranges.length>1)this.newSel=o.replaceRange(l.OF.range(s,i));else if(t.lineWrapping&&s==i&&!(o.main.empty&&o.main.head==i)&&t.inputState.lastTouchTime>Date.now()-100){let e=t.coordsAtPos(i,-1),s=0;e&&(s=t.inputState.lastTouchY<=e.bottom?-1:1),this.newSel=l.OF.create([l.OF.cursor(i,s)])}else this.newSel=l.OF.single(s,i)}}}function eL(t,e){let i,{newSel:s}=e,{state:n}=t,r=n.selection.main,o=t.inputState.lastKeyTime>Date.now()-100?t.inputState.lastKeyCode:-1;if(e.bounds){let{from:t,to:s}=e.bounds,h=r.from,a=null;(8===o||O.android&&e.text.length=t&&r.to<=s&&(e.typeOver||c!=e.text)&&c.slice(0,r.from-t)==e.text.slice(0,r.from-t)&&c.slice(r.to-t)==e.text.slice(u=e.text.length-(c.length-(r.to-t)))?i={from:r.from,to:r.to,insert:l.EY.of(e.text.slice(r.from-t,u).split("￿"))}:(f=eI(c,e.text,h-t,a))&&(O.chrome&&13==o&&f.toB==f.from+2&&"￿￿"==e.text.slice(f.from,f.toB)&&f.toB--,i={from:t+f.from,to:t+f.toA,insert:l.EY.of(e.text.slice(f.from,f.toB).split("￿"))})}else s&&(!t.hasFocus&&n.facet(tV)||eH(s,r))&&(s=null);if(!i&&!s)return!1;if((O.mac||O.android)&&i&&i.from==i.to&&i.from==r.head-1&&/^\. ?$/.test(i.insert.toString())&&"off"==t.contentDOM.getAttribute("autocorrect")?(s&&2==i.insert.length&&(s=l.OF.single(s.main.anchor-1,s.main.head-1)),i={from:i.from,to:i.to,insert:l.EY.of([i.insert.toString().replace("."," ")])}):n.doc.lineAt(r.from).toDate.now()-50?i={from:r.from,to:r.to,insert:n.toText(t.inputState.insertingText)}:O.chrome&&i&&i.from==i.to&&i.from==r.head&&"\n "==i.insert.toString()&&t.lineWrapping&&(s&&(s=l.OF.single(s.main.anchor-1,s.main.head-1)),i={from:r.from,to:r.to,insert:l.EY.of([" "])}),i)return eN(t,i,s,o);if(!s||eH(s,r))return!1;{let e=!1,i="select";return t.inputState.lastSelectionTime>Date.now()-50&&("select"==t.inputState.lastSelectionOrigin&&(e=!0),"select.pointer"==(i=t.inputState.lastSelectionOrigin)&&(s=eM(n.facet(tX).map(e=>e(t)),s))),t.dispatch({selection:s,scrollIntoView:e,userEvent:i}),!0}}function eN(t,e,i,s=-1){let n;if(O.ios&&t.inputState.flushIOSKey(e))return!0;let r=t.state.selection.main;if(O.android&&(e.to==r.to&&(e.from==r.from||e.from==r.from-1&&" "==t.state.sliceDoc(e.from,r.from))&&1==e.insert.length&&2==e.insert.lines&&ts(t.contentDOM,"Enter",13)||(e.from==r.from-1&&e.to==r.to&&0==e.insert.length||8==s&&e.insert.lengthr.head)&&ts(t.contentDOM,"Backspace",8)||e.from==r.from&&e.to==r.to+1&&0==e.insert.length&&ts(t.contentDOM,"Delete",46)))return!0;let o=e.insert.toString();t.inputState.composing>=0&&t.inputState.composing++;let h=()=>n||(n=function(t,e,i){let s,n=t.state,r=n.selection.main,o=-1;if(e.from==e.to&&e.fromr.to){let i=e.frome(t)),s,i);e.from==l&&(o=l)}if(o>-1)s={changes:e,selection:l.OF.cursor(e.from+e.insert.length,-1)};else if(e.from>=r.from&&e.to<=r.to&&e.to-e.from>=(r.to-r.from)/3&&(!i||i.main.empty&&i.main.from==e.from+e.insert.length)&&t.inputState.composing<0){let i=r.frome.to?n.sliceDoc(e.to,r.to):"";s=n.replaceSelection(t.state.toText(i+e.insert.sliceString(0,void 0,t.state.lineBreak)+o))}else{let o=n.changes(e),h=i&&i.main.to<=o.newLength?i.main:void 0;if(n.selection.ranges.length>1&&(t.inputState.composing>=0||t.inputState.compositionPendingChange)&&e.to<=r.to+10&&e.to>=r.to-10){let a=t.state.sliceDoc(e.from,e.to),c,u=i&&eb(t,i.main.head);if(u){let t=e.insert.length-(e.to-e.from);c={from:u.from,to:u.to-t}}else c=t.state.doc.lineAt(r.head);let f=r.to-e.to;s=n.changeByRange(i=>{if(i.from==r.from&&i.to==r.to)return{changes:o,range:h||i.map(o)};let s=i.to-f,u=s-a.length;if(t.state.sliceDoc(u,s)!=a||s>=c.from&&u<=c.to)return{range:i};let d=n.changes({from:u,to:s,insert:e.insert}),p=i.to-r.to;return{changes:d,range:h?l.OF.range(Math.max(0,h.anchor+p),Math.max(0,h.head+p)):i.map(d)}})}else s={changes:o,selection:h&&n.selection.replaceRange(h)}}let h="input.type";return(t.composing||t.inputState.compositionPendingChange&&t.inputState.compositionEndedAt>Date.now()-50)&&(t.inputState.compositionPendingChange=!1,h+=".compose",t.inputState.compositionFirstChange&&(h+=".start",t.inputState.compositionFirstChange=!1)),n.update(s,{userEvent:h,scrollIntoView:!0})}(t,e,i));return t.state.facet(tD).some(i=>i(t,e.from,e.to,o,h))||t.dispatch(h()),!0}function eI(t,e,i,s){let n=Math.min(t.length,e.length),r=0;for(;r0&&l>0&&t.charCodeAt(o-1)==e.charCodeAt(l-1);)o--,l--;if("end"==s){let t=Math.max(0,r-Math.min(o,l));i-=o+t-r}if(o=o?r-i:0;r-=t,l=r+(l-o),o=r}else if(l=l?r-i:0;r-=t,o=r+(o-l),l=r}return{from:r,toA:o,toB:l}}function eH(t,e){return e.head==t.main.head&&e.anchor==t.main.anchor}class eW{setSelectionOrigin(t){this.lastSelectionOrigin=t,this.lastSelectionTime=Date.now()}constructor(t){this.view=t,this.lastKeyCode=0,this.lastKeyTime=0,this.lastTouchTime=0,this.lastTouchX=0,this.lastTouchY=0,this.lastFocusTime=0,this.lastScrollTop=0,this.lastScrollLeft=0,this.lastWheelEvent=0,this.pendingIOSKey=void 0,this.tabFocusMode=-1,this.lastSelectionOrigin=null,this.lastSelectionTime=0,this.lastContextMenu=0,this.scrollHandlers=[],this.handlers=Object.create(null),this.composing=-1,this.compositionFirstChange=null,this.compositionEndedAt=0,this.compositionPendingKey=!1,this.compositionPendingChange=!1,this.insertingText="",this.insertingTextAt=0,this.mouseSelection=null,this.draggedContent=null,this.handleEvent=this.handleEvent.bind(this),this.notifiedFocused=t.hasFocus,O.safari&&t.contentDOM.addEventListener("input",()=>null),O.gecko&&function(t){e9.has(t)||(e9.add(t),t.addEventListener("copy",()=>{}),t.addEventListener("cut",()=>{}))}(t.contentDOM.ownerDocument)}handleEvent(t){!function(t,e){if(!e.bubbles)return!0;if(e.defaultPrevented)return!1;for(let i=e.target,s;i!=t.contentDOM;i=i.parentNode)if(!i||11==i.nodeType||(s=t4.get(i))&&s.isWidget()&&!s.isHidden&&s.widget.ignoreEvent(e))return!1;return!0}(this.view,t)||this.ignoreDuringComposition(t)||"keydown"==t.type&&this.keydown(t)||(0!=this.view.updateState?Promise.resolve().then(()=>this.runHandlers(t.type,t)):this.runHandlers(t.type,t))}runHandlers(t,e){let i=this.handlers[t];if(i){for(let t of i.observers)t(this.view,e);for(let t of i.handlers){if(e.defaultPrevented)break;if(t(this.view,e)){e.preventDefault();break}}}}ensureHandlers(t){let e=function(t){let e=Object.create(null);function i(t){return e[t]||(e[t]={observers:[],handlers:[]})}for(let e of t){let t=e.spec,s=t&&t.plugin.domEventHandlers,n=t&&t.plugin.domEventObservers;if(s)for(let t in s){let n=s[t];n&&i(t).handlers.push(eF(e.value,n))}if(n)for(let t in n){let s=n[t];s&&i(t).observers.push(eF(e.value,s))}}for(let t in eK)i(t).handlers.push(eK[t]);for(let t in eY)i(t).observers.push(eY[t]);return e}(t),i=this.handlers,s=this.view.contentDOM;for(let t in e)if("scroll"!=t){let n=!e[t].handlers.length,r=i[t];r&&!r.handlers.length!=n&&(s.removeEventListener(t,this.handleEvent),r=null),r||s.addEventListener(t,this.handleEvent,{passive:n})}for(let t in i)"scroll"==t||e[t]||s.removeEventListener(t,this.handleEvent);this.handlers=e}keydown(t){let e;return this.lastKeyCode=t.keyCode,this.lastKeyTime=Date.now(),!!(9==t.keyCode&&this.tabFocusMode>-1&&(!this.tabFocusMode||Date.now()<=this.tabFocusMode))||((this.tabFocusMode>0&&27!=t.keyCode&&0>ez.indexOf(t.keyCode)&&(this.tabFocusMode=-1),O.android&&O.chrome&&!t.synthetic&&(13==t.keyCode||8==t.keyCode))?(this.view.observer.delayAndroidKey(t.key,t.keyCode),!0):O.ios&&!t.synthetic&&!t.altKey&&!t.metaKey&&!t.shiftKey&&((e=eV.find(e=>e.keyCode==t.keyCode))&&!t.ctrlKey||e_.indexOf(t.key)>-1&&t.ctrlKey)?(this.pendingIOSKey=e||t,setTimeout(()=>this.flushIOSKey(),250),!0):(229!=t.keyCode&&this.view.observer.forceFlush(),!1))}flushIOSKey(t){let e=this.pendingIOSKey;return!(!e||"Enter"==e.key&&t&&t.from0||!!(O.safari&&!O.ios&&this.compositionPendingKey&&Date.now()-this.compositionEndedAt<100)&&(this.compositionPendingKey=!1,!0))}startMouseSelection(t){this.mouseSelection&&this.mouseSelection.destroy(),this.mouseSelection=t}update(t){this.view.observer.update(t),this.mouseSelection&&this.mouseSelection.update(t),this.draggedContent&&t.docChanged&&(this.draggedContent=this.draggedContent.map(t.changes)),t.transactions.length&&(this.lastKeyCode=this.lastSelectionTime=0)}destroy(){this.mouseSelection&&this.mouseSelection.destroy()}}function eF(t,e){return(i,s)=>{try{return e.call(t,s,i)}catch(t){tF(i.state,t)}}}let eV=[{key:"Backspace",keyCode:8,inputType:"deleteContentBackward"},{key:"Enter",keyCode:13,inputType:"insertParagraph"},{key:"Enter",keyCode:13,inputType:"insertLineBreak"},{key:"Delete",keyCode:46,inputType:"deleteContentForward"}],e_="dthko",ez=[16,17,18,20,91,92,224,225];function ej(t){return .7*Math.max(0,t)+8}class eq{constructor(t,e,i,s){this.view=t,this.startEvent=e,this.style=i,this.mustSelect=s,this.scrollSpeed={x:0,y:0},this.scrolling=-1,this.lastEvent=e,this.scrollParents=Q(t.contentDOM),this.atoms=t.state.facet(tX).map(e=>e(t));let n=t.contentDOM.ownerDocument;n.addEventListener("mousemove",this.move=this.move.bind(this)),n.addEventListener("mouseup",this.up=this.up.bind(this)),this.extend=e.shiftKey,this.multiple=t.state.facet(l.$t.allowMultipleSelections)&&function(t,e){let i=t.state.facet(tC);return i.length?i[0](e):O.mac?e.metaKey:e.ctrlKey}(t,e),this.dragging=!!function(t,e){let{main:i}=t.state.selection;if(i.empty)return!1;let s=_(t.root);if(!s||0==s.rangeCount)return!0;let n=s.getRangeAt(0).getClientRects();for(let t=0;t=e.clientX&&i.top<=e.clientY&&i.bottom>=e.clientY)return!0}return!1}(t,e)&&1==e1(e)&&null}start(t){!1===this.dragging&&this.select(t)}move(t){var e;if(0==t.buttons)return this.destroy();if(this.dragging||null==this.dragging&&10>(e=this.startEvent,Math.max(Math.abs(e.clientX-t.clientX),Math.abs(e.clientY-t.clientY))))return;this.select(this.lastEvent=t);let i=0,s=0,n=0,r=0,o=this.view.win.innerWidth,l=this.view.win.innerHeight;this.scrollParents.x&&({left:n,right:o}=this.scrollParents.x.getBoundingClientRect()),this.scrollParents.y&&({top:r,bottom:l}=this.scrollParents.y.getBoundingClientRect());let h=t0(this.view);t.clientX-h.left<=n+6?i=-ej(n-t.clientX):t.clientX+h.right>=o-6&&(i=ej(t.clientX-o)),t.clientY-h.top<=r+6?s=-ej(r-t.clientY):t.clientY+h.bottom>=l-6&&(s=ej(t.clientY-l)),this.setScrollSpeed(i,s)}up(t){null==this.dragging&&this.select(this.lastEvent),this.dragging||t.preventDefault(),this.destroy()}destroy(){this.setScrollSpeed(0,0);let t=this.view.contentDOM.ownerDocument;t.removeEventListener("mousemove",this.move),t.removeEventListener("mouseup",this.up),this.view.inputState.mouseSelection=this.view.inputState.draggedContent=null}setScrollSpeed(t,e){this.scrollSpeed={x:t,y:e},t||e?this.scrolling<0&&(this.scrolling=setInterval(()=>this.scroll(),50)):this.scrolling>-1&&(clearInterval(this.scrolling),this.scrolling=-1)}scroll(){let{x:t,y:e}=this.scrollSpeed;t&&this.scrollParents.x&&(this.scrollParents.x.scrollLeft+=t,t=0),e&&this.scrollParents.y&&(this.scrollParents.y.scrollTop+=e,e=0),(t||e)&&this.view.win.scrollBy(t,e),!1===this.dragging&&this.select(this.lastEvent)}select(t){let{view:e}=this,i=eM(this.atoms,this.style.get(t,this.extend,this.multiple));(this.mustSelect||!i.eq(e.state.selection,!1===this.dragging))&&this.view.dispatch({selection:i,userEvent:"select.pointer"}),this.mustSelect=!1}update(t){t.transactions.some(t=>t.isUserEvent("input.type"))?this.destroy():this.style.update(t)&&setTimeout(()=>this.select(this.lastEvent),20)}}let eK=Object.create(null),eY=Object.create(null),e$=O.ie&&O.ie_version<15||O.ios&&O.webkit_version<604;function eU(t,e,i){for(let s of t.facet(e))i=s(i,t);return i}function eG(t,e){e=eU(t.state,tB,e);let{state:i}=t,s,n=1,r=i.toText(e),o=r.lines==i.selection.ranges.length;if(null!=e3&&i.selection.ranges.every(t=>t.empty)&&e3==r.toString()){let t=-1;s=i.changeByRange(s=>{let h=i.doc.lineAt(s.from);if(h.from==t)return{range:s};t=h.from;let a=i.toText((o?r.line(n++).text:e)+i.lineBreak);return{changes:{from:h.from,insert:a},range:l.OF.cursor(s.from+a.length)}})}else s=o?i.changeByRange(t=>{let e=r.line(n++);return{changes:{from:t.from,to:t.to,insert:e.text},range:l.OF.cursor(t.from+e.length)}}):i.replaceSelection(r);t.dispatch(s,{userEvent:"input.paste",scrollIntoView:!0})}function eX(t,e,i,s){if(1==s)return l.OF.cursor(e,i);{if(2==s)return function(t,e,i=1){let s=t.charCategorizer(e),n=t.doc.lineAt(e),r=e-n.from;if(0==n.length)return l.OF.cursor(e);0==r?i=1:r==n.length&&(i=-1);let o=r,h=r;i<0?o=(0,l.zK)(n.text,r,!1):h=(0,l.zK)(n.text,r);let a=s(n.text.slice(o,h));for(;o>0;){let t=(0,l.zK)(n.text,o,!1);if(s(n.text.slice(t,o))!=a)break;o=t}for(;h{t.inputState.lastScrollTop=t.scrollDOM.scrollTop,t.inputState.lastScrollLeft=t.scrollDOM.scrollLeft},eY.wheel=eY.mousewheel=t=>{t.inputState.lastWheelEvent=Date.now()},eK.keydown=(t,e)=>(t.inputState.setSelectionOrigin("select"),27==e.keyCode&&0!=t.inputState.tabFocusMode&&(t.inputState.tabFocusMode=Date.now()+2e3),!1),eY.touchstart=(t,e)=>{let i=t.inputState,s=e.targetTouches[0];i.lastTouchTime=Date.now(),s&&(i.lastTouchX=s.clientX,i.lastTouchY=s.clientY),i.setSelectionOrigin("select.pointer")},eY.touchmove=t=>{t.inputState.setSelectionOrigin("select.pointer")},eK.mousedown=(t,e)=>{var i,s;let n,r,o;if(t.observer.flush(),t.inputState.lastTouchTime>Date.now()-2e3)return!1;let h=null;for(let i of t.state.facet(tM))if(h=i(t,e))break;if(h||0!=e.button||(i=t,s=e,n=i.posAndSideAtCoords({x:s.clientX,y:s.clientY},!1),r=e1(s),o=i.state.selection,h={update(t){t.docChanged&&(n.pos=t.changes.mapPos(n.pos),o=o.map(t.changes))},get(t,e,s){let h=i.posAndSideAtCoords({x:t.clientX,y:t.clientY},!1),a,c=eX(i,h.pos,h.assoc,r);if(n.pos!=h.pos&&!e){let t=eX(i,n.pos,n.assoc,r),e=Math.min(t.from,c.from),s=Math.max(t.to,c.to);c=e1&&(a=function(t,e){for(let i=0;i=e)return l.OF.create(t.ranges.slice(0,i).concat(t.ranges.slice(i+1)),t.mainIndex==i?0:t.mainIndex-(t.mainIndex>i))}return null}(o,h.pos))?a:s?o.addRange(c):l.OF.create([c])}}),h){let i=!t.hasFocus;t.inputState.startMouseSelection(new eq(t,e,h,i)),i&&t.observer.ignore(()=>{te(t.contentDOM);let e=t.root.activeElement;e&&!e.contains(t.contentDOM)&&e.blur()});let s=t.inputState.mouseSelection;if(s)return s.start(e),!1===s.dragging}else t.inputState.setSelectionOrigin("select.pointer");return!1};let eJ=O.ie&&O.ie_version<=11,eQ=null,eZ=0,e0=0;function e1(t){if(!eJ)return t.detail;let e=eQ,i=e0;return eQ=t,e0=Date.now(),eZ=!e||i>Date.now()-400&&2>Math.abs(e.clientX-t.clientX)&&2>Math.abs(e.clientY-t.clientY)?(eZ+1)%3:1}function e2(t,e,i,s){let n;if(!(i=eU(t.state,tB,i)))return;let r=t.posAtCoords({x:e.clientX,y:e.clientY},!1),{draggedContent:o}=t.inputState,l=s&&o&&((n=t.state.facet(tA)).length?n[0](e):O.mac?!e.altKey:!e.ctrlKey)?{from:o.from,to:o.to}:null,h={from:r,insert:i},a=t.state.changes(l?[l,h]:h);t.focus(),t.dispatch({changes:a,selection:{anchor:a.mapPos(r,-1),head:a.mapPos(r,1)},userEvent:l?"move.drop":"input.drop"}),t.inputState.draggedContent=null}eK.dragstart=(t,e)=>{let{selection:{main:i}}=t.state;if(e.target.draggable){let s=t.docView.tile.nearest(e.target);if(s&&s.isWidget()){let t=s.posAtStart,e=t+s.length;(t>=i.to||e<=i.from)&&(i=l.OF.range(t,e))}}let{inputState:s}=t;return s.mouseSelection&&(s.mouseSelection.dragging=!0),s.draggedContent=i,e.dataTransfer&&(e.dataTransfer.setData("Text",eU(t.state,tR,t.state.sliceDoc(i.from,i.to))),e.dataTransfer.effectAllowed="copyMove"),!1},eK.dragend=t=>(t.inputState.draggedContent=null,!1),eK.drop=(t,e)=>{if(!e.dataTransfer)return!1;if(t.state.readOnly)return!0;let i=e.dataTransfer.files;if(i&&i.length){let s=Array(i.length),n=0,r=()=>{++n==i.length&&e2(t,e,s.filter(t=>null!=t).join(t.state.lineBreak),!1)};for(let t=0;t{/[\x00-\x08\x0e-\x1f]{2}/.test(e.result)||(s[t]=e.result),r()},e.readAsText(i[t])}return!0}{let i=e.dataTransfer.getData("Text");if(i)return e2(t,e,i,!0),!0}return!1},eK.paste=(t,e)=>{if(t.state.readOnly)return!0;t.observer.flush();let i=e$?null:e.clipboardData;return i?(eG(t,i.getData("text/plain")||i.getData("text/uri-list")),!0):(!function(t){let e=t.dom.parentNode;if(!e)return;let i=e.appendChild(document.createElement("textarea"));i.style.cssText="position: fixed; left: -10000px; top: 10px",i.focus(),setTimeout(()=>{t.focus(),i.remove(),eG(t,i.value)},50)}(t),!1)};let e3=null;eK.copy=eK.cut=(t,e)=>{if(!j(t.contentDOM,t.observer.selectionRange))return!1;let{text:i,ranges:s,linewise:n}=function(t){let e=[],i=[],s=!1;for(let s of t.selection.ranges)s.empty||(e.push(t.sliceDoc(s.from,s.to)),i.push(s));if(!e.length){let n=-1;for(let{from:s}of t.selection.ranges){let r=t.doc.lineAt(s);r.number>n&&(e.push(r.text),i.push({from:r.from,to:Math.min(t.doc.length,r.to+1)})),n=r.number}s=!0}return{text:eU(t,tR,e.join(t.lineBreak)),ranges:i,linewise:s}}(t.state);if(!i&&!n)return!1;e3=n?i:null,"cut"!=e.type||t.state.readOnly||t.dispatch({changes:s,scrollIntoView:!0,userEvent:"delete.cut"});let r=e$?null:e.clipboardData;return r?(r.clearData(),r.setData("text/plain",i),!0):(!function(t,e){let i=t.dom.parentNode;if(!i)return;let s=i.appendChild(document.createElement("textarea"));s.style.cssText="position: fixed; left: -10000px; top: 10px",s.value=e,s.focus(),s.selectionEnd=e.length,s.selectionStart=0,setTimeout(()=>{s.remove(),t.focus()},50)}(t,i),!1)};let e8=l.YH.define();function e4(t,e){let i=[];for(let s of t.facet(tE)){let n=s(t,e);n&&i.push(n)}return i.length?t.update({effects:i,annotations:e8.of(!0)}):null}function e5(t){setTimeout(()=>{let e=t.hasFocus;if(e!=t.inputState.notifiedFocused){let i=e4(t.state,e);i?t.dispatch(i):t.update([])}},10)}eY.focus=t=>{t.inputState.lastFocusTime=Date.now(),!t.scrollDOM.scrollTop&&(t.inputState.lastScrollTop||t.inputState.lastScrollLeft)&&(t.scrollDOM.scrollTop=t.inputState.lastScrollTop,t.scrollDOM.scrollLeft=t.inputState.lastScrollLeft),e5(t)},eY.blur=t=>{t.observer.clearSelectionRange(),e5(t)},eY.compositionstart=eY.compositionupdate=t=>{!t.observer.editContext&&(null==t.inputState.compositionFirstChange&&(t.inputState.compositionFirstChange=!0),t.inputState.composing<0&&(t.inputState.composing=0))},eY.compositionend=t=>{t.observer.editContext||(t.inputState.composing=-1,t.inputState.compositionEndedAt=Date.now(),t.inputState.compositionPendingKey=!0,t.inputState.compositionPendingChange=t.observer.pendingRecords().length>0,t.inputState.compositionFirstChange=null,O.chrome&&O.android?t.observer.flushSoon():t.inputState.compositionPendingChange?Promise.resolve().then(()=>t.observer.flush()):setTimeout(()=>{t.inputState.composing<0&&t.docView.hasComposition&&t.update([])},50))},eY.contextmenu=t=>{t.inputState.lastContextMenu=Date.now()},eK.beforeinput=(t,e)=>{var i,s;let n;if(("insertText"==e.inputType||"insertCompositionText"==e.inputType)&&(t.inputState.insertingText=e.data,t.inputState.insertingTextAt=Date.now()),"insertReplacementText"==e.inputType&&t.observer.editContext){let s=null==(i=e.dataTransfer)?void 0:i.getData("text/plain"),n=e.getTargetRanges();if(s&&n.length){let e=n[0],i=t.posAtDOM(e.startContainer,e.startOffset),r=t.posAtDOM(e.endContainer,e.endOffset);return eN(t,{from:i,to:r,insert:t.state.toText(s)},null),!0}}if(O.chrome&&O.android&&(n=eV.find(t=>t.inputType==e.inputType))&&(t.observer.delayAndroidKey(n.key,n.keyCode),"Backspace"==n.key||"Delete"==n.key)){let e=(null==(s=window.visualViewport)?void 0:s.height)||0;setTimeout(()=>{var i;((null==(i=window.visualViewport)?void 0:i.height)||0)>e+10&&t.hasFocus&&(t.contentDOM.blur(),t.focus())},100)}return O.ios&&"deleteContentForward"==e.inputType&&t.observer.flushSoon(),O.safari&&"insertText"==e.inputType&&t.inputState.composing>=0&&setTimeout(()=>eY.compositionend(t,e),20),!1};let e9=new Set,e6=["pre-wrap","normal","pre-line","break-spaces"],e7=!1;function it(){e7=!1}class ie{constructor(t){this.lineWrapping=t,this.doc=l.EY.empty,this.heightSamples={},this.lineHeight=14,this.charWidth=7,this.textHeight=14,this.lineLength=30}heightForGap(t,e){let i=this.doc.lineAt(e).number-this.doc.lineAt(t).number+1;return this.lineWrapping&&(i+=Math.max(0,Math.ceil((e-t-i*this.lineLength*.5)/this.lineLength))),this.lineHeight*i}heightForLine(t){return this.lineWrapping?(1+Math.max(0,Math.ceil((t-this.lineLength)/Math.max(1,this.lineLength-5))))*this.lineHeight:this.lineHeight}setDoc(t){return this.doc=t,this}mustRefreshForWrapping(t){return e6.indexOf(t)>-1!=this.lineWrapping}mustRefreshForHeights(t){let e=!1;for(let i=0;i-1,l=Math.abs(e-this.lineHeight)>.3||this.lineWrapping!=o||Math.abs(i-this.charWidth)>.1;if(this.lineWrapping=o,this.lineHeight=e,this.charWidth=i,this.textHeight=s,this.lineLength=n,l){this.heightSamples={};for(let t=0;t0}set outdated(t){this.flags=2*!!t|-3&this.flags}setHeight(t){this.height!=t&&(Math.abs(this.height-t)>.001&&(e7=!0),this.height=t)}replace(t,e,i){return io.of(i)}decomposeLeft(t,e){e.push(this)}decomposeRight(t,e){e.push(this)}applyChanges(t,e,i,s){let n=this,r=i.doc;for(let o=s.length-1;o>=0;o--){let{fromA:l,toA:h,fromB:a,toB:c}=s[o],u=n.lineAt(l,ir.ByPosNoHeight,i.setDoc(e),0,0),f=u.to>=h?u:n.lineAt(h,ir.ByPosNoHeight,i,0,0);for(c+=f.to-h,h=f.to;o>0&&u.from<=s[o-1].toA;)l=s[o-1].fromA,a=s[o-1].fromB,o--,l2*n){let n=t[e-1];n.break?t.splice(--e,1,n.left,null,n.right):t.splice(--e,1,n.left,n.right),i+=1+n.break,s-=n.size}else if(n>2*s){let e=t[i];e.break?t.splice(i,1,e.left,null,e.right):t.splice(i,1,e.left,e.right),i+=2+e.break,n-=e.size}else break;else if(s=n&&r(this.lineAt(0,ir.ByPos,i,s,n))}setMeasuredHeight(t){let e=t.heights[t.index++];e<0?(this.spaceAbove=-e,e=t.heights[t.index++]):this.spaceAbove=0,this.setHeight(e)}updateHeight(t,e=0,i=!1,s){return s&&s.from<=e&&s.more&&this.setMeasuredHeight(s),this.outdated=!1,this}toString(){return`block(${this.length})`}}class ic extends ia{constructor(t,e,i){super(t,e,null),this.collapsed=0,this.widgetHeight=0,this.breaks=0,this.spaceAbove=i}mainBlock(t,e){return new is(e,this.length,t+this.spaceAbove,this.height-this.spaceAbove,this.breaks)}replace(t,e,i){let s=i[0];return 1==i.length&&(s instanceof ic||s instanceof iu&&4&s.flags)&&10>Math.abs(this.length-s.length)?(s instanceof iu?s=new ic(s.length,this.height,this.spaceAbove):s.height=this.height,this.outdated||(s.outdated=!1),s):io.of(i)}updateHeight(t,e=0,i=!1,s){return s&&s.from<=e&&s.more?this.setMeasuredHeight(s):(i||this.outdated)&&(this.spaceAbove=0,this.setHeight(Math.max(this.widgetHeight,t.heightForLine(this.length-this.collapsed))+this.breaks*t.lineHeight)),this.outdated=!1,this}toString(){return`line(${this.length}${this.collapsed?-this.collapsed:""}${this.widgetHeight?":"+this.widgetHeight:""})`}}class iu extends io{constructor(t){super(t,0)}heightMetrics(t,e){let i=t.doc.lineAt(e).number,s=t.doc.lineAt(e+this.length).number,n=s-i+1,r,o=0;if(t.lineWrapping){let e=Math.min(this.height,t.lineHeight*n);r=e/n,this.length>n+1&&(o=(this.height-e)/(this.length-n-1))}else r=this.height/n;return{firstLine:i,lastLine:s,perLine:r,perChar:o}}blockAt(t,e,i,s){let{firstLine:n,lastLine:r,perLine:o,perChar:l}=this.heightMetrics(e,s);if(e.lineWrapping){let n=s+(t0){let t=i[i.length-1];t instanceof iu?i[i.length-1]=new iu(t.length+s):i.push(null,new iu(s-1))}if(t>0){let e=i[0];e instanceof iu?i[0]=new iu(t+e.length):i.unshift(new iu(t-1),null)}return io.of(i)}decomposeLeft(t,e){e.push(new iu(t-1),null)}decomposeRight(t,e){e.push(null,new iu(this.length-t-1))}updateHeight(t,e=0,i=!1,s){let n=e+this.length;if(s&&s.from<=e+this.length&&s.more){let i=[],r=Math.max(e,s.from),o=-1;for(s.from>e&&i.push(new iu(s.from-e-1).updateHeight(t,e));r<=n&&s.more;){let e=t.doc.lineAt(r).length;i.length&&i.push(null);let n=s.heights[s.index++],l=0;n<0&&(l=-n,n=s.heights[s.index++]),-1==o?o=n:Math.abs(n-o)>=.001&&(o=-2);let h=new ic(e,n,l);h.outdated=!1,i.push(h),r+=e+1}r<=n&&i.push(null,new iu(n-r).updateHeight(t,r));let l=io.of(i);return(o<0||Math.abs(l.height-this.height)>=.001||Math.abs(o-this.heightMetrics(t,e).perLine)>=.001)&&(e7=!0),il(this,l)}return(i||this.outdated)&&(this.setHeight(t.heightForGap(e,e+this.length)),this.outdated=!1),this}toString(){return`gap(${this.length})`}}class id extends io{constructor(t,e,i){super(t.length+e+i.length,t.height+i.height,e|(t.outdated||i.outdated?2:0)),this.left=t,this.right=i,this.size=t.size+i.size}get break(){return 1&this.flags}blockAt(t,e,i,s){let n=i+this.left.height;return to))return h;let a=e==ir.ByPosNoHeight?ir.ByPosNoHeight:ir.ByPos;return l?h.join(this.right.lineAt(o,a,i,r,o)):this.left.lineAt(o,a,i,s,n).join(h)}forEachLine(t,e,i,s,n,r){let o=s+this.left.height,l=n+this.left.length+this.break;if(this.break)t=l&&this.right.forEachLine(t,e,i,o,l,r);else{let h=this.lineAt(l,ir.ByPos,i,s,n);t=t&&h.from<=e&&r(h),e>h.to&&this.right.forEachLine(h.to+1,e,i,o,l,r)}}replace(t,e,i){let s=this.left.length+this.break;if(ethis.left.length)return this.balanced(this.left,this.right.replace(t-s,e-s,i));let n=[];t>0&&this.decomposeLeft(t,n);let r=n.length;for(let t of i)n.push(t);if(t>0&&ip(n,r-1),e=++i&&e.push(null),t>i&&this.right.decomposeLeft(t-i,e)}decomposeRight(t,e){let i=this.left.length,s=i+this.break;if(t>=s)return this.right.decomposeRight(t-s,e);t2*e.size||e.size>2*t.size?io.of(this.break?[t,null,e]:[t,e]):(this.left=il(this.left,t),this.right=il(this.right,e),this.setHeight(t.height+e.height),this.outdated=t.outdated||e.outdated,this.size=t.size+e.size,this.length=t.length+this.break+e.length,this)}updateHeight(t,e=0,i=!1,s){let{left:n,right:r}=this,o=e+n.length+this.break,l=null;return(s&&s.from<=e+n.length&&s.more?l=n=n.updateHeight(t,e,i,s):n.updateHeight(t,e,i),s&&s.from<=o+r.length&&s.more?l=r=r.updateHeight(t,o,i,s):r.updateHeight(t,o,i),l)?this.balanced(n,r):(this.height=this.left.height+this.right.height,this.outdated=!1,this)}toString(){return this.left+(this.break?" ":"-")+this.right}}function ip(t,e){let i,s;null==t[e]&&(i=t[e-1])instanceof iu&&(s=t[e+1])instanceof iu&&t.splice(e-1,3,new iu(i.length+1+s.length))}class ig{constructor(t,e){this.pos=t,this.oracle=e,this.nodes=[],this.lineStart=-1,this.lineEnd=-1,this.covering=null,this.writtenTo=t}get isCovered(){return this.covering&&this.nodes[this.nodes.length-1]==this.covering}span(t,e){if(this.lineStart>-1){let t=Math.min(e,this.lineEnd),i=this.nodes[this.nodes.length-1];i instanceof ic?i.length+=t-this.pos:(t>this.pos||!this.isCovered)&&this.nodes.push(new ic(t-this.pos,-1,0)),this.writtenTo=t,e>t&&(this.nodes.push(null),this.writtenTo++,this.lineStart=-1)}this.pos=e}point(t,e,i){if(t=5)&&this.addLineDeco(s,n,r)}else e>t&&this.span(t,e);this.lineEnd>-1&&this.lineEnd-1)return;let{from:t,to:e}=this.oracle.doc.lineAt(this.pos);this.lineStart=t,this.lineEnd=e,this.writtenTot&&this.nodes.push(new ic(this.pos-t,-1,0)),this.writtenTo=this.pos}blankContent(t,e){let i=new iu(e-t);return this.oracle.doc.lineAt(t).to==e&&(i.flags|=4),i}ensureLine(){this.enterLine();let t=this.nodes.length?this.nodes[this.nodes.length-1]:null;if(t instanceof ic)return t;let e=new ic(0,-1,0);return this.nodes.push(e),e}addBlock(t){this.enterLine();let e=t.deco;e&&e.startSide>0&&!this.isCovered&&this.ensureLine(),this.nodes.push(t),this.writtenTo=this.pos=this.pos+t.length,e&&e.endSide>0&&(this.covering=t)}addLineDeco(t,e,i){let s=this.ensureLine();s.length+=i,s.collapsed+=i,s.widgetHeight=Math.max(s.widgetHeight,t),s.breaks+=e,this.writtenTo=this.pos=this.pos+i}finish(t){let e=0==this.nodes.length?null:this.nodes[this.nodes.length-1];!(this.lineStart>-1)||e instanceof ic||this.isCovered?(this.writtenTo"function"!=typeof t&&"cm-lineWrapping"==t.class);this.heightOracle=new ie(i),this.stateDeco=iC(e),this.heightMap=io.empty().applyChanges(this.stateDeco,l.EY.empty,this.heightOracle.setDoc(e.doc),[new t2(0,0,0,e.doc.length)]);for(let t=0;t<2&&(this.viewport=this.getViewport(0,null),this.updateForViewport());t++);this.updateViewportLines(),this.lineGaps=this.ensureLineGaps([]),this.lineGapDeco=L.set(this.lineGaps.map(t=>t.draw(this,!1))),this.scrollParent=t.scrollDOM,this.computeVisibleRanges()}updateForViewport(){let t=[this.viewport],{main:e}=this.state.selection;for(let i=0;i<=1;i++){let s=i?e.head:e.anchor;if(!t.some(({from:t,to:e})=>s>=t&&s<=e)){let{from:e,to:i}=this.lineBlockAt(s);t.push(new iy(e,i))}}return this.viewports=t.sort((t,e)=>t.from-e.from),this.updateScaler()}updateScaler(){let t=this.scaler;return this.scaler=this.heightMap.height<=7e6?iS:new iA(this.heightOracle,this.heightMap,this.viewports),2*!t.eq(this.scaler)}updateViewportLines(){this.viewportLines=[],this.heightMap.forEachLine(this.viewport.from,this.viewport.to,this.heightOracle.setDoc(this.state.doc),0,0,t=>{this.viewportLines.push(iM(t,this.scaler))})}update(t,e=null){var i,s;let n;this.state=t.state;let r=this.stateDeco;this.stateDeco=iC(this.state);let o=t.changedRanges,h=t2.extendWithRanges(o,(i=this.stateDeco,s=t?t.changes:l.VR.empty(this.state.doc.length),n=new im,l.om.compare(r,i,s,n,0),n.changes)),a=this.heightMap.height,c=this.scrolledToBottom?null:this.scrollAnchorAt(this.scrollOffset);it(),this.heightMap=this.heightMap.applyChanges(this.stateDeco,t.startState.doc,this.heightOracle.setDoc(this.state.doc),h),(this.heightMap.height!=a||e7)&&(t.flags|=2),c?(this.scrollAnchorPos=t.changes.mapPos(c.from,-1),this.scrollAnchorHeight=c.top):(this.scrollAnchorPos=-1,this.scrollAnchorHeight=a);let u=h.length?this.mapViewport(this.viewport,t.changes):this.viewport;(e&&(e.range.headu.to)||!this.viewportIsAppropriate(u))&&(u=this.getViewport(0,e));let f=u.from!=this.viewport.from||u.to!=this.viewport.to;this.viewport=u,t.flags|=this.updateForViewport(),(f||!t.changes.empty||2&t.flags)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(this.mapLineGaps(this.lineGaps,t.changes))),t.flags|=this.computeVisibleRanges(t.changes),e&&(this.scrollTarget=e),!this.mustEnforceCursorAssoc&&(t.selectionSet||t.focusChanged)&&t.view.lineWrapping&&t.state.selection.main.empty&&t.state.selection.main.assoc&&!t.state.facet(tL)&&(this.mustEnforceCursorAssoc=!0)}measure(){var t;let e,i,{view:s}=this,n=s.contentDOM,r=window.getComputedStyle(n),o=this.heightOracle,h=r.whiteSpace;this.defaultTextDirection="rtl"==r.direction?th.RTL:th.LTR;let a=this.heightOracle.mustRefreshForWrapping(h)||"refresh"===this.mustMeasureContent,c=n.getBoundingClientRect(),u=a||this.mustMeasureContent||this.contentDOMHeight!=c.height;this.contentDOMHeight=c.height,this.mustMeasureContent=!1;let f=0,d=0;if(c.width&&c.height){let{scaleX:t,scaleY:e}=J(n,c);(t>.005&&Math.abs(this.scaleX-t)>.005||e>.005&&Math.abs(this.scaleY-e)>.005)&&(this.scaleX=t,this.scaleY=e,f|=16,a=u=!0)}let p=(parseInt(r.paddingTop)||0)*this.scaleY,g=(parseInt(r.paddingBottom)||0)*this.scaleY;(this.paddingTop!=p||this.paddingBottom!=g)&&(this.paddingTop=p,this.paddingBottom=g,f|=18),this.editorWidth!=s.scrollDOM.clientWidth&&(o.lineWrapping&&(u=!0),this.editorWidth=s.scrollDOM.clientWidth,f|=16);let m=Q(this.view.contentDOM,!1).y;m!=this.scrollParent&&(this.scrollParent=m,this.scrollAnchorHeight=-1,this.scrollOffset=0);let v=this.getScrollOffset();this.scrollOffset!=v&&(this.scrollAnchorHeight=-1,this.scrollOffset=v),this.scrolledToBottom=tn(this.scrollParent||s.win);let w=(this.printing?function(t,e){let i=t.getBoundingClientRect();return{left:0,right:i.right-i.left,top:e,bottom:i.bottom-(i.top+e)}}:function(t,e){let i=t.getBoundingClientRect(),s=t.ownerDocument,n=s.defaultView||window,r=Math.max(0,i.left),o=Math.min(n.innerWidth,i.right),l=Math.max(0,i.top),h=Math.min(n.innerHeight,i.bottom);for(let e=t.parentNode;e&&e!=s.body;)if(1==e.nodeType){let i=e,s=window.getComputedStyle(i);if((i.scrollHeight>i.clientHeight||i.scrollWidth>i.clientWidth)&&"visible"!=s.overflow){let s=i.getBoundingClientRect();r=Math.max(r,s.left),o=Math.min(o,s.right),l=Math.max(l,s.top),h=Math.min(e==t.parentNode?n.innerHeight:h,s.bottom)}e="absolute"==s.position||"fixed"==s.position?i.offsetParent:i.parentNode}else if(11==e.nodeType)e=e.host;else break;return{left:r-i.left,right:Math.max(r,o)-i.left,top:l-(i.top+e),bottom:Math.max(l,h)-(i.top+e)}})(n,this.paddingTop),b=w.top-this.pixelViewport.top,y=w.bottom-this.pixelViewport.bottom;this.pixelViewport=w;let x=this.pixelViewport.bottom>this.pixelViewport.top&&this.pixelViewport.right>this.pixelViewport.left;if(x!=this.inView&&(this.inView=x,x&&(u=!0)),!this.inView&&!this.scrollTarget&&(e=(t=s.dom).getBoundingClientRect(),i=t.ownerDocument.defaultView||window,!(e.left0)||!(e.top0)))return 0;let k=c.width;if((this.contentDOMWidth!=k||this.editorHeight!=s.scrollDOM.clientHeight)&&(this.contentDOMWidth=c.width,this.editorHeight=s.scrollDOM.clientHeight,f|=16),u){let t=s.docView.measureVisibleLineHeights(this.viewport);if(o.mustRefreshForHeights(t)&&(a=!0),a||o.lineWrapping&&Math.abs(k-this.contentDOMWidth)>o.charWidth){let{lineHeight:e,charWidth:i,textHeight:n}=s.docView.measureTextSize();(a=e>0&&o.refresh(h,e,i,n,Math.max(5,k/i),t))&&(s.docView.minWidth=0,f|=16)}for(let e of(b>0&&y>0?d=Math.max(b,y):b<0&&y<0&&(d=Math.min(b,y)),it(),this.viewports)){let i=e.from==this.viewport.from?t:s.docView.measureVisibleLineHeights(e);this.heightMap=(a?io.empty().applyChanges(this.stateDeco,l.EY.empty,this.heightOracle,[new t2(0,0,0,s.state.doc.length)]):this.heightMap).updateHeight(o,0,a,new ii(e.from,i))}e7&&(f|=2)}let S=!this.viewportIsAppropriate(this.viewport,d)||this.scrollTarget&&(this.scrollTarget.range.headthis.viewport.to);return S&&(2&f&&(f|=this.updateScaler()),this.viewport=this.getViewport(d,this.scrollTarget),f|=this.updateForViewport()),(2&f||S)&&this.updateViewportLines(),(this.lineGaps.length||this.viewport.to-this.viewport.from>4e3)&&this.updateLineGaps(this.ensureLineGaps(a?[]:this.lineGaps,s)),f|=this.computeVisibleRanges(),this.mustEnforceCursorAssoc&&(this.mustEnforceCursorAssoc=!1,s.docView.enforceCursorAssoc()),f}get visibleTop(){return this.scaler.fromDOM(this.pixelViewport.top)}get visibleBottom(){return this.scaler.fromDOM(this.pixelViewport.bottom)}getViewport(t,e){let i=.5-Math.max(-.5,Math.min(.5,t/1e3/2)),s=this.heightMap,n=this.heightOracle,{visibleTop:r,visibleBottom:o}=this,l=new iy(s.lineAt(r-1e3*i,ir.ByHeight,n,0,0).from,s.lineAt(o+(1-i)*1e3,ir.ByHeight,n,0,0).to);if(e){let{head:t}=e.range;if(tl.to){let i=Math.min(this.editorHeight,this.pixelViewport.bottom-this.pixelViewport.top),r=s.lineAt(t,ir.ByPos,n,0,0),o;o="center"==e.y?(r.top+r.bottom)/2-i/2:"start"==e.y||"nearest"==e.y&&t=o+Math.max(10,Math.min(i,250)))&&s>r-2e3&&n>1,r=s<<1;if(this.defaultTextDirection!=th.LTR&&!i)return[];let o=[],h=(s,r,a,c)=>{if(r-ss&&tt.from>=a.from&&t.to<=a.to&&Math.abs(t.from-s)t.frome));if(!d){if(rt.from<=r&&t.to>=r)){let t=e.moveToLineBoundary(l.OF.cursor(r),!1,!0).head;t>s&&(r=t)}let t=this.gapSize(a,s,r,c),n=i||t<2e6?t:2e6;d=new iv(s,r,t,n)}o.push(d)},a=e=>{var n,o,a;let c,u,f,d,p;if(e.lengthd&&(f.push({from:d,to:t}),p+=t-d),d=e}},20),d2e6)for(let i of t)i.from>=e.from&&i.frome.from&&h(e.from,c,e,g),ut.draw(this,this.heightOracle.lineWrapping))))}computeVisibleRanges(t){let e=this.stateDeco;this.lineGaps.length&&(e=e.concat(this.lineGapDeco));let i=[];l.om.spans(e,this.viewport.from,this.viewport.to,{span(t,e){i.push({from:t,to:e})},point(){}},20);let s=0;if(i.length!=this.visibleRanges.length)s=12;else for(let e=0;e=this.viewport.from&&t<=this.viewport.to&&this.viewportLines.find(e=>e.from<=t&&e.to>=t)||iM(this.heightMap.lineAt(t,ir.ByPos,this.heightOracle,0,0),this.scaler)}lineBlockAtHeight(t){return t>=this.viewportLines[0].top&&t<=this.viewportLines[this.viewportLines.length-1].bottom&&this.viewportLines.find(e=>e.top<=t&&e.bottom>=t)||iM(this.heightMap.lineAt(this.scaler.fromDOM(t),ir.ByHeight,this.heightOracle,0,0),this.scaler)}getScrollOffset(){return(this.scrollParent==this.view.scrollDOM?this.scrollParent.scrollTop:(this.scrollParent?this.scrollParent.getBoundingClientRect().top:0)-this.view.contentDOM.getBoundingClientRect().top)*this.scaleY}scrollAnchorAt(t){let e=this.lineBlockAtHeight(t+8);return e.from>=this.viewport.from||this.viewportLines[0].top-t>200?e:this.viewportLines[0]}elementAtHeight(t){return iM(this.heightMap.blockAt(this.scaler.fromDOM(t),this.heightOracle,0,0),this.scaler)}get docHeight(){return this.scaler.toDOM(this.heightMap.height)}get contentHeight(){return this.docHeight+this.paddingTop+this.paddingBottom}}class iy{constructor(t,e){this.from=t,this.to=e}}function ix({total:t,ranges:e},i){if(i<=0)return e[0].from;if(i>=1)return e[e.length-1].to;let s=Math.floor(t*i);for(let t=0;;t++){let{from:i,to:n}=e[t],r=n-i;if(s<=r)return i+s;s-=r}}function ik(t,e){let i=0;for(let{from:s,to:n}of t.ranges){if(e<=n){i+=e-s;break}i+=n-s}return i/t.total}let iS={toDOM:t=>t,fromDOM:t=>t,scale:1,eq(t){return t==this}};function iC(t){let e=t.facet(t$).filter(t=>"function"!=typeof t),i=t.facet(tG).filter(t=>"function"!=typeof t);return i.length&&e.push(l.om.join(i)),e}class iA{constructor(t,e,i){let s=0,n=0,r=0;for(let o of(this.viewports=i.map(({from:i,to:n})=>{let r=e.lineAt(i,ir.ByPos,t,0,0).top,o=e.lineAt(n,ir.ByPos,t,0,0).bottom;return s+=o-r,{from:i,to:n,top:r,bottom:o,domTop:0,domBottom:0}}),this.scale=(7e6-s)/(e.height-s),this.viewports))o.domTop=r+(o.top-n)*this.scale,r=o.domBottom=o.domTop+(o.bottom-o.top),n=o.bottom}toDOM(t){for(let e=0,i=0,s=0;;e++){let n=ee.from==t.viewports[i].from&&e.to==t.viewports[i].to)}}function iM(t,e){if(1==e.scale)return t;let i=e.toDOM(t.top),s=e.toDOM(t.bottom);return new is(t.from,t.length,i,s-i,Array.isArray(t._content)?t._content.map(t=>iM(t,e)):t._content)}let iO=l.sj.define({combine:t=>t.join(" ")}),iT=l.sj.define({combine:t=>t.indexOf(!0)>-1}),iD=h.G.newName(),iE=h.G.newName(),iB=h.G.newName(),iR={"&light":"."+iE,"&dark":"."+iB};function iP(t,e,i){return new h.G(e,{finish:e=>/&/.test(e)?e.replace(/&\w*/,e=>{if("&"==e)return t;if(!i||!i[e])throw RangeError(`Unsupported selector: ${e}`);return i[e]}):t+" "+e})}let iL=iP("."+iD,{"&":{position:"relative !important",boxSizing:"border-box","&.cm-focused":{outline:"1px dotted #212121"},display:"flex !important",flexDirection:"column"},".cm-scroller":{display:"flex !important",alignItems:"flex-start !important",fontFamily:"monospace",lineHeight:1.4,height:"100%",overflowX:"auto",position:"relative",zIndex:0,overflowAnchor:"none"},".cm-content":{margin:0,flexGrow:2,flexShrink:0,display:"block",whiteSpace:"pre",wordWrap:"normal",boxSizing:"border-box",minHeight:"100%",padding:"4px 0",outline:"none","&[contenteditable=true]":{WebkitUserModify:"read-write-plaintext-only"}},".cm-lineWrapping":{whiteSpace_fallback:"pre-wrap",whiteSpace:"break-spaces",wordBreak:"break-word",overflowWrap:"anywhere",flexShrink:1},"&light .cm-content":{caretColor:"black"},"&dark .cm-content":{caretColor:"white"},".cm-line":{display:"block",padding:"0 2px 0 6px"},".cm-layer":{position:"absolute",left:0,top:0,contain:"size style","& > *":{position:"absolute"}},"&light .cm-selectionBackground":{background:"#d9d9d9"},"&dark .cm-selectionBackground":{background:"#222"},"&light.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#d7d4f0"},"&dark.cm-focused > .cm-scroller > .cm-selectionLayer .cm-selectionBackground":{background:"#233"},".cm-cursorLayer":{pointerEvents:"none"},"&.cm-focused > .cm-scroller > .cm-cursorLayer":{animation:"steps(1) cm-blink 1.2s infinite"},"@keyframes cm-blink":{"0%":{},"50%":{opacity:0},"100%":{}},"@keyframes cm-blink2":{"0%":{},"50%":{opacity:0},"100%":{}},".cm-cursor, .cm-dropCursor":{borderLeft:"1.2px solid black",marginLeft:"-0.6px",pointerEvents:"none"},".cm-cursor":{display:"none"},"&dark .cm-cursor":{borderLeftColor:"#ddd"},".cm-selectionHandle":{backgroundColor:"currentColor",width:"1.5px"},".cm-selectionHandle-start::before, .cm-selectionHandle-end::before":{content:'""',backgroundColor:"inherit",borderRadius:"50%",width:"8px",height:"8px",position:"absolute",left:"-3.25px"},".cm-selectionHandle-start::before":{top:"-8px"},".cm-selectionHandle-end::before":{bottom:"-8px"},".cm-dropCursor":{position:"absolute"},"&.cm-focused > .cm-scroller > .cm-cursorLayer .cm-cursor":{display:"block"},".cm-iso":{unicodeBidi:"isolate"},".cm-announced":{position:"fixed",top:"-10000px"},"@media print":{".cm-announced":{display:"none"}},"&light .cm-activeLine":{backgroundColor:"#cceeff44"},"&dark .cm-activeLine":{backgroundColor:"#99eeff33"},"&light .cm-specialChar":{color:"red"},"&dark .cm-specialChar":{color:"#f78"},".cm-gutters":{flexShrink:0,display:"flex",height:"100%",boxSizing:"border-box",zIndex:200},".cm-gutters-before":{insetInlineStart:0},".cm-gutters-after":{insetInlineEnd:0},"&light .cm-gutters":{backgroundColor:"#f5f5f5",color:"#6c6c6c",border:"0px solid #ddd","&.cm-gutters-before":{borderRightWidth:"1px"},"&.cm-gutters-after":{borderLeftWidth:"1px"}},"&dark .cm-gutters":{backgroundColor:"#333338",color:"#ccc"},".cm-gutter":{display:"flex !important",flexDirection:"column",flexShrink:0,boxSizing:"border-box",minHeight:"100%",overflow:"hidden"},".cm-gutterElement":{boxSizing:"border-box"},".cm-lineNumbers .cm-gutterElement":{padding:"0 3px 0 5px",minWidth:"20px",textAlign:"right",whiteSpace:"nowrap"},"&light .cm-activeLineGutter":{backgroundColor:"#e2f2ff"},"&dark .cm-activeLineGutter":{backgroundColor:"#222227"},".cm-panels":{boxSizing:"border-box",position:"sticky",left:0,right:0,zIndex:300},"&light .cm-panels":{backgroundColor:"#f5f5f5",color:"black"},"&light .cm-panels-top":{borderBottom:"1px solid #ddd"},"&light .cm-panels-bottom":{borderTop:"1px solid #ddd"},"&dark .cm-panels":{backgroundColor:"#333338",color:"white"},".cm-dialog":{padding:"2px 19px 4px 6px",position:"relative","& label":{fontSize:"80%"}},".cm-dialog-close":{position:"absolute",top:"3px",right:"4px",backgroundColor:"inherit",border:"none",font:"inherit",fontSize:"14px",padding:"0"},".cm-tab":{display:"inline-block",overflow:"hidden",verticalAlign:"bottom"},".cm-widgetBuffer":{verticalAlign:"text-top",height:"1em",width:0,display:"inline"},".cm-placeholder":{color:"#888",display:"inline-block",verticalAlign:"top",userSelect:"none"},".cm-highlightSpace":{backgroundImage:"radial-gradient(circle at 50% 55%, #aaa 20%, transparent 5%)",backgroundPosition:"center"},".cm-highlightTab":{backgroundImage:'url(\'data:image/svg+xml,\')',backgroundSize:"auto 100%",backgroundPosition:"right 90%",backgroundRepeat:"no-repeat"},".cm-trailingSpace":{backgroundColor:"#ff332255"},".cm-button":{verticalAlign:"middle",color:"inherit",fontSize:"70%",padding:".2em 1em",borderRadius:"1px"},"&light .cm-button":{backgroundImage:"linear-gradient(#eff1f5, #d9d9df)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#b4b4b4, #d0d3d6)"}},"&dark .cm-button":{backgroundImage:"linear-gradient(#393939, #111)",border:"1px solid #888","&:active":{backgroundImage:"linear-gradient(#111, #333)"}},".cm-textfield":{verticalAlign:"middle",color:"inherit",fontSize:"70%",border:"1px solid silver",padding:".2em .5em"},"&light .cm-textfield":{backgroundColor:"white"},"&dark .cm-textfield":{border:"1px solid #555",backgroundColor:"inherit"}},iR),iN={childList:!0,characterData:!0,subtree:!0,attributes:!0,characterDataOldValue:!0},iI=O.ie&&O.ie_version<=11;class iH{constructor(t){this.view=t,this.active=!1,this.editContext=null,this.selectionRange=new Z,this.selectionChanged=!1,this.delayedFlush=-1,this.resizeTimeout=-1,this.queue=[],this.delayedAndroidKey=null,this.flushingAndroidKey=-1,this.lastChange=0,this.scrollTargets=[],this.intersection=null,this.resizeScroll=null,this.intersecting=!1,this.gapIntersection=null,this.gaps=[],this.printQuery=null,this.parentCheck=-1,this.dom=t.contentDOM,this.observer=new MutationObserver(e=>{for(let t of e)this.queue.push(t);(O.ie&&O.ie_version<=11||O.ios&&t.composing)&&e.some(t=>"childList"==t.type&&t.removedNodes.length||"characterData"==t.type&&t.oldValue.length>t.target.nodeValue.length)?this.flushSoon():this.flush()}),window.EditContext&&O.android&&!1!==t.constructor.EDIT_CONTEXT&&!(O.chrome&&O.chrome_version<126)&&(this.editContext=new iV(t),t.state.facet(tV)&&(t.contentDOM.editContext=this.editContext.editContext)),iI&&(this.onCharData=t=>{this.queue.push({target:t.target,type:"characterData",oldValue:t.prevValue}),this.flushSoon()}),this.onSelectionChange=this.onSelectionChange.bind(this),this.onResize=this.onResize.bind(this),this.onPrint=this.onPrint.bind(this),this.onScroll=this.onScroll.bind(this),window.matchMedia&&(this.printQuery=window.matchMedia("print")),"function"==typeof ResizeObserver&&(this.resizeScroll=new ResizeObserver(()=>{var t;(null==(t=this.view.docView)?void 0:t.lastUpdate){this.parentCheck<0&&(this.parentCheck=setTimeout(this.listenForScroll.bind(this),1e3)),t.length>0&&t[t.length-1].intersectionRatio>0!=this.intersecting&&(this.intersecting=!this.intersecting,this.intersecting!=this.view.inView&&this.onScrollChanged(document.createEvent("Event")))},{threshold:[0,.001]}),this.intersection.observe(this.dom),this.gapIntersection=new IntersectionObserver(t=>{t.length>0&&t[t.length-1].intersectionRatio>0&&this.onScrollChanged(document.createEvent("Event"))},{})),this.listenForScroll(),this.readSelectionRange()}onScrollChanged(t){this.view.inputState.runHandlers("scroll",t),this.intersecting&&this.view.measure()}onScroll(t){this.intersecting&&this.flush(!1),this.editContext&&this.view.requestMeasure(this.editContext.measureReq),this.onScrollChanged(t)}onResize(){this.resizeTimeout<0&&(this.resizeTimeout=setTimeout(()=>{this.resizeTimeout=-1,this.view.requestMeasure()},50))}onPrint(t){("change"!=t.type&&t.type||t.matches)&&(this.view.viewState.printing=!0,this.view.measure(),setTimeout(()=>{this.view.viewState.printing=!1,this.view.requestMeasure()},500))}updateGaps(t){if(this.gapIntersection&&(t.length!=this.gaps.length||this.gaps.some((e,i)=>e!=t[i]))){for(let e of(this.gapIntersection.disconnect(),t))this.gapIntersection.observe(e);this.gaps=t}}onSelectionChange(t){let e=this.selectionChanged;if(!this.readSelectionRange()||this.delayedAndroidKey)return;let{view:i}=this,s=this.selectionRange;if(i.state.facet(tV)?i.root.activeElement!=this.dom:!j(this.dom,s))return;let n=s.anchorNode&&i.docView.tile.nearest(s.anchorNode);if(n&&n.isWidget()&&n.widget.ignoreEvent(t)){e||(this.selectionChanged=!1);return}(O.ie&&O.ie_version<=11||O.android&&O.chrome)&&!i.state.selection.main.empty&&s.focusNode&&K(s.focusNode,s.focusOffset,s.anchorNode,s.anchorOffset)?this.flushSoon():this.flush(!1)}readSelectionRange(){let{view:t}=this,e=_(t.root);if(!e)return!1;let i=O.safari&&11==t.root.nodeType&&t.root.activeElement==this.dom&&function(t,e){if(e.getComposedRanges){let i=e.getComposedRanges(t.root)[0];if(i)return iF(t,i)}let i=null;function s(t){t.preventDefault(),t.stopImmediatePropagation(),i=t.getTargetRanges()[0]}return t.contentDOM.addEventListener("beforeinput",s,!0),t.dom.ownerDocument.execCommand("indent"),t.contentDOM.removeEventListener("beforeinput",s,!0),i?iF(t,i):null}(this.view,e)||e;if(!i||this.selectionRange.eq(i))return!1;let s=j(this.dom,i);return s&&!this.selectionChanged&&t.inputState.lastFocusTime>Date.now()-200&&t.inputState.lastTouchTime{let t=this.delayedAndroidKey;t&&(this.clearDelayedAndroidKey(),this.view.inputState.lastKeyCode=t.keyCode,this.view.inputState.lastKeyTime=Date.now(),!this.flush()&&t.force&&ts(this.dom,t.key,t.keyCode))};this.flushingAndroidKey=this.view.win.requestAnimationFrame(t)}this.delayedAndroidKey&&"Enter"!=t||(this.delayedAndroidKey={key:t,keyCode:e,force:this.lastChange{this.delayedFlush=-1,this.flush()}))}forceFlush(){this.delayedFlush>=0&&(this.view.win.cancelAnimationFrame(this.delayedFlush),this.delayedFlush=-1),this.flush()}pendingRecords(){for(let t of this.observer.takeRecords())this.queue.push(t);return this.queue}processRecords(){let t=this.pendingRecords();t.length&&(this.queue=[]);let e=-1,i=-1,s=!1;for(let n of t){let t=this.readMutation(n);t&&(t.typeOver&&(s=!0),-1==e?{from:e,to:i}=t:(e=Math.min(t.from,e),i=Math.max(t.to,i)))}return{from:e,to:i,typeOver:s}}readChange(){let{from:t,to:e,typeOver:i}=this.processRecords(),s=this.selectionChanged&&j(this.dom,this.selectionRange);if(t<0&&!s)return null;t>-1&&(this.lastChange=Date.now()),this.view.inputState.lastFocusTime=0,this.selectionChanged=!1;let n=new eP(this.view,t,e,i);return this.view.docView.domChanged={newSel:n.newSel?n.newSel.main:null},n}flush(t=!0){if(this.delayedFlush>=0||this.delayedAndroidKey)return!1;t&&this.readSelectionRange();let e=this.readChange();if(!e)return this.view.requestMeasure(),!1;let i=this.view.state,s=eL(this.view,e);return this.view.state==i&&(e.domChanged||e.newSel&&!eH(this.view.state.selection,e.newSel.main))&&this.view.update([]),s}readMutation(t){let e=this.view.docView.tile.nearest(t.target);if(!e||e.isWidget())return null;if(e.markDirty("attributes"==t.type),"childList"==t.type){let i=iW(e,t.previousSibling||t.target.previousSibling,-1),s=iW(e,t.nextSibling||t.target.nextSibling,1);return{from:i?e.posAfter(i):e.posAtStart,to:s?e.posBefore(s):e.posAtEnd,typeOver:!1}}return"characterData"==t.type?{from:e.posAtStart,to:e.posAtEnd,typeOver:t.target.nodeValue==t.oldValue}:null}setWindow(t){t!=this.win&&(this.removeWindowListeners(this.win),this.win=t,this.addWindowListeners(this.win))}addWindowListeners(t){t.addEventListener("resize",this.onResize),this.printQuery?this.printQuery.addEventListener?this.printQuery.addEventListener("change",this.onPrint):this.printQuery.addListener(this.onPrint):t.addEventListener("beforeprint",this.onPrint),t.addEventListener("scroll",this.onScroll),t.document.addEventListener("selectionchange",this.onSelectionChange)}removeWindowListeners(t){t.removeEventListener("scroll",this.onScroll),t.removeEventListener("resize",this.onResize),this.printQuery?this.printQuery.removeEventListener?this.printQuery.removeEventListener("change",this.onPrint):this.printQuery.removeListener(this.onPrint):t.removeEventListener("beforeprint",this.onPrint),t.document.removeEventListener("selectionchange",this.onSelectionChange)}update(t){this.editContext&&(this.editContext.update(t),t.startState.facet(tV)!=t.state.facet(tV)&&(t.view.contentDOM.editContext=t.state.facet(tV)?this.editContext.editContext:null))}destroy(){var t,e,i;for(let s of(this.stop(),null==(t=this.intersection)||t.disconnect(),null==(e=this.gapIntersection)||e.disconnect(),null==(i=this.resizeScroll)||i.disconnect(),this.scrollTargets))s.removeEventListener("scroll",this.onScroll);this.removeWindowListeners(this.win),clearTimeout(this.parentCheck),clearTimeout(this.resizeTimeout),this.win.cancelAnimationFrame(this.delayedFlush),this.win.cancelAnimationFrame(this.flushingAndroidKey),this.editContext&&(this.view.contentDOM.editContext=null,this.editContext.destroy())}}function iW(t,e,i){for(;e;){let s=t4.get(e);if(s&&s.parent==t)return s;let n=e.parentNode;e=n!=t.dom?n:i>0?e.nextSibling:e.previousSibling}return null}function iF(t,e){let i=e.startContainer,s=e.startOffset,n=e.endContainer,r=e.endOffset,o=t.docView.domAtPos(t.state.selection.main.anchor,1);return K(o.node,o.offset,n,r)&&([i,s,n,r]=[n,r,i,s]),{anchorNode:i,anchorOffset:s,focusNode:n,focusOffset:r}}class iV{constructor(t){this.from=0,this.to=0,this.pendingContextChange=null,this.handlers=Object.create(null),this.composing=null,this.resetRange(t.state);let e=this.editContext=new window.EditContext({text:t.state.doc.sliceString(this.from,this.to),selectionStart:this.toContextPos(Math.max(this.from,Math.min(this.to,t.state.selection.main.anchor))),selectionEnd:this.toContextPos(t.state.selection.main.head)});for(let i in this.handlers.textupdate=i=>{let s=t.state.selection.main,{anchor:n,head:r}=s,o=this.toEditorPos(i.updateRangeStart),h=this.toEditorPos(i.updateRangeEnd);t.inputState.composing>=0&&!this.composing&&(this.composing={contextBase:i.updateRangeStart,editorBase:o,drifted:!1});let a=h-o>i.text.length;o==this.from&&nthis.to&&(h=n);let c=eI(t.state.sliceDoc(o,h),i.text,(a?s.from:s.to)-o,a?"end":null);if(!c){let e=l.OF.single(this.toEditorPos(i.selectionStart),this.toEditorPos(i.selectionEnd));eH(e,s)||t.dispatch({selection:e,userEvent:"select"});return}let u={from:c.from+o,to:c.toA+o,insert:l.EY.of(i.text.slice(c.from,c.toB).split("\n"))};if((O.mac||O.android)&&u.from==r-1&&/^\. ?$/.test(i.text)&&"off"==t.contentDOM.getAttribute("autocorrect")&&(u={from:o,to:h,insert:l.EY.of([i.text.replace("."," ")])}),this.pendingContextChange=u,!t.state.readOnly){let e=this.to-this.from+(u.to-u.from+u.insert.length);eN(t,u,l.OF.single(this.toEditorPos(i.selectionStart,e),this.toEditorPos(i.selectionEnd,e)))}this.pendingContextChange&&(this.revertPending(t.state),this.setSelection(t.state)),u.from=0&&!/[\\p{Alphabetic}\\p{Number}_]/.test(e.text.slice(Math.max(0,i.updateRangeStart-1),Math.min(e.text.length,i.updateRangeStart+1)))&&this.handlers.compositionend(i)},this.handlers.characterboundsupdate=i=>{let s=[],n=null;for(let e=this.toEditorPos(i.rangeStart),r=this.toEditorPos(i.rangeEnd);e{let i=[];for(let t of e.getTextFormats()){let e=t.underlineStyle,s=t.underlineThickness;if(!/none/i.test(e)&&!/none/i.test(s)){let n=this.toEditorPos(t.rangeStart),r=this.toEditorPos(t.rangeEnd);if(n{t.inputState.composing<0&&(t.inputState.composing=0,t.inputState.compositionFirstChange=!0)},this.handlers.compositionend=()=>{if(t.inputState.composing=-1,t.inputState.compositionFirstChange=null,this.composing){let{drifted:e}=this.composing;this.composing=null,e&&this.reset(t.state)}},this.handlers)e.addEventListener(i,this.handlers[i]);this.measureReq={read:t=>{this.editContext.updateControlBounds(t.contentDOM.getBoundingClientRect());let e=_(t.root);e&&e.rangeCount&&this.editContext.updateSelectionBounds(e.getRangeAt(0).getBoundingClientRect())}}}applyEdits(t){let e=0,i=!1,s=this.pendingContextChange;return t.changes.iterChanges((n,r,o,l,h)=>{if(i)return;let a=h.length-(r-n);if(s&&r>=s.to)if(s.from==n&&s.to==r&&s.insert.eq(h)){s=this.pendingContextChange=null,e+=a,this.to+=a;return}else s=null,this.revertPending(t.state);if(n+=e,(r+=e)<=this.from)this.from+=a,this.to+=a;else if(nthis.to||this.to-this.from+h.length>3e4){i=!0;return}this.editContext.updateText(this.toContextPos(n),this.toContextPos(r),h.toString()),this.to+=a}e+=a}),s&&!i&&this.revertPending(t.state),!i}update(t){let e=this.pendingContextChange,i=t.startState.selection.main;this.composing&&(this.composing.drifted||!t.changes.touchesRange(i.from,i.to)&&t.transactions.some(t=>!t.isUserEvent("input.type")&&t.changes.touchesRange(this.from,this.to)))?(this.composing.drifted=!0,this.composing.editorBase=t.changes.mapPos(this.composing.editorBase)):this.applyEdits(t)&&this.rangeIsValid(t.state)?(t.docChanged||t.selectionSet||e)&&this.setSelection(t.state):(this.pendingContextChange=null,this.reset(t.state)),(t.geometryChanged||t.docChanged||t.selectionSet)&&t.view.requestMeasure(this.measureReq)}resetRange(t){let{head:e}=t.selection.main;this.from=Math.max(0,e-1e4),this.to=Math.min(t.doc.length,e+1e4)}reset(t){this.resetRange(t),this.editContext.updateText(0,this.editContext.text.length,t.doc.sliceString(this.from,this.to)),this.setSelection(t)}revertPending(t){let e=this.pendingContextChange;this.pendingContextChange=null,this.editContext.updateText(this.toContextPos(e.from),this.toContextPos(e.from+e.insert.length),t.doc.sliceString(e.from,e.to))}setSelection(t){let{main:e}=t.selection,i=this.toContextPos(Math.max(this.from,Math.min(this.to,e.anchor))),s=this.toContextPos(e.head);(this.editContext.selectionStart!=i||this.editContext.selectionEnd!=s)&&this.editContext.updateSelection(i,s)}rangeIsValid(t){let{head:e}=t.selection.main;return!(this.from>0&&e-this.from<500||this.to3e4)}toEditorPos(t,e=this.to-this.from){t=Math.min(t,e);let i=this.composing;return i&&i.drifted?i.editorBase+(t-i.contextBase):t+this.from}toContextPos(t){let e=this.composing;return e&&e.drifted?e.contextBase+(t-e.editorBase):t-this.from}destroy(){for(let t in this.handlers)this.editContext.removeEventListener(t,this.handlers[t])}}class i_{get state(){return this.viewState.state}get viewport(){return this.viewState.viewport}get visibleRanges(){return this.viewState.visibleRanges}get inView(){return this.viewState.inView}get composing(){return!!this.inputState&&this.inputState.composing>0}get compositionStarted(){return!!this.inputState&&this.inputState.composing>=0}get root(){return this._root}get win(){return this.dom.ownerDocument.defaultView||window}constructor(t={}){var e;this.plugins=[],this.pluginMap=new Map,this.editorAttrs={},this.contentAttrs={},this.bidiCache=[],this.destroyed=!1,this.updateState=2,this.measureScheduled=-1,this.measureRequests=[],this.contentDOM=document.createElement("div"),this.scrollDOM=document.createElement("div"),this.scrollDOM.tabIndex=-1,this.scrollDOM.className="cm-scroller",this.scrollDOM.appendChild(this.contentDOM),this.announceDOM=document.createElement("div"),this.announceDOM.className="cm-announced",this.announceDOM.setAttribute("aria-live","polite"),this.dom=document.createElement("div"),this.dom.appendChild(this.announceDOM),this.dom.appendChild(this.scrollDOM),t.parent&&t.parent.appendChild(this.dom);let{dispatch:i}=t;for(let e of(this.dispatchTransactions=t.dispatchTransactions||i&&(t=>t.forEach(t=>i(t,this)))||(t=>this.update(t)),this.dispatch=this.dispatch.bind(this),this._root=t.root||function(t){for(;t;){if(t&&(9==t.nodeType||11==t.nodeType&&t.host))return t;t=t.assignedSlot||t.parentNode}return null}(t.parent)||document,this.viewState=new ib(this,t.state||l.$t.create(t)),t.scrollTo&&t.scrollTo.is(tH)&&(this.viewState.scrollTarget=t.scrollTo.value.clip(this.viewState.state)),this.plugins=this.state.facet(tz).map(t=>new tq(t)),this.plugins))e.update(this);this.observer=new iH(this),this.inputState=new eW(this),this.inputState.ensureHandlers(this.plugins),this.docView=new ev(this),this.mountStyles(),this.updateAttrs(),this.updateState=0,this.requestMeasure(),(null==(e=document.fonts)?void 0:e.ready)&&document.fonts.ready.then(()=>{this.viewState.mustMeasureContent="refresh",this.requestMeasure()})}dispatch(...t){let e=1==t.length&&t[0]instanceof l.ZX?t:1==t.length&&Array.isArray(t[0])?t[0]:[this.state.update(...t)];this.dispatchTransactions(e,this)}update(t){if(0!=this.updateState)throw Error("Calls to EditorView.update are not allowed while an update is in progress");let e=!1,i=!1,s,n=this.state;for(let e of t){if(e.startState!=n)throw RangeError("Trying to update state with a transaction that doesn't start from the previous state.");n=e.state}if(this.destroyed){this.viewState.state=n;return}let r=this.hasFocus,o=0,h=null;t.some(t=>t.annotation(e8))?(this.inputState.notifiedFocused=r,o=1):r!=this.inputState.notifiedFocused&&(this.inputState.notifiedFocused=r,(h=e4(n,r))||(o=1));let a=this.observer.delayedAndroidKey,c=null;if(a?(this.observer.clearDelayedAndroidKey(),((c=this.observer.readChange())&&!this.state.doc.eq(n.doc)||!this.state.selection.eq(n.selection))&&(c=null)):this.observer.clear(),n.facet(l.$t.phrases)!=this.state.facet(l.$t.phrases))return this.setState(n);s=t3.create(this,n,t),s.flags|=o;let u=this.viewState.scrollTarget;try{for(let e of(this.updateState=2,t)){if(u&&(u=u.map(e.changes)),e.scrollIntoView){let{main:t}=e.state.selection;u=new tI(t.empty?t:l.OF.cursor(t.head,t.head>t.anchor?-1:1))}for(let t of e.effects)t.is(tH)&&(u=t.value.clip(this.state))}this.viewState.update(s,u),this.bidiCache=iq.update(this.bidiCache,s.changes),s.empty||(this.updatePlugins(s),this.inputState.update(s)),e=this.docView.update(s),this.state.facet(t1)!=this.styleModules&&this.mountStyles(),i=this.updateAttrs(),this.showAnnouncements(t),this.docView.updateSelection(e,t.some(t=>t.isUserEvent("select.pointer")))}finally{this.updateState=0}if(s.startState.facet(iO)!=s.state.facet(iO)&&(this.viewState.mustMeasureContent=!0),(e||i||u||this.viewState.mustEnforceCursorAssoc||this.viewState.mustMeasureContent)&&this.requestMeasure(),e&&this.docViewUpdate(),!s.empty)for(let t of this.state.facet(tT))try{t(s)}catch(t){tF(this.state,t,"update listener")}(h||c)&&Promise.resolve().then(()=>{h&&this.state==h.startState&&this.dispatch(h),c&&!eL(this,c)&&a.force&&ts(this.contentDOM,a.key,a.keyCode)})}setState(t){if(0!=this.updateState)throw Error("Calls to EditorView.setState are not allowed while an update is in progress");if(this.destroyed){this.viewState.state=t;return}this.updateState=2;let e=this.hasFocus;try{for(let t of this.plugins)t.destroy(this);for(let e of(this.viewState=new ib(this,t),this.plugins=t.facet(tz).map(t=>new tq(t)),this.pluginMap.clear(),this.plugins))e.update(this);this.docView.destroy(),this.docView=new ev(this),this.inputState.ensureHandlers(this.plugins),this.mountStyles(),this.updateAttrs(),this.bidiCache=[]}finally{this.updateState=0}e&&this.focus(),this.requestMeasure()}updatePlugins(t){let e=t.startState.facet(tz),i=t.state.facet(tz);if(e!=i){let s=[];for(let n of i){let i=e.indexOf(n);if(i<0)s.push(new tq(n));else{let e=this.plugins[i];e.mustUpdate=t,s.push(e)}}for(let e of this.plugins)e.mustUpdate!=t&&e.destroy(this);this.plugins=s,this.pluginMap.clear()}else for(let e of this.plugins)e.mustUpdate=t;for(let t=0;t-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.observer.delayedAndroidKey){this.measureScheduled=-1,this.requestMeasure();return}this.measureScheduled=0,t&&this.observer.forceFlush();let e=null,i=this.viewState.scrollParent,s=this.viewState.getScrollOffset(),{scrollAnchorPos:n,scrollAnchorHeight:r}=this.viewState;Math.abs(s-this.viewState.scrollOffset)>1&&(r=-1),this.viewState.scrollAnchorHeight=-1;try{for(let t=0;;t++){if(r<0)if(tn(i||this.win))n=-1,r=this.viewState.heightMap.height;else{let t=this.viewState.scrollAnchorAt(s);n=t.from,r=t.top}this.updateState=1;let o=this.viewState.measure();if(!o&&!this.measureRequests.length&&null==this.viewState.scrollTarget)break;if(t>5){console.warn(this.measureRequests.length?"Measure loop restarted more than 5 times":"Viewport failed to stabilize");break}let l=[];4&o||([this.measureRequests,l]=[l,this.measureRequests]);let h=l.map(t=>{try{return t.read(this)}catch(t){return tF(this.state,t),ij}}),a=t3.create(this,this.state,[]),c=!1;a.flags|=o,e?e.flags|=o:e=a,this.updateState=2,!a.empty&&(this.updatePlugins(a),this.inputState.update(a),this.updateAttrs(),(c=this.docView.update(a))&&this.docViewUpdate());for(let t=0;t1||t<-1)&&(i==this.scrollDOM||this.hasFocus||Math.max(this.inputState.lastWheelEvent,this.inputState.lastTouchTime)>Date.now()-100)){s+=t,i?i.scrollTop+=t:this.win.scrollBy(0,t),r=-1;continue}}break}}}finally{this.updateState=0,this.measureScheduled=-1}if(e&&!e.empty)for(let t of this.state.facet(tT))t(e)}get themeClasses(){return iD+" "+(this.state.facet(iT)?iB:iE)+" "+this.state.facet(iO)}updateAttrs(){let t=iK(this,tK,{class:"cm-editor"+(this.hasFocus?" cm-focused ":" ")+this.themeClasses}),e={spellcheck:"false",autocorrect:"off",autocapitalize:"off",writingsuggestions:"false",translate:"no",contenteditable:this.state.facet(tV)?"true":"false",class:"cm-content",style:`${O.tabSize}: ${this.state.tabSize}`,role:"textbox","aria-multiline":"true"};this.state.readOnly&&(e["aria-readonly"]="true"),iK(this,tY,e);let i=this.observer.ignore(()=>{let i=B(this.contentDOM,this.contentAttrs,e),s=B(this.dom,this.editorAttrs,t);return i||s});return this.editorAttrs=t,this.contentAttrs=e,i}showAnnouncements(t){let e=!0;for(let i of t)for(let t of i.effects)t.is(i_.announce)&&(e&&(this.announceDOM.textContent=""),e=!1,this.announceDOM.appendChild(document.createElement("div")).textContent=t.value)}mountStyles(){this.styleModules=this.state.facet(t1);let t=this.state.facet(i_.cspNonce);h.G.mount(this.root,this.styleModules.concat(iL).reverse(),t?{nonce:t}:void 0)}readMeasured(){if(2==this.updateState)throw Error("Reading the editor layout isn't allowed during an update");0==this.updateState&&this.measureScheduled>-1&&this.measure(!1)}requestMeasure(t){if((this.measureScheduled<0&&(this.measureScheduled=this.win.requestAnimationFrame(()=>this.measure())),t)&&!(this.measureRequests.indexOf(t)>-1)){if(null!=t.key){for(let e=0;ee.plugin==t)||null),e&&e.update(this).value}get documentTop(){return this.contentDOM.getBoundingClientRect().top+this.viewState.paddingTop}get documentPadding(){return{top:this.viewState.paddingTop,bottom:this.viewState.paddingBottom}}get scaleX(){return this.viewState.scaleX}get scaleY(){return this.viewState.scaleY}elementAtHeight(t){return this.readMeasured(),this.viewState.elementAtHeight(t)}lineBlockAtHeight(t){return this.readMeasured(),this.viewState.lineBlockAtHeight(t)}get viewportLineBlocks(){return this.viewState.viewportLines}lineBlockAt(t){return this.viewState.lineBlockAt(t)}get contentHeight(){return this.viewState.contentHeight}moveByChar(t,e,i){return eO(this,t,eC(this,t,e,i))}moveByGroup(t,e){return eO(this,t,eC(this,t,e,e=>{var i;let s,n;return i=t.head,n=(s=this.state.charCategorizer(i))(e),t=>{let e=s(t);return n==l.Je.Space&&(n=e),n==e}}))}visualLineSide(t,e){let i=this.bidiSpans(t),s=this.textDirectionAt(t.from),n=i[e?i.length-1:0];return l.OF.cursor(n.side(e,s)+t.from,n.forward(!e,s)?1:-1)}moveToLineBoundary(t,e,i=!0){return function(t,e,i,s){let n=eS(t,e.head,e.assoc||-1),r=s&&n.type==P.Text&&(t.lineWrapping||n.widgetLineBreaks)?t.coordsAtPos(e.assoc<0&&e.head>n.from?e.head-1:e.head):null;if(r){let e=t.dom.getBoundingClientRect(),s=t.textDirectionAt(n.from),o=t.posAtCoords({x:i==(s==th.LTR)?e.right-1:e.left+1,y:(r.top+r.bottom)/2});if(null!=o)return l.OF.cursor(o,i?-1:1)}return l.OF.cursor(i?n.to:n.from,i?-1:1)}(this,t,e,i)}moveVertically(t,e,i){return eO(this,t,function(t,e,i,s){let n=e.head,r=i?1:-1;if(n==(i?t.state.doc.length:0))return l.OF.cursor(n,e.assoc);let o=e.goalColumn,h,a=t.contentDOM.getBoundingClientRect(),c=t.coordsAtPos(n,e.assoc||((e.empty?i:e.head==e.from)?1:-1)),u=t.documentTop;if(c)null==o&&(o=c.left-a.left),h=r<0?c.top:c.bottom;else{let e=t.viewState.lineBlockAt(n);null==o&&(o=Math.min(a.right-a.left,t.defaultCharacterWidth*(n-e.from))),h=(r<0?e.top:e.bottom)+u}let f=a.left+o,d=t.viewState.heightOracle.textHeight>>1,p=null!=s?s:d;for(let e=0;;e+=d){let s=h+(p+e)*r,n=eD(t,{x:f,y:s},!1,r);if(i?s>a.bottom:sh:u0)}coordsForChar(t){return this.readMeasured(),this.docView.coordsForChar(t)}get defaultCharacterWidth(){return this.viewState.heightOracle.charWidth}get defaultLineHeight(){return this.viewState.heightOracle.lineHeight}get textDirection(){return this.viewState.defaultTextDirection}textDirectionAt(t){return!this.state.facet(tP)||tthis.viewport.to?this.textDirection:(this.readMeasured(),this.docView.textDirectionAt(t))}get lineWrapping(){return this.viewState.heightOracle.lineWrapping}bidiSpans(t){if(t.length>iz)return tx(t.length);let e=this.textDirectionAt(t.from),i;for(let s of this.bidiCache)if(s.from==t.from&&s.dir==e&&(s.fresh||function t(e,i){if(e.length!=i.length)return!1;for(let s=0;sDate.now()-3e4)&&this.root.activeElement==this.contentDOM}focus(){this.observer.ignore(()=>{te(this.contentDOM),this.docView.updateSelection()})}setRoot(t){this._root!=t&&(this._root=t,this.observer.setWindow((9==t.nodeType?t:t.ownerDocument).defaultView||window),this.mountStyles())}destroy(){for(let t of(this.root.activeElement==this.contentDOM&&this.contentDOM.blur(),this.plugins))t.destroy(this);this.plugins=[],this.inputState.destroy(),this.docView.destroy(),this.dom.remove(),this.observer.destroy(),this.measureScheduled>-1&&this.win.cancelAnimationFrame(this.measureScheduled),this.destroyed=!0}static scrollIntoView(t,e={}){return tH.of(new tI("number"==typeof t?l.OF.cursor(t):t,e.y,e.x,e.yMargin,e.xMargin))}scrollSnapshot(){let{scrollTop:t,scrollLeft:e}=this.scrollDOM,i=this.viewState.scrollAnchorAt(t);return tH.of(new tI(l.OF.cursor(i.from),"start","start",i.top-t,e,!0))}setTabFocusMode(t){null==t?this.inputState.tabFocusMode=this.inputState.tabFocusMode<0?0:-1:"boolean"==typeof t?this.inputState.tabFocusMode=t?0:-1:0!=this.inputState.tabFocusMode&&(this.inputState.tabFocusMode=Date.now()+t)}static domEventHandlers(t){return tj.define(()=>({}),{eventHandlers:t})}static domEventObservers(t){return tj.define(()=>({}),{eventObservers:t})}static theme(t,e){let i=h.G.newName(),s=[iO.of(i),t1.of(iP(`.${i}`,t))];return e&&e.dark&&s.push(iT.of(!0)),s}static baseTheme(t){return l.Nb.lowest(t1.of(iP("."+iD,t,iR)))}static findFromDOM(t){var e;let i=t.querySelector(".cm-content"),s=i&&t4.get(i)||t4.get(t);return(null==(e=null==s?void 0:s.root)?void 0:e.view)||null}}i_.styleModule=t1,i_.inputHandler=tD,i_.clipboardInputFilter=tB,i_.clipboardOutputFilter=tR,i_.scrollHandler=tN,i_.focusChangeEffect=tE,i_.perLineTextDirection=tP,i_.exceptionSink=tO,i_.updateListener=tT,i_.editable=tV,i_.mouseSelectionStyle=tM,i_.dragMovesSelection=tA,i_.clickAddsSelectionRange=tC,i_.decorations=t$,i_.blockWrappers=tU,i_.outerDecorations=tG,i_.atomicRanges=tX,i_.bidiIsolatedRanges=tJ,i_.scrollMargins=tZ,i_.darkTheme=iT,i_.cspNonce=l.sj.define({combine:t=>t.length?t[0]:""}),i_.contentAttributes=tY,i_.editorAttributes=tK,i_.lineWrapping=i_.contentAttributes.of({class:"cm-lineWrapping"}),i_.announce=l.Pe.define();let iz=4096,ij={};class iq{constructor(t,e,i,s,n,r){this.from=t,this.to=e,this.dir=i,this.isolates=s,this.fresh=n,this.order=r}static update(t,e){if(e.empty&&!t.some(t=>t.fresh))return t;let i=[],s=t.length?t[t.length-1].dir:th.LTR;for(let n=Math.max(0,t.length-10);n=0;n--){let e=s[n],r="function"==typeof e?e(t):e;r&&T(r,i)}return i}let iY=O.mac?"mac":O.windows?"win":O.linux?"linux":"key";function i$(t,e,i){return e.altKey&&(t="Alt-"+t),e.ctrlKey&&(t="Ctrl-"+t),e.metaKey&&(t="Meta-"+t),!1!==i&&e.shiftKey&&(t="Shift-"+t),t}let iU=l.Nb.default(i_.domEventHandlers({keydown:(t,e)=>i1(iJ(e.state),t,e,"editor")})),iG=l.sj.define({enables:iU}),iX=new WeakMap;function iJ(t){let e=t.facet(iG),i=iX.get(e);return i||iX.set(e,i=function(t,e=iY){let i=Object.create(null),s=Object.create(null),n=(t,e)=>{let i=s[t];if(null==i)s[t]=e;else if(i!=e)throw Error("Key binding "+t+" is used both as a regular binding and as a multi-stroke prefix")},r=(t,s,r,o,l)=>{var h,a;let c=i[t]||(i[t]=Object.create(null)),u=s.split(/ (?!$)/).map(t=>(function(t,e){let i,s,n,r,o=t.split(/-(?!$)/),l=o[o.length-1];"Space"==l&&(l=" ");for(let t=0;t{let s=iZ={view:e,prefix:i,scope:t};return setTimeout(()=>{iZ==s&&(iZ=null)},4e3),!0}]})}let f=u.join(" ");n(f,!1);let d=c[f]||(c[f]={preventDefault:!1,stopPropagation:!1,run:(null==(a=null==(h=c._any)?void 0:h.run)?void 0:a.slice())||[]});r&&d.run.push(r),o&&(d.preventDefault=!0),l&&(d.stopPropagation=!0)};for(let s of t){let t=s.scope?s.scope.split(" "):["editor"];if(s.any)for(let e of t){let t=i[e]||(i[e]=Object.create(null));t._any||(t._any={preventDefault:!1,stopPropagation:!1,run:[]});let{any:n}=s;for(let e in t)t[e].run.push(t=>n(t,i0))}let n=s[e]||s.key;if(n)for(let e of t)r(e,n,s.run,s.preventDefault,s.stopPropagation),s.shift&&r(e,"Shift-"+n,s.shift,s.preventDefault,s.stopPropagation)}return i}(e.reduce((t,e)=>t.concat(e),[]))),i}function iQ(t,e,i){return i1(iJ(t.state),e,t,i)}let iZ=null,i0=null;function i1(t,e,i,s){var n;i0=e;let r=("Esc"==(n=!(u&&e.metaKey&&e.shiftKey&&!e.ctrlKey&&!e.altKey||f&&e.shiftKey&&e.key&&1==e.key.length||"Unidentified"==e.key)&&e.key||(e.shiftKey?c:a)[e.keyCode]||e.key||"Unidentified")&&(n="Escape"),"Del"==n&&(n="Delete"),"Left"==n&&(n="ArrowLeft"),"Up"==n&&(n="ArrowUp"),"Right"==n&&(n="ArrowRight"),"Down"==n&&(n="ArrowDown"),n),o=(0,l.vS)(r,0),h=(0,l.Fh)(o)==r.length&&" "!=r,d="",p=!1,g=!1,m=!1;iZ&&iZ.view==i&&iZ.scope==s&&(d=iZ.prefix+" ",0>ez.indexOf(e.keyCode)&&(g=!0,iZ=null));let v=new Set,w=t=>{if(t){for(let e of t.run)if(!v.has(e)&&(v.add(e),e(i)))return t.stopPropagation&&(m=!0),!0;t.preventDefault&&(t.stopPropagation&&(m=!0),g=!0)}return!1},b=t[s],y,x;return b&&(w(b[d+i$(r,e,!h)])?p=!0:h&&(e.altKey||e.metaKey||e.ctrlKey)&&!(O.windows&&e.ctrlKey&&e.altKey)&&!(O.mac&&e.altKey&&!(e.ctrlKey||e.metaKey))&&(y=a[e.keyCode])&&y!=r?w(b[d+i$(y,e,!0)])?p=!0:e.shiftKey&&(x=c[e.keyCode])!=r&&x!=y&&w(b[d+i$(x,e,!1)])&&(p=!0):h&&e.shiftKey&&w(b[d+i$(r,e,!0)])&&(p=!0),!p&&w(b._any)&&(p=!0)),g&&(p=!0),p&&m&&e.stopPropagation(),i0=null,p}class i2{constructor(t,e,i,s,n){this.className=t,this.left=e,this.top=i,this.width=s,this.height=n}draw(){let t=document.createElement("div");return t.className=this.className,this.adjust(t),t}update(t,e){return e.className==this.className&&(this.adjust(t),!0)}adjust(t){t.style.left=this.left+"px",t.style.top=this.top+"px",null!=this.width&&(t.style.width=this.width+"px"),t.style.height=this.height+"px"}eq(t){return this.left==t.left&&this.top==t.top&&this.width==t.width&&this.height==t.height&&this.className==t.className}static forRange(t,e,i){if(!i.empty)return function(t,e,i){if(i.to<=t.viewport.from||i.from>=t.viewport.to)return[];let s=Math.max(i.from,t.viewport.from),n=Math.min(i.to,t.viewport.to),r=t.textDirection==th.LTR,o=t.contentDOM,l=o.getBoundingClientRect(),h=i3(t),a=o.querySelector(".cm-line"),c=a&&window.getComputedStyle(a),u=l.left+(c?parseInt(c.paddingLeft)+Math.min(0,parseInt(c.textIndent)):0),f=l.right-(c?parseInt(c.paddingRight):0),d=eS(t,s,1),p=eS(t,n,-1),g=d.type==P.Text?d:null,m=p.type==P.Text?p:null;if(g&&(t.lineWrapping||d.widgetLineBreaks)&&(g=i8(t,s,1,g)),m&&(t.lineWrapping||p.widgetLineBreaks)&&(m=i8(t,n,-1,m)),g&&m&&g.from==m.from&&g.to==m.to)return w(b(i.from,i.to,g));{let e=g?b(i.from,null,g):y(d,!1),s=m?b(null,i.to,m):y(p,!0),n=[];return(g||d).to<(m||p).from-(g&&m?1:0)||d.widgetLineBreaks>1&&e.bottom+t.defaultLineHeight/2a&&s.from=r)break;l>n&&h(Math.max(t,n),null==e&&t<=a,Math.min(l,r),null==i&&l>=c,o.dir)}if((n=s.to+1)>=r)break}return 0==l.length&&h(a,null==e,c,null==i,t.textDirection),{top:n,bottom:o,horizontal:l}}function y(t,e){let i=l.top+(e?t.top:t.bottom);return{top:i,bottom:i,horizontal:[]}}}(t,e,i);{let s=t.coordsAtPos(i.head,i.assoc||1);if(!s)return[];let n=i3(t);return[new i2(e,s.left-n.left,s.top-n.top,null,s.bottom-s.top)]}}}function i3(t){let e=t.scrollDOM.getBoundingClientRect();return{left:(t.textDirection==th.LTR?e.left:e.right-t.scrollDOM.clientWidth*t.scaleX)-t.scrollDOM.scrollLeft*t.scaleX,top:e.top-t.scrollDOM.scrollTop*t.scaleY}}function i8(t,e,i,s){let n=t.coordsAtPos(e,2*i);if(!n)return s;let r=t.dom.getBoundingClientRect(),o=(n.top+n.bottom)/2,l=t.posAtCoords({x:r.left+1,y:o}),h=t.posAtCoords({x:r.right-1,y:o});return null==l||null==h?s:{from:Math.max(s.from,Math.min(l,h)),to:Math.min(s.to,Math.max(l,h))}}class i4{constructor(t,e){this.view=t,this.layer=e,this.drawn=[],this.scaleX=1,this.scaleY=1,this.measureReq={read:this.measure.bind(this),write:this.draw.bind(this)},this.dom=t.scrollDOM.appendChild(document.createElement("div")),this.dom.classList.add("cm-layer"),e.above&&this.dom.classList.add("cm-layer-above"),e.class&&this.dom.classList.add(e.class),this.scale(),this.dom.setAttribute("aria-hidden","true"),this.setOrder(t.state),t.requestMeasure(this.measureReq),e.mount&&e.mount(this.dom,t)}update(t){t.startState.facet(i5)!=t.state.facet(i5)&&this.setOrder(t.state),(this.layer.update(t,this.dom)||t.geometryChanged)&&(this.scale(),t.view.requestMeasure(this.measureReq))}docViewUpdate(t){!1!==this.layer.updateOnDocViewUpdate&&t.requestMeasure(this.measureReq)}setOrder(t){let e=0,i=t.facet(i5);for(;e{var i;return i=this.drawn[e],!(t.constructor==i.constructor&&t.eq(i))})){let e=this.dom.firstChild,i=0;for(let s of t)s.update&&e&&s.constructor&&this.drawn[i].constructor&&s.update(e,this.drawn[i])?(e=e.nextSibling,i++):this.dom.insertBefore(s.draw(),e);for(;e;){let t=e.nextSibling;e.remove(),e=t}this.drawn=t,O.safari&&O.safari_version>=26&&(this.dom.style.display=this.dom.firstChild?"":"none")}}destroy(){this.layer.destroy&&this.layer.destroy(this.dom,this.view),this.dom.remove()}}let i5=l.sj.define();function i9(t){return[tj.define(e=>new i4(e,t)),i5.of(t)]}let i6=l.sj.define({combine:t=>(0,l.QR)(t,{cursorBlinkRate:1200,drawRangeCursor:!0,iosSelectionHandles:!0},{cursorBlinkRate:(t,e)=>Math.min(t,e),drawRangeCursor:(t,e)=>t||e})});function i7(t={}){return[i6.of(t),si,sn,sr,tL.of(!0)]}function st(t){return t.facet(i6)}function se(t){return t.startState.facet(i6)!=t.state.facet(i6)}let si=i9({above:!0,markers(t){let{state:e}=t,i=e.facet(i6),s=[];for(let n of e.selection.ranges){let r=n==e.selection.main;if(n.empty||i.drawRangeCursor&&!(r&&O.ios&&i.iosSelectionHandles)){let e=r?"cm-cursor cm-cursor-primary":"cm-cursor cm-cursor-secondary",i=n.empty?n:l.OF.cursor(n.head,n.assoc);for(let n of i2.forRange(t,e,i))s.push(n)}}return s},update(t,e){t.transactions.some(t=>t.selection)&&(e.style.animationName="cm-blink"==e.style.animationName?"cm-blink2":"cm-blink");let i=se(t);return i&&ss(t.state,e),t.docChanged||t.selectionSet||i},mount(t,e){ss(e.state,t)},class:"cm-cursorLayer"});function ss(t,e){e.style.animationDuration=t.facet(i6).cursorBlinkRate+"ms"}let sn=i9({above:!1,markers(t){let e=[],{main:i,ranges:s}=t.state.selection;for(let i of s)if(!i.empty)for(let s of i2.forRange(t,"cm-selectionBackground",i))e.push(s);if(O.ios&&!i.empty&&t.state.facet(i6).iosSelectionHandles){for(let s of i2.forRange(t,"cm-selectionHandle cm-selectionHandle-start",l.OF.cursor(i.from,1)))e.push(s);for(let s of i2.forRange(t,"cm-selectionHandle cm-selectionHandle-end",l.OF.cursor(i.to,1)))e.push(s)}return e},update:(t,e)=>t.docChanged||t.selectionSet||t.viewportChanged||se(t),class:"cm-selectionLayer"}),sr=l.Nb.highest(i_.theme({".cm-line":{"& ::selection, &::selection":{backgroundColor:"transparent !important"},caretColor:"transparent !important"},".cm-content":{caretColor:"transparent !important","& :focus":{caretColor:"initial !important","&::selection, & ::selection":{backgroundColor:"Highlight !important"}}}})),so=l.Pe.define({map:(t,e)=>null==t?null:e.mapPos(t)}),sl=l.sU.define({create:()=>null,update:(t,e)=>(null!=t&&(t=e.changes.mapPos(t)),e.effects.reduce((t,e)=>e.is(so)?e.value:t,t))}),sh=tj.fromClass(class{constructor(t){this.view=t,this.cursor=null,this.measureReq={read:this.readPos.bind(this),write:this.drawCursor.bind(this)}}update(t){var e;let i=t.state.field(sl);null==i?null!=this.cursor&&(null==(e=this.cursor)||e.remove(),this.cursor=null):(this.cursor||(this.cursor=this.view.scrollDOM.appendChild(document.createElement("div")),this.cursor.className="cm-dropCursor"),(t.startState.field(sl)!=i||t.docChanged||t.geometryChanged)&&this.view.requestMeasure(this.measureReq))}readPos(){let{view:t}=this,e=t.state.field(sl),i=null!=e&&t.coordsAtPos(e);if(!i)return null;let s=t.scrollDOM.getBoundingClientRect();return{left:i.left-s.left+t.scrollDOM.scrollLeft*t.scaleX,top:i.top-s.top+t.scrollDOM.scrollTop*t.scaleY,height:i.bottom-i.top}}drawCursor(t){if(this.cursor){let{scaleX:e,scaleY:i}=this.view;t?(this.cursor.style.left=t.left/e+"px",this.cursor.style.top=t.top/i+"px",this.cursor.style.height=t.height/i+"px"):this.cursor.style.left="-100000px"}}destroy(){this.cursor&&this.cursor.remove()}setDropPos(t){this.view.state.field(sl)!=t&&this.view.dispatch({effects:so.of(t)})}},{eventObservers:{dragover(t){this.setDropPos(this.view.posAtCoords({x:t.clientX,y:t.clientY}))},dragleave(t){t.target!=this.view.contentDOM&&this.view.contentDOM.contains(t.relatedTarget)||this.setDropPos(null)},dragend(){this.setDropPos(null)},drop(){this.setDropPos(null)}}});function sa(){return[sl,sh]}function sc(t,e,i,s,n){e.lastIndex=0;for(let r=t.iterRange(i,s),o=i,l;!r.next().done;o+=r.value.length)if(!r.lineBreak)for(;l=e.exec(r.value);)n(o+l.index,l)}class su{constructor(t){const{regexp:e,decoration:i,decorate:s,boundary:n,maxLength:r=1e3}=t;if(!e.global)throw RangeError("The regular expression given to MatchDecorator should have its 'g' flag set");if(this.regexp=e,s)this.addMatch=(t,e,i,n)=>s(n,i,i+t[0].length,t,e);else if("function"==typeof i)this.addMatch=(t,e,s,n)=>{let r=i(t,e,s);r&&n(s,s+t[0].length,r)};else if(i)this.addMatch=(t,e,s,n)=>n(s,s+t[0].length,i);else throw RangeError("Either 'decorate' or 'decoration' should be provided to MatchDecorator");this.boundary=n,this.maxLength=r}createDeco(t){let e=new l.vB,i=e.add.bind(e);for(let{from:e,to:s}of function(t,e){let i=t.visibleRanges;if(1==i.length&&i[0].from==t.viewport.from&&i[0].to==t.viewport.to)return i;let s=[];for(let{from:n,to:r}of i)n=Math.max(t.state.doc.lineAt(n).from,n-e),r=Math.min(t.state.doc.lineAt(r).to,r+e),s.length&&s[s.length-1].to>=n?s[s.length-1].to=r:s.push({from:n,to:r});return s}(t,this.maxLength))sc(t.state.doc,this.regexp,e,s,(e,s)=>this.addMatch(s,t,e,i));return e.finish()}updateDeco(t,e){let i=1e9,s=-1;return(t.docChanged&&t.changes.iterChanges((e,n,r,o)=>{o>=t.view.viewport.from&&r<=t.view.viewport.to&&(i=Math.min(r,i),s=Math.max(o,s))}),t.viewportMoved||s-i>1e3)?this.createDeco(t.view):s>-1?this.updateRange(t.view,e.map(t.changes),i,s):e}updateRange(t,e,i,s){for(let n of t.visibleRanges){let r=Math.max(n.from,i),o=Math.min(n.to,s);if(o>=r){let i=t.state.doc.lineAt(r),s=i.toi.from;r--)if(this.boundary.test(i.text[r-1-i.from])){l=r;break}for(;oa.push(i.range(t,e));if(i==s)for(this.regexp.lastIndex=l-i.from;(c=this.regexp.exec(i.text))&&c.indexthis.addMatch(i,t,e,u));e=e.update({filterFrom:l,filterTo:h,filter:(t,e)=>th,add:a})}}return e}}let sf=null!=/x/.unicode?"gu":"g",sd=RegExp("[\0-\b\n-\x1f\x7f-\x9f\xad؜​‎‏\u2028\u2029‭‮⁦⁧⁩\uFEFF-]",sf),sp={0:"null",7:"bell",8:"backspace",10:"newline",11:"vertical tab",13:"carriage return",27:"escape",8203:"zero width space",8204:"zero width non-joiner",8205:"zero width joiner",8206:"left-to-right mark",8207:"right-to-left mark",8232:"line separator",8237:"left-to-right override",8238:"right-to-left override",8294:"left-to-right isolate",8295:"right-to-left isolate",8297:"pop directional isolate",8233:"paragraph separator",65279:"zero width no-break space",65532:"object replacement"},sg=null,sm=l.sj.define({combine(t){let e=(0,l.QR)(t,{render:null,specialChars:sd,addSpecialChars:null});return(e.replaceTabs=!function(){var t;if(null==sg&&"u">typeof document&&document.body){let e=document.body.style;sg=(null!=(t=e.tabSize)?t:e.MozTabSize)!=null}return sg||!1}())&&(e.specialChars=RegExp(" |"+e.specialChars.source,sf)),e.addSpecialChars&&(e.specialChars=RegExp(e.specialChars.source+"|"+e.addSpecialChars.source,sf)),e}});function sv(t={}){return[sm.of(t),sw||(sw=tj.fromClass(class{constructor(t){this.view=t,this.decorations=L.none,this.decorationCache=Object.create(null),this.decorator=this.makeDecorator(t.state.facet(sm)),this.decorations=this.decorator.createDeco(t)}makeDecorator(t){return new su({regexp:t.specialChars,decoration:(e,i,s)=>{let{doc:n}=i.state,r=(0,l.vS)(e[0],0);if(9==r){let t=n.lineAt(s),e=i.state.tabSize,r=(0,l.y$)(t.text,e,s-t.from);return L.replace({widget:new sy((e-r%e)*this.view.defaultCharacterWidth/this.view.scaleX)})}return this.decorationCache[r]||(this.decorationCache[r]=L.replace({widget:new sb(t,r)}))},boundary:t.replaceTabs?void 0:/[^]/})}update(t){let e=t.state.facet(sm);t.startState.facet(sm)!=e?(this.decorator=this.makeDecorator(e),this.decorations=this.decorator.createDeco(t.view)):this.decorations=this.decorator.updateDeco(t,this.decorations)}},{decorations:t=>t.decorations}))]}let sw=null;class sb extends R{constructor(t,e){super(),this.options=t,this.code=e}eq(t){return t.code==this.code}toDOM(t){var e;let i=(e=this.code)>=32?"•":10==e?"␤":String.fromCharCode(9216+e),s=t.state.phrase("Control character")+" "+(sp[this.code]||"0x"+this.code.toString(16)),n=this.options.render&&this.options.render(this.code,s,i);if(n)return n;let r=document.createElement("span");return r.textContent=i,r.title=s,r.setAttribute("aria-label",s),r.className="cm-specialChar",r}ignoreEvent(){return!1}}class sy extends R{constructor(t){super(),this.width=t}eq(t){return t.width==this.width}toDOM(){let t=document.createElement("span");return t.textContent=" ",t.className="cm-tab",t.style.width=this.width+"px",t}ignoreEvent(){return!1}}let sx=tj.fromClass(class{constructor(){this.height=1e3,this.attrs={style:"padding-bottom: 1000px"}}update(t){let{view:e}=t,i=e.viewState.editorHeight-e.defaultLineHeight-e.documentPadding.top-.5;i>=0&&i!=this.height&&(this.height=i,this.attrs={style:`padding-bottom: ${i}px`})}});function sk(){return[sx,tY.of(t=>{var e;return(null==(e=t.plugin(sx))?void 0:e.attrs)||null})]}function sS(){return sA}let sC=L.line({class:"cm-activeLine"}),sA=tj.fromClass(class{constructor(t){this.decorations=this.getDeco(t)}update(t){(t.docChanged||t.selectionSet)&&(this.decorations=this.getDeco(t.view))}getDeco(t){let e=-1,i=[];for(let s of t.state.selection.ranges){let n=t.lineBlockAt(s.head);n.from>e&&(i.push(sC.range(n.from)),e=n.from)}return L.set(i)}},{decorations:t=>t.decorations});class sM extends R{constructor(t){super(),this.content=t}toDOM(t){let e=document.createElement("span");return e.className="cm-placeholder",e.style.pointerEvents="none",e.appendChild("string"==typeof this.content?document.createTextNode(this.content):"function"==typeof this.content?this.content(t):this.content.cloneNode(!0)),e.setAttribute("aria-hidden","true"),e}coordsAt(t){let e=t.firstChild?q(t.firstChild):[];if(!e.length)return null;let i=window.getComputedStyle(t.parentNode),s=X(e[0],"rtl"!=i.direction),n=parseInt(i.lineHeight);return s.bottom-s.top>1.5*n?{left:s.left,right:s.right,top:s.top,bottom:s.top+n}:s}ignoreEvent(){return!1}}function sO(t){let e=tj.fromClass(class{constructor(e){this.view=e,this.placeholder=t?L.set([L.widget({widget:new sM(t),side:1}).range(0)]):L.none}get decorations(){return this.view.state.doc.length?L.none:this.placeholder}},{decorations:t=>t.decorations});return"string"==typeof t?[e,i_.contentAttributes.of({"aria-placeholder":t})]:e}function sT(t,e){var i;let s,n=t.posAtCoords({x:e.clientX,y:e.clientY},!1),r=t.state.doc.lineAt(n),o=n-r.from,h=o>2e3?-1:o==r.length?(i=e.clientX,(s=t.coordsAtPos(t.viewport.from))?Math.round(Math.abs((s.left-i)/t.defaultCharacterWidth)):-1):(0,l.y$)(r.text,t.state.tabSize,n-r.from);return{line:r.number,col:h,off:o}}function sD(t){let e=(null==t?void 0:t.eventFilter)||(t=>t.altKey&&0==t.button);return i_.mouseSelectionStyle.of((t,i)=>{let s,n;return e(i)?(s=sT(t,i),n=t.state.selection,s?{update(t){if(t.docChanged){let e=t.changes.mapPos(t.startState.doc.line(s.line).from),i=t.state.doc.lineAt(e);s={line:i.number,col:s.col,off:Math.min(s.off,i.length)},n=n.map(t.changes)}},get(e,i,r){let o=sT(t,e);if(!o)return n;let h=function(t,e,i){let s=Math.min(e.line,i.line),n=Math.max(e.line,i.line),r=[];if(e.off>2e3||i.off>2e3||e.col<0||i.col<0){let o=Math.min(e.off,i.off),h=Math.max(e.off,i.off);for(let e=s;e<=n;e++){let i=t.doc.line(e);i.length<=h&&r.push(l.OF.range(i.from+o,i.to+h))}}else{let o=Math.min(e.col,i.col),h=Math.max(e.col,i.col);for(let e=s;e<=n;e++){let i=t.doc.line(e),s=(0,l.kn)(i.text,o,t.tabSize,!0);if(s<0)r.push(l.OF.cursor(i.to));else{let e=(0,l.kn)(i.text,h,t.tabSize);r.push(l.OF.range(i.from+s,i.from+e))}}}return r}(t.state,s,o);return h.length?r?l.OF.create(h.concat(n.ranges)):l.OF.create(h):n}}:null):null})}let sE={Alt:[18,t=>!!t.altKey],Control:[17,t=>!!t.ctrlKey],Shift:[16,t=>!!t.shiftKey],Meta:[91,t=>!!t.metaKey]},sB={style:"cursor: crosshair"};function sR(t={}){let[e,i]=sE[t.key||"Alt"],s=tj.fromClass(class{constructor(t){this.view=t,this.isDown=!1}set(t){this.isDown!=t&&(this.isDown=t,this.view.update([]))}},{eventObservers:{keydown(t){this.set(t.keyCode==e||i(t))},keyup(t){t.keyCode!=e&&i(t)||this.set(!1)},mousemove(t){this.set(i(t))}}});return[s,i_.contentAttributes.of(t=>{var e;return(null==(e=t.plugin(s))?void 0:e.isDown)?sB:null})]}let sP="-10000px";class sL{constructor(t,e,i,s){this.facet=e,this.createTooltipView=i,this.removeTooltipView=s,this.input=t.state.facet(e),this.tooltips=this.input.filter(t=>t);let n=null;this.tooltipViews=this.tooltips.map(t=>n=i(t,n))}update(t,e){var i;let s=t.state.facet(this.facet),n=s.filter(t=>t);if(s===this.input){for(let e of this.tooltipViews)e.update&&e.update(t);return!1}let r=[],o=e?[]:null;for(let i=0;ir.indexOf(t)&&(this.removeTooltipView(t),null==(i=t.destroy)||i.call(t));return e&&(o.forEach((t,i)=>e[i]=t),e.length=o.length),this.input=s,this.tooltips=n,this.tooltipViews=r,!0}}function sN(t={}){return sH.of(t)}function sI(t){let e=t.dom.ownerDocument.documentElement;return{top:0,left:0,bottom:e.clientHeight,right:e.clientWidth}}let sH=l.sj.define({combine:t=>{var e,i,s;return{position:O.ios?"absolute":(null==(e=t.find(t=>t.position))?void 0:e.position)||"fixed",parent:(null==(i=t.find(t=>t.parent))?void 0:i.parent)||null,tooltipSpace:(null==(s=t.find(t=>t.tooltipSpace))?void 0:s.tooltipSpace)||sI}}}),sW=new WeakMap,sF=tj.fromClass(class{constructor(t){this.view=t,this.above=[],this.inView=!0,this.madeAbsolute=!1,this.lastTransaction=0,this.measureTimeout=-1;let e=t.state.facet(sH);this.position=e.position,this.parent=e.parent,this.classes=t.themeClasses,this.createContainer(),this.measureReq={read:this.readMeasure.bind(this),write:this.writeMeasure.bind(this),key:this},this.resizeObserver="function"==typeof ResizeObserver?new ResizeObserver(()=>this.measureSoon()):null,this.manager=new sL(t,sj,(t,e)=>this.createTooltip(t,e),t=>{this.resizeObserver&&this.resizeObserver.unobserve(t.dom),t.dom.remove()}),this.above=this.manager.tooltips.map(t=>!!t.above),this.intersectionObserver="function"==typeof IntersectionObserver?new IntersectionObserver(t=>{Date.now()>this.lastTransaction-50&&t.length>0&&t[t.length-1].intersectionRatio<1&&this.measureSoon()},{threshold:[1]}):null,this.observeIntersection(),t.win.addEventListener("resize",this.measureSoon=this.measureSoon.bind(this)),this.maybeMeasure()}createContainer(){this.parent?(this.container=document.createElement("div"),this.container.style.position="relative",this.container.className=this.view.themeClasses,this.parent.appendChild(this.container)):this.container=this.view.dom}observeIntersection(){if(this.intersectionObserver)for(let t of(this.intersectionObserver.disconnect(),this.manager.tooltipViews))this.intersectionObserver.observe(t.dom)}measureSoon(){this.measureTimeout<0&&(this.measureTimeout=setTimeout(()=>{this.measureTimeout=-1,this.maybeMeasure()},50))}update(t){t.transactions.length&&(this.lastTransaction=Date.now());let e=this.manager.update(t,this.above);e&&this.observeIntersection();let i=e||t.geometryChanged,s=t.state.facet(sH);if(s.position!=this.position&&!this.madeAbsolute){for(let t of(this.position=s.position,this.manager.tooltipViews))t.dom.style.position=this.position;i=!0}if(s.parent!=this.parent){for(let t of(this.parent&&this.container.remove(),this.parent=s.parent,this.createContainer(),this.manager.tooltipViews))this.container.appendChild(t.dom);i=!0}else this.parent&&this.view.themeClasses!=this.classes&&(this.classes=this.container.className=this.view.themeClasses);i&&this.maybeMeasure()}createTooltip(t,e){let i=t.create(this.view),s=e?e.dom:null;if(i.dom.classList.add("cm-tooltip"),t.arrow&&!i.dom.querySelector(".cm-tooltip > .cm-tooltip-arrow")){let t=document.createElement("div");t.className="cm-tooltip-arrow",i.dom.appendChild(t)}return i.dom.style.position=this.position,i.dom.style.top=sP,i.dom.style.left="0px",this.container.insertBefore(i.dom,s),i.mount&&i.mount(this.view),this.resizeObserver&&this.resizeObserver.observe(i.dom),i}destroy(){var t,e,i;for(let e of(this.view.win.removeEventListener("resize",this.measureSoon),this.manager.tooltipViews))e.dom.remove(),null==(t=e.destroy)||t.call(e);this.parent&&this.container.remove(),null==(e=this.resizeObserver)||e.disconnect(),null==(i=this.intersectionObserver)||i.disconnect(),clearTimeout(this.measureTimeout)}readMeasure(){let t=1,e=1,i=!1;if("fixed"==this.position&&this.manager.tooltipViews.length){let{dom:t}=this.manager.tooltipViews[0];if(O.safari){let e=t.getBoundingClientRect();i=Math.abs(e.top+1e4)>1||Math.abs(e.left)>1}else i=!!t.offsetParent&&t.offsetParent!=this.container.ownerDocument.body}if(i||"absolute"==this.position)if(this.parent){let i=this.parent.getBoundingClientRect();i.width&&i.height&&(t=i.width/this.parent.offsetWidth,e=i.height/this.parent.offsetHeight)}else({scaleX:t,scaleY:e}=this.view.viewState);let s=this.view.scrollDOM.getBoundingClientRect(),n=t0(this.view);return{visible:{left:s.left+n.left,top:s.top+n.top,right:s.right-n.right,bottom:s.bottom-n.bottom},parent:this.parent?this.container.getBoundingClientRect():this.view.dom.getBoundingClientRect(),pos:this.manager.tooltips.map((t,e)=>{let i=this.manager.tooltipViews[e];return i.getCoords?i.getCoords(t.pos):this.view.coordsAtPos(t.pos)}),size:this.manager.tooltipViews.map(({dom:t})=>t.getBoundingClientRect()),space:this.view.state.facet(sH).tooltipSpace(this.view),scaleX:t,scaleY:e,makeAbsolute:i}}writeMeasure(t){var e;if(t.makeAbsolute)for(let t of(this.madeAbsolute=!0,this.position="absolute",this.manager.tooltipViews))t.dom.style.position="absolute";let{visible:i,space:s,scaleX:n,scaleY:r}=t,o=[];for(let l=0;l=Math.min(i.bottom,s.bottom)||u.rightMath.min(i.right,s.right)+.1)){c.style.top=sP;continue}let d=h.arrow?a.dom.querySelector(".cm-tooltip-arrow"):null,p=7*!!d,g=f.right-f.left,m=null!=(e=sW.get(a))?e:f.bottom-f.top,v=a.offset||sz,w=this.view.textDirection==th.LTR,b=f.width>s.right-s.left?w?s.left:s.right-f.width:w?Math.max(s.left,Math.min(u.left-14*!!d+v.x,s.right-g)):Math.min(Math.max(s.left,u.left-g+14*!!d-v.x),s.right-g),y=this.above[l];!h.strictSide&&(y?u.top-m-p-v.ys.bottom)&&y==s.bottom-u.bottom>u.top-s.top&&(y=this.above[l]=!y);let x=(y?u.top-s.top:s.bottom-u.bottom)-p;if(xb&&t.topk&&(k=y?t.top-m-2-p:t.bottom+p+2);if("absolute"==this.position?(c.style.top=(k-t.parent.top)/r+"px",sV(c,(b-t.parent.left)/n)):(c.style.top=k/r+"px",sV(c,b/n)),d){let t=u.left+(w?v.x:-v.x)-(b+14-7);d.style.left=t/n+"px"}!0!==a.overlap&&o.push({left:b,top:k,right:S,bottom:k+m}),c.classList.toggle("cm-tooltip-above",y),c.classList.toggle("cm-tooltip-below",!y),a.positioned&&a.positioned(t.space)}}maybeMeasure(){if(this.manager.tooltips.length&&(this.view.inView&&this.view.requestMeasure(this.measureReq),this.inView!=this.view.inView)&&(this.inView=this.view.inView,!this.inView))for(let t of this.manager.tooltipViews)t.dom.style.top=sP}},{eventObservers:{scroll(){this.maybeMeasure()}}});function sV(t,e){let i=parseInt(t.style.left,10);(isNaN(i)||Math.abs(e-i)>1)&&(t.style.left=e+"px")}let s_=i_.baseTheme({".cm-tooltip":{zIndex:500,boxSizing:"border-box"},"&light .cm-tooltip":{border:"1px solid #bbb",backgroundColor:"#f5f5f5"},"&light .cm-tooltip-section:not(:first-child)":{borderTop:"1px solid #bbb"},"&dark .cm-tooltip":{backgroundColor:"#333338",color:"white"},".cm-tooltip-arrow":{height:"7px",width:"14px",position:"absolute",zIndex:-1,overflow:"hidden","&:before, &:after":{content:"''",position:"absolute",width:0,height:0,borderLeft:"7px solid transparent",borderRight:"7px solid transparent"},".cm-tooltip-above &":{bottom:"-7px","&:before":{borderTop:"7px solid #bbb"},"&:after":{borderTop:"7px solid #f5f5f5",bottom:"1px"}},".cm-tooltip-below &":{top:"-7px","&:before":{borderBottom:"7px solid #bbb"},"&:after":{borderBottom:"7px solid #f5f5f5",top:"1px"}}},"&dark .cm-tooltip .cm-tooltip-arrow":{"&:before":{borderTopColor:"#333338",borderBottomColor:"#333338"},"&:after":{borderTopColor:"transparent",borderBottomColor:"transparent"}}}),sz={x:0,y:0},sj=l.sj.define({enables:[sF,s_]}),sq=l.sj.define({combine:t=>t.reduce((t,e)=>t.concat(e),[])});class sK{static create(t){return new sK(t)}constructor(t){this.view=t,this.mounted=!1,this.dom=document.createElement("div"),this.dom.classList.add("cm-tooltip-hover"),this.manager=new sL(t,sq,(t,e)=>this.createHostedView(t,e),t=>t.dom.remove())}createHostedView(t,e){let i=t.create(this.view);return i.dom.classList.add("cm-tooltip-section"),this.dom.insertBefore(i.dom,e?e.dom.nextSibling:this.dom.firstChild),this.mounted&&i.mount&&i.mount(this.view),i}mount(t){for(let e of this.manager.tooltipViews)e.mount&&e.mount(t);this.mounted=!0}positioned(t){for(let e of this.manager.tooltipViews)e.positioned&&e.positioned(t)}update(t){this.manager.update(t)}destroy(){var t;for(let e of this.manager.tooltipViews)null==(t=e.destroy)||t.call(e)}passProp(t){let e;for(let i of this.manager.tooltipViews){let s=i[t];if(void 0!==s){if(void 0===e)e=s;else if(e!==s)return}}return e}get offset(){return this.passProp("offset")}get getCoords(){return this.passProp("getCoords")}get overlap(){return this.passProp("overlap")}get resize(){return this.passProp("resize")}}let sY=sj.compute([sq],t=>{let e=t.facet(sq);return 0===e.length?null:{pos:Math.min(...e.map(t=>t.pos)),end:Math.max(...e.map(t=>{var e;return null!=(e=t.end)?e:t.pos})),create:sK.create,above:e[0].above,arrow:e.some(t=>t.arrow)}});class s${constructor(t,e,i,s,n){this.view=t,this.source=e,this.field=i,this.setHover=s,this.hoverTime=n,this.hoverTimeout=-1,this.restartTimeout=-1,this.pending=null,this.lastMove={x:0,y:0,target:t.dom,time:0},this.checkHover=this.checkHover.bind(this),t.dom.addEventListener("mouseleave",this.mouseleave=this.mouseleave.bind(this)),t.dom.addEventListener("mousemove",this.mousemove=this.mousemove.bind(this))}update(){this.pending&&(this.pending=null,clearTimeout(this.restartTimeout),this.restartTimeout=setTimeout(()=>this.startHover(),20))}get active(){return this.view.state.field(this.field)}checkHover(){if(this.hoverTimeout=-1,this.active.length)return;let t=Date.now()-this.lastMove.time;ti.bottom||e.xi.right+t.defaultCharacterWidth)return;let r=t.bidiSpans(t.state.doc.lineAt(s)).find(t=>t.from<=s&&t.to>=s),o=r&&r.dir==th.RTL?-1:1;n=e.x{this.pending==e&&(this.pending=null,i&&!(Array.isArray(i)&&!i.length)&&t.dispatch({effects:this.setHover.of(Array.isArray(i)?i:[i])}))},e=>tF(t.state,e,"hover tooltip"))}else r&&!(Array.isArray(r)&&!r.length)&&t.dispatch({effects:this.setHover.of(Array.isArray(r)?r:[r])})}get tooltip(){let t=this.view.plugin(sF),e=t?t.manager.tooltips.findIndex(t=>t.create==sK.create):-1;return e>-1?t.manager.tooltipViews[e]:null}mousemove(t){var e,i;this.lastMove={x:t.clientX,y:t.clientY,target:t.target,time:Date.now()},this.hoverTimeout<0&&(this.hoverTimeout=setTimeout(this.checkHover,this.hoverTime));let{active:s,tooltip:n}=this;if(s.length&&n&&!function(t,e){let{left:i,right:s,top:n,bottom:r}=t.getBoundingClientRect(),o;if(o=t.querySelector(".cm-tooltip-arrow")){let t=o.getBoundingClientRect();n=Math.min(t.top,n),r=Math.max(t.bottom,r)}return e.clientX>=i-4&&e.clientX<=s+4&&e.clientY>=n-4&&e.clientY<=r+4}(n.dom,t)||this.pending){let{pos:n}=s[0]||this.pending,r=null!=(i=null==(e=s[0])?void 0:e.end)?i:n;(n==r?this.view.posAtCoords(this.lastMove)!=n:!function(t,e,i,s,n){let r=t.scrollDOM.getBoundingClientRect(),o=t.documentTop+t.documentPadding.top+t.contentHeight;if(r.left>s||r.rightn||Math.min(r.bottom,o)=e&&l<=i}(this.view,n,r,t.clientX,t.clientY))&&(this.view.dispatch({effects:this.setHover.of([])}),this.pending=null)}}mouseleave(t){clearTimeout(this.hoverTimeout),this.hoverTimeout=-1;let{active:e}=this;if(e.length){let{tooltip:e}=this;e&&e.dom.contains(t.relatedTarget)?this.watchTooltipLeave(e.dom):this.view.dispatch({effects:this.setHover.of([])})}}watchTooltipLeave(t){let e=i=>{t.removeEventListener("mouseleave",e),this.active.length&&!this.view.dom.contains(i.relatedTarget)&&this.view.dispatch({effects:this.setHover.of([])})};t.addEventListener("mouseleave",e)}destroy(){clearTimeout(this.hoverTimeout),clearTimeout(this.restartTimeout),this.view.dom.removeEventListener("mouseleave",this.mouseleave),this.view.dom.removeEventListener("mousemove",this.mousemove)}}function sU(t,e={}){let i=l.Pe.define(),s=l.sU.define({create:()=>[],update(t,s){if(t.length&&(e.hideOnChange&&(s.docChanged||s.selection)?t=[]:e.hideOn&&(t=t.filter(t=>!e.hideOn(s,t))),s.docChanged)){let e=[];for(let i of t){let t=s.changes.mapPos(i.pos,-1,l.iR.TrackDel);if(null!=t){let n=Object.assign(Object.create(null),i);n.pos=t,null!=n.end&&(n.end=s.changes.mapPos(n.end)),e.push(n)}}t=e}for(let e of s.effects)e.is(i)&&(t=e.value),e.is(sJ)&&(t=[]);return t},provide:t=>sq.from(t)});return{active:s,extension:[s,tj.define(n=>new s$(n,t,s,i,e.hoverTime||300)),sY]}}function sG(t,e){let i=t.plugin(sF);if(!i)return null;let s=i.manager.tooltips.indexOf(e);return s<0?null:i.manager.tooltipViews[s]}function sX(t){return t.facet(sq).some(t=>t)}let sJ=l.Pe.define(),sQ=sJ.of(null);function sZ(t){let e=t.plugin(sF);e&&e.maybeMeasure()}let s0=l.sj.define({combine(t){let e,i;for(let s of t)e=e||s.topContainer,i=i||s.bottomContainer;return{topContainer:e,bottomContainer:i}}});function s1(t){return t?[s0.of(t)]:[]}function s2(t,e){let i=t.plugin(s3),s=i?i.specs.indexOf(e):-1;return s>-1?i.panels[s]:null}let s3=tj.fromClass(class{constructor(t){this.input=t.state.facet(s5),this.specs=this.input.filter(t=>t),this.panels=this.specs.map(e=>e(t));let e=t.state.facet(s0);for(let i of(this.top=new s8(t,!0,e.topContainer),this.bottom=new s8(t,!1,e.bottomContainer),this.top.sync(this.panels.filter(t=>t.top)),this.bottom.sync(this.panels.filter(t=>!t.top)),this.panels))i.dom.classList.add("cm-panel"),i.mount&&i.mount()}update(t){let e=t.state.facet(s0);this.top.container!=e.topContainer&&(this.top.sync([]),this.top=new s8(t.view,!0,e.topContainer)),this.bottom.container!=e.bottomContainer&&(this.bottom.sync([]),this.bottom=new s8(t.view,!1,e.bottomContainer)),this.top.syncClasses(),this.bottom.syncClasses();let i=t.state.facet(s5);if(i!=this.input){let e=i.filter(t=>t),s=[],n=[],r=[],o=[];for(let i of e){let e=this.specs.indexOf(i),l;e<0?(l=i(t.view),o.push(l)):(l=this.panels[e]).update&&l.update(t),s.push(l),(l.top?n:r).push(l)}for(let t of(this.specs=e,this.panels=s,this.top.sync(n),this.bottom.sync(r),o))t.dom.classList.add("cm-panel"),t.mount&&t.mount()}else for(let e of this.panels)e.update&&e.update(t)}destroy(){this.top.sync([]),this.bottom.sync([])}},{provide:t=>i_.scrollMargins.of(e=>{let i=e.plugin(t);return i&&{top:i.top.scrollMargin(),bottom:i.bottom.scrollMargin()}})});class s8{constructor(t,e,i){this.view=t,this.top=e,this.container=i,this.dom=void 0,this.classes="",this.panels=[],this.syncClasses()}sync(t){for(let e of this.panels)e.destroy&&0>t.indexOf(e)&&e.destroy();this.panels=t,this.syncDOM()}syncDOM(){if(0==this.panels.length){this.dom&&(this.dom.remove(),this.dom=void 0);return}if(!this.dom){this.dom=document.createElement("div"),this.dom.className=this.top?"cm-panels cm-panels-top":"cm-panels cm-panels-bottom",this.dom.style[this.top?"top":"bottom"]="0";let t=this.container||this.view.dom;t.insertBefore(this.dom,this.top?t.firstChild:null)}let t=this.dom.firstChild;for(let e of this.panels)if(e.dom.parentNode==this.dom){for(;t!=e.dom;)t=s4(t);t=t.nextSibling}else this.dom.insertBefore(e.dom,t);for(;t;)t=s4(t)}scrollMargin(){return!this.dom||this.container?0:Math.max(0,this.top?this.dom.getBoundingClientRect().bottom-Math.max(0,this.view.scrollDOM.getBoundingClientRect().top):Math.min(innerHeight,this.view.scrollDOM.getBoundingClientRect().bottom)-this.dom.getBoundingClientRect().top)}syncClasses(){if(this.container&&this.classes!=this.view.themeClasses){for(let t of this.classes.split(" "))t&&this.container.classList.remove(t);for(let t of(this.classes=this.view.themeClasses).split(" "))t&&this.container.classList.add(t)}}}function s4(t){let e=t.nextSibling;return t.remove(),e}let s5=l.sj.define({enables:s3});function s9(t,e){let i,s=new Promise(t=>i=t),n=t=>(function(t,e,i){let s=e.content?e.content(t,()=>o(null)):null;if(!s){if(s=(0,g.A)("form"),e.input){let t=(0,g.A)("input",e.input);/^(text|password|number|email|tel|url)$/.test(t.type)&&t.classList.add("cm-textfield"),t.name||(t.name="input"),s.appendChild((0,g.A)("label",(e.label||"")+": ",t))}else s.appendChild(document.createTextNode(e.label||""));s.appendChild(document.createTextNode(" ")),s.appendChild((0,g.A)("button",{class:"cm-button",type:"submit"},e.submitLabel||"OK"))}let n="FORM"==s.nodeName?[s]:s.querySelectorAll("form");for(let t=0;t{27==t.keyCode?(t.preventDefault(),o(null)):13==t.keyCode&&(t.preventDefault(),o(e))}),e.addEventListener("submit",t=>{t.preventDefault(),o(e)})}let r=(0,g.A)("div",s,(0,g.A)("button",{onclick:()=>o(null),"aria-label":t.state.phrase("close"),class:"cm-dialog-close",type:"button"},["\xd7"]));function o(e){r.contains(r.ownerDocument.activeElement)&&t.focus(),i(e)}return e.class&&(r.className=e.class),r.classList.add("cm-dialog"),{dom:r,top:e.top,mount:()=>{if(e.focus){let t;(t="string"==typeof e.focus?s.querySelector(e.focus):s.querySelector("input")||s.querySelector("button"))&&"select"in t?t.select():t&&"focus"in t&&t.focus()}}}})(t,e,i);t.state.field(s7,!1)?t.dispatch({effects:nt.of(n)}):t.dispatch({effects:l.Pe.appendConfig.of(s7.init(()=>[n]))});let r=ne.of(n);return{close:r,result:s.then(e=>((t.win.queueMicrotask||(e=>t.win.setTimeout(e,10)))(()=>{t.state.field(s7).indexOf(n)>-1&&t.dispatch({effects:r})}),e))}}function s6(t,e){for(let i of t.state.field(s7,!1)||[]){let s=s2(t,i);if(s&&s.dom.classList.contains(e))return s}return null}let s7=l.sU.define({create:()=>[],update(t,e){for(let i of e.effects)i.is(nt)?t=[i.value].concat(t):i.is(ne)&&(t=t.filter(t=>t!=i.value));return t},provide:t=>s5.computeN([t],e=>e.field(t))}),nt=l.Pe.define(),ne=l.Pe.define();class ni extends l.FB{compare(t){return this==t||this.constructor==t.constructor&&this.eq(t)}eq(t){return!1}destroy(t){}}ni.prototype.elementClass="",ni.prototype.toDOM=void 0,ni.prototype.mapMode=l.iR.TrackBefore,ni.prototype.startSide=ni.prototype.endSide=-1,ni.prototype.point=!0;let ns=l.sj.define(),nn=l.sj.define(),nr={class:"",renderEmptyElements:!1,elementStyle:"",markers:()=>l.om.empty,lineMarker:()=>null,widgetMarker:()=>null,lineMarkerChange:null,initialSpacer:null,updateSpacer:null,domEventHandlers:{},side:"before"},no=l.sj.define();function nl(t){return[na(),no.of({...nr,...t})]}let nh=l.sj.define({combine:t=>t.some(t=>t)});function na(t){let e=[nc];return t&&!1===t.fixed&&e.push(nh.of(!0)),e}let nc=tj.fromClass(class{constructor(t){for(let e of(this.view=t,this.domAfter=null,this.prevViewport=t.viewport,this.dom=document.createElement("div"),this.dom.className="cm-gutters cm-gutters-before",this.dom.setAttribute("aria-hidden","true"),this.dom.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.gutters=t.state.facet(no).map(e=>new np(t,e)),this.fixed=!t.state.facet(nh),this.gutters))"after"==e.config.side?this.getDOMAfter().appendChild(e.dom):this.dom.appendChild(e.dom);this.fixed&&(this.dom.style.position="sticky"),this.syncGutters(!1),t.scrollDOM.insertBefore(this.dom,t.contentDOM)}getDOMAfter(){return this.domAfter||(this.domAfter=document.createElement("div"),this.domAfter.className="cm-gutters cm-gutters-after",this.domAfter.setAttribute("aria-hidden","true"),this.domAfter.style.minHeight=this.view.contentHeight/this.view.scaleY+"px",this.domAfter.style.position=this.fixed?"sticky":"",this.view.scrollDOM.appendChild(this.domAfter)),this.domAfter}update(t){if(this.updateGutters(t)){let e=this.prevViewport,i=t.view.viewport,s=Math.min(e.to,i.to)-Math.max(e.from,i.from);this.syncGutters(s<(i.to-i.from)*.8)}if(t.geometryChanged){let t=this.view.contentHeight/this.view.scaleY+"px";this.dom.style.minHeight=t,this.domAfter&&(this.domAfter.style.minHeight=t)}this.view.state.facet(nh)!=!this.fixed&&(this.fixed=!this.fixed,this.dom.style.position=this.fixed?"sticky":"",this.domAfter&&(this.domAfter.style.position=this.fixed?"sticky":"")),this.prevViewport=t.view.viewport}syncGutters(t){let e=this.dom.nextSibling;t&&(this.dom.remove(),this.domAfter&&this.domAfter.remove());let i=l.om.iter(this.view.state.facet(ns),this.view.viewport.from),s=[],n=this.gutters.map(t=>new nd(t,this.view.viewport,-this.view.documentPadding.top));for(let t of this.view.viewportLineBlocks)if(s.length&&(s=[]),Array.isArray(t.type)){let e=!0;for(let r of t.type)if(r.type==P.Text&&e){for(let t of(nf(i,s,r.from),n))t.line(this.view,r,s);e=!1}else if(r.widget)for(let t of n)t.widget(this.view,r)}else if(t.type==P.Text)for(let e of(nf(i,s,t.from),n))e.line(this.view,t,s);else if(t.widget)for(let e of n)e.widget(this.view,t);for(let t of n)t.finish();t&&(this.view.scrollDOM.insertBefore(this.dom,e),this.domAfter&&this.view.scrollDOM.appendChild(this.domAfter))}updateGutters(t){let e=t.startState.facet(no),i=t.state.facet(no),s=t.docChanged||t.heightChanged||t.viewportChanged||!l.om.eq(t.startState.facet(ns),t.state.facet(ns),t.view.viewport.from,t.view.viewport.to);if(e==i)for(let e of this.gutters)e.update(t)&&(s=!0);else{s=!0;let n=[];for(let s of i){let i=e.indexOf(s);i<0?n.push(new np(this.view,s)):(this.gutters[i].update(t),n.push(this.gutters[i]))}for(let t of this.gutters)t.dom.remove(),0>n.indexOf(t)&&t.destroy();for(let t of n)"after"==t.config.side?this.getDOMAfter().appendChild(t.dom):this.dom.appendChild(t.dom);this.gutters=n}return s}destroy(){for(let t of this.gutters)t.destroy();this.dom.remove(),this.domAfter&&this.domAfter.remove()}},{provide:t=>i_.scrollMargins.of(e=>{let i=e.plugin(t);if(!i||0==i.gutters.length||!i.fixed)return null;let s=i.dom.offsetWidth*e.scaleX,n=i.domAfter?i.domAfter.offsetWidth*e.scaleX:0;return e.textDirection==th.LTR?{left:s,right:n}:{right:s,left:n}})});function nu(t){return Array.isArray(t)?t:[t]}function nf(t,e,i){for(;t.value&&t.from<=i;)t.from==i&&e.push(t.value),t.next()}class nd{constructor(t,e,i){this.gutter=t,this.height=i,this.i=0,this.cursor=l.om.iter(t.markers,e.from)}addElement(t,e,i){let{gutter:s}=this,n=(e.top-this.height)/t.scaleY,r=e.height/t.scaleY;if(this.i==s.elements.length){let e=new ng(t,r,n,i);s.elements.push(e),s.dom.appendChild(e.dom)}else s.elements[this.i].update(t,r,n,i);this.height=e.bottom,this.i++}line(t,e,i){let s=[];nf(this.cursor,s,e.from),i.length&&(s=s.concat(i));let n=this.gutter.config.lineMarker(t,e,s);n&&s.unshift(n);let r=this.gutter;(0!=s.length||r.config.renderEmptyElements)&&this.addElement(t,e,s)}widget(t,e){let i=this.gutter.config.widgetMarker(t,e.widget,e),s=i?[i]:null;for(let i of t.state.facet(nn)){let n=i(t,e.widget,e);n&&(s||(s=[])).push(n)}s&&this.addElement(t,e,s)}finish(){let t=this.gutter;for(;t.elements.length>this.i;){let e=t.elements.pop();t.dom.removeChild(e.dom),e.destroy()}}}class np{constructor(t,e){for(let i in this.view=t,this.config=e,this.elements=[],this.spacer=null,this.dom=document.createElement("div"),this.dom.className="cm-gutter"+(this.config.class?" "+this.config.class:""),e.domEventHandlers)this.dom.addEventListener(i,s=>{let n=s.target,r;if(n!=this.dom&&this.dom.contains(n)){for(;n.parentNode!=this.dom;)n=n.parentNode;let t=n.getBoundingClientRect();r=(t.top+t.bottom)/2}else r=s.clientY;let o=t.lineBlockAtHeight(r-t.documentTop);e.domEventHandlers[i](t,o,s)&&s.preventDefault()});this.markers=nu(e.markers(t)),e.initialSpacer&&(this.spacer=new ng(t,0,0,[e.initialSpacer(t)]),this.dom.appendChild(this.spacer.dom),this.spacer.dom.style.cssText+="visibility: hidden; pointer-events: none")}update(t){let e=this.markers;if(this.markers=nu(this.config.markers(t.view)),this.spacer&&this.config.updateSpacer){let e=this.config.updateSpacer(this.spacer.markers[0],t);e!=this.spacer.markers[0]&&this.spacer.update(t.view,0,0,[e])}let i=t.view.viewport;return!l.om.eq(this.markers,e,i.from,i.to)||!!this.config.lineMarkerChange&&this.config.lineMarkerChange(t)}destroy(){for(let t of this.elements)t.destroy()}}class ng{constructor(t,e,i,s){this.height=-1,this.above=0,this.markers=[],this.dom=document.createElement("div"),this.dom.className="cm-gutterElement",this.update(t,e,i,s)}update(t,e,i,s){this.height!=e&&(this.height=e,this.dom.style.height=e+"px"),this.above!=i&&(this.dom.style.marginTop=(this.above=i)?i+"px":""),!function(t,e){if(t.length!=e.length)return!1;for(let i=0;i(0,l.QR)(t,{formatNumber:String,domEventHandlers:{}},{domEventHandlers(t,e){let i=Object.assign({},t);for(let t in e){let s=i[t],n=e[t];i[t]=s?(t,e,i)=>s(t,e,i)||n(t,e,i):n}return i}})});class nb extends ni{constructor(t){super(),this.number=t}eq(t){return this.number==t.number}toDOM(){return document.createTextNode(this.number)}}function ny(t,e){return t.state.facet(nw).formatNumber(e,t.state)}let nx=no.compute([nw],t=>({class:"cm-lineNumbers",renderEmptyElements:!1,markers:t=>t.state.facet(nm),lineMarker:(t,e,i)=>i.some(t=>t.toDOM)?null:new nb(ny(t,t.state.doc.lineAt(e.from).number)),widgetMarker:(t,e,i)=>{for(let s of t.state.facet(nv)){let n=s(t,e,i);if(n)return n}return null},lineMarkerChange:t=>t.startState.facet(nw)!=t.state.facet(nw),initialSpacer:t=>new nb(ny(t,nS(t.state.doc.lines))),updateSpacer(t,e){let i=ny(e.view,nS(e.view.state.doc.lines));return i==t.number?t:new nb(i)},domEventHandlers:t.facet(nw).domEventHandlers,side:"before"}));function nk(t={}){return[nw.of(t),na(),nx]}function nS(t){let e=9;for(;e{let e=[],i=-1;for(let s of t.selection.ranges){let n=t.doc.lineAt(s.head).from;n>i&&(i=n,e.push(nC.range(n)))}return l.om.of(e)});function nM(){return nA}function nO(t){return tj.define(e=>({decorations:t.createDeco(e),update(e){this.decorations=t.updateDeco(e,this.decorations)}}),{decorations:t=>t.decorations})}let nT=L.mark({class:"cm-highlightTab"}),nD=L.mark({class:"cm-highlightSpace"}),nE=nO(new su({regexp:/\t| /g,decoration:t=>" "==t[0]?nT:nD,boundary:/\S/}));function nB(){return nE}let nR=nO(new su({regexp:/\s+$/g,decoration:L.mark({class:"cm-trailingSpace"})}));function nP(){return nR}let nL={HeightMap:io,HeightOracle:ie,MeasuredHeights:ii,QueryType:ir,ChangedRange:t2,computeOrder:ty,moveVisually:tS,clearHeightChangeFlag:it,getHeightChangeFlag:()=>e7}},90365(t,e,i){var s,n;i.d(e,{$g:()=>I,PH:()=>p,Qj:()=>s,RY:()=>R,Z6:()=>c,fI:()=>u,iX:()=>L,rr:()=>P,uY:()=>l});let r=0;class o{constructor(t,e){this.from=t,this.to=e}}class l{constructor(t={}){this.id=r++,this.perNode=!!t.perNode,this.deserialize=t.deserialize||(()=>{throw Error("This node type doesn't define a deserialize function")}),this.combine=t.combine||null}add(t){if(this.perNode)throw RangeError("Can't add per-node props to node types");return"function"!=typeof t&&(t=c.match(t)),e=>{let i=t(e);return void 0===i?null:[this,i]}}}l.closedBy=new l({deserialize:t=>t.split(" ")}),l.openedBy=new l({deserialize:t=>t.split(" ")}),l.group=new l({deserialize:t=>t.split(" ")}),l.isolate=new l({deserialize:t=>{if(t&&"rtl"!=t&&"ltr"!=t&&"auto"!=t)throw RangeError("Invalid value for isolate: "+t);return t||"auto"}}),l.contextHash=new l({perNode:!0}),l.lookAhead=new l({perNode:!0}),l.mounted=new l({perNode:!0});class h{constructor(t,e,i,s=!1){this.tree=t,this.overlay=e,this.parser=i,this.bracketed=s}static get(t){return t&&t.props&&t.props[l.mounted.id]}}let a=Object.create(null);class c{constructor(t,e,i,s=0){this.name=t,this.props=e,this.id=i,this.flags=s}static define(t){let e=t.props&&t.props.length?Object.create(null):a,i=!!t.top|2*!!t.skipped|4*!!t.error|8*(null==t.name),s=new c(t.name||"",e,t.id,i);if(t.props){for(let i of t.props)if(Array.isArray(i)||(i=i(s)),i){if(i[0].perNode)throw RangeError("Can't store a per-node prop on a node type");e[i[0].id]=i[1]}}return s}prop(t){return this.props[t.id]}get isTop(){return(1&this.flags)>0}get isSkipped(){return(2&this.flags)>0}get isError(){return(4&this.flags)>0}get isAnonymous(){return(8&this.flags)>0}is(t){if("string"==typeof t){if(this.name==t)return!0;let e=this.prop(l.group);return!!e&&e.indexOf(t)>-1}return this.id==t}static match(t){let e=Object.create(null);for(let i in t)for(let s of i.split(" "))e[s]=t[i];return t=>{for(let i=t.prop(l.group),s=-1;s<(i?i.length:0);s++){let n=e[s<0?t.name:i[s]];if(n)return n}}}}c.none=new c("",Object.create(null),0,8);class u{constructor(t){this.types=t;for(let e=0;e=e){let o=new y(r.tree,r.overlay[0].from+t.from,-1,t);(n||(n=[s])).push(w(o,e,i,!1))}}return n?A(n):s}(this,t,e)}iterate(t){let{enter:e,leave:i,from:n=0,to:r=this.length}=t,o=t.mode||0,l=(o&s.IncludeAnonymous)>0;for(let t=this.cursor(o|s.IncludeAnonymous);;){let s=!1;if(t.from<=r&&t.to>=n&&(!l&&t.type.isAnonymous||!1!==e(t))){if(t.firstChild())continue;s=!0}for(;s&&i&&(l||!t.type.isAnonymous)&&i(t),!t.nextSibling();){if(!t.parent())return;s=!0}}}prop(t){return t.perNode?this.props?this.props[t.id]:void 0:this.type.prop(t)}get propValues(){let t=[];if(this.props)for(let e in this.props)t.push([+e,this.props[e]]);return t}balance(t={}){return this.children.length<=8?this:B(c.none,this.children,this.positions,0,this.children.length,0,this.length,(t,e,i)=>new p(this.type,t,e,i,this.propValues),t.makeTree||((t,e,i)=>new p(c.none,t,e,i)))}static build(t){return function(t){var e;let{buffer:i,nodeSet:s,maxBufferLength:n=1024,reused:r=[],minRepeatType:o=s.types.length}=t,h=Array.isArray(i)?new g(i,i.length):i,a=s.types,c=0,u=0;function f(t,e,i,n,r,o,l,h,a){let c=[],u=[];for(;t.length>n;)c.push(t.pop()),u.push(e.pop()+i-r);t.push(d(s.types[l],c,u,o-r,h-o,a)),e.push(r-i)}function d(t,e,i,s,n,r,o){if(r){let t=[l.contextHash,r];o=o?[t].concat(o):[t]}if(n>25){let t=[l.lookAhead,n];o=o?[t].concat(o):[t]}return new p(t,e,i,s,o)}let v=[],w=[];for(;h.pos>0;)!function t(e,i,g,v,w,b){let{id:y,start:x,end:k,size:S}=h,C=u,A=c;if(S<0){if(h.next(),-1==S){let t=r[y];g.push(t),v.push(x-e);return}if(-3==S){c=y;return}if(-4==S){u=y;return}else throw RangeError(`Unrecognized record size: ${S}`)}let M=a[y],O,T,D=x-e;if(k-x<=n&&(T=function(t,e){let i=h.fork(),s=0,r=0,l=0,a=i.end-n,c={size:0,start:0,skip:0};s:for(let n=i.pos-t;i.pos>n;){let t=i.size;if(i.id==e&&t>=0){c.size=s,c.start=r,c.skip=l,l+=4,s+=4,i.next();continue}let h=i.pos-t;if(t<0||h=o),f=i.start;for(i.next();i.pos>h;){if(i.size<0)if(-3==i.size||-4==i.size)u+=4;else break s;else i.id>=o&&(u+=4);i.next()}r=f,s+=t,l+=u}return(e<0||s==t)&&(c.size=s,c.start=r,c.skip=l),c.size>4?c:void 0}(h.pos-i,w))){let t=new Uint16Array(T.size-T.skip),i=h.pos-T.size,n=t.length;for(;h.pos>i;)n=function t(e,i,s){let{id:n,start:r,end:l,size:a}=h;if(h.next(),a>=0&&n4){let n=h.pos-(a-4);for(;h.pos>n;)s=t(e,i,s)}i[--s]=o,i[--s]=l-e,i[--s]=r-e,i[--s]=n}else -3==a?c=n:-4==a&&(u=n);return s}(T.start,t,n);O=new m(t,k-T.start,s),D=T.start-e}else{let e=h.pos-S;h.next();let i=[],r=[],a=y>=o?y:-1,c=0,u=k;for(;h.pos>e;)a>=0&&h.id==a&&h.size>=0?(h.end<=u-n&&(f(i,r,x,c,h.end,u,a,C,A),c=i.length,u=h.end),h.next()):b>2500?function(t,e,i,r){let o=[],l=0,a=-1;for(;h.pos>e;){let{id:t,start:e,end:i,size:s}=h;if(s>4)h.next();else if(a>-1&&e=0;t-=3)e[i++]=o[t],e[i++]=o[t+1]-n,e[i++]=o[t+2]-n,e[i++]=i;i.push(new m(e,o[2]-n,s)),r.push(n-t)}}(x,e,i,r):t(x,e,i,r,a,b+1);if(a>=0&&c>0&&c-1&&c>0){let t=function(t,e){return(i,s,n)=>{let r=0,o=i.length-1,h,a;if(o>=0&&(h=i[o])instanceof p){if(!o&&h.type==t&&h.length==n)return h;(a=h.prop(l.lookAhead))&&(r=s[o]+h.length+a)}return d(t,i,s,n,r,e)}}(M,A);O=B(M,i,r,0,i.length,0,k-x,t,t)}else O=d(M,i,r,k-x,C-k,A)}g.push(O),v.push(D)}(t.start||0,t.bufferStart||0,v,w,-1,0);let b=null!=(e=t.length)?e:v.length?w[0]+v[0].length:0;return new p(a[t.topID],v.reverse(),w.reverse(),b)}(t)}}p.empty=new p(c.none,[],[],0);class g{constructor(t,e){this.buffer=t,this.index=e}get id(){return this.buffer[this.index-4]}get start(){return this.buffer[this.index-3]}get end(){return this.buffer[this.index-2]}get size(){return this.buffer[this.index-1]}get pos(){return this.index}next(){this.index-=4}fork(){return new g(this.buffer,this.index)}}class m{constructor(t,e,i){this.buffer=t,this.length=e,this.set=i}get type(){return c.none}toString(){let t=[];for(let e=0;e0)));l=r[l+3]);return o}slice(t,e,i){let s=this.buffer,n=new Uint16Array(e-t),r=0;for(let o=t,l=0;o=e&&ie;case 1:return i<=e&&s>e;case 2:return s>e;case 4:return!0}}function w(t,e,i,n){for(var r;t.from==t.to||(i<1?t.from>=e:t.from>e)||(i>-1?t.to<=e:t.to0?l.length:-1;t!=c;t+=e){let c=l[t],u=a[t]+o.from,f;if(r&s.EnterBracketed&&c instanceof p&&(f=h.get(c))&&!f.overlay&&f.bracketed&&i>=u&&i<=u+c.length||v(n,i,u,u+c.length)){if(c instanceof m){if(r&s.ExcludeBuffers)continue;let l=c.findChild(0,c.buffer.length,e,i-u,n);if(l>-1)return new C(new S(o,c,t,u),null,l)}else if(r&s.IncludeAnonymous||!c.type.isAnonymous||T(c)){let l;if(!(r&s.IgnoreMounts)&&(l=h.get(c))&&!l.overlay)return new y(l.tree,u,t,o);let a=new y(c,u,t,o);return r&s.IncludeAnonymous||!a.type.isAnonymous?a:a.nextChild(e<0?c.children.length-1:0,e,i,n,r)}}}if(r&s.IncludeAnonymous||!o.type.isAnonymous||(t=o.index>=0?o.index+e:e<0?-1:o._parent._tree.children.length,!(o=o._parent)))return null}}get firstChild(){return this.nextChild(0,1,0,4)}get lastChild(){return this.nextChild(this._tree.children.length-1,-1,0,4)}childAfter(t){return this.nextChild(0,1,t,2)}childBefore(t){return this.nextChild(this._tree.children.length-1,-1,t,-2)}prop(t){return this._tree.prop(t)}enter(t,e,i=0){let n;if(!(i&s.IgnoreOverlays)&&(n=h.get(this._tree))&&n.overlay){let r=t-this.from,o=i&s.EnterBracketed&&n.bracketed;for(let{from:t,to:i}of n.overlay)if((e>0||o?t<=r:t=r:i>r))return new y(n.tree,n.overlay[0].from+this.from,-1,this)}return this.nextChild(0,1,t,e,i)}nextSignificantParent(){let t=this;for(;t.type.isAnonymous&&t._parent;)t=t._parent;return t}get parent(){return this._parent?this._parent.nextSignificantParent():null}get nextSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index+1,1,0,4):null}get prevSibling(){return this._parent&&this.index>=0?this._parent.nextChild(this.index-1,-1,0,4):null}get tree(){return this._tree}toTree(){return this._tree}toString(){return this._tree.toString()}}function x(t,e,i,s){let n=t.cursor(),r=[];if(!n.firstChild())return r;if(null!=i){for(let t=!1;!t;)if(t=n.type.is(i),!n.nextSibling())return r}for(;;){if(null!=s&&n.type.is(s))return r;if(n.type.is(e)&&r.push(n.node),!n.nextSibling())return null==s?r:[]}}function k(t,e,i=e.length-1){for(let s=t;i>=0;s=s.parent){if(!s)return!1;if(!s.type.isAnonymous){if(e[i]&&e[i]!=s.name)return!1;i--}}return!0}class S{constructor(t,e,i,s){this.parent=t,this.buffer=e,this.index=i,this.start=s}}class C extends b{get name(){return this.type.name}get from(){return this.context.start+this.context.buffer.buffer[this.index+1]}get to(){return this.context.start+this.context.buffer.buffer[this.index+2]}constructor(t,e,i){super(),this.context=t,this._parent=e,this.index=i,this.type=t.buffer.set.types[t.buffer.buffer[i]]}child(t,e,i){let{buffer:s}=this.context,n=s.findChild(this.index+4,s.buffer[this.index+3],t,e-this.context.start,i);return n<0?null:new C(this.context,this,n)}get firstChild(){return this.child(1,0,4)}get lastChild(){return this.child(-1,0,4)}childAfter(t){return this.child(1,t,2)}childBefore(t){return this.child(-1,t,-2)}prop(t){return this.type.prop(t)}enter(t,e,i=0){if(i&s.ExcludeBuffers)return null;let{buffer:n}=this.context,r=n.findChild(this.index+4,n.buffer[this.index+3],e>0?1:-1,t-this.context.start,e);return r<0?null:new C(this.context,this,r)}get parent(){return this._parent||this.context.parent.nextSignificantParent()}externalSibling(t){return this._parent?null:this.context.parent.nextChild(this.context.index+t,t,0,4)}get nextSibling(){let{buffer:t}=this.context,e=t.buffer[this.index+3];return e<(this._parent?t.buffer[this._parent.index+3]:t.buffer.length)?new C(this.context,this._parent,e):this.externalSibling(1)}get prevSibling(){let{buffer:t}=this.context,e=this._parent?this._parent.index+4:0;return this.index==e?this.externalSibling(-1):new C(this.context,this._parent,t.findChild(e,this.index,-1,0,4))}get tree(){return null}toTree(){let t=[],e=[],{buffer:i}=this.context,s=this.index+4,n=i.buffer[this.index+3];if(n>s){let r=i.buffer[this.index+1];t.push(i.slice(s,n,r)),e.push(0)}return new p(this.type,t,e,this.to-this.from)}toString(){return this.context.buffer.childString(this.index)}}function A(t){if(!t.length)return null;let e=0,i=t[0];for(let s=1;si.from||n.to0){if(this.index-1)for(let n=e+t,r=t<0?-1:i._tree.children.length;n!=r;n+=t){let t=i._tree.children[n];if(this.mode&s.IncludeAnonymous||t instanceof m||!t.type.isAnonymous||T(t))return!1}return!0}move(t,e){if(e&&this.enterChild(t,0,4))return!0;for(;;){if(this.sibling(t))return!0;if(this.atLastNode(t)||!this.parent())return!1}}next(t=!0){return this.move(1,t)}prev(t=!0){return this.move(-1,t)}moveTo(t,e=0){for(;(this.from==this.to||(e<1?this.from>=t:this.from>t)||(e>-1?this.to<=t:this.to=0;){for(let r=t;r;r=r._parent)if(r.index==s){if(s==this.index)return r;e=r,i=n+1;break s}s=this.stack[--n]}for(let t=i;t=0;n--){if(n<0)return k(this._tree,t,s);let r=i[e.buffer[this.stack[n]]];if(!r.isAnonymous){if(t[s]&&t[s]!=r.name)return!1;s--}}return!0}}function T(t){return t.children.some(t=>t instanceof m||!t.type.isAnonymous||T(t))}let D=new WeakMap;function E(t,e){if(!t.isAnonymous||e instanceof m||e.type!=t)return 1;let i=D.get(e);if(null==i){for(let s of(i=1,e.children)){if(s.type!=t||!(s instanceof p)){i=1;break}i+=E(t,s)}D.set(e,i)}return i}function B(t,e,i,s,n,r,o,l,h){let a=0;for(let i=s;i=c)break;p+=e}if(a==n+1){if(p>c){let t=i[n];e(t.children,t.positions,0,t.children.length,s[n]+l);continue}u.push(i[n])}else{let e=s[a-1]+i[a-1].length-d;u.push(B(t,i,s,n,a,d,e,null,h))}f.push(d+l-r)}}(e,i,s,n,0),(l||h)(u,f,o)}class R{constructor(){this.map=new WeakMap}setBuffer(t,e,i){let s=this.map.get(t);s||this.map.set(t,s=new Map),s.set(e,i)}getBuffer(t,e){let i=this.map.get(t);return i&&i.get(e)}set(t,e){t instanceof C?this.setBuffer(t.context.buffer,t.index,e):t instanceof y&&this.map.set(t.tree,e)}get(t){return t instanceof C?this.getBuffer(t.context.buffer,t.index):t instanceof y?this.map.get(t.tree):void 0}cursorSet(t,e){t.buffer?this.setBuffer(t.buffer.buffer,t.index,e):this.map.set(t.tree,e)}cursorGet(t){return t.buffer?this.getBuffer(t.buffer.buffer,t.index):this.map.get(t.tree)}}class P{constructor(t,e,i,s,n=!1,r=!1){this.from=t,this.to=e,this.tree=i,this.offset=s,this.open=!!n|2*!!r}get openStart(){return(1&this.open)>0}get openEnd(){return(2&this.open)>0}static addTree(t,e=[],i=!1){let s=[new P(0,t.length,t,0,!1,i)];for(let i of e)i.to>t.length&&s.push(i);return s}static applyChanges(t,e,i=128){if(!e.length)return t;let s=[],n=1,r=t.length?t[0]:null;for(let o=0,l=0,h=0;;o++){let a=o=i)for(;r&&r.from=e.from||c<=e.to||h){let t=Math.max(e.from,l)-h,i=Math.min(e.to,c)-h;e=t>=i?null:new P(t,i,e.tree,e.offset+h,o>0,!!a)}if(e&&s.push(e),r.to>c)break;r=nnew o(t.from,t.to)):[new o(0,0)]:[new o(0,t.length)],this.createParse(t,e||[],i)}parse(t,e,i){let s=this.startParse(t,e,i);for(;;){let t=s.advance();if(t)return t}}}class N{constructor(t){this.string=t}get length(){return this.string.length}chunk(t){return this.string.slice(t)}get lineChunks(){return!1}read(t,e){return this.string.slice(t,e)}}function I(t){return(e,i,s,n)=>new _(e,t,i,s,n)}class H{constructor(t,e,i,s,n,r){this.parser=t,this.parse=e,this.overlay=i,this.bracketed=s,this.target=n,this.from=r}}function W(t){if(!t.length||t.some(t=>t.from>=t.to))throw RangeError("Invalid inner parse ranges given: "+JSON.stringify(t))}class F{constructor(t,e,i,s,n,r,o,l){this.parser=t,this.predicate=e,this.mounts=i,this.index=s,this.start=n,this.bracketed=r,this.target=o,this.prev=l,this.depth=0,this.ranges=[]}}let V=new l({perNode:!0});class _{constructor(t,e,i,s,n){this.nest=e,this.input=i,this.fragments=s,this.ranges=n,this.inner=[],this.innerDone=0,this.baseTree=null,this.stoppedAt=null,this.baseParse=t}advance(){if(this.baseParse){let t=this.baseParse.advance();if(!t)return null;if(this.baseParse=null,this.baseTree=t,this.startInner(),null!=this.stoppedAt)for(let t of this.inner)t.parse.stopAt(this.stoppedAt)}if(this.innerDone==this.inner.length){let t=this.baseTree;return null!=this.stoppedAt&&(t=new p(t.type,t.children,t.positions,t.length,t.propValues.concat([[V,this.stoppedAt]]))),t}let t=this.inner[this.innerDone],e=t.parse.advance();if(e){this.innerDone++;let i=Object.assign(Object.create(null),t.target.props);i[l.mounted.id]=new h(e,t.overlay,t.parser,t.bracketed),t.target.props=i}return null}get parsedPos(){if(this.baseParse)return 0;let t=this.input.length;for(let e=this.innerDone;e=this.stoppedAt)l=!1;else if(t.hasNode(n)){if(e){let t=e.mounts.find(t=>t.frag.from<=n.from&&t.frag.to>=n.to&&t.mount.overlay);if(t)for(let i of t.mount.overlay){let s=i.from+t.pos,r=i.to+t.pos;s>=n.from&&r<=n.to&&!e.ranges.some(t=>t.froms)&&e.ranges.push({from:s,to:r})}}l=!1}else if(i&&(r=function(t,e,i){for(let s of t){if(s.from>=i)break;if(s.to>e)return s.from<=e&&s.to>=i?2:1}return 0}(i.ranges,n.from,n.to)))l=2!=r;else if(!n.type.isAnonymous&&(s=this.nest(n,this.input))&&(n.fromnew o(t.from-n.from,t.to-n.from)):null,!!s.bracketed,n.tree,t.length?t[0].from:n.from)),s.overlay?t.length&&(i={ranges:t,depth:0,prev:i}):l=!1}}else if(e&&(h=e.predicate(n))&&(!0===h&&(h=new o(n.from,n.to)),h.from=0&&e.ranges[t].to==h.from?e.ranges[t]={from:e.ranges[t].from,to:h.to}:e.ranges.push(h)}if(l&&n.firstChild())e&&e.depth++,i&&i.depth++;else for(;!n.nextSibling();){if(!n.parent())break s;if(e&&!--e.depth){let t=K(this.ranges,e.ranges);t.length&&(W(t),this.inner.splice(e.index,0,new H(e.parser,e.parser.startParse(this.input,Y(e.mounts,t),t),e.ranges.map(t=>new o(t.from-e.start,t.to-e.start)),e.bracketed,e.target,t[0].from))),e=e.prev}!i||--i.depth||(i=i.prev)}}}}function z(t,e,i,s,n,r){if(e=t&&e.enter(i,1,s.IgnoreOverlays|s.ExcludeBuffers)||e.next(!1)||(this.done=!0)}hasNode(t){if(this.moveTo(t.from),!this.done&&this.cursor.from+this.offset==t.from&&this.cursor.tree)for(let e=this.cursor.tree;;){if(e==t.tree)return!0;if(e.children.length&&0==e.positions[0]&&e.children[0]instanceof p)e=e.children[0];else break}return!1}}class q{constructor(t){var e;if(this.fragments=t,this.curTo=0,this.fragI=0,t.length){let i=this.curFrag=t[0];this.curTo=null!=(e=i.tree.prop(V))?e:i.to,this.inner=new j(i.tree,-i.offset)}else this.curFrag=this.inner=null}hasNode(t){for(;this.curFrag&&t.from>=this.curTo;)this.nextFrag();return this.curFrag&&this.curFrag.from<=t.from&&this.curTo>=t.to&&this.inner.hasNode(t)}nextFrag(){var t;if(this.fragI++,this.fragI==this.fragments.length)this.curFrag=this.inner=null;else{let e=this.curFrag=this.fragments[this.fragI];this.curTo=null!=(t=e.tree.prop(V))?t:e.to,this.inner=new j(e.tree,-e.offset)}}findMounts(t,e){var i;let s=[];if(this.inner){this.inner.cursor.moveTo(t,1);for(let t=this.inner.cursor.node;t;t=t.parent){let n=null==(i=t.tree)?void 0:i.prop(l.mounted);if(n&&n.parser==e)for(let e=this.fragI;e=t.to)break;i.tree==this.curFrag.tree&&s.push({frag:i,pos:t.from-i.offset,mount:n})}}}return s}}function K(t,e){let i=null,s=e;for(let n=1,r=0;n=h)break;!(t.to<=l)&&(i||(s=i=e.slice()),t.fromh&&i.splice(r+1,0,new o(h,t.to))):t.to>h?i[r--]=new o(h,t.to):i.splice(r--,1))}}return s}function Y(t,e){let i=[];for(let{pos:s,mount:n,frag:r}of t){let t=s+(n.overlay?n.overlay[0].from:0),l=t+n.tree.length,h=Math.max(r.from,t),a=Math.min(r.to,l);if(n.overlay){let l=function(t,e,i,s){let n=0,r=0,l=!1,h=!1,a=-1e9,c=[];for(;;){let u=n==t.length?1e9:l?t[n].to:t[n].from,f=r==e.length?1e9:h?e[r].to:e[r].from;if(l!=h){let t=Math.max(a,i),e=Math.min(u,f,s);tnew o(t.from+s,t.to+s)),h,a);for(let e=0,s=h;;e++){let o=e==l.length,h=o?a:l[e].from;if(h>s&&i.push(new P(s,h,n.tree,-t,r.from>=s||r.openStart,r.to<=h||r.openEnd)),o)break;s=l[e].to}}else i.push(new P(h,a,n.tree,-t,r.from>=t||r.openStart,r.to<=l||r.openEnd))}return i}},43720(t,e,i){i.d(e,{DM:()=>f,_A:()=>D,az:()=>u,pn:()=>h,vw:()=>r});var s=i(90365);let n=0;class r{constructor(t,e,i,s){this.name=t,this.set=e,this.base=i,this.modified=s,this.id=n++}toString(){let{name:t}=this;for(let e of this.modified)e.name&&(t=`${e.name}(${t})`);return t}static define(t,e){if(t instanceof r&&(e=t),null==e?void 0:e.base)throw Error("Can not derive from a modified tag");let i=new r("string"==typeof t?t:"?",[],null,[]);if(i.set.push(i),e)for(let t of e.set)i.set.push(t);return i}static defineModifier(t){let e=new l(t);return t=>t.modified.indexOf(e)>-1?t:l.get(t.base||t,t.modified.concat(e).sort((t,e)=>t.id-e.id))}}let o=0;class l{constructor(t){this.name=t,this.instances=[],this.id=o++}static get(t,e){if(!e.length)return t;let i=e[0].instances.find(i=>{var s,n;return i.base==t&&(s=e,n=i.modified,s.length==n.length&&s.every((t,e)=>t==n[e]))});if(i)return i;let s=[],n=new r(t.name,s,t,e);for(let t of e)t.instances.push(n);let o=function(t){let e=[[]];for(let i=0;ie.length-t.length)}(e);for(let e of t.set)if(!e.modified.length)for(let t of o)s.push(l.get(e,t));return n}}function h(t){let e=Object.create(null);for(let i in t){let s=t[i];for(let t of(Array.isArray(s)||(s=[s]),i.split(" ")))if(t){let i=[],n=2,r=t;for(let e=0;;){if("..."==r&&e>0&&e+3==t.length){n=1;break}let s=/^"(?:[^"\\]|\\.)*?"|[^\/!]+/.exec(r);if(!s)throw RangeError("Invalid path: "+t);if(i.push("*"==s[0]?"":'"'==s[0][0]?JSON.parse(s[0]):s[0]),(e+=s[0].length)==t.length)break;let o=t[e++];if(e==t.length&&"!"==o){n=0;break}if("/"!=o)throw RangeError("Invalid path: "+t);r=t.slice(e)}let o=i.length-1,l=i[o];if(!l)throw RangeError("Invalid path: "+t);let h=new c(s,n,o>0?i.slice(0,o):null);e[l]=h.sort(e[l])}}return a.add(e)}let a=new s.uY({combine(t,e){let i,s,n;for(;t||e;){if(!t||e&&t.depth>=e.depth?(n=e,e=e.next):(n=t,t=t.next),i&&i.mode==n.mode&&!n.context&&!i.context)continue;let r=new c(n.tags,n.mode,n.context);i?i.next=r:s=r,i=r}return s}});class c{constructor(t,e,i,s){this.tags=t,this.mode=e,this.context=i,this.next=s}get opaque(){return 0==this.mode}get inherit(){return 1==this.mode}sort(t){return!t||t.depth{let e=n;for(let s of t)for(let t of s.set){let s=i[t.id];if(s){e=e?e+" "+s:s;break}}return e},scope:s}}function f(t,e,i,s=0,n=t.length){let r=new d(s,Array.isArray(e)?e:[e],i);r.highlightRange(t.cursor(),s,n,"",r.highlighters),r.flush(n)}c.empty=new c([],2,null);class d{constructor(t,e,i){this.at=t,this.highlighters=e,this.span=i,this.class=""}startSpan(t,e){e!=this.class&&(this.flush(t),t>this.at&&(this.at=t),this.class=e)}flush(t){t>this.at&&this.class&&this.span(this.at,t,this.class)}highlightRange(t,e,i,n,r){let{type:o,from:l,to:h}=t;if(l>=i||h<=e)return;o.isTop&&(r=this.highlighters.filter(t=>!t.scope||t.scope(o)));let u=n,f=function(t){let e=t.type.prop(a);for(;e&&e.context&&!t.matchContext(e.context);)e=e.next;return e||null}(t)||c.empty,d=function(t,e){let i=null;for(let s of t){let t=s.style(e);t&&(i=i?i+" "+t:t)}return i}(r,f.tags);if(d&&(u&&(u+=" "),u+=d,1==f.mode&&(n+=(n?" ":"")+d)),this.startSpan(Math.max(e,l),u),f.opaque)return;let p=t.tree&&t.tree.prop(s.uY.mounted);if(p&&p.overlay){let s=t.node.enter(p.overlay[0].from+l,1),o=this.highlighters.filter(t=>!t.scope||t.scope(p.tree.type)),a=t.firstChild();for(let c=0,f=l;;c++){let d=c=g)&&t.nextSibling()););if(!d||g>i)break;(f=d.to+l)>e&&(this.highlightRange(s.cursor(),Math.max(e,d.from+l),Math.min(i,f),"",o),this.startSpan(Math.min(i,f),u))}a&&t.parent()}else if(t.firstChild()){p&&(n="");do{if(t.to<=e)continue;if(t.from>=i)break;this.highlightRange(t,e,i,n,r),this.startSpan(Math.min(i,t.to),u)}while(t.nextSibling());t.parent()}}}let p=r.define,g=p(),m=p(),v=p(m),w=p(m),b=p(),y=p(b),x=p(b),k=p(),S=p(k),C=p(),A=p(),M=p(),O=p(M),T=p(),D={comment:g,lineComment:p(g),blockComment:p(g),docComment:p(g),name:m,variableName:p(m),typeName:v,tagName:p(v),propertyName:w,attributeName:p(w),className:p(m),labelName:p(m),namespace:p(m),macroName:p(m),literal:b,string:y,docString:p(y),character:p(y),attributeValue:p(y),number:x,integer:p(x),float:p(x),bool:p(b),regexp:p(b),escape:p(b),color:p(b),url:p(b),keyword:C,self:p(C),null:p(C),atom:p(C),unit:p(C),modifier:p(C),operatorKeyword:p(C),controlKeyword:p(C),definitionKeyword:p(C),moduleKeyword:p(C),operator:A,derefOperator:p(A),arithmeticOperator:p(A),logicOperator:p(A),bitwiseOperator:p(A),compareOperator:p(A),updateOperator:p(A),definitionOperator:p(A),typeOperator:p(A),controlOperator:p(A),punctuation:M,separator:p(M),bracket:O,angleBracket:p(O),squareBracket:p(O),paren:p(O),brace:p(O),content:k,heading:S,heading1:p(S),heading2:p(S),heading3:p(S),heading4:p(S),heading5:p(S),heading6:p(S),contentSeparator:p(k),list:p(k),quote:p(k),emphasis:p(k),strong:p(k),link:p(k),monospace:p(k),strikethrough:p(k),inserted:p(),deleted:p(),changed:p(),invalid:p(),meta:T,documentMeta:p(T),annotation:p(T),processingInstruction:p(T),definition:r.defineModifier("definition"),constant:r.defineModifier("constant"),function:r.defineModifier("function"),standard:r.defineModifier("standard"),local:r.defineModifier("local"),special:r.defineModifier("special")};for(let t in D){let e=D[t];e instanceof r&&(e.name=t)}u([{tag:D.link,class:"tok-link"},{tag:D.heading,class:"tok-heading"},{tag:D.emphasis,class:"tok-emphasis"},{tag:D.strong,class:"tok-strong"},{tag:D.keyword,class:"tok-keyword"},{tag:D.atom,class:"tok-atom"},{tag:D.bool,class:"tok-bool"},{tag:D.url,class:"tok-url"},{tag:D.labelName,class:"tok-labelName"},{tag:D.inserted,class:"tok-inserted"},{tag:D.deleted,class:"tok-deleted"},{tag:D.literal,class:"tok-literal"},{tag:D.string,class:"tok-string"},{tag:D.number,class:"tok-number"},{tag:[D.regexp,D.escape,D.special(D.string)],class:"tok-string2"},{tag:D.variableName,class:"tok-variableName"},{tag:D.local(D.variableName),class:"tok-variableName tok-local"},{tag:D.definition(D.variableName),class:"tok-variableName tok-definition"},{tag:D.special(D.variableName),class:"tok-variableName2"},{tag:D.definition(D.propertyName),class:"tok-propertyName tok-definition"},{tag:D.typeName,class:"tok-typeName"},{tag:D.namespace,class:"tok-namespace"},{tag:D.className,class:"tok-className"},{tag:D.macroName,class:"tok-macroName"},{tag:D.propertyName,class:"tok-propertyName"},{tag:D.operator,class:"tok-operator"},{tag:D.comment,class:"tok-comment"},{tag:D.meta,class:"tok-meta"},{tag:D.invalid,class:"tok-invalid"},{tag:D.punctuation,class:"tok-punctuation"}])},93748(t,e,i){function s(){var t=arguments[0];"string"==typeof t&&(t=document.createElement(t));var e=1,i=arguments[1];if(i&&"object"==typeof i&&null==i.nodeType&&!Array.isArray(i)){for(var s in i)if(Object.prototype.hasOwnProperty.call(i,s)){var n=i[s];"string"==typeof n?t.setAttribute(s,n):null!=n&&(t[s]=n)}e++}for(;es})},97417(t,e,i){i.d(e,{G:()=>o});let s="u"typeof globalThis?globalThis:"u">typeof window?window:{};class o{constructor(t,e){this.rules=[];let{finish:i}=e||{};function s(t){return/^@/.test(t)?[t]:t.split(/,\s*/)}for(let e in t)!function t(e,n,r,o){let l=[],h=/^@(\w+)\b/.exec(e[0]),a=h&&"keyframes"==h[1];if(h&&null==n)return r.push(e[0]+";");for(let i in n){let o=n[i];if(/&/.test(i))t(i.split(/,\s*/).map(t=>e.map(e=>t.replace(/&/,e))).reduce((t,e)=>t.concat(e)),o,r);else if(o&&"object"==typeof o){if(!h)throw RangeError("The value of a property ("+i+") should be a primitive value.");t(s(i),o,l,a)}else null!=o&&l.push(i.replace(/_.*/,"").replace(/[A-Z]/g,t=>"-"+t.toLowerCase())+": "+o+";")}(l.length||a)&&r.push((i&&!h&&!o?e.map(i):e).join(", ")+" {"+l.join(" ")+"}")}(s(e),t[e],this.rules)}getRules(){return this.rules.join("\n")}static newName(){let t=r[s]||1;return r[s]=t+1,"ͼ"+t.toString(36)}static mount(t,e,i){let s=t[n],r=i&&i.nonce;s?r&&s.setNonce(r):s=new h(t,r),s.mount(Array.isArray(e)?e:[e],t)}}let l=new Map;class h{constructor(t,e){let i=t.ownerDocument||t,s=i.defaultView;if(!t.head&&t.adoptedStyleSheets&&s.CSSStyleSheet){let e=l.get(i);if(e)return t[n]=e;this.sheet=new s.CSSStyleSheet,l.set(i,this)}else this.styleTag=i.createElement("style"),e&&this.styleTag.setAttribute("nonce",e);this.modules=[],t[n]=this}mount(t,e){let i=this.sheet,s=0,n=0;for(let e=0;e-1&&(this.modules.splice(o,1),n--,o=-1),-1==o){if(this.modules.splice(n++,0,r),i)for(let t=0;te.adoptedStyleSheets.indexOf(this.sheet)&&(e.adoptedStyleSheets=[this.sheet,...e.adoptedStyleSheets]);else{let t="";for(let e=0;eh});var s=e(74848);e(47867);let h=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"cg_inline_svg__a",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M-79.458 32h640v480h-640z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#cg_inline_svg__a)",transform:"translate(79.458 -32)",children:[(0,s.jsx)("path",{fill:"#ff0",d:"M-119.46 32h720v480h-720z"}),(0,s.jsx)("path",{fill:"#00ca00",d:"M-119.46 32v480l480-480z"}),(0,s.jsx)("path",{fill:"red",d:"M120.54 512h480V32z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2290.68fd6bdf.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2290.68fd6bdf.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2290.68fd6bdf.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js deleted file mode 100644 index 796d85716e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 235.97e84a52.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["235"],{75318(l,i,s){s.r(i),s.d(i,{default:()=>d});var e=s(74848);s(47867);let d=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"eh_inline_svg__a",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-158.67 0H524v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#eh_inline_svg__a)",transform:"translate(148.75)scale(.94)",children:[(0,e.jsx)("path",{d:"M-180 0H844v256H-180z"}),(0,e.jsx)("path",{fill:"#107b00",d:"M-180 256H844v256H-180z"}),(0,e.jsx)("path",{fill:"#fff",d:"M-180 169.31H844v176.13H-180z"}),(0,e.jsx)("path",{fill:"#f0f",d:"M309.98 195.55c-45.202-19.423-84.107 20.644-84.063 58.085.046 39.158 38.02 80.92 86.168 62.43-34.087-10.037-48.156-35.215-48.15-60.68-.245-25.216 15.887-54.54 46.045-59.835"}),(0,e.jsx)("path",{fill:"#ff1800",d:"m363.145 294.214-25.835-18.868-25.993 18.898 9.963-30.403-26-18.87 31.984.07 9.93-30.552 9.816 30.435 32.115.005-25.924 18.735"}),(0,e.jsx)("path",{fill:"red",d:"M314.34 315.65c-50.517 17.536-88.554-20.48-89.216-59.456-.66-38.976 37.59-79.167 89.473-60.865-29.355 4.352-50.912 30.08-51.17 59.168-.196 21.994 12.812 53.345 50.913 61.152zM-179.98 0l348.61 256.62L-180 512l.002-509.38.015-2.622z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/235.97e84a52.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js deleted file mode 100644 index 2bf9fe3125..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2373.11c5538c.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2373"],{63668(l,e,d){d.r(e),d.d(e,{default:()=>i});var s=d(74848);d(47867);let i=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"zw_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,s.jsxs)("g",{clipPath:"url(#zw_inline_svg__a)",transform:"scale(.9375)",children:[(0,s.jsx)("path",{fill:"#319208",fillRule:"evenodd",d:"M0 438.86h1024v73.143H0z"}),(0,s.jsx)("path",{fill:"#de2010",fillRule:"evenodd",d:"M0 292.57h1024v73.143H0z"}),(0,s.jsx)("path",{fill:"#ffd200",fillRule:"evenodd",d:"M0 365.71h1024v73.143H0z"}),(0,s.jsx)("path",{fill:"#de2010",fillRule:"evenodd",d:"M0 146.29h1024v73.143H0z"}),(0,s.jsx)("path",{fill:"#ffd200",fillRule:"evenodd",d:"M0 73.143h1024v73.143H0z"}),(0,s.jsx)("path",{fill:"#319208",fillRule:"evenodd",d:"M0 0h1024v73.143H0z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M28.891 0v512l343.77-256z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M0 0h29.257v512H0z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M0 0v512l373.03-256z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M0 219.43h1024v73.143H0z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0v512l343.77-256z"}),(0,s.jsx)("path",{fill:"#d62419",fillRule:"evenodd",d:"m131.957 114.662 27.271 90.366 97.405.854-77.523 53.863 29.296 92.886-75.178-57.08-79.296 56.566 31.054-89.142-78.309-57.931 94.387 1.985z"}),(0,s.jsx)("path",{fill:"#f7df00",fillRule:"evenodd",stroke:"#000",strokeWidth:1.4676462,d:"M50.042 166.226c1.657-2.985 1.988-4.643 10.612-8.292 11.275-32.832 40.129-19.898 56.048 25.537 14.592 6.301 101.814 71.303 100.488 74.951-.663 3.317-11.608.664-11.608.664s-17.245 73.625-17.576 73.625c-32.171-4.311-82.249-4.975-116.411-4.311.331-5.639-9.286-42.451-9.286-42.451s-8.292-2.653 5.638-30.843c14.924-35.485 17.909-93.192-17.908-88.88z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.4676462,d:"M79.55 152.953a3.648 3.648 0 1 1-7.297 0 3.648 3.648 0 0 1 7.296 0zM115.704 183.472s-28.522 16.25-36.813 15.918M205.58 259.084c-1.99-1.659-105.791-6.633-101.484-41.788"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.4676462,d:"M120.679 259.745s11.275 6.633 20.892-10.613"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.4676462,d:"M133.28 259.414s7.96 7.296 19.568-8.622M62.644 285.95s7.295.995 8.623-3.317M97.126 328.73c0-.331-7.296-47.094-7.296-47.094 36.039 3.206 73.404 3.428 108.113 9.619"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.4676462,d:"m93.483 282.296 9.948 11.607 10.282-9.95 8.622 9.287M124.993 293.577l8.622-7.628 9.287 8.954M144.551 294.898l9.618-8.622 7.296 8.623M165.451 295.238l8.623-5.97 7.627 7.297M187.672 296.23l6.301-5.97"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.4676462,d:"m91.821 292.906 10.613 12.272 10.612-9.619 9.286 9.95 10.613-9.286 8.955 10.612 10.944-9.286s8.29 10.281 9.286 10.281 10.944-8.622 10.944-8.622l9.618 10.612 13.265-10.612"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.4676462,d:"M93.483 304.847s85.564 3.317 99.492 6.634M107.746 266.05s81.252 4.312 94.187 9.286"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.4676462,d:"M91.16 232.218c.664 4.975-5.306 22.22-11.606 28.19-8.624 6.965-7.629 21.557-7.629 21.557.995 5.97 13.93 5.306 15.588 2.322 1.326-13.598 15.918-16.583 15.918-16.583s20.231-5.637 28.854-22.551M131.95 275.33a4.311 4.311 0 1 1-8.624 0 4.311 4.311 0 0 1 8.623 0zM151.187 276.99a4.311 4.311 0 1 1-8.622.001 4.311 4.311 0 0 1 8.622 0z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2373.11c5538c.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js deleted file mode 100644 index 7acd33e6bb..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2380.d6bc17ef.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2380"],{39751(h,v,l){l.r(v),l.d(v,{default:()=>t});var d=l(74848);l(47867);let t=h=>(0,d.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,d.jsx)("defs",{children:(0,d.jsx)("clipPath",{id:"gi_inline_svg__a",children:(0,d.jsx)("path",{fillOpacity:.67,d:"M-85.24 0h682.67v512H-85.24z"})})}),(0,d.jsxs)("g",{clipPath:"url(#gi_inline_svg__a)",transform:"translate(79.91)scale(.94)",children:[(0,d.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M-254.55 0h1021.8v510.88h-1021.8z"}),(0,d.jsx)("path",{fill:"#a11011",d:"m333.287 112.305-12.743 64.988 88.98-.91-9.56-64.07"}),(0,d.jsx)("path",{fill:"#a11011",fillRule:"evenodd",d:"M276.15 77.584h27.31v6.827h-27.31zm-32.77 0h26.398v6.827H243.38zm-33.68-.454h26.398v6.37H209.7z"}),(0,d.jsx)("path",{fill:"#a11011",d:"M209.936 83.168v16.75h93.536V83.525l-93.536-.358m11.394 23.673-10.926 69.082 94.438.458-12.743-69.082m2.96 66.43"}),(0,d.jsx)("path",{fill:"#d61517",fillRule:"evenodd",d:"M-256 384.54H768.2V512H-256z"}),(0,d.jsx)("path",{fill:"#a11011",fillRule:"evenodd",d:"M82.674 175.2h347.88v26.356H82.674z"}),(0,d.jsx)("path",{fill:"#a11011",d:"m95.91 198.65-7.36 131.63-37.822.455v21.157h413.49v-21.157l-37.822.455-7.357-131.92-323.12-.628z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M204.56 234.3v21.755h5.338V234.3zm8.008 0v21.755h42.707V234.3zm45.377 0v21.755h40.038V234.3zm42.707 0v21.755h8.007V234.3zm28.001-.026v22.21h38.997v-21.736l-38.997-.475M316.67 306.19v23.548h29.36V306.19zm32.03 0v14.718h5.34V306.19zm37.37 0v14.718h5.338V306.19zm8.008 0v23.548h29.36V306.19zm-74.748-23.96v21.3h5.338v-21.3zm8.008 0v21.3h18.684v-21.3zm66.732 0v21.3h19.135v-21.3zm21.87 0v21.3h5.466v-21.3zm-98.03-80.34v5.78h102.92v-5.78zm-216.35 80.79v21.3h18.04v-21.3zm65.63-.45v22.21h18.684v-22.21zm21.354 0v22.21h5.338v-22.21zm14.666-79.88v5.325h106.1v-5.325zm-107.867.46v5.325h97.002v-5.325z"}),(0,d.jsx)("path",{fill:"#fff",d:"M313.08 200.53c-10.186.754 1.348 96.04 1.367 125.75 0 0 12.182-119.51-1.367-125.75"}),(0,d.jsx)("path",{fill:"#d61517",d:"M84.444 184.62v14.61h344.33v-14.61z"}),(0,d.jsx)("path",{fill:"#fff",d:"M196.57 200.98c-10.186.767 1.348 97.777 1.367 128.03 0 0 12.182-121.67-1.367-128.03"}),(0,d.jsx)("path",{fill:"#d61517",d:"M90.9 282.68v21.3h8.217v-21.3zm-.207 23.05v24.03h29.36l-.16-24zM51.55 331.678v18.57h410.32v-18.173zm115.61-25.488v23.226h28.45v-23.203zm34.59-.46v23.548h29.36l-.16-23.52zm77.83.46v23.548h32.547l-.16-23.52-32.388-.028m-178.307-72.366v23.12h38.887V234.32l-38.888-.495m-7.393.455v22.664h3.874v-22.18l-3.874-.485m49.156-.005v23.12h41.195V234.77l-41.196-.495m43.237.455v22.664h4.783v-22.18l-4.783-.485m132.9 24.126v21.3h27.54V259.31zm74.193.451v20.39h27.996v-19.954l-27.997-.436m-43.132.004v20.846h40.63v-20.4l-40.63-.445"}),(0,d.jsx)("path",{fill:"#fff",d:"M310.53 174.656v9.466h4.783v-9.264z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M320.083 234.28v21.755h5.238v-21.29zm51.354.45v21.755h37.71v-21.29zm41.039 0v21.755h7.514v-21.29l-7.513-.465m-92.85-24.576v22.21h23.9v-21.736zm27.688.457v21.755h42.64v-21.29zm45.134-.456v22.21h25.72v-21.736zm-190.7 70.997v21.755h12.066v-21.61zm14.56.46v21.755h14.93v-21.61zm63.27.46v21.755h19.348V282.05zm21.84 0v21.755h9.79v-21.29zM92.612 201.44v4.415h102.92v-4.415zm105.588 0v4.415h113.84v-4.415zm116.44-.46v4.415h108.91v-4.415zM92.06 258.85v21.755h27.54v-21.29zm75.556 0v21.755h25.265v-21.29zm-44.687.46v21.755h42.183l.16-21.61zm80.64-1.37v21.755h27.996l.16-21.61zm30.04 0v21.755h43.927l-.16-21.45zm46.419.461v21.755h28.45l.16-21.774zM204.018 209.7v21.755h28.906v-21.29zm30.952-.006v22.21h43.55v-21.736zm46.43.001v22.21h25.72v-21.736z"}),(0,d.jsx)("path",{fill:"#a11011",d:"m113 119.585-10.926 64.988 88.98-.91-10.015-65.438"}),(0,d.jsx)("path",{fill:"#d61517",d:"m220.62 123.84-2.718 10.65h38.052v-10.65zm38.052 0v10.65h35.334v-10.65zM217.9 137.15v10.65h13.503v-10.65zm16.204 0v10.65h43.21v-10.65zm45.91 0v10.65h16.204v-10.65zM223.3 110.53l-2.722 10.65h10.887v-10.65zm10.887 0v10.65h43.548v-10.65zm46.27 0v10.65h10.886v-10.65zM209.9 86.565v5.325h45.832v-5.325zm48.528 0v5.325h43.136v-5.325zM209.9 94.553v5.325h21.354v-5.325zm24.023 0v5.325h42.707v-5.325zm45.377 0v5.325h21.354v-5.325zm-34.7-15.975v5.325h24.023v-5.325zM84.444 177.09v5.325h21.354v-5.325zm322.976 0v5.325h21.354v-5.325zm-300.342 1.206v4.46h20.714v-4.365l-20.714-.094m48.242 1.098v3.817h17.984v-3.735l-17.983-.08"}),(0,d.jsx)("path",{fill:"#fff",d:"M198.103 173.74v10.832h5.238v-10.6l-5.237-.232"}),(0,d.jsx)("path",{fill:"#d61517",d:"M106.62 163.002v13.374h17.984v-13.088l-17.983-.286m19.117.455v12.92h9.335v-12.644zm45.512-.907v15.195h16.162v-14.87zm-15.47.65v13.264h12.6v-12.98z"}),(0,d.jsx)("path",{fill:"#a11011",d:"M173.075 175.109v6.734h20.258v-6.591l-20.258-.144m47.798-67.808-11.383-7.384h93.534l-10.47 8.293"}),(0,d.jsx)("path",{fill:"#d61517",d:"M210.92 78.578v5.325h24.023v-5.325zm65.99.455v5.325h25.388v-5.325z"}),(0,d.jsxs)("g",{fill:"#d61517",children:[(0,d.jsx)("path",{d:"M221.332 106.384v1.73h68.05v-1.693l-68.05-.036"}),(0,d.jsx)("path",{d:"M217.688 105.474v1.73h75.332v-1.693l-75.333-.036"}),(0,d.jsx)("path",{d:"M217.224 104.108v1.73h78.974v-1.693z"}),(0,d.jsx)("path",{d:"M217.224 104.108v1.73h78.974v-1.693zm-.897-1.821v1.73h82.16v-1.693z"})]}),(0,d.jsx)("path",{fill:"#d61517",d:"M227.24 179.206v3.55h16.162v-3.474zm42.326 0v3.55h13.887v-3.474zM95.696 209.7v22.664h22.08v-22.18l-22.08-.485m116.974-45.967v14.018h30.727v-13.718zm64.29 0v14.018h26.065v-13.718zm-11.033 0v14.018h7.514v-13.718l-7.513-.3"}),(0,d.jsx)("path",{fill:"#a11011",d:"M209.936 175.103v7.19h17.072v-7.036z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M175.2 177.09v5.78h21.354v-5.78zm29.36 0v5.78h21.355v-5.78z"}),(0,d.jsx)("path",{fill:"#a11011",d:"M283.668 175.559v6.734h20.714v-6.591l-20.714-.144"}),(0,d.jsx)("path",{fill:"#d61517",d:"M120.652 210.154v22.21h45.37v-21.736zm47.413.001v22.21h23.444v-21.736l-23.445-.475m46.886-60.529v12.197h40.74v-11.935l-40.74-.26m43.23.448v12.197h40.74v-11.935l-40.74-.26"}),(0,d.jsx)("path",{fill:"#a11011",fillRule:"evenodd",d:"M168.74 88.962h23.667v6.827H168.74zm-34.59-.455h26.398v7.737H134.15zm-29.13.455h20.937v6.827H105.02z"}),(0,d.jsx)("path",{fill:"#a11011",d:"m112.954 120.04-8.146-11.472 87.616.455-10.497 9.576"}),(0,d.jsx)("path",{fill:"#d61517",d:"M105.8 102.54v5.325h18.684v-5.325zm21.354 0v5.325h42.707v-5.325zm45.377 0v5.325h18.685v-5.325H172.53zM105.8 90.138v4.68h18.684v-4.68zm29.36 0v4.68h24.024v-4.68zm34.7.455v4.038h21.354v-4.037z"}),(0,d.jsx)("path",{fill:"#a11011",fillRule:"evenodd",d:"M105.02 95.79h87.387v13.654H105.02z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M108.445 149.804v10.643h34.446V150.03l-34.445-.226m36.656 0v10.643h40.495V150.03zM106.164 97.28v4.006h41.195v-3.92l-41.196-.085m4.097 38.683v11.287h14.798v-11.045l-14.797-.24m17.671 1.288v10h39.986v-9.786zm42.868-.83v11.287h12.976v-11.045l-12.976-.24m-58.72-11.462v10h33.536v-9.786zm36.42 0v10h33.912v-9.786zm-25.942-6.294v4.006H172.4v-3.92l-49.843-.085m50.967-.001v4.006h7.06v-3.92l-7.06-.085m-60.534-.001v4.006h7.97v-3.92l-7.97-.085m37.247-21.391v4.006h41.273v-3.92l-41.273-.085m-43.612 6.936v5.715h20.258v-5.592zm24.872-.194v5.26h35.89v-5.148zm39.407.194v5.07h20.148v-4.96z"}),(0,d.jsxs)("g",{fill:"#d61517",children:[(0,d.jsx)("path",{d:"M112.092 115.031v1.54h68.05v-1.506l-68.05-.033"}),(0,d.jsx)("path",{d:"M108.448 114.221v1.54h75.332v-1.506l-75.333-.032"}),(0,d.jsx)("path",{d:"M107.984 113.007v1.538h78.974v-1.505z"}),(0,d.jsx)("path",{d:"M107.984 113.007v1.538h78.974v-1.505zm-.897-1.62v1.538h82.16v-1.505z"})]}),(0,d.jsx)("path",{fill:"#d61517",d:"M339.204 178.75v4.006h15.252v-3.92l-15.252-.085m42.778-.461v4.006h22.99v-3.92l-22.99-.085m4.741-14.026v12.574h20.525v-12.306l-20.525-.27m-11.076-.453v13.028h8.39v-12.75l-8.39-.28m-51.922-.46v13.94h17.073v-13.642zm19.945-.184v14.128h10.778v-13.826l-10.78-.302"}),(0,d.jsx)("path",{fill:"#a11011",d:"M320.99 175.102v8.1h17.984v-7.926z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M285.54 177.09v5.78h23.613v-5.78zm31.484 0v5.78h20.99v-5.78zm-56.906-27.016v12.197h38.81v-11.935l-38.81-.26"}),(0,d.jsx)("path",{fill:"#a11011",fillRule:"evenodd",d:"M387.66 88.852h23.667v6.827H387.66zm-34.59-.455h26.398v7.737H353.07zm-29.13.455h20.937v6.827H323.94z"}),(0,d.jsx)("path",{fill:"#a11011",d:"m331.874 119.93-8.146-11.472 87.617.455-10.497 9.576"}),(0,d.jsx)("path",{fill:"#d61517",d:"M324.72 102.43v5.325h18.684v-5.325zm21.354 0v5.325h42.707v-5.325zm45.377 0v5.325h18.685v-5.325H391.45zM324.72 90.027v4.038h18.684v-4.038zm29.36 0v4.038h24.024v-4.038zm34.7.456v3.394h21.354v-3.394z"}),(0,d.jsx)("path",{fill:"#a11011",fillRule:"evenodd",d:"M323.94 95.68h87.387v13.653H323.94z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M326.458 149.054v11.287h36v-11.045l-36-.24m39.327-.002v11.287h38.73v-11.045l-38.73-.24M325.094 97.17v4.006h38.62v-3.92l-38.62-.085m4.096 38.683v11.287h14.798v-11.045l-14.797-.24m18.314-.002v11.287h39.342v-11.045l-39.342-.24m42.215.448v11.287h12.976v-11.045l-12.976-.24m-58.713-10.812v8.068h34.18v-7.896zm37.055 0v8.068h33.27v-7.896zm-26.585-6.934v4.006h49.843v-3.92l-49.843-.085m50.977-.001v4.006h7.06v-3.92l-7.06-.085m-60.534-.001v4.006h7.97v-3.92l-7.97-.085m35.952-21.391v4.006h42.56v-3.92l-42.56-.085m-42.322 5.006v6.36h18.97v-6.224zm22.302.456v5.903h37.177v-5.777zm40.045.185v5.715h22.08v-5.592z"}),(0,d.jsxs)("g",{fill:"#d61517",children:[(0,d.jsx)("path",{d:"M331.02 114.92v1.538h68.05v-1.505z"}),(0,d.jsx)("path",{d:"M327.376 114.11v1.538h75.332v-1.505l-75.333-.032"}),(0,d.jsx)("path",{d:"M326.912 112.896v1.538h78.974v-1.505l-78.974-.034"}),(0,d.jsx)("path",{d:"M326.912 112.896v1.538h78.974v-1.505l-78.974-.034m-.897-1.619v1.538h82.16v-1.505l-82.16-.034"})]}),(0,d.jsxs)("g",{fill:"#d61517",children:[(0,d.jsx)("path",{d:"M331.02 114.779v.39h68.05v-.383z"}),(0,d.jsx)("path",{d:"M327.376 114.572v.392h75.332v-.383l-75.333-.007"}),(0,d.jsx)("path",{d:"M326.912 114.263v.392h78.974v-.383l-78.974-.01"}),(0,d.jsx)("path",{d:"M326.912 114.263v.392h78.974v-.383l-78.974-.01m-.897-.411v.392h82.16v-.383l-82.16-.01"})]}),(0,d.jsx)("path",{fill:"gray",fillRule:"evenodd",d:"M232.07 462.6h19.954v28.965H232.07z"}),(0,d.jsx)("path",{fill:"#ffc500",fillRule:"evenodd",d:"M234.64 464.54h17.38v25.103h-17.38z"}),(0,d.jsx)("path",{fill:"gray",fillRule:"evenodd",d:"M237.86 469.68h11.586v17.38H237.86z"}),(0,d.jsx)("path",{fill:"#d61517",fillRule:"evenodd",d:"M240.44 471.62h7.08v13.517h-7.08z"}),(0,d.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,d.jsx)("path",{fill:"gray",d:"M231.443 474.208h7.724v9.01h-7.724z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M231.443 476.134h8.367v5.15h-8.367z"})]}),(0,d.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,d.jsx)("path",{fill:"gray",d:"M261.382 502.994h-9.656v-75.312h9.656z"}),(0,d.jsx)("path",{fill:"#ffc500",d:"M259.445 501.068h-5.793v-71.45h5.793z"})]}),(0,d.jsx)("path",{fill:"gray",fillRule:"evenodd",d:"m283.112 407.475-4.69 4.442-25.197-23.854 4.69-4.442z"}),(0,d.jsx)("path",{fill:"gray",fillRule:"evenodd",d:"m261.015 432.113-4.433-4.854 21.935-24.02 4.433 4.856z"}),(0,d.jsx)("path",{fill:"#ffc500",fillRule:"evenodd",d:"m254.326 388.39 3.834-3.676 23.857 22.875-3.834 3.676z"}),(0,d.jsx)("path",{fill:"#ffc500",fillRule:"evenodd",d:"m259.698 432.207-3.55-3.928 22.09-24.446 3.552 3.93z"}),(0,d.jsx)("path",{fill:"gray",fillRule:"evenodd",d:"m230.87 410.55 4.432-4.357 21.936 21.557-4.434 4.357z"}),(0,d.jsx)("path",{fill:"gray",fillRule:"evenodd",d:"m254.87 383.84 4.8 4.654-25.773 25.005-4.798-4.657z"}),(0,d.jsx)("path",{fill:"#ffc500",fillRule:"evenodd",d:"m235.31 411.494-3.738-3.74 23.268-23.268 3.74 3.74z"}),(0,d.jsx)("path",{fill:"gray",fillRule:"evenodd",d:"M254.14 336.22h5.15v62.156h-5.15z"}),(0,d.jsx)("path",{fill:"#ffc500",fillRule:"evenodd",d:"M255.01 337.05h3.54v60.114h-3.54zm-24.578 71.912 3.992-3.99 24.837 24.836-3.99 3.99z"}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(1.3 0 0 1.06 -279.63 -7.67)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(1.24 0 0 1.02 -244.64 3.97)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.92 0 0 .96 -87.88 23.93)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsx)("path",{fill:"#d61517",fillRule:"evenodd",d:"M355.98 289.23h28.04v40.45h-28.04z"}),(0,d.jsx)("rect",{width:27.829,height:33.414,x:356.11,y:273.09,fill:"#d61517",fillRule:"evenodd",ry:16.707}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(1.35 0 0 1.06 -412.97 -8.72)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(1.28 0 0 1.02 -376.99 2.92)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.95 0 0 .96 -215.77 22.88)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.83 0 0 .9 -158 36.21)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(1.33 0 0 1.06 -515.42 -8.56)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(1.26 0 0 1.02 -479.94 3.08)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.94 0 0 .96 -320.95 23.04)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.82 0 0 .9 -263.97 36.37)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsx)("path",{fill:"#a11011",d:"M233.03 322.27v2.312h6.294v-2.312zm-111.84-1.61v2.312h6.294v-2.312zm0-17.22v2.312h6.294v-2.312zm.16-16.25v2.312h6.294v-2.312zm38.3 34.11v2.312h6.294V321.3zm-.16-17.38v2.312h6.294v-2.312zm-.48-16.41v2.312h6.294v-2.312zm83.08-9.48 1.635-1.635-4.45-4.45-1.635 1.635zm29.07 44.08v2.312h6.294v-2.312zm-37.97-18.51v2.312h6.294V303.6zm-.48-16.57v2.312h6.294v-2.312zm38.45 16.89v2.312h6.294v-2.312zm.33-17.7v2.312h6.294v-2.312zm76.75 36.69v2.312h6.294v-2.312zm0-19.31v2.312h6.294V303.6zm.16-18.34v2.312h6.294v-2.312zm37.18 37.81v2.312h6.294v-2.312zm-.16-19.31v2.312h6.294v-2.312zm.16-17.86v2.312h6.294V285.9z"}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.56 0 0 .46 88.21 34.4)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.53 0 0 .45 103.13 39.5)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#a11011",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.4 0 0 .42 169.98 48.25)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.35 0 0 .4 193.94 54.09)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsx)("path",{fill:"#a11011",d:"M371.21 265.24h-2.312v6.294h2.312zm-97.88 8.82-1.635-1.635-4.45 4.45 1.635 1.635zm113.13-.16-1.635-1.635-4.45 4.45 1.635 1.635zm-28.19 4.29 1.635-1.635-4.45-4.45-1.635 1.635zm-228.9-7.53-1.635 1.635 4.45 4.45 1.635-1.635zm127.11-5.9h-2.312v6.294h2.312zm-114.15 7.26h2.312v-6.294h-2.312zm12.44 4.21 1.635 1.635 4.45-4.45-1.635-1.635zm203.86-100.37v7.006h22.902v-7.006z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M359.37 177.09v5.325h21.354v-5.325z"}),(0,d.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,d.jsxs)("g",{fill:"#a11011",transform:"matrix(.63 0 0 .48 -58.15 30.37)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",transform:"matrix(.6 0 0 .46 -41.28 35.62)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#a11011",transform:"matrix(.45 0 0 .43 34.29 44.63)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",transform:"matrix(.4 0 0 .4 61.38 50.65)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]})]}),(0,d.jsx)("path",{fill:"#a11011",d:"M244.32 176.14v7.006h25.424v-7.006z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M244.6 177.55v5.325h24.023v-5.325z"}),(0,d.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,d.jsxs)("g",{fill:"#a11011",transform:"matrix(.63 0 0 .48 -169.94 30.37)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",transform:"matrix(.6 0 0 .46 -153.07 35.62)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#a11011",transform:"matrix(.45 0 0 .43 -77.5 44.63)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]}),(0,d.jsxs)("g",{fill:"#d61517",transform:"matrix(.4 0 0 .4 -50.41 50.65)",children:[(0,d.jsx)("path",{d:"M477.98 275.98h34.57v44.3h-34.57z"}),(0,d.jsx)("rect",{width:34.311,height:36.596,x:478.13,y:258.3,ry:18.298})]})]}),(0,d.jsx)("path",{fill:"#a11011",d:"M128.32 173.9v8.407h22.342V173.9z"}),(0,d.jsx)("path",{fill:"#d61517",d:"M129.832 175.108v7.645h19.803v-7.482l-19.803-.162"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2380.d6bc17ef.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js deleted file mode 100644 index 73e0d19c85..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2399.305db162.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2399"],{36178(l,s,t){t.r(s),t.d(s,{default:()=>i});var e=t(74848);t(47867);let i=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 320 240",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"ls_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{d:"M25-60h400v300H25z",style:{fill:"#000",stroke:"none"}})})}),(0,e.jsxs)("g",{clipPath:"url(#ls_inline_svg__a)",transform:"matrix(.8 0 0 .8 -20 48)",children:[(0,e.jsx)("path",{d:"M0-60h450v300H0z",style:{fill:"#fff"}}),(0,e.jsx)("path",{d:"M0 150h450v90H0z",style:{fill:"#009543"}}),(0,e.jsx)("path",{d:"M0-60h450v90H0z",style:{fill:"#00209f"}}),(0,e.jsx)("path",{d:"M224.573 108.913c-1.504.032-2.971 1.698-2.971 1.698l.13 17.796-5.62 5.886h4.549l-.038 10.205-26.907 36.23-3.977-1.374-6.952 14.83s17.195 10.767 42.152 10.472c27.392-.325 42.274-10.969 42.274-10.969l-7.183-14.64-3.518 1.53-27.251-36.042-.039-10.51h4.549l-6.19-5.812.036-17.731s-1.54-1.602-3.044-1.57z",style:{fill:"#000",stroke:"#000",strokeWidth:".87954509px",strokeLinecap:"butt",strokeLinejoin:"miter"},transform:"translate(-30.564 -88.26)scale(1.13695)"}),(0,e.jsx)("path",{d:"M233.953 151.518H215.35s-6.753-14.228-5.659-24.175c1.115-10.128 6.903-14.919 14.6-15.004 9.098-.101 13.867 4.459 15.307 14.599 1.428 10.048-5.644 24.58-5.644 24.58z",style:{fill:"none",stroke:"#000",strokeWidth:4.39772797,strokeLinecap:"butt",strokeLinejoin:"miter",strokeMiterlimit:4,strokeDasharray:"none"},transform:"translate(-30.564 -88.26)scale(1.13695)"}),(0,e.jsx)("path",{d:"M192.05 185.434c-.304.405-2.534 4.866-2.534 4.866l3.852-.81zM194.28 191.213l-4.054 1.317 4.866 1.927zM196.106 185.535l2.027 5.982 4.968-1.42-1.318-2.838zM199.248 193.646l.71 2.433 6.59 1.622-2.636-5.576zM206.548 188.577l2.331 5.576 4.968-1.927-1.622-2.433zM209.792 196.18l.81 2.13 7.706 1.114-3.244-5.069zM217.192 190.199l2.84 4.967 7.197-2.636-.811-1.926zM221.35 196.991l1.52 2.636 8.921-.304-3.345-4.968zM230.777 190.402l2.433 4.156 5.678-2.737-1.521-2.23zM240.104 193.544l-5.677 2.839 1.52 2.433 7.604-1.217zM241.93 189.185l2.94 3.65 4.764-3.751-1.622-1.724zM250.648 191.111l-4.562 3.447 1.216 2.129 6.286-1.622zM256.933 183.913l1.115 1.622-3.142 4.664-3.244-4.157zM259.062 187.968l1.926 3.853-3.852 1.318-.304-1.825z",style:{fill:"#fff",stroke:"none"},transform:"translate(-30.564 -88.26)scale(1.13695)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2399.305db162.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js deleted file mode 100644 index 46722bb1ba..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2410.4b5baf39.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2410"],{3214(l,e,t){t.r(e),t.d(e,{default:()=>c});var s=t(74848);t(47867);let c=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"im_inline_svg__a",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M-77.62 0h682.67v512H-77.62z"})})}),(0,s.jsxs)("g",{clipPath:"url(#im_inline_svg__a)",transform:"translate(72.77)scale(.94)",children:[(0,s.jsx)("path",{fill:"#ba0000",fillRule:"evenodd",d:"M629.43 512H-102V0h731.43z"}),(0,s.jsx)("path",{fill:"#ffef00",fillOpacity:.988,fillRule:"evenodd",stroke:"#000",strokeWidth:2.204,d:"M281.02 376.01c.2-.605.603-6.844.402-6.844s-9.46-10.867-9.258-10.867 11.874 2.616 11.874 2.213c0-.402 4.63-11.47 4.63-11.672 0-.2 5.634 13.485 5.634 13.485l11.47 5.032-8.05 6.64s1.813 12.88 1.813 13.083c0 .2-8.05-7.65-8.05-7.65l-8.857 1.008s-1.206-4.025-1.608-4.427z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:2.636,d:"M218.66 206.89c-7.647 3.938-36.996 37.486-41.02 42.718-3.373 7.596-9.97 17.205-16.763 23.39-7.252 5.488-11.282 12.983-10.284 20.08-.08 8.83 4.87 14.842 8.814 21.056 2.335 2.838 5.475 4.673 8.815 4.896 6.85.905 7.458 3.014 10.887 4.32 13.505 18.39 33.653 31.95 48.163 42.69 9.25 4.876 15.68 9.75 17.885 12.412 4.248 8.112 3.466 16.022 2.884 19.908q-5.386 20.324-10.773 40.646c-1.813 11.07 7.807 8.58 8.324 6.366 4.34-5.635 10.82-1.678 20.077-34.28q6.368-8.57 12.733-17.14s4.898-1.958 4.898-2.447c7.448-8.942 1.778-14.06-2.45-15.67q-4.65-1.714-9.302-3.43s-10.773-10.772-11.263-10.772c-5.12-14.893-30.248-46.687-36.085-51.114-4.04-4.21-5.963-6.005-9.798-8.347-5.897-2.82-7.8-3.738-11.41-5.18-3.008-1.206-.867-4.507 1.045-6.016 19.903-10.834 35.68-22.875 54.778-35.118l2.938-1.96-6.856-39.175-31.83-11.264c-1.67 1.143-2.937 2.287-4.407 3.43z"}),(0,s.jsx)("path",{fill:"#ffec00",fillRule:"evenodd",d:"M245.29 413.15c.1-.402 19.923-4.025 19.923-4.025s-2.314 7.346-2.415 7.346l-19.72 5.937 2.212-9.257z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M193.64 338.51c3.824-10.163 14.438-18.21 21.568-20.43"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.437,d:"M244.58 413.32c1.28-.36 6.96-2.018 8.616-2.276 1.765-.414 3.523-.876 5.22-1.424 1.96-.4 3.186-.768 5.22-1.14 1.595-.607 3.17-1.024 4.874-1.422m-27.52 18.518c.167-.22 1.517-1.415 2.487-1.992 1.143-.36 5.05-2.018 6.527-2.276a54 54 0 0 0 4.662-1.424c1.75-.4 2.845-.768 4.663-1.14 1.422-.607 2.83-1.023 4.35-1.422"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M249.04 341.38h-.284c.89 0 .344-.074-.855 1.423-.425 1.15-4.08 3.7-6.83 3.7-1.327.142-3.367.284-4.696.284-.38 0-.9-.284-1.28-.284m13.665 53.517h1.422c1.476 0 2.957.263 4.27.284 1.423 0 2.846.404 4.27.404 1.436.203 3.167.137 4.653.348 1.666.057 3.004.386 4.738.386 1.398.053 2.152.286 3.7.286l-3.7-.286c1.398.053 2.152.286 3.7.286M239.08 434.74c.152-.222 1.39-1.415 2.276-1.992 1.047-.36 4.624-2.018 5.978-2.276a47 47 0 0 0 4.268-1.424c1.604-.4 2.606-.768 4.27-1.14 1.304-.607 2.592-1.024 3.984-1.422m5.874-41.216c-.805 2.337.238 2.924.67 3.933.75.977 2.666 2.466 5.693 3.415 1.167.314 2.064.622 3.415 1.14.894.082 1.334.305 1.992.568M153.13 299.55h.284c-.892 0-.357.058 1.14-1.14.923-1.032 1.695-1.5 2.56-2.56m14.436 23.97c.19 0 16.557-8.25 18.305-10.01 1.238-.9 2.176-1.846 3.68-2.866.967-.504 1.66-1.15 2.564-1.707.75-1.09 1.733-1.748 2.275-2.745 1.005-.87.574-1.815 1.39-2.864.384-1.075 1.105-2.885 1.34-3.87M221.95 308c.09.59-.26 2.402-.236 3.782-.057 1.6-2.115 6.543-4.603 8.02"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M192.55 307.82c.096 0 2.587.81 6.75 2.09 5.013 1.803 15.438 8.372 16.472 9.277 1.057.83 2.946 1.573 3.67 2.56 1.133.98 1.962 2.108 2.847 3.13 1.04 1.27 1.925 2.342 2.56 3.417 3.165 2.567 11.68 20.343 11.953 21.346.478.94 1.07 2.246 1.424 3.13.63.728 1.06 1.756 1.707 2.847.595 1.415 1.262 2.06 1.994 3.13.942.656 2.212 1.9 3.415 2.562 1.283 1.096 2.486 1.543 3.415 2.277 1.343.57 16.342 10.052 17.038 10.527 1.37 1.1 5.555 5.437 2.617 8.59-1.246 1.067-2.37 2.48-3.433 3.082-1.085 1.086-2.594 1.572-3.84 2.134-6.758 1.997-10.2 1.282-11.53 1.282h-1.423M159.42 274.29c1.92.752 1.146.197 2.875.984 1.162.51 1.927.522 3.07.94 1.21.387 4.597.997 6.223 2.63 1.194 1.078 2.105 1.99 3.416 2.776 1.55 1.07 2.67 1.545 4.592 2.347 1.622.607 3.435 1.28 5.075 1.338 1.705.1 2.114.014 3.75.014h3.984-3.985 3.984"}),(0,s.jsx)("path",{fill:"#ffe606",fillRule:"evenodd",stroke:"#000",strokeWidth:2.204,d:"M158.96 293.28c4.268-.284 11.383.997 11.525.997l9.393-.142c4.934-.476 6.024-2.373 6.83-3.702 1.85-2.845 3.132-3.84 4.555-5.976 2.276-1.707 5.41 2.277 5.55 2.277 7.97 7.543 1.565 16.792 1.138 17.076-3.983 3.653-4.837 3.89-7.256 1.565-2.42-2.846-3.13-4.126-5.123-5.123-3.84-1.85-11.81-.426-11.954-.426-.142 0-4.126 1.565-4.126 1.565-1.946.712-3.18 2.42-6.546 2.988-3.415.238-4.554-.094-6.262-2.845-2.276-3.557-1.14-7.827 2.278-8.253z"}),(0,s.jsx)("path",{fill:"#ffef00",fillOpacity:.988,fillRule:"evenodd",stroke:"#000",strokeWidth:2.204,d:"M381.8 120.66c-.625.122-6.26 2.828-6.162 3.004s-4.837 13.57-4.936 13.395c-.1-.177-3.54-11.634-3.89-11.436-.35.197-12.267 1.587-12.443 1.686s8.99-11.52 8.99-11.52l-1.235-12.466 9.734 3.763s10.34-7.892 10.515-7.99c.175-.1-2.722 10.765-2.722 10.765l5.218 7.226s-2.916 3.024-3.07 3.57z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:2.636,d:"M264.93 257.9c7.18 4.736 50.806 13.878 57.34 14.822 8.274-.783 19.883.257 28.605 3.148 8.337 3.632 16.845 3.472 22.542-.876 7.737-4.258 10.552-11.52 14.035-18.003 1.33-3.425 1.39-7.062-.052-10.082-2.57-6.415-1.028-7.98-1.57-11.607 9.41-20.784 11.356-44.992 13.608-62.905-.284-10.45.814-18.447 2.054-21.672 4.988-7.68 12.267-10.874 15.94-12.27q20.355-5.267 40.71-10.53c10.537-3.846 3.652-11.01 1.47-10.377-7.04-1.022-6.766-8.61-39.72-.7l-21.18-2.7s-4.11-3.31-4.536-3.07c-11.444-2.108-13.126 5.343-12.458 9.816l1.57 9.79s-4.11 14.67-3.87 15.097c-10.473 11.76-26.062 49.528-27.06 56.785-.473 6.82-3.048 5.588-2.357 12.217.026 5.18-.576 1.946 1.153 12.618.422 3.213-3.505 2.965-5.758 2.037-19.198-12.04-37.426-19.89-57.458-30.538q-1.574-.802-3.147-1.602l-30.788 25.175 5.78 33.266c1.815.895 3.433 1.44 5.15 2.16z"}),(0,s.jsx)("path",{fill:"#ffec00",fillRule:"evenodd",d:"M431.67 133.6c-.4.11-13.273-15.394-13.273-15.394s7.538-1.583 7.587-1.495l14.84 14.282z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M391.93 215.21c-10.733 1.648-22.95-3.66-28.38-8.787"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.437,d:"M432.18 134.14c-.94-.94-5.17-5.08-6.207-6.395a67 67 0 0 0-3.8-3.853c-1.308-1.51-2.23-2.4-3.55-3.992-1.31-1.09-2.447-2.26-3.63-3.55m29.63 14.91c-.275-.034-1.978-.626-2.956-1.19-.874-.82-4.234-3.41-5.183-4.573a54 54 0 0 0-3.525-3.366c-1.208-1.33-2.065-2.102-3.28-3.506-1.227-.942-2.28-1.964-3.372-3.095"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"m367.28 165.51.14.248c-.437-.777-.234-.263 1.66.047 1.21-.192 5.223 1.743 6.57 4.14.776 1.09 1.9 2.797 2.55 3.956.186.33.194.925.38 1.257m39.95-38.138-.14-.248c.187.332-.37-.66-.557-.99-.723-1.288-1.22-2.708-1.845-3.863-.697-1.24-1.043-2.68-1.74-3.92-.527-1.352-1.433-2.828-1.977-4.227-.767-1.48-1.135-2.807-1.985-4.32-.64-1.244-.806-2.015-1.565-3.366l1.565 3.367c-.64-1.245-.806-2.016-1.565-3.367m44.819 12.354c-.268-.024-1.914-.517-2.852-1.008-.827-.736-4.025-3.04-4.914-4.095a47 47 0 0 0-3.332-3.023c-1.135-1.202-1.947-1.894-3.086-3.164-1.17-.838-2.163-1.757-3.193-2.775M397.35 129.45c2.432-.444 2.432-1.64 3.1-2.51.484-1.134.843-3.534.187-6.637-.298-1.172-.47-2.105-.68-3.536-.367-.82-.388-1.312-.482-2.015M377.82 269.62l-.14-.248c.438.778.226.283-1.55-.434-1.354-.3-2.14-.743-3.487-.978m13.817-24.34c-.093-.166-15.305-10.39-17.697-11.05-1.39-.638-2.674-.99-4.3-1.804-.914-.594-1.817-.88-2.746-1.397-1.318-.122-2.372-.656-3.507-.64-1.252-.45-1.864.39-3.178.194-1.125.19-3.056.45-4.03.727m.458-24.17c.47-.366 2.222-.95 3.413-1.648 1.422-.735 6.74-1.363 9.245.082"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M365.71 231.2c-.047-.084-.562-2.652-1.486-6.91-.886-5.252-.268-17.558.013-18.904.207-1.328-.072-3.34.433-4.454.298-1.466.876-2.743 1.334-4.015.596-1.528 1.097-2.826 1.723-3.906.686-4.017 12.008-20.15 12.75-20.88a43 43 0 0 1 2.03-2.775c.325-.907 1.01-1.784 1.645-2.884.94-1.21 1.177-2.108 1.752-3.27.11-1.143.57-2.86.558-4.233.328-1.656.127-2.924.312-4.094-.16-1.45.753-19.172.826-20.01.288-1.735 2.017-7.507 6.206-6.492 1.54.565 3.32.852 4.368 1.484 1.48.413 2.642 1.49 3.743 2.3 5.052 4.913 6.115 8.264 6.766 9.423l.698 1.24M352.64 275.94l-.14-.248c.377.67.17.336-.31-1.132-.125-1.263-.515-2.97-.712-4.17-.255-1.247-.84-2.667-.68-3.536-.447-1.266-.166-2.31-.046-3.566.354-1.568.514-2.703.558-4.232.172-1.875.034-3.205.14-4.977-.494-1.46-.594-2.682-1.348-4.14-.67-1.394-1.182-2.684-1.984-4.11l-1.953-3.473 1.953 3.474-1.953-3.473"}),(0,s.jsx)("path",{fill:"#ffe606",fillRule:"evenodd",stroke:"#000",strokeWidth:2.204,d:"M369.5 267.6c-2.34-3.58-4.71-10.41-4.78-10.535l-4.727-8.118c-2.833-4.068-5.02-4.088-6.574-4.14-3.387-.218-4.884-.846-7.442-1.04-2.604-1.148-.666-5.83-.736-5.955 2.67-10.642 13.87-9.593 14.328-9.36 5.137 1.682 5.762 2.31 4.92 5.558-1.294 3.505-2.06 4.75-1.954 6.976.27 4.256 5.417 10.505 5.488 10.63.07.124 3.386 2.83 3.386 2.83 1.574 1.347 3.668 1.585 5.812 4.242 1.882 2.86 2.15 4.016.59 6.852-1.986 3.728-6.265 4.83-8.312 2.06z"}),(0,s.jsx)("path",{fill:"#ffef00",fillOpacity:.988,fillRule:"evenodd",stroke:"#000",strokeWidth:2.204,d:"M105.242 168.67c.444.457 5.795 3.69 5.888 3.51s14.004-3.387 13.91-3.208-7.793 9.333-7.435 9.518c.356.186 8.047 9.394 8.226 9.487s-14.563-1.212-14.563-1.212l-9.75 7.86-2.185-10.203s-12.266-4.328-12.445-4.42c-.178-.093 10.497-3.62 10.497-3.62l3.188-8.324s4.128.784 4.67.612z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:2.637,d:"M284.058 191.255c.03-8.6-16.22-50.106-19.01-56.09-5.187-6.492-10.676-16.774-13.035-25.654-1.527-8.963-6.322-15.994-13.08-18.378-7.8-4.14-15.418-2.517-22.75-1.88-3.595.764-6.67 2.706-8.407 5.566-3.96 5.663-6.11 5.23-8.85 7.672-22.544 3.513-43.862 15.146-60.082 23.074-8.588 5.962-15.878 9.425-19.256 10.154-9.156.033-15.816-4.306-18.997-6.613l-31.108-28.29c-8.99-6.71-11.212 2.975-9.486 4.454 3 6.45-3.496 10.375 21.172 33.613l9.344 19.197s-.518 5.25-.084 5.475c4.504 10.73 11.66 8.056 15.036 5.046l7.33-6.676s14.525-4.597 14.75-5.03c15.576 2.318 55.712-5.328 62.33-8.47 5.965-3.34 6.345-.51 11.512-4.72 4.32-2.858 1.944-.582 9.925-7.874 2.458-2.113 4.4 1.308 4.86 3.7.443 22.657 3.86 42.207 5.925 64.798q.194 1.755.385 3.51c12.64 3.99 25.285 7.978 37.926 11.967q12.332-11.53 24.664-23.06c-.244-2.007-.675-3.66-1.012-5.49z"}),(0,s.jsx)("path",{fill:"#ffec00",fillRule:"evenodd",d:"M88.737 119.85c.31.275-5.608 19.537-5.608 19.537s-5.455-5.44-5.408-5.53l3.82-20.237 7.195 6.23z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M178.78 108.395c7.258 8.077 9.51 21.205 8.194 28.556"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.437,d:"M88.917 119.143c-.27 1.302-1.416 7.108-1.95 8.696a67 67 0 0 0-1.142 5.288c-.547 1.923-.785 3.18-1.394 5.158-.194 1.694-.55 3.284-.982 4.98m-3.754-32.955c.12.25.557 1.998.622 3.125-.206 1.18-.535 5.41-.987 6.84a54 54 0 0 0-.886 4.794c-.45 1.737-.628 2.88-1.138 4.663-.116 1.543-.394 2.984-.74 4.517"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"m150.694 156.247.13-.252c-.41.79-.09.34-.868-1.415-.825-.908-1.403-5.325-.136-7.766.486-1.244 1.3-3.12 1.912-4.3.174-.335.667-.668.842-1.005M98.8 128.987l-.13.252-.525 1.01c-.68 1.31-1.596 2.502-2.22 3.657-.655 1.263-1.67 2.34-2.325 3.604-.842 1.182-1.58 2.75-2.454 3.97-.817 1.453-1.726 2.488-2.525 4.027-.69 1.217-1.244 1.78-1.958 3.153l1.96-3.153c-.692 1.217-1.246 1.78-1.96 3.153M72.44 104.386c.127.237.616 1.885.72 2.938-.163 1.095-.34 5.034-.735 6.354-.298 1.47-.55 2.96-.703 4.444-.384 1.607-.52 2.666-.957 4.314-.06 1.438-.285 2.773-.573 4.192m33.872 24.222c-1.703-1.793-2.705-1.137-3.8-1.22-1.21.217-3.416 1.23-5.653 3.48-.815.89-1.502 1.546-2.584 2.506-.485.756-.886 1.043-1.422 1.506m141.417-66.717-.13.252c.41-.792.112-.343.485 1.536.49 1.296.55 2.197 1.092 3.453M205.55 97.41c-.088.17-.31 18.495.45 20.858.226 1.513.635 2.78.846 4.587.002 1.09.257 2.002.335 3.06.62 1.17.752 2.345 1.387 3.286.31 1.294 1.347 1.346 1.903 2.553.776.837 2.05 2.31 2.815 2.973m-20.472 12.861c-.563-.192-2.01-1.34-3.247-1.953-1.395-.787-4.833-4.89-4.997-7.78"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M206.527 121.572c-.044.085-1.91 1.923-4.967 5.028-3.91 3.618-14.542 9.843-15.822 10.344-1.224.555-2.754 1.89-3.963 2.077-1.39.555-2.775.772-4.09 1.085-1.605.34-2.965.63-4.212.7-3.737 1.625-23.436.992-24.452.77a43 43 0 0 1-3.434-.178c-.936.225-2.046.13-3.313.204-1.53-.123-2.41.17-3.697.327-1.015.535-2.704 1.09-3.847 1.85-1.566.634-2.516 1.497-3.596 1.983-1.125.928-16.452 9.872-17.193 10.27-1.608.71-7.384 2.425-8.83-1.636-.372-1.597-1.107-3.244-1.152-4.467-.465-1.463-.2-3.026-.125-4.39 1.342-6.92 3.563-9.643 4.175-10.823l.656-1.263m142.437-25.449-.13.253c.353-.683.188-.325-.778.88-.987.796-2.203 2.057-3.1 2.88-.902.896-1.77 2.162-2.583 2.505-.814 1.068-1.843 1.405-2.958 1.992-1.506.563-2.543 1.05-3.846 1.85-1.664.885-2.7 1.73-4.24 2.61-.95 1.213-1.918 1.967-2.725 3.395-.8 1.324-1.597 2.46-2.35 3.91l-1.837 3.537 1.837-3.537-1.837 3.537m11.75 73.122.263-.506c-.485.935-.315.69.14-.888.005-1.892.454-4.18.473-5.85.285-1.766.574-3.675.592-5.464-.107-2.094-.104-3.97-.417-5.99-.024-1.857-.24-3.784-.296-5.605-.035-1.803-.17-3.35-.56-5.1-.037-1.31-.118-3.11-.437-4.716.17-1.267-.19-2.432-.458-3.445-.49-1.95-.68-3.09-1.195-5.11-.31-1.084-.615-2.468-1.082-4.09-.17-1.537-.992-3.533-1.326-4.858-.457-.974-.918-2.294-1.095-3.453-.478-1.07-1.16-2.375-1.345-3.585-.504-.924-1.04-2.36-1.598-3.718-.48-1.116-.834-2.49-1.345-3.584-.517-1.38-1.147-2.56-1.468-3.97-.493-.476-.605-1-.87-1.412"}),(0,s.jsx)("path",{fill:"#ffe606",fillRule:"evenodd",stroke:"#000",strokeWidth:2.204,d:"M234.893 98.47c-1.714 3.92-6.13 9.644-6.195 9.77l-4.202 8.402c-1.85 4.598-.67 6.44.137 7.767 1.673 2.952 1.967 4.548 3.205 6.795.467 2.807-4.512 3.75-4.578 3.877-10.366 3.596-15.623-6.35-15.68-6.86-1.406-5.218-1.222-6.085 1.956-7.16 3.64-.837 5.104-.878 6.907-2.187 3.412-2.557 5.82-10.286 5.887-10.413.065-.126.512-4.383.512-4.383.266-2.056-.683-3.938.365-7.188 1.363-3.14 2.182-3.998 5.41-4.246 4.207-.38 7.472 2.596 6.276 5.825z"}),(0,s.jsx)("path",{fill:"#ffef00",fillOpacity:.987,fillRule:"evenodd",stroke:"#000",strokeWidth:2.204,d:"M221.29 199.65c-1.566-1.422 29.458 11.24 33.726 11.385 5.836-2.134 29.886-22.484 29.886-22.484.237 1.993 1.09 7.163 3.414 8.255-9.296 7.543-17.74 14.8-27.037 22.34.663 11.955-1.52 24.62 4.552 37.998 0 0-7.256.14-7.256 0-6.404-6.404-8.682-37.284-8.682-37.284-10.198-4.555-20.398-8.966-30.596-13.52 1.47-.95 2.656-3.89 1.992-6.69z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:2.204,d:"M250.81 231.3c.496-.36-5.596 2.83-7.16 3.63-28.186 15.036-42.69 36.906-43.594 37.732-.487.932-1.384 2.174-2.204 3.392-.66 1.02-1.61 2.076-2.234 3.108-.864 1.196-2.68 3.558-3.67 4.606-.124.676.47-.23.276.22m77.846-70.558c-.547-.277 5.077 3.682 6.505 4.707 26.26 18.187 52.344 21.082 53.492 21.507 1.05.007 2.566.236 4.023.41 1.21.12 2.583.48 3.787.563 1.458.22 4.39.754 5.775 1.157.656-.2-.42-.312.067-.346"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2410.4b5baf39.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js deleted file mode 100644 index a1dedc9fa8..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2427.2406cc45.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2427"],{50166(s,c,t){t.r(c),t.d(c,{default:()=>r});var e=t(74848);t(47867);let r=s=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"mp_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,e.jsxs)("g",{clipPath:"url(#mp_inline_svg__a)",children:[(0,e.jsx)("path",{fill:"#0071bc",fillRule:"evenodd",d:"M-160 0h960v480h-960z"}),(0,e.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:1.8570921599999999,d:"M369.927 365.661s15.223-16.1 29.86-13.027c4.392-16.98 20.932-18.297 20.932-18.297s-1.61-18.736 19.615-22.834c.585-12.735 13.467-23.274 13.467-23.274s-2.635-19.76 10.832-24.298c-8.198-15.662 2.78-27.08 2.634-27.372s-13.905-24.738-1.61-31.764c-13.027-10.978-8.782-23.42-8.782-23.42s-14.2-3.66-9.076-20.64c-11.71-2.049-14.052-20.931-14.052-20.931s-18.004 3.659-20.2-12.004c-11.856 1.903-13.174-9.806-13.32-9.806s-23.567 6.294-28.25-11.418c-9.075 4.684-13.028-3.66-13.028-3.66s-13.027 6.441-20.785-6c-15.516 9.66-24.152-.44-24.152-.44s-20.346 13.467-27.08 3.074c-12.003 12.15-22.688 6.88-22.688 6.88s-9.075 16.1-23.713 12.002c-3.366 14.93-20.2 15.223-20.2 15.223s1.757 13.174-18.443 16.687c-2.634 15.516-13.173 18.15-13.173 18.15s1.024 15.078-8.49 19.907c3.366 8.49-5.416 18.883-5.416 18.883s9.368 11.71-3.367 24.884c12.296 3.22 3.367 24.445 3.367 24.445s16.98 7.611 6.294 21.663c12.15 3.953 8.343 13.613 8.49 19.322 7.758 3.513 14.637 1.757 11.271 17.419 23.86 2.635 12.588 15.809 12.588 15.809s11.124.439 6.734 9.222c20.346-.44 23.273 15.223 23.273 15.223s18.883-4.977 21.372 2.342c2.488 7.319-8.197 56.647-8.197 56.647s-15.955 0-27.812-12.734c-27.81-.732-21.663-19.029-22.103-19.029-.439 0-9.222 3.367-13.76-11.856-18.59 3.806-18.004-11.856-18.15-12.002s-8.343-3.806-5.27-11.564c-19.174 1.756-17.71-16.98-17.71-16.98-4.197-1.707-5.758-5.61-5.124-9.514-2.488-.878-19.468-1.17-10.685-23.566-16.248-9.807-6.148-21.078-6.148-21.078s-22.396-11.563-5.123-24.883c-12.882-19.029 1.024-28.543 1.024-28.543s-17.858-18.151.293-31.032c-2.927-27.519 13.467-34.106 13.467-34.106s-8.636-22.395 14.784-31.764c1.463-22.688 17.858-23.273 17.858-23.273s.439-18.005 26.201-16.248c4.977-16.1 22.542-12.881 22.542-12.881s5.416-19.468 29.275-10.1c12.15-23.713 30.154-11.564 30.154-11.564s11.417-7.465 17.126-5.123c7.249-12.457 22.68-.483 32.66 1.928 3.615-1.406 16.522-11.15 26.476 1.146 13.174-8.636 24.445 6.88 24.445 6.88s18.15-9.221 26.64 11.856c38.498-3.513 32.935 21.664 32.935 21.664s30.3-6.88 23.713 23.273c27.519 1.903 24.738 20.054 24.738 20.054s17.418 13.174 9.806 25.03c15.516.732 9.807 15.662 9.807 15.662s11.856 4.538 2.05 22.982c22.687 18.15 4.39 36.155 4.244 36.009s12.15 14.637 1.025 31.617c3.367 26.933-10.246 33.813-10.246 33.813s3.513 17.419-11.71 22.396c-.293 20.492-19.615 22.981-19.615 22.981s5.124 8.902-14.051 18.27c-.757 13.712-20.786 14.812-20.786 14.812s-1.903 25.176-27.373 18.443c-6.181 20.2-36.008 14.198-36.593 13.905s-5.709-43.327-5.709-43.474z"}),(0,e.jsx)("path",{fill:"#217900",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:1.8570921599999999,d:"M184.94 124.083c.074 0 6.455 5.534 5.264 13.875-1.192 8.34-6.009 19.935-5.04 28.573.591 3.463.367 9.669.367 9.669s-5.784-8.22-5.859-17.008 6.264-17.131 6.264-23.61-1.145-11.648-.996-11.5zM181.772 126.572s-8.373 7.993-9.451 15.761c-.797 4.004-1.106 22.662-1.2 30.943-.188 2.54-1.24 12.57-1.464 16.218-.224 3.65 6.159-6.229 6.524-14.272-.2-8.325-.2-25.86.646-28.496.753-3.387.59-7.13 1.754-10.528 1.54-4.715 3.266-9.552 3.191-9.626z"}),(0,e.jsxs)("g",{fill:"#ffd200",fillRule:"evenodd",stroke:"#ef8a10",children:[(0,e.jsx)("path",{strokeWidth:1.8576071200000002,d:"M365.965 100.453s10.856-5.008 13.96-14.335-9.396-9.416-11.047-6.451c-1.651 2.964 1.408 10.345.62 12.296-.788 1.952-5.204 6.662-3.533 8.49z"}),(0,e.jsx)("path",{strokeWidth:2.47736633,d:"M269.745 103.855s7.048-9.657 5.22-19.316c-1.827-9.657-12.79-3.654-12.79-.26 0 3.393 6.265 8.352 6.526 10.44.26 2.088-1.305 8.353 1.044 9.136zM250.691 109.599s7.048-9.658 5.22-19.316c-1.827-9.658-12.79-3.655-12.79-.261s6.265 8.352 6.526 10.44c.261 2.089-1.305 8.353 1.044 9.136zM229.55 116.124s7.047-9.658 5.22-19.316c-1.828-9.658-12.79-3.655-12.79-.261s6.264 8.352 6.525 10.44c.261 2.089-1.305 8.353 1.044 9.136zM214.672 131.001s7.047-9.657 5.22-19.316c-1.827-9.657-12.79-3.654-12.79-.26 0 3.392 6.264 8.352 6.526 10.44.26 2.088-1.306 8.353 1.044 9.136zM199.01 145.358s7.048-9.658 5.22-19.316c-1.826-9.658-12.789-3.655-12.789-.261s6.264 8.352 6.525 10.44c.261 2.089-1.305 8.353 1.045 9.136z"}),(0,e.jsx)("path",{strokeWidth:1.8576071200000002,d:"M235.018 61.727s-9.385 7.406-10.222 17.2c-.837 9.793 11.336 6.959 12.248 3.69.913-3.268-3.787-9.73-3.477-11.81.31-2.082 3.504-7.695 1.451-9.08zM266.34 52.068s-9.385 7.407-10.222 17.2 11.336 6.959 12.249 3.69c.912-3.268-3.788-9.73-3.478-11.81.31-2.082 3.504-7.694 1.451-9.08zM149.617 136.623s1.982 11.79 10.167 17.233c8.185 5.442 11.552-6.595 9.125-8.966s-10.352-1.357-12.028-2.63-5.062-6.77-7.264-5.637zM133.974 176.656s.097 11.956 7.32 18.622c7.224 6.665 12.449-4.689 10.426-7.414s-10.009-2.973-11.463-4.494c-1.454-1.522-3.93-7.485-6.283-6.714zM170.064 221.381s-4.267-11.169-13.364-14.891c-9.097-3.723-10.026 8.741-7.18 10.588 2.848 1.847 10.417-.71 12.311.207 1.894.918 6.298 5.64 8.233 4.096zM162.567 202.053s7.234-9.519 5.595-19.21-12.716-3.903-12.782-.51 6.1 8.472 6.32 10.565-1.467 8.326.867 9.154zM388.15 110.11s10.856-5.008 13.959-14.334-9.395-9.417-11.047-6.452c-1.65 2.964 1.409 10.345.62 12.297-.788 1.95-5.204 6.661-3.533 8.489zM420.975 126.484s6.386-10.107 3.917-19.622c-2.47-9.514-13.006-2.79-12.779.595.227 3.386 6.809 7.915 7.21 9.981s-.744 8.421 1.652 9.046zM510.581 219.51s-4.282-11.162-13.384-14.873-10.014 8.755-7.165 10.598c2.85 1.843 10.416-.724 12.311.19 1.895.916 6.305 5.633 8.238 4.085zM466.764 226.443s.248-11.953 7.555-18.528 12.388 4.845 10.331 7.545c-2.057 2.698-10.045 2.846-11.519 4.349-1.473 1.502-4.024 7.434-6.367 6.633zM459.714 99.684s-11.176-4.245-20.008.069-.145 13.3 3.128 12.404c3.272-.897 6.4-8.248 8.345-9.052 1.946-.803 8.401-.948 8.536-3.42zM434.139 78.28s-11.177-4.246-20.008.068c-8.832 4.315-.146 13.301 3.127 12.405s6.4-8.249 8.346-9.052c1.945-.804 8.4-.948 8.535-3.421zM396 57.87s-9.474 7.29-10.432 17.072c-.957 9.783 11.25 7.098 12.202 3.841.953-3.257-3.667-9.775-3.332-11.853.336-2.077 3.598-7.65 1.563-9.061zM371.16 51.894s-4.32 11.148-.066 20.008 13.299.236 12.425-3.043c-.875-3.28-8.205-6.457-8.996-8.407-.79-1.95-.89-8.407-3.363-8.558zM300.715 94.851s7.728-9.121 6.605-18.886-12.491-4.572-12.737-1.187 5.643 8.784 5.752 10.886c.11 2.101-1.907 8.236.38 9.187z"})]}),(0,e.jsx)("path",{fill:"#8c8a8c",fillRule:"evenodd",stroke:"#000",strokeWidth:1.8570921599999999,d:"M342.775 114.432s18.526 1.166 19.433 11.789-4.405 17.1-4.405 17.1 2.332 22.932-15.805 29.668c-19.433 2.332-49.877.519-49.877.519s-8.94 2.202-12.566-16.324c-3.628-18.525-4.664-31.61-4.664-31.61s1.814-10.365 14.898-11.012c13.085-.648 52.857.13 52.987-.13z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:1.8570921599999999,d:"M357.674 143.193s-9.976 12.437-8.94 17.49"}),(0,e.jsx)("path",{fill:"#8c8a8c",fillRule:"evenodd",stroke:"#000",strokeWidth:1.8570921599999999,d:"M344.333 172.337c2.462 2.073 4.793 4.405 5.312 12.049l1.036 15.287 12.955 116.595 11.4 84.339.778 13.085s-2.72 9.586-10.364 10.363c-5.57 11.66-35.756 15.028-38.736 14.899-2.72-.13-12.308-4.146-18.138-3.628s-15.935 4.405-20.469 3.757c-4.534-.647-14.768-4.145-16.582-11.53-12.696-4.016-14.769-13.732-14.769-13.732l13.733-97.554 13.343-123.33s1.555-16.453 8.162-18.915c6.866-.648 42.363.648 52.338-1.684z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.8570921599999999,d:"m274.375 341.147-2.721 86.281M358.196 352.547l7.644 71.124"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.96770688,d:"m136.572 296.312-.284.995M494.972 293.188l.284.995"}),(0,e.jsx)("path",{fill:"none",stroke:"#6b18b5",strokeLinejoin:"round",strokeWidth:1.8570921599999999,d:"M126.965 179.83s5.675 7.86 6.694 12.37c1.019 4.512 2.91 13.39 5.385 17.028s16.591 23.868 17.319 32.308c.145 5.53-5.822 14.99-14.7 15.136-5.53-.146-19.792-3.784-20.375-16.01-.582-12.225 4.366-12.515 4.949-19.937.582-7.423.727-40.75.727-40.896z"}),(0,e.jsx)("path",{fill:"none",stroke:"#6b18b5",strokeLinejoin:"round",strokeWidth:.96770688,d:"M224.466 72.814s-5.876.42-10.4 2.872c-3.505 2.161-9.443 5.271-13.592 11.024-10.554 8.227-26.43 12.066-31.438 18.9-2.997 4.65-2.813 15.834 4.697 20.57 4.801 2.749 18.878 7.05 25.726-3.094 6.849-10.144 2.772-12.963 6.13-19.608 5.542-15.23 18.802-30.54 18.878-30.664zM367.012 57.968s-4.39-3.93-9.298-5.474c-3.991-1.015-10.638-.573-17.516-1.248-13.251-1.859-26.913-11.442-35.306-10.285-5.425 1.081-13.331 8.993-11.51 17.683 1.365 5.36 7.361 16.203 19.412 14.068 12.051-2.136 11.947-4.765 19.056-6.974 17.34-9.724 35.02-7.738 35.162-7.77zM508.373 195.364c.99-2.261-.832-6.512-2.127-11.492-1.256-3.922-3.132-10.009-7.72-15.42-5.452-12.22-4.517-28.977-9.95-35.48-3.793-4.026-14.693-6.533-21.094-.38-3.822 4-11.377 16.632-3.175 25.716s11.776 5.663 17.42 10.518c13.454 9.038 20.043 24.88 26.646 26.537zM503.552 302.116c1.838-2.544 5.127-7.446 4.736-11.53-.31-3.233 1.482-13.037 1.678-17.315 1.216-13.326 9.557-24.142 7.289-35.72-1.342-5.366-9.203-13.022-17.794-10.783-5.289 1.623-17.065 8.103-14.35 20.036 2.717 11.934 6.573 11.736 9.123 18.73 7.321 14.46 2.636 31.637 9.318 36.581z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.8570921599999999,d:"M405.485 386.834s-2.259 4.344 6.777 8.167M423.56 376.583s10.078-2.433 16.855 0M453.618 351.207c0 .174-1.39 4.518 6.603 10.773M459.353 339.92s5.908 4.344 15.812 4.17M399.75 352.599s.348 11.468-5.56 16.855M419.557 334.872s9.73 2.433 17.724-1.564M481.944 318.024s2.085 2.954 12.859 2.433M439.894 311.245c.348.174 12.685 4.17 20.505.522M464.566 263.982s.52-.695 4.344 12.685M474.12 226.275s-.52 7.124-6.255 10.252M510.784 197.078s-8.34 6.777-6.777 9.557M469.256 192.214s4.344 7.298-2.78 12.337M448.231 160.937s7.472-.347 10.774 6.082M434.16 139.738h5.734M463.87 113.675c0 .173 1.563 1.563-1.39 4.517M410.524 114.37s3.996 6.256 3.301 13.902M433.637 93.17c1.738-.174 7.646-2.78 7.646-2.78M407.922 68.321c-.174 0-2.26 7.82 1.564 10.6M398.358 103.944c0 8.34 6.603 6.255 2.085 14.248M382.197 96.992c-.173 0-10.425 7.993-10.425 9.383M355.437 92.649s4.344 4.344 3.302 10.252M342.758 89.173s-2.259 6.603-5.213 8.34M319.644 87.435c-.173.348-3.649 7.82-6.081 9.21M288.02 87.61c.174 0 3.475 6.95-.869 11.99M280.719 51.64c.173.173.695 5.386-2.607 9.904M249.442 63.456c0 .173 1.39 5.908-7.82 7.82M231.724 116.45c.174.348 8.862 1.738 8.862 1.738M210.003 136.614c.174-.174 10.6-3.301 10.6-3.301M193.146 149.642c.348 0 7.298 1.216 9.036.347M188.282 156.073s2.259 1.216.347 12.858M154.395 125.492l4.17 6.256M140.149 157.64c0-.175 4.17 6.254 9.73 7.47M172.992 190.308c.173 0 6.776-1.39 7.82-2.085M170.033 213.935c.174 0-.174-4.344 5.213-7.298M162.906 224.709c0 .173 5.039 6.429 8.514 7.298M159.955 236.7c.522-.173 5.908-4.865 12.164-4.518M158.215 252.86s.174 5.388 16.16 3.998M159.781 271.797c0-.174 4.692-10.773 14.249-14.77M172.644 285.356s1.39-4.518 9.382-7.646M181.503 303.248s5.734-4.692 7.819-5.387M188.63 317.154s3.475 3.65 12.163-2.606M146.745 320.104c1.043-.174 13.727-3.127 18.072 3.476M151.793 330.53s13.38-1.738 15.117-.348M199.577 333.314s-1.737 3.65 14.77-2.432M220.08 339.92c-2.954 5.039.695 9.035-3.128 11.294M169.859 346.864c.521-.347 6.082-2.259 5.213-10.252M174.897 358.856c.696-.174 9.905-4.17 11.817-2.085M192.972 370.5s1.217-8.167 3.823-9.036M206.87 382.831s7.646-.174 10.948-2.606M221.638 355.21c.174.173 7.124 3.822 21.894.173M227.199 388.392s2.085 10.6 1.911 13.033"}),(0,e.jsxs)("g",{fill:"#de2010",fillRule:"evenodd",stroke:"#000",strokeWidth:1.483,children:[(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.60885 -.2011 .2072 1.65762 94.795 74.927)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.60885 -.2011 .2072 1.65762 93.358 57.275)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.58497 -.3417 .35206 1.633 78.089 74.089)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.4455 -.73446 .7567 1.4893 55.863 162.938)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.4455 -.73446 .7567 1.4893 48.885 147.133)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.3781 -.85423 .88011 1.41987 39.958 167.39)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.28907 -.98346 1.01327 1.32812 33.795 193.08)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.1329 -1.15994 1.19508 1.16722 35.345 239.043)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(1.02138 -1.25922 1.29739 1.05234 34.295 262.698)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(.79817 -1.41132 1.45408 .82236 51.907 315.002)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(.66642 -1.4781 1.52289 .6866 56.808 337.386)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(.56582 -1.51945 1.5655 .58296 57.907 352.404)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(.4482 -1.5582 1.60543 .46178 63.012 370.362)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(.20288 -1.60864 1.65738 .20903 94.656 408.901)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(.06506 -1.62008 1.66918 .06703 106.295 427.394)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(.06506 -1.62008 1.66918 .06703 88.849 428.012)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-.36132 -1.5806 1.62852 -.37226 172.505 473.533)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-.49045 -1.54542 1.59227 -.50531 188.286 485.828)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-.67103 -1.476 1.52073 -.69138 221.877 499.092)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-.7945 -1.41337 1.4562 -.81858 241.371 508.33)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-.94339 -1.31867 1.35863 -.97197 271.636 515.396)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.05159 -1.2341 1.27151 -1.08344 292.379 520.207)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.13737 -1.15553 1.19056 -1.17183 308.9 526.104)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.2301 -1.05628 1.08829 -1.26738 331.402 529.562)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.33573 -.91908 .94693 -1.3762 362.524 526.12)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.47374 -.67597 .69645 -1.51841 415.897 504.087)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.52895 -.53958 .55593 -1.5753 438.682 497.522)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.61445 -.12005 .15429 -1.33344 500.491 405.96)"}),(0,e.jsx)("path",{d:"M232.84 119.03c.002-2.109-.794-4.058-2.087-5.114-1.294-1.055-2.888-1.055-4.18 0s-2.09 3.005-2.088 5.114c-.002 2.109.794 4.058 2.087 5.114 1.293 1.055 2.887 1.055 4.18 0s2.09-3.005 2.088-5.114z",transform:"matrix(-1.58082 -.36035 .37125 -1.62873 468.417 480.766)"})]}),(0,e.jsx)("path",{fill:"#ffe300",fillRule:"evenodd",d:"M480.012 194.65c2.146-2.297 4.143-2.946 6.669-2.109-.891-6.06-2.809-8.116-5.145-7.386s-3.393 3.845-1.524 9.496zM483.293 212.934c2.313-2.129 4.353-2.626 6.809-1.6-.432-6.11-2.19-8.305-4.574-7.754s-3.673 3.579-2.235 9.354zM475.53 177.95c1.493-2.766 3.259-3.902 5.915-3.733-2.4-5.635-4.778-7.137-6.852-5.838-2.074 1.3-2.305 4.58.938 9.572zM467.394 161.312c1.492-2.767 3.258-3.903 5.914-3.734-2.4-5.635-4.777-7.137-6.852-5.838-2.074 1.3-2.305 4.581.938 9.572zM447.874 130.818c1.028-2.97 2.59-4.375 5.238-4.635-3.275-5.176-5.863-6.277-7.701-4.661s-1.54 4.892 2.463 9.296zM435.117 117.53c.915-3.008 2.421-4.47 5.058-4.83-3.468-5.05-6.095-6.05-7.871-4.367-1.777 1.684-1.354 4.947 2.813 9.197zM408.287 94.895c-.056-3.143.927-4.999 3.325-6.154-4.855-3.735-7.663-3.878-8.834-1.73-1.17 2.15.236 5.124 5.509 7.884M422.246 105.36c.49-3.105 1.779-4.762 4.34-5.484-4.135-4.52-6.875-5.147-8.4-3.234s-.656 5.087 4.06 8.718M392.362 86.106c-.38-3.12.406-5.067 2.672-6.463-5.214-3.215-8.022-3.068-8.965-.81s.763 5.072 6.293 7.273zM376.088 79.002c-.822-3.035-.323-5.074 1.72-6.78-5.62-2.435-8.378-1.888-8.989.482-.61 2.37 1.481 4.91 7.269 6.298zM358.553 73.569c-1.076-2.954-.751-5.028 1.14-6.901-5.807-1.95-8.509-1.172-8.916 1.241s1.891 4.767 7.776 5.66zM341.33 70.234c-1.286-2.868-1.112-4.96.638-6.965-5.932-1.526-8.57-.554-8.802 1.883-.232 2.436 2.231 4.617 8.165 5.082zM323.09 68.836c-1.577-2.719-1.62-4.818-.087-6.993-6.059-.902-8.582.338-8.56 2.785s2.698 4.362 8.648 4.208M287.376 71.526c-2.186-2.258-2.735-4.285-1.772-6.766-6.097.585-8.247 2.397-7.635 4.767.611 2.37 3.67 3.582 9.407 2zM304.955 69.212c-1.86-2.534-2.13-4.616-.84-6.943-6.12-.246-8.495 1.259-8.21 3.69s3.151 4.045 9.05 3.253zM270.128 75.253c-2.488-1.922-3.321-3.85-2.723-6.443-5.95 1.454-7.819 3.555-6.874 5.813s4.146 3.019 9.597.63zM237.102 90.437c-2.808-1.413-3.992-3.147-3.899-5.806-5.565 2.559-6.999 4.977-5.642 7.013 1.357 2.037 4.644 2.176 9.542-1.207zM253.028 82.302c-2.616-1.744-3.581-3.608-3.165-6.237-5.835 1.864-7.552 4.09-6.452 6.277 1.1 2.186 4.345 2.723 9.617-.04zM207.48 111.061c-3.041-.797-4.561-2.246-5.024-4.866-4.91 3.662-5.808 6.326-4.057 8.035 1.752 1.71 4.996 1.16 9.08-3.169zM221.612 99.495c-2.97-1.033-4.37-2.596-4.627-5.245-5.182 3.267-6.286 5.852-4.673 7.693s4.89 1.548 9.3-2.448zM194.922 123.43c-3.101-.518-4.746-1.822-5.445-4.39-4.557 4.094-5.21 6.829-3.31 8.371s5.08.701 8.755-3.981zM183.67 138.033c-3.135-.234-4.892-1.384-5.822-3.878-4.166 4.49-4.567 7.273-2.535 8.637s5.123.237 8.356-4.76M174.253 152.966c-3.133.249-5.045-.618-6.346-2.94-3.43 5.075-3.4 7.886-1.183 8.923s5.099-.55 7.53-5.983zM165.986 168.917c-3.075.654-5.083.042-6.674-2.091-2.742 5.477-2.348 8.26-.015 9s4.984-1.207 6.69-6.909zM159.372 185.287c-2.932 1.132-5.012.846-6.92-1.008-1.84 5.842-1.01 8.528 1.41 8.89s4.73-1.982 5.51-7.882zM154.943 203.518c-2.85 1.326-4.945 1.18-6.973-.542-1.444 5.952-.437 8.577 2.003 8.775s4.586-2.294 4.97-8.233M153.141 218.704c-2.683 1.421-4.774 1.589-6.967.515-.798 4.85.48 6.768 2.918 6.595s4.3-2.412 4.05-7.11M460.127 146.483c1.073-2.955 2.655-4.336 5.307-4.556-3.196-5.225-5.766-6.364-7.629-4.777s-1.613 4.868 2.322 9.332zM485.295 231.47c2.313-2.129 4.352-2.626 6.808-1.6-.431-6.11-2.189-8.305-4.573-7.753s-3.673 3.578-2.235 9.353z"}),(0,e.jsx)("path",{fill:"#217900",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:1.8570921599999999,d:"M461.32 132.01c-.075 0-6.926 6.852-5.735 15.192 1.192 8.341 6.48 18.618 5.511 27.257-.968 8.639-2.532 14.373-2.532 14.373s8.043-9.16 8.118-17.948c.074-8.788-5.511-20.33-5.511-26.81s.298-12.212.149-12.063zM474.051 160.006s-5.362 3.947-4.84 13.033c.52 9.085 9.904 25.767 9.904 25.767s6.851 14.075 6.628 17.724c-.224 3.649 1.266-3.5.596-11.543s-11.022-25.767-11.022-25.767-2.234-3.649-2.01-9.681c.223-6.032.818-9.458.744-9.533z"}),(0,e.jsx)("path",{fill:"#6b18b5",fillRule:"evenodd",d:"M312.926 47.43c0-1.88-2.114-3.405-4.724-3.405s-4.724 1.525-4.723 3.405c-.001 1.88 2.114 3.405 4.723 3.405s4.725-1.524 4.724-3.405M314.945 55.35c0-1.804-2.177-3.266-4.863-3.266-2.685 0-4.862 1.462-4.862 3.265s2.177 3.265 4.862 3.265 4.863-1.461 4.863-3.265M320.985 45.972s-5.558 4.168-3.265 5.835 8.614-3.612 8.614-3.612zM484.32 141.4c.002-1.184-.554-2.28-1.457-2.873a2.62 2.62 0 0 0-2.918 0c-.902.593-1.458 1.689-1.456 2.873-.002 1.185.554 2.28 1.456 2.874a2.62 2.62 0 0 0 2.918 0c.903-.593 1.459-1.689 1.457-2.874M482.197 133.455c0-1.976-1.365-3.578-3.048-3.578s-3.048 1.602-3.048 3.578 1.364 3.578 3.048 3.578 3.048-1.602 3.048-3.578M483.659 149.616c0-1.025-.534-1.856-1.193-1.856s-1.193.83-1.193 1.856.534 1.855 1.193 1.855 1.193-.83 1.193-1.855M488.558 135.17c0-1.172-.534-2.12-1.193-2.12-.658 0-1.192.948-1.192 2.12s.534 2.12 1.192 2.12c.659 0 1.193-.95 1.193-2.12M475.174 136.632c0-.952-.534-1.723-1.193-1.723s-1.193.771-1.193 1.723c0 .951.534 1.722 1.193 1.722s1.193-.771 1.193-1.722M477.297 148.032c0-1.538-1.127-2.784-2.518-2.784s-2.518 1.246-2.518 2.784 1.127 2.784 2.518 2.784 2.519-1.247 2.518-2.784M470.666 142.993c0-1.317-.95-2.385-2.12-2.385-1.172 0-2.12 1.068-2.12 2.385s.948 2.385 2.12 2.385c1.17 0 2.12-1.068 2.12-2.385M469.613 136.231c0-.71-.353-1.368-.927-1.724a1.75 1.75 0 0 0-1.857 0c-.574.356-.928 1.013-.927 1.724 0 .711.353 1.368.927 1.724a1.75 1.75 0 0 0 1.857 0c.574-.356.928-1.013.927-1.724M499.819 170.597c-2.737-3.613-7.12-5.135-9.789-3.4s-2.612 6.07.125 9.682 7.12 5.135 9.789 3.4 2.612-6.07-.125-9.682M507.599 237.249c.53-4.433-1.632-8.337-4.83-8.72-3.197-.383-6.22 2.9-6.75 7.334s1.632 8.337 4.83 8.72c3.197.382 6.22-2.901 6.75-7.334M509.244 276.044c.91-4.37-.906-8.447-4.059-9.104s-6.447 2.353-7.358 6.724c-.911 4.37.906 8.447 4.058 9.104 3.153.657 6.447-2.353 7.359-6.724M516.719 239.729c0-1.757-1.187-3.18-2.65-3.18s-2.651 1.423-2.651 3.18c0 1.756 1.187 3.18 2.65 3.18s2.651-1.424 2.651-3.18M510.227 247.021l-5.433 6.163s-5.102.132-4.837 1.789c.265 1.656 7.023 6.626 6.957 8.614s4.506-.464 4.506-.464 3.644-11.066 3.644-11.132-.199-7.687-2.186-7.554c-1.988.133-2.527 2.444-2.65 2.585M152.837 244.585a2.586 2.586 0 1 0-5.172 0 2.586 2.586 0 0 0 5.172 0M155.274 236.683c0-1.508-1.158-2.73-2.586-2.73s-2.586 1.222-2.586 2.73 1.157 2.73 2.586 2.73 2.586-1.222 2.586-2.73M134.04 199.106c-.97-2.174-2.99-3.386-4.512-2.707s-1.968 2.992-.999 5.166c.97 2.173 2.99 3.385 4.512 2.706s1.968-2.991.999-5.165M140.453 222.516c-1.332-2.818-4.106-4.389-6.197-3.509s-2.705 3.878-1.372 6.695 4.107 4.388 6.197 3.508 2.705-3.877 1.372-6.694M147.32 239.685c.431-3.519-1.027-6.751-3.257-7.22s-4.389 2.004-4.82 5.523c-.432 3.52 1.026 6.752 3.256 7.22 2.23.47 4.389-2.004 4.82-5.523M136.302 242.192c1.38-3.266.863-6.775-1.153-7.837s-4.77.725-6.15 3.991-.862 6.775 1.154 7.836 4.77-.724 6.15-3.99"}),(0,e.jsx)("path",{fill:"#6b18b5",fillRule:"evenodd",d:"M131.281 234.812c0-1.666-1.286-3.017-2.873-3.017s-2.874 1.35-2.874 3.017 1.287 3.017 2.874 3.017 2.873-1.35 2.873-3.017M128.984 227.345c0-1.507-1.158-2.73-2.586-2.73-1.429 0-2.586 1.223-2.586 2.73 0 1.508 1.157 2.73 2.586 2.73s2.586-1.222 2.586-2.73M131.429 212.978c0-2.54-1.126-4.598-2.514-4.598-1.389 0-2.514 2.059-2.514 4.598s1.125 4.597 2.514 4.597 2.514-2.058 2.514-4.597M139.165 211.872c.335-2.516-.509-4.705-1.885-4.888-1.377-.184-2.764 1.708-3.099 4.225s.51 4.706 1.886 4.889 2.763-1.709 3.098-4.226M194.286 101.894c1.025-3.564-.032-7.147-2.36-8.001-2.328-.855-5.047 1.342-6.071 4.906-1.025 3.565.032 7.147 2.36 8.002 2.329.854 5.047-1.343 6.071-4.907M183.817 117.756c3.071-2.613 4.383-6.227 2.93-8.071-1.452-1.845-5.119-1.221-8.19 1.392s-4.382 6.227-2.93 8.072c1.453 1.844 5.12 1.22 8.19-1.393M177.708 108.952c3.037-2.244 4.334-5.346 2.898-6.93s-5.063-1.047-8.1 1.196c-3.036 2.244-4.333 5.346-2.897 6.93s5.063 1.047 8.1-1.196M201.257 93.467c2.048-1.566 2.923-3.73 1.954-4.835s-3.414-.731-5.462.834-2.922 3.73-1.954 4.835 3.414.731 5.462-.834"}),(0,e.jsx)("path",{fill:"#6b18b5",fillRule:"evenodd",d:"M188.978 108.47c1.4-2.163 1.494-4.496.21-5.21s-3.46.462-4.86 2.626-1.495 4.497-.211 5.21 3.46-.461 4.86-2.625M206.696 99.198c2.202-1.856 3.06-4.314 1.916-5.49-1.143-1.178-3.856-.627-6.058 1.229s-3.06 4.314-1.916 5.49c1.143 1.178 3.856.627 6.058-1.229M174.68 120.828c2.059-.103 3.612-1.128 3.47-2.29s-1.925-2.022-3.983-1.919c-2.059.103-3.613 1.128-3.471 2.29s1.925 2.022 3.984 1.919M213.44 87.703c1.4-2.164 1.495-4.497.21-5.21-1.284-.714-3.46.462-4.86 2.626s-1.495 4.497-.21 5.21c1.284.714 3.46-.462 4.86-2.626"}),(0,e.jsx)("path",{fill:"#ffd200",fillRule:"evenodd",stroke:"#ef8a10",strokeWidth:.96770688,d:"M446.83 153.375s6.386-10.108 3.917-19.621c-2.47-9.515-13.006-2.791-12.78.595.228 3.385 6.81 7.915 7.21 9.981s-.744 8.422 1.653 9.045z"}),(0,e.jsx)("path",{fill:"#217900",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.3218003200000004,d:"M324.883 69.303s23.012.894 23.16 15.788c-.074 2.308 0 5.064-.818 11.691 4.542-2.457 7.596-9.309 7-13.702.074-15.118-20.554-25.47-29.342-13.778z"}),(0,e.jsx)("path",{fill:"#217900",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.3218003200000004,d:"M310.29 68.633s18.542-3.873 18.691 11.021c.15 14.894-5.883 17.277-5.883 17.277s14.224-3.053 14.298-18.17c.075-15.118-18.32-21.82-27.107-10.128z"}),(0,e.jsx)("path",{fill:"#f7df73",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.47736633,d:"M373.282 389.952s86.796-24.518 113.005-131.041C471.069 368.252 376.1 402.915 376.1 402.915z"}),(0,e.jsx)("path",{fill:"#8c1800",fillRule:"evenodd",d:"M382.186 396.584c2.682 0 9.32-7.343 13.132-8.19s4.236-4.66-.142-4.8c-4.377-.142-8.19 4.942-8.19 4.942s-3.812 3.247-7.766 3.671c-3.953.424-1.412 5.366 2.966 4.377"}),(0,e.jsx)("path",{fill:"#8c1800",fillRule:"evenodd",stroke:"#8c1800",strokeWidth:2.47736633,d:"M432.167 359.298s-9.037 5.225-7.766 6.496c1.271 1.27 9.32-4.942 9.46-5.084.142-.14 3.39-4.094-1.694-1.412z"}),(0,e.jsx)("path",{fill:"#8c1800",fillRule:"evenodd",d:"M400.678 383.036s-2.683-.988 4.236-3.67c6.92-2.684 6.496-5.79 8.755-7.061s7.06-4.66 8.048-2.683-5.083 5.93-6.495 6.354-8.331 6.778-10.308 7.343-3.389.282-4.236-.283"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:3.0186115699999996,d:"M445.582 346.035c-5.93 6.636-5.93 6.495-5.93 6.495"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:2.78641068,d:"m454.485 335.16-5.648 6.919"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:2.55420979,d:"m463.373 321.044-6.355 10.166"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:2.3220088999999997,d:"m470.856 306.644-5.224 10.449M474.248 299.01l-1.695 3.67"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:1.39320534,d:"m478.056 288.987-1.412 4.377"}),(0,e.jsx)("path",{fill:"#f7df73",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:1.483,d:"M160.26 215.97s51.958-14.677 67.647-78.444c-9.11 65.454-65.96 86.204-65.96 86.204z",transform:"matrix(-1.65528 0 0 1.70062 524.795 20.382)"}),(0,e.jsx)("path",{fill:"#8c1800",fillRule:"evenodd",d:"M250.696 394.417c-2.658 0-9.234-7.475-13.012-8.337s-4.197-4.744.14-4.888c4.337-.143 8.115 5.031 8.115 5.031s3.778 3.307 7.696 3.738 1.399 5.462-2.939 4.456"}),(0,e.jsx)("path",{fill:"#8c1800",fillRule:"evenodd",stroke:"#8c1800",strokeWidth:1.483,d:"M195.51 197.62s-5.41 3.127-4.649 3.888c.76.761 5.579-2.958 5.663-3.043s2.029-2.451-1.014-.845z",transform:"matrix(-1.65528 0 0 1.70062 524.795 20.382)"}),(0,e.jsx)("path",{fill:"#8c1800",fillRule:"evenodd",d:"M232.372 380.625s2.659-1.006-4.197-3.737c-6.856-2.732-6.436-5.894-8.675-7.188-2.238-1.294-6.996-4.744-7.975-2.731s5.037 6.037 6.436 6.469c1.4.431 8.255 6.9 10.214 7.475s3.358.287 4.197-.288"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:1.807,d:"M203.54 189.68c-3.55 3.973-3.55 3.888-3.55 3.888",transform:"matrix(-1.65528 0 0 1.70062 524.795 20.382)"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:1.668,d:"m208.87 183.17-3.381 4.142",transform:"matrix(-1.65528 0 0 1.70062 524.795 20.382)"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:1.529,d:"m214.19 174.72-3.804 6.086",transform:"matrix(-1.65528 0 0 1.70062 524.795 20.382)"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:1.39,d:"m218.67 166.1-3.127 6.255M220.7 161.53l-1.014 2.198",transform:"matrix(-1.65528 0 0 1.70062 524.795 20.382)"}),(0,e.jsx)("path",{fill:"none",stroke:"#8c1800",strokeLinecap:"round",strokeWidth:.834,d:"m222.98 155.53-.845 2.62",transform:"matrix(-1.65528 0 0 1.70062 524.795 20.382)"}),(0,e.jsx)("path",{fill:"#217900",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.3218003200000004,d:"M490.42 239.302c.427 6.682 6.967 13.08 4.408 24.738-3.27 13.221-14.786 44.641-12.795 50.186-3.412-4.692-2.844-9.1-3.128-15.64-.285-6.539 9.525-30.85 10.378-39.096 0-7.392.711-17.486 1.137-20.188z"}),(0,e.jsx)("path",{fill:"#217900",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.3218003200000004,d:"M490.42 239.442s10.663 13.506 10.094 24.169c-.568 10.663-6.54 23.173-4.55 28.718-3.411-4.692-4.264-7.678-4.549-14.217-.284-6.54 5.26-13.791 4.123-20.9s-5.26-17.77-5.118-17.77zM141.123 242.427c-.426 6.682-5.402 12.652-2.843 24.31 3.27 13.222 14.928 29.999 13.08 49.192 3.412-4.692 4.407-9.952 4.691-16.492.285-6.54-12.938-28.576-13.79-36.822 0-7.392-.711-17.486-1.138-20.188z"}),(0,e.jsx)("path",{fill:"#217900",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.3218003200000004,d:"M141.123 242.575s-10.378 13.08-9.81 23.742c.142 7.109 13.222 36.822 11.232 42.367 3.412-4.691 4.407-4.123 4.264-11.231-3.838-18.198-10.663-29.856-9.525-36.965 1.137-7.108 3.98-17.913 3.839-17.913z"}),(0,e.jsx)("path",{fill:"#fff",stroke:"#000",strokeDashoffset:1,strokeLinecap:"square",strokeLinejoin:"round",strokeWidth:1.661,d:"m99.959 125.78 22.172 68.231 71.743.003-58.04 42.172 22.167 68.233-58.041-42.15-58.044 42.16 22.168-68.23-58.04-42.17h71.743z",transform:"matrix(1.16516 0 0 1.16534 201.97 -23.618)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2427.2406cc45.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js deleted file mode 100644 index fd217e57f0..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 243.098f10af.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["243"],{10046(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.Attribute=void 0;class i{constructor(e,t,i,o){this.name=e,this.modelName=t,this.defaultValue=i,this.alwaysWriteJson=o,this.required=!1,this.fixed=!1,this.type="any"}setType(e){return this.type=e,this}setRequired(){return this.required=!0,this}setFixed(){return this.fixed=!0,this}}t.Attribute=i,i.NUMBER="number",i.STRING="string",i.BOOLEAN="boolean"},96874(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.AttributeDefinitions=void 0;let o=i(10046);t.AttributeDefinitions=class{constructor(){this.attributes=[],this.nameToAttribute={}}addWithAll(e,t,i,n){let r=new o.Attribute(e,t,i,n);return this.attributes.push(r),this.nameToAttribute[e]=r,r}addInherited(e,t){return this.addWithAll(e,t,void 0,!1)}add(e,t,i){return this.addWithAll(e,void 0,t,i)}getAttributes(){return this.attributes}getModelName(e){let t=this.nameToAttribute[e];if(void 0!==t)return t.modelName}toJson(e,t){for(let i of this.attributes){let o=t[i.name];(i.alwaysWriteJson||o!==i.defaultValue)&&(e[i.name]=o)}}fromJson(e,t){for(let i of this.attributes){let o=e[i.name];void 0===o?t[i.name]=i.defaultValue:t[i.name]=o}}update(e,t){for(let i of this.attributes)if(e.hasOwnProperty(i.name)){let o=e[i.name];void 0===o?delete t[i.name]:t[i.name]=o}}setDefaults(e){for(let t of this.attributes)e[t.name]=t.defaultValue}toTypescriptInterface(e,t){let i=[],o=this.attributes.sort((e,t)=>e.name.localeCompare(t.name));i.push("export interface I"+e+"Attributes {");for(let e=0;e0?" // "+e:""))}}return i.push("}"),i.join("\n")}}},88324(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.DockLocation=void 0;let o=i(81648),n=i(92530);class r{static getByName(e){return r.values[e]}static getLocation(e,t,i){if(t=(t-e.x)/e.width,i=(i-e.y)/e.height,t>=.25&&t<.75&&i>=.25&&i<.75)return r.CENTER;let o=i>=t,n=i>=1-t;return o?n?r.BOTTOM:r.LEFT:n?r.RIGHT:r.TOP}constructor(e,t,i){this._name=e,this._orientation=t,this._indexPlus=i,r.values[this._name]=this}getName(){return this._name}getOrientation(){return this._orientation}getDockRect(e){return this===r.TOP?new n.Rect(e.x,e.y,e.width,e.height/2):this===r.BOTTOM?new n.Rect(e.x,e.getBottom()-e.height/2,e.width,e.height/2):this===r.LEFT?new n.Rect(e.x,e.y,e.width/2,e.height):this===r.RIGHT?new n.Rect(e.getRight()-e.width/2,e.y,e.width/2,e.height):e.clone()}split(e,t){return this===r.TOP?{start:new n.Rect(e.x,e.y,e.width,t),end:new n.Rect(e.x,e.y+t,e.width,e.height-t)}:this===r.LEFT?{start:new n.Rect(e.x,e.y,t,e.height),end:new n.Rect(e.x+t,e.y,e.width-t,e.height)}:this===r.RIGHT?{start:new n.Rect(e.getRight()-t,e.y,t,e.height),end:new n.Rect(e.x,e.y,e.width-t,e.height)}:{start:new n.Rect(e.x,e.getBottom()-t,e.width,t),end:new n.Rect(e.x,e.y,e.width,e.height-t)}}reflect(){return this===r.TOP?r.BOTTOM:this===r.LEFT?r.RIGHT:this===r.RIGHT?r.LEFT:r.TOP}toString(){return"(DockLocation: name="+this._name+", orientation="+this._orientation+")"}}t.DockLocation=r,r.values={},r.TOP=new r("top",o.Orientation.VERT,0),r.BOTTOM=new r("bottom",o.Orientation.VERT,1),r.LEFT=new r("left",o.Orientation.HORZ,0),r.RIGHT=new r("right",o.Orientation.HORZ,1),r.CENTER=new r("center",o.Orientation.VERT,0)},20883(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.DragDrop=void 0;let o=i(92530),n=!!("u">typeof window&&window.document&&window.document.createElement);class r{constructor(){this._manualGlassManagement=!1,this._startX=0,this._startY=0,this._dragDepth=0,this._glassShowing=!1,this._dragging=!1,this._active=!1,n&&(this._glass=document.createElement("div"),this._glass.style.zIndex="998",this._glass.style.backgroundColor="transparent",this._glass.style.outline="none"),this._defaultGlassCursor="default",this._onMouseMove=this._onMouseMove.bind(this),this._onMouseUp=this._onMouseUp.bind(this),this._onKeyPress=this._onKeyPress.bind(this),this._onDragCancel=this._onDragCancel.bind(this),this._onDragEnter=this._onDragEnter.bind(this),this._onDragLeave=this._onDragLeave.bind(this),this.resizeGlass=this.resizeGlass.bind(this),this._lastClick=0,this._clickX=0,this._clickY=0}addGlass(e){var t;this._glassShowing?this._manualGlassManagement=!0:(this._document||(this._document=window.document),this._rootElement||(this._rootElement=this._document.body),this.resizeGlass(),null==(t=this._document.defaultView)||t.addEventListener("resize",this.resizeGlass),this._document.body.appendChild(this._glass),this._glass.tabIndex=-1,this._glass.focus(),this._glass.addEventListener("keydown",this._onKeyPress),this._glass.addEventListener("dragenter",this._onDragEnter,{passive:!1}),this._glass.addEventListener("dragover",this._onMouseMove,{passive:!1}),this._glass.addEventListener("dragleave",this._onDragLeave,{passive:!1}),this._glassShowing=!0,this._fDragCancel=e,this._manualGlassManagement=!1)}resizeGlass(){o.Rect.fromElement(this._rootElement).positionElement(this._glass,"fixed")}hideGlass(){var e;this._glassShowing&&(this._document.body.removeChild(this._glass),null==(e=this._document.defaultView)||e.removeEventListener("resize",this.resizeGlass),this._glassShowing=!1,this._document=void 0,this._rootElement=void 0,this.setGlassCursorOverride(void 0))}_updateGlassCursor(){var e;this._glass.style.cursor=null!=(e=this._glassCursorOverride)?e:this._defaultGlassCursor}_setDefaultGlassCursor(e){this._defaultGlassCursor=e,this._updateGlassCursor()}setGlassCursorOverride(e){this._glassCursorOverride=e,this._updateGlassCursor()}startDrag(e,t,i,o,n,r,s,a,l){if(e&&this._lastEvent&&this._lastEvent.type.startsWith("touch")&&e.type.startsWith("mouse")&&e.timeStamp-this._lastEvent.timeStamp<500||this._dragging)return;this._lastEvent=e,a?this._document=a:this._document=window.document,l?this._rootElement=l:this._rootElement=this._document.body;let d=this._getLocationEvent(e);this.addGlass(n),e?(this._startX=d.clientX,this._startY=d.clientY,(!window.matchMedia||window.matchMedia("(pointer: fine)").matches)&&this._setDefaultGlassCursor(getComputedStyle(e.target).cursor),this._stopPropagation(e),this._preventDefault(e)):(this._startX=0,this._startY=0,this._setDefaultGlassCursor("default")),this._dragging=!1,this._fDragStart=t,this._fDragMove=i,this._fDragEnd=o,this._fDragCancel=n,this._fClick=r,this._fDblClick=s,this._active=!0,(null==e?void 0:e.type)==="dragenter"?(this._dragDepth=1,this._rootElement.addEventListener("dragenter",this._onDragEnter,{passive:!1}),this._rootElement.addEventListener("dragover",this._onMouseMove,{passive:!1}),this._rootElement.addEventListener("dragleave",this._onDragLeave,{passive:!1}),this._document.addEventListener("dragend",this._onDragCancel,{passive:!1}),this._document.addEventListener("drop",this._onMouseUp,{passive:!1})):(this._document.addEventListener("mouseup",this._onMouseUp,{passive:!1}),this._document.addEventListener("mousemove",this._onMouseMove,{passive:!1}),this._document.addEventListener("touchend",this._onMouseUp,{passive:!1}),this._document.addEventListener("touchmove",this._onMouseMove,{passive:!1}))}isDragging(){return this._dragging}isActive(){return this._active}toString(){return"(DragDrop: startX="+this._startX+", startY="+this._startY+", dragging="+this._dragging+")"}_onKeyPress(e){"Escape"===e.code&&this._onDragCancel()}_onDragCancel(){this._rootElement.removeEventListener("dragenter",this._onDragEnter),this._rootElement.removeEventListener("dragover",this._onMouseMove),this._rootElement.removeEventListener("dragleave",this._onDragLeave),this._document.removeEventListener("dragend",this._onDragCancel),this._document.removeEventListener("drop",this._onMouseUp),this._document.removeEventListener("mousemove",this._onMouseMove),this._document.removeEventListener("mouseup",this._onMouseUp),this._document.removeEventListener("touchend",this._onMouseUp),this._document.removeEventListener("touchmove",this._onMouseMove),this.hideGlass(),void 0!==this._fDragCancel&&this._fDragCancel(this._dragging),this._dragging=!1,this._active=!1}_getLocationEvent(e){let t=e;return e&&e.touches&&(t=e.touches[0]),t}_getLocationEventEnd(e){let t=e;return e.changedTouches&&(t=e.changedTouches[0]),t}_stopPropagation(e){e.stopPropagation&&e.stopPropagation()}_preventDefault(e){return e.preventDefault&&e.cancelable&&e.preventDefault(),e}_onMouseMove(e){this._lastEvent=e;let t=this._getLocationEvent(e);return this._stopPropagation(e),this._preventDefault(e),!this._dragging&&(Math.abs(this._startX-t.clientX)>5||Math.abs(this._startY-t.clientY)>5)&&(this._dragging=!0,this._fDragStart&&(this._setDefaultGlassCursor("move"),this._dragging=this._fDragStart({clientX:this._startX,clientY:this._startY}))),this._dragging&&this._fDragMove&&this._fDragMove(t),!1}_onMouseUp(e){this._lastEvent=e;let t=this._getLocationEventEnd(e);if(this._stopPropagation(e),this._preventDefault(e),this._active=!1,this._rootElement.removeEventListener("dragenter",this._onDragEnter),this._rootElement.removeEventListener("dragover",this._onMouseMove),this._rootElement.removeEventListener("dragleave",this._onDragLeave),this._document.removeEventListener("dragend",this._onDragCancel),this._document.removeEventListener("drop",this._onMouseUp),this._document.removeEventListener("mousemove",this._onMouseMove),this._document.removeEventListener("mouseup",this._onMouseUp),this._document.removeEventListener("touchend",this._onMouseUp),this._document.removeEventListener("touchmove",this._onMouseMove),this._manualGlassManagement||this.hideGlass(),this._dragging)this._dragging=!1,this._fDragEnd&&this._fDragEnd(e);else if(this._fDragCancel&&this._fDragCancel(this._dragging),5>=Math.abs(this._startX-t.clientX)&&5>=Math.abs(this._startY-t.clientY)){let i=!1,o=new Date().getTime();5>=Math.abs(this._clickX-t.clientX)&&5>=Math.abs(this._clickY-t.clientY)&&o-this._lastClick<500&&this._fDblClick&&(this._fDblClick(e),i=!0),!i&&this._fClick&&this._fClick(e),this._lastClick=o,this._clickX=t.clientX,this._clickY=t.clientY}return!1}_onDragEnter(e){return this._preventDefault(e),this._stopPropagation(e),this._dragDepth++,!1}_onDragLeave(e){return this._preventDefault(e),this._stopPropagation(e),this._dragDepth--,this._dragDepth<=0&&this._onDragCancel(),!1}}t.DragDrop=r,r.instance=new r},94017(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.DropInfo=void 0,t.DropInfo=class{constructor(e,t,i,o,n){this.node=e,this.rect=t,this.location=i,this.index=o,this.className=n}}},30300(e,t){var i;Object.defineProperty(t,"__esModule",{value:!0}),t.I18nLabel=void 0,(i=t.I18nLabel||(t.I18nLabel={})).Close_Tab="Close",i.Close_Tabset="Close tabset",i.Move_Tab="Move: ",i.Move_Tabset="Move tabset",i.Maximize="Maximize tabset",i.Restore="Restore tabset",i.Float_Tab="Show selected tab in floating window",i.Overflow_Menu_Tooltip="Hidden tabs",i.Floating_Window_Message="This panel is shown in a floating window",i.Floating_Window_Show_Window="Show window",i.Floating_Window_Dock_Window="Dock window",i.Error_rendering_component="Error rendering component"},81648(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.Orientation=void 0;class i{static flip(e){return e===i.HORZ?i.VERT:i.HORZ}constructor(e){this._name=e}getName(){return this._name}toString(){return this._name}}t.Orientation=i,i.HORZ=new i("horz"),i.VERT=new i("vert")},59919(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.showPopup=void 0;let o=i(47867),n=i(20883),r=i(76643),s=i(2486);t.showPopup=function(e,t,i,s,l,d){var h;let _=s.getRootDiv(),c=s.getClassName,u=e.ownerDocument,g=e.getBoundingClientRect(),T=null!=(h=null==_?void 0:_.getBoundingClientRect())?h:new DOMRect(0,0,100,100),E=u.createElement("div");E.className=c(r.CLASSES.FLEXLAYOUT__POPUP_MENU_CONTAINER),g.leftb()),n.DragDrop.instance.setGlassCursorOverride("default"),_&&_.appendChild(E);let b=()=>{s.hidePortal(),n.DragDrop.instance.hideGlass(),_&&_.removeChild(E),E.removeEventListener("mousedown",p),u.removeEventListener("mousedown",m)},p=e=>{e.stopPropagation()},m=e=>{b()};E.addEventListener("mousedown",p),u.addEventListener("mousedown",m),s.showPortal(o.createElement(a,{currentDocument:u,onSelect:i,onHide:b,items:t,classNameMapper:c,layout:s,iconFactory:l,titleFactory:d}),E)};let a=e=>{let{items:t,onHide:i,onSelect:n,classNameMapper:a,layout:l,iconFactory:d,titleFactory:h}=e,_=t.map((e,t)=>o.createElement("div",{key:e.index,className:a(r.CLASSES.FLEXLAYOUT__POPUP_MENU_ITEM),"data-layout-path":"/popup-menu/tb"+t,onClick:t=>{n(e),i(),t.stopPropagation()},title:e.node.getHelpText()},e.node.getModel().isLegacyOverflowMenu()?e.node._getNameForOverflowMenu():o.createElement(s.TabButtonStamp,{node:e.node,layout:l,iconFactory:d,titleFactory:h})));return o.createElement("div",{className:a(r.CLASSES.FLEXLAYOUT__POPUP_MENU),"data-layout-path":"/popup-menu"},_)}},92530(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.Rect=void 0;let o=i(81648);class n{static empty(){return new n(0,0,0,0)}constructor(e,t,i,o){this.x=e,this.y=t,this.width=i,this.height=o}static fromElement(e){let{x:t,y:i,width:o,height:r}=e.getBoundingClientRect();return new n(t,i,o,r)}clone(){return new n(this.x,this.y,this.width,this.height)}equals(e){return this.x===(null==e?void 0:e.x)&&this.y===(null==e?void 0:e.y)&&this.width===(null==e?void 0:e.width)&&this.height===(null==e?void 0:e.height)}getBottom(){return this.y+this.height}getRight(){return this.x+this.width}getCenter(){return{x:this.x+this.width/2,y:this.y+this.height/2}}positionElement(e,t){this.styleWithPosition(e.style,t)}styleWithPosition(e,t="absolute"){return e.left=this.x+"px",e.top=this.y+"px",e.width=Math.max(0,this.width)+"px",e.height=Math.max(0,this.height)+"px",e.position=t,e}contains(e,t){return!!(this.x<=e&&e<=this.getRight()&&this.y<=t&&t<=this.getBottom())}removeInsets(e){return new n(this.x+e.left,this.y+e.top,Math.max(0,this.width-e.left-e.right),Math.max(0,this.height-e.top-e.bottom))}centerInRect(e){this.x=(e.width-this.width)/2,this.y=(e.height-this.height)/2}_getSize(e){let t=this.width;return e===o.Orientation.VERT&&(t=this.height),t}toString(){return"(Rect: x="+this.x+", y="+this.y+", width="+this.width+", height="+this.height+")"}}t.Rect=n},76643(e,t){var i;Object.defineProperty(t,"__esModule",{value:!0}),t.CLASSES=void 0,(i=t.CLASSES||(t.CLASSES={})).FLEXLAYOUT__BORDER="flexlayout__border",i.FLEXLAYOUT__BORDER_="flexlayout__border_",i.FLEXLAYOUT__BORDER_BUTTON="flexlayout__border_button",i.FLEXLAYOUT__BORDER_BUTTON_="flexlayout__border_button_",i.FLEXLAYOUT__BORDER_BUTTON_CONTENT="flexlayout__border_button_content",i.FLEXLAYOUT__BORDER_BUTTON_LEADING="flexlayout__border_button_leading",i.FLEXLAYOUT__BORDER_BUTTON_TRAILING="flexlayout__border_button_trailing",i.FLEXLAYOUT__BORDER_BUTTON__SELECTED="flexlayout__border_button--selected",i.FLEXLAYOUT__BORDER_BUTTON__UNSELECTED="flexlayout__border_button--unselected",i.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW="flexlayout__border_toolbar_button_overflow",i.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW_="flexlayout__border_toolbar_button_overflow_",i.FLEXLAYOUT__BORDER_INNER="flexlayout__border_inner",i.FLEXLAYOUT__BORDER_INNER_="flexlayout__border_inner_",i.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER="flexlayout__border_inner_tab_container",i.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER_="flexlayout__border_inner_tab_container_",i.FLEXLAYOUT__BORDER_TAB_DIVIDER="flexlayout__border_tab_divider",i.FLEXLAYOUT__BORDER_SIZER="flexlayout__border_sizer",i.FLEXLAYOUT__BORDER_TOOLBAR="flexlayout__border_toolbar",i.FLEXLAYOUT__BORDER_TOOLBAR_="flexlayout__border_toolbar_",i.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON="flexlayout__border_toolbar_button",i.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_FLOAT="flexlayout__border_toolbar_button-float",i.FLEXLAYOUT__DRAG_RECT="flexlayout__drag_rect",i.FLEXLAYOUT__EDGE_RECT="flexlayout__edge_rect",i.FLEXLAYOUT__EDGE_RECT_TOP="flexlayout__edge_rect_top",i.FLEXLAYOUT__EDGE_RECT_LEFT="flexlayout__edge_rect_left",i.FLEXLAYOUT__EDGE_RECT_BOTTOM="flexlayout__edge_rect_bottom",i.FLEXLAYOUT__EDGE_RECT_RIGHT="flexlayout__edge_rect_right",i.FLEXLAYOUT__ERROR_BOUNDARY_CONTAINER="flexlayout__error_boundary_container",i.FLEXLAYOUT__ERROR_BOUNDARY_CONTENT="flexlayout__error_boundary_content",i.FLEXLAYOUT__FLOATING_WINDOW_CONTENT="flexlayout__floating_window_content",i.FLEXLAYOUT__FLOATING_WINDOW_TAB="flexlayout__floating_window_tab",i.FLEXLAYOUT__LAYOUT="flexlayout__layout",i.FLEXLAYOUT__OUTLINE_RECT="flexlayout__outline_rect",i.FLEXLAYOUT__OUTLINE_RECT_EDGE="flexlayout__outline_rect_edge",i.FLEXLAYOUT__SPLITTER="flexlayout__splitter",i.FLEXLAYOUT__SPLITTER_EXTRA="flexlayout__splitter_extra",i.FLEXLAYOUT__SPLITTER_="flexlayout__splitter_",i.FLEXLAYOUT__SPLITTER_BORDER="flexlayout__splitter_border",i.FLEXLAYOUT__SPLITTER_DRAG="flexlayout__splitter_drag",i.FLEXLAYOUT__TAB="flexlayout__tab",i.FLEXLAYOUT__TABSET="flexlayout__tabset",i.FLEXLAYOUT__TABSET_HEADER="flexlayout__tabset_header",i.FLEXLAYOUT__TABSET_HEADER_SIZER="flexlayout__tabset_header_sizer",i.FLEXLAYOUT__TABSET_HEADER_CONTENT="flexlayout__tabset_header_content",i.FLEXLAYOUT__TABSET_MAXIMIZED="flexlayout__tabset-maximized",i.FLEXLAYOUT__TABSET_SELECTED="flexlayout__tabset-selected",i.FLEXLAYOUT__TABSET_SIZER="flexlayout__tabset_sizer",i.FLEXLAYOUT__TABSET_TAB_DIVIDER="flexlayout__tabset_tab_divider",i.FLEXLAYOUT__TABSET_CONTENT="flexlayout__tabset_content",i.FLEXLAYOUT__TABSET_TABBAR_INNER="flexlayout__tabset_tabbar_inner",i.FLEXLAYOUT__TABSET_TABBAR_INNER_="flexlayout__tabset_tabbar_inner_",i.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER="flexlayout__tabset_tabbar_inner_tab_container",i.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER_="flexlayout__tabset_tabbar_inner_tab_container_",i.FLEXLAYOUT__TABSET_TABBAR_OUTER="flexlayout__tabset_tabbar_outer",i.FLEXLAYOUT__TABSET_TABBAR_OUTER_="flexlayout__tabset_tabbar_outer_",i.FLEXLAYOUT__TAB_BORDER="flexlayout__tab_border",i.FLEXLAYOUT__TAB_BORDER_="flexlayout__tab_border_",i.FLEXLAYOUT__TAB_BUTTON="flexlayout__tab_button",i.FLEXLAYOUT__TAB_BUTTON_STRETCH="flexlayout__tab_button_stretch",i.FLEXLAYOUT__TAB_BUTTON_CONTENT="flexlayout__tab_button_content",i.FLEXLAYOUT__TAB_BUTTON_LEADING="flexlayout__tab_button_leading",i.FLEXLAYOUT__TAB_BUTTON_OVERFLOW="flexlayout__tab_button_overflow",i.FLEXLAYOUT__TAB_BUTTON_OVERFLOW_COUNT="flexlayout__tab_button_overflow_count",i.FLEXLAYOUT__TAB_BUTTON_TEXTBOX="flexlayout__tab_button_textbox",i.FLEXLAYOUT__TAB_BUTTON_TRAILING="flexlayout__tab_button_trailing",i.FLEXLAYOUT__TAB_BUTTON_STAMP="flexlayout__tab_button_stamp",i.FLEXLAYOUT__TAB_FLOATING="flexlayout__tab_floating",i.FLEXLAYOUT__TAB_FLOATING_INNER="flexlayout__tab_floating_inner",i.FLEXLAYOUT__TAB_TOOLBAR="flexlayout__tab_toolbar",i.FLEXLAYOUT__TAB_TOOLBAR_BUTTON="flexlayout__tab_toolbar_button",i.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_="flexlayout__tab_toolbar_button-",i.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_FLOAT="flexlayout__tab_toolbar_button-float",i.FLEXLAYOUT__TAB_TOOLBAR_STICKY_BUTTONS_CONTAINER="flexlayout__tab_toolbar_sticky_buttons_container",i.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_CLOSE="flexlayout__tab_toolbar_button-close",i.FLEXLAYOUT__POPUP_MENU_CONTAINER="flexlayout__popup_menu_container",i.FLEXLAYOUT__POPUP_MENU_ITEM="flexlayout__popup_menu_item",i.FLEXLAYOUT__POPUP_MENU="flexlayout__popup_menu"},99310(e,t,i){var o=this&&this.__createBinding||(Object.create?function(e,t,i,o){void 0===o&&(o=i);var n=Object.getOwnPropertyDescriptor(t,i);(!n||("get"in n?!t.__esModule:n.writable||n.configurable))&&(n={enumerable:!0,get:function(){return t[i]}}),Object.defineProperty(e,o,n)}:function(e,t,i,o){void 0===o&&(o=i),e[o]=t[i]}),n=this&&this.__exportStar||function(e,t){for(var i in e)"default"===i||Object.prototype.hasOwnProperty.call(t,i)||o(t,e,i)};Object.defineProperty(t,"__esModule",{value:!0}),n(i(37462),t),n(i(31200),t),n(i(19103),t),n(i(71480),t),n(i(29026),t),n(i(95731),t),n(i(48528),t),n(i(33391),t),n(i(73948),t),n(i(37393),t),n(i(27618),t),n(i(64948),t),n(i(16169),t),n(i(38171),t),n(i(19555),t),n(i(88324),t),n(i(20883),t),n(i(94017),t),n(i(30300),t),n(i(81648),t),n(i(92530),t),n(i(76643),t)},31200(e,t){Object.defineProperty(t,"__esModule",{value:!0}),t.Action=void 0,t.Action=class{constructor(e,t){this.type=e,this.data=t}}},19103(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.Actions=void 0;let o=i(31200);class n{static addNode(e,t,i,r,s){return new o.Action(n.ADD_NODE,{json:e,toNode:t,location:i.getName(),index:r,select:s})}static moveNode(e,t,i,r,s){return new o.Action(n.MOVE_NODE,{fromNode:e,toNode:t,location:i.getName(),index:r,select:s})}static deleteTab(e){return new o.Action(n.DELETE_TAB,{node:e})}static deleteTabset(e){return new o.Action(n.DELETE_TABSET,{node:e})}static renameTab(e,t){return new o.Action(n.RENAME_TAB,{node:e,text:t})}static selectTab(e){return new o.Action(n.SELECT_TAB,{tabNode:e})}static setActiveTabset(e){return new o.Action(n.SET_ACTIVE_TABSET,{tabsetNode:e})}static adjustSplit(e){let t=e.node1Id,i=e.node2Id;return new o.Action(n.ADJUST_SPLIT,{node1:t,weight1:e.weight1,pixelWidth1:e.pixelWidth1,node2:i,weight2:e.weight2,pixelWidth2:e.pixelWidth2})}static adjustBorderSplit(e,t){return new o.Action(n.ADJUST_BORDER_SPLIT,{node:e,pos:t})}static maximizeToggle(e){return new o.Action(n.MAXIMIZE_TOGGLE,{node:e})}static updateModelAttributes(e){return new o.Action(n.UPDATE_MODEL_ATTRIBUTES,{json:e})}static updateNodeAttributes(e,t){return new o.Action(n.UPDATE_NODE_ATTRIBUTES,{node:e,json:t})}static floatTab(e){return new o.Action(n.FLOAT_TAB,{node:e})}static unFloatTab(e){return new o.Action(n.UNFLOAT_TAB,{node:e})}}t.Actions=n,n.ADD_NODE="FlexLayout_AddNode",n.MOVE_NODE="FlexLayout_MoveNode",n.DELETE_TAB="FlexLayout_DeleteTab",n.DELETE_TABSET="FlexLayout_DeleteTabset",n.RENAME_TAB="FlexLayout_RenameTab",n.SELECT_TAB="FlexLayout_SelectTab",n.SET_ACTIVE_TABSET="FlexLayout_SetActiveTabset",n.ADJUST_SPLIT="FlexLayout_AdjustSplit",n.ADJUST_BORDER_SPLIT="FlexLayout_AdjustBorderSplit",n.MAXIMIZE_TOGGLE="FlexLayout_MaximizeToggle",n.UPDATE_MODEL_ATTRIBUTES="FlexLayout_UpdateModelAttributes",n.UPDATE_NODE_ATTRIBUTES="FlexLayout_UpdateNodeAttributes",n.FLOAT_TAB="FlexLayout_FloatTab",n.UNFLOAT_TAB="FlexLayout_UnFloatTab"},71480(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.BorderNode=void 0;let o=i(10046),n=i(96874),r=i(88324),s=i(94017),a=i(81648),l=i(92530),d=i(76643),h=i(27618),_=i(16169),c=i(38171),u=i(82429);class g extends h.Node{static _fromJson(e,t){let i=new g(r.DockLocation.getByName(e.location),e,t);return e.children&&(i._children=e.children.map(e=>{let o=c.TabNode._fromJson(e,t);return o._setParent(i),o})),i}static _createAttributeDefinitions(){let e=new n.AttributeDefinitions;return e.add("type",g.TYPE,!0).setType(o.Attribute.STRING).setFixed(),e.add("selected",-1).setType(o.Attribute.NUMBER),e.add("show",!0).setType(o.Attribute.BOOLEAN),e.add("config",void 0).setType("any"),e.addInherited("barSize","borderBarSize").setType(o.Attribute.NUMBER),e.addInherited("enableDrop","borderEnableDrop").setType(o.Attribute.BOOLEAN),e.addInherited("className","borderClassName").setType(o.Attribute.STRING),e.addInherited("autoSelectTabWhenOpen","borderAutoSelectTabWhenOpen").setType(o.Attribute.BOOLEAN),e.addInherited("autoSelectTabWhenClosed","borderAutoSelectTabWhenClosed").setType(o.Attribute.BOOLEAN),e.addInherited("size","borderSize").setType(o.Attribute.NUMBER),e.addInherited("minSize","borderMinSize").setType(o.Attribute.NUMBER),e.addInherited("enableAutoHide","borderEnableAutoHide").setType(o.Attribute.BOOLEAN),e}constructor(e,t,i){super(i),this._adjustedSize=0,this._calculatedBorderBarSize=0,this._location=e,this._drawChildren=[],this._attributes.id=`border_${e.getName()}`,g._attributeDefinitions.fromJson(t,this._attributes),i._addNode(this)}getLocation(){return this._location}getTabHeaderRect(){return this._tabHeaderRect}getRect(){return this._tabHeaderRect}getContentRect(){return this._contentRect}isEnableDrop(){return this._getAttr("enableDrop")}isAutoSelectTab(e){return(null==e&&(e=-1!==this.getSelected()),e)?this._getAttr("autoSelectTabWhenOpen"):this._getAttr("autoSelectTabWhenClosed")}getClassName(){return this._getAttr("className")}calcBorderBarSize(e){let t=this._getAttr("barSize");0!==t?this._calculatedBorderBarSize=t:this._calculatedBorderBarSize=e.borderBarSize}getBorderBarSize(){return this._calculatedBorderBarSize}getSize(){let e=this._getAttr("size"),t=this.getSelected();if(-1===t)return e;{let i=this._children[t],o=this._location._orientation===a.Orientation.HORZ?i._getAttr("borderWidth"):i._getAttr("borderHeight");return -1===o?e:o}}getMinSize(){return this._getAttr("minSize")}getSelected(){return this._attributes.selected}getSelectedNode(){if(-1!==this.getSelected())return this._children[this.getSelected()]}getOrientation(){return this._location.getOrientation()}getConfig(){return this._attributes.config}isMaximized(){return!1}isShowing(){return!!this._attributes.show&&(!(this._model._getShowHiddenBorder()!==this._location&&this.isAutoHide())||0!==this._children.length)}isAutoHide(){return this._getAttr("enableAutoHide")}_setSelected(e){this._attributes.selected=e}_setSize(e){let t=this.getSelected();if(-1===t)this._attributes.size=e;else{let i=this._children[t];-1===(this._location._orientation===a.Orientation.HORZ?i._getAttr("borderWidth"):i._getAttr("borderHeight"))?this._attributes.size=e:this._location._orientation===a.Orientation.HORZ?i._setBorderWidth(e):i._setBorderHeight(e)}}_updateAttrs(e){g._attributeDefinitions.update(e,this._attributes)}_getDrawChildren(){return this._drawChildren}_setAdjustedSize(e){this._adjustedSize=e}_getAdjustedSize(){return this._adjustedSize}_layoutBorderOuter(e,t){this.calcBorderBarSize(t);let i=this._location.split(e,this.getBorderBarSize());return this._tabHeaderRect=i.start,i.end}_layoutBorderInner(e,t){this._drawChildren=[];let i=this._location,o=i.split(e,this._adjustedSize+this._model.getSplitterSize()),n=i.reflect().split(o.start,this._model.getSplitterSize());this._contentRect=n.end;for(let e=0;e0){let e=this._children[0],i=e.getTabRect(),r=i.y,a=i.height,h=this._tabHeaderRect.x,_=0;for(let c=0;c=h&&t<_){let e=new l.Rect(i.x-2,r,3,a);o=new s.DropInfo(this,e,n,c,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT);break}h=_}if(null==o){let e=new l.Rect(i.getRight()-2,r,3,a);o=new s.DropInfo(this,e,n,this._children.length,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}}else{let e=new l.Rect(this._tabHeaderRect.x+1,this._tabHeaderRect.y+2,3,18);o=new s.DropInfo(this,e,n,0,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}else if(this._children.length>0){let e=this._children[0],t=e.getTabRect(),r=t.x,a=t.width,h=this._tabHeaderRect.y,_=0;for(let c=0;c=h&&i<_){let e=new l.Rect(r,t.y-2,a,3);o=new s.DropInfo(this,e,n,c,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT);break}h=_}if(null==o){let e=new l.Rect(r,t.getBottom()-2,a,3);o=new s.DropInfo(this,e,n,this._children.length,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}}else{let e=new l.Rect(this._tabHeaderRect.x+2,this._tabHeaderRect.y+1,18,3);o=new s.DropInfo(this,e,n,0,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}if(!e._canDockInto(e,o))return}else if(-1!==this.getSelected()&&this._contentRect.contains(t,i)){let t=this._contentRect;if(o=new s.DropInfo(this,t,n,-1,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT),!e._canDockInto(e,o))return}return o}drop(e,t,i,o){let n=0,r=e.getParent();void 0!==r&&(n=r._removeChild(e),r!==this&&r instanceof g&&r.getSelected()===n?r._setSelected(-1):(0,u.adjustSelectedIndex)(r,n)),e.getType()===c.TabNode.TYPE&&r===this&&n0&&i--;let s=i;-1===s&&(s=this._children.length),e.getType()===c.TabNode.TYPE&&this._addChild(e,s),(o||!1!==o&&this.isAutoSelectTab())&&this._setSelected(s),this._model._tidy()}toJson(){let e={};return g._attributeDefinitions.toJson(e,this._attributes),e.location=this._location.getName(),e.children=this._children.map(e=>e.toJson()),e}_getSplitterBounds(e,t=!1){let i=[0,0],o=t?this.getMinSize():0,n=this._model._getOuterInnerRects().outer,s=this._model._getOuterInnerRects().inner,a=this._model.getRoot();return this._location===r.DockLocation.TOP?(i[0]=n.y+o,i[1]=Math.max(i[0],s.getBottom()-e.getHeight()-a.getMinHeight())):this._location===r.DockLocation.LEFT?(i[0]=n.x+o,i[1]=Math.max(i[0],s.getRight()-e.getWidth()-a.getMinWidth())):this._location===r.DockLocation.BOTTOM?(i[1]=n.getBottom()-e.getHeight()-o,i[0]=Math.min(i[1],s.y+a.getMinHeight())):this._location===r.DockLocation.RIGHT&&(i[1]=n.getRight()-e.getWidth()-o,i[0]=Math.min(i[1],s.x+a.getMinWidth())),i}_calculateSplit(e,t){let i=this._getSplitterBounds(e);return this._location===r.DockLocation.BOTTOM||this._location===r.DockLocation.RIGHT?Math.max(0,i[1]-t):Math.max(0,t-i[0])}_getAttributeDefinitions(){return g._attributeDefinitions}static getAttributeDefinitions(){return g._attributeDefinitions}}t.BorderNode=g,g.TYPE="border",g._attributeDefinitions=g._createAttributeDefinitions()},29026(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.BorderSet=void 0;let o=i(81648),n=i(71480);class r{static _fromJson(e,t){let i=new r(t);return i._borders=e.map(e=>n.BorderNode._fromJson(e,t)),i}constructor(e){this._model=e,this._borders=[]}getBorders(){return this._borders}_forEachNode(e){for(let t of this._borders)for(let i of(e(t,0),t.getChildren()))i._forEachNode(e,1)}_toJson(){return this._borders.map(e=>e.toJson())}_layoutBorder(e,t){let i=e.outer,n=this._model.getRoot(),r=Math.max(0,i.height-n.getMinHeight()),s=Math.max(0,i.width-n.getMinWidth()),a=0,l=0,d=0,h=0,_=this._borders.filter(e=>e.isShowing());for(let e of _){e._setAdjustedSize(e.getSize());let t=-1!==e.getSelected();e.getLocation().getOrientation()===o.Orientation.HORZ?(l+=e.getBorderBarSize(),t&&(s-=this._model.getSplitterSize(),l+=e.getSize(),h+=e.getSize())):(a+=e.getBorderBarSize(),t&&(r-=this._model.getSplitterSize(),a+=e.getSize(),d+=e.getSize()))}let c=0,u=!1;for(;l>s&&h>0||a>r&&d>0;){let e=_[c];if(-1!==e.getSelected()){let t=e._getAdjustedSize();l>s&&h>0&&e.getLocation().getOrientation()===o.Orientation.HORZ&&t>0&&t>e.getMinSize()?(e._setAdjustedSize(t-1),l--,h--,u=!0):a>r&&d>0&&e.getLocation().getOrientation()===o.Orientation.VERT&&t>0&&t>e.getMinSize()&&(e._setAdjustedSize(t-1),a--,d--,u=!0)}if(0==(c=(c+1)%_.length))if(u)u=!1;else break}for(let i of _)e.outer=i._layoutBorderOuter(e.outer,t);for(let i of(e.inner=e.outer,_))e.inner=i._layoutBorderInner(e.inner,t);return e}_findDropTargetNode(e,t,i){for(let o of this._borders)if(o.isShowing()){let n=o.canDrop(e,t,i);if(void 0!==n)return n}}}t.BorderSet=r},95731(e,t){var i;Object.defineProperty(t,"__esModule",{value:!0}),t.ICloseType=void 0,(i=t.ICloseType||(t.ICloseType={}))[i.Visible=1]="Visible",i[i.Always=2]="Always",i[i.Selected=3]="Selected"},48528(e,t){Object.defineProperty(t,"__esModule",{value:!0})},33391(e,t){Object.defineProperty(t,"__esModule",{value:!0})},73948(e,t){Object.defineProperty(t,"__esModule",{value:!0})},37393(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.Model=void 0;let o=i(10046),n=i(96874),r=i(88324),s=i(81648),a=i(92530),l=i(19103),d=i(71480),h=i(29026),_=i(64948),c=i(38171),u=i(19555),g=i(82429);class T{static fromJson(e){let t=new T;return T._attributeDefinitions.fromJson(e.global,t._attributes),e.borders&&(t._borders=h.BorderSet._fromJson(e.borders,t)),t._root=_.RowNode._fromJson(e.layout,t),t._tidy(),t}static _createAttributeDefinitions(){let e=new n.AttributeDefinitions;return e.add("legacyOverflowMenu",!1).setType(o.Attribute.BOOLEAN),e.add("enableEdgeDock",!0).setType(o.Attribute.BOOLEAN),e.add("rootOrientationVertical",!1).setType(o.Attribute.BOOLEAN),e.add("marginInsets",{top:0,right:0,bottom:0,left:0}).setType("IInsets"),e.add("enableUseVisibility",!1).setType(o.Attribute.BOOLEAN),e.add("enableRotateBorderIcons",!0).setType(o.Attribute.BOOLEAN),e.add("splitterSize",-1).setType(o.Attribute.NUMBER),e.add("splitterExtra",0).setType(o.Attribute.NUMBER),e.add("tabEnableClose",!0).setType(o.Attribute.BOOLEAN),e.add("tabCloseType",1).setType("ICloseType"),e.add("tabEnableFloat",!1).setType(o.Attribute.BOOLEAN),e.add("tabEnableDrag",!0).setType(o.Attribute.BOOLEAN),e.add("tabEnableRename",!0).setType(o.Attribute.BOOLEAN),e.add("tabContentClassName",void 0).setType(o.Attribute.STRING),e.add("tabClassName",void 0).setType(o.Attribute.STRING),e.add("tabIcon",void 0).setType(o.Attribute.STRING),e.add("tabEnableRenderOnDemand",!0).setType(o.Attribute.BOOLEAN),e.add("tabDragSpeed",.3).setType(o.Attribute.NUMBER),e.add("tabBorderWidth",-1).setType(o.Attribute.NUMBER),e.add("tabBorderHeight",-1).setType(o.Attribute.NUMBER),e.add("tabSetEnableDeleteWhenEmpty",!0).setType(o.Attribute.BOOLEAN),e.add("tabSetEnableDrop",!0).setType(o.Attribute.BOOLEAN),e.add("tabSetEnableDrag",!0).setType(o.Attribute.BOOLEAN),e.add("tabSetEnableDivide",!0).setType(o.Attribute.BOOLEAN),e.add("tabSetEnableMaximize",!0).setType(o.Attribute.BOOLEAN),e.add("tabSetEnableClose",!1).setType(o.Attribute.BOOLEAN),e.add("tabSetEnableSingleTabStretch",!1).setType(o.Attribute.BOOLEAN),e.add("tabSetAutoSelectTab",!0).setType(o.Attribute.BOOLEAN),e.add("tabSetClassNameTabStrip",void 0).setType(o.Attribute.STRING),e.add("tabSetClassNameHeader",void 0).setType(o.Attribute.STRING),e.add("tabSetEnableTabStrip",!0).setType(o.Attribute.BOOLEAN),e.add("tabSetHeaderHeight",0).setType(o.Attribute.NUMBER),e.add("tabSetTabStripHeight",0).setType(o.Attribute.NUMBER),e.add("tabSetMarginInsets",{top:0,right:0,bottom:0,left:0}).setType("IInsets"),e.add("tabSetBorderInsets",{top:0,right:0,bottom:0,left:0}).setType("IInsets"),e.add("tabSetTabLocation","top").setType("ITabLocation"),e.add("tabSetMinWidth",0).setType(o.Attribute.NUMBER),e.add("tabSetMinHeight",0).setType(o.Attribute.NUMBER),e.add("borderSize",200).setType(o.Attribute.NUMBER),e.add("borderMinSize",0).setType(o.Attribute.NUMBER),e.add("borderBarSize",0).setType(o.Attribute.NUMBER),e.add("borderEnableDrop",!0).setType(o.Attribute.BOOLEAN),e.add("borderAutoSelectTabWhenOpen",!0).setType(o.Attribute.BOOLEAN),e.add("borderAutoSelectTabWhenClosed",!1).setType(o.Attribute.BOOLEAN),e.add("borderClassName",void 0).setType(o.Attribute.STRING),e.add("borderEnableAutoHide",!1).setType(o.Attribute.BOOLEAN),e}constructor(){this._borderRects={inner:a.Rect.empty(),outer:a.Rect.empty()},this._attributes={},this._idMap={},this._borders=new h.BorderSet(this),this._pointerFine=!0,this._showHiddenBorder=r.DockLocation.CENTER}_setChangeListener(e){this._changeListener=e}getActiveTabset(){return this._activeTabSet&&this.getNodeById(this._activeTabSet.getId())?this._activeTabSet:void 0}_getShowHiddenBorder(){return this._showHiddenBorder}_setShowHiddenBorder(e){this._showHiddenBorder=e}_setActiveTabset(e){this._activeTabSet=e}getMaximizedTabset(){return this._maximizedTabSet}_setMaximizedTabset(e){this._maximizedTabSet=e}getRoot(){return this._root}isRootOrientationVertical(){return this._attributes.rootOrientationVertical}isUseVisibility(){return this._attributes.enableUseVisibility}isEnableRotateBorderIcons(){return this._attributes.enableRotateBorderIcons}getBorderSet(){return this._borders}_getOuterInnerRects(){return this._borderRects}_getPointerFine(){return this._pointerFine}_setPointerFine(e){this._pointerFine=e}visitNodes(e){this._borders._forEachNode(e),this._root._forEachNode(e,0)}getNodeById(e){return this._idMap[e]}getFirstTabSet(e=this._root){let t=e.getChildren()[0];return t instanceof u.TabSetNode?t:this.getFirstTabSet(t)}doAction(e){let t;switch(e.type){case l.Actions.ADD_NODE:{let i=new c.TabNode(this,e.data.json,!0),o=this._idMap[e.data.toNode];(o instanceof u.TabSetNode||o instanceof d.BorderNode||o instanceof _.RowNode)&&(o.drop(i,r.DockLocation.getByName(e.data.location),e.data.index,e.data.select),t=i);break}case l.Actions.MOVE_NODE:{let t=this._idMap[e.data.fromNode];if(t instanceof c.TabNode||t instanceof u.TabSetNode){let i=this._idMap[e.data.toNode];(i instanceof u.TabSetNode||i instanceof d.BorderNode||i instanceof _.RowNode)&&i.drop(t,r.DockLocation.getByName(e.data.location),e.data.index,e.data.select)}break}case l.Actions.DELETE_TAB:{let t=this._idMap[e.data.node];t instanceof c.TabNode&&t._delete();break}case l.Actions.DELETE_TABSET:{let t=this._idMap[e.data.node];if(t instanceof u.TabSetNode){let e=[...t.getChildren()];for(let t=0;tthis._idMap[e.getId()]=e)}_adjustSplitSide(e,t,i){e._setWeight(t),null!=e.getWidth()&&e.getOrientation()===s.Orientation.VERT?e._updateAttrs({width:i}):null!=e.getHeight()&&e.getOrientation()===s.Orientation.HORZ&&e._updateAttrs({height:i})}toJson(){let e={};return T._attributeDefinitions.toJson(e,this._attributes),this.visitNodes(e=>{e._fireEvent("save",void 0)}),{global:e,borders:this._borders._toJson(),layout:this._root.toJson()}}getSplitterSize(){let e=this._attributes.splitterSize;return -1===e&&(e=this._pointerFine?8:12),e}isLegacyOverflowMenu(){return this._attributes.legacyOverflowMenu}getSplitterExtra(){return this._attributes.splitterExtra}isEnableEdgeDock(){return this._attributes.enableEdgeDock}_addNode(e){let t=e.getId();if(void 0!==this._idMap[t])throw Error(`Error: each node must have a unique id, duplicate id:${e.getId()}`);"splitter"!==e.getType()&&(this._idMap[t]=e)}_layout(e,t){var i;return this._borderRects=this._borders._layoutBorder({outer:e,inner:e},t),e=this._borderRects.inner.removeInsets(this._getAttribute("marginInsets")),null==(i=this._root)||i.calcMinSize(),this._root._layout(e,t),e}_findDropTargetNode(e,t,i){let o=this._root._findDropTargetNode(e,t,i);return void 0===o&&(o=this._borders._findDropTargetNode(e,t,i)),o}_tidy(){this._root._tidy()}_updateAttrs(e){T._attributeDefinitions.update(e,this._attributes)}_nextUniqueId(){return"#"+(0,g.randomUUID)()}_getAttribute(e){return this._attributes[e]}setOnAllowDrop(e){this._onAllowDrop=e}_getOnAllowDrop(){return this._onAllowDrop}setOnCreateTabSet(e){this._onCreateTabSet=e}_getOnCreateTabSet(){return this._onCreateTabSet}static toTypescriptInterfaces(){console.log(T._attributeDefinitions.toTypescriptInterface("Global",void 0)),console.log(_.RowNode.getAttributeDefinitions().toTypescriptInterface("Row",T._attributeDefinitions)),console.log(u.TabSetNode.getAttributeDefinitions().toTypescriptInterface("TabSet",T._attributeDefinitions)),console.log(c.TabNode.getAttributeDefinitions().toTypescriptInterface("Tab",T._attributeDefinitions)),console.log(d.BorderNode.getAttributeDefinitions().toTypescriptInterface("Border",T._attributeDefinitions))}toString(){return JSON.stringify(this.toJson())}}t.Model=T,T._attributeDefinitions=T._createAttributeDefinitions()},27618(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.Node=void 0;let o=i(88324),n=i(81648),r=i(92530);t.Node=class{constructor(e){this._dirty=!1,this._tempSize=0,this._model=e,this._attributes={},this._children=[],this._fixed=!1,this._rect=r.Rect.empty(),this._visible=!1,this._listeners={}}getId(){let e=this._attributes.id;return void 0!==e||(e=this._model._nextUniqueId(),this._setId(e)),e}getModel(){return this._model}getType(){return this._attributes.type}getParent(){return this._parent}getChildren(){return this._children}getRect(){return this._rect}isVisible(){return this._visible}getOrientation(){return void 0===this._parent?this._model.isRootOrientationVertical()?n.Orientation.VERT:n.Orientation.HORZ:n.Orientation.flip(this._parent.getOrientation())}setEventListener(e,t){this._listeners[e]=t}removeEventListener(e){delete this._listeners[e]}_setId(e){this._attributes.id=e}_fireEvent(e,t){void 0!==this._listeners[e]&&this._listeners[e](t)}_getAttr(e){let t=this._attributes[e];if(void 0===t){let i=this._getAttributeDefinitions().getModelName(e);void 0!==i&&(t=this._model._getAttribute(i))}return t}_forEachNode(e,t){for(let i of(e(this,t),t++,this._children))i._forEachNode(e,t)}_setVisible(e){e!==this._visible&&(this._fireEvent("visibility",{visible:e}),this._visible=e)}_getDrawChildren(){return this._children}_setParent(e){this._parent=e}_setRect(e){this._rect=e}_setWeight(e){this._attributes.weight=e}_setSelected(e){this._attributes.selected=e}_isFixed(){return this._fixed}_layout(e,t){this._rect=e}_findDropTargetNode(e,t,i){let o;if(this._rect.contains(t,i)){if(void 0!==this._model.getMaximizedTabset())o=this._model.getMaximizedTabset().canDrop(e,t,i);else if(void 0===(o=this.canDrop(e,t,i))&&0!==this._children.length){for(let n of this._children)if(void 0!==(o=n._findDropTargetNode(e,t,i)))break}}return o}canDrop(e,t,i){}_canDockInto(e,t){if(null!=t){if(t.location===o.DockLocation.CENTER&&!1===t.node.isEnableDrop()||t.location===o.DockLocation.CENTER&&"tabset"===e.getType()&&void 0!==e.getName()||t.location!==o.DockLocation.CENTER&&!1===t.node.isEnableDivide())return!1;if(this._model._getOnAllowDrop())return this._model._getOnAllowDrop()(e,t)}return!0}_removeChild(e){let t=this._children.indexOf(e);return -1!==t&&this._children.splice(t,1),this._dirty=!0,t}_addChild(e,t){return null!=t?this._children.splice(t,0,e):(this._children.push(e),t=this._children.length-1),e._parent=this,this._dirty=!0,t}_removeAll(){this._children=[],this._dirty=!0}_styleWithPosition(e){return null==e&&(e={}),this._rect.styleWithPosition(e)}_getTempSize(){return this._tempSize}_setTempSize(e){this._tempSize=e}isEnableDivide(){return!0}_toAttributeString(){return JSON.stringify(this._attributes,void 0," ")}}},64948(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.RowNode=void 0;let o=i(10046),n=i(96874),r=i(88324),s=i(94017),a=i(81648),l=i(92530),d=i(76643),h=i(71480),_=i(27618),c=i(16169),u=i(19555);class g extends _.Node{static _fromJson(e,t){let i=new g(t,e);if(null!=e.children)for(let o of e.children)if(o.type===u.TabSetNode.TYPE){let e=u.TabSetNode._fromJson(o,t);i._addChild(e)}else{let e=g._fromJson(o,t);i._addChild(e)}return i}static _createAttributeDefinitions(){let e=new n.AttributeDefinitions;return e.add("type",g.TYPE,!0).setType(o.Attribute.STRING).setFixed(),e.add("id",void 0).setType(o.Attribute.STRING),e.add("weight",100).setType(o.Attribute.NUMBER),e.add("width",void 0).setType(o.Attribute.NUMBER),e.add("height",void 0).setType(o.Attribute.NUMBER),e}constructor(e,t){super(e),this._dirty=!0,this._drawChildren=[],this._minHeight=0,this._minWidth=0,g._attributeDefinitions.fromJson(t,this._attributes),e._addNode(this)}getWeight(){return this._attributes.weight}getWidth(){return this._getAttr("width")}getHeight(){return this._getAttr("height")}_setWeight(e){this._attributes.weight=e}_layout(e,t){super._layout(e,t);let i=this._rect._getSize(this.getOrientation()),o=0,n=0,r=0,s=0,d=this._getDrawChildren();for(let e of d){let t=e._getPrefSize(this.getOrientation());e._isFixed()?void 0!==t&&(n+=t):void 0===t?o+=e.getWeight():(r+=t,s+=e.getWeight())}let h=!1,_=i-n-r;_<0&&(_=i-n,h=!0,o+=s);let u=0,g=0;for(let e of d){let t=e._getPrefSize(this.getOrientation());if(e._isFixed())void 0!==t&&e._setTempSize(t);else if(null==t||h){if(0===o)e._setTempSize(0);else{let t=e.getMinSize(this.getOrientation()),i=Math.floor(_*(e.getWeight()/o));e._setTempSize(Math.max(t,i))}g+=e._getTempSize()}else e._setTempSize(t);u+=e._getTempSize()}if(g>0){for(;ui;){let e=!1;for(let t of d)if(!(t instanceof c.SplitterNode)){let o=t.getMinSize(this.getOrientation());t._getTempSize()>o&&u>i&&(t._setTempSize(t._getTempSize()-1),u--,e=!0)}if(!e)break}for(;u>i;){let e=!1;for(let t of d)t instanceof c.SplitterNode||t._getTempSize()>0&&u>i&&(t._setTempSize(t._getTempSize()-1),u--,e=!0);if(!e)break}}let T=0;for(let e of d)this.getOrientation()===a.Orientation.HORZ?e._layout(new l.Rect(this._rect.x+T,this._rect.y,e._getTempSize(),this._rect.height),t):e._layout(new l.Rect(this._rect.x,this._rect.y+T,this._rect.width,e._getTempSize()),t),T+=e._getTempSize();return!0}_getSplitterBounds(e,t=!1){let i=[0,0],o=this._getDrawChildren(),n=o.indexOf(e),r=o[n-1],s=o[n+1];if(this.getOrientation()===a.Orientation.HORZ){let o=t?r.getMinWidth():0,n=t?s.getMinWidth():0;i[0]=r.getRect().x+o,i[1]=s.getRect().getRight()-e.getWidth()-n}else{let o=t?r.getMinHeight():0,n=t?s.getMinHeight():0;i[0]=r.getRect().y+o,i[1]=s.getRect().getBottom()-e.getHeight()-n}return i}_calculateSplit(e,t){let i,o=this._getDrawChildren(),n=o.indexOf(e),r=this._getSplitterBounds(e),s=o[n-1].getWeight()+o[n+1].getWeight(),a=Math.max(0,t-r[0]),l=Math.max(0,r[1]-t);return a+l>0&&(i={node1Id:o[n-1].getId(),weight1:a*s/(a+l),pixelWidth1:a,node2Id:o[n+1].getId(),weight2:l*s/(a+l),pixelWidth2:l}),i}_getDrawChildren(){if(this._dirty){this._drawChildren=[];for(let e=0;eh/2-50&&nthis._rect.getRight()-10&&n>h/2-50&&nl/2-50&&athis._rect.getBottom()-10&&a>l/2-50&&ae+t.getWeight(),0);0===s&&(s=100),o._setWeight(s/3);let a=!this._model.isRootOrientationVertical();if(a&&t===r.DockLocation.LEFT||!a&&t===r.DockLocation.TOP)this._addChild(o,0);else if(a&&t===r.DockLocation.RIGHT||!a&&t===r.DockLocation.BOTTOM)this._addChild(o);else if(a&&t===r.DockLocation.TOP||!a&&t===r.DockLocation.LEFT){let e=new g(this._model,{}),t=new g(this._model,{});for(let e of(t._setWeight(75),o._setWeight(25),this._children))t._addChild(e);this._removeAll(),e._addChild(o),e._addChild(t),this._addChild(e)}else if(a&&t===r.DockLocation.BOTTOM||!a&&t===r.DockLocation.RIGHT){let e=new g(this._model,{}),t=new g(this._model,{});for(let e of(t._setWeight(75),o._setWeight(25),this._children))t._addChild(e);this._removeAll(),e._addChild(t),e._addChild(o),this._addChild(e)}this._model._setActiveTabset(o),this._model._tidy()}toJson(){let e={};for(let t of(g._attributeDefinitions.toJson(e,this._attributes),e.children=[],this._children))e.children.push(t.toJson());return e}isEnableDrop(){return!0}_getPrefSize(e){let t=this.getWidth();return e===a.Orientation.VERT&&(t=this.getHeight()),t}_getAttributeDefinitions(){return g._attributeDefinitions}_updateAttrs(e){g._attributeDefinitions.update(e,this._attributes)}static getAttributeDefinitions(){return g._attributeDefinitions}}t.RowNode=g,g.TYPE="row",g._attributeDefinitions=g._createAttributeDefinitions()},16169(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.SplitterNode=void 0;let o=i(96874),n=i(81648),r=i(27618);class s extends r.Node{constructor(e){super(e),this._fixed=!0,this._attributes.type=s.TYPE,e._addNode(this)}getWidth(){return this._model.getSplitterSize()}getMinWidth(){return this.getOrientation()===n.Orientation.VERT?this._model.getSplitterSize():0}getHeight(){return this._model.getSplitterSize()}getMinHeight(){return this.getOrientation()===n.Orientation.HORZ?this._model.getSplitterSize():0}getMinSize(e){return e===n.Orientation.HORZ?this.getMinWidth():this.getMinHeight()}getWeight(){return 0}_setWeight(e){}_getPrefSize(e){return this._model.getSplitterSize()}_updateAttrs(e){}_getAttributeDefinitions(){return new o.AttributeDefinitions}toJson(){}}t.SplitterNode=s,s.TYPE="splitter"},38171(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.TabNode=void 0;let o=i(10046),n=i(96874),r=i(27618);class s extends r.Node{static _fromJson(e,t,i=!0){return new s(t,e,i)}static _createAttributeDefinitions(){let e=new n.AttributeDefinitions;return e.add("type",s.TYPE,!0).setType(o.Attribute.STRING),e.add("id",void 0).setType(o.Attribute.STRING),e.add("name","[Unnamed Tab]").setType(o.Attribute.STRING),e.add("altName",void 0).setType(o.Attribute.STRING),e.add("helpText",void 0).setType(o.Attribute.STRING),e.add("component",void 0).setType(o.Attribute.STRING),e.add("config",void 0).setType("any"),e.add("floating",!1).setType(o.Attribute.BOOLEAN),e.add("tabsetClassName",void 0).setType(o.Attribute.STRING),e.addInherited("enableClose","tabEnableClose").setType(o.Attribute.BOOLEAN),e.addInherited("closeType","tabCloseType").setType("ICloseType"),e.addInherited("enableDrag","tabEnableDrag").setType(o.Attribute.BOOLEAN),e.addInherited("enableRename","tabEnableRename").setType(o.Attribute.BOOLEAN),e.addInherited("className","tabClassName").setType(o.Attribute.STRING),e.addInherited("contentClassName","tabContentClassName").setType(o.Attribute.STRING),e.addInherited("icon","tabIcon").setType(o.Attribute.STRING),e.addInherited("enableRenderOnDemand","tabEnableRenderOnDemand").setType(o.Attribute.BOOLEAN),e.addInherited("enableFloat","tabEnableFloat").setType(o.Attribute.BOOLEAN),e.addInherited("borderWidth","tabBorderWidth").setType(o.Attribute.NUMBER),e.addInherited("borderHeight","tabBorderHeight").setType(o.Attribute.NUMBER),e}constructor(e,t,i=!0){super(e),this._extra={},s._attributeDefinitions.fromJson(t,this._attributes),!0===i&&e._addNode(this)}getWindow(){return this._window}getTabRect(){return this._tabRect}_setTabRect(e){this._tabRect=e}_setRenderedName(e){this._renderedName=e}_getNameForOverflowMenu(){let e=this._getAttr("altName");return void 0!==e?e:this._renderedName}getName(){return this._getAttr("name")}getHelpText(){return this._getAttr("helpText")}getComponent(){return this._getAttr("component")}getConfig(){return this._attributes.config}getExtraData(){return this._extra}isFloating(){return this._getAttr("floating")}getIcon(){return this._getAttr("icon")}isEnableClose(){return this._getAttr("enableClose")}getCloseType(){return this._getAttr("closeType")}isEnableFloat(){return this._getAttr("enableFloat")}isEnableDrag(){return this._getAttr("enableDrag")}isEnableRename(){return this._getAttr("enableRename")}getClassName(){return this._getAttr("className")}getContentClassName(){return this._getAttr("contentClassName")}getTabSetClassName(){return this._getAttr("tabsetClassName")}isEnableRenderOnDemand(){return this._getAttr("enableRenderOnDemand")}_setName(e){this._attributes.name=e,this._window&&this._window.document&&(this._window.document.title=e)}_setFloating(e){this._attributes.floating=e}_layout(e,t){e.equals(this._rect)||this._fireEvent("resize",{rect:e}),this._rect=e}_delete(){this._parent._remove(this),this._fireEvent("close",{})}toJson(){let e={};return s._attributeDefinitions.toJson(e,this._attributes),e}_updateAttrs(e){s._attributeDefinitions.update(e,this._attributes)}_getAttributeDefinitions(){return s._attributeDefinitions}_setWindow(e){this._window=e}_setBorderWidth(e){this._attributes.borderWidth=e}_setBorderHeight(e){this._attributes.borderHeight=e}static getAttributeDefinitions(){return s._attributeDefinitions}}t.TabNode=s,s.TYPE="tab",s._attributeDefinitions=s._createAttributeDefinitions()},19555(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.TabSetNode=void 0;let o=i(10046),n=i(96874),r=i(88324),s=i(94017),a=i(81648),l=i(92530),d=i(76643),h=i(71480),_=i(27618),c=i(64948),u=i(38171),g=i(82429);class T extends _.Node{static _fromJson(e,t){let i=new T(t,e);if(null!=e.children)for(let o of e.children){let e=u.TabNode._fromJson(o,t);i._addChild(e)}return 0===i._children.length&&i._setSelected(-1),e.maximized&&!0===e.maximized&&t._setMaximizedTabset(i),e.active&&!0===e.active&&t._setActiveTabset(i),i}static _createAttributeDefinitions(){let e=new n.AttributeDefinitions;return e.add("type",T.TYPE,!0).setType(o.Attribute.STRING).setFixed(),e.add("id",void 0).setType(o.Attribute.STRING),e.add("weight",100).setType(o.Attribute.NUMBER),e.add("width",void 0).setType(o.Attribute.NUMBER),e.add("height",void 0).setType(o.Attribute.NUMBER),e.add("selected",0).setType(o.Attribute.NUMBER),e.add("name",void 0).setType(o.Attribute.STRING),e.add("config",void 0).setType("any"),e.addInherited("enableDeleteWhenEmpty","tabSetEnableDeleteWhenEmpty"),e.addInherited("enableDrop","tabSetEnableDrop"),e.addInherited("enableDrag","tabSetEnableDrag"),e.addInherited("enableDivide","tabSetEnableDivide"),e.addInherited("enableMaximize","tabSetEnableMaximize"),e.addInherited("enableClose","tabSetEnableClose"),e.addInherited("enableSingleTabStretch","tabSetEnableSingleTabStretch"),e.addInherited("classNameTabStrip","tabSetClassNameTabStrip"),e.addInherited("classNameHeader","tabSetClassNameHeader"),e.addInherited("enableTabStrip","tabSetEnableTabStrip"),e.addInherited("borderInsets","tabSetBorderInsets"),e.addInherited("marginInsets","tabSetMarginInsets"),e.addInherited("minWidth","tabSetMinWidth"),e.addInherited("minHeight","tabSetMinHeight"),e.addInherited("headerHeight","tabSetHeaderHeight"),e.addInherited("tabStripHeight","tabSetTabStripHeight"),e.addInherited("tabLocation","tabSetTabLocation"),e.addInherited("autoSelectTab","tabSetAutoSelectTab").setType(o.Attribute.BOOLEAN),e}constructor(e,t){super(e),T._attributeDefinitions.fromJson(t,this._attributes),e._addNode(this),this._calculatedTabBarHeight=0,this._calculatedHeaderBarHeight=0}getName(){return this._getAttr("name")}getSelected(){let e=this._attributes.selected;return void 0!==e?e:-1}getSelectedNode(){let e=this.getSelected();if(-1!==e)return this._children[e]}getWeight(){return this._getAttr("weight")}getWidth(){return this._getAttr("width")}getMinWidth(){return this._getAttr("minWidth")}getHeight(){return this._getAttr("height")}getMinHeight(){return this._getAttr("minHeight")}getMinSize(e){return e===a.Orientation.HORZ?this.getMinWidth():this.getMinHeight()}getConfig(){return this._attributes.config}isMaximized(){return this._model.getMaximizedTabset()===this}isActive(){return this._model.getActiveTabset()===this}isEnableDeleteWhenEmpty(){return this._getAttr("enableDeleteWhenEmpty")}isEnableDrop(){return this._getAttr("enableDrop")}isEnableDrag(){return this._getAttr("enableDrag")}isEnableDivide(){return this._getAttr("enableDivide")}isEnableMaximize(){return this._getAttr("enableMaximize")}isEnableClose(){return this._getAttr("enableClose")}isEnableSingleTabStretch(){return this._getAttr("enableSingleTabStretch")}canMaximize(){return!!this.isEnableMaximize()&&(this.getModel().getMaximizedTabset()===this||this.getParent()!==this.getModel().getRoot()||1!==this.getModel().getRoot().getChildren().length)}isEnableTabStrip(){return this._getAttr("enableTabStrip")}isAutoSelectTab(){return this._getAttr("autoSelectTab")}getClassNameTabStrip(){return this._getAttr("classNameTabStrip")}getClassNameHeader(){return this._getAttr("classNameHeader")}calculateHeaderBarHeight(e){let t=this._getAttr("headerHeight");0!==t?this._calculatedHeaderBarHeight=t:this._calculatedHeaderBarHeight=e.headerBarSize}calculateTabBarHeight(e){let t=this._getAttr("tabStripHeight");0!==t?this._calculatedTabBarHeight=t:this._calculatedTabBarHeight=e.tabBarSize}getHeaderHeight(){return this._calculatedHeaderBarHeight}getTabStripHeight(){return this._calculatedTabBarHeight}getTabLocation(){return this._getAttr("tabLocation")}_setWeight(e){this._attributes.weight=e}_setSelected(e){this._attributes.selected=e}canDrop(e,t,i){let o;if(e===this){let e=r.DockLocation.CENTER,t=this._tabHeaderRect;o=new s.DropInfo(this,t,e,-1,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}else if(this._contentRect.contains(t,i)){let e=r.DockLocation.CENTER;void 0===this._model.getMaximizedTabset()&&(e=r.DockLocation.getLocation(this._contentRect,t,i));let n=e.getDockRect(this._rect);o=new s.DropInfo(this,n,e,-1,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}else if(null!=this._tabHeaderRect&&this._tabHeaderRect.contains(t,i)){let e,i,n;if(0===this._children.length)i=(e=this._tabHeaderRect.clone()).y+3,n=e.height-4,e.width=2;else{let a=this._children[0];i=(e=a.getTabRect()).y,n=e.height;let h=this._tabHeaderRect.x,_=0;for(let c=0;c=h&&t<_){let t=r.DockLocation.CENTER,a=new l.Rect(e.x-2,i,3,n);o=new s.DropInfo(this,a,t,c,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT);break}h=_}}if(null==o){let t=r.DockLocation.CENTER,a=new l.Rect(e.getRight()-2,i,3,n);o=new s.DropInfo(this,a,t,this._children.length,d.CLASSES.FLEXLAYOUT__OUTLINE_RECT)}}if(e._canDockInto(e,o))return o}_layout(e,t){this.calculateHeaderBarHeight(t),this.calculateTabBarHeight(t),this.isMaximized()&&(e=this._model.getRoot().getRect()),e=e.removeInsets(this._getAttr("marginInsets")),this._rect=e,e=e.removeInsets(this._getAttr("borderInsets"));let i=void 0!==this.getName(),o=0,n=0;i&&(o+=this._calculatedHeaderBarHeight,n+=this._calculatedHeaderBarHeight),this.isEnableTabStrip()&&("top"===this.getTabLocation()?this._tabHeaderRect=new l.Rect(e.x,e.y+o,e.width,this._calculatedTabBarHeight):this._tabHeaderRect=new l.Rect(e.x,e.y+e.height-this._calculatedTabBarHeight,e.width,this._calculatedTabBarHeight),n+=this._calculatedTabBarHeight,"top"===this.getTabLocation()&&(o+=this._calculatedTabBarHeight)),this._contentRect=new l.Rect(e.x,e.y+o,e.width,e.height-n);for(let e=0;e0&&i--,t===r.DockLocation.CENTER){let t=i;if(-1===t&&(t=this._children.length),e.getType()===u.TabNode.TYPE)this._addChild(e,t),(o||!1!==o&&this.isAutoSelectTab())&&this._setSelected(t);else{for(let i=0;i0&&this._setSelected(0)}this._model._setActiveTabset(this)}else{let i;if(e instanceof u.TabNode){let t=this._model._getOnCreateTabSet();(i=new T(this._model,t?t(e):{}))._addChild(e),n=i}else i=e;let o=this._parent,r=o.getChildren().indexOf(this);if(o.getOrientation()===t._orientation)i._setWeight(this.getWeight()/2),this._setWeight(this.getWeight()/2),o._addChild(i,r+t._indexPlus);else{let e=new c.RowNode(this._model,{});e._setWeight(this.getWeight()),e._addChild(this),this._setWeight(50),i._setWeight(50),e._addChild(i,t._indexPlus),o._removeChild(this),o._addChild(e,r)}this._model._setActiveTabset(i)}this._model._tidy()}toJson(){let e={};return T._attributeDefinitions.toJson(e,this._attributes),e.children=this._children.map(e=>e.toJson()),this.isActive()&&(e.active=!0),this.isMaximized()&&(e.maximized=!0),e}_updateAttrs(e){T._attributeDefinitions.update(e,this._attributes)}_getAttributeDefinitions(){return T._attributeDefinitions}_getPrefSize(e){let t=this.getWidth();return e===a.Orientation.VERT&&(t=this.getHeight()),t}static getAttributeDefinitions(){return T._attributeDefinitions}}t.TabSetNode=T,T.TYPE="tabset",T._attributeDefinitions=T._createAttributeDefinitions()},82429(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.randomUUID=t.adjustSelectedIndex=t.adjustSelectedIndexAfterDock=t.adjustSelectedIndexAfterFloat=void 0;let o=i(19555),n=i(71480);t.adjustSelectedIndexAfterFloat=function(e){let t=e.getParent();if(null!==t)if(t instanceof o.TabSetNode){let i=!1,o=0,n=t.getChildren();for(let t=0;t0?t>=e.getChildren().length&&e._setSelected(e.getChildren().length-1):ti||e._setSelected(-1))}},t.randomUUID=function(){return"10000000-1000-4000-8000-100000000000".replace(/[018]/g,e=>(e^crypto.getRandomValues(new Uint8Array(1))[0]&15>>e/4).toString(16))}},65742(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.BorderButton=void 0;let o=i(47867),n=i(30300),r=i(19103),s=i(92530),a=i(95731),l=i(76643),d=i(60343);t.BorderButton=e=>{let{layout:t,node:i,selected:h,border:_,iconFactory:c,titleFactory:u,icons:g,path:T}=e,E=o.useRef(null),b=o.useRef(null),p=e=>{(0,d.isAuxMouseEvent)(e)||t.getEditingTab()||t.dragStart(e,void 0,i,i.isEnableDrag(),f,S)},m=e=>{(0,d.isAuxMouseEvent)(e)&&t.auxMouseClick(i,e)},f=()=>{t.doAction(r.Actions.selectTab(i.getId()))},S=e=>{},A=e=>{e.stopPropagation()};o.useLayoutEffect(()=>{L(),t.getEditingTab()===i&&b.current.select()});let L=()=>{var e;let o=t.getDomRect(),n=null==(e=E.current)?void 0:e.getBoundingClientRect();n&&o&&i._setTabRect(new s.Rect(n.left-o.left,n.top-o.top,n.width,n.height))},v=e=>{e.stopPropagation()},O=t.getClassName,R=O(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON)+" "+O(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_+_);h?R+=" "+O(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON__SELECTED):R+=" "+O(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON__UNSELECTED),void 0!==i.getClassName()&&(R+=" "+i.getClassName());let N=0;!1===i.getModel().isEnableRotateBorderIcons()&&("left"===_?N=90:"right"===_&&(N=-90));let y=(0,d.getRenderStateEx)(t,i,c,u,N),D=y.content?o.createElement("div",{className:O(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_CONTENT)},y.content):null,B=y.leading?o.createElement("div",{className:O(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_LEADING)},y.leading):null;if(t.getEditingTab()===i&&(D=o.createElement("input",{ref:b,className:O(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_TEXTBOX),"data-layout-path":T+"/textbox",type:"text",autoFocus:!0,defaultValue:i.getName(),onKeyDown:e=>{"Escape"===e.code?t.setEditingTab(void 0):"Enter"===e.code&&(t.setEditingTab(void 0),t.doAction(r.Actions.renameTab(i.getId(),e.target.value)))},onMouseDown:v,onTouchStart:v})),i.isEnableClose()){let e=t.i18nName(n.I18nLabel.Close_Tab);y.buttons.push(o.createElement("div",{key:"close","data-layout-path":T+"/button/close",title:e,className:O(l.CLASSES.FLEXLAYOUT__BORDER_BUTTON_TRAILING),onMouseDown:A,onClick:e=>{let o;(o=i.getCloseType(),h||o===a.ICloseType.Always||o===a.ICloseType.Visible&&window.matchMedia&&window.matchMedia("(hover: hover) and (pointer: fine)").matches?0:1)?f():t.doAction(r.Actions.deleteTab(i.getId()))},onTouchStart:A},"function"==typeof g.close?g.close(i):g.close))}return o.createElement("div",{ref:E,"data-layout-path":T,className:R,onMouseDown:p,onClick:m,onAuxClick:m,onContextMenu:e=>{t.showContextMenu(i,e)},onTouchStart:p,title:i.getHelpText()},B,D,y.buttons)}},74767(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.BorderTabSet=void 0;let o=i(47867),n=i(88324),r=i(65742),s=i(59919),a=i(19103),l=i(30300),d=i(22272),h=i(81648),_=i(76643),c=i(60343);t.BorderTabSet=e=>{let{border:t,layout:i,iconFactory:u,titleFactory:g,icons:T,path:E}=e,b=o.useRef(null),p=o.useRef(null),m=o.useRef(null),{selfRef:f,position:S,userControlledLeft:A,hiddenTabs:L,onMouseWheel:v,tabsTruncated:O}=(0,d.useTabOverflow)(t,h.Orientation.flip(t.getOrientation()),b,m),R=e=>{(0,c.isAuxMouseEvent)(e)&&i.auxMouseClick(t,e)},N=e=>{e.stopPropagation()},y=e=>{i.doAction(a.Actions.selectTab(e.node.getId())),A.current=!1},D=i.getClassName,B=t.getTabHeaderRect().styleWithPosition({}),C=[],w=e=>{let n=t.getSelected()===e,s=t.getChildren()[e];C.push(o.createElement(r.BorderButton,{layout:i,border:t.getLocation().getName(),node:s,path:E+"/tb"+e,key:s.getId(),selected:n,iconFactory:u,titleFactory:g,icons:T})),e0&&(O?I=[...x,...I]:C.push(o.createElement("div",{ref:m,key:"sticky_buttons_container",onMouseDown:N,onTouchStart:N,onDragStart:e=>{e.preventDefault()},className:D(_.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_STICKY_BUTTONS_CONTAINER)},x))),L.length>0){let e,n=i.i18nName(l.I18nLabel.Overflow_Menu_Tooltip);e="function"==typeof T.more?T.more(t,L):o.createElement(o.Fragment,null,T.more,o.createElement("div",{className:D(_.CLASSES.FLEXLAYOUT__TAB_BUTTON_OVERFLOW_COUNT)},L.length)),I.splice(Math.min(U.overflowPosition,I.length),0,o.createElement("button",{key:"overflowbutton",ref:p,className:D(_.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON)+" "+D(_.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW)+" "+D(_.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_OVERFLOW_+t.getLocation().getName()),title:n,onClick:e=>{let o=i.getShowOverflowMenu();if(void 0!==o)o(t,e,L,y);else{let e=p.current;(0,s.showPopup)(e,L,y,i,u,g)}e.stopPropagation()},onMouseDown:N,onTouchStart:N},e))}let F=t.getSelected();if(-1!==F){let e=t.getChildren()[F];if(void 0!==e&&i.isSupportsPopout()&&e.isEnableFloat()&&!e.isFloating()){let n=i.i18nName(l.I18nLabel.Float_Tab);I.push(o.createElement("button",{key:"float",title:n,className:D(_.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON)+" "+D(_.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_BUTTON_FLOAT),onClick:e=>{let o=t.getChildren()[t.getSelected()];void 0!==o&&i.doAction(a.Actions.floatTab(o.getId())),e.stopPropagation()},onMouseDown:N,onTouchStart:N},"function"==typeof T.popout?T.popout(e):T.popout))}}let z=o.createElement("div",{key:"toolbar",ref:b,className:D(_.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR)+" "+D(_.CLASSES.FLEXLAYOUT__BORDER_TOOLBAR_+t.getLocation().getName())},I);B=i.styleFont(B);let P={},Y=t.getBorderBarSize()-1;return P=t.getLocation()===n.DockLocation.LEFT?{right:Y,height:Y,top:S}:t.getLocation()===n.DockLocation.RIGHT?{left:Y,height:Y,top:S}:{height:Y,left:S},o.createElement("div",{ref:f,dir:"ltr",style:B,className:M,"data-layout-path":E,onClick:R,onAuxClick:R,onContextMenu:e=>{i.showContextMenu(t,e)},onWheel:v},o.createElement("div",{style:{height:Y},className:D(_.CLASSES.FLEXLAYOUT__BORDER_INNER)+" "+D(_.CLASSES.FLEXLAYOUT__BORDER_INNER_+t.getLocation().getName())},o.createElement("div",{style:P,className:D(_.CLASSES.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER)+" "+D(_.CLASSES.FLEXLAYOUT__BORDER_INNER_TAB_CONTAINER_+t.getLocation().getName())},C)),z)}},16834(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.ErrorBoundary=void 0;let o=i(47867),n=i(76643);class r extends o.Component{constructor(e){super(e),this.state={hasError:!1}}static getDerivedStateFromError(e){return{hasError:!0}}componentDidCatch(e,t){console.debug(e),console.debug(t)}render(){return this.state.hasError?o.createElement("div",{className:n.CLASSES.FLEXLAYOUT__ERROR_BOUNDARY_CONTAINER},o.createElement("div",{className:n.CLASSES.FLEXLAYOUT__ERROR_BOUNDARY_CONTENT},this.props.message)):this.props.children}}t.ErrorBoundary=r},80094(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.FloatingWindow=void 0;let o=i(47867),n=i(25765),r=i(92530),s=i(76643);t.FloatingWindow=e=>{let{title:t,id:i,url:a,rect:l,onCloseWindow:d,onSetWindow:h,children:_}=e,c=o.useRef(null),u=o.useRef(null),[g,T]=o.useState(void 0);return(o.useLayoutEffect(()=>{u.current&&clearTimeout(u.current);let e=!0,o=l||new r.Rect(0,0,100,100),n=Array.from(window.document.styleSheets).reduce((e,t)=>{let i;try{i=t.cssRules}catch(e){}try{return[...e,{href:t.href,type:t.type,rules:i?Array.from(i).map(e=>e.cssText):null}]}catch(t){return e}},[]);return c.current=window.open(a,i,`left=${o.x},top=${o.y},width=${o.width},height=${o.height}`),null!==c.current?(h(i,c.current),window.addEventListener("beforeunload",()=>{c.current&&(c.current.close(),c.current=null)}),c.current.addEventListener("load",()=>{if(e){let e=c.current.document;e.title=t;let o=e.createElement("div");o.className=s.CLASSES.FLEXLAYOUT__FLOATING_WINDOW_CONTENT,e.body.appendChild(o),(function(e,t){let i=e.head,o=[];for(let n of t)if(n.href){let t=e.createElement("link");t.type=n.type,t.rel="stylesheet",t.href=n.href,i.appendChild(t),o.push(new Promise(e=>{t.onload=()=>e(!0)}))}else if(n.rules){let t=e.createElement("style");for(let i of n.rules)t.appendChild(e.createTextNode(i));i.appendChild(t)}return Promise.all(o)})(e,n).then(()=>{T(o)}),c.current.addEventListener("beforeunload",()=>{d(i)})}})):(console.warn(`Unable to open window ${a}`),d(i)),()=>{e=!1,u.current=setTimeout(()=>{c.current&&(c.current.close(),c.current=null)},0)}},[]),void 0!==g)?(0,n.createPortal)(_,g):null}},87515(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.FloatingWindowTab=void 0;let o=i(47867),n=i(16834),r=i(30300),s=i(47867),a=i(76643);t.FloatingWindowTab=e=>{let{layout:t,node:i,factory:l}=e,d=t.getClassName,h=l(i);return o.createElement("div",{className:d(a.CLASSES.FLEXLAYOUT__FLOATING_WINDOW_TAB)},o.createElement(n.ErrorBoundary,{message:e.layout.i18nName(r.I18nLabel.Error_rendering_component)},o.createElement(s.Fragment,null,h)))}},8636(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.RestoreIcon=t.PopoutIcon=t.EdgeIcon=t.OverflowIcon=t.MaximizeIcon=t.CloseIcon=void 0;let o=i(47867),n={width:"1em",height:"1em",display:"flex",alignItems:"center"};t.CloseIcon=()=>o.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:n,viewBox:"0 0 24 24"},o.createElement("path",{fill:"none",d:"M0 0h24v24H0z"}),o.createElement("path",{stroke:"var(--color-icon)",fill:"var(--color-icon)",d:"M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"})),t.MaximizeIcon=()=>o.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:n,viewBox:"0 0 24 24",fill:"var(--color-icon)"},o.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}),o.createElement("path",{stroke:"var(--color-icon)",d:"M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"})),t.OverflowIcon=()=>o.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:n,viewBox:"0 0 24 24",fill:"var(--color-icon)"},o.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}),o.createElement("path",{stroke:"var(--color-icon)",d:"M7 10l5 5 5-5z"})),t.EdgeIcon=()=>o.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:{display:"block",width:10,height:10},preserveAspectRatio:"none",viewBox:"0 0 100 100"},o.createElement("path",{fill:"var(--color-edge-icon)",stroke:"var(--color-edge-icon)",d:"M10 30 L90 30 l-40 40 Z"})),t.PopoutIcon=()=>o.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:n,viewBox:"0 0 20 20",fill:"var(--color-icon)"},o.createElement("path",{d:"M11 3a1 1 0 100 2h2.586l-6.293 6.293a1 1 0 101.414 1.414L15 6.414V9a1 1 0 102 0V4a1 1 0 00-1-1h-5z"}),o.createElement("path",{d:"M5 5a2 2 0 00-2 2v8a2 2 0 002 2h8a2 2 0 002-2v-3a1 1 0 10-2 0v3H5V7h3a1 1 0 000-2H5z"})),t.RestoreIcon=()=>o.createElement("svg",{xmlns:"http://www.w3.org/2000/svg",style:n,viewBox:"0 0 24 24",fill:"var(--color-icon)"},o.createElement("path",{d:"M0 0h24v24H0z",fill:"none"}),o.createElement("path",{stroke:"var(--color-icon)",d:"M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z"}))},37462(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.Layout=void 0;let o=i(47867),n=i(25765),r=i(88324),s=i(20883),a=i(19103),l=i(71480),d=i(16169),h=i(38171),_=i(19555),c=i(92530),u=i(76643),g=i(74767),T=i(72439),E=i(49425),b=i(31809),p=i(80094),m=i(87515),f=i(23203),S=i(81648),A=i(8636),L=i(2486),v={close:o.createElement(A.CloseIcon,null),closeTabset:o.createElement(A.CloseIcon,null),popout:o.createElement(A.PopoutIcon,null),maximize:o.createElement(A.MaximizeIcon,null),restore:o.createElement(A.RestoreIcon,null),more:o.createElement(A.OverflowIcon,null),edgeArrow:o.createElement(A.EdgeIcon,null)},O="u">typeof window&&(window.document.documentMode||/Edge\//.test(window.navigator.userAgent)),R="u">typeof window&&window.matchMedia&&window.matchMedia("(hover: hover) and (pointer: fine)").matches&&!O;class N extends o.Component{constructor(e){super(e),this.firstMove=!1,this.dragRectRendered=!0,this.dragDivText=void 0,this.edgeRectLength=100,this.edgeRectWidth=10,this.onModelChange=e=>{this.forceUpdate(),this.props.onModelChange&&this.props.onModelChange(this.props.model,e)},this.updateRect=e=>{if(e||(e=this.getDomRect()),!e)return;let t=new c.Rect(0,0,e.width,e.height);t.equals(this.state.rect)||0===t.width||0===t.height||this.setState({rect:t})},this.updateLayoutMetrics=()=>{if(this.findHeaderBarSizeRef.current){let e=this.findHeaderBarSizeRef.current.getBoundingClientRect().height;e!==this.state.calculatedHeaderBarSize&&this.setState({calculatedHeaderBarSize:e})}if(this.findTabBarSizeRef.current){let e=this.findTabBarSizeRef.current.getBoundingClientRect().height;e!==this.state.calculatedTabBarSize&&this.setState({calculatedTabBarSize:e})}if(this.findBorderBarSizeRef.current){let e=this.findBorderBarSizeRef.current.getBoundingClientRect().height;e!==this.state.calculatedBorderBarSize&&this.setState({calculatedBorderBarSize:e})}},this.getClassName=e=>void 0===this.props.classNameMapper?e:this.props.classNameMapper(e),this.onCloseWindow=e=>{this.doAction(a.Actions.unFloatTab(e));try{this.props.model.getNodeById(e)._setWindow(void 0)}catch(e){}},this.onSetWindow=(e,t)=>{this.props.model.getNodeById(e)._setWindow(t)},this.onCancelAdd=()=>{var e,t;let i=this.selfRef.current;i&&this.dragDiv&&i.removeChild(this.dragDiv),this.dragDiv=void 0,this.hidePortal(),null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(),this.fnNewNodeDropped=void 0);try{null==(t=null==(e=this.customDrop)?void 0:e.invalidated)||t.call(e)}catch(e){console.error(e)}s.DragDrop.instance.hideGlass(),this.newTabJson=void 0,this.customDrop=void 0},this.onCancelDrag=e=>{var t,i;if(e){let e=this.selfRef.current,o=this.outlineDiv;if(e&&o)try{e.removeChild(o)}catch(e){}let n=this.dragDiv;if(e&&n)try{e.removeChild(n)}catch(e){}this.dragDiv=void 0,this.hidePortal(),this.setState({showEdges:!1}),null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(),this.fnNewNodeDropped=void 0);try{null==(i=null==(t=this.customDrop)?void 0:t.invalidated)||i.call(t)}catch(e){console.error(e)}s.DragDrop.instance.hideGlass(),this.newTabJson=void 0,this.customDrop=void 0}this.setState({showHiddenBorder:r.DockLocation.CENTER})},this.onDragDivMouseDown=e=>{e.preventDefault(),this.dragStart(e,this.dragDivText,h.TabNode._fromJson(this.newTabJson,this.props.model,!1),!0,void 0,void 0)},this.dragStart=(e,t,i,o,n,r)=>{var a,l;o?(this.dragNode=i,this.dragDivText=t,s.DragDrop.instance.startDrag(e,this.onDragStart,this.onDragMove,this.onDragEnd,this.onCancelDrag,n,r,this.currentDocument,null!=(l=this.selfRef.current)?l:void 0)):s.DragDrop.instance.startDrag(e,void 0,void 0,void 0,void 0,n,r,this.currentDocument,null!=(a=this.selfRef.current)?a:void 0)},this.dragRectRender=(e,t,i,n)=>{let r;if(void 0!==e?r=o.createElement("div",{style:{whiteSpace:"pre"}},e.replace("
    ","\n")):t&&t instanceof h.TabNode&&(r=o.createElement(L.TabButtonStamp,{node:t,layout:this,iconFactory:this.props.iconFactory,titleFactory:this.props.titleFactory})),void 0!==this.props.onRenderDragRect){let e=this.props.onRenderDragRect(r,t,i);void 0!==e&&(r=e)}this.dragRectRendered=!1;let s=this.dragDiv;s&&(s.style.visibility="hidden",this.showPortal(o.createElement(y,{onRendered:()=>{this.dragRectRendered=!0,null==n||n()}},r),s))},this.showPortal=(e,t)=>{let i=(0,n.createPortal)(e,t);this.setState({portal:i})},this.hidePortal=()=>{this.setState({portal:void 0})},this.onDragStart=()=>{var e;this.dropInfo=void 0,this.customDrop=void 0;let t=this.selfRef.current;return this.outlineDiv=this.currentDocument.createElement("div"),this.outlineDiv.className=this.getClassName(u.CLASSES.FLEXLAYOUT__OUTLINE_RECT),this.outlineDiv.style.visibility="hidden",t&&t.appendChild(this.outlineDiv),null==this.dragDiv&&(this.dragDiv=this.currentDocument.createElement("div"),this.dragDiv.className=this.getClassName(u.CLASSES.FLEXLAYOUT__DRAG_RECT),this.dragDiv.setAttribute("data-layout-path","/drag-rectangle"),this.dragRectRender(this.dragDivText,this.dragNode,this.newTabJson),t&&t.appendChild(this.dragDiv)),void 0===this.props.model.getMaximizedTabset()&&this.setState({showEdges:this.props.model.isEnableEdgeDock()}),this.dragNode&&this.outlineDiv&&this.dragNode instanceof h.TabNode&&void 0!==this.dragNode.getTabRect()&&(null==(e=this.dragNode.getTabRect())||e.positionElement(this.outlineDiv)),this.firstMove=!0,!0},this.onDragMove=e=>{var t,i,o,n,r,s,a;if(!1===this.firstMove){let e=this.props.model._getAttribute("tabDragSpeed");this.outlineDiv&&(this.outlineDiv.style.transition=`top ${e}s, left ${e}s, width ${e}s, height ${e}s`)}this.firstMove=!1;let l=null==(t=this.selfRef.current)?void 0:t.getBoundingClientRect(),d={x:e.clientX-(null!=(i=null==l?void 0:l.left)?i:0),y:e.clientY-(null!=(o=null==l?void 0:l.top)?o:0)};this.checkForBorderToShow(d.x,d.y);let h=null!=(r=null==(n=this.dragDiv)?void 0:n.getBoundingClientRect())?r:new DOMRect(0,0,100,100),_=d.x-h.width/2;_+h.width>(null!=(s=null==l?void 0:l.width)?s:0)&&(_=(null!=(a=null==l?void 0:l.width)?a:0)-h.width),_=Math.max(0,_),this.dragDiv&&(this.dragDiv.style.left=_+"px",this.dragDiv.style.top=d.y+5+"px",this.dragRectRendered&&"hidden"===this.dragDiv.style.visibility&&(this.dragDiv.style.visibility="visible"));let c=this.props.model._findDropTargetNode(this.dragNode,d.x,d.y);c&&(this.props.onTabDrag?this.handleCustomTabDrag(c,d,e):(this.dropInfo=c,this.outlineDiv&&(this.outlineDiv.className=this.getClassName(c.className),c.rect.positionElement(this.outlineDiv),this.outlineDiv.style.visibility="visible")))},this.onDragEnd=e=>{let t=this.selfRef.current;if(t&&(this.outlineDiv&&t.removeChild(this.outlineDiv),this.dragDiv&&t.removeChild(this.dragDiv)),this.dragDiv=void 0,this.hidePortal(),this.setState({showEdges:!1}),s.DragDrop.instance.hideGlass(),this.dropInfo)if(this.customDrop){this.newTabJson=void 0;try{let{callback:e,dragging:t,over:i,x:o,y:n,location:r}=this.customDrop;e(t,i,o,n,r),null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(),this.fnNewNodeDropped=void 0)}catch(e){console.error(e)}}else if(void 0!==this.newTabJson){let t=this.doAction(a.Actions.addNode(this.newTabJson,this.dropInfo.node.getId(),this.dropInfo.location,this.dropInfo.index));null!=this.fnNewNodeDropped&&(this.fnNewNodeDropped(t,e),this.fnNewNodeDropped=void 0),this.newTabJson=void 0}else void 0!==this.dragNode&&this.doAction(a.Actions.moveNode(this.dragNode.getId(),this.dropInfo.node.getId(),this.dropInfo.location,this.dropInfo.index));this.setState({showHiddenBorder:r.DockLocation.CENTER})},this.props.model._setChangeListener(this.onModelChange),this.tabIds=[],this.selfRef=o.createRef(),this.findHeaderBarSizeRef=o.createRef(),this.findTabBarSizeRef=o.createRef(),this.findBorderBarSizeRef=o.createRef(),this.supportsPopout=void 0!==e.supportsPopout?e.supportsPopout:R,this.popoutURL=e.popoutURL?e.popoutURL:"popout.html",this.icons=Object.assign(Object.assign({},v),e.icons),this.state={rect:new c.Rect(0,0,0,0),calculatedHeaderBarSize:25,calculatedTabBarSize:26,calculatedBorderBarSize:30,editingTab:void 0,showHiddenBorder:r.DockLocation.CENTER,showEdges:!1},this.onDragEnter=this.onDragEnter.bind(this)}styleFont(e){return this.props.font&&(this.selfRef.current&&(this.props.font.size&&this.selfRef.current.style.setProperty("--font-size",this.props.font.size),this.props.font.family&&this.selfRef.current.style.setProperty("--font-family",this.props.font.family)),this.props.font.style&&(e.fontStyle=this.props.font.style),this.props.font.weight&&(e.fontWeight=this.props.font.weight)),e}doAction(e){if(void 0===this.props.onAction)return this.props.model.doAction(e);{let t=this.props.onAction(e);return void 0!==t?this.props.model.doAction(t):void 0}}componentDidMount(){this.updateRect(),this.updateLayoutMetrics(),this.currentDocument=this.selfRef.current.ownerDocument,this.currentWindow=this.currentDocument.defaultView,this.resizeObserver=new ResizeObserver(e=>{this.updateRect(e[0].contentRect)});let e=this.selfRef.current;e&&this.resizeObserver.observe(e)}componentDidUpdate(){this.updateLayoutMetrics(),this.props.model!==this.previousModel&&(void 0!==this.previousModel&&this.previousModel._setChangeListener(void 0),this.props.model._setChangeListener(this.onModelChange),this.previousModel=this.props.model)}getCurrentDocument(){return this.currentDocument}getDomRect(){var e;return null==(e=this.selfRef.current)?void 0:e.getBoundingClientRect()}getRootDiv(){return this.selfRef.current}isSupportsPopout(){return this.supportsPopout}isRealtimeResize(){var e;return null!=(e=this.props.realtimeResize)&&e}onTabDrag(...e){var t,i;return null==(i=(t=this.props).onTabDrag)?void 0:i.call(t,...e)}getPopoutURL(){return this.popoutURL}componentWillUnmount(){var e;let t=this.selfRef.current;t&&(null==(e=this.resizeObserver)||e.unobserve(t))}setEditingTab(e){this.setState({editingTab:e})}getEditingTab(){return this.state.editingTab}render(){if(!this.selfRef.current)return o.createElement("div",{ref:this.selfRef,className:this.getClassName(u.CLASSES.FLEXLAYOUT__LAYOUT)},this.metricsElements());this.props.model._setPointerFine(window&&window.matchMedia&&window.matchMedia("(pointer: fine)").matches);let e=[],t=[],i=[],n={},r=[],s={headerBarSize:this.state.calculatedHeaderBarSize,tabBarSize:this.state.calculatedTabBarSize,borderBarSize:this.state.calculatedBorderBarSize};this.props.model._setShowHiddenBorder(this.state.showHiddenBorder),this.centerRect=this.props.model._layout(this.state.rect,s),this.renderBorder(this.props.model.getBorderSet(),e,n,i,r),this.renderChildren("",this.props.model.getRoot(),t,n,i,r);let a=[],l={};for(let e of this.tabIds)n[e]&&(a.push(e),l[e]=e);for(let e of(this.tabIds=a,Object.keys(n)))l[e]||this.tabIds.push(e);let d=[],h=this.icons.edgeArrow;if(this.state.showEdges){let e=this.centerRect,t=this.edgeRectLength,i=this.edgeRectWidth,n=this.edgeRectLength/2,r=this.getClassName(u.CLASSES.FLEXLAYOUT__EDGE_RECT);d.push(o.createElement("div",{key:"North",style:{top:e.y,left:e.x+e.width/2-n,width:t,height:i,borderBottomLeftRadius:50,borderBottomRightRadius:50},className:r+" "+this.getClassName(u.CLASSES.FLEXLAYOUT__EDGE_RECT_TOP)},o.createElement("div",{style:{transform:"rotate(180deg)"}},h))),d.push(o.createElement("div",{key:"West",style:{top:e.y+e.height/2-n,left:e.x,width:i,height:t,borderTopRightRadius:50,borderBottomRightRadius:50},className:r+" "+this.getClassName(u.CLASSES.FLEXLAYOUT__EDGE_RECT_LEFT)},o.createElement("div",{style:{transform:"rotate(90deg)"}},h))),d.push(o.createElement("div",{key:"South",style:{top:e.y+e.height-i,left:e.x+e.width/2-n,width:t,height:i,borderTopLeftRadius:50,borderTopRightRadius:50},className:r+" "+this.getClassName(u.CLASSES.FLEXLAYOUT__EDGE_RECT_BOTTOM)},o.createElement("div",null,h))),d.push(o.createElement("div",{key:"East",style:{top:e.y+e.height/2-n,left:e.x+e.width-i,width:i,height:t,borderTopLeftRadius:50,borderBottomLeftRadius:50},className:r+" "+this.getClassName(u.CLASSES.FLEXLAYOUT__EDGE_RECT_RIGHT)},o.createElement("div",{style:{transform:"rotate(-90deg)"}},h)))}return o.createElement("div",{ref:this.selfRef,className:this.getClassName(u.CLASSES.FLEXLAYOUT__LAYOUT),onDragEnter:this.props.onExternalDrag?this.onDragEnter:void 0},t,this.tabIds.map(e=>n[e]),e,r,d,i,this.metricsElements(),this.state.portal)}metricsElements(){let e=this.styleFont({visibility:"hidden"});return o.createElement(o.Fragment,null,o.createElement("div",{key:"findHeaderBarSize",ref:this.findHeaderBarSizeRef,style:e,className:this.getClassName(u.CLASSES.FLEXLAYOUT__TABSET_HEADER_SIZER)},"FindHeaderBarSize"),o.createElement("div",{key:"findTabBarSize",ref:this.findTabBarSizeRef,style:e,className:this.getClassName(u.CLASSES.FLEXLAYOUT__TABSET_SIZER)},"FindTabBarSize"),o.createElement("div",{key:"findBorderBarSize",ref:this.findBorderBarSizeRef,style:e,className:this.getClassName(u.CLASSES.FLEXLAYOUT__BORDER_SIZER)},"FindBorderBarSize"))}renderBorder(e,t,i,n,r){for(let s of e.getBorders()){let e=`/border/${s.getLocation().getName()}`;if(s.isShowing()){t.push(o.createElement(g.BorderTabSet,{key:`border_${s.getLocation().getName()}`,path:e,border:s,layout:this,iconFactory:this.props.iconFactory,titleFactory:this.props.titleFactory,icons:this.icons}));let a=s._getDrawChildren(),l=0,_=0;for(let t of a){if(t instanceof d.SplitterNode){let i=e+"/s";r.push(o.createElement(T.Splitter,{key:t.getId(),layout:this,node:t,path:i}))}else if(t instanceof h.TabNode){let r=e+"/t"+_++;if(this.supportsPopout&&t.isFloating()){let e=this._getScreenRect(t),a=t._getAttr("borderWidth"),d=t._getAttr("borderHeight");e&&(-1!==a&&s.getLocation().getOrientation()===S.Orientation.HORZ?e.width=a:-1!==d&&s.getLocation().getOrientation()===S.Orientation.VERT&&(e.height=d)),n.push(o.createElement(p.FloatingWindow,{key:t.getId(),url:this.popoutURL,rect:e,title:t.getName(),id:t.getId(),onSetWindow:this.onSetWindow,onCloseWindow:this.onCloseWindow},o.createElement(m.FloatingWindowTab,{layout:this,node:t,factory:this.props.factory}))),i[t.getId()]=o.createElement(f.TabFloating,{key:t.getId(),layout:this,path:r,node:t,selected:l===s.getSelected()})}else i[t.getId()]=o.createElement(E.Tab,{key:t.getId(),layout:this,path:r,node:t,selected:l===s.getSelected(),factory:this.props.factory})}l++}}}}renderChildren(e,t,i,n,r,s){let a=t._getDrawChildren(),l=0,c=0,u=0;for(let t of a)if(t instanceof d.SplitterNode){let i=e+"/s"+l++;s.push(o.createElement(T.Splitter,{key:t.getId(),layout:this,path:i,node:t}))}else if(t instanceof _.TabSetNode){let a=e+"/ts"+u++;i.push(o.createElement(b.TabSet,{key:t.getId(),layout:this,path:a,node:t,iconFactory:this.props.iconFactory,titleFactory:this.props.titleFactory,icons:this.icons})),this.renderChildren(a,t,i,n,r,s)}else if(t instanceof h.TabNode){let i=e+"/t"+c++,s=t.getParent().getChildren()[t.getParent().getSelected()];if(void 0===s&&console.warn("undefined selectedTab should not happen"),this.supportsPopout&&t.isFloating()){let e=this._getScreenRect(t);r.push(o.createElement(p.FloatingWindow,{key:t.getId(),url:this.popoutURL,rect:e,title:t.getName(),id:t.getId(),onSetWindow:this.onSetWindow,onCloseWindow:this.onCloseWindow},o.createElement(m.FloatingWindowTab,{layout:this,node:t,factory:this.props.factory}))),n[t.getId()]=o.createElement(f.TabFloating,{key:t.getId(),layout:this,path:i,node:t,selected:t===s})}else n[t.getId()]=o.createElement(E.Tab,{key:t.getId(),layout:this,path:i,node:t,selected:t===s,factory:this.props.factory})}else{let o=e+(t.getOrientation()===S.Orientation.HORZ?"/r":"/c")+u++;this.renderChildren(o,t,i,n,r,s)}}_getScreenRect(e){var t;let i=e.getRect().clone(),o=null==(t=this.selfRef.current)?void 0:t.getBoundingClientRect();if(!o)return null;let n=Math.min(80,this.currentWindow.outerHeight-this.currentWindow.innerHeight),r=Math.min(80,this.currentWindow.outerWidth-this.currentWindow.innerWidth);return i.x=i.x+o.x+this.currentWindow.screenX+r,i.y=i.y+o.y+this.currentWindow.screenY+n,i}addTabToTabSet(e,t){if(void 0!==this.props.model.getNodeById(e))return this.doAction(a.Actions.addNode(t,e,r.DockLocation.CENTER,-1))}addTabToActiveTabSet(e){let t=this.props.model.getActiveTabset();if(void 0!==t)return this.doAction(a.Actions.addNode(e,t.getId(),r.DockLocation.CENTER,-1))}addTabWithDragAndDrop(e,t,i){this.fnNewNodeDropped=i,this.newTabJson=t,this.dragStart(void 0,e,h.TabNode._fromJson(t,this.props.model,!1),!0,void 0,void 0)}moveTabWithDragAndDrop(e,t){this.dragStart(void 0,t,e,!0,void 0,void 0)}addTabWithDragAndDropIndirect(e,t,i){this.fnNewNodeDropped=i,this.newTabJson=t,s.DragDrop.instance.addGlass(this.onCancelAdd),this.dragDivText=e,this.dragDiv=this.currentDocument.createElement("div"),this.dragDiv.className=this.getClassName(u.CLASSES.FLEXLAYOUT__DRAG_RECT),this.dragDiv.addEventListener("mousedown",this.onDragDivMouseDown),this.dragDiv.addEventListener("touchstart",this.onDragDivMouseDown,{passive:!1}),this.dragRectRender(this.dragDivText,void 0,this.newTabJson,()=>{if(this.dragDiv){this.dragDiv.style.visibility="visible";let e=this.dragDiv.getBoundingClientRect(),t=new c.Rect(0,0,null==e?void 0:e.width,null==e?void 0:e.height);t.centerInRect(this.state.rect),this.dragDiv.setAttribute("data-layout-path","/drag-rectangle"),this.dragDiv.style.left=t.x+"px",this.dragDiv.style.top=t.y+"px"}}),this.selfRef.current.appendChild(this.dragDiv)}handleCustomTabDrag(e,t,i){var o,n,r;let a=null==(o=this.customDrop)?void 0:o.invalidated,d=null==(n=this.customDrop)?void 0:n.callback;this.customDrop=void 0;let g=this.newTabJson||(this.dragNode instanceof h.TabNode?this.dragNode:void 0);if(g&&(e.node instanceof _.TabSetNode||e.node instanceof l.BorderNode)&&-1===e.index){let o=e.node.getSelectedNode(),n=null==o?void 0:o.getRect();if(o&&(null==n?void 0:n.contains(t.x,t.y))){let r;try{let s=this.onTabDrag(g,o,t.x-n.x,t.y-n.y,e.location,()=>this.onDragMove(i));s&&(r={rect:new c.Rect(s.x+n.x,s.y+n.y,s.width,s.height),callback:s.callback,invalidated:s.invalidated,dragging:g,over:o,x:t.x-n.x,y:t.y-n.y,location:e.location,cursor:s.cursor})}catch(e){console.error(e)}(null==r?void 0:r.callback)===d&&(a=void 0),this.customDrop=r}}this.dropInfo=e,this.outlineDiv&&(this.outlineDiv.className=this.getClassName(this.customDrop?u.CLASSES.FLEXLAYOUT__OUTLINE_RECT:e.className),this.customDrop?this.customDrop.rect.positionElement(this.outlineDiv):e.rect.positionElement(this.outlineDiv)),s.DragDrop.instance.setGlassCursorOverride(null==(r=this.customDrop)?void 0:r.cursor),this.outlineDiv&&(this.outlineDiv.style.visibility="visible");try{null==a||a()}catch(e){console.error(e)}}onDragEnter(e){if(s.DragDrop.instance.isDragging())return;let t=this.props.onExternalDrag(e);t&&(this.fnNewNodeDropped=t.onDrop,this.newTabJson=t.json,this.dragStart(e,t.dragText,h.TabNode._fromJson(t.json,this.props.model,!1),!0,void 0,void 0))}checkForBorderToShow(e,t){let i=this.props.model._getOuterInnerRects().outer,o=i.getCenter(),n=this.edgeRectWidth,s=this.edgeRectLength/2,a=!1;this.props.model.isEnableEdgeDock()&&this.state.showHiddenBorder===r.DockLocation.CENTER&&(t>o.y-s&&to.x-s&&e=i.getRight()-n?l=r.DockLocation.RIGHT:t<=i.y+n?l=r.DockLocation.TOP:t>=i.getBottom()-n&&(l=r.DockLocation.BOTTOM)),l!==this.state.showHiddenBorder&&this.setState({showHiddenBorder:l})}maximize(e){this.doAction(a.Actions.maximizeToggle(e.getId()))}customizeTab(e,t){this.props.onRenderTab&&this.props.onRenderTab(e,t)}customizeTabSet(e,t){this.props.onRenderTabSet&&this.props.onRenderTabSet(e,t)}i18nName(e,t){let i;return this.props.i18nMapper&&(i=this.props.i18nMapper(e,t)),void 0===i&&(i=e+(void 0===t?"":t)),i}getOnRenderFloatingTabPlaceholder(){return this.props.onRenderFloatingTabPlaceholder}getShowOverflowMenu(){return this.props.onShowOverflowMenu}getTabSetPlaceHolderCallback(){return this.props.onTabSetPlaceHolder}showContextMenu(e,t){this.props.onContextMenu&&this.props.onContextMenu(e,t)}auxMouseClick(e,t){this.props.onAuxMouseClick&&this.props.onAuxMouseClick(e,t)}}t.Layout=N;let y=e=>(o.useEffect(()=>{var t;null==(t=e.onRendered)||t.call(e)},[e]),o.createElement(o.Fragment,null,e.children))},72439(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.Splitter=void 0;let o=i(47867),n=i(20883),r=i(19103),s=i(71480),a=i(81648),l=i(76643);t.Splitter=e=>{let{layout:t,node:i,path:d}=e,h=o.useRef([]),_=o.useRef(void 0),c=i.getParent(),u=e=>{var o;n.DragDrop.instance.setGlassCursorOverride(i.getOrientation()===a.Orientation.HORZ?"ns-resize":"ew-resize"),n.DragDrop.instance.startDrag(e,T,E,p,g,void 0,void 0,t.getCurrentDocument(),null!=(o=t.getRootDiv())?o:void 0),h.current=c._getSplitterBounds(i,!0);let r=t.getRootDiv();_.current=t.getCurrentDocument().createElement("div"),_.current.style.position="absolute",_.current.className=t.getClassName(l.CLASSES.FLEXLAYOUT__SPLITTER_DRAG),_.current.style.cursor=i.getOrientation()===a.Orientation.HORZ?"ns-resize":"ew-resize";let s=i.getRect();i.getOrientation()===a.Orientation.VERT&&s.width<2?s.width=2:i.getOrientation()===a.Orientation.HORZ&&s.height<2&&(s.height=2),s.positionElement(_.current),r&&r.appendChild(_.current)},g=e=>{let i=t.getRootDiv();i&&i.removeChild(_.current)},T=()=>!0,E=e=>{let o=t.getDomRect();if(!o)return;let n={x:e.clientX-o.left,y:e.clientY-o.top};_&&(i.getOrientation()===a.Orientation.HORZ?_.current.style.top=m(n.y-4)+"px":_.current.style.left=m(n.x-4)+"px"),t.isRealtimeResize()&&b()},b=()=>{let e=0;if(_&&(e=i.getOrientation()===a.Orientation.HORZ?_.current.offsetTop:_.current.offsetLeft),c instanceof s.BorderNode){let o=c._calculateSplit(i,e);t.doAction(r.Actions.adjustBorderSplit(i.getParent().getId(),o))}else{let o=c._calculateSplit(i,e);void 0!==o&&t.doAction(r.Actions.adjustSplit(o))}},p=()=>{b();let e=t.getRootDiv();e&&e.removeChild(_.current)},m=e=>{let t=h.current,i=e;return et[1]&&(i=t[1]),i},f=t.getClassName,S=i.getRect(),A=S.styleWithPosition({cursor:i.getOrientation()===a.Orientation.HORZ?"ns-resize":"ew-resize"}),L=f(l.CLASSES.FLEXLAYOUT__SPLITTER)+" "+f(l.CLASSES.FLEXLAYOUT__SPLITTER_+i.getOrientation().getName());c instanceof s.BorderNode?L+=" "+f(l.CLASSES.FLEXLAYOUT__SPLITTER_BORDER):void 0!==i.getModel().getMaximizedTabset()&&(A.display="none");let v=i.getModel().getSplitterExtra();if(0===v)return o.createElement("div",{style:A,"data-layout-path":d,className:L,onTouchStart:u,onMouseDown:u});{let e=S.clone();e.x=0,e.y=0,i.getOrientation()===a.Orientation.VERT?e.width+=v:e.height+=v;let t=e.styleWithPosition({cursor:i.getOrientation()===a.Orientation.HORZ?"ns-resize":"ew-resize"}),n=f(l.CLASSES.FLEXLAYOUT__SPLITTER_EXTRA);return o.createElement("div",{style:A,"data-layout-path":d,className:L},o.createElement("div",{style:t,className:n,onTouchStart:u,onMouseDown:u}))}}},49425(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.Tab=void 0;let o=i(47867),n=i(47867),r=i(19103),s=i(19555),a=i(76643),l=i(16834),d=i(30300),h=i(71480),_=i(60343);t.Tab=e=>{let t,{layout:i,selected:c,node:u,factory:g,path:T}=e,[E,b]=o.useState(!e.node.isEnableRenderOnDemand()||e.selected);o.useLayoutEffect(()=>{!E&&c&&b(!0)});let p=()=>{let e=u.getParent();e.getType()!==s.TabSetNode.TYPE||e.isActive()||i.doAction(r.Actions.setActiveTabset(e.getId()))},m=i.getClassName,f=u.getModel().isUseVisibility(),S=u.getParent(),A=u._styleWithPosition();c||(0,_.hideElement)(A,f),S instanceof s.TabSetNode&&void 0!==u.getModel().getMaximizedTabset()&&!S.isMaximized()&&(0,_.hideElement)(A,f),E&&(t=g(u));let L=m(a.CLASSES.FLEXLAYOUT__TAB);return S instanceof h.BorderNode&&(L+=" "+m(a.CLASSES.FLEXLAYOUT__TAB_BORDER),L+=" "+m(a.CLASSES.FLEXLAYOUT__TAB_BORDER_+S.getLocation().getName())),void 0!==u.getContentClassName()&&(L+=" "+u.getContentClassName()),o.createElement("div",{className:L,"data-layout-path":T,onMouseDown:p,onTouchStart:p,style:A},o.createElement(l.ErrorBoundary,{message:e.layout.i18nName(d.I18nLabel.Error_rendering_component)},o.createElement(n.Fragment,null,t)))}},35641(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.TabButton=void 0;let o=i(47867),n=i(30300),r=i(19103),s=i(92530),a=i(95731),l=i(76643),d=i(60343);t.TabButton=e=>{let{layout:t,node:i,selected:h,iconFactory:_,titleFactory:c,icons:u,path:g}=e,T=o.useRef(null),E=o.useRef(null),b=e=>{(0,d.isAuxMouseEvent)(e)||t.getEditingTab()||t.dragStart(e,void 0,i,i.isEnableDrag(),m,f)},p=e=>{(0,d.isAuxMouseEvent)(e)&&t.auxMouseClick(i,e)},m=()=>{t.doAction(r.Actions.selectTab(i.getId()))},f=e=>{i.isEnableRename()&&S()},S=()=>{t.setEditingTab(i),t.getCurrentDocument().body.addEventListener("mousedown",A),t.getCurrentDocument().body.addEventListener("touchstart",A)},A=e=>{e.target!==E.current&&(t.getCurrentDocument().body.removeEventListener("mousedown",A),t.getCurrentDocument().body.removeEventListener("touchstart",A),t.setEditingTab(void 0))},L=e=>{e.stopPropagation()};o.useLayoutEffect(()=>{v(),t.getEditingTab()===i&&E.current.select()});let v=()=>{var e;let o=t.getDomRect(),n=null==(e=T.current)?void 0:e.getBoundingClientRect();n&&o&&i._setTabRect(new s.Rect(n.left-o.left,n.top-o.top,n.width,n.height))},O=e=>{e.stopPropagation()},R=t.getClassName,N=i.getParent(),y=N.isEnableSingleTabStretch()&&1===N.getChildren().length,D=y?l.CLASSES.FLEXLAYOUT__TAB_BUTTON_STRETCH:l.CLASSES.FLEXLAYOUT__TAB_BUTTON,B=R(D);B+=" "+R(D+"_"+N.getTabLocation()),y||(h?B+=" "+R(D+"--selected"):B+=" "+R(D+"--unselected")),void 0!==i.getClassName()&&(B+=" "+i.getClassName());let C=(0,d.getRenderStateEx)(t,i,_,c),w=C.content?o.createElement("div",{className:R(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_CONTENT)},C.content):null,M=C.leading?o.createElement("div",{className:R(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_LEADING)},C.leading):null;if(t.getEditingTab()===i&&(w=o.createElement("input",{ref:E,className:R(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_TEXTBOX),"data-layout-path":g+"/textbox",type:"text",autoFocus:!0,defaultValue:i.getName(),onKeyDown:e=>{"Escape"===e.code?t.setEditingTab(void 0):"Enter"===e.code&&(t.setEditingTab(void 0),t.doAction(r.Actions.renameTab(i.getId(),e.target.value)))},onMouseDown:O,onTouchStart:O})),i.isEnableClose()&&!y){let e=t.i18nName(n.I18nLabel.Close_Tab);C.buttons.push(o.createElement("div",{key:"close","data-layout-path":g+"/button/close",title:e,className:R(l.CLASSES.FLEXLAYOUT__TAB_BUTTON_TRAILING),onMouseDown:L,onClick:e=>{let o;(o=i.getCloseType(),h||o===a.ICloseType.Always||o===a.ICloseType.Visible&&window.matchMedia&&window.matchMedia("(hover: hover) and (pointer: fine)").matches?0:1)?m():t.doAction(r.Actions.deleteTab(i.getId()))},onTouchStart:L},"function"==typeof u.close?u.close(i):u.close))}return o.createElement("div",{ref:T,"data-layout-path":g,className:B,onMouseDown:b,onClick:p,onAuxClick:p,onContextMenu:e=>{t.showContextMenu(i,e)},onTouchStart:b,title:i.getHelpText()},M,w,C.buttons)}},2486(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.TabButtonStamp=void 0;let o=i(47867),n=i(76643),r=i(60343);t.TabButtonStamp=e=>{let{layout:t,node:i,iconFactory:s,titleFactory:a}=e,l=o.useRef(null),d=t.getClassName,h=d(n.CLASSES.FLEXLAYOUT__TAB_BUTTON_STAMP),_=(0,r.getRenderStateEx)(t,i,s,a),c=_.content?o.createElement("div",{className:d(n.CLASSES.FLEXLAYOUT__TAB_BUTTON_CONTENT)},_.content):i._getNameForOverflowMenu(),u=_.leading?o.createElement("div",{className:d(n.CLASSES.FLEXLAYOUT__TAB_BUTTON_LEADING)},_.leading):null;return o.createElement("div",{ref:l,className:h,title:i.getHelpText()},u,c)}},23203(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.TabFloating=void 0;let o=i(47867),n=i(19103),r=i(19555),s=i(76643),a=i(30300),l=i(60343);t.TabFloating=e=>{let{layout:t,selected:i,node:d,path:h}=e,_=()=>{d.getWindow()&&d.getWindow().focus()},c=()=>{t.doAction(n.Actions.unFloatTab(d.getId()))},u=()=>{let e=d.getParent();e.getType()!==r.TabSetNode.TYPE||e.isActive()||t.doAction(n.Actions.setActiveTabset(e.getId()))},g=t.getClassName,T=d.getParent(),E=d._styleWithPosition();i||(0,l.hideElement)(E,d.getModel().isUseVisibility()),T instanceof r.TabSetNode&&void 0!==d.getModel().getMaximizedTabset()&&!T.isMaximized()&&(0,l.hideElement)(E,d.getModel().isUseVisibility());let b=t.i18nName(a.I18nLabel.Floating_Window_Message),p=t.i18nName(a.I18nLabel.Floating_Window_Show_Window),m=t.i18nName(a.I18nLabel.Floating_Window_Dock_Window),f=t.getOnRenderFloatingTabPlaceholder();return f?o.createElement("div",{className:g(s.CLASSES.FLEXLAYOUT__TAB_FLOATING),onMouseDown:u,onTouchStart:u,style:E},f(c,_)):o.createElement("div",{className:g(s.CLASSES.FLEXLAYOUT__TAB_FLOATING),"data-layout-path":h,onMouseDown:u,onTouchStart:u,style:E},o.createElement("div",{className:g(s.CLASSES.FLEXLAYOUT__TAB_FLOATING_INNER)},o.createElement("div",null,b),o.createElement("div",null,o.createElement("a",{href:"#",onClick:e=>{e.preventDefault(),_()}},p)),o.createElement("div",null,o.createElement("a",{href:"#",onClick:e=>{e.preventDefault(),c()}},m))))}},22272(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.useTabOverflow=void 0;let o=i(47867),n=i(92530),r=i(19555),s=i(81648);t.useTabOverflow=(e,t,i,a)=>{let l=o.useRef(!0),d=o.useRef(!1),h=o.useRef(new n.Rect(0,0,0,0)),_=o.useRef(null),[c,u]=o.useState(0),g=o.useRef(!1),[T,E]=o.useState([]),b=o.useRef(0);o.useLayoutEffect(()=>{g.current=!1},[e.getSelectedNode(),e.getRect().width,e.getRect().height]),o.useLayoutEffect(()=>{L()});let p=_.current;o.useEffect(()=>{if(p)return p.addEventListener("wheel",m,{passive:!1}),()=>{p.removeEventListener("wheel",m)}},[p]);let m=e=>{e.preventDefault()},f=e=>t===s.Orientation.HORZ?e.x:e.y,S=e=>t===s.Orientation.HORZ?e.getRight():e.getBottom(),A=e=>t===s.Orientation.HORZ?e.width:e.height,L=()=>{!0===l.current&&(d.current=!1);let t=e instanceof r.TabSetNode?e.getRect():e.getTabHeaderRect(),o=e.getChildren()[e.getChildren().length-1],n=null===a.current?0:A(a.current.getBoundingClientRect());if(!0===l.current||0===b.current&&0!==T.length||t.width!==h.current.width||t.height!==h.current.height){b.current=T.length,h.current=t;let s=!(e instanceof r.TabSetNode)||!0===e.isEnableTabStrip(),a=S(t)-n;if(null!==i.current&&(a-=A(i.current.getBoundingClientRect())),s&&e.getChildren().length>0){if(0===T.length&&0===c&&S(o.getTabRect())+2=a-f(t)?i=f(t)-o:(r>a||oa&&(i=a-r))}let r=Math.max(0,a-(S(o.getTabRect())+2+i)),s=Math.min(0,c+i+r),h=s-c,_=[];for(let i=0;ia)&&_.push({node:o,index:i})}_.length>0&&(d.current=!0),l.current=!1,E(_),u(s)}}else l.current=!0};return{selfRef:_,position:c,userControlledLeft:g,hiddenTabs:T,onMouseWheel:e=>{let t=0;t=Math.abs(e.deltaX)>Math.abs(e.deltaY)?-e.deltaX:-e.deltaY,1===e.deltaMode&&(t*=40),u(c+t),g.current=!0,e.stopPropagation()},tabsTruncated:d.current}}},31809(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.TabSet=void 0;let o=i(47867),n=i(30300),r=i(19103),s=i(59919),a=i(35641),l=i(22272),d=i(81648),h=i(76643),_=i(60343);t.TabSet=e=>{let t,i,{node:c,layout:u,iconFactory:g,titleFactory:T,icons:E,path:b}=e,p=o.useRef(null),m=o.useRef(null),f=o.useRef(null),S=o.useRef(null),{selfRef:A,position:L,userControlledLeft:v,hiddenTabs:O,onMouseWheel:R,tabsTruncated:N}=(0,l.useTabOverflow)(c,d.Orientation.HORZ,p,S),y=e=>{u.doAction(r.Actions.selectTab(e.node.getId())),v.current=!1},D=e=>{if(!(0,_.isAuxMouseEvent)(e)){let t=c.getName();if(t=void 0===t?"":": "+t,u.doAction(r.Actions.setActiveTabset(c.getId())),!u.getEditingTab()){let i=u.i18nName(n.I18nLabel.Move_Tabset,t);void 0!==c.getModel().getMaximizedTabset()?u.dragStart(e,i,c,!1,e=>void 0,M):u.dragStart(e,i,c,c.isEnableDrag(),e=>void 0,M)}}},B=e=>{(0,_.isAuxMouseEvent)(e)&&u.auxMouseClick(c,e)},C=e=>{u.showContextMenu(c,e)},w=e=>{e.stopPropagation()},M=e=>{c.canMaximize()&&u.maximize(c)},I=u.getClassName;null!==f.current&&0!==f.current.scrollLeft&&(f.current.scrollLeft=0);let x=c.getSelectedNode(),U=c._styleWithPosition();void 0===c.getModel().getMaximizedTabset()||c.isMaximized()||(0,_.hideElement)(U,c.getModel().isUseVisibility());let F=[];if(c.isEnableTabStrip())for(let e=0;e0&&(N||W?Y=[...P,...Y]:F.push(o.createElement("div",{ref:S,key:"sticky_buttons_container",onMouseDown:w,onTouchStart:w,onDragStart:e=>{e.preventDefault()},className:I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_STICKY_BUTTONS_CONTAINER)},P))),O.length>0){let e,t=u.i18nName(n.I18nLabel.Overflow_Menu_Tooltip);e="function"==typeof E.more?E.more(c,O):o.createElement(o.Fragment,null,E.more,o.createElement("div",{className:I(h.CLASSES.FLEXLAYOUT__TAB_BUTTON_OVERFLOW_COUNT)},O.length)),Y.splice(Math.min(X.overflowPosition,Y.length),0,o.createElement("button",{key:"overflowbutton","data-layout-path":b+"/button/overflow",ref:m,className:I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+I(h.CLASSES.FLEXLAYOUT__TAB_BUTTON_OVERFLOW),title:t,onClick:e=>{let t=u.getShowOverflowMenu();if(void 0!==t)t(c,e,O,y);else{let e=m.current;(0,s.showPopup)(e,O,y,u,g,T)}e.stopPropagation()},onMouseDown:w,onTouchStart:w},e))}if(void 0!==x&&u.isSupportsPopout()&&x.isEnableFloat()&&!x.isFloating()){let e=u.i18nName(n.I18nLabel.Float_Tab);Y.push(o.createElement("button",{key:"float","data-layout-path":b+"/button/float",title:e,className:I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_FLOAT),onClick:e=>{void 0!==x&&u.doAction(r.Actions.floatTab(x.getId())),e.stopPropagation()},onMouseDown:w,onTouchStart:w},"function"==typeof E.popout?E.popout(x):E.popout))}if(c.canMaximize()){let e=u.i18nName(n.I18nLabel.Restore),t=u.i18nName(n.I18nLabel.Maximize);(z?H:Y).push(o.createElement("button",{key:"max","data-layout-path":b+"/button/max",title:c.isMaximized()?e:t,className:I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_+(c.isMaximized()?"max":"min")),onClick:e=>{c.canMaximize()&&u.maximize(c),e.stopPropagation()},onMouseDown:w,onTouchStart:w},c.isMaximized()?"function"==typeof E.restore?E.restore(c):E.restore:"function"==typeof E.maximize?E.maximize(c):E.maximize))}if(!c.isMaximized()&&G){let e=W?u.i18nName(n.I18nLabel.Close_Tab):u.i18nName(n.I18nLabel.Close_Tabset);(z?H:Y).push(o.createElement("button",{key:"close","data-layout-path":b+"/button/close",title:e,className:I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON)+" "+I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR_BUTTON_CLOSE),onClick:W?e=>{u.doAction(r.Actions.deleteTab(c.getChildren()[0].getId())),e.stopPropagation()}:e=>{u.doAction(r.Actions.deleteTabset(c.getId())),e.stopPropagation()},onMouseDown:w,onTouchStart:w},"function"==typeof E.closeTabset?E.closeTabset(c):E.closeTabset))}let j=o.createElement("div",{key:"toolbar",ref:p,className:I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR),onMouseDown:w,onTouchStart:w,onDragStart:e=>{e.preventDefault()}},Y),V=I(h.CLASSES.FLEXLAYOUT__TABSET_TABBAR_OUTER);if(void 0!==c.getClassNameTabStrip()&&(V+=" "+c.getClassNameTabStrip()),V+=" "+h.CLASSES.FLEXLAYOUT__TABSET_TABBAR_OUTER_+c.getTabLocation(),c.isActive()&&!z&&(V+=" "+I(h.CLASSES.FLEXLAYOUT__TABSET_SELECTED)),c.isMaximized()&&!z&&(V+=" "+I(h.CLASSES.FLEXLAYOUT__TABSET_MAXIMIZED)),W){let e=c.getChildren()[0];void 0!==e.getTabSetClassName()&&(V+=" "+e.getTabSetClassName())}if(z){let e=o.createElement("div",{key:"toolbar",ref:p,className:I(h.CLASSES.FLEXLAYOUT__TAB_TOOLBAR),onMouseDown:w,onTouchStart:w,onDragStart:e=>{e.preventDefault()}},H),i=I(h.CLASSES.FLEXLAYOUT__TABSET_HEADER);c.isActive()&&(i+=" "+I(h.CLASSES.FLEXLAYOUT__TABSET_SELECTED)),c.isMaximized()&&(i+=" "+I(h.CLASSES.FLEXLAYOUT__TABSET_MAXIMIZED)),void 0!==c.getClassNameHeader()&&(i+=" "+c.getClassNameHeader()),t=o.createElement("div",{className:i,style:{height:c.getHeaderHeight()+"px"},"data-layout-path":b+"/header",onMouseDown:D,onContextMenu:C,onClick:B,onAuxClick:B,onTouchStart:D},o.createElement("div",{className:I(h.CLASSES.FLEXLAYOUT__TABSET_HEADER_CONTENT)},k),e)}let J={height:c.getTabStripHeight()+"px"};i=o.createElement("div",{className:V,style:J,"data-layout-path":b+"/tabstrip",onMouseDown:D,onContextMenu:C,onClick:B,onAuxClick:B,onTouchStart:D},o.createElement("div",{ref:f,className:I(h.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER)+" "+I(h.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER_+c.getTabLocation())},o.createElement("div",{style:{left:L,width:W?"100%":"10000px"},className:I(h.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER)+" "+I(h.CLASSES.FLEXLAYOUT__TABSET_TABBAR_INNER_TAB_CONTAINER_+c.getTabLocation())},F)),j),U=u.styleFont(U);var Z,K=void 0;if(0===c.getChildren().length){let e=u.getTabSetPlaceHolderCallback();e&&(K=e(c))}let $=o.createElement("div",{className:I(h.CLASSES.FLEXLAYOUT__TABSET_CONTENT)},K);return Z="top"===c.getTabLocation()?o.createElement(o.Fragment,null,t,i,$):o.createElement(o.Fragment,null,t,$,i),o.createElement("div",{ref:A,dir:"ltr","data-layout-path":b,style:U,className:I(h.CLASSES.FLEXLAYOUT__TABSET),onWheel:R},Z)}},60343(e,t,i){Object.defineProperty(t,"__esModule",{value:!0}),t.isAuxMouseEvent=t.hideElement=t.getRenderStateEx=void 0;let o=i(47867);t.getRenderStateEx=function(e,t,i,n,r){let s=i?i(t):void 0,a=t.getName(),l=t.getName();if(void 0===r&&(r=0),void 0!==n){let e=n(t);void 0!==e&&("string"==typeof e?(a=e,l=e):void 0!==e.titleContent?(a=e.titleContent,l=e.name):a=e)}void 0===s&&void 0!==t.getIcon()&&(s=0!==r?o.createElement("img",{style:{width:"1em",height:"1em",transform:"rotate("+r+"deg)"},src:t.getIcon(),alt:"leadingContent"}):o.createElement("img",{style:{width:"1em",height:"1em"},src:t.getIcon(),alt:"leadingContent"}));let d={leading:s,content:a,name:l,buttons:[]};return e.customizeTab(t,d),t._setRenderedName(d.name),d},t.hideElement=function(e,t){t?e.visibility="hidden":e.display="none"},t.isAuxMouseEvent=function(e){let t=!1;return e.nativeEvent instanceof MouseEvent&&(0!==e.nativeEvent.button||e.ctrlKey||e.altKey||e.metaKey||e.shiftKey)&&(t=!0),t}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/243.098f10af.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js deleted file mode 100644 index a14c8d5459..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! For license information please see 2463.da2cfb76.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2463"],{12306(t,e,i){let n,r,s,o,a,l;i.r(e),i.d(e,{interpolate:()=>nw,animateVisualElement:()=>nW,distance2D:()=>n1,unwrapMotionComponent:()=>au,mix:()=>ne,mirrorEasing:()=>e1,reverseEasing:()=>e5,useForceUpdate:()=>$,easeIn:()=>nm,PresenceContext:()=>m,isValidMotionProp:()=>_,visualElementStore:()=>sX,color:()=>ih,useInView:()=>ag,MotionConfigContext:()=>f,inertia:()=>np,spring:()=>nd,FlatTree:()=>rI,useVelocity:()=>ok,domMin:()=>s5,isDragActive:()=>eV,LayoutGroupContext:()=>d,px:()=>tz,SwitchLayoutGroupContext:()=>tv,animationControls:()=>oO,MotionConfig:()=>tt,useTime:()=>oM,calcLength:()=>n6,inView:()=>af,steps:()=>aH,useAnimationFrame:()=>oE,DeprecatedLayoutGroupContext:()=>M,useUnmountEffect:()=>oI,addScaleCorrector:()=>ee,useSpring:()=>oA,LayoutGroup:()=>N,MotionValue:()=>eG,animate:()=>o0,easeOut:()=>nf,useInstantLayoutTransition:()=>ah,domAnimation:()=>s0,complex:()=>iw,createScopedAnimate:()=>oQ,useWillChange:()=>oL,addPointerEvent:()=>nQ,circInOut:()=>e7,frameSteps:()=>U,pipe:()=>i3,useDragControls:()=>aa,AnimatePresence:()=>E,backIn:()=>e3,time:()=>eW,cubicBezier:()=>e0,useDomEvent:()=>ar,useScroll:()=>oy,backInOut:()=>e9,useAnimate:()=>o1,useResetProjection:()=>ad,useTransform:()=>oV,useAnimateMini:()=>ae,findSpring:()=>na,scroll:()=>of,DragControls:()=>as,useAnimationControls:()=>ai,animateValue:()=>nC,m:()=>eh,optimizedAppearDataAttribute:()=>tm,useReducedMotion:()=>oj,useReducedMotionConfig:()=>oF,clamp:()=>tB,domMax:()=>s1,sync:()=>aN,isMotionComponent:()=>al,disableInstantTransitions:()=>ay,wrap:()=>oU,backOut:()=>e2,motionValue:()=>eK,useDeprecatedAnimatedState:()=>aV,useDeprecatedInvertedScale:()=>aj,isMotionValue:()=>tA,isBrowser:()=>S,Reorder:()=>u,motion:()=>sQ,keyframes:()=>nT,resolveMotionValue:()=>tE,usePresence:()=>w,cancelFrame:()=>O,makeUseVisualState:()=>tM,AnimateSharedLayout:()=>ak,AcceleratedAnimation:()=>nL,distance:()=>n0,cancelSync:()=>az,stagger:()=>aW,easeInOut:()=>ng,circIn:()=>e6,animateMini:()=>at,addPointerInfo:()=>nJ,createRendererMotionComponent:()=>ty,scrollInfo:()=>oc,useAnimation:()=>an,anticipate:()=>e4,filterProps:()=>Q,progress:()=>k,useMotionValueEvent:()=>s2,useViewportScroll:()=>ow,useIsPresent:()=>P,frameData:()=>I,useMotionTemplate:()=>oT,useCycle:()=>ap,useInstantTransition:()=>av,buildTransform:()=>tJ,LazyMotion:()=>G,useIsomorphicLayoutEffect:()=>A,useElementScroll:()=>ox,circOut:()=>e8,animations:()=>nq,delay:()=>rU,useMotionValue:()=>oP,MotionGlobalConfig:()=>L,VisualElement:()=>sK,startOptimizedAppearAnimation:()=>aA,MotionContext:()=>ti,invariant:()=>V,frame:()=>B,transform:()=>oC,createBox:()=>rh,noop:()=>C});var u={};i.r(u),i.d(u,{Group:()=>aB,Item:()=>a$});var h=i(74848),c=i(47867);let d=(0,c.createContext)({});function p(t){let e=(0,c.useRef)(null);return null===e.current&&(e.current=t()),e.current}let m=(0,c.createContext)(null),f=(0,c.createContext)({transformPagePoint:t=>t,isStatic:!1,reducedMotion:"never"});class g extends c.Component{getSnapshotBeforeUpdate(t){let e=this.props.childRef.current;if(e&&t.isPresent&&!this.props.isPresent){let t=this.props.sizeRef.current;t.height=e.offsetHeight||0,t.width=e.offsetWidth||0,t.top=e.offsetTop,t.left=e.offsetLeft}return null}componentDidUpdate(){}render(){return this.props.children}}function v({children:t,isPresent:e}){let i=(0,c.useId)(),n=(0,c.useRef)(null),r=(0,c.useRef)({width:0,height:0,top:0,left:0}),{nonce:s}=(0,c.useContext)(f);return(0,c.useInsertionEffect)(()=>{let{width:t,height:o,top:a,left:l}=r.current;if(e||!n.current||!t||!o)return;n.current.dataset.motionPopId=i;let u=document.createElement("style");return s&&(u.nonce=s),document.head.appendChild(u),u.sheet&&u.sheet.insertRule(` - [data-motion-pop-id="${i}"] { - position: absolute !important; - width: ${t}px !important; - height: ${o}px !important; - top: ${a}px !important; - left: ${l}px !important; - } - `),()=>{document.head.removeChild(u)}},[e]),(0,h.jsx)(g,{isPresent:e,childRef:n,sizeRef:r,children:c.cloneElement(t,{ref:n})})}let y=({children:t,initial:e,isPresent:i,onExitComplete:n,custom:r,presenceAffectsLayout:s,mode:o})=>{let a=p(x),l=(0,c.useId)(),u=(0,c.useCallback)(t=>{for(let e of(a.set(t,!0),a.values()))if(!e)return;n&&n()},[a,n]),d=(0,c.useMemo)(()=>({id:l,initial:e,isPresent:i,custom:r,onExitComplete:u,register:t=>(a.set(t,!1),()=>a.delete(t))}),s?[Math.random(),u]:[i,u]);return(0,c.useMemo)(()=>{a.forEach((t,e)=>a.set(e,!1))},[i]),c.useEffect(()=>{i||a.size||!n||n()},[i]),"popLayout"===o&&(t=(0,h.jsx)(v,{isPresent:i,children:t})),(0,h.jsx)(m.Provider,{value:d,children:t})};function x(){return new Map}function w(t=!0){let e=(0,c.useContext)(m);if(null===e)return[!0,null];let{isPresent:i,onExitComplete:n,register:r}=e,s=(0,c.useId)();(0,c.useEffect)(()=>{t&&r(s)},[t]);let o=(0,c.useCallback)(()=>t&&n&&n(s),[s,n,t]);return!i&&n?[!1,o]:[!0]}function P(){var t;return null===(t=(0,c.useContext)(m))||t.isPresent}let b=t=>t.key||"";function T(t){let e=[];return c.Children.forEach(t,t=>{(0,c.isValidElement)(t)&&e.push(t)}),e}let S="u">typeof window,A=S?c.useLayoutEffect:c.useEffect,E=({children:t,custom:e,initial:i=!0,onExitComplete:n,presenceAffectsLayout:r=!0,mode:s="sync",propagate:o=!1})=>{let[a,l]=w(o),u=(0,c.useMemo)(()=>T(t),[t]),m=o&&!a?[]:u.map(b),f=(0,c.useRef)(!0),g=(0,c.useRef)(u),v=p(()=>new Map),[x,P]=(0,c.useState)(u),[S,E]=(0,c.useState)(u);A(()=>{f.current=!1,g.current=u;for(let t=0;t{let c=b(t),d=(!o||!!a)&&(u===S||m.includes(c));return(0,h.jsx)(y,{isPresent:d,initial:(!f.current||!!i)&&void 0,custom:d?void 0:e,presenceAffectsLayout:r,mode:s,onExitComplete:d?void 0:()=>{if(!v.has(c))return;v.set(c,!0);let t=!0;v.forEach(e=>{e||(t=!1)}),t&&(null==C||C(),E(g.current),o&&(null==l||l()),n&&n())},children:t},c)})})},M=(0,c.createContext)(null),C=t=>t,V=C;function R(t){let e;return()=>(void 0===e&&(e=t()),e)}let k=(t,e,i)=>{let n=e-t;return 0===n?1:(i-t)/n},D=t=>1e3*t,L={skipAnimations:!1,useManualTiming:!1},j=["read","resolveKeyframes","update","preRender","render","postRender"];function F(t,e){let i=!1,n=!0,r={delta:0,timestamp:0,isProcessing:!1},s=()=>i=!0,o=j.reduce((t,e)=>(t[e]=function(t){let e=new Set,i=new Set,n=!1,r=!1,s=new WeakSet,o={delta:0,timestamp:0,isProcessing:!1};function a(e){s.has(e)&&(l.schedule(e),t()),e(o)}let l={schedule:(t,r=!1,o=!1)=>{let a=o&&n?e:i;return r&&s.add(t),a.has(t)||a.add(t),t},cancel:t=>{i.delete(t),s.delete(t)},process:t=>{if(o=t,n){r=!0;return}n=!0,[e,i]=[i,e],e.forEach(a),e.clear(),n=!1,r&&(r=!1,l.process(t))}};return l}(s),t),{}),{read:a,resolveKeyframes:l,update:u,preRender:h,render:c,postRender:d}=o,p=()=>{let s=L.useManualTiming?r.timestamp:performance.now();i=!1,r.delta=n?1e3/60:Math.max(Math.min(s-r.timestamp,40),1),r.timestamp=s,r.isProcessing=!0,a.process(r),l.process(r),u.process(r),h.process(r),c.process(r),d.process(r),r.isProcessing=!1,i&&e&&(n=!1,t(p))};return{schedule:j.reduce((e,s)=>{let a=o[s];return e[s]=(e,s=!1,o=!1)=>(!i&&(i=!0,n=!0,r.isProcessing||t(p)),a.schedule(e,s,o)),e},{}),cancel:t=>{for(let e=0;etypeof requestAnimationFrame?requestAnimationFrame:C,!0);function $(){let t,e=(t=(0,c.useRef)(!1),A(()=>(t.current=!0,()=>{t.current=!1}),[]),t),[i,n]=(0,c.useState)(0),r=(0,c.useCallback)(()=>{e.current&&n(i+1)},[i]);return[(0,c.useCallback)(()=>B.postRender(r),[r]),i]}let W=t=>!t.isLayoutDirty&&t.willUpdate(!1),N=({children:t,id:e,inherit:i=!0})=>{let n=(0,c.useContext)(d),r=(0,c.useContext)(M),[s,o]=$(),a=(0,c.useRef)(null),l=n.id||r;if(null===a.current){let t,r,s,o;(!0==(!0===(o=i))||"id"===o)&&l&&(e=e?l+"-"+e:l),a.current={id:e,group:!0===i&&n.group||(t=new Set,r=new WeakMap,{add:e=>{t.add(e),r.set(e,e.addEventListener("willUpdate",s))},remove:e=>{t.delete(e);let i=r.get(e);i&&(i(),r.delete(e)),s()},dirty:s=()=>t.forEach(W)})}}let u=(0,c.useMemo)(()=>({...a.current,forceRender:s}),[o]);return(0,h.jsx)(d.Provider,{value:u,children:t})},z=(0,c.createContext)({strict:!1}),H={animation:["animate","variants","whileHover","whileTap","exit","whileInView","whileFocus","whileDrag"],exit:["exit"],drag:["drag","dragControls"],focus:["whileFocus"],hover:["whileHover","onHoverStart","onHoverEnd"],tap:["whileTap","onTap","onTapStart","onTapCancel"],pan:["onPan","onPanStart","onPanSessionStart","onPanEnd"],inView:["whileInView","onViewportEnter","onViewportLeave"],layout:["layout","layoutId"]},Y={};for(let t in H)Y[t]={isEnabled:e=>H[t].some(t=>!!e[t])};function X(t){for(let e in t)Y[e]={...Y[e],...t[e]}}function G({children:t,features:e,strict:i=!1}){let[,n]=(0,c.useState)(!K(e)),r=(0,c.useRef)(void 0);if(!K(e)){let{renderer:t,...i}=e;r.current=t,X(i)}return(0,c.useEffect)(()=>{K(e)&&e().then(({renderer:t,...e})=>{X(e),r.current=t,n(!0)})},[]),(0,h.jsx)(z.Provider,{value:{renderer:r.current,strict:i},children:t})}function K(t){return"function"==typeof t}let q=new Set(["animate","exit","variants","initial","style","values","variants","transition","transformTemplate","custom","inherit","onBeforeLayoutMeasure","onAnimationStart","onAnimationComplete","onUpdate","onDragStart","onDrag","onDragEnd","onMeasureDragConstraints","onDirectionLock","onDragTransitionEnd","_dragX","_dragY","onHoverStart","onHoverEnd","onViewportEnter","onViewportLeave","globalTapTarget","ignoreStrict","viewport"]);function _(t){return t.startsWith("while")||t.startsWith("drag")&&"draggable"!==t||t.startsWith("layout")||t.startsWith("onTap")||t.startsWith("onPan")||t.startsWith("onLayout")||q.has(t)}let Z=t=>!_(t);function J(t){t&&(Z=e=>e.startsWith("on")?!_(e):t(e))}try{J(require("@emotion/is-prop-valid").default)}catch(t){}function Q(t,e,i){let n={};for(let r in t)("values"!==r||"object"!=typeof t.values)&&(Z(r)||!0===i&&_(r)||!e&&!_(r)||t.draggable&&r.startsWith("onDrag"))&&(n[r]=t[r]);return n}function tt({children:t,isValidProp:e,...i}){e&&J(e),(i={...(0,c.useContext)(f),...i}).isStatic=p(()=>i.isStatic);let n=(0,c.useMemo)(()=>i,[JSON.stringify(i.transition),i.transformPagePoint,i.reducedMotion]);return(0,h.jsx)(f.Provider,{value:n,children:t})}function te(t){if("u"t(...e),{get:(i,n)=>"create"===n?t:(e.has(n)||e.set(n,t(n)),e.get(n))})}let ti=(0,c.createContext)({});function tn(t){return"string"==typeof t||Array.isArray(t)}function tr(t){return null!==t&&"object"==typeof t&&"function"==typeof t.start}let ts=["animate","whileInView","whileFocus","whileHover","whileTap","whileDrag","exit"],to=["initial",...ts];function ta(t){return tr(t.animate)||to.some(e=>tn(t[e]))}function tl(t){return!!(ta(t)||t.variants)}function tu(t){return Array.isArray(t)?t.join(" "):t}let th=Symbol.for("motionComponentSymbol");function tc(t){return t&&"object"==typeof t&&Object.prototype.hasOwnProperty.call(t,"current")}let td=t=>t.replace(/([a-z])([A-Z])/gu,"$1-$2").toLowerCase(),tp="framerAppearId",tm="data-"+td(tp),{schedule:tf,cancel:tg}=F(queueMicrotask,!1),tv=(0,c.createContext)({});function ty({preloadedFeatures:t,createVisualElement:e,useRender:i,useVisualState:n,Component:r}){var s,o;function a(t,s){var o;let a,l={...(0,c.useContext)(f),...t,layoutId:function({layoutId:t}){let e=(0,c.useContext)(d).id;return e&&void 0!==t?e+"-"+t:t}(t)},{isStatic:u}=l,p=function(t){let{initial:e,animate:i}=function(t,e){if(ta(t)){let{initial:e,animate:i}=t;return{initial:!1===e||tn(e)?e:void 0,animate:tn(i)?i:void 0}}return!1!==t.inherit?e:{}}(t,(0,c.useContext)(ti));return(0,c.useMemo)(()=>({initial:e,animate:i}),[tu(e),tu(i)])}(t),g=n(t,u);if(!u&&S){(0,c.useContext)(z).strict;let t=function(t){let{drag:e,layout:i}=Y;if(!e&&!i)return{};let n={...e,...i};return{MeasureLayout:(null==e?void 0:e.isEnabled(t))||(null==i?void 0:i.isEnabled(t))?n.MeasureLayout:void 0,ProjectionNode:n.ProjectionNode}}(l);a=t.MeasureLayout,p.visualElement=function(t,e,i,n,r){var s,o;let{visualElement:a}=(0,c.useContext)(ti),l=(0,c.useContext)(z),u=(0,c.useContext)(m),h=(0,c.useContext)(f).reducedMotion,d=(0,c.useRef)(null);n=n||l.renderer,!d.current&&n&&(d.current=n(t,{visualState:e,parent:a,props:i,presenceContext:u,blockInitialAnimation:!!u&&!1===u.initial,reducedMotionConfig:h}));let p=d.current,g=(0,c.useContext)(tv);p&&!p.projection&&r&&("html"===p.type||"svg"===p.type)&&function(t,e,i,n){let{layoutId:r,layout:s,drag:o,dragConstraints:a,layoutScroll:l,layoutRoot:u}=e;t.projection=new i(t.latestValues,e["data-framer-portal-id"]?void 0:function t(e){if(e)return!1!==e.options.allowProjection?e.projection:t(e.parent)}(t.parent)),t.projection.setOptions({layoutId:r,layout:s,alwaysMeasureLayout:!!o||a&&tc(a),visualElement:t,animationType:"string"==typeof s?s:"both",initialPromotionConfig:n,layoutScroll:l,layoutRoot:u})}(d.current,i,r,g);let v=(0,c.useRef)(!1);(0,c.useInsertionEffect)(()=>{p&&v.current&&p.update(i,u)});let y=i[tm],x=(0,c.useRef)(!!y&&!(null==(s=window.MotionHandoffIsComplete)?void 0:s.call(window,y))&&(null==(o=window.MotionHasOptimisedAnimation)?void 0:o.call(window,y)));return A(()=>{p&&(v.current=!0,window.MotionIsMounted=!0,p.updateFeatures(),tf.render(p.render),x.current&&p.animationState&&p.animationState.animateChanges())}),(0,c.useEffect)(()=>{p&&(!x.current&&p.animationState&&p.animationState.animateChanges(),x.current&&(queueMicrotask(()=>{var t;null==(t=window.MotionHandoffMarkAsComplete)||t.call(window,y)}),x.current=!1))}),p}(r,g,l,e,t.ProjectionNode)}return(0,h.jsxs)(ti.Provider,{value:p,children:[a&&p.visualElement?(0,h.jsx)(a,{visualElement:p.visualElement,...l}):null,i(r,t,(o=p.visualElement,(0,c.useCallback)(t=>{t&&g.onMount&&g.onMount(t),o&&(t?o.mount(t):o.unmount()),s&&("function"==typeof s?s(t):tc(s)&&(s.current=t))},[o])),g,u,p.visualElement)]})}t&&X(t),a.displayName=`motion.${"string"==typeof r?r:`create(${null!=(o=null!=(s=r.displayName)?s:r.name)?o:""})`}`;let l=(0,c.forwardRef)(a);return l[th]=r,l}let tx=["animate","circle","defs","desc","ellipse","g","image","line","filter","marker","mask","metadata","path","pattern","polygon","polyline","rect","stop","switch","symbol","svg","text","tspan","use","view"];function tw(t){if("string"!=typeof t||t.includes("-"));else if(tx.indexOf(t)>-1||/[A-Z]/u.test(t))return!0;return!1}function tP(t){let e=[{},{}];return null==t||t.values.forEach((t,i)=>{e[0][i]=t.get(),e[1][i]=t.getVelocity()}),e}function tb(t,e,i,n){if("function"==typeof e){let[r,s]=tP(n);e=e(void 0!==i?i:t.custom,r,s)}if("string"==typeof e&&(e=t.variants&&t.variants[e]),"function"==typeof e){let[r,s]=tP(n);e=e(void 0!==i?i:t.custom,r,s)}return e}let tT=t=>Array.isArray(t),tS=t=>tT(t)?t[t.length-1]||0:t,tA=t=>!!(t&&t.getVelocity);function tE(t){let e=tA(t)?t.get():t;return e&&"object"==typeof e&&e.mix&&e.toValue?e.toValue():e}let tM=t=>(e,i)=>{let n=(0,c.useContext)(ti),r=(0,c.useContext)(m),s=()=>(function({scrapeMotionValuesFromProps:t,createRenderState:e,onUpdate:i},n,r,s){let o={latestValues:function(t,e,i,n){let r={},s=n(t,{});for(let t in s)r[t]=tE(s[t]);let{initial:o,animate:a}=t,l=ta(t),u=tl(t);e&&u&&!l&&!1!==t.inherit&&(void 0===o&&(o=e.initial),void 0===a&&(a=e.animate));let h=!!i&&!1===i.initial,c=(h=h||!1===o)?a:o;if(c&&"boolean"!=typeof c&&!tr(c)){let e=Array.isArray(c)?c:[c];for(let i=0;ii({props:n,current:t,...o}),o.onUpdate=t=>i(t)),o})(t,e,n,r);return i?s():p(s)},tC=["transformPerspective","x","y","z","translateX","translateY","translateZ","scale","scaleX","scaleY","rotate","rotateX","rotateY","rotateZ","skew","skewX","skewY"],tV=new Set(tC),tR=t=>e=>"string"==typeof e&&e.startsWith(t),tk=tR("--"),tD=tR("var(--"),tL=t=>!!tD(t)&&tj.test(t.split("/*")[0].trim()),tj=/var\(--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)$/iu,tF=(t,e)=>e&&"number"==typeof t?e.transform(t):t,tB=(t,e,i)=>i>e?e:i"number"==typeof t,parse:parseFloat,transform:t=>t},tI={...tO,transform:t=>tB(0,1,t)},tU={...tO,default:1},t$=t=>({test:e=>"string"==typeof e&&e.endsWith(t)&&1===e.split(" ").length,parse:parseFloat,transform:e=>`${e}${t}`}),tW=t$("deg"),tN=t$("%"),tz=t$("px"),tH=t$("vh"),tY=t$("vw"),tX={...tN,parse:t=>tN.parse(t)/100,transform:t=>tN.transform(100*t)},tG={borderWidth:tz,borderTopWidth:tz,borderRightWidth:tz,borderBottomWidth:tz,borderLeftWidth:tz,borderRadius:tz,radius:tz,borderTopLeftRadius:tz,borderTopRightRadius:tz,borderBottomRightRadius:tz,borderBottomLeftRadius:tz,width:tz,maxWidth:tz,height:tz,maxHeight:tz,top:tz,right:tz,bottom:tz,left:tz,padding:tz,paddingTop:tz,paddingRight:tz,paddingBottom:tz,paddingLeft:tz,margin:tz,marginTop:tz,marginRight:tz,marginBottom:tz,marginLeft:tz,backgroundPositionX:tz,backgroundPositionY:tz},tK={...tO,transform:Math.round},tq={...tG,rotate:tW,rotateX:tW,rotateY:tW,rotateZ:tW,scale:tU,scaleX:tU,scaleY:tU,scaleZ:tU,skew:tW,skewX:tW,skewY:tW,distance:tz,translateX:tz,translateY:tz,translateZ:tz,x:tz,y:tz,z:tz,perspective:tz,transformPerspective:tz,opacity:tI,originX:tX,originY:tX,originZ:tz,zIndex:tK,size:tz,fillOpacity:tI,strokeOpacity:tI,numOctaves:tK},t_={x:"translateX",y:"translateY",z:"translateZ",transformPerspective:"perspective"},tZ=tC.length;function tJ(t,e,i){let n="",r=!0;for(let s=0;s({style:{},transform:{},transformOrigin:{},vars:{}}),t9=()=>({...t3(),attrs:{}}),t4=t=>"string"==typeof t&&"svg"===t.toLowerCase();function t6(t,{style:e,vars:i},n,r){for(let s in Object.assign(t.style,e,r&&r.getProjectionStyles(n)),i)t.style.setProperty(s,i[s])}let t8=new Set(["baseFrequency","diffuseConstant","kernelMatrix","kernelUnitLength","keySplines","keyTimes","limitingConeAngle","markerHeight","markerWidth","numOctaves","targetX","targetY","surfaceScale","specularConstant","specularExponent","stdDeviation","tableValues","viewBox","gradientTransform","pathLength","startOffset","textLength","lengthAdjust"]);function t7(t,e,i,n){for(let i in t6(t,e,void 0,n),e.attrs)t.setAttribute(t8.has(i)?i:td(i),e.attrs[i])}let et={};function ee(t){Object.assign(et,t)}function ei(t,{layout:e,layoutId:i}){return tV.has(t)||t.startsWith("origin")||(e||void 0!==i)&&(!!et[t]||"opacity"===t)}function en(t,e,i){var n;let{style:r}=t,s={};for(let o in r)(tA(r[o])||e.style&&tA(e.style[o])||ei(o,t)||(null==(n=null==i?void 0:i.getValue(o))?void 0:n.liveStyle)!==void 0)&&(s[o]=r[o]);return s}function er(t,e,i){let n=en(t,e,i);for(let i in t)(tA(t[i])||tA(e[i]))&&(n[-1!==tC.indexOf(i)?"attr"+i.charAt(0).toUpperCase()+i.substring(1):i]=t[i]);return n}let es=["x","y","width","height","cx","cy","r"],eo={useVisualState:tM({scrapeMotionValuesFromProps:er,createRenderState:t9,onUpdate:({props:t,prevProps:e,current:i,renderState:n,latestValues:r})=>{if(!i)return;let s=!!t.drag;if(!s){for(let t in r)if(tV.has(t)){s=!0;break}}if(!s)return;let o=!e;if(e)for(let i=0;i{try{n.dimensions="function"==typeof i.getBBox?i.getBBox():i.getBoundingClientRect()}catch(t){n.dimensions={x:0,y:0,width:0,height:0}}B.render(()=>{t2(n,r,t4(i.tagName),t.transformTemplate),t7(i,n)})})}})},ea={useVisualState:tM({scrapeMotionValuesFromProps:en,createRenderState:t3})};function el(t,e,i){for(let n in e)tA(e[n])||ei(n,i)||(t[n]=e[n])}function eu(t,e){return function(i,{forwardMotionProps:n}={forwardMotionProps:!1}){let r={...tw(i)?eo:ea,preloadedFeatures:t,useRender:function(t=!1){return(e,i,n,{latestValues:r},s)=>{let o=(tw(e)?function(t,e,i,n){let r=(0,c.useMemo)(()=>{let i=t9();return t2(i,e,t4(n),t.transformTemplate),{...i.attrs,style:{...i.style}}},[e]);if(t.style){let e={};el(e,t.style,t),r.style={...e,...r.style}}return r}:function(t,e){let i,n,r={},s=(i=t.style||{},el(n={},i,t),Object.assign(n,function({transformTemplate:t},e){return(0,c.useMemo)(()=>{let i=t3();return tQ(i,e,t),Object.assign({},i.vars,i.style)},[e])}(t,e)),n);return t.drag&&!1!==t.dragListener&&(r.draggable=!1,s.userSelect=s.WebkitUserSelect=s.WebkitTouchCallout="none",s.touchAction=!0===t.drag?"none":`pan-${"x"===t.drag?"y":"x"}`),void 0===t.tabIndex&&(t.onTap||t.onTapStart||t.whileTap)&&(r.tabIndex=0),r.style=s,r})(i,r,s,e),a=Q(i,"string"==typeof e,t),l=e!==c.Fragment?{...a,...o,ref:n}:{},{children:u}=i,h=(0,c.useMemo)(()=>tA(u)?u.get():u,[u]);return(0,c.createElement)(e,{...l,children:h})}}(n),createVisualElement:e,Component:i};return ty(r)}}let eh=te(eu());function ec(t,e){if(!Array.isArray(e))return!1;let i=e.length;if(i!==t.length)return!1;for(let n=0;nvoid 0!==window.ScrollTimeline);class em{constructor(t){this.stop=()=>this.runAll("stop"),this.animations=t.filter(Boolean)}get finished(){return Promise.all(this.animations.map(t=>"finished"in t?t.finished:t))}getAll(t){return this.animations[0][t]}setAll(t,e){for(let i=0;iep()&&i.attachTimeline?i.attachTimeline(t):"function"==typeof e?e(i):void 0);return()=>{i.forEach((t,e)=>{t&&t(),this.animations[e].stop()})}}get time(){return this.getAll("time")}set time(t){this.setAll("time",t)}get speed(){return this.getAll("speed")}set speed(t){this.setAll("speed",t)}get startTime(){return this.getAll("startTime")}get duration(){let t=0;for(let e=0;ee[t]())}flatten(){this.runAll("flatten")}play(){this.runAll("play")}pause(){this.runAll("pause")}cancel(){this.runAll("cancel")}complete(){this.runAll("complete")}}class ef extends em{then(t,e){return Promise.all(this.animations).then(t).catch(e)}}function eg(t,e){return t?t[e]||t.default||t:void 0}function ev(t){let e=0,i=t.next(e);for(;!i.done&&e<2e4;)e+=50,i=t.next(e);return e>=2e4?1/0:e}function ey(t,e=100,i){let n=i({...t,keyframes:[0,e]}),r=Math.min(ev(n),2e4);return{type:"keyframes",ease:t=>n.next(r*t).value/e,duration:r/1e3}}function ex(t){return"function"==typeof t}function ew(t,e){t.timeline=e,t.onfinish=null}class eP{constructor(t){this.animation=t}get duration(){var t,e,i;return Number((null==(e=null==(t=this.animation)?void 0:t.effect)?void 0:e.getComputedTiming().duration)||(null==(i=this.options)?void 0:i.duration)||300)/1e3}get time(){var t;return this.animation?((null==(t=this.animation)?void 0:t.currentTime)||0)/1e3:0}set time(t){this.animation&&(this.animation.currentTime=D(t))}get speed(){return this.animation?this.animation.playbackRate:1}set speed(t){this.animation&&(this.animation.playbackRate=t)}get state(){return this.animation?this.animation.playState:"finished"}get startTime(){return this.animation?this.animation.startTime:null}get finished(){return this.animation?this.animation.finished:Promise.resolve()}play(){this.animation&&this.animation.play()}pause(){this.animation&&this.animation.pause()}stop(){this.animation&&"idle"!==this.state&&"finished"!==this.state&&(this.animation.commitStyles&&this.animation.commitStyles(),this.cancel())}flatten(){var t;this.animation&&(null==(t=this.animation.effect)||t.updateTiming({easing:"linear"}))}attachTimeline(t){return this.animation&&ew(this.animation,t),C}complete(){this.animation&&this.animation.finish()}cancel(){try{this.animation&&this.animation.cancel()}catch(t){}}}let eb=t=>Array.isArray(t)&&"number"==typeof t[0],eT,eS=(l=R(()=>{try{document.createElement("div").animate({opacity:0},{easing:"linear(0, 1)"})}catch(t){return!1}return!0}),()=>{var t;return null!=(t=eT)?t:l()}),eA=(t,e,i=10)=>{let n="",r=Math.max(Math.round(e/i),2);for(let e=0;e`cubic-bezier(${t}, ${e}, ${i}, ${n})`,eM={linear:"linear",ease:"ease",easeIn:"ease-in",easeOut:"ease-out",easeInOut:"ease-in-out",circIn:eE([0,.65,.55,1]),circOut:eE([.55,0,1,.45]),backIn:eE([.31,.01,.66,-.59]),backOut:eE([.33,1.53,.69,.99])},eC={x:!1,y:!1};function eV(){return eC.x||eC.y}function eR(t,e,i){var n;if(t instanceof Element)return[t];if("string"==typeof t){let r=document;e&&(r=e.current);let s=null!=(n=null==i?void 0:i[t])?n:r.querySelectorAll(t);return s?Array.from(s):[]}return Array.from(t)}function ek(t,e){let i=eR(t),n=new AbortController;return[i,{passive:!0,...e,signal:n.signal},()=>n.abort()]}function eD(t){return e=>{"touch"===e.pointerType||eV()||t(e)}}let eL=(t,e)=>!!e&&(t===e||eL(t,e.parentElement)),ej=t=>"mouse"===t.pointerType?"number"!=typeof t.button||t.button<=0:!1!==t.isPrimary,eF=new Set(["BUTTON","INPUT","SELECT","TEXTAREA","A"]),eB=new WeakSet;function eO(t){return e=>{"Enter"===e.key&&t(e)}}function eI(t,e){t.dispatchEvent(new PointerEvent("pointer"+e,{isPrimary:!0,bubbles:!0}))}let eU=new Set(["width","height","top","left","right","bottom",...tC]);function e$(){n=void 0}let eW={now:()=>(void 0===n&&eW.set(I.isProcessing||L.useManualTiming?I.timestamp:performance.now()),n),set:t=>{n=t,queueMicrotask(e$)}};function eN(t,e){-1===t.indexOf(e)&&t.push(e)}function ez(t,e){let i=t.indexOf(e);i>-1&&t.splice(i,1)}class eH{constructor(){this.subscriptions=[]}add(t){return eN(this.subscriptions,t),()=>ez(this.subscriptions,t)}notify(t,e,i){let n=this.subscriptions.length;if(n)if(1===n)this.subscriptions[0](t,e,i);else for(let r=0;r{let i=eW.now();this.updatedAt!==i&&this.setPrevFrameValue(),this.prev=this.current,this.setCurrent(t),this.current!==this.prev&&this.events.change&&this.events.change.notify(this.current),e&&this.events.renderRequest&&this.events.renderRequest.notify(this.current)},this.hasAnimated=!1,this.setCurrent(t),this.owner=e.owner}setCurrent(t){this.current=t,this.updatedAt=eW.now(),null===this.canTrackVelocity&&void 0!==t&&(this.canTrackVelocity=!isNaN(parseFloat(this.current)))}setPrevFrameValue(t=this.current){this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt}onChange(t){return this.on("change",t)}on(t,e){this.events[t]||(this.events[t]=new eH);let i=this.events[t].add(e);return"change"===t?()=>{i(),B.read(()=>{this.events.change.getSize()||this.stop()})}:i}clearListeners(){for(let t in this.events)this.events[t].clear()}attach(t,e){this.passiveEffect=t,this.stopPassiveEffect=e}set(t,e=!0){e&&this.passiveEffect?this.passiveEffect(t,this.updateAndNotify):this.updateAndNotify(t,e)}setWithVelocity(t,e,i){this.set(e),this.prev=void 0,this.prevFrameValue=t,this.prevUpdatedAt=this.updatedAt-i}jump(t,e=!0){this.updateAndNotify(t),this.prev=t,this.prevUpdatedAt=this.prevFrameValue=void 0,e&&this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}get(){return eX.current&&eX.current.push(this),this.current}getPrevious(){return this.prev}getVelocity(){let t=eW.now();if(!this.canTrackVelocity||void 0===this.prevFrameValue||t-this.updatedAt>30)return 0;let e=Math.min(this.updatedAt-this.prevUpdatedAt,30);return eY(parseFloat(this.current)-parseFloat(this.prevFrameValue),e)}start(t){return this.stop(),new Promise(e=>{this.hasAnimated=!0,this.animation=t(e),this.events.animationStart&&this.events.animationStart.notify()}).then(()=>{this.events.animationComplete&&this.events.animationComplete.notify(),this.clearAnimation()})}stop(){this.animation&&(this.animation.stop(),this.events.animationCancel&&this.events.animationCancel.notify()),this.clearAnimation()}isAnimating(){return!!this.animation}clearAnimation(){delete this.animation}destroy(){this.clearListeners(),this.stop(),this.stopPassiveEffect&&this.stopPassiveEffect()}}function eK(t,e){return new eG(t,e)}function eq(t,e){let{transitionEnd:i={},transition:n={},...r}=ed(t,e)||{};for(let e in r={...r,...i}){let i=tS(r[e]);t.hasValue(e)?t.getValue(e).set(i):t.addValue(e,eK(i))}}function e_(t,e){let i=t.getValue("willChange");if(tA(i)&&i.add)return i.add(e)}function eZ(t){return t.props[tm]}let eJ={current:!1},eQ=(t,e,i)=>(((1-3*i+3*e)*t+(3*i-6*e))*t+3*e)*t;function e0(t,e,i,n){return t===e&&i===n?C:r=>0===r||1===r?r:eQ(function(t,e,i,n,r){let s,o,a=0;do(s=eQ(o=e+(i-e)/2,n,r)-t)>0?i=o:e=o;while(Math.abs(s)>1e-7&&++a<12);return o}(r,0,1,t,i),e,n)}let e1=t=>e=>e<=.5?t(2*e)/2:(2-t(2*(1-e)))/2,e5=t=>e=>1-t(1-e),e2=e0(.33,1.53,.69,.99),e3=e5(e2),e9=e1(e3),e4=t=>(t*=2)<1?.5*e3(t):.5*(2-Math.pow(2,-10*(t-1))),e6=t=>1-Math.sin(Math.acos(t)),e8=e5(e6),e7=e1(e6),it=t=>Math.round(1e5*t)/1e5,ie=/-?(?:\d+(?:\.\d+)?|\.\d+)/gu,ii=/^(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))$/iu,ir=(t,e)=>i=>!!("string"==typeof i&&ii.test(i)&&i.startsWith(t)||e&&null!=i&&Object.prototype.hasOwnProperty.call(i,e)),is=(t,e,i)=>n=>{if("string"!=typeof n)return n;let[r,s,o,a]=n.match(ie);return{[t]:parseFloat(r),[e]:parseFloat(s),[i]:parseFloat(o),alpha:void 0!==a?parseFloat(a):1}},io={...tO,transform:t=>Math.round(tB(0,255,t))},ia={test:ir("rgb","red"),parse:is("red","green","blue"),transform:({red:t,green:e,blue:i,alpha:n=1})=>"rgba("+io.transform(t)+", "+io.transform(e)+", "+io.transform(i)+", "+it(tI.transform(n))+")"},il={test:ir("#"),parse:function(t){let e="",i="",n="",r="";return t.length>5?(e=t.substring(1,3),i=t.substring(3,5),n=t.substring(5,7),r=t.substring(7,9)):(e=t.substring(1,2),i=t.substring(2,3),n=t.substring(3,4),r=t.substring(4,5),e+=e,i+=i,n+=n,r+=r),{red:parseInt(e,16),green:parseInt(i,16),blue:parseInt(n,16),alpha:r?parseInt(r,16)/255:1}},transform:ia.transform},iu={test:ir("hsl","hue"),parse:is("hue","saturation","lightness"),transform:({hue:t,saturation:e,lightness:i,alpha:n=1})=>"hsla("+Math.round(t)+", "+tN.transform(it(e))+", "+tN.transform(it(i))+", "+it(tI.transform(n))+")"},ih={test:t=>ia.test(t)||il.test(t)||iu.test(t),parse:t=>ia.test(t)?ia.parse(t):iu.test(t)?iu.parse(t):il.parse(t),transform:t=>"string"==typeof t?t:t.hasOwnProperty("red")?ia.transform(t):iu.transform(t)},ic=/(?:#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\))/giu,id="number",ip="color",im=/var\s*\(\s*--(?:[\w-]+\s*|[\w-]+\s*,(?:\s*[^)(\s]|\s*\((?:[^)(]|\([^)(]*\))*\))+\s*)\)|#[\da-f]{3,8}|(?:rgb|hsl)a?\((?:-?[\d.]+%?[,\s]+){2}-?[\d.]+%?\s*(?:[,/]\s*)?(?:\b\d+(?:\.\d+)?|\.\d+)?%?\)|-?(?:\d+(?:\.\d+)?|\.\d+)/giu;function ig(t){let e=t.toString(),i=[],n={color:[],number:[],var:[]},r=[],s=0,o=e.replace(im,t=>(ih.test(t)?(n.color.push(s),r.push(ip),i.push(ih.parse(t))):t.startsWith("var(")?(n.var.push(s),r.push("var"),i.push(t)):(n.number.push(s),r.push(id),i.push(parseFloat(t))),++s,"${}")).split("${}");return{values:i,split:o,indexes:n,types:r}}function iv(t){return ig(t).values}function iy(t){let{split:e,types:i}=ig(t),n=e.length;return t=>{let r="";for(let s=0;s"number"==typeof t?0:t,iw={test:function(t){var e,i;return isNaN(t)&&"string"==typeof t&&((null==(e=t.match(ie))?void 0:e.length)||0)+((null==(i=t.match(ic))?void 0:i.length)||0)>0},parse:iv,createTransformer:iy,getAnimatableNone:function(t){let e=iv(t);return iy(t)(e.map(ix))}},iP=new Set(["brightness","contrast","saturate","opacity"]);function ib(t){let[e,i]=t.slice(0,-1).split("(");if("drop-shadow"===e)return t;let[n]=i.match(ie)||[];if(!n)return t;let r=i.replace(n,""),s=+!!iP.has(e);return n!==i&&(s*=100),e+"("+s+r+")"}let iT=/\b([a-z-]*)\(.*?\)/gu,iS={...iw,getAnimatableNone:t=>{let e=t.match(iT);return e?e.map(ib).join(" "):t}},iA={...tq,color:ih,backgroundColor:ih,outlineColor:ih,fill:ih,stroke:ih,borderColor:ih,borderTopColor:ih,borderRightColor:ih,borderBottomColor:ih,borderLeftColor:ih,filter:iS,WebkitFilter:iS},iE=t=>iA[t];function iM(t,e){let i=iE(t);return i!==iS&&(i=iw),i.getAnimatableNone?i.getAnimatableNone(e):void 0}let iC=new Set(["auto","none","0"]),iV=t=>t===tO||t===tz,iR=(t,e)=>parseFloat(t.split(", ")[e]),ik=(t,e)=>(i,{transform:n})=>{if("none"===n||!n)return 0;let r=n.match(/^matrix3d\((.+)\)$/u);if(r)return iR(r[1],e);{let e=n.match(/^matrix\((.+)\)$/u);return e?iR(e[1],t):0}},iD=new Set(["x","y","z"]),iL=tC.filter(t=>!iD.has(t)),ij={width:({x:t},{paddingLeft:e="0",paddingRight:i="0"})=>t.max-t.min-parseFloat(e)-parseFloat(i),height:({y:t},{paddingTop:e="0",paddingBottom:i="0"})=>t.max-t.min-parseFloat(e)-parseFloat(i),top:(t,{top:e})=>parseFloat(e),left:(t,{left:e})=>parseFloat(e),bottom:({y:t},{top:e})=>parseFloat(e)+(t.max-t.min),right:({x:t},{left:e})=>parseFloat(e)+(t.max-t.min),x:ik(4,13),y:ik(5,14)};ij.translateX=ij.x,ij.translateY=ij.y;let iF=new Set,iB=!1,iO=!1;function iI(){if(iO){let t=Array.from(iF).filter(t=>t.needsMeasurement),e=new Set(t.map(t=>t.element)),i=new Map;e.forEach(t=>{let e,n=(e=[],iL.forEach(i=>{let n=t.getValue(i);void 0!==n&&(e.push([i,n.get()]),n.set(+!!i.startsWith("scale")))}),e);n.length&&(i.set(t,n),t.render())}),t.forEach(t=>t.measureInitialState()),e.forEach(t=>{t.render();let e=i.get(t);e&&e.forEach(([e,i])=>{var n;null==(n=t.getValue(e))||n.set(i)})}),t.forEach(t=>t.measureEndState()),t.forEach(t=>{void 0!==t.suspendedScrollY&&window.scrollTo(0,t.suspendedScrollY)})}iO=!1,iB=!1,iF.forEach(t=>t.complete()),iF.clear()}function iU(){iF.forEach(t=>{t.readKeyframes(),t.needsMeasurement&&(iO=!0)})}class i${constructor(t,e,i,n,r,s=!1){this.isComplete=!1,this.isAsync=!1,this.needsMeasurement=!1,this.isScheduled=!1,this.unresolvedKeyframes=[...t],this.onComplete=e,this.name=i,this.motionValue=n,this.element=r,this.isAsync=s}scheduleResolve(){this.isScheduled=!0,this.isAsync?(iF.add(this),iB||(iB=!0,B.read(iU),B.resolveKeyframes(iI))):(this.readKeyframes(),this.complete())}readKeyframes(){let{unresolvedKeyframes:t,name:e,element:i,motionValue:n}=this;for(let r=0;re=>e.test(t),iz=[tO,tz,tN,tW,tY,tH,{test:t=>"auto"===t,parse:t=>t}],iH=t=>iz.find(iN(t));class iY extends i${constructor(t,e,i,n,r){super(t,e,i,n,r,!0)}readKeyframes(){let{unresolvedKeyframes:t,element:e,name:i}=this;if(!e||!e.current)return;super.readKeyframes();for(let i=0;i{e.getValue(t).set(i)}),this.resolveNoneKeyframes()}}let iX=(t,e)=>"zIndex"!==e&&!!("number"==typeof t||Array.isArray(t)||"string"==typeof t&&(iw.test(t)||"0"===t)&&!t.startsWith("url(")),iG=t=>null!==t;function iK(t,{repeat:e,repeatType:i="loop"},n){let r=t.filter(iG),s=e&&"loop"!==i&&e%2==1?0:r.length-1;return s&&void 0!==n?n:r[s]}class iq{constructor({autoplay:t=!0,delay:e=0,type:i="keyframes",repeat:n=0,repeatDelay:r=0,repeatType:s="loop",...o}){this.isStopped=!1,this.hasAttemptedResolve=!1,this.createdAt=eW.now(),this.options={autoplay:t,delay:e,type:i,repeat:n,repeatDelay:r,repeatType:s,...o},this.updateFinishedPromise()}calcStartTime(){return this.resolvedAt&&this.resolvedAt-this.createdAt>40?this.resolvedAt:this.createdAt}get resolved(){return this._resolved||this.hasAttemptedResolve||(iU(),iI()),this._resolved}onKeyframesResolved(t,e){this.resolvedAt=eW.now(),this.hasAttemptedResolve=!0;let{name:i,type:n,velocity:r,delay:s,onComplete:o,onUpdate:a,isGenerator:l}=this.options;if(!l&&!function(t,e,i,n){let r=t[0];if(null===r)return!1;if("display"===e||"visibility"===e)return!0;let s=t[t.length-1],o=iX(r,e),a=iX(s,e);return C(o===a,`You are trying to animate ${e} from "${r}" to "${s}". ${r} is not an animatable value - to enable this animation set ${r} to a value animatable to ${s} via the \`style\` property.`),!!o&&!!a&&(function(t){let e=t[0];if(1===t.length)return!0;for(let i=0;i{this.resolveFinishedPromise=t})}}let i_=(t,e,i)=>t+(e-t)*i;function iZ(t,e,i){return(i<0&&(i+=1),i>1&&(i-=1),i<1/6)?t+(e-t)*6*i:i<.5?e:i<2/3?t+(e-t)*(2/3-i)*6:t}function iJ(t,e){return i=>i>0?e:t}let iQ=(t,e,i)=>{let n=t*t,r=i*(e*e-n)+n;return r<0?0:Math.sqrt(r)},i0=[il,ia,iu];function i1(t){let e=i0.find(e=>e.test(t));if(C(!!e,`'${t}' is not an animatable color. Use the equivalent color code instead.`),!e)return!1;let i=e.parse(t);return e===iu&&(i=function({hue:t,saturation:e,lightness:i,alpha:n}){t/=360,i/=100;let r=0,s=0,o=0;if(e/=100){let n=i<.5?i*(1+e):i+e-i*e,a=2*i-n;r=iZ(a,n,t+1/3),s=iZ(a,n,t),o=iZ(a,n,t-1/3)}else r=s=o=i;return{red:Math.round(255*r),green:Math.round(255*s),blue:Math.round(255*o),alpha:n}}(i)),i}let i5=(t,e)=>{let i=i1(t),n=i1(e);if(!i||!n)return iJ(t,e);let r={...i};return t=>(r.red=iQ(i.red,n.red,t),r.green=iQ(i.green,n.green,t),r.blue=iQ(i.blue,n.blue,t),r.alpha=i_(i.alpha,n.alpha,t),ia.transform(r))},i2=(t,e)=>i=>e(t(i)),i3=(...t)=>t.reduce(i2),i9=new Set(["none","hidden"]);function i4(t,e){return i=>i_(t,e,i)}function i6(t){return"number"==typeof t?i4:"string"==typeof t?tL(t)?iJ:ih.test(t)?i5:nt:Array.isArray(t)?i8:"object"==typeof t?ih.test(t)?i5:i7:iJ}function i8(t,e){let i=[...t],n=i.length,r=t.map((t,i)=>i6(t)(t,e[i]));return t=>{for(let e=0;e{for(let e in n)i[e]=n[e](t);return i}}let nt=(t,e)=>{let i=iw.createTransformer(e),n=ig(t),r=ig(e);if(!(n.indexes.var.length===r.indexes.var.length&&n.indexes.color.length===r.indexes.color.length&&n.indexes.number.length>=r.indexes.number.length))return C(!0,`Complex values '${t}' and '${e}' too different to mix. Ensure all colors are of the same type, and that each contains the same quantity of number and color values. Falling back to instant transition.`),iJ(t,e);if(i9.has(t)&&!r.values.length||i9.has(e)&&!n.values.length)return i9.has(t)?i=>i<=0?t:e:i=>i>=1?e:t;return i3(i8(function(t,e){var i;let n=[],r={color:0,var:0,number:0};for(let s=0;s{let n=e*o,r=n*t;return .001-(n-i)/nl(e,o)*Math.exp(-r)},s=e=>{let n=e*o*t,s=Math.pow(o,2)*Math.pow(e,2)*t,a=Math.exp(-n),l=nl(Math.pow(e,2),o);return(n*i+i-s)*a*(-r(e)+.001>0?-1:1)/l}):(r=e=>-.001+Math.exp(-e*t)*((e-i)*t+1),s=e=>t*t*(i-e)*Math.exp(-e*t));let a=function(t,e,i){let n=i;for(let i=1;i<12;i++)n-=t(n)/e(n);return n}(r,s,5/t);if(t=D(t),isNaN(a))return{stiffness:100,damping:10,duration:t};{let e=Math.pow(a,2)*n;return{stiffness:e,damping:2*o*Math.sqrt(n*e),duration:t}}}function nl(t,e){return t*Math.sqrt(1-e*e)}let nu=["duration","bounce"],nh=["stiffness","damping","mass"];function nc(t,e){return e.some(e=>void 0!==t[e])}function nd(t=.3,e=.3){let i,n="object"!=typeof t?{visualDuration:t,keyframes:[0,1],bounce:e}:t,{restSpeed:r,restDelta:s}=n,o=n.keyframes[0],a=n.keyframes[n.keyframes.length-1],l={done:!1,value:o},{stiffness:u,damping:h,mass:c,duration:d,velocity:p,isResolvedFromDuration:m}=function(t){let e={velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1,...t};if(!nc(t,nh)&&nc(t,nu))if(t.visualDuration){let i=2*Math.PI/(1.2*t.visualDuration),n=i*i,r=2*tB(.05,1,1-(t.bounce||0))*Math.sqrt(n);e={...e,mass:1,stiffness:n,damping:r}}else{let i=na(t);(e={...e,...i,mass:1}).isResolvedFromDuration=!0}return e}({...n,velocity:-((n.velocity||0)/1e3)}),f=p||0,g=h/(2*Math.sqrt(u*c)),v=a-o,y=Math.sqrt(u/c)/1e3,x=5>Math.abs(v);if(r||(r=x?nn:nr),s||(s=x?ns:no),g<1){let t=nl(y,g);i=e=>a-Math.exp(-g*y*e)*((f+g*y*v)/t*Math.sin(t*e)+v*Math.cos(t*e))}else if(1===g)i=t=>a-Math.exp(-y*t)*(v+(f+y*v)*t);else{let t=y*Math.sqrt(g*g-1);i=e=>{let i=Math.exp(-g*y*e),n=Math.min(t*e,300);return a-i*((f+g*y*v)*Math.sinh(n)+t*v*Math.cosh(n))/t}}let w={calculatedDuration:m&&d||null,next:t=>{let e=i(t);if(m)l.done=t>=d;else{let n=0;g<1&&(n=0===t?D(f):ni(i,t,e));let o=Math.abs(a-e)<=s;l.done=Math.abs(n)<=r&&o}return l.value=l.done?a:e,l},toString:()=>{let t=Math.min(ev(w),2e4),e=eA(e=>w.next(t*e).value,t,30);return t+"ms "+e}};return w}function np({keyframes:t,velocity:e=0,power:i=.8,timeConstant:n=325,bounceDamping:r=10,bounceStiffness:s=500,modifyTarget:o,min:a,max:l,restDelta:u=.5,restSpeed:h}){let c,d,p=t[0],m={done:!1,value:p},f=i*e,g=p+f,v=void 0===o?g:o(g);v!==g&&(f=v-p);let y=t=>-f*Math.exp(-t/n),x=t=>v+y(t),w=t=>{let e=y(t),i=x(t);m.done=Math.abs(e)<=u,m.value=m.done?v:i},P=t=>{let e;if(e=m.value,void 0!==a&&el){var i;c=t,d=nd({keyframes:[m.value,(i=m.value,void 0===a?l:void 0===l||Math.abs(a-i){let e=!1;return(d||void 0!==c||(e=!0,w(t),P(t)),void 0!==c&&t>=c)?d.next(t-c):(e||w(t),m)}}}let nm=e0(.42,0,1,1),nf=e0(0,0,.58,1),ng=e0(.42,0,.58,1),nv=t=>Array.isArray(t)&&"number"!=typeof t[0],ny={linear:C,easeIn:nm,easeInOut:ng,easeOut:nf,circIn:e6,circInOut:e7,circOut:e8,backIn:e3,backInOut:e9,backOut:e2,anticipate:e4},nx=t=>{if(eb(t)){V(4===t.length,"Cubic bezier arrays must contain four numerical values.");let[e,i,n,r]=t;return e0(e,i,n,r)}return"string"==typeof t?(V(void 0!==ny[t],`Invalid easing type '${t}'`),ny[t]):t};function nw(t,e,{clamp:i=!0,ease:n,mixer:r}={}){let s=t.length;if(V(s===e.length,"Both input and output ranges must be the same length"),1===s)return()=>e[0];if(2===s&&e[0]===e[1])return()=>e[1];let o=t[0]===t[1];t[0]>t[s-1]&&(t=[...t].reverse(),e=[...e].reverse());let a=function(t,e,i){let n=[],r=i||ne,s=t.length-1;for(let i=0;i{if(o&&i1)for(;nu(tB(t[0],t[s-1],e)):u}function nP(t,e){let i=t[t.length-1];for(let n=1;n<=e;n++){let r=k(0,e,n);t.push(i_(i,1,r))}}function nb(t){let e=[0];return nP(e,t.length-1),e}function nT({duration:t=300,keyframes:e,times:i,ease:n="easeInOut"}){var r;let s=nv(n)?n.map(nx):nx(n),o={done:!1,value:e[0]},a=nw((r=i&&i.length===e.length?i:nb(e),r.map(e=>e*t)),e,{ease:Array.isArray(s)?s:e.map(()=>s||ng).splice(0,e.length-1)});return{calculatedDuration:t,next:e=>(o.value=a(e),o.done=e>=t,o)}}let nS=t=>{let e=({timestamp:e})=>t(e);return{start:()=>B.update(e,!0),stop:()=>O(e),now:()=>I.isProcessing?I.timestamp:eW.now()}},nA={decay:np,inertia:np,tween:nT,keyframes:nT,spring:nd},nE=t=>t/100;class nM extends iq{constructor(t){super(t),this.holdTime=null,this.cancelTime=null,this.currentTime=0,this.playbackSpeed=1,this.pendingPlayState="running",this.startTime=null,this.state="idle",this.stop=()=>{if(this.resolver.cancel(),this.isStopped=!0,"idle"===this.state)return;this.teardown();let{onStop:t}=this.options;t&&t()};const{name:e,motionValue:i,element:n,keyframes:r}=this.options,s=(null==n?void 0:n.KeyframeResolver)||i$,o=(t,e)=>this.onKeyframesResolved(t,e);this.resolver=new s(r,o,e,i,n),this.resolver.scheduleResolve()}flatten(){super.flatten(),this._resolved&&Object.assign(this._resolved,this.initPlayback(this._resolved.keyframes))}initPlayback(t){let e,i,{type:n="keyframes",repeat:r=0,repeatDelay:s=0,repeatType:o,velocity:a=0}=this.options,l=ex(n)?n:nA[n]||nT;l!==nT&&"number"!=typeof t[0]&&(e=i3(nE,ne(t[0],t[1])),t=[0,100]);let u=l({...this.options,keyframes:t});"mirror"===o&&(i=l({...this.options,keyframes:[...t].reverse(),velocity:-a})),null===u.calculatedDuration&&(u.calculatedDuration=ev(u));let{calculatedDuration:h}=u,c=h+s;return{generator:u,mirroredGenerator:i,mapPercentToKeyframes:e,calculatedDuration:h,resolvedDuration:c,totalDuration:c*(r+1)-s}}onPostResolved(){let{autoplay:t=!0}=this.options;this.play(),"paused"!==this.pendingPlayState&&t?this.state=this.pendingPlayState:this.pause()}tick(t,e=!1){let{resolved:i}=this;if(!i){let{keyframes:t}=this.options;return{done:!0,value:t[t.length-1]}}let{finalKeyframe:n,generator:r,mirroredGenerator:s,mapPercentToKeyframes:o,keyframes:a,calculatedDuration:l,totalDuration:u,resolvedDuration:h}=i;if(null===this.startTime)return r.next(0);let{delay:c,repeat:d,repeatType:p,repeatDelay:m,onUpdate:f}=this.options;this.speed>0?this.startTime=Math.min(this.startTime,t):this.speed<0&&(this.startTime=Math.min(t-u/this.speed,this.startTime)),e?this.currentTime=t:null!==this.holdTime?this.currentTime=this.holdTime:this.currentTime=Math.round(t-this.startTime)*this.speed;let g=this.currentTime-c*(this.speed>=0?1:-1),v=this.speed>=0?g<0:g>u;this.currentTime=Math.max(g,0),"finished"===this.state&&null===this.holdTime&&(this.currentTime=u);let y=this.currentTime,x=r;if(d){let t=Math.min(this.currentTime,u)/h,e=Math.floor(t),i=t%1;!i&&t>=1&&(i=1),1===i&&e--,(e=Math.min(e,d+1))%2&&("reverse"===p?(i=1-i,m&&(i-=m/h)):"mirror"===p&&(x=s)),y=tB(0,1,i)*h}let w=v?{done:!1,value:a[0]}:x.next(y);o&&(w.value=o(w.value));let{done:P}=w;v||null===l||(P=this.speed>=0?this.currentTime>=u:this.currentTime<=0);let b=null===this.holdTime&&("finished"===this.state||"running"===this.state&&P);return b&&void 0!==n&&(w.value=iK(a,this.options,n)),f&&f(w.value),b&&this.finish(),w}get duration(){let{resolved:t}=this;return t?t.calculatedDuration/1e3:0}get time(){return this.currentTime/1e3}set time(t){t=D(t),this.currentTime=t,null!==this.holdTime||0===this.speed?this.holdTime=t:this.driver&&(this.startTime=this.driver.now()-t/this.speed)}get speed(){return this.playbackSpeed}set speed(t){let e=this.playbackSpeed!==t;this.playbackSpeed=t,e&&(this.time=this.currentTime/1e3)}play(){if(this.resolver.isScheduled||this.resolver.resume(),!this._resolved){this.pendingPlayState="running";return}if(this.isStopped)return;let{driver:t=nS,onPlay:e,startTime:i}=this.options;this.driver||(this.driver=t(t=>this.tick(t))),e&&e();let n=this.driver.now();null!==this.holdTime?this.startTime=n-this.holdTime:this.startTime?"finished"===this.state&&(this.startTime=n):this.startTime=null!=i?i:this.calcStartTime(),"finished"===this.state&&this.updateFinishedPromise(),this.cancelTime=this.startTime,this.holdTime=null,this.state="running",this.driver.start()}pause(){var t;if(!this._resolved){this.pendingPlayState="paused";return}this.state="paused",this.holdTime=null!=(t=this.currentTime)?t:0}complete(){"running"!==this.state&&this.play(),this.pendingPlayState=this.state="finished",this.holdTime=null}finish(){this.teardown(),this.state="finished";let{onComplete:t}=this.options;t&&t()}cancel(){null!==this.cancelTime&&this.tick(this.cancelTime),this.teardown(),this.updateFinishedPromise()}teardown(){this.state="idle",this.stopDriver(),this.resolveFinishedPromise(),this.updateFinishedPromise(),this.startTime=this.cancelTime=null,this.resolver.cancel()}stopDriver(){this.driver&&(this.driver.stop(),this.driver=void 0)}sample(t){return this.startTime=0,this.tick(t,!0)}}function nC(t){return new nM(t)}let nV=new Set(["opacity","clipPath","filter","transform"]);function nR(t,e,i,{delay:n=0,duration:r=300,repeat:s=0,repeatType:o="loop",ease:a="easeInOut",times:l}={}){let u={[e]:i};l&&(u.offset=l);let h=function t(e,i){if(e)return"function"==typeof e&&eS()?eA(e,i):eb(e)?eE(e):Array.isArray(e)?e.map(e=>t(e,i)||eM.easeOut):eM[e]}(a,r);return Array.isArray(h)&&(u.easing=h),t.animate(u,{delay:n,duration:r,easing:Array.isArray(h)?"linear":h,fill:"both",iterations:s+1,direction:"reverse"===o?"alternate":"normal"})}let nk=R(()=>Object.hasOwnProperty.call(Element.prototype,"animate")),nD={anticipate:e4,backInOut:e9,circInOut:e7};class nL extends iq{constructor(t){super(t);const{name:e,motionValue:i,element:n,keyframes:r}=this.options;this.resolver=new iY(r,(t,e)=>this.onKeyframesResolved(t,e),e,i,n),this.resolver.scheduleResolve()}initPlayback(t,e){var i;let{duration:n=300,times:r,ease:s,type:o,motionValue:a,name:l,startTime:u}=this.options;if(!a.owner||!a.owner.current)return!1;if("string"==typeof s&&eS()&&s in nD&&(s=nD[s]),ex((i=this.options).type)||"spring"===i.type||!function t(e){return!!("function"==typeof e&&eS()||!e||"string"==typeof e&&(e in eM||eS())||eb(e)||Array.isArray(e)&&e.every(t))}(i.ease)){let{onComplete:e,onUpdate:i,motionValue:a,element:l,...u}=this.options,h=function(t,e){let i=new nM({...e,keyframes:t,repeat:0,delay:0,isGenerator:!0}),n={done:!1,value:t[0]},r=[],s=0;for(;!n.done&&s<2e4;)r.push((n=i.sample(s)).value),s+=10;return{times:void 0,keyframes:r,duration:s-10,ease:"linear"}}(t,u);1===(t=h.keyframes).length&&(t[1]=t[0]),n=h.duration,r=h.times,s=h.ease,o="keyframes"}let h=nR(a.owner.current,l,t,{...this.options,duration:n,times:r,ease:s});return h.startTime=null!=u?u:this.calcStartTime(),this.pendingTimeline?(ew(h,this.pendingTimeline),this.pendingTimeline=void 0):h.onfinish=()=>{let{onComplete:i}=this.options;a.set(iK(t,this.options,e)),i&&i(),this.cancel(),this.resolveFinishedPromise()},{animation:h,duration:n,times:r,type:o,ease:s,keyframes:t}}get duration(){let{resolved:t}=this;if(!t)return 0;let{duration:e}=t;return e/1e3}get time(){let{resolved:t}=this;if(!t)return 0;let{animation:e}=t;return(e.currentTime||0)/1e3}set time(t){let{resolved:e}=this;if(!e)return;let{animation:i}=e;i.currentTime=D(t)}get speed(){let{resolved:t}=this;if(!t)return 1;let{animation:e}=t;return e.playbackRate}set speed(t){let{resolved:e}=this;if(!e)return;let{animation:i}=e;i.playbackRate=t}get state(){let{resolved:t}=this;if(!t)return"idle";let{animation:e}=t;return e.playState}get startTime(){let{resolved:t}=this;if(!t)return null;let{animation:e}=t;return e.startTime}attachTimeline(t){if(this._resolved){let{resolved:e}=this;if(!e)return C;let{animation:i}=e;ew(i,t)}else this.pendingTimeline=t;return C}play(){if(this.isStopped)return;let{resolved:t}=this;if(!t)return;let{animation:e}=t;"finished"===e.playState&&this.updateFinishedPromise(),e.play()}pause(){let{resolved:t}=this;if(!t)return;let{animation:e}=t;e.pause()}stop(){if(this.resolver.cancel(),this.isStopped=!0,"idle"===this.state)return;this.resolveFinishedPromise(),this.updateFinishedPromise();let{resolved:t}=this;if(!t)return;let{animation:e,keyframes:i,duration:n,type:r,ease:s,times:o}=t;if("idle"===e.playState||"finished"===e.playState)return;if(this.time){let{motionValue:t,onUpdate:e,onComplete:a,element:l,...u}=this.options,h=new nM({...u,keyframes:i,duration:n,type:r,ease:s,times:o,isGenerator:!0}),c=D(this.time);t.setWithVelocity(h.sample(c-10).value,h.sample(c).value,10)}let{onStop:a}=this.options;a&&a(),this.cancel()}complete(){let{resolved:t}=this;t&&t.animation.finish()}cancel(){let{resolved:t}=this;t&&t.animation.cancel()}static supports(t){let{motionValue:e,name:i,repeatDelay:n,repeatType:r,damping:s,type:o}=t;if(!e||!e.owner||!(e.owner.current instanceof HTMLElement))return!1;let{onUpdate:a,transformTemplate:l}=e.owner.getProps();return nk()&&i&&nV.has(i)&&!a&&!l&&!n&&"mirror"!==r&&0!==s&&"inertia"!==o}}let nj={type:"spring",stiffness:500,damping:25,restSpeed:10},nF={type:"keyframes",duration:.8},nB={type:"keyframes",ease:[.25,.1,.35,1],duration:.3},nO=(t,e,i,n={},r,s)=>o=>{let a=eg(n,t)||{},l=a.delay||n.delay||0,{elapsed:u=0}=n;u-=D(l);let h={keyframes:Array.isArray(i)?i:[null,i],ease:"easeOut",velocity:e.getVelocity(),...a,delay:-u,onUpdate:t=>{e.set(t),a.onUpdate&&a.onUpdate(t)},onComplete:()=>{o(),a.onComplete&&a.onComplete()},name:t,motionValue:e,element:s?void 0:r};!function({when:t,delay:e,delayChildren:i,staggerChildren:n,staggerDirection:r,repeat:s,repeatType:o,repeatDelay:a,from:l,elapsed:u,...h}){return!!Object.keys(h).length}(a)&&(h={...h,...((t,{keyframes:e})=>e.length>2?nF:tV.has(t)?t.startsWith("scale")?{type:"spring",stiffness:550,damping:0===e[1]?2*Math.sqrt(550):30,restSpeed:10}:nj:nB)(t,h)}),h.duration&&(h.duration=D(h.duration)),h.repeatDelay&&(h.repeatDelay=D(h.repeatDelay)),void 0!==h.from&&(h.keyframes[0]=h.from);let c=!1;if(!1!==h.type&&(0!==h.duration||h.repeatDelay)||(h.duration=0,0===h.delay&&(c=!0)),(eJ.current||L.skipAnimations)&&(c=!0,h.duration=0,h.delay=0),c&&!s&&void 0!==e.get()){let t=iK(h.keyframes,a);if(void 0!==t)return B.update(()=>{h.onUpdate(t),h.onComplete()}),new ef([])}return!s&&nL.supports(h)?new nL(h):new nM(h)};function nI(t,e,{delay:i=0,transitionOverride:n,type:r}={}){var s;let{transition:o=t.getDefaultTransition(),transitionEnd:a,...l}=e;n&&(o=n);let u=[],h=r&&t.animationState&&t.animationState.getState()[r];for(let e in l){let n=t.getValue(e,null!=(s=t.latestValues[e])?s:null),r=l[e];if(void 0===r||h&&function({protectedKeys:t,needsAnimating:e},i){let n=t.hasOwnProperty(i)&&!0!==e[i];return e[i]=!1,n}(h,e))continue;let a={delay:i,...eg(o||{},e)},c=!1;if(window.MotionHandoffAnimation){let i=eZ(t);if(i){let t=window.MotionHandoffAnimation(i,e,B);null!==t&&(a.startTime=t,c=!0)}}e_(t,e),n.start(nO(e,n,r,t.shouldReduceMotion&&eU.has(e)?{type:!1}:a,t,c));let d=n.animation;d&&u.push(d)}return a&&Promise.all(u).then(()=>{B.update(()=>{a&&eq(t,a)})}),u}function nU(t,e,i={}){var n;let r=ed(t,e,"exit"===i.type?null==(n=t.presenceContext)?void 0:n.custom:void 0),{transition:s=t.getDefaultTransition()||{}}=r||{};i.transitionOverride&&(s=i.transitionOverride);let o=r?()=>Promise.all(nI(t,r,i)):()=>Promise.resolve(),a=t.variantChildren&&t.variantChildren.size?(n=0)=>{let{delayChildren:r=0,staggerChildren:o,staggerDirection:a}=s;return function(t,e,i=0,n=0,r=1,s){let o=[],a=(t.variantChildren.size-1)*n,l=1===r?(t=0)=>t*n:(t=0)=>a-t*n;return Array.from(t.variantChildren).sort(n$).forEach((t,n)=>{t.notify("AnimationStart",e),o.push(nU(t,e,{...s,delay:i+l(n)}).then(()=>t.notify("AnimationComplete",e)))}),Promise.all(o)}(t,e,r+n,o,a,i)}:()=>Promise.resolve(),{when:l}=s;if(!l)return Promise.all([o(),a(i.delay)]);{let[t,e]="beforeChildren"===l?[o,a]:[a,o];return t().then(()=>e())}}function n$(t,e){return t.sortNodePosition(e)}function nW(t,e,i={}){let n;if(t.notify("AnimationStart",e),Array.isArray(e))n=Promise.all(e.map(e=>nU(t,e,i)));else if("string"==typeof e)n=nU(t,e,i);else{let r="function"==typeof e?ed(t,e,i.custom):e;n=Promise.all(nI(t,r,i))}return n.then(()=>{t.notify("AnimationComplete",e)})}let nN=to.length,nz=[...ts].reverse(),nH=ts.length;function nY(t=!1){return{isActive:t,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function nX(){return{animate:nY(!0),whileInView:nY(),whileHover:nY(),whileTap:nY(),whileDrag:nY(),whileFocus:nY(),exit:nY()}}class nG{constructor(t){this.isMounted=!1,this.node=t}update(){}}let nK=0,nq={animation:{Feature:class extends nG{constructor(t){super(t),t.animationState||(t.animationState=function(t){let e=e=>Promise.all(e.map(({animation:e,options:i})=>nW(t,e,i))),i=nX(),n=!0,r=e=>(i,n)=>{var r;let s=ed(t,n,"exit"===e?null==(r=t.presenceContext)?void 0:r.custom:void 0);if(s){let{transition:t,transitionEnd:e,...n}=s;i={...i,...n,...e}}return i};function s(s){let{props:o}=t,a=function t(e){if(!e)return;if(!e.isControllingVariants){let i=e.parent&&t(e.parent)||{};return void 0!==e.props.initial&&(i.initial=e.props.initial),i}let i={};for(let t=0;tc&&v,b=!1,T=Array.isArray(g)?g:[g],S=T.reduce(r(m),{});!1===y&&(S={});let{prevResolvedValues:A={}}=f,E={...A,...S},M=e=>{P=!0,u.has(e)&&(b=!0,u.delete(e)),f.needsAnimating[e]=!0;let i=t.getValue(e);i&&(i.liveStyle=!1)};for(let t in E){let e=S[t],i=A[t];if(!h.hasOwnProperty(t))(tT(e)&&tT(i)?ec(e,i):e===i)?void 0!==e&&u.has(t)?M(t):f.protectedKeys[t]=!0:null!=e?M(t):u.add(t)}f.prevProp=g,f.prevResolvedValues=S,f.isActive&&(h={...h,...S}),n&&t.blockInitialAnimation&&(P=!1);let C=!(x&&w)||b;P&&C&&l.push(...T.map(t=>({animation:t,options:{type:m}})))}if(u.size){let e={};u.forEach(i=>{let n=t.getBaseTarget(i),r=t.getValue(i);r&&(r.liveStyle=!0),e[i]=null!=n?n:null}),l.push({animation:e})}let m=!!l.length;return n&&(!1===o.initial||o.initial===o.animate)&&!t.manuallyAnimateOnMount&&(m=!1),n=!1,m?e(l):Promise.resolve()}return{animateChanges:s,setActive:function(e,n){var r;if(i[e].isActive===n)return Promise.resolve();null==(r=t.variantChildren)||r.forEach(t=>{var i;return null==(i=t.animationState)?void 0:i.setActive(e,n)}),i[e].isActive=n;let o=s(e);for(let t in i)i[t].protectedKeys={};return o},setAnimateFunction:function(i){e=i(t)},getState:()=>i,reset:()=>{i=nX(),n=!0}}}(t))}updateAnimationControlsSubscription(){let{animate:t}=this.node.getProps();tr(t)&&(this.unmountControls=t.subscribe(this.node))}mount(){this.updateAnimationControlsSubscription()}update(){let{animate:t}=this.node.getProps(),{animate:e}=this.node.prevProps||{};t!==e&&this.updateAnimationControlsSubscription()}unmount(){var t;this.node.animationState.reset(),null==(t=this.unmountControls)||t.call(this)}}},exit:{Feature:class extends nG{constructor(){super(...arguments),this.id=nK++}update(){if(!this.node.presenceContext)return;let{isPresent:t,onExitComplete:e}=this.node.presenceContext,{isPresent:i}=this.node.prevPresenceContext||{};if(!this.node.animationState||t===i)return;let n=this.node.animationState.setActive("exit",!t);e&&!t&&n.then(()=>e(this.id))}mount(){let{register:t}=this.node.presenceContext||{};t&&(this.unmount=t(this.id))}unmount(){}}}};function n_(t,e,i,n={passive:!0}){return t.addEventListener(e,i,n),()=>t.removeEventListener(e,i)}function nZ(t){return{point:{x:t.pageX,y:t.pageY}}}let nJ=t=>e=>ej(e)&&t(e,nZ(e));function nQ(t,e,i,n){return n_(t,e,nJ(i),n)}let n0=(t,e)=>Math.abs(t-e);function n1(t,e){return Math.sqrt(n0(t.x,e.x)**2+n0(t.y,e.y)**2)}class n5{constructor(t,e,{transformPagePoint:i,contextWindow:n,dragSnapToOrigin:r=!1}={}){if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.contextWindow=window,this.updatePoint=()=>{if(!(this.lastMoveEvent&&this.lastMoveEventInfo))return;let t=n9(this.lastMoveEventInfo,this.history),e=null!==this.startEvent,i=n1(t.offset,{x:0,y:0})>=3;if(!e&&!i)return;let{point:n}=t,{timestamp:r}=I;this.history.push({...n,timestamp:r});let{onStart:s,onMove:o}=this.handlers;e||(s&&s(this.lastMoveEvent,t),this.startEvent=this.lastMoveEvent),o&&o(this.lastMoveEvent,t)},this.handlePointerMove=(t,e)=>{this.lastMoveEvent=t,this.lastMoveEventInfo=n2(e,this.transformPagePoint),B.update(this.updatePoint,!0)},this.handlePointerUp=(t,e)=>{this.end();let{onEnd:i,onSessionEnd:n,resumeAnimation:r}=this.handlers;if(this.dragSnapToOrigin&&r&&r(),!(this.lastMoveEvent&&this.lastMoveEventInfo))return;let s=n9("pointercancel"===t.type?this.lastMoveEventInfo:n2(e,this.transformPagePoint),this.history);this.startEvent&&i&&i(t,s),n&&n(t,s)},!ej(t))return;this.dragSnapToOrigin=r,this.handlers=e,this.transformPagePoint=i,this.contextWindow=n||window;const s=n2(nZ(t),this.transformPagePoint),{point:o}=s,{timestamp:a}=I;this.history=[{...o,timestamp:a}];const{onSessionStart:l}=e;l&&l(t,n9(s,this.history)),this.removeListeners=i3(nQ(this.contextWindow,"pointermove",this.handlePointerMove),nQ(this.contextWindow,"pointerup",this.handlePointerUp),nQ(this.contextWindow,"pointercancel",this.handlePointerUp))}updateHandlers(t){this.handlers=t}end(){this.removeListeners&&this.removeListeners(),O(this.updatePoint)}}function n2(t,e){return e?{point:e(t.point)}:t}function n3(t,e){return{x:t.x-e.x,y:t.y-e.y}}function n9({point:t},e){return{point:t,delta:n3(t,n4(e)),offset:n3(t,e[0]),velocity:function(t){if(t.length<2)return{x:0,y:0};let e=t.length-1,i=null,n=n4(t);for(;e>=0&&(i=t[e],!(n.timestamp-i.timestamp>D(.1)));)e--;if(!i)return{x:0,y:0};let r=(n.timestamp-i.timestamp)/1e3;if(0===r)return{x:0,y:0};let s={x:(n.x-i.x)/r,y:(n.y-i.y)/r};return s.x===1/0&&(s.x=0),s.y===1/0&&(s.y=0),s}(e)}}function n4(t){return t[t.length-1]}function n6(t){return t.max-t.min}function n8(t,e,i,n=.5){t.origin=n,t.originPoint=i_(e.min,e.max,t.origin),t.scale=n6(i)/n6(e),t.translate=i_(i.min,i.max,t.origin)-t.originPoint,(t.scale>=.9999&&t.scale<=1.0001||isNaN(t.scale))&&(t.scale=1),(t.translate>=-.01&&t.translate<=.01||isNaN(t.translate))&&(t.translate=0)}function n7(t,e,i,n){n8(t.x,e.x,i.x,n?n.originX:void 0),n8(t.y,e.y,i.y,n?n.originY:void 0)}function rt(t,e,i){t.min=i.min+e.min,t.max=t.min+n6(e)}function re(t,e,i){t.min=e.min-i.min,t.max=t.min+n6(e)}function ri(t,e,i){re(t.x,e.x,i.x),re(t.y,e.y,i.y)}function rn(t,e,i){return{min:void 0!==e?t.min+e:void 0,max:void 0!==i?t.max+i-(t.max-t.min):void 0}}function rr(t,e){let i=e.min-t.min,n=e.max-t.max;return e.max-e.min({translate:0,scale:1,origin:0,originPoint:0}),rl=()=>({x:ra(),y:ra()}),ru=()=>({min:0,max:0}),rh=()=>({x:ru(),y:ru()});function rc(t){return[t("x"),t("y")]}function rd({top:t,left:e,right:i,bottom:n}){return{x:{min:e,max:i},y:{min:t,max:n}}}function rp(t){return void 0===t||1===t}function rm({scale:t,scaleX:e,scaleY:i}){return!rp(t)||!rp(e)||!rp(i)}function rf(t){return rm(t)||rg(t)||t.z||t.rotate||t.rotateX||t.rotateY||t.skewX||t.skewY}function rg(t){var e,i;return(e=t.x)&&"0%"!==e||(i=t.y)&&"0%"!==i}function rv(t,e,i,n,r){return void 0!==r&&(t=n+r*(t-n)),n+i*(t-n)+e}function ry(t,e=0,i=1,n,r){t.min=rv(t.min,e,i,n,r),t.max=rv(t.max,e,i,n,r)}function rx(t,{x:e,y:i}){ry(t.x,e.translate,e.scale,e.originPoint),ry(t.y,i.translate,i.scale,i.originPoint)}function rw(t,e){t.min=t.min+e,t.max=t.max+e}function rP(t,e,i,n,r=.5){let s=i_(t.min,t.max,r);ry(t,e,i,s,n)}function rb(t,e){rP(t.x,e.x,e.scaleX,e.scale,e.originX),rP(t.y,e.y,e.scaleY,e.scale,e.originY)}function rT(t,e){return rd(function(t,e){if(!e)return t;let i=e({x:t.left,y:t.top}),n=e({x:t.right,y:t.bottom});return{top:i.y,left:i.x,bottom:n.y,right:n.x}}(t.getBoundingClientRect(),e))}let rS=({current:t})=>t?t.ownerDocument.defaultView:null,rA=new WeakMap;class rE{constructor(t){this.openDragLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=rh(),this.visualElement=t}start(t,{snapToCursor:e=!1}={}){let{presenceContext:i}=this.visualElement;if(i&&!1===i.isPresent)return;let n=t=>{let{dragSnapToOrigin:i}=this.getProps();i?this.pauseAnimation():this.stopAnimation(),e&&this.snapToCursor(nZ(t).point)},r=(t,e)=>{let{drag:i,dragPropagation:n,onDragStart:r}=this.getProps();if(i&&!n&&(this.openDragLock&&this.openDragLock(),this.openDragLock=function(t){if("x"===t||"y"===t)if(eC[t])return null;else return eC[t]=!0,()=>{eC[t]=!1};return eC.x||eC.y?null:(eC.x=eC.y=!0,()=>{eC.x=eC.y=!1})}(i),!this.openDragLock))return;this.isDragging=!0,this.currentDirection=null,this.resolveConstraints(),this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!0,this.visualElement.projection.target=void 0),rc(t=>{let e=this.getAxisMotionValue(t).get()||0;if(tN.test(e)){let{projection:i}=this.visualElement;if(i&&i.layout){let n=i.layout.layoutBox[t];n&&(e=n6(n)*(parseFloat(e)/100))}}this.originPoint[t]=e}),r&&B.postRender(()=>r(t,e)),e_(this.visualElement,"transform");let{animationState:s}=this.visualElement;s&&s.setActive("whileDrag",!0)},s=(t,e)=>{let{dragPropagation:i,dragDirectionLock:n,onDirectionLock:r,onDrag:s}=this.getProps();if(!i&&!this.openDragLock)return;let{offset:o}=e;if(n&&null===this.currentDirection){this.currentDirection=function(t,e=10){let i=null;return Math.abs(t.y)>e?i="y":Math.abs(t.x)>e&&(i="x"),i}(o),null!==this.currentDirection&&r&&r(this.currentDirection);return}this.updateAxis("x",e.point,o),this.updateAxis("y",e.point,o),this.visualElement.render(),s&&s(t,e)},o=(t,e)=>this.stop(t,e),a=()=>rc(t=>{var e;return"paused"===this.getAnimationState(t)&&(null==(e=this.getAxisMotionValue(t).animation)?void 0:e.play())}),{dragSnapToOrigin:l}=this.getProps();this.panSession=new n5(t,{onSessionStart:n,onStart:r,onMove:s,onSessionEnd:o,resumeAnimation:a},{transformPagePoint:this.visualElement.getTransformPagePoint(),dragSnapToOrigin:l,contextWindow:rS(this.visualElement)})}stop(t,e){let i=this.isDragging;if(this.cancel(),!i)return;let{velocity:n}=e;this.startAnimation(n);let{onDragEnd:r}=this.getProps();r&&B.postRender(()=>r(t,e))}cancel(){this.isDragging=!1;let{projection:t,animationState:e}=this.visualElement;t&&(t.isAnimationBlocked=!1),this.panSession&&this.panSession.end(),this.panSession=void 0;let{dragPropagation:i}=this.getProps();!i&&this.openDragLock&&(this.openDragLock(),this.openDragLock=null),e&&e.setActive("whileDrag",!1)}updateAxis(t,e,i){let{drag:n}=this.getProps();if(!i||!rM(t,n,this.currentDirection))return;let r=this.getAxisMotionValue(t),s=this.originPoint[t]+i[t];this.constraints&&this.constraints[t]&&(s=function(t,{min:e,max:i},n){return void 0!==e&&ti&&(t=n?i_(i,t,n.max):Math.min(t,i)),t}(s,this.constraints[t],this.elastic[t])),r.set(s)}resolveConstraints(){var t;let{dragConstraints:e,dragElastic:i}=this.getProps(),n=this.visualElement.projection&&!this.visualElement.projection.layout?this.visualElement.projection.measure(!1):null==(t=this.visualElement.projection)?void 0:t.layout,r=this.constraints;e&&tc(e)?this.constraints||(this.constraints=this.resolveRefConstraints()):e&&n?this.constraints=function(t,{top:e,left:i,bottom:n,right:r}){return{x:rn(t.x,i,r),y:rn(t.y,e,n)}}(n.layoutBox,e):this.constraints=!1,this.elastic=function(t=.35){return!1===t?t=0:!0===t&&(t=.35),{x:rs(t,"left","right"),y:rs(t,"top","bottom")}}(i),r!==this.constraints&&n&&this.constraints&&!this.hasMutatedConstraints&&rc(t=>{var e,i;let r;!1!==this.constraints&&this.getAxisMotionValue(t)&&(this.constraints[t]=(e=n.layoutBox[t],i=this.constraints[t],r={},void 0!==i.min&&(r.min=i.min-e.min),void 0!==i.max&&(r.max=i.max-e.min),r))})}resolveRefConstraints(){var t;let{dragConstraints:e,onMeasureDragConstraints:i}=this.getProps();if(!e||!tc(e))return!1;let n=e.current;V(null!==n,"If `dragConstraints` is set as a React ref, that ref must be passed to another component's `ref` prop.");let{projection:r}=this.visualElement;if(!r||!r.layout)return!1;let s=function(t,e,i){let n=rT(t,i),{scroll:r}=e;return r&&(rw(n.x,r.offset.x),rw(n.y,r.offset.y)),n}(n,r.root,this.visualElement.getTransformPagePoint()),o=(t=r.layout.layoutBox,{x:rr(t.x,s.x),y:rr(t.y,s.y)});if(i){let t=i(function({x:t,y:e}){return{top:e.min,right:t.max,bottom:e.max,left:t.min}}(o));this.hasMutatedConstraints=!!t,t&&(o=rd(t))}return o}startAnimation(t){let{drag:e,dragMomentum:i,dragElastic:n,dragTransition:r,dragSnapToOrigin:s,onDragTransitionEnd:o}=this.getProps(),a=this.constraints||{};return Promise.all(rc(o=>{if(!rM(o,e,this.currentDirection))return;let l=a&&a[o]||{};s&&(l={min:0,max:0});let u={type:"inertia",velocity:i?t[o]:0,bounceStiffness:n?200:1e6,bounceDamping:n?40:1e7,timeConstant:750,restDelta:1,restSpeed:10,...r,...l};return this.startAxisValueAnimation(o,u)})).then(o)}startAxisValueAnimation(t,e){let i=this.getAxisMotionValue(t);return e_(this.visualElement,t),i.start(nO(t,i,0,e,this.visualElement,!1))}stopAnimation(){rc(t=>this.getAxisMotionValue(t).stop())}pauseAnimation(){rc(t=>{var e;return null==(e=this.getAxisMotionValue(t).animation)?void 0:e.pause()})}getAnimationState(t){var e;return null==(e=this.getAxisMotionValue(t).animation)?void 0:e.state}getAxisMotionValue(t){let e=`_drag${t.toUpperCase()}`,i=this.visualElement.getProps();return i[e]||this.visualElement.getValue(t,(i.initial?i.initial[t]:void 0)||0)}snapToCursor(t){rc(e=>{let{drag:i}=this.getProps();if(!rM(e,i,this.currentDirection))return;let{projection:n}=this.visualElement,r=this.getAxisMotionValue(e);if(n&&n.layout){let{min:i,max:s}=n.layout.layoutBox[e];r.set(t[e]-i_(i,s,.5))}})}scalePositionWithinConstraints(){if(!this.visualElement.current)return;let{drag:t,dragConstraints:e}=this.getProps(),{projection:i}=this.visualElement;if(!tc(e)||!i||!this.constraints)return;this.stopAnimation();let n={x:0,y:0};rc(t=>{let e=this.getAxisMotionValue(t);if(e&&!1!==this.constraints){var i,r;let s,o,a,l=e.get();n[t]=(i={min:l,max:l},r=this.constraints[t],s=.5,o=n6(i),(a=n6(r))>o?s=k(r.min,r.max-o,i.min):o>a&&(s=k(i.min,i.max-a,r.min)),tB(0,1,s))}});let{transformTemplate:r}=this.visualElement.getProps();this.visualElement.current.style.transform=r?r({},""):"none",i.root&&i.root.updateScroll(),i.updateLayout(),this.resolveConstraints(),rc(e=>{if(!rM(e,t,null))return;let i=this.getAxisMotionValue(e),{min:r,max:s}=this.constraints[e];i.set(i_(r,s,n[e]))})}addListeners(){if(!this.visualElement.current)return;rA.set(this.visualElement,this);let t=nQ(this.visualElement.current,"pointerdown",t=>{let{drag:e,dragListener:i=!0}=this.getProps();e&&i&&this.start(t)}),e=()=>{let{dragConstraints:t}=this.getProps();tc(t)&&t.current&&(this.constraints=this.resolveRefConstraints())},{projection:i}=this.visualElement,n=i.addEventListener("measure",e);i&&!i.layout&&(i.root&&i.root.updateScroll(),i.updateLayout()),B.read(e);let r=n_(window,"resize",()=>this.scalePositionWithinConstraints()),s=i.addEventListener("didUpdate",({delta:t,hasLayoutChanged:e})=>{this.isDragging&&e&&(rc(e=>{let i=this.getAxisMotionValue(e);i&&(this.originPoint[e]+=t[e].translate,i.set(i.get()+t[e].translate))}),this.visualElement.render())});return()=>{r(),t(),n(),s&&s()}}getProps(){let t=this.visualElement.getProps(),{drag:e=!1,dragDirectionLock:i=!1,dragPropagation:n=!1,dragConstraints:r=!1,dragElastic:s=.35,dragMomentum:o=!0}=t;return{...t,drag:e,dragDirectionLock:i,dragPropagation:n,dragConstraints:r,dragElastic:s,dragMomentum:o}}}function rM(t,e,i){return(!0===e||e===t)&&(null===i||i===t)}let rC=t=>(e,i)=>{t&&B.postRender(()=>t(e,i))},rV={hasAnimatedSinceResize:!0,hasEverUpdated:!1};function rR(t,e){return e.max===e.min?0:t/(e.max-e.min)*100}let rk={correct:(t,e)=>{if(!e.target)return t;if("string"==typeof t)if(!tz.test(t))return t;else t=parseFloat(t);let i=rR(t,e.target.x),n=rR(t,e.target.y);return`${i}% ${n}%`}};class rD extends c.Component{componentDidMount(){let{visualElement:t,layoutGroup:e,switchLayoutGroup:i,layoutId:n}=this.props,{projection:r}=t;ee(rj),r&&(e.group&&e.group.add(r),i&&i.register&&n&&i.register(r),r.root.didUpdate(),r.addEventListener("animationComplete",()=>{this.safeToRemove()}),r.setOptions({...r.options,onExitComplete:()=>this.safeToRemove()})),rV.hasEverUpdated=!0}getSnapshotBeforeUpdate(t){let{layoutDependency:e,visualElement:i,drag:n,isPresent:r}=this.props,s=i.projection;return s&&(s.isPresent=r,n||t.layoutDependency!==e||void 0===e?s.willUpdate():this.safeToRemove(),t.isPresent!==r&&(r?s.promote():s.relegate()||B.postRender(()=>{let t=s.getStack();t&&t.members.length||this.safeToRemove()}))),null}componentDidUpdate(){let{projection:t}=this.props.visualElement;t&&(t.root.didUpdate(),tf.postRender(()=>{!t.currentAnimation&&t.isLead()&&this.safeToRemove()}))}componentWillUnmount(){let{visualElement:t,layoutGroup:e,switchLayoutGroup:i}=this.props,{projection:n}=t;n&&(n.scheduleCheckAfterUnmount(),e&&e.group&&e.group.remove(n),i&&i.deregister&&i.deregister(n))}safeToRemove(){let{safeToRemove:t}=this.props;t&&t()}render(){return null}}function rL(t){let[e,i]=w(),n=(0,c.useContext)(d);return(0,h.jsx)(rD,{...t,layoutGroup:n,switchLayoutGroup:(0,c.useContext)(tv),isPresent:e,safeToRemove:i})}let rj={borderRadius:{...rk,applyTo:["borderTopLeftRadius","borderTopRightRadius","borderBottomLeftRadius","borderBottomRightRadius"]},borderTopLeftRadius:rk,borderTopRightRadius:rk,borderBottomLeftRadius:rk,borderBottomRightRadius:rk,boxShadow:{correct:(t,{treeScale:e,projectionDelta:i})=>{let n=iw.parse(t);if(n.length>5)return t;let r=iw.createTransformer(t),s=+("number"!=typeof n[0]),o=i.x.scale*e.x,a=i.y.scale*e.y;n[0+s]/=o,n[1+s]/=a;let l=i_(o,a,.5);return"number"==typeof n[2+s]&&(n[2+s]/=l),"number"==typeof n[3+s]&&(n[3+s]/=l),r(n)}}};function rF(t,e,i){let n=tA(t)?t:eK(t);return n.start(nO("",n,e,i)),n.animation}function rB(t){return t instanceof SVGElement&&"svg"!==t.tagName}let rO=(t,e)=>t.depth-e.depth;class rI{constructor(){this.children=[],this.isDirty=!1}add(t){eN(this.children,t),this.isDirty=!0}remove(t){ez(this.children,t),this.isDirty=!0}forEach(t){this.isDirty&&this.children.sort(rO),this.isDirty=!1,this.children.forEach(t)}}function rU(t,e){let i=eW.now(),n=({timestamp:r})=>{let s=r-i;s>=e&&(O(n),t(s-e))};return B.read(n,!0),()=>O(n)}let r$=["TopLeft","TopRight","BottomLeft","BottomRight"],rW=r$.length,rN=t=>"string"==typeof t?parseFloat(t):t,rz=t=>"number"==typeof t||tz.test(t);function rH(t,e){return void 0!==t[e]?t[e]:t.borderRadius}let rY=rG(0,.5,e8),rX=rG(.5,.95,C);function rG(t,e,i){return n=>ne?1:i(k(t,e,n))}function rK(t,e){t.min=e.min,t.max=e.max}function rq(t,e){rK(t.x,e.x),rK(t.y,e.y)}function r_(t,e){t.translate=e.translate,t.scale=e.scale,t.originPoint=e.originPoint,t.origin=e.origin}function rZ(t,e,i,n,r){return t-=e,t=n+1/i*(t-n),void 0!==r&&(t=n+1/r*(t-n)),t}function rJ(t,e,[i,n,r],s,o){!function(t,e=0,i=1,n=.5,r,s=t,o=t){if(tN.test(e)&&(e=parseFloat(e),e=i_(o.min,o.max,e/100)-o.min),"number"!=typeof e)return;let a=i_(s.min,s.max,n);t===s&&(a-=e),t.min=rZ(t.min,e,i,a,r),t.max=rZ(t.max,e,i,a,r)}(t,e[i],e[n],e[r],e.scale,s,o)}let rQ=["x","scaleX","originX"],r0=["y","scaleY","originY"];function r1(t,e,i,n){rJ(t.x,e,rQ,i?i.x:void 0,n?n.x:void 0),rJ(t.y,e,r0,i?i.y:void 0,n?n.y:void 0)}function r5(t){return 0===t.translate&&1===t.scale}function r2(t){return r5(t.x)&&r5(t.y)}function r3(t,e){return t.min===e.min&&t.max===e.max}function r9(t,e){return Math.round(t.min)===Math.round(e.min)&&Math.round(t.max)===Math.round(e.max)}function r4(t,e){return r9(t.x,e.x)&&r9(t.y,e.y)}function r6(t){return n6(t.x)/n6(t.y)}function r8(t,e){return t.translate===e.translate&&t.scale===e.scale&&t.originPoint===e.originPoint}class r7{constructor(){this.members=[]}add(t){eN(this.members,t),t.scheduleRender()}remove(t){if(ez(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){let t=this.members[this.members.length-1];t&&this.promote(t)}}relegate(t){let e,i=this.members.findIndex(e=>t===e);if(0===i)return!1;for(let t=i;t>=0;t--){let i=this.members[t];if(!1!==i.isPresent){e=i;break}}return!!e&&(this.promote(e),!0)}promote(t,e){let i=this.lead;if(t!==i&&(this.prevLead=i,this.lead=t,t.show(),i)){i.instance&&i.scheduleRender(),t.scheduleRender(),t.resumeFrom=i,e&&(t.resumeFrom.preserveOpacity=!0),i.snapshot&&(t.snapshot=i.snapshot,t.snapshot.latestValues=i.animationValues||i.latestValues),t.root&&t.root.isUpdating&&(t.isLayoutDirty=!0);let{crossfade:n}=t.options;!1===n&&i.hide()}}exitAnimationComplete(){this.members.forEach(t=>{let{options:e,resumingFrom:i}=t;e.onExitComplete&&e.onExitComplete(),i&&i.options.onExitComplete&&i.options.onExitComplete()})}scheduleRender(){this.members.forEach(t=>{t.instance&&t.scheduleRender(!1)})}removeLeadSnapshot(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)}}let st={type:"projectionFrame",totalNodes:0,resolvedTargetDeltas:0,recalculatedProjection:0},se="u">typeof window&&void 0!==window.MotionDebug,si=["","X","Y","Z"],sn={visibility:"hidden"},sr=0;function ss(t,e,i,n){let{latestValues:r}=e;r[t]&&(i[t]=r[t],e.setStaticValue(t,0),n&&(n[t]=0))}function so({attachResizeListener:t,defaultParent:e,measureScroll:i,checkIsScrollRoot:n,resetTransform:r}){return class{constructor(t={},i=null==e?void 0:e()){this.id=sr++,this.animationId=0,this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.isProjectionDirty=!1,this.isSharedProjectionDirty=!1,this.isTransformDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.hasCheckedOptimisedAppear=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.hasTreeAnimated=!1,this.updateScheduled=!1,this.scheduleUpdate=()=>this.update(),this.projectionUpdateScheduled=!1,this.checkUpdateFailed=()=>{this.isUpdating&&(this.isUpdating=!1,this.clearAllSnapshots())},this.updateProjection=()=>{this.projectionUpdateScheduled=!1,se&&(st.totalNodes=st.resolvedTargetDeltas=st.recalculatedProjection=0),this.nodes.forEach(su),this.nodes.forEach(sg),this.nodes.forEach(sv),this.nodes.forEach(sh),se&&window.MotionDebug.record(st)},this.resolvedRelativeTargetAt=0,this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.latestValues=t,this.root=i?i.root||i:this,this.path=i?[...i.path,i]:[],this.parent=i,this.depth=i?i.depth+1:0;for(let t=0;tthis.root.updateBlockedByResize=!1;t(e,()=>{this.root.updateBlockedByResize=!0,i&&i(),i=rU(n,250),rV.hasAnimatedSinceResize&&(rV.hasAnimatedSinceResize=!1,this.nodes.forEach(sf))})}n&&this.root.registerSharedNode(n,this),!1!==this.options.animate&&s&&(n||r)&&this.addEventListener("didUpdate",({delta:t,hasLayoutChanged:e,hasRelativeTargetChanged:i,layout:n})=>{if(this.isTreeAnimationBlocked()){this.target=void 0,this.relativeTarget=void 0;return}let r=this.options.transition||s.getDefaultTransition()||sT,{onLayoutAnimationStart:o,onLayoutAnimationComplete:a}=s.getProps(),l=!this.targetLayout||!r4(this.targetLayout,n)||i,u=!e&&i;if(this.options.layoutRoot||this.resumeFrom&&this.resumeFrom.instance||u||e&&(l||!this.currentAnimation)){this.resumeFrom&&(this.resumingFrom=this.resumeFrom,this.resumingFrom.resumingFrom=void 0),this.setAnimationOrigin(t,u);let e={...eg(r,"layout"),onPlay:o,onComplete:a};(s.shouldReduceMotion||this.options.layoutRoot)&&(e.delay=0,e.type=!1),this.startAnimation(e)}else e||sf(this),this.isLead()&&this.options.onExitComplete&&this.options.onExitComplete();this.targetLayout=n})}unmount(){this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this);let t=this.getStack();t&&t.remove(this),this.parent&&this.parent.children.delete(this),this.instance=void 0,O(this.updateProjection)}blockUpdate(){this.updateManuallyBlocked=!0}unblockUpdate(){this.updateManuallyBlocked=!1}isUpdateBlocked(){return this.updateManuallyBlocked||this.updateBlockedByResize}isTreeAnimationBlocked(){return this.isAnimationBlocked||this.parent&&this.parent.isTreeAnimationBlocked()||!1}startUpdate(){!this.isUpdateBlocked()&&(this.isUpdating=!0,this.nodes&&this.nodes.forEach(sy),this.animationId++)}getTransformTemplate(){let{visualElement:t}=this.options;return t&&t.getProps().transformTemplate}willUpdate(t=!0){if(this.root.hasTreeAnimated=!0,this.root.isUpdateBlocked()){this.options.onExitComplete&&this.options.onExitComplete();return}if(window.MotionCancelOptimisedAnimation&&!this.hasCheckedOptimisedAppear&&function t(e){if(e.hasCheckedOptimisedAppear=!0,e.root===e)return;let{visualElement:i}=e.options;if(!i)return;let n=eZ(i);if(window.MotionHasOptimisedAnimation(n,"transform")){let{layout:t,layoutId:i}=e.options;window.MotionCancelOptimisedAnimation(n,"transform",B,!(t||i))}let{parent:r}=e;r&&!r.hasCheckedOptimisedAppear&&t(r)}(this),this.root.isUpdating||this.root.startUpdate(),this.isLayoutDirty)return;this.isLayoutDirty=!0;for(let t=0;t{this.isLayoutDirty?this.root.didUpdate():this.root.checkUpdateFailed()})}updateSnapshot(){!this.snapshot&&this.instance&&(this.snapshot=this.measure())}updateLayout(){if(!this.instance||(this.updateScroll(),!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))return;if(this.resumeFrom&&!this.resumeFrom.instance)for(let t=0;t.999999999999&&(e.x=1),e.y<1.0000000000001&&e.y>.999999999999&&(e.y=1)}}(this.layoutCorrected,this.treeScale,this.path,i),e.layout&&!e.target&&(1!==this.treeScale.x||1!==this.treeScale.y)&&(e.target=e.layout.layoutBox,e.targetWithTransforms=rh());let{target:l}=e;if(!l){this.prevProjectionDelta&&(this.createProjectionDeltas(),this.scheduleRender());return}this.projectionDelta&&this.prevProjectionDelta?(r_(this.prevProjectionDelta.x,this.projectionDelta.x),r_(this.prevProjectionDelta.y,this.projectionDelta.y)):this.createProjectionDeltas(),n7(this.projectionDelta,this.layoutCorrected,l,this.latestValues),this.treeScale.x===o&&this.treeScale.y===a&&r8(this.projectionDelta.x,this.prevProjectionDelta.x)&&r8(this.projectionDelta.y,this.prevProjectionDelta.y)||(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners("projectionUpdate",l)),se&&st.recalculatedProjection++}hide(){this.isVisible=!1}show(){this.isVisible=!0}scheduleRender(t=!0){var e;if(null==(e=this.options.visualElement)||e.scheduleRender(),t){let t=this.getStack();t&&t.scheduleRender()}this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)}createProjectionDeltas(){this.prevProjectionDelta=rl(),this.projectionDelta=rl(),this.projectionDeltaWithTransform=rl()}setAnimationOrigin(t,e=!1){let i,n=this.snapshot,r=n?n.latestValues:{},s={...this.latestValues},o=rl();this.relativeParent&&this.relativeParent.options.layoutRoot||(this.relativeTarget=this.relativeTargetOrigin=void 0),this.attemptToResolveRelativeTarget=!e;let a=rh(),l=(n?n.source:void 0)!==(this.layout?this.layout.source:void 0),u=this.getStack(),h=!u||u.members.length<=1,c=!!(l&&!h&&!0===this.options.crossfade&&!this.path.some(sb));this.animationProgress=0,this.mixTargetDelta=e=>{let n=e/1e3;if(sw(o.x,t.x,n),sw(o.y,t.y,n),this.setTargetDelta(o),this.relativeTarget&&this.relativeTargetOrigin&&this.layout&&this.relativeParent&&this.relativeParent.layout){var u,d,p,m,f,g;ri(a,this.layout.layoutBox,this.relativeParent.layout.layoutBox),p=this.relativeTarget,m=this.relativeTargetOrigin,f=a,g=n,sP(p.x,m.x,f.x,g),sP(p.y,m.y,f.y,g),i&&(u=this.relativeTarget,d=i,r3(u.x,d.x)&&r3(u.y,d.y))&&(this.isProjectionDirty=!1),i||(i=rh()),rq(i,this.relativeTarget)}l&&(this.animationValues=s,function(t,e,i,n,r,s){r?(t.opacity=i_(0,void 0!==i.opacity?i.opacity:1,rY(n)),t.opacityExit=i_(void 0!==e.opacity?e.opacity:1,0,rX(n))):s&&(t.opacity=i_(void 0!==e.opacity?e.opacity:1,void 0!==i.opacity?i.opacity:1,n));for(let r=0;r{rV.hasAnimatedSinceResize=!0,this.currentAnimation=rF(0,1e3,{...t,onUpdate:e=>{this.mixTargetDelta(e),t.onUpdate&&t.onUpdate(e)},onComplete:()=>{t.onComplete&&t.onComplete(),this.completeAnimation()}}),this.resumingFrom&&(this.resumingFrom.currentAnimation=this.currentAnimation),this.pendingAnimation=void 0})}completeAnimation(){this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0);let t=this.getStack();t&&t.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners("animationComplete")}finishAnimation(){this.currentAnimation&&(this.mixTargetDelta&&this.mixTargetDelta(1e3),this.currentAnimation.stop()),this.completeAnimation()}applyTransformsToTarget(){let t=this.getLead(),{targetWithTransforms:e,target:i,layout:n,latestValues:r}=t;if(e&&i&&n){if(this!==t&&this.layout&&n&&sM(this.options.animationType,this.layout.layoutBox,n.layoutBox)){i=this.target||rh();let e=n6(this.layout.layoutBox.x);i.x.min=t.target.x.min,i.x.max=i.x.min+e;let n=n6(this.layout.layoutBox.y);i.y.min=t.target.y.min,i.y.max=i.y.min+n}rq(e,i),rb(e,r),n7(this.projectionDeltaWithTransform,this.layoutCorrected,e,r)}}registerSharedNode(t,e){this.sharedNodes.has(t)||this.sharedNodes.set(t,new r7),this.sharedNodes.get(t).add(e);let i=e.options.initialPromotionConfig;e.promote({transition:i?i.transition:void 0,preserveFollowOpacity:i&&i.shouldPreserveFollowOpacity?i.shouldPreserveFollowOpacity(e):void 0})}isLead(){let t=this.getStack();return!t||t.lead===this}getLead(){var t;let{layoutId:e}=this.options;return e&&(null==(t=this.getStack())?void 0:t.lead)||this}getPrevLead(){var t;let{layoutId:e}=this.options;return e?null==(t=this.getStack())?void 0:t.prevLead:void 0}getStack(){let{layoutId:t}=this.options;if(t)return this.root.sharedNodes.get(t)}promote({needsReset:t,transition:e,preserveFollowOpacity:i}={}){let n=this.getStack();n&&n.promote(this,i),t&&(this.projectionDelta=void 0,this.needsReset=!0),e&&this.setOptions({transition:e})}relegate(){let t=this.getStack();return!!t&&t.relegate(this)}resetSkewAndRotation(){let{visualElement:t}=this.options;if(!t)return;let e=!1,{latestValues:i}=t;if((i.z||i.rotate||i.rotateX||i.rotateY||i.rotateZ||i.skewX||i.skewY)&&(e=!0),!e)return;let n={};i.z&&ss("z",t,n,this.animationValues);for(let e=0;e{var e;return null==(e=t.currentAnimation)?void 0:e.stop()}),this.root.nodes.forEach(sd),this.root.sharedNodes.clear()}}}function sa(t){t.updateLayout()}function sl(t){var e;let i=(null==(e=t.resumeFrom)?void 0:e.snapshot)||t.snapshot;if(t.isLead()&&t.layout&&i&&t.hasListeners("didUpdate")){let{layoutBox:e,measuredBox:n}=t.layout,{animationType:r}=t.options,s=i.source!==t.layout.source;"size"===r?rc(t=>{let n=s?i.measuredBox[t]:i.layoutBox[t],r=n6(n);n.min=e[t].min,n.max=n.min+r}):sM(r,i.layoutBox,e)&&rc(n=>{let r=s?i.measuredBox[n]:i.layoutBox[n],o=n6(e[n]);r.max=r.min+o,t.relativeTarget&&!t.currentAnimation&&(t.isProjectionDirty=!0,t.relativeTarget[n].max=t.relativeTarget[n].min+o)});let o=rl();n7(o,e,i.layoutBox);let a=rl();s?n7(a,t.applyTransform(n,!0),i.measuredBox):n7(a,e,i.layoutBox);let l=!r2(o),u=!1;if(!t.resumeFrom){let n=t.getClosestProjectingParent();if(n&&!n.resumeFrom){let{snapshot:r,layout:s}=n;if(r&&s){let o=rh();ri(o,i.layoutBox,r.layoutBox);let a=rh();ri(a,e,s.layoutBox),r4(o,a)||(u=!0),n.options.layoutRoot&&(t.relativeTarget=a,t.relativeTargetOrigin=o,t.relativeParent=n)}}}t.notifyListeners("didUpdate",{layout:e,snapshot:i,delta:a,layoutDelta:o,hasLayoutChanged:l,hasRelativeTargetChanged:u})}else if(t.isLead()){let{onExitComplete:e}=t.options;e&&e()}t.options.transition=void 0}function su(t){se&&st.totalNodes++,t.parent&&(t.isProjecting()||(t.isProjectionDirty=t.parent.isProjectionDirty),t.isSharedProjectionDirty||(t.isSharedProjectionDirty=!!(t.isProjectionDirty||t.parent.isProjectionDirty||t.parent.isSharedProjectionDirty)),t.isTransformDirty||(t.isTransformDirty=t.parent.isTransformDirty))}function sh(t){t.isProjectionDirty=t.isSharedProjectionDirty=t.isTransformDirty=!1}function sc(t){t.clearSnapshot()}function sd(t){t.clearMeasurements()}function sp(t){t.isLayoutDirty=!1}function sm(t){let{visualElement:e}=t.options;e&&e.getProps().onBeforeLayoutMeasure&&e.notify("BeforeLayoutMeasure"),t.resetTransform()}function sf(t){t.finishAnimation(),t.targetDelta=t.relativeTarget=t.target=void 0,t.isProjectionDirty=!0}function sg(t){t.resolveTargetDelta()}function sv(t){t.calcProjection()}function sy(t){t.resetSkewAndRotation()}function sx(t){t.removeLeadSnapshot()}function sw(t,e,i){t.translate=i_(e.translate,0,i),t.scale=i_(e.scale,1,i),t.origin=e.origin,t.originPoint=e.originPoint}function sP(t,e,i,n){t.min=i_(e.min,i.min,n),t.max=i_(e.max,i.max,n)}function sb(t){return t.animationValues&&void 0!==t.animationValues.opacityExit}let sT={duration:.45,ease:[.4,0,.1,1]},sS=t=>"u">typeof navigator&&navigator.userAgent&&navigator.userAgent.toLowerCase().includes(t),sA=sS("applewebkit/")&&!sS("chrome/")?Math.round:C;function sE(t){t.min=sA(t.min),t.max=sA(t.max)}function sM(t,e,i){return"position"===t||"preserve-aspect"===t&&!(.2>=Math.abs(r6(e)-r6(i)))}function sC(t){var e;return t!==t.root&&(null==(e=t.scroll)?void 0:e.wasRoot)}let sV=so({attachResizeListener:(t,e)=>n_(t,"resize",e),measureScroll:()=>({x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}),checkIsScrollRoot:()=>!0}),sR={current:void 0},sk=so({measureScroll:t=>({x:t.scrollLeft,y:t.scrollTop}),defaultParent:()=>{if(!sR.current){let t=new sV({});t.mount(window),t.setOptions({layoutScroll:!0}),sR.current=t}return sR.current},resetTransform:(t,e)=>{t.style.transform=void 0!==e?e:"none"},checkIsScrollRoot:t=>"fixed"===window.getComputedStyle(t).position}),sD={pan:{Feature:class extends nG{constructor(){super(...arguments),this.removePointerDownListener=C}onPointerDown(t){this.session=new n5(t,this.createPanHandlers(),{transformPagePoint:this.node.getTransformPagePoint(),contextWindow:rS(this.node)})}createPanHandlers(){let{onPanSessionStart:t,onPanStart:e,onPan:i,onPanEnd:n}=this.node.getProps();return{onSessionStart:rC(t),onStart:rC(e),onMove:i,onEnd:(t,e)=>{delete this.session,n&&B.postRender(()=>n(t,e))}}}mount(){this.removePointerDownListener=nQ(this.node.current,"pointerdown",t=>this.onPointerDown(t))}update(){this.session&&this.session.updateHandlers(this.createPanHandlers())}unmount(){this.removePointerDownListener(),this.session&&this.session.end()}}},drag:{Feature:class extends nG{constructor(t){super(t),this.removeGroupControls=C,this.removeListeners=C,this.controls=new rE(t)}mount(){let{dragControls:t}=this.node.getProps();t&&(this.removeGroupControls=t.subscribe(this.controls)),this.removeListeners=this.controls.addListeners()||C}unmount(){this.removeGroupControls(),this.removeListeners()}},ProjectionNode:sk,MeasureLayout:rL}};function sL(t,e,i){let{props:n}=t;t.animationState&&n.whileHover&&t.animationState.setActive("whileHover","Start"===i);let r=n["onHover"+i];r&&B.postRender(()=>r(e,nZ(e)))}function sj(t,e,i){let{props:n}=t;t.animationState&&n.whileTap&&t.animationState.setActive("whileTap","Start"===i);let r=n["onTap"+("End"===i?"":i)];r&&B.postRender(()=>r(e,nZ(e)))}let sF=new WeakMap,sB=new WeakMap,sO=t=>{let e=sF.get(t.target);e&&e(t)},sI=t=>{t.forEach(sO)},sU={some:0,all:1},s$={inView:{Feature:class extends nG{constructor(){super(...arguments),this.hasEnteredView=!1,this.isInView=!1}startObserver(){var t;let e;this.unmount();let{viewport:i={}}=this.node.getProps(),{root:n,margin:r,amount:s="some",once:o}=i,a={root:n?n.current:void 0,rootMargin:r,threshold:"number"==typeof s?s:sU[s]},l=t=>{let{isIntersecting:e}=t;if(this.isInView===e||(this.isInView=e,o&&!e&&this.hasEnteredView))return;e&&(this.hasEnteredView=!0),this.node.animationState&&this.node.animationState.setActive("whileInView",e);let{onViewportEnter:i,onViewportLeave:n}=this.node.getProps(),r=e?i:n;r&&r(t)};return t=this.node.current,e=function({root:t,...e}){let i=t||document;sB.has(i)||sB.set(i,{});let n=sB.get(i),r=JSON.stringify(e);return n[r]||(n[r]=new IntersectionObserver(sI,{root:t,...e})),n[r]}(a),sF.set(t,l),e.observe(t),()=>{sF.delete(t),e.unobserve(t)}}mount(){this.startObserver()}update(){if("u"t[i]!==e[i]}(t,e))&&this.startObserver()}unmount(){}}},tap:{Feature:class extends nG{mount(){let{current:t}=this.node;t&&(this.unmount=function(t,e,i={}){let[n,r,s]=ek(t,i),o=t=>{let n=t.currentTarget;if(!(ej(t)&&!eV())||eB.has(n))return;eB.add(n);let s=e(t),o=(t,e)=>{window.removeEventListener("pointerup",a),window.removeEventListener("pointercancel",l),ej(t)&&!eV()&&eB.has(n)&&(eB.delete(n),"function"==typeof s&&s(t,{success:e}))},a=t=>{o(t,i.useGlobalTarget||eL(n,t.target))},l=t=>{o(t,!1)};window.addEventListener("pointerup",a,r),window.addEventListener("pointercancel",l,r)};return n.forEach(t=>{eF.has(t.tagName)||-1!==t.tabIndex||null!==t.getAttribute("tabindex")||(t.tabIndex=0),(i.useGlobalTarget?window:t).addEventListener("pointerdown",o,r),t.addEventListener("focus",t=>((t,e)=>{let i=t.currentTarget;if(!i)return;let n=eO(()=>{if(eB.has(i))return;eI(i,"down");let t=eO(()=>{eI(i,"up")});i.addEventListener("keyup",t,e),i.addEventListener("blur",()=>eI(i,"cancel"),e)});i.addEventListener("keydown",n,e),i.addEventListener("blur",()=>i.removeEventListener("keydown",n),e)})(t,r),r)}),s}(t,t=>(sj(this.node,t,"Start"),(t,{success:e})=>sj(this.node,t,e?"End":"Cancel")),{useGlobalTarget:this.node.props.globalTapTarget}))}unmount(){}}},focus:{Feature:class extends nG{constructor(){super(...arguments),this.isActive=!1}onFocus(){let t=!1;try{t=this.node.current.matches(":focus-visible")}catch(e){t=!0}t&&this.node.animationState&&(this.node.animationState.setActive("whileFocus",!0),this.isActive=!0)}onBlur(){this.isActive&&this.node.animationState&&(this.node.animationState.setActive("whileFocus",!1),this.isActive=!1)}mount(){this.unmount=i3(n_(this.node.current,"focus",()=>this.onFocus()),n_(this.node.current,"blur",()=>this.onBlur()))}unmount(){}}},hover:{Feature:class extends nG{mount(){let{current:t}=this.node;t&&(this.unmount=function(t,e,i={}){let[n,r,s]=ek(t,i),o=eD(t=>{let{target:i}=t,n=e(t);if("function"!=typeof n||!i)return;let s=eD(t=>{n(t),i.removeEventListener("pointerleave",s)});i.addEventListener("pointerleave",s,r)});return n.forEach(t=>{t.addEventListener("pointerenter",o,r)}),s}(t,t=>(sL(this.node,t,"Start"),t=>sL(this.node,t,"End"))))}unmount(){}}}},sW={layout:{ProjectionNode:sk,MeasureLayout:rL}},sN={current:null},sz={current:!1};function sH(){if(sz.current=!0,S)if(window.matchMedia){let t=window.matchMedia("(prefers-reduced-motion)"),e=()=>sN.current=t.matches;t.addListener(e),e()}else sN.current=!1}let sY=[...iz,ih,iw],sX=new WeakMap,sG=["AnimationStart","AnimationComplete","Update","BeforeLayoutMeasure","LayoutMeasure","LayoutAnimationStart","LayoutAnimationComplete"];class sK{scrapeMotionValuesFromProps(t,e,i){return{}}constructor({parent:t,props:e,presenceContext:i,reducedMotionConfig:n,blockInitialAnimation:r,visualState:s},o={}){this.current=null,this.children=new Set,this.isVariantNode=!1,this.isControllingVariants=!1,this.shouldReduceMotion=null,this.values=new Map,this.KeyframeResolver=i$,this.features={},this.valueSubscriptions=new Map,this.prevMotionValues={},this.events={},this.propEventSubscriptions={},this.notifyUpdate=()=>this.notify("Update",this.latestValues),this.render=()=>{this.current&&(this.triggerBuild(),this.renderInstance(this.current,this.renderState,this.props.style,this.projection))},this.renderScheduledAt=0,this.scheduleRender=()=>{let t=eW.now();this.renderScheduledAtthis.bindToMotionValue(e,t)),sz.current||sH(),this.shouldReduceMotion="never"!==this.reducedMotionConfig&&("always"===this.reducedMotionConfig||sN.current),this.parent&&this.parent.children.add(this),this.update(this.props,this.presenceContext)}unmount(){for(let t in sX.delete(this.current),this.projection&&this.projection.unmount(),O(this.notifyUpdate),O(this.render),this.valueSubscriptions.forEach(t=>t()),this.valueSubscriptions.clear(),this.removeFromVariantTree&&this.removeFromVariantTree(),this.parent&&this.parent.children.delete(this),this.events)this.events[t].clear();for(let t in this.features){let e=this.features[t];e&&(e.unmount(),e.isMounted=!1)}this.current=null}bindToMotionValue(t,e){let i;this.valueSubscriptions.has(t)&&this.valueSubscriptions.get(t)();let n=tV.has(t),r=e.on("change",e=>{this.latestValues[t]=e,this.props.onUpdate&&B.preRender(this.notifyUpdate),n&&this.projection&&(this.projection.isTransformDirty=!0)}),s=e.on("renderRequest",this.scheduleRender);window.MotionCheckAppearSync&&(i=window.MotionCheckAppearSync(this,t,e)),this.valueSubscriptions.set(t,()=>{r(),s(),i&&i(),e.owner&&e.stop()})}sortNodePosition(t){return this.current&&this.sortInstanceNodePosition&&this.type===t.type?this.sortInstanceNodePosition(this.current,t.current):0}updateFeatures(){let t="animation";for(t in Y){let e=Y[t];if(!e)continue;let{isEnabled:i,Feature:n}=e;if(!this.features[t]&&n&&i(this.props)&&(this.features[t]=new n(this)),this.features[t]){let e=this.features[t];e.isMounted?e.update():(e.mount(),e.isMounted=!0)}}}triggerBuild(){this.build(this.renderState,this.latestValues,this.props)}measureViewportBox(){return this.current?this.measureInstanceViewportBox(this.current,this.props):rh()}getStaticValue(t){return this.latestValues[t]}setStaticValue(t,e){this.latestValues[t]=e}update(t,e){(t.transformTemplate||this.props.transformTemplate)&&this.scheduleRender(),this.prevProps=this.props,this.props=t,this.prevPresenceContext=this.presenceContext,this.presenceContext=e;for(let e=0;ee.variantChildren.delete(t)}addValue(t,e){let i=this.values.get(t);e!==i&&(i&&this.removeValue(t),this.bindToMotionValue(t,e),this.values.set(t,e),this.latestValues[t]=e.get())}removeValue(t){this.values.delete(t);let e=this.valueSubscriptions.get(t);e&&(e(),this.valueSubscriptions.delete(t)),delete this.latestValues[t],this.removeValueFromRenderState(t,this.renderState)}hasValue(t){return this.values.has(t)}getValue(t,e){if(this.props.values&&this.props.values[t])return this.props.values[t];let i=this.values.get(t);return void 0===i&&void 0!==e&&(i=eK(null===e?void 0:e,{owner:this}),this.addValue(t,i)),i}readValue(t,e){var i;let n=void 0===this.latestValues[t]&&this.current?null!=(i=this.getBaseTargetFromProps(this.props,t))?i:this.readValueFromInstance(this.current,t,this.options):this.latestValues[t];if(null!=n){let i,r;if("string"==typeof n&&(i=n,/^-?(?:\d+(?:\.\d+)?|\.\d+)$/u.test(i)||(r=n,/^0[^.\s]+$/u.test(r))))n=parseFloat(n);else{let i;i=n,!sY.find(iN(i))&&iw.test(e)&&(n=iM(t,e))}this.setBaseTarget(t,tA(n)?n.get():n)}return tA(n)?n.get():n}setBaseTarget(t,e){this.baseTarget[t]=e}getBaseTarget(t){var e;let i,{initial:n}=this.props;if("string"==typeof n||"object"==typeof n){let r=tb(this.props,n,null==(e=this.presenceContext)?void 0:e.custom);r&&(i=r[t])}if(n&&void 0!==i)return i;let r=this.getBaseTargetFromProps(this.props,t);return void 0===r||tA(r)?void 0!==this.initialValues[t]&&void 0===i?void 0:this.baseTarget[t]:r}on(t,e){return this.events[t]||(this.events[t]=new eH),this.events[t].add(e)}notify(t,...e){this.events[t]&&this.events[t].notify(...e)}}class sq extends sK{constructor(){super(...arguments),this.KeyframeResolver=iY}sortInstanceNodePosition(t,e){return 2&t.compareDocumentPosition(e)?1:-1}getBaseTargetFromProps(t,e){return t.style?t.style[e]:void 0}removeValueFromRenderState(t,{vars:e,style:i}){delete e[t],delete i[t]}handleChildMotionValue(){this.childSubscription&&(this.childSubscription(),delete this.childSubscription);let{children:t}=this.props;tA(t)&&(this.childSubscription=t.on("change",t=>{this.current&&(this.current.textContent=`${t}`)}))}}class s_ extends sq{constructor(){super(...arguments),this.type="html",this.renderInstance=t6}readValueFromInstance(t,e){if(tV.has(e)){let t=iE(e);return t&&t.default||0}{let i=window.getComputedStyle(t),n=(tk(e)?i.getPropertyValue(e):i[e])||0;return"string"==typeof n?n.trim():n}}measureInstanceViewportBox(t,{transformPagePoint:e}){return rT(t,e)}build(t,e,i){tQ(t,e,i.transformTemplate)}scrapeMotionValuesFromProps(t,e,i){return en(t,e,i)}}class sZ extends sq{constructor(){super(...arguments),this.type="svg",this.isSVGTag=!1,this.measureInstanceViewportBox=rh}getBaseTargetFromProps(t,e){return t[e]}readValueFromInstance(t,e){if(tV.has(e)){let t=iE(e);return t&&t.default||0}return e=t8.has(e)?e:td(e),t.getAttribute(e)}scrapeMotionValuesFromProps(t,e,i){return er(t,e,i)}build(t,e,i){t2(t,e,this.isSVGTag,i.transformTemplate)}renderInstance(t,e,i,n){t7(t,e,i,n)}mount(t){this.isSVGTag=t4(t.tagName),super.mount(t)}}let sJ=(t,e)=>tw(t)?new sZ(e):new s_(e,{allowProjection:t!==c.Fragment}),sQ=te(eu({...nq,...s$,...sD,...sW},sJ)),s0={renderer:sJ,...nq,...s$},s1={...s0,...sD,...sW},s5={renderer:sJ,...nq};function s2(t,e,i){(0,c.useInsertionEffect)(()=>t.on(e,i),[t,e,i])}function s3(t,e){let i,n=()=>{let{currentTime:n}=e,r=(null===n?0:n.value)/100;i!==r&&t(r),i=r};return B.update(n,!0),()=>O(n)}let s9=new WeakMap;function s4({target:t,contentRect:e,borderBoxSize:i}){var n;null==(n=s9.get(t))||n.forEach(n=>{n({target:t,contentSize:e,get size(){return function(t,e){if(e){let{inlineSize:t,blockSize:i}=e[0];return{width:t,height:i}}return t instanceof SVGElement&&"getBBox"in t?t.getBBox():{width:t.offsetWidth,height:t.offsetHeight}}(t,i)}})})}function s6(t){t.forEach(s4)}let s8=new Set,s7=()=>({current:0,offset:[],progress:0,scrollLength:0,targetOffset:0,targetLength:0,containerLength:0,velocity:0}),ot={x:{length:"Width",position:"Left"},y:{length:"Height",position:"Top"}};function oe(t,e,i,n){let r=i[e],{length:s,position:o}=ot[e],a=r.current,l=i.time;r.current=t[`scroll${o}`],r.scrollLength=t[`scroll${s}`]-t[`client${s}`],r.offset.length=0,r.offset[0]=0,r.offset[1]=r.scrollLength,r.progress=k(0,r.scrollLength,r.current);let u=n-l;r.velocity=u>50?0:eY(r.current-a,u)}let oi={start:0,center:.5,end:1};function on(t,e,i=0){let n=0;if(t in oi&&(t=oi[t]),"string"==typeof t){let e=parseFloat(t);t.endsWith("px")?n=e:t.endsWith("%")?t=e/100:t.endsWith("vw")?n=e/100*document.documentElement.clientWidth:t.endsWith("vh")?n=e/100*document.documentElement.clientHeight:t=e}return"number"==typeof t&&(n=e*t),i+n}let or=[0,0],os=[[0,0],[1,1]],oo={x:0,y:0},oa=new WeakMap,ol=new WeakMap,ou=new WeakMap,oh=t=>t===document.documentElement?window:t;function oc(t,{container:e=document.documentElement,...i}={}){let n=ou.get(e);n||(n=new Set,ou.set(e,n));let o=function(t,e,i,n={}){return{measure:()=>(function(t,e=t,i){if(i.x.targetOffset=0,i.y.targetOffset=0,e!==t){let n=e;for(;n&&n!==t;)i.x.targetOffset+=n.offsetLeft,i.y.targetOffset+=n.offsetTop,n=n.offsetParent}i.x.targetLength=e===t?e.scrollWidth:e.clientWidth,i.y.targetLength=e===t?e.scrollHeight:e.clientHeight,i.x.containerLength=t.clientWidth,i.y.containerLength=t.clientHeight})(t,n.target,i),update:e=>{oe(t,"x",i,e),oe(t,"y",i,e),i.time=e,(n.offset||n.target)&&function(t,e,i){let{offset:n=os}=i,{target:r=t,axis:s="y"}=i,o="y"===s?"height":"width",a=r!==t?function(t,e){let i={x:0,y:0},n=t;for(;n&&n!==e;)if(n instanceof HTMLElement)i.x+=n.offsetLeft,i.y+=n.offsetTop,n=n.offsetParent;else if("svg"===n.tagName){let t=n.getBoundingClientRect(),e=(n=n.parentElement).getBoundingClientRect();i.x+=t.left-e.left,i.y+=t.top-e.top}else if(n instanceof SVGGraphicsElement){let{x:t,y:e}=n.getBBox();i.x+=t,i.y+=e;let r=null,s=n.parentNode;for(;!r;)"svg"===s.tagName&&(r=s),s=n.parentNode;n=r}else break;return i}(r,t):oo,l=r===t?{width:t.scrollWidth,height:t.scrollHeight}:"getBBox"in r&&"svg"!==r.tagName?r.getBBox():{width:r.clientWidth,height:r.clientHeight},u={width:t.clientWidth,height:t.clientHeight};e[s].offset.length=0;let h=!e[s].interpolate,c=n.length;for(let t=0;te(i)}}(e,t,{time:0,x:s7(),y:s7()},i);if(n.add(o),!oa.has(e)){let t,i=()=>{for(let t of n)t.measure()},o=()=>{for(let t of n)t.update(I.timestamp)},a=()=>{for(let t of n)t.notify()},l=()=>{B.read(i,!1,!0),B.read(o,!1,!0),B.update(a,!1,!0)};oa.set(e,l);let u=oh(e);window.addEventListener("resize",l,{passive:!0}),e!==document.documentElement&&ol.set(e,"function"==typeof e?(s8.add(e),s||(s=()=>{let t={width:window.innerWidth,height:window.innerHeight},e={target:window,size:t,contentSize:t};s8.forEach(t=>t(e))},window.addEventListener("resize",s)),()=>{s8.delete(e),!s8.size&&s&&(s=void 0)}):(!r&&"u">typeof ResizeObserver&&(r=new ResizeObserver(s6)),(t=eR(e)).forEach(t=>{let e=s9.get(t);e||(e=new Set,s9.set(t,e)),e.add(l),null==r||r.observe(t)}),()=>{t.forEach(t=>{let e=s9.get(t);null==e||e.delete(l),(null==e?void 0:e.size)||null==r||r.unobserve(t)})})),u.addEventListener("scroll",l,{passive:!0})}let a=oa.get(e);return B.read(a,!1,!0),()=>{var t;O(a);let i=ou.get(e);if(!i||(i.delete(o),i.size))return;let n=oa.get(e);oa.delete(e),n&&(oh(e).removeEventListener("scroll",n),null==(t=ol.get(e))||t(),window.removeEventListener("resize",n))}}let od=new Map;function op({source:t,container:e=document.documentElement,axis:i="y"}={}){t&&(e=t),od.has(e)||od.set(e,{});let n=od.get(e);return n[i]||(n[i]=ep()?new ScrollTimeline({source:e,axis:i}):function({source:t,container:e,axis:i="y"}){t&&(e=t);let n={value:0},r=oc(t=>{n.value=100*t[i].progress},{container:e,axis:i});return{currentTime:n,cancel:r}}({source:e,axis:i})),n[i]}function om(t){return t&&(t.target||t.offset)}function of(t,{axis:e="y",...i}={}){var n,r;let s={axis:e,...i};return"function"==typeof t?(n=t,r=s,2===n.length||om(r)?oc(t=>{n(t[r.axis].progress,t)},r):s3(n,op(r))):function(t,e){if(t.flatten(),om(e))return t.pause(),oc(i=>{t.time=t.duration*i[e.axis].progress},e);{let i=op(e);return t.attachTimeline?t.attachTimeline(i,t=>(t.pause(),s3(e=>{t.time=t.duration*e},i))):C}}(t,s)}function og(t,e){C(!!(!e||e.current),`You have defined a ${t} options but the provided ref is not yet hydrated, probably because it's defined higher up the tree. Try calling useScroll() in the same component as the ref, or setting its \`layoutEffect: false\` option.`)}let ov=()=>({scrollX:eK(0),scrollY:eK(0),scrollXProgress:eK(0),scrollYProgress:eK(0)});function oy({container:t,target:e,layoutEffect:i=!0,...n}={}){let r=p(ov);return(i?A:c.useEffect)(()=>(og("target",e),og("container",t),of((t,{x:e,y:i})=>{r.scrollX.set(e.current),r.scrollXProgress.set(e.progress),r.scrollY.set(i.current),r.scrollYProgress.set(i.progress)},{...n,container:(null==t?void 0:t.current)||void 0,target:(null==e?void 0:e.current)||void 0})),[t,e,JSON.stringify(n.offset)]),r}function ox(t){return oy({container:t})}function ow(){return oy()}function oP(t){let e=p(()=>eK(t)),{isStatic:i}=(0,c.useContext)(f);if(i){let[,i]=(0,c.useState)(t);(0,c.useEffect)(()=>e.on("change",i),[])}return e}function ob(t,e){let i=oP(e()),n=()=>i.set(e());return n(),A(()=>{let e=()=>B.preRender(n,!1,!0),i=t.map(t=>t.on("change",e));return()=>{i.forEach(t=>t()),O(n)}}),i}function oT(t,...e){let i=t.length;return ob(e.filter(tA),function(){let n="";for(let r=0;r{}),a=()=>{let t=n.current;t&&0===t.time&&t.sample(I.delta),l(),n.current=nC({keyframes:[r.get(),s.current],velocity:r.getVelocity(),type:"spring",restDelta:.001,restSpeed:.01,...e,onUpdate:o.current})},l=()=>{n.current&&n.current.stop()};return(0,c.useInsertionEffect)(()=>r.attach((t,e)=>i?e(t):(s.current=t,o.current=e,B.update(a),r.get()),l),[JSON.stringify(e)]),A(()=>{if(tA(t))return t.on("change",t=>r.set(oS(t)))},[r]),r}function oE(t){let e=(0,c.useRef)(0),{isStatic:i}=(0,c.useContext)(f);(0,c.useEffect)(()=>{if(i)return;let n=({timestamp:i,delta:n})=>{e.current||(e.current=i),t(i-e.current,n)};return B.update(n,!0),()=>O(n)},[t])}function oM(){let t=oP(0);return oE(e=>t.set(e)),t}function oC(...t){var e;let i,n=!Array.isArray(t[0]),r=n?0:-1,s=t[0+r],o=t[1+r],a=t[2+r],l=t[3+r],u=nw(o,a,{mixer:(i=e=a[0])&&"object"==typeof i&&i.mix?e.mix:void 0,...l});return n?u(s):u}function oV(t,e,i,n){if("function"==typeof t){let e;return eX.current=[],t(),e=ob(eX.current,t),eX.current=void 0,e}let r="function"==typeof e?e:oC(e,i,n);return Array.isArray(t)?oR(t,r):oR([t],([t])=>r(t))}function oR(t,e){let i=p(()=>[]);return ob(t,()=>{i.length=0;let n=t.length;for(let e=0;e{let n=t.getVelocity();e.set(n),n&&B.update(i)};return s2(t,"change",()=>{B.update(i,!1,!0)}),e}class oD extends eG{constructor(){super(...arguments),this.values=[]}add(t){let e=tV.has(t)?"transform":nV.has(t)?td(t):void 0;e&&(eN(this.values,e),this.update())}update(){this.set(this.values.length?this.values.join(", "):"auto")}}function oL(){return p(()=>new oD("auto"))}function oj(){sz.current||sH();let[t]=(0,c.useState)(sN.current);return t}function oF(){let t=oj(),{reducedMotion:e}=(0,c.useContext)(f);return"never"!==e&&("always"===e||t)}function oB(t,e){[...e].reverse().forEach(i=>{let n=t.getVariant(i);n&&eq(t,n),t.variantChildren&&t.variantChildren.forEach(t=>{oB(t,e)})})}function oO(){let t=!1,e=new Set,i={subscribe:t=>(e.add(t),()=>void e.delete(t)),start(i,n){V(t,"controls.start() should only be called after a component has mounted. Consider calling within a useEffect hook.");let r=[];return e.forEach(t=>{r.push(nW(t,i,{transitionOverride:n}))}),Promise.all(r)},set:i=>(V(t,"controls.set() should only be called after a component has mounted. Consider calling within a useEffect hook."),e.forEach(t=>{var e,n;e=t,Array.isArray(n=i)?oB(e,n):"string"==typeof n?oB(e,[n]):eq(e,n)})),stop(){e.forEach(t=>{t.values.forEach(t=>t.stop())})},mount:()=>(t=!0,()=>{t=!1,i.stop()})};return i}function oI(t){return(0,c.useEffect)(()=>()=>t(),[])}let oU=(t,e,i)=>{let n=e-t;return((i-t)%n+n)%n+t};function o$(t,e){return nv(t)?t[oU(0,t.length,e)]:t}function oW(t){return"object"==typeof t&&!Array.isArray(t)}function oN(t,e,i,n){return"string"==typeof t&&oW(e)?eR(t,i,n):t instanceof NodeList?Array.from(t):Array.isArray(t)?t:[t]}function oz(t,e,i,n){var r;return"number"==typeof e?e:e.startsWith("-")||e.startsWith("+")?Math.max(0,t+parseFloat(e)):"<"===e?i:null!=(r=n.get(e))?r:t}function oH(t,e){return t.at!==e.at?t.at-e.at:null===t.value?1:null===e.value?-1:0}function oY(t,e){return e.has(t)||e.set(t,{}),e.get(t)}function oX(t,e){return e[t]||(e[t]=[]),e[t]}let oG=t=>"number"==typeof t,oK=t=>t.every(oG);class oq extends sK{constructor(){super(...arguments),this.type="object"}readValueFromInstance(t,e){if(e in t){let i=t[e];if("string"==typeof i||"number"==typeof i)return i}}getBaseTargetFromProps(){}removeValueFromRenderState(t,e){delete e.output[t]}measureInstanceViewportBox(){return rh()}build(t,e){Object.assign(t.output,e)}renderInstance(t,{output:e}){Object.assign(t,e)}sortInstanceNodePosition(){return 0}}function o_(t){let e={presenceContext:null,props:{},visualState:{renderState:{transform:{},transformOrigin:{},style:{},vars:{},attrs:{}},latestValues:{}}},i=rB(t)?new sZ(e):new s_(e);i.mount(t),sX.set(t,i)}function oZ(t){let e=new oq({presenceContext:null,props:{},visualState:{renderState:{output:{}},latestValues:{}}});e.mount(t),sX.set(t,e)}function oJ(t,e,i,n){let r=[];if(tA(t)||"number"==typeof t||"string"==typeof t&&!oW(e))r.push(rF(t,oW(e)&&e.default||e,i&&i.default||i));else{let s=oN(t,e,n),o=s.length;V(!!o,"No valid elements provided.");for(let t=0;t{var l;let u=Array.isArray(l=t)?l:[l],{delay:h=0,times:p=nb(u),type:m="keyframes",repeat:f,repeatType:g,repeatDelay:v=0,...x}=i,{ease:w=e.ease||"easeOut",duration:P}=i,b="function"==typeof h?h(o,a):h,T=u.length,S=ex(m)?m:null==r?void 0:r[m];if(T<=2&&S){let t=100;2===T&&oK(u)&&(t=Math.abs(u[1]-u[0]));let e={...x};void 0!==P&&(e.duration=D(P));let i=ey(e,t,S);w=i.ease,P=i.duration}null!=P||(P=s);let A=c+b;1===p.length&&0===p[0]&&(p[1]=1);let E=p.length-u.length;if(E>0&&nP(p,E),1===u.length&&u.unshift(null),f){V(f<20,"Repeat count too high, must be less than 20"),P*=f+1;let t=[...u],e=[...p],i=[...w=Array.isArray(w)?[...w]:[w]];for(let n=0;nr&&i.at{for(let r in t){let s=t[r];s.sort(oH);let a=[],l=[],u=[];for(let t=0;t{n.push(...oJ(i,t,e))}),r=n}else r=oJ(e,i,n,t);let s=new ef(r);return t&&t.animations.push(s),s}}let o0=oQ();function o1(){let t=p(()=>({current:null,animations:[]})),e=p(()=>oQ(t));return oI(()=>{t.animations.forEach(t=>t.stop())}),[t,e]}function o5(t,e,i){t.style.setProperty(`--${e}`,i)}function o2(t,e,i){t.style[e]=i}let o3=R(()=>{try{document.createElement("div").animate({opacity:[1]})}catch(t){return!1}return!0}),o9=new WeakMap,o4="easeOut";function o6(t){let e=o9.get(t)||new Map;return o9.set(t,e),o9.get(t)}class o8 extends eP{constructor(t,e,i,n){const r=e.startsWith("--");V("string"!=typeof n.type,'animateMini doesn\'t support "type" as a string. Did you mean to import { spring } from "framer-motion"?');const s=o6(t).get(e);if(s&&s.stop(),Array.isArray(i)||(i=[i]),!function(t,e,i){for(let n=0;ne.startsWith("--")?t.style.getPropertyValue(e):window.getComputedStyle(t)[e]),ex(n.type)){const t=ey(n,100,n.type);n.ease=eS()?t.ease:o4,n.duration=D(t.duration),n.type="keyframes"}else n.ease=n.ease||o4;const o=()=>{this.setValue(t,e,iK(i,n)),this.cancel(),this.resolveFinishedPromise()},a=()=>{this.setValue=r?o5:o2,this.options=n,this.updateFinishedPromise(),this.removeAnimation=()=>{let i=o9.get(t);i&&i.delete(e)}};nk()?(super(nR(t,e,i,n)),a(),!1===n.autoplay&&this.animation.pause(),this.animation.onfinish=o,o6(t).set(e,this)):(super(),a(),o())}then(t,e){return this.currentFinishedPromise.then(t,e)}updateFinishedPromise(){this.currentFinishedPromise=new Promise(t=>{this.resolveFinishedPromise=t})}play(){"finished"===this.state&&this.updateFinishedPromise(),super.play()}cancel(){this.removeAnimation(),super.cancel()}}let o7=t=>function(e,i,n){return new ef(function(t,e,i,n){let r=eR(t,n),s=r.length;V(!!s,"No valid element provided.");let o=[];for(let t=0;t({current:null,animations:[]})),e=p(()=>o7(t));return oI(()=>{t.animations.forEach(t=>t.stop())}),[t,e]}function ai(){let t=p(oO);return A(t.mount,[]),t}let an=ai;function ar(t,e,i,n){(0,c.useEffect)(()=>{let r=t.current;if(i&&r)return n_(r,e,i,n)},[t,e,i,n])}class as{constructor(){this.componentControls=new Set}subscribe(t){return this.componentControls.add(t),()=>this.componentControls.delete(t)}start(t,e){this.componentControls.forEach(i=>{i.start(t.nativeEvent||t,e)})}}let ao=()=>new as;function aa(){return p(ao)}function al(t){return null!==t&&"object"==typeof t&&th in t}function au(t){if(al(t))return t[th]}function ah(){return ac}function ac(t){sR.current&&(sR.current.isUpdating=!1,sR.current.blockUpdate(),t&&t())}function ad(){return(0,c.useCallback)(()=>{let t=sR.current;t&&t.resetTree()},[])}function ap(...t){let e=(0,c.useRef)(0),[i,n]=(0,c.useState)(t[e.current]);return[i,(0,c.useCallback)(i=>{e.current="number"!=typeof i?oU(0,t.length,e.current+1):i,n(t[e.current])},[t.length,...t])]}let am={some:0,all:1};function af(t,e,{root:i,margin:n,amount:r="some"}={}){let s=eR(t),o=new WeakMap,a=new IntersectionObserver(t=>{t.forEach(t=>{let i=o.get(t.target);if(!!i!==t.isIntersecting)if(t.isIntersecting){let i=e(t);"function"==typeof i?o.set(t.target,i):a.unobserve(t.target)}else"function"==typeof i&&(i(t),o.delete(t.target))})},{root:i,rootMargin:n,threshold:"number"==typeof r?r:am[r]});return s.forEach(t=>a.observe(t)),()=>a.disconnect()}function ag(t,{root:e,margin:i,amount:n,once:r=!1}={}){let[s,o]=(0,c.useState)(!1);return(0,c.useEffect)(()=>{if(!t.current||r&&s)return;let a={root:e&&e.current||void 0,margin:i,amount:n};return af(t.current,()=>(o(!0),r?void 0:()=>o(!1)),a)},[e,t,i,r,n]),s}function av(){let[t,e]=$(),i=(0,c.useRef)(-1);return(0,c.useEffect)(()=>{B.postRender(()=>B.postRender(()=>{e===i.current&&(eJ.current=!1)}))},[e]),n=>{ac(()=>{eJ.current=!0,t(),n(),i.current=e+1})}}function ay(){eJ.current=!1}let ax=(t,e)=>{let i=tV.has(e)?"transform":e;return`${t}: ${i}`},aw=new Map,aP=new Map;function ab(t,e,i){var n;let r=ax(t,e),s=aw.get(r);if(!s)return null;let{animation:o,startTime:a}=s;function l(){var n;null==(n=window.MotionCancelOptimisedAnimation)||n.call(window,t,e,i)}return(o.onfinish=l,null===a||(null==(n=window.MotionHandoffIsComplete)?void 0:n.call(window,t)))?(l(),null):a}let aT=new Set;function aS(){aT.forEach(t=>{t.animation.play(),t.animation.startTime=t.startTime}),aT.clear()}function aA(t,e,i,n,r){if(window.MotionIsMounted)return;let s=t.dataset[tp];if(!s)return;window.MotionHandoffAnimation=ab;let l=ax(s,e);a||(a=nR(t,e,[i[0],i[0]],{duration:1e4,ease:"linear"}),aw.set(l,{animation:a,startTime:null}),window.MotionHandoffAnimation=ab,window.MotionHasOptimisedAnimation=(t,e)=>{if(!t)return!1;if(!e)return aP.has(t);let i=ax(t,e);return!!aw.get(i)},window.MotionHandoffMarkAsComplete=t=>{aP.has(t)&&aP.set(t,!0)},window.MotionHandoffIsComplete=t=>!0===aP.get(t),window.MotionCancelOptimisedAnimation=(t,e,i,n)=>{let r=ax(t,e),s=aw.get(r);s&&(i&&void 0===n?i.postRender(()=>{i.postRender(()=>{s.animation.cancel()})}):s.animation.cancel(),i&&n?(aT.add(s),i.render(aS)):(aw.delete(r),aw.size||(window.MotionCancelOptimisedAnimation=void 0)))},window.MotionCheckAppearSync=(t,e,i)=>{var n,r;let s=eZ(t);if(!s)return;let o=null==(n=window.MotionHasOptimisedAnimation)?void 0:n.call(window,s,e),a=null==(r=t.props.values)?void 0:r[e];if(!o||!a)return;let l=i.on("change",t=>{var i;a.get()!==t&&(null==(i=window.MotionCancelOptimisedAnimation)||i.call(window,s,e),l())});return l});let u=()=>{a.cancel();let s=nR(t,e,i,n);void 0===o&&(o=performance.now()),s.startTime=o,aw.set(l,{animation:s,startTime:o}),r&&r(s)};aP.set(s,!1),a.ready?a.ready.then(u).catch(C):u()}let aE=()=>({});class aM extends sK{constructor(){super(...arguments),this.measureInstanceViewportBox=rh}build(){}resetTransform(){}restoreTransform(){}removeValueFromRenderState(){}renderInstance(){}scrapeMotionValuesFromProps(){return aE()}getBaseTargetFromProps(){}readValueFromInstance(t,e,i){return i.initialState[e]||0}sortInstanceNodePosition(){return 0}}let aC=tM({scrapeMotionValuesFromProps:aE,createRenderState:aE});function aV(t){let[e,i]=(0,c.useState)(t),n=aC({},!1),r=p(()=>new aM({props:{onUpdate:t=>{i({...t})}},visualState:n,presenceContext:null},{initialState:t}));return(0,c.useLayoutEffect)(()=>(r.mount({}),()=>r.unmount()),[r]),[e,p(()=>t=>nW(r,t))]}let aR=0,ak=({children:t})=>(c.useEffect(()=>{V(!1,"AnimateSharedLayout is deprecated: https://www.framer.com/docs/guide-upgrade/##shared-layout-animations")},[]),(0,h.jsx)(N,{id:p(()=>`asl-${aR++}`),children:t})),aD=t=>t>.001?1/t:1e5,aL=!1;function aj(t){let e=oP(1),i=oP(1),{visualElement:n}=(0,c.useContext)(ti);return V(!!(t||n),"If no scale values are provided, useInvertedScale must be used within a child of another motion component."),C(aL,"useInvertedScale is deprecated and will be removed in 3.0. Use the layout prop instead."),aL=!0,t?(e=t.scaleX||e,i=t.scaleY||i):n&&(e=n.getValue("scaleX",1),i=n.getValue("scaleY",1)),{scaleX:oV(e,aD),scaleY:oV(i,aD)}}let aF=(0,c.createContext)(null),aB=(0,c.forwardRef)(function({children:t,as:e="ul",axis:i="y",onReorder:n,values:r,...s},o){let a=p(()=>sQ[e]),l=[],u=(0,c.useRef)(!1);return V(!!r,"Reorder.Group must be provided a values prop"),(0,c.useEffect)(()=>{u.current=!1}),(0,h.jsx)(a,{...s,ref:o,ignoreStrict:!0,children:(0,h.jsx)(aF.Provider,{value:{axis:i,registerItem:(t,e)=>{let n=l.findIndex(e=>t===e.value);-1!==n?l[n].layout=e[i]:l.push({value:t,layout:e[i]}),l.sort(aI)},updateOrder:(t,e,i)=>{if(u.current)return;let s=function(t,e,i,n){if(!n)return t;let r=t.findIndex(t=>t.value===e);if(-1===r)return t;let s=n>0?1:-1,o=t[r+s];if(!o)return t;let a=t[r],l=o.layout,u=i_(l.min,l.max,.5);return 1===s&&a.layout.max+i>u||-1===s&&a.layout.min+i=0&&n-1!==r.indexOf(t))))}},children:t})})});function aO(t){return t.value}function aI(t,e){return t.layout.min-e.layout.min}function aU(t,e=0){return tA(t)?t:oP(e)}let a$=(0,c.forwardRef)(function({children:t,style:e={},value:i,as:n="li",onDrag:r,layout:s=!0,...o},a){let l=p(()=>sQ[n]),u=(0,c.useContext)(aF),d={x:aU(e.x),y:aU(e.y)},m=oV([d.x,d.y],([t,e])=>t||e?1:"unset");V(!!u,"Reorder.Item must be a child of Reorder.Group");let{axis:f,registerItem:g,updateOrder:v}=u;return(0,h.jsx)(l,{drag:f,...o,dragSnapToOrigin:!0,style:{...e,x:d.x,y:d.y,zIndex:m},layout:s,onDrag:(t,e)=>{let{velocity:n}=e;n[f]&&v(i,d[f].get(),n[f]),r&&r(t,e)},onLayoutMeasure:t=>g(i,t),ref:a,ignoreStrict:!0,children:t})});function aW(t=.1,{startDelay:e=0,from:i=0,ease:n}={}){return(r,s)=>{let o=t*Math.abs(("number"==typeof i?i:function(t,e){if("first"===t)return 0;{let i=e-1;return"last"===t?i:i/2}}(i,s))-r);if(n){let e=s*t;o=nx(n)(o/e)*e}return e+o}}let aN=B,az=j.reduce((t,e)=>(t[e]=t=>O(t),t),{});function aH(t,e="end"){return i=>{let n=(i="end"===e?Math.min(i,.999):Math.max(i,.001))*t;return tB(0,1,("end"===e?Math.floor(n):Math.ceil(n))/t)}}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2463.da2cfb76.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js deleted file mode 100644 index 4fc1da3c62..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2464.8deaa84f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2464"],{60851(c,l,f){f.r(l),f.d(l,{default:()=>i});var s=f(74848);f(47867);let i=c=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...c,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"sa_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M-85.333 0h682.67v512h-682.67z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#sa_inline_svg__a)",transform:"translate(80)scale(.9375)",children:[(0,s.jsx)("path",{fill:"#199d00",d:"M-128 0h768v512h-768z"}),(0,s.jsx)("path",{fill:"#fff",d:"M65.54 145.13c-.887 11.961-1.95 33.011 8.213 35.17 12.293 1.182 5.514-20.806 9.964-24.793.841-1.97 2.392-1.98 2.52.505v18.65c-.112 6.066 3.875 7.852 6.972 9.105 3.224-.249 5.376-.141 6.639 2.995l1.512 32.261s7.476 2.14 7.832-18.146c.357-11.91-2.38-21.88-.775-24.198.056-2.277 2.964-2.413 4.98-1.303 3.214 2.266 4.645 5.065 9.639 3.946 7.598-2.094 12.166-5.79 12.278-11.624-.444-5.545-1.066-11.09-3.468-16.635.335-1.009-1.467-3.621-1.133-4.63 1.366 2.139 3.444 1.961 3.916 0-1.293-4.261-3.3-8.344-6.553-10.112-2.688-2.368-6.623-1.884-8.064 3.056-.667 5.692 2.052 12.455 6.197 17.968.88 2.154 2.117 5.733 1.573 8.956-2.205 1.259-4.411.734-6.259-1.217 0 0-6.048-4.536-6.048-5.544 1.605-10.276.356-11.441-.533-14.293-.622-3.937-2.49-5.199-4.003-7.888-1.513-1.604-3.56-1.604-4.538 0-2.674 4.635-1.427 14.583.504 19.04 1.396 4.098 3.528 6.67 2.52 6.67-.829 2.316-2.544 1.781-3.792-.892-1.782-5.525-2.139-13.769-2.139-17.48-.534-4.603-1.122-14.42-4.151-16.914-1.848-2.516-4.587-1.289-5.544 1.008-.199 4.568-.22 9.135.295 13.345 2.077 7.383 2.73 13.876 3.738 21.437.28 10.128-5.856 4.394-5.576-.627 1.415-6.522 1.048-16.788-.21-19.39-.996-2.602-2.173-3.244-4.597-2.816-1.925-.117-6.878 5.291-8.269 14.262 0 0-1.186 4.618-1.691 8.718-.68 4.633-3.73 7.903-5.87-.652-1.848-6.217-2.984-21.524-6.08-17.939z"}),(0,s.jsx)("path",{fill:"#fff",d:"M98.944 194.21c-10.848 5.303-21.339 10.25-32.01 15.375.39-7.256 15.219-20.354 25.331-20.538 6.582.184 4.928 2.55 6.679 5.164z"}),(0,s.jsx)("path",{fill:"#fff",d:"M93.352 204.24c-16.87 43.487 39.505 49.546 45.805 1.781.593-1.96 2.97-3.92 3.386-.713-1.307 43.248-43.606 46.22-50.794 32.614-1.781-3.207-2.317-10.336-2.495-14.614-1.07-8.494-5.524-5.227-6.237 3.208-.714 4.693-.535 6.002-.535 10.516 2.257 34.159 56.736 19.486 65.587-8.733 4.693-15.625-.773-27.149 1.781-27.09 5.407 5.822 12.95.772 14.614-1.248.714-1.01 2.497-1.662 3.744-.356 4.217 3.032 11.645 1.603 13.189-3.743.892-5.228 1.605-10.634 1.783-16.217-3.447 1.07-6 1.781-6.238 3.208l-.713 4.633c-.296 1.486-3.269 1.544-3.386-.357-1.307-5.941-6.713-6.713-9.981 2.496-2.199 1.782-6.178 2.139-6.595-.534.534-6.179-1.961-7.011-6.95-4.1-1.605-12.238-3.208-23.94-4.813-36.179 2.08-.06 3.982 1.484 5.884-.892-2.082-6.474-6.477-19.723-8.914-20.674-1.188-1.425-2.2-.534-3.742-.178-2.614.832-5.05 3.09-4.279 7.486 3.09 18.772 5.11 33.09 8.2 51.863.474 2.198-1.367 5.107-3.743 4.81-4.04-2.732-5.047-8.256-11.94-8.02-4.991.06-10.696 5.466-11.407 10.696-.832 4.156-1.13 8.67-.002 12.296 3.507 4.217 7.725 3.803 11.408 2.852 3.03-1.247 5.524-4.277 6.594-3.565.714.892.177 10.87-14.259 18.535-8.732 3.92-15.684 4.813-19.425-2.317-2.317-4.456.178-21.387-5.527-17.465z"}),(0,s.jsx)("path",{fill:"#fff",d:"M164.91 160.03c3.386-1.248 19.429-19.604 19.429-19.604-.833-.713-1.576-1.248-2.408-1.961-.892-.772-.802-1.544 0-2.317 3.98-2.316 2.703-7.396.624-9.712-3.446-1.546-6.446-1.04-8.645.088-2.792 2.674-3.444 6.95-1.245 9.624 2.14 1.01 4.277 3.179 2.85 4.367-6.563 7.01-24.535 19.1-22.455 19.515.444.594 11.495.564 11.85 0zM68.036 225c-6.016 9.584-6.54 23.903-3.22 28.172 1.764 2.017 4.662 2.9 6.806 2.269 3.78-1.64 5.434-9.298 4.537-12.1-1.262-1.974-2.255-2.287-3.515-.607-2.66 5.4-3.764 1.695-3.997-1.323-.408-5.723.131-10.994.752-15.168.662-4.278-.01-2.97-1.363-1.243zM325.12 209.65c-5.817-12.521-13.87-24.894-16.432-29.647-2.562-4.755-21.905-32.827-24.752-35.984-6.284-7.467 10.204 3.11-2.086-11.716-4.686-4.02-4.958-4.265-8.847-7.545-1.962-1.392-6.752-3.935-7.6.28-.427 3.717-.197 5.732.427 8.827.48 2.063 3.485 5.518 4.963 7.52 19.625 26.38 37.027 53.02 53.808 86.515 2.65-1.26 2.07-16.155.52-18.25z"}),(0,s.jsx)("path",{fill:"#fff",d:"M299.59 251.54c-1.144 1.284 2.824 6.776 7.98 6.77 8.624-1 16.215-5.844 23.244-18.595 1.88-2.974 5.184-9.334 5.28-14.267.658-28.925-1.447-51.433-5.781-72.34-.278-2.036-.109-4.43.236-5.04.559-.667 2.452.003 3.457-1.644 1.474-1.505-3.914-13.97-6.986-18.771-1.09-2.144-1.47-3.576-3.276.252-1.899 3.11-3.174 8.538-3.025 13.61 4.114 28.483 5.378 53.399 8.066 81.882.22 2.754-.186 6.757-2.017 8.353-6.772 7.072-16.548 15.777-27.178 19.79zM416.08 251.39c-6.189 3.577-6.196 7.692-1.192 7.841 8.623-1.001 18.813-1.717 25.84-12.329 1.881-2.974 4.115-11.015 4.212-15.948.657-28.925-.378-50.515-4.712-71.42-.277-2.037-1.178-6.724-.834-7.335.559-1.432 3.37.156 4.375-1.492 1.473-1.504-7.278-12.747-10.35-17.548-1.09-2.143-1.47-3.575-3.275.252-1.9 3.111-2.563 8.692-1.803 13.611 4.573 30.928 7.977 54.163 8.679 81.575-.394 2.602-.492 4.005-1.712 7.283-2.699 3.46-5.689 7.785-8.493 9.876-2.803 2.09-8.785 4.086-10.735 5.635z"}),(0,s.jsx)("path",{fill:"#fff",d:"M420.72 223.66c-.071-7.233.102-13.479-.136-18.873s-1.191-9.788-3.058-13.617c-1.767-4.106-.67-7.405-1.5-11.779-.829-4.372-.625-10.92-1.878-16.108-.343-2.026-1.396-8.515-1.07-9.137.51-1.448 2.456.045 3.406-1.633 1.423-1.552-4.937-18.008-8.163-22.707-1.16-2.107-3.267-1.385-5.864 2.04-2.41 2.255-1.516 7.396-.596 12.286 6.188 32.291 10.803 61.518 9.796 92.257-.309 2.614 9.127-7.795 9.063-12.729zM375 183.61c-3.892-.071-12.044-7.574-14.423-11.97-.899-2.521-.322-4.981.47-6.422 1.441-.937 3.659-1.99 5.316-.98 0 0 1.719 2.404 1.386 2.71 2.125 1.018 3.027.432 3.243-.432.145-1.514-.628-2.416-.637-4.083.901-4.52 6.068-5.223 8.014-2.34 1.424 1.757 1.946 5.492 2.162 8.013-.023 1.288-2.109-.223-3.293.087-1.186.31-1.471 1.678-1.563 2.915-.215 3.278-.603 8.538-.675 12.501zM303.17 231.68c1.072-9.828-.396-27.331-.494-33.13-.394-13.7-2.631-40.162-3.696-44.583-1.2-8.333 3.427.914 2.786-3.93-1.5-8.321-6.116-13.962-11.542-21.584-1.75-2.48-1.69-2.985-4.391.608-2.99 6.78-.41 11.445.363 16.726 3.913 17.206 6.196 33.037 7.259 48.687s1.39 32.572.419 49.055c2.932.115 7.647-4.744 9.296-11.85z"}),(0,s.jsx)("path",{fill:"#fff",d:"M433.97 215.94c-6.863-11.515-17.219-23.987-19.986-28.624s-26.166-34.83-29.148-37.86c-8.56-8.993 3.926-1.464-1.639-8.41-4.706-5.168-6.08-6.79-10.108-9.898-2.02-1.305-3.244-3.798-3.908.45-.264 3.732-.54 8.05-.289 11.195-.014 1.749 1.807 5.034 3.37 6.97 20.755 25.5 43.393 51.537 61.617 84.27 2.593-1.375 1.731-16.067.091-18.093z"}),(0,s.jsx)("path",{fill:"#1ba400",d:"M122.59 194.69c-.494.866-1.594 1.988-1.225 3.149.77 1.045 1.386 1.256 2.67 1.313 1.114 0 2.67.263 3.005-.394.6-.66 1.055-2.009.556-3.281-1.16-2.9-4.4-1.82-5.006-.787"}),(0,s.jsx)("path",{fill:"#fff",d:"M354.17 362.54c9.178.338 15.185.419 23.348 1.39 0 0 7.04-.695 9.553-1.075 10.626-1.014 11.096 15.176 11.096 15.176-.116 9.495-3.781 9.992-8.46 10.995-2.673.34-4.078-1.601-5.483-3.668-1.763.738-4.16.844-7.064.441-3.825-.24-7.65-.224-11.474-.463-4.063-.358-6.224.423-10.288.065-.837 1.315-1.925 3.136-4.41 2.55-2.068-.229-4.517-6.033-3.796-10.446 1.493-3.164 1.083-2.146.927-3.537-37.525-.956-75.41-2.629-112.22-2.15-28.8.119-57.244 1.314-85.687 2.51-15.177-.24-26.769-2.63-34.776-14.342.717 0 38.72 2.151 49.835 1.434 20.555-.24 39.317-1.912 60.231-2.51 41.23.717 82.103.718 123.33 3.585-3.944-2.698-4.085-9.071 1.985-10.629.516-.355.782 3.169 1.69 3.103 4.857-.364 2.727 6.214 1.659 7.57zM188.64 135.28c-6.248 17.859 3.58 37.394 10.394 35.492 4.916 2.035 8.047-7.317 10.059-17.563 1.377-2.875 2.417-3.182 3.124-1.704-.181 13.625.979 16.643 4.482 20.779 7.814 6.029 14.278.77 14.785.262l6.084-6.084c1.354-1.425 3.157-1.508 5.07-.253 1.859 1.69 1.598 4.608 5.577 6.632 3.35 1.34 10.51.31 12.17-2.576 2.232-3.826 2.768-5.14 3.802-6.591 1.593-2.121 4.31-1.178 4.31-.508-.254 1.183-1.848 2.367-.76 4.497 1.894 1.421 2.332.507 3.453.191 3.964-1.895 6.94-10.518 6.94-10.518.176-3.208-1.622-2.943-2.788-2.282-1.521.93-1.62 1.227-3.142 2.157-1.938.288-5.698 1.573-7.557-1.305-1.898-3.461-1.924-8.29-3.375-11.78 0-.254-2.518-5.498-.174-5.834 1.182.22 3.706.888 4.107-1.237 1.241-2.072-2.656-7.938-5.323-10.901-2.315-2.542-5.523-2.848-8.62-.253-2.168 1.995-1.856 4.224-2.282 6.337-.552 2.426-.434 5.411 2.029 8.62 2.164 4.267 6.113 9.763 4.816 17.491 0 0-2.306 3.653-6.325 3.175-1.676-.365-4.392-1.076-5.843-11.794-1.099-8.112.259-19.463-3.184-24.784-1.244-3.213-2.152-6.316-5.183-.82-.814 2.158-4.309 5.433-1.774 12.169 2.074 4.27 2.918 11.22 1.977 18.954-1.437 2.197-1.756 2.941-3.64 5.139-2.646 2.845-5.518 2.119-7.717 1.056-2.055-1.385-3.664-2.101-4.602-6.501.17-7.013.56-18.494-.722-20.929-1.89-3.772-5.006-2.408-6.338-1.268-6.397 5.849-9.557 15.718-11.489 23.577-1.774 5.727-3.662 4.086-4.99 1.775-3.23-3.028-3.45-26.71-7.351-22.816z"}),(0,s.jsx)("path",{fill:"#fff",d:"M207.45 174.1c2.837-2.01 1.511-3.414 5.754.828 5.312 9.082 8.727 20.845 9.239 31.266-.224 2.568 1.586 4.193 2.414 3.635.492-6.029 15.153-14.429 28.596-15.657 2.056-.447 1.056-4.387 1.391-6.396-.806-7.463 4.194-14.258 11.202-14.8 9.538 1.41 12.713 6.502 12.874 14.275-1.03 14.922-16.575 17.452-25.309 18.642-1.34.507-1.898 1.125 0 1.856l36.595.166 1.867 1.078c.224.873-.533.145-1.978 2.524s-3.575 7.865-3.685 11.528c-10.903 3.506-22.18 5.042-33.642 6.428-3.982 2.014-5.956 4.697-5.138 7.717 1.34 3.35 10.16 6.696 10.16 6.855 1.675 1.05 3.657 3.502-.474 8.525-17.85-.785-31.683-8.382-36.472-19.104-1.443-1.119-2.997-.006-3.993 1.443-6.969 8.984-13.826 17.074-25.708 21.369-7.086 1.77-14.339-1.087-17.765-5.727-2.293-2.641-2.206-5.557-3.048-6.189-3.83 1.694-36.785 15.697-32.608 9.174 8.02-8.585 21.906-14.89 34.169-23.363.885-2.839 2.494-12.442 7.337-15.57.28.023-.767 5.64-.662 8.008.055 1.944-.143 2.706.283 2.206.827-.528 15.707-12.22 16.857-15.805 1.45-2.056.435-7.263.435-7.421-2.79-7.192-6.705-7.803-8.156-11.376-1.306-4.747-.715-10.165 1.998-11.675 2.41-2.187 5.263-1.917 7.895.473 3.006 2.692 5.675 7.953 6.447 11.872-.516 1.55-3.933-1.03-5.118-.26 2.098 2.172 3.077 4.678 3.835 7.744 1.938 8.209 1.347 11.4-.604 16.708-6.606 13.89-15.049 18.035-22.436 23.181-.197.07-.328 3.525 2.45 5.393.958 1.006 4.811 1.522 9.342.07 8.755-4.774 17.843-13.569 22.355-23.367 1.31-7.411-.506-15.27-2.434-22.124-2.903-6.698-6.322-16.262-6.322-16.42-.113-4.177.227-5.626 2.059-7.71zM111.64 135.47c4.212 2.009 12.131 1.154 11.796-5.637 0-.601-.153-2.633-.213-3.184-.86-2.002-3.205-1.507-3.737.56-.167.677.298 1.78-.315 2.12-.352.355-1.698.146-1.642-1.73 0-.598-.44-1.24-.706-1.62-.266-.174-.435-.222-.917-.222-.588.023-.578.176-.9.67-.137.502-.325.993-.325 1.563-.074.668-.326.906-.817 1.005-.549 0-.425.06-.87-.223-.264-.29-.594-.4-.594-.893 0-.511-.116-1.338-.27-1.675-.233-.308-.608-.45-1.03-.559-2.3.008-2.46 2.632-2.327 3.628-.173.188-.27 4.895 2.867 6.197z"}),(0,s.jsx)("path",{fill:"#fff",d:"M235.11 187.73c4.212 2.009 14.238.853 11.796-5.637 0-.601-.153-2.633-.213-3.184-.86-2.002-3.205-1.507-3.737.56-.167.677.298 1.78-.315 2.12-.352.355-1.698.146-1.642-1.73 0-.598-.44-1.24-.706-1.62-.266-.174-.435-.222-.917-.222-.588.023-.578.176-.9.67-.137.502-.325.993-.325 1.563-.074.668-.326.906-.817 1.005-.549 0-.425.06-.87-.223-.264-.29-.594-.4-.594-.893 0-.511-.116-1.338-.27-1.675-.233-.308-.608-.45-1.03-.559-2.3.008-2.46 2.632-2.327 3.628-.173.188-.27 4.895 2.867 6.197zM307.11 166.1c4.212 2.009 12.131 1.154 11.796-5.637 0-.601-.153-2.633-.213-3.184-.86-2.002-3.205-1.507-3.737.56-.167.677.298 1.78-.315 2.12-.352.355-1.698.146-1.642-1.73 0-.598-.44-1.24-.706-1.62-.266-.174-.435-.222-.917-.222-.588.023-.578.176-.9.67-.137.502-.326.993-.326 1.563-.073.668-.325.906-.816 1.005-.549 0-.425.06-.87-.223-.264-.29-.595-.4-.595-.893 0-.511-.115-1.338-.269-1.675-.233-.308-.608-.45-1.03-.559-2.3.008-2.46 2.632-2.327 3.628-.173.188-.27 4.895 2.867 6.197zM344.4 220.43c-7.34 8.273-4.104 21.955-2.446 24.903 2.42 4.842 4.369 7.947 9.078 10.342 4.29 3.157 7.632 1.184 9.474-1.027 4.317-4.473 4.368-15.894 6.394-18.157 1.422-4.157 5-3.447 6.737-1.605 1.683 2.42 3.666 3.98 6.14 5.298 4.025 3.552 8.833 4.2 13.57.964 3.236-1.816 5.34-4.162 7.235-8.819 2.106-5.63.932-31.648.511-47.068-.162-1.21-4.184-21.205-4.184-21.428s-.532-10.205-.974-12.583c-.078-.965-.317-1.242.694-1.12 1.073.903 1.22.96 1.89 1.257 1.082.198 2.051-1.645 1.398-3.34l-10.048-18.533c-.807-.794-1.848-1.666-3.127.224-1.222 1.071-2.523 3.01-2.483 5.503.297 4.392 1.07 8.86 1.366 13.253l4.02 22.552c1.266 16.076 1.583 29.233 2.848 45.309-.177 6.807-2.293 12.742-4.278 13.598 0 0-3.02 1.75-5.045-.183-1.473-.591-7.368-9.825-7.368-9.825-3.014-2.763-5.001-1.973-7.146 0-5.914 5.711-8.59 16.394-12.609 23.763-1.036 1.645-3.965 3.052-7.21-.12-8.242-11.258-3.411-27.277-4.437-23.158zM309 126.67c3.774 1.58 6.435 9.223 5.567 12.955-.751 4.617-2.752 9.603-4.191 8.954-1.564-.58 1.066-4.59-.437-8.796-.835-2.738-5.984-7.741-5.442-9.216-1.063-3.09 2.189-4.442 4.503-3.897z"}),(0,s.jsx)("path",{fill:"#fff",d:"M356.55 224.96c.794-9.179-.546-14.776-.784-20.171s-6.102-46.559-7.291-50.641c-1.435-7.718 5.7-1.035 4.92-5.524-2.468-5.66-8.611-13.9-10.54-18.816-1.16-2.106-.673-3.98-3.271-.554-2.409 7.876-3.245 14.314-2.325 19.205 6.187 32.29 12.533 59.14 11.526 89.879 2.934.02 6.316-6.714 7.765-13.377zM421.02 139.68c3.44 1.71 5.455 11.289 5.075 14.026-.684 4.999-2.51 10.397-3.82 9.694-1.426-.628.285-7.413-.4-9.523-.76-2.964-5.454-8.38-4.96-9.977-.97-3.345 1.995-4.809 4.105-4.22zM165.35 207.6c3.29 1.256 5.22 8.295 4.856 10.307-.656 3.672-2.403 7.639-3.656 7.123-1.364-.462.274-5.448-.381-6.998-.278-3.76-4.845-5.707-4.75-7.331-.852-2.986 1.911-3.535 3.931-3.1z"}),(0,s.jsx)("path",{fill:"#1b9d00",d:"M244.86 218.17c4.247.27 6.37 3.602 2.391 5-3.924 1.343-7.695 2.393-7.713 8.064 1.452 7.902-1.99 5.19-4.044 4.117-2.419-1.737-9.208-5.92-10.176-14.95-.145-2.155 1.535-3.969 4.24-3.956 4.075 1.107 10.087 1.188 15.301 1.725z"}),(0,s.jsx)("path",{fill:"#fff",d:"M77.399 124.39c4.855 1.464 5.142 8.6 4.784 10.686-.647 3.808-2.367 7.92-3.602 7.384-1.344-.478-.053-5.647-.698-7.255-.72-2.258-4.822-6.384-4.357-7.6-.913-2.549 1.883-3.665 3.873-3.215zM173.28 158.03c-3.725 2.015-5.17 8.02-2.85 11.518 2.166 3.08 5.587 1.938 6.043 1.938 3.65.457 5.815-6.842 5.815-6.842s.115-2.052-4.219 1.826c-1.824.342-2.052-.343-2.508-1.37-.38-1.9-.304-3.8.57-5.701.646-1.824-.761-2.623-2.851-1.369zM201.22 121.63c-1.872 1.255-5.598 5.115-5.712 9.563-.113 2.509-.58 2.501 1.062 4.098 1.187 1.712 2.384 1.558 4.78.303 1.376-1.014 1.841-1.687 2.305-3.387.57-2.85-3.014 1.352-3.47-1.82-.798-2.946 1.504-4.152 3.67-7.002.072-1.953.03-3.336-2.635-1.755M223.73 125.63c-.807 1.783-1.774 11.093-1.613 11.093-.644 2.774 2.903 3.961 4.516.395 2.419-6.537 2.419-9.31 2.58-12.084-.753-4.224-3.601-4.092-5.483.596zM365.65 197.85c.484-.484 19.998-14.353 19.998-14.353 1.989-.699 1.558 7.15.645 7.096.376 1.558-19.245 14.89-20.644 14.353-.967.699-1.935-5.375 0-7.096zM383.44 197.73c3.44 1.71 4.81 11.773 4.43 14.51.122 5.322-3.315 9.59-4.627 8.888-1.426-.628.125-6.607-.56-8.717-.76-2.964-3.681-8.542-3.188-10.139-.969-3.345 1.835-5.131 3.945-4.542zM267.37 241.07c1.357-1.984 5.55-4.839 5.645-4.839 1.934-.968 3.824.759 3.71.645.321 1.936-1.225 3.737-.74 6.318.422 1.04.732 2.195 2.638 1.755 3.099-2.438 5.97-2.595 9.068-2.75 2.374.143 2.468 4.163.967 4.193-5.721 1.243-8.285 2.775-12.37 4.334-1.936 1.129-3.596-.303-3.596-.464s-1.132-1.098-.342-3.662c.14-2.056-.687-3.183-2.4-2.95-1.29.698-2.426 1.16-3.071-.323-.254-1.095-.337-1.628.491-2.257zM403.97 246.49c.836 1.064 1.377 2.049-.067 3.797-1.369 1.254-2.333 1.945-3.701 3.199-.646 1.102-1.06 2.774.917 3.307 3.65 1.026 12.088-4.448 12.088-4.562 1.369-1.026.913-2.965.798-2.965-.798-.912-2.596-.37-3.805-.518-.576 0-2.465-.286-1.566-1.958.75-1.04 1.019-1.677 1.528-2.959.57-1.254.08-2.09-1.973-2.775-2.09-.38-2.926-.19-5.245 0-1.254.266-1.682.827-1.91 2.347.09 2.306 1.492 2.175 2.936 3.087z"}),(0,s.jsx)("path",{fill:"#259f00",d:"M268.117 189.743c-.535.925-2.344.88-4.04-.1s-2.638-2.527-2.103-3.453 2.344-.88 4.04.102 2.638 2.526 2.103 3.451M179.045 136.149c-1.014.248-2.339-.656-2.96-2.019s-.301-2.669.712-2.917 2.339.655 2.96 2.018.302 2.67-.712 2.918"}),(0,s.jsx)("path",{fill:"#209000",d:"M355.24 374.97c9.351.456 18.137.106 27.488.563 1.694 1.44.484 4.975-.645 4.722-3.04-.077-4.792-.152-7.833-.229-.104-2.978-7.706-2.49-7.487.095-4.105.494-7.807-.143-11.912-.295-1.214-1.51-1.058-4.232.39-4.856z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2464.8deaa84f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js deleted file mode 100644 index cc00e06ff3..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2472.f40725db.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2472"],{83371(e,i,l){l.r(i),l.d(i,{default:()=>t});var s=l(74848);l(47867);let t=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#132c77",d:"M0 0h639.994v240.802H0z"}),(0,s.jsx)("path",{fill:"#c00011",d:"M0 240.802h639.994v239.215H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2472.f40725db.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js deleted file mode 100644 index 0cc03be98f..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2492.cc8cd85c.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2492"],{30071(e,l,d){d.r(l),d.d(l,{default:()=>i});var s=d(74848);d(47867);let i=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",children:[(0,s.jsx)("path",{fill:"#399408",d:"M2.426 0h637.557v480H2.426z"}),(0,s.jsx)("path",{fill:"#fff",d:"M.167 0C-.67.073 619.765 241.48 619.765 241.48L-.005 479.77.166 0z"}),(0,s.jsx)("path",{fill:"#ffde08",d:"M.28 20.186c3.462 0 559.053 217.89 555.893 220.03L1.867 463.266.287 20.186z"}),(0,s.jsx)("path",{d:"M1.863.783c1.848 0 290.94 240.92 290.94 240.92L1.863 476.983z"}),(0,s.jsx)("path",{fill:"#de2110",d:"M.28 33.902c1.658-14.986 260.9 208.4 260.9 208.4L.268 451.702V33.912z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2492.cc8cd85c.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js deleted file mode 100644 index 64953de89c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 25.36d6a68b.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["25"],{30784(l,t,s){s.r(t),s.d(t,{default:()=>r});var h=s(74848);s(47867);let r=l=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,h.jsx)("defs",{children:(0,h.jsx)("clipPath",{id:"sx_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,h.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,h.jsxs)("g",{clipPath:"url(#sx_inline_svg__a)",transform:"scale(.9375)",children:[(0,h.jsx)("path",{fill:"#ed2939",fillRule:"evenodd",d:"M0 0h768v256H341.33z"}),(0,h.jsx)("path",{fill:"#002395",fillRule:"evenodd",d:"M0 512h768V256H341.33z"}),(0,h.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m0 0 341.33 256L0 512z"}),(0,h.jsx)("path",{fill:"#ff0",d:"m172.318 193.168.104-3.963s-2.128-3.39.342-7.033c0 0-5.248-2.776-4.026-7.123 0 0-4.746-1.213-4.397-6.432 0 0-5.122-.355-5.652-4.716 0 0-5.123.844-7.377-3.405 0 0-4.996.977-6.406-2.526 0 0-4.857 1.683-7.74-2.435 0 0-5.128 2.073-7.278-1.813-2.121 3.872-7.25 1.813-7.25 1.813-2.848 4.103-7.74 2.4-7.74 2.4-1.36 3.517-6.343 2.519-6.343 2.519-2.247 4.25-7.363 3.405-7.363 3.405-.502 4.347-5.617 4.702-5.617 4.702.404 5.232-4.334 6.42-4.334 6.42 1.25 4.346-3.992 7.115-3.992 7.115 2.533 3.663.426 7.026.426 7.026l-.119 3.655 84.775.392"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"m377.17 843.11.091-3.458s-1.856-2.958.299-6.136c0 0-4.578-2.422-3.513-6.215 0 0-4.14-1.059-3.835-5.613 0 0-4.468-.31-4.93-4.114 0 0-4.469.736-6.435-2.971 0 0-4.358.852-5.588-2.204 0 0-4.237 1.468-6.751-2.125 0 0-4.474 1.808-6.35-1.582-1.85 3.379-6.324 1.582-6.324 1.582-2.484 3.58-6.75 2.094-6.75 2.094-1.188 3.068-5.534 2.198-5.534 2.198-1.96 3.708-6.422 2.97-6.422 2.97-.439 3.794-4.9 4.103-4.9 4.103.352 4.566-3.78 5.601-3.78 5.601 1.089 3.793-3.483 6.209-3.483 6.209 2.21 3.196.372 6.13.372 6.13l-.104 3.19 73.949.341z",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"red",d:"M170.346 188.217c-13.316-1.332-28.648-4.493-40.483 2.17-7.935-4.674-18.982-4.388-28.388-3.474-5.108.914-11.117.914-16.456 1.786l-.837.118c-9.686.643-18.472-2.218-26.889-5.979 2.673 15.168 5.639 30.712 7.097 46.592 3.176 23.518-11.13 43.263-5.262 66.495 3.504 11.148 15.765 17.63 26.987 18.914 10.865.641 22.108 2.421 32.164 4.604 1.912.398 4.18 1.285 5.5 1.856 2.77 1.158 4.8 2.861 6.58 4.682 6.071-6.322 14.969-8.08 23.748-9.008 15.82-1.849 35.325-.843 45.01-15.173v-.81c5.263-7.925 4.565-20.015 2.283-28.995-.154-3.133-.991-5.895-1.445-8.88-9.665-25.522-1.389-54.224 2.77-79.948-5.08 2.777-10.746 4.088-16.399 5.477-4.508.6-9.532.328-14.096.083l-1.89-.509"}),(0,h.jsx)("path",{fill:"#80cfe1",d:"M190.224 261.464c-.062 1.681.845 3 1.173 4.556 1.85 11.155 3.636 25.932-7.851 32.854-12.708 8.078-29.373 4.618-44.077 8.894-2.938.817-6.985 3.517-9.051 5.428-1.326-.872-2.659-2.211-4.369-3-12.1-6.432-27.83-4.277-41.487-7.751-6.86-2.17-14.012-7.513-15.75-14.533-4.466-18.417 6.232-34.116 4.969-52.387-.817-13.953-3.162-27.348-6.386-40.43 10.677 4.974 23.036 5.805 35.04 3.42 8.89-1.243 19.24-1.27 27.572 2.49 4.592-1.975 9.965-2.861 14.914-3.405 9.407.914 19.518 2.616 29.205 2.547 6.47-.336 12.346-2.206 17.97-4.696-3.336 21.62-9.742 44.268-1.877 66.014"}),(0,h.jsx)("path",{fill:"#fff",d:"m171.022 265.774-.104-20.33h2.505L142.34 225.37l-.056-10.43h3l-15.541-11.127-15.465 11.121h2.994l.056 10.423-30.915 20.045 2.47.013.105 20.317 82.026.056"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m376.04 906.46-.091-17.739h2.185l-27.113-17.513-.049-9.1h2.618l-13.557-9.71-13.49 9.704h2.612l.048 9.094-26.967 17.49 2.155.011.091 17.727 71.551.05z",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#fff",d:"m180.583 292.478.007 6.362-100.134-.112-.042-6.335 100.177.085"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m384.38 929.76.006 5.551-87.347-.097-.036-5.528 87.384.074z",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#fff",d:"m87.106 292.1-.084-21.53 4.054-.009-.223 21.782.244-21.607-5.84-.167v-4.62l89.492.1.042 4.576h-5.52l.104 21.802-.195-21.802h4.11l.091 21.557"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m302.84 929.43-.073-18.786 3.536-.007-.194 19.005.213-18.852-5.095-.146v-4.03l78.064.085.036 3.994h-4.815l.091 19.023-.17-19.023h3.585l.08 18.809",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m319.62 924.8-.055-13.1h-10.482l.061 13.087 10.476.013",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m311.94 914.43.03 7.61h4.797l-.024-7.61h-4.803M370.86 924.84l-.06-13.087-10.447-.012.049 13.099h10.458",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m363.18 914.48.055 7.585h4.79l-.042-7.585h-4.803M370.78 903.51l-.06-13.101H360.26l.037 13.101h10.488z",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m363.1 893.16.03 7.597h4.791l-.006-7.597H363.1M319.53 903.46l-.073-13.076-10.464-.013.049 13.082h10.488z",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m311.85 893.11.024 7.585 4.803.012-.036-7.597h-4.791M338.5 903.48l-.049-13.076-10.47-.012.043 13.087H338.5",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m330.83 893.13.024 7.585 4.797.024-.03-7.609h-4.791M353.12 903.51l-.073-13.101-10.464-.012.049 13.087 10.488.025",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m345.44 893.14.037 7.61h4.796l-.024-7.61h-4.809",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#fff",d:"m147.727 257.785.133 34.612-34.774-.056-.125-34.583 34.76.027"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m355.72 899.49.116 30.199-30.333-.049-.11-30.174 30.321.024zM325.21 908.11l30.54.024M329.02 929.68l-.103-21.342M352.14 929.69l-.103-21.329M366.79 886.63l-17.081-12.474-19.193-.024-16.947 12.449 53.222.048M331.99 863.8l.03 7.61 16.144.011-.03-7.609-16.144-.012",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"m336.37 865.69.024 3.792h7.415l-.025-3.792h-7.414M340.04 855.14l8.979 6.349-17.891-.024 8.912-6.325",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#fff",d:"M171.366 202.028c2.924-.07 3.678 12.042 3.685 18.042 2.512.704 8.08 4.207 10.544 7.374l-28.25-.042c2.43-3.125 7.956-6.642 10.448-7.346 0-6.007.614-18.111 3.573-18.042"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.242,d:"M376.34 850.84c2.55-.06 3.208 10.507 3.214 15.742 2.191.615 7.05 3.671 9.198 6.434l-24.642-.036c2.118-2.727 6.94-5.795 9.113-6.41 0-5.241.536-15.803 3.117-15.742M326.81 900.33h2.21l-.646 1.186s1.066 1.37.019 2.94l.578 1.09h-2.13l.578-1.035s-1.09-1.82.048-2.995l-.657-1.186M331.31 900.33h2.21l-.64 1.186s1.066 1.334.007 2.94l.572 1.09h-2.125l.572-1.035s-1.065-1.82.055-2.995l-.651-1.186M336.23 900.33h2.204l-.658 1.186s1.078 1.37.018 2.94l.579 1.115-2.113-.024.567-1.036s-1.078-1.807.042-2.995l-.645-1.186zM341.77 900.35h2.222l-.651 1.2s1.065 1.345.006 2.921l.596 1.108H341.8l.573-1.035s-1.066-1.832.073-2.995l-.67-1.199zM346.7 900.35h2.204l-.652 1.2s1.072 1.345.012 2.915l.585 1.114h-2.125l.554-1.035s-1.071-1.82.085-2.995l-.663-1.199M351.6 900.36l2.204-.012-.652 1.199s1.09 1.346.03 2.922l.555 1.108h-2.131l.572-1.035s-1.065-1.82.073-2.995l-.651-1.187",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#ff0",d:"M130.508 336.763c13.022.042 29.038-2.616 36.54-6.494l16.476-1.46.328 20.101c-13.958 7.695-46.184 9.348-53.275 9.292-7.097.056-39.721-1.625-53.742-9.348l.182-20.114 16.511 1.486c7.502 3.859 24.006 6.537 37.014 6.537z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"M340.7 968.4c11.359.037 25.329-2.283 31.873-5.667l14.372-1.273.286 17.538c-12.175 6.714-40.286 8.157-46.47 8.108-6.192.049-34.65-1.418-46.88-8.156l.158-17.55 14.403 1.296c6.544 3.367 20.94 5.704 32.287 5.704h-.03",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#ff0",d:"m34.417 251.023 14.516 4.62-4.39 23.498-13.74 2.134s-2.317-12.356 3.614-30.265"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"m256.88 893.59 12.662 4.03-3.829 20.503-11.986 1.862s-2.021-10.781 3.153-26.407z",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#7e7e7e",d:"m44.54 278.885-13.734 2.393 8.688-12.356z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"m265.71 917.9-11.98 2.088 7.579-10.781 4.401 8.693",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#ff0",d:"m25.739 267.951 13.992 1.011c.314 11.854 1.751 57.091 55.779 59.547l-1.682 16.458c-65.765.683-70.762-55.486-68.089-77.016"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"m249.31 908.36 12.205.882c.274 10.343 1.528 49.813 48.656 51.956l-1.467 14.36c-57.367.596-61.726-48.413-59.394-67.198zM294.11 978.5l14.384-3.141",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#ff0",d:"m225.453 251.195-14.46 4.577 4.586 23.463 13.768 2.211s2.212-12.348-3.894-30.264"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"m423.52 893.74-12.613 3.993 4 20.472 12.01 1.93s1.93-10.775-3.397-26.407z",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#7e7e7e",d:"m215.571 278.988 13.769 2.47-8.807-12.362z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"m414.9 917.99 12.01 2.155-7.682-10.786-4.328 8.631",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#ff0",d:"m234.292 268.135-14.012.956c-.203 11.84-1.236 57.097-55.264 59.497l1.836 16.444c65.751.76 70.274-55.382 67.44-76.905"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.289,d:"m431.23 908.52-12.223.835c-.177 10.33-1.077 49.818-48.206 51.912l1.601 14.348c57.355.662 61.3-48.322 58.828-67.101v.005zM387.04 978.57l-14.42-3.15",transform:"matrix(1.1464 0 0 1.1461 -260.07 -773.12)"}),(0,h.jsx)("path",{fill:"#009fc5",d:"M121.761 346.666c-.37.237-.872.3-1.451.272l-2.61-.133.223-3.257 2.59.138c.509.035.913.134 1.165.287.523.272.753.775.704 1.472-.034.6-.244.991-.628 1.22m-4.382 5.13.258-3.971 3.043.21c.984.076 1.716-.182 2.212-.685.516-.488.782-1.13.816-1.855.063-.845-.153-1.535-.656-2.045-.481-.488-1.165-.746-2.023-.83l-4.348-.271-.6 9.348 1.291.084M126.84 343.972l3.182.035c.46.042.824.098 1.089.223.488.23.719.691.719 1.36 0 .63-.182 1.048-.538 1.3-.342.229-.837.333-1.43.333l-3.057-.035.028-3.216m-.049 8.282.028-3.991 2.987.042c.53 0 .92.042 1.193.174.44.202.656.629.677 1.214l.077 1.57c.02.376.028.607.049.76.041.112.062.23.118.315h1.605l-.028-.203c-.181-.098-.328-.286-.39-.572-.056-.182-.084-.454-.098-.796l-.028-1.248c-.02-.566-.119-.956-.335-1.173a1.67 1.67 0 0 0-.844-.6c.446-.236.781-.508 1.026-.844q.347-.553.349-1.408c0-1.075-.44-1.808-1.333-2.205-.482-.216-1.096-.328-1.822-.342l-4.487-.042-.035 9.376h1.291M136.745 350.299c-.572-.697-.88-1.57-.95-2.602-.062-1.298.19-2.288.782-2.959.6-.725 1.375-1.073 2.387-1.13 1.019-.055 1.856.273 2.477.914.636.629.998 1.5 1.061 2.589.035 1.046-.146 1.974-.628 2.79-.474.83-1.263 1.298-2.428 1.326-1.215.063-2.122-.223-2.701-.928m-1.535-5.903c-.6.928-.845 2.003-.782 3.301.09 1.402.523 2.56 1.34 3.433.907.872 2.108 1.31 3.587 1.227 1.584-.07 2.777-.67 3.587-1.772.656-.997.97-2.156.9-3.586-.09-1.277-.46-2.317-1.151-3.091-.873-1.04-2.15-1.5-3.88-1.43-1.633.104-2.834.704-3.608 1.918M179.276 330.907c.9-.154 1.682-.111 2.394.132 1.047.328 1.752 1.103 2.191 2.289l-1.29.18c-.28-.64-.678-1.08-1.215-1.325-.523-.23-1.18-.286-1.933-.173a3 3 0 0 0-2.08 1.276c-.488.753-.635 1.758-.418 3.042.181 1.06.572 1.96 1.214 2.56.593.614 1.465.83 2.603.67.851-.14 1.535-.48 2.017-1.068.502-.557.649-1.402.481-2.49l-3.008.46-.153-1.032 4.187-.642.816 4.96-.83.126-.516-1.144c-.35.517-.698.914-1.005 1.144-.517.405-1.215.663-2.087.789-1.13.174-2.163-.029-3.098-.629-1.026-.76-1.69-1.89-1.94-3.46-.273-1.541-.028-2.86.684-3.9.676-1.004 1.66-1.59 2.986-1.78M188.746 330.185l3-1.089c.412-.153.768-.202 1.075-.166.551.04.956.369 1.186 1.024.217.559.217 1.047-.027 1.39-.259.355-.663.613-1.25.829l-2.819 1.012zm3 7.751-1.465-3.76 2.791-1.005c.524-.168.887-.259 1.159-.23.495.062.872.363 1.123.934l.635 1.431c.14.355.252.571.342.67.042.125.133.202.203.285l1.514-.557-.084-.203c-.223 0-.44-.125-.6-.37-.118-.174-.23-.425-.39-.718l-.496-1.173c-.223-.509-.454-.822-.719-1.011a2.4 2.4 0 0 0-.998-.272c.307-.356.53-.712.614-1.13.091-.426.05-.9-.153-1.43-.384-.998-1.089-1.542-2.08-1.612-.523-.042-1.123.07-1.814.313l-4.215 1.501 3.405 8.818 1.235-.454M202.72 333.29l-5.352-7.807 5.876-3.747.649.943-4.816 3.076 1.647 2.386 4.446-2.86.607.914-4.446 2.86 1.815 2.63 4.899-3.132.649.921-5.98 3.817M207.409 319.48l1.535-1.688c.712-.754 1.466-1.096 2.29-.998.823.07 1.66.502 2.553 1.284.245.188.46.432.684.704.391.51.621.957.768 1.403.125.559.098 1.068-.098 1.556-.118.244-.328.53-.642.872l-1.542 1.675-5.548-4.821m8.11 3.676c1.088-1.2 1.325-2.49.69-3.948a6.7 6.7 0 0 0-1.717-2.226c-.984-.873-2.01-1.319-3.091-1.402-1.2-.091-2.22.342-3.106 1.31l-2.617 2.805 7.216 6.294 2.617-2.819M221.108 315.87l-8.304-4.877.677-1.074 8.318 4.85-.684 1.115M224.364 310.208l-8.967-3.587 2.645-6.307 1.088.419-2.156 5.198 2.7 1.06 2.017-4.786 1.033.426-1.996 4.78 3.022 1.227 2.212-5.26 1.089.41-2.694 6.42M228.48 299.194l-9.435-2.086.314-1.458 8.716-2.944-7.655-1.689.279-1.144 9.435 2.03-.3 1.416-8.73 3.008 7.655 1.653-.272 1.214M227.735 287.217l.118-1.186c.545.015 1.005-.07 1.354-.257.684-.37 1.082-1.074 1.186-2.115.042-.487.021-.914-.09-1.318-.203-.781-.642-1.214-1.347-1.284-.523-.056-.9.07-1.173.356-.244.328-.502.802-.697 1.472l-.433 1.235c-.28.809-.537 1.367-.817 1.681-.446.587-1.074.79-1.877.733-.858-.09-1.556-.432-2.051-1.088-.51-.6-.72-1.458-.594-2.52.084-.968.405-1.785.977-2.44.53-.6 1.354-.887 2.408-.776l-.098 1.186c-.516 0-.928.091-1.228.3-.544.3-.844.935-.935 1.863-.077.768.028 1.284.32 1.675.294.328.664.537 1.096.572.461.041.824-.105 1.075-.46.182-.245.398-.775.691-1.633l.426-1.298c.21-.6.46-1.06.753-1.388.524-.544 1.208-.775 2.066-.711 1.047.11 1.794.544 2.177 1.34.377.802.524 1.688.433 2.692-.119 1.137-.488 2.03-1.172 2.63-.684.614-1.536.823-2.568.74M32.147 286.644l.217 1.172c-.524.104-.942.314-1.25.586-.55.516-.74 1.291-.55 2.345.083.446.244.885.446 1.235.419.711.963.997 1.654.885.51-.09.844-.285 1.005-.648.153-.357.265-.9.3-1.598l.063-1.32c.041-.815.132-1.456.314-1.813.286-.642.823-1.04 1.626-1.171.858-.155 1.612.04 2.26.53.657.453 1.09 1.241 1.25 2.287.202.957.112 1.815-.265 2.589-.363.754-1.061 1.214-2.129 1.409l-.21-1.185c.496-.182.866-.357 1.11-.6.42-.468.545-1.145.384-2.072-.125-.755-.384-1.243-.774-1.486-.384-.287-.768-.399-1.187-.328-.467.07-.774.328-.92.746-.091.279-.161.858-.224 1.744l-.063 1.367c-.035.642-.132 1.173-.349 1.536-.342.669-.921 1.08-1.765 1.213-1.068.181-1.892-.063-2.478-.747-.6-.67-.97-1.472-1.158-2.47-.21-1.185-.056-2.106.419-2.845.481-.76 1.242-1.2 2.275-1.347M31.551 299.01l9.226-2.776 2.15 6.495-1.124.355-1.759-5.337-2.805.845 1.626 4.932-1.075.342-1.612-4.946-3.126.934 1.786 5.456-1.102.315zM35.644 310.277l8.486-4.5.907 1.584-5.834 6.167 8.52-1.458.88 1.57-8.465 4.472-.6-1.04 4.996-2.63c.182-.105.461-.258.866-.474.397-.181.844-.426 1.29-.656l-8.485 1.444-.621-1.102 5.792-6.147-.28.14c-.18.104-.495.258-.92.502a7 7 0 0 1-.935.502l-4.983 2.672-.614-1.06M51.453 322.77c-.426-.098-.845-.342-1.256-.768l-1.794-1.849 2.415-2.212 1.807 1.843c.35.342.572.676.691.963.168.55 0 1.053-.51 1.527-.46.426-.92.6-1.353.495m-6.818.858 2.959-2.714 2.1 2.128c.677.691 1.368 1.005 2.094.992a2.95 2.95 0 0 0 1.933-.845c.628-.558.928-1.214.928-1.918-.007-.684-.321-1.326-.9-1.926l-3.015-3.077-7.02 6.446.907.914M53.104 331.159l5.087-7.975 6.015 3.656-.628.95-4.94-2.958-1.529 2.414L61.652 330l-.586.914-4.55-2.741-1.73 2.699 5.003 3.008-.6.941zM68.156 329.623l3.056.97c.433.132.747.3.956.489.391.37.496.9.266 1.541-.189.558-.475.921-.921 1.075-.398.07-.9.07-1.487-.112l-2.882-.92zm-2.638 7.835 1.27-3.802 2.847.928c.51.133.88.314 1.061.502.349.314.454.781.28 1.36l-.427 1.514c-.097.37-.146.614-.188.726 0 .119 0 .245.021.328l1.5.488.091-.216c-.16-.126-.251-.355-.244-.641.035-.176.084-.454.181-.776l.363-1.214c.147-.53.203-.927.07-1.213-.112-.3-.3-.573-.614-.83.474-.084.886-.23 1.235-.49.328-.285.607-.683.775-1.24.342-1.013.153-1.857-.6-2.499-.377-.334-.915-.62-1.62-.886l-4.27-1.318-2.987 8.895 1.249.384"}),(0,h.jsx)("path",{fill:"#bc715f",d:"M78.485 175.576c1.102-2.66 11.32-9.908 44.844-6.733 0 0 5.666 3.46 8.995 3.014 1.898-.245-1.117.118-3.594-1.94-2.526-2.058-3.064-6.278 2.708-6.167 5.743.147 27.244 1.36 27.649 3.292.376 1.954-11.369 2.77-15.737 2.659-4.39-.118-3.88 2.1.488 1.933 13.65-.489 28.55-5.296 44.286 5.832 1.877 1.353-4.746 1.57-9.868-.607 0 0-13.88.719-19.882-.265 0 0-4.613 3.753-10.621 3.384.781 1.946-2.22 9.21-21.11 3.746-3.12.956-14.487 2.86-13.245-.516-2.994 0-8.242.963-9.024-.74-.753-1.674 9.24-4.207 10.992-6.02 0 0-21.139.202-25.144-1.257 0 0-12.47 2.798-11.738.37"}),(0,h.jsx)("path",{fill:"#008737",d:"M85.26 205.168c.454-.613.635-1.716 1.598-1.688 2.094.558 3.517 4.388 6.092 1.904.915-.202 1.263 1.04 2.017 1.187.482 2.128 2.191-.433 3.468-.287 2.73-1.214 6.107-1.5 9.338-.9.097 2.086-1.536 4.389-3.587 5.575.042 2.1 1.947 3.447 1.912 5.56-.328.79-.056 2.03-1.25 2.288-1.514-.272-3.007-.432-4.263-1.276-.154-.154-.28-.454-.6-.356-.154.704.949 1.403 1.381 2.12-.76 1.298-2.023.112-3.084.126-.314.747-.014 1.689-.782 2.17-1.34-.042-1.612-1.5-2.435-2.225-.845.913.593 1.458.795 2.183-.516 2.749-.446 5.435-3.196 7.235l-1.842.915c-.503-1.382-.189-3.475-.524-4.92-1.088 1.773-1.94 3.322-3.538 4.821-1.87-.614-2.959-2.818-3.37-4.646-.782-2.128-.335-4.675 1.347-6.216-.573-1.117-2.534-.858-2.813-2.448-2.938-1.913-4.564 3.348-6.462.613-.614-2.553.119-5.728 1.968-7.633-.412-1.046-1.78-.773-2.59-1.373-1.848-1.571-4.514-3.23-4.382-6.064 5.06-1.91 11.11-.509 14.788 3.335"}),(0,h.jsx)("path",{fill:"#ff0",d:"M87.885 204.882c-.118 2.315 1.564.627 2.813 2.029-.977-.384-1.69 1.688-2.645.502l-.6.573c.349.795 1.026.9.32 1.772-1.046.397-1.255-.914-1.744-1.43-.084-.23.16-.663-.223-.817-.593.502-1.214.684-2.031.6-.223-.446-.656-1.032-.216-1.374.802-1.082 2.044.39 2.652-.37.097-.67-.489-1.485.272-1.947.523.091 1.193-.194 1.41.462M94.145 206.784c.062.447-.23 1.074.356 1.39.76-.413 1.57-.1 2.01.655-.007.404.118.934-.412 1.13l-1.187-.223c.084-.231-.293-.377-.44-.6-.523-.16-.83.264-1.22.522.293.447.97.691.809 1.264-.698.697-1.04-.6-1.807-.273-.524-.202.188-1.29-.635-1.618-.977 0-.328 1.604-1.578.977-.446-.503-.886-1.18-.404-1.744.523-.35 1.41-.26 1.856.194.76-.843.837-4.101 2.659-1.674M86.35 210.142c.509.733-.113 1.73.536 2.547 1.02-1.904 2.003.411 3.218.23.37.453.125 1.082.195 1.598-1.5.397-3.308.872-4.634-.328l-.37.425c.789.733 1.536 1.563.908 2.79-1.124.245-2.862.273-3.427-.885-.293-.955.684-1.646-.349-2.414-.746.928-.712 2.17-2.268 1.325-.963-.53-1.249-1.624-.767-2.546 1.004-1.584 2.763.05 3.852-.726.153-1.36-.35-2.546.9-3.299 1.068-.189 1.563.613 2.212 1.283"}),(0,h.jsx)("path",{fill:"#fff",d:"M90.602 210.979c-.502 2.316-2.247-.119-3.063-.217 1.088-1.931 1.772.63 3.063.217M96.036 213.5c-1.214.341-1.026-1.173-1.626-1.766l.468-.425c.44.53.774 1.487 1.158 2.191"}),(0,h.jsx)("path",{fill:"#ff0",d:"M94.397 213.03c.349.803-.789 1.445.181 2.03.307-.257.684-.613.845-.76.83.245 1.793.391 2.372 1.214.622 1.703-1.102 1.66-2.08 2.135l-.97-.042c.231-.474-.418-.677-.578-1.004-.447-.112-.817.027-1.068.404.216 1.082 1.535 1.926.174 2.888-1.151-.076-2.938.37-2.833-1.22-.433-.9 1.172-2.289-.544-2.344-.566 1.214-1.187 2.385-2.66 1.235l.182-1.73c1.41.04 3.078.285 3.713-1.291.405-1.144-.705-2.198.286-3.105 1.438-.328 2.247.635 2.98 1.59"}),(0,h.jsx)("path",{d:"M93.365 215.632c.363.859-.614.915-1.075 1.34-.62.049-1.053-.196-1.43-.614-.28-1.04.495-1.145 1.088-1.556.691-.286.977.516 1.417.83"}),(0,h.jsx)("path",{fill:"#fff",d:"M92.517 216.194c-.154.202-.37.14-.6.195l-.217-1.039c.46.041 1.061.188.817.844"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/25.36d6a68b.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js deleted file mode 100644 index 2f94907ea8..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2503.1efd0e77.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2503"],{24458(e,l,i){i.r(l),i.d(l,{default:()=>h});var s=i(74848);i(47867);let h=e=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,s.jsx)("path",{fill:"#0db02b",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v320H0z"}),(0,s.jsx)("path",{fill:"#e05206",d:"M0 0h640v160H0z"}),(0,s.jsx)("circle",{cx:320,cy:240,r:68,fill:"#e05206"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2503.1efd0e77.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js deleted file mode 100644 index d74042f0c9..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 254.7abe0c11.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["254"],{56269(){var t,e,i;t=window,e=document,L.drawVersion="1.0.4",L.Draw={},L.drawLocal={draw:{toolbar:{actions:{title:"Cancel drawing",text:"Cancel"},finish:{title:"Finish drawing",text:"Finish"},undo:{title:"Delete last point drawn",text:"Delete last point"},buttons:{polyline:"Draw a polyline",polygon:"Draw a polygon",rectangle:"Draw a rectangle",circle:"Draw a circle",marker:"Draw a marker",circlemarker:"Draw a circlemarker"}},handlers:{circle:{tooltip:{start:"Click and drag to draw circle."},radius:"Radius"},circlemarker:{tooltip:{start:"Click map to place circle marker."}},marker:{tooltip:{start:"Click map to place marker."}},polygon:{tooltip:{start:"Click to start drawing shape.",cont:"Click to continue drawing shape.",end:"Click first point to close this shape."}},polyline:{error:"Error: shape edges cannot cross!",tooltip:{start:"Click to start drawing line.",cont:"Click to continue drawing line.",end:"Click last point to finish line."}},rectangle:{tooltip:{start:"Click and drag to draw rectangle."}},simpleshape:{tooltip:{end:"Release mouse to finish drawing."}}}},edit:{toolbar:{actions:{save:{title:"Save changes",text:"Save"},cancel:{title:"Cancel editing, discards all changes",text:"Cancel"},clearAll:{title:"Clear all layers",text:"Clear All"}},buttons:{edit:"Edit layers",editDisabled:"No layers to edit",remove:"Delete layers",removeDisabled:"No layers to delete"}},handlers:{edit:{tooltip:{text:"Drag handles or markers to edit features.",subtext:"Click cancel to undo changes."}},remove:{tooltip:{text:"Click on a feature to remove."}}}}},L.Draw.Event={},L.Draw.Event.CREATED="draw:created",L.Draw.Event.EDITED="draw:edited",L.Draw.Event.DELETED="draw:deleted",L.Draw.Event.DRAWSTART="draw:drawstart",L.Draw.Event.DRAWSTOP="draw:drawstop",L.Draw.Event.DRAWVERTEX="draw:drawvertex",L.Draw.Event.EDITSTART="draw:editstart",L.Draw.Event.EDITMOVE="draw:editmove",L.Draw.Event.EDITRESIZE="draw:editresize",L.Draw.Event.EDITVERTEX="draw:editvertex",L.Draw.Event.EDITSTOP="draw:editstop",L.Draw.Event.DELETESTART="draw:deletestart",L.Draw.Event.DELETESTOP="draw:deletestop",L.Draw.Event.TOOLBAROPENED="draw:toolbaropened",L.Draw.Event.TOOLBARCLOSED="draw:toolbarclosed",L.Draw.Event.MARKERCONTEXT="draw:markercontext",L.Draw=L.Draw||{},L.Draw.Feature=L.Handler.extend({initialize:function(t,e){this._map=t,this._container=t._container,this._overlayPane=t._panes.overlayPane,this._popupPane=t._panes.popupPane,e&&e.shapeOptions&&(e.shapeOptions=L.Util.extend({},this.options.shapeOptions,e.shapeOptions)),L.setOptions(this,e);var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.Draw.Feature.include(L.Evented.prototype):L.Draw.Feature.include(L.Mixin.Events)},enable:function(){this._enabled||(L.Handler.prototype.enable.call(this),this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DRAWSTART,{layerType:this.type}))},disable:function(){this._enabled&&(L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DRAWSTOP,{layerType:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(L.DomUtil.disableTextSelection(),t.getContainer().focus(),this._tooltip=new L.Draw.Tooltip(this._map),L.DomEvent.on(this._container,"keyup",this._cancelDrawing,this))},removeHooks:function(){this._map&&(L.DomUtil.enableTextSelection(),this._tooltip.dispose(),this._tooltip=null,L.DomEvent.off(this._container,"keyup",this._cancelDrawing,this))},setOptions:function(t){L.setOptions(this,t)},_fireCreatedEvent:function(t){this._map.fire(L.Draw.Event.CREATED,{layer:t,layerType:this.type})},_cancelDrawing:function(t){27===t.keyCode&&(this._map.fire("draw:canceled",{layerType:this.type}),this.disable())}}),L.Draw.Polyline=L.Draw.Feature.extend({statics:{TYPE:"polyline"},Poly:L.Polyline,options:{allowIntersection:!0,repeatMode:!1,drawError:{color:"#b00b00",timeout:2500},icon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon"}),touchIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-touch-icon"}),guidelineDistance:20,maxGuideLineLength:4e3,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!1,clickable:!0},metric:!0,feet:!0,nautic:!1,showLength:!0,zIndexOffset:2e3,factor:1,maxPoints:0},initialize:function(t,e){L.Browser.touch&&(this.options.icon=this.options.touchIcon),this.options.drawError.message=L.drawLocal.draw.handlers.polyline.error,e&&e.drawError&&(e.drawError=L.Util.extend({},this.options.drawError,e.drawError)),this.type=L.Draw.Polyline.TYPE,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._markers=[],this._markerGroup=new L.LayerGroup,this._map.addLayer(this._markerGroup),this._poly=new L.Polyline([],this.options.shapeOptions),this._tooltip.updateContent(this._getTooltipText()),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("mouseout",this._onMouseOut,this).on("mousemove",this._onMouseMove,this).on("mousedown",this._onMouseDown,this).on("mouseup",this._onMouseUp,this).addTo(this._map),this._map.on("mouseup",this._onMouseUp,this).on("mousemove",this._onMouseMove,this).on("zoomlevelschange",this._onZoomEnd,this).on("touchstart",this._onTouch,this).on("zoomend",this._onZoomEnd,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._clearHideErrorTimeout(),this._cleanUpShape(),this._map.removeLayer(this._markerGroup),delete this._markerGroup,delete this._markers,this._map.removeLayer(this._poly),delete this._poly,this._mouseMarker.off("mousedown",this._onMouseDown,this).off("mouseout",this._onMouseOut,this).off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._clearGuides(),this._map.off("mouseup",this._onMouseUp,this).off("mousemove",this._onMouseMove,this).off("zoomlevelschange",this._onZoomEnd,this).off("zoomend",this._onZoomEnd,this).off("touchstart",this._onTouch,this).off("click",this._onTouch,this)},deleteLastVertex:function(){if(!(this._markers.length<=1)){var t=this._markers.pop(),e=this._poly,i=e.getLatLngs(),o=i.splice(-1,1)[0];this._poly.setLatLngs(i),this._markerGroup.removeLayer(t),e.getLatLngs().length<2&&this._map.removeLayer(e),this._vertexChanged(o,!1)}},addVertex:function(t){this._markers.length>=2&&!this.options.allowIntersection&&this._poly.newLatLngIntersects(t)?this._showErrorTooltip():(this._errorShown&&this._hideErrorTooltip(),this._markers.push(this._createMarker(t)),this._poly.addLatLng(t),2===this._poly.getLatLngs().length&&this._map.addLayer(this._poly),this._vertexChanged(t,!0))},completeShape:function(){this._markers.length<=1||!this._shapeIsValid()||(this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable())},_finishShape:function(){var t=this._poly._defaultShape?this._poly._defaultShape():this._poly.getLatLngs(),e=this._poly.newLatLngIntersects(t[t.length-1]);(this.options.allowIntersection||!e)&&this._shapeIsValid()?(this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()):this._showErrorTooltip()},_shapeIsValid:function(){return!0},_onZoomEnd:function(){null!==this._markers&&this._updateGuide()},_onMouseMove:function(t){var e=this._map.mouseEventToLayerPoint(t.originalEvent),i=this._map.layerPointToLatLng(e);this._currentLatLng=i,this._updateTooltip(i),this._updateGuide(e),this._mouseMarker.setLatLng(i),L.DomEvent.preventDefault(t.originalEvent)},_vertexChanged:function(t,e){this._map.fire(L.Draw.Event.DRAWVERTEX,{layers:this._markerGroup}),this._updateFinishHandler(),this._updateRunningMeasure(t,e),this._clearGuides(),this._updateTooltip()},_onMouseDown:function(t){if(!this._clickHandled&&!this._touchHandled&&!this._disableMarkers){this._onMouseMove(t),this._clickHandled=!0,this._disableNewMarkers();var e=t.originalEvent,i=e.clientX,o=e.clientY;this._startPoint.call(this,i,o)}},_startPoint:function(t,e){this._mouseDownOrigin=L.point(t,e)},_onMouseUp:function(t){var e=t.originalEvent,i=e.clientX,o=e.clientY;this._endPoint.call(this,i,o,t),this._clickHandled=null},_endPoint:function(e,i,o){if(this._mouseDownOrigin){var a=L.point(e,i).distanceTo(this._mouseDownOrigin),n=this._calculateFinishDistance(o.latlng);this.options.maxPoints>1&&this.options.maxPoints==this._markers.length+1?(this.addVertex(o.latlng),this._finishShape()):n<10&&L.Browser.touch?this._finishShape():Math.abs(a)<9*(t.devicePixelRatio||1)&&this.addVertex(o.latlng),this._enableNewMarkers()}this._mouseDownOrigin=null},_onTouch:function(t){var e,i,o=t.originalEvent;!o.touches||!o.touches[0]||this._clickHandled||this._touchHandled||this._disableMarkers||(e=o.touches[0].clientX,i=o.touches[0].clientY,this._disableNewMarkers(),this._touchHandled=!0,this._startPoint.call(this,e,i),this._endPoint.call(this,e,i,t),this._touchHandled=null),this._clickHandled=null},_onMouseOut:function(){this._tooltip&&this._tooltip._onMouseOut.call(this._tooltip)},_calculateFinishDistance:function(t){var e;if(this._markers.length>0){if(this.type===L.Draw.Polyline.TYPE)i=this._markers[this._markers.length-1];else{if(this.type!==L.Draw.Polygon.TYPE)return 1/0;i=this._markers[0]}var i,o=this._map.latLngToContainerPoint(i.getLatLng()),a=new L.Marker(t,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset}),n=this._map.latLngToContainerPoint(a.getLatLng());e=o.distanceTo(n)}else e=1/0;return e},_updateFinishHandler:function(){var t=this._markers.length;t>1&&this._markers[t-1].on("click",this._finishShape,this),t>2&&this._markers[t-2].off("click",this._finishShape,this)},_createMarker:function(t){var e=new L.Marker(t,{icon:this.options.icon,zIndexOffset:2*this.options.zIndexOffset});return this._markerGroup.addLayer(e),e},_updateGuide:function(t){var e=this._markers?this._markers.length:0;e>0&&(t=t||this._map.latLngToLayerPoint(this._currentLatLng),this._clearGuides(),this._drawGuide(this._map.latLngToLayerPoint(this._markers[e-1].getLatLng()),t))},_updateTooltip:function(t){var e=this._getTooltipText();t&&this._tooltip.updatePosition(t),this._errorShown||this._tooltip.updateContent(e)},_drawGuide:function(t,e){var i,o,a,n=Math.floor(Math.sqrt(Math.pow(e.x-t.x,2)+Math.pow(e.y-t.y,2))),s=this.options.guidelineDistance,r=this.options.maxGuideLineLength,l=n>r?n-r:s;for(this._guidesContainer||(this._guidesContainer=L.DomUtil.create("div","leaflet-draw-guides",this._overlayPane));l1&&this._markers[this._markers.length-1].off("click",this._finishShape,this)},_fireCreatedEvent:function(){var t=new this.Poly(this._poly.getLatLngs(),this.options.shapeOptions);L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)}}),L.Draw.Polygon=L.Draw.Polyline.extend({statics:{TYPE:"polygon"},Poly:L.Polygon,options:{showArea:!1,showLength:!1,shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},metric:!0,feet:!0,nautic:!1,precision:{}},initialize:function(t,e){L.Draw.Polyline.prototype.initialize.call(this,t,e),this.type=L.Draw.Polygon.TYPE},_updateFinishHandler:function(){var t=this._markers.length;1===t&&this._markers[0].on("click",this._finishShape,this),t>2&&(this._markers[t-1].on("dblclick",this._finishShape,this),t>3&&this._markers[t-2].off("dblclick",this._finishShape,this))},_getTooltipText:function(){var t,e;return 0===this._markers.length?t=L.drawLocal.draw.handlers.polygon.tooltip.start:(t=this._markers.length<3?L.drawLocal.draw.handlers.polygon.tooltip.cont:L.drawLocal.draw.handlers.polygon.tooltip.end,e=this._getMeasurementString()),{text:t,subtext:e}},_getMeasurementString:function(){var t=this._area,e="";return t||this.options.showLength?(this.options.showLength&&(e=L.Draw.Polyline.prototype._getMeasurementString.call(this)),t&&(e+="
    "+L.GeometryUtil.readableArea(t,this.options.metric,this.options.precision)),e):null},_shapeIsValid:function(){return this._markers.length>=3},_vertexChanged:function(t,e){var i;!this.options.allowIntersection&&this.options.showArea&&(i=this._poly.getLatLngs(),this._area=L.GeometryUtil.geodesicArea(i)),L.Draw.Polyline.prototype._vertexChanged.call(this,t,e)},_cleanUpShape:function(){var t=this._markers.length;t>0&&(this._markers[0].off("click",this._finishShape,this),t>2&&this._markers[t-1].off("dblclick",this._finishShape,this))}}),L.SimpleShape={},L.Draw.SimpleShape=L.Draw.Feature.extend({options:{repeatMode:!1},initialize:function(t,e){this._endLabelText=L.drawLocal.draw.handlers.simpleshape.tooltip.end,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._mapDraggable=this._map.dragging.enabled(),this._mapDraggable&&this._map.dragging.disable(),this._container.style.cursor="crosshair",this._tooltip.updateContent({text:this._initialLabelText}),this._map.on("mousedown",this._onMouseDown,this).on("mousemove",this._onMouseMove,this).on("touchstart",this._onMouseDown,this).on("touchmove",this._onMouseMove,this),e.addEventListener("touchstart",L.DomEvent.preventDefault,{passive:!1}))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._mapDraggable&&this._map.dragging.enable(),this._container.style.cursor="",this._map.off("mousedown",this._onMouseDown,this).off("mousemove",this._onMouseMove,this).off("touchstart",this._onMouseDown,this).off("touchmove",this._onMouseMove,this),L.DomEvent.off(e,"mouseup",this._onMouseUp,this),L.DomEvent.off(e,"touchend",this._onMouseUp,this),e.removeEventListener("touchstart",L.DomEvent.preventDefault),this._shape&&(this._map.removeLayer(this._shape),delete this._shape)),this._isDrawing=!1},_getTooltipText:function(){return{text:this._endLabelText}},_onMouseDown:function(t){this._isDrawing=!0,this._startLatLng=t.latlng,L.DomEvent.on(e,"mouseup",this._onMouseUp,this).on(e,"touchend",this._onMouseUp,this).preventDefault(t.originalEvent)},_onMouseMove:function(t){var e=t.latlng;this._tooltip.updatePosition(e),this._isDrawing&&(this._tooltip.updateContent(this._getTooltipText()),this._drawShape(e))},_onMouseUp:function(){this._shape&&this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()}}),L.Draw.Rectangle=L.Draw.SimpleShape.extend({statics:{TYPE:"rectangle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},showArea:!0,metric:!0},initialize:function(t,e){this.type=L.Draw.Rectangle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.rectangle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,t,e)},disable:function(){this._enabled&&(this._isCurrentlyTwoClickDrawing=!1,L.Draw.SimpleShape.prototype.disable.call(this))},_onMouseUp:function(t){this._shape||this._isCurrentlyTwoClickDrawing?this._isCurrentlyTwoClickDrawing&&!function(t,e){for(;(t=t.parentElement)&&!t.classList.contains(e););return t}(t.target,"leaflet-pane")||L.Draw.SimpleShape.prototype._onMouseUp.call(this):this._isCurrentlyTwoClickDrawing=!0},_drawShape:function(t){this._shape?this._shape.setBounds(new L.LatLngBounds(this._startLatLng,t)):(this._shape=new L.Rectangle(new L.LatLngBounds(this._startLatLng,t),this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var t=new L.Rectangle(this._shape.getBounds(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,t)},_getTooltipText:function(){var t,e,i,o=L.Draw.SimpleShape.prototype._getTooltipText.call(this),a=this._shape,n=this.options.showArea;return a&&(t=this._shape._defaultShape?this._shape._defaultShape():this._shape.getLatLngs(),e=L.GeometryUtil.geodesicArea(t),i=n?L.GeometryUtil.readableArea(e,this.options.metric):""),{text:o.text,subtext:i}}}),L.Draw.Marker=L.Draw.Feature.extend({statics:{TYPE:"marker"},options:{icon:new L.Icon.Default,repeatMode:!1,zIndexOffset:2e3},initialize:function(t,e){this.type=L.Draw.Marker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.marker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,t,e)},addHooks:function(){L.Draw.Feature.prototype.addHooks.call(this),this._map&&(this._tooltip.updateContent({text:this._initialLabelText}),this._mouseMarker||(this._mouseMarker=L.marker(this._map.getCenter(),{icon:L.divIcon({className:"leaflet-mouse-marker",iconAnchor:[20,20],iconSize:[40,40]}),opacity:0,zIndexOffset:this.options.zIndexOffset})),this._mouseMarker.on("click",this._onClick,this).addTo(this._map),this._map.on("mousemove",this._onMouseMove,this),this._map.on("click",this._onTouch,this))},removeHooks:function(){L.Draw.Feature.prototype.removeHooks.call(this),this._map&&(this._map.off("click",this._onClick,this).off("click",this._onTouch,this),this._marker&&(this._marker.off("click",this._onClick,this),this._map.removeLayer(this._marker),delete this._marker),this._mouseMarker.off("click",this._onClick,this),this._map.removeLayer(this._mouseMarker),delete this._mouseMarker,this._map.off("mousemove",this._onMouseMove,this))},_onMouseMove:function(t){var e=t.latlng;this._tooltip.updatePosition(e),this._mouseMarker.setLatLng(e),this._marker?(e=this._mouseMarker.getLatLng(),this._marker.setLatLng(e)):(this._marker=this._createMarker(e),this._marker.on("click",this._onClick,this),this._map.on("click",this._onClick,this).addLayer(this._marker))},_createMarker:function(t){return new L.Marker(t,{icon:this.options.icon,zIndexOffset:this.options.zIndexOffset})},_onClick:function(){this._fireCreatedEvent(),this.disable(),this.options.repeatMode&&this.enable()},_onTouch:function(t){this._onMouseMove(t),this._onClick()},_fireCreatedEvent:function(){var t=new L.Marker.Touch(this._marker.getLatLng(),{icon:this.options.icon});L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)}}),L.Draw.CircleMarker=L.Draw.Marker.extend({statics:{TYPE:"circlemarker"},options:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0,zIndexOffset:2e3},initialize:function(t,e){this.type=L.Draw.CircleMarker.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circlemarker.tooltip.start,L.Draw.Feature.prototype.initialize.call(this,t,e)},_fireCreatedEvent:function(){var t=new L.CircleMarker(this._marker.getLatLng(),this.options);L.Draw.Feature.prototype._fireCreatedEvent.call(this,t)},_createMarker:function(t){return new L.CircleMarker(t,this.options)}}),L.Draw.Circle=L.Draw.SimpleShape.extend({statics:{TYPE:"circle"},options:{shapeOptions:{stroke:!0,color:"#3388ff",weight:4,opacity:.5,fill:!0,fillColor:null,fillOpacity:.2,clickable:!0},showRadius:!0,metric:!0,feet:!0,nautic:!1},initialize:function(t,e){this.type=L.Draw.Circle.TYPE,this._initialLabelText=L.drawLocal.draw.handlers.circle.tooltip.start,L.Draw.SimpleShape.prototype.initialize.call(this,t,e)},_drawShape:function(t){if(L.GeometryUtil.isVersion07x())var e=this._startLatLng.distanceTo(t);else var e=this._map.distance(this._startLatLng,t);this._shape?this._shape.setRadius(e):(this._shape=new L.Circle(this._startLatLng,e,this.options.shapeOptions),this._map.addLayer(this._shape))},_fireCreatedEvent:function(){var t=new L.Circle(this._startLatLng,this._shape.getRadius(),this.options.shapeOptions);L.Draw.SimpleShape.prototype._fireCreatedEvent.call(this,t)},_onMouseMove:function(t){var e,i=t.latlng,o=this.options.showRadius,a=this.options.metric;if(this._tooltip.updatePosition(i),this._isDrawing){this._drawShape(i),e=this._shape.getRadius().toFixed(1);var n="";o&&(n=L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(e,a,this.options.feet,this.options.nautic)),this._tooltip.updateContent({text:this._endLabelText,subtext:n})}}}),L.Edit=L.Edit||{},L.Edit.Marker=L.Handler.extend({initialize:function(t,e){this._marker=t,L.setOptions(this,e)},addHooks:function(){var t=this._marker;t.dragging.enable(),t.on("dragend",this._onDragEnd,t),this._toggleMarkerHighlight()},removeHooks:function(){var t=this._marker;t.dragging.disable(),t.off("dragend",this._onDragEnd,t),this._toggleMarkerHighlight()},_onDragEnd:function(t){var e=t.target;e.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:e})},_toggleMarkerHighlight:function(){var t=this._marker._icon;t&&(t.style.display="none",L.DomUtil.hasClass(t,"leaflet-edit-marker-selected")?(L.DomUtil.removeClass(t,"leaflet-edit-marker-selected"),this._offsetMarker(t,-4)):(L.DomUtil.addClass(t,"leaflet-edit-marker-selected"),this._offsetMarker(t,4)),t.style.display="")},_offsetMarker:function(t,e){var i=parseInt(t.style.marginTop,10)-e,o=parseInt(t.style.marginLeft,10)-e;t.style.marginTop=i+"px",t.style.marginLeft=o+"px"}}),L.Marker.addInitHook(function(){L.Edit.Marker&&(this.editing=new L.Edit.Marker(this),this.options.editable&&this.editing.enable())}),L.Edit=L.Edit||{},L.Edit.Poly=L.Handler.extend({initialize:function(t){this.latlngs=[t._latlngs],t._holes&&(this.latlngs=this.latlngs.concat(t._holes)),this._poly=t,this._poly.on("revert-edited",this._updateLatLngs,this)},_defaultShape:function(){return L.Polyline._flat?L.Polyline._flat(this._poly._latlngs)?this._poly._latlngs:this._poly._latlngs[0]:this._poly._latlngs},_eachVertexHandler:function(t){for(var e=0;et&&(i._index+=e)})},_createMiddleMarker:function(t,e){var i,o,a,n=this._getMiddleLatLng(t,e),s=this._createMarker(n);s.setOpacity(.6),t._middleRight=e._middleLeft=s,o=function(){s.off("touchmove",o,this);var a=e._index;s._index=a,s.off("click",i,this).on("click",this._onMarkerClick,this),n.lat=s.getLatLng().lat,n.lng=s.getLatLng().lng,this._spliceLatLngs(a,0,n),this._markers.splice(a,0,s),s.setOpacity(1),this._updateIndexes(a,1),e._index++,this._updatePrevNext(t,s),this._updatePrevNext(s,e),this._poly.fire("editstart")},a=function(){s.off("dragstart",o,this),s.off("dragend",a,this),s.off("touchmove",o,this),this._createMiddleMarker(t,s),this._createMiddleMarker(s,e)},i=function(){o.call(this),a.call(this),this._fireEdit()},s.on("click",i,this).on("dragstart",o,this).on("dragend",a,this).on("touchmove",o,this),this._markerGroup.addLayer(s)},_updatePrevNext:function(t,e){t&&(t._next=e),e&&(e._prev=t)},_getMiddleLatLng:function(t,e){var i=this._poly._map,o=i.project(t.getLatLng()),a=i.project(e.getLatLng());return i.unproject(o._add(a)._divideBy(2))}}),L.Polyline.addInitHook(function(){this.editing||(L.Edit.Poly&&(this.editing=new L.Edit.Poly(this),this.options.editable&&this.editing.enable()),this.on("add",function(){this.editing&&this.editing.enabled()&&this.editing.addHooks()}),this.on("remove",function(){this.editing&&this.editing.enabled()&&this.editing.removeHooks()}))}),L.Edit=L.Edit||{},L.Edit.SimpleShape=L.Handler.extend({options:{moveIcon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move"}),resizeIcon:new L.DivIcon({iconSize:new L.Point(8,8),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize"}),touchMoveIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-move leaflet-touch-icon"}),touchResizeIcon:new L.DivIcon({iconSize:new L.Point(20,20),className:"leaflet-div-icon leaflet-editing-icon leaflet-edit-resize leaflet-touch-icon"})},initialize:function(t,e){L.Browser.touch&&(this.options.moveIcon=this.options.touchMoveIcon,this.options.resizeIcon=this.options.touchResizeIcon),this._shape=t,L.Util.setOptions(this,e)},addHooks:function(){var t=this._shape;this._shape._map&&(this._map=this._shape._map,t.setStyle(t.options.editing),t._map&&(this._map=t._map,this._markerGroup||this._initMarkers(),this._map.addLayer(this._markerGroup)))},removeHooks:function(){var t=this._shape;if(t.setStyle(t.options.original),t._map){this._unbindMarker(this._moveMarker);for(var e=0,i=this._resizeMarkers.length;e"+L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.draw.handlers.circle.radius+": "+L.GeometryUtil.readableDistance(radius,!0,this.options.feet,this.options.nautic)}),this._shape.setRadius(radius),this._map.fire(L.Draw.Event.EDITRESIZE,{layer:this._shape})}}),L.Circle.addInitHook(function(){L.Edit.Circle&&(this.editing=new L.Edit.Circle(this),this.options.editable&&this.editing.enable())}),L.Map.mergeOptions({touchExtend:!0}),L.Map.TouchExtend=L.Handler.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane},addHooks:function(){L.DomEvent.on(this._container,"touchstart",this._onTouchStart,this),L.DomEvent.on(this._container,"touchend",this._onTouchEnd,this),L.DomEvent.on(this._container,"touchmove",this._onTouchMove,this),this._detectIE()?(L.DomEvent.on(this._container,"MSPointerDown",this._onTouchStart,this),L.DomEvent.on(this._container,"MSPointerUp",this._onTouchEnd,this),L.DomEvent.on(this._container,"MSPointerMove",this._onTouchMove,this),L.DomEvent.on(this._container,"MSPointerCancel",this._onTouchCancel,this)):(L.DomEvent.on(this._container,"touchcancel",this._onTouchCancel,this),L.DomEvent.on(this._container,"touchleave",this._onTouchLeave,this))},removeHooks:function(){L.DomEvent.off(this._container,"touchstart",this._onTouchStart,this),L.DomEvent.off(this._container,"touchend",this._onTouchEnd,this),L.DomEvent.off(this._container,"touchmove",this._onTouchMove,this),this._detectIE()?(L.DomEvent.off(this._container,"MSPointerDown",this._onTouchStart,this),L.DomEvent.off(this._container,"MSPointerUp",this._onTouchEnd,this),L.DomEvent.off(this._container,"MSPointerMove",this._onTouchMove,this),L.DomEvent.off(this._container,"MSPointerCancel",this._onTouchCancel,this)):(L.DomEvent.off(this._container,"touchcancel",this._onTouchCancel,this),L.DomEvent.off(this._container,"touchleave",this._onTouchLeave,this))},_touchEvent:function(t,e){var i={};if(void 0!==t.touches){if(!t.touches.length)return;i=t.touches[0]}else if("touch"!==t.pointerType||(i=t,!this._filterClick(t)))return;var o=this._map.mouseEventToContainerPoint(i),a=this._map.mouseEventToLayerPoint(i),n=this._map.layerPointToLatLng(a);this._map.fire(e,{latlng:n,layerPoint:a,containerPoint:o,pageX:i.pageX,pageY:i.pageY,originalEvent:t})},_filterClick:function(t){var e=t.timeStamp||t.originalEvent.timeStamp,i=L.DomEvent._lastClick&&e-L.DomEvent._lastClick;return i&&i>100&&i<500||t.target._simulatedClick&&!t._simulated?(L.DomEvent.stop(t),!1):(L.DomEvent._lastClick=e,!0)},_onTouchStart:function(t){this._map._loaded&&this._touchEvent(t,"touchstart")},_onTouchEnd:function(t){this._map._loaded&&this._touchEvent(t,"touchend")},_onTouchCancel:function(t){if(this._map._loaded){var e="touchcancel";this._detectIE()&&(e="pointercancel"),this._touchEvent(t,e)}},_onTouchLeave:function(t){this._map._loaded&&this._touchEvent(t,"touchleave")},_onTouchMove:function(t){this._map._loaded&&this._touchEvent(t,"touchmove")},_detectIE:function(){var e=t.navigator.userAgent,i=e.indexOf("MSIE ");if(i>0)return parseInt(e.substring(i+5,e.indexOf(".",i)),10);if(e.indexOf("Trident/")>0){var o=e.indexOf("rv:");return parseInt(e.substring(o+3,e.indexOf(".",o)),10)}var a=e.indexOf("Edge/");return a>0&&parseInt(e.substring(a+5,e.indexOf(".",a)),10)}}),L.Map.addInitHook("addHandler","touchExtend",L.Map.TouchExtend),L.Marker.Touch=L.Marker.extend({_initInteraction:function(){return this.addInteractiveTarget?L.Marker.prototype._initInteraction.apply(this):this._initInteractionLegacy()},_initInteractionLegacy:function(){if(this.options.clickable){var t=this._icon,e=["dblclick","mousedown","mouseover","mouseout","contextmenu","touchstart","touchend","touchmove"];this._detectIE?e.concat(["MSPointerDown","MSPointerUp","MSPointerMove","MSPointerCancel"]):e.concat(["touchcancel"]),L.DomUtil.addClass(t,"leaflet-clickable"),L.DomEvent.on(t,"click",this._onMouseClick,this),L.DomEvent.on(t,"keypress",this._onKeyPress,this);for(var i=0;i0)return parseInt(e.substring(i+5,e.indexOf(".",i)),10);if(e.indexOf("Trident/")>0){var o=e.indexOf("rv:");return parseInt(e.substring(o+3,e.indexOf(".",o)),10)}var a=e.indexOf("Edge/");return a>0&&parseInt(e.substring(a+5,e.indexOf(".",a)),10)}}),L.LatLngUtil={cloneLatLngs:function(t){for(var e=[],i=0,o=t.length;i2){for(var s=0;s1&&(i=i+s+r[1])}return i},readableArea:function(t,e,o){var a,n,o=L.Util.extend({},i,o);return e?(n=["ha","m"],"string"==(type=typeof e)?n=[e]:"boolean"!==type&&(n=e),a=t>=1e6&&-1!==n.indexOf("km")?L.GeometryUtil.formattedNumber(1e-6*t,o.km)+" km\xb2":t>=1e4&&-1!==n.indexOf("ha")?L.GeometryUtil.formattedNumber(1e-4*t,o.ha)+" ha":L.GeometryUtil.formattedNumber(t,o.m)+" m\xb2"):(t/=.836127,a=t>=3097600?L.GeometryUtil.formattedNumber(t/3097600,o.mi)+" mi\xb2":t>=4840?L.GeometryUtil.formattedNumber(t/4840,o.ac)+" acres":L.GeometryUtil.formattedNumber(t,o.yd)+" yd\xb2"),a},readableDistance:function(t,e,o,a,n){var s,n=L.Util.extend({},i,n);switch(e?"string"==typeof e?e:"metric":o?"feet":a?"nauticalMile":"yards"){case"metric":s=t>1e3?L.GeometryUtil.formattedNumber(t/1e3,n.km)+" km":L.GeometryUtil.formattedNumber(t,n.m)+" m";break;case"feet":t*=3.28083,s=L.GeometryUtil.formattedNumber(t,n.ft)+" ft";break;case"nauticalMile":t*=.53996,s=L.GeometryUtil.formattedNumber(t/1e3,n.nm)+" nm";break;default:t*=1.09361,s=t>1760?L.GeometryUtil.formattedNumber(t/1760,n.mi)+" miles":L.GeometryUtil.formattedNumber(t,n.yd)+" yd"}return s},isVersion07x:function(){var t=L.version.split(".");return 0===parseInt(t[0],10)&&7===parseInt(t[1],10)}}),L.Util.extend(L.LineUtil,{segmentsIntersect:function(t,e,i,o){return this._checkCounterclockwise(t,i,o)!==this._checkCounterclockwise(e,i,o)&&this._checkCounterclockwise(t,e,i)!==this._checkCounterclockwise(t,e,o)},_checkCounterclockwise:function(t,e,i){return(i.y-t.y)*(e.x-t.x)>(e.y-t.y)*(i.x-t.x)}}),L.Polyline.include({intersects:function(){var t,e,i,o=this._getProjectedPoints(),a=o?o.length:0;if(this._tooFewPointsForIntersection())return!1;for(t=a-1;t>=3;t--)if(e=o[t-1],i=o[t],this._lineSegmentsIntersectsRange(e,i,t-2))return!0;return!1},newLatLngIntersects:function(t,e){return!!this._map&&this.newPointIntersects(this._map.latLngToLayerPoint(t),e)},newPointIntersects:function(t,e){var i=this._getProjectedPoints(),o=i?i.length:0,a=i?i[o-1]:null;return!this._tooFewPointsForIntersection(1)&&this._lineSegmentsIntersectsRange(a,t,o-2,+!!e)},_tooFewPointsForIntersection:function(t){var e=this._getProjectedPoints(),i=e?e.length:0;return i+=t||0,!e||i<=3},_lineSegmentsIntersectsRange:function(t,e,i,o){var a,n,s=this._getProjectedPoints();o=o||0;for(var r=i;r>o;r--)if(a=s[r-1],n=s[r],L.LineUtil.segmentsIntersect(t,e,a,n))return!0;return!1},_getProjectedPoints:function(){if(!this._defaultShape)return this._originalPoints;for(var t=[],e=this._defaultShape(),i=0;i=2?L.Toolbar.include(L.Evented.prototype):L.Toolbar.include(L.Mixin.Events)},enabled:function(){return null!==this._activeMode},disable:function(){this.enabled()&&this._activeMode.handler.disable()},addToolbar:function(t){var e,i=L.DomUtil.create("div","leaflet-draw-section"),o=0,a=this._toolbarClass||"",n=this.getModeHandlers(t);for(this._toolbarContainer=L.DomUtil.create("div","leaflet-draw-toolbar leaflet-bar"),this._map=t,e=0;e0&&this._singleLineLabel&&(L.DomUtil.removeClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!1):(L.DomUtil.addClass(this._container,"leaflet-draw-tooltip-single"),this._singleLineLabel=!0),this._container.innerHTML=(t.subtext.length>0?''+t.subtext+"
    ":"")+""+t.text+"",t.text||t.subtext?(this._visible=!0,this._container.style.visibility="inherit"):(this._visible=!1,this._container.style.visibility="hidden")),this},updatePosition:function(t){var e=this._map.latLngToLayerPoint(t),i=this._container;return this._container&&(this._visible&&(i.style.visibility="inherit"),L.DomUtil.setPosition(i,e)),this},showAsError:function(){return this._container&&L.DomUtil.addClass(this._container,"leaflet-error-draw-tooltip"),this},removeError:function(){return this._container&&L.DomUtil.removeClass(this._container,"leaflet-error-draw-tooltip"),this},_onMouseOut:function(){this._container&&(this._container.style.visibility="hidden")}}),L.DrawToolbar=L.Toolbar.extend({statics:{TYPE:"draw"},options:{polyline:{},polygon:{},rectangle:{},circle:{},marker:{},circlemarker:{}},initialize:function(t){for(var e in this.options)this.options.hasOwnProperty(e)&&t[e]&&(t[e]=L.extend({},this.options[e],t[e]));this._toolbarClass="leaflet-draw-draw",L.Toolbar.prototype.initialize.call(this,t)},getModeHandlers:function(t){return[{enabled:this.options.polyline,handler:new L.Draw.Polyline(t,this.options.polyline),title:L.drawLocal.draw.toolbar.buttons.polyline},{enabled:this.options.polygon,handler:new L.Draw.Polygon(t,this.options.polygon),title:L.drawLocal.draw.toolbar.buttons.polygon},{enabled:this.options.rectangle,handler:new L.Draw.Rectangle(t,this.options.rectangle),title:L.drawLocal.draw.toolbar.buttons.rectangle},{enabled:this.options.circle,handler:new L.Draw.Circle(t,this.options.circle),title:L.drawLocal.draw.toolbar.buttons.circle},{enabled:this.options.marker,handler:new L.Draw.Marker(t,this.options.marker),title:L.drawLocal.draw.toolbar.buttons.marker},{enabled:this.options.circlemarker,handler:new L.Draw.CircleMarker(t,this.options.circlemarker),title:L.drawLocal.draw.toolbar.buttons.circlemarker}]},getActions:function(t){return[{enabled:t.completeShape,title:L.drawLocal.draw.toolbar.finish.title,text:L.drawLocal.draw.toolbar.finish.text,callback:t.completeShape,context:t},{enabled:t.deleteLastVertex,title:L.drawLocal.draw.toolbar.undo.title,text:L.drawLocal.draw.toolbar.undo.text,callback:t.deleteLastVertex,context:t},{title:L.drawLocal.draw.toolbar.actions.title,text:L.drawLocal.draw.toolbar.actions.text,callback:this.disable,context:this}]},setOptions:function(t){for(var e in L.setOptions(this,t),this._modes)this._modes.hasOwnProperty(e)&&t.hasOwnProperty(e)&&this._modes[e].handler.setOptions(t[e])}}),L.EditToolbar=L.Toolbar.extend({statics:{TYPE:"edit"},options:{edit:{selectedPathOptions:{dashArray:"10, 10",fill:!0,fillColor:"#fe57a1",fillOpacity:.1,maintainColor:!1}},remove:{},poly:null,featureGroup:null},initialize:function(t){t.edit&&(void 0===t.edit.selectedPathOptions&&(t.edit.selectedPathOptions=this.options.edit.selectedPathOptions),t.edit.selectedPathOptions=L.extend({},this.options.edit.selectedPathOptions,t.edit.selectedPathOptions)),t.remove&&(t.remove=L.extend({},this.options.remove,t.remove)),t.poly&&(t.poly=L.extend({},this.options.poly,t.poly)),this._toolbarClass="leaflet-draw-edit",L.Toolbar.prototype.initialize.call(this,t),this._selectedFeatureCount=0},getModeHandlers:function(t){var e=this.options.featureGroup;return[{enabled:this.options.edit,handler:new L.EditToolbar.Edit(t,{featureGroup:e,selectedPathOptions:this.options.edit.selectedPathOptions,poly:this.options.poly}),title:L.drawLocal.edit.toolbar.buttons.edit},{enabled:this.options.remove,handler:new L.EditToolbar.Delete(t,{featureGroup:e}),title:L.drawLocal.edit.toolbar.buttons.remove}]},getActions:function(t){var e=[{title:L.drawLocal.edit.toolbar.actions.save.title,text:L.drawLocal.edit.toolbar.actions.save.text,callback:this._save,context:this},{title:L.drawLocal.edit.toolbar.actions.cancel.title,text:L.drawLocal.edit.toolbar.actions.cancel.text,callback:this.disable,context:this}];return t.removeAllLayers&&e.push({title:L.drawLocal.edit.toolbar.actions.clearAll.title,text:L.drawLocal.edit.toolbar.actions.clearAll.text,callback:this._clearAllLayers,context:this}),e},addToolbar:function(t){var e=L.Toolbar.prototype.addToolbar.call(this,t);return this._checkDisabled(),this.options.featureGroup.on("layeradd layerremove",this._checkDisabled,this),e},removeToolbar:function(){this.options.featureGroup.off("layeradd layerremove",this._checkDisabled,this),L.Toolbar.prototype.removeToolbar.call(this)},disable:function(){this.enabled()&&(this._activeMode.handler.revertLayers(),L.Toolbar.prototype.disable.call(this))},_save:function(){this._activeMode.handler.save(),this._activeMode&&this._activeMode.handler.disable()},_clearAllLayers:function(){this._activeMode.handler.removeAllLayers(),this._activeMode&&this._activeMode.handler.disable()},_checkDisabled:function(){var t,e=0!==this.options.featureGroup.getLayers().length;this.options.edit&&(t=this._modes[L.EditToolbar.Edit.TYPE].button,e?L.DomUtil.removeClass(t,"leaflet-disabled"):L.DomUtil.addClass(t,"leaflet-disabled"),t.setAttribute("title",e?L.drawLocal.edit.toolbar.buttons.edit:L.drawLocal.edit.toolbar.buttons.editDisabled)),this.options.remove&&(t=this._modes[L.EditToolbar.Delete.TYPE].button,e?L.DomUtil.removeClass(t,"leaflet-disabled"):L.DomUtil.addClass(t,"leaflet-disabled"),t.setAttribute("title",e?L.drawLocal.edit.toolbar.buttons.remove:L.drawLocal.edit.toolbar.buttons.removeDisabled))}}),L.EditToolbar.Edit=L.Handler.extend({statics:{TYPE:"edit"},initialize:function(t,e){if(L.Handler.prototype.initialize.call(this,t),L.setOptions(this,e),this._featureGroup=e.featureGroup,!(this._featureGroup instanceof L.FeatureGroup))throw Error("options.featureGroup must be a L.FeatureGroup");this._uneditedLayerProps={},this.type=L.EditToolbar.Edit.TYPE;var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.EditToolbar.Edit.include(L.Evented.prototype):L.EditToolbar.Edit.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.EDITSTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._featureGroup.on("layeradd",this._enableLayerEdit,this).on("layerremove",this._disableLayerEdit,this))},disable:function(){this._enabled&&(this._featureGroup.off("layeradd",this._enableLayerEdit,this).off("layerremove",this._disableLayerEdit,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.EDITSTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(t.getContainer().focus(),this._featureGroup.eachLayer(this._enableLayerEdit,this),this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}),t._editTooltip=this._tooltip,this._updateTooltip(),this._map.on("mousemove",this._onMouseMove,this).on("touchmove",this._onMouseMove,this).on("MSPointerMove",this._onMouseMove,this).on(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},removeHooks:function(){this._map&&(this._featureGroup.eachLayer(this._disableLayerEdit,this),this._uneditedLayerProps={},this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this).off("touchmove",this._onMouseMove,this).off("MSPointerMove",this._onMouseMove,this).off(L.Draw.Event.EDITVERTEX,this._updateTooltip,this))},revertLayers:function(){this._featureGroup.eachLayer(function(t){this._revertLayer(t)},this)},save:function(){var t=new L.LayerGroup;this._featureGroup.eachLayer(function(e){e.edited&&(t.addLayer(e),e.edited=!1)}),this._map.fire(L.Draw.Event.EDITED,{layers:t})},_backupLayer:function(t){var e=L.Util.stamp(t);this._uneditedLayerProps[e]||(t instanceof L.Polyline||t instanceof L.Polygon||t instanceof L.Rectangle?this._uneditedLayerProps[e]={latlngs:L.LatLngUtil.cloneLatLngs(t.getLatLngs())}:t instanceof L.Circle?this._uneditedLayerProps[e]={latlng:L.LatLngUtil.cloneLatLng(t.getLatLng()),radius:t.getRadius()}:(t instanceof L.Marker||t instanceof L.CircleMarker)&&(this._uneditedLayerProps[e]={latlng:L.LatLngUtil.cloneLatLng(t.getLatLng())}))},_getTooltipText:function(){return{text:L.drawLocal.edit.handlers.edit.tooltip.text,subtext:L.drawLocal.edit.handlers.edit.tooltip.subtext}},_updateTooltip:function(){this._tooltip.updateContent(this._getTooltipText())},_revertLayer:function(t){var e=L.Util.stamp(t);t.edited=!1,this._uneditedLayerProps.hasOwnProperty(e)&&(t instanceof L.Polyline||t instanceof L.Polygon||t instanceof L.Rectangle?t.setLatLngs(this._uneditedLayerProps[e].latlngs):t instanceof L.Circle?(t.setLatLng(this._uneditedLayerProps[e].latlng),t.setRadius(this._uneditedLayerProps[e].radius)):(t instanceof L.Marker||t instanceof L.CircleMarker)&&t.setLatLng(this._uneditedLayerProps[e].latlng),t.fire("revert-edited",{layer:t}))},_enableLayerEdit:function(t){var e,i,o=t.layer||t.target||t;this._backupLayer(o),this.options.poly&&(i=L.Util.extend({},this.options.poly),o.options.poly=i),this.options.selectedPathOptions&&((e=L.Util.extend({},this.options.selectedPathOptions)).maintainColor&&(e.color=o.options.color,e.fillColor=o.options.fillColor),o.options.original=L.extend({},o.options),o.options.editing=e),o instanceof L.Marker?(o.editing&&o.editing.enable(),o.dragging.enable(),o.on("dragend",this._onMarkerDragEnd).on("touchmove",this._onTouchMove,this).on("MSPointerMove",this._onTouchMove,this).on("touchend",this._onMarkerDragEnd,this).on("MSPointerUp",this._onMarkerDragEnd,this)):o.editing.enable()},_disableLayerEdit:function(t){var e=t.layer||t.target||t;e.edited=!1,e.editing&&e.editing.disable(),delete e.options.editing,delete e.options.original,this._selectedPathOptions&&(e instanceof L.Marker?this._toggleMarkerHighlight(e):(e.setStyle(e.options.previousOptions),delete e.options.previousOptions)),e instanceof L.Marker?(e.dragging.disable(),e.off("dragend",this._onMarkerDragEnd,this).off("touchmove",this._onTouchMove,this).off("MSPointerMove",this._onTouchMove,this).off("touchend",this._onMarkerDragEnd,this).off("MSPointerUp",this._onMarkerDragEnd,this)):e.editing.disable()},_onMouseMove:function(t){this._tooltip.updatePosition(t.latlng)},_onMarkerDragEnd:function(t){var e=t.target;e.edited=!0,this._map.fire(L.Draw.Event.EDITMOVE,{layer:e})},_onTouchMove:function(t){var e=t.originalEvent.changedTouches[0],i=this._map.mouseEventToLayerPoint(e),o=this._map.layerPointToLatLng(i);t.target.setLatLng(o)},_hasAvailableLayers:function(){return 0!==this._featureGroup.getLayers().length}}),L.EditToolbar.Delete=L.Handler.extend({statics:{TYPE:"remove"},initialize:function(t,e){if(L.Handler.prototype.initialize.call(this,t),L.Util.setOptions(this,e),this._deletableLayers=this.options.featureGroup,!(this._deletableLayers instanceof L.FeatureGroup))throw Error("options.featureGroup must be a L.FeatureGroup");this.type=L.EditToolbar.Delete.TYPE;var i=L.version.split(".");1===parseInt(i[0],10)&&parseInt(i[1],10)>=2?L.EditToolbar.Delete.include(L.Evented.prototype):L.EditToolbar.Delete.include(L.Mixin.Events)},enable:function(){!this._enabled&&this._hasAvailableLayers()&&(this.fire("enabled",{handler:this.type}),this._map.fire(L.Draw.Event.DELETESTART,{handler:this.type}),L.Handler.prototype.enable.call(this),this._deletableLayers.on("layeradd",this._enableLayerDelete,this).on("layerremove",this._disableLayerDelete,this))},disable:function(){this._enabled&&(this._deletableLayers.off("layeradd",this._enableLayerDelete,this).off("layerremove",this._disableLayerDelete,this),L.Handler.prototype.disable.call(this),this._map.fire(L.Draw.Event.DELETESTOP,{handler:this.type}),this.fire("disabled",{handler:this.type}))},addHooks:function(){var t=this._map;t&&(t.getContainer().focus(),this._deletableLayers.eachLayer(this._enableLayerDelete,this),this._deletedLayers=new L.LayerGroup,this._tooltip=new L.Draw.Tooltip(this._map),this._tooltip.updateContent({text:L.drawLocal.edit.handlers.remove.tooltip.text}),this._map.on("mousemove",this._onMouseMove,this))},removeHooks:function(){this._map&&(this._deletableLayers.eachLayer(this._disableLayerDelete,this),this._deletedLayers=null,this._tooltip.dispose(),this._tooltip=null,this._map.off("mousemove",this._onMouseMove,this))},revertLayers:function(){this._deletedLayers.eachLayer(function(t){this._deletableLayers.addLayer(t),t.fire("revert-deleted",{layer:t})},this)},save:function(){this._map.fire(L.Draw.Event.DELETED,{layers:this._deletedLayers})},removeAllLayers:function(){this._deletableLayers.eachLayer(function(t){this._removeLayer({layer:t})},this),this.save()},_enableLayerDelete:function(t){(t.layer||t.target||t).on("click",this._removeLayer,this)},_disableLayerDelete:function(t){var e=t.layer||t.target||t;e.off("click",this._removeLayer,this),this._deletedLayers.removeLayer(e)},_removeLayer:function(t){var e=t.layer||t.target||t;this._deletableLayers.removeLayer(e),this._deletedLayers.addLayer(e),e.fire("deleted")},_onMouseMove:function(t){this._tooltip.updatePosition(t.latlng)},_hasAvailableLayers:function(){return 0!==this._deletableLayers.getLayers().length}})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/254.7abe0c11.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js deleted file mode 100644 index 56a6467550..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2545.dcb1e512.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2545"],{86208(e,t,s){s.d(t,{x:()=>o});var a=s(57064);class o extends a.F{constructor(){super(),this.type="archive"}}},85296(e,t,s){s.d(t,{$:()=>o});var a=s(57064);class o extends a.F{constructor(){super(),this.type="audio"}}},61476(e,t,s){s.d(t,{a:()=>i});var a=s(31635),o=s(57064),n=s(62446);class i extends o.F{constructor(){super(),this.type="document"}}i=(0,a.Cg)([(0,n.injectable)(),(0,a.Sn)("design:type",Function),(0,a.Sn)("design:paramtypes",[])],i)},89446(e,t,s){s.d(t,{H:()=>i});var a=s(31635),o=s(57064),n=s(62446);class i extends o.F{constructor(){super(),this.type="folder"}}i=(0,a.Cg)([(0,n.injectable)(),(0,a.Sn)("design:type",Function),(0,a.Sn)("design:paramtypes",[])],i)},68220(e,t,s){s.d(t,{i:()=>i});var a=s(31635),o=s(57064),n=s(62446);class i extends o.F{constructor(){super(),this.type="image"}}i=(0,a.Cg)([(0,n.injectable)(),(0,a.Sn)("design:type",Function),(0,a.Sn)("design:paramtypes",[])],i)},84956(e,t,s){s.d(t,{s:()=>i});var a=s(31635),o=s(57064),n=s(62446);class i extends o.F{constructor(){super(),this.type="text"}}i=(0,a.Cg)([(0,n.injectable)(),(0,a.Sn)("design:type",Function),(0,a.Sn)("design:paramtypes",[])],i)},53152(e,t,s){s.d(t,{t:()=>o});var a=s(57064);class o extends a.F{constructor(){super(),this.type="unknown"}}},35856(e,t,s){s.d(t,{c:()=>o});var a=s(57064);class o extends a.F{constructor(){super(),this.type="video"}}},27732(e,t,s){s.d(t,{Q:()=>n});var a=s(47867),o=s(39857);let n=()=>{let{id:e}=(0,a.useContext)(o.m);return{id:e}}},31920(e,t,s){s.d(t,{P:()=>l,r:()=>r});var a=s(31635),o=s(62446),n=s(32234),i=s(66112);class r extends i.s{constructor(e,t){super(t),this.assetId=e,this.updateData=t}}class l extends n.k{}l=(0,a.Cg)([(0,o.injectable)()],l)},79563(e,t,s){s.d(t,{Z:()=>i,c:()=>n});var a=s(81674),o=s(24755);let n=(e,t)=>({id:e.id.toString(),elementType:o.W.asset,icon:(0,a.Ip)(e,{type:"name",value:"unknown"}),label:e.filename,type:e.type,parentId:String(e.parentId),fullPath:e.fullPath,hasChildren:e.hasChildren,locked:e.locked,isLocked:e.isLocked,metaData:{asset:e},permissions:e.permissions??[],internalKey:`${t.internalKey}-${e.id}`}),i=(e,t,s)=>{let a=[];return t.items.forEach(t=>{a.push(n(t,e))}),{nodes:a,total:t.totalItems??s}}},36344(e,t,s){s.r(t),s.d(t,{ActionColumnDecorator:()=>S._9,ArchiveTabManager:()=>p.x,AssetApiSlice:()=>T,AssetContext:()=>f.m,AssetListingBuilder:()=>M.C,AssetProvider:()=>f.e,AssetSaveDataContext:()=>r.r,AssetSaveDataProcessorRegistry:()=>r.P,AudioTabManager:()=>m.$,BaseListing:()=>S.wB,ColumnConfigurationDecorator:()=>S.yq,ContextMenuDecorator:()=>S.yg,DocumentTabManager:()=>b.a,FolderTabManager:()=>h.H,GeneralFiltersDecorator:()=>S.pj,ImageTabManager:()=>v.i,InlineEditDecorator:()=>S.Pj,ListingContainer:()=>S.w8,MetadataApiSlice:()=>c,PagingDecorator:()=>S.Sl,RowSelectionDecorator:()=>S.Y9,SortingDecorator:()=>S.YT,TAB_CUSTOM_METADATA:()=>u.y5,TAB_EMBEDDED_METADATA:()=>u.rV,TAB_VERSIONS:()=>u.qW,TagFilterDecorator:()=>S.A8,TextTabManager:()=>A.s,UnknownTabManager:()=>y.t,VideoTabManager:()=>g.c,addCustomMetadataToAsset:()=>I.vD,addImageSettingsToAsset:()=>I.tn,addPropertyToAsset:()=>I.kV,addScheduleToAsset:()=>I.YH,assetReceived:()=>I.Y$,assetsAdapter:()=>I.tx,listingDefaultProps:()=>S.U6,removeAsset:()=>I.Vx,removeCustomMetadataFromAsset:()=>I.fP,removeCustomSettingsFromAsset:()=>I.Hh,removeImageSettingFromAsset:()=>I.EI,removePropertyFromAsset:()=>I.iC,removeScheduleFromAsset:()=>I.a6,resetAsset:()=>I._Y,resetChanges:()=>I.O0,resetSchedulesChangesForAsset:()=>I.KL,selectAssetById:()=>I.f_,setActiveTabForAsset:()=>I.pm,setCustomMetadataForAsset:()=>I.aG,setCustomSettingsForAsset:()=>I.Cc,setModifiedCells:()=>I.$B,setPropertiesForAsset:()=>I.ro,setSchedulesForAsset:()=>I.YI,slice:()=>I.di,transformApiDataToNode:()=>F.c,transformApiDataToNodes:()=>F.Z,updateAllCustomMetadataForAsset:()=>I.wH,updateCustomMetadataForAsset:()=>I.lB,updateFilename:()=>I.PB,updateImageSettingForAsset:()=>I.gA,updatePropertyForAsset:()=>I.uA,updateScheduleForAsset:()=>I.gz,updateTextDataForAsset:()=>I.we,useAsset:()=>x.Q,useAssetDraft:()=>C.l,useAssetHelper:()=>w.G,useClearThumbnails:()=>a.q,useCustomMetadataDraft:()=>l.F,useCustomMetadataReducers:()=>l.R,useDownload:()=>o.m,useGlobalAssetContext:()=>D.k,useImageSettingsDraft:()=>d.J,useImageSettingsReducers:()=>d.N,useInlineEditApiUpdate:()=>S.Cj,useUploadNewVersion:()=>n.D,useZipDownload:()=>i.v});var a=s(6424),o=s(89114),n=s(97794),i=s(60042),r=s(31920),l=s(93063),d=s(53119),u=s(22611),c=s(42507),p=s(86208),m=s(85296),b=s(61476),h=s(89446),v=s(68220),A=s(84956),y=s(53152),g=s(35856),x=s(27732),C=s(89354),w=s(76497),D=s(27918),T=s(73362),I=s(21724),f=s(39857),F=s(79563),S=s(27677),M=s(37103);void 0!==(e=s.hmd(e)).hot&&e.hot.accept()},6424(e,t,s){s.d(t,{q:()=>u});var a=s(74848),o=s(62843),n=s(81898),i=s(47867),r=s(21429),l=s(79472),d=s(55638);let u=()=>{let{t:e}=(0,r.useTranslation)(),[t,{isError:s,error:u}]=(0,o.Yn)();(0,i.useEffect)(()=>{s&&(0,d.Ay)(new d.hD(u))},[s]);let c=async(e,s)=>{let a=t({id:e.id});await a,null==s||s()};return{clearImageThumbnailContextMenuItem:(t,s)=>({label:e("asset.tree.context-menu.clear-thumbnails"),key:"clearImageThumbnails",icon:(0,a.jsx)(n.I,{value:"remove-image-thumbnail"}),hidden:"image"!==t.type||!(0,l.o)(t.permissions,"publish"),onClick:async()=>{await c(t,s)}}),clearVideoThumbnailContextMenuItem:(t,s)=>({label:e("asset.tree.context-menu.clear-thumbnails"),key:"clearVideoThumbnails",icon:(0,a.jsx)(n.I,{value:"remove-video-thumbnail"}),hidden:"video"!==t.type||!(0,l.o)(t.permissions,"publish"),onClick:async()=>{await c(t,s)}}),clearPdfThumbnailContextMenuItem:(t,s)=>({label:e("asset.tree.context-menu.clear-thumbnails"),key:"clearPdfThumbnails",icon:(0,a.jsx)(n.I,{value:"remove-pdf-thumbnail"}),hidden:"application/pdf"!==t.mimeType||!(0,l.o)(t.permissions,"publish"),onClick:async()=>{await c(t,s)}})}}},97794(e,t,s){s.d(t,{D:()=>b});var a=s(74848),o=s(21429),n=s(81898);s(47867);var i=s(79472),r=s(17388),l=s(68153),d=s(83986),u=s(58200),c=s(35864),p=s(46881),m=s(59385);let b=()=>{let{t:e}=(0,o.useTranslation)(),t=(0,p.useAppDispatch)(),{triggerUpload:s}=(0,d.d)(),{isTreeActionAllowed:b}=(0,r.H)(),h=(e,a)=>{s({action:`${(0,u.$)()}/assets/${e}/replace`,maxItems:1,multiple:!1,onSuccess:async s=>{var o,n;if(!(0,c.isNil)(null==s||null==(n=s[0])||null==(o=n.response)?void 0:o.data)){let a=s[0].response.data;t((0,m.renameNode)({nodeId:String(e),elementType:"asset",newLabel:a}))}null==a||a()}})};return{uploadNewVersion:h,uploadNewVersionTreeContextMenuItem:t=>({label:e("asset.tree.context-menu.upload-new-version"),key:"uploadNewVersion",icon:(0,a.jsx)(n.I,{value:"upload-cloud"}),hidden:!b(l.o.UploadNewVersion)||"folder"===t.type||!(0,i.o)(t.permissions,"list")||!(0,i.o)(t.permissions,"view")||!(0,i.o)(t.permissions,"publish")||!(0,i.o)(t.permissions,"versions"),onClick:()=>{h(parseInt(t.id))}}),uploadNewVersionContextMenuItem:(t,s)=>({label:e("asset.tree.context-menu.upload-new-version"),key:"uploadNewVersion",icon:(0,a.jsx)(n.I,{value:"upload-cloud"}),hidden:"folder"===t.type||!(0,i.o)(t.permissions,"list")||!(0,i.o)(t.permissions,"view")||!(0,i.o)(t.permissions,"publish")||!(0,i.o)(t.permissions,"versions"),onClick:()=>{h(t.id,s)}})}}},60042(e,t,s){s.d(t,{v:()=>A});var a=s(74848),o=s(73362),n=s(74718),i=s(21429),r=s(81898),l=s(47867),d=s(79472),u=s(81674),c=s(17388),p=s(68153),m=s(55638),b=s(35864),h=s(58200),v=s(2662);let A=e=>{let[t]=(0,o.useAssetExportZipFolderMutation)(),[s,{isError:A,error:y}]=(0,o.useAssetExportZipAssetMutation)(),g=(0,v.O)(),{t:x}=(0,i.useTranslation)(),{isTreeActionAllowed:C}=(0,c.H)();(0,l.useEffect)(()=>{A&&(0,m.Ay)(new m.hD(y))},[A]);let w=a=>{let{jobTitle:o,requestData:i}=a,r=new n.w({title:x("jobs.zip-job.title",{title:o}),downloadUrl:`${(0,h.$)()}/assets/download/zip/{jobRunId}`,action:async()=>{let a;a="folder"===e.type?t(i):s(i);let o=await a;if(!(0,b.isUndefined)(o.error))throw(0,m.Ay)(new m.hD(o.error)),new m.hD(o.error);return o.data.jobRunId}});g.runJob(r)};return e.type,{createZipDownload:w,createZipDownloadTreeContextMenuItem:e=>({label:x("asset.tree.context-menu.download-as-zip"),key:"downloadAsZip",icon:(0,a.jsx)(r.I,{value:"download-zip"}),hidden:!C(p.o.DownloadZip)||"folder"!==e.type||!(0,d.o)(e.permissions,"view"),onClick:()=>{w({jobTitle:e.label,requestData:{body:{folders:[parseInt(e.id)]}}})}}),createZipDownloadContextMenuItem:(e,t)=>({label:x("asset.tree.context-menu.download-as-zip"),key:"downloadAsZip",icon:(0,a.jsx)(r.I,{value:"download-zip"}),hidden:"folder"!==e.type||!(0,d.o)(e.permissions,"view"),onClick:()=>{w({jobTitle:(0,u.Ed)(e,"asset"),requestData:{body:{folders:[e.id]}}})}})}}},22611(e,t,s){s.d(t,{qW:()=>d,rV:()=>r,y5:()=>l});var a=s(74848),o=s(81898);s(47867);var n=s(81031),i=s(74152);let r={key:"embedded-metadata",label:"asset.asset-editor-tabs.embedded-metadata",children:(0,a.jsx)(n.b,{component:i.e.asset.editor.tab.embeddedMetadata.name}),icon:(0,a.jsx)(o.I,{value:"embedded-metadata"}),isDetachable:!0},l={key:"custom-metadata",label:"asset.asset-editor-tabs.custom-metadata",children:(0,a.jsx)(n.b,{component:i.e.asset.editor.tab.customMetadata.name}),icon:(0,a.jsx)(o.I,{value:"custom-metadata"}),isDetachable:!0},d={key:"versions",label:"version.label",workspacePermission:"versions",children:(0,a.jsx)(n.b,{component:i.e.asset.editor.tab.versions.name}),icon:(0,a.jsx)(o.I,{value:"history"}),isDetachable:!0}},37103(e,t,s){s.d(t,{C:()=>o});var a=s(23945);class o extends a.ListingBuilder{}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2545.dcb1e512.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js deleted file mode 100644 index ab519904a6..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2597.969d51fc.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2597"],{75668(i,s,e){e.r(s),e.d(s,{default:()=>l});var n=e(74848);e(47867);let l=i=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,n.jsx)("path",{fill:"#f93",d:"M0 0h640v160H0z"}),(0,n.jsx)("path",{fill:"#fff",d:"M0 160h640v160H0z"}),(0,n.jsx)("path",{fill:"#128807",d:"M0 320h640v160H0z"}),(0,n.jsxs)("g",{transform:"matrix(3.2 0 0 3.2 320 240)",children:[(0,n.jsx)("circle",{r:20,fill:"#008"}),(0,n.jsx)("circle",{r:17.5,fill:"#fff"}),(0,n.jsx)("circle",{r:3.5,fill:"#008"}),(0,n.jsxs)("g",{id:"in_inline_svg__d",children:[(0,n.jsxs)("g",{id:"in_inline_svg__c",children:[(0,n.jsxs)("g",{id:"in_inline_svg__b",children:[(0,n.jsxs)("g",{id:"in_inline_svg__a",fill:"#008",children:[(0,n.jsx)("circle",{r:.875,transform:"rotate(7.5 -8.75 133.5)"}),(0,n.jsx)("path",{d:"M0 17.5.6 7 0 2l-.6 5z"})]}),(0,n.jsx)("use",{xlinkHref:"#in_inline_svg__a",width:"100%",height:"100%",transform:"rotate(15)"})]}),(0,n.jsx)("use",{xlinkHref:"#in_inline_svg__b",width:"100%",height:"100%",transform:"rotate(30)"})]}),(0,n.jsx)("use",{xlinkHref:"#in_inline_svg__c",width:"100%",height:"100%",transform:"rotate(60)"})]}),(0,n.jsx)("use",{xlinkHref:"#in_inline_svg__d",width:"100%",height:"100%",transform:"rotate(120)"}),(0,n.jsx)("use",{xlinkHref:"#in_inline_svg__d",width:"100%",height:"100%",transform:"rotate(-120)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2597.969d51fc.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js deleted file mode 100644 index 606b2860e5..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 261.0e13114e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["261"],{71652(e,l,i){i.r(l),i.d(l,{default:()=>t});var s=i(74848);i(47867);let t=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#00267f",d:"M0 0h213.337v480H0z"}),(0,s.jsx)("path",{fill:"#f31830",d:"M426.662 0H640v480H426.662z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/261.0e13114e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js deleted file mode 100644 index 756d02b274..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2619.543b4f03.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2619"],{99590(i,e,n){n.r(e),n.d(e,{default:()=>t});var s=n(74848);n(47867);let t=i=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"-5 -5 12.8 9.6",...i,children:[(0,s.jsxs)("defs",{children:[(0,s.jsx)("clipPath",{id:"cn_inline_svg__a",children:(0,s.jsx)("path",{d:"M-5-15.4h26.667v20H-5z"})}),(0,s.jsx)("path",{id:"cn_inline_svg__b",fill:"#ffde00",d:"M-.588.81 0-1 .588.81-.952-.31H.952z"})]}),(0,s.jsxs)("g",{clipPath:"url(#cn_inline_svg__a)",transform:"matrix(.48 0 0 .48 -2.6 2.39)",children:[(0,s.jsx)("path",{fill:"#de2910",d:"M-5-15.4h30v20H-5z"}),(0,s.jsx)("use",{xlinkHref:"#cn_inline_svg__b",width:30,height:20,transform:"matrix(3 0 0 3 0 -10.4)"}),(0,s.jsx)("use",{xlinkHref:"#cn_inline_svg__b",width:30,height:20,transform:"rotate(-120.93 -1.29 -8.12)"}),(0,s.jsx)("use",{xlinkHref:"#cn_inline_svg__b",width:30,height:20,transform:"rotate(-98.11 -1.45 -8.74)"}),(0,s.jsx)("use",{xlinkHref:"#cn_inline_svg__b",width:30,height:20,transform:"rotate(-74.04 -2.07 -8.84)"}),(0,s.jsx)("use",{xlinkHref:"#cn_inline_svg__b",width:30,height:20,transform:"rotate(-51.32 -4.16 -8.4)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2619.543b4f03.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js deleted file mode 100644 index 502add2e1e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2638.d949ec28.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2638"],{10957(e,i,t){t.r(i),t.d(i,{default:()=>s});var l=t(74848);t(47867);let s=e=>(0,l.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,l.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",transform:"scale(1.25 .9375)",children:[(0,l.jsx)("rect",{width:512,height:509.76,fill:"#fff",rx:0,ry:0}),(0,l.jsx)("rect",{width:512,height:169.92,y:342.08,fill:"#21468b",rx:0,ry:0}),(0,l.jsx)("path",{fill:"#ae1c28",d:"M0 0h512v169.92H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2638.d949ec28.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js deleted file mode 100644 index 4c56f66802..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2709.809fe258.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2709"],{72308(l,d,e){e.r(d),e.d(d,{default:()=>t});var s=e(74848);e(47867);let t=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512",...l,children:[(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{d:"M-85.333 0h682.65v512h-682.65z"}),(0,s.jsx)("path",{fill:"#090",d:"M369.762 0h227.555v512H369.762z"}),(0,s.jsx)("path",{fill:"#bf0000",d:"M142.22 0h227.556v512H142.22z"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M398.352 265.182c-.11.58 1.454 1.433 1.826.99 1.682-2.015 3.883-5.97 4.334-8.364.133-.697-2.107-1.485-2.586-.913-1.575 1.886-3.1 5.773-3.574 8.287zM188.016 387.838c-1.675 5.917-26.38-5.577-29.138-11.532 14.136 7.49 29.476 5.924 29.138 11.532zM109.91 266.973c1.236 1.47 3.318.485 1.42-1.504-1.552-1.61-1.04-2.117-1.987-4.075-.936-2.188-.887-3.395-2.016-4.96-1-1.482-2.5.03-1.495 1.28 1.263 1.476.915 2.564 1.687 3.992 1.426 2.444 1.08 3.727 2.39 5.265zm33.224 40.113c3.974 1.954 6.99 6.836 7.19 10.812.336 4.576.996 8.44 3.05 11.69-3.27-.91-4.837-6.124-5.302-11.118-.47-5.17-3.256-7.41-4.938-11.384zm8.29 9.576c2.75 5.077 6.597 7.013 6.794 10.78.333 4.335.662 4.557 1.837 8.82-3.237-.863-4.052-1.145-4.926-7.632-.54-4.56-4.19-7.775-3.706-11.968z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,d:"M215.673 343.95c4.208 3.446 6.938 7.382 8.21 12.467 1.328 4.738 3.195 8.515 5.933 12.774-4.46-3.04-7.265-7.18-8.668-12.165-1.232-4.9-2.686-8.563-5.475-13.075zm78.767 0c-4.302 3.466-7.093 7.425-8.394 12.54-1.357 4.766-3.265 8.566-6.064 12.85 4.56-3.06 7.427-7.223 8.86-12.24 1.26-4.928 2.746-8.613 5.597-13.15zm-5.295 0c-4.61 3.62-8.958 7.732-10.26 12.848-1.356 4.765-2.176 8.412-5.285 13.154 4.87-3.06 6.804-7.682 8.238-12.698 1.26-4.928 4.146-8.612 7.308-13.305zm-52.12 19.676c1.544 2.914 3.32 7.35 6.536 6.538.053-2.23-3.47-3.776-6.535-6.538zm4.805.994c6.25 2.56 11.645 1.928 12.317 5.855-5.86.633-8.005-1.775-12.316-5.856zm30.636-.604c-1.567 2.746-3.366 6.928-6.627 6.163-.054-2.105 3.517-3.56 6.625-6.165zm-4.38.836c-6.34 2.43-11.813 1.83-12.496 5.558 5.948.6 8.123-1.684 12.496-5.558z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M273.867 355.958c.124-.89-.482-1.666-1.21-1.9-1.42-.533-2.83-.967-4.237-1.368-1.6-.38-2.494.767-2.5 1.52-.007 1.254-.065 2.318 0 3.268.088 1.183.312 1.27 1.06 1.446 1.197.202 2.732.41 3.935 1.216.953.588 1.87.123 2.345-.91.308-.79.477-2.336.607-3.272zm-17.225 0c-.11-.89.357-1.742 1.007-1.976 1.265-.533 2.527-.663 3.86-.61 1.476-.022 1.85.313 1.853 1.066.008 1.253.06 2.47 0 3.42-.078 1.183-.052 1.27-.72 1.446-1.07.202-2.893.256-3.968 1.064-.852.588-1.823.123-1.87-.987.022-.834-.048-2.485-.164-3.42zm-20.902-.234c-.126-.89.484-1.666 1.215-1.9 1.425-.533 2.844-.967 4.257-1.368 1.606-.38 2.505.767 2.51 1.52.008 1.254.067 2.32 0 3.268-.087 1.184-.313 1.27-1.064 1.446-1.203.203-2.744.41-3.953 1.217-.957.588-1.878.123-2.357-.91-.31-.79-.48-2.337-.61-3.273zm17.302 0c.11-.89-.36-1.742-1.012-1.975-1.273-.535-2.54-.666-3.878-.61-1.485-.025-1.86.31-1.864 1.063-.008 1.254-.06 2.47 0 3.42.078 1.183.052 1.27.724 1.446 1.074.2 2.907.256 3.987 1.064.853.587 1.83.122 1.875-.987-.02-.837.05-2.488.166-3.424zM185.47 238.518c-2.012-3.23-4.42 4.48-12.69 10.216-3.85 2.62-6.53 9.6-6.556 14.195-.127 3.153.35 6.3-.002 9.352-.222 1.93-2.234 6.216-.858 7.312 3.64 2.705 8.35 8.848 10.537 10.967 1.89 1.658 3.53-8.55 4.947-13.117 1.52-4.895.84-10.745 5.055-15.27 2.99-3.052 10.525-6.057 9.678-7.418l-10.11-16.238z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M185.47 238.518c-2.012-3.23-4.42 4.48-12.69 10.216-3.85 2.62-6.53 9.6-6.556 14.195-.127 3.153.35 6.3-.002 9.352-.222 1.93-2.234 6.216-.858 7.312 3.64 2.705 8.35 8.848 10.537 10.967 1.89 1.658 3.53-8.55 4.947-13.117 1.52-4.895.84-10.745 5.055-15.27 2.99-3.052 10.525-6.057 9.678-7.418l-10.11-16.238z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.487,d:"M173.246 248.074c-.788 5.468 2.256 7.287 5.13 8.346 2.973 1.057 5.41 4.247 6.667 7.133m-19.156 2.524c1.255 4.714 4.558 4.124 7.43 5.183 2.975 1.057 6.102 4.817 7.358 7.703"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"m182.686 235.19 1.506-.967 28.922 48.71-1.504.967z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m182.686 235.19 1.506-.967 28.922 48.71-1.504.967z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M185.8 233.263a3.334 3.334 0 1 1-6.668-.002 3.334 3.334 0 0 1 6.668.002z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M185.8 233.263a3.334 3.334 0 1 1-6.668-.002 3.334 3.334 0 0 1 6.668.002"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.492,d:"M274.79 144.77c-1.033-1.66-2.27 2.3-6.52 5.25-1.977 1.345-3.355 4.932-3.368 7.292-.065 1.62.18 3.238 0 4.806-.115.992-1.15 3.194-.442 3.757 1.87 1.39 4.29 4.546 5.414 5.635.97.85 1.812-4.393 2.54-6.74.782-2.515.432-5.52 2.598-7.845 1.535-1.57 5.407-3.113 4.972-3.812z",transform:"matrix(-1.9453 0 0 2.0144 859.49 -52.133)"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M324.944 239.495c2.01-3.342 4.415 4.635 12.68 10.574 3.85 2.71 6.53 9.935 6.555 14.69.124 3.264-.353 6.522 0 9.68.22 2 2.233 6.434.857 7.57-3.637 2.8-8.347 9.156-10.53 11.35-1.89 1.714-3.526-8.85-4.944-13.578-1.52-5.066-.84-11.12-5.052-15.803-2.985-3.16-10.517-6.27-9.67-7.68l10.103-16.806z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.492,d:"m273.36 143.06.774-.497 14.86 25.027-.773.497z",transform:"matrix(-1.9453 0 0 2.0144 859.49 -52.133)"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M268.43 149.76c-.405 2.81 1.237 3.665 2.713 4.21 1.528.542 2.86 2.063 3.504 3.546",transform:"matrix(-1.9453 0 0 2.0144 859.49 -52.133)"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M267.35 151.26c.645 2.422 2.264 2.005 3.74 2.55 1.528.542 3.135 2.32 3.78 3.802",transform:"matrix(-1.9453 0 0 2.0144 864.433 -36.44)"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m327.725 236.05-1.505-1-28.907 50.414 1.503 1 28.91-50.414z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.492,d:"M274.96 142.07a1.713 1.713 0 1 1-3.426 0 1.713 1.713 0 0 1 3.426 0z",transform:"matrix(-1.9453 0 0 2.0144 859.49 -52.133)"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M324.613 234.056c0 1.905 1.49 3.45 3.33 3.45s3.333-1.545 3.333-3.45-1.492-3.45-3.332-3.45-3.33 1.545-3.33 3.45z"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M210.515 194.123h11.72v2.688h-11.72zm0 5.08h11.72v22.456h-11.72zm-.7-8.155 13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05zm77.695 3.132h11.72v2.69h-11.72zm0 5.1h11.72v22.457h-11.72zm-.708-8.156 13 .076c.51-4.41-3.89-9.17-6.46-9.122-2.54.122-6.64 4.815-6.54 9.046z"}),(0,s.jsx)("path",{d:"M210.515 194.123h11.72v2.688h-11.72zm0 5.08h11.72v22.456h-11.72zm-.7-8.155 13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05zm77.695 3.132h11.72v2.69h-11.72zm0 5.1h11.72v22.457h-11.72zm-.708-8.156 13 .076c.51-4.41-3.89-9.17-6.46-9.122-2.54.122-6.64 4.815-6.54 9.046"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M287.51 199.28h11.72v22.457h-11.72zm0-5.1h11.72v2.69h-11.72zm-.7-3.054 13 .076c.51-4.41-3.89-9.17-6.46-9.123-2.54.12-6.64 4.813-6.54 9.045zm-76.295 8.077h11.72v22.456h-11.72zm0-5.08h11.72v2.688h-11.72zm-.7-3.075 13 .076c.51-4.41-3.892-9.17-6.46-9.123-2.54.125-6.64 4.818-6.54 9.05z"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"m200.764 225.478 7.452 8.21 92.757.153 7.604-8.21-23.72-.303-11.558-8.06-37.258-.15-10.797 8.362h-24.482z"}),(0,s.jsx)("path",{d:"m200.764 225.478 7.452 8.21 92.757.153 7.604-8.21-23.72-.303-11.558-8.06-37.258-.15-10.797 8.362h-24.482z"})]}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.973,d:"m238.736 212.808 32.03-.034c4.337-2.292 5.69-9.614 5.668-13.71-.06-12.103-8.525-17.907-17.02-18.217-1.273-.064-2.75-1.055-3.087-2.215-.837-2.627-.62-9.468-1.538-9.375-.817-.012-.578 6.697-1.304 9.16-.4 1.228-1.777 2.436-3.15 2.506-10.575.528-17.395 8.247-17.128 18.14.178 6.54.94 10.447 5.526 13.745z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m238.736 212.808 32.03-.034c4.337-2.292 5.69-9.614 5.668-13.71-.06-12.103-8.525-17.907-17.02-18.217-1.273-.064-2.75-1.055-3.087-2.215-.837-2.627-.62-9.315-1.538-9.375-.663.064-.578 6.697-1.304 9.16-.4 1.228-1.777 2.436-3.15 2.506-10.575.528-17.395 8.247-17.128 18.14.178 6.54.94 10.447 5.526 13.745z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.487,d:"M236.732 202.142c.807 3.988 2.728 3.377 2.586 1.446-.473-6.16.026-12.227 5.473-16.27 1.73-1.266-.2-2.434-1.67-1.825-4.632 1.948-7.446 10.88-6.387 16.65z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.487,d:"M242.12 204.654c.808 3.988 4.107 3.815 3.5 1.218-1.236-4.973-1.04-12.226 3.343-15.358 1.73-1.26-.202-2.433-1.672-1.824-4.63 1.95-6.23 10.195-5.17 15.964z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M301.46 125.42c.415 2.05 1.402 1.735 1.33.743-.244-3.165.012-6.282 2.81-8.36.888-.65-.103-1.25-.858-.937-2.38 1-3.826 5.59-3.282 8.554z",transform:"matrix(-1.9484 0 0 1.9463 860.365 -41.81)"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M302.08 125.07c.415 2.05 2.11 1.96 1.798.626-.635-2.555-.534-6.282 1.718-7.89.89-.648-.104-1.25-.86-.938-2.38 1-3.2 5.238-2.656 8.202z",transform:"matrix(-1.9484 0 0 1.9463 856.18 -38.618)"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M186.01 330.247h137.62l-12.32-10.037H198.327l-12.316 10.037z"}),(0,s.jsx)("path",{d:"M186.01 330.247h137.62l-12.32-10.037H198.327l-12.316 10.037z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsxs)("g",{stroke:"#000",strokeWidth:.5,children:[(0,s.jsx)("path",{strokeWidth:.973,d:"M209.892 239.94h13.077v18.094h-13.08zm.758 28.434h12.623v3.802H210.65zm-.29 6.676h12.925v14.142H210.36zm-.916 17.03h14.142v7.908h-14.142zm1.732-27.112h11.395l2.26-3.762h-15.697l2.044 3.762zm15.376-13.858.107-9.89h7.85c-3.085 2.543-5.95 5.626-7.96 9.89zm72.888-11.17h-12.856v18.094h12.857zm-.213 28.434H286.82v3.802h12.407zm.233 6.676h-12.635v14.142h12.636zm.818 17.03h-13.902v7.908h13.902z"}),(0,s.jsx)("path",{d:"M288.44 157.7h5.855l1.16-1.933h-8.065z",transform:"matrix(-1.9134 0 0 1.9463 850.108 -41.963)"}),(0,s.jsx)("path",{d:"m296.23 150.58.055-5.082h4.033c-1.584 1.307-3.057 2.89-4.088 5.082z",transform:"matrix(-1.9134 0 0 1.9463 849.894 -41.963)"})]}),(0,s.jsx)("path",{d:"M209.892 239.94h13.077v18.094h-13.08zm.758 28.434h12.623v3.802H210.65zm-.29 6.676h12.925v14.142H210.36zm-.916 17.03h14.142v7.908h-14.142zm1.732-27.112h11.395l2.26-3.762h-15.697l2.044 3.762zm15.376-13.858.107-9.89h7.85c-3.085 2.543-5.95 5.626-7.96 9.89zm72.888-11.17h-12.856v18.094h12.857zm-.213 28.434H286.82v3.802h12.407zm.233 6.676h-12.635v14.142h12.636zm.818 17.03h-13.902v7.908h13.902zm-2.084-27.112H286.99l-2.22-3.762h15.433l-2.01 3.762zm-15.12-13.858-.106-9.89h-7.716c3.03 2.543 5.85 5.626 7.822 9.89"})]}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.487,d:"M211.916 255.16c.078 2.115 2.474 1.17 2.474.106 0-3.264.043-6.793-.088-9.103-.015-1.703 4.058-1.277 4.035-.228.016 2.756.047 6.536.062 9.76-.03 1.572 2.63 1.436 2.593 0-.016-3.6-.018-8.837 0-11.488.023-3.414-8.963-3.34-9.033-.076.005 2.68-.048 7.48-.044 11.03zm76.944.38c.077 2.115 2.473 1.17 2.473.106 0-3.264.043-6.792-.087-9.103-.016-1.703 4.058-1.276 4.034-.227.016 2.756.047 6.535.062 9.76-.03 1.57 2.554 1.435 2.52 0-.017-3.678.057-8.838.075-11.49.023-3.413-8.963-3.34-9.033-.075.004 2.68-.05 7.48-.045 11.03zm-76.91 21.184h9.276v11.557h-9.276z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M217.886 281.512h3.27v1.9h-3.27zm-5.703 0h3.194v1.9h-3.194z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M215.375 276.88h2.51v4.714h-2.51zm0 6.46h2.51v5.02h-2.51z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.487,d:"M288.59 276.648h9.275v11.557h-9.276z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M294.525 281.436h3.27v1.9h-3.27zm-5.703 0h3.194v1.9h-3.194z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M292.014 276.804h2.51v4.714h-2.51zm0 6.46h2.51v5.02h-2.51z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M280.154 277.327h1.596v11.482h-1.596z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"m249.13 292.547 2.508 7.527h5.7l-4.56-7.53zm-3.192 7.527 1.444 7.45 6.69.076-2.434-7.528zm11.327.076 4.638 7.374h9.504l-7.45-7.452zm-56.112 16.878c5.043-4.69 8.262-8.692 8.288-14.445h12.318c.025 3.22 1.19 5.144 2.966 5.017l12.47-.076-.076-7.374h-9.048l-.003-40.223c-.33-14.217 17.285-22.505 24.484-22.43l-42.805-.075v-1.292h90.022l.076 1.292-43.414.076c12.874.026 25.29 12.217 25.394 22.507v11.404h-1.673l-.075-11.254c0-11.253-14.173-21.77-25.547-21.442-9.835.282-25.09 9.657-24.938 21.366v3.5l23.34.15-.227 4.03 3.665 2.34 7.31 2.33-.107 6.042 5.238 1.543.044 6.038 6.282 2.695v6.25l3.984 2.454-.183 6.347 5.4 3.8H271.56l7.983 8.896H267.76l-5.86-8.896h-7.753l3.498 8.82-8.286-.077-1.98-8.743h-10.11l.074 9.426-36.192.002zm36.116-24.407v7.453h8.667l-1.752-7.45h-6.917z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m249.13 292.547 2.508 7.527h5.7l-4.56-7.53zm-3.192 7.527 1.444 7.45 6.69.076-2.434-7.528zm11.327.076 4.638 7.374h9.504l-7.45-7.452zm-56.112 16.878c5.043-4.69 8.262-8.692 8.288-14.445h12.318c.025 3.22 1.19 5.144 2.966 5.017l12.47-.076-.076-7.374h-9.048l-.003-40.223c-.33-14.217 17.285-22.505 24.484-22.43l-42.805-.075v-1.292h90.022l.076 1.292-43.414.076c12.874.026 25.29 12.217 25.394 22.507v11.404h-1.673l-.075-11.254c0-11.253-14.173-21.77-25.547-21.442-9.835.282-25.09 9.657-24.938 21.366v3.5l23.34.15-.227 4.03 3.665 2.34 7.31 2.33-.107 6.042 5.238 1.543.044 6.038 6.282 2.695v6.25l3.984 2.454-.183 6.347 5.4 3.8H271.56l7.983 8.896H267.76l-5.86-8.896h-7.753l3.498 8.82-8.286-.077-1.98-8.743h-10.11l.074 9.426-36.192.002zm36.116-24.407v7.453h8.667l-1.752-7.45h-6.917z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.483,d:"M237.724 279.468h5.4v12.392h-5.4z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M298.05 171.73h2.707l-.017-4.594c-.035-1.997 1.793-4.01 2.668-4.077.97-.038 2.4 1.883 2.448 3.92l.04 4.764 2.87-.006v-11.83l-10.716.056v11.764z",transform:"matrix(1.9463 0 0 1.9848 -350 -48.13)"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.481,d:"M271.784 298.172h6.54v5.094h-6.54zm-3.874-8.758h6.54v5.093h-6.54zm-6.305-8.74h6.54v5.094h-6.54zm-5.41-7.374h6.54v5.092h-6.54z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.487,d:"m251.874 292.762 6.69.227 11.936 10.567v-6.234l-4.03-2.89v-4.942l-5.853-3.343v-5.323l-5.703-1.9V271.7l-2.89-2.356z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M280.154 277.327h1.596v11.482h-1.596z"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M163.755 161.05c.58 9.07-2.235 14.048-7.038 13.29-1.324-5.03 1.687-8.406 7.038-13.29zm-10.56 20.086c-4.27-2.172-1.19-18.756.45-25.708 1.213 8.955 3.24 21.683-.45 25.708z"}),(0,s.jsx)("path",{d:"M154.723 181.93c7.178 2.497 12.86-5.233 14.782-14.186-5.924 8.176-15.566 8.186-14.782 14.186zm-5.447 8.36c-5.613-1.483-2.232-19.078-1.212-26.116 1.234 7.27 5.103 23.708 1.212 26.116zm1.917-.54c.314-6.067 6.363-4.314 10.538-7.553-.68 3.033-3.247 8.407-10.536 7.554zm-6.87 8.128c-5.562-1.5-2.22-20.436-2.534-28.233 1.63 6.736 6.793 26.407 2.532 28.233zm2.607-.828c4.557 1.48 10.593-1.48 11.068-6.905-3.924 2.662-10.19.626-11.067 6.905z"}),(0,s.jsx)("path",{d:"M140.168 206.236c-5.32.425-2.94-15.702-2.935-30.722 1.954 14.04 7.277 26.89 2.935 30.722z"}),(0,s.jsx)("path",{d:"M142.017 205.51c3.593 1.8 10.03-1.08 11.866-7.148-6.49 2.822-10.83.064-11.866 7.147z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M163.755 161.05c.58 9.07-2.235 14.048-7.038 13.29-1.324-5.03 1.687-8.406 7.038-13.29m-10.56 20.086c-4.27-2.172-1.19-18.756.45-25.708 1.213 8.955 3.24 21.683-.45 25.708"}),(0,s.jsx)("path",{d:"M154.723 181.93c7.178 2.497 12.86-5.233 14.782-14.186-5.924 8.176-15.566 8.186-14.782 14.186m-5.447 8.36c-5.613-1.483-2.232-19.078-1.212-26.116 1.234 7.27 5.103 23.708 1.212 26.116m1.917-.54c.314-6.067 6.363-4.314 10.538-7.553-.68 3.033-3.247 8.407-10.536 7.554zm-6.87 8.128c-5.562-1.5-2.22-20.436-2.534-28.233 1.63 6.736 6.793 26.407 2.532 28.233zm2.607-.828c4.557 1.48 10.593-1.48 11.068-6.905-3.924 2.662-10.19.626-11.067 6.905z"}),(0,s.jsx)("path",{d:"M140.168 206.236c-5.32.425-2.94-15.702-2.935-30.722 1.954 14.04 7.277 26.89 2.935 30.722"}),(0,s.jsx)("path",{d:"M142.017 205.51c3.593 1.8 10.03-1.08 11.866-7.148-6.49 2.822-10.83.064-11.866 7.147z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M183.773 169.444c-.946 7.867-4.16 12.445-8.965 11.687-1.323-5.03 2.57-8.244 8.965-11.685zm-12.71 20.203c7.98 1.132 10.855-4.993 16.227-12.823-7.53 5.448-16.53 6.58-16.227 12.823z"}),(0,s.jsx)("path",{d:"M168.806 188.732c-4.35-5.22-.146-11.775 3.178-17.363-.714 8.31 2.118 12.935-3.178 17.36zm-1.926 8.622c-.492-5.105 8.206-6.24 12.14-9.078-1.324 2.95-3.328 10.894-12.14 9.078z"}),(0,s.jsx)("path",{d:"M165.05 197.47c-6.015-.68-3.518-10.893.793-16.568-1.815 7.832 3.177 13.277-.794 16.57z"}),(0,s.jsx)("path",{d:"M160.514 205.976c-6.845-3.026-2.458-11.612.115-16.68-1.1 6.657 4.385 11.725-.117 16.68z"}),(0,s.jsx)("path",{d:"M161.877 205.178c3.593 4.69 10.592-1.4 12.028-8.51-6.09 5.07-10.59 4.236-12.028 8.51z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M183.773 169.444c-.946 7.867-4.16 12.445-8.965 11.687-1.323-5.03 2.57-8.244 8.965-11.685zm-12.71 20.203c7.98 1.132 10.855-4.993 16.227-12.823-7.53 5.448-16.53 6.58-16.227 12.823"}),(0,s.jsx)("path",{d:"M168.806 188.732c-4.35-5.22-.146-11.775 3.178-17.363-.714 8.31 2.118 12.935-3.178 17.36zm-1.926 8.622c-.492-5.105 8.206-6.24 12.14-9.078-1.324 2.95-3.328 10.894-12.14 9.078"}),(0,s.jsx)("path",{d:"M165.05 197.47c-6.015-.68-3.518-10.893.793-16.568-1.815 7.832 3.177 13.277-.794 16.57z"}),(0,s.jsx)("path",{d:"M160.514 205.976c-6.845-3.026-2.458-11.612.115-16.68-1.1 6.657 4.385 11.725-.117 16.68z"}),(0,s.jsx)("path",{d:"M161.877 205.178c3.593 4.69 10.592-1.4 12.028-8.51-6.09 5.07-10.59 4.236-12.028 8.51"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M326.65 170.222c.91 4.088 1.137 12.145 8.4 10.555 1.058-7.49-5.032-7.83-8.4-10.555z"}),(0,s.jsx)("path",{d:"M339.01 189.53c-.263-7.717-8.585-6.016-15.77-12.37 1.967 6.694 8.925 14.865 15.77 12.37z"}),(0,s.jsx)("path",{d:"M340.722 188.615c4.88-3.367 1.135-10.705-3.404-17.135 1.703 7-2.04 13.427 3.404 17.135zm2.14 8.74c-7.866.604-9.265-3.33-12.367-8.397 5.37 3.48 12.557 1.286 12.368 8.396zm1.948.232c-3.747-3.065.907-9.645-.682-16.226 2.95 4.16 7.49 14.11.682 16.228z"}),(0,s.jsx)("path",{d:"M348.1 205.742c-7.868 1.853-10.402-2.306-12.37-9.303 6.392 5.86 9.948 3.1 12.37 9.3z"}),(0,s.jsx)("path",{d:"M349.228 205.645c5.484-.076 3.026-10.93.226-15.886.757 5.976-4.047 12.86-.226 15.884z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M326.65 170.222c.91 4.088 1.137 12.145 8.4 10.555 1.058-7.49-5.032-7.83-8.4-10.555"}),(0,s.jsx)("path",{d:"M339.01 189.53c-.263-7.717-8.585-6.016-15.77-12.37 1.967 6.694 8.925 14.865 15.77 12.37"}),(0,s.jsx)("path",{d:"M340.722 188.615c4.88-3.367 1.135-10.705-3.404-17.135 1.703 7-2.04 13.427 3.404 17.135m2.14 8.74c-7.866.604-9.265-3.33-12.367-8.397 5.37 3.48 12.557 1.286 12.368 8.396zm1.948.232c-3.747-3.065.907-9.645-.682-16.226 2.95 4.16 7.49 14.11.682 16.228z"}),(0,s.jsx)("path",{d:"M348.1 205.742c-7.868 1.853-10.402-2.306-12.37-9.303 6.392 5.86 9.948 3.1 12.37 9.3z"}),(0,s.jsx)("path",{d:"M349.228 205.645c5.484-.076 3.026-10.93.226-15.886.757 5.976-4.047 12.86-.226 15.884z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M345.873 161.1c.984 4.543-.917 13.513 6.344 13.443 3.037-5.132-3.435-9.96-6.344-13.443z"}),(0,s.jsx)("path",{d:"M356.777 181.365c4.576-3.138.452-13.44-.97-25.04-1.11 10.343-3.563 21.638.97 25.04z"}),(0,s.jsx)("path",{d:"M354.32 182.158c.573-5.664-8.356-6.927-14.478-14.422 1.587 6.01 6.112 14.79 14.477 14.422zm6.102 8.832c-4.81-4.36.905-16.87 1.143-26.568.745 8.95 4.677 24.98-1.143 26.567zm-2.734-1.258c-7.032.452-8.887-4.698-9.708-7.637 3.776 2.72 9.745 1.438 9.708 7.637zm7.064 7.754c5.407-.228 3.406-20.738 2.657-27.214-.537 6.89-6.176 24.72-2.66 27.214zm-2.38-.363c-4.672.713-9.41-2.002-10.694-6.642 4.035 1.757 10.707.366 10.695 6.644z"}),(0,s.jsx)("path",{d:"M369.094 206.01c5.788 2.357 3.71-24.387 2.962-30.56-.535 7.88-7.39 27.23-2.962 30.56z"}),(0,s.jsx)("path",{d:"M367.737 206.006c-5.815.864-10.097-2.686-11.76-7.554 5.935 2.213 10.555 1.427 11.76 7.554z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M363.553 237.72c.716-6.985-4.635-19.687-.837-26.458.517-.93-1.137-3.4-2.206-1.9-1.67 2.39-3.386 9.207-4.104 6.69-.76-2.736-.878-7.577-3.346-8.517-1.575-.55-3.8-.91-3.194 1.522.603 2.34 1.954 5.57.458 5.78-.87.125-3.37-3.186-5.475-4.715-1.7-1.365-4.23.77-1.75 2.812 8.065 6.577 15.88 9.537 20.452 24.786z"}),(0,s.jsx)("path",{d:"M363.553 237.72c.716-6.985-4.635-19.687-.837-26.458.517-.93-1.137-3.4-2.206-1.9-1.67 2.39-3.386 9.207-4.104 6.69-.76-2.736-.878-7.577-3.346-8.517-1.575-.55-3.8-.91-3.194 1.522.603 2.34 1.954 5.57.458 5.78-.87.125-3.37-3.186-5.475-4.715-1.7-1.365-4.23.77-1.75 2.812 8.065 6.577 15.88 9.537 20.452 24.786z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M345.873 161.1c.984 4.543-.917 13.513 6.344 13.443 3.037-5.132-3.435-9.96-6.344-13.443"}),(0,s.jsx)("path",{d:"M356.777 181.365c4.576-3.138.452-13.44-.97-25.04-1.11 10.343-3.563 21.638.97 25.04"}),(0,s.jsx)("path",{d:"M354.32 182.158c.573-5.664-8.356-6.927-14.478-14.422 1.587 6.01 6.112 14.79 14.477 14.422zm6.102 8.832c-4.81-4.36.905-16.87 1.143-26.568.745 8.95 4.677 24.98-1.143 26.567zm-2.734-1.258c-7.032.452-8.887-4.698-9.708-7.637 3.776 2.72 9.745 1.438 9.708 7.637m7.064 7.754c5.407-.228 3.406-20.738 2.657-27.214-.537 6.89-6.176 24.72-2.66 27.214zm-2.38-.363c-4.672.713-9.41-2.002-10.694-6.642 4.035 1.757 10.707.366 10.695 6.644z"}),(0,s.jsx)("path",{d:"M369.094 206.01c5.788 2.357 3.71-24.387 2.962-30.56-.535 7.88-7.39 27.23-2.962 30.56"}),(0,s.jsx)("path",{d:"M367.737 206.006c-5.815.864-10.097-2.686-11.76-7.554 5.935 2.213 10.555 1.427 11.76 7.554"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.501,d:"M244.38 141.09c-1.017-1.062-.723-1.468.78-1.485 1.194-.075 3.558.73 4.455.078.822-.597.495-3.13.86-4.297.16-.65.615-1.673 1.64-.078 3.032 4.86 6.82 10.692 8.438 16.407.885 3.203.443 8.36-2.97 11.094l-2.42-7.034c-1.152-3.343-7.348-11.365-10.783-14.687z",transform:"matrix(-1.937 0 0 1.9463 857.173 -41.533)"}),(0,s.jsx)("path",{d:"M383.805 233.07c1.97-2.067 1.4-2.857-1.513-2.89-2.31-.146-6.89 1.423-8.627.152-1.592-1.162-.96-6.09-1.666-8.363-.31-1.27-1.193-3.258-3.18-.154-5.872 9.457-13.207 20.81-16.343 31.933-1.715 6.233-.858 16.27 5.75 21.59l4.692-13.685c2.23-6.507 14.23-22.12 20.884-28.586z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M390.38 216.058c-2.647 8.51-4.238 15.487-.417 16.308 4.083-.71 2.308-8.932.417-16.308zm-.272 23.89c4.354 2.31 9.046-8.787 8.07-17.528-2.192 7.492-9.577 12.118-8.07 17.527zm-1.614-.228c.675-6.052-1.81-5.892-5.067-11.675.345 6.532 1.972 12.01 5.067 11.674z"}),(0,s.jsx)("path",{d:"M389.933 248.592c5.08 1.443 10.905-10.656 10.687-19.597-2.116 9.897-13.146 13.852-10.687 19.597z"}),(0,s.jsx)("path",{d:"M388.273 248.366c2.037-4.69-2.12-4.116-4.878-12.52-.913 8.697.413 12.666 4.878 12.52zm1.473 9.124c6.594 1.134 9.994-13.425 13.27-20.396-6.485 9.14-14.255 14.23-13.27 20.395z"}),(0,s.jsx)("path",{d:"M388.213 256.99c1.927-5.368-3.52-5.068-6.39-13.09.456 10.175 1.777 13.845 6.39 13.09zm1.9 9.247c4.17.3 11.667-11.342 11.828-18.533-3.56 7.92-14.74 13.167-11.825 18.533z"}),(0,s.jsx)("path",{d:"M387.01 264.895c1.735-5.6-3.107-5.636-5.256-11.91-.152 9.458 1.324 12.666 5.257 11.91zm.16 10.09c7.352 1.287 9.234-8.406 13.572-18.266-4.28 7.846-13.95 12.25-13.573 18.264z"}),(0,s.jsx)("path",{d:"M386.648 273.637c2.384-5.064-3.14-5.068-6.086-12.635-.152 10.706 1.7 13.846 6.086 12.635z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M390.38 216.058c-2.647 8.51-4.238 15.487-.417 16.308 4.083-.71 2.308-8.932.417-16.308m-.272 23.89c4.354 2.31 9.046-8.787 8.07-17.528-2.192 7.492-9.577 12.118-8.07 17.527zm-1.614-.228c.675-6.052-1.81-5.892-5.067-11.675.345 6.532 1.972 12.01 5.067 11.674z"}),(0,s.jsx)("path",{d:"M389.933 248.592c5.08 1.443 10.905-10.656 10.687-19.597-2.116 9.897-13.146 13.852-10.687 19.597"}),(0,s.jsx)("path",{d:"M388.273 248.366c2.037-4.69-2.12-4.116-4.878-12.52-.913 8.697.413 12.666 4.878 12.52m1.473 9.124c6.594 1.134 9.994-13.425 13.27-20.396-6.485 9.14-14.255 14.23-13.27 20.395z"}),(0,s.jsx)("path",{d:"M388.213 256.99c1.927-5.368-3.52-5.068-6.39-13.09.456 10.175 1.777 13.845 6.39 13.09m1.9 9.247c4.17.3 11.667-11.342 11.828-18.533-3.56 7.92-14.74 13.167-11.825 18.533z"}),(0,s.jsx)("path",{d:"M387.01 264.895c1.735-5.6-3.107-5.636-5.256-11.91-.152 9.458 1.324 12.666 5.257 11.91zm.16 10.09c7.352 1.287 9.234-8.406 13.572-18.266-4.28 7.846-13.95 12.25-13.573 18.264z"}),(0,s.jsx)("path",{d:"M386.648 273.637c2.384-5.064-3.14-5.068-6.086-12.635-.152 10.706 1.7 13.846 6.086 12.635"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.501,d:"M256.81 166.87c3.334.016 3.985-4.687 3.985-5.937-1.64.312-4.61 3.28-3.985 5.937z",transform:"matrix(-1.937 0 0 1.9463 857.387 -41.81)"}),(0,s.jsx)("path",{d:"M359.927 282.968c-6.458.03-7.72-9.122-7.72-11.555 3.18.607 8.933 6.386 7.72 11.555"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M372.836 241.38c-2.647 8.51-3.705 12.596-.113 15.32 4.69-2.61 2.005-7.944.113-15.32zm-1.48 22.245c1.97-6.278-2.874-7.79-5.445-14.865-.262 9.344 1.06 16.19 5.448 14.865z"}),(0,s.jsx)("path",{d:"M373.288 264.98c3.443 1.324 7.68-6.655 5.335-14.637-2.42 7.187-8.36 8.925-5.335 14.638zm-3.635 7.155c3.33-5.144-1.968-5.41-4.65-12.594-.15 9.46.717 13.35 4.65 12.596z"}),(0,s.jsx)("path",{d:"M369.66 280.986c2.536-5.823-2.987-5.068-6.238-12.253-.152 10.706 1.625 13.01 6.238 12.253zm2.497-8.513c2.877.074 8.472-4.956 6.81-11.234-2.42 5.257-9.268 4.725-6.81 11.232z"}),(0,s.jsx)("path",{d:"M371.36 280.068c4.692.983 8.246-6.2 7.718-11.12-3.67 4.58-8.704 4.954-7.72 11.12z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M372.836 241.38c-2.647 8.51-3.705 12.596-.113 15.32 4.69-2.61 2.005-7.944.113-15.32m-1.48 22.245c1.97-6.278-2.874-7.79-5.445-14.865-.262 9.344 1.06 16.19 5.448 14.865z"}),(0,s.jsx)("path",{d:"M373.288 264.98c3.443 1.324 7.68-6.655 5.335-14.637-2.42 7.187-8.36 8.925-5.335 14.638zm-3.635 7.155c3.33-5.144-1.968-5.41-4.65-12.594-.15 9.46.717 13.35 4.65 12.596z"}),(0,s.jsx)("path",{d:"M369.66 280.986c2.536-5.823-2.987-5.068-6.238-12.253-.152 10.706 1.625 13.01 6.238 12.253m2.497-8.513c2.877.074 8.472-4.956 6.81-11.234-2.42 5.257-9.268 4.725-6.81 11.232z"}),(0,s.jsx)("path",{d:"M371.36 280.068c4.692.983 8.246-6.2 7.718-11.12-3.67 4.58-8.704 4.954-7.72 11.12z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.501,d:"M235.63 159.06c-.297-.385-1.15.01-.937.938.198 1.256 2.05 7.704 5.233 9.922 2.27 1.636 14.2 4.27 19.61 5.39 2.977.6 5.47 2.084 7.423 4.454-.81-3.1-1.46-5.395-2.5-8.203-1.016-2.466-3.703-5.166-6.486-5.31-5.17-.187-11.86-.627-16.72-2.736-2.51-1.048-4.01-2.464-5.625-4.453z",transform:"matrix(-1.937 0 0 1.9463 857.173 -41.533)"}),(0,s.jsx)("path",{d:"M400.754 268.045c.575-.75 2.228.02 1.815 1.826-.386 2.447-3.973 14.996-10.138 19.313-4.397 3.184-27.508 8.313-37.985 10.49-5.767 1.167-10.596 4.057-14.38 8.67 1.566-6.032 2.823-10.5 4.844-15.966 1.965-4.803 7.17-10.058 12.56-10.34 10.013-.363 22.97-1.22 32.387-5.324 4.86-2.04 7.77-4.795 10.896-8.667z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M386.598 297.655c1.057-4.228-.29-5.588.865-12.208-6.345 8.51-3.96 12.542-.865 12.208z"}),(0,s.jsx)("path",{d:"M387.297 298.704c4.202 1.17 15.13-8.405 15.448-15.55-2.954 5.135-17.713 10.674-15.448 15.55zm-6.87 6.31c2.875-1.57 2.064-8.22-.542-10.464-.534 6.49-4.453 10.308.543 10.465z"}),(0,s.jsx)("path",{d:"M383.394 306.83c5.082 1.593 10.83-7.615 15.02-11.614-4.777 4.118-19.226 6.096-15.02 11.613zm-6.99 4.573c3.556-2.33.236-6.93-.013-16.016-3.572 6.567-4.3 15.553.014 16.016z"}),(0,s.jsx)("path",{d:"M377.083 313.74c1.814 2.43 15.24-5.943 18.595-12.148-11.468 8.53-21.585 7.39-18.595 12.147zm-1.34 7.578c3.294-2.402-2.837-8.718-4.11-17.196.076 10.327-1.34 18.18 4.11 17.196z"}),(0,s.jsx)("path",{d:"M379.324 318.468c1.652 2.657 11.896-4.375 16.312-12.03-6.79 5.946-18.21 7.538-16.312 12.03zm-10.468 11.57c3.71-.66 3.2-10.046.37-17.69-3.194 9.23-4.608 18.595-.37 17.688z"}),(0,s.jsx)("path",{d:"M378.16 324.92c1.28 1.518 16.38-9.062 16.162-13.363-4.778 6.855-20.747 8.225-16.162 13.363zm-17.524 13.883c5.12-2.1 2.713-10.39 3.72-19.327-4.03 8.732-8.79 17.496-3.72 19.327z"}),(0,s.jsx)("path",{d:"M370.218 331.63c.815 2.808 13.112-2.4 19.048-10.968-7.17 5.566-21.096 6.323-19.048 10.967z"}),(0,s.jsx)("path",{d:"M362.277 340.125c2.65 4.406 17.9-3.663 20.115-11.234-4.93 6.553-21.964 5.564-20.115 11.236z"}),(0,s.jsx)("path",{d:"M369.272 343.56c2.8.302 9.31-5.03 11.142-7.812-5.234 2.596-12.308 6.17-11.142 7.812z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M346.304 310.784c3.332.483 7.69-5.634 4.78-11.833-1.446 6.19-11.144 10.69-4.78 11.835zm7.136-3.65c2.572 1.44 9.08-5.486 8.253-10.02-3.637 5.794-10.94 7.465-8.254 10.02z"}),(0,s.jsx)("path",{d:"M345.837 317.308c2.5 2.43 14.784-10.048 18.443-15.72-10.63 9.06-21.508 11.343-18.443 15.72zm-2.937 7.476c1.956 2.96 10.146-5.97 15.324-13.398-6.563 6.477-17.68 9.44-15.324 13.398z"}),(0,s.jsx)("path",{d:"M343.735 317.668c2.003-5.29-1.315-6.132-2.816-12.71-2.966 3.637-2.633 13.693 2.814 12.71zm-3.27 7.3c3.98-1.11-2.456-7.88-3.805-12.71-.607 8.883-.502 13.312 3.805 12.71zm-3.885 6.382c3.673-1.338-2.078-4.69-2.666-12.103-1.825 2.725-2.783 13.085 2.665 12.102z"}),(0,s.jsx)("path",{d:"M331.086 332.914c2.342-1.267 1.378-7.31-2.217-8.11-.838 4.743-.73 8.18 2.215 8.11z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M346.304 310.784c3.332.483 7.69-5.634 4.78-11.833-1.446 6.19-11.144 10.69-4.78 11.835zm7.136-3.65c2.572 1.44 9.08-5.486 8.253-10.02-3.637 5.794-10.94 7.465-8.254 10.02z"}),(0,s.jsx)("path",{d:"M345.837 317.308c2.5 2.43 14.784-10.048 18.443-15.72-10.63 9.06-21.508 11.343-18.443 15.72m-2.937 7.476c1.956 2.96 10.146-5.97 15.324-13.398-6.563 6.477-17.68 9.44-15.324 13.398"}),(0,s.jsx)("path",{d:"M343.735 317.668c2.003-5.29-1.315-6.132-2.816-12.71-2.966 3.637-2.633 13.693 2.814 12.71zm-3.27 7.3c3.98-1.11-2.456-7.88-3.805-12.71-.607 8.883-.502 13.312 3.805 12.71m-3.885 6.382c3.673-1.338-2.078-4.69-2.666-12.103-1.825 2.725-2.783 13.085 2.665 12.102z"}),(0,s.jsx)("path",{d:"M331.086 332.914c2.342-1.267 1.378-7.31-2.217-8.11-.838 4.743-.73 8.18 2.215 8.11z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M386.598 297.655c1.057-4.228-.29-5.588.865-12.208-6.345 8.51-3.96 12.542-.865 12.208"}),(0,s.jsx)("path",{d:"M387.297 298.704c4.202 1.17 15.13-8.405 15.448-15.55-2.954 5.135-17.713 10.674-15.448 15.55m-6.87 6.31c2.875-1.57 2.064-8.22-.542-10.464-.534 6.49-4.453 10.308.543 10.465z"}),(0,s.jsx)("path",{d:"M383.394 306.83c5.082 1.593 10.83-7.615 15.02-11.614-4.777 4.118-19.226 6.096-15.02 11.613zm-6.99 4.573c3.556-2.33.236-6.93-.013-16.016-3.572 6.567-4.3 15.553.014 16.016z"}),(0,s.jsx)("path",{d:"M377.083 313.74c1.814 2.43 15.24-5.943 18.595-12.148-11.468 8.53-21.585 7.39-18.595 12.147zm-1.34 7.578c3.294-2.402-2.837-8.718-4.11-17.196.076 10.327-1.34 18.18 4.11 17.196"}),(0,s.jsx)("path",{d:"M379.324 318.468c1.652 2.657 11.896-4.375 16.312-12.03-6.79 5.946-18.21 7.538-16.312 12.03m-10.468 11.57c3.71-.66 3.2-10.046.37-17.69-3.194 9.23-4.608 18.595-.37 17.688z"}),(0,s.jsx)("path",{d:"M378.16 324.92c1.28 1.518 16.38-9.062 16.162-13.363-4.778 6.855-20.747 8.225-16.162 13.363m-17.524 13.883c5.12-2.1 2.713-10.39 3.72-19.327-4.03 8.732-8.79 17.496-3.72 19.327"}),(0,s.jsx)("path",{d:"M370.218 331.63c.815 2.808 13.112-2.4 19.048-10.968-7.17 5.566-21.096 6.323-19.048 10.967z"}),(0,s.jsx)("path",{d:"M362.277 340.125c2.65 4.406 17.9-3.663 20.115-11.234-4.93 6.553-21.964 5.564-20.115 11.236z"}),(0,s.jsx)("path",{d:"M369.272 343.56c2.8.302 9.31-5.03 11.142-7.812-5.234 2.596-12.308 6.17-11.142 7.812"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.501,d:"M235.83 159.52c-.377-.307-.876-.76-.704.176 1.41 7.41 1.855 9.483 8.35 12.044 6.6 2.508 8.967 1.63 14.588 1.533 3.034-.11 6.567 1.404 8.67 3.618.98 1.03 1.688 1.443 1.295.13-.396-1.312-.78-3.015-1.398-4.38-1.348-3-4.834-5.865-8.32-7.01-4.88-1.717-10.14-.854-15.165-2.164-2.62-.724-5.138-2.183-7.318-3.945z",transform:"matrix(-1.7055 -.9227 -.9183 1.7137 926.17 287.993)"}),(0,s.jsx)("path",{d:"M377.47 343.746c.926-.178 2.193-.494 1.04.95-9.208 11.4-11.872 14.54-25.3 12.937-13.562-1.795-16.792-5.48-26.29-10.835-5.07-2.99-12.488-3.654-18.11-1.8-2.617.86-4.2.91-2.324-.976 1.877-1.885 4.094-4.45 6.402-6.216 5.056-3.9 13.632-5.592 20.63-4.336 9.898 1.56 18.076 7.892 27.85 10.284 5.134 1.178 10.767 1 16.103-.008z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.503,d:"M287.66 208.42c.884.11 1.444 1.822 1.88.663.737-1.877.22-3.37-.61-3.205-.978.26-2.634 2.456-1.27 2.542z",transform:"matrix(-1.9235 0 0 1.9463 853.242 -41.856)"}),(0,s.jsx)("path",{d:"M299.92 363.792c-1.7.214-2.778 3.546-3.615 1.29-1.42-3.653-.425-6.558 1.17-6.237 1.883.508 5.068 4.78 2.444 4.947z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M318.535 348.932c4.813 1.252 6.063-4.296 6.535-8.327-4.34.935-8.887 3.45-6.535 8.327zm-1.935 4.928c.848 3.838 10.264-.118 12.094-5.493-6.694 3.906-13.298-.35-12.094 5.493z"}),(0,s.jsx)("path",{d:"M313.233 353.672c4.3.712 1.907-6.028 1.66-12.676-2.41 5.42-5.848 12.1-1.66 12.676zm-5.433 6.368c4.684.586 1.713-8.446.44-14.516-1.538 5.626-4.924 14.022-.44 14.516z"}),(0,s.jsx)("path",{d:"M310.587 360.24c.57 5.11 10.252-.61 15.886-3.75-7.442 1.152-16.722-1.263-15.886 3.75zm-5.323 7.147c.57 5.11 10.25-.61 15.886-3.752-7.443 1.154-16.722-1.26-15.886 3.752z"}),(0,s.jsx)("path",{d:"M302.79 367.182c4.454.13 1.18-9.587-.093-15.656-1.538 5.625-4.47 15.466.092 15.656zm-3.843 6.214c.57 5.11 9.417.073 14.9-3.448-7.52 1.61-15.736-1.566-14.9 3.448z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M318.535 348.932c4.813 1.252 6.063-4.296 6.535-8.327-4.34.935-8.887 3.45-6.535 8.327m-1.935 4.928c.848 3.838 10.264-.118 12.094-5.493-6.694 3.906-13.298-.35-12.094 5.493"}),(0,s.jsx)("path",{d:"M313.233 353.672c4.3.712 1.907-6.028 1.66-12.676-2.41 5.42-5.848 12.1-1.66 12.676m-5.433 6.368c4.684.586 1.713-8.446.44-14.516-1.538 5.626-4.924 14.022-.44 14.516"}),(0,s.jsx)("path",{d:"M310.587 360.24c.57 5.11 10.252-.61 15.886-3.75-7.442 1.152-16.722-1.263-15.886 3.75m-5.323 7.147c.57 5.11 10.25-.61 15.886-3.752-7.443 1.154-16.722-1.26-15.886 3.752"}),(0,s.jsx)("path",{d:"M302.79 367.182c4.454.13 1.18-9.587-.093-15.656-1.538 5.625-4.47 15.466.092 15.656zm-3.843 6.214c.57 5.11 9.417.073 14.9-3.448-7.52 1.61-15.736-1.566-14.9 3.448"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M348.73 364.83c2.648 4.406 12.425-3.206 17.758-7.128-7.667 2.368-19.607 1.458-17.76 7.13z"}),(0,s.jsx)("path",{d:"M338.75 369.407c.953 5.052 17.448.883 19.8-2.862-7.585 3.213-20.705-1.502-19.8 2.862z"}),(0,s.jsx)("path",{d:"M330.983 373.26c.497 2.772 13.116 1.72 19.496-.428-6.9.858-20.78-4.01-19.498.43z"}),(0,s.jsx)("path",{d:"M324.395 376.56c.04 2.542 14.712 4 19.648-.125-9.864 1.464-20.628-5.99-19.648.124z"}),(0,s.jsx)("path",{d:"M312.79 378.94c-.568 3.53 15.395 2.783 20.407 1.014-8.57-.662-19.638-6.215-20.407-1.015z"}),(0,s.jsx)("path",{d:"M312.56 375.724c3.597 3.3 12.85-11.443 15.86-17.938-7.118 7.423-19.966 15.052-15.86 17.938z"}),(0,s.jsx)("path",{d:"M323.044 373.22c4.283 2.846 8.214-7.563 10.388-15.2-4.078 6.586-14.49 10.87-10.388 15.2z"}),(0,s.jsx)("path",{d:"M331.335 370.387c4.283 2.845 6.695-6.576 7.73-12.466-2.938 5.07-11.832 8.138-7.73 12.468z"}),(0,s.jsx)("path",{d:"M339.35 365.37c4.283 2.845 9.66-5.055 8.413-12.844-1.644 8.032-12.515 8.513-8.413 12.844zm-16.257 22.174c2.11 5.372 24.295-4.696 28.015-11.413-7.127 6.026-30.08 5.207-28.015 11.415z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M348.73 364.83c2.648 4.406 12.425-3.206 17.758-7.128-7.667 2.368-19.607 1.458-17.76 7.13z"}),(0,s.jsx)("path",{d:"M338.75 369.407c.953 5.052 17.448.883 19.8-2.862-7.585 3.213-20.705-1.502-19.8 2.862"}),(0,s.jsx)("path",{d:"M330.983 373.26c.497 2.772 13.116 1.72 19.496-.428-6.9.858-20.78-4.01-19.498.43z"}),(0,s.jsx)("path",{d:"M324.395 376.56c.04 2.542 14.712 4 19.648-.125-9.864 1.464-20.628-5.99-19.648.124z"}),(0,s.jsx)("path",{d:"M312.79 378.94c-.568 3.53 15.395 2.783 20.407 1.014-8.57-.662-19.638-6.215-20.407-1.015z"}),(0,s.jsx)("path",{d:"M312.56 375.724c3.597 3.3 12.85-11.443 15.86-17.938-7.118 7.423-19.966 15.052-15.86 17.938"}),(0,s.jsx)("path",{d:"M323.044 373.22c4.283 2.846 8.214-7.563 10.388-15.2-4.078 6.586-14.49 10.87-10.388 15.2"}),(0,s.jsx)("path",{d:"M331.335 370.387c4.283 2.845 6.695-6.576 7.73-12.466-2.938 5.07-11.832 8.138-7.73 12.468z"}),(0,s.jsx)("path",{d:"M339.35 365.37c4.283 2.845 9.66-5.055 8.413-12.844-1.644 8.032-12.515 8.513-8.413 12.844m-16.257 22.174c2.11 5.372 24.295-4.696 28.015-11.413-7.127 6.026-30.08 5.207-28.015 11.415z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.5,d:"M366.62 143.7c.368-3.59-2.38-10.115-.43-13.594.266-.478-.584-1.747-1.133-.977-.858 1.227-1.74 4.73-2.11 3.436-.39-1.406-.45-3.893-1.718-4.376-.81-.282-1.955-.467-1.643.783.31 1.202 1.004 2.862.235 2.97-.446.064-1.73-1.637-2.813-2.423-.873-.7-2.174.396-.9 1.445 4.145 3.38 8.16 4.9 10.51 12.735z",transform:"matrix(-1.911 0 0 1.9463 846.858 -41.507)"}),(0,s.jsx)("path",{d:"M146.235 238.176c-.703-6.985 4.55-19.686.822-26.458-.51-.93 1.116-3.4 2.165-1.9 1.64 2.39 3.325 9.207 4.03 6.69.747-2.736.862-7.577 3.285-8.517 1.546-.55 3.732-.91 3.136 1.524-.592 2.34-1.92 5.57-.45 5.78.853.125 3.31-3.185 5.377-4.715 1.666-1.366 4.152.77 1.716 2.81-7.92 6.578-15.592 9.538-20.08 24.787z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M132.01 343.318c-.93-.178-2.202-.494-1.044.95 9.252 11.4 11.93 14.54 25.42 12.936 13.63-1.794 16.874-5.48 26.416-10.834 5.097-2.99 12.55-3.654 18.198-1.802 2.63.86 4.22.913 2.335-.974-1.885-1.885-4.113-4.45-6.433-6.216-5.08-3.9-13.696-5.592-20.728-4.337-9.945 1.56-18.163 7.895-27.983 10.287-5.16 1.177-10.817 1-16.18-.008z"}),(0,s.jsx)("path",{d:"M132.01 343.318c-.93-.178-2.202-.494-1.044.95 9.252 11.4 11.93 14.54 25.42 12.936 13.63-1.794 16.874-5.48 26.416-10.834 5.097-2.99 12.55-3.654 18.198-1.802 2.63.86 4.22.913 2.335-.974-1.885-1.885-4.113-4.45-6.433-6.216-5.08-3.9-13.696-5.592-20.728-4.337-9.945 1.56-18.163 7.895-27.983 10.287-5.16 1.177-10.817 1-16.18-.008z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M209.873 363.685c1.72.214 2.81 3.546 3.657 1.29 1.436-3.653.43-6.56-1.184-6.238-1.905.508-5.128 4.78-2.473 4.948z"}),(0,s.jsx)("path",{d:"M209.873 363.685c1.72.214 2.81 3.546 3.657 1.29 1.436-3.653.43-6.56-1.184-6.238-1.905.508-5.128 4.78-2.473 4.948"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M206.038 366.79c4.615 1.05 4.55-10.067-.162-14.78 2.075 7.14-3.468 13.668.162 14.78zm-1.791-.098c.304 5.283-12.966-.69-16.377-4.8 7.84 3.33 15.99.574 16.377 4.8zm-5.817-7.555c.475 5.118-11.508.618-15.05-3.38 7.87 2.543 14.527-.832 15.05 3.38zm2.21.733c4.614 1.052 3.866-10.445-.62-14.396 2.153 7.672-3.01 13.287.62 14.397zm-4.862-7.003c4.615 1.05 1.967-8.85-1.454-12.802.556 7.217-1.72 12.223 1.454 12.802zm-2.434-.03c.475 5.27-8.847 1.224-12.465-3.76 7.79 2.542 11.94-.45 12.463 3.76zm-2.548-4.004c3.023-2.174-.184-7.923-5.94-7.567.564 3.472 2.552 9.58 5.94 7.567zm22.722 23.842c.305 5.283-12.968 2.656-17.137-2.974 8.374 1.584 16.75-1.25 17.14 2.976z"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsxs)("g",{stroke:"#000",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M125.637 232.64c-1.98-2.067-1.407-2.857 1.52-2.89 2.322-.146 6.923 1.423 8.67.152 1.6-1.162.962-6.09 1.672-8.363.31-1.27 1.195-3.26 3.19-.154 5.902 9.457 13.272 20.81 16.423 31.933 1.723 6.233.102 15.964-5.626 22.504.202-5.576-1.877-9.327-4.41-13.99-3.13-6.13-14.756-22.73-21.44-29.195z"}),(0,s.jsx)("path",{d:"M149.966 282.368c6.49.03 7.604-8.667 7.604-11.1-3.194.608-8.82 5.93-7.604 11.1z"})]}),(0,s.jsx)("path",{d:"M125.637 232.64c-1.98-2.067-1.407-2.857 1.52-2.89 2.322-.146 6.923 1.423 8.67.152 1.6-1.162.962-6.09 1.672-8.363.31-1.27 1.195-3.26 3.19-.154 5.902 9.457 13.272 20.81 16.423 31.933 1.723 6.233.102 15.964-5.626 22.504.202-5.576-1.877-9.327-4.41-13.99-3.13-6.13-14.756-22.73-21.44-29.195z"}),(0,s.jsx)("path",{d:"M149.966 282.368c6.49.03 7.604-8.667 7.604-11.1-3.194.608-8.82 5.93-7.604 11.1"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M206.038 366.79c4.615 1.05 4.55-10.067-.162-14.78 2.075 7.14-3.468 13.668.162 14.78m-1.79-.098c.303 5.283-12.967-.69-16.378-4.8 7.84 3.33 15.99.574 16.377 4.8zm-5.818-7.555c.475 5.118-11.508.618-15.05-3.38 7.87 2.543 14.527-.832 15.05 3.38m2.21.733c4.614 1.052 3.866-10.445-.62-14.396 2.153 7.672-3.01 13.287.62 14.397zm-4.862-7.003c4.615 1.05 1.967-8.85-1.454-12.802.556 7.217-1.72 12.223 1.454 12.802m-2.434-.03c.475 5.27-8.847 1.224-12.465-3.76 7.79 2.542 11.94-.45 12.463 3.76zm-2.548-4.004c3.023-2.174-.184-7.923-5.94-7.567.564 3.472 2.552 9.58 5.94 7.567m22.722 23.842c.305 5.283-12.968 2.656-17.137-2.974 8.374 1.584 16.75-1.25 17.14 2.976z"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M160.805 363.224c.476 5.27-14.015-.525-17.633-5.51 7.793 2.542 17.11 1.3 17.633 5.51zm8.878 2.254c3.023-2.174-3.15-7.772-8.067-9.088.563 3.472 4.68 11.1 8.067 9.088zm.933 3.65c.323 4.737-15.54 2.14-19.688-2.24 13.648 2.467 19.24-1.82 19.688 2.24z"}),(0,s.jsx)("path",{d:"M178.036 372.292c1.76 4.4-13.464 3.327-18.81.768 8.638-.075 17.6-3.834 18.81-.768z"}),(0,s.jsx)("path",{d:"M185.153 375.5c1.685 3.943-12.4 3.858-19.264 1.677 9.09-.074 17.595-5.58 19.262-1.678zm10.247 2.12c2.494 4.667-12.363 5.12-17.183 2.823 8.59-1.18 15.057-6.497 17.182-2.823z"}),(0,s.jsx)("path",{d:"M177.993 369.627c-4.727 2.98-4.473-5.807-8.233-11.893 5.907 5.38 11.436 9.05 8.233 11.893zm8.392 3.153c-3.964 3.512-7.134-8.547-10.743-15.313 5.834 6.442 14.402 12.396 10.743 15.313zm11.065 3.37c-3.357 3.892-13.065-11.433-16.596-19.42 5.376 6.217 19.267 16.122 16.597 19.42z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M160.805 363.224c.476 5.27-14.015-.525-17.633-5.51 7.793 2.542 17.11 1.3 17.633 5.51m8.878 2.254c3.023-2.174-3.15-7.772-8.067-9.088.563 3.472 4.68 11.1 8.067 9.088m.933 3.65c.323 4.737-15.54 2.14-19.688-2.24 13.648 2.467 19.24-1.82 19.688 2.24"}),(0,s.jsx)("path",{d:"M178.036 372.292c1.76 4.4-13.464 3.327-18.81.768 8.638-.075 17.6-3.834 18.81-.768"}),(0,s.jsx)("path",{d:"M185.153 375.5c1.685 3.943-12.4 3.858-19.264 1.677 9.09-.074 17.595-5.58 19.262-1.678zm10.247 2.12c2.494 4.667-12.363 5.12-17.183 2.823 8.59-1.18 15.057-6.497 17.182-2.823zm-17.407-7.993c-4.727 2.98-4.473-5.807-8.233-11.893 5.907 5.38 11.436 9.05 8.233 11.893"}),(0,s.jsx)("path",{d:"M186.385 372.78c-3.964 3.512-7.134-8.547-10.743-15.313 5.834 6.442 14.402 12.396 10.743 15.313m11.065 3.37c-3.357 3.892-13.065-11.433-16.596-19.42 5.376 6.217 19.267 16.122 16.597 19.42z"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M188.016 387.838c-1.675 5.917-26.38-5.577-29.138-11.532 14.136 7.49 29.476 5.924 29.138 11.532"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M108.607 267.615c-.578-.75-2.24.02-1.824 1.826.385 2.447 3.99 14.996 10.185 19.313 4.418 3.184 27.64 8.313 38.167 10.49 5.794 1.167 10.646 4.057 14.447 8.67-1.572-6.032-2.835-10.5-4.865-15.966-1.974-4.803-7.204-10.058-12.62-10.34-10.06-.363-23.08-1.22-32.542-5.324-4.884-2.04-7.807-4.795-10.948-8.667z"}),(0,s.jsx)("path",{d:"M108.607 267.615c-.578-.75-2.24.02-1.824 1.826.385 2.447 3.99 14.996 10.185 19.313 4.418 3.184 27.64 8.313 38.167 10.49 5.794 1.167 10.646 4.057 14.447 8.67-1.572-6.032-2.835-10.5-4.865-15.966-1.974-4.803-7.204-10.058-12.62-10.34-10.06-.363-23.08-1.22-32.542-5.324-4.884-2.04-7.807-4.795-10.948-8.667z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M166.28 317.26c3.172 2.336 6.673-6.034 2.644-13.99-.127 7.658-6.214 10.23-2.644 13.99z"}),(0,s.jsx)("path",{d:"M169.328 324.955c4.387 1.347 5.76-6.414 2.872-12.622.482 6.67-6.897 10.687-2.872 12.622z"}),(0,s.jsx)("path",{d:"M172.66 331.114c4.238 2.11 5.842-5.732 2.797-11.554.332 7.428-6.06 9.618-2.796 11.554z"}),(0,s.jsx)("path",{d:"M170.907 331.586c-1.678 5.018-11.415-4.327-13.056-9.41 6.045 6.005 14.268 5.342 13.058 9.41z"}),(0,s.jsx)("path",{d:"M166.502 323.904c-1.908 5.018-14.152-7.9-16.858-14.122 6.043 6.004 18.22 10.586 16.858 14.122z"}),(0,s.jsx)("path",{d:"M164.064 316.385c-1.907 5.703-15.217-9.497-18.987-14.883 6.35 5.928 20.425 10.74 18.987 14.883z"}),(0,s.jsx)("path",{d:"M163.654 310.74c4.687-.91-.266-4.814-6.01-11.158-.27 6.68.827 11.35 6.01 11.158zm-7.914-3.783c2.023-2.204-1.94-3.142-6.85-8.65-.723 3.714 4.554 10.514 6.85 8.65zm22.7 24.775c2.564 1.5 4.32-3.755 1.123-8.513-.73 5.145-3.476 6.575-1.124 8.51z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M166.28 317.26c3.172 2.336 6.673-6.034 2.644-13.99-.127 7.658-6.214 10.23-2.644 13.99"}),(0,s.jsx)("path",{d:"M169.328 324.955c4.387 1.347 5.76-6.414 2.872-12.622.482 6.67-6.897 10.687-2.872 12.622"}),(0,s.jsx)("path",{d:"M172.66 331.114c4.238 2.11 5.842-5.732 2.797-11.554.332 7.428-6.06 9.618-2.796 11.554z"}),(0,s.jsx)("path",{d:"M170.907 331.586c-1.678 5.018-11.415-4.327-13.056-9.41 6.045 6.005 14.268 5.342 13.058 9.41z"}),(0,s.jsx)("path",{d:"M166.502 323.904c-1.908 5.018-14.152-7.9-16.858-14.122 6.043 6.004 18.22 10.586 16.858 14.122"}),(0,s.jsx)("path",{d:"M164.064 316.385c-1.907 5.703-15.217-9.497-18.987-14.883 6.35 5.928 20.425 10.74 18.987 14.883m-.41-5.645c4.687-.91-.266-4.814-6.01-11.158-.27 6.68.827 11.35 6.01 11.158"}),(0,s.jsx)("path",{d:"M155.74 306.957c2.023-2.204-1.94-3.142-6.85-8.65-.723 3.714 4.554 10.514 6.85 8.65m22.7 24.775c2.564 1.5 4.32-3.755 1.123-8.513-.73 5.145-3.476 6.575-1.124 8.51z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M122.717 298.56c-5.446 3.265-14.095-9.762-16.402-15.12 4.778 6.15 17.43 11.768 16.402 15.12z"}),(0,s.jsx)("path",{d:"M127.36 306.143c-3.012 3.34-12.497-5.732-15.793-10.33 5.084 4.4 17.127 4.925 15.794 10.33z"}),(0,s.jsx)("path",{d:"M132.526 312.956c-.994 4.564-14.836-5.694-18.072-10.55 5.968 5.624 18.98 5.116 18.072 10.55z"}),(0,s.jsx)("path",{d:"M130.39 317.91c-2.134 4.108-13.392-6.072-16.095-11.383 6.88 6.002 17.838 7.32 16.096 11.383zm-5.772-20.026c3.552-3.746 2.04-5.5-.55-11.404-1.416 6.062-3.55 8.48.55 11.404zm4.714 7.066c6.443.285.062-7.555-1.46-14.14.56 7.505-1.652 13.42 1.46 14.14z"}),(0,s.jsx)("path",{d:"M133.43 311.198c4.463-1.01 3.175-7.327-.247-14.978.71 8.266-3.78 13.042.246 14.978zm-1.514 12.495c-1.68 5.02-14.38-6.607-16.4-11.006 6.423 5.396 17.535 7.243 16.4 11.006z"}),(0,s.jsx)("path",{d:"M139.515 331.52c-1.906 5.02-15.216-5.16-19.288-10.7 8.02 6.307 20.272 5.722 19.288 10.7z"}),(0,s.jsx)("path",{d:"M147.264 339.423c-2.134 6.995-16.052-4.172-20.2-9.636 8.855 6.763 21.334 4.657 20.2 9.636zm-13.077-17.963c3.78 1.956 5.307-8.77 3.175-16.346.028 8.266-7.582 14.41-3.175 16.346z"}),(0,s.jsx)("path",{d:"M140.66 329.965c4.542 1.35 3.102-10.215-.78-17.715-.502 7.43-3.854 14.488.78 17.715zm8.064 7.988c5.074.284 1.583-9.913-2.602-15.662.712 7.507-1.65 14.793 2.602 15.664zm-8.904 4.354c-1.526 2.584-5.257-2.196-11.383-5.684 5.51 1.44 12.06 3.29 11.382 5.684z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M122.717 298.56c-5.446 3.265-14.095-9.762-16.402-15.12 4.778 6.15 17.43 11.768 16.402 15.12"}),(0,s.jsx)("path",{d:"M127.36 306.143c-3.012 3.34-12.497-5.732-15.793-10.33 5.084 4.4 17.127 4.925 15.794 10.33z"}),(0,s.jsx)("path",{d:"M132.526 312.956c-.994 4.564-14.836-5.694-18.072-10.55 5.968 5.624 18.98 5.116 18.072 10.55"}),(0,s.jsx)("path",{d:"M130.39 317.91c-2.134 4.108-13.392-6.072-16.095-11.383 6.88 6.002 17.838 7.32 16.096 11.383zm-5.772-20.026c3.552-3.746 2.04-5.5-.55-11.404-1.416 6.062-3.55 8.48.55 11.404m4.714 7.066c6.443.285.062-7.555-1.46-14.14.56 7.505-1.652 13.42 1.46 14.14"}),(0,s.jsx)("path",{d:"M133.43 311.198c4.463-1.01 3.175-7.327-.247-14.978.71 8.266-3.78 13.042.246 14.978zm-1.514 12.495c-1.68 5.02-14.38-6.607-16.4-11.006 6.423 5.396 17.535 7.243 16.4 11.006"}),(0,s.jsx)("path",{d:"M139.515 331.52c-1.906 5.02-15.216-5.16-19.288-10.7 8.02 6.307 20.272 5.722 19.288 10.7"}),(0,s.jsx)("path",{d:"M147.264 339.423c-2.134 6.995-16.052-4.172-20.2-9.636 8.855 6.763 21.334 4.657 20.2 9.636m-13.077-17.963c3.78 1.956 5.307-8.77 3.175-16.346.028 8.266-7.582 14.41-3.175 16.346"}),(0,s.jsx)("path",{d:"M140.66 329.965c4.542 1.35 3.102-10.215-.78-17.715-.502 7.43-3.854 14.488.78 17.715m8.064 7.988c5.074.284 1.583-9.913-2.602-15.662.712 7.507-1.65 14.793 2.602 15.664zm-8.904 4.354c-1.526 2.584-5.257-2.196-11.383-5.684 5.51 1.44 12.06 3.29 11.382 5.684z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M136.905 256.366c4.735-3.504 1.123-10.057 0-16.29-1.524 5.912-5.535 13.668 0 16.29zm-.155 8.758c-7.115-.854-6.044-10.055-6.258-15.886 2.14 7.916 7.97 9.253 6.257 15.886zm1.128-1.207c6.018-.348 5.7-7.195 6.02-14.122-3.05 6.366-6.662 7.355-6.02 14.122z"}),(0,s.jsx)("path",{d:"M137.645 272.423c-4.68.373-7.114-4.226-8.185-11.394 4.44 6.604 8.478 4.545 8.185 11.392zm1.673-.565c6.018.775 5.057-6.232 4.815-11.395-1.845 4.922-6.74 6.473-4.815 11.395z"}),(0,s.jsx)("path",{d:"M129.937 268.9c.48 4.574 3.37 12.437 8.025 10.67 1.925-5.616-4.093-6.74-8.025-10.67z"}),(0,s.jsx)("path",{d:"M139.396 280.052c-2.086-4.01 4.734-6.02 6.178-11.234.83 7.462.134 12.357-6.178 11.234z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M136.905 256.366c4.735-3.504 1.123-10.057 0-16.29-1.524 5.912-5.535 13.668 0 16.29m-.155 8.758c-7.115-.854-6.044-10.055-6.258-15.886 2.14 7.916 7.97 9.253 6.257 15.886zm1.128-1.207c6.018-.348 5.7-7.195 6.02-14.122-3.05 6.366-6.662 7.355-6.02 14.122"}),(0,s.jsx)("path",{d:"M137.645 272.423c-4.68.373-7.114-4.226-8.185-11.394 4.44 6.604 8.478 4.545 8.185 11.392zm1.673-.565c6.018.775 5.057-6.232 4.815-11.395-1.845 4.922-6.74 6.473-4.815 11.395"}),(0,s.jsx)("path",{d:"M129.937 268.9c.48 4.574 3.37 12.437 8.025 10.67 1.925-5.616-4.093-6.74-8.025-10.67"}),(0,s.jsx)("path",{d:"M139.396 280.052c-2.086-4.01 4.734-6.02 6.178-11.234.83 7.462.134 12.357-6.178 11.234"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,children:[(0,s.jsx)("path",{d:"M119.984 232.498c3.746-4.034.437-10.436-.686-16.668-1.523 5.91-4.165 13.743.686 16.668zm-.12 7.517c-6.58.667-8.174-12.715-8.843-18.47 2.14 7.915 9.72 11.533 8.844 18.47zm1.37-.12c4.65-2.403 3.57-7.576 5.03-11.463-3.125 4.77-5.977 5.454-5.03 11.462z"}),(0,s.jsx)("path",{d:"M119.933 248.653c-6.884.59-10.985-14.237-11.2-20.068 2.14 7.916 12.002 12.22 11.2 20.068zm1.307-.225c6.474-1.49 5.7-5.676 4.73-12.45-2.062 6.823-5.675 5.377-4.73 12.45z"}),(0,s.jsx)("path",{d:"M119.843 257.21c-7.57 1.284-7.037-10.69-13.048-19.376 5.2 6.452 14.56 14.582 13.048 19.375zm1.71-.41c5.714.166 6.272-8.436 5.955-11.926-1.314 3.476-8.032 6.777-5.956 11.927z"}),(0,s.jsx)("path",{d:"M108.022 247.992c2.837 9.212 6.868 18.443 11.825 17.742 2.38-5.237-4.702-5.905-11.825-17.742z"}),(0,s.jsx)("path",{d:"M121.63 264.39c-2.086-4.01 4.734-6.02 6.178-11.233.83 7.462.134 12.357-6.178 11.234zm-11.65-5.872c4.052 8.3 5.88 17.836 11.444 16.45 2.077-6.454-6.145-7.805-11.444-16.45z"}),(0,s.jsx)("path",{d:"M122.56 273.4c-2.39-4.392 4.43-5.945 6.102-11.996.905 7.92.06 13.574-6.102 11.995z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M119.984 232.498c3.746-4.034.437-10.436-.686-16.668-1.523 5.91-4.165 13.743.686 16.668m-.12 7.517c-6.58.667-8.174-12.715-8.843-18.47 2.14 7.915 9.72 11.533 8.844 18.47zm1.37-.12c4.65-2.403 3.57-7.576 5.03-11.463-3.125 4.77-5.977 5.454-5.03 11.462z"}),(0,s.jsx)("path",{d:"M119.933 248.653c-6.884.59-10.985-14.237-11.2-20.068 2.14 7.916 12.002 12.22 11.2 20.068m1.307-.225c6.474-1.49 5.7-5.676 4.73-12.45-2.062 6.823-5.675 5.377-4.73 12.45"}),(0,s.jsx)("path",{d:"M119.843 257.21c-7.57 1.284-7.037-10.69-13.048-19.376 5.2 6.452 14.56 14.582 13.048 19.375zm1.71-.41c5.714.166 6.272-8.436 5.955-11.926-1.314 3.476-8.032 6.777-5.956 11.927z"}),(0,s.jsx)("path",{d:"M108.022 247.992c2.837 9.212 6.868 18.443 11.825 17.742 2.38-5.237-4.702-5.905-11.825-17.742"}),(0,s.jsx)("path",{d:"M121.63 264.39c-2.086-4.01 4.734-6.02 6.178-11.233.83 7.462.134 12.357-6.178 11.234zm-11.65-5.872c4.052 8.3 5.88 17.836 11.444 16.45 2.077-6.454-6.145-7.805-11.444-16.45"}),(0,s.jsx)("path",{d:"M122.56 273.4c-2.39-4.392 4.43-5.945 6.102-11.996.905 7.92.06 13.574-6.102 11.995z"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M134.24 217.226c3.993 1.08 8.182-3.404 6.73-10.115-4.564 1.138-6.66 5.28-6.73 10.117zm-12.788-3.366c.35 1.886 2.645 2.058 1.978-.61-.557-2.163-.652-3.79 0-5.55.893-2.205.595-5.96-.076-7.526-.678-1.654-2.922-.685-1.978.61 1.04 1.5 1.094 4.622.38 6.08-.94 2.152-.685 5.01-.304 6.995z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M134.24 217.226c3.993 1.08 8.182-3.404 6.73-10.115-4.564 1.138-6.66 5.28-6.73 10.117zm-12.788-3.366c.35 1.886 2.645 2.058 1.978-.61-.557-2.163-.652-3.79 0-5.55.893-2.205.595-5.96-.076-7.526-.678-1.654-2.922-.685-1.978.61 1.04 1.5 1.094 4.622.38 6.08-.94 2.152-.685 5.01-.304 6.995z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M135.27 206.677c-.378 2.948-2.873 3.216-2.148-.95.605-3.38.71-5.92 0-8.668-.97-3.447-.647-9.31.083-11.757.736-2.584 3.174-1.07 2.15.95-1.13 2.345-1.19 7.22-.414 9.498 1.024 3.363.747 7.825.33 10.926zm18.588 29.467c-1.543 2.27-4.002.952-2.61-2.692 1.178-2.523 1.304-5.65 2.615-7.494 1.833-2.797 4.938-5.128 6.7-6.82 1.82-1.8 3.333-.065 1.663 1.48-2.028 2.028-4.228 4.553-5.45 6.466-2.28 3.716-1.276 6.68-2.918 9.06z"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.36,d:"M242.54 131.62c.18.97 1.484.926 1.14-.444-.285-1.112-.932-2.18-.597-3.085.46-1.13.57-3.077.226-3.882-.35-.85-1.47-.28-.987.385.534.77.114 2.925-.253 3.674-.482 1.106.274 2.334.47 3.354z",transform:"matrix(-2.453 -.9787 -1.138 2.5207 903.448 145.415)"}),(0,s.jsx)("path",{d:"M158.688 239.805c-1.543 2.27-4.694.882-2.293-2.235 1.967-2.524 4.77-4.585 4.977-7.19.163-3.307 2.103-8.32 3.866-10.013 1.82-1.802 3.924.733 1.978 1.935-2.187 1.42-3.608 7.26-3.56 9.508-.074 3.26-3.326 5.616-4.968 7.995"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M153.858 236.144c-1.543 2.27-4.002.952-2.61-2.692 1.178-2.523 1.304-5.65 2.615-7.494 1.833-2.797 4.938-5.128 6.7-6.82 1.82-1.8 3.333-.065 1.663 1.48-2.028 2.028-4.228 4.553-5.45 6.466-2.28 3.716-1.276 6.68-2.918 9.06"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.345,d:"M242.23 131.78c-.094.784 1.23.974 1.172-.163-.06-1.187-1.824-2.273-.742-4.08.57-.884.58-2.504.234-3.365-.303-.854-1.58-.296-1.094.37.534.77-.1 2.25-.508 2.993-1.225 2.166 1.01 3.22.938 4.245z",transform:"matrix(1.9463 0 0 4.087 -343.233 -314.153)"}),(0,s.jsx)("path",{d:"M128.22 224.436c-.184 3.205 2.395 3.98 2.28-.666-.117-4.85-3.55-9.29-1.444-16.675 1.107-3.613 1.127-10.234.455-13.753-.587-3.49-3.07-1.21-2.127 1.508 1.04 3.15-.195 9.196-.99 12.237-2.383 8.852 1.967 13.164 1.827 17.35z"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M135.27 206.677c-.378 2.948-2.873 3.216-2.148-.95.605-3.38.71-5.92 0-8.668-.97-3.447-.647-9.31.083-11.757.736-2.584 3.174-1.07 2.15.95-1.13 2.345-1.19 7.22-.414 9.498 1.024 3.363.747 7.825.33 10.926zm-25.36 60.296c1.236 1.47 3.318.485 1.42-1.504-1.552-1.61-1.04-2.117-1.987-4.075-.936-2.188-.887-3.395-2.016-4.96-1-1.482-2.5.03-1.495 1.28 1.263 1.476.915 2.564 1.687 3.992 1.426 2.444 1.08 3.727 2.39 5.265zm33.224 40.113c3.974 1.954 6.99 6.836 7.19 10.812.336 4.576.996 8.44 3.05 11.69-3.27-.91-4.837-6.124-5.302-11.118-.47-5.17-3.256-7.41-4.938-11.384m8.29 9.576c2.75 5.077 6.597 7.013 6.794 10.78.333 4.335.662 4.557 1.837 8.82-3.237-.863-4.052-1.145-4.926-7.632-.54-4.56-4.19-7.775-3.706-11.968z"}),(0,s.jsx)("path",{fillOpacity:.185,fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M301.504 401.657c.076 1.925.306 3.472 1.447 5.018-6.64-2.66-16.015-1.236-22.43 1.75-2.86 1.366-6.32-1.562-2.964-4.335 4.773-3.867 15.814-1.674 23.95-2.433zm-93.687-.1c.094 1.813-.116 3.475-.784 5.06 7.22-2.99 14.97-.507 22.262 2.434 5.013 2.075 5.418-1.514 4.533-2.756-1.522-2.203-4.467-4.622-8.192-4.675-2.48-.036-12.026-.12-17.82-.063zm6.094-35.26c-2.012-.868-4.352-.033-6.45 2.176-7.05 6.907-15.32 13.637-21.997 18.873-2.49 2.164-5.037 6.047 5.59 9.928.385.146 8.132 3.017 13.04 3.2 2.005-.057 2 2.937 1.627 3.735-.847 1.592-.234 2.2-1.945 3.735-1.783 1.504.19 3.452 1.592 2.13 5.983-5.196 15.685-1.872 25.035 1.168 2.21.612 6.252.44 6.217-2.608.037-3.32 2.442-5.667 3.914-5.753 3.816.662 22.676.872 28.486.166 3.387-.44 3.592 4.64 5.404 6.64 1.25 1.33 6.058 1.68 9.356.225 6.518-3.028 16.45-3.028 20.498-.134 1.664 1.267 2.978.24 2.032-1.047-1.22-1.76-1.19-2.575-1.797-3.965-1.52-3.094-.307-3.85 1.287-4.074 18.01-2.322 23.756-8.467 18.25-13.477-7.11-6.237-15.025-12.506-21.845-19.874-1.85-1.954-3.07-2.74-6.92-1.14-11.764 5.36-26.698 9.265-41.313 9.552-13.6.116-32.297-6.174-40.06-9.46z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M301.504 401.657c.076 1.925.306 3.472 1.447 5.018-6.64-2.66-16.015-1.236-22.43 1.75-2.86 1.366-6.32-1.562-2.964-4.335 4.773-3.867 15.814-1.674 23.95-2.433zm-93.687-.1c.094 1.813-.116 3.475-.784 5.06 7.22-2.99 14.97-.507 22.262 2.434 5.013 2.075 5.418-1.514 4.533-2.756-1.522-2.203-4.467-4.622-8.192-4.675-2.48-.036-12.026-.12-17.82-.063zm6.094-35.26c-2.012-.868-4.352-.033-6.45 2.176-7.05 6.907-15.32 13.637-21.997 18.873-2.49 2.164-5.037 6.047 5.59 9.928.385.146 8.132 3.017 13.04 3.2 2.005-.057 2 2.937 1.627 3.735-.847 1.592-.234 2.2-1.945 3.735-1.783 1.504.19 3.452 1.592 2.13 5.983-5.196 15.685-1.872 25.035 1.168 2.21.612 6.252.44 6.217-2.608.037-3.32 2.442-5.667 3.914-5.753 3.816.662 22.676.872 28.486.166 3.387-.44 3.592 4.64 5.404 6.64 1.25 1.33 6.058 1.68 9.356.225 6.518-3.028 16.45-3.028 20.498-.134 1.664 1.267 2.978.24 2.032-1.047-1.22-1.76-1.19-2.575-1.797-3.965-1.52-3.094-.307-3.85 1.287-4.074 18.01-2.322 23.756-8.467 18.25-13.477-7.11-6.237-15.025-12.506-21.845-19.874-1.85-1.954-3.07-2.74-6.92-1.14-11.764 5.36-26.698 9.265-41.313 9.552-13.6.116-32.297-6.174-40.06-9.46z"}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M338.583 332.01c.816 2.81 12.048-2.323 17.757-13.55-7.476 8.15-19.576 8.07-17.757 13.55z"}),(0,s.jsx)("path",{d:"M338.583 332.01c.816 2.81 12.048-2.323 17.757-13.55-7.476 8.15-19.576 8.07-17.757 13.55"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.505,d:"M253.45 178.87c1.695 2.578 3.958 4.444 4.06 6.487.173 2.35.344 2.47.954 4.783-1.68-.468-2.104-.62-2.558-4.14-.28-2.47-2.708-4.856-2.456-7.13z",transform:"matrix(-2.0175 0 0 1.844 868.637 -14.906)"}),(0,s.jsx)("path",{d:"M357.293 314.93c-3.42 4.755-7.986 8.196-8.192 11.963-.347 4.335-.692 4.557-1.922 8.82 3.39-.863 4.245-1.145 5.16-7.632.566-4.557 5.464-8.955 4.956-13.15z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.489,d:"M254.38 180.28c2.042 1.004 2.506 2.667 2.587 4.726.04 2.384.617 4.226 1.673 5.897-2.103.305-2.486-3.147-2.725-5.713-.242-2.656-.67-2.87-1.535-4.91z",transform:"matrix(-2.039 0 0 1.9463 881.502 -42.498)"}),(0,s.jsx)("path",{d:"M362.835 308.38c-4.163 1.955-5.11 5.192-5.274 9.2-.08 4.64-1.256 8.225-3.41 11.477 4.288.594 5.07-6.125 5.557-11.12.493-5.17 1.368-5.583 3.13-9.556z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.387,d:"M242.23 131.44c.18.97 1.36 1.058 1.016-.312-.286-1.112-.335-1.948 0-2.852.46-1.133.306-3.062-.04-3.867-.347-.85-1.5-.354-1.015.31.536.77.564 2.376.197 3.125-.483 1.106-.352 2.574-.156 3.594z",transform:"matrix(2.0818 0 0 3.0397 -129.796 -193.086)"}),(0,s.jsx)("path",{d:"M374.47 206.457c.372 2.948 2.83 3.216 2.115-.95-.596-3.38-.698-5.92 0-8.668.955-3.446.637-9.31-.08-11.757-.726-2.583-3.126-1.07-2.116.952 1.11 2.343 1.167 7.22.403 9.496-1.005 3.363-.732 7.825-.324 10.926z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.348,d:"M242.23 131.78c-.094.784 1.23.974 1.172-.163-.06-1.187-1.824-2.273-.742-4.08.57-.884.58-2.504.234-3.365-.303-.854-1.58-.296-1.094.37.534.77-.1 2.25-.508 2.993-1.225 2.166 1.01 3.22.938 4.245z",transform:"matrix(-1.9157 0 0 4.087 845.476 -314.367)"}),(0,s.jsx)("path",{d:"M381.43 224.222c.18 3.204-2.358 3.98-2.245-.666.115-4.85 3.494-9.29 1.42-16.675-1.09-3.61-1.108-10.232-.447-13.75.58-3.49 3.025-1.21 2.096 1.507-1.023 3.15.19 9.196.973 12.237 2.347 8.852-1.935 13.164-1.797 17.35z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.504,d:"M242.23 131.44c.18.97 1.36 1.058 1.016-.312-.286-1.112-.335-1.948 0-2.852.46-1.133.306-3.062-.04-3.867-.347-.85-1.5-.354-1.015.31.536.77.564 2.376.197 3.125-.483 1.106-.352 2.574-.156 3.594z",transform:"matrix(-1.9157 0 0 1.9463 852.132 -42.178)"}),(0,s.jsx)("path",{d:"M388.086 213.644c-.342 1.887-2.603 2.06-1.946-.608.548-2.164.642-3.79 0-5.55-.88-2.206-.586-5.96.075-7.527.666-1.656 2.875-.687 1.946.607-1.02 1.5-1.074 4.623-.37 6.08.924 2.153.673 5.01.297 6.996z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.973,d:"M374.235 217.334c-3.323 1.41-7.618-8.035-4.444-9.807 2.463-.62 8.098 8.01 4.446 9.807z"}),(0,s.jsx)("path",{d:"M374.235 217.334c-3.323 1.41-7.618-8.035-4.444-9.807 2.463-.62 8.098 8.01 4.446 9.807z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.367,d:"M242.22 131.74c.18.97 1.234.857 1.32-.555-.012-1.006.432-2.074.267-2.87-.197-1.186-.906-2.386-1.25-3.19-.35-.85-1.142-.47-.806.273.386.954.75 2.098.876 2.905.208 1.555-.6 2.417-.405 3.437z",transform:"matrix(2.367 -.9787 1.098 2.5207 -362.4 141.044)"}),(0,s.jsx)("path",{d:"M355.57 236.05c1.488 2.27 3.86.952 2.517-2.692-1.136-2.523-1.258-5.65-2.522-7.495-1.77-2.796-4.765-5.127-6.465-6.82-1.757-1.8-3.216-.064-1.605 1.48 1.957 2.03 4.08 4.554 5.26 6.467 2.2 3.716 1.23 6.68 2.814 9.06z"})]}),(0,s.jsxs)("g",{fill:"#fff",fillRule:"evenodd",children:[(0,s.jsx)("path",{stroke:"#000",strokeWidth:.367,d:"M242.54 131.62c.18.97 1.484.926 1.14-.444-.285-1.112-.932-2.18-.597-3.085.46-1.13.57-3.077.226-3.882-.35-.85-1.47-.28-.987.385.534.77.114 2.925-.253 3.674-.482 1.106.274 2.334.47 3.354z",transform:"matrix(2.367 -.9787 1.098 2.5207 -367.113 144.086)"}),(0,s.jsx)("path",{d:"M351.48 238.476c1.49 2.27 4.53.882 2.214-2.236-1.898-2.523-4.603-4.584-4.803-7.19-.155-3.306-2.027-8.32-3.73-10.012-1.755-1.802-3.784.733-1.906 1.934 2.11 1.42 3.482 7.262 3.435 9.51.07 3.26 3.21 5.615 4.792 7.994z"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,d:"M220.83 343.95c4.512 3.6 8.765 7.687 10.037 12.773 1.328 4.737 2.13 8.363 5.172 13.077-4.767-3.042-6.66-7.637-8.06-12.624-1.234-4.9-4.058-8.562-7.15-13.227z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M220.83 343.95c4.512 3.6 8.765 7.687 10.037 12.773 1.328 4.737 2.13 8.363 5.172 13.077-4.767-3.042-6.66-7.637-8.06-12.624-1.234-4.9-4.058-8.562-7.15-13.227zm-5.157 0c4.208 3.446 6.938 7.382 8.21 12.467 1.328 4.738 3.195 8.515 5.933 12.774-4.46-3.04-7.265-7.18-8.668-12.165-1.232-4.9-2.686-8.563-5.475-13.075zm78.767 0c-4.302 3.466-7.093 7.425-8.394 12.54-1.357 4.766-3.265 8.566-6.064 12.85 4.56-3.06 7.427-7.223 8.86-12.24 1.26-4.928 2.746-8.613 5.597-13.15zm-5.295 0c-4.61 3.62-8.958 7.732-10.26 12.848-1.356 4.765-2.176 8.412-5.285 13.154 4.87-3.06 6.804-7.682 8.238-12.698 1.26-4.928 4.146-8.612 7.308-13.305zm-15.278 12.008c.124-.89-.482-1.666-1.21-1.9-1.42-.533-2.83-.967-4.237-1.368-1.6-.38-2.494.767-2.5 1.52-.007 1.254-.065 2.318 0 3.268.088 1.183.312 1.27 1.06 1.446 1.197.202 2.732.41 3.935 1.216.953.588 1.87.123 2.345-.91.308-.79.477-2.336.607-3.272m-17.225 0c-.11-.89.357-1.742 1.007-1.976 1.265-.533 2.527-.663 3.86-.61 1.476-.022 1.85.313 1.853 1.066.008 1.253.06 2.47 0 3.42-.078 1.183-.052 1.27-.72 1.446-1.07.202-2.893.256-3.968 1.064-.852.588-1.823.123-1.87-.987.022-.834-.048-2.485-.164-3.42zm-20.902-.234c-.126-.89.484-1.666 1.215-1.9 1.425-.533 2.844-.967 4.257-1.368 1.606-.38 2.505.767 2.51 1.52.008 1.254.067 2.32 0 3.268-.087 1.184-.313 1.27-1.064 1.446-1.203.203-2.744.41-3.953 1.217-.957.588-1.878.123-2.357-.91-.31-.79-.48-2.337-.61-3.273zm17.302 0c.11-.89-.36-1.742-1.012-1.975-1.273-.535-2.54-.666-3.878-.61-1.485-.025-1.86.31-1.864 1.063-.008 1.254-.06 2.47 0 3.42.078 1.183.052 1.27.724 1.446 1.074.2 2.907.256 3.987 1.064.853.587 1.83.122 1.875-.987-.02-.837.05-2.488.166-3.424zm-16.018 7.902c1.545 2.914 3.32 7.35 6.537 6.538.053-2.23-3.47-3.776-6.535-6.538zm4.806.994c6.25 2.56 11.645 1.928 12.317 5.855-5.86.633-8.005-1.775-12.316-5.856zm30.636-.604c-1.567 2.746-3.366 6.928-6.627 6.163-.054-2.105 3.517-3.56 6.625-6.165zm-4.38.836c-6.34 2.43-11.813 1.83-12.496 5.558 5.948.6 8.123-1.684 12.496-5.558"}),(0,s.jsx)("path",{fill:"#fff",fillOpacity:.534,fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"m286.79 302.57 13.61.003c.052 5.144 3.066 10.67 7.3 13.836h-26.08c4.08-3.7 5.196-8.087 5.17-13.84z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m286.79 302.57 13.61.003c.052 5.144 3.066 10.67 7.3 13.836h-26.08c4.08-3.7 5.196-8.087 5.17-13.84z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.487,d:"M189.69 385.756c-.75.572-.7 2.29.76 2.888 13.593 4.877 26.717 13.89 64.476 13.535 38.12-.36 51.516-9.158 63.716-13.23 1.625-.62 3.155-1.88 1.064-3.65-6.855-5.604-14.264-10.108-19.16-17.033-.87-1.245-3.242-.54-4.715 0-14.55 5.11-27.992 8.692-41.97 8.667-13.645-.025-27.87-3.784-40.676-9.046-1.226-.525-3.234.065-4.182.985-5.94 5.92-12.403 11.663-19.31 16.88z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M208.004 376.394c-1.637-1.055-2.374.317-1.216 1.75 1.502 1.648 3.933 2.64 6.46 3.345 1.477.41 4.523-.11 6.086.074 1.216.152 1.903 2.606 4.106 2.51 2.223-.096 3.65-6.007 3.726-8.973.1-1.965-2.616-.71-2.357.08.71 1.953-.594 6.312-1.98 6.31-1.02-.064-2.114-2.178-3.65-2.434-1.2-.2-3.022.14-4.26.15-3.612.036-5.17-1.766-6.917-2.813z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M211.06 374.798c1.93.963 3.614-.76 4.716.457 2.814 3.194 6.434-1.53 2.205-1.368-1.71.066-1.975-1.294-4.942-.99-1.578.202-2.9 1.364-1.977 1.9zm.448 13.994c-1.524-.666-2.036.782-1.14 1.674 1.256 1.148 6.478 1.605 7.755.685 2.112-1.6.568-5.81-.38-6.995-.59-.722-2.374-.777-1.673 1.142.29.89 1.586 3.103.53 4.105-.964.924-3.635 0-5.092-.608zm11.716 1.285c.335-.86-.568-2.338-2.13-.61-1.29 1.363-.244 7.106 3.878 8.136 4.03.99 7.048-.46 7.602-2.66.384-1.466-1.823-2.74-.683-4.032.954-1.01 2.79.014 3.576-1.593.46-.902.496-2.75-1.978-3.955-1.072-.538-2.93.692-2.89 1.6.058 1.246 1.99.433 1.292 1.52-.51.826-2.794.48-3.496 2.43-.42 1.24 2.584 3.53.988 4.108-1.424.493-3.28.812-5.17-.228-1.17-.618-1.665-3.18-.988-4.713zm-14.52-7.902c-.957.14-2.28.836-2.354 1.977-.06.915.695 2.5 1.977 1.442 1.324-1.027.308-1.514.608-1.14.66.66-.308.714-1.52 2.36-.845 1.246-2.65 1.046-3.574.606-1.594-.823-.996-1.35-2.736-2.13-1.738-.854-2.79 1.15-1.14 2.054 1.823 1.045 4.81 3.133 7.755 1.598 1.75-.99 3.8-1.89 3.724-4.107-.1-1.44-.74-2.94-2.738-2.66zm94.572-.76c-1.345-.96-.522-2.705 1.446-2.053 1.674.62 4.453 2.59 4.636 5.17.208 2.824-4.34 4.89-6.08 4.793-2.98-.24-2.45-2.604-.23-2.435 1.72.125 3.834-.488 3.955-2.28.1-1.556-2.758-2.46-3.727-3.195m-9.81-6.91c-1.738-1.752 1.9-3.65 2.964-1.52 1.404 2.708 3.074 5.373 4.335 8.364 1.004 2.453-.313 2.785-1.14 1.442-1.384-2.335-3.48-5.46-6.16-8.287zm-8.506 5.237c1.87-.814 1.825 1.52 1.14 1.977-1.234.685-2.89-1.14-1.14-1.98zm5.548-2.044c1.87-.813 1.824 1.52 1.14 1.977-1.236.688-2.89-1.14-1.14-1.977"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M232.49 380.968c-2.808-1.793.57-4.467 2.507-2.433 2.778 2.836 5.433 9.05 7.53 11.405 1.992 2.314.386-6.275.987-8.82.41-1.415 1.517-1.217 1.52.15.01 3.5-.53 10.62.38 11.18 1.7.966 1.394 2.545 2.812 2.28 1.522-.362 1.295-.76 2.663-.837 1.355 0 1.4 1.36 2.964 1.14.997-.13 1.296-1.26 2.507-1.294 1.105-.095.63 2.342-.073 2.737-1.146.644-4.716-.7-5.78-.607-1.264.034-3.54 1.207-4.942.684-1.71-.61-1.33-2.78-2.51-2.433-1.332.31-1.08 2.736-4.255 3.5-1.486.34-1.987-.997-1.216-1.9 1.38-1.477 4.16-2.655 3.725-4.03-1.288-3.835-5.175-8.454-8.82-10.72zm24.405.525c1.35 4.438 1.283 10.34 2.054 14.372.377 1.586 1.895.173 1.747-1.065-.597-4.33-.86-9.646-1.977-13.762-.462-1.425-2.34-1.148-1.825.455zm3.737 1.15c-.356-1.85 1.415-2.025 1.674-.916.913 3.57.796 11.744 2.585 12.014 3.088.355 7.417-.284 11.255-1.062 1.888-.376 2.275-1.742 2.205-2.283-.363-2.196 1.687-2.022 2.204.305.28 1.214-.272 3.392-2.584 3.876-4.518.872-10.736 2.217-14.296 1.445-3.118-.66-2.102-8.71-3.042-13.377z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M265.654 385.834c.077-2.342 1.835-2.686 1.823-.686.05 4.79 5.656 3.547 6.845 1.75.878-1.4.236-2.004-.61-3.573-1.05-2.03 1.175-2.602 2.13-.837.715 1.263 1.21 5.29-.075 6.312-1.78 1.41-6.594 2.104-8.67.53-1.1-.758-1.53-2.214-1.443-3.496m-2.434-6.248c.25 1.5 4.333.99 4.18-.152-.14-.98-4.407-.76-4.18.152m5.314 1.226c.16 1.512 2.803 1.067 2.66-.076-.14-1.208-2.812-1.446-2.66.076m7.98-1.83c-1.34-1.852 1.27-1.97 2.13-.607 2.226 3.33 3.693 8.694 5.854 12.317.918 1.67 2.07.177 2.205-.228.144-.43-.7-1.09-.76-2.585-.106-1.164 2.27-2.608 3.954-1.52 1.574 1.06.286 2 1.064 2.583.744.556 2.616.206 2.893-.152.83-1.305-.302-.54-1.446-1.293-1.324-.948-.53-5.055 2.205-3.346 1.628.943 2.107 3.954 1.52 5.628-.517 1.55-3.24 2.077-4.713 1.748-1.66-.506-3-2.502-2.66-1.977.82 1.35-.204 2.68-.99 3.194-1.94 1.218-3.298 1.857-4.714-.152-2.51-3.76-3.893-10.103-6.54-13.61z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M205.65 121.273c-.112-2.246 3.37-2.418 2.97.67-.51 3.85 7.265 13.592 7.91 19.6.43 4.03-2.368 7.555-5.14 9.75-3.397 2.632-8.623 2.27-11.068.76-1.48-1.19-2.828-5.268-1.72-6.882.39-.54 2.162 5.987 6.062 5.96 5.308-.033 9.607-4.02 9.765-7.576.27-6.193-8.684-15.982-8.78-22.28zm15.55 15.297c.878-.626 2.28 2.112 1.29 2.797-.823.548-2.43-2.036-1.29-2.796zm2.336-5.546c-.444.215-1.326-.09-1.063-.467 1.242-1.774 3.89-4.444 5.808-5.377.59-.286 1.623.755 1.267 1.265-1.148 1.64-3.943 3.576-6.01 4.58zm20.534-16.29c.492-1.028 3.448-2.19 4.2-2.885.698-.716 1.03.6.733 1.223-.492 1.027-3.044 2.762-4.163 2.81-.602.024-1.07-.53-.77-1.15zm7.006.33c.64-1.804 2.705-4.54 4.126-5.44.73-.46 2.04-.098 1.794.594-.543 1.53-3.07 4.205-4.768 5.465-.516.46-1.3-.2-1.152-.62zm-6.014 4.516c-.428.214-.197 1.126.216 1.264.878.292 2.475.35 3.2-.05 1.05-.648.572-4.634-.835-2.505-.944 1.312-1.633.89-2.58 1.29zm-11.872 9.147c-2.147-1.672.577-4.014 2.82-2.378 4.373 3.295-6.52 15.93-12.447 21.833-1.084 1.157-2.036-1.756-.646-3.01 4.25-3.605 8.227-7.91 10.992-12.36.532-.855 1.042-2.7-.72-4.087zm24.873-10.86c.267-1.6-2.59.033-2.64-2.088-.028-1.124 3.12-1.91 4.435-.62 2.222 2.254.56 6.06-3.136 6.297-3.08.136-8.22 4.374-7.44 5.265.89 1.1 8.88 1.827 13.526 1.1 2.877-.404 2.273 2.17-.673 2.517-2.848.327-5.168.023-7.828.86-3.132.894-4.498 5.1-6.238 6.666-.39.273-1.435-1.378-1.038-1.998 1.254-1.962 3.253-4.962 5.452-5.82 1.388-.563-3.826-.74-5.49-1.215-1.32-.398-.937-2.075-.43-3.01.67-1.46 5.585-6.38 7.567-6.3 1.86.078 3.747-.464 3.93-1.658zm8.29.428c.926-.815 1.4-2.18 2.368-3.01.533-.533 1.38.105 1.24 1.39-.12 1.01-1.477 1.883-2.39 2.643-.744.557-1.61-.645-1.215-1.023zm10.53-3.755c1.377-.153 1.72 2.503.215 2.933-.913.305-1.71-2.777-.214-2.934zm-3.463 8.212c-.022 2.287 1.107 2.077 3.26 2 2.092-.08 3.93.053 3.923-2.013-.01-2.143-1.185-4.016-1.53-2.56-.303 1.37-.545 3.61-1.34 2.634-.752-.84-.454-1.023-1.746.354-.717.758-.798-.37-1.23-1.076-.298-.42-1.336.338-1.338.658zm-15.026 11.678c-.514 3.027-.043 7.264 1.506 7.312 1.916.062 5.878-6.617 7.754-10.082 1.125-1.933 3.058-2.27 2.252-.254-1.22 3.113-1.11 9.772-.04 11.728.577 1.054 4.83-.966 5.517-2.467 1.25-2.73.234-7.758.672-10.83.212-2.016 2.057-2.437 1.96-.568-.183 3.342-.5 9.472-.265 12.256.14 1.6 4.716 3.962 5.45-.884.39-3.05 1.96-6.06-.074-9.44-1.262-2.112 1.85-1.847 3.528 1.04 1.174 1.964-.99 5.215-.913 7.73.197 3.865-2.81 6.06-4.992 6.107-1.95.04-3.22-2.357-4.82-2.39-1.772-.114-3.594 2.76-5.06 2.656-5.68-.388-2.672-8.69-4.402-8.79-1.925-.114-4.194 8.135-6.565 7.84-2.336-.28-4.755-6.722-3.782-9.448.88-2.538 2.538-3.132 2.277-1.52z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M285.895 121.33c-2.77-1.69.175-6.085 1.53-4.54 2.616 3.132 5.253 10.568 7.096 11.182 1.17.39 1.115-5.496 1.94-8.172.53-1.977 2.92-1.33 2.463 1.2-.156.847-3.122 10.463-2.894 10.843 2.054 4.11 4.09 8.28 5.374 12.69.532 1.9-1.75.62-2.024.224-1.46-2.18-4.01-10.51-4.01-10.13-1.174 5.86-1.45 7.59-2.696 12.572-.38 1.595-2.73 1.304-2.2-1.507.51-2.31 3.87-13.674 3.68-14.003-2.64-4.66-5.055-8.35-8.26-10.36z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M290.897 148.366c-.773-.088-1.97 1.718 1.876 2.428 5.142.93 10.77-.8 12.496-5.843 1.973-6.004 3.28-11.69 4.31-13.836 1.29-2.5 2.938-2.298 1.72-5.948-.857-2.626-2.46-1.834-2.796-.43-.9 3.83-4.31 16.214-5.375 18.495-2.01 4.163-6.058 5.81-12.234 5.137z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M301.193 128.61c-.55-1.18-1.835-.266-1.606 1.026.137 1.168 1.084 1.803 2.036 1.77 1.127-.04 3.51.038 3.517-1.833.004-1.315-1.03-2.413-1.796-.962-.734 1.315-1.678 1.177-2.15 0zm1.285-4.943c-.395.274-.04 1.736.43 1.72 1.68-.056 4.06-.592 5.335-1.48.373-.26.218-1.142-.314-1.124-1.62.054-4.198.01-5.453.884zm14.266 3.678c1.216-1.9 4.572-2.094 3.365.62-.856 1.87-9.21 18.01-10.35 20.062-1.244 2.308-2.26 1.165-1.378-.632 1.19-2.313 7.98-19.488 8.36-20.05z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M304.17 151.382c-.355-1.284-2.348-3.184-2.124.252.397 6.238 8.966 4.266 11.56 2.05 2.356-2.088.312 7.04 3.442 8.018 1.724.553 4.97-1.8 6.566-3.87 4.426-5.744 7.243-13.976 11.5-19.647 1.607-2.217-.88-3.8-1.887-2.035-3.702 6.207-8.3 18.874-13.32 22.164-4.093 2.62-2.88-3.373-3.023-5.173-.18-1.32-1.79-3.262-3.935-1.48-1.503 1.174-3.835 2.128-5.946 1.937-1.225-.068-2.258-.047-2.834-2.213z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M319.47 139.802c.044-.352-1.813-.512-1.722 1.29.065 1.334 1.66 1.697 1.935 1.506 2.51-1.826-.533-.916-.214-2.796zm-3.66 7.298c-.495.116-.948 1.694.216 1.784 1.064.076 5.235-.372 6.388-.304.745-.028 1.03-1.453-.57-1.378-1.937.098-4.485-.388-6.034-.102zm27.618-1.85c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932zm-92.878 14.248c-.403.464-1.635.388-1.746 1.038-.484 2.41 0 3.633-.53 5.955-.51 2.225-2.052 2.31-1.947.497.14-2.35 2.077-5.666.708-5.894-.91-.214-1.613-1.432-.67-2.034 1.778-1.234 2.733-1.046 3.956-.674.428.13.537.757.23 1.113z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M249.305 156.345c-2.36 2.063-4.547 2.906-6.717 5.514-.887 1.067-.862 2.556-1.392 3.92-.53 1.444-2.24 1.73-2.77 1.427-.885-.582-.756-3.264-1.745-1.82-.837 1.33-1.38 3.16-2.62 3.137-1.12-.023-3.234-2.316-2.162-2.427 3.67-.375 3.624-3.312 4.998-3.505 1.542-.206 1.643 2.425 2.595 1.898.748-.383 1.1-3.448 1.91-4.275 2.49-2.542 4.457-3.885 6.995-5.754 1.284-1.02 2.2.826.91 1.886zm8.602 7.902c-1.888.382-1.566 2.81-1.012 3.11.915.427 2.33.606 2.86-2.185.247-1.147.47 5.7 2.983 3.06 1.446-1.597 5.03.29 6.53-1.72 1.074-1.338 1.405-2.272.568-4.25-.243-.6-1.714-.305-1.63 1.154.073 1.23-.873 2.748-2.103 2.49-.597-.11.337-3.01-.263-3.796-.33-.432-.833-.385-1.16.063-.463.626.462 3.406-1.054 3.772-1.914.44-.91-1.86-1.72-2.28-2.605-1.313-2.856.34-4 .582zm14.733-4.67c1.385-.39.953-.39 3.13-2.175.85-.642 1.016 1.238.927 1.982-.158 1.263-1.658.37-2.123 1.483-.682 1.444-.405 4.803-.633 6.17-.154.704-1.28.644-1.39.09-.32-1.67.23-3.302.177-5.388-.017-.71-1.03-1.82-.085-2.165zm-6.5-7.514c-.335 1.51-.31 2.754-.31 3.79.077.836 1.606.297 1.6.19-.075-1.326.226-3.16-.165-3.67-.212-.276-1.047-.594-1.125-.31z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M205.65 121.273c-.112-2.246 3.37-2.418 2.97.67-.51 3.85 7.265 13.592 7.91 19.6.43 4.03-2.368 7.555-5.14 9.75-3.397 2.632-8.623 2.27-11.068.76-1.48-1.19-2.828-5.268-1.72-6.882.39-.54 2.162 5.987 6.062 5.96 5.308-.033 9.607-4.02 9.765-7.576.27-6.193-8.684-15.982-8.78-22.28z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M214.894 119.97c.662.03 2.476 2.38 2.357 3.116-.08.347-1.94-.05-2.507-.532-.42-.356-.25-2.604.152-2.585zm-8.747 17.027c-1.658.905.263 2.69 1.505 1.936 4.66-3.018 11.656-6.19 13.118-12.167.47-2.025 2.35-5.13 4.138-5.822 1.726-.67 4.233 3.124 5.87.14.96-1.707 4.323 1.12 5.134-.707.99-2.205.518-3.42.56-5.53-.073-1.384-1.13-1.797-1.897.443-.4 1.014.07 2.038-.255 2.567-.247.403-1.018.792-1.465.456-.413-.31-.127-1.173-1.116-1.555-.385-.192-1-.352-1.267.14-1.173 2.092-1.823 4.044-3.466 1.82-1.464-1.916-2.205-5.228-3.278-.696-.386 1.6-2.817 3.92-4.25 3.92-1.79 0-1.34-4.713-5.276-3.996-2.022.432-1.882 4.3-1.58 5.73.496 1.988 6.405.56 6.11 1.86-1.01 4.515-7.276 8.807-12.588 11.46z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.973,d:"M169.156 158.506c-.25.755.753 2.806 1.795 2.958 1.023.076 1.545-2.215 1.216-2.958-.243-.547-2.83-.535-3.01 0zm5.41 7.96c-.655-.706-2.59 1.19-1.025 2.53.88.71 4.095 1.742 4.975.242 1.19-1.93-1.174-8.942-.127-9.868.818-.724 4.607 4.683 6.478 5.072 4.394.61 3.34-7.524 8.075-6.972 3.228.43 3.58-3.602 3.13-6.12-.36-2.416-4.27-5.904-6.07-7.464-2.365-1.97-3.42 1.452-1.935 2.58 1.912 1.53 5.273 4.623 5.808 6.668.253.965-2.335 2.884-3.29 2.365-2.2-1.203-4.248-6.353-6.173-7.53-.657-.4-2.27.505-1.494 2.11.874 1.724 4.734 4.39 4.96 6.227.204 1.676-1.72 5.3-2.984 5.3-1.39 0-4.932-4.38-6.038-6.44-.552-.987-2.467-.892-2.668.47-.317 2.046.296 6.375.784 9.057.388 2.54-1.43 2.668-2.403 1.77zM167.93 152.5c-.553.626 1.29 1.85 1.656 1.53.71-.614 3.47-3.758 2.937-4.857-.473-.98-4.266-3.126-4.883-2.063-1.145 1.84 3.575 2.663 2.836 3.202-.364.21-1.662 1.105-2.546 2.19zm6.812-13.778s1.185 4.055 2.15 2.365c.78-1.17-2.15-2.365-2.15-2.365zm1.928 6.452c-.435.237-1.658 1.205-.86 1.72 1.258.745 4.683 1.335 3.944-1.1-.45-1.436 5.165.04 3.797-3.846-.356-1.075-2.05-2.627-2.883-2.846-.53-.14-2.327.847-1.202 1.39.82.426 3.3 1.88 2.378 2.835-1.045.997-1.773-.448-3.073-.215-.655.124-.23 1.985-.597 2.492-.206.282-1.15-.623-1.504-.43zm8.913-15.42c-.71.353-1.978 2.274-2.024 3.162-.028.474.492 1.125.897.923.743-.373 1.892-2.19 1.934-3.026.03-.527-.37-1.28-.81-1.062zm4.632-.494c-1.368-1.672 1.452-4.155 2.72-.807.768 2.1 8.942 12.857 10.614 16.507 1.18 2.47-.045 3.49-1.508 1.72-4.14-5.282-7.536-11.865-11.828-17.42zm8.39.215c1.456-1.58 4.432-4.805 3.63-6.604-.615-1.545-2.423-1.39-2.73-1.034-1.77 2.11 1.255 1.58.82 2.303-.9 1.69-1.8 2.622-2.264 4.25-.107.38.28 1.37.545 1.086z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M169.156 158.506c-.25.755.753 2.806 1.795 2.958 1.023.076 1.545-2.215 1.216-2.958-.243-.547-2.83-.535-3.01 0zm5.41 7.96c-.655-.706-2.59 1.19-1.025 2.53.88.71 4.095 1.742 4.975.242 1.19-1.93-1.174-8.942-.127-9.868.818-.724 4.607 4.683 6.478 5.072 4.394.61 3.34-7.524 8.075-6.972 3.228.43 3.58-3.602 3.13-6.12-.36-2.416-4.27-5.904-6.07-7.464-2.365-1.97-3.42 1.452-1.935 2.58 1.912 1.53 5.273 4.623 5.808 6.668.253.965-2.335 2.884-3.29 2.365-2.2-1.203-4.248-6.353-6.173-7.53-.657-.4-2.27.505-1.494 2.11.874 1.724 4.734 4.39 4.96 6.227.204 1.676-1.72 5.3-2.984 5.3-1.39 0-4.932-4.38-6.038-6.44-.552-.987-2.467-.892-2.668.47-.317 2.046.296 6.375.784 9.057.388 2.54-1.43 2.668-2.403 1.77zM167.93 152.5c-.553.626 1.29 1.85 1.656 1.53.71-.614 3.47-3.758 2.937-4.857-.473-.98-4.266-3.126-4.883-2.063-1.145 1.84 3.575 2.663 2.836 3.202-.364.21-1.662 1.105-2.546 2.19zm6.812-13.778s1.185 4.055 2.15 2.365c.78-1.17-2.15-2.365-2.15-2.365m1.928 6.452c-.435.237-1.658 1.205-.86 1.72 1.258.745 4.683 1.335 3.944-1.1-.45-1.436 5.165.04 3.797-3.846-.356-1.075-2.05-2.627-2.883-2.846-.53-.14-2.327.847-1.202 1.39.82.426 3.3 1.88 2.378 2.835-1.045.997-1.773-.448-3.073-.215-.655.124-.23 1.985-.597 2.492-.206.282-1.15-.623-1.504-.43m8.913-15.42c-.71.353-1.978 2.274-2.024 3.162-.028.474.492 1.125.897.923.743-.373 1.892-2.19 1.934-3.026.03-.527-.37-1.28-.81-1.062zm4.632-.494c-1.368-1.672 1.452-4.155 2.72-.807.768 2.1 8.942 12.857 10.614 16.507 1.18 2.47-.045 3.49-1.508 1.72-4.14-5.282-7.536-11.865-11.828-17.42zm8.39.215c1.456-1.58 4.432-4.805 3.63-6.604-.615-1.545-2.423-1.39-2.73-1.034-1.77 2.11 1.255 1.58.82 2.303-.9 1.69-1.8 2.622-2.264 4.25-.107.38.28 1.37.545 1.086zm105.565 21.907c-.355-1.284-2.348-3.184-2.124.252.397 6.238 8.966 4.266 11.56 2.05 2.356-2.088.312 7.04 3.442 8.018 1.724.553 4.97-1.8 6.566-3.87 4.426-5.744 7.243-13.976 11.5-19.647 1.607-2.217-.88-3.8-1.887-2.035-3.702 6.207-8.3 18.874-13.32 22.164-4.093 2.62-2.88-3.373-3.023-5.173-.18-1.32-1.79-3.262-3.935-1.48-1.503 1.174-3.835 2.128-5.946 1.937-1.225-.068-2.258-.047-2.834-2.213zM221.2 136.57c.878-.626 2.28 2.112 1.29 2.797-.823.548-2.43-2.036-1.29-2.796z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M325.327 134.76c-1.047-.847 1.03-4.958 2.435-3.345 3.858 4.464 5.65 18.958 6.765 29.806 0 0-1.734 1.448-1.747 1.218 0-5.778-2.322-23.456-7.453-27.676z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M223.536 131.024c-.444.215-1.326-.09-1.063-.467 1.242-1.774 3.89-4.444 5.808-5.377.59-.286 1.623.755 1.267 1.265-1.148 1.64-3.943 3.576-6.01 4.58zm101.79 3.736c-1.046-.847 1.03-4.958 2.436-3.345 3.858 4.464 5.65 18.958 6.765 29.806 0 0-1.734 1.448-1.747 1.218 0-5.778-2.322-23.456-7.453-27.676z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M327.702 160.082c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M258.063 117.867c.267-1.6-2.59.033-2.64-2.088-.028-1.124 3.12-1.91 4.435-.62 2.222 2.254.56 6.06-3.136 6.297-3.08.136-8.22 4.374-7.44 5.265.89 1.1 8.88 1.827 13.526 1.1 2.877-.404 2.273 2.17-.673 2.517-2.848.327-5.168.023-7.828.86-3.132.894-4.498 5.1-6.238 6.666-.39.273-1.435-1.378-1.038-1.998 1.254-1.962 3.253-4.962 5.452-5.82 1.388-.563-3.826-.74-5.49-1.215-1.32-.398-.937-2.075-.43-3.01.67-1.46 5.585-6.38 7.567-6.3 1.86.078 3.747-.464 3.93-1.658zm-24.873 10.86c-2.147-1.672.577-4.014 2.82-2.378 4.373 3.295-6.52 15.93-12.447 21.833-1.084 1.157-2.036-1.756-.646-3.01 4.25-3.605 8.227-7.91 10.992-12.36.532-.855 1.042-2.7-.72-4.087z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M238.834 120.65c-1.248-2.868 1.872-3.93 2.34-1.885 2.167 9.42 7.358 16.554 11.31 22.96 1.188 2.003.235 3.197-2.658 1.354-2.002-1.376-4.036-6.383-5.02-6.58-1.784-.33-6.05 8.134-14.777 5.72-2.26-.633-2.11-7.347-2.153-10.31-.095-1.39 1.44-1.76 1.493.137.08 2.734-.003 8.413 3.494 8.604 2.852.16 9.167-3.87 10.5-7.022 1.184-3.24-3.182-9.68-4.53-12.98z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M214.894 119.97c.662.03 2.476 2.38 2.357 3.116-.08.347-1.94-.05-2.507-.532-.42-.356-.25-2.604.152-2.585zm-8.747 17.027c-1.658.905.263 2.69 1.505 1.936 4.66-3.018 11.656-6.19 13.118-12.167.47-2.025 2.35-5.13 4.138-5.822 1.726-.67 4.233 3.124 5.87.14.96-1.707 4.323 1.12 5.134-.707.99-2.205.518-3.42.56-5.53-.073-1.384-1.13-1.797-1.897.443-.4 1.014.07 2.038-.255 2.567-.247.403-1.018.792-1.465.456-.413-.31-.127-1.173-1.116-1.555-.385-.192-1-.352-1.267.14-1.173 2.092-1.823 4.044-3.466 1.82-1.464-1.916-2.205-5.228-3.278-.696-.386 1.6-2.817 3.92-4.25 3.92-1.79 0-1.34-4.713-5.276-3.996-2.022.432-1.882 4.3-1.58 5.73.496 1.988 6.405.56 6.11 1.86-1.01 4.515-7.276 8.807-12.588 11.46zm32.687-16.347c-1.248-2.868 1.872-3.93 2.34-1.885 2.167 9.42 7.358 16.554 11.31 22.96 1.188 2.003.235 3.197-2.658 1.354-2.002-1.376-4.036-6.383-5.02-6.58-1.784-.33-6.05 8.134-14.777 5.72-2.26-.633-2.11-7.347-2.153-10.31-.095-1.39 1.44-1.76 1.493.137.08 2.734-.003 8.413 3.494 8.604 2.852.16 9.167-3.87 10.5-7.022 1.184-3.24-3.182-9.68-4.53-12.98zm5.236-5.917c.492-1.027 3.448-2.19 4.2-2.884.698-.716 1.03.6.733 1.223-.492 1.027-3.044 2.762-4.163 2.81-.602.024-1.07-.53-.77-1.15zm7.006.33c.64-1.803 2.705-4.54 4.126-5.44.73-.46 2.04-.097 1.794.595-.543 1.53-3.07 4.205-4.768 5.465-.516.46-1.3-.2-1.152-.62m-6.014 4.517c-.428.214-.197 1.126.216 1.264.878.292 2.475.35 3.2-.05 1.05-.648.572-4.634-.835-2.505-.944 1.312-1.633.89-2.58 1.29zm21.292-1.285c.925-.815 1.398-2.18 2.367-3.01.533-.533 1.38.105 1.24 1.39-.12 1.01-1.477 1.883-2.39 2.643-.744.557-1.61-.645-1.215-1.023zm10.53-3.755c1.376-.153 1.718 2.503.214 2.933-.913.305-1.71-2.777-.214-2.934zm-3.464 8.212c-.022 2.287 1.107 2.077 3.26 2 2.092-.08 3.93.053 3.923-2.013-.01-2.143-1.185-4.016-1.53-2.56-.303 1.37-.545 3.61-1.34 2.634-.752-.84-.454-1.023-1.746.354-.717.758-.798-.37-1.23-1.076-.298-.42-1.336.338-1.338.658zm-15.026 11.678c-.514 3.027-.043 7.264 1.506 7.312 1.916.062 5.878-6.617 7.754-10.082 1.125-1.933 3.058-2.27 2.252-.254-1.22 3.113-1.11 9.772-.04 11.728.577 1.054 4.83-.966 5.517-2.467 1.25-2.73.234-7.758.672-10.83.212-2.016 2.057-2.437 1.96-.568-.183 3.342-.5 9.472-.265 12.256.14 1.6 4.716 3.962 5.45-.884.39-3.05 1.96-6.06-.074-9.44-1.262-2.112 1.85-1.847 3.528 1.04 1.174 1.964-.99 5.215-.913 7.73.197 3.865-2.81 6.06-4.992 6.107-1.95.04-3.22-2.357-4.82-2.39-1.772-.114-3.594 2.76-5.06 2.656-5.68-.388-2.672-8.69-4.402-8.79-1.925-.114-4.194 8.135-6.565 7.84-2.336-.28-4.755-6.722-3.782-9.448.88-2.538 2.538-3.132 2.277-1.52z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M285.895 121.33c-2.77-1.69.175-6.085 1.53-4.54 2.616 3.132 5.253 10.568 7.096 11.182 1.17.39 1.115-5.496 1.94-8.172.53-1.977 2.92-1.33 2.463 1.2-.156.847-3.122 10.463-2.894 10.843 2.054 4.11 4.09 8.28 5.374 12.69.532 1.9-1.75.62-2.024.224-1.46-2.18-4.01-10.51-4.01-10.13-1.174 5.86-1.45 7.59-2.696 12.572-.38 1.595-2.73 1.304-2.2-1.507.51-2.31 3.87-13.674 3.68-14.003-2.64-4.66-5.055-8.35-8.26-10.36z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M290.897 148.366c-.773-.088-1.97 1.718 1.876 2.428 5.142.93 10.77-.8 12.496-5.843 1.973-6.004 3.28-11.69 4.31-13.836 1.29-2.5 2.938-2.298 1.72-5.948-.857-2.626-2.46-1.834-2.796-.43-.9 3.83-4.31 16.214-5.375 18.495-2.01 4.163-6.058 5.81-12.234 5.137z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M301.193 128.61c-.55-1.18-1.835-.266-1.606 1.026.137 1.168 1.084 1.803 2.036 1.77 1.127-.04 3.51.038 3.517-1.833.004-1.315-1.03-2.413-1.796-.962-.734 1.315-1.678 1.177-2.15 0zm1.285-4.943c-.395.274-.04 1.736.43 1.72 1.68-.056 4.06-.592 5.335-1.48.373-.26.218-1.142-.314-1.124-1.62.054-4.198.01-5.453.884zm14.266 3.678c1.216-1.9 4.572-2.094 3.365.62-.856 1.87-9.21 18.01-10.35 20.062-1.244 2.308-2.26 1.165-1.378-.632 1.19-2.313 7.98-19.488 8.36-20.05zm2.726 12.457c.044-.352-1.813-.512-1.722 1.29.065 1.334 1.66 1.697 1.935 1.506 2.51-1.826-.533-.916-.214-2.796z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M327.702 160.082c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M315.81 147.1c-.495.116-.948 1.694.216 1.784 1.064.076 5.235-.372 6.388-.304.745-.028 1.03-1.453-.57-1.378-1.937.098-4.485-.388-6.034-.102m11.892 12.982c.696-1.94 9.96-17.49 11.177-20.91.62-1.65 3.28 2.83.683 5.245-2.28 2.053-9.01 13.09-10.266 16.957-.578 1.746-2.332.915-1.596-1.292z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M343.428 145.25c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M343.428 145.25c1.71-6.41 5.854.99 2.205 4.64-5.635 5.518-7.332 16.054-16.27 17.64-2.41.518-6.652-1.084-7.91-1.977-.49-.35.318-2.638 1.825-1.52 2.178 1.7 6.676 2.084 9.05.15 5.08-4.985 9.216-11.588 11.1-18.932zm-85.52 18.997c-1.89.382-1.567 2.81-1.013 3.11.915.427 2.33.606 2.86-2.185.247-1.147.47 5.7 2.983 3.06 1.446-1.597 5.03.29 6.53-1.72 1.074-1.338 1.405-2.272.568-4.25-.243-.6-1.714-.305-1.63 1.154.073 1.23-.873 2.748-2.103 2.49-.597-.11.337-3.01-.263-3.796-.33-.432-.833-.385-1.16.063-.463.626.462 3.406-1.054 3.772-1.914.44-.91-1.86-1.72-2.28-2.605-1.313-2.856.34-4 .582zm14.732-4.67c1.385-.39.953-.39 3.13-2.175.85-.642 1.016 1.238.927 1.982-.158 1.263-1.658.37-2.123 1.483-.682 1.444-.405 4.803-.633 6.17-.154.704-1.28.644-1.39.09-.32-1.67.23-3.302.177-5.388-.017-.71-1.03-1.82-.085-2.165zm-6.5-7.514c-.335 1.51-.31 2.754-.31 3.79.077.836 1.606.297 1.6.19-.075-1.326.226-3.16-.165-3.67-.212-.276-1.047-.594-1.125-.31m-16.835 4.282c-2.36 2.063-4.547 2.906-6.717 5.514-.887 1.067-.862 2.556-1.392 3.92-.53 1.444-2.24 1.73-2.77 1.427-.885-.582-.756-3.264-1.745-1.82-.837 1.33-1.38 3.16-2.62 3.137-1.12-.023-3.234-2.316-2.162-2.427 3.67-.375 3.624-3.312 4.998-3.505 1.542-.206 1.643 2.425 2.595 1.898.748-.383 1.1-3.448 1.91-4.275 2.49-2.542 4.457-3.885 6.995-5.754 1.284-1.02 2.2.826.91 1.886z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M250.55 159.498c-.403.464-1.635.388-1.746 1.038-.484 2.41 0 3.633-.53 5.955-.51 2.225-2.052 2.31-1.947.497.14-2.35 2.077-5.666.708-5.894-.91-.214-1.613-1.432-.67-2.034 1.778-1.234 2.733-1.046 3.956-.674.428.13.537.757.23 1.113z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.973,d:"M238.133 347.453c.815 1.812 2.007 1.732 1.828-.002-.345-2.22-1.016-5.29-1.396-7.955-.216-2.258-2.55-1.822-1.935.537.78 2.547.614 5.34 1.504 7.423zm6.987.117c-.01.918 1.413.834 1.4.108-.148-2.31-.324-5.432.32-6.56.503-.878 2.53-.258 4.41-.43.748-.11.593-2.17-.968-2.04-1.84.165-6.696-.433-6.99 1.288-.422 3.095 1.914-.185 1.828 7.633zm14.09-8.934c1.18.848 1.015 1.952-.43 1.61-1.72-.43-2.88-.29-2.856.653.025.927.75 1.11 1.808 2.137 1.012 1.06-.62.888-1.872 3.06-1.067 1.798 1.11 2.036 3.674 1.355.654-.187 1.513.938-.107 1.862-1.14.61-4.318 1.355-5.11-.952-1.5-3.99 2.514-4.542.823-5.605-.923-.557-1.256-1.395-1.088-2.51.358-2.568 4.184-2.227 5.16-1.612zm5.295 8.797c1.548-2.824 2.614-4.94 3.046-7.337.378-2.165 1.933-2.373 2.26-.538.42 2.437 1.816 4.852 3.51 7.065.992 1.373-1.005 2.58-1.79 1.513-1.438-1.826-1.498-4.37-2.347-4.352-.98.02-2.09 2.836-3.135 4.914-.304.604-2.16-.002-1.542-1.265z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M238.133 347.453c.815 1.812 2.007 1.732 1.828-.002-.345-2.22-1.016-5.29-1.396-7.955-.216-2.258-2.55-1.822-1.935.537.78 2.547.614 5.34 1.504 7.423zm6.987.117c-.01.918 1.413.834 1.4.108-.148-2.31-.324-5.432.32-6.56.503-.878 2.53-.258 4.41-.43.748-.11.593-2.17-.968-2.04-1.84.165-6.696-.433-6.99 1.288-.422 3.095 1.914-.185 1.828 7.633zm14.09-8.934c1.18.848 1.015 1.952-.43 1.61-1.72-.43-2.88-.29-2.856.653.025.927.75 1.11 1.808 2.137 1.012 1.06-.62.888-1.872 3.06-1.067 1.798 1.11 2.036 3.674 1.355.654-.187 1.513.938-.107 1.862-1.14.61-4.318 1.355-5.11-.952-1.5-3.99 2.514-4.542.823-5.605-.923-.557-1.256-1.395-1.088-2.51.358-2.568 4.184-2.227 5.16-1.612zm5.295 8.797c1.548-2.824 2.614-4.94 3.046-7.337.378-2.165 1.933-2.373 2.26-.538.42 2.437 1.816 4.852 3.51 7.065.992 1.373-1.005 2.58-1.79 1.513-1.438-1.826-1.498-4.37-2.347-4.352-.98.02-2.09 2.836-3.135 4.914-.304.604-2.16-.002-1.542-1.265zm133.847-82.251c-.11.58 1.454 1.433 1.826.99 1.682-2.015 3.883-5.97 4.334-8.364.133-.697-2.107-1.485-2.586-.913-1.575 1.886-3.1 5.773-3.574 8.287"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2709.809fe258.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js deleted file mode 100644 index 2bfe133c46..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2739.84cc2ba2.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2739"],{56910(s,t,c){c.r(t),c.d(t,{default:()=>d});var e=c(74848);c(47867);let d=s=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",...s,children:[(0,e.jsx)("path",{fill:"#0f47af",d:"M0 0h640v480H0z"}),(0,e.jsx)("path",{fill:"#fff",d:"M0 160h640v160H0z"}),(0,e.jsxs)("g",{transform:"translate(-92.698)scale(.8)",children:[(0,e.jsxs)("g",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.304,children:[(0,e.jsx)("path",{d:"M515.01 353.35c1.52 0 3.167 0 10.11-1.692 6.943-1.65 12.67-5.858 14.015-6.466 1.345-.607 3.297-.434 3.297-.434-.738-.78-2.864-2.734-5.857-2.734-3.038 0-1.823 0-4.383 1.085-2.56 1.04-7.897 4.294-16.92 4.294h-.173c-9.027 0-14.666-3.253-17.226-4.295-2.56-1.086-1.39-1.086-4.383-1.086-3.037 0-5.12 1.954-5.9 2.734 0 0 1.996-.173 3.34.434 1.346.608 7.073 4.816 14.016 6.466 6.897 1.692 8.59 1.692 10.065 1.692z"}),(0,e.jsx)("path",{d:"M488.37 347.44c.737-.433-.174-1.648-.174-1.648l2.734-.608c-1.345-.607-3.34-.434-3.34-.434-.522.434-.435.955-.522 1.345-.043.39-.043 1 .26 1.302.26.26 1.042.043 1.042.043z"}),(0,e.jsx)("path",{d:"m490.92 345.19-2.734.608s.91 1.215.174 1.648l4.816-.91s-.737-.522-2.256-1.346zm50.77 2.25c-.737-.433.13-1.648.13-1.648l-2.69-.608c1.345-.607 3.297-.434 3.297-.434.564.434.477.955.564 1.345.044.39.044 1-.26 1.302-.302.26-1.04.043-1.04.043z"}),(0,e.jsx)("path",{d:"m539.13 345.19 2.69.608s-.867 1.215-.13 1.648l-4.816-.91s.737-.522 2.256-1.346z"})]}),(0,e.jsx)("path",{d:"m495.843 343.31-1.22 3.03.564.22c.91.39 1.817.185 2.25-.813.39-1.042-.133-1.808-1-2.156l-.594-.28zm.25.625.094.03c.693.304 1.115.8.812 1.626-.348.782-1.038.805-1.688.5l-.125-.03z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m497.563 347.618-.348-.135 1.346-2.988.348.135z"}),(0,e.jsx)("path",{d:"M500.213 345.28c-.634.016-1.238.443-1.53 1.094-.392.868-.013 1.796.81 2.187.825.35 1.8-.025 2.19-.936a1.74 1.74 0 0 0-.845-2.22 1.5 1.5 0 0 0-.625-.124zm-.03.5c.145 0 .316.03.468.094.65.26.824.955.563 1.562-.26.608-.967.917-1.53.656-.52-.26-.805-.91-.5-1.562.194-.455.56-.746 1-.75z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"M503.81 347.36c-.043-.216-.13-.39-.346-.477s-.564 0-.65.26c-.088.26.086.48.216.608l.218.175c.346.303.563.65.346 1.17-.217.565-.78.783-1.302.61-.434-.175-.695-.695-.564-1.216l.39.086c-.13.304.044.65.347.78.304.13.65-.087.782-.39.13-.347-.087-.564-.304-.78l-.173-.175c-.26-.26-.477-.563-.304-.996.174-.478.695-.652 1.128-.478.346.13.52.39.563.738l-.347.086zm2.39.17-.52 1.823c-.13.52-.13 1.042.433 1.215.607.174.868-.26 1.04-.78l.52-1.867.348.13-.563 1.954c-.173.694-.737 1.128-1.432.91-.693-.172-.954-.823-.737-1.518l.564-1.996.348.13zm4.38 4.513-1.823-2.988-.478 2.378-.348-.04.65-3.382 1.78 2.947.477-2.336.347.042zm.824-.083.39-3.215.347.04-.39 3.258z"}),(0,e.jsx)("path",{d:"M514.183 348.88c-.91-.043-1.644.683-1.687 1.594-.044 1 .65 1.738 1.562 1.78.868.044 1.644-.625 1.688-1.624.043-.91-.694-1.75-1.563-1.75m-.062.47c.694.042 1.138.63 1.094 1.28a1.14 1.14 0 0 1-1.156 1.156c-.608-.043-1.094-.598-1.094-1.25.044-.65.506-1.187 1.157-1.187z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m519.083 352.136-2.517-2.347.174 2.43h-.39l-.26-3.382 2.516 2.336-.174-2.388.39-.04zm2.04-.486-.608-3.205.39-.042.564 2.813.91-.166.088.383zm1.735-.34-.738-3.175.39-.083.738 3.164z"}),(0,e.jsx)("path",{d:"M523.873 347.72c-.136.007-.265.03-.406.063l-.344.125.875 3.125.688-.157c.52-.173.954-.567.78-1.22-.086-.346-.42-.636-.812-.592.174-.174.2-.502.157-.72-.162-.52-.53-.646-.937-.624zm.063.406c.207-.034.402.05.5.375.13.392-.135.51-.438.595l-.094.03-.312-.936h.125a1 1 0 0 1 .22-.064zm.5 1.313c.254-.03.528.017.593.343.13.39-.166.57-.47.656l-.28.092-.25-1 .187-.03c.075-.022.134-.054.22-.063z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m527.24 347.97.13.34-1.172.393.39 1.17 1.216-.436.13.393-1.562.528-1.085-3.08 1.606-.57.087.34-1.215.435.303.87z"}),(0,e.jsx)("path",{d:"M528.623 346.19c-.304-.043-.552.026-.812.156l-.437.188 1.22 3.03.343-.124-.47-1.313.126-.03 1.344.906.468-.157-1.468-.97c.39-.216.517-.69.343-1.123-.088-.26-.353-.52-.657-.563m-.094.406c.167.017.318.127.406.344.172.433-.185.65-.532.78l-.062.032-.406-1 .093-.03c.15-.066.33-.142.5-.126z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m529.237 345.757 1.696-.745.165.31-.693.3 1.22 2.647-.35.175-1.21-2.647-.652.3z"}),(0,e.jsx)("path",{d:"m532.213 344.19.22 3.72.405-.22-.062-.844 1.28-.656.688.563.344-.22zm.438.875 1 .813-.906.468-.093-1.28zm2.662-2.185c-.318.018-.66.117-.97.313l-.56.312 1.718 2.813.5-.282c.868-.52 1.253-1.39.688-2.344-.352-.596-.844-.842-1.375-.812zm.156.5c.303.027.604.193.843.563.433.737.026 1.296-.625 1.687l-.062.03-1.188-1.936.094-.094c.325-.174.633-.277.937-.25z"}),(0,e.jsxs)("g",{id:"sv_inline_svg__a",stroke:"#000",strokeMiterlimit:2.613,children:[(0,e.jsx)("path",{fill:"#e60000",fillRule:"evenodd",strokeWidth:.13,d:"M485.07 355.17c.52 0 .91-.39.91-.912 0-.478-.39-.867-.91-.867-.477 0-.91.39-.91.868 0 .52.433.912.91.912zm-5.12 6.33c.52 0 .91-.39.91-.91a.916.916 0 0 0-.91-.913c-.478 0-.91.434-.91.912 0 .52.433.91.91.91zm-11.89-19.87c.477 0 .91-.434.91-.91a.917.917 0 0 0-.91-.913.89.89 0 0 0-.91.912c0 .476.39.91.91.91zm-7.38 3.69c.52 0 .998-.434.998-1 0-.52-.478-.997-.998-.997a1.01 1.01 0 0 0-.998.998c0 .566.433 1 .998 1zm-1.34-22.3c.52 0 .998-.433.998-.998 0-.52-.477-.997-.998-.997a1.01 1.01 0 0 0-.998.997.98.98 0 0 0 .998.998zm-6.21 1.82a.98.98 0 0 0 .998-.998.98.98 0 0 0-.998-.997c-.52 0-.998.433-.998.997s.477.998.998.998zm3.17-19.87c.565 0 .998-.478.998-.998a.98.98 0 0 0-.998-.998.98.98 0 0 0-.998.998c0 .52.435.998.998.998zm-5.55-18.27c.52 0 .998-.434.998-.954a1.01 1.01 0 0 0-.998-.998.98.98 0 0 0-.998.998c0 .52.433.954.998.954zm7.07 1.82a.98.98 0 0 0 .998-.998c0-.52-.435-.997-.998-.997a1.01 1.01 0 0 0-.998.997.98.98 0 0 0 .998.998zm6.94-15.22c.52 0 .998-.434.998-.998 0-.52-.477-.954-.998-.954-.563 0-.998.433-.998.954 0 .564.435.998.998.998zm-5.29-4.21a.98.98 0 0 0 .998-.998c0-.52-.433-.997-.998-.997a1.01 1.01 0 0 0-.998.997.98.98 0 0 0 .998.998zm10.54-10.24a.98.98 0 0 0 .998-.998.98.98 0 0 0-.998-.997.98.98 0 0 0-.998.997.98.98 0 0 0 .998.998zm-21.52 46.25c.563 0 .998-.434.998-.954s-.433-.956-.998-.956a.963.963 0 0 0-.954.956c0 .52.433.954.954.954z"}),(0,e.jsx)("path",{fill:"none",strokeWidth:.26,d:"M485.93 358.9s-.737-3.167-.608-3.904l.782-.608m-1.384 5.722s-2.82.13-3.73.434c0 0 0 .174-.304.782M467.28 345.8s-.174-3.775.608-4.08c0 0 .737-.302 1.17-.91m-4.648 3.77s-2.126-.305-2.734 0c0 0-.13.607-.608.78m-.728-22.91-.737.434c-.78.303-2.256 3.948-2.256 3.948s-2.43-1.823-3.47-1.997h-1.086m-4.821-20.175s.608.608 1.215.304c0 0 2.994 1.953 3.167 2.734 0 0 3.168-3.167 3.775-2.864 0 0 .303.434.91-.174m-5.727-18.52s.304.433.867.737c0 0 1.39 1.996 1.39 3.47 0 0 2.56-2.255 3.296-2.08 0 0 .91.302 1.518 0m.309-19.437s.607.737 1.04.13c0 0 1.823 2.256.738 3.95 0 0 2.56-.608 3.34-.175 0 0 .304 1.04 1.216.434"}),(0,e.jsxs)("g",{fill:"#1f601a",fillRule:"evenodd",strokeWidth:.26,children:[(0,e.jsx)("path",{d:"M532.79 378.34s-3.904-.303-4.512-.303-1.953-2.69-2.56-3.167c-.608-.434-10.848-5.424-17.486-6.465-6.64-1.04-16.834-4.99-18.96-6.03-11.022-5.295-23.344-15.1-26.078-19.136-2.864-4.21-5.9-14.016-7.246-19.265-.608-2.43-3.905-12.366-3.905-19.135 0-7.852.91-14.318 2.126-19.438 1.17-5.12 9.978-20.13 15.358-26.814 0 0-12.105 18.743-14.188 25.903-2.082 7.377-2.69 16.358-2.56 21.478.13 4.21 3.645 19.612 8.765 30.936 4.078 9.07 7.636 10.153 14.015 15.23 2.994 2.386 8.72 6.16 13.537 8.59 4.816 2.387 15.056 5.424 17.79 5.858 2.69.478 16.4 4.512 18.22 5.424 1.826.91 6.47 4.99 7.683 6.334z"}),(0,e.jsx)("path",{d:"M464.11 343.41c.304-1.39.433-2.43.91-2.864.434-.478 1.954-2.3 2.257-3.47.304-1.216 0-2.127 0-2.735 0-.607.433-2.69.433-2.69s-.737-2.56-1.345-3.037c-.607-.434-2.126-2.56-2.43-3.166 0 0 .173 1.214-.304 1.822-.433.606-.606 2.125-.606 2.994 0 .91.303 3.037 0 4.077-.304 1.173-.737 2.128-.434 3.472.262 1.086 1.52 5.598 1.52 5.598z"}),(0,e.jsx)("path",{d:"M463.63 341.89s-3.427-4.382-3.427-6.205c0-1.78-.303-2.864-.607-3.297s-2.256-2.733-.477-5.553c.78-1.215.91-1.128 1.344-2.43.607-1.65 1.823-1.65 1.996-3.297 0 0 .434 1.952.564 3.6.173 1.65-.13 2.257-.26 3.167-.174.912.433 1.953.433 3.297 0 1.39-.173 1.91-.173 2.734-.002.435-.566 6.162.606 7.984zm38.62 23.52s-2.907-.304-3.992-.478c-.78-.087-2.56-.52-3.558-.91-.867-.305-2.56-1.216-4.034-2.778-2.777-2.95-2.517-4.513-2.994-4.643-.998-.172 1.56-.432 2.777-.258 1.17.13 2.82.997 3.904 2.038 1.128 1.043 2.864 2.214 3.47 2.648.608.477 1.042.65 1.692 1.52.652.867.608 1.43 2.734 2.862z"}),(0,e.jsx)("path",{d:"M506.24 367.53s-7.29-3.254-8.027-3.862c-.78-.564-1.996-1.736-2.778-2.56-.737-.825-3.818-2.387-4.338-3.384-.346-.695-2.256-3.34-3.384-5.424-.564-1.084 4.86.348 4.86.348 4.426 1.78 2.43.52 4.86 2.344 1.474 1.128 2.472 2.082 2.863 2.907.563 1.3 1.215 3.556 1.866 4.728.607 1.17 1.777 2.688 4.078 4.902z"}),(0,e.jsx)("path",{d:"M510.19 368.45s-6.03-1.562-8.765-5.294c-1.953-2.56-1.953-1.778-2.777-2.647-.997-1.085-2.56-2.256-3.86-4.47.13.218-1.736-5.9-1.65-6.638.044-.433 2.3.304 4.122 1.085 1.562.65 2.473 1.91 3.818 2.734 1.606 1.043 1.823 3.645 2.56 4.86 1.04 1.78 1.17 2.69 1.17 3.558-.042 1.345.74 1.78 1.173 2.907.523 1.344 2.128 1.128 4.21 3.905zm-9.63-2s-5.12-2.256-5.858-2.43c-.78-.13-1.085-.608-2.126-.912-.867-.217-1.65-.867-3.775-.433-.91.216-4.64 1.04-5.553.607-.91-.478 1.345 2.56 2.386 3.167 1.085.607 2.864.91 4.383.737 1.518-.13 3.6 0 4.382 0 .737 0 1.17.174 2.256-.13 1.042-.303 1.345-.78 3.906-.607z"}),(0,e.jsx)("path",{d:"M504.03 366.45s-5.728-1.432-6.682-1.432-3.688.174-4.816.39c-1.085.175-4.512-.173-5.51.348-1.042.477-5.598 1.128-6.813.824-1.215-.26 2.43 3.254 3.86 3.645 4.643 1.302 3.255 1.128 6.25.347 1.822-.477 4.425-.608 5.336-.738.91-.174.737-.695 1.953-1.215 1.213-.52 3.252-1.823 6.42-2.17z"}),(0,e.jsx)("path",{d:"M508.71 368.84s-5.727-2.387-10.197-1.173c-3.08.87-2.994.74-4.208.956-1.432.217-2.647-.52-4.99.433-1.17.478-6.16 2.518-7.55 2.43-1.258-.086 3.993 3.34 5.425 3.124 4.598-.65 8.938.91 11.064.044 1.908-.738 3.037-1.26 3.992-1.563.954-.346 1.475-1.213 2.082-1.648.607-.476.998-1.648 4.382-2.602zm-30.58-13.15s-3.297-3.643-3.949-4.12c-.605-.48-2.168-1.607-2.993-2.345-.693-.607-1.388-1.952-3.514-2.473-.91-.217-3.123-.652-3.774-1.432-.61-.825.128 2.907.823 3.904.695 1 2.17 2.04 3.6 2.56 1.433.52 3.255 1.563 3.906 1.91.693.303 1.04.65 2.125.825 1.085.216 1.562-.088 3.775 1.17z"}),(0,e.jsx)("path",{d:"M481.25 357.21s-5.598-3.947-6.465-4.382c-.868-.39-2.473-.954-3.514-1.3-1.084-.305-3.904-2.345-5.032-2.345s-3.254-.087-4.21-.824c-.996-.783-.13 2.732.956 3.73 3.6 3.21 1.128 2.256 4.12 2.864 1.824.39 4.253 1.39 5.12 1.648.912.26 1-.303 2.3-.216 1.303.043 3.733-.217 6.726.824z"}),(0,e.jsx)("path",{d:"M482.59 358.25s-2.3-1.52-6.855-2.3c-3.123-.565-2.994-.695-4.165-.998-1.388-.434-1.692-.434-4.252-.565-1.258-.087-6.205 1.52-7.376.825-1.085-.608 1.215 1.518 2.603 2.04 1.996.737 1.736 2.04 3.906 2.733 2.3.738 4.73 1.65 6.075 1.39 1.04-.218 1.823-.695 3.297-.826 1.43-.175 3.947-2.258 6.768-2.3zm.48-1.17s1.128-5.466.174-6.768c-.477-.608-1.085-1.475-1.215-2.865-.13-1.345-1.042-3.6-1.65-4.338-.607-.782-1.823-4.253-1.52-5.12 0 0-3.166 3.123-2.993 5.12.13 1.952.13 1.475 0 2.386-.174.91.737 3.904 1.345 4.816.607.91.304 3.643.91 4.208.61.608 4.212 3.038 4.948 2.56z"}),(0,e.jsx)("path",{d:"M482.59 358.25c.347.173-1.91-1.736-2.994-2.214-1.04-.434-5.25-1.65-5.554-2.69-.303-1.085-3.775-4.686-3.904-5.597-.13-.695-.782-2.127-.608-2.865.13-.738.434-2.56.91-3.602.434-1.084 1.476-3.6 2.56-4.077 0 0 .868 2.864 1.172 3.905.304 1.085.607 2.3 1.084 2.865.434.608 1.952 3.47 2.083 4.555.172 1.04.91 4.512 1.083 5.25.132.738 2.952 3.82 4.167 4.47zm-18.48-14.84c.13.782-2.256-.78-3.47-.78-1.216 0-4.817.476-5.728-.435-.91-.912-2.256-2.56-2.733-2.864-.436-.303-2.085-3.037-2.56-4.51-.436-1.52-3.603-4.253-4.037-4.556 0 0 4.34-.87 7.072.91 2.69 1.823 2.864 1.39 3.47 1.65.608.304 5.25 4.25 5.555 5.727.304 1.52 2.257 4.08 2.43 4.86z"}),(0,e.jsx)("path",{d:"M464.11 343.41s-3.905-2.734-4.816-2.603c-.91.173-5.163-2.995-5.423-4.947-.173-1.04-2.21-2.516-2.56-3.167-1.083-1.822-1.69-5.857-3.166-6.94 0 0 4.078 1.04 5.12 1.213 1.953.304 3.6.607 4.34 2.256.78 1.65 1.388 3.038 1.995 3.167.606.173 1.474 2.256 1.778 4.38.302 2.085 2.732 6.64 2.732 6.64zm-7.38-20.52c.65 1.04.607-6.032.867-6.77.303-.737 1.085-2.256 1.692-2.863s.607-2.69.91-3.297c.26-.608.13-4.686-.303-5.727 0 0-1.215.91-1.823 1.648-.607.74-1.65 1.043-1.952 1.954-.304.912-.91.912-1.345 1.823-.477.912-.91 2.386-.607 3.6.304 1.216.13 1.65.13 2.735 0 1.04 1.52 5.553 2.43 6.898z"}),(0,e.jsx)("path",{d:"M456.86 323.49s-.304-1.953.477-2.69c.737-.782 1.475-.782 1.78-1.215.302-.478.172-1.042.476-1.65s.954-1.605 1.04-2.126c.305-1.65 1.216-3.472.435-5.25 0 0-1.65.563-2.082.867-.478.304-1.823 1.52-1.953 2.734-.173 1.346-.303 1.52-.78 2.258-.434.737-1.042 2.994-.304 4.382.78 1.346.91 2.69.91 2.69zm-4.38-23.03s-.304-4.382.91-5.728c1.216-1.345 1.52-3.904 4.21-5.294 0 0-.13 1.085 0 1.823.174.738.477 2.865 0 3.602-.434.78-1.953 2.126-1.953 2.734s-1.04 2.126-1.778 2.43c-.783.26-1.39.434-1.39.434z"}),(0,e.jsx)("path",{d:"M452.48 302.84s0-3.123.91-4.034c.912-.91 1.39-1.39 1.824-1.954.433-.606.91-2.125 1.952-2.733 1.04-.608 2.864-2.127 3.037-2.692 0 0 .434 3.732-.607 5.728-1.084 1.952-1.084 2.995-2.256 3.428-1.214.477-1.388.78-1.82 1.084-.48.304-1.216.74-1.824.74-.61 0-1.216.432-1.216.432zm3.47 20.52c.174.87.78-1.953-2.386-1.953s-5.728-1.215-6.812-2.3c-1.04-1.04-1.65-1.78-2.083-2.257-.478-.433-1.65-2.256-1.823-3.166-.13-.87-1.04-4.21-.91-4.816 0 0 1.692.303 2.43.91.736.608 2.125.608 2.863 1.085.737.434 1.345 1.65 1.823 2.083.433.478 1.778.478 2.386 1.346.606.91 1.647 2.864 1.82 3.774.13.91 1.216 1.822 1.954 2.256.736.48.606 2.258.736 3.038z"}),(0,e.jsx)("path",{d:"M455.65 322.15s-2.082-2.56-3.167-2.56c-1.04 0-3.73-2.735-3.905-3.905-.13-1.215-1.04-3.47-1.65-3.948-.606-.434-1.647-1.475-1.517-3.297.174-1.823.174-4.816.174-4.816s.608 1.823 1.475 2.256c.91.434 2.56 1.042 2.863 1.65s1.52.607 1.996 2.43c.432 1.78.432 1.65.736 2.256.304.608 1.04 1.346 1.345 2.56s1.954 4.336 1.65 7.374zm-3.12-16.62c-.086.824 1.215-1.606-1.65-2.474-2.906-.868-4.902-2.69-5.552-3.948-.652-1.215-.998-2.082-1.302-2.603-.26-.564-.867-2.517-.737-3.384.086-.867.216-4.12.52-4.642 0 0 1.432.738 1.91 1.475.52.78 1.778 1.17 2.34 1.78.522.606.74 1.865 1.043 2.43.304.52 1.518.91 1.822 1.865.304.998.695 3.08.565 3.948-.087.867.607 1.953 1.17 2.604.565.607-.087 2.212-.13 2.95z"}),(0,e.jsx)("path",{d:"M452.57 304.32s-1.215-2.908-2.17-3.167c-.954-.304-2.516-2.777-2.603-3.905-.13-1.302-.303-3.47-.737-4.034-.433-.565-1.215-2.43-.607-4.036.65-1.605 1.65-3.73 1.65-3.73s.867 1.344 1.344 2.17c.78 1.56 1.563 1.69 1.693 2.298.087.65 1.04 1.042 1.39 2.3.476 1.692-.045 1.605.042 2.256.13.607.607 1.52.52 2.69-.044 1.17.607 4.51-.522 7.158zm2.34-18.18c.13-.433 1.04-.91 2.126-1.215 1.04-.303 2.69-2.69 3.427-3.297.694-.65 1.085-1.606 1.996-2.126.91-.52 1.474-2.387 1.778-4.21 0 0-2.56.608-3.297.738-.736.174-2.255 1.085-2.863 1.822-.607.738-1.215 1.953-1.823 2.256-.607.304-1.345 2.127-1.345 3.34v2.692z"}),(0,e.jsx)("path",{d:"M454.78 284.79s-.173-1.78-.173-2.56c0-.91-.564-3.34.738-5.294.91-1.345 4.252-3.905 5.12-4.035 0 0 .606 2.387.476 3.124-.172.78-.953 3.775-1.648 4.078-.694.305-2.43 3.906-4.512 4.688z"}),(0,e.jsx)("path",{d:"M454 286.14c-.39.65-.13-2.256-1.04-2.994-.912-.78-1.042-1.822-1.042-3.038s.26-2.082.433-2.863c.13-.738 2.43-3.905 2.258-4.816 0 0 1.302 2.95 1.648 3.774.478 1.04-.303 2.126-.13 2.994.13.91.868 2.56.304 3.47-.477.782-1.822 2.43-2.43 3.472zm7.98-15.53s.174-.433 1.52-.433c1.344 0 3.296-.132 3.904-.74.607-.606 1.65-1.388 2.256-1.692.607-.26 1.65-1.648 1.823-2.256.13-.608 1.215-1.78 1.65-1.78 0 0-1.65-.174-3.472.304-1.777.433-4.337 1.345-4.945 2.56-.61 1.172-2.735 4.036-2.735 4.036z"}),(0,e.jsx)("path",{d:"M462.46 270.3c.347 1.04 2.864-1.04 3.427-1.778l1.52-1.953s1.432-1.736 1.823-2.43c.91-1.65.694-4.643.303-4.383-.477.304-2.126 1.215-2.56 1.39-.478.13-1.345.432-1.65 1.17-.303.78-.607 1.822-1.084 2.3-.434.433-3.168 1.95-1.78 5.683z"}),(0,e.jsx)("path",{d:"M461.55 270.3s2.083-1.475 2.864-2.256c.91-.867.433-2.082.91-2.69.39-.565 1.476-1.953 1.172-2.864-.303-.91-.867-3.47-.867-3.47s-1.086 1.04-1.823 1.822c-.78.737-.91 1.345-1.215 2.256-.303.91-.91 1.518-1.215 2.256-.304.737 0 2.256.173 3.167.13.91 0 1.78 0 1.78z"})]}),(0,e.jsxs)("g",{fill:"none",strokeWidth:.13,children:[(0,e.jsx)("path",{d:"M494.83 365.23s-9.936-.13-10.848-1.345m16.578 2.565s-6.465 1.78-9.936 1.345c-3.47-.433-5.12.304-5.902.304-.737 0-4.512-1.52-4.512-1.52m26.98 2.261s-4.99.91-6.03 1.215c-1.042.303-6.162 2.256-7.68 2.256-1.216 0-4.167-.13-4.99 0-1.476.305-5.425 0-6.334-.432m6.214-14.929s3.775 2.257 4.382 2.994c.563.782 3.905 3.47 4.512 3.47m-8.894-11.154s6.465 5.598 7.506 6.335c1.085.78 7.42 6.943 8.158 7.853M493.61 349.87s5.12 4.078 5.728 5.727 2.126 3.6 2.126 3.6 2.125 4.21 2.864 4.817c.737.607 2.256 2.213 4.078 3.34M464.41 346.1s5.38 4.556 6.855 5.424m-9.105-2.564s5.424 3.774 7.81 4.685c2.43.868 4.382 1.65 9.632 2.387m2.128 2.128s-6.03-.304-7.072 0c-1.04.303-5.728-.782-6.943-1.086-1.215-.26-6.03-1.17-6.638-1.345m11.453-17.919s-.303 3.297.174 4.686c.434 1.345 2.56 5.25 2.386 6.16-.13.912 1.215 4.99 2.43 5.728m1.21-15.964s-1.085 3.297-.607 4.383c.433 1.04 1.17 2.994 1.17 4.208 0 1.215.782 2.995 1.086 3.775.303.738-.175 3.297.606 4.035.737.78 1.65 2.126 1.65 2.126M446.49 330.74s4.816 1.823 5.424 2.994c.565 1.216 1.475 1.52 1.953 2.127m10.373-9.631s1.215 4.816.91 6.03c-.303 1.173-.303 3.602-.303 4.513 0 .912-1.345 4.512-1.215 5.12m-1.342-19.743s-.434 2.864-.607 4.078c-.13 1.172 0 3.167-.304 3.905-.305.737-.74 4.816 0 6.638M449.06 326.23s3.905 3.297 4.816 4.21c.91.91 4.946 5.248 5.12 6.333.13 1.042 2.994 4.34 3.905 5.12M442.42 309.35s3.905 3.905 4.21 4.816c.302.912 1.952 2.386 2.733 2.864M460.77 311s-1.475 2.257-1.475 2.994c0 .782-.607 2.735-1.215 3.47-.39.522-1.65 2.735-1.52 4.08m3.04-16.884s-.607 2.127-.91 3.6c-.305 1.52-1.085 3.04-1.346 3.95-.304.91-1.52 5.25-1.085 7.983M445.89 304.53s.434 2.083 1.475 3.167c1.085 1.042 2.734 2.56 2.864 3.427.173.91 1.518 5.423 3.037 6.943 1.52 1.52 1.65 3.038 1.65 3.038M444.37 289.18s.433 2.56.737 3.297 1.52 4.08 2.734 5.12m9.499-7.687s-.78 2.082-.91 2.994c-.175.91-1.085 1.953-1.216 2.43-.173.433-.737 1.952-.737 1.952m5.553-5.296c-.13.91-1.823 3.645-1.953 4.08-.174.475-1.04 2.56-1.952 3.166-.91.607-3.6 2.56-3.47 3.34m-4.385-16.436s-.13 3.297.477 4.512a37 37 0 0 1 1.65 3.949c.303.868.303 2.387.432 3.428.173 1.084.607 3.037 1.214 3.774M463.81 275.9s-2.17 2.473-3.168 3.47c-.998 1-4.816 5.12-4.99 5.858m4.558-11.588s-2.126 4.642-2.603 5.38c-.435.78-.868 1.996-.868 1.996m-1.959-7.546s.13 3.645 0 4.555c-.173.868-.173 2.387 0 2.864.13.433-.477 3.73-.607 4.51m18.047-21.259s-4.816 2.864-5.554 3.6M469.36 260.365l-3.297 4.816-.738 1.39M465.63 259.93s-1.085 2.56-1.215 3.6c-.174 1.086-1.65 4.384-2.256 5.6"}),(0,e.jsx)("path",{strokeWidth:.26,d:"M469.23 257.98s-.478 1.04 1.345.738"})]})]}),(0,e.jsx)("use",{xlinkHref:"#sv_inline_svg__a",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 1030.05 0)"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",d:"M514.57 366.14s.737-1.822 2.256-.174c0 0 1.822 4.253.433 4.382-1.346.175-2.69.434-2.82-.303-.174-.737.13-3.905.13-3.905z"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",d:"M516.52 365.54s.477-6.465 1.345-6.77c.91-.303 3.644-1.822 5.293-.477 1.65 1.39.13 8.07-.477 8.68-.563.606-1.474 2.472-4.945 2.038l-.478-1.647s1.823-.174 3.038-.782c1.215-.607 1.605-1.17 1.52-1.778-.175-.91-.088-4.252-1-4.556-.91-.304-2.343-.737-2.343-.737s-1.345 5.03-1.648 6.463l-.304-.433z"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M514.44 370.05s-6.205 3.6-3.038 9.025l-2.125-1.345s-1.172 2.127-.13 3.34c0 0-4.21-3.774-.912-8.287 3.34-4.556 6.03-4.252 6.03-4.252z"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M514.44 367.06s-2.734-1.823-6.64-.782c0 0-1.735-5.596-1.083-7.376.303-.824.91-.91.91-.91s-1.953-1.173-1.345 4.077c.607 5.293 1.648 6.768 1.648 6.768s5.12.303 6.335-.304z"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M514.44 367.06s-5.424-9.069-6.811-9.069c0 0-1.564-.216 1.95-.606 1.215-.13 3.167 0 4.08 1.692.91 1.65 1.647 5.553 1.95 6.16 0 0-1.04.305-1.17 1.824z"}),(0,e.jsx)("path",{fill:"#011322",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M514.44 367.06s-3.645-1.692-4.08-2.127c-.475-.434-1.214-5.553-.78-5.25 0 0-1.475-1.692-1.95-1.692-.305 0-1.347.782-1.043 2.56.303 1.824.738 4.557 1.215 5.728 0 0 2.863-1.17 6.638.782z"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M517.74 370.05s1.953 1.215 1.953 3.47c0 2.257.91 6.336 2.734 7.247 0 0 .433-1.693 1.04-1.997 0 0 1.824 2.127 2.388 2.127 0 0-1.042-1.953-1.042-2.864 0-.912-.91-4.382-1.823-5.25-.867-.91-2.69-3.038-5.25-3.775z"}),(0,e.jsx)("path",{fill:"#011322",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"m518.48 359.51-1.648 6.464.433 1.39s.608-.174.91-.912c.305-.78 1.217-6.335 1.694-6.51l-1.39-.432z"}),(0,e.jsx)("path",{fill:"#011d33",fillRule:"evenodd",d:"M514.35 369.31s-2.95.912-4.078 3.21c0 0-.39-1.475 3.99-3.6zm3.48 0s2.04.825 2.56 2.04c0 0-1.953-1.302-2.56-1.52zm-3.48-1.73s-4.6.738-5.598.52c0 0 1.39.305 5.685-.086zm7.47-2.78s.52 2.3.868 2.17c.39-.173 1.172-3.86 1.215-5.596.087-1.694-.738-2.084-1.432-1.997-.65.043-1.04 1.562-.954 2.256.043.65.217 2.777.304 3.167z"}),(0,e.jsx)("path",{fill:"#011d33",fillRule:"evenodd",d:"M516.83 365.97s1.865 4.166.433 4.382c-1.388.218.608.175-.347-2.69-.39-1.085-.998-2.43-1.302-2.43 0 0 1.086.392 1.216.738"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M514.57 366.14s.737-1.822 2.256-.174c0 0 1.822 4.253.433 4.382-1.346.175-2.69.434-2.82-.303-.174-.737.13-3.905.13-3.905z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M516.52 365.54s.477-6.465 1.345-6.77c.91-.303 3.644-1.822 5.293-.477 1.65 1.39.13 8.07-.477 8.68-.563.606-1.474 2.472-4.945 2.038l-.478-1.647s1.823-.174 3.038-.782c1.215-.607 1.605-1.17 1.52-1.778-.175-.91-.088-4.252-1-4.556-.91-.304-2.343-.737-2.343-.737s-1.345 5.03-1.648 6.463l-.304-.433z"})]}),(0,e.jsxs)("g",{transform:"translate(-92.698)scale(.8)",children:[(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",d:"M509.84 255.9c-.39-.954-.477-7.376-.39-8.374.13-1.736 3.123-10.24 3.73-11.238.652-.997.478-1.215.738-1.823l.867-1.17c.652 1.084 1.128 2.776 1.26 4.12 0 0-.565 4.08-1.043 5.903-.433 1.822-1.605 4.338-1.822 4.86-.564 1.258-.52 2.43-.173 2.516z"}),(0,e.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m515.01 247.35.478.52c1.345-1.432 1.43-4.425 1.43-4.425l-.867-6.03s-.562 4.078-1.04 5.9c-.433 1.822-1.606 4.34-1.823 4.86-.867 2.17-.216 2.43-.172 2.517z"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",d:"M515.48 247.87c1.345-1.432 1.43-4.425 1.43-4.425s.956 4.903.435 5.945c-.52 1.04-.52.737-.434 1.258z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.26,d:"M516.91 250.65c-.086-.52-.086-.217.434-1.258s-.434-5.945-.434-5.945l-.867-6.03c-.13-1.346-.607-3.04-1.26-4.123l-.866 1.17c-.26.608-.086.825-.737 1.824-.607.998-3.602 9.502-3.732 11.238-.086.998 0 7.42.39 8.374"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M515.01 234.11s-.087-.954-.174-1.302c-.043-.173.52.868.998.737.868.26 1.823 1.432 2.083 1.736-.39.565-1.3 1.65-1.953 1.433-.563-.173-.433-.997-.608-1.518-.086-.26-.39-.607-.346-1.085z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M515.05 233.33c.043.043.303.347.347.39.216.13.434 0 .694.175.65.433.87.824 1.563 1.518"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M515.66 233.99c.824.39 1.258 1.04 1.823 1.735 0 0 .043-.087 0-.087"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M514.09 233.42s.867-.433 1.17-.607c.175-.087-.65.78-.345 1.17.043.912-.694 2.214-.954 2.56-.65-.172-1.3-.172-1.82-1.17-.218-.347.39-.738.78-1.085.216-.174.693-.738 1.17-.868z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M514.87 233.16c-.043.087-.26.39-.26.52-.043.217.13.39.087.694-.173.737-.477 1.084-.867 1.995"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M514.44 233.99c-.087.91-.52 1.518-.998 2.3 0-.044.13 0 .13 0"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M515.44 232.81c.607-.737 1.692-1.39 2.213-.954.043.043.476.303.607.563.26.303.217.433.086.78-.39.78-1.432.39-2.082.044-.13-.087-.52-.434-.737-.347-.347.13-.217.13-.347.13.13.087.26.044.347.087.607.173 1.04.52 1.778.867.52.217 1.476-.476 1.432-.953 0-.564-.91-1.562-1.345-1.562-.998 0-1.78.607-2.473 1.388.173-.13.39.13.52-.043z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M514.87 232.81c-.563-.737-1.65-1.39-2.17-.954-.043.043-.477.303-.606.563-.26.26-.26.433-.087.78.347.78 1.432.39 2.04.044.173-.087.563-.434.78-.347.347.13.217.13.347.13-.13.087-.26.044-.39.087-.564.173-1 .52-1.78.867-.52.217-1.43-.476-1.43-.953.042-.608.953-1.562 1.387-1.562 1 0 1.78.607 2.43 1.388-.13-.13-.346.13-.52-.043z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M515.09 232.38c-.26-.087-.563.173-.65.346-.087.217.086.564.346.607.347.13.824.044.91-.346.088-.347-.302-.434-.606-.607z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M515.05 226.35s.39 2.344 1.562 4.035-1.432 1.476-1.606 2.083c0 0-.78-1.692-1.605-2.126 0 0 1.303-2.04 1.65-3.949z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M515.05 226.35s.39 2.344 1.562 4.035c0 0-1.432 1.476-1.606 2.083 0 0-.78-1.692-1.605-2.126 0 0 1.303-2.04 1.65-3.949"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,d:"M515.01 228.82s.303 1.04.65 1.736c0 0-.563.434-.65.694 0 0-.303-.694-.607-.868 0 0 .564-.91.607-1.562z"}),(0,e.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M515.01 344.54c-.087 0-.217-.175-.346-.218-.39-.26-1.128-.26-1.302-.477-1.04-1.17-.347-3.427.086-4.816.867-2.604.997-4.99 1.562-7.464h.043c.564 2.474.694 4.86 1.52 7.463.476 1.388 1.17 3.644.13 4.815-.218.217-.91.217-1.302.477-.13.043-.26.218-.39.218z"}),(0,e.jsx)("path",{fill:"#00209f",fillRule:"evenodd",d:"M515.01 331.48c.565 2.473.737 4.99 1.562 7.593.434 1.302 1.085 3.384.304 4.556v-.045c.39 0 .737-.13 1.085-.26.13-.044.26-.087.304-.217.13-.217.304-.39.477-.52.262-.174.566-.044.827-.218.086-.086.13-.173.173-.173.52-.26 1.04-.565 1.26-1.128.13-.392.172-.826.085-1.26-.043-.304-.173-.52-.26-.78l-.52-1.173c-.175-.39-.435-.738-.608-1.13a2.4 2.4 0 0 0-.304-.562c-.087-.174-.217-.348-.304-.52-.088-.175-.305-.305-.435-.48-.174-.173-.217-.173-.348-.302-.043-.043-.26-.087-.216-.174-.086 0-.216-.087-.26-.13-.347-.74-.65-1.13-.997-1.867-.174-.304-.217-.867-.217-1.215h-1.606v.002zm0 0c-.52 2.473-.694 4.99-1.562 7.593-.39 1.302-1.04 3.384-.26 4.556l-.044-.045h.043c-.39 0-.737-.13-1.128-.26-.088-.044-.218-.087-.305-.217-.13-.217-.26-.39-.476-.52-.218-.174-.52-.044-.782-.218-.087-.086-.13-.173-.216-.173-.52-.26-.998-.565-1.215-1.128a2.46 2.46 0 0 1-.087-1.26c.044-.304.173-.52.26-.78l.52-1.173c.175-.39.39-.738.608-1.13.087-.215.173-.388.304-.562.087-.174.172-.348.303-.52.087-.175.304-.305.434-.48.173-.173.216-.173.345-.302.044-.043.26-.087.217-.174.087 0 .216-.087.216-.13.39-.74.695-1.13 1.042-1.867.173-.304.217-.867.217-1.215h1.563v.002z"}),(0,e.jsxs)("g",{id:"sv_inline_svg__b",fill:"none",strokeMiterlimit:2.613,strokeWidth:.174,children:[(0,e.jsx)("path",{stroke:"#011322",d:"M514.27 331.57s-.998 4.078-1.562 5.12c-.607 1.04-2.95 2.95-1.432 5.9"}),(0,e.jsx)("path",{stroke:"#011d33",d:"M514.35 331.57s-.954 4.12-1.562 5.162c-.608 1.086-2.908 3.038-1.345 5.99"}),(0,e.jsx)("path",{stroke:"#022743",d:"M514.48 331.57s-.998 4.165-1.606 5.25c-.563 1.04-2.864 3.08-1.258 6.03"}),(0,e.jsx)("path",{stroke:"#033054",d:"M514.57 331.57s-.954 4.252-1.562 5.293c-.607 1.042-2.864 3.123-1.26 6.16"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M514.7 331.57s-.998 4.295-1.606 5.38c-.607 1.042-2.82 3.166-1.17 6.204"}),(0,e.jsx)("path",{stroke:"#011d33",d:"M514.18 331.57s-.954 3.947-1.606 5.077c-.607 1.084-2.95 2.994-1.388 5.9"}),(0,e.jsx)("path",{stroke:"#022743",d:"M514.05 331.61s-.91 3.774-1.605 5.033c-.608 1.04-2.95 2.95-1.388 5.857"}),(0,e.jsx)("path",{stroke:"#033054",d:"M513.96 331.61s-.91 3.645-1.648 4.99c-.565 1.04-2.95 2.95-1.39 5.9"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M513.83 331.61s-.824 3.557-1.65 4.946c-.563 1.085-2.905 2.95-1.387 5.9"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M513.75 331.65s-.824 3.383-1.65 4.903c-.606 1.04-2.95 2.95-1.388 5.857"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M514.79 331.57s-.954 4.382-1.562 5.423c-.607 1.042-2.777 3.254-1.172 6.335"})]}),(0,e.jsx)("use",{xlinkHref:"#sv_inline_svg__b",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 1030.05 0)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M518.65 335.17c.13.174.347.304.434.478.087.173.217.347.304.52.13.174.217.348.304.564.173.39.433.738.607 1.13l.52 1.17c.087.26.217.478.26.78a2.46 2.46 0 0 1-.086 1.26c-.217.564-.738.868-1.258 1.13-.044 0-.087.085-.174.172-.26.174-.565.044-.825.217a1.9 1.9 0 0 0-.478.52c-.044.132-.174.175-.304.22-.347.13-.695.26-1.084.26v.043-.044c-.044.086-.13.173-.174.26-.217.217-.91.217-1.302.476-.13.044-.26.218-.39.218-.088 0-.218-.174-.347-.218-.392-.26-1.13-.26-1.303-.476-.087-.087-.13-.174-.173-.26v.043l-.044-.044h.044c-.39 0-.738-.13-1.128-.26-.087-.045-.218-.088-.304-.22-.13-.215-.26-.388-.477-.52-.217-.172-.52-.042-.78-.216-.088-.087-.13-.173-.217-.173-.52-.26-.997-.564-1.215-1.127a2.46 2.46 0 0 1-.087-1.26c.044-.303.173-.52.26-.78q.262-.586.52-1.172c.175-.39.39-.737.608-1.128.087-.216.174-.39.304-.563.087-.175.173-.35.303-.522.088-.174.305-.304.435-.478"}),(0,e.jsxs)("g",{id:"sv_inline_svg__c",children:[(0,e.jsxs)("g",{fillRule:"evenodd",children:[(0,e.jsx)("path",{fill:"#fff",d:"M487.37 293.56c-1.475-3.688-3.038-11.238-2.95-12.973.302-7.115.216-9.24.867-16.53l7.332 8.374c-.174 2.82-.218 3.69 0 5.467.086.65.477 3.862.997 5.12l-6.247 10.543z"}),(0,e.jsx)("path",{fill:"#00209f",d:"M493.61 283.01c-.52-1.258-.91-4.47-.998-5.12-.217-1.778-.173-2.647 0-5.466l4.512 4.99zm-18.65 6.9c-.13-1.65-.26-3.47-.26-4.295.043-5.12-.564-7.984 0-13.407.434-4.25 1.475-9.85 1.258-14.448-.087-1.302.172-2.603.217-3.862l9.112 10.153c-.65 7.29-.565 9.416-.868 16.53-.088 1.736 1.475 9.286 2.95 12.974l-1.908 3.21-10.502-6.854zm6.38 13.76c-.607-.998-1.128-3.862-1.258-4.425-.303-1.52-.303-2.388-.216-4.99l5.033 3.297zm-14.37 24.03c-.565-.346-1.52-1.345-1.823-2.213-.608-1.736-.477-1.692-.91-3.6-.26-1.085-.26-2.3-.522-3.428-.216-1.13-1.822-4.73-1.865-6.206-.173-4.728-1.736-7.94-1.345-13.103.26-3.99 1.17-9.414.737-13.58-.13-1.128.044-2.43.087-3.558l10.24 6.683c-.392 6.855-.218 8.764-.218 15.402-.044 1.605 1.388 8.113 3.123 11.02zm17.01 3.78c1.91 1.736 5.424 2.647 5.989 3.038 1.257.91 3.122 2.256 6.29 2.43 2.343.173 3.384-.434 5.77-.738 2.734-.347-.347.087 2.3-.477 1.345-.348 1.345-.565 3.167-.998 1.345-.304 2.69-.652 3.514-1.78.305-.434.565-.78.61-1.475h1.82c.174.52-.347 1.52-.52 1.866-.13.174-.347.477-.476.65-.26.565-.217.435-.695.87-.13.086-.695.563-.868.65-.347.26-.694.607-1.085.65-1.78.305-2.517.694-4.21 1.172-1.605.478-.736.39-1.95.695-.608.13-1.824.607-2.43.694-1.085.173-1.26.347-2.387.608-2.908.65-5.727.476-8.59.304-1.172-.088-4.036-.696-5.034-1.39-1.78-1.26-5.685-1.736-7.42-2.95-.26-.176-1.345-.696-1.56-.913-1.693-1.388-3.038-1.78-4.817-2.907h12.58z"}),(0,e.jsx)("path",{fill:"#00209f",d:"M497.74 331.48h13.885c-.043.695-.304 1.04-.608 1.475-.824 1.128-2.17 1.476-3.514 1.78-1.432.346-2.908-.434-4.425-.434-3.646-1.127-4.08-2.256-5.338-2.82z"}),(0,e.jsx)("path",{fill:"#fff",d:"M497.74 331.48c1.258.65 1.866 1.736 5.337 2.82 1.345 0 2.82.608 4.08.565-1.52.347-1.563.564-2.822.867-2.646.565.434.13-2.3.478-2.385.304-3.426.91-5.77.737-3.166-.173-5.032-1.518-6.29-2.43-.565-.39-4.08-1.3-5.99-3.037z"})]}),(0,e.jsxs)("g",{fill:"none",strokeMiterlimit:2.613,strokeWidth:.174,children:[(0,e.jsx)("path",{stroke:"#022743",d:"M476.65 259.71s1.692 14.97 7.506 14.406"}),(0,e.jsx)("path",{stroke:"#022847",d:"M484.16 274.03c-2.907.13-4.816-3.558-5.9-7.03-1.13-3.556-1.606-7.288-1.606-7.33"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M484.16 273.99c-2.907-.087-4.816-3.817-5.814-7.072-1.17-3.427-1.692-7.246-1.692-7.29"}),(0,e.jsx)("path",{stroke:"#032d4f",d:"M484.2 273.95c-2.907-.26-4.86-4.078-5.814-7.115-1.128-3.34-1.692-7.16-1.736-7.246"}),(0,e.jsx)("path",{stroke:"#032f53",d:"M484.2 273.9c-2.907-.477-4.86-4.382-5.77-7.16-1.128-3.253-1.736-7.114-1.78-7.245"}),(0,e.jsx)("path",{stroke:"#043258",d:"M484.24 273.82c-2.95-.607-4.903-4.6-5.727-7.16-1.128-3.166-1.823-7.07-1.866-7.2"}),(0,e.jsx)("path",{stroke:"#04345b",d:"M484.24 273.77c-2.907-.824-4.903-4.86-5.684-7.202-1.128-3.08-1.866-6.985-1.866-7.16"}),(0,e.jsx)("path",{stroke:"#04365e",d:"M484.29 273.73c-2.95-.998-4.946-5.12-5.684-7.29-1.085-2.906-1.91-6.897-1.91-7.07"}),(0,e.jsx)("path",{stroke:"#043862",d:"M484.29 273.69c-2.95-1.215-4.946-5.38-5.598-7.333-1.128-2.82-1.952-6.81-1.995-7.072"}),(0,e.jsx)("path",{stroke:"#053b67",d:"M484.29 273.6c-2.907-1.345-4.946-5.64-5.554-7.333-1.128-2.733-1.996-6.77-2.04-7.028"}),(0,e.jsx)("path",{stroke:"#053d6a",d:"M484.33 273.55c-2.95-1.52-4.99-5.9-5.554-7.376-1.085-2.647-2.04-6.682-2.083-6.985"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M484.33 273.51c-2.95-1.736-4.99-6.16-5.467-7.42-1.128-2.56-2.126-6.638-2.17-6.94"}),(0,e.jsx)("path",{stroke:"#064172",d:"M484.37 273.47c-2.95-1.91-5.033-6.42-5.467-7.506-1.085-2.387-2.126-6.552-2.213-6.9"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M476.69 259.02c.087.39 1.17 4.555 2.256 6.855.39.824 2.473 5.424 5.424 7.506"}),(0,e.jsx)("path",{stroke:"#022743",d:"M476.87 256.33s4.86 11.89 7.94 10.544"}),(0,e.jsx)("path",{stroke:"#022a49",d:"M484.81 266.87c-1.345.563-3.34-1.823-4.946-4.6a65 65 0 0 1-2.994-5.987"}),(0,e.jsx)("path",{stroke:"#032d4f",d:"M484.81 266.83c-1.17.52-3.254-1.78-4.903-4.642a86 86 0 0 1-3.037-5.944"}),(0,e.jsx)("path",{stroke:"#033054",d:"M484.81 266.79c-.998.433-3.167-1.736-4.86-4.686-1.866-3.34-3.037-5.9-3.037-5.9"}),(0,e.jsx)("path",{stroke:"#043359",d:"M484.81 266.79c-.824.347-3.123-1.736-4.773-4.773-1.952-3.47-3.123-5.857-3.123-5.857"}),(0,e.jsx)("path",{stroke:"#043760",d:"M484.85 266.74c-.694.304-3.08-1.692-4.773-4.816-1.995-3.645-3.123-5.857-3.123-5.857"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M484.85 266.74c-.52.217-2.994-1.692-4.73-4.903a750 750 0 0 0-3.166-5.815"}),(0,e.jsx)("path",{stroke:"#053d6a",d:"M484.85 266.7c-.346.174-2.907-1.65-4.686-4.946-2.125-3.95-3.167-5.772-3.167-5.772"}),(0,e.jsx)("path",{stroke:"#064171",d:"M484.85 266.7c-.173.043-2.82-1.65-4.642-4.99-2.17-4.122-3.212-5.77-3.212-5.77"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M477 255.9s1.04 1.432 3.254 5.727c1.823 3.427 4.6 5.033 4.6 5.033M492.88 278.72l3.77-.7m-4.03-3.16 4.08 2.21"}),(0,e.jsx)("path",{stroke:"#064171",d:"m492.53 275.03 4.17 2.04"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"m492.53 275.2 4.21 1.91"}),(0,e.jsx)("path",{stroke:"#053b67",d:"m492.53 275.42 4.21 1.74"}),(0,e.jsx)("path",{stroke:"#043862",d:"m492.57 275.59 4.21 1.61"}),(0,e.jsx)("path",{stroke:"#04355c",d:"m492.57 275.77 4.26 1.43"}),(0,e.jsx)("path",{stroke:"#043258",d:"m492.57 275.94 4.3 1.3"}),(0,e.jsx)("path",{stroke:"#032f53",d:"m492.57 276.11 4.34 1.18"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"m492.57 276.33 4.39 1"}),(0,e.jsx)("path",{stroke:"#022a49",d:"m492.57 276.51 4.43.86"}),(0,e.jsx)("path",{stroke:"#064171",d:"m492.83 278.54 3.87-.56"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"m492.83 278.33 3.91-.44"}),(0,e.jsx)("path",{stroke:"#053b67",d:"m492.79 278.11 3.99-.26"}),(0,e.jsx)("path",{stroke:"#043862",d:"m492.79 277.94 4.04-.13"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M492.75 277.72h4.12"}),(0,e.jsx)("path",{stroke:"#043258",d:"m492.75 277.5 4.16.18"}),(0,e.jsx)("path",{stroke:"#032f53",d:"m492.75 277.33 4.21.26"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"m492.7 277.11 4.34.44"}),(0,e.jsx)("path",{stroke:"#022a49",d:"m492.7 276.9 4.39.6"}),(0,e.jsx)("path",{stroke:"#022743",d:"m492.66 276.72 4.47.7M474.96 277.81s.217 3.167.91 4.512c1 1.866 3.906 4.73 7.247 6.813"}),(0,e.jsx)("path",{stroke:"#022847",d:"M483.2 289.13c-2.17-1.39-4.12-3.123-5.466-4.642a13.7 13.7 0 0 1-1.736-2.256c-.694-1.39-.998-4.512-.998-4.512"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M483.29 289.13c-2.17-1.39-4.122-3.254-5.424-4.73-.737-.78-1.345-1.56-1.69-2.3-.782-1.387-1.173-4.467-1.173-4.467"}),(0,e.jsx)("path",{stroke:"#032d4f",d:"M483.33 289.13c-2.126-1.432-4.078-3.384-5.337-4.773-.694-.78-1.302-1.605-1.692-2.343-.824-1.475-1.3-4.468-1.3-4.468"}),(0,e.jsx)("path",{stroke:"#032f53",d:"M483.42 289.09c-2.126-1.432-4.078-3.427-5.337-4.816a13.6 13.6 0 0 1-1.65-2.343c-.867-1.518-1.43-4.467-1.43-4.467"}),(0,e.jsx)("path",{stroke:"#043258",d:"M483.5 289.09c-2.126-1.432-4.035-3.558-5.294-4.903-.607-.694-1.215-1.52-1.65-2.343-.91-1.562-1.518-4.468-1.518-4.468"}),(0,e.jsx)("path",{stroke:"#04345b",d:"M483.59 289.09c-2.126-1.475-4.035-3.688-5.25-4.99a15 15 0 0 1-1.65-2.343c-.954-1.65-1.648-4.468-1.648-4.468"}),(0,e.jsx)("path",{stroke:"#04365e",d:"M483.63 289.09c-2.04-1.52-3.992-3.818-5.163-5.077a14 14 0 0 1-1.65-2.342c-.997-1.692-1.78-4.47-1.78-4.47"}),(0,e.jsx)("path",{stroke:"#043862",d:"M483.72 289.05c-2.04-1.475-3.992-3.862-5.12-5.12-.563-.608-1.128-1.475-1.65-2.343-1.04-1.736-1.908-4.47-1.908-4.47"}),(0,e.jsx)("path",{stroke:"#053b67",d:"M483.81 289.05c-2.04-1.52-3.992-3.992-5.077-5.207-.52-.564-1.128-1.432-1.65-2.343-1.083-1.822-1.994-4.47-1.994-4.47"}),(0,e.jsx)("path",{stroke:"#053d6a",d:"M483.85 289.05c-1.996-1.52-3.905-4.122-4.99-5.294-.52-.564-1.084-1.432-1.65-2.343-1.083-1.865-2.124-4.468-2.124-4.468"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M483.94 289.05c-1.996-1.562-3.905-4.21-4.946-5.337-.477-.565-1.085-1.432-1.65-2.386-1.127-1.91-2.255-4.47-2.255-4.47"}),(0,e.jsx)("path",{stroke:"#064172",d:"M484.03 289c-1.996-1.562-3.905-4.295-4.903-5.38-.478-.52-1.04-1.432-1.606-2.387-1.214-1.996-2.428-4.468-2.428-4.468"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M475.09 276.68s2.82 5.337 4.166 6.855c.954 1.04 2.864 3.905 4.86 5.467"}),(0,e.jsx)("path",{stroke:"#011d33",d:"M475.17 289.91c3.08 2.04 3.862 2.56 10.24 6.638l1.952-2.994s-.737-1.78-1.04-2.604"}),(0,e.jsx)("path",{stroke:"#011e34",d:"M475.22 289.87c2.95 1.996 3.947 2.647 10.195 6.55l.087-.085c0-.043 1.735-2.907 1.735-2.907s-.087-.347-.303-.78c-.217-.564-.478-1.216-.608-1.692"}),(0,e.jsx)("path",{stroke:"#022037",d:"M475.22 289.87c2.864 1.91 4.122 2.734 10.195 6.465l.087-.13c0-.087 1.648-2.908 1.648-2.908s-.087-.303-.26-.737a18 18 0 0 1-.564-1.604"}),(0,e.jsx)("path",{stroke:"#022139",d:"M475.22 289.87c2.777 1.822 4.295 2.777 10.195 6.335l.087-.13c0-.087 1.56-2.864 1.518-2.864 0 0-.044-.303-.216-.694-.174-.52-.39-1.128-.52-1.56"}),(0,e.jsx)("path",{stroke:"#02223b",d:"M475.22 289.83c2.69 1.778 4.47 2.864 10.195 6.248l.087-.13c0-.13 1.432-2.864 1.432-2.864s0-.26-.174-.652a8.2 8.2 0 0 1-.477-1.474"}),(0,e.jsx)("path",{stroke:"#02233d",d:"M475.26 289.83c2.56 1.692 4.6 2.95 10.152 6.118.043 0 .087-.13.087-.13 0-.174 1.344-2.82 1.344-2.865-.043 0 0-.217-.174-.606a9.6 9.6 0 0 1-.39-1.39"}),(0,e.jsx)("path",{stroke:"#022540",d:"M475.26 289.78c2.473 1.65 4.773 3.038 10.197 6.03 0 0 .043-.13.087-.13 0-.215 1.215-2.82 1.17-2.82 0 0 .045-.217-.086-.607-.173-.433-.304-.867-.347-1.3"}),(0,e.jsx)("path",{stroke:"#022541",d:"M475.26 289.78c2.386 1.606 4.946 3.08 10.197 5.9l.087-.13c0-.216 1.085-2.777 1.085-2.82 0 0 .085-.174-.088-.52a4.8 4.8 0 0 1-.304-1.26"}),(0,e.jsx)("path",{stroke:"#022743",d:"M475.26 289.78c2.3 1.52 5.12 3.167 10.197 5.814 0-.044.087-.173.087-.173 0-.26.998-2.776.954-2.82 0 0 .13-.13 0-.476-.173-.434-.217-.78-.26-1.17"}),(0,e.jsx)("path",{stroke:"#022847",d:"M475.3 289.74c2.17 1.475 5.25 3.254 10.153 5.728 0-.044.087-.13.087-.174 0-.304.867-2.777.867-2.777s.13-.13 0-.477c-.173-.39-.173-.693-.173-1.084"}),(0,e.jsx)("path",{stroke:"#022a49",d:"M475.3 289.74c2.082 1.39 5.38 3.34 10.153 5.598a.33.33 0 0 0 .087-.174c0-.346.78-2.734.737-2.777 0 0 .217-.13.087-.433-.174-.39-.13-.607-.13-.998"}),(0,e.jsx)("path",{stroke:"#032a4a",d:"M475.3 289.74c1.996 1.302 5.553 3.384 10.153 5.467.043-.043.087-.13.13-.173-.043-.348.65-2.734.607-2.734 0-.043.217-.13.087-.433-.13-.348-.087-.52-.087-.91"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M475.35 289.7c1.865 1.258 5.684 3.47 10.11 5.38.043-.043.087-.13.13-.172 0-.39.52-2.69.477-2.734 0 0 .26-.087.173-.346-.173-.348-.087-.478-.044-.868"}),(0,e.jsx)("path",{stroke:"#032d4f",d:"M475.35 289.7c1.778 1.17 5.857 3.558 10.11 5.25.043 0 .13-.13.13-.173 0-.434.433-2.69.39-2.734 0 0 .303-.044.173-.303-.13-.348 0-.39.043-.78"}),(0,e.jsx)("path",{stroke:"#032e50",d:"M475.35 289.7c1.692 1.085 6.03 3.6 10.153 5.163 0-.043.087-.173.087-.217 0-.433.346-2.647.303-2.69h-.044s.346-.043.26-.304c-.13-.303 0-.303.086-.694"}),(0,e.jsx)("path",{stroke:"#032f53",d:"M475.35 289.65c1.605 1.085 6.205 3.688 10.153 5.077a.46.46 0 0 0 .087-.216c0-.476.216-2.646.173-2.69l.26-.26c-.13-.26.044-.26.173-.607"}),(0,e.jsx)("path",{stroke:"#033156",d:"M475.39 289.65c1.475.998 6.334 3.775 10.11 4.946a.46.46 0 0 0 .087-.217c0-.52.13-2.648.086-2.69 0 0 .39.042.304-.174-.13-.304.086-.217.172-.563"}),(0,e.jsx)("path",{stroke:"#043258",d:"M475.39 289.61c1.39.954 6.508 3.862 10.11 4.86.043-.044.087-.174.13-.218 0-.563-.044-2.603-.087-2.647 0 0 .434.044.347-.172-.087-.26.13-.13.26-.477"}),(0,e.jsx)("path",{stroke:"#043359",d:"M475.39 289.61c1.302.867 6.68 3.905 10.11 4.73.043-.044.087-.174.13-.218 0-.563-.13-2.603-.173-2.647 0 0 .433.086.39-.13-.13-.217.13-.043.302-.39"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M475.39 289.61c1.215.78 6.811 3.992 10.11 4.6.043-.044.13-.13.13-.217 0-.608-.218-2.56-.305-2.647 0 0 .52.13.435-.087-.087-.218.217.043.39-.304"}),(0,e.jsx)("path",{stroke:"#04365e",d:"M475.43 289.57c1.085.737 6.942 4.08 10.066 4.555.043-.085.13-.172.13-.26 0-.65-.347-2.56-.39-2.603 0 0 .52.087.433-.043-.045-.218.26.086.433-.26"}),(0,e.jsx)("path",{stroke:"#043760",d:"M475.43 289.57c.998.65 7.115 4.166 10.066 4.426q.13-.13.13-.26c0-.65-.434-2.517-.52-2.604 0 0 .563.13.52 0-.087-.172.303.13.477-.172"}),(0,e.jsx)("path",{stroke:"#043862",d:"M475.43 289.57c.91.565 7.29 4.208 10.11 4.296l.13-.26c-.044-.694-.564-2.517-.65-2.604 0 0 .606.174.52.043-.043-.172.346.217.563-.085"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M475.48 289.52c.782.52 7.42 4.296 10.066 4.21.043-.044.086-.175.13-.26 0-.74-.695-2.518-.738-2.56h-.043s.65.17.608.042c-.044-.13.346.303.607 0"}),(0,e.jsx)("path",{stroke:"#053b67",d:"M475.48 289.52c.695.478 7.593 4.383 10.066 4.08.043-.045.13-.175.13-.262 0-.78-.78-2.473-.868-2.56 0 0 .65.216.607.13-.044-.13.434.347.694.044"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M475.48 289.52c.607.39 7.767 4.426 10.066 3.949.043-.045.13-.175.13-.26 0-.783-.868-2.474-.955-2.518v-.043s.695.26.65.173c-.042-.13.436.433.696.13"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"M475.48 289.48c.52.347 7.94 4.513 10.066 3.905a.47.47 0 0 0 .13-.303c0-.824-.998-2.43-1.085-2.516 0 0 .738.26.694.173-.043-.088.477.52.78.216"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M475.52 289.48c.39.26 8.07 4.6 10.023 3.775.086-.087.13-.217.173-.304-.044-.867-1.128-2.43-1.215-2.516 0 0 .738.304.738.217-.043-.042.52.608.824.305"}),(0,e.jsx)("path",{stroke:"#053f6f",d:"M475.52 289.48c.304.174 8.2 4.642 10.023 3.645.086-.087.13-.218.173-.304 0-.867-1.26-2.43-1.345-2.472 0 0 .825.303.78.26 0-.087.565.607.912.347"}),(0,e.jsx)("path",{stroke:"#064171",d:"M475.52 289.43c.217.13 8.375 4.73 10.023 3.558a.7.7 0 0 0 .173-.304c0-.91-1.345-2.387-1.432-2.473 0 0 .824.348.824.305-.044-.044.607.693.91.434"}),(0,e.jsx)("path",{stroke:"#064374",d:"M475.52 289.43c.13.043 8.547 4.816 10.066 3.427.043-.086.13-.173.13-.304 0-.954-1.433-2.386-1.563-2.473l.867.347s.65.78.998.52"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M475.57 289.39s9.72 5.467 10.153 3.038c0-.998-1.65-2.43-1.65-2.43l.912.346s.65.868 1.04.608"}),(0,e.jsx)("path",{stroke:"#011d33",d:"m474.44 315.12-7.55 12.582c-.564-.346-1.518-1.345-1.822-2.213-.565-1.737-.478-1.737-.91-3.602-.217-1.084-.26-2.3-.478-3.427-.26-1.127-1.866-4.728-1.91-6.204"}),(0,e.jsx)("path",{stroke:"#011d33",d:"M461.77 312.26c.043 1.475 1.65 4.99 1.91 6.118.217 1.13.26 2.344.476 3.427.433 1.866.347 1.823.955 3.558.26.867 1.26 1.866 1.78 2.212.043 0 7.506-12.452 7.55-12.452"}),(0,e.jsx)("path",{stroke:"#011e34",d:"M461.77 312.26c.043 1.433 1.65 4.946 1.866 6.074.26 1.13.304 2.3.564 3.384.433 1.823.303 1.823.91 3.558.305.824 1.26 1.823 1.78 2.17.043 0 7.463-12.28 7.55-12.322"}),(0,e.jsx)("path",{stroke:"#011e34",d:"M461.77 312.26c.043 1.433 1.606 4.903 1.866 6.03.26 1.086.304 2.258.564 3.34.433 1.824.303 1.78.91 3.516.305.825 1.26 1.78 1.78 2.126.087.044 7.463-12.106 7.55-12.15"}),(0,e.jsx)("path",{stroke:"#011f36",d:"M461.77 312.26c.043 1.39 1.606 4.86 1.866 5.944.26 1.13.304 2.257.564 3.34.433 1.78.346 1.78.91 3.472.305.824 1.26 1.78 1.78 2.126.13.044 7.42-11.976 7.55-12.018"}),(0,e.jsx)("path",{stroke:"#011f36",d:"M461.77 312.26c.043 1.39 1.606 4.816 1.866 5.902.26 1.084.304 2.256.564 3.296.433 1.78.346 1.736.954 3.427.303.825 1.215 1.78 1.78 2.127.086.043 7.332-11.846 7.506-11.888"}),(0,e.jsx)("path",{stroke:"#022037",d:"M461.77 312.26c.043 1.39 1.562 4.73 1.866 5.815.26 1.084.304 2.256.564 3.296.433 1.737.346 1.737.954 3.385.303.825 1.215 1.78 1.78 2.127.13.043 7.332-11.715 7.506-11.758"}),(0,e.jsx)("path",{stroke:"#022037",d:"M461.77 312.26c.043 1.346 1.562 4.686 1.866 5.77.26 1.086.304 2.214.564 3.255.433 1.735.39 1.735.954 3.34.303.825 1.215 1.78 1.78 2.083.172.087 7.288-11.498 7.506-11.584"}),(0,e.jsx)("path",{stroke:"#022139",d:"M461.77 312.26c.043 1.346 1.562 4.642 1.866 5.728.26 1.04.304 2.17.564 3.21.433 1.693.39 1.693.997 3.34.303.78 1.215 1.692 1.736 2.04.173.043 7.29-11.368 7.507-11.454"}),(0,e.jsx)("path",{stroke:"#022139",d:"M461.77 312.26c.043 1.303 1.562 4.6 1.866 5.64.26 1.086.304 2.17.564 3.21.433 1.694.39 1.694.997 3.297.303.782 1.215 1.693 1.736 2.04.216.044 7.246-11.238 7.507-11.323"}),(0,e.jsx)("path",{stroke:"#022139",d:"M461.77 312.26c.043 1.303 1.52 4.555 1.866 5.598.26 1.04.304 2.125.607 3.166.433 1.692.346 1.65.954 3.254.303.78 1.215 1.693 1.736 2.04.26.043 7.203-11.108 7.507-11.194"}),(0,e.jsx)("path",{stroke:"#02223b",d:"M461.77 312.26c.043 1.303 1.52 4.47 1.866 5.554.26.998.304 2.126.607 3.08.433 1.693.39 1.693.954 3.254.303.78 1.215 1.69 1.736 1.995.26.087 7.203-10.934 7.507-11.02"}),(0,e.jsx)("path",{stroke:"#02223b",d:"M461.77 312.26c.043 1.26 1.52 4.426 1.866 5.467.26 1.042.304 2.127.607 3.08.433 1.693.39 1.693.998 3.21.304.78 1.172 1.65 1.693 1.997.303.086 7.16-10.76 7.507-10.89"}),(0,e.jsx)("path",{stroke:"#02233d",d:"M461.77 312.26c.043 1.26 1.52 4.383 1.866 5.424.26.998.304 2.083.607 3.038.433 1.65.39 1.65.998 3.21.304.737 1.172 1.606 1.737 1.953.303.087 7.072-10.63 7.463-10.76"}),(0,e.jsx)("path",{stroke:"#02233d",d:"M461.77 312.26c.043 1.216 1.475 4.34 1.866 5.38.26.998.304 2.04.607 2.995.433 1.65.433 1.65.998 3.167.304.737 1.216 1.605 1.737 1.953.303.085 7.072-10.5 7.463-10.63"}),(0,e.jsx)("path",{stroke:"#02233e",d:"M461.77 312.26c.043 1.216 1.475 4.295 1.866 5.294.26.997.348 2.04.607 2.994.433 1.606.433 1.606.998 3.123.347.74 1.216 1.607 1.737 1.91.346.13 7.028-10.326 7.463-10.455"}),(0,e.jsx)("path",{stroke:"#02233e",d:"M461.77 312.26c.043 1.173 1.475 4.21 1.866 5.25.26.998.348 1.997.607 2.95.433 1.607.433 1.607 1.04 3.08.304.74 1.173 1.607 1.694 1.91.39.13 7.028-10.196 7.463-10.325"}),(0,e.jsx)("path",{stroke:"#022540",d:"M461.77 312.21c.043 1.216 1.475 4.21 1.823 5.25.304.955.39 1.997.65 2.908.433 1.562.433 1.605 1.04 3.037.304.74 1.173 1.563 1.694 1.91.39.13 6.985-10.023 7.463-10.195"}),(0,e.jsx)("path",{stroke:"#022540",d:"M461.77 312.21c.043 1.216 1.432 4.166 1.823 5.163.304.955.39 1.997.65 2.908.477 1.563.477 1.563 1.04 3.04.304.693 1.173 1.517 1.694 1.82.433.132 6.942-9.848 7.463-10.02"}),(0,e.jsx)("path",{stroke:"#022540",d:"M461.77 312.21c.043 1.173 1.432 4.122 1.823 5.12.26.954.39 1.953.694 2.864.433 1.52.433 1.562 1.04 2.994.304.695 1.13 1.52 1.65 1.823.476.13 6.942-9.718 7.463-9.89"}),(0,e.jsx)("path",{stroke:"#022541",d:"M461.77 312.21c.043 1.173 1.432 4.035 1.823 5.077.26.91.39 1.91.694 2.82.433 1.52.433 1.52 1.04 2.95.304.696 1.172 1.52 1.65 1.824.476.13 6.898-9.588 7.463-9.76"}),(0,e.jsx)("path",{stroke:"#022541",d:"M461.77 312.21c.043 1.13 1.432 3.992 1.823 4.99.26.955.39 1.91.694 2.82.433 1.476.476 1.52 1.04 2.91.304.692 1.172 1.516 1.693 1.82.477.13 6.855-9.458 7.42-9.63"}),(0,e.jsx)("path",{stroke:"#022743",d:"M461.77 312.21c.043 1.13 1.39 3.949 1.823 4.946.26.912.39 1.866.694 2.777.433 1.476.476 1.476 1.04 2.865.347.694 1.172 1.476 1.693 1.78.52.172 6.812-9.242 7.42-9.46"}),(0,e.jsx)("path",{stroke:"#022743",d:"M461.77 312.21c.043 1.13 1.39 3.905 1.823 4.903.26.868.39 1.866.694 2.734.433 1.432.476 1.475 1.084 2.863.304.652 1.13 1.433 1.65 1.736.52.174 6.768-9.112 7.42-9.327"}),(0,e.jsx)("path",{stroke:"#022845",d:"M461.77 312.21c.043 1.086 1.39 3.862 1.823 4.816.26.912.39 1.866.694 2.735.433 1.433.476 1.476 1.084 2.82.304.652 1.13 1.433 1.65 1.737.564.173 6.768-8.983 7.42-9.198"}),(0,e.jsx)("path",{stroke:"#022845",d:"M461.77 312.21c.043 1.086 1.39 3.775 1.823 4.773.26.868.39 1.822.694 2.69.433 1.39.52 1.433 1.084 2.778.348.65 1.13 1.433 1.65 1.737.607.173 6.725-8.852 7.42-9.069"}),(0,e.jsx)("path",{stroke:"#022847",d:"M461.77 312.21c.043 1.042 1.345 3.73 1.823 4.73.26.868.39 1.78.694 2.647.476 1.39.52 1.432 1.084 2.734.348.65 1.13 1.433 1.65 1.693.607.217 6.68-8.678 7.42-8.895"}),(0,e.jsx)("path",{stroke:"#022847",d:"M461.77 312.21c.043 1.042 1.345 3.688 1.823 4.642.26.87.39 1.78.737 2.648.433 1.345.478 1.39 1.085 2.69.303.652 1.128 1.39 1.605 1.693.65.217 6.68-8.548 7.42-8.808"}),(0,e.jsx)("path",{stroke:"#022847",d:"M461.77 312.21c.043 1.042 1.345 3.645 1.823 4.6.26.867.39 1.735.737 2.56.433 1.388.52 1.432 1.085 2.69.303.65 1.128 1.39 1.605 1.693.694.173 6.638-8.375 7.42-8.678"}),(0,e.jsx)("path",{stroke:"#022a49",d:"M461.77 312.21c.043 1 1.345 3.6 1.823 4.556.26.825.39 1.735.737 2.517.433 1.345.52 1.432 1.085 2.69.346.608 1.128 1.345 1.65 1.65.65.173 6.593-8.245 7.375-8.548"}),(0,e.jsx)("path",{stroke:"#022a49",d:"M461.77 312.21c.043 1 1.302 3.514 1.823 4.47.26.824.39 1.734.737 2.516.433 1.345.52 1.39 1.085 2.647.346.608 1.128 1.345 1.65 1.606.692.216 6.55-8.072 7.375-8.375"}),(0,e.jsx)("path",{stroke:"#032a4a",d:"M461.77 312.21c.043.955 1.302 3.47 1.823 4.426.26.824.433 1.692.737 2.473.433 1.3.52 1.388 1.128 2.603.304.608 1.085 1.345 1.606 1.605.737.218 6.507-7.94 7.376-8.243"}),(0,e.jsx)("path",{stroke:"#032a4a",d:"M461.77 312.21c.043.955 1.302 3.427 1.78 4.383.303.78.476 1.648.78 2.43.433 1.3.564 1.345 1.128 2.56.347.607 1.085 1.302 1.606 1.605.737.217 6.507-7.81 7.376-8.113"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M461.81 312.21c0 .955 1.215 3.384 1.736 4.295.304.825.477 1.65.78 2.43.434 1.26.564 1.346 1.13 2.517.346.608 1.127 1.302 1.604 1.562.78.26 6.464-7.593 7.376-7.94"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M461.81 312.21c0 .912 1.215 3.34 1.736 4.253.304.78.477 1.605.78 2.386.478 1.257.564 1.344 1.172 2.515.304.565 1.085 1.26 1.562 1.52.824.26 6.42-7.464 7.376-7.81"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"M461.81 312.21c0 .912 1.215 3.254 1.736 4.166.304.78.477 1.65.78 2.386.478 1.258.564 1.302 1.172 2.474.304.564 1.085 1.26 1.562 1.518.824.26 6.42-7.333 7.376-7.68"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"M461.81 312.21c0 .87 1.215 3.21 1.736 4.122.304.78.477 1.606.824 2.343.434 1.215.564 1.302 1.128 2.43.347.564 1.085 1.26 1.562 1.52.868.26 6.377-7.204 7.376-7.55"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"M461.81 312.21c0 .87 1.17 3.167 1.736 4.08.304.736.477 1.56.824 2.298.434 1.216.564 1.26 1.128 2.387.347.564 1.085 1.215 1.606 1.476.867.304 6.335-7.03 7.332-7.375"}),(0,e.jsx)("path",{stroke:"#032d4f",d:"M461.81 312.21c0 .87 1.17 3.123 1.736 3.992.304.78.477 1.562.824 2.3.434 1.172.564 1.26 1.17 2.343.305.564 1.043 1.215 1.564 1.476.867.26 6.29-6.855 7.332-7.245"}),(0,e.jsx)("path",{stroke:"#032d4f",d:"M461.81 312.21c0 .825 1.17 3.08 1.736 3.949.304.736.477 1.517.824 2.254.434 1.173.607 1.215 1.17 2.344.35.52 1.043 1.172 1.564 1.432.91.26 6.248-6.725 7.332-7.115"}),(0,e.jsx)("path",{stroke:"#032e50",d:"M461.81 312.21c0 .825 1.17 2.994 1.736 3.905.304.737.477 1.475.824 2.213.434 1.13.607 1.216 1.17 2.3.35.52 1.086 1.172 1.564 1.432.954.26 6.248-6.595 7.332-6.985"}),(0,e.jsx)("path",{stroke:"#032e50",d:"M461.81 312.21c0 .782 1.128 2.95 1.736 3.818.304.737.477 1.52.824 2.213.434 1.13.607 1.217 1.17 2.258.35.52 1.086 1.17 1.564 1.39.954.302 6.204-6.423 7.332-6.813"}),(0,e.jsx)("path",{stroke:"#032f53",d:"M461.81 312.21c0 .782 1.128 2.908 1.736 3.775.304.695.477 1.475.824 2.17.434 1.085.607 1.17 1.215 2.213.347.52 1.04 1.128 1.52 1.388.996.304 6.203-6.29 7.33-6.68"}),(0,e.jsx)("path",{stroke:"#032f53",d:"M461.81 312.21c0 .738 1.128 2.865 1.736 3.73.304.696.477 1.433.824 2.128.477 1.085.65 1.172 1.215 2.17.347.52 1.04 1.127 1.52 1.388 1.04.304 6.16-6.118 7.33-6.55"}),(0,e.jsx)("path",{stroke:"#033054",d:"M461.81 312.21c0 .738 1.128 2.822 1.736 3.645.304.693.477 1.432.824 2.126.477 1.043.65 1.13 1.215 2.17.347.478 1.04 1.086 1.562 1.346.998.304 6.074-5.988 7.29-6.42"}),(0,e.jsx)("path",{stroke:"#033054",d:"M461.81 312.21c0 .738 1.085 2.735 1.736 3.6.304.695.477 1.39.867 2.085.434 1.04.607 1.128 1.172 2.125.347.478 1.04 1.086 1.562 1.302 1.04.347 6.074-5.814 7.29-6.247"}),(0,e.jsx)("path",{stroke:"#033054",d:"M461.81 312.21c0 .695 1.085 2.69 1.736 3.558.26.65.52 1.345.867 1.996.434 1.04.65 1.172 1.215 2.126.348.478 1.042 1.042 1.52 1.303 1.084.346 6.03-5.685 7.288-6.118"}),(0,e.jsx)("path",{stroke:"#033156",d:"M461.81 312.21c0 .695 1.085 2.648 1.692 3.47.304.652.564 1.39.91 1.997.435 1.042.652 1.128 1.216 2.084.348.477 1.04 1.042 1.52 1.302 1.084.347 5.988-5.554 7.288-5.987"}),(0,e.jsx)("path",{stroke:"#033156",d:"M461.81 312.21c0 .65 1.085 2.604 1.692 3.427.304.652.564 1.345.91 1.953.435.998.652 1.128 1.216 2.04.348.477 1.04 1.042 1.52 1.302 1.127.304 5.988-5.38 7.288-5.857"}),(0,e.jsx)("path",{stroke:"#043258",d:"M461.81 312.21c0 .65 1.04 2.56 1.692 3.384.304.608.564 1.302.91 1.91.435.997.652 1.084 1.26 2.04.347.476.997.997 1.475 1.214 1.17.348 5.945-5.206 7.29-5.683"}),(0,e.jsx)("path",{stroke:"#043258",d:"M461.81 312.21c0 .65 1.04 2.474 1.692 3.297.304.652.564 1.302.91 1.91.435.954.695 1.084 1.26 1.996.347.477.997.998 1.475 1.215 1.17.348 5.945-5.076 7.29-5.553"}),(0,e.jsx)("path",{stroke:"#043359",d:"M461.81 312.17c0 .65 1.04 2.474 1.692 3.297.304.608.564 1.26.91 1.866.478.955.695 1.085 1.26 1.953.347.478.997.955 1.475 1.215 1.215.35 5.902-4.945 7.29-5.422"}),(0,e.jsx)("path",{stroke:"#043359",d:"M461.81 312.17c0 .65 1.04 2.43 1.692 3.254.304.608.564 1.216.91 1.823.478.91.695 1.04 1.26 1.91.39.476.997.953 1.518 1.17 1.215.39 5.814-4.772 7.246-5.25"}),(0,e.jsx)("path",{stroke:"#04345b",d:"M461.81 312.17c0 .608.998 2.387 1.692 3.167.304.608.564 1.26.955 1.823.433.912.694 1.04 1.258 1.866.348.478.998.954 1.476 1.17 1.215.392 5.814-4.598 7.246-5.118"}),(0,e.jsx)("path",{stroke:"#04345b",d:"M461.81 312.17c0 .608.998 2.3 1.692 3.123.304.565.564 1.215.955 1.78.433.868.694 1 1.258 1.823.348.477.998.955 1.476 1.17 1.26.392 5.772-4.467 7.246-4.988"}),(0,e.jsx)("path",{stroke:"#04345b",d:"M461.81 312.17c0 .608.998 2.257 1.692 3.08.304.565.564 1.173.955 1.736.433.868.694 1 1.258 1.823.348.433.998.91 1.476 1.127 1.302.39 5.772-4.34 7.246-4.86"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M461.81 312.17c0 .565.954 2.214 1.692 2.994.304.565.564 1.173.955 1.736.433.825.694.956 1.258 1.78.39.434.998.868 1.476 1.085 1.302.433 5.728-4.165 7.246-4.685"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M461.81 312.17c0 .565.954 2.17 1.692 2.95.304.564.564 1.13.955 1.692.433.825.737.956 1.302 1.736.346.435.953.87 1.43 1.085 1.346.434 5.685-4.034 7.246-4.554"}),(0,e.jsx)("path",{stroke:"#04365e",d:"M461.81 312.17c0 .52.954 2.127 1.692 2.908.304.52.564 1.085.955 1.65.433.824.737.954 1.302 1.69.346.435.953.87 1.43 1.087 1.39.433 5.685-3.906 7.246-4.426"}),(0,e.jsx)("path",{stroke:"#04365e",d:"M461.81 312.17c0 .52.954 2.04 1.692 2.822.304.52.564 1.128.955 1.65.476.78.737.91 1.302 1.647.39.433.996.867 1.43 1.084 1.39.39 5.642-3.73 7.246-4.295"}),(0,e.jsx)("path",{stroke:"#043760",d:"M461.81 312.17c0 .52.91 1.996 1.692 2.778.304.52.564 1.085.955 1.605.476.78.78.912 1.302 1.65.39.39.996.824 1.474.998 1.39.434 5.554-3.557 7.202-4.12"}),(0,e.jsx)("path",{stroke:"#043760",d:"M461.81 312.17c0 .478.91 1.953 1.692 2.735.304.476.564 1.04.955 1.562.476.737.78.867 1.345 1.606.347.39.954.78 1.432.997 1.432.435 5.554-3.427 7.202-3.99"}),(0,e.jsx)("path",{stroke:"#043862",d:"M461.81 312.17c0 .478.91 1.91 1.65 2.648.346.52.65 1.04 1.04 1.562.435.737.74.868 1.302 1.562.347.39.954.78 1.432.998 1.432.434 5.51-3.297 7.202-3.904"}),(0,e.jsx)("path",{stroke:"#043862",d:"M461.81 312.17c0 .434.91 1.866 1.65 2.604.346.477.65.998 1.04 1.476.435.737.74.91 1.302 1.562.39.39.954.78 1.432.998 1.475.434 5.51-3.167 7.202-3.774"}),(0,e.jsx)("path",{stroke:"#043862",d:"M461.81 312.17c0 .434.867 1.78 1.65 2.518.346.52.65.997 1.04 1.475.435.737.782.867 1.345 1.52.348.39.91.78 1.39.953 1.518.478 5.466-2.95 7.2-3.6"}),(0,e.jsx)("path",{stroke:"#043963",d:"M461.81 312.17c0 .434.867 1.736 1.65 2.474.346.478.65.998 1.04 1.432.435.694.782.868 1.345 1.52.348.346.91.736 1.39.91 1.518.478 5.423-2.82 7.2-3.47"}),(0,e.jsx)("path",{stroke:"#043963",d:"M461.81 312.17c0 .39.867 1.692 1.65 2.43.346.435.65.955 1.04 1.39.435.694.782.823 1.345 1.475.39.347.955.695 1.39.91 1.56.478 5.423-2.69 7.2-3.34"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M461.81 312.17c0 .39.867 1.65 1.65 2.344.346.478.65.954 1.04 1.39.478.65.825.824 1.345 1.43.39.348.955.695 1.39.91 1.605.48 5.38-2.56 7.2-3.208"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M461.81 312.17c0 .347.824 1.606 1.65 2.3.346.435.65.91 1.04 1.346.478.65.825.825 1.39 1.388.345.348.91.695 1.387.87 1.606.52 5.294-2.39 7.16-3.04"}),(0,e.jsx)("path",{stroke:"#053b67",d:"M461.81 312.17c0 .347.824 1.52 1.65 2.257.346.434.65.867 1.04 1.302.478.607.825.78 1.39 1.344.39.347.91.695 1.387.868 1.606.477 5.294-2.213 7.16-2.907"}),(0,e.jsx)("path",{stroke:"#053b67",d:"M461.81 312.17c0 .347.824 1.476 1.65 2.17.346.434.65.868 1.084 1.302.434.608.78.782 1.345 1.345.39.304.91.65 1.387.825 1.65.477 5.25-2.083 7.16-2.777"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M461.81 312.17c0 .304.824 1.433 1.65 2.127.346.39.65.867 1.084 1.258.434.565.825.738 1.345 1.302.39.304.91.608 1.387.78 1.693.523 5.25-1.908 7.16-2.602"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M461.81 312.17c0 .304.78 1.39 1.65 2.083.346.39.65.825 1.084 1.215.434.565.825.738 1.388 1.26.347.302.91.606 1.345.78 1.693.52 5.207-1.78 7.16-2.473"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M461.81 312.17c0 .26.78 1.346 1.65 1.996.303.39.65.826 1.084 1.215.434.522.825.696 1.388 1.217.39.303.91.607 1.345.78 1.736.522 5.164-1.648 7.16-2.342"}),(0,e.jsx)("path",{stroke:"#053d6a",d:"M461.81 312.17c0 .26.78 1.26 1.65 1.953.303.39.65.782 1.084 1.172.434.52.868.694 1.388 1.172.39.303.91.607 1.345.78 1.78.522 5.164-1.475 7.16-2.212"}),(0,e.jsx)("path",{stroke:"#053d6a",d:"M461.81 312.17c0 .217.78 1.216 1.65 1.91.303.347.65.738 1.084 1.128.477.477.868.694 1.388 1.13.39.303.91.606 1.345.736 1.78.564 5.12-1.302 7.16-2.04"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"M461.81 312.17c0 .217.737 1.173 1.65 1.823.303.39.65.738 1.084 1.13.477.475.868.65 1.432 1.127.39.26.867.52 1.345.694 1.78.564 5.077-1.172 7.116-1.91"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"M461.81 312.17c0 .217.737 1.13 1.606 1.78.347.347.737.694 1.128 1.085.477.433.868.65 1.432 1.085.39.26.867.52 1.345.693 1.824.565 5.034-1.04 7.116-1.778"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M461.81 312.17c0 .174.737 1.086 1.606 1.736.347.304.737.695 1.128 1.042.477.433.91.607 1.432 1.04.39.262.867.52 1.345.696 1.824.564 4.99-.912 7.116-1.65"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M461.81 312.17c0 .174.737 1 1.606 1.65a14 14 0 0 0 1.17 1.04c.435.39.87.608 1.433 1 .345.26.867.52 1.3.65 1.867.564 4.99-.694 7.116-1.475"}),(0,e.jsx)("path",{stroke:"#053f6f",d:"M461.81 312.17c0 .13.694.955 1.606 1.606.347.304.737.65 1.17.955.435.434.87.65 1.433 1 .39.26.867.476 1.3.65 1.91.564 4.947-.564 7.116-1.345"}),(0,e.jsx)("path",{stroke:"#053f6f",d:"M461.81 312.17c0 .13.694.912 1.606 1.562q.52.456 1.17.912c.435.39.87.607 1.433.998.39.217.867.434 1.3.608 1.91.563 4.904-.434 7.116-1.215"}),(0,e.jsx)("path",{stroke:"#053f6f",d:"M461.81 312.17c0 .13.694.868 1.606 1.476q.52.455 1.17.91c.435.392.912.608 1.433.956.39.217.867.434 1.3.608 1.954.564 4.904-.304 7.116-1.085"}),(0,e.jsx)("path",{stroke:"#064171",d:"M461.81 312.17c0 .087.65.782 1.606 1.433.347.26.737.563 1.17.867.48.39.912.565 1.477.91.39.218.824.436 1.258.566 1.996.607 4.86-.13 7.116-.91"}),(0,e.jsx)("path",{stroke:"#064171",d:"M461.81 312.17c0 .087.65.738 1.606 1.39.347.26.737.563 1.17.824.48.347.912.564 1.477.867.39.218.824.435 1.3.566 1.953.608 4.817 0 7.073-.78"}),(0,e.jsx)("path",{stroke:"#064172",d:"M461.81 312.17c0 .043.65.695 1.606 1.303.347.26.737.563 1.17.824.48.347.955.564 1.477.825.39.216.867.39 1.3.563 1.997.608 4.774.174 7.073-.65"}),(0,e.jsx)("path",{stroke:"#064172",d:"M461.81 312.13c0 .087.65.695 1.606 1.303q.52.39 1.17.78c.48.304.955.52 1.477.825l1.3.52c2.04.608 4.73.304 7.073-.52"}),(0,e.jsx)("path",{stroke:"#064374",d:"M461.81 312.13c0 .087.607.65 1.606 1.26.347.216.737.476 1.17.736.48.304.955.522 1.52.782.39.174.824.346 1.258.477 2.04.65 4.73.477 7.072-.347"}),(0,e.jsx)("path",{stroke:"#064374",d:"M461.81 312.13c0 .043.607.565 1.606 1.173.347.26.737.476 1.215.737.435.26.91.477 1.476.738.39.174.824.347 1.258.477 2.083.65 4.686.607 7.072-.217"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M461.81 312.13c0 .043.607.52 1.606 1.13.347.216.737.433 1.215.693.435.26.955.477 1.476.695.39.173.824.347 1.258.477 2.126.607 4.643.737 7.072-.087m-12.627-2.908s6.465 5.077 12.626 2.908"}),(0,e.jsx)("path",{stroke:"#022743",d:"M461.55 292.17s1.258 8.113 1.736 9.285c.433 1.042 2.994 5.684 6.898 6.77"}),(0,e.jsx)("path",{stroke:"#022a49",d:"M461.55 292.17s1.345 8.027 1.866 9.2c.434 1.04 2.82 5.465 6.812 6.81"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M461.59 292.13s1.39 7.984 1.91 9.2c.434 1.04 2.69 5.205 6.724 6.854"}),(0,e.jsx)("path",{stroke:"#032e50",d:"M461.59 292.13s1.475 7.94 1.996 9.112c.477 1.04 2.517 4.99 6.638 6.898"}),(0,e.jsx)("path",{stroke:"#033054",d:"M461.64 292.13s1.52 7.853 2.04 9.025c.52 1.085 2.386 4.772 6.594 6.942"}),(0,e.jsx)("path",{stroke:"#043359",d:"M461.64 292.13s1.606 7.81 2.17 8.982c.477 1.084 2.213 4.468 6.464 6.985"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M461.64 292.08s1.692 7.767 2.257 8.938c.52 1.085 2.04 4.253 6.377 7.03"}),(0,e.jsx)("path",{stroke:"#043760",d:"M461.68 292.08s1.735 7.723 2.3 8.895c.52 1.084 1.908 3.992 6.29 7.072"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M461.68 292.08s1.822 7.636 2.386 8.808c.564 1.085 1.78 3.775 6.248 7.115"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M461.72 292.04s1.865 7.636 2.473 8.765c.564 1.128 1.562 3.515 6.118 7.202"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M461.72 292.04s1.996 7.55 2.56 8.72c.563 1.086 1.432 3.255 6.03 7.203"}),(0,e.jsx)("path",{stroke:"#064172",d:"M461.77 292.04s2.04 7.506 2.603 8.634c.607 1.128 1.302 3.038 5.988 7.246"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M461.77 291.99s2.127 7.463 2.69 8.59c.607 1.13 1.172 2.82 5.9 7.333"}),(0,e.jsx)("path",{stroke:"#022743",d:"M462.07 287.18s1.04 11.455 9.198 14.622"}),(0,e.jsx)("path",{stroke:"#022a49",d:"M462.07 287.18c.043.043.477 3.688 2.126 7.246 1.3 2.733 3.47 5.857 7.072 7.332"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M462.11 287.18c0 .043.52 3.775 2.17 7.202 1.214 2.517 3.383 5.772 6.984 7.376"}),(0,e.jsx)("path",{stroke:"#032e50",d:"M462.11 287.18c.043.087.65 3.905 2.256 7.115 1.17 2.343 3.297 5.728 6.898 7.42"}),(0,e.jsx)("path",{stroke:"#033054",d:"M462.16 287.18c0 .087.737 3.992 2.343 7.072 1.04 2.17 3.167 5.64 6.77 7.42"}),(0,e.jsx)("path",{stroke:"#043359",d:"M462.16 287.18c.043.13.867 4.08 2.43 6.985.954 1.997 3.123 5.598 6.682 7.507"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M462.2 287.18c0 .13.954 4.166 2.473 6.942.91 1.78 3.038 5.51 6.595 7.506"}),(0,e.jsx)("path",{stroke:"#043760",d:"M462.2 287.14c.043.217 1.085 4.34 2.56 6.943.824 1.56 2.95 5.423 6.508 7.505"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M462.2 287.14c.087.217 1.215 4.425 2.647 6.856.78 1.432 2.864 5.38 6.42 7.55"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M462.25 287.14c.043.26 1.302 4.512 2.69 6.813.694 1.214 2.777 5.293 6.335 7.592"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M462.25 287.14c.086.26 1.432 4.6 2.82 6.726.607 1.04 2.647 5.25 6.205 7.635"}),(0,e.jsx)("path",{stroke:"#064172",d:"M462.29 287.14c.043.304 1.52 4.73 2.864 6.682.52.824 2.56 5.164 6.118 7.636"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M462.29 287.14c.086.304 1.65 4.816 2.95 6.595.477.65 2.474 5.12 6.032 7.723"}),(0,e.jsx)("path",{stroke:"#022743",d:"M462.16 284.01s2.386 9.2 9.025 11.455"}),(0,e.jsx)("path",{stroke:"#022847",d:"M462.16 284.01s.91 3.254 3.08 6.422c1.432 2.125 3.514 4.208 5.944 5.033"}),(0,e.jsx)("path",{stroke:"#032a4a",d:"M462.16 283.97s.954 3.21 3.123 6.377c1.52 2.17 3.645 4.34 5.9 5.12"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"M462.16 283.93s.998 3.167 3.21 6.334c1.563 2.212 3.732 4.468 5.814 5.163"}),(0,e.jsx)("path",{stroke:"#032f53",d:"M462.2 283.88s.998 3.123 3.254 6.334c1.605 2.212 3.86 4.555 5.728 5.207"}),(0,e.jsx)("path",{stroke:"#033156",d:"M462.2 283.88s1.04 3.038 3.34 6.248c1.65 2.256 3.95 4.686 5.685 5.25"}),(0,e.jsx)("path",{stroke:"#043359",d:"M462.2 283.84s1.085 3.038 3.384 6.205c1.736 2.342 4.122 4.816 5.64 5.337"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M462.2 283.79s1.128 2.994 3.47 6.16c1.78 2.387 4.21 4.947 5.555 5.425"}),(0,e.jsx)("path",{stroke:"#043760",d:"M462.25 283.79s1.085 2.907 3.514 6.118c1.823 2.386 4.34 5.033 5.468 5.424"}),(0,e.jsx)("path",{stroke:"#043963",d:"M462.25 283.75s1.128 2.864 3.6 6.074c1.866 2.43 4.426 5.207 5.382 5.51"}),(0,e.jsx)("path",{stroke:"#053b67",d:"M462.25 283.71s1.17 2.82 3.645 6.03c1.908 2.474 4.6 5.338 5.337 5.598"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"M462.25 283.66s1.215 2.777 3.73 6.03c1.954 2.518 4.687 5.425 5.252 5.6"}),(0,e.jsx)("path",{stroke:"#053f6f",d:"M462.29 283.66s1.215 2.69 3.775 5.944c1.995 2.56 4.816 5.554 5.163 5.685"}),(0,e.jsx)("path",{stroke:"#064172",d:"M462.29 283.62s1.258 2.647 3.862 5.9c2.04 2.604 4.903 5.685 5.12 5.772"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M462.29 283.58s1.302 2.603 3.905 5.857c2.126 2.647 5.077 5.815 5.077 5.815M479.9 296.55l4.56.83m-4.08 2.64 4.08-1.73"}),(0,e.jsx)("path",{stroke:"#064171",d:"m479.86 296.68 4.56.7"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"m479.86 296.85 4.6.57"}),(0,e.jsx)("path",{stroke:"#053b67",d:"m479.9 297.03 4.6.39"}),(0,e.jsx)("path",{stroke:"#043862",d:"m479.9 297.2 4.65.26"}),(0,e.jsx)("path",{stroke:"#04355c",d:"m479.9 297.38 4.69.08"}),(0,e.jsx)("path",{stroke:"#043258",d:"m479.95 297.55 4.68-.04"}),(0,e.jsx)("path",{stroke:"#032f53",d:"m479.95 297.68 4.73-.17"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"m479.95 297.85 4.77-.3"}),(0,e.jsx)("path",{stroke:"#022a49",d:"m479.99 298.03 4.77-.48"}),(0,e.jsx)("path",{stroke:"#064171",d:"m480.34 299.81 4.16-1.61"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"m480.29 299.63 4.26-1.52"}),(0,e.jsx)("path",{stroke:"#053b67",d:"m480.29 299.46 4.3-1.39"}),(0,e.jsx)("path",{stroke:"#043862",d:"m480.25 299.28 4.38-1.3"}),(0,e.jsx)("path",{stroke:"#04355c",d:"m480.21 299.11 4.47-1.17"}),(0,e.jsx)("path",{stroke:"#043258",d:"m480.21 298.94 4.51-1.09"}),(0,e.jsx)("path",{stroke:"#032f53",d:"m480.16 298.72 4.6-.91"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"m480.12 298.55 4.69-.83"}),(0,e.jsx)("path",{stroke:"#022a49",d:"m480.12 298.37 4.73-.69"}),(0,e.jsx)("path",{stroke:"#022743",d:"m480.08 298.2 4.81-.61"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M484.24 331.57s-2.43.13-2.647.217c-.26.044-9.892-.174-9.892-.174"}),(0,e.jsx)("path",{stroke:"#032e50",d:"M484.29 331.61s-2.386.217-2.734.304c-.39.042-9.762-.26-9.762-.26"}),(0,e.jsx)("path",{stroke:"#033054",d:"M484.29 331.65s-2.3.303-2.777.39c-.52.088-9.632-.347-9.632-.347"}),(0,e.jsx)("path",{stroke:"#043359",d:"M484.33 331.7s-2.256.346-2.864.478c-.65.13-9.545-.435-9.545-.435"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M484.33 331.7s-2.17.478-2.95.607c-.738.174-9.372-.52-9.372-.52"}),(0,e.jsx)("path",{stroke:"#043760",d:"M484.33 331.74s-2.083.52-2.994.694c-.868.217-9.24-.607-9.24-.607"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M484.37 331.78s-2.04.607-3.08.824c-.998.174-9.112-.737-9.112-.737"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M484.37 331.83s-1.996.694-3.123.91c-1.128.218-9.026-.78-9.026-.78"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M484.42 331.87s-1.952.737-3.21.998c-1.26.26-8.895-.87-8.895-.87"}),(0,e.jsx)("path",{stroke:"#064172",d:"M484.42 331.91s-1.866.824-3.254 1.085c-1.388.304-8.764-.956-8.764-.956"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M472.48 332.09s7.115 1.345 8.634 1.04c1.52-.303 3.34-1.17 3.34-1.17"}),(0,e.jsx)("path",{stroke:"#022a49",d:"M486.06 337.07s4.555.695 4.73.65c.085 0 2.646-.172 2.733-.172.043 0 2.212-.52 2.212-.52"}),(0,e.jsx)("path",{stroke:"#032d4f",d:"M485.8 336.99s4.686.738 5.033.65c.173-.042 2.517-.172 2.647-.172s2.082-.478 2.082-.478"}),(0,e.jsx)("path",{stroke:"#033054",d:"M485.54 336.86s4.816.825 5.294.695c.26-.044 2.386-.174 2.603-.174.174 0 1.91-.433 1.91-.433"}),(0,e.jsx)("path",{stroke:"#043359",d:"M485.28 336.73s4.903.87 5.597.738a57 57 0 0 1 2.516-.173l1.736-.348"}),(0,e.jsx)("path",{stroke:"#043760",d:"M485.02 336.64s5.033.91 5.857.737c.434-.087 2.17-.174 2.473-.217.304 0 1.563-.26 1.563-.26"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M484.76 336.51s5.163.998 6.16.78c.522-.086 1.998-.173 2.387-.217.348 0 1.39-.217 1.39-.217"}),(0,e.jsx)("path",{stroke:"#053d6a",d:"M484.5 336.38s5.25 1.085 6.42.867c.65-.13 1.91-.217 2.343-.26a24 24 0 0 0 1.215-.174"}),(0,e.jsx)("path",{stroke:"#064171",d:"M484.24 336.29s5.38 1.128 6.725.867c.694-.173 1.736-.26 2.256-.26.478-.043 1.085-.087 1.085-.087"}),(0,e.jsx)("path",{stroke:"#022743",d:"m486.325 337.206 4.426.61 2.82-.134 2.387-.61"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M483.98 336.16s5.51 1.215 7.03.91c1.474-.303 3.08-.303 3.08-.303M505.76 336.81l4.295-1.56c2.69-1 2.994-3.69 2.994-3.69"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M505.46 335.95s1.736-.694 3.167-1.215c3.818-1.432 3.384-3.254 3.384-3.254"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"M505.2 336.12s2.256-.867 3.427-1.302c.608-.217 1.39-.564 1.78-.825.52-.304 1.17-.91 1.345-1.215.347-.52.347-1.258.347-1.258"}),(0,e.jsx)("path",{stroke:"#043862",d:"M504.94 336.34s2.82-1.085 3.688-1.39c.434-.172 1.475-.607 1.736-.78.39-.26 1.302-.998 1.432-1.215.26-.434.433-1.432.433-1.432"}),(0,e.jsx)("path",{stroke:"#043258",d:"M504.68 336.51s3.384-1.258 3.949-1.476c.302-.086 1.517-.607 1.69-.694.262-.174 1.433-1.128 1.52-1.258.174-.26.477-1.563.477-1.563"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"M504.42 336.73s3.905-1.474 4.208-1.562c.13-.087 1.606-.607 1.693-.694.13-.043 1.52-1.17 1.563-1.258.087-.13.564-1.65.564-1.65"}),(0,e.jsx)("path",{stroke:"#053e6c",d:"M505.46 336.86s3.47-1.302 4.642-1.736c.824-.303 1.693-1.04 2.083-1.56.564-.826.78-1.998.78-1.998"}),(0,e.jsx)("path",{stroke:"#043862",d:"M505.11 336.86s4.166-1.52 5.033-1.866c.608-.216 1.693-1.085 1.953-1.475.433-.61.737-1.954.737-1.954"}),(0,e.jsx)("path",{stroke:"#043258",d:"M504.81 336.9s4.816-1.823 5.38-1.996c.435-.173 1.693-1.172 1.867-1.432.304-.434.693-1.91.693-1.91"}),(0,e.jsx)("path",{stroke:"#032c4d",d:"M504.5 336.9s5.424-2.04 5.728-2.126c.216-.087 1.648-1.215 1.778-1.345.13-.218.65-1.867.65-1.867"}),(0,e.jsx)("path",{stroke:"#022743",strokeWidth:.18,d:"m504.157 336.896 6.12-2.254 1.647-1.25.608-1.83"}),(0,e.jsx)("path",{stroke:"#032b4c",d:"M511.27 331.57s-2.517.13-2.777.217c-.26.044-10.283-.174-10.283-.174"}),(0,e.jsx)("path",{stroke:"#032e50",d:"M511.32 331.61s-2.473.217-2.864.304c-.39.042-10.153-.26-10.153-.26"}),(0,e.jsx)("path",{stroke:"#033054",d:"M511.32 331.65s-2.386.303-2.907.39-10.023-.347-10.023-.347"}),(0,e.jsx)("path",{stroke:"#043359",d:"M511.32 331.7s-2.3.346-2.95.478c-.652.13-9.893-.435-9.893-.435"}),(0,e.jsx)("path",{stroke:"#04355c",d:"M511.36 331.7s-2.257.478-3.038.607c-.78.174-9.762-.52-9.762-.52"}),(0,e.jsx)("path",{stroke:"#043760",d:"M511.36 331.74s-2.17.52-3.08.694c-.91.217-9.675-.607-9.675-.607"}),(0,e.jsx)("path",{stroke:"#053a65",d:"M511.4 331.78s-2.126.607-3.167.824c-1.085.174-9.545-.737-9.545-.737"}),(0,e.jsx)("path",{stroke:"#053c68",d:"M511.4 331.83s-2.04.694-3.254.91c-1.17.218-9.37-.78-9.37-.78"}),(0,e.jsx)("path",{stroke:"#053f6e",d:"M511.45 331.87s-2.04.737-3.34.998c-1.302.26-9.242-.87-9.242-.87"}),(0,e.jsx)("path",{stroke:"#064172",d:"M511.45 331.91s-1.953.824-3.384 1.085c-1.432.304-9.112-.956-9.112-.956"}),(0,e.jsx)("path",{stroke:"#00209f",d:"M498.99 332.09s7.463 1.345 9.025 1.04c1.562-.303 3.47-1.17 3.47-1.17"})]}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.174,d:"M474.96 289.91a34 34 0 0 1-.174-3.21c.044-5.164-.65-9.07-.087-14.49.434-4.253 1.475-9.85 1.258-14.45-.087-1.3.172-2.603.217-3.86l20.957 23.516M466.97 327.7c-.565-.346-1.52-1.345-1.823-2.213-.608-1.736-.477-1.692-.91-3.6-.26-1.085-.26-2.3-.522-3.428-.216-1.13-1.822-4.73-1.865-6.206-.173-4.728-1.736-7.94-1.345-13.103.26-3.99 1.17-9.414.737-13.58-.13-1.128.044-2.43.087-3.558l23.56 15.576m28.551 33.892c.174.52-.347 1.52-.52 1.866-.13.174-.347.477-.477.65-.26.565-.217.435-.694.87-.13.086-.695.563-.87.65-.345.26-.693.607-1.084.65-1.78.305-2.516.694-4.21 1.172-1.604.478-.736.39-1.95.695-.608.13-1.823.607-2.43.694-1.085.173-1.26.347-2.387.608-2.908.65-5.728.476-8.59.304-1.173-.088-4.037-.696-5.035-1.39-1.78-1.26-5.684-1.736-7.42-2.95-.258-.176-1.344-.696-1.56-.913-1.693-1.388-3.038-1.78-4.816-2.907"}),(0,e.jsxs)("g",{stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.13,children:[(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"m484.893 297.593.565-.826-23.908-15.62-.433.65zM461.16 280.89c-.174-.91.087-2.127.737-2.257.044 0 .52-.173.824-.086.392 0 .478.13.652.433.346.824-.65 1.346-1.346 1.606-.173.044-.65.13-.737.346-.13.348-.044.218-.13.348.13-.044.173-.174.302-.26.52-.304 1.04-.39 1.78-.738.564-.26.65-1.388.26-1.735-.433-.347-1.78-.304-2.082.044-.65.738-.694 1.737-.564 2.734 0-.217.347-.173.304-.434z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M460.77 281.32c-.91-.043-2.083.347-2.126.998 0 .087-.087.608 0 .867.044.39.173.478.52.565.868.26 1.26-.78 1.39-1.52.042-.173.042-.65.26-.78.346-.173.26-.087.346-.173-.044.13-.174.217-.217.304-.216.564-.26 1.13-.52 1.91-.174.563-1.302.78-1.65.433-.434-.347-.563-1.692-.26-2.04.65-.737 1.65-.91 2.647-.91-.173.043-.13.39-.39.347z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M460.6 280.93c-.26.13-.26.478-.13.695.087.216.476.26.65.172.346-.216.565-.606.346-.954-.215-.304-.562-.043-.866.087z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M455.56 277.76s2.517.998 4.555 1.04c0 0 .087 1.78.52 2.3 0 0-1.82-.346-2.646.087 0 0-1.085-2.473-2.43-3.427z"}),(0,e.jsx)("path",{fill:"none",d:"M457.6 279.02s.998.434 1.822.434c0 0 .043.694.217.91 0 0-.738-.13-1.042.045 0-.002-.435-1-.998-1.39z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M460.77 282.88s.477-.824.607-1.128c.086-.173-.043.998.39 1.128.563.737.693 2.256.693 2.647-.65.216-1.214.607-2.212.13-.346-.217-.087-.867.043-1.39.09-.26.176-.997.48-1.387z"}),(0,e.jsx)("path",{fill:"none",d:"M461.25 282.23c0 .13.087.65.043.563 0-.216.26.218.303.304.348.65.478 1.128.608 2.387m-.744-2.164c.217.998.39.954.39 2.344l.088-.087m-.518-1.347c.173.694.13 1.04.173 1.39-.044 0-.26.17-.303.17"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"m497.13 277.417.65-.607-21.347-23.734-.434.52z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M476.61 253.08c.043-.954.565-2.083 1.215-2.04.043 0 .564-.043.824.087.39.087.433.26.52.608.173.867-.912 1.128-1.65 1.215-.173 0-.693-.044-.823.173-.217.304-.087.216-.217.304.13 0 .26-.13.347-.173.607-.173 1.128-.173 1.952-.303.564-.086.91-1.214.607-1.605-.304-.434-1.606-.737-1.996-.477-.823.564-1.084 1.52-1.17 2.56.044-.22.347-.132.39-.348z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M476.13 253.38c-.91-.26-2.126-.13-2.343.478 0 .043-.216.563-.173.824-.043.39.044.52.39.693.737.435 1.39-.476 1.693-1.17.087-.175.217-.608.433-.695.347-.086.26 0 .347-.086-.043.13-.172.173-.26.26-.347.52-.52.998-.953 1.735-.304.477-1.432.477-1.736.042-.303-.476-.087-1.778.26-2.04.78-.607 1.822-.563 2.776-.26-.174-.042-.217.306-.434.218z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M476.04 252.95c-.304.043-.347.433-.304.65s.39.39.607.304c.347-.13.694-.433.563-.824-.13-.347-.563-.173-.866-.13z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M471.92 248.69s2.17 1.562 4.122 2.083c0 0-.304 1.78 0 2.343 0 0-1.736-.737-2.603-.52 0 0-.435-2.648-1.52-3.906z"}),(0,e.jsx)("path",{fill:"none",d:"M473.57 250.43s.867.607 1.65.824c0 0-.13.694 0 .91 0 0-.695-.26-1.042-.173 0 .002-.174-1.083-.608-1.56z"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",d:"M475.74 254.9s.65-.694.867-.954c.13-.174-.302.954.087 1.215.39.825.13 2.3.044 2.734-.694.044-1.302.26-2.126-.434-.304-.26.086-.824.346-1.302.13-.26.39-.954.782-1.258z"}),(0,e.jsx)("path",{fill:"none",d:"M476.35 254.42c0 .087-.043.433-.043.52.043.26.26.347.303.65.13.74-.044 1.216-.087 2.17m-.263-2.47c.216.91.043 1.65-.087 2.517-.043 0 .087 0 .087-.044m-.13-.953c-.13.346-.13.563-.173.954-.043-.043-.217.13-.26.087"})]})]}),(0,e.jsx)("use",{xlinkHref:"#sv_inline_svg__c",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 1030.05 0)"})]}),(0,e.jsx)("path",{fill:"#fc0",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.347,d:"m319.306 197.878-40.23 67.305h80.49z"}),(0,e.jsx)("path",{fill:"#fff",stroke:"#fff",strokeMiterlimit:2.613,strokeWidth:.104,d:"M319.306 202.252 282.998 263h72.648z"}),(0,e.jsx)("path",{fill:"#007e93",stroke:"#007e93",strokeMiterlimit:2.613,strokeWidth:.208,d:"M293.758 244.946 282.998 263h72.648l-10.794-18.054z"}),(0,e.jsxs)("g",{fill:"none",strokeMiterlimit:2.613,strokeWidth:.139,children:[(0,e.jsx)("path",{stroke:"#086aad",d:"M312.99 212.872c1.7-1.528 3.783-2.152 6.213-2.187h.174c2.36.035 4.756.59 6.282 2.187"}),(0,e.jsx)("path",{stroke:"#0863aa",d:"M312.95 212.944c1.666-1.562 3.818-2.152 6.248-2.187h.174c2.43 0 4.825.59 6.35 2.222"}),(0,e.jsx)("path",{stroke:"#095fa8",d:"M312.918 213.048c1.666-1.63 3.853-2.222 6.318-2.256h.173c2.43.034 4.86.624 6.386 2.29"}),(0,e.jsx)("path",{stroke:"#0a58a5",d:"M312.846 213.12c1.667-1.63 3.922-2.256 6.387-2.256h.21c2.463 0 4.893.624 6.42 2.36"}),(0,e.jsx)("path",{stroke:"#0a52a2",d:"M312.814 213.184c1.632-1.666 3.957-2.256 6.457-2.29h.174c2.534.034 4.963.658 6.49 2.43"}),(0,e.jsx)("path",{stroke:"#0b4d9f",d:"M312.75 213.256c1.63-1.7 3.992-2.29 6.525-2.29h.21c2.567.034 4.996.658 6.56 2.463"}),(0,e.jsx)("path",{stroke:"#0c479d",d:"M312.71 213.36c1.63-1.735 4.026-2.36 6.595-2.36h.173c2.638.034 5.033.693 6.63 2.533"}),(0,e.jsx)("path",{stroke:"#270a7f",d:"M312.262 214.088c1.91-2.013 4.27-2.603 7.08-2.603h.174c3.09.035 5.728 1.076 7.255 3.228"}),(0,e.jsx)("path",{stroke:"#241183",d:"M312.294 213.984c1.874-1.944 4.235-2.534 7.046-2.568h.173c3.02.034 5.624 1.04 7.186 3.16"}),(0,e.jsx)("path",{stroke:"#221786",d:"M312.366 213.912c1.84-1.944 4.165-2.534 6.942-2.534h.174c2.985.035 5.588.972 7.15 3.09"}),(0,e.jsx)("path",{stroke:"#1f1f8a",d:"M312.398 213.848c1.805-1.91 4.165-2.5 6.873-2.534h.174c2.95.035 5.52.938 7.116 3.02"}),(0,e.jsx)("path",{stroke:"#1a258d",d:"M312.47 213.744c1.735-1.84 4.096-2.464 6.803-2.464h.14c2.915 0 5.483.833 7.08 2.916"}),(0,e.jsx)("path",{stroke:"#172d91",d:"M312.502 213.672c1.7-1.84 4.096-2.43 6.734-2.464h.173c2.846.035 5.414.798 6.976 2.846"}),(0,e.jsx)("path",{stroke:"#143393",d:"M312.534 213.6c1.666-1.806 4.06-2.43 6.664-2.43h.174c2.81 0 5.345.73 6.942 2.742"}),(0,e.jsx)("path",{stroke:"#113b97",d:"M312.606 213.496c1.63-1.77 4.026-2.36 6.595-2.395h.14c2.776 0 5.31.695 6.907 2.708"}),(0,e.jsx)("path",{stroke:"#ff0a00",d:"M315.31 208.92c1.18-.833 2.43-1.076 3.992-1.076 1.493 0 2.81.243 3.957 1.007"}),(0,e.jsx)("path",{stroke:"#f10",d:"M315.278 208.984c1.18-.833 2.464-1.076 4.026-1.076 1.493 0 2.847.242 3.992 1.007"}),(0,e.jsx)("path",{stroke:"#ff1500",d:"M315.246 209.056c1.215-.833 2.5-1.11 4.06-1.11 1.494 0 2.882.276 4.063 1.04"}),(0,e.jsx)("path",{stroke:"#ff1a00",d:"M315.214 209.16c1.215-.868 2.5-1.146 4.096-1.146 1.527 0 2.916.277 4.096 1.042"}),(0,e.jsx)("path",{stroke:"#ff2000",d:"M315.174 209.232c1.215-.868 2.534-1.145 4.13-1.145 1.528 0 2.95.277 4.13 1.042"}),(0,e.jsx)("path",{stroke:"#ff2700",d:"M315.142 209.296c1.215-.868 2.568-1.18 4.165-1.18 1.527 0 2.986.312 4.166 1.11"}),(0,e.jsx)("path",{stroke:"#ff2f00",d:"M315.102 209.368c1.215-.868 2.568-1.18 4.2-1.18 1.527 0 3.02.312 4.2 1.11"}),(0,e.jsx)("path",{stroke:"#f30",d:"M315.07 209.44c1.215-.902 2.603-1.18 4.235-1.18 1.562 0 3.055.312 4.27 1.11"}),(0,e.jsx)("path",{stroke:"#ff3c00",d:"M315.038 209.504c1.215-.902 2.638-1.215 4.27-1.215 1.56 0 3.09.346 4.304 1.145"}),(0,e.jsx)("path",{stroke:"#ff4100",d:"M314.998 209.576c1.25-.902 2.672-1.215 4.304-1.215 1.562 0 3.124.348 4.34 1.147"}),(0,e.jsx)("path",{stroke:"#ff4600",d:"M314.966 209.648c1.25-.902 2.672-1.215 4.34-1.215 1.596 0 3.158.347 4.373 1.146"}),(0,e.jsx)("path",{stroke:"#fff500",d:"M314.03 211.208c1.353-1.04 3.505-1.562 5.31-1.562 1.91 0 3.992.52 5.345 1.597"}),(0,e.jsx)("path",{stroke:"#ffeb00",d:"M314.102 211.104c1.318-1.04 3.436-1.528 5.24-1.528 1.875 0 3.923.486 5.276 1.598"}),(0,e.jsx)("path",{stroke:"#ffe000",d:"M314.134 211.032c1.354-1.04 3.4-1.528 5.206-1.528 1.84 0 3.888.486 5.24 1.563"}),(0,e.jsx)("path",{stroke:"#ffd600",d:"M314.206 210.928c1.32-1.007 3.333-1.492 5.137-1.492 1.84 0 3.853.485 5.172 1.527"}),(0,e.jsx)("path",{stroke:"#ffcf00",d:"M314.238 210.864c1.32-1.007 3.298-1.492 5.103-1.492s3.785.485 5.137 1.492"}),(0,e.jsx)("path",{stroke:"#ffc400",d:"M314.31 210.76c1.32-1.007 3.263-1.458 5.033-1.458 1.805 0 3.75.45 5.067 1.493"}),(0,e.jsx)("path",{stroke:"#ffba00",d:"M314.342 210.688c1.32-1.007 3.228-1.458 4.998-1.458s3.68.45 4.998 1.458"}),(0,e.jsx)("path",{stroke:"#ffb000",d:"M314.414 210.584c1.285-.972 3.16-1.423 4.93-1.423s3.644.452 4.962 1.424"}),(0,e.jsx)("path",{stroke:"#ffa600",d:"M314.446 210.512c1.32-1.007 3.124-1.424 4.894-1.424 1.736 0 3.61.45 4.894 1.424"}),(0,e.jsx)("path",{stroke:"#ff9c00",d:"M314.518 210.408c1.285-.972 3.055-1.39 4.825-1.39 1.7 0 3.54.418 4.824 1.39"}),(0,e.jsx)("path",{stroke:"#ff9100",d:"M314.55 210.344c1.285-.972 3.055-1.39 4.79-1.39 1.7 0 3.506.418 4.79 1.355"}),(0,e.jsx)("path",{stroke:"#ff8700",d:"M314.622 210.232c1.285-.937 2.985-1.354 4.72-1.354 1.667 0 3.473.416 4.723 1.32"}),(0,e.jsx)("path",{stroke:"#ff7d00",d:"M314.654 210.168c1.285-.972 2.95-1.354 4.686-1.354 1.666 0 3.402.416 4.686 1.32"}),(0,e.jsx)("path",{stroke:"#ff7500",d:"M314.726 210.064c1.25-.937 2.88-1.318 4.616-1.318 1.63 0 3.368.416 4.617 1.283"}),(0,e.jsx)("path",{stroke:"#ff6b00",d:"M314.758 209.992c1.284-.937 2.846-1.318 4.582-1.318 1.63 0 3.297.38 4.547 1.25"}),(0,e.jsx)("path",{stroke:"#ff6100",d:"M314.83 209.888c1.25-.937 2.81-1.285 4.512-1.285 1.596 0 3.263.382 4.513 1.25"}),(0,e.jsx)("path",{stroke:"#ff5700",d:"M314.862 209.816c1.285-.937 2.777-1.285 4.478-1.285 1.562 0 3.228.383 4.443 1.216"}),(0,e.jsx)("path",{stroke:"#ebf605",d:"M313.854 211.384c1.423-1.11 3.61-1.63 5.484-1.63 1.944 0 4.06.554 5.45 1.665"}),(0,e.jsx)("path",{stroke:"#d6ec09",d:"M313.822 211.488c1.492-1.18 3.61-1.666 5.52-1.666 1.942 0 4.13.555 5.517 1.7"}),(0,e.jsx)("path",{stroke:"#c2e30e",d:"M313.75 211.592c1.562-1.25 3.61-1.735 5.588-1.735 1.98 0 4.166.59 5.554 1.735"}),(0,e.jsx)("path",{stroke:"#add912",d:"M313.686 211.696c1.666-1.32 3.644-1.77 5.658-1.77 1.978 0 4.2.59 5.588 1.77"}),(0,e.jsx)("path",{stroke:"#99cf16",d:"M313.646 211.8c1.7-1.353 3.645-1.805 5.658-1.805 2.048 0 4.27.59 5.692 1.77"}),(0,e.jsx)("path",{stroke:"#85c61a",d:"M313.582 211.904c1.805-1.424 3.645-1.875 5.727-1.875s4.338.623 5.726 1.84"}),(0,e.jsx)("path",{stroke:"#70bc1f",d:"M313.542 212.008c1.84-1.492 3.645-1.91 5.762-1.91 2.083 0 4.374.625 5.796 1.84"}),(0,e.jsx)("path",{stroke:"#5cb323",d:"M313.47 212.112c1.944-1.562 3.68-1.978 5.83-1.978 2.12 0 4.41.66 5.833 1.91"}),(0,e.jsx)("path",{stroke:"#47a928",d:"M313.406 212.176c2.013-1.597 3.68-1.978 5.9-1.978 2.118 0 4.444.66 5.902 1.91"}),(0,e.jsx)("path",{stroke:"#0d74a4",d:"M313.094 212.736c1.77-1.562 3.818-2.117 6.248-2.117 2.29 0 4.687.59 6.214 2.08"}),(0,e.jsx)("path",{stroke:"#127a97",d:"M313.126 212.696c1.805-1.596 3.783-2.152 6.213-2.152 2.29 0 4.65.624 6.178 2.082"}),(0,e.jsx)("path",{stroke:"#17808b",d:"M313.166 212.632c1.84-1.596 3.783-2.117 6.18-2.117 2.255 0 4.65.624 6.143 2.048"}),(0,e.jsx)("path",{stroke:"#1a847d",d:"M313.198 212.56c1.874-1.596 3.75-2.083 6.144-2.083 2.222 0 4.617.625 6.074 2.014"}),(0,e.jsx)("path",{stroke:"#1e8a6d",d:"M313.23 212.528c1.91-1.63 3.75-2.117 6.074-2.117 2.257 0 4.618.66 6.074 2.014"}),(0,e.jsx)("path",{stroke:"#238f5e",d:"M313.27 212.456c1.944-1.63 3.714-2.083 6.04-2.083 2.22 0 4.582.66 6.04 2.014"}),(0,e.jsx)("path",{stroke:"#2b944e",d:"M313.302 212.424c1.978-1.666 3.714-2.083 6.005-2.083 2.187 0 4.548.66 6.005 1.98"}),(0,e.jsx)("path",{stroke:"#2f9b3e",d:"M313.334 212.352c2.013-1.667 3.68-2.048 5.97-2.048 2.152 0 4.548.66 5.97 1.944"}),(0,e.jsx)("path",{stroke:"red",d:"M323.23 208.776c-1.146-.763-2.464-1.007-3.922-1.007-1.563 0-2.777.277-3.957 1.075"}),(0,e.jsx)("path",{stroke:"#2a007c",d:"M326.87 214.856c-1.596-2.256-4.304-3.333-7.497-3.333-2.88 0-5.206.625-7.186 2.638"}),(0,e.jsx)("path",{stroke:"#0671b0",d:"M325.59 212.736c-1.527-1.492-3.92-2.083-6.247-2.083-2.464 0-4.547.59-6.282 2.153"}),(0,e.jsx)("path",{stroke:"#0c419a",d:"M326.182 213.672c-1.632-1.978-4.13-2.603-6.873-2.603-2.57 0-5.034.59-6.665 2.36"}),(0,e.jsx)("path",{stroke:"#ff0",d:"M324.758 211.344c-1.39-1.11-3.505-1.632-5.414-1.632-1.84 0-4.062.52-5.415 1.562"}),(0,e.jsx)("path",{stroke:"#ff4d00",d:"M323.71 209.648c-1.215-.798-2.81-1.18-4.41-1.18-1.664 0-3.123.346-4.373 1.284"}),(0,e.jsx)("path",{stroke:"#33a02c",d:"M325.238 212.176c-1.424-1.25-3.783-1.944-5.936-1.944-2.256 0-3.887.382-5.935 2.048"})]}),(0,e.jsxs)("g",{fill:"none",strokeMiterlimit:2.613,strokeWidth:.139,children:[(0,e.jsx)("path",{stroke:"#fef2ec",d:"M311.95 214.504c2.256-1.11 4.617-1.805 7.358-1.805 2.603 0 5.38.97 7.567 2.15l7.705 12.88c0 8.433-6.872 15.41-15.272 15.41-8.434 0-15.237-6.803-15.307-15.34l7.95-13.296z"}),(0,e.jsx)("path",{stroke:"#fef2ea",d:"M319.31 212.872c2.568 0 5.31 1.007 7.462 2.152.035 0 7.602 12.67 7.602 12.704 0 8.295-6.77 15.203-15.064 15.203-8.33 0-15.03-6.698-15.1-15.133 0-.035 7.81-13.086 7.846-13.086 2.22-1.11 4.547-1.84 7.254-1.84z"}),(0,e.jsx)("path",{stroke:"#fef0e6",d:"M319.27 213.288c2.534 0 5.206.937 7.29 2.083.07.035 7.392 12.253 7.392 12.358 0 8.087-6.595 14.82-14.682 14.82-8.053 0-14.613-6.56-14.648-14.75 0-.105 7.532-12.705 7.6-12.74 2.188-1.075 4.444-1.77 7.048-1.77z"}),(0,e.jsx)("path",{stroke:"#feede3",d:"M319.27 213.704c2.465 0 5.067.902 7.08 2.013.14.07 7.22 11.87 7.22 12.045 0 7.845-6.42 14.37-14.3 14.37-7.844 0-14.196-6.352-14.266-14.336 0-.173 7.29-12.288 7.428-12.39 2.118-1.043 4.304-1.702 6.838-1.702z"}),(0,e.jsx)("path",{stroke:"#fee8dc",d:"M319.27 214.296c2.36 0 4.86.868 6.803 1.944.21.14 6.874 11.246 6.874 11.525 0 7.497-6.145 13.745-13.677 13.745-7.497 0-13.606-6.074-13.64-13.71 0-.278 6.837-11.732 7.08-11.836 2.014-1.008 4.165-1.667 6.56-1.667z"}),(0,e.jsx)("path",{stroke:"#fee6d5",d:"M319.27 214.712c2.29 0 4.72.833 6.595 1.874.278.173 6.665 10.83 6.665 11.177 0 7.29-5.97 13.363-13.26 13.363s-13.19-5.934-13.224-13.328c0-.348 6.56-11.316 6.872-11.49 1.943-.97 4.026-1.596 6.352-1.596z"}),(0,e.jsx)("path",{stroke:"#fee3cf",d:"M319.27 215.304c2.187 0 4.513.833 6.283 1.805.38.207 6.352 10.203 6.352 10.655 0 6.977-5.658 12.738-12.635 12.738-6.942 0-12.6-5.623-12.634-12.67 0-.486 6.178-10.76 6.56-11.003 1.874-.937 3.853-1.526 6.074-1.526z"}),(0,e.jsx)("path",{stroke:"#fee0cc",d:"M319.27 215.72c2.152 0 4.34.763 6.108 1.735.417.244 6.145 9.788 6.145 10.31 0 6.734-5.52 12.322-12.253 12.322s-12.183-5.45-12.217-12.252c0-.556 5.9-10.38 6.317-10.622 1.84-.937 3.748-1.493 5.9-1.493z"}),(0,e.jsx)("path",{stroke:"#fedec6",d:"M319.27 216.136c2.083 0 4.2.73 5.9 1.666.452.277 5.936 9.406 5.936 9.997 0 6.49-5.31 11.904-11.836 11.904-6.49 0-11.767-5.275-11.8-11.87 0-.626 5.622-9.998 6.108-10.275 1.734-.87 3.61-1.424 5.692-1.424z"}),(0,e.jsx)("path",{stroke:"#fdcdaa",d:"M319.27 218.776c1.63 0 3.263.556 4.582 1.285.833.486 4.582 6.734 4.582 7.776 0 5.032-4.096 9.198-9.164 9.198-5.033 0-9.13-4.096-9.164-9.198 0-1.042 3.853-7.463 4.72-7.95 1.354-.693 2.813-1.11 4.444-1.11z"}),(0,e.jsx)("path",{stroke:"#fdcdaa",d:"M319.27 218.952c1.596 0 3.194.555 4.478 1.285.868.52 4.477 6.525 4.477 7.6 0 4.93-4.025 8.99-8.955 8.99s-8.955-3.99-8.955-8.954c0-1.11 3.714-7.29 4.616-7.81 1.32-.694 2.744-1.11 4.34-1.11z"}),(0,e.jsx)("path",{stroke:"#fdc59e",d:"M319.27 219.952c1.424 0 2.846.486 3.992 1.146 1.007.59 3.957 5.484 3.957 6.733 0 4.374-3.576 7.984-7.95 7.984s-7.914-3.54-7.95-7.95c0-1.283 3.056-6.316 4.097-6.906 1.146-.624 2.43-1.006 3.853-1.006z"}),(0,e.jsx)("path",{stroke:"#fdc59e",d:"M319.27 220.16c1.39 0 2.777.45 3.888 1.11 1.042.625 3.852 5.276 3.852 6.562 0 4.27-3.47 7.775-7.74 7.775a7.725 7.725 0 0 1-7.74-7.74c0-1.32 2.915-6.11 3.99-6.734 1.112-.592 2.36-.973 3.75-.973z"}),(0,e.jsx)("path",{stroke:"#fef0e9",d:"M319.31 213.08c2.534 0 5.24.972 7.36 2.117.034.035 7.495 12.46 7.495 12.53 0 8.193-6.7 15.03-14.855 15.03-8.192 0-14.856-6.665-14.89-14.96 0-.07 7.67-12.877 7.705-12.912 2.22-1.11 4.512-1.805 7.185-1.805z"}),(0,e.jsx)("path",{stroke:"#feede3",d:"M319.27 213.496c2.5 0 5.136.937 7.185 2.048.105.07 7.324 12.08 7.324 12.218 0 7.948-6.527 14.58-14.51 14.58-7.95 0-14.406-6.457-14.475-14.544 0-.14 7.427-12.496 7.532-12.565 2.153-1.077 4.374-1.736 6.943-1.736z"}),(0,e.jsx)("path",{stroke:"#feebdf",d:"M319.27 213.912c2.43 0 4.998.902 6.977 1.978.174.105 7.116 11.663 7.116 11.872 0 7.74-6.353 14.162-14.093 14.162s-13.99-6.283-14.058-14.127c0-.21 7.115-12.115 7.29-12.22 2.116-1.04 4.268-1.664 6.768-1.664z"}),(0,e.jsx)("path",{stroke:"#feebdd",d:"M319.27 214.088c2.395 0 4.93.902 6.907 1.978.174.105 6.977 11.455 6.977 11.698 0 7.636-6.248 13.954-13.884 13.954-7.6 0-13.78-6.18-13.85-13.92 0-.243 6.978-11.905 7.186-12.044 2.048-1.007 4.2-1.666 6.664-1.666z"}),(0,e.jsx)("path",{stroke:"#fee8d9",d:"M319.27 214.504c2.326 0 4.79.868 6.7 1.91.242.138 6.768 11.037 6.768 11.35 0 7.392-6.04 13.536-13.468 13.536-7.393 0-13.397-5.97-13.433-13.502 0-.313 6.7-11.525 6.977-11.663 1.98-1.007 4.095-1.63 6.456-1.63z"}),(0,e.jsx)("path",{stroke:"#fee6d3",d:"M319.27 214.92c2.256 0 4.652.833 6.49 1.84.313.173 6.56 10.62 6.56 11.003 0 7.185-5.865 13.155-13.05 13.155-7.15 0-12.98-5.83-13.05-13.086 0-.417 6.456-11.177 6.768-11.35 1.943-.973 3.99-1.562 6.282-1.562z"}),(0,e.jsx)("path",{stroke:"#fee3d2",d:"M319.27 215.128c2.222 0 4.582.798 6.386 1.805.348.208 6.457 10.413 6.457 10.83 0 7.08-5.762 12.946-12.843 12.946-7.047 0-12.774-5.728-12.843-12.878 0-.452 6.317-10.97 6.664-11.177 1.91-.937 3.923-1.527 6.18-1.527z"}),(0,e.jsx)("path",{stroke:"#fee0cc",d:"M319.27 215.512c2.187 0 4.41.798 6.18 1.77.415.243 6.28 9.997 6.28 10.483 0 6.873-5.622 12.53-12.46 12.53s-12.39-5.553-12.426-12.46c0-.52 6.04-10.587 6.456-10.795 1.84-.937 3.783-1.528 5.97-1.528z"}),(0,e.jsx)("path",{stroke:"#fedec8",d:"M319.27 215.928c2.117 0 4.27.763 6.005 1.7.416.278 6.04 9.615 6.04 10.17 0 6.596-5.415 12.08-12.045 12.08-6.595 0-11.975-5.345-12.01-12.045 0-.59 5.76-10.205 6.212-10.448 1.77-.9 3.68-1.457 5.798-1.457z"}),(0,e.jsx)("path",{stroke:"#fddbc5",d:"M319.27 216.344c2.048 0 4.13.73 5.797 1.63.486.314 5.83 9.2 5.83 9.824 0 6.387-5.24 11.698-11.627 11.698s-11.56-5.207-11.593-11.662c0-.66 5.484-9.788 6.005-10.1 1.7-.868 3.54-1.39 5.588-1.39z"}),(0,e.jsx)("path",{stroke:"#fddbc2",d:"M319.27 216.52c2.013 0 4.06.73 5.692 1.63.52.314 5.727 8.992 5.727 9.652 0 6.282-5.137 11.488-11.42 11.488s-11.385-5.102-11.42-11.454c0-.694 5.38-9.615 5.937-9.927 1.665-.835 3.47-1.39 5.483-1.39z"}),(0,e.jsx)("path",{stroke:"#fdd9bf",d:"M319.27 216.728c1.978 0 3.992.694 5.588 1.597.556.347 5.624 8.782 5.624 9.477 0 6.178-5.033 11.28-11.212 11.28-6.18 0-11.176-4.998-11.21-11.245 0-.73 5.24-9.407 5.795-9.753 1.666-.834 3.436-1.355 5.415-1.355z"}),(0,e.jsx)("path",{stroke:"#fdd9bf",d:"M319.27 216.936c1.944 0 3.922.694 5.484 1.562.59.347 5.52 8.574 5.52 9.303 0 6.075-4.93 11.073-11.004 11.073-6.04 0-10.97-4.894-11.003-11.038 0-.763 5.103-9.198 5.692-9.545 1.63-.834 3.367-1.354 5.31-1.354z"}),(0,e.jsx)("path",{stroke:"#fdd6bc",d:"M319.27 217.144c1.91 0 3.854.66 5.38 1.527.625.383 5.415 8.366 5.415 9.13 0 5.935-4.86 10.864-10.795 10.864-5.936 0-10.76-4.824-10.795-10.83 0-.797 4.963-9.024 5.588-9.37 1.596-.834 3.297-1.32 5.207-1.32z"}),(0,e.jsx)("path",{stroke:"#fdd6b9",d:"M319.27 217.352c1.874 0 3.784.66 5.275 1.493.66.38 5.31 8.158 5.31 8.955 0 5.83-4.754 10.656-10.585 10.656-5.83 0-10.552-4.72-10.586-10.62 0-.834 4.79-8.818 5.484-9.2 1.56-.798 3.228-1.284 5.102-1.284z"}),(0,e.jsx)("path",{stroke:"#fdd4b8",d:"M319.27 217.56c1.84 0 3.715.624 5.206 1.458.66.416 5.207 7.95 5.207 8.782 0 5.727-4.686 10.482-10.413 10.482s-10.343-4.65-10.378-10.447c0-.868 4.65-8.643 5.345-9.025 1.56-.798 3.193-1.25 5.033-1.25z"}),(0,e.jsx)("path",{stroke:"#fdd4b6",d:"M319.27 217.736c1.805 0 3.645.66 5.102 1.457.695.417 5.102 7.74 5.102 8.61 0 5.622-4.58 10.273-10.204 10.273-5.623 0-10.17-4.548-10.17-10.24 0-.902 4.513-8.435 5.24-8.85 1.528-.764 3.126-1.25 4.93-1.25z"}),(0,e.jsx)("path",{stroke:"#fdd2b2",d:"M319.27 217.944c1.77 0 3.576.624 4.998 1.423.73.417 4.998 7.532 4.998 8.435 0 5.518-4.512 10.065-9.996 10.065s-9.962-4.477-9.997-10.03c0-.902 4.41-8.226 5.172-8.678 1.458-.73 3.055-1.216 4.825-1.216z"}),(0,e.jsx)("path",{stroke:"#fdd1b0",d:"M319.27 218.152c1.735 0 3.506.59 4.894 1.39.764.45 4.894 7.322 4.894 8.295 0 5.38-4.408 9.823-9.788 9.823s-9.753-4.374-9.788-9.823c0-.937 4.27-8.053 5.068-8.47 1.423-.763 2.985-1.215 4.72-1.215z"}),(0,e.jsx)("path",{stroke:"#fdd0b0",d:"M319.27 218.36c1.7 0 3.402.59 4.79 1.354.8.45 4.79 7.116 4.79 8.122 0 5.276-4.304 9.615-9.58 9.615s-9.545-4.27-9.58-9.614c0-.97 4.13-7.844 4.964-8.296 1.388-.73 2.915-1.18 4.616-1.18z"}),(0,e.jsx)("path",{stroke:"#fdd0ad",d:"M319.27 218.568c1.666 0 3.333.555 4.687 1.318.833.487 4.685 6.943 4.685 7.95 0 5.136-4.2 9.406-9.372 9.406s-9.337-4.166-9.37-9.407c0-1.006 3.99-7.636 4.824-8.122 1.388-.73 2.88-1.145 4.547-1.145z"}),(0,e.jsx)("path",{stroke:"#fdcaa6",d:"M319.27 219.16c1.562 0 3.124.52 4.41 1.25.866.52 4.338 6.317 4.338 7.427 0 4.825-3.922 8.817-8.748 8.817s-8.747-3.922-8.747-8.78c0-1.147 3.575-7.117 4.512-7.638 1.284-.66 2.672-1.076 4.235-1.076z"}),(0,e.jsx)("path",{stroke:"#fdcaa4",d:"M319.27 219.368c1.528 0 3.055.52 4.304 1.215.903.556 4.235 6.11 4.235 7.255 0 4.72-3.82 8.608-8.54 8.608s-8.538-3.818-8.573-8.574c0-1.18 3.47-6.907 4.408-7.462 1.284-.66 2.637-1.042 4.165-1.042z"}),(0,e.jsx)("path",{stroke:"#fdc8a4",d:"M319.27 219.576c1.493 0 2.985.486 4.2 1.18.937.555 4.166 5.9 4.166 7.08 0 4.618-3.75 8.4-8.366 8.4s-8.33-3.748-8.365-8.365c0-1.214 3.332-6.698 4.305-7.254 1.25-.658 2.567-1.04 4.06-1.04z"}),(0,e.jsx)("path",{stroke:"#fdc8a1",d:"M319.27 219.784c1.458 0 2.916.486 4.096 1.145.972.59 4.06 5.69 4.06 6.907 0 4.512-3.678 8.19-8.156 8.19s-8.123-3.643-8.158-8.156c0-1.25 3.194-6.525 4.2-7.08 1.215-.624 2.5-1.006 3.957-1.006z"}),(0,e.jsx)("path",{stroke:"#fdc39b",d:"M319.27 220.368c1.354 0 2.707.45 3.784 1.076 1.076.625 3.748 5.067 3.748 6.387 0 4.167-3.367 7.568-7.532 7.568a7.525 7.525 0 0 1-7.532-7.532c0-1.354 2.777-5.936 3.853-6.56 1.11-.59 2.326-.938 3.68-.938z"}),(0,e.jsx)("path",{stroke:"#fdc398",d:"M319.27 220.576c1.32 0 2.638.417 3.68 1.04 1.11.66 3.644 4.86 3.644 6.25 0 4.026-3.298 7.36-7.324 7.36-4.06 0-7.324-3.3-7.324-7.36 0-1.388 2.638-5.728 3.75-6.387 1.074-.557 2.255-.904 3.574-.904z"}),(0,e.jsx)("path",{stroke:"#fdc097",d:"M319.27 220.784c1.285 0 2.568.416 3.61 1.007 1.11.66 3.506 4.652 3.506 6.074 0 3.923-3.194 7.15-7.116 7.15s-7.116-3.192-7.116-7.15c0-1.422 2.464-5.553 3.645-6.213a7.26 7.26 0 0 1 3.47-.866z"}),(0,e.jsx)("path",{stroke:"#fdc095",d:"M319.27 221c1.25 0 2.5.38 3.506.972 1.146.694 3.4 4.478 3.4 5.9 0 3.82-3.087 6.943-6.906 6.943s-6.907-3.09-6.942-6.942c0-1.458 2.36-5.345 3.575-6.005a6.85 6.85 0 0 1 3.367-.868z"}),(0,e.jsx)("path",{stroke:"#fdbe92",d:"M319.27 221.168c1.215 0 2.395.416 3.402.972 1.18.694 3.297 4.27 3.297 5.727 0 3.714-2.985 6.735-6.7 6.735-3.714 0-6.7-3.02-6.734-6.735 0-1.492 2.222-5.136 3.436-5.83 1.007-.522 2.083-.87 3.298-.87z"}),(0,e.jsx)("path",{stroke:"#fdbe90",d:"M319.27 221.376c1.18 0 2.326.38 3.298.937 1.18.73 3.192 4.06 3.192 5.553 0 3.575-2.914 6.527-6.49 6.527a6.52 6.52 0 0 1-6.525-6.527c0-1.526 2.082-4.963 3.33-5.657.973-.522 2.015-.834 3.195-.834z"}),(0,e.jsx)("path",{stroke:"#fdbb8f",d:"M319.27 221.584c1.146 0 2.256.347 3.194.902 1.215.73 3.123 3.853 3.123 5.38 0 3.472-2.845 6.318-6.317 6.318a6.32 6.32 0 0 1-6.318-6.318c0-1.562 1.944-4.755 3.23-5.484.936-.485 1.942-.798 3.088-.798z"}),(0,e.jsx)("path",{stroke:"#fdbb8d",d:"M319.27 221.792c1.11 0 2.187.347 3.09.868 1.25.763 3.018 3.644 3.018 5.206 0 3.367-2.74 6.11-6.108 6.11a6.096 6.096 0 0 1-6.11-6.11c0-1.597 1.806-4.547 3.125-5.31a6.06 6.06 0 0 1 2.985-.764z"}),(0,e.jsx)("path",{stroke:"#fdb98a",d:"M319.27 222a5.84 5.84 0 0 1 2.985.833c1.285.763 2.916 3.436 2.916 5.032 0 3.263-2.637 5.936-5.9 5.936s-5.9-2.672-5.9-5.935c0-1.63 1.665-4.373 3.02-5.136a6 6 0 0 1 2.88-.73z"}),(0,e.jsx)("path",{stroke:"#fdb98a",d:"M319.27 222.208a5.8 5.8 0 0 1 2.88.798c1.32.798 2.812 3.23 2.812 4.86 0 3.16-2.568 5.727-5.692 5.727-3.16 0-5.692-2.568-5.692-5.727 0-1.666 1.527-4.166 2.88-4.93q1.25-.728 2.812-.728z"}),(0,e.jsx)("path",{stroke:"#fcb687",d:"M319.27 222.384c1.007 0 1.978.313 2.81.798 1.32.798 2.674 3.02 2.674 4.686 0 3.055-2.464 5.52-5.484 5.52-3.055 0-5.484-2.465-5.52-5.52 0-1.7 1.425-3.992 2.813-4.755.798-.45 1.7-.73 2.707-.73z"}),(0,e.jsx)("path",{stroke:"#fcb685",d:"M319.27 222.592c.972 0 1.91.278 2.707.763 1.354.833 2.568 2.812 2.568 4.512 0 2.95-2.36 5.31-5.275 5.31a5.31 5.31 0 0 1-5.31-5.31c0-1.735 1.284-3.783 2.707-4.58a5.03 5.03 0 0 1 2.603-.695z"}),(0,e.jsx)("path",{stroke:"#fcb485",d:"M319.27 222.8c.937 0 1.84.277 2.603.73 1.39.832 2.464 2.602 2.464 4.337 0 2.81-2.256 5.103-5.067 5.103-2.81 0-5.102-2.292-5.102-5.068 0-1.805 1.145-3.61 2.603-4.443a4.97 4.97 0 0 1 2.5-.66z"}),(0,e.jsx)("path",{stroke:"#fcb482",d:"M319.27 232.76a4.874 4.874 0 0 0 4.86-4.86c0-2.707-2.188-4.894-4.86-4.894a4.89 4.89 0 0 0-4.894 4.895c0 2.673 2.187 4.86 4.894 4.86z"})]}),(0,e.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#fff",strokeMiterlimit:2.613,strokeWidth:.104,d:"M319.31 232.8c2.672 0 4.86-2.187 4.86-4.894a4.875 4.875 0 0 0-4.86-4.86c-2.707 0-4.894 2.187-4.894 4.86a4.89 4.89 0 0 0 4.894 4.894z"}),(0,e.jsxs)("g",{stroke:"#000",strokeWidth:.13,children:[(0,e.jsx)("path",{fill:"none",strokeWidth:.104,d:"m320.35 223.112.552-2.6m-1.072 2.536.272-2.64m-.792 2.6v-2.64m-.488 2.68-.28-2.64m-.24 2.704-.56-2.6m.072 2.744-.832-2.536m.344 2.704L316.254 221m.624 2.632-1.352-2.288m.896 2.568-1.56-2.12m1.184 2.464-1.808-1.976m1.424 2.328-1.976-1.776m1.664 2.192-2.152-1.56m1.84 1.976-2.288-1.32m2.08 1.768-2.432-1.072m2.224 1.56-2.504-.832m2.36 1.32-2.568-.56m2.504 1.08-2.64-.28m2.6.8h-2.632m2.672.488-2.64.272m2.704.248-2.6.552m2.744-.072-2.536.84m2.712-.352-2.432 1.08m2.672-.624-2.816 1.736m3.088-1.288-5.76 4.096m6.08-3.712-6.144 5.448m6.488-5.072-5.072 5.664m5.488-5.344-3.856 5.168m4.272-4.856-4.024 6.976m4.48-6.768-2.224 5.064m2.704-4.856-2.256 6.976m2.744-6.84-.968 4.688m1.488-4.616-.696 7.216m1.704-7.216.28 2.632m.24-2.704 1.56 6.8m-1.072-6.936 1.32 4.024m-.84-4.2 3.096 6.696m-2.608-6.936 3.296 5.688m-2.88-5.968 4.76 6.248m-4.344-6.56 4.168 4.824m-3.816-5.168 6.176 5.616m-5.864-6.04 3.368 2.432m-3.056-2.848 2.288 1.32m-2.08-1.768 2.432 1.072m-2.224-1.56 2.496.832m-2.36-1.32 2.568.56m-2.496-1.08 2.64.28m-2.608-.8h2.64m-2.672-.488 2.64-.272m-2.712-.248 2.608-.552m-2.744.072 2.536-.832m-2.712.344 2.432-1.08m-2.64.592 2.296-1.32m-2.576.904 2.12-1.56m-2.464 1.144 1.976-1.768m-2.32 1.424 1.768-1.984m-2.184 1.632 1.56-2.112m-1.976 1.84 1.312-2.296m-1.768 2.088 1.08-2.432m-1.568 2.224.84-2.504m-2.36-3.96v-2.048m-2.296 2.296-.416-2.016m-1.8 2.712-.84-1.84m-1.176 3.016-1.216-1.664m-.52 3.192-1.528-1.352m.176 3.264-1.808-1.04m.832 3.152-1.944-.656m1.456 2.912-2.048-.208m2.048 2.536-2.048.208m2.536 2.088-1.976.624m22.176 1.528 1.776 1.04m-.84-3.16 1.944.624m-1.456-2.88 2.048.208m-2.048-2.536 2.048-.208m-2.536-2.08 1.984-.624m-2.92-1.496 1.776-1.04m-3.128-.832 1.528-1.392m-3.224-.168 1.176-1.672m-3.192.488.832-1.872m-3.056 1.144.416-1.976"}),(0,e.jsx)("path",{fill:"#e60000",fillRule:"evenodd",strokeMiterlimit:2.613,strokeWidth:.104,d:"M322.15 230.192s-.694-.382-1.11-.382-2.257-.104-2.986.104c-.416.14-.763.486-.763.486s.486.486 1.458.59c1.007.07 1.63 0 2.152-.174.59-.173 1.25-.624 1.25-.624z"}),(0,e.jsx)("path",{fill:"#e60000",fillRule:"evenodd",strokeMiterlimit:2.613,strokeWidth:.104,d:"M317.43 229.464s.07-1.354 1.007-3.055c0 0-.312.485-.486.902 0 0-.52.278-.833-.104-.31-.312-.138-.45.105-.938.207-.382.172-.763.45-1.006.243-.243.45-.278 1.11-.278s1.077.07 1.632.833c.486.658.764 1.283 1.007 1.63.556.868.556 1.91.556 1.91l.174.832s-.694-.382-1.11-.382-2.258-.104-2.986.104c-.416.14-.764.486-.764.486s-.277-.623.14-.936z"}),(0,e.jsx)("path",{fill:"none",strokeMiterlimit:2.613,strokeWidth:.104,d:"M317.43 229.464s.52-.313 2.29-.278c2.05.035 2.118.174 2.257.313"}),(0,e.jsx)("path",{fill:"#fc0",fillRule:"evenodd",strokeMiterlimit:2.613,strokeWidth:.104,d:"M319.198 237.104v-7.185s.243-.21.798 0v7.114s.174 5.45-.417 5.415c-.695 0-.382-1.25-.382-5.346z"})]}),(0,e.jsxs)("g",{fill:"#e60000",children:[(0,e.jsx)("path",{fillRule:"evenodd",d:"m311.774 231.064.14.278-1.39.59.21.485-.21.07c-.138-.313-.242-.416-.59-.347l-.103-.208 1.944-.868zm-1.496-.592a.6.6 0 0 1-.243-.38c-.07-.35.07-.73.52-.834.21-.07.73-.07.903.59.07.277.035.624-.417.798l-.067-.278c.242-.07.312-.277.242-.52-.07-.278-.312-.382-.59-.312s-.38.31-.346.555a.51.51 0 0 0 .31.347l.036.21-1.18.103-.242-1.076.277-.035.21.867.588-.035zm-.552-3.888c-.347 0-.486.243-.486.486-.034.208 0 .52.312.555.21 0 .278-.14.313-.243l.208-.624c.07-.277.277-.45.59-.416.52.034.624.52.59.902-.036.382-.175.556-.243.625-.21.172-.382.207-.59.172l.034-.277c.382.035.52-.278.556-.556.034-.208 0-.556-.313-.59-.243-.035-.313.07-.416.416l-.138.45c-.07.14-.174.452-.555.417-.347-.034-.66-.277-.624-.798.07-.763.52-.798.763-.798zm-.104-1.354.624.21.38-1.147.244.104-.382 1.11.695.244.417-1.248.242.07-.485 1.527-2.083-.66.486-1.528.278.104z"}),(0,e.jsx)("path",{d:"M311.048 222.024a.71.71 0 0 0-.425.325l-.475.824 1.825 1.15.175-.225-.8-.5.35-.576c.242-.417.077-.752-.2-.925a.57.57 0 0 0-.45-.076zm.125.325a.4.4 0 0 1 .15.074c.208.14.214.317.075.525l-.275.45-.6-.35.325-.5c.078-.13.184-.222.325-.2z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m313.578 222.142-.173.207-1.39-1.32-.52.522-.173-.174 1.215-1.284.21.173-.522.555zm.729-.625-1.284-1.736.208-.173 1.32 1.737zm-.035-2.291.312.59 1.076-.555.105.243-1.04.556.31.623 1.18-.59.105.21-1.423.763-1.007-1.944 1.423-.73.104.244zm4.03.59-.278-1.25c0-.068-.035-.312-.104-.52l-.208 1.91-.278.07-1.006-1.667c.034.207.104.484.14.52l.276 1.283-.277.035-.487-2.117.417-.07 1.007 1.668.208-1.944.416-.104.45 2.152z"}),(0,e.jsx)("path",{d:"m319.024 217.6-.1 2.175.925.025c.484.035.774-.228.774-.575.035-.38-.236-.48-.375-.55.242-.103.3-.31.3-.45.034-.312-.16-.565-.576-.6l-.96-.024zm.325.3.474.05c.313 0 .425.092.425.3-.036.243-.173.31-.45.275h-.5zm-.05.9.524.05c.208 0 .45.073.45.35 0 .208-.172.35-.45.35l-.55-.05.025-.7zm2.151-1-.575 2.125.275.075.225-.9.7.2c.347.103.31.3.275.475-.035.07-.135.386-.1.525l.35.1v-.025c-.07-.07-.06-.11-.025-.25l.05-.375c.104-.278.004-.38-.1-.45.14-.07.356-.113.425-.425.14-.45-.178-.646-.525-.75zm.275.375.625.225c.14.035.354.088.25.4-.07.278-.267.26-.475.225l-.6-.175z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m324.026 219.052-.347.555 1.04.626-.14.207-1.04-.59-.348.625 1.11.66-.102.21-1.39-.8 1.077-1.875 1.39.798-.14.244z"}),(0,e.jsx)("path",{d:"m326.648 220.648-1.65 1.375.55.7c.486.52 1.07.287 1.45-.025.486-.382.607-.95.225-1.4zm-.025.475.325.4c.243.278.207.578-.175.925-.38.313-.732.303-.975.025l-.325-.375z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m328.156 223.08-.625.31.556 1.042-.243.14-.52-1.076-.658.312.59 1.18-.244.104-.727-1.423 1.942-.973.73 1.423-.243.104zm-.766 3.888-.035-.278 1.493-.208-.07-.485.21-.035c.103.347.138.45.485.486l.034.207z"}),(0,e.jsx)("path",{d:"M328.072 227.624c-.103 0-.292-.008-.5.2a.86.86 0 0 0-.175.525c-.035.485.312.724.625.724.173.035.41-.023.55-.3.035.104.147.276.425.275.277.034.575-.14.575-.626.035-.486-.308-.675-.55-.675-.208 0-.355.09-.425.3-.07-.243-.247-.39-.525-.426zm0 .35c.174 0 .36.148.325.425 0 .207-.098.374-.375.374-.313 0-.35-.25-.35-.425 0-.313.227-.376.4-.376zm.95.1c.14 0 .31.072.275.35 0 .277-.17.35-.275.35a.41.41 0 0 1-.325-.4c0-.173.15-.3.325-.3"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"M328.71 229.536c.694.173.624.694.59.902-.104.347-.416.59-.798.487-.348-.07-.45-.348-.555-.73l-.07-.242c-.07-.312-.208-.416-.313-.45l-.278 1.145-.243-.07.348-1.423c.45.14.626.382.73.694l.07.31c.068.244.138.452.416.487.14.07.382 0 .45-.312.106-.382-.242-.486-.38-.52l.034-.28zm-2.112 2.08.138-.277 1.354.658.21-.45.207.068c-.14.347-.174.486.104.694l-.068.208z"})]}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeMiterlimit:2.613,strokeWidth:.243,d:"M319.306 202.252 282.998 263h72.648z"}),(0,e.jsxs)("g",{fill:"none",strokeMiterlimit:2.613,children:[(0,e.jsx)("path",{stroke:"#000",strokeWidth:.104,d:"M321.246 255.496c.937.243 2.083.382 3.228.07 1.562-.383 3.02-1.285 4.86-1.11 1.318.137 3.123 1.283 5.31 1.283 2.152 0 2.88-.765 4.755-1.147 1.318-.277 1.98-.138 3.4.173 1.632.313 2.465 1.25 5.207 1.043"}),(0,e.jsx)("path",{stroke:"#fff",strokeWidth:.382,d:"M293.238 258.104c1.214-.938 3.366-1.32 4.998-.938 2.153.452 3.09 1.007 5.38.972 1.702-.034 3.16-1.18 4.894-1.18 2.88 0 2.985.59 5.52 1.076a5.6 5.6 0 0 0 2.15 0 9.5 9.5 0 0 0 2.535-.868c.798-.416 2.81-.347 3.818-.242 1.805.172 2.533.867 2.915.97.972.244 2.083.384 3.228.07 1.562-.45 3.02-1.457 4.894-1.25 1.32.14 3.123 1.424 5.276 1.424s2.915-.868 4.756-1.284c1.354-.313 2.013-.14 3.436.174 1.597.38 2.464 1.422 5.206 1.18"}),(0,e.jsx)("path",{stroke:"#fff",strokeWidth:.278,d:"M289.142 256.056c1.215-.798 3.367-1.146 4.998-.833 2.153.417 3.09.937 5.38.902 1.7-.034 3.16-1.076 4.894-1.076 2.88 0 2.985.555 5.52.97.66.105 1.492.105 2.15 0 .938-.137 1.77-.45 2.535-.797.762-.347 2.81-.278 3.817-.208 1.805.173 2.533.764 2.915.868.972.208 2.083.347 3.228.07 1.562-.417 3.02-1.286 4.894-1.112 1.32.14 3.124 1.285 5.276 1.25 2.153 0 2.916-.763 4.756-1.145 1.354-.278 2.013-.104 3.436.174 1.597.346 2.464 1.283 5.206 1.04"}),(0,e.jsx)("path",{stroke:"#fff",strokeWidth:.486,d:"M285.39 261.992c1.215-1.007 3.367-1.423 5.033-1.04 2.118.52 3.055 1.144 5.346 1.11 1.7-.035 3.192-1.32 4.893-1.32 2.916 0 2.984.66 5.52 1.216a5.8 5.8 0 0 0 2.186 0 8.4 8.4 0 0 0 2.497-1.007c.8-.415 2.812-.346 3.853-.242 1.77.208 2.5.937 2.88 1.076.973.243 2.084.416 3.263.07 1.563-.52 3.02-1.597 4.86-1.39 1.32.174 3.124 1.597 5.31 1.597 2.118 0 2.882-.97 4.72-1.456 1.355-.347 2.015-.14 3.437.208 1.632.416 2.464 1.597 5.207 1.32"}),(0,e.jsx)("path",{stroke:"#fff",strokeWidth:.278,d:"M286.366 258.584c1.25-.833 3.402-1.146 5.033-.833 2.15.417 3.088.903 5.38.87.763 0 1.458-.21 2.187-.453"}),(0,e.jsx)("path",{stroke:"#000",strokeWidth:.243,d:"M297.366 255.048c.347-.104 1.353-.59 2.81-.59 2.917 0 1.078.035 3.61.486.66.104 2.5.14 3.02-.382m25.416 8.23c.937-.174 1.736-.452 2.534-.8.763-.346 2.776-.31 3.818-.207 1.805.174 2.498.764 2.915.833.97.244 2.082.382 3.227.07 1.562-.382 3.02-1.285 4.894-1.11 1.32.138 3.125 1.284 5.277 1.284"}),(0,e.jsx)("path",{stroke:"#fff",strokeWidth:.278,d:"M336.694 254.768c2.153 0 2.88-.763 4.756-1.146 1.32-.277 1.978-.104 3.4.174 1.632.313 2.465 1.285 5.207 1.04"}),(0,e.jsx)("path",{stroke:"#000",strokeWidth:.104,d:"M285.494 262.2c1.25-.798 3.4-1.146 5.033-.833 2.152.417 3.09.937 5.38.902 1.7-.035 3.16-1.077 4.894-1.077 2.882 0 2.986.556 5.52.972a7.5 7.5 0 0 0 2.152 0c.937-.14 1.735-.45 2.533-.798.764-.347 2.777-.278 3.818-.174 1.805.14 2.5.73 2.915.833"}),(0,e.jsx)("path",{stroke:"#000",strokeWidth:.486,d:"M290.078 259.56c1.25-.833 3.4-1.146 5.032-.833 2.153.417 3.09.902 5.346.868 1.735-.035 3.193-1.076 4.894-1.042 2.916 0 3.02.52 5.554.972a7.4 7.4 0 0 0 2.152 0c.937-.173 1.735-.45 2.533-.798.763-.347 2.776-.313 3.818-.208 1.77.172 2.498.763 2.915.832.937.243 2.083.382 3.23.07 1.56-.382 3.018-1.285 4.893-1.11 1.422.137 3.227 1.283 5.275 1.283 2.154 0 2.917-.764 4.756-1.146 1.32-.28 1.98-.14 3.437.173 1.596.312 2.464 1.25 5.17 1.006"})]}),(0,e.jsxs)("g",{fill:"#fc0",fillRule:"evenodd",stroke:"#000",strokeWidth:.208,children:[(0,e.jsx)("path",{d:"M291.054 249.456c.347.07 1.18-.59 1.424-.764.346-.21.52-.73.798-1.007.277-.313 1.11-.694 1.492-.937 1.666-1.04 2.43-1.632 3.575-3.16 1.562-2.15 3.402-3.92 5.692-5.205.73-.417 1.84-.278 2.638.07.242.103.555.38.833.59.972.762 2.29 1.318 3.887 1.804 1.527.45 1.875 1.458 3.09 2.534.59.52 1.25.973 1.978 1.32.07.034.243.312.313.347.694.52 1.458.938 2.048 1.458a67 67 0 0 1 3.194 3.09c.173.172.243.52.417.658.8.764 1.563 1.563 2.534 2.014.972.486 1.84 1.11 2.742 1.666-9.234.348-17.737-.243-27.004.035-.243.035-.313 0-1.7 0-.695-.035-1.112.035-1.806.035-2.812-.035-5.484-.035-8.782-.07l2.64-4.477z"}),(0,e.jsx)("path",{d:"M327.326 253.696c-.763-.486-1.528-1.007-2.36-1.424-.973-.45-1.737-1.25-2.534-2.013-.174-.14-.243-.487-.417-.66a67 67 0 0 0-3.193-3.09c-.59-.52-1.354-.937-2.048-1.458-.07-.034-.242-.312-.312-.347a8.5 8.5 0 0 1-1.978-1.318c-.798-.73-1.215-1.39-1.874-1.91l.034-.035a7.5 7.5 0 0 1 1.25-.764c.59-.346 1.527-.242 2.187.07.21.07.487.278.695.45.798.66 1.91 1.112 3.228 1.528 1.285.383 1.598 1.215 2.603 2.083.487.45 1.007.833 1.632 1.11.035.036.173.243.243.313.59.417 1.216.764 1.737 1.215.902.833 1.77 1.666 2.638 2.568.14.14.173.417.347.556.66.624 1.318 1.284 2.117 1.666s1.492.903 2.256 1.354c-2.083.104-4.13.104-6.18.104h-.07z"}),(0,e.jsx)("path",{d:"M319.094 242.448c.277.07.59.174.902.278 1.285.382 1.598 1.215 2.603 2.083.486.45 1.006.832 1.63 1.11.036.035.174.243.244.312.59.417 1.215.764 1.736 1.215.902.834 1.77 1.667 2.638 2.568.14.14.173.417.347.556.66.626 1.32 1.286 2.117 1.667.694.313 1.285.764 1.91 1.147 1.7 0 3.4-.035 5.172-.105-.695-.418-1.32-.904-2.083-1.25-.73-.348-1.284-.94-1.91-1.528-.138-.104-.173-.348-.31-.487-.8-.833-1.598-1.56-2.43-2.326-.452-.417-1.008-.73-1.528-1.11-.07-.036-.208-.245-.243-.28a6.2 6.2 0 0 1-1.494-1.006c-.902-.798-1.18-1.562-2.36-1.91-1.18-.346-2.188-.798-2.915-1.353-.208-.173-.45-.38-.625-.45-.625-.28-1.458-.383-2.013-.07-.486.28-.972.59-1.388.938z"}),(0,e.jsx)("path",{d:"M327.566 244.424c.243.277.486.555.833.868.45.417.936.73 1.492 1.006.035.035.174.243.243.278.52.382 1.076.694 1.527 1.11.834.765 1.632 1.494 2.43 2.327.138.14.173.382.312.486.625.59 1.18 1.18 1.91 1.527.485.242.902.52 1.354.798h-.035c2.013 0 4.026 0 6.075-.07-.556-.347-1.043-.728-1.667-1.006-.59-.314-1.04-.8-1.562-1.25-.103-.105-.138-.28-.243-.418a94 94 0 0 0-1.944-1.874c-.38-.347-.832-.59-1.248-.903-.07-.035-.174-.173-.21-.208-.45-.208-.832-.486-1.214-.8-.73-.658-.937-1.283-1.874-1.56-.973-.313-1.806-.626-2.396-1.112-.173-.138-.347-.277-.486-.347-.52-.208-1.18-.312-1.632-.07a9.5 9.5 0 0 0-1.666 1.18v.036h.002z"}),(0,e.jsx)("path",{d:"M343.294 252.48a7.4 7.4 0 0 0-1.25-.73c-.59-.31-1.04-.797-1.562-1.248-.104-.105-.138-.278-.243-.417-.66-.66-1.285-1.25-1.945-1.875-.38-.347-.833-.59-1.25-.903-.07-.035-.174-.173-.208-.207-.45-.21-.833-.487-1.215-.8-.625-.555-.868-1.076-1.493-1.423l.033.035c.313-.243.66-.486 1.008-.66.417-.243.973-.138 1.423.035.105.035.278.21.417.313.52.38 1.18.694 2.05.937.797.242.97.763 1.595 1.32.313.277.66.52 1.042.693.035.035.104.174.173.21.348.242.764.45 1.077.763.555.52 1.11 1.04 1.666 1.596.104.104.104.277.21.347.416.382.832.798 1.318 1.04.52.28.973.592 1.458.87-1.457.068-2.88.068-4.303.068z"})]}),(0,e.jsx)("path",{fill:"none",stroke:"#00633b",strokeWidth:.104,d:"M303.166 238.976c.45-.07.242-.173.66.104m-1.492.448c.486-.07.66-.382 1.007.035m-1.463.285c.208 0 .347-.243 1.007.138m-1.487.414c.417-.104.66-.07 1.076.07m-1.636.346c.486-.14.694.208 1.215.104m-1.807.488c.312 0 .417-.104.694 0 .347.104.277.035.624.07m-1.974.554c.347 0 .45-.07.763-.035.416.07.313.105.73.035m-1.877.52c.694-.07.902-.035 1.388.14m-2.324 1.14c.59-.174.868-.174 1.39.035m-11.038 9.893c1.91-.313 4.165.035 6.074-.243m3.854-10.309c.486-.174.38-.104.868-.07.486.07.694.14.833.07m-2.469 1.112c.486-.243 1.076-.104 1.562.035m-.306.485c-.52-.14-1.076-.035-1.63 0m1.214.56c-.556-.174-1.146-.243-1.7-.07m-.772.486c.694 0 1.354-.174 2.048.07m-2.632.482c.73-.243 1.458-.035 2.222.035m-2.918.381c.763-.035 1.492-.035 2.256-.07.105 0 .348-.104.486.07m-.246.416c-1.146.243-2.29.07-3.437.104m2.813.488c-.382.035-.972.174-1.493.14-.105-.036-.21-.105-.313-.105-.59-.035-1.18-.035-1.735.173m-.243.416a1 1 0 0 1 .763-.104c.73.104 1.424 0 2.12.173.173.07.346.173.554.173m-3.853.038c.52 0 1.04-.07 1.562.035.66.174 1.284.313 1.978.348h-.07m-3.958.001c.555 0 1.076.104 1.632.208.73.14 1.457-.07 2.152.14m-4.44-.004c.73.312 1.493.035 2.256.174.73.138 1.39.103 2.083.242m-4.827.136c1.11.035 2.222 0 3.367.208.312.07.798.21 1.215.14m-4.958.14c1.076.208 2.187.035 3.262.313.487.104 1.007.207 1.528.207h-.07m-5.176.312c.103-.035.242-.104.347-.104.867 0 1.7.14 2.603.035.694-.035 1.457-.105 2.152.138h-.07m-5.416.491c1.735-.174 3.506.07 5.242 0m-5.554.52c1.84.208 3.68.035 5.484.174m-5.756.378c.798.174 1.597-.07 2.395.104.59.104 1.11.208 1.702.104.52-.14 1.006.035 1.492-.034m7.427-7.598h.174m-.35.208c.07.035.174-.104.208.035m-.416.245h.38m-.556.24h.486m-.798.312c.278.035.52.07.798.07h-.07m-1 .346c.312-.104.66 0 .972-.104h-.07m-1.318.592h1.32-.07m-1.466.312c.486 0 .937-.07 1.39.035h-.036m-1.626.413c.52-.07 1.076 0 1.632.07m-1.944.418c.347-.035.624.174.972.243.278.07.52 0 .763-.036m-1.839.177c.52.174 1.076.208 1.596.243m-1.908.173c.45-.035.868.07 1.32.208.207.07.415.034.59.034h-.036m-2.466.414c.556-.243 1.215-.07 1.805.104.208.07.417-.034.66-.034h-.07m-2.467.346c.66-.208 1.354-.208 1.98.07.103.034.242 0 .346 0m-2.742.418c.868.174 1.77-.103 2.638.14m-2.878.244c.694.278 1.458 0 2.222.208.242.07.485.07.728-.034m-3.438.346c.313-.104.625-.174.937-.104.832.208 1.596.14 2.36.243m-3.681.413c.174-.035.347.104.486.07 1.076-.174 2.152 0 3.193-.07m-3.951.416c.833.312 1.7 0 2.603.243.346.105.797.14 1.18 0m-4.095.349c1.285.035 2.5-.035 3.992.14m3.296-7.5c.14-.035.243.104.382.07m-.558.314c.174-.035.313-.104.486-.07m-.622.414c.242.035.45-.035.694.07m-.87.418c.277 0 .59 0 .868.07m-1.108.418c.38-.104.73.035 1.11-.07m-1.15.414c.347.14.694.035 1.076.07v-.07m-1.284.552c.347-.035.66-.07.972.07.104.034.243 0 .382-.07m-1.386.488c.45-.174.902.104 1.39 0m-1.598.592c.52-.035 1.007.07 1.528 0m-1.704.448c.208-.07.45-.208.66-.104.31.14.693.07 1.04.104m-1.804.528c.59-.208 1.215.14 1.805-.174m-1.877.726c.277-.07.555-.07.868.035.312.07.694.034 1.076-.035m-2.112.52c.694-.14 1.424 0 2.152-.035l-.034.035m-2.534.488c.902-.07 1.84-.174 2.742-.174m-2.638.726c1.007-.174 2.048-.104 3.09-.14m-3.266.7c1.007.14 1.215-.07 2.222-.103.173 0 1.04-.175 1.215-.21.14-.034.45 0 .59 0m-4.027.585c1.528-.14 3.09.14 4.65-.243m-11.282.075h1.214m4.69.168c.14.07.312-.07.416.07m5.384-.174c1.25-.14 2.534.243 3.783 0m-4.415-.416c.798-.242 1.528-.07 2.29.07.07 0 .07.173.14.208.694.104 1.354 0 2.048-.035m-8.918-.307h-.798m-4.162-.176c-.555.035-1.11.035-1.666.104m12.114-11.8h.243m-.139.344c.104.035.208 0 .312-.035m-.248.595c.035-.035.035-.104.07-.104.103-.035.242-.035.346-.035m-.272.483c.174-.104.382-.035.59-.035m.066.347c-.208-.035-.382.035-.556.104m.244.488a.77.77 0 0 1 .555-.104m.245.416h-.798m.238.416c.278 0 .555.07.763-.104m.213.592c-.313 0-.59 0-.868.07m.204.514c.312.035.624-.035.937-.174m.071.318c-.277.14-.59.174-.902.243m.174.517c.382-.208.833-.035 1.215-.173m.105.485c-.312 0-.624-.07-.937.035-.104.034-.174.104-.313.104m.242.765c.243-.104.486-.277.763-.242.034-.174.208 0 .277-.105.07-.035.208 0 .347 0m.173.523c-.45-.035-.937.07-1.388.14m.14.588c.52-.208 1.04-.208 1.596-.278m-1.556.934c.59-.14 1.215-.104 1.77-.347m.414.419c-.66.104-1.32 0-1.944.313m.136.591c.104.035.174.104.278.07.625-.244 1.25-.45 1.874-.382m.176.448c-.624.347-1.354.208-2.048.243-.07 0-.138.07-.242.105m.242.42c.763-.104 1.493-.14 2.256-.243m.488.483c-.624.104-1.215-.035-1.805.104-.277.035-.52.14-.798.21m.099.486c.104 0 .242.035.312-.035.763-.45 1.63-.31 2.464-.346m.248.485c-.694 0-1.424-.174-2.117.07-.242.103-.485.242-.763.242m.24.52c.38-.07.73-.243 1.076-.313.798-.105 1.596-.035 2.395-.035m.001.42c-.452-.104-.937-.14-1.354 0-.694.174-1.32.347-2.013.38m.383.348c.556-.07 1.076-.242 1.632-.382.45-.104.902-.034 1.354-.034m-2.954.728c.833-.14 1.667 0 2.5-.278.277-.104.59.07.9.035m0-.317c1.39.103 2.777-.174 4.13.138m-3.85.278c.173.035.312-.104.416-.104q1.718 0 3.436.104m-.412-2.944h.174m-.11.376c.14.07.277-.174.416 0m-.312.416h.73m-.522.592c.243-.277.59 0 .833-.173m-.657.733c.313-.278.763.035 1.076-.243m-1.004.659c.45-.14.937.034 1.388-.243m-1.22.659c.694-.312 1.492.14 2.152-.347m-2.08.691c.868-.278 1.77 0 2.638-.035m.554.003c1.528-.07 3.09-.104 4.616 0m-5.272-.56c1.354.138 3.4 0 5.103.138m-12.599-10.586c.103 0 1.04-.174 1.11-.174m-.798.422c.278.035.937.035 1.18-.174m-.732.622c0-.035.798-.173.833-.173.104-.036.243 0 .38-.036m-.861.449c.138-.104 1.25-.035 1.457-.07m.271.318c-.208 0-1.11.035-1.25.14m.77.484c.14-.103.798-.208 1.04-.208m.52.384c-.278 0-.868.07-1.18.07m.588.45c.312-.035.868-.104 1.04-.243m.56.515c-.313 0-.73.035-1.146.07m.522.418c.38 0 .937 0 1.215-.104m.417.24c-.243.14-.73.174-1.04.243m.512.493c.313-.208.868-.07 1.25-.208m.422.448c-.38 0-.763-.035-1.04.035-.106.034-.14.104-.314.104m2.602.797c-.556-.035-1.007.07-1.493.14m.485.524c.486-.208 1.076-.174 1.632-.278m-.416 1.734c.104.035.624-.07.73-.104.832-.104.97-.278 1.735-.21m.455.346c-1.007.174-1.39.208-2.153.278-.104 0-.347.07-.416.104m.449.314c.764-.138 1.875-.103 2.638-.208m.834.416c-.624.104-1.353 0-1.944.14-.278.034-.798.068-1.076.138m.724.482c.104 0 .243 0 .313-.035.625-.418 1.632-.348 2.533-.348m.562.423c-.868 0-1.216.035-1.875.103-.243.035-.59.174-.903.174m.73.451c.798-.14 2.326-.313 1.424-.243.832-.07.97-.07 1.874-.07m.238.345c-.555-.07-1.146-.07-1.527.035-.347.103-.243.207-1.423.242m.486.243c.556-.07.625-.035 1.146-.174.416-.104.972-.07 1.493-.07m-2.359.452c.868-.104.972-.07 1.875-.035.243 0 .452 0 .765-.034m-16.144-10.931c.208-.104.347-.174.73-.14-.106-.138.172 0 .242-.068 0-.07.207-.035.346-.035m-1.734-.173c.208-.104.416-.104.763-.07-.105-.173.207 0 .242-.104.035-.034.243 0 .382 0m5.517 6.006c.243-.104.208-.174.555-.104-.103-.174.382 0 .417-.104.035-.07.417-.035.555-.035m-.063 1.627c.555-.14 1.25-.14 1.735-.382m.833.63c-.66.103-1.63.034-2.152.312m-7.92-8.368c-.624-.035-.73.174-1.18.174m8.02 1.562c.104 0 .798-.14.902-.14m-.622.42c.416-.103.73 0 .972-.173m-.628.517c0-.035.66-.104.694-.104.104-.035.243-.035.347-.035m-.689.451c.14-.104 1.042-.07 1.25-.104m.238.312c-.208-.035-1.04.104-1.18.174m.452.386c.14-.104 1.04-.208 1.25-.174m.486.342c-.278 0-1.04.07-1.32.104m.448.352c.278 0 1.146-.07 1.285-.208m.491.48c-.278 0-.764.035-1.146.07m.346.386c.347 0 1.11 0 1.354-.14m.382.244c-.208.14-.868.208-1.146.278m.626.378c.278-.174.833-.07 1.18-.174m.38.422c-.313 0-.695-.035-.937.035-.104.033-.14.103-.278.068m2.359.761c-.486-.035-.902.07-1.354.14m.45.484c.45-.208 1.007-.208 1.527-.278m-.311 1.63c.14.035.486-.104.555-.104.8-.104.903-.278 1.632-.243m.381.347c-.903.174-1.25.208-1.945.243-.103 0-.345.07-.415.104m.416.285c.695-.104 1.736-.104 2.43-.174m.77.382c-.556.07-1.215 0-1.77.104-.244.07-.764.07-1.008.14m.69.444c.104 0 .208 0 .278-.035.556-.382 1.493-.312 2.36-.312m.49.387c-.798 0-1.146.035-1.736.104-.382.035-.833.174-.937.174m.585.378c.73-.14 2.327-.278 1.493-.208.764-.07.903-.07 1.736-.07m.211.35c-.52-.07-1.007-.104-1.39 0-.277.07-.38.208-1.526.243m.42.245c.52-.07.833-.07 1.285-.174.38-.104.902-.07 1.388-.07m-2.153.516c.73-.103.834-.173 1.7-.138.245 0 .417-.035.695-.07M320.694 243c.208-.104.138-.174.45-.14.244-.068.418.036.452-.068 0-.035.208-.035.312-.035m-1.702-.029c.208-.104.243-.208.556-.174.312-.034.45 0 .485-.104.035-.035.21 0 .348 0m5.171 5.518c.208-.104.104-.14.417-.104-.07-.14.347 0 .382-.07s.382-.034.52-.034m-.063 1.488c.52-.14 1.146-.14 1.596-.313m.764.561c-.59.104-1.354-.035-1.806.208m-7.434-7.64c-.59-.035-1.076.242-1.423.486m8.543 2.57c.07 0 .903-.14.938-.14m-.658.348c.313-.07.763-.035.937-.174m-.625.414c-.035 0 .66-.104.694-.104.07-.035.174 0 .278 0m-.7.352c.103-.07.972-.07 1.11-.104m.21.24c-.174-.035-.834.07-.938.138m.49.278c.104-.07.66-.14.833-.14m.343.284c-.174 0-.798.07-1.007.07m.383.274c.208 0 .833-.07.972-.174m.38.382c-.243 0-.624.035-.902.035m.278.309c.278 0 .833 0 1.04-.104m.32.208c-.174.104-.695.14-.903.174m.311.314c.208-.14.834-.035 1.076-.104m.308.28c-.278 0-.555-.035-.763.035-.07.035-.14.035-.244.035m1.879.626c-.38-.035-.868.104-1.18.14m.38.276c.313-.14.868-.104 1.25-.174m-.386 1.214c.07.035.52-.035.59-.035.59-.07.695-.208 1.25-.173m.32.272c-.695.104-.973.14-1.528.174-.07 0-.312.034-.382.034m.278.248c.555-.104 1.458-.07 2.013-.14m.555.316c-.417.07-.937 0-1.354.07a7 7 0 0 1-.868.104m.446.378c.07 0 .556-.14.59-.14.695-.068.938-.138 1.598-.173m.38.313c-.624 0-.868.035-1.32.07-.312.034-.832.208-.902.208m.526.274c.45-.103 1.805-.242 1.25-.208.59-.034.694-.034 1.318-.07m.176.278c-.38-.034-.763-.07-1.076 0-.174.07-.38.14-1.25.208m.342.176c.416-.07.694-.035 1.04-.14.314-.103.73-.034 1.077-.068m-1.765.416c.555-.07.763-.14 1.423-.104.173 0 .312 0 .555-.035m-11.562-7.701c.174-.07.243-.174.486-.14.174-.034.313.036.313-.034.035-.034.174-.034.278-.034m-1.357-.04c.174-.07.208-.14.45-.14.244 0 .348 0 .383-.034 0-.07.173-.034.242-.034m3.861 4.232c.174-.07.208-.104.486-.07-.105-.104.243 0 .277-.068 0-.036.278 0 .383 0m-.042 1.146c.38-.103.868-.103 1.215-.277m.593.453c-.45.07-1.11-.035-1.493.174m-5.619-5.87c-.452-.035-.555.14-.833.347m7.041.909c.07 0 .798-.104.868-.104m-.62.344c.277-.07.73-.07.868-.174m-.596.382.66-.104c.07-.035.174 0 .243 0m-.591.448c.104-.07.834-.208.973-.208m.211.208c-.174-.035-.868.104-.972.174m.38.25c.07-.07.763-.174.937-.14m.351.244c-.208 0-.764.035-1.04.104m.344.208c.208 0 .868-.07.972-.174m.38.342c-.208 0-.73.07-1.007.104m.415.248c.242 0 .798 0 .972-.104m.284.168c-.174.104-.764.104-.972.174m.444.314c.174-.14.73-.07.972-.14m.284.284c-.243 0-.486 0-.694.035-.035.034-.208.034-.278.034m1.772.555c-.347-.035-.764.104-1.077.14m.277.308c.313-.14.868-.14 1.25-.208m-.386 1.144c.07 0 .486-.07.555-.07.555-.07.658-.173 1.145-.138m.276.24c-.625.104-.902.14-1.39.174-.068 0-.31 0-.346.034m.216.28c.52-.07 1.39-.14 1.874-.174m.55.278c-.416.035-.902 0-1.285.07-.313.068-.764.068-.8.103m.421.315c.07 0 .52-.104.556-.104.625-.07.868-.14 1.493-.174m.343.278c-.59.035-.8.035-1.215.07-.313.034-.764.208-.87.208m.493.242c.452-.07 1.7-.243 1.18-.174.52-.07.625-.07 1.215-.07m.173.244c-.382-.035-.764-.07-1.007 0-.172.07-.346.14-1.144.174m.311.17c.347-.035.625-.035.972-.138.278-.07.625-.035.973-.035m-1.665.381c.556-.07.73-.104 1.354-.104.174 0 .278 0 .486-.035m-10.624-7.109c.14-.07.174-.14.417-.104.175-.035.28 0 .314-.035 0-.035.138-.035.242-.035m-1.253-.034c.174-.07.174-.14.417-.104.21-.035.314 0 .348-.07 0-.034.138-.034.243-.034m3.544 3.92c.14-.07.208-.07.416-.07-.07-.103.243 0 .278-.034.035-.035.278-.035.347-.035m-.073 1.043c.347-.07.868-.07 1.18-.208m.556.376c-.45.07-1.146-.035-1.492.14m-5.068-5.38c-.417-.035-.556.14-.8.312"}),(0,e.jsxs)("g",{fill:"#fc0",children:[(0,e.jsx)("path",{d:"m287.624 298.6.6 4.448c-1.176-.384-2.256.304-2.776 1.28-.832 1.664-.096 2.92 1.504 3.72l2.152 1.104 4-7.776-1.6-.8-1.6 3.12h-.032l-.344-4.12zm.6 5.872c.256.024.536.136.824.28l.2.096-1.12 2.128-.2-.104c-.728-.376-1.216-.832-.8-1.696.28-.544.664-.736 1.096-.704"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m280.673 302.668 1.076-1.596-2.362-1.563.834-1.217 2.325 1.563 1.318-1.944-2.43-1.63.834-1.248 3.886 2.638-4.86 7.22-3.886-2.604.833-1.216z"}),(0,e.jsx)("path",{d:"m279.072 292.496-2.12 2.456-.68-.552c-1.384-1.216-2.784-1.16-4 .224-1.28 1.528-.808 2.864.656 4.08l1.824 1.568 5.648-6.624zm-4.424 2.832c.304.024.64.232 1 .544l.28.2-1.576 1.832-.256-.208c-.656-.552-1.032-1.072-.368-1.872.328-.384.616-.528.92-.496"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m268.35 294.616-1.18-1.32 3.61-3.296c.797-.695 1.874-1.806.867-2.916s-2.222-.174-3.02.556l-3.61 3.262-1.18-1.284 3.853-3.506c1.597-1.423 3.402-1.805 5.033-.035 1.63 1.805 1.076 3.61-.52 5.034z"}),(0,e.jsx)("path",{d:"M265.152 278.128c-.496-.04-1.016.08-1.552.448-.76.552-1.352 1.544-.896 2.552-.632-.28-1.336-.088-1.856.296-1.424.976-1.392 2.184-.424 3.576l1.248 1.8 7.2-4.928-1.576-2.272c-.584-.848-1.32-1.408-2.144-1.472m-.024 1.872c.52-.048.904.376 1.272.896l.224.28-1.848 1.248-.152-.2c-.448-.656-.92-1.432-.048-2.024.208-.136.376-.184.552-.2m-2.552 2.528c.32-.008.592.208.848.6l.128.168-1.704 1.176-.12-.168c-.384-.56-.496-1.08.2-1.528.248-.184.456-.248.648-.248"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m264.6 275.315-7.67 4.17-.867-1.565 6.386-3.432-1.18-2.225 1.283-.695zm-11.453-3.499 7.984-3.507.695 1.63-7.984 3.506zm-.973-9.552c-.416.625-.486 1.458-.277 2.187.555 1.598 2.256 2.05 3.714 1.598 1.39-.45 2.465-1.874 1.945-3.436-.208-.728-.833-1.32-1.493-1.632l1.91-.624c.52.555.937 1.11 1.145 1.805.798 2.43-.624 4.86-2.916 5.624-2.36.764-4.997-.278-5.83-2.81a4.7 4.7 0 0 1-.138-2.084l1.942-.626z"}),(0,e.jsx)("path",{d:"m256.352 250.6-8.2 4.976.248 1.352 9.424 1.896-.352-1.824-1.92-.424-.576-3.104 1.728-1.024zm-2.656 3.624.376 2.104-3.296-.4v-.056zm-1.944-19.92c-2.256.008-4.032 1.576-4.224 4.048l-.2 2.496 8.672.704.2-2.504c.208-2.568-1.536-4.512-4-4.72-.152-.016-.296-.032-.448-.024m-.328 2c.192-.016.392-.024.6 0 1.56.104 2.576.968 2.4 2.944v.256l-5.224-.432.024-.248c.12-1.608.872-2.432 2.2-2.52"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m250.197 229.5 1.874.382.59-2.742 1.424.312-.555 2.743 2.324.485.59-2.846 1.424.278-.937 4.616-8.538-1.805.937-4.58 1.456.31zm3.333-11.454 1.77.694 1.04-2.638 1.39.555-1.042 2.64 2.186.83 1.076-2.707 1.39.522-1.702 4.373-8.157-3.158 1.737-4.374 1.388.52zm8.816-2.222-7.775-3.992.8-1.56 6.455 3.296 1.145-2.22 1.32.658zm1.908-15.928c-.556.035-1.04.208-1.39.66-.346.485-.346 1.145.105 1.492 1.18.868 2.846-2.395 5.205-.625 1.39 1.04 1.7 2.672.59 4.165-.73 1.007-1.84 1.32-3.02 1.215l-.173-1.562c.694.21 1.527.07 1.978-.555.45-.555.243-1.284-.312-1.666-.728-.556-1.423 0-2.082.415-1.042.66-2.014 1.007-3.09.21-1.18-.87-1.458-2.465-.555-3.68.487-.66 1.46-1.32 2.258-1.424z"}),(0,e.jsx)("path",{d:"m268.152 192.248-.976.976 3.976 8.776 1.296-1.352-.8-1.8 2.176-2.248 1.824.752 1.304-1.352zm1.376 2.48 2.776 1.272-1.352 1.424-1.448-2.672z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m278.277 194.998-5.484-6.804 1.39-1.11 4.546 5.623 1.943-1.562.937 1.145zm4.513-13.954 1.63-1.006 1.806 9.44-.868.557-7.74-5.693 1.596-1.042 5 3.82.033-.036z"}),(0,e.jsx)("path",{d:"m290.6 176.8-1.248.6.448 9.624 1.704-.776-.08-2.024 2.848-1.272 1.4 1.4 1.728-.776zm.352 2.848 2.152 2.224-1.808.8-.344-2.976zm9.376-5.872c-.448 0-.928.08-1.4.224l-2.4.704 2.448 8.344 2.376-.672c2.496-.728 3.72-3.064 3.024-5.424-.568-1.952-2.12-3.192-4.048-3.176m-.056 1.824c1.088.04 1.816.672 2.176 1.928.456 1.488-.016 2.72-1.92 3.272l-.256.096-1.448-5.024.248-.096c.448-.12.84-.192 1.2-.176m10.528-4.352c-.16.008-.336.032-.496.048-2.608.352-4.152 2.696-3.808 5.128.312 2.464 2.424 4.296 5.032 3.952 2.632-.352 4.16-2.664 3.848-5.128-.296-2.28-2.168-4.072-4.576-4m-.2 1.952c1.384-.176 2.552.968 2.728 2.248.136 1.184-.696 2.816-2.056 3.024-1.352.176-2.6-1.216-2.776-2.4-.136-1.28.68-2.696 2.104-2.872m7.424-2.352-.096 8.728h1.768l.032-3.504h.024l2.152 3.552 2.144.024-2.52-3.696c1.216-.176 1.872-1.288 1.872-2.4.032-1.88-1.208-2.64-2.976-2.68zm1.8 1.552h.248c.832 0 1.488.2 1.456 1.176 0 .968-.624 1.224-1.528 1.224h-.2z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m336.556 174.345-.447 1.874 2.704.66-.348 1.457-2.746-.694-.554 2.29 2.845.73-.38 1.423-4.548-1.146 2.125-8.47 4.54 1.146-.346 1.458zm6.634.035 1.174.45 2.16 7.464h.032l2.183-5.45 1.63.66-3.293 8.26-1.183-.485-2.184-7.43h-.04l-2.185 5.485-1.63-.625zm9.33 14.197 4.656-7.394 1.49.938-3.856 6.144 2.118 1.32-.794 1.25z"}),(0,e.jsx)("path",{d:"m365.376 186.6-8.4 4.728 1.448 1.168 1.728-.968 2.424 2.024-.6 1.872 1.472 1.176 3-9.128zm-1.304 2.528-1 2.896-1.52-1.224zm14.376 11.12-9.296 2.376 1.072 1.504 1.952-.456L374 206.2l-1.072 1.672 1.12 1.528 5.224-8.048zm-1.872 2.104-1.728 2.544-1.152-1.6z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m375.43 211.903-.793-1.598 8.677-2.673.587 1.112-4.127 4.58 6.072-.66.587 1.147-7.386 5.242-.803-1.597 4.516-3.088-5.873.624-.273-.52 4.028-4.27v-.034zm11.597 8.295-1.803.624.902 2.64-1.423.485-.91-2.673-2.216.763.934 2.777-1.42.487-1.49-4.478 8.263-2.776 1.522 4.442-1.423.487z"}),(0,e.jsx)("path",{d:"m390.248 225.728-8.496 1.8.344 1.72 3.432-.72h.048l-3 2.92.472 2.08 3.048-3.256c.456 1.152 1.656 1.52 2.728 1.28 1.84-.384 2.336-1.728 1.952-3.504zm-1.072 2.096.048.224c.176.832.12 1.528-.848 1.704-.936.208-1.304-.36-1.48-1.224l-.048-.2z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m392.056 236.026-8.676 1.007-.207-1.737 8.677-1.006zm-1.906 9.438c.59-.486.902-1.25.902-2.013-.034-1.7-1.56-2.638-3.053-2.602-1.46 0-2.917 1.04-2.882 2.706 0 .73.382 1.493.937 1.98l-2.013.034c-.313-.66-.555-1.32-.555-2.048-.036-2.568 2.048-4.478 4.442-4.513 2.498-.034 4.685 1.736 4.754 4.41a4.4 4.4 0 0 1-.486 2.012l-2.048.034z"}),(0,e.jsx)("path",{d:"m383.728 247.104-.2 1.848 1.72.952-.376 3.12-1.944.448-.2 1.88 9.296-2.28.176-1.4zm2.92 3.568 2.728 1.256v.024l-2.976.672z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"M384.038 272.128c.73-.278 1.32-.833 1.597-1.528.625-1.596-.417-3.053-1.805-3.61-1.354-.52-3.09-.137-3.714 1.39a2.75 2.75 0 0 0 .14 2.22l-1.91-.728c-.035-.728 0-1.423.277-2.117.938-2.36 3.61-3.366 5.832-2.464 2.326.903 3.68 3.402 2.706 5.867a4.6 4.6 0 0 1-1.214 1.702zm-1.418 4.684-1.705-.9-1.348 2.463-1.29-.694 1.323-2.464-2.085-1.15-1.39 2.606-1.28-.728 2.215-4.128 7.676 4.16-2.225 4.128-1.314-.728zm-1.705 6.418-.728 1.043-7.742.24-.033.04 4.756 3.434-1.042 1.455-7.188-5.268.736-1.01 7.734-.28h.033l-4.788-3.508 1.042-1.422zm-9.057 8.677 1.282-1.315 1.042 1.01-3.747 3.92-1.042-1.01 1.25-1.323-5.245-5.03 1.216-1.282z"}),(0,e.jsx)("path",{d:"m362.824 290.728-1.376 1.096 2.248 2.728v.024l-3.944-1.28-1.656 1.352 4.328 1.176c-.8.936-.6 2.184.128 3.048 1.176 1.424 2.648 1.224 4 .08l1.824-1.528zm1.672 4.896 1.528 1.848-.176.128c-.656.552-1.248.808-1.872.072-.624-.76-.296-1.344.4-1.896zm-7.12-.376-1.6 1 .352 1.952-2.68 1.648-1.544-1.176-1.6 1 7.672 5.776 1.152-.72zm-1 4.576.776 2.904h-.048l-2.4-1.856z"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m348.74 300.344 3.746 7.916-1.596.728-3.085-6.526-2.292 1.042-.628-1.324z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2739.84cc2ba2.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js deleted file mode 100644 index ec74d3d3cf..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2775.0d98465a.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2775"],{14442(O,a,Q){Q.r(a),Q.d(a,{tsxLanguage:()=>U,autoCloseTags:()=>J,localCompletionSource:()=>j,typescriptSnippets:()=>T,snippets:()=>Y,typescriptLanguage:()=>v,javascriptLanguage:()=>W,jsxLanguage:()=>V,javascript:()=>E,scopeCompletionSource:()=>h,completionPath:()=>R,esLint:()=>D});var i=Q(48820),r=Q(43720);let e=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288],$=new i.Aj({start:!1,shift:(O,a)=>5==a||6==a||320==a?O:321==a,strict:!1}),t=new i.Lu((O,a)=>{let{next:Q}=O;(125==Q||-1==Q||a.context)&&O.acceptToken(318)},{contextual:!0,fallback:!0}),l=new i.Lu((O,a)=>{let{next:Q}=O,i;e.indexOf(Q)>-1||(47!=Q||47!=(i=O.peek(1))&&42!=i)&&(125==Q||59==Q||-1==Q||a.context||O.acceptToken(316))},{contextual:!0}),Z=new i.Lu((O,a)=>{91!=O.next||a.context||O.acceptToken(317)},{contextual:!0}),n=new i.Lu((O,a)=>{let{next:Q}=O;if(43==Q||45==Q){if(O.advance(),Q==O.next){O.advance();let Q=!a.context&&a.canShift(1);O.acceptToken(Q?1:2)}}else 63==Q&&46==O.peek(1)&&(O.advance(),O.advance(),(O.next<48||O.next>57)&&O.acceptToken(3))},{contextual:!0});function o(O,a){return O>=65&&O<=90||O>=97&&O<=122||95==O||O>=192||!a&&O>=48&&O<=57}let P=new i.Lu((O,a)=>{if(60!=O.next||!a.dialectEnabled(0)||(O.advance(),47==O.next))return;let Q=0;for(;e.indexOf(O.next)>-1;)O.advance(),Q++;if(o(O.next,!0)){for(O.advance(),Q++;o(O.next,!1);)O.advance(),Q++;for(;e.indexOf(O.next)>-1;)O.advance(),Q++;if(44==O.next)return;for(let a=0;;a++){if(7==a){if(!o(O.next,!0))return;break}if(O.next!="extends".charCodeAt(a))break;O.advance(),Q++}}O.acceptToken(4,-Q)}),p=(0,r.pn)({"get set async static":r._A.modifier,"for while do if else switch try catch finally return throw break continue default case defer":r._A.controlKeyword,"in of await yield void typeof delete instanceof as satisfies":r._A.operatorKeyword,"let var const using function class extends":r._A.definitionKeyword,"import export from":r._A.moduleKeyword,"with debugger new":r._A.keyword,TemplateString:r._A.special(r._A.string),super:r._A.atom,BooleanLiteral:r._A.bool,this:r._A.self,null:r._A.null,Star:r._A.modifier,VariableName:r._A.variableName,"CallExpression/VariableName TaggedTemplateExpression/VariableName":r._A.function(r._A.variableName),VariableDefinition:r._A.definition(r._A.variableName),Label:r._A.labelName,PropertyName:r._A.propertyName,PrivatePropertyName:r._A.special(r._A.propertyName),"CallExpression/MemberExpression/PropertyName":r._A.function(r._A.propertyName),"FunctionDeclaration/VariableDefinition":r._A.function(r._A.definition(r._A.variableName)),"ClassDeclaration/VariableDefinition":r._A.definition(r._A.className),"NewExpression/VariableName":r._A.className,PropertyDefinition:r._A.definition(r._A.propertyName),PrivatePropertyDefinition:r._A.definition(r._A.special(r._A.propertyName)),UpdateOp:r._A.updateOperator,"LineComment Hashbang":r._A.lineComment,BlockComment:r._A.blockComment,Number:r._A.number,String:r._A.string,Escape:r._A.escape,ArithOp:r._A.arithmeticOperator,LogicOp:r._A.logicOperator,BitOp:r._A.bitwiseOperator,CompareOp:r._A.compareOperator,RegExp:r._A.regexp,Equals:r._A.definitionOperator,Arrow:r._A.function(r._A.punctuation),": Spread":r._A.punctuation,"( )":r._A.paren,"[ ]":r._A.squareBracket,"{ }":r._A.brace,"InterpolationStart InterpolationEnd":r._A.special(r._A.brace),".":r._A.derefOperator,", ;":r._A.separator,"@":r._A.meta,TypeName:r._A.typeName,TypeDefinition:r._A.definition(r._A.typeName),"type enum interface implements namespace module declare":r._A.definitionKeyword,"abstract global Privacy readonly override":r._A.modifier,"is keyof unique infer asserts":r._A.operatorKeyword,JSXAttributeValue:r._A.attributeValue,JSXText:r._A.content,"JSXStartTag JSXStartCloseTag JSXSelfCloseEndTag JSXEndTag":r._A.angleBracket,"JSXIdentifier JSXNameSpacedName":r._A.tagName,"JSXAttribute/JSXIdentifier JSXAttribute/JSXNameSpacedName":r._A.attributeName,"JSXBuiltin/JSXIdentifier":r._A.standard(r._A.tagName)}),c={__proto__:null,export:20,as:25,from:33,default:36,async:41,function:42,in:52,out:55,const:56,extends:60,this:64,true:72,false:72,null:84,void:88,typeof:92,super:108,new:142,delete:154,yield:163,await:167,class:172,public:235,private:235,protected:235,readonly:237,instanceof:256,satisfies:259,import:292,keyof:349,unique:353,infer:359,asserts:395,is:397,abstract:417,implements:419,type:421,let:424,var:426,using:429,interface:435,enum:439,namespace:445,module:447,declare:451,global:455,defer:471,for:476,of:485,while:488,with:492,do:496,if:500,else:502,switch:506,case:512,try:518,catch:522,finally:526,return:530,throw:534,break:538,continue:542,debugger:546},s={__proto__:null,async:129,get:131,set:133,declare:195,public:197,private:197,protected:197,static:199,abstract:201,override:203,readonly:209,accessor:211,new:401},S={__proto__:null,"<":193},X=i.U1.deserialize({version:14,states:"$F|Q%TQlOOO%[QlOOO'_QpOOP(lO`OOO*zQ!0MxO'#CiO+RO#tO'#CjO+aO&jO'#CjO+oO#@ItO'#DaO.QQlO'#DgO.bQlO'#DrO%[QlO'#DzO0fQlO'#ESOOQ!0Lf'#E['#E[O1PQ`O'#EXOOQO'#Ep'#EpOOQO'#Il'#IlO1XQ`O'#GsO1dQ`O'#EoO1iQ`O'#EoO3hQ!0MxO'#JrO6[Q!0MxO'#JsO6uQ`O'#F]O6zQ,UO'#FtOOQ!0Lf'#Ff'#FfO7VO7dO'#FfO9XQMhO'#F|O9`Q`O'#F{OOQ!0Lf'#Js'#JsOOQ!0Lb'#Jr'#JrO9eQ`O'#GwOOQ['#K_'#K_O9pQ`O'#IYO9uQ!0LrO'#IZOOQ['#J`'#J`OOQ['#I_'#I_Q`QlOOQ`QlOOO9}Q!L^O'#DvO:UQlO'#EOO:]QlO'#EQO9kQ`O'#GsO:dQMhO'#CoO:rQ`O'#EnO:}Q`O'#EyO;hQMhO'#FeO;xQ`O'#GsOOQO'#K`'#K`O;}Q`O'#K`O<]Q`O'#G{O<]Q`O'#G|O<]Q`O'#HOO9kQ`O'#HRO=SQ`O'#HUO>kQ`O'#CeO>{Q`O'#HcO?TQ`O'#HiO?TQ`O'#HkO`QlO'#HmO?TQ`O'#HoO?TQ`O'#HrO?YQ`O'#HxO?_Q!0LsO'#IOO%[QlO'#IQO?jQ!0LsO'#ISO?uQ!0LsO'#IUO9uQ!0LrO'#IWO@QQ!0MxO'#CiOASQpO'#DlQOQ`OOO%[QlO'#EQOAjQ`O'#ETO:dQMhO'#EnOAuQ`O'#EnOBQQ!bO'#FeOOQ['#Cg'#CgOOQ!0Lb'#Dq'#DqOOQ!0Lb'#Jv'#JvO%[QlO'#JvOOQO'#Jy'#JyOOQO'#Ih'#IhOCQQpO'#EgOOQ!0Lb'#Ef'#EfOOQ!0Lb'#J}'#J}OC|Q!0MSO'#EgODWQpO'#EWOOQO'#Jx'#JxODlQpO'#JyOEyQpO'#EWODWQpO'#EgPFWO&2DjO'#CbPOOO)CD})CD}OOOO'#I`'#I`OFcO#tO,59UOOQ!0Lh,59U,59UOOOO'#Ia'#IaOFqO&jO,59UOGPQ!L^O'#DcOOOO'#Ic'#IcOGWO#@ItO,59{OOQ!0Lf,59{,59{OGfQlO'#IdOGyQ`O'#JtOIxQ!fO'#JtO+}QlO'#JtOJPQ`O,5:ROJgQ`O'#EpOJtQ`O'#KTOKPQ`O'#KSOKPQ`O'#KSOKXQ`O,5;^OK^Q`O'#KROOQ!0Ln,5:^,5:^OKeQlO,5:^OMcQ!0MxO,5:fONSQ`O,5:nONmQ!0LrO'#KQONtQ`O'#KPO9eQ`O'#KPO! YQ`O'#KPO! bQ`O,5;]O! gQ`O'#KPO!#lQ!fO'#JsOOQ!0Lh'#Ci'#CiO%[QlO'#ESO!$[Q!fO,5:sOOQS'#Jz'#JzOOQO-EtOOQ['#Jh'#JhOOQ[,5>u,5>uOOQ[-E<]-E<]O!TO`QlO,5>VO!LOQ`O,5>XO`QlO,5>ZO!LTQ`O,5>^O!LYQlO,5>dOOQ[,5>j,5>jO%[QlO,5>jO9uQ!0LrO,5>lOOQ[,5>n,5>nO#!dQ`O,5>nOOQ[,5>p,5>pO#!dQ`O,5>pOOQ[,5>r,5>rO##QQpO'#D_O%[QlO'#JvO##sQpO'#JvO##}QpO'#DmO#$`QpO'#DmO#&qQlO'#DmO#&xQ`O'#JuO#'QQ`O,5:WO#'VQ`O'#EtO#'eQ`O'#KUO#'mQ`O,5;_O#'rQpO'#DmO#(PQpO'#EVOOQ!0Lf,5:o,5:oO%[QlO,5:oO#(WQ`O,5:oO?YQ`O,5;YO!CUQpO,5;YO!C^QMhO,5;YO:dQMhO,5;YO#(`Q`O,5@bO#(eQ07dO,5:sOOQO-EPO$6^Q`O,5>POOQ[1G3i1G3iO`QlO1G3iOOQ[1G3o1G3oOOQ[1G3q1G3qO?TQ`O1G3sO$6cQlO1G3uO$:gQlO'#HtOOQ[1G3x1G3xO$:tQ`O'#HzO?YQ`O'#H|OOQ[1G4O1G4OO$:|QlO1G4OO9uQ!0LrO1G4UOOQ[1G4W1G4WOOQ!0Lb'#G_'#G_O9uQ!0LrO1G4YO9uQ!0LrO1G4[O$?TQ`O,5@bO!)[QlO,5;`O9eQ`O,5;`O?YQ`O,5:XO!)[QlO,5:XO!CUQpO,5:XO$?YQ?MtO,5:XOOQO,5;`,5;`O$?dQpO'#IeO$?zQ`O,5@aOOQ!0Lf1G/r1G/rO$@SQpO'#IkO$@^Q`O,5@pOOQ!0Lb1G0y1G0yO#$`QpO,5:XOOQO'#Ig'#IgO$@fQpO,5:qOOQ!0Ln,5:q,5:qO#(ZQ`O1G0ZOOQ!0Lf1G0Z1G0ZO%[QlO1G0ZOOQ!0Lf1G0t1G0tO?YQ`O1G0tO!CUQpO1G0tO!C^QMhO1G0tOOQ!0Lb1G5|1G5|O!ByQ!0LrO1G0^OOQO1G0m1G0mO%[QlO1G0mO$@mQ!0LrO1G0mO$@xQ!0LrO1G0mO!CUQpO1G0^ODWQpO1G0^O$AWQ!0LrO1G0mOOQO1G0^1G0^O$AlQ!0MxO1G0mPOOO-E<[-E<[POOO1G.h1G.hOOOO1G/i1G/iO$AvQ!bO,5QQpO,5@}OOQ!0Lb1G3c1G3cOOQ[7+$V7+$VO@zQ`O7+$VO9uQ!0LrO7+$VO%>]Q`O7+$VO%[QlO1G6lO%[QlO1G6mO%>bQ!0LrO1G6lO%>lQlO1G3kO%>sQ`O1G3kO%>xQlO1G3kOOQ[7+)T7+)TO9uQ!0LrO7+)_O`QlO7+)aOOQ['#Kh'#KhOOQ['#JS'#JSO%?PQlO,5>`OOQ[,5>`,5>`O%[QlO'#HuO%?^Q`O'#HwOOQ[,5>f,5>fO9eQ`O,5>fOOQ[,5>h,5>hOOQ[7+)j7+)jOOQ[7+)p7+)pOOQ[7+)t7+)tOOQ[7+)v7+)vO%?cQpO1G5|O%?}Q?MtO1G0zO%@XQ`O1G0zOOQO1G/s1G/sO%@dQ?MtO1G/sO?YQ`O1G/sO!)[QlO'#DmOOQO,5?P,5?POOQO-ERQ`O7+,WO&>WQ`O7+,XO%[QlO7+,WO%[QlO7+,XOOQ[7+)V7+)VO&>]Q`O7+)VO&>bQlO7+)VO&>iQ`O7+)VOOQ[<nQ`O,5>aOOQ[,5>c,5>cO&>sQ`O1G4QO9eQ`O7+&fO!)[QlO7+&fOOQO7+%_7+%_O&>xQ?MtO1G6ZO?YQ`O7+%_OOQ!0Lf<yQ?MvO,5?aO'@|Q?MvO,5?cO'CPQ?MvO7+'|O'DuQMjOG27TOOQO<VO!l$xO#jROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]$_Oa$qa'z$qa'w$qa!k$qa!Y$qa!_$qa%i$qa!g$qa~Ol)dO~P!&zOh%VOp%WOr%XOs$tOt$tOz%YO|%ZO!O%]O!S${O!_$|O!i%bO!l$xO#j%cO$W%`O$t%^O$v%_O$y%aO(T(vO(VTO(YUO(a$uO(y$}O(z%PO~Og(pP~P!,TO!Q)iO!g)hO!_$^X$Z$^X$]$^X$_$^X$f$^X~O!g)hO!_({X$Z({X$]({X$_({X$f({X~O!Q)iO~P!.^O!Q)iO!_({X$Z({X$]({X$_({X$f({X~O!_)kO$Z)oO$])jO$_)jO$f)pO~O![)sO~P!)[O$]$hO$_$gO$f)wO~On$zX!Q$zX#S$zX'y$zX(y$zX(z$zX~OgmXg$zXnmX!]mX#`mX~P!0SOx)yO(b)zO(c)|O~On*VO!Q*OO'y*PO(y$}O(z%PO~Og)}O~P!1WOg*WO~Oh%VOr%XOs$tOt$tOz%YO|%ZO!OVO!l$xO#jVO!l$xO#jROe!iOpkOrPO(VTO(YUO(aVO(o[O~O(T=QO~P#$qO!]-]O!^(iX~O!^-_O~O!g-VO#`-UO!]#hX!^#hX~O!]-`O!^(xX~O!^-bO~O!c-cO!d-cO(U!lO~P#$`O!^-fO~P'_On-iO!_'`O~O!Y-nO~Os!{a!b!{a!c!{a!d!{a#T!{a#U!{a#V!{a#W!{a#X!{a#[!{a#]!{a(U!{a(V!{a(Y!{a(e!{a(o!{a~P!#vO!p-sO#`-qO~PChO!c-uO!d-uO(U!lO~PDWOa%nO#`-qO'z%nO~Oa%nO!g#vO#`-qO'z%nO~Oa%nO!g#vO!p-sO#`-qO'z%nO(r'pO~O(P'xO(Q'xO(R-zO~Ov-{O~O!Y'Wa!]'Wa~P!:tO![.PO!Y'WX!]'WX~P%[O!](VO!Y(ha~O!Y(ha~PHRO!](^O!Y(va~O!S%hO![.TO!_%iO(T%gO!Y'^X!]'^X~O#`.VO!](ta!k(taa(ta'z(ta~O!g#vO~P#,wO!](jO!k(sa~O!S%hO!_%iO#j.ZO(T%gO~Op.`O!S%hO![.]O!_%iO!|]O#i._O#j.]O(T%gO!]'aX!k'aX~OR.dO!l#xO~Oh%VOn.gO!_'`O%i.fO~Oa#ci!]#ci'z#ci'w#ci!Y#ci!k#civ#ci!_#ci%i#ci!g#ci~P!:tOn>]O!Q*OO'y*PO(y$}O(z%PO~O#k#_aa#_a#`#_a'z#_a!]#_a!k#_a!_#_a!Y#_a~P#/sO#k(`XP(`XR(`X[(`Xa(`Xj(`Xr(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X'z(`X(a(`X(r(`X!k(`X!Y(`X'w(`Xv(`X!_(`X%i(`X!g(`X~P!6kO!].tO!k(kX~P!:tO!k.wO~O!Y.yO~OP$[OR#zO!Q#yO!S#{O!l#xO!p$[O(aVO[#mia#mij#mir#mi!]#mi#R#mi#o#mi#p#mi#q#mi#r#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#n#mi~P#3cO#n$OO~P#3cOP$[OR#zOr$aO!Q#yO!S#{O!l#xO!p$[O#n$OO#o$PO#p$PO#q$PO(aVO[#mia#mij#mi!]#mi#R#mi#s#mi#t#mi#u#mi#v#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#r#mi~P#6QO#r$QO~P#6QOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO(aVOa#mi!]#mi#x#mi#z#mi#{#mi'z#mi(r#mi(y#mi(z#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#v#mi~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO(aVO(z#}Oa#mi!]#mi#z#mi#{#mi'z#mi(r#mi(y#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#x$UO~P#;VO#x#mi~P#;VO#v$SO~P#8oOP$[OR#zO[$cOj$ROr$aO!Q#yO!S#{O!l#xO!p$[O#R$RO#n$OO#o$PO#p$PO#q$PO#r$QO#s$RO#t$RO#u$bO#v$SO#x$UO(aVO(y#|O(z#}Oa#mi!]#mi#{#mi'z#mi(r#mi'w#mi!Y#mi!k#miv#mi!_#mi%i#mi!g#mi~O#z#mi~P#={O#z$WO~P#={OP]XR]X[]Xj]Xr]X!Q]X!S]X!l]X!p]X#R]X#S]X#`]X#kfX#n]X#o]X#p]X#q]X#r]X#s]X#t]X#u]X#v]X#x]X#z]X#{]X$Q]X(a]X(r]X(y]X(z]X!]]X!^]X~O$O]X~P#@jOP$[OR#zO[]O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P#EyO!]/POg(pX~P!1WOg/RO~Oa$Pi!]$Pi'z$Pi'w$Pi!Y$Pi!k$Piv$Pi!_$Pi%i$Pi!g$Pi~P!:tO$]/SO$_/SO~O$]/TO$_/TO~O!g)hO#`/UO!_$cX$Z$cX$]$cX$_$cX$f$cX~O![/VO~O!_)kO$Z/XO$])jO$_)jO$f/YO~O!]VO!l$xO#j^O!Q*OO'y*PO(y$}O(z%POP#miR#mi!S#mi!l#mi!p#mi#n#mi#o#mi#p#mi#q#mi(a#mi~P&,QO#S$dOP(`XR(`X[(`Xj(`Xn(`Xr(`X!Q(`X!S(`X!l(`X!p(`X#R(`X#n(`X#o(`X#p(`X#q(`X#r(`X#s(`X#t(`X#u(`X#v(`X#x(`X#z(`X#{(`X$O(`X'y(`X(a(`X(r(`X(y(`X(z(`X!](`X!^(`X~O$O$Pi!]$Pi!^$Pi~P#BwO$O!ri!^!ri~P$+oOg']a!]']a~P!1WO!^7nO~O!]'da!^'da~P#BwO!Y7oO~P#/sO!g#vO(r'pO!]'ea!k'ea~O!]/pO!k)Oi~O!]/pO!g#vO!k)Oi~Og$|q!]$|q#`$|q$O$|q~P!1WO!Y'ga!]'ga~P#/sO!g7vO~O!]/yO!Y)Pi~P#/sO!]/yO!Y)Pi~O!Y7yO~Oh%VOr8OO!l%eO(r'pO~Oj8QO!g#vO~Or8TO!g#vO(r'pO~O!Q*OO'y*PO(z%POn'ja(y'ja!]'ja#`'ja~Og'ja$O'ja~P&5RO!Q*OO'y*POn'la(y'la(z'la!]'la#`'la~Og'la$O'la~P&5tOg(_q!](_q~P!1WO#`8VOg(_q!](_q~P!1WO!Y8WO~Og%Oq!]%Oq#`%Oq$O%Oq~P!1WOa$oy!]$oy'z$oy'w$oy!Y$oy!k$oyv$oy!_$oy%i$oy!g$oy~P!:tO!g6rO~O!]5[O!_)Qa~O!_'`OP$TaR$Ta[$Taj$Tar$Ta!Q$Ta!S$Ta!]$Ta!l$Ta!p$Ta#R$Ta#n$Ta#o$Ta#p$Ta#q$Ta#r$Ta#s$Ta#t$Ta#u$Ta#v$Ta#x$Ta#z$Ta#{$Ta(a$Ta(r$Ta(y$Ta(z$Ta~O%i7WO~P&8fO%^8[Oa%[i!_%[i'z%[i!]%[i~Oa#cy!]#cy'z#cy'w#cy!Y#cy!k#cyv#cy!_#cy%i#cy!g#cy~P!:tO[8^O~Ob8`O(T+qO(VTO(YUO~O!]1TO!^)Xi~O`8dO~O(e(|O!]'pX!^'pX~O!]5uO!^)Ua~O!^8nO~P%;eO(o!sO~P$&YO#[8oO~O!_1oO~O!_1oO%i8qO~On8tO!_1oO%i8qO~O[8yO!]'sa!^'sa~O!]1zO!^)Vi~O!k8}O~O!k9OO~O!k9RO~O!k9RO~P%[Oa9TO~O!g9UO~O!k9VO~O!](wi!^(wi~P#BwOa%nO#`9_O'z%nO~O!](ty!k(tya(ty'z(ty~P!:tO!](jO!k(sy~O%i9bO~P&8fO!_'`O%i9bO~O#k$|qP$|qR$|q[$|qa$|qj$|qr$|q!S$|q!]$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q'z$|q(a$|q(r$|q!k$|q!Y$|q'w$|q#`$|qv$|q!_$|q%i$|q!g$|q~P#/sO#k'jaP'jaR'ja['jaa'jaj'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja'z'ja(a'ja(r'ja!k'ja!Y'ja'w'jav'ja!_'ja%i'ja!g'ja~P&5RO#k'laP'laR'la['laa'laj'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la'z'la(a'la(r'la!k'la!Y'la'w'lav'la!_'la%i'la!g'la~P&5tO#k%OqP%OqR%Oq[%Oqa%Oqj%Oqr%Oq!S%Oq!]%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq'z%Oq(a%Oq(r%Oq!k%Oq!Y%Oq'w%Oq#`%Oqv%Oq!_%Oq%i%Oq!g%Oq~P#/sO!]'Yi!k'Yi~P!:tO$O#cq!]#cq!^#cq~P#BwO(y$}OP%aaR%aa[%aaj%aar%aa!S%aa!l%aa!p%aa#R%aa#n%aa#o%aa#p%aa#q%aa#r%aa#s%aa#t%aa#u%aa#v%aa#x%aa#z%aa#{%aa$O%aa(a%aa(r%aa!]%aa!^%aa~On%aa!Q%aa'y%aa(z%aa~P&IyO(z%POP%caR%ca[%caj%car%ca!S%ca!l%ca!p%ca#R%ca#n%ca#o%ca#p%ca#q%ca#r%ca#s%ca#t%ca#u%ca#v%ca#x%ca#z%ca#{%ca$O%ca(a%ca(r%ca!]%ca!^%ca~On%ca!Q%ca'y%ca(y%ca~P&LQOn>^O!Q*OO'y*PO(z%PO~P&IyOn>^O!Q*OO'y*PO(y$}O~P&LQOR0kO!Q0kO!S0lO#S$dOP}a[}aj}an}ar}a!l}a!p}a#R}a#n}a#o}a#p}a#q}a#r}a#s}a#t}a#u}a#v}a#x}a#z}a#{}a$O}a'y}a(a}a(r}a(y}a(z}a!]}a!^}a~O!Q*OO'y*POP$saR$sa[$saj$san$sar$sa!S$sa!l$sa!p$sa#R$sa#n$sa#o$sa#p$sa#q$sa#r$sa#s$sa#t$sa#u$sa#v$sa#x$sa#z$sa#{$sa$O$sa(a$sa(r$sa(y$sa(z$sa!]$sa!^$sa~O!Q*OO'y*POP$uaR$ua[$uaj$uan$uar$ua!S$ua!l$ua!p$ua#R$ua#n$ua#o$ua#p$ua#q$ua#r$ua#s$ua#t$ua#u$ua#v$ua#x$ua#z$ua#{$ua$O$ua(a$ua(r$ua(y$ua(z$ua!]$ua!^$ua~On>^O!Q*OO'y*PO(y$}O(z%PO~OP%TaR%Ta[%Taj%Tar%Ta!S%Ta!l%Ta!p%Ta#R%Ta#n%Ta#o%Ta#p%Ta#q%Ta#r%Ta#s%Ta#t%Ta#u%Ta#v%Ta#x%Ta#z%Ta#{%Ta$O%Ta(a%Ta(r%Ta!]%Ta!^%Ta~P''VO$O$mq!]$mq!^$mq~P#BwO$O$oq!]$oq!^$oq~P#BwO!^9oO~O$O9pO~P!1WO!g#vO!]'ei!k'ei~O!g#vO(r'pO!]'ei!k'ei~O!]/pO!k)Oq~O!Y'gi!]'gi~P#/sO!]/yO!Y)Pq~Or9wO!g#vO(r'pO~O[9yO!Y9xO~P#/sO!Y9xO~Oj:PO!g#vO~Og(_y!](_y~P!1WO!]'na!_'na~P#/sOa%[q!_%[q'z%[q!]%[q~P#/sO[:UO~O!]1TO!^)Xq~O`:YO~O#`:ZO!]'pa!^'pa~O!]5uO!^)Ui~P#BwO!S:]O~O!_1oO%i:`O~O(VTO(YUO(e:eO~O!]1zO!^)Vq~O!k:hO~O!k:iO~O!k:jO~O!k:jO~P%[O#`:mO!]#hy!^#hy~O!]#hy!^#hy~P#BwO%i:rO~P&8fO!_'`O%i:rO~O$O#|y!]#|y!^#|y~P#BwOP$|iR$|i[$|ij$|ir$|i!S$|i!l$|i!p$|i#R$|i#n$|i#o$|i#p$|i#q$|i#r$|i#s$|i#t$|i#u$|i#v$|i#x$|i#z$|i#{$|i$O$|i(a$|i(r$|i!]$|i!^$|i~P''VO!Q*OO'y*PO(z%POP'iaR'ia['iaj'ian'iar'ia!S'ia!l'ia!p'ia#R'ia#n'ia#o'ia#p'ia#q'ia#r'ia#s'ia#t'ia#u'ia#v'ia#x'ia#z'ia#{'ia$O'ia(a'ia(r'ia(y'ia!]'ia!^'ia~O!Q*OO'y*POP'kaR'ka['kaj'kan'kar'ka!S'ka!l'ka!p'ka#R'ka#n'ka#o'ka#p'ka#q'ka#r'ka#s'ka#t'ka#u'ka#v'ka#x'ka#z'ka#{'ka$O'ka(a'ka(r'ka(y'ka(z'ka!]'ka!^'ka~O(y$}OP%aiR%ai[%aij%ain%air%ai!Q%ai!S%ai!l%ai!p%ai#R%ai#n%ai#o%ai#p%ai#q%ai#r%ai#s%ai#t%ai#u%ai#v%ai#x%ai#z%ai#{%ai$O%ai'y%ai(a%ai(r%ai(z%ai!]%ai!^%ai~O(z%POP%ciR%ci[%cij%cin%cir%ci!Q%ci!S%ci!l%ci!p%ci#R%ci#n%ci#o%ci#p%ci#q%ci#r%ci#s%ci#t%ci#u%ci#v%ci#x%ci#z%ci#{%ci$O%ci'y%ci(a%ci(r%ci(y%ci!]%ci!^%ci~O$O$oy!]$oy!^$oy~P#BwO$O#cy!]#cy!^#cy~P#BwO!g#vO!]'eq!k'eq~O!]/pO!k)Oy~O!Y'gq!]'gq~P#/sOr:|O!g#vO(r'pO~O[;QO!Y;PO~P#/sO!Y;PO~Og(_!R!](_!R~P!1WOa%[y!_%[y'z%[y!]%[y~P#/sO!]1TO!^)Xy~O!]5uO!^)Uq~O(T;XO~O!_1oO%i;[O~O!k;_O~O%i;dO~P&8fOP$|qR$|q[$|qj$|qr$|q!S$|q!l$|q!p$|q#R$|q#n$|q#o$|q#p$|q#q$|q#r$|q#s$|q#t$|q#u$|q#v$|q#x$|q#z$|q#{$|q$O$|q(a$|q(r$|q!]$|q!^$|q~P''VO!Q*OO'y*PO(z%POP'jaR'ja['jaj'jan'jar'ja!S'ja!l'ja!p'ja#R'ja#n'ja#o'ja#p'ja#q'ja#r'ja#s'ja#t'ja#u'ja#v'ja#x'ja#z'ja#{'ja$O'ja(a'ja(r'ja(y'ja!]'ja!^'ja~O!Q*OO'y*POP'laR'la['laj'lan'lar'la!S'la!l'la!p'la#R'la#n'la#o'la#p'la#q'la#r'la#s'la#t'la#u'la#v'la#x'la#z'la#{'la$O'la(a'la(r'la(y'la(z'la!]'la!^'la~OP%OqR%Oq[%Oqj%Oqr%Oq!S%Oq!l%Oq!p%Oq#R%Oq#n%Oq#o%Oq#p%Oq#q%Oq#r%Oq#s%Oq#t%Oq#u%Oq#v%Oq#x%Oq#z%Oq#{%Oq$O%Oq(a%Oq(r%Oq!]%Oq!^%Oq~P''VOg%e!Z!]%e!Z#`%e!Z$O%e!Z~P!1WO!Y;hO~P#/sOr;iO!g#vO(r'pO~O[;kO!Y;hO~P#/sO!]'pq!^'pq~P#BwO!]#h!Z!^#h!Z~P#BwO#k%e!ZP%e!ZR%e!Z[%e!Za%e!Zj%e!Zr%e!Z!S%e!Z!]%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z'z%e!Z(a%e!Z(r%e!Z!k%e!Z!Y%e!Z'w%e!Z#`%e!Zv%e!Z!_%e!Z%i%e!Z!g%e!Z~P#/sOr;tO!g#vO(r'pO~O!Y;uO~P#/sOr;|O!g#vO(r'pO~O!Y;}O~P#/sOP%e!ZR%e!Z[%e!Zj%e!Zr%e!Z!S%e!Z!l%e!Z!p%e!Z#R%e!Z#n%e!Z#o%e!Z#p%e!Z#q%e!Z#r%e!Z#s%e!Z#t%e!Z#u%e!Z#v%e!Z#x%e!Z#z%e!Z#{%e!Z$O%e!Z(a%e!Z(r%e!Z!]%e!Z!^%e!Z~P''VOrROe!iOpkOrPO(T)]O(VTO(YUO(aVO(o[O~O!]WO!l$xO#jgPPP!>oI[PPPPPPPPP!BOP!C]PPI[!DnPI[PI[I[I[I[I[PI[!FQP!I[P!LbP!Lf!Lp!Lt!LtP!IXP!Lx!LxP#!OP#!SI[PI[#!Y#%_CjA^PA^PA^A^P#&lA^A^#)OA^#+vA^#.SA^A^#.r#1W#1W#1]#1f#1W#1qPP#1WPA^#2ZA^#6YA^A^6mPPP#:_PPP#:x#:xP#:xP#;`#:xPP#;fP#;]P#;]#;y#;]#P#>V#>]#>k#>q#>{#?R#?]#?c#?s#?y#@k#@}#AT#AZ#Ai#BO#Cs#DR#DY#Et#FS#Gt#HS#HY#H`#Hf#Hp#Hv#H|#IW#Ij#IpPPPPPPPPPPP#IvPPPPPPP#Jk#Mx$ b$ i$ qPPP$']P$'f$*_$0x$0{$1O$1}$2Q$2X$2aP$2g$2jP$3W$3[$4S$5b$5g$5}PP$6S$6Y$6^$6a$6e$6i$7e$7|$8e$8i$8l$8o$8y$8|$9Q$9UR!|RoqOXst!Z#d%m&r&t&u&w,s,x2[2_Y!vQ'`-e1o5{Q%tvQ%|yQ&T|Q&j!VS'W!e-]Q'f!iS'l!r!yU*k$|*Z*oQ+o%}S+|&V&WQ,d&dQ-c'_Q-m'gQ-u'mQ0[*qQ1b,OQ1y,eR<{SU+P%]S!S!nQ!r!v!y!z$|'W'_'`'l'm'n*k*o*q*r-]-c-e-u0[0_1o5{5}%[$ti#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^Q&X|Q'U!eS'[%i-`Q+t&PQ,P&WQ,f&gQ0n+SQ1Y+uQ1_+{Q2Q,jQ2R,kQ5f1TQ5o1aQ6[1zQ6_1|Q6`2PQ8`5gQ8c5lQ8|6bQ:X8dQ:f8yQ;V:YR<}*ZrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R,h&k&z^OPXYstuvwz!Z!`!g!j!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'b'r(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mR>S[#]WZ#W#Z'X(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ%wxQ%{yW&Q|&V&W,OQ&_!TQ'c!hQ'e!iQ(q#sS+n%|%}Q+r&PQ,_&bQ,c&dS-l'f'gQ.i(rQ1R+oQ1X+uQ1Z+vQ1^+zQ1t,`S1x,d,eQ2|-mQ5e1TQ5i1WQ5n1`Q6Z1yQ8_5gQ8b5kQ8f5pQ:T8^R;T:U!U$zi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y!^%yy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{Q+h%wQ,T&[Q,W&]Q,b&dQ.h(qQ1s,_U1w,c,d,eQ3e.iQ6U1tS6Y1x1yQ8x6Z#f>T#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o>UPS&[!Q&iQ&]!RQ&^!SU*}%[%d=sR,R&Y%]%Si#v$b$c$d$x${%O%Q%^%_%c)y*R*T*V*Y*a*g*w*x+f+i,S,V.f/P/d/m/x/y/{0`0b0i0j0o1f1i1q3c4^4_4j4o5Q5[5_6S7W7v8Q8V8[8q9b9p9y:P:`:r;Q;[;d;kP>X>Y>]>^T)z$u){V+P%]S$i$^c#Y#e%q%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.|.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SQ'Y!eR2q-]!W!nQ!e!r!v!y!z$|'W'_'`'l'm'n*Z*k*o*q*r-]-c-e-u0[0_1o5{5}R1l,ZnqOXst!Z#d%m&r&t&u&w,s,x2[2_Q&y!^Q'v!xS(s#u<^Q+l%zQ,]&_Q,^&aQ-j'dQ-w'oS.r(x=PS0q+X=ZQ1P+mQ1n,[Q2c,zQ2e,{Q2m-WQ2z-kQ2}-oS5Y0r=eQ5a1QS5d1S=fQ6t2oQ6x2{Q6}3SQ8]5bQ9Y6vQ9Z6yQ9^7OR:l9V$d$]c#Y#e%s%u(S(Y(t(y)R)S)T)U)V)W)X)Y)Z)[)^)`)b)g)q+d+x-Z-x-}.S.U.s.v.z.}/O/b0p2k2n3O3V3k3p3q3r3s3t3u3v3w3x3y3z3{3|4P4Q4X5X5c6u6{7Q7a7b7k7l8k9X9]9g9m9n:o;W;`SS#q]SU$fd)_,mS(p#p'iU*v%R(w4OU0m+O.n7gQ5^0xQ7V3`Q9d7YR:s9em!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}Q't!uS(f#g2US-s'k'wQ/s*]Q0R*jQ3U-vQ4f/tQ4r0TQ4s0UQ4x0^Q7r4`S7}4t4vS8R4y4{Q9r7sQ9v7yQ9{8OQ:Q8TS:{9w9xS;g:|;PS;s;h;iS;{;t;uSSR=o>R%^bOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Q%fj!^%xy!i!u%{%|%}'V'e'f'g'k'u*j+n+o-Y-l-m-t0R0U1R2u2|3T4r4s4v7}9{S&Oz!jQ+k%yQ,a&dW1v,b,c,d,eU6X1w1x1yS8w6Y6ZQ:d8x!r=j$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ=t>QR=u>R%QeOPXYstuvw!Z!`!g!o#S#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_Y#bWZ#W#Z(T!b%jm#h#i#l$x%e%h(^(h(i(j*Y*^*b+Z+[+^,o-V.T.Z.[.]._/m/p2d3[3]4a6r7TQ,n&o!p=k$Z$n)s-U-X/V2p4T5w6s:Z:mSR=n'XU']!e%i*ZR2s-`%SdOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+],p,s,x-i-q.P.V.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3l4z6T6e6f6i6|8t9T9_!r)_$Z$n'X)s-U-X/V2p4T5w6s:Z:mSQ,m&oQ0x+gQ3`.gQ7Y3dR9e7[!b$Tc#Y%q(S(Y(t(y)Z)[)`)g+x-x-}.S.U.s.v/b0p3O3V3k3{5X5c6{7Q7a9]:oS)^)q-Z.|2k2n3p4P4X6u7b7k7l8k9X9g9m9n;W;`=vQ>X>ZR>Y>['QkOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mSS$oh$pR4U/U'XgOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$kf$qQ$ifS)j$l)nR)v$qT$jf$qT)l$l)n'XhOPWXYZhstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$Z$_$a$e$n$p%m%t&R&k&n&o&r&t&u&w&{'T'X'b'r(T(V(](d(x(z)O)s)}*i+X+]+g,p,s,x-U-X-i-q.P.V.g.t.{/U/V/n0]0l0r1S1r2S2T2V2X2[2_2a2p3Q3W3d3l4T4z5w6T6e6f6i6s6|7[8t9T9_:Z:mST$oh$pQ$rhR)u$p%^jOPWXYZstuvw!Z!`!g!o#S#W#Z#d#o#u#x#{$O$P$Q$R$S$T$U$V$W$X$_$a$e%m%t&R&k&n&o&r&t&u&w&{'T'b'r(T(V(](d(x(z)O)}*i+X+]+g,p,s,x-i-q.P.V.g.t.{/n0]0l0r1S1r2S2T2V2X2[2_2a3Q3W3d3l4z6T6e6f6i6|7[8t9T9_!s>Q$Z$n'X)s-U-X/V2p4T5w6s:Z:mS#glOPXZst!Z!`!o#S#d#o#{$n%m&k&n&o&r&t&u&w&{'T'b)O)s*i+]+g,p,s,x-i.g/V/n0]0l1r2S2T2V2X2[2_2a3d4T4z6T6e6f6i7[8t9T!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^Q+T%aQ/c*Oo4OP>X>YQ*c$zU*l$|*Z*oQ+U%bQ0W*m#f=q#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^n=rTQ=x>UQ=y>VR=z>W!U%Ri$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y#f(w#v$b$c$x${)y*V*Y*g+f+i,S,V.f/d/m/y/{1f1i1q3c4^4j4o5[5_6S7W7v8Q8[8q9b9y:P:`:r;Q;[;d;k]>^o4OP>X>Y>]>^Q,U&]Q1h,WQ5s1gR8h5tV*n$|*Z*oU*n$|*Z*oT5z1o5{S0P*i/nQ4w0]T8S4z:]Q+j%xQ0V*lQ1O+kQ1u,aQ6W1vQ8v6XQ:c8wR;^:d!U%Oi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Yx*R$v)e*S*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>OS0`*t0a#f]>^nZ>[`=T3}7c7f7j9h:t:w;yS=_.l3iT=`7e9k!U%Qi$d%O%Q%^%_%c*R*T*a*w*x/P/x0`0b0i0j0o4_5Q8V9p>P>X>Y|*T$v)e*U*t+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>OS0b*u0c#f]>^nZ>[d=V3}7d7e7j9h9i:t:u:w;yS=a.m3jT=b7f9lrnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q&f!UR,p&ornOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_R&f!UQ,Y&^R1d,RsnOXst!V!Z#d%m&i&r&t&u&w,s,x2[2_Q1p,_S6R1s1tU8p6P6Q6US:_8r8sS;Y:^:aQ;m;ZR;w;nQ&m!VR,i&iR6_1|R:f8yW&Q|&V&W,OR1Z+vQ&r!WR,s&sR,y&xT2],x2_R,}&yQ,|&yR2f,}Q'y!{R-y'ySsOtQ#dXT%ps#dQ#OTR'{#OQ#RUR'}#RQ){$uR/`){Q#UVR(Q#UQ#XWU(W#X(X.QQ(X#YR.Q(YQ-^'YR2r-^Q.u(yS3m.u3nR3n.vQ-e'`R2v-eY!rQ'`-e1o5{R'j!rQ/Q)eR4S/QU#_W%h*YU(_#_(`.RQ(`#`R.R(ZQ-a']R2t-at`OXst!V!Z#d%m&i&k&r&t&u&w,s,x2[2_S#hZ%eU#r`#h.[R.[(jQ(k#jQ.X(gW.a(k.X3X7RQ3X.YR7R3YQ)n$lR/W)nQ$phR)t$pQ$`cU)a$`-|O>Z>[Q/z*eU4k/z4m7xQ4m/|R7x4lS*o$|*ZR0Y*ox*S$v)e*t*u+V/v0d0e4R4g5R5S5W7p8U:R:x=p=}>O!d.j(u)c*[*e.l.m.q/_/k/|0v1e3h4[4h4l5r7]7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/h*S.j7ca7c3}7e7f7j9h:t:w;yQ0a*tQ3i.lU4}0a3i9kR9k7e|*U$v)e*t*u+V/g/v0d0e4R4g4|5R5S5W7p8U:R:x=p=}>O!h.k(u)c*[*e.l.m.q/_/k/|0v1e3f3h4[4h4l5r7]7^7`7w7z8X8Z9t9|:S:};R;e;j;v>Z>[U/j*U.k7de7d3}7e7f7j9h9i:t:u:w;yQ0c*uQ3j.mU5P0c3j9lR9l7fQ*z%UR0g*zQ5]0vR8Y5]Q+_%kR0u+_Q5v1jS8j5v:[R:[8kQ,[&_R1m,[Q5{1oR8m5{Q1{,fS6]1{8zR8z6_Q1U+rW5h1U5j8a:VQ5j1XQ8a5iR:V8bQ+w&QR1[+wQ2_,xR6m2_YrOXst#dQ&v!ZQ+a%mQ,r&rQ,t&tQ,u&uQ,w&wQ2Y,sS2],x2_R6l2[Q%opQ&z!_Q&}!aQ'P!bQ'R!cQ'q!uQ+`%lQ+l%zQ,Q&XQ,h&mQ-P&|W-p'k's't'wQ-w'oQ0X*nQ1P+mQ1c,PS2O,i,lQ2g-OQ2h-RQ2i-SQ2}-oW3P-r-s-v-xQ5a1QQ5m1_Q5q1eQ6V1uQ6a2QQ6k2ZU6z3O3R3UQ6}3SQ8]5bQ8e5oQ8g5rQ8l5zQ8u6WQ8{6`S9[6{7PQ9^7OQ:W8cQ:b8vQ:g8|Q:n9]Q;U:XQ;]:cQ;a:oQ;l;VR;o;^Q%zyQ'd!iQ'o!uU+m%{%|%}Q-W'VU-k'e'f'gS-o'k'uQ0Q*jS1Q+n+oQ2o-YS2{-l-mQ3S-tS4p0R0UQ5b1RQ6v2uQ6y2|Q7O3TU7{4r4s4vQ9z7}R;O9{S$wi>PR*{%VU%Ui%V>PR0f*yQ$viS(u#v+iS)c$b$cQ)e$dQ*[$xS*e${*YQ*t%OQ*u%QQ+Q%^Q+R%_Q+V%cQ.lPQ=}>XQ>O>YQ>Z>]R>[>^Q+O%]Q.nSR#[WR'Z!el!tQ!r!v!y!z'`'l'm'n-e-u1o5{5}S'V!e-]U*j$|*Z*oS-Y'W'_S0U*k*qQ0^*rQ2u-cQ4v0[R4{0_R({#xQ!fQT-d'`-e]!qQ!r'`-e1o5{Q#p]R'i < TypeParamList in out const TypeDefinition extends ThisType this LiteralType ArithOp Number BooleanLiteral TemplateType InterpolationEnd Interpolation InterpolationStart NullType null VoidType void TypeofType typeof MemberExpression . PropertyName [ TemplateString Escape Interpolation super RegExp ] ArrayExpression Spread , } { ObjectExpression Property async get set PropertyDefinition Block : NewTarget new NewExpression ) ( ArgList UnaryExpression delete LogicOp BitOp YieldExpression yield AwaitExpression await ParenthesizedExpression ClassExpression class ClassBody MethodDeclaration Decorator @ MemberExpression PrivatePropertyName CallExpression TypeArgList CompareOp < declare Privacy static abstract override PrivatePropertyDefinition PropertyDeclaration readonly accessor Optional TypeAnnotation Equals StaticBlock FunctionExpression ArrowFunction ParamList ParamList ArrayPattern ObjectPattern PatternProperty Privacy readonly Arrow MemberExpression BinaryExpression ArithOp ArithOp ArithOp ArithOp BitOp CompareOp instanceof satisfies CompareOp BitOp BitOp BitOp LogicOp LogicOp ConditionalExpression LogicOp LogicOp AssignmentExpression UpdateOp PostfixExpression CallExpression InstantiationExpression TaggedTemplateExpression DynamicImport import ImportMeta JSXElement JSXSelfCloseEndTag JSXSelfClosingTag JSXIdentifier JSXBuiltin JSXIdentifier JSXNamespacedName JSXMemberExpression JSXSpreadAttribute JSXAttribute JSXAttributeValue JSXEscape JSXEndTag JSXOpenTag JSXFragmentTag JSXText JSXEscape JSXStartCloseTag JSXCloseTag PrefixCast < ArrowFunction TypeParamList SequenceExpression InstantiationExpression KeyofType keyof UniqueType unique ImportType InferredType infer TypeName ParenthesizedType FunctionSignature ParamList NewSignature IndexedType TupleType Label ArrayType ReadonlyType ObjectType MethodType PropertyType IndexSignature PropertyDefinition CallSignature TypePredicate asserts is NewSignature new UnionType LogicOp IntersectionType LogicOp ConditionalType ParameterizedType ClassDeclaration abstract implements type VariableDeclaration let var using TypeAliasDeclaration InterfaceDeclaration interface EnumDeclaration enum EnumBody NamespaceDeclaration namespace module AmbientDeclaration declare GlobalDeclaration global ClassDeclaration ClassBody AmbientFunctionDeclaration ExportGroup VariableName VariableName ImportDeclaration defer ImportGroup ForStatement for ForSpec ForInSpec ForOfSpec of WhileStatement while WithStatement with DoStatement do IfStatement if else SwitchStatement switch SwitchBody CaseLabel case DefaultLabel TryStatement try CatchClause catch FinallyClause finally ReturnStatement return ThrowStatement throw BreakStatement break ContinueStatement continue DebuggerStatement debugger LabeledStatement ExpressionStatement SingleExpression SingleClassItem",maxTerm:380,context:$,nodeProps:[["isolate",-8,5,6,14,37,39,51,53,55,""],["group",-26,9,17,19,68,207,211,215,216,218,221,224,234,237,243,245,247,249,252,258,264,266,268,270,272,274,275,"Statement",-34,13,14,32,35,36,42,51,54,55,57,62,70,72,76,80,82,84,85,110,111,120,121,136,139,141,142,143,144,145,147,148,167,169,171,"Expression",-23,31,33,37,41,43,45,173,175,177,178,180,181,182,184,185,186,188,189,190,201,203,205,206,"Type",-3,88,103,109,"ClassItem"],["openedBy",23,"<",38,"InterpolationStart",56,"[",60,"{",73,"(",160,"JSXStartCloseTag"],["closedBy",-2,24,168,">",40,"InterpolationEnd",50,"]",61,"}",74,")",165,"JSXEndTag"]],propSources:[p],skippedNodes:[0,5,6,278],repeatNodeCount:37,tokenData:"$Fq07[R!bOX%ZXY+gYZ-yZ[+g[]%Z]^.c^p%Zpq+gqr/mrs3cst:_tuEruvJSvwLkwx! Yxy!'iyz!(sz{!)}{|!,q|}!.O}!O!,q!O!P!/Y!P!Q!9j!Q!R#:O!R![#<_![!]#I_!]!^#Jk!^!_#Ku!_!`$![!`!a$$v!a!b$*T!b!c$,r!c!}Er!}#O$-|#O#P$/W#P#Q$4o#Q#R$5y#R#SEr#S#T$7W#T#o$8b#o#p$x#r#s$@U#s$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$I|Er$I|$I}$Dk$I}$JO$Dk$JO$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr(n%d_$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z&j&hT$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c&j&zP;=`<%l&c'|'U]$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!b(SU(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!b(iP;=`<%l'}'|(oP;=`<%l&}'[(y]$i&j(WpOY(rYZ&cZr(rrs&cs!^(r!^!_)r!_#O(r#O#P&c#P#o(r#o#p)r#p;'S(r;'S;=`*a<%lO(rp)wU(WpOY)rZr)rs#O)r#P;'S)r;'S;=`*Z<%lO)rp*^P;=`<%l)r'[*dP;=`<%l(r#S*nX(Wp(Z!bOY*gZr*grs'}sw*gwx)rx#O*g#P;'S*g;'S;=`+Z<%lO*g#S+^P;=`<%l*g(n+dP;=`<%l%Z07[+rq$i&j(Wp(Z!b'|0/lOX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p$f%Z$f$g+g$g#BY%Z#BY#BZ+g#BZ$IS%Z$IS$I_+g$I_$JT%Z$JT$JU+g$JU$KV%Z$KV$KW+g$KW&FU%Z&FU&FV+g&FV;'S%Z;'S;=`+a<%l?HT%Z?HT?HU+g?HUO%Z07[.ST(X#S$i&j'}0/lO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c07[.n_$i&j(Wp(Z!b'}0/lOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)3p/x`$i&j!p),Q(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`0z!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW1V`#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_!`2X!`#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z(KW2d_#v(Ch$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'At3l_(V':f$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k(^4r_$i&j(Z!bOY4kYZ5qZr4krs7nsw4kwx5qx!^4k!^!_8p!_#O4k#O#P5q#P#o4k#o#p8p#p;'S4k;'S;=`:X<%lO4k&z5vX$i&jOr5qrs6cs!^5q!^!_6y!_#o5q#o#p6y#p;'S5q;'S;=`7h<%lO5q&z6jT$d`$i&jO!^&c!_#o&c#p;'S&c;'S;=`&w<%lO&c`6|TOr6yrs7]s;'S6y;'S;=`7b<%lO6y`7bO$d``7eP;=`<%l6y&z7kP;=`<%l5q(^7w]$d`$i&j(Z!bOY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}!r8uZ(Z!bOY8pYZ6yZr8prs9hsw8pwx6yx#O8p#O#P6y#P;'S8p;'S;=`:R<%lO8p!r9oU$d`(Z!bOY'}Zw'}x#O'}#P;'S'};'S;=`(f<%lO'}!r:UP;=`<%l8p(^:[P;=`<%l4k%9[:hh$i&j(Wp(Z!bOY%ZYZ&cZq%Zqr`#P#o`x!^=^!^!_?q!_#O=^#O#P>`#P#o=^#o#p?q#p;'S=^;'S;=`@h<%lO=^&n>gXWS$i&jOY>`YZ&cZ!^>`!^!_?S!_#o>`#o#p?S#p;'S>`;'S;=`?k<%lO>`S?XSWSOY?SZ;'S?S;'S;=`?e<%lO?SS?hP;=`<%l?S&n?nP;=`<%l>`!f?xWWS(Z!bOY?qZw?qwx?Sx#O?q#O#P?S#P;'S?q;'S;=`@b<%lO?q!f@eP;=`<%l?q(Q@kP;=`<%l=^'`@w]WS$i&j(WpOY@nYZ&cZr@nrs>`s!^@n!^!_Ap!_#O@n#O#P>`#P#o@n#o#pAp#p;'S@n;'S;=`Bg<%lO@ntAwWWS(WpOYApZrAprs?Ss#OAp#O#P?S#P;'SAp;'S;=`Ba<%lOAptBdP;=`<%lAp'`BjP;=`<%l@n#WBvYWS(Wp(Z!bOYBmZrBmrs?qswBmwxApx#OBm#O#P?S#P;'SBm;'S;=`Cf<%lOBm#WCiP;=`<%lBm(rCoP;=`<%l^!Q^$i&j!X7`OY!=yYZ&cZ!P!=y!P!Q!>|!Q!^!=y!^!_!@c!_!}!=y!}#O!CW#O#P!Dy#P#o!=y#o#p!@c#p;'S!=y;'S;=`!Ek<%lO!=y|#X#Z&c#Z#[!>|#[#]&c#]#^!>|#^#a&c#a#b!>|#b#g&c#g#h!>|#h#i&c#i#j!>|#j#k!>|#k#m&c#m#n!>|#n#o&c#p;'S&c;'S;=`&w<%lO&c7`!@hX!X7`OY!@cZ!P!@c!P!Q!AT!Q!}!@c!}#O!Ar#O#P!Bq#P;'S!@c;'S;=`!CQ<%lO!@c7`!AYW!X7`#W#X!AT#Z#[!AT#]#^!AT#a#b!AT#g#h!AT#i#j!AT#j#k!AT#m#n!AT7`!AuVOY!ArZ#O!Ar#O#P!B[#P#Q!@c#Q;'S!Ar;'S;=`!Bk<%lO!Ar7`!B_SOY!ArZ;'S!Ar;'S;=`!Bk<%lO!Ar7`!BnP;=`<%l!Ar7`!BtSOY!@cZ;'S!@c;'S;=`!CQ<%lO!@c7`!CTP;=`<%l!@c^!Ezl$i&j(Z!b!X7`OY&}YZ&cZw&}wx&cx!^&}!^!_'}!_#O&}#O#P&c#P#W&}#W#X!Eq#X#Z&}#Z#[!Eq#[#]&}#]#^!Eq#^#a&}#a#b!Eq#b#g&}#g#h!Eq#h#i&}#i#j!Eq#j#k!Eq#k#m&}#m#n!Eq#n#o&}#o#p'}#p;'S&};'S;=`(l<%lO&}8r!GyZ(Z!b!X7`OY!GrZw!Grwx!@cx!P!Gr!P!Q!Hl!Q!}!Gr!}#O!JU#O#P!Bq#P;'S!Gr;'S;=`!J|<%lO!Gr8r!Hse(Z!b!X7`OY'}Zw'}x#O'}#P#W'}#W#X!Hl#X#Z'}#Z#[!Hl#[#]'}#]#^!Hl#^#a'}#a#b!Hl#b#g'}#g#h!Hl#h#i'}#i#j!Hl#j#k!Hl#k#m'}#m#n!Hl#n;'S'};'S;=`(f<%lO'}8r!JZX(Z!bOY!JUZw!JUwx!Arx#O!JU#O#P!B[#P#Q!Gr#Q;'S!JU;'S;=`!Jv<%lO!JU8r!JyP;=`<%l!JU8r!KPP;=`<%l!Gr>^!KZ^$i&j(Z!bOY!KSYZ&cZw!KSwx!CWx!^!KS!^!_!JU!_#O!KS#O#P!DR#P#Q!^!LYP;=`<%l!KS>^!L`P;=`<%l!_#c#d#Bq#d#l%Z#l#m#Es#m#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#>j_$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#?rd$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#A]f$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!R#AQ!R!S#AQ!S!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#AQ#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Bzc$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Dbe$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q!Y#DV!Y!^%Z!^!_*g!_#O%Z#O#P&c#P#R%Z#R#S#DV#S#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#E|g$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z'Ad#Gpi$i&j(Wp(Z!bs'9tOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!Q%Z!Q![#Ge![!^%Z!^!_*g!_!c%Z!c!i#Ge!i#O%Z#O#P&c#P#R%Z#R#S#Ge#S#T%Z#T#Z#Ge#Z#b%Z#b#c#>_#c#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z*)x#Il_!g$b$i&j$O)Lv(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z)[#Jv_al$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z04f#LS^h#)`#R-v$?V_!^(CdvBr$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z?O$@a_!q7`$i&j(Wp(Z!bOY%ZYZ&cZr%Zrs&}sw%Zwx(rx!^%Z!^!_*g!_#O%Z#O#P&c#P#o%Z#o#p*g#p;'S%Z;'S;=`+a<%lO%Z07[$Aq|$i&j(Wp(Z!b'|0/l$]#t(T,2j(e$I[OX%ZXY+gYZ&cZ[+g[p%Zpq+gqr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$f%Z$f$g+g$g#BYEr#BY#BZ$A`#BZ$ISEr$IS$I_$A`$I_$JTEr$JT$JU$A`$JU$KVEr$KV$KW$A`$KW&FUEr&FU&FV$A`&FV;'SEr;'S;=`I|<%l?HTEr?HT?HU$A`?HUOEr07[$D|k$i&j(Wp(Z!b'}0/l$]#t(T,2j(e$I[OY%ZYZ&cZr%Zrs&}st%ZtuEruw%Zwx(rx}%Z}!OGv!O!Q%Z!Q![Er![!^%Z!^!_*g!_!c%Z!c!}Er!}#O%Z#O#P&c#P#R%Z#R#SEr#S#T%Z#T#oEr#o#p*g#p$g%Z$g;'SEr;'S;=`I|<%lOEr",tokenizers:[l,Z,n,P,2,3,4,5,6,7,8,9,10,11,12,13,14,t,new i.uC("$S~RRtu[#O#Pg#S#T#|~_P#o#pb~gOx~~jVO#i!P#i#j!U#j#l!P#l#m!q#m;'S!P;'S;=`#v<%lO!P~!UO!U~~!XS!Q![!e!c!i!e#T#Z!e#o#p#Z~!hR!Q![!q!c!i!q#T#Z!q~!tR!Q![!}!c!i!}#T#Z!}~#QR!Q![!P!c!i!P#T#Z!P~#^R!Q![#g!c!i#g#T#Z#g~#jS!Q![#g!c!i#g#T#Z#g#q#r!P~#yP;=`<%l!P~$RO(c~~",141,340),new i.uC("j~RQYZXz{^~^O(Q~~aP!P!Qd~iO(R~~",25,323)],topRules:{Script:[0,7],SingleExpression:[1,276],SingleClassItem:[2,277]},dialects:{jsx:0,ts:15175},dynamicPrecedences:{80:1,82:1,94:1,169:1,199:1},specialized:[{term:327,get:O=>c[O]||-1},{term:343,get:O=>s[O]||-1},{term:95,get:O=>S[O]||-1}],tokenPrec:15201});var g=Q(15874),m=Q(52704),_=Q(29332),u=Q(47404),x=Q(90365);let Y=[(0,u.Gw)("function ${name}(${params}) {\n ${}\n}",{label:"function",detail:"definition",type:"keyword"}),(0,u.Gw)("for (let ${index} = 0; ${index} < ${bound}; ${index}++) {\n ${}\n}",{label:"for",detail:"loop",type:"keyword"}),(0,u.Gw)("for (let ${name} of ${collection}) {\n ${}\n}",{label:"for",detail:"of loop",type:"keyword"}),(0,u.Gw)("do {\n ${}\n} while (${})",{label:"do",detail:"loop",type:"keyword"}),(0,u.Gw)("while (${}) {\n ${}\n}",{label:"while",detail:"loop",type:"keyword"}),(0,u.Gw)("try {\n ${}\n} catch (${error}) {\n ${}\n}",{label:"try",detail:"/ catch block",type:"keyword"}),(0,u.Gw)("if (${}) {\n ${}\n}",{label:"if",detail:"block",type:"keyword"}),(0,u.Gw)("if (${}) {\n ${}\n} else {\n ${}\n}",{label:"if",detail:"/ else block",type:"keyword"}),(0,u.Gw)("class ${name} {\n constructor(${params}) {\n ${}\n }\n}",{label:"class",detail:"definition",type:"keyword"}),(0,u.Gw)('import {${names}} from "${module}"\n${}',{label:"import",detail:"named",type:"keyword"}),(0,u.Gw)('import ${name} from "${module}"\n${}',{label:"import",detail:"default",type:"keyword"})],T=Y.concat([(0,u.Gw)("interface ${name} {\n ${}\n}",{label:"interface",detail:"definition",type:"keyword"}),(0,u.Gw)("type ${name} = ${type}",{label:"type",detail:"definition",type:"keyword"}),(0,u.Gw)("enum ${name} {\n ${}\n}",{label:"enum",detail:"definition",type:"keyword"})]),d=new x.RY,f=new Set(["Script","Block","FunctionExpression","FunctionDeclaration","ArrowFunction","MethodDeclaration","ForStatement"]);function y(O){return(a,Q)=>{let i=a.node.getChild("VariableDefinition");return i&&Q(i,O),!0}}let w=["FunctionDeclaration"],k={FunctionDeclaration:y("function"),ClassDeclaration:y("class"),ClassExpression:()=>!0,EnumDeclaration:y("constant"),TypeAliasDeclaration:y("type"),NamespaceDeclaration:y("namespace"),VariableDefinition(O,a){O.matchContext(w)||a(O,"variable")},TypeDefinition(O,a){a(O,"type")},__proto__:null},b=/^[\w$\xa1-\uffff][\w$\d\xa1-\uffff]*$/,z=["TemplateString","String","RegExp","LineComment","BlockComment","VariableDefinition","TypeDefinition","Label","PropertyDefinition","PropertyName","PrivatePropertyDefinition","PrivatePropertyName","JSXText","JSXAttributeValue","JSXOpenTag","JSXCloseTag","JSXSelfClosingTag",".","?."];function j(O){let a=(0,g.mv)(O.state).resolveInner(O.pos,-1);if(z.indexOf(a.name)>-1)return null;let Q="VariableName"==a.name||a.to-a.from<20&&b.test(O.state.sliceDoc(a.from,a.to));if(!Q&&!O.explicit)return null;let i=[];for(let Q=a;Q;Q=Q.parent)f.has(Q.name)&&(i=i.concat(function O(a,Q){let i=d.get(Q);if(i)return i;let r=[],e=!0;function $(O,Q){let i=a.sliceString(O.from,O.to);r.push({label:i,type:Q})}return Q.cursor(x.Qj.IncludeAnonymous).iterate(Q=>{if(e)e=!1;else if(Q.name){let O=k[Q.name];if(O&&O(Q,$)||f.has(Q.name))return!1}else if(Q.to-Q.from>8192){for(let i of O(a,Q.node))r.push(i);return!1}}),d.set(Q,r),r}(O.state.doc,Q)));return{options:i,from:Q?a.from:O.pos,validFor:b}}function q(O,a,Q){var i;let r=[];for(;;){let e=a.firstChild,$;if((null==e?void 0:e.name)=="VariableName")return r.push(O(e)),{path:r.reverse(),name:Q};if((null==e?void 0:e.name)!="MemberExpression"||(null==(i=$=e.lastChild)?void 0:i.name)!="PropertyName")return null;r.push(O($)),a=e}}function R(O){let a=a=>O.state.doc.sliceString(a.from,a.to),Q=(0,g.mv)(O.state).resolveInner(O.pos,-1);if("PropertyName"==Q.name)return q(a,Q.parent,a(Q));if(("."==Q.name||"?."==Q.name)&&"MemberExpression"==Q.parent.name)return q(a,Q.parent,"");if(z.indexOf(Q.name)>-1)return null;if("VariableName"==Q.name||Q.to-Q.from<20&&b.test(a(Q)))return{path:[],name:a(Q)};if("MemberExpression"==Q.name)return q(a,Q,"");else return O.explicit?{path:[],name:""}:null}function h(O){let a=new Map;return Q=>{let i=R(Q);if(!i)return null;let r=O;for(let O of i.path)if(!(r=r[O]))return null;let e=a.get(r);return e||a.set(r,e=function(O,a){let Q=O,i=[],r=new Set;for(let e=0;;e++){for(let $ of(Object.getOwnPropertyNames||Object.keys)(O)){let O;if(!(!/^[a-zA-Z_$\xaa-\uffdc][\w$\xaa-\uffdc]*$/.test($)||r.has($))){r.add($);try{O=Q[$]}catch(O){continue}i.push({label:$,type:"function"==typeof O?/^[A-Z]/.test($)?"class":a?"function":"method":a?"variable":"property",boost:-e})}}let $=Object.getPrototypeOf(O);if(!$)return i;O=$}}(r,!i.path.length)),{from:Q.pos-i.name.length,options:e,validFor:b}}}let W=g.bj.define({name:"javascript",parser:X.configure({props:[g.Oh.add({IfStatement:(0,g.mz)({except:/^\s*({|else\b)/}),TryStatement:(0,g.mz)({except:/^\s*({|catch\b|finally\b)/}),LabeledStatement:g._Y,SwitchBody:O=>{let a=O.textAfter,Q=/^\s*\}/.test(a),i=/^\s*(case|default)\b/.test(a);return O.baseIndent+(Q?0:i?1:2)*O.unit},Block:(0,g.Ay)({closing:"}"}),ArrowFunction:O=>O.baseIndent+O.unit,"TemplateString BlockComment":()=>null,"Statement Property":(0,g.mz)({except:/^\s*{/}),JSXElement(O){let a=/^\s*<\//.test(O.textAfter);return O.lineIndent(O.node.from)+(a?0:O.unit)},JSXEscape(O){let a=/\s*\}/.test(O.textAfter);return O.lineIndent(O.node.from)+(a?0:O.unit)},"JSXOpenTag JSXSelfClosingTag":O=>O.column(O.node.from)+O.unit}),g.b_.add({"Block ClassBody SwitchBody EnumBody ObjectExpression ArrayExpression ObjectType":g.yd,BlockComment:O=>({from:O.from+2,to:O.to-2}),JSXElement(O){let a=O.firstChild;if(!a||"JSXSelfClosingTag"==a.name)return null;let Q=O.lastChild;return{from:a.to,to:Q.type.isError?O.to:Q.from}},"JSXSelfClosingTag JSXOpenTag"(O){var a;let Q=null==(a=O.firstChild)?void 0:a.nextSibling,i=O.lastChild;return!Q||Q.type.isError?null:{from:Q.to,to:i.type.isError?O.to:i.from}}})]}),languageData:{closeBrackets:{brackets:["(","[","{","'",'"',"`"]},commentTokens:{line:"//",block:{open:"/*",close:"*/"}},indentOnInput:/^\s*(?:case |default:|\{|\}|<\/)$/,wordChars:"$"}}),G={test:O=>/^JSX/.test(O.name),facet:(0,g.p9)({commentTokens:{block:{open:"{/*",close:"*/}"}}})},v=W.configure({dialect:"ts"},"typescript"),V=W.configure({dialect:"jsx",props:[g.Q0.add(O=>O.isTop?[G]:void 0)]}),U=W.configure({dialect:"jsx ts",props:[g.Q0.add(O=>O.isTop?[G]:void 0)]},"typescript"),L=O=>({label:O,type:"keyword"}),A="break case const continue default delete export extends false finally in instanceof let new return static super switch this throw true typeof var yield".split(" ").map(L),M=A.concat(["declare","implements","private","protected","public"].map(L));function E(O={}){let a=O.jsx?O.typescript?U:V:O.typescript?v:W,Q=O.typescript?T.concat(M):Y.concat(A);return new g.Yy(a,[W.data.of({autocomplete:(0,u.Ar)(z,(0,u.et)(Q))}),W.data.of({autocomplete:j}),O.jsx?J:[]])}function C(O,a,Q=O.length){for(let i=null==a?void 0:a.firstChild;i;i=i.nextSibling)if("JSXIdentifier"==i.name||"JSXBuiltin"==i.name||"JSXNamespacedName"==i.name||"JSXMemberExpression"==i.name)return O.sliceString(i.from,Math.min(i.to,Q));return""}let I="object"==typeof navigator&&/Android\b/.test(navigator.userAgent),J=_.Lz.inputHandler.of((O,a,Q,i,r)=>{if((I?O.composing:O.compositionStarted)||O.state.readOnly||a!=Q||">"!=i&&"/"!=i||!W.isActiveAt(O.state,a,-1))return!1;let e=r(),{state:$}=e,t=$.changeByRange(O=>{var a;let{head:Q}=O,r=(0,g.mv)($).resolveInner(Q-1,-1),e;if("JSXStartTag"==r.name&&(r=r.parent),$.doc.sliceString(Q-1,Q)!=i||"JSXAttributeValue"==r.name&&r.to>Q);else if(">"==i&&"JSXFragmentTag"==r.name)return{range:O,changes:{from:Q,insert:""}};else if("/"==i&&"JSXStartCloseTag"==r.name){let O=r.parent,i=O.parent;if(i&&O.from==Q-2&&((e=C($.doc,i.firstChild,Q))||(null==(a=i.firstChild)?void 0:a.name)=="JSXFragmentTag")){let O=`${e}>`;return{range:m.OF.cursor(Q+O.length,-1),changes:{from:Q,insert:O}}}}else if(">"==i){let a=function(O){for(;;){if("JSXOpenTag"==O.name||"JSXSelfClosingTag"==O.name||"JSXFragmentTag"==O.name)return O;if("JSXEscape"==O.name||!O.parent)return null;O=O.parent}}(r);if(a&&"JSXOpenTag"==a.name&&!/^\/?>|^<\//.test($.doc.sliceString(Q,Q+2))&&(e=C($.doc,a,Q)))return{range:O,changes:{from:Q,insert:``}}}return{range:O}});return!t.changes.empty&&(O.dispatch([e,$.update(t,{userEvent:"input.complete",scrollIntoView:!0})]),!0)});function D(O,a){return a||(a={parserOptions:{ecmaVersion:2019,sourceType:"module"},env:{browser:!0,node:!0,es6:!0,es2015:!0,es2017:!0,es2020:!0},rules:{}},O.getRules().forEach((O,Q)=>{var i;(null==(i=O.meta.docs)?void 0:i.recommended)&&(a.rules[Q]=2)})),Q=>{let{state:i}=Q,r=[];for(let{from:Q,to:e}of W.findRegions(i)){let $=i.doc.lineAt(Q),t={line:$.number-1,col:Q-$.from,pos:Q};for(let $ of O.verify(i.sliceDoc(Q,e),a))r.push(function(O,a,Q){let i=K(O.line,O.column,a,Q),r={from:i,to:null!=O.endLine&&1!=O.endColumn?K(O.endLine,O.endColumn,a,Q):i,message:O.message,source:O.ruleId?"eslint:"+O.ruleId:"eslint",severity:1==O.severity?"warning":"error"};if(O.fix){let{range:a,text:e}=O.fix,$=a[0]+Q.pos-i,t=a[1]+Q.pos-i;r.actions=[{name:"fix",apply(O,a){O.dispatch({changes:{from:a+$,to:a+t,insert:e},scrollIntoView:!0})}}]}return r}($,i.doc,t))}return r}}function K(O,a,Q,i){return Q.line(O+i.line).from+a+(1==O?i.col-1:-1)}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2775.0d98465a.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js deleted file mode 100644 index 8b13b3f9ad..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2793.a25ad8de.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2793"],{88144(h,l,e){e.r(l),e.d(l,{default:()=>s});var i=e(74848);e(47867);let s=h=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:(0,i.jsxs)("g",{fillRule:"evenodd",children:[(0,i.jsx)("path",{fill:"#2d9c4b",d:"M640 480H0V0h640z"}),(0,i.jsx)("path",{fill:"#fff",d:"M410.48 91.74C237.41 141.38 262.07 367.72 424.29 385c-256.94 49.22-293.5-318.86-13.81-293.26"}),(0,i.jsx)("path",{fill:"#b71401",d:"M0 0h640v60H0zM0 420h640v60H0z"}),(0,i.jsx)("path",{fill:"#b71401",d:"M.001 0h60v457.03h-60zM580 0h60v457.03h-60z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2793.a25ad8de.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js deleted file mode 100644 index 9f9fd292d3..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 281.d912a74e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["281"],{54352(c,s,M){M.r(s),M.d(s,{default:()=>h});var t=M(74848);M(47867);let h=c=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...c,children:[(0,t.jsx)("path",{fill:"#006",d:"M640.013 480.02V.03H.003v479.99z"}),(0,t.jsx)("path",{fill:"#fff",d:"M-.006 73.341h76.034L-.006 26.768V.03h43.503L149.86 64.75V.03h59.892v64.72L316.11.03h43.88v26.738L283.58 73.34h76.41v73.37h-76.41l76.41 46.573v26.746h-43.88l-106.36-64.73v64.73h-59.892V155.3L43.497 220.03H-.006v-26.746l76.034-46.574H-.006z"}),(0,t.jsx)("path",{fill:"#ce1126",d:"M331.685.027 211.525 73.39h28.764L359.983.027zM359.998 220.03l-119.822-73.323h28.89l90.932 55.843zM120.38 73.372-.01.009v17.52l91.373 55.843zM120.129 146.686-.013 220.009h28.748l120.16-73.323z"}),(0,t.jsx)("path",{fill:"#ce1126",d:"M-.006 88.56h162.621V.027h35.195V88.56h162.18v42.962H197.81v88.505h-35.195v-88.505H-.005z"}),(0,t.jsx)("path",{fill:"#8fc5ff",stroke:"#fff",strokeWidth:1.112,d:"M399.67 640.77c-.046 16.332-2.623 33.927-23.764 42.308-21.142-8.381-23.719-25.976-23.765-42.308z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#366cc9",stroke:"#000",strokeWidth:1.102,d:"M375.9 683.08c9.584-3.799 15.353-9.493 18.8-16.104-.516.02-1.597-.011-2.064-.043-.52-.034-20.271-2.018-22.61-2.876-2.035-.746-9.799.634-13.423 1.929 3.381 7.032 9.237 13.106 19.297 17.094z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#5d3100",stroke:"#000",strokeWidth:.138,d:"M361.13 672.95c.323-.105.94-.08 1.183-.036.286.052.338.078.442-.234s.338-.234.52-.078.649.078.831-.182c.182-.259.234-.233.416-.052s.26.13.442.078c.182-.051.494-.259.65-.545s.389-.39.519-.234.26.234.442.208.234.156.208.389c-.026.234.078.286.52-.077.39.389.519.233.519-.182s-.103-1.949-.259-2.157-.312-.806-.338-1.274c-.049-.883-.052-.935-1.118-1.481 0-.312-.078-.442-.831-.39.026-.104-.104-.416-.26-.546s-.182-.182-.104-.545c.312.026.65-.026.832-.286s.779-.208 1.143-.052.832.182 1.533.078c.26-.208.702-.442 1.17-.702s.597-.364.623-.728c.067-.933-.26-2.001-.52-2.494-.259-.494-.337-1.118-.701-1.898-.396-.849-.39-1.065-.832-1.585-.121-.143-.26-.26-.286-.545s-.13-.676-.441-.962c-.786-.721-1.092-3.041-1.404-4.756-.179-.983-.052-3.3-.467-3.664-.702-.572-1.04-.468-1.508-.65-.338-.468-.493-1.403-.805-2.235-.494.078-.832.598-1.17.78s-.39.182-.39.65c0 .467-.26 1.117-.727 1.845-.468.727-1.248.52-1.897 1.611-1.43-1.741-1.456-2.235-1.56-2.729-.104-.493-.338-.597-1.143-1.299 0-.208-.104-1.039-.026-1.507-.598-.494-1.04-.416-1.325-.052-.286.364-.494.909-.936 1.117-.265.337-1.064 1.187-1.718 2.199.595 9.044 2.636 18.022 8.773 25.202z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#ff0",stroke:"#fff",strokeWidth:1.08,d:"M399.67 640.77c.018-6.152-.324-12.125-.168-17.359-7.9-3.535-18.295-4.262-23.596-4.262-5.302 0-15.697.727-23.597 4.262.156 5.234-.185 11.207-.168 17.359z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M394.613 297.888c1.166 1.867 3.266 5.075 3.499 6.82.817-1.692 1.458-2.445 1.633-3.495s1.4-3.092.933-4.2-.816-1.983.467-1.166c1.278.816 1.032 2.23.753 4.316-.753 5.711-3.144 6.878-3.494 10.728 3.44 8.102.874 11.019 4.602 18.947.584.35 2.14-.274 2.607-.157 1.978-1.4 3.459-.893 6.254-.31 2.8.584 4.315 2.562 4.315 4.312s0 2.216.584 3.266 1.75 2.683 1.516 3.85c-.233 1.162.233 1.862.583 2.445s-.116 1.867-.466 2.683-.234 1.867 1.166 3.616c1.4 1.746 4.661 9.095 4.661 13.407 0 4.316.233 6.299 1.983 7.111 1.75.817 2.333 1.517 2.1 3.383s.816 11.544 1.05 13.06.816 1.167 1.516 1.984c.695.812 1.162 1.745 3.495 1.745s4.584-.31 6.1-.076c2.1 2.916 3.383 6.878 3.85 9.328s.426 5.792 1.243 5.792 1.633.117 1.4-2.916-.467-3.5-1.517-5.012c-1.05-1.516-1.633-2.216-1.05-3.15s.7-2.45.467-3.616-.583-2.912 1.4-.583c1.982 2.333 2.566 2.916 3.149 3.733s.812 2.333.7 3.733c-.117 1.395.112 1.979.928 1.279.817-.696 1.866.466 1.4 1.983s.117 2.45 1.516 2.916 1.983.817 2.333 1.867 1.516 1.512 1.516-.584c0-2.1-.816-6.532-1.4-7.928-.582-1.4-1.049-4.433-1.166-6.182s-.466-2.212-1.283-2.562-1.516-.934-1.633-1.75-.816-1.108-1.341-1.108-.987-.409-1.279-.992-.583-.641-1.166-.7-1.516.292-1.808-.641-.7-2.275-1.283-3.033-1.108-.992-1.166-3.612c-.059-2.625-.117-2.975-.934-3.908s-2.216-3.379-2.799-4.429c-.579-1.05-1.162-2.1-1.162.117 0 2.212 0 3.379 1.395 4.195 1.4.817 1.75.817 1.167 1.983s0 1.983.233 2.8.7 1.633 0 2.445c-.7.817-1.4.584-1.283-.695.117-1.283-.35-2.8-.929-3.85-.583-1.05-1.05-1.75-1.75-1.166s-1.282-.117-.816-.584.35-.816 0-1.166-.466-.7.117-1.4.583-1.05.233-2.679c-.35-1.633-2.916-9.794-4.082-11.66s-1.05-3.267.466-1.4 2.8 3.5 2.916 5.011c.117 1.517.467 2.45.933 3.033s.817.35 1.05-.933 1.167-.816-.466-3.262c-1.633-2.45-4.666-6.532-5.832-13.877s-1.633-12.244-2.8-14.223c-1.162-1.983-1.512-2.45-1.628-4.316s0-3.733-.817-5.128c-.816-1.4-1.4-1.634-1.516.466-.117 2.095.116 6.762.7 7.578s.233 2.912.116 4.079-1.951 2.32 1.867 4.666c1.516.933 1.278 2.216 1.05 3.033-.234.812-.467.695-1.284-.583-.816-1.284-1.633-2.334-2.45-3.033s-.932-1.167-.816-2.8.467-2.8 0-3.379c-.466-.583-.7-.116-.933.812-.233.934-.466 3.5-.933 4.2s-.7.233-1.05-1.283.117-3.845.933-6.528 1.283-5.483.584-8.978c-.7-3.5-.35-4.55-3.033-7.462-2.678-2.916-5.711-5.716-6.994-9.327-1.283-3.617-1.516-6.766-2.916-8.4-1.395-1.628-3.378-3.728-4.661-4.311v-5.362c0-1.283-.583-2.1-2.1-1.866s-2.45 1.516-3.378 3.261c-.933 1.75-1.633.934-2.916 3.967s-3.15 4.545-3.15 7.811"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M403.047 332.077c.933.583 1.826.973 3.225.273s3.073-2.719 4.94-.735c1.862 1.978 2.911 5.245 2.911 7.81 0 2.563 0 7.346 2.916 10.029 2.916 2.678 4.428 5.478 4.545 8.978.116 3.495 1.4 8.86 1.75 10.26.35 1.396 1.166 3.03 2.099 3.962s1.633 3.617 1.75 6.412c.116 2.8-.35 4.783 0 6.183s0 2.566-1.05 1.866-1.283-1.05-1.866-2.216-1.283-.934-.7.816 2.333 3.379 3.849 3.379 1.983.233 2.916 1.166c.929.933 1.045 1.4 2.678 1.4s1.866 0 3.383.467 1.516.233 2.333 0 1.628.466 2.211 1.983 1.983 5.711 1.983 6.878 0 2.333.817 3.5.583 2.333-.35 1.633-.933-.467-1.633-.35-1.167-.234-2.095-.817c-.933-.583-.35-.466-1.283-1.866s-1.517-1.867-1.517-.817-.116 2.333-.816 1.75-1.05-.583-1.633 0-.817 1.05-1.516-.117-1.517-1.166-2.217-1.4-.7-.233-1.045-1.283c-.35-1.05-1.4-1.283-2.333-1.283s-1.4-.467-1.516-1.166c-.117-.696-.7-1.163-1.166-1.513s-.234-1.166-.35-1.983-.817-.466-1.283-.7-.817-.116-.817-1.283-.467-1.516-.816-2.333c-.346-.816 0-1.633.233-2.562.233-.933.116-1.516-.579-2.333-.7-.816-.117-1.633-1.983-3.266s-2.8-.233-3.382-4.079c-.584-3.85-1.75-11.777-2.8-13.06s-1.745-2.217-2.795-2.567-1.75-.116-1.866-2.333c-.117-2.212-.816-5.011-2.216-6.411s-1.983-1.867-2.683-2.45-.933-1.633 0-3.612c.933-1.983.583-4.666.467-5.95-.117-1.278-.467-2.911-.234-4.31s.117-3.15-.233-4.084-.816-1.166-.233-1.866M431.13 298.92c-1.579 2.032-3.261 3.733-5.437 5.285-2.176 1.557-4.975 2.8-3.423 5.443 1.557 2.642 2.8 2.956 3.11 4.975.313 2.02.78 3.733 2.332 4.2 1.557.462 2.176.153 2.176 3.419s0 4.509 1.4 5.752 1.242 2.485 1.866 5.442c.619 2.952.619 9.328 2.485 13.68s6.065 12.594 5.599 14.304-1.09 2.952.776 4.971c1.866 2.024 3.109 4.976 3.266 6.685.152 1.714.467 2.333 2.328 1.714 1.867-.624 2.8-1.247 3.423-2.023.62-.777 1.862-.62 3.576.31 1.709.932 4.351 1.866 5.904.932 1.556-.933 2.332-2.328 3.732-2.328 2.176-1.557 2.952-4.823 3.419-5.752.466-.933.157-.933-.777-1.867s-.466-2.49-.623-4.042c-.153-1.557-.776-3.886-2.642-7.309-1.862-3.419-2.952-7.618-4.195-8.704-1.243-1.09-1.866-3.733-2.023-4.976-.153-1.243-1.553-2.333-2.486-3.266-.933-.929-1.866-2.329-2.952-7.771-1.09-5.443-1.866-9.328-1.866-10.261s-.157-1.09-1.09-1.4-1.4-1.867-1.086-2.643c.31-.776-.314-1.552-.623-2.485s0-2.643.623-3.576c.62-.934.467-3.576-.157-5.752s-1.242-4.043-3.732-4.357c-2.486-.31-2.952-.929-3.885-2.952-.933-2.02-1.867-5.595-2.176-6.376-.31-.776-.776-.933-2.642.624-1.867 1.552-2.486 2.068-2.486 4.976 0 1.866.31 2.485.929 3.576.623 1.085.78 1.4 1.247 4.352s3.109 7.618-.314 10.26c-3.419 2.643-2.952 3.267-2.795 5.13.153 1.866-.933 3.108-1.557.466-.619-2.643 0-4.195 1.867-5.438 1.866-1.247 3.575-2.8 2.332-4.51-1.247-1.709-1.709-5.751-1.866-7.618s-.466-2.49-1.557-1.09"}),(0,t.jsx)("path",{fill:"#00b800",d:"M403.406 338.538c-.085 1.265.197 2.656.296 3.773.116 1.283.466 3.966-.467 5.95-.933 1.978-.7 3.028 0 3.611q.06.047.112.094c1.903-.637 2.15-2.76 1.638-3.787-.543-1.085-.386-2.409.233-3.495.624-1.09.624-1.71.08-2.49-.546-.776-.546-.776.077-2.952.548-1.916-.834-1.902-1.97-.704M423.324 368.688c-.35-1.4-1.632-6.766-1.75-10.26-.116-3.5-1.628-6.3-4.544-8.979-2.274-2.095-2.772-5.46-2.88-8.058-1.709-1.045-2.431-.57-2.288 1.373.153 2.095 2.252 3.11 1.943 6.138-.31 3.033-.31 2.257 1.166 3.733s2.019 2.876 1.243 3.5c-.776.619-.857 1.709.233 2.095 1.086.39 1.167 1.557 1.01 2.642-.157 1.09.856 1.324 1.475 2.1.624.776.7 2.643.081 3.733-.623 1.086-.7 2.795.386 1.867 1.09-.934 1.557-.081 2.41 1.395.74 1.274 1.358.875 2.161.489a10 10 0 0 1-.646-1.768M438.488 395.833c-.7 1.4-1.516.933-2.216.233s-1.517-.7-1.167-1.983.234-1.517-.7-2.217q-.16-.118-.323-.224c-.291-.009-.632-.009-1.076-.009-1.633 0-1.75-.466-2.679-1.4a8 8 0 0 0-.574-.52c-.018.224-.009.52-.009.87 0 1.283 0 1.05-1.283 1.4s-1.05-1.283-1.283-2.333a4 4 0 0 0-.202-.628c-1.404-.27-2.884-1.75-3.414-3.334-.583-1.75.117-1.983.7-.816s.817 1.516 1.866 2.216 1.4-.466 1.05-1.866c-.112-.449-.139-.97-.125-1.548-.252-.453-.593-.821-1.041-1.019-1.867-.816-1.283-1.05-1.167-2.566.117-1.512-.233-1.512-1.4-.7-1.166.817-1.282-.117-1.282-2.445 0-2.333-1.517-2.333-1.862-.7-.35 1.633-.933.583-1.633-1.75s-1.633-2.916-1.75-.7c-.099 1.875-.619 2.324-1.84 1.283.216 1.355.405 2.62.557 3.617.583 3.845 1.516 2.445 3.383 4.078s1.283 2.45 1.983 3.266c.695.817.812 1.4.578 2.333-.233.93-.578 1.746-.233 2.562.35.817.817 1.167.817 2.333s.35 1.05.816 1.284c.292.143.668.062.942.179.3-.395.574-.88.924-1.23 1.4-1.4 3.5.117 4.2 1.867s1.511 2.217 2.561.817.7-1.167 1.866.116 1.633 1.05 1.633 1.05 1.167-.466 1.983.234 1.283.583 2.795-1.634c1.516-2.216-.695-1.516-1.395-.116M442.615 331.852c.462-3.418.153-6.837 1.552-8.085 1.4-1.242 3.11-3.728 2.952 1.557-.152 5.286-.31 4.976-1.395 6.219-1.09 1.243-2.023 1.552-.933 3.576 1.086 2.019 1.243 2.176 1.086 5.285-.153 3.11-.153 4.352 1.09 5.909 1.242 1.552 1.552 1.71 1.866 3.419.31 1.71 1.395 4.042 2.795 5.285s2.956 4.819 3.109 7.309c.157 2.486 2.333 3.11 4.351 4.819 2.024 1.71-.462 2.952-2.018 2.176-1.553-.776-.933 0-1.867 1.086-.933 1.09-1.242 1.247-2.018-.62s-3.423-3.109-4.666-3.575-2.328-2.49-3.419-4.51c-.933-1.736-2.78-3.006-4.468-3.136.467 1.31.718 2.338.583 2.827-.466 1.71-1.09 2.952.777 4.971 1.866 2.024 3.108 4.976 3.266 6.685.152 1.714.466 2.333 2.328 1.714 1.866-.623 2.8-1.247 3.423-2.023.619-.777 1.862-.62 3.575.31 1.71.932 4.352 1.866 5.904.932 1.557-.933 2.333-2.328 3.733-2.328 2.175-1.557 2.952-4.823 3.418-5.752.467-.933.157-.933-.776-1.867s-.467-2.49-.624-4.042c-.152-1.557-.776-3.886-2.642-7.309-1.862-3.419-2.952-7.618-4.194-8.704-1.243-1.09-1.867-3.733-2.024-4.976-.152-1.243-1.552-2.333-2.485-3.266-.933-.929-1.866-2.329-2.952-7.771-.852-4.253-1.512-7.551-1.759-9.238-1.117 1.781-1.88 2.216-2.283.996-.467-1.396-1.09-2.176-1.71-1.243-.623.933-.78-.776-.78-1.552 0-.781-.152-.934-.933-.934-.776 0-.153-1.242-.467-3.576-.31-2.333-.776-2.642-1.085.158-.31 2.795-1.867 4.504-1.243 5.128.62.623.31 1.866-.314 3.733-.62 1.862-.31 2.952.157 4.195s-.31 3.576-.624 5.6c-.31 2.018 1.248 4.037 1.714.618M414.217 303.945c-1.152.085-1.942 1.095-1.283 4.626.413 2.185-1.242 1.71-1.861.62-.624-1.087-1.09-3.42-2.333-5.443-1.247-2.02-.624 1.4-.776 3.266-.157 1.866 1.085 1.866 2.176 3.419 1.085 1.557.152 2.18-1.09 2.18s-.62 2.486-.31 4.195-.31 2.024-1.247.624c-.929-1.4-.31-3.576-.153-6.218.153-2.643.31-2.024-1.4-2.643-1.709-.624-1.4-.933-.776-2.49.62-1.553 1.243-2.333.467-3.11-.78-.776-.624-1.242.619-1.4 1.243-.152.78-1.085 1.866-1.4 1.09-.309 1.557.158 1.71-1.861.13-1.687.695-2.724 1.96-2.212.763 2.598 1.754 6.64 2.431 7.847M429.874 322.25c0 3.267 0 4.51 1.4 5.753s1.243 2.485 1.866 5.442c.62 2.952.62 9.328 2.486 13.68.556 1.297 1.323 2.943 2.108 4.657 1.032-.812 1.93-2.207 2.248-2.947.462-1.09-.933-3.267-2.024-5.129-1.085-1.866.157-2.49 1.243-4.823 1.09-2.329-.152-2.486-1.862-3.11-1.713-.618-1.713-2.175-2.646-4.66s-.777-3.577-.153-4.977c.62-1.4.153-2.485-1.09-2.8-1.243-.309-.933-1.242-.467-2.795.467-1.556.776-1.866-1.085-1.4-1.414.35-1.754.615-2.176 1.127.103.448.152 1.072.152 1.983"}),(0,t.jsx)("path",{fill:"#5d3100",d:"M447.774 328.757c-.17 1.866-.157 2.8-.623 3.418-.462.624-.153 1.557.314 2.49s.776 2.177.31 3.886.309 3.11 1.242 3.576 1.4 0 1.09 2.176c-.314 2.176.933 4.51 2.019 5.442 1.09.934 1.866 2.486 1.71 3.42-.153.932.78 1.866 1.865 2.332 1.09.467.934.624.934 1.243 0 .624.466.624 1.709.933s2.176 1.09 3.575 2.8 3.419 2.643 3.11.776 0-3.109-1.867-4.042c-1.862-.934-3.262-5.443-4.042-8.552-.776-3.11-3.262-7.304-4.661-8.08-.157-2.181.157-3.267-1.243-4.357-1.4-1.086-1.866-2.486-1.866-3.576 0-1.086-.776-2.486-1.4-2.795-.619-.314-.933-1.09-.933-2.024s-1.086-.776-1.243.934"}),(0,t.jsx)("path",{fill:"#00d860",d:"M439.52 412.164c2.795-.233 10.376-2.45 11.188-3.15 1.867 1.284 5.132 3.034 6.532 3.034-2.683.583-4.432.233-5.132-.234.35.817 1.283 2.1 1.866 2.217-2.566-.117-5.477-.7-6.41-1.633-2.217.933-5.95 1.166-8.044-.234M444.544 415.664c.992.292 5.944 1.108 6.586 1.108-1.633 1.396-.233 2.737 2.508 2.504-1.342.175-2.804.682-1.808.875 2.39.466 8.86-1.284 10.143-1.983-2.216 2.858-12.996 5.482-17.429-2.504M448.986 422.753c1.336-.7 4.66-.467 6.235.292-1.75.641-5.186.641-6.235-.292"}),(0,t.jsx)("path",{d:"M453.965 422.663c2.391-.408 9.152 1.225 11.543-.233-.816 2.158-5.074 2.45-6.532 1.983-1.453-.467-2.853-1.05-3.844-.992.525-.291-.35-.35-1.167-.758"}),(0,t.jsx)("path",{fill:"#00d860",d:"M456.433 425.983c1.808.287 8.277-.525 10.26-1.283 2.095.7 6.235 1.804 7.169 1.687-1.983 1.225-5.774.525-6.994 0-3.5 1.167-6.357 1.517-10.435-.404"}),(0,t.jsx)("path",{fill:"#00d860",d:"M459.528 427.06c2.589.583 4.796.166 7.344-.686.794.34 2.665.758 4.423.673 1.171.668 2.746 1.601 4.262 1.718-1.574.642-7.348 0-8.51-.641-2.916.058-7.932.7-9.152 1.691-.058-.817.471-1.952 1.633-2.755"}),(0,t.jsx)("path",{d:"M456.433 413.914c2.018.673 9.326.35 13.054-1.4 1.472-.69 2.383.467.7 1.05-6.06 2.1-10.843 2.917-14.338 1.05-1.381-.736-1.516-1.4.584-.7"}),(0,t.jsx)("path",{fill:"#00d860",d:"M492.233 403.999c-8.977 4.195-14.926 5.478-27.398 1.633-1.162-.36-1.983 0-.7.816 1.283.812 8.16 2.679 9.794 2.795s1.05.875.058 1.167-1.283.992.058.467 8.834-.723 11.893.875c1.337.7 1.687.583 1.57.058s.584-.875 1.575-.992 1.575-.466.817-.758-.875-.467-.292-.758.642-.583-.233-.758-1.458-.409-.642-.817c.817-.404 2.042-.7 2.975-.812.233-.642-.175-2.333.525-2.916"}),(0,t.jsx)("path",{d:"M477.293 405.075c5.133.364 14.576-1.983 19.592-6.878 1.745 1.046 4.194 2.212 5.477 2.445s2.45 1.4.467 1.4-4.782-.816-6.06-1.4c-6.65 4.083-14.429 5.425-19.359 5.017-1.395-.117-1.745-.7-.117-.584"}),(0,t.jsx)("path",{fill:"#00d860",d:"M462.13 377.078c1.75 1.225 4.84 3.262 8.86 2.97 1.983 1.575 5.074 2.917 6.474 3.209-2.683 1.108-5.599 2.041-6.357 2.916-1.225-1.167-2.795-.992-3.203-1.575-1.167.933-.992 1.517-.233 1.983s6.644 1.458 8.102 1.05 1.848.799.641 1.22c-3.15 1.109-9.268.059-11.368-3.32-2.1-3.383-3.907-4.666-9.618-1.575-.642-1.633-.642-2.041-1.75-2.041s-3.15-1.458-1.575-1.4 6.24-.641 10.027-3.437"}),(0,t.jsx)("path",{fill:"#00d860",d:"M463.52 384.571c-.973.242-3.732 1.75-4.719 1.867-.991.116-2.74 1.516-.933 1.574 1.804.059 4.137-1.924 5.42-2.1s1.4-1.633.233-1.34M469.173 390.494c-.69.12-3.67.816-4.486.758s-1.633.175-1.574.758.291.933-.934.817-2.274.35-2.566.7-.525.7.7.816 1.866.233 3.266-.408 2.741-1.633 4.258-1.692c1.511-.058 3.028-2.041 1.336-1.75"}),(0,t.jsx)("path",{d:"M465.001 394.083c1.274.825 7.577 2.975 9.852 2.8s1.848.91.117 1.283c-3.558.754-7.9-.794-10.844-3.15-1.458-1.166-.116-1.575.875-.933"}),(0,t.jsx)("path",{fill:"#00d860",d:"M494.835 397.179c-4.823 1.539-9.736.991-11.718.466s-3.791-.641-2.45.642c1.341 1.279 5.657 2.154 8.102 1.512-8.685 1.983-10.96 1.808-13.113 1.458-2.158-.35-6.209-.274-7.927-.117-1.283.117-3.033-.058-3.79-.524s-.992-1.342 1.282-1.109c2.27.234 2.566-.233.583-.525s-4.724.525-2.04 2.217 8.568-.117 12.3.933c3.728 1.05 11.655 1.808 19.179-4.258.386-.31 1.05-1.162-.408-.695M471.147 390.09c.175.583.175 1.225 0 1.633s-.175.933.584.35 1.224-1.283 1.982-.875 2.683.35 3.554.233c.879-.116 1.166-.291-.113-.816-1.283-.525-2.566-.7-3.266-.642s-1.574-.117-2.157-.35-.759-.117-.584.467"}),(0,t.jsx)("path",{fill:"#00d860",d:"M483.574 392.333c-.991.058-2.74-.583-3.674-.991s-2.27-.467-1.279.874c.987 1.342 5.303 2.1 6.82 1.459s.874-1.342 2.386-.409c1.516.934 3.091 1.575 4.2 1.575s1.515 0 .29-.7-1.807-.875-1.924-1.458-.291-.933.817-.583 2.39.991 3.266.525 2.503-1.517 3.96-1.517l.35-.875c-2.099-.175-3.436.467-4.019.7s-1.633.35-2.74.175-2.567-.291-2.917-.583-.35-.525.583-.7 1.225-.817-.058-.583-4.72.116-6.527-.467c-1.808-.579-2.567-.637-3.325-.35-.758.292-.641 1.108.467 1.167s3.616.291 4.49 1.108.759.875-.233.467-2.8-.175-.933 1.166"}),(0,t.jsx)("path",{fill:"#00d860",d:"m498.782 390.224-.35.875c2.158-.058 7.407.467 9.094 1.517 1.633-1.283 1.341-1.692 2.508-1.458s2.624.641 3.266.291 1.108-.291 1.808-.175c.695.117 2.211-.175 3.086-.7s2.683-1.225 3.733-1.225 2.328-.233.408-.525c-1.925-.291-4.84.292-5.832.642-.987.35-3.961.583-5.711.583s-4.136.875-6.12.35-4.723-.175-5.89-.175"}),(0,t.jsx)("path",{d:"M525.79 389.192c-3.495 2.567-7.695 3.15-12.706 3.5-1.458.103-1.009.516.234.642 5.244.525 11.31-1.4 13.288-3.5.574-.606.511-1.61-.817-.642"}),(0,t.jsx)("path",{fill:"#00d860",d:"M501.968 395.16c1.516.058 6.76 1.4 8.452 1.983 1.283-.117 1.633-.408 1.4-.875s-.409-.992 1.924-.875c2.328.117 7.694.058 8.685.058.817-.35 2.62-1.75 3.437-1.808-2.095.117-10.84.583-11.947.467s-1.691 0-2.391.408-1.108.583-1.983.233-2.45-.816-3.32-.291c-.875.525-2.683.058-4.257.7"}),(0,t.jsx)("path",{fill:"#00d860",d:"M522.425 395.429c.816-.35 2.62-1.75 3.436-1.808 1.516-.117 3.266.525 4.083.641s1.69-.058 1.108-.7-.059-1.75 2.332-1.458c2.387.292 3.612.7 5.945.467s3.382 1.516 7.81-.233c-.35 1.75.467 1.866 1.283 1.516s1.75-.233 3.15.817 9.91 1.166 11.892.816c1.979-.35 3.029.7 1.512 1.167-1.512.466-1.866 1.166-1.512 1.633.346.462.696 1.045-1.166.812-1.866-.233-2.216.35-3.15 1.05s-1.166.933-3.732.467c-2.561-.467-3.028-.117-4.428.116s-1.75.234-3.149-.233-4.428-.933-6.294-.35-3.266 1.166-4.9.7-1.749-.233-.699-1.283 1.283-.934 3.266-1.167c1.983-.229 3.5-.812 2.1-1.629s-1.867-.7-3.733.234-2.8 1.512-4.894.35c-2.1-1.167-3.15-.934-4.55-.584s-3.727-.466-5.71-1.341M529.423 398.929c-2.67.38-3.387-1.337-6.177-.988-.934.117-2.508 1.28-.35 1.104 2.153-.175 4.486.992 6.585.817s1.167-1.108-.058-.933M526.328 400.948c1.404-.512 4.315.466 5.54.233s2.391.525 1.108.933-4.374-.758-5.774-.35-2.794-.117-.874-.816M498.468 408.485c1.925.063 8.86-.233 11.602-6.061.21-.449.408-.642 1.283-.059s4.082 2.508 10.085 3.033c1.682.148 3.499.992.116.759s-8.743-1.167-10.551-2.275c-3.033 4.778-8.48 5.344-12.535 5.245-2.445-.059-1.861-.7 0-.642"}),(0,t.jsx)("path",{fill:"#00d860",d:"M513.452 400.544c-.933 1.283-4.14 3.5-5.599 3.616-1.453.117-5.827-.292-6.935-.7s-2.45-.292-.875.817 5.482 1.866 7.052 1.516c1.575-.35 3.383-.875 4.608-.116s3.499 2.211 4.836 1.92c1.341-.287 4.082-.287 4.957.117.875.408 2.391 1.633.117.933s-4.141-.117-5.19-.584c1.166 1.634 3.812 4.258 6.064 4.258.525 0 .875.934-.233 1.459 1.108.524 3.67.933 5.011-.292-.35.467-.175.758.408 1.05s1.284.7.234.816-3.437.409-4.136.117c2.27 1.454 8.16 3.787 14.162 2.62 1.144-.22 1.75-.695-.116-.641-3.85.116-4.078.058-4.778-.346-.7-.413-.583-.758.525-1.108 1.103-.35 3.903-.758 5.07-.758s2.332-.467-.059-.467-5.303 0-6.47-.408-2.04-.933-.816-1.75 2.508-.583 3.091-1.342c-3.849-.058-8.573-2.1-5.948-3.961.61-.436.408-.467-.584-.584s-3.903-.933-5.127-1.633-.409-1.283.583-1.458c-2.275.408-6.824-.816-9.852-3.091M547.637 400.454c-2.1 1.575-6.06 2.216-7.752 2.216s-1.925.584-.583.759 2.8.35 3.382.175.933-.234 1.804.175c.875.408 2.74.641 4.374.116s4.311-.758 5.42-.7 2.332.117.116-.525c-2.212-.641-5.828-.175-6.703.059s-3.266.058-1.982-.35 2.39-1.05 3.032-1.575c-.466-.117-.758-.233-1.108-.35M546.56 404.986c-1.808 1.341-4.427 2.62-7.11 2.736 2.45.875 4.49 3.383 6.06 3.267-.758.466-1.686 1.166-2.678 1.283 1.517.408 4.078-.058 6.178-1.225 3.5.992 8.044.35 9.56-.933-2.275 0-5.011-.817-6.236-1.867 1.108 0 2.154-.7 2.678-1.337-2.62.463-7.11-.816-8.452-1.924"}),(0,t.jsx)("path",{fill:"#00d860",d:"M542.837 412.299c.991-.117 1.92-.817 2.678-1.283-1.92.641-10.318-.7-12.821-2.917-2.508-2.212-2.508-.525-.759 1.05s4.837 3.966 10.902 3.15M548.983 417.638c-1.05.583-6.06.933-7.694.583s-2.333-.175-1.924.467.583 1.225-.759 1.05-3.732.117-4.72.466c-.99.35-2.215 1.225-.116.875 2.095-.35 4.02-.758 5.595-.35s7.168.525 8.277.059.35-.467-.175-.467-.759-.35 0-.7 1.341-1.341 1.516-1.983M500.487 410.863c-2.1.933-9.093 2.8-10.96 2.917-2.332 1.05-4.194 1.633-5.36 1.633.816.7 3.96 1.395 5.244 1.05-.7.695-2.329 1.512-2.912 1.862 1.862-.234 4.078.233 5.011.35-2.45 1.4-5.827 1.866-7.577 1.633.583.816 1.4 1.633 2.45 1.633-2.217.583-4.9.583-6.3.116.584 1.167 1.167 1.867 1.984 1.984-1.866.233-4.2.583-6.178-.584 1.512 1.983 4.895 2.679 9.91 2.1 5.011-.583 9.21-2.8 10.377-3.733-2.1.233-4.899.35-6.299.117 2.8-.7 8.86-3.266 9.91-4.316-1.166 0-2.328-.35-3.149-.934 1.633.234 7.348-.462 9.098-1.162-2.1-.466-3.383-1.75-3.966-2.566 7.344 2.333 15.518 1.57 19.47.583.933-.233 1.046-1.418-.816-1.283-3.266.233-9.56-.7-11.193-1.516 1.516 1.166 3.382 1.866 4.665 2.1-3.032.816-7.227 1.4-13.409-1.984"}),(0,t.jsx)("path",{fill:"#00d860",d:"M486.49 418.356c.583-.35 2.212-1.167 2.912-1.862-1.283.345-4.428-.35-5.245-1.05 1.167 0 3.029-.583 5.361-1.633-4.194-.117-7.11-.117-8.627-.933s-4.31-.584-5.36-.35-.7 1.983 3.727 1.516c-1.866 1.283-6.877 1.75-8.743 1.283.466 1.512.816 3.029.35 3.846 2.45 1.4 8.86 3.15 12.01 2.916-2.8-1.05-4.316-2.217-1.984-2.45s3.616-.7 5.6-1.283"}),(0,t.jsx)("path",{d:"M479.267 425.938c5.581-.466 13.055-.565 19.004-5.599 1.516-1.283 2.535-.852 1.05.467-3.145 2.8-10.96 6.644-18.42 6.761-3.038.05-4.429-1.4-1.634-1.629"}),(0,t.jsx)("path",{fill:"#00d860",d:"M521.079 416.696c-1.4.525-5.307 1.166-6.47.991-1.166-.175-2.857-.233-3.79.35s-.992.934.291 1.05 2.916.234 3.733.175c-1.05.584-1.75 1.4-1.983 1.75 1.866-.467 5.303.35 6.294.933-.758.234-1.633-.058-2.274-.408 3.149 3.325 12.476 3.325 13.992 2.741-.7.525-1.341 1.05-2.041 1.225 2.624.467 5.653.409 8.627-1.341-.992.175-3.961-.117-4.72-.175a5.6 5.6 0 0 1 2.27-1.342c-1.161-.233-4.836-.116-5.71.35.35-.7.991-1.575 1.69-1.866-4.607 0-10.2-.059-12.242-1.167 3.266.35 6.882-1.575 8.394-1.575-2.562-.058-5.361-.641-6.061-1.691M509.37 419.253c-2.275.467-5.711 1.4-6.644 1.925s-1.925.817.116.817 7.578.233 8.802.408c-3.09-.467-7.285-.583-8.102-.583s-1.75-.059-.233-.525 3.5-1.517 6.06-2.042M504.749 424.682c.812 0 4.37 0 5.77-1.225 1.457 1.109 4.257 2.679 6.06 2.679 1.808 0 1.633.467.058.641-1.57.175-4.66-.753-6.235-1.92-2.1.758-3.845.117-5.653-.175M477.742 440.386c3.611 1.4 8.394 2.45 11.889 1.283 1.982 1.75 6.065 1.866 8.277 1.4 2.216-.467 4.199-.7 6.648.116 2.445.817 7.46.875 8.86 2.037-1.283.063-4.024 0-4.665.18-.642.17-.292.579.875 1.22-3.962-.233-10.785 1.458-12.88 3.266.753-1.808 3.086-4.257 6.76-4.257-2.1-.754-8.802-.812-10.96.525-.641-.7-1.4-1.862-1.457-2.329-3.554 2.037-10.552-.875-13.347-3.441M468.5 433.835c4.303-.615 7.232-1.983 8.515-3.266.758.7 3.903 1.4 7.344.35-.7.525-.758 1.516-.466 2.041-2.275.058-6.59 1.167-8.044 1.925-1.458.754-5.716 1.279-7.11.52-1.4-.753-1.459-1.395-.238-1.57"}),(0,t.jsx)("path",{fill:"#00d860",d:"M483.888 432.983c-2.274.058-6.59 1.166-8.044 1.924.292.584.467 1.512.525 2.154 4.195-1.516 13.813-2.445 17.488-1.862-1.75.117-5.074 1.92-6.936 2.154 4.544-.35 8.977.583 10.139.875 1.166.291 1.4 1.166.525 1.983s-1.279.933.583.991c1.866.059 5.715-.175 7.465-1.866-.7-.758-2.508-.467-3.033-.992 1.225-.408 2.625-1.283 3.15-1.925-3.15-.058-4.316-.116-5.366-.35-1.05-.228-1.808-.524-.525-1.22 1.283-.7 1.866-1.283 2.275-1.75-2.275.642-5.828 1.167-8.802-1.166 1.108.291 3.728.116 4.66-.292-.99-.525-1.803-.933-2.62-.933 2.388-1.167 7.111-2.217 12.94.116 2.915-.233 6.064-.116 8.276.467.933-.933 2.916-3.15 3.966-3.733-6.877.583-19.237-.7-19.004-4.312-2.216 2.912-7.344 4.545-9.56 4.079-.233 1.05.7 2.333 1.517 3.033-2.333.466-6.299.816-8.16.466 1.049 1.05 3.027 1.984 4.194 1.867-2.445 0-3.728.467-5.653.292"}),(0,t.jsx)("path",{fill:"#00d860",d:"M498.154 441.193c1.867.059 5.716-.175 7.465-1.866-.7-.758-2.507-.467-3.032-.992 1.224-.408 2.624-1.283 3.149-1.925 4.894-.403 9.268-.17 11.364-.812 2.1-.641 7.465-.291 8.514-.583-4.665.754-5.598 1.162-5.832 1.92s1.517 1.4 2.625 1.4c-2.1-.116-4.724 2.1-4.958 2.975-2.794-1.633-4.136.292-4.427.933-1.167-.466-5.016-.35-6.999 1.342-2.562-.759-4.253-1.167-6.819-.759 1.575-.35 1.283-1.4-1.05-1.633M520.54 427.554c1.575-.059 5.012.116 6.236-.059-.816.409-1.862 1.167-2.095 1.517 3.962-.467 9.38-.758 10.956-.525-1.92-.292-3.903.933-4.895 1.575s-.408 1.05.933 1.225 3.15 1.224.7.875-7.286-.35-8.452-.175-1.808-.409-.117-.642 2.854-.817 3.67-1.283c-1.4.35-4.078.35-4.894.116s-1.342-.7-.409-.933.292-.583-.7-.466-3.499 1.166-4.898 2.508c1.516-1.575 2.857-2.975 3.965-3.733"}),(0,t.jsx)("path",{d:"M502.775 430.2c1.925 2.159 4.195 3.384 7.81 3.5.759.023 2.172 1.041.35 1.109-4.898.175-7.343-.992-9.501-4.142-.444-.646.377-1.547 1.341-.466M531.98 389.417c2.575 1.216 7.752 2.274 11.777 2.1.7-.032 2.108.717.345.874-4.545.409-8.627-.228-12.413-2.333-1.05-.583-.7-1.108.291-.641"}),(0,t.jsx)("path",{fill:"#00d860",d:"M534.582 389.372c3.962-.117 6.936-.058 8.16 1.108 2.27-.7 6.353-1.108 7.286-.933s1.983-.233-.175-.758c-2.158-.52-7.169-.696-8.743-.404-1.575.287-6.474.462-8.102.287.7.117 1.162.233 1.574.7M549.97 390.942c1.866-.991 7.227-.058 8.86-.758-1.166 1.4 3.733 1.516 7.986.408-1.633 1.05-5.128 1.225-6.644 1.867s-2.333.175-3.5-.35-4.136-1.575-6.702-1.167"}),(0,t.jsx)("path",{fill:"#00d860",d:"M566.838 390.583c-4.253 1.108-9.152.992-7.985-.408-1.633.7-6.994-.233-8.86.758 1.924-1.166 3.382-.233 4.777-2.624.875.179 2.916.296 3.616-.638 1.225.292 3.383.817 4.024 1.454.642.642 1.629-.175.812-1.162 1.925-.7.704.83 5.19-.292.934-.233 3.208-.641 3.966-.7-1.516 1.225-3.324 2.562-5.54 3.612"}),(0,t.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.138,d:"M373.36 664.19c-.017-1.966-.207-18.422-.207-22.226 0-.91-.468-.728-.468 0v22.122c.215.039.505.078.675.104zM380.59 640.77l.812 23.461-.142.188-.471.007-.513-23.656zM387.43 660.58c-.066-2.389-.366-13.448-.482-18.9-.015-.727-.448-.6-.441.026.047 4.391.308 16.672.356 18.887.17 0 .463-.017.567-.013z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.138,d:"m376.6 644.67-6.913-.104c-.389 1.403 1.352 1.377 2.002 1.013.753.572 1.325.52 1.741.052.598.494 1.351.364 1.663.052.832.624 1.689 0 1.507-1.013zM377.12 648.15l-7.069-.026c-1.221 1.169.364 1.741 1.716.935.182.39 1.013.624 1.663.312.598.468 1.351.13 1.741-.26.728.338 1.585.442 1.949-.961zM376.92 652.57l-6.809-.052c-.13 1.221 1.248 1.065 1.793.754.52.805 1.664.623 2.106.155.649.442 1.247.338 1.585-.078.754.65 1.377-.181 1.325-.779zM377.26 656.99l-7.614-.13c-.416 1.299.753 1.533 1.299 1.221.182.754 1.195.494 1.455-.052.39.39.884.182 1.118-.078.104.702.987.728 1.663.13 1.377.962 2.677-.156 2.079-1.091zM384.01 655.17l-6.341-.052c.286 1.299.909 1.637 1.923.883.754.78 2.001.494 2.313.104 1.377 1.118 2.131-.182 2.105-.935zM383.36 650.83l-6.133-.182c.104 1.559 1.585 1.507 2.339.831.572.728 1.585.52 1.949 0 .78.78 2.053.312 1.845-.649zM384.17 645.94h-6.601c.078 1.091 1.533 1.715 2.651.676.311 1.247 1.507.857 2.027.363.753.962 2.494-.129 1.923-1.039zM383.78 642.62l-5.899.078c-.104.961 1.299 1.377 1.819.597.286.494 1.273.442 1.559-.026.468.728 1.04.234 1.221 0 .676.494 1.404.26 1.3-.649zM390.69 644.77l-7.225-.078c-.026.753.754 1.065 1.221.753 0 .728 1.014.962 1.664.39.442.624 1.741.806 2.261-.052 1.065.884 2.209.26 2.079-1.013zM390.59 650.7l-7.069-.026c.052.987 1.195 1.325 1.845.805.156.832 1.04.884 1.559.468.624.702 1.664.754 2.235-.026.858.312 1.508-.416 1.43-1.221zM390.22 656.03l-5.588-.078c0 .988 1.17 1.118 1.69.598.545.65 1.377.65 1.845.13.753.65 1.897.468 2.053-.65z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{stroke:"#000",strokeWidth:.138,d:"M381.26 664.42c-3.014.052-6.081.052-8.16-.26s-2.734-.604-4.158-1.455c-2.131-1.273-2.651-1.585-5.665-3.352-.462-.271-.963.065-.312.493 3.04 2.001 4.192 2.743 5.639 3.691 1.507.987 2.479 1.864 3.404 2.91 1.196 1.352 2.079 1.378 2.625 1.17s1.404-.494 2.261-.286 2.001.234 2.599.13c.546.494 1.793.39 2.495.234.701-.156 1.221-.234 1.715-.13s1.247.026 1.741-.052 1.793-.208 2.703-.078 1.845.052 2.443-.13c.597-.182 1.689-.13 2.053-.026.519-.39.779-.884.909-1.403.611-.078.814-.154.949-.507.247-.65.48-1.287.559-1.572h.246l.078-.585-.506-.585.182-1.117.545-.13c.026-.338-.13-.858-.234-1.066-3.274.13-6.484.234-8.783.286-.26.208-.546.754-.598 1.092-1.403.233-2.235.337-2.599.415s-.567.107-.857.494c-.468.624-.91 1.351-1.274 1.819z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{stroke:"#000",strokeWidth:.138,d:"M391.78 660.45c.159-.551.584-2.035 1.354-4.84.129-.468-.325-.653-.493-.052-.916 3.275-1.262 4.503-1.378 4.912.176-.003.428-.022.517-.02z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.138,d:"M396.85 654.96c-1.105.571-1.638.792-2.144.597-.466-.179-1.151-.28-1.552-.083a.5.5 0 0 1-.021.135 493 493 0 0 1-1.048 3.768c.818.289 2.227.328 2.556-.025.337-.364 1.26-.286 1.728-.26.299-.39.416-.871.338-1.105s-.052-.649.065-.974.273-1.378.078-2.053z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.138,d:"M371.69 645.58c-1.222 3.534-5.458 11.461-8.014 14.014M365.64 660.75c2.901-2.244 10.236-9.528 11.483-12.594",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.138,d:"M370.11 652.52c-.337 2.677-1.11 7.452-1.526 9.973",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.138,d:"M371.24 658.48c-.987.962-2.387 2.641-3.427 3.551M380.54 653.14c-.831.805-1.78 1.744-2.611 1.978M381.02 653.27c.731.779 1.77 1.659 2.628 1.893M380.45 648.96c-.753.649-1.871 1.413-2.884 1.699M380.88 649.11c.65.546 1.342 1.342 2.173 1.706M377.72 645.94c.805-.234 2.004-.858 2.628-1.507M380.71 644.31c.705.805 2.056 1.455 2.732 1.637M377.88 642.7c.831-.182 1.861-.624 2.407-1.404M380.6 641.08c.701.598 1.933 1.462 2.738 1.54M386.53 643.41c-.451.468-1.556 1.309-2.257 1.296M386.99 643.37c.325.52 1.144 1.316 1.612 1.381M383.8 650.67c.909-.312 2.183-1.056 2.82-1.823M387.12 648.91c.266.48 1.28 1.565 1.852 1.786M384.88 655.95c.416-.09 1.547-.652 1.858-1.315M387.26 654.27c.429.533 1.481 1.507 2.131 1.741M370.58 656.87c1.273-.403 3.846-1.965 5.12-3.447",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.138,d:"M373.26 655.3c1.065.753 2.303 1.507 3.251 1.676M370.34 652.52c.702-.299 1.624-.809 2.339-1.549M373.22 650.87c.286.402 2.388 1.686 3.284 1.699M372.68 646.72c-.546.441-1.858 1.234-2.495 1.403M373.18 646.75c.728.506 2.167 1.4 3.154 1.4M372.68 642.66c-.585.662-1.572 1.685-2.391 1.919M373.15 642.81c.455.728 1.673 1.712 2.466 1.842M383.67 647.18c1.822 3.359 5.201 7.465 8.618 9.622M378.2 643.46c2.767 3.976 8.199 12.695 13.367 15.914",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.138,d:"M392.52 655.97a18.4 18.4 0 0 1-4.795 4.607",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.138,d:"M392.21 657.07c-1.741-2.78-2.641-6.295-3.943-10.924M374.15 658.51l2.144 5.899M373.75 658.37l1.896 6.017M373.34 658.09l1.76 6.262M373.16 658.19l1.359 6.128M374.47 664.1h1.699M375.95 663.46h-1.602M375.77 662.96h-1.546M375.59 662.46h-1.475M375.39 661.92h-1.404M373.89 661.44h1.332M373.79 661h1.264M373.68 660.52h1.202M373.59 660.09h1.134M373.49 659.65h1.078M373.4 659.24h1.02M373.3 658.86h.991M373.24 658.54h.923M371.57 658.55l-1.208 4.932M371.92 658.46l-1.037 5.21M372.2 658.27l-.839 5.549M372.56 658.16l-.609 5.803M372.68 663.63h-1.923M372.68 663.1h-2.225M372.68 662.55h-2.095M372.68 662.03h-1.965M372.68 661.5h-1.838M372.68 660.91h-1.692M372.68 660.4h-1.569M372.68 659.88h-1.436M372.68 659.38h-1.316M372.68 658.94h-1.212M372.68 658.59h-1.121M372.68 664.09v-5.88M379.15 656.27l-4.029 8.08M379.4 656.14l-3.43 8.254M379.65 656.05l-2.721 8.383M379.82 656.2l-2.116 8.238M377.8 664.06h-2.534M378 663.32h-2.359M378.11 662.72h-2.17M378.32 662.07h-2.053M378.42 661.55h-1.897M378.6 660.95h-1.787M378.78 660.25h-1.618M378.92 659.72h-1.488M379.07 659.11h-1.348M379.18 658.7h-1.247M379.28 658.31h-1.143M379.38 657.91h-1.053M379.47 657.56h-.968M379.56 657.21h-.887M379.66 656.85h-.8M379.74 656.52h-.721M382.36 656.4l1.763 5.58M382.7 656.52l2.139 5.355M383 656.53l2.505 5.237M386.11 661.32l-2.763-4.888M386.11 661.31h-2.192M385.73 660.65h-2.019M385.36 659.99h-1.851M384.98 659.32h-1.688M384.61 658.66h-1.529M384.23 658h-1.36M383.86 657.34h-1.194M383.48 656.67h-1.032M385.74 656.83l-1.725 5.173M386.26 656.6l-1.6 5.303M385.4 661.78l1.174-4.992M386.88 656.96l-.988 4.75M384.22 661.41h1.731M384.44 660.76h1.65M384.65 660.12h1.572M384.86 659.48h1.491M385.08 658.83h1.41M385.3 658.19h1.329M385.51 657.55h1.248M385.72 656.9h1.027M387.67 657.01l.846 3.547M387.98 656.84l1.169 3.697M388.38 656.83l1.275 3.702M388.9 657.03l1.277 3.477M390.06 660.2h-1.638M389.87 659.68h-1.556M389.68 659.16h-1.491M389.49 658.64h-1.43M389.29 658.12h-1.358M389.1 657.6h-1.284M388.91 657.08h-1.218",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#00b800",d:"M479.626 380.309c3.616-2.329 9.794-1.862 12.943.466 3.732-2.095 10.493-1.516 13.643 1.284 4.777-3.262 8.86-3.729 13.52-.584 3.617-2.562 9.211-2.795 13.527.234 4.194-1.984 8.86-3.612 12.938.7-2.445-1.75-7.694-3.267-12.938.816-4.083-4.083-11.193-2.566-13.526.233-3.033-3.616-9.444-4.2-13.293.234-4.194-3.5-10.488-3.617-13.871-.934-2.683-2.1-6.644-3.845-12.943-2.45"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M543.33 375.329c-18.537 3.203-58.935.933-67.795-1.284-3.046-.762-2.216-1.866.35-1.283 10.21 2.32 32 2.333 44.01 1.75 2.332-3.091 6.002-8.336 7.11-9.795s1.597-1.592 3.908-1.983c4.136-.7 6.5-1.076 10.085-1.691.058.466.058 1.05.058 1.4-.292.233-.583.641-.817.758 0 2.391.467 8.22.933 10.32.467-.059 1.05-.234 1.342-.292.816-.234 1.628 1.866.816 2.1"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M573.702 376.226c.668-.018 2.064-.05 2.45-.058.758-.018 1.82-.539 2.287-1.705s1.911-5.479 2.436-7.287l-1.866-2.813c.408-2.32.933-5.465.992-6.106.933-.35 1.92-.7 2.386-.875.117-.525-.112-1.952-.583-2.419-7.985.305-31.883 1.136-36.257 1.194-1.05 0-1.521-.045-1.92 1.458-2.217 8.278.847 19.894 9.21 26.584.583.466 1.319.076.345-.817-1.395-1.283-3.553-3.908-5.011-6.501 1.633-.027 4.944-.08 5.935-.121.476 1.96 1.965 6.097 2.257 6.797s1.01.799.668-.247c-.803-2.45-1.225-5.24-1.574-6.582 1.516-.036 4.374-.009 6.123-.107.085 2.216.319 5.186.377 6.003s.758.875.772-.058c.018-.934.036-4.877.022-6.04 1.974-.053 4.495-.139 5.428-.139-.13 1.261-.372 5.34-.462 5.986-.134.95.364 1.4.597.058s.7-4.478.83-6.066c.79-.023 2.867-.108 3.741-.13-.085 1.243-1.251 5.02-1.601 6.012s.215 1.023.61.085c.413-.96 1.691-4.751 1.808-6.106"}),(0,t.jsx)("path",{d:"M547.233 375.284c-.641-1.284-2.624-5.847-2.8-9.167 1.692-.031 5.923-.112 7.964-.157.3 2.504 1.072 7.897 1.48 9.176-2.386.058-5.302.134-6.644.148M553.783 365.906c.22 1.912 1.22 8.476 1.382 9.234 1.732-.103 5.742-.117 6.438-.175-.072-1.75-.355-8.314-.386-9.247-1.813.05-6.523.166-7.434.188M544.766 357.786c-.323 1.678-.381 5.262-.292 6.792 2.042.04 7.066-.08 7.761-.139-.17-1.74-.444-4.89-.619-6.855-1.664.071-5.742.17-6.85.202M553.11 357.561c.059 1.633.422 5.626.539 6.847 1.763-.05 6.078-.14 7.536-.189-.076-1.494-.314-6.308-.34-6.891-2.342.063-6.25.21-7.735.233M562.352 357.292c.072 1.516.265 5.797.206 6.905 1.87-.05 5.446-.085 6.555-.175.085-1.521.332-5.869.215-6.977-2.1.081-5.446.193-6.976.247M570.606 356.978c0 1.283-.161 5.792-.22 7.017 1.853-.072 6.061-.22 7.156-.247.292-1.503.875-5.406 1.05-7.053-1.75.059-6.707.247-7.986.283M577.83 365.278c-2.392.077-6.237.18-7.538.23-.201 2.951-.57 8.053-.744 9.22 2.104-.046 6.357-.18 7.29-.207.7-1.4 2.216-5.77 2.566-7.112-.525-.816-.933-1.283-1.575-2.13M562.621 365.682c0 1.05.184 8.565.229 9.207 1.368-.045 4.921-.094 5.446-.153.265-2.925.664-8.529.736-9.229-2.423.067-4.8.14-6.411.175M531.666 363.887l-3.037.539c-1.4 2.261-6.586 9.256-7.227 10.072 3.611-.103 9.26-.21 10.619-.34-.1-1.876-.35-9.342-.355-10.27M533.012 363.618c.072 2.392.3 8.763.359 10.454 1.79-.103 5.087-.318 6.429-.435-.31-3.006-.875-10.185-.992-11.06-1.503.274-4.455.794-5.796 1.041"}),(0,t.jsx)("path",{stroke:"#000",strokeWidth:.138,d:"M377.29 656.93c.091.001.103.079-.001.078l-7.678-.095c-.104-.001-.09-.079.001-.078zM383.33 650.78c.091.003.102.081-.002.078l-6.083-.167c-.104-.003-.089-.081.002-.078zM376.91 652.54c.091.001.103.079-.001.078l-6.808-.05c-.104 0-.09-.078 0-.078zM377.11 648.12c.091 0 .104.078 0 .078l-7.121-.037c-.104 0-.09-.078.001-.077zM376.62 644.63c.091.001.102.08-.001.078l-6.919-.104c-.104-.002-.09-.08.001-.078z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.138,d:"M383.78 642.59c.091-.001.105.077.001.078l-5.938.057c-.104.001-.092-.077-.001-.078z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{stroke:"#000",strokeWidth:.138,d:"M384.15 645.91c.091 0 .104.078 0 .078h-6.562c-.104 0-.091-.078 0-.078zM390.59 650.64c.091 0 .104.078 0 .078h-7.072c-.104 0-.091-.078 0-.078zM390.69 644.73c.091.001.103.079-.001.078l-7.225-.071c-.104-.001-.09-.079.001-.078zM384.01 655.12c.091.001.103.079-.001.078l-6.356-.042c-.104-.001-.09-.079.001-.078zM390.22 655.98c.091.001.103.079-.001.078l-5.587-.074c-.104-.001-.089-.079.002-.078z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#ef072d",stroke:"#000",strokeWidth:.138,d:"M395.26 657.05c.157-.349.179-1.151.089-1.455a1.1 1.1 0 0 1-.647-.04 3 3 0 0 0-.341-.106c-.022.402-.168 1.426-.348 1.822-.314.089-.947-.015-1.307-.128l-.262.942a3.45 3.45 0 0 0 1.452-.009c-.035.601-.114 1.148-.439 1.526.531.012 1.006-.066 1.18-.252a.4.4 0 0 1 .053-.048c.245-.41.252-.944.311-1.304.181.013.415-.039.519-.143s.273-.156.442-.143c.154.012.394-.02.699-.143.008-.184.044-.384.107-.558.034-.095.071-.253.102-.444-.387.185-1.25.494-1.61.483z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{stroke:"#000",strokeWidth:.138,d:"M370.46 623.2c-.791.023-2.513.039-2.875.242-.361.204-.52.294.113.407s1.704.414 2.291.776c.587.361 1.079 1.001.917 1.914-.485 2.743.949 5.381 3.027 6.376.201.096.249.169.204.542s-.181.995-.294 1.153-.169.419.192.294c-.248.464-.802 1.391-.971 1.628-1.661-.203-3.016.023-3.141 1.763-.012.17.046.441.305.012.26-.43.554-.837 1.265-.95-.418.644-.553 1.221-.485 1.594.067.373.169.599.35.124.181-.474.514-.918.87-1.187.135-.101.226-.124.124.17s.045.927.249 1.142c.203.214.305.124.248-.226-.056-.351.032-1.084.463-1.312.621-.327 1.152-.158 1.401.272.248.429.463.022.192-.464s-.554-.825-1.006-.859c.396-.701.859-1.549.961-1.718s.26-.249.395-.147c.136.102.226.09.362-.192s.372-1.119.711-1.458c.17-.046.441-.113.542-.204.441.644.836 1.357.938 1.515s.215.226.113.554-.452 1.368-.508 1.594c-1.232.045-1.796.067-2.192.757-.173.301.102.418.396.26.293-.158.711-.294.926-.26.214.034.315.144.101.249-.756.373-1.229.847-1.197 1.503.011.237.109.355.294.034.26-.452.734-.904 1.31-1.029-.034.554.091 1.368.429 1.538.339.169.363-.003.237-.328-.203-.52.008-1.043.26-1.323.531-.588 1.74.226 1.966.43s.432.288.305-.238c-.17-.7-1.164-1.107-2.011-1.22.237-1.142.87-3.448 1.209-4.239.497.271.885-.444 1.717-.136 1.4.52 3.501 1.831 3.863 2.125.361.294.497.226.678.068.18-.158.497 0 .745.045.249.045.475.113.158-.52s-1.084-1.741-2.372-2.6c.768.068 1.808.068 1.808-.135s-1.198-.588-1.695-.633c.475-.113 1.198-.385 1.536-.769.201-.227-.04-.28-.745-.294-2.169-.045-3.253-.028-4.383-.678-1.807-1.04-2.841-2.135-3.728-2.6-.474-.249-.763-.823-.946-1.319-.587-1.583-.558-2.295-1.936-2.815s-2.963.117-3.686.772z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.138,d:"M370.55 623.56c-.351-.013-1.04-.096-1.611-.039-.13.013-.286.078.026.117s1.156.246 1.455.35.169.26-.091.195-.356.031-.143.182c1.105.78 1.222 1.079.936 3.755.208.143.377.247.559.338s.13.221-.065.169-.377.065-.065.13.454.208.156.195-.65.247-.065.182c.584-.065.818.208.13.221-.689.013-.429.234-.065.234.649 0 .454.182.286.182s-.247.221.182.182c.428-.039.597-.052.753-.026s.221.155-.013.169c-.234.012-.221.181.13.181s.497.106.182.169c-.13.026-.31.091.065.143.65.091.676.247.468.273s-.234.143.065.169c.298.026.558.117.312.182s-.377.208-.066.234c.312.026.572.143.338.221s-.286.221.013.208.416.156.208.272-.351.195-.481-.012c-.129-.208-.207-.273-.246-.117-.039.155-.13.052-.234-.182s-.286-.299-.234-.117-.182.208-.403.117c.819.831 2.027 1.585 3.95.805.164-.066.195 0 .325.273s.494.871.624 1.092.233.022.298-.195c.26-.858.455-1.495.533-1.728.078-.234.442-.468.325.35.286-.195 1.553-.379 2.534-.013 1.078.403 2.162 1.028 2.716 1.443a.62.62 0 0 0 .493.143c.26-.026.325-.065-.169-.52-.493-.455-.285-.676.026-.455.312.221.481.091.247-.182s-.792-.805-.974-.935-.208-.182-.624-.208-1.299-.026-1.559-.026-.338.026.234.234c.571.207 1.741.961 2.001 1.143s.442.598-.13.234-2.365-1.481-3.56-1.897c-2.729.182-4.886.546-6.497-1.221-.772-.846-.806-2.781.493-3.587-.26-.221-.221-.351-.117-.403s.143-.104.039-.234-.091-.246 0-.298c-.285-.156-.415-.338-.402-.533-.351-.078-.507-.494-.975-.364s-.702.026-.844-.091c-.144-.117-.26-.169-.52-.143s-.468-.078-.481-.208.22-.193.572-.039c.74.325 1.338.481 1.793-.13.455-.61-.13-1.182-1.001-1.351s-1.507.468-1.832.767z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.138,d:"M374.92 623.33c-.262-.284-.728-.546-.961-.624-.234-.078-.26.156-.13.273-.104.156-.143.533.039.637s.184.252.013.337c-.26.13-.172.82.22.624.13-.065.234-.039.208.065s.026.234.143.26.104.195.078.26.013.091.143.104.143.325-.091.429c.286 0 .364-.052.442.182s.39.285.39.571-.052.338-.39.286-.468.052-.572.182-.13.26.13.273.312.13.052.247-.688.039-.753.286 0 .363.194.272c.195-.09.598-.259.754-.35s.299-.104.429.104.026.441-.195.26c-.221-.182-.325-.014-.455.09s-.325.169-.533.169c-.207 0-.35.027-.324.494.078 1.404 1.169 2.443 3.17 2.417s2.989-.052 3.288-.013c-.663-.364-1.079-.559-1.313-.533s-.429.065-.325-.117-.013-.182-.117-.26-.233-.182-.441.039-.702.468-.949.52-.546.039-.312-.195.754-.312.91-.416.156-.168.156-.246-.039-.299.26-.13c.597.338 1.533.844 1.78.831s.416-.117.195-.26-.286-.35-.221-.428.104-.156.494.065c.389.22 1.026.506 1.26.61s.546.065.065-.286c-.481-.35-1.975-1.338-2.391-1.65s-.234.065-.195.182-.286.26-.455.117-.286-.299-.052-.429.286-.143-.065-.455c-.35-.311-.454-.285-.376-.026.078.26.104.546-.26.403s-.546-.312-.312-.455c.234-.142.533-.22.143-.545s-.273 0-.364.182-.39.182-.559.039-.247-.286-.13-.403.104-.182.273-.091.429.039.117-.234-.429-.156-.364 0-.182.429-.571.065c-.185-.172-.182-.403.013-.442.194-.039.213-.14.077-.338-.792-1.156-.467-2.092-1.26-2.949z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M491.65 188.413c-.306.457-.418.44-.983.816-.696.462-.853 1.786.314 1.629.807-.108 1.278-.588 1.597-.978-.256-.494-.56-.983-.929-1.467M488.015 185.496c-.897.87-1.054 1.261-.596 1.261.543 0 .31.076-.08.7-.387.624.78.933 1.246.467s.543-.624.776 0c.189.507.956.026 1.44-.463-.794-.767-1.861-1.476-2.786-1.965M486.4 190.521c-1.166.584-.771 3.68.987 2.8.584-.292 1.05-.175.934.292-.063.246-.023.53.107.753a5.4 5.4 0 0 0 1.934-1.395c1.09-1.243.076-1.166-1.552-1.166-1.633 0-2.1-.31-.548-1.243 1.391-.835.485-1.414-1.44-1.144.278.394.14.825-.422 1.103M493.085 197.386c-.857-.933-.314-1.4.619-1.866a1.2 1.2 0 0 0 .498-.427c-.265-1.027-.476-2.014-.754-2.974-.489.139-1.058 1.229-1.22 1.767-.233.777-.467 1.243-1.243 1.01-.69-.207-1.381.57-1.525 1.4q.163.066.494.098c.323.032.484.472.385.938 2.104-.067 2.463 1.387 2.822 2.383.39 1.09.857.933 1.167.314.31-.624-.39-1.71-1.243-2.643"}),(0,t.jsx)("path",{fill:"#ff0",d:"M493.668 209.59c-.381.861-.39.776-1.633.852-1.243.081-2.808.292-3.495 1.014-.372.386-2.52.49-2.525 1.436-.01.951 0 1.75.933 1.808.928.058 1.045.175.7.875-.355.7-.584 1.867 1.045 1.983 1.633.117 2.8-.408 3.208.52.408.934-.032 2.423.291 2.975s1.427.907 3.136 1.436c1.14.355 5.442.556 6.765.404 1.32-.157.826-.947-.498-1.063-1.319-.117-2.292-.31-2.602-1.28-.31-.973-.583-1.48.157-2.292.736-.816 1.476-1.44 1.05-2.8-.43-1.36-1.13-2.956-2.683-3.383-1.556-.426-1.063-2.552-2.606-2.759-.583-.076-1.086-.076-1.243.274"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M486.131 222.242c1.337.117 2.504.525 1.4.817-1.108.292-1.691.933-.296 1.05 1.4.116 2.566.641 1.516.991s-1.283.992.059.934 1.866.7.933 1.22c-.933.525-1.575.875-2.158-.054-.579-.933-.929-1.225-1.104-.525-.175.696-.583.233-1.05-.816s-1.283-1.342-1.05-.525-.816.933-1.807.525c.978.991 2.077 1.956 3.328 2.772 1.432-.489 3.01-.09 3.55-.036.582.059 2.39.467 3.382.992s1.633-.408 1.224-1.458c-.408-1.046-.466-.696-.991-.117-.525.583-.642-.233-.583-1.453.05-1.032-.642-.759-.875-.117s-.758-.408-.467-1.05-.058-.875-.583-.7-.583 0-.641-1.167-.584-.991-.759-.524-.641-.175-1.34-1.109c-.611-.816-1.315-.336-2.536.148.153.09.431.166.848.202"}),(0,t.jsx)("path",{fill:"#ff0",d:"M500.308 229.466c-6.37 2.584-10.965 1.436-14.423-.857 1.43-.49 3.041-.072 3.58-.018.583.058 2.39.467 3.382.992s1.633-.409 1.225-1.459c.875 1.109 1.516 1.867 2.561 1.809 1.05-.059 2.8-.234 3.675-.467M486.714 200.123c-.39-1.32-.776-1.633-1.475-1.553-.7.077-1.01-.08-1.79-.39-.777-.31-1.786.076-1.943 1.476s-1.01 2.1-2.176 2.953c-1.166.856-1.866 1.556-1.866 2.956s-.31 1.786-1.086 2.8c-.345.449-.834.96-1.292 1.498.503.315.974.588 1.467.83.817.409.583.992-.291.759s-1.692.291-.292.583 2.037.933.7.875c-1.341-.058-2.916 1.108-.292.817 2.62-.292 3.67.933.583.991-3.09.058-1.924 1.05-.291 1.05 2.911 0 2.037.817 1.283.817-.758 0-1.108.991.816.816.027-.004.05-.009.081-.009.278-.287.485-.646.637-1.1.31-.932.62-3.656 1.71-4.432 1.085-.776 1.632-1.866 1.632-2.643s1.629-4.195 2.72-5.052 1.556-2.719 1.165-4.042"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M484.427 200.168c-1.104-.736-2.176-.31-2.176 1.09s-.7 1.786-1.633 2.252c-.929.467-1.786 1.633-1.943 2.724-.152 1.086.157 1.785-.619 2.642-.78.853-.857 1.553-.31 2.02.543.466.543.547.777 1.242.233.7 1.552-.076 1.552-.852s.314-.776 1.166-1.243c.857-.467 2.257-2.723 1.943-3.343-.31-.623-1.086-1.166-.076-2.023 1.009-.853 2.1-.933 2.1-1.786 0-.857.309-1.166.618-1.476.314-.314-.7-.78-1.4-1.247"}),(0,t.jsx)("path",{d:"M484.427 199.046c-.727-.283-1.162 1.243-.153 1.476s1.166-1.09.153-1.476M484.247 201.02c-.772.094-1.633 1.108-.35.933s1.808-1.108.35-.933M482.722 202.905c-.794.399-.642 1.458.525.7s1.458-1.692-.525-.7M481.466 204.52c-.799.395-.642 1.454.525.7 1.166-.758 1.458-1.692-.525-.7"}),(0,t.jsx)("path",{d:"M479.85 205.283c-.793.399-.291 1.458.875.7s1.109-1.692-.874-.7M480.838 206.27c-.794.399-.292 1.458.874.7s1.108-1.692-.874-.7"}),(0,t.jsx)("path",{d:"M479.447 206.673c-.794.4-.292 1.459.875.7s1.108-1.691-.875-.7M480.344 207.795c-.798.4-.292 1.458.87.7 1.167-.758 1.109-1.691-.87-.7"}),(0,t.jsx)("path",{d:"M478.998 208.468c-.794.395-.291 1.454.875.696s1.108-1.687-.875-.696"}),(0,t.jsx)("path",{d:"M479.088 209.5c-.794.4-.292 1.458.875.7s1.108-1.691-.875-.7"}),(0,t.jsx)("path",{fill:"#cf6200",d:"M478.46 219.326c-.803.103-1.32 1.247-.31 1.48s1.243.31 1.243 1.086.314 1.867 1.4 1.943c1.09.08 2.023-1.166 1.09-1.552-.933-.39-1.79-.7-1.866-1.557-.077-.853-.934-1.476-1.557-1.4"}),(0,t.jsx)("path",{fill:"#ff0",d:"M507.082 212.64c.143.18.323.378.53.553.757.641 2.215 0 2.04-.525s-.991-2.217.875-.817 8.569 5.833 10.727 7.403c2.158 1.575.758 1.75-.292 1.283s-3.907-1.75-5.652-2.737c-1.75-.991-1.925-.641-2.217-.291-.246.291-.049.996.593 1.593-1.041.152-2.733-.077-3.217-1.185-.583-1.341-1.983-2.975-2.974-4.258-.368-.475-.476-.771-.413-1.018"}),(0,t.jsx)("path",{fill:"#00d860",d:"M564.909 403.64c-1.454.991-3.378 2.741-2.1 5.186.153-.08.297-.175.445-.26 5.702-6.9 10.582-14.156 14.764-21.693.049-.26.094-.507.125-.723-1.633 1.4-4.199 2.796-5.249 3.146.7 1.866-2.561 4.316-4.31 5.016.699 1.166.466 2.916-1.05 3.266.35 1.045-.817 1.045-2.217 1.629s-2.1 1.05-2.561 1.75c.753-.409 1.803-.759 2.386-.584s.7 1.05-.35 1.283-1.745.817-2.1 1.284c1.517-.584 3.675-.292 2.217.7"}),(0,t.jsx)("path",{stroke:"#000",strokeWidth:.138,d:"M375.97 628.41c-.384-.335-.481-.13-.325.078s.039.312-.299.364-.845.117-1.053.117-.454.286.039.26c.494-.026 1.326-.195 1.547-.286s.402-.26.091-.533zM376.72 629c-.317-.285-.429-.208-.351 0s-.065.247-.272.312-1.027.338-1.378.377-.429.286.091.273 1.52-.429 1.637-.507.156-.234.286-.156.247-.065-.013-.299z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{stroke:"#000",strokeWidth:.138,d:"M376.96 629.83c-.23.137-.805.389-1.039.454s-.429.325.065.286c.493-.039 1.078-.494 1.234-.584.156-.091.234-.156.364-.143s.364-.169-.065-.403-.689-.117-.481.065.052.247-.078.325z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"}),(0,t.jsx)("path",{d:"M482.049 187.515c-2.849-1.87-6.101 2.05-2.952 4.2 2.759 1.884 5.675-2.41 2.952-4.2"}),(0,t.jsx)("path",{fill:"#fff",d:"m478.505 189.22.843.059c-.175.87.7 2.185 2.041 1.861-1.076.817-3.176-.116-2.884-1.92M489.54 231.71c.862.25 3.854.556 4.868.605-.507 1.068-.964 1.777-1.27 2.54-.304.758-.452.812-.506-.355-.05-1.171-.709-1.93-1.315-.713-.61 1.22-.915 1.673-1.215 2.18-.305.507-.763.714-.61-.556s.103-2.59.049-3.702"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.275,d:"M399.67 640.77c-.046 16.332-2.623 33.927-23.764 42.308-21.142-8.381-23.719-25.976-23.765-42.308zM399.67 640.77c.018-6.152-.324-12.125-.168-17.359-7.9-3.535-18.295-4.262-23.596-4.262-5.302 0-15.697.727-23.597 4.262.156 5.234-.185 11.207-.168 17.359z",transform:"matrix(4.4862 0 0 4.4867 -1190.9 -2609)"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/281.d912a74e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js deleted file mode 100644 index 0538f8697b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2841.e1a4734b.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2841"],{14608(t,r,o){o.r(r),o.d(r,{default:()=>i});var e=o(74848);o(47867);let i=t=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,e.jsx)("path",{fill:"#00c4ff",d:"M0-.01h640.003v160.43H0z"}),(0,e.jsx)("path",{fill:"#fff",d:"M0 159.763h640.003v160.43H0z"}),(0,e.jsx)("path",{fill:"#00c4ff",d:"M0 319.536h640.003v160.43H0z"})]}),(0,e.jsx)("path",{fill:"#ffd600",fillRule:"evenodd",stroke:"#000",strokeOpacity:.387,strokeWidth:.625,d:"M382.49 221.33c0 14.564-11.864 26.37-26.5 26.37s-26.498-11.806-26.498-26.37 11.864-26.37 26.5-26.37 26.498 11.806 26.498 26.37z",transform:"matrix(1.6452 0 0 1.62 -265.894 -116.567)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.387,strokeWidth:.5,d:"M364.43 195.28c-4.34-1.05-8.785.422-10.185.318-1.925 0-6.79-1.68-10.185 0m-5.35 4.892c4.305-3.01 9.115 1.086 10.394.315 3.492-2.294 6.736-1.868 10.08.21 2.155 1.272 5.914-3.71 10.29.315",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"#efc000",fillRule:"evenodd",stroke:"#000",strokeOpacity:.387,strokeWidth:.5,d:"M333.88 205.63c2.275-1.855 9.694-1.925 17.324 2.414 1.155-.28 1.89-1.084.945-2.204-5.74-1.995-12.425-4.515-18.585-2.625-1.68 1.19-1.26 1.96.315 2.415z",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"#efc000",fillRule:"evenodd",stroke:"#000",strokeOpacity:.387,strokeWidth:.5,d:"M333.88 205.63c2.275-1.855 9.694-1.925 17.324 2.414 1.155-.28 1.89-1.084.945-2.204-5.74-1.995-12.425-4.515-18.585-2.625-1.68 1.19-1.26 1.96.315 2.415z",transform:"matrix(-1.2703 0 0 1.231 768.984 -28.912)"}),(0,e.jsx)("path",{fill:"#f0bf00",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M330.84 211.83c7.525-4.83 17.464-2.31 21.63.315-6.09-1.155-6.196-1.68-10.606-1.785-3.115.106-7.7-.21-11.024 1.47z",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.387,strokeWidth:.625,d:"M348.06 211.3c-3.675 7.665-10.08 7.77-14.594-.42",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fillOpacity:.368,fillRule:"evenodd",d:"M308.78 234.09c-1.383 1.514-4.77 2.413-7.564 2.01s-3.937-1.96-2.553-3.474 4.77-2.413 7.565-2.01 3.937 1.96 2.553 3.474z"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",d:"M301.898 232.147c.143.353-.297.82-.984 1.045s-1.358.12-1.5-.23c-.144-.354.297-.822.983-1.046s1.36-.12 1.5.23z"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.387,strokeWidth:.625,d:"M349.18 224.5c-4.24 7.127 1.537 2.1 2.475 4.164 1.65 1.913 3.3 1.462 4.276 0 .977-1.65 7.128 3.113 2.927-3.938",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M341.64 236.31c3.638-.413 9.753-3.188 11.93-.9 1.874-2.063 8.476.6 12.714.9-3.076 1.875-9.302.6-12.265 2.588-2.89-1.763-9.267-.15-12.38-2.588z",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M347.5 239.58c5.514 2.25 6.752 1.913 12.716.225-1.238 3.264-4.398 3.95-6.19 3.826-1.857-.12-4.388.114-6.526-4.05z",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(1.2703 0 0 1.231 -119.922 -28.068)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.908 -.861 -.8884 .88 837.014 353.18)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.889 .8794 -.9075 .8614 204.616 -258.71)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.0073 -1.231 -1.2703 .007 601.74 676.9)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-1.1653 -.49 -.5057 1.1292 835.787 164.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.905 -.864 -.8915 .877 827.91 348.79)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.4964 -1.133 -1.1693 .481 748.115 528.492)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.082,strokeWidth:.625,d:"M349.18 224.5c-4.24 7.127 1.537 2.1 2.475 4.164 1.65 1.913 3.3 1.462 4.276 0 .977-1.65 7.128 3.113 2.927-3.938",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"#f0bf00",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.082,strokeWidth:.625,d:"M341.64 236.31c3.638-.413 9.753-3.188 11.93-.9 1.874-2.063 8.476.6 12.714.9-3.076 1.875-9.302.6-12.265 2.588-2.89-1.763-9.267-.15-12.38-2.588z",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"#f0bf00",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.082,strokeWidth:.625,d:"M347.5 239.58c5.514 2.25 6.752 1.913 12.716.225-1.238 3.264-4.398 3.95-6.19 3.826-1.857-.12-4.388.114-6.526-4.05z",transform:"matrix(1.2703 0 0 1.231 -130.873 -28.912)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.908 -.861 -.8884 .88 837.014 353.18)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.889 .8794 -.9075 .8614 204.616 -258.71)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.0073 -1.231 -1.2703 .007 601.74 676.9)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-1.1653 -.49 -.5057 1.1292 835.787 164.23)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.905 -.864 -.8915 .877 827.91 348.79)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.4964 -1.133 -1.1693 .481 748.115 528.492)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(0 -1.231 1.2703 0 41.183 668.378)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-1.2703 0 0 1.231 770.68 -28.276)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.908 -.861 .8884 .88 -196.843 353.81)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.889 .8794 .9075 .8614 435.564 -258.39)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.0073 -1.231 1.2703 .007 38.068 676.9)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(1.1653 -.49 .5057 1.1292 -195.68 164.874)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(.905 -.864 .8915 .877 -188.602 348.79)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(.4964 -1.133 1.1693 .481 -107.76 528.492)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.908 -.861 .8884 .88 -196.843 353.81)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.889 .8794 .9075 .8614 435.564 -258.39)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.0073 -1.231 1.2703 .007 38.068 676.9)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(1.1653 -.49 .5057 1.1292 -195.68 164.874)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(.905 -.864 .8915 .877 -188.602 348.79)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(.4964 -1.133 1.1693 .481 -107.76 528.492)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(0 1.231 -1.2703 0 598.48 -184.42)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(1.2703 0 0 -1.231 -131 512.223)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.908 .861 -.8884 -.88 836.514 130.14)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.889 -.8794 -.9075 -.8614 204.116 742.347)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.0073 1.231 -1.2703 -.007 601.612 -192.956)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-1.1653 .49 -.5057 -1.1292 835.352 319.092)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.905 .864 -.8915 -.877 828.282 135.16)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.4964 1.133 -1.1693 -.481 747.437 -44.55)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.908 .861 -.8884 -.88 836.514 130.14)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.889 -.8794 -.9075 -.8614 204.116 742.347)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.0073 1.231 -1.2703 -.007 601.612 -192.956)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-1.1653 .49 -.5057 -1.1292 835.352 319.092)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.905 .864 -.8915 -.877 828.282 135.16)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.4964 1.133 -1.1693 -.481 747.437 -44.55)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-1.2703 0 0 -1.231 759.526 511.997)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(0 1.231 1.2703 0 40.634 -194.91)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.8884 -.88 .908 -.861 434.918 742.67)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.9075 .8614 .889 -.8794 -196.835 129.834)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-1.2703 -.007 .0073 -1.231 768.322 515.032)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.5057 -1.1292 1.1653 -.49 239.93 741.54)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.8915 -.877 .905 -.864 429.72 734.68)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-1.1693 -.481 .4964 -1.133 615.186 656.337)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-.8884 -.88 .908 -.861 434.918 742.67)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(.9075 .8614 .889 -.8794 -196.835 129.834)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M343.17 258.06c-3.977 10.41.38 15.358-1.567 20.964-1.874 5.398-10.025 18.776-3.82 24.59 4.93.227-.853-7.377 9.01-21.456 4.576-6.595-1.195-10.77 3.626-23.707.448-1.106-6.623-2.03-7.25-.39z",transform:"matrix(-1.2703 -.007 .0073 -1.231 768.322 515.032)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.5057 -1.1292 1.1653 -.49 239.93 741.54)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-.8915 -.877 .905 -.864 429.72 734.68)"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.149,strokeWidth:.625,d:"M342.97 258.16c-1.528 11.683-.62 47.577 3.037 46.14 4.05 1.306 4.583-35.162 4.212-45.945-.053-1.194-7.037-1.938-7.25-.195z",transform:"matrix(-1.1693 -.481 .4964 -1.133 615.186 656.337)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.2703 0 0 1.231 -130.216 -27.957)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.2703 0 0 1.231 -131.217 -25.465)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.4064 0 0 1.231 -176.307 -23.11)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.4064 0 0 1.231 -177.588 -20.892)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.6786 0 0 1.231 -267.194 -18.537)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.86 0 0 1.231 -326.593 -16.183)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.7693 0 0 1.231 -297.676 -13.552)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.724 0 0 1.231 -282.503 -10.92)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.7693 0 0 1.231 -297.39 -8.426)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(2.223 0 0 1.231 -444.825 -5.517)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.171,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -341.188 -2.192)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -341.045 .162)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -340.044 3.348)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -339.902 6.12)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -338.186 9.167)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -336.47 11.66)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -334.9 14.57)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -333.04 17.34)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -331.753 19.97)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -329.038 23.165)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.225 0 0 1.231 -104.597 26.07)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -341.045 .162)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -340.044 3.348)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -339.902 6.12)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -338.186 9.167)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -336.47 11.66)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -334.9 14.57)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -333.04 17.34)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -331.753 19.97)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.9053 0 0 1.231 -329.038 23.165)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.078,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(1.225 0 0 1.231 -103.975 25.828)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.2703 0 0 1.231 769.71 -28.594)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.2703 0 0 1.231 770.71 -26.1)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.4064 0 0 1.231 815.79 -23.746)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.4064 0 0 1.231 817.08 -21.53)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.6786 0 0 1.231 906.69 -19.175)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.86 0 0 1.231 966.086 -16.82)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.7693 0 0 1.231 937.163 -14.188)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.724 0 0 1.231 921.99 -11.555)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.7693 0 0 1.231 936.888 -9.062)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-2.223 0 0 1.231 1084.31 -6.153)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.134,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 980.676 -2.828)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 980.53 -.474)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 979.53 2.712)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 979.385 5.482)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 977.674 8.53)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 975.963 11.025)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 974.382 13.933)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 972.525 16.71)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 971.25 19.34)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 968.523 22.52)"}),(0,e.jsx)("path",{fill:"#00699d",fillOpacity:.867,fillRule:"evenodd",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.225 0 0 1.231 744.08 25.425)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 980.53 -.474)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 979.53 2.712)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 979.385 5.482)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 977.674 8.53)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 975.963 11.025)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 974.382 13.933)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 972.525 16.71)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 971.25 19.34)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.9053 0 0 1.231 968.523 22.52)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.063,strokeWidth:"1pt",d:"M328.14 202.55h-3.15",transform:"matrix(-1.225 0 0 1.231 744.08 25.425)"}),(0,e.jsx)("path",{fill:"#f0bf00",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.387,strokeWidth:.625,d:"M330.84 211.83c7.525-4.83 17.464-2.31 21.63.315-6.09-1.155-6.196-1.68-10.606-1.785-3.115.106-7.7-.21-11.024 1.47z",transform:"matrix(-1.2703 0 0 1.231 770.29 -29.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.387,strokeWidth:.625,d:"M348.06 211.3c-3.675 7.665-10.08 7.77-14.594-.42",transform:"matrix(1.2703 0 0 1.231 -97.703 -29.548)"}),(0,e.jsx)("path",{fillOpacity:.368,fillRule:"evenodd",d:"M341.925 233.537c-1.43 1.45-4.93 2.31-7.815 1.924s-4.067-1.874-2.637-3.324 4.928-2.31 7.815-1.924 4.067 1.876 2.637 3.325z"}),(0,e.jsx)("path",{fill:"gold",fillRule:"evenodd",d:"M335.073 231.518c.142.352-.298.82-.985 1.045s-1.358.12-1.5-.232c-.144-.35.297-.82.983-1.044s1.36-.12 1.503.232z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2841.e1a4734b.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js deleted file mode 100644 index 89d55e750d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js +++ /dev/null @@ -1,10 +0,0 @@ -/*! For license information please see 2843.2d256f65.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2843"],{45030(e,l,t){t.d(l,{FH:()=>i,Gh:()=>n,eB:()=>o,q1:()=>r});var a=t(53996);let i=t(33655).FH.enhanceEndpoints({addTagTypes:[a.nP.APPLICATION_LOGGER,a.nP.APPLICATION_LOGGER_DETAIL],endpoints:{bundleApplicationLoggerGetCollection:{providesTags:(e,l,t)=>{var i;let n=[];return null==e||null==(i=e.items)||i.forEach(e=>{n.push(...a.yc.APPLICATION_LOGGER_DETAIL(e.id))}),[...n,...a.yc.APPLICATION_LOGGER()]}}}}),{useBundleApplicationLoggerGetCollectionQuery:n,useBundleApplicationLoggerListComponentsQuery:r,useBundleApplicationLoggerListPrioritiesQuery:o}=i},33655(e,l,t){t.d(l,{FH:()=>a,Gh:()=>i,q1:()=>n});let a=t(53073).api.enhanceEndpoints({addTagTypes:["Bundle Application Logger"]}).injectEndpoints({endpoints:e=>({bundleApplicationLoggerGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/bundle/application-logger/list",method:"POST",body:e.body}),providesTags:["Bundle Application Logger"]}),bundleApplicationLoggerListComponents:e.query({query:()=>({url:"/pimcore-studio/api/bundle/application-logger/components"}),providesTags:["Bundle Application Logger"]}),bundleApplicationLoggerListPriorities:e.query({query:()=>({url:"/pimcore-studio/api/bundle/application-logger/priorities"}),providesTags:["Bundle Application Logger"]})}),overrideExisting:!1}),{useBundleApplicationLoggerGetCollectionQuery:i,useBundleApplicationLoggerListComponentsQuery:n,useBundleApplicationLoggerListPrioritiesQuery:r}=a},15343(e,l,t){t.d(l,{U:()=>n});var a=t(47867),i=t(29701);let n=()=>{let e=(0,a.useContext)(i.l);if(void 0===e)throw Error("useFilter must be used within a FilterProvider");return e}},11830(e,l,t){t.d(l,{V:()=>p});var a=t(27755),i=t(63364),n=t(10600),r=t(71189),o=t(9653),s=t(85422);let p={name:"Application Logger",id:"application-logger",component:"application-logger",config:{translationKey:"widget.application-logger",icon:{type:"name",value:"application-logger"}}};a.s.registerModule({onInit:()=>{i.kL.get(n.K.mainNavRegistry).registerMainNavItem({path:"System/Application Logger",label:"navigation.application-logger",dividerBottom:!0,order:500,permission:o.F.ApplicationLogger,perspectivePermission:s.d.ApplicationLogger,widgetConfig:p}),i.kL.get(n.K.widgetManager).registerWidget({name:"application-logger",component:r.o})}})},71189(e,l,t){t.d(l,{o:()=>S});var a=t(74848),i=t(47867),n=t(53996),r=t(64756),o=t(91206),s=t(39808),p=t(84567),c=t(25750),d=t(29740),u=t(75525),g=t(74325),m=t(96940),h=t(45030),j=t(46881),v=t(43588),x=t(35864),y=t(21429),f=t(84310),b=t(33655),I=t(15343);let T=()=>{let{t:e}=(0,y.useTranslation)(),l=(0,j.useAppDispatch)(),[t,T]=(0,i.useState)(1),[C,S]=(0,i.useState)(20),[L,F]=(0,i.useState)(!1),[w,O]=(0,i.useState)(void 0),{columnFilters:k,setIsLoading:A}=(0,I.U)(),{data:N,isFetching:E}=(0,b.Gh)({body:{filters:{page:t,pageSize:C,columnFilters:k}}}),P=(null==N?void 0:N.totalItems)??0,V=(0,i.useCallback)(()=>{l(h.FH.util.invalidateTags(n.qN.APPLICATION_LOGGER()))},[l]);return(0,i.useEffect)(()=>{if((0,x.isNil)(w))return;let e=setInterval(()=>{V()},1e3*parseInt(w));return()=>{clearInterval(e)}},[w,V]),(0,i.useEffect)(()=>{A(E)},[E]),(0,a.jsx)(o.s,{renderToolbar:(0,a.jsxs)(m.M,{justify:"space-between",theme:"secondary",children:[(0,a.jsxs)(c.s,{align:"center",gap:8,children:[!(0,x.isNil)(w)&&(0,a.jsx)("span",{children:e("application-logger.refresh-interval")}),(0,a.jsx)(v.CreatableSelect,{allowClear:!0,inputType:"number",minWidth:200,numberInputProps:{min:1},onChange:e=>{O(e)},onCreateOption:l=>({value:l,label:e("application-logger.refresh-interval.seconds",{seconds:l})}),options:[{value:"3",label:e("application-logger.refresh-interval.seconds",{seconds:3})},{value:"5",label:e("application-logger.refresh-interval.seconds",{seconds:5})},{value:"10",label:e("application-logger.refresh-interval.seconds",{seconds:10})},{value:"30",label:e("application-logger.refresh-interval.seconds",{seconds:30})},{value:"60",label:e("application-logger.refresh-interval.seconds",{seconds:60})}],placeholder:e("application-logger.refresh-interval.select"),validate:e=>!isNaN(parseInt(e))&&parseInt(e)>0,value:w})]}),(0,a.jsxs)(c.s,{children:[(0,a.jsx)(d.K,{disabled:L||E,icon:{value:"refresh"},onClick:()=>{F(!0),V(),F(!1)}}),P>0&&(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(p.c,{size:"small",type:"vertical"}),(0,a.jsx)(u.d,{current:t,defaultPageSize:C,onChange:(e,l)=>{T(e),S(l)},showSizeChanger:!0,showTotal:l=>e("pagination.show-total",{total:l}),total:P})]})]})]}),renderTopBar:(0,a.jsx)(m.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,a.jsx)(g.h,{children:e("application-logger.label")})}),children:(0,a.jsx)(s.U,{loading:L,children:(0,a.jsx)(r.a,{className:"h-full",margin:{x:"extra-small",y:"none"},children:(0,a.jsx)(f.F,{items:(null==N?void 0:N.items)??[]})})})})};var C=t(29701);let S=()=>(0,a.jsx)(C.s,{children:(0,a.jsx)(T,{})})},84310(e,l,t){t.d(l,{F:()=>x});var a=t(74848),i=t(43588),n=t(35864),r=t(47867),o=t(81898),s=t(94392);class p extends s.e{}var c=t(21429),d=t(33655),u=t(15343);let g=()=>{let{data:e,isLoading:l}=(0,d.q1)(),[t,n]=(0,r.useState)([]),{component:o,setComponent:s}=(0,u.U)();return(0,r.useEffect)(()=>{if((null==e?void 0:e.items)!==void 0&&e.items.length>0){let l=[];e.items.forEach(e=>{l.push({value:e,label:e})}),n(l)}},[e]),(0,a.jsx)(i.Select,{loading:l,onChange:e=>{s(e)},options:t??[],value:o??void 0})};var m=t(19614);let h="YYYY-MM-DD HH:mm",j=new p;j.registerEntry({key:"filter",icon:(0,a.jsx)(o.I,{options:{width:"16px",height:"16px"},value:"filter"}),component:(0,a.jsx)(()=>{let{t:e}=(0,c.useTranslation)(),[l]=i.Form.useForm(),{dateFrom:t,setDateFrom:n,dateTo:r,setDateTo:o,relatedObjectId:s,setRelatedObjectId:p,message:d,setMessage:j,pid:v,setPid:x,resetFilters:y,updateFilters:f,isLoading:b}=(0,u.U)();return(0,a.jsx)(i.ContentLayout,{renderToolbar:(0,a.jsxs)(i.Toolbar,{theme:"secondary",children:[(0,a.jsx)(i.IconTextButton,{disabled:b,icon:{value:"close"},onClick:()=>{y(),l.resetFields()},type:"link",children:e("sidebar.clear-all-filters")}),(0,a.jsx)(i.Button,{disabled:b,loading:b,onClick:f,type:"primary",children:e("button.apply")})]}),children:(0,a.jsx)(i.Content,{padded:!0,children:(0,a.jsx)(i.Form,{form:l,layout:"vertical",children:(0,a.jsxs)(i.Space,{direction:"vertical",size:"none",style:{width:"100%"},children:[(0,a.jsx)(i.Title,{children:e("application-logger.sidebar.search-parameter")}),(0,a.jsx)(i.Form.Item,{label:e("application-logger.filter.date-from"),name:"dateFrom",children:(0,a.jsx)(i.DatePicker,{className:"w-full",format:h,onChange:e=>{n(e)},outputType:"dateString",showTime:{format:"HH:mm"},value:t})}),(0,a.jsx)(i.Form.Item,{label:e("application-logger.filter.date-to"),name:"dateTo",children:(0,a.jsx)(i.DatePicker,{className:"w-full",format:h,onChange:e=>{o(e)},outputType:"dateString",showTime:{format:"HH:mm"},value:r})}),(0,a.jsx)(i.Form.Item,{label:e("application-logger.filter.priority"),name:"priority",children:(0,a.jsx)(m.l,{})}),(0,a.jsx)(i.Form.Item,{label:e("application-logger.filter.component"),name:"component",children:(0,a.jsx)(g,{})}),(0,a.jsx)(i.Form.Item,{label:e("application-logger.filter.related-object-id"),name:"relatedObjectId",children:(0,a.jsx)(i.Input,{min:"0",onChange:e=>{let l=e.target.value;p(""!==l?parseInt(l):null)},step:"1",type:"number",value:s??void 0})}),(0,a.jsx)(i.Form.Item,{label:e("application-logger.filter.message"),name:"message",children:(0,a.jsx)(i.Input,{onChange:e=>{j(e.target.value??null)},value:d??void 0})}),(0,a.jsx)(i.Form.Item,{label:e("application-logger.filter.pid"),name:"pid",children:(0,a.jsx)(i.Input,{min:"0",onChange:e=>{let l=e.target.value;x(""!==l?parseInt(l):null)},step:"1",type:"number",value:v??void 0})})]})})})})},{})});var v=t(73793);let x=e=>{let{items:l}=e;return(0,n.isNil)(l)?(0,a.jsx)(a.Fragment,{}):(0,a.jsx)(i.ContentLayout,{renderSidebar:(0,a.jsx)(i.Sidebar,{entries:j.getEntries()}),children:(0,a.jsx)(v.X,{items:l})})}},19614(e,l,t){t.d(l,{l:()=>p});var a=t(74848),i=t(45030),n=t(43588),r=t(47867),o=t(21429),s=t(15343);let p=()=>{let{t:e}=(0,o.useTranslation)(),{data:l,isLoading:t}=(0,i.eB)(),[p,c]=(0,r.useState)([]),{logLevel:d,setLogLevel:u}=(0,s.U)();return(0,r.useEffect)(()=>{if((null==l?void 0:l.priorities)!==void 0&&l.priorities.length>0){let t=[];l.priorities.forEach(l=>{t.push({value:l.toString(),label:e("application-logger.filter.priority-level."+l.toString())})}),c(t)}},[l]),(0,a.jsx)(n.Select,{loading:t,onChange:e=>{u(e)},options:p??[],value:d??void 0})}},29701(e,l,t){t.d(l,{l:()=>o,s:()=>s});var a=t(74848),i=t(35864),n=t(47867),r=t.n(n);let o=(0,n.createContext)(void 0),s=e=>{let[l,t]=r().useState(null),[s,p]=r().useState(null),[c,d]=r().useState([]),[u,g]=r().useState(null),[m,h]=r().useState(null),[j,v]=r().useState(null),[x,y]=r().useState(null),[f,b]=r().useState(null),[I,T]=r().useState(!1),C=()=>{d(L())},S=()=>{t(()=>null),p(()=>null),g(()=>null),h(()=>null),v(()=>null),y(()=>null),b(()=>null),d([])},L=()=>{let e=[];return(0,i.isNil)(l)||e.push({key:"dateFrom",type:"date",filterValue:{operator:"from",value:l}}),(0,i.isNil)(s)||e.push({key:"dateTo",type:"date",filterValue:{operator:"to",value:s}}),(0,i.isNil)(u)||e.push({key:"priority",type:"equals",filterValue:parseInt(u)}),(0,i.isNil)(m)||e.push({key:"component",type:"equals",filterValue:m}),(0,i.isNil)(j)||e.push({key:"relatedobject",type:"equals",filterValue:j}),(0,i.isNil)(x)||e.push({key:"message",type:"like",filterValue:x}),(0,i.isNil)(f)||e.push({key:"pid",type:"equals",filterValue:f}),e};return(0,n.useMemo)(()=>(0,a.jsx)(o.Provider,{value:{dateFrom:l,setDateFrom:t,dateTo:s,setDateTo:p,logLevel:u,setLogLevel:g,component:m,setComponent:h,relatedObjectId:j,setRelatedObjectId:v,message:x,setMessage:y,pid:f,setPid:b,columnFilters:c,updateFilters:C,resetFilters:S,isLoading:I,setIsLoading:T},children:e.children}),[l,s,c,u,m,j,x,f,I])}},73793(e,l,t){t.d(l,{X:()=>T});var a=t(74848),i=t(25750),n=t(14013),r=t(29740),o=t(56789),s=t(276),p=t(43588),c=t(89507),d=t(35864),u=t(47867),g=t(21429),m=t(57231),h=t(80632),j=t(30492),v=t(96316),x=t(28083),y=t(74462),f=t(50094);let b=e=>{var l,t,i,n,r,o,s;let{t:p}=(0,g.useTranslation)(),[c]=m.lV.useForm(),b=()=>{e.setOpen(!1)},I={date:(null==(l=e.data)?void 0:l.date)??"",message:(null==(t=e.data)?void 0:t.message)??"",priority:(null==(i=e.data)?void 0:i.priority)??"",component:(null==(n=e.data)?void 0:n.component)??"",source:(null==(r=e.data)?void 0:r.source)??"",fileObject:(null==(o=e.data)?void 0:o.relatedElementData)??null};return(0,u.useEffect)(()=>{e.open&&!(0,d.isNil)(e.data)&&c.setFieldsValue(I)},[e.open,e.data,c]),(0,a.jsx)(j.a,{onCancel:b,onClose:b,onOk:b,open:e.open,title:(0,a.jsx)(v.w,{children:p("application-logger.detail-modal.title")}),children:(0,a.jsx)(f._Y,{children:(0,a.jsxs)(m.lV,{form:c,initialValues:I,layout:"vertical",children:[(0,a.jsx)(m.lV.Item,{label:p("application-logger.columns.timestamp"),name:"date",children:(0,a.jsx)(h.p,{readOnly:!0})}),(0,a.jsx)(m.lV.Item,{label:p("application-logger.columns.message"),name:"message",children:(0,a.jsx)(x.f,{readOnly:!0})}),(0,a.jsx)(m.lV.Item,{label:p("application-logger.columns.type"),name:"priority",children:(0,a.jsx)(h.p,{readOnly:!0})}),(0,a.jsx)(m.lV.Item,{label:p("application-logger.columns.component"),name:"component",children:(0,a.jsx)(h.p,{readOnly:!0})}),(0,a.jsx)(m.lV.Item,{label:p("application-logger.columns.source"),name:"source",children:(0,a.jsx)(h.p,{readOnly:!0})}),(null==(s=e.data)?void 0:s.fileObject)!==null&&(0,a.jsx)(m.lV.Item,{label:p("application-logger.columns.related-object"),name:"fileObject",children:(0,a.jsx)(y.P,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,readOnly:!0})})]})})})},I=(0,t(44241).createStyles)(e=>{let{token:l,css:t}=e;return{cellTruncate:t` - display: block !important; - min-width: 0; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - margin: 0 ${l.paddingXXS}px; - padding: ${l.paddingXXS}px; - `}}),T=e=>{let{items:l}=e,{t}=(0,g.useTranslation)(),{openElement:m}=(0,o.K)(),{styles:h}=I(),[j,v]=(0,u.useState)(!1),[x,y]=(0,u.useState)(null),f=l.map(e=>({...e,date:(0,s.r6)({timestamp:e.date,dateStyle:"short",timeStyle:"short"}),translatedPriority:t(`application-logger.filter.priority-level.${e.priority}`)})),T=(0,c.createColumnHelper)(),C=[T.accessor("date",{header:t("application-logger.columns.timestamp"),size:80}),T.accessor("pid",{header:t("application-logger.columns.pid"),size:60}),T.accessor("message",{header:t("application-logger.columns.message"),cell:e=>{let{getValue:l}=e;return(0,a.jsx)("span",{className:h.cellTruncate,children:l()})}}),T.accessor("translatedPriority",{header:t("application-logger.columns.type"),size:60}),T.accessor("fileObject",{header:t("application-logger.columns.file-object"),cell:e=>{let{row:l}=e,i=l.original;return(0,d.isNil)(i.fileObject)?(0,a.jsx)(a.Fragment,{}):(0,a.jsx)(p.Button,{href:"/admin/bundle/applicationlogger/log/show-file-object?filePath="+i.fileObject,target:"_blank",type:"link",children:t("open")})},size:60}),T.accessor("relatedElementData",{header:t("application-logger.columns.related-object"),cell:e=>{let{row:l}=e,t=l.original;if((0,d.isNil)(t.relatedElementData))return(0,a.jsx)(a.Fragment,{});let i=t.relatedElementData;return(0,a.jsx)(p.Button,{onClick:()=>{m({id:i.id,type:"object"===i.type?"data-object":i.type}).catch(()=>{})},type:"link",children:`${i.type} ${i.id}`})},size:60}),T.accessor("component",{header:t("application-logger.columns.component"),size:100}),T.accessor("source",{header:t("application-logger.columns.source")}),T.accessor("actions",{header:t("application-logger.columns.details"),cell:e=>{let{row:l}=e,t=l.original;return(0,a.jsx)(i.s,{align:"center",className:"w-full",children:(0,a.jsx)(r.K,{icon:{value:"expand-01"},onClick:async()=>{y(t),v(!0)},type:"link"})})},size:40})];return(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)(n.x,{autoWidth:!0,columns:C,data:f,modifiedCells:[],resizable:!0}),(0,a.jsx)(b,{data:x,open:j,setOpen:v})]})}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2843.2d256f65.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js deleted file mode 100644 index 918928fb92..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2845.d2c82bf6.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2845"],{67180(l,e,s){s.r(e),s.d(e,{default:()=>d});var i=s(74848);s(47867);let d=l=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,i.jsx)("defs",{children:(0,i.jsx)("clipPath",{id:"mz_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,i.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,i.jsxs)("g",{clipPath:"url(#mz_inline_svg__a)",transform:"scale(.9375)",children:[(0,i.jsx)("path",{fill:"#009a00",fillRule:"evenodd",d:"M0 0h768v160H0z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M0 159.96h768v16.018H0z"}),(0,i.jsx)("path",{fillRule:"evenodd",d:"M0 175.98h768v160H0z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M0 335.98h768v16.018H0z"}),(0,i.jsx)("path",{fill:"#ffca00",fillRule:"evenodd",d:"M0 352h768v160H0z"}),(0,i.jsx)("path",{fill:"red",fillRule:"evenodd",d:"M0 0v512l336.02-256z"}),(0,i.jsx)("path",{fill:"#ffca00",fillRule:"evenodd",d:"m198.532 332.966-51.23-37.505-51.163 37.514 19.841-60.31-51.49-37.066 63.493.235 19.336-60.424 19.397 60.46 63.442-.29-51.506 37.13z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.1027125,d:"M102.837 290.905h36.905c2.969 3.331 9.594 4.69 15.904-.04 11.567-6.334 33.945.04 33.945.04l4.407-4.682-10.742-35.252-3.856-4.131s-8.261-4.957-23.96-3.305c-15.698 1.653-21.207-.55-21.207-.55s-13.77 1.652-17.625 3.58c-.424.343-4.407 4.406-4.407 4.406z"}),(0,i.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.1027125,d:"M110.274 281.819s35.251-4.407 45.442 9.088c-5.755 3.938-10.823 4.263-16.25.276.865-1.44 12.67-13.77 42.689-9.64"}),(0,i.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:".88217pt",d:"m148.002 246.567-.273 38.833M179.399 247.114l6.61 30.846"}),(0,i.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.1027125,d:"m116.971 246.63-3.668 15.906"}),(0,i.jsx)("path",{fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.1027125,d:"m78.868 295.14 8.68 10.175c1.018.608 1.924.57 2.829 0l12.862-15.434 5.402-6.689c.837-.99 1.104-2.096 1.03-3.086l10.327-9.178c.845.059 1.348.154 2.193.211-.998-.258-1.73-.744-.945-1.838l2.315-1.8 1.8 2.314s-2.571 3.344-2.829 3.344h-2.83l-5.402 4.889 2.362 2.087 3.555 9.746 4.374-3.088-2.83-10.032 6.174-6.688-2.316-3.602 1.544-2.058s21.368 13.453 29.6 9.852c.223.08.498-9.595.498-9.595s-22.123-2.315-22.638-6.688 4.888-4.888 4.888-4.888l-2.316-3.344.515-1.801 3.859 4.888 8.747-7.46 51.449 58.652c2.809-1.139 3.408-1.826 3.602-4.63-.073-.07-50.42-57.881-50.42-57.881l3.858-4.116c.76-.857 1.027-1.221 1.028-2.573l5.917-5.144c1.78.61 2.914 1.677 3.859 3.086l16.266-13.786c.429.43 1.73.858 2.615.376l26.888-25.816-29.305 20.703-1.033-.772c0-.858 1.064-1.07 0-2.573-1.138-1.366-2.83 1.286-3.086 1.286-.258 0-4.243-1.408-5.116-3.192l-.287 4.736-7.46 6.946-5.66-.258-8.232 7.975-1.028 3.087 1.286 2.573s-4.374 3.859-4.374 3.601c0-.257-.884-1.137-.922-1.25l3.752-3.38.514-2.316-1.251-1.954c-.38.275-5.18 5.299-5.437 4.784-.432-.477-13.894-15.69-13.894-15.69l.77-2.83-8.745-9.519c-3.189-1.1-8.232-1.286-9.261 5.66-.801 1.631-7.46.257-7.46.257l-3.602.772-20.322 28.811 11.319 13.634 23.152-29.326.688-8.308 4.857 5.432c1.62.208 3.163.227 4.631-.514l13.717 15.31-2.284 2.229c.772.858 1.303 1.405 2.075 2.263.772-.514 1.508-1.132 2.28-1.647.258.344.686.996.944 1.339-1.15.625-1.956 1.458-3.105 2.084-1.84-1.2-3.615-2.692-3.48-5.068l-7.718 6.431-.257 1.287-22.895 19.036-2.058.258-.515 5.916 14.92-12.347v-1.802l1.544 1.286 11.576-9.26s.772 1.029.515 1.029-10.29 9.26-10.29 9.26l-.257 1.03-1.801 1.543-1.03-.772-13.89 12.348h-2.059l-7.717 7.718c-1.99.173-3.715.384-5.402 1.543L78.86 295.14z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2845.d2c82bf6.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js deleted file mode 100644 index 14d2466baf..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2893.99328fa1.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2893"],{18716(l,e,s){s.r(e),s.d(e,{default:()=>i});var h=s(74848);s(47867);let i=l=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,h.jsx)("path",{fill:"#007fff",d:"M0 0h640v480H0z"}),(0,h.jsx)("path",{fill:"#f7d618",d:"M28.8 96H96l20.8-67.2L137.6 96h67.2l-54.4 41.6 20.8 67.2-54.4-41.6-54.4 41.6 20.8-67.2zM600 0 0 360v120h40l600-360V0z"}),(0,h.jsx)("path",{fill:"#ce1021",d:"M640 0 0 384v96L640 96z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2893.99328fa1.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js deleted file mode 100644 index 1fb356194d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 2980.d885aa98.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["2980"],{78623(t,i,r){r.r(i),r.d(i,{default:()=>s});var e=r(74848);r(47867);let s=t=>(0,e.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",transform:"matrix(.64143 0 0 .96773 0 0)",children:[(0,e.jsx)("rect",{width:1063,height:708.66,fill:"#007308",rx:0,ry:0,transform:"matrix(.93865 0 0 .69686 0 0)"}),(0,e.jsx)("rect",{width:1063,height:236.22,y:475.56,fill:"#bf0000",rx:0,ry:0,transform:"matrix(.93865 0 0 .69686 0 0)"}),(0,e.jsx)("path",{fill:"#ffb300",d:"M0 0h997.77v164.61H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/2980.d885aa98.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js deleted file mode 100644 index 8edb9de843..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3.470a371d.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3"],{6193(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"tg_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#tg_inline_svg__a)",transform:"scale(.9375)",children:[(0,e.jsx)("path",{fill:"#ffe300",d:"M0 0h767.63v512H0z"}),(0,e.jsx)("path",{fill:"#118600",d:"M0 208.14h767.63v102.81H0zM0 .248h767.63v102.81H0z"}),(0,e.jsx)("path",{fill:"#d80000",d:"M0 .248h306.51v310.71H0z"}),(0,e.jsx)("path",{fill:"#fff",d:"M134.42 128.43c0-.856 18.836-53.083 18.836-53.083l17.124 52.227s57.365 1.713 57.365.856-45.378 34.248-45.378 34.248 21.404 59.933 20.549 58.221-49.659-35.96-49.659-35.96-49.658 34.248-48.802 34.248 18.835-56.508 18.835-56.508l-44.522-33.392z"}),(0,e.jsx)("path",{fill:"#118600",d:"M0 409.19h767.63V512H0z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3.470a371d.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js deleted file mode 100644 index 71ad4003d3..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3009.be7deeee.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3009"],{80456(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"gl_inline_svg__a",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-62.883 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#gl_inline_svg__a)",transform:"translate(58.95)scale(.94)",children:[(0,e.jsx)("path",{fill:"#fff",d:"M661.1 512h-766.65V0H661.1z"}),(0,e.jsx)("path",{fill:"#df0000",d:"M661.1 512h-766.65V256.45H661.1zM347.57 255.85c0-86.577-70.184-156.766-156.763-156.766-86.576 0-156.765 70.185-156.765 156.765"}),(0,e.jsx)("path",{fill:"#fff",d:"M347.57 255.75c0 86.577-70.184 156.766-156.763 156.766-86.576 0-156.765-70.185-156.765-156.765"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3009.be7deeee.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js deleted file mode 100644 index baf253bcd4..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3055.b0f87225.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3055"],{78834(h,s,t){t.r(s),t.d(s,{default:()=>e});var l=t(74848);t(47867);let e=h=>(0,l.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,l.jsx)("defs",{children:(0,l.jsx)("clipPath",{id:"sz_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,l.jsx)("path",{fillOpacity:.67,d:"M-85.333 0h682.67v512h-682.67z"})})}),(0,l.jsxs)("g",{clipPath:"url(#sz_inline_svg__a)",transform:"translate(80)scale(.9375)",children:[(0,l.jsx)("path",{fill:"#3e5eb9",fillRule:"evenodd",d:"M-128 0h768v512h-768z"}),(0,l.jsx)("path",{fill:"#ffd900",fillRule:"evenodd",d:"M-128 91.429h768v329.14h-768z"}),(0,l.jsx)("path",{fill:"#b10c0c",fillRule:"evenodd",d:"M-128 128h768v256h-768z"}),(0,l.jsx)("rect",{width:621.71,height:10.971,x:-51.439,y:250.51,fill:"#ffd900",fillRule:"evenodd",stroke:"#000",strokeWidth:1.474,rx:5.767,ry:5.851}),(0,l.jsxs)("g",{stroke:"#000",transform:"translate(-757.03 -25.6)scale(1.0321)",children:[(0,l.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeWidth:4.175,d:"m-106.3 265.75-88.583 35.433 88.583 35.433 88.582-35.433z",transform:"matrix(.34 0 0 .3 1256.8 136.42)"}),(0,l.jsx)("rect",{width:442.91,height:7.087,x:761.81,y:223.23,fill:"#ffd900",fillRule:"evenodd",strokeWidth:1.333,rx:4.108,ry:3.78}),(0,l.jsx)("path",{fill:"none",strokeWidth:2.667,d:"M1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087",transform:"matrix(-.50001 0 0 .5 1806.3 90.354)"}),(0,l.jsx)("path",{fill:"none",strokeWidth:2.667,d:"M1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087",transform:"matrix(-.50001 0 0 .5 1802.8 90.354)"}),(0,l.jsx)("path",{fill:"none",strokeWidth:2.667,d:"M1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087",transform:"matrix(-.50001 0 0 .5 1799.2 90.355)"})]}),(0,l.jsxs)("g",{stroke:"#000",transform:"translate(-786.29 -3.657)scale(1.0321)",children:[(0,l.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeWidth:4.175,d:"m-106.3 265.75-88.583 35.433 88.583 35.433 88.582-35.433z",transform:"matrix(.34 0 0 .3 1256.8 136.42)"}),(0,l.jsx)("rect",{width:442.91,height:7.087,x:761.81,y:223.23,fill:"#ffd900",fillRule:"evenodd",strokeWidth:1.333,rx:4.108,ry:3.78}),(0,l.jsx)("path",{fill:"none",strokeWidth:2.667,d:"M1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087",transform:"matrix(-.50001 0 0 .5 1806.3 90.354)"}),(0,l.jsx)("path",{fill:"none",strokeWidth:2.667,d:"M1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087",transform:"matrix(-.50001 0 0 .5 1802.8 90.354)"}),(0,l.jsx)("path",{fill:"none",strokeWidth:2.667,d:"M1224.4 279.92c-3.54 0-7.09-3.544-7.09-7.087s3.55-7.087 7.09-7.087",transform:"matrix(-.50001 0 0 .5 1799.2 90.355)"})]}),(0,l.jsxs)("g",{fillRule:"evenodd",children:[(0,l.jsx)("path",{fill:"#3d5da7",stroke:"#000",strokeWidth:1.422,d:"M338.07-.416c-5.571 12.442 4.275-4.138 28.299 16.69 4.452 3.87 8.342 14.09 8.342 21.178-1.13-.975-1.969-3.145-3.214-4.553-1.743 2.253 1.664 12.577 2.162 17.457-3.756-2.71-3.394-3.993-4.642-7.324.249 4.026-.645 15.116.849 19.386-2.96-1.09-2.764-4.163-4.31-4.78 1.052 4.834-.916 10.094-.394 15.528-1.73-2.208-3.573-3.937-4.376-4.829-.135 2.588-3.327 9.388-3.4 11.835-1.468-1.143-1.866-2.926-2.111-4.126-1.824 2.955-8.308 13.872-8.724 17.202-4.996-5.69-17.793-19.545-19.459-26.9-1.473 4.176-3.604 5.584-7.817 8.632-1.665-11.656-7.891-24.756-4.561-34.747-2.359 1.804-4.302 3.608-6.66 5.828 2.234-16.88 13.628-36.674 30.016-46.477z",transform:"matrix(.9944 0 0 .77118 190.368 251.963)"}),(0,l.jsx)("path",{fill:"#a70000",d:"M505.878 299.164c2.3-4.597 4.419-6.056 5.905-9.016 2.626-5.203 3-9.343 5.288-8.736s2.285 2.737-.678 7.854c-2.964 5.116-4.372 6.209-10.515 9.898M521.438 310.115c-.295-3.5.72-4.963.534-7.217-.316-3.967-1.938-6.69.171-6.883 2.11-.194 3.096 1.159 3.102 5.156.006 3.998-.612 5.048-3.807 8.944M533.243 316.979c-.922-4.887-.233-7.055-.822-10.203-1.027-5.54-3.058-9.187-1.103-9.693s3.134 1.284 3.874 6.902.35 7.162-1.95 12.994M545.515 282.734c-2.882-2.188-4.565-2.334-6.424-3.74-3.274-2.468-4.931-5.108-5.984-3.797s-.306 2.745 3.125 5.02c3.431 2.276 4.593 2.456 9.283 2.517M543.484 298.962c-1.52-3.155-3.119-3.955-4.101-5.986-1.738-3.567-1.74-6.653-3.625-5.862-1.884.791-2.036 2.407-.02 5.86 2.015 3.452 3.07 4.077 7.746 5.988"})]}),(0,l.jsxs)("g",{fillRule:"evenodd",children:[(0,l.jsx)("path",{fill:"#3d5da7",stroke:"#000",strokeWidth:1.422,d:"M329.6 20.703c-.272-2.662.253-2.98-1.258-4.989 2.2.997 2.284 3.649 4.959 1.767.983-.551 1.411-.569.217-3.526 2.79.14 11.927 3.535 13.39 3.614 3.842.191 10.855-4.373 15.723 1.24 4.672 5.117 3.112 10.428 3.112 17.515-1.877-.975-.973-1.455-2.965-3.989 1.494 6.195-.08 17.364-.08 23.934-.767-1.584-.654-.896-1.404-2.537-1.992 5.997-4.38 7.231-4.38 14.318-.719-2.78-.025-2.191-.825-3.653-1.936 4.552-14.925 8.443-9.92 13.033-4.518-2.87-6.499-2.57-8.548-5.15-.882.617-1.584 1.785-2.404 3.386-7.943-3.96-5.103-12.5-11.326-18.206-1.077 2.393-.586 2.045-1.75 5.939-1.26-5.408-1.604-8.844-3.021-12.82-1.223 2.204-1.113 1.36-3.333 4.69-.918-6.587-2.413-8.142-1.822-12.501-2.359 1.804-.815 1.073-3.173 3.293 2.234-16.88 11.884-29.352 18.808-25.358z",transform:"matrix(1.1372 0 0 1.0495 -399.418 239.16)"}),(0,l.jsx)("path",{fill:"#a70000",d:"M-35.707 289.802c2.327-5.704 4.425-7.495 5.929-11.167 2.655-6.454 3.088-11.613 5.32-10.826 2.23.787 2.194 3.444-.79 9.786s-4.383 7.686-10.459 12.207M-26.893 304.072c.932-5.114 2.405-6.976 3.01-10.27 1.075-5.79.476-10.102 2.549-9.875s2.543 2.412 1.163 8.173c-1.38 5.76-2.332 7.125-6.722 11.972M-16.354 313.993c.263-4.957 1.424-6.893 1.598-10.086.315-5.616-.767-9.637 1.211-9.66s2.682 1.997 2.076 7.62c-.606 5.622-1.338 7.025-4.885 12.126M6.28 281.574c-4.328-4.312-6.945-5.116-9.736-7.89-4.917-4.87-7.294-9.44-9.044-7.82s-.698 4.05 4.48 8.684c5.177 4.634 6.978 5.309 14.3 7.026M3.647 298.24c-2.819-4.33-4.887-5.451-6.707-8.237-3.21-4.895-4.312-9.1-6.132-8.06-1.82 1.042-1.413 3.24 2.065 7.985 3.478 4.744 4.878 5.617 10.774 8.311"})]}),(0,l.jsxs)("g",{fillRule:"evenodd",children:[(0,l.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:2.108,d:"M637.8 230.32c-53.15 59.05-124.02 177.16-265.75 177.16-124.02 0-212.6-118.11-265.75-177.16 53.15-59.06 141.73-177.17 265.75-177.17 141.73 0 212.6 118.11 265.75 177.17z",transform:"matrix(.68807 0 0 .61926 .001 113.366)"}),(0,l.jsx)("path",{d:"M243.234 184.445c9.73 10.943 1.605 15.354 11.903 16.073 10.86.797 4.705 11.562 13.84 11.936 6.387.28-.638 25.794 5.511 34.213 6.263 8.777 11.508 2.571 11.618 8.913.109 6.558-17.045 5.896-17.346 26.099-.503 11.642-14.476 12.388-15.143 19.879-.83 7.046 27.528 11.002 27.15 17.31-.388 6.288-30.62 5.303-31.936 12.475-.675 6.442 41.531 11.721 44.925 30.352-6.298 2.06-24.216 3.998-37.76 4.009-85.327.068-146.283-73.14-182.854-109.708 36.571-36.574 97.52-109.714 182.855-109.714 0 0-25.33 23.144-12.763 38.163"}),(0,l.jsx)("g",{fill:"#fff",strokeWidth:"1pt",children:(0,l.jsx)("path",{d:"M141.408 216.989h8.866v29.256h-8.866zM141.408 265.75h8.866v29.256h-8.866zM159.138 216.989h8.866v29.256h-8.866zM159.138 265.75h8.866v29.256h-8.866zM176.868 216.989h8.866v29.256h-8.866zM176.868 265.75h8.866v29.256h-8.866zM194.602 216.989h8.866v29.256h-8.866zM194.602 265.75h8.866v29.256h-8.866zM212.332 216.989h8.866v29.256h-8.866zM212.332 265.75h8.866v29.256h-8.866zM230.062 216.989h8.865v29.256h-8.865zM230.062 265.75h8.865v29.256h-8.865z"})}),(0,l.jsx)("g",{strokeWidth:"1pt",children:(0,l.jsx)("path",{d:"M275.499 216.989h8.866v29.256h-8.866zM275.499 265.75h8.866v29.256h-8.866zM293.228 216.989h8.866v29.256h-8.866zM293.228 265.75h8.866v29.256h-8.866zM310.958 216.989h8.866v29.256h-8.866zM310.958 265.75h8.866v29.256h-8.866zM328.693 216.989h8.866v29.256h-8.866zM328.693 265.75h8.866v29.256h-8.866zM346.422 216.989h8.866v29.256h-8.866zM346.422 265.75h8.866v29.256h-8.866zM364.152 216.989h8.866v29.256h-8.866zM364.152 265.75h8.866v29.256h-8.866z"})})]}),(0,l.jsxs)("g",{fillRule:"evenodd",children:[(0,l.jsx)("path",{fill:"#3d5da7",stroke:"#000",strokeWidth:1.422,d:"M338.07-.416c-5.571 12.442 9.754-4.138 33.778 16.69 4.452 3.87 10.833 19.16 10.833 26.246-5.115-1.257-14.173-7.087-14.173-7.087s10.63 12.295 10.63 26.468c-3.756-2.71-5.635-2.304-6.883-5.634 0 4.588 3.34 7.512 3.34 14.599-2.711-2.498-5.006-4.163-7.3-5.625 3.543 7.086-6.457 20.834-1.452 25.423-8.752-1.462-17.707-7.92-21.25-15.006-1.878 1.462-2.082 3.756-2.155 6.203.276.264-13.322-11.656-12.073-16.235-1.824 2.955-2.081 4.579-2.497 7.909-4.996-5.69-9.574-11.378-11.24-18.733-2.22 3.33-2.359 3.33-4.579 6.66-1.665-11.655-1.665-11.24 1.665-21.23-2.359 1.804-4.302 3.608-6.66 5.828 2.234-16.88 13.628-36.674 30.016-46.477z",transform:"matrix(.9094 0 0 .78749 -110.58 166.096)"}),(0,l.jsx)("path",{fill:"#a70000",d:"M184.375 213.644c.81-6.752 2.576-9.295 3.103-13.643.94-7.648-.175-13.237 2.534-13.095 2.71.141 3.49 2.962 2.151 10.593-1.34 7.63-2.468 9.484-7.788 16.145M198.52 226.007c-.55-5.697.503-8.122.154-11.791-.602-6.457-2.596-10.83-.234-11.233 2.362-.402 3.556 1.764 3.81 8.283.256 6.519-.375 8.256-3.73 14.74M220.602 236.092c-2.401-4.929-4.464-6.4-6.015-9.572-2.739-5.576-3.31-10.129-5.422-9.304s-1.996 3.18 1.054 8.639 4.429 6.57 10.383 10.237M228.235 191.946c-6.116-3.22-9.257-3.26-13.199-5.329-6.94-3.627-10.98-7.725-12.414-5.47s.48 4.499 7.635 7.796 9.354 3.454 17.978 3.003M230.48 210.382c-4.455-3.705-7.088-4.25-9.96-6.633-5.06-4.182-7.578-8.288-9.268-6.624s-.56 3.864 4.75 7.804 7.127 4.43 14.477 5.453"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3055.b0f87225.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js deleted file mode 100644 index 4e2c2e9373..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3062.323c4508.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3062"],{15557(l,h,s){s.r(h),s.d(h,{default:()=>i});var d=s(74848);s(47867);let i=l=>(0,d.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 12.8 9.6",...l,children:[(0,d.jsx)("path",{fill:"#078930",d:"M0 6.72h12.8V9.6H0z"}),(0,d.jsx)("path",{fill:"#fff",d:"M0 2.88h12.8v3.84H0z"}),(0,d.jsx)("path",{d:"M0 0h12.8v2.88H0z"}),(0,d.jsx)("path",{fill:"#da121a",d:"M0 3.36h12.8v2.88H0z"}),(0,d.jsx)("path",{fill:"#0f47af",d:"m0 0 8.314 4.8L0 9.6z"}),(0,d.jsx)("path",{fill:"#fcdd09",d:"M4.014 3.897 1.235 4.8l2.779.903-1.717-2.364v2.922z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3062.323c4508.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js deleted file mode 100644 index 19173cac2a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3066.31b992e1.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3066"],{32273(e,l,h){h.r(l),h.d(l,{default:()=>s});var i=h(74848);h(47867);let s=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0h640v479.997H0z"}),(0,i.jsx)("path",{fill:"#00267f",d:"M0 0h213.33v479.997H0z"}),(0,i.jsx)("path",{fill:"#f31830",d:"M426.663 0h213.33v479.997h-213.33z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3066.31b992e1.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js deleted file mode 100644 index feda83fa10..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3068.7b747a5f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3068"],{90919(t,s,l){l.r(s),l.d(s,{default:()=>c});var h=l(74848);l(47867);let c=t=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,h.jsx)("path",{fill:"#c60b1e",d:"M0 0h640v480H0z"}),(0,h.jsx)("path",{fill:"#ffc400",d:"M0 120h640v240H0z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M127.27 213.35s-.49 0-.76-.152c-.27-.157-1.084-.927-1.084-.927l-.652-.463-.593-.822s-.704-1.124-.38-2c.323-.873.866-1.183 1.356-1.44.49-.255 1.515-.564 1.515-.564s.818-.358 1.088-.412c.27-.05 1.25-.307 1.25-.307s.27-.152.54-.255c.273-.102.65-.102.87-.156.216-.053.76-.227 1.084-.244.504-.02 1.303.09 1.576.09.27 0 1.193.053 1.57.053.378 0 1.735-.106 2.116-.106.378 0 .652-.047 1.088 0 .432.05 1.19.306 1.41.412.217.103 1.52.566 2.006.72.49.15 1.684.357 2.228.614.54.26.87.692 1.14 1.052.274.36.324.75.433 1.01.102.255.106.807.003 1.064-.11.255-.494.784-.494.784l-.6.974-.757.614s-.544.518-.975.463c-.437-.043-4.832-.82-7.654-.82s-7.328.82-7.328.82"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.25,d:"M127.27 213.35s-.49 0-.76-.152c-.27-.157-1.084-.927-1.084-.927l-.652-.463-.593-.822s-.704-1.124-.38-2c.323-.873.866-1.183 1.356-1.44.49-.255 1.515-.564 1.515-.564s.818-.358 1.088-.412c.27-.05 1.25-.307 1.25-.307s.27-.152.54-.255c.273-.102.65-.102.87-.156.216-.053.76-.227 1.084-.244.504-.02 1.303.09 1.576.09.27 0 1.193.053 1.57.053.378 0 1.735-.106 2.116-.106.378 0 .652-.047 1.088 0 .432.05 1.19.306 1.41.412.217.103 1.52.566 2.006.72.49.15 1.684.357 2.228.614.54.26.87.692 1.14 1.052.274.36.324.75.433 1.01.102.255.106.807.003 1.064-.11.255-.494.784-.494.784l-.6.974-.757.614s-.544.518-.975.463c-.437-.043-4.832-.82-7.654-.82s-7.328.82-7.328.82h.004z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M133.306 207.055c0-1.326.593-2.396 1.324-2.396.73 0 1.325 1.07 1.325 2.395 0 1.32-.595 2.393-1.325 2.393s-1.324-1.073-1.324-2.393"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M133.306 207.055c0-1.326.593-2.396 1.324-2.396.73 0 1.325 1.07 1.325 2.395 0 1.32-.595 2.393-1.325 2.393s-1.324-1.073-1.324-2.393z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M134.047 207.055c0-1.22.274-2.208.608-2.208.34 0 .608.99.608 2.208 0 1.21-.27 2.2-.608 2.2-.334 0-.608-.99-.608-2.2"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M134.047 207.055c0-1.22.274-2.208.608-2.208.34 0 .608.99.608 2.208 0 1.21-.27 2.2-.608 2.2-.334 0-.608-.99-.608-2.2z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M133.762 204.522c0-.46.396-.842.886-.842s.886.382.886.842c0 .464-.396.835-.886.835s-.886-.37-.886-.835"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M135.274 204.226v.558h-1.37v-.558h.448v-1.258h-.593v-.556h.592v-.545h.583v.545h.59v.556h-.59v1.258z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.288,d:"M135.274 204.226v.558h-1.37v-.558h.448v-1.258h-.593v-.556h.592v-.545h.583v.545h.59v.556h-.59v1.258h.34"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M135.886 204.226v.558h-2.433v-.558h.9v-1.258h-.594v-.556h.592v-.545h.583v.545h.59v.556h-.59v1.258h.95"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.288,d:"M135.886 204.226v.558h-2.433v-.558h.9v-1.258h-.594v-.556h.592v-.545h.583v.545h.59v.556h-.59v1.258h.95"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M134.903 203.715c.368.102.63.426.63.807 0 .464-.395.835-.885.835s-.886-.37-.886-.835c0-.388.277-.72.656-.81"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M134.65 213.198h-4.614l-.106-1.132-.217-1.18-.23-1.472c-1.272-1.678-2.44-2.78-2.834-2.543.093-.31.205-.54.45-.684 1.13-.672 3.462.94 5.216 3.59.158.24.31.483.443.726h3.81q.207-.358.446-.727c1.75-2.648 4.085-4.26 5.212-3.59.245.144.357.376.454.686-.395-.23-1.562.866-2.84 2.544l-.227 1.473-.216 1.18-.106 1.13h-4.64"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M134.65 213.198h-4.614l-.106-1.132-.217-1.18-.23-1.472c-1.272-1.678-2.44-2.78-2.834-2.543.093-.31.205-.54.45-.684 1.13-.672 3.462.94 5.216 3.59.158.24.31.483.443.726h3.81q.207-.358.446-.727c1.75-2.648 4.085-4.26 5.212-3.59.245.144.357.376.454.686-.395-.23-1.562.866-2.84 2.544l-.227 1.473-.216 1.18-.106 1.13h-4.643z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M126.852 206.827c.867-.51 2.893 1.095 4.538 3.59m11.087-3.59c-.87-.51-2.894 1.095-4.54 3.59"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M127.834 215.28c-.19-.548-.554-1.04-.554-1.04 1.868-.548 4.47-.892 7.364-.9 2.89.008 5.515.352 7.38.9l-.498.88c-.162.284-.373.777-.36.777-1.687-.517-3.862-.783-6.536-.786-2.67.004-5.24.33-6.58.822.014 0-.093-.31-.227-.65h.01"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M127.834 215.28c-.19-.548-.554-1.04-.554-1.04 1.868-.548 4.47-.892 7.364-.9 2.89.008 5.515.352 7.38.9l-.498.88c-.162.284-.373.777-.36.777-1.687-.517-3.862-.783-6.536-.786-2.67.004-5.24.33-6.58.822.014 0-.093-.31-.227-.65h.01"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M134.644 217.657c2.333-.004 4.906-.358 5.853-.603.638-.185 1.007-.47.94-.802-.032-.156-.17-.292-.353-.37-1.397-.447-3.906-.764-6.44-.768-2.53.004-5.057.32-6.45.767-.183.08-.32.216-.352.372-.07.33.302.617.935.802.95.245 3.535.6 5.867.603"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M134.644 217.657c2.333-.004 4.906-.358 5.853-.603.638-.185 1.007-.47.94-.802-.032-.156-.17-.292-.353-.37-1.397-.447-3.906-.764-6.44-.768-2.53.004-5.057.32-6.45.767-.183.08-.32.216-.352.372-.07.33.302.617.935.802.95.245 3.535.6 5.867.603z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m142.143 213.198-.572-.514s-.54.333-1.22.23c-.677-.1-.896-.922-.896-.922s-.76.636-1.383.59c-.622-.056-1.03-.59-1.03-.59s-.675.483-1.273.436c-.597-.055-1.166-.798-1.166-.798s-.596.77-1.193.825c-.598.048-1.088-.52-1.088-.52s-.27.568-1.03.693c-.76.13-1.408-.59-1.408-.59s-.435.696-.95.877c-.514.18-1.195-.26-1.195-.26s-.11.26-.187.413c-.083.154-.3.182-.3.182l.17.46c1.86-.54 4.38-.873 7.23-.876 2.856.003 5.444.337 7.31.88l.19-.516"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m142.143 213.198-.572-.514s-.54.333-1.22.23c-.677-.1-.896-.922-.896-.922s-.76.636-1.383.59c-.622-.056-1.03-.59-1.03-.59s-.675.483-1.273.436c-.597-.055-1.166-.798-1.166-.798s-.596.77-1.193.825c-.598.048-1.088-.52-1.088-.52s-.27.568-1.03.693c-.76.13-1.408-.59-1.408-.59s-.435.696-.95.877c-.514.18-1.195-.26-1.195-.26s-.11.26-.187.413c-.083.154-.3.182-.3.182l.17.46c1.86-.54 4.38-.873 7.23-.876 2.856.003 5.444.337 7.31.88l.19-.516h-.008z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m134.66 210.712.268.05a1 1 0 0 0-.053.356c0 .56.478 1.013 1.073 1.013.474 0 .874-.293 1.015-.698.018.01.104-.368.147-.362.032 0 .028.393.046.386.066.507.533.856 1.06.856.59 0 1.063-.453 1.063-1.012q.002-.063-.007-.123l.335-.335.183.426c-.073.13-.1.28-.1.44 0 .536.46.97 1.02.97.355 0 .664-.175.85-.434l.215-.273-.004.34c0 .332.145.632.473.687 0 0 .37.027.875-.368.496-.393.77-.72.77-.72l.03.402s-.487.804-.934 1.06c-.242.143-.617.293-.91.24-.31-.046-.533-.298-.65-.584-.22.132-.48.207-.762.207-.605 0-1.148-.334-1.363-.827-.28.3-.664.48-1.118.48a1.56 1.56 0 0 1-1.202-.552 1.55 1.55 0 0 1-1.05.406 1.56 1.56 0 0 1-1.282-.66c-.27.393-.745.66-1.278.66-.407 0-.778-.154-1.05-.406a1.56 1.56 0 0 1-1.204.552 1.5 1.5 0 0 1-1.116-.48c-.215.49-.76.827-1.364.827-.28 0-.543-.075-.763-.207-.115.286-.338.538-.648.585-.295.052-.665-.098-.91-.24-.447-.257-.973-1.06-.973-1.06l.07-.404s.276.327.77.72c.5.394.874.367.874.367.328-.055.472-.355.472-.688l-.004-.34.215.274c.183.26.494.433.85.433.56 0 1.017-.433 1.017-.968a.9.9 0 0 0-.096-.442l.18-.426.335.335a1 1 0 0 0-.01.123c0 .56.476 1.012 1.07 1.012.525 0 .99-.35 1.058-.856.014.007.01-.386.046-.386.042-.007.132.373.147.362.14.405.543.7 1.018.7.59 0 1.07-.455 1.07-1.014a.9.9 0 0 0-.055-.357l.28-.048"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m134.66 210.712.268.05a1 1 0 0 0-.053.356c0 .56.478 1.013 1.073 1.013.474 0 .874-.293 1.015-.698.018.01.104-.368.147-.362.032 0 .028.393.046.386.066.507.533.856 1.06.856.59 0 1.063-.453 1.063-1.012q.002-.063-.007-.123l.335-.335.183.426c-.073.13-.1.28-.1.44 0 .536.46.97 1.02.97.355 0 .664-.175.85-.434l.215-.273-.004.34c0 .332.145.632.473.687 0 0 .37.027.875-.368.496-.393.77-.72.77-.72l.03.402s-.487.804-.934 1.06c-.242.143-.617.293-.91.24-.31-.046-.533-.298-.65-.584-.22.132-.48.207-.762.207-.605 0-1.148-.334-1.363-.827-.28.3-.664.48-1.118.48a1.56 1.56 0 0 1-1.202-.552 1.55 1.55 0 0 1-1.05.406 1.56 1.56 0 0 1-1.282-.66c-.27.393-.745.66-1.278.66-.407 0-.778-.154-1.05-.406a1.56 1.56 0 0 1-1.204.552 1.5 1.5 0 0 1-1.116-.48c-.215.49-.76.827-1.364.827-.28 0-.543-.075-.763-.207-.115.286-.338.538-.648.585-.295.052-.665-.098-.91-.24-.447-.257-.973-1.06-.973-1.06l.07-.404s.276.327.77.72c.5.394.874.367.874.367.328-.055.472-.355.472-.688l-.004-.34.215.274c.183.26.494.433.85.433.56 0 1.017-.433 1.017-.968a.9.9 0 0 0-.096-.442l.18-.426.335.335a1 1 0 0 0-.01.123c0 .56.476 1.012 1.07 1.012.525 0 .99-.35 1.058-.856.014.007.01-.386.046-.386.042-.007.132.373.147.362.14.405.543.7 1.018.7.59 0 1.07-.455 1.07-1.014a.9.9 0 0 0-.055-.357l.28-.048h.008z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M134.644 213.345c-2.893.003-5.496.347-7.36.9-.127.04-.28-.056-.32-.168-.04-.118.05-.265.172-.306 1.875-.572 4.542-.933 7.508-.936 2.963.003 5.64.364 7.516.937.123.042.212.19.173.307-.036.112-.194.208-.317.168-1.867-.553-4.48-.897-7.372-.9"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.25,d:"M134.644 213.345c-2.893.003-5.496.347-7.36.9-.127.04-.28-.056-.32-.168-.04-.118.05-.265.172-.306 1.875-.572 4.542-.933 7.508-.936 2.963.003 5.64.364 7.516.937.123.042.212.19.173.307-.036.112-.194.208-.317.168-1.867-.553-4.48-.897-7.372-.9z"}),(0,h.jsx)("path",{fill:"#fff",d:"M131.844 214.37c0-.217.187-.395.42-.395s.418.178.418.396c0 .222-.186.395-.418.395-.233 0-.42-.173-.42-.394"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M131.844 214.37c0-.217.187-.395.42-.395s.418.178.418.396c0 .222-.186.395-.418.395-.233 0-.42-.173-.42-.394z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M134.677 214.542h-.93c-.17 0-.315-.137-.315-.3s.14-.294.31-.294h1.884a.3.3 0 0 1 .31.293c0 .165-.14.302-.313.302z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M134.677 214.542h-.93c-.17 0-.315-.137-.315-.3s.14-.294.31-.294h1.884a.3.3 0 0 1 .31.293c0 .165-.14.302-.313.302h-.946"}),(0,h.jsx)("path",{fill:"#058e6e",d:"m130.015 214.86-.665.1c-.17.024-.335-.085-.36-.248a.296.296 0 0 1 .26-.334l.668-.1.685-.105c.17-.02.327.086.356.246a.305.305 0 0 1-.264.336z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m130.015 214.86-.665.1c-.17.024-.335-.085-.36-.248a.296.296 0 0 1 .26-.334l.668-.1.685-.105c.17-.02.327.086.356.246a.305.305 0 0 1-.264.336l-.68.105"}),(0,h.jsx)("path",{fill:"#ad1519",d:"m127.326 215.328.296-.476.63.12-.368.535-.558-.18"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m127.326 215.328.296-.476.63.12-.368.535-.558-.18"}),(0,h.jsx)("path",{fill:"#fff",d:"M136.61 214.37c0-.217.187-.395.42-.395.23 0 .418.178.418.396a.404.404 0 0 1-.417.395c-.233 0-.42-.173-.42-.394"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M136.61 214.37c0-.217.187-.395.42-.395.23 0 .418.178.418.396a.404.404 0 0 1-.417.395c-.233 0-.42-.173-.42-.394z"}),(0,h.jsx)("path",{fill:"#058e6e",d:"m139.276 214.86.67.1a.314.314 0 0 0 .357-.248.294.294 0 0 0-.256-.334l-.673-.1-.68-.105c-.173-.02-.33.086-.357.246-.03.158.09.312.263.336z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m139.276 214.86.67.1a.314.314 0 0 0 .357-.248.294.294 0 0 0-.256-.334l-.673-.1-.68-.105c-.173-.02-.33.086-.357.246-.03.158.09.312.263.336l.676.105"}),(0,h.jsx)("path",{fill:"#ad1519",d:"m141.91 215.356-.236-.508-.648.054.31.57.575-.116"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m141.91 215.356-.236-.508-.648.054.31.57.575-.116"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M134.636 217.115c-2.334-.003-4.447-.208-6.053-.623 1.606-.413 3.72-.67 6.053-.675 2.337.003 4.46.26 6.07.675-1.61.415-3.733.62-6.07.623"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.25,d:"M134.636 217.115c-2.334-.003-4.447-.208-6.053-.623 1.606-.413 3.72-.67 6.053-.675 2.337.003 4.46.26 6.07.675-1.61.415-3.733.62-6.07.623z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M142.005 212.05c.06-.18.004-.36-.125-.404-.13-.036-.288.08-.35.253-.06.183-.008.365.126.405.13.037.284-.075.35-.255"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M142.005 212.05c.06-.18.004-.36-.125-.404-.13-.036-.288.08-.35.253-.06.183-.008.365.126.405.13.037.284-.075.35-.255z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M137.355 211.15c.02-.188-.07-.355-.205-.372-.138-.017-.267.126-.288.314-.025.187.065.354.2.37.14.014.268-.13.293-.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M137.355 211.15c.02-.188-.07-.355-.205-.372-.138-.017-.267.126-.288.314-.025.187.065.354.2.37.14.014.268-.13.293-.312z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M131.95 211.15c-.02-.188.07-.355.208-.372.136-.017.266.126.29.314.023.187-.068.354-.205.37-.133.014-.267-.13-.292-.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M131.95 211.15c-.02-.188.07-.355.208-.372.136-.017.266.126.29.314.023.187-.068.354-.205.37-.133.014-.267-.13-.292-.312z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M127.3 212.05c-.06-.18-.003-.36.128-.404.13-.036.287.08.348.253.062.183.007.365-.126.405-.13.037-.285-.075-.35-.255"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M127.3 212.05c-.06-.18-.003-.36.128-.404.13-.036.287.08.348.253.062.183.007.365-.126.405-.13.037-.285-.075-.35-.255z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m134.636 208.463-.823.497.612 1.326.21.14.21-.14.616-1.326-.824-.497"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m134.636 208.463-.823.497.612 1.326.21.14.21-.14.616-1.326-.824-.497"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m132.834 210.468.374.546 1.288-.397.134-.18-.138-.185-1.284-.375-.374.59"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m132.834 210.468.374.546 1.288-.397.134-.18-.138-.185-1.284-.375-.374.59"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m136.45 210.468-.373.546-1.29-.397-.136-.18.14-.185 1.287-.375.374.59"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m136.45 210.468-.373.546-1.29-.397-.136-.18.14-.185 1.287-.375.374.59"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m129.28 209.053-.647.61.827 1.092.22.087.162-.167.288-1.318z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m129.28 209.053-.647.61.827 1.092.22.087.162-.167.288-1.318-.85-.304"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m127.923 211.24.487.457 1.173-.633.09-.204-.17-.154-1.342-.116-.237.65"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m127.923 211.24.487.457 1.173-.633.09-.204-.17-.154-1.342-.116-.237.65"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m131.467 210.53-.25.602-1.346-.122-.172-.155.094-.207 1.177-.62.497.5"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m131.467 210.53-.25.602-1.346-.122-.172-.155.094-.207 1.177-.62.497.5"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m126.628 211.41-.108.64-1.342.14-.202-.117.043-.217 1.01-.84z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m126.628 211.41-.108.64-1.342.14-.202-.117.043-.217 1.01-.84.598.395"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M129.22 210.863c0-.25.212-.45.472-.45s.47.2.47.45a.46.46 0 0 1-.47.446.46.46 0 0 1-.472-.447"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M129.22 210.863c0-.25.212-.45.472-.45s.47.2.47.45a.46.46 0 0 1-.47.446.46.46 0 0 1-.472-.447z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m140.02 209.053.646.61-.828 1.092-.223.087-.157-.167-.292-1.318.853-.304"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m140.02 209.053.646.61-.828 1.092-.223.087-.157-.167-.292-1.318.853-.304"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m141.372 211.24-.486.457-1.174-.633-.093-.204.176-.154 1.343-.116.232.65"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m141.372 211.24-.486.457-1.174-.633-.093-.204.176-.154 1.343-.116.232.65"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m137.833 210.53.25.602 1.337-.122.178-.155-.098-.207-1.173-.62-.494.5"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m137.833 210.53.25.602 1.337-.122.178-.155-.098-.207-1.173-.62-.494.5"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m142.484 211.41.112.64 1.343.14.2-.117-.047-.217-1.01-.84-.6.395"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m142.484 211.41.112.64 1.343.14.2-.117-.047-.217-1.01-.84-.6.395"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M134.173 210.44a.46.46 0 0 1 .47-.45c.264 0 .473.198.473.45a.46.46 0 0 1-.472.447.46.46 0 0 1-.47-.446"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M134.173 210.44a.46.46 0 0 1 .47-.45c.264 0 .473.198.473.45a.46.46 0 0 1-.472.447.46.46 0 0 1-.47-.446z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M139.144 210.863c0-.25.212-.45.47-.45a.46.46 0 0 1 .472.45.46.46 0 0 1-.47.446.46.46 0 0 1-.472-.447"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M139.144 210.863c0-.25.212-.45.47-.45a.46.46 0 0 1 .472.45.46.46 0 0 1-.47.446.46.46 0 0 1-.472-.447z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M124.814 212.158c-.015.01-.363-.464-.63-.702-.19-.167-.648-.31-.648-.31 0-.085.267-.276.558-.276a.54.54 0 0 1 .428.19l.04-.184s.234.045.342.308c.11.272.04.685.04.685s-.044.19-.13.288"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M124.814 212.158c-.015.01-.363-.464-.63-.702-.19-.167-.648-.31-.648-.31 0-.085.267-.276.558-.276a.54.54 0 0 1 .428.19l.04-.184s.234.045.342.308c.11.272.04.685.04.685s-.044.19-.13.288z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M124.832 211.923c.11-.116.342-.092.51.055.174.146.224.36.113.48-.112.12-.343.093-.512-.054-.172-.147-.222-.365-.11-.48"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M124.832 211.923c.11-.116.342-.092.51.055.174.146.224.36.113.48-.112.12-.343.093-.512-.054-.172-.147-.222-.365-.11-.48z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M144.302 212.158c.01.01.364-.464.63-.702.183-.167.648-.31.648-.31 0-.085-.27-.276-.562-.276-.17 0-.33.07-.428.19l-.04-.184s-.234.045-.34.308c-.106.272-.038.685-.038.685s.04.19.13.288"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M144.302 212.158c.01.01.364-.464.63-.702.183-.167.648-.31.648-.31 0-.085-.27-.276-.562-.276-.17 0-.33.07-.428.19l-.04-.184s-.234.045-.34.308c-.106.272-.038.685-.038.685s.04.19.13.288z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M144.312 211.923c-.11-.116-.34-.092-.513.055-.175.146-.225.36-.114.48.113.12.342.093.516-.054.172-.147.22-.365.11-.48"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M144.312 211.923c-.11-.116-.34-.092-.513.055-.175.146-.225.36-.114.48.113.12.342.093.516-.054.172-.147.22-.365.11-.48z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M123.997 223.074h21.395v-5.608h-21.395z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M123.997 223.074h21.395v-5.608h-21.395z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M126.242 226.806a.9.9 0 0 1 .397-.06h16.02c.16 0 .31.026.436.077-.547-.183-.943-.68-.943-1.268 0-.586.428-1.094.982-1.285-.125.04-.313.08-.463.08H126.64a1.4 1.4 0 0 1-.45-.053l.086.014c.572.178.9.686.9 1.245a1.33 1.33 0 0 1-.934 1.25"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M126.242 226.806a.9.9 0 0 1 .397-.06h16.02c.16 0 .31.026.436.077-.547-.183-.943-.68-.943-1.268 0-.586.428-1.094.982-1.285-.125.04-.313.08-.463.08H126.64a1.4 1.4 0 0 1-.45-.053l.086.014c.572.178.9.686.9 1.245a1.33 1.33 0 0 1-.934 1.25z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M126.64 226.745h16.02c.544 0 .983.337.983.75 0 .416-.44.754-.982.754h-16.02c-.545 0-.984-.34-.984-.755 0-.413.44-.75.983-.75"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M126.64 226.745h16.02c.544 0 .983.337.983.75 0 .416-.44.754-.982.754h-16.02c-.545 0-.984-.34-.984-.755 0-.413.44-.75.983-.75z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M126.64 223.074h16.032c.54 0 .983.286.983.634 0 .354-.444.64-.983.64H126.64c-.545 0-.984-.286-.984-.64 0-.348.44-.634.983-.634"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M126.64 223.074h16.032c.54 0 .983.286.983.634 0 .354-.444.64-.983.64H126.64c-.545 0-.984-.286-.984-.64 0-.348.44-.634.983-.634z"}),(0,h.jsx)("path",{fill:"#005bbf",d:"M149.63 317.45c-1.48 0-2.798-.31-3.77-.83-.965-.49-2.27-.79-3.71-.79-1.447 0-2.786.304-3.75.797-.97.51-2.308.822-3.77.822-1.48 0-2.797-.346-3.77-.863-.955-.47-2.238-.758-3.64-.758-1.452 0-2.74.276-3.705.777-.973.516-2.32.842-3.794.842v2.316c1.476 0 2.822-.337 3.795-.848.965-.498 2.253-.78 3.704-.78 1.398 0 2.68.29 3.64.763.97.516 2.29.866 3.77.866 1.462 0 2.8-.32 3.77-.823.964-.5 2.303-.805 3.75-.805 1.44 0 2.745.304 3.71.798.972.517 2.268.83 3.752.83l.017-2.317"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M149.63 317.45c-1.48 0-2.798-.31-3.77-.83-.965-.49-2.27-.79-3.71-.79-1.447 0-2.786.304-3.75.797-.97.51-2.308.822-3.77.822-1.48 0-2.797-.346-3.77-.863-.955-.47-2.238-.758-3.64-.758-1.452 0-2.74.276-3.705.777-.973.516-2.32.842-3.794.842v2.316c1.476 0 2.822-.337 3.795-.848.965-.498 2.253-.78 3.704-.78 1.398 0 2.68.29 3.64.763.97.516 2.29.866 3.77.866 1.462 0 2.8-.32 3.77-.823.964-.5 2.303-.805 3.75-.805 1.44 0 2.745.304 3.71.798.972.517 2.268.83 3.752.83l.017-2.317z"}),(0,h.jsx)("path",{fill:"#ccc",d:"M149.63 319.766c-1.48 0-2.798-.313-3.77-.83-.965-.494-2.27-.798-3.71-.798-1.447 0-2.786.304-3.75.805-.97.504-2.308.823-3.77.823-1.48 0-2.797-.35-3.77-.865-.955-.473-2.238-.762-3.64-.762-1.452 0-2.74.282-3.705.78-.973.51-2.32.848-3.794.848v2.312c1.476 0 2.822-.33 3.795-.842.965-.505 2.253-.784 3.704-.784 1.398 0 2.68.29 3.64.764.97.515 2.29.862 3.77.862 1.462 0 2.8-.32 3.77-.825.964-.497 2.303-.8 3.75-.8 1.44 0 2.745.303 3.71.797.972.515 2.268.828 3.752.828l.017-2.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M149.63 319.766c-1.48 0-2.798-.313-3.77-.83-.965-.494-2.27-.798-3.71-.798-1.447 0-2.786.304-3.75.805-.97.504-2.308.823-3.77.823-1.48 0-2.797-.35-3.77-.865-.955-.473-2.238-.762-3.64-.762-1.452 0-2.74.282-3.705.78-.973.51-2.32.848-3.794.848v2.312c1.476 0 2.822-.33 3.795-.842.965-.505 2.253-.784 3.704-.784 1.398 0 2.68.29 3.64.764.97.515 2.29.862 3.77.862 1.462 0 2.8-.32 3.77-.825.964-.497 2.303-.8 3.75-.8 1.44 0 2.745.303 3.71.797.972.515 2.268.828 3.752.828l.017-2.312"}),(0,h.jsx)("path",{fill:"#005bbf",d:"M149.63 322.078c-1.48 0-2.798-.313-3.77-.828-.965-.494-2.27-.798-3.71-.798-1.447 0-2.786.304-3.75.8-.97.506-2.308.826-3.77.826-1.48 0-2.797-.347-3.77-.862-.955-.474-2.238-.764-3.64-.764-1.452 0-2.74.28-3.705.784-.973.512-2.32.842-3.794.842v2.31c1.476 0 2.822-.33 3.795-.844.965-.497 2.253-.777 3.704-.777 1.398 0 2.68.29 3.64.76.97.518 2.29.862 3.77.862 1.462 0 2.8-.317 3.77-.82.964-.5 2.303-.803 3.75-.803 1.44 0 2.745.3 3.71.795.972.52 2.268.827 3.752.827l.017-2.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M149.63 322.078c-1.48 0-2.798-.313-3.77-.828-.965-.494-2.27-.798-3.71-.798-1.447 0-2.786.304-3.75.8-.97.506-2.308.826-3.77.826-1.48 0-2.797-.347-3.77-.862-.955-.474-2.238-.764-3.64-.764-1.452 0-2.74.28-3.705.784-.973.512-2.32.842-3.794.842v2.31c1.476 0 2.822-.33 3.795-.844.965-.497 2.253-.777 3.704-.777 1.398 0 2.68.29 3.64.76.97.518 2.29.862 3.77.862 1.462 0 2.8-.317 3.77-.82.964-.5 2.303-.803 3.75-.803 1.44 0 2.745.3 3.71.795.972.52 2.268.827 3.752.827l.017-2.312"}),(0,h.jsx)("path",{fill:"#ccc",d:"M149.612 326.704c-1.484 0-2.78-.313-3.752-.83-.965-.492-2.27-.793-3.71-.793-1.447 0-2.786.302-3.75.8-.97.505-2.308.824-3.77.824-1.48 0-2.797-.348-3.77-.866-.955-.47-2.238-.757-3.64-.757-1.452 0-2.74.28-3.705.78-.973.514-2.32.844-3.794.844v-2.3c1.476 0 2.822-.345 3.795-.86.965-.497 2.253-.777 3.704-.777 1.398 0 2.68.29 3.64.76.97.518 2.29.862 3.77.862 1.462 0 2.8-.317 3.77-.82.964-.5 2.303-.803 3.75-.803 1.44 0 2.745.3 3.71.795.972.52 2.29.827 3.77.827z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M149.612 326.704c-1.484 0-2.78-.313-3.752-.83-.965-.492-2.27-.793-3.71-.793-1.447 0-2.786.302-3.75.8-.97.505-2.308.824-3.77.824-1.48 0-2.797-.348-3.77-.866-.955-.47-2.238-.757-3.64-.757-1.452 0-2.74.28-3.705.78-.973.514-2.32.844-3.794.844v-2.3c1.476 0 2.822-.345 3.795-.86.965-.497 2.253-.777 3.704-.777 1.398 0 2.68.29 3.64.76.97.518 2.29.862 3.77.862 1.462 0 2.8-.317 3.77-.82.964-.5 2.303-.803 3.75-.803 1.44 0 2.745.3 3.71.795.972.52 2.29.827 3.77.827l-.018 2.314"}),(0,h.jsx)("path",{fill:"#005bbf",d:"M149.612 329.02c-1.484 0-2.78-.315-3.752-.83-.965-.497-2.27-.8-3.71-.8-1.447 0-2.786.306-3.75.804-.97.504-2.308.825-3.77.825-1.48 0-2.797-.352-3.77-.867-.955-.473-2.238-.763-3.64-.763-1.452 0-2.74.283-3.705.783-.973.512-2.32.846-3.794.846v-2.296c1.476 0 2.822-.35 3.795-.865.965-.5 2.253-.775 3.704-.775 1.398 0 2.68.286 3.64.757.97.514 2.29.862 3.77.862 1.462 0 2.8-.32 3.77-.824.964-.498 2.303-.795 3.75-.795 1.44 0 2.745.297 3.71.79.972.516 2.283.83 3.765.83l-.013 2.314"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M149.612 329.02c-1.484 0-2.78-.315-3.752-.83-.965-.497-2.27-.8-3.71-.8-1.447 0-2.786.306-3.75.804-.97.504-2.308.825-3.77.825-1.48 0-2.797-.352-3.77-.867-.955-.473-2.238-.763-3.64-.763-1.452 0-2.74.283-3.705.783-.973.512-2.32.846-3.794.846v-2.296c1.476 0 2.822-.35 3.795-.865.965-.5 2.253-.775 3.704-.775 1.398 0 2.68.286 3.64.757.97.514 2.29.862 3.77.862 1.462 0 2.8-.32 3.77-.824.964-.498 2.303-.795 3.75-.795 1.44 0 2.745.297 3.71.79.972.516 2.283.83 3.765.83l-.013 2.314z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M126.242 307.952c.052.195.123.386.123.593 0 1.404-1.212 2.522-2.696 2.522h22.018c-1.483 0-2.697-1.118-2.697-2.522 0-.205.04-.398.093-.593a1.3 1.3 0 0 1-.422.05h-16.02c-.13 0-.282-.013-.398-.05"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M126.242 307.952c.052.195.123.386.123.593 0 1.404-1.212 2.522-2.696 2.522h22.018c-1.483 0-2.697-1.118-2.697-2.522 0-.205.04-.398.093-.593a1.3 1.3 0 0 1-.422.05h-16.02c-.13 0-.282-.013-.398-.05z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M126.64 306.496h16.02c.544 0 .983.34.983.754 0 .416-.44.754-.982.754h-16.02c-.545 0-.984-.338-.984-.754 0-.413.44-.754.983-.754"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M126.64 306.496h16.02c.544 0 .983.34.983.754 0 .416-.44.754-.982.754h-16.02c-.545 0-.984-.338-.984-.754 0-.413.44-.754.983-.754z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M123.698 316.668h21.96v-5.6H123.7v5.6z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M123.698 316.668h21.96v-5.6H123.7v5.6z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M121.98 286.673c-2.173 1.255-3.645 2.54-3.407 3.18.12.59.81 1.03 1.795 1.685 1.552 1.08 2.495 3.01 1.757 3.9 1.285-1.036 2.098-2.584 2.098-4.306 0-1.8-.856-3.422-2.242-4.46"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M121.98 286.673c-2.173 1.255-3.645 2.54-3.407 3.18.12.59.81 1.03 1.795 1.685 1.552 1.08 2.495 3.01 1.757 3.9 1.285-1.036 2.098-2.584 2.098-4.306 0-1.8-.856-3.422-2.242-4.46z"}),(0,h.jsx)("path",{fill:"#ccc",d:"M126.844 305.59h15.604v-76.45h-15.604z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M137.967 229.244v76.285m1.753-76.286v76.285m-12.876.062h15.604v-76.45h-15.604z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M158.387 257.735c-3.405-1.407-9.193-2.45-15.834-2.67-2.29.02-4.842.234-7.477.673-9.333 1.557-16.443 5.283-15.877 8.318.01.064.03.196.045.255 0 0-3.497-7.883-3.556-8.184-.623-3.368 7.263-7.506 17.623-9.234 3.25-.543 6.42-.754 9.174-.727 6.628 0 12.387.85 15.856 2.138l.044 9.432"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M158.387 257.735c-3.405-1.407-9.193-2.45-15.834-2.67-2.29.02-4.842.234-7.477.673-9.333 1.557-16.443 5.283-15.877 8.318.01.064.03.196.045.255 0 0-3.497-7.883-3.556-8.184-.623-3.368 7.263-7.506 17.623-9.234 3.25-.543 6.42-.754 9.174-.727 6.628 0 12.387.85 15.856 2.138l.044 9.432"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M126.82 267.33c-4.328-.31-7.282-1.465-7.62-3.274-.268-1.442 1.194-3.038 3.807-4.486 1.166.125 2.48.286 3.837.286l-.025 7.475"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M126.82 267.33c-4.328-.31-7.282-1.465-7.62-3.274-.268-1.442 1.194-3.038 3.807-4.486 1.166.125 2.48.286 3.837.286l-.025 7.475"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M142.477 261.49c2.703.408 4.734 1.08 5.744 1.904l.092.166c.482.99-1.893 3.093-5.86 5.442l.025-7.513"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M142.477 261.49c2.703.408 4.734 1.08 5.744 1.904l.092.166c.482.99-1.893 3.093-5.86 5.442l.025-7.513"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M117.125 282.08c-.41-1.236 3.81-3.707 9.773-5.895 2.725-.975 4.975-1.992 7.763-3.22 8.285-3.664 14.404-7.867 13.652-9.4l-.083-.157c.442.358 1.125 7.908 1.125 7.908.757 1.405-4.844 5.546-12.472 9.2-2.44 1.167-7.595 3.072-10.028 3.924-4.352 1.51-8.68 4.358-8.282 5.414l-1.448-7.77"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M117.125 282.08c-.41-1.236 3.81-3.707 9.773-5.895 2.725-.975 4.975-1.992 7.763-3.22 8.285-3.664 14.404-7.867 13.652-9.4l-.083-.157c.442.358 1.125 7.908 1.125 7.908.757 1.405-4.844 5.546-12.472 9.2-2.44 1.167-7.595 3.072-10.028 3.924-4.352 1.51-8.68 4.358-8.282 5.414l-1.448-7.77z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M125.768 254.068c1.908-.696 3.157-1.518 2.545-3.02-.386-.956-1.372-1.14-2.844-.6l-2.61.947 2.35 5.792c.256-.116.51-.236.778-.334.262-.096.54-.168.81-.246l-1.03-2.536v-.002zm-1.134-2.796.66-.24c.546-.2 1.165.09 1.44.765.203.515.15 1.087-.48 1.49a4.4 4.4 0 0 1-.673.313zm7.231-2.422c-.274.073-.547.156-.825.21-.275.054-.56.085-.84.122l1.352 6.024 4.208-.845c-.05-.118-.116-.245-.14-.368-.03-.126-.025-.266-.033-.392-.737.212-1.544.44-2.512.635l-1.205-5.386m8.422 5.194c.795-2.185 1.756-4.28 2.702-6.4a5.3 5.3 0 0 1-1.04.07c-.503 1.537-1.13 3.074-1.79 4.605-.79-1.453-1.665-2.87-2.332-4.334-.327.042-.662.09-.993.113-.327.02-.67.015-.997.02a131 131 0 0 1 3.492 5.986c.154-.028.313-.065.48-.076.156-.01.32.005.478.01m8.797-4.63c.146-.294.295-.58.46-.853-.226-.215-.922-.527-1.736-.61-1.716-.17-2.702.593-2.817 1.63-.242 2.168 3.18 1.98 3.024 3.42-.068.62-.727.87-1.425.803-.78-.08-1.35-.508-1.45-1.145l-.213-.02a7 7 0 0 1-.455 1.106c.5.324 1.153.508 1.775.57 1.75.173 3.086-.528 3.212-1.68.227-2.06-3.23-2.18-3.096-3.393.057-.51.45-.846 1.343-.756.64.065 1.038.412 1.21.91l.17.018"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M277.852 211.606s-.705.743-1.22.85c-.515.1-1.166-.464-1.166-.464s-.464.483-1.033.612c-.57.13-1.36-.64-1.36-.64s-.54.77-1.028.95c-.49.18-1.083-.23-1.083-.23s-.216.38-.623.592c-.174.082-.46-.054-.46-.054l-.575-.358-.652-.695-.596-.234s-.27-.872-.298-1.025l-.08-.54c-.122-.624.838-1.348 2.21-1.658.788-.184 1.474-.17 1.98-.014.547-.466 1.706-.79 3.07-.79 1.234 0 2.318.26 2.916.667.59-.406 1.673-.668 2.912-.668 1.356 0 2.515.325 3.063.79.508-.155 1.19-.166 1.984.015 1.367.31 2.332 1.034 2.21 1.657l-.082.54c-.03.154-.3 1.026-.3 1.026l-.597.233-.652.694-.564.358s-.29.136-.462.054c-.407-.208-.627-.592-.627-.592s-.596.41-1.083.23c-.488-.18-1.032-.95-1.032-.95s-.785.77-1.358.64c-.568-.13-1.03-.612-1.03-.612s-.652.565-1.165.463c-.518-.106-1.216-.85-1.216-.85"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.259,d:"M277.852 211.606s-.705.743-1.22.85c-.515.1-1.166-.464-1.166-.464s-.464.483-1.033.612c-.57.13-1.36-.64-1.36-.64s-.54.77-1.028.95c-.49.18-1.083-.23-1.083-.23s-.216.38-.623.592c-.174.082-.46-.054-.46-.054l-.575-.358-.652-.695-.596-.234s-.27-.872-.298-1.025l-.08-.54c-.122-.624.838-1.348 2.21-1.658.788-.184 1.474-.17 1.98-.014.547-.466 1.706-.79 3.07-.79 1.234 0 2.318.26 2.916.667.59-.406 1.673-.668 2.912-.668 1.356 0 2.515.325 3.063.79.508-.155 1.19-.166 1.984.015 1.367.31 2.332 1.034 2.21 1.657l-.082.54c-.03.154-.3 1.026-.3 1.026l-.597.233-.652.694-.564.358s-.29.136-.462.054c-.407-.208-.627-.592-.627-.592s-.596.41-1.083.23c-.488-.18-1.032-.95-1.032-.95s-.785.77-1.358.64c-.568-.13-1.03-.612-1.03-.612s-.652.565-1.165.463c-.518-.106-1.216-.85-1.216-.85h-.004z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M276.51 207.55c0-1.04.59-1.882 1.32-1.882s1.325.84 1.325 1.88c0 1.045-.594 1.89-1.325 1.89-.73 0-1.32-.845-1.32-1.89"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M276.51 207.55c0-1.04.59-1.882 1.32-1.882s1.325.84 1.325 1.88c0 1.045-.594 1.89-1.325 1.89-.73 0-1.32-.845-1.32-1.89z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M277.247 207.55c0-.955.274-1.732.61-1.732s.607.777.607 1.73c0 .96-.27 1.737-.608 1.737-.335 0-.61-.778-.61-1.736"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M277.247 207.55c0-.955.274-1.732.61-1.732s.607.777.607 1.73c0 .96-.27 1.737-.608 1.737-.335 0-.61-.778-.61-1.736z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M271.037 215.28a4.5 4.5 0 0 0-.56-1.04c1.87-.548 4.473-.892 7.367-.9 2.895.008 5.515.352 7.384.9l-.5.88c-.163.284-.376.777-.36.777-1.69-.517-3.863-.783-6.534-.786-2.675.004-5.246.33-6.585.822.018 0-.094-.31-.227-.65h.014"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M271.037 215.28a4.5 4.5 0 0 0-.56-1.04c1.87-.548 4.473-.892 7.367-.9 2.895.008 5.515.352 7.384.9l-.5.88c-.163.284-.376.777-.36.777-1.69-.517-3.863-.783-6.534-.786-2.675.004-5.246.33-6.585.822.018 0-.094-.31-.227-.65h.014"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M277.844 217.657c2.336-.004 4.907-.358 5.857-.603.634-.185 1.006-.47.936-.802-.03-.156-.168-.292-.353-.37-1.393-.447-3.904-.764-6.44-.768-2.528.004-5.052.32-6.45.767-.178.08-.32.216-.35.372-.07.33.3.617.938.802.948.245 3.53.6 5.864.603"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M277.844 217.657c2.336-.004 4.907-.358 5.857-.603.634-.185 1.006-.47.936-.802-.03-.156-.168-.292-.353-.37-1.393-.447-3.904-.764-6.44-.768-2.528.004-5.052.32-6.45.767-.178.08-.32.216-.35.372-.07.33.3.617.938.802.948.245 3.53.6 5.864.603z"}),(0,h.jsx)("path",{fill:"#fff",d:"M283.507 208.392c0-.23.194-.413.43-.413.243 0 .437.183.437.412s-.194.41-.436.41a.42.42 0 0 1-.43-.41"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.202,d:"M283.507 208.392c0-.23.194-.413.43-.413.243 0 .437.183.437.412s-.194.41-.436.41a.42.42 0 0 1-.43-.41zm-.244-1.439a.42.42 0 0 1 .432-.412c.24 0 .435.184.435.413 0 .225-.196.41-.435.41a.42.42 0 0 1-.432-.41zm-1.088-.9c0-.228.193-.412.436-.412.237 0 .433.185.433.412 0 .23-.196.413-.432.413a.42.42 0 0 1-.435-.413zm-1.358-.433c0-.232.195-.416.435-.416.242 0 .433.184.433.416 0 .222-.19.41-.433.41-.24 0-.435-.188-.435-.41zm-1.382.048c0-.23.194-.412.432-.412.242 0 .437.183.437.412s-.195.408-.437.408a.42.42 0 0 1-.432-.408z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:.25,d:"M287.798 211.187c.13-.317.21-.67.21-1.033 0-1.527-1.21-2.768-2.712-2.768-.48 0-.93.13-1.32.354"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M282.967 209.244c.14-.25.24-.552.24-.84 0-1.1-1.137-1.992-2.536-1.992-.597 0-1.145.163-1.576.432"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.202,d:"M288.172 209.933c0-.226.198-.413.436-.413.24 0 .435.187.435.413 0 .228-.195.41-.435.41-.238 0-.436-.182-.436-.41zm-.164-1.514c0-.23.197-.41.437-.41a.42.42 0 0 1 .433.41c0 .224-.195.408-.433.408-.24 0-.437-.184-.437-.41zm-.973-1.16a.42.42 0 0 1 .432-.41c.24 0 .434.185.434.41a.423.423 0 0 1-.433.412.423.423 0 0 1-.432-.412zm-1.304-.618c0-.224.196-.408.436-.408s.433.184.433.408c0 .23-.195.417-.434.417a.427.427 0 0 1-.435-.418zm-1.384.056c0-.23.194-.413.434-.413s.437.184.437.413c0 .224-.196.41-.437.41-.24 0-.434-.186-.434-.41z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m285.34 213.198-.566-.514s-.544.333-1.223.23c-.676-.1-.893-.922-.893-.922s-.762.636-1.382.59c-.623-.056-1.03-.59-1.03-.59s-.68.483-1.277.436c-.597-.055-1.167-.798-1.167-.798s-.596.77-1.194.825c-.597.048-1.084-.52-1.084-.52s-.273.568-1.033.693c-.76.13-1.41-.59-1.41-.59s-.43.696-.948.877c-.514.18-1.19-.26-1.19-.26s-.11.26-.192.413c-.083.154-.3.182-.3.182l.17.46c1.86-.54 4.382-.873 7.232-.876 2.854.003 5.445.337 7.303.88l.19-.516"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m285.34 213.198-.566-.514s-.544.333-1.223.23c-.676-.1-.893-.922-.893-.922s-.762.636-1.382.59c-.623-.056-1.03-.59-1.03-.59s-.68.483-1.277.436c-.597-.055-1.167-.798-1.167-.798s-.596.77-1.194.825c-.597.048-1.084-.52-1.084-.52s-.273.568-1.033.693c-.76.13-1.41-.59-1.41-.59s-.43.696-.948.877c-.514.18-1.19-.26-1.19-.26s-.11.26-.192.413c-.083.154-.3.182-.3.182l.17.46c1.86-.54 4.382-.873 7.232-.876 2.854.003 5.445.337 7.303.88l.19-.516h-.004z"}),(0,h.jsx)("path",{fill:"#fff",d:"M271.258 208.392c0-.23.193-.413.435-.413.237 0 .432.183.432.412a.42.42 0 0 1-.432.41c-.242 0-.435-.182-.435-.41"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.202,d:"M271.258 208.392c0-.23.193-.413.435-.413.237 0 .432.183.432.412a.42.42 0 0 1-.432.41c-.242 0-.435-.182-.435-.41zm.245-1.439c0-.23.194-.412.435-.412.238 0 .432.184.432.413 0 .225-.194.41-.432.41-.24 0-.435-.185-.435-.41zm1.083-.9c0-.228.194-.412.435-.412.242 0 .437.185.437.412 0 .23-.195.413-.436.413a.424.424 0 0 1-.434-.413zm1.357-.433c0-.232.195-.416.435-.416.242 0 .436.184.436.416 0 .222-.194.41-.436.41-.24 0-.435-.188-.435-.41zm1.385.048c0-.23.194-.412.432-.412.242 0 .436.183.436.412s-.194.408-.436.408a.42.42 0 0 1-.432-.408z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:.25,d:"M267.832 211.187a2.8 2.8 0 0 1-.21-1.033c0-1.527 1.213-2.768 2.712-2.768.48 0 .93.13 1.323.354"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M272.697 209.21c-.14-.246-.275-.518-.275-.805 0-1.1 1.14-1.993 2.54-1.993a3 3 0 0 1 1.576.432"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.202,d:"M266.59 209.933c0-.226.192-.413.435-.413.235 0 .43.187.43.413a.42.42 0 0 1-.43.41c-.243 0-.436-.182-.436-.41zm.16-1.514c0-.23.198-.41.437-.41.24 0 .435.18.435.41 0 .224-.194.408-.435.408-.24 0-.436-.184-.436-.41zm.98-1.16c0-.225.194-.41.436-.41a.42.42 0 0 1 .432.41.423.423 0 0 1-.432.412.424.424 0 0 1-.436-.412zm1.303-.618c0-.224.194-.408.43-.408.244 0 .437.184.437.408 0 .23-.193.417-.436.417a.425.425 0 0 1-.43-.418zm1.382.056c0-.23.194-.413.436-.413a.42.42 0 0 1 .433.413.42.42 0 0 1-.432.41c-.24 0-.435-.186-.435-.41z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m277.86 210.712.27.05a1 1 0 0 0-.052.356c0 .56.48 1.013 1.07 1.013.475 0 .88-.293 1.016-.698.016.01.103-.368.146-.362.04 0 .033.393.043.386.07.507.536.856 1.062.856.59 0 1.068-.453 1.068-1.012a1 1 0 0 0-.01-.123l.338-.335.18.426a.9.9 0 0 0-.1.44c0 .536.458.97 1.02.97.356 0 .67-.175.85-.434l.215-.273-.004.34c0 .332.146.632.47.687 0 0 .38.027.877-.368.5-.393.775-.72.775-.72l.028.402s-.49.804-.933 1.06c-.244.143-.616.293-.91.24-.314-.046-.533-.298-.65-.584a1.5 1.5 0 0 1-.765.207c-.604 0-1.147-.334-1.36-.827a1.5 1.5 0 0 1-1.12.48c-.48 0-.924-.215-1.202-.552a1.54 1.54 0 0 1-1.052.406c-.53 0-1.01-.267-1.28-.66-.27.393-.742.66-1.28.66-.406 0-.776-.154-1.05-.406a1.56 1.56 0 0 1-1.2.552c-.454 0-.84-.18-1.117-.48-.213.49-.76.827-1.36.827-.28 0-.54-.075-.763-.207-.115.286-.338.538-.648.585-.296.052-.667-.098-.91-.24-.45-.257-.977-1.06-.977-1.06l.07-.404s.27.327.77.72c.5.394.877.367.877.367.327-.055.467-.355.467-.688v-.34l.214.274c.184.26.496.433.85.433.566 0 1.022-.433 1.022-.968a.9.9 0 0 0-.1-.442l.18-.426.333.335q-.009.06-.007.123c0 .56.476 1.012 1.06 1.012.53 0 .996-.35 1.064-.856.014.007.01-.386.046-.386.048-.007.133.373.148.362.14.405.543.7 1.018.7.592 0 1.07-.455 1.07-1.014a1 1 0 0 0-.05-.357l.277-.048"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m277.86 210.712.27.05a1 1 0 0 0-.052.356c0 .56.48 1.013 1.07 1.013.475 0 .88-.293 1.016-.698.016.01.103-.368.146-.362.04 0 .033.393.043.386.07.507.536.856 1.062.856.59 0 1.068-.453 1.068-1.012a1 1 0 0 0-.01-.123l.338-.335.18.426a.9.9 0 0 0-.1.44c0 .536.458.97 1.02.97.356 0 .67-.175.85-.434l.215-.273-.004.34c0 .332.146.632.47.687 0 0 .38.027.877-.368.5-.393.775-.72.775-.72l.028.402s-.49.804-.933 1.06c-.244.143-.616.293-.91.24-.314-.046-.533-.298-.65-.584a1.5 1.5 0 0 1-.765.207c-.604 0-1.147-.334-1.36-.827a1.5 1.5 0 0 1-1.12.48c-.48 0-.924-.215-1.202-.552a1.54 1.54 0 0 1-1.052.406c-.53 0-1.01-.267-1.28-.66-.27.393-.742.66-1.28.66-.406 0-.776-.154-1.05-.406a1.56 1.56 0 0 1-1.2.552c-.454 0-.84-.18-1.117-.48-.213.49-.76.827-1.36.827-.28 0-.54-.075-.763-.207-.115.286-.338.538-.648.585-.296.052-.667-.098-.91-.24-.45-.257-.977-1.06-.977-1.06l.07-.404s.27.327.77.72c.5.394.877.367.877.367.327-.055.467-.355.467-.688v-.34l.214.274c.184.26.496.433.85.433.566 0 1.022-.433 1.022-.968a.9.9 0 0 0-.1-.442l.18-.426.333.335q-.009.06-.007.123c0 .56.476 1.012 1.06 1.012.53 0 .996-.35 1.064-.856.014.007.01-.386.046-.386.048-.007.133.373.148.362.14.405.543.7 1.018.7.592 0 1.07-.455 1.07-1.014a1 1 0 0 0-.05-.357l.277-.048h.008z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M277.844 213.345c-2.894.003-5.493.347-7.36.9-.126.04-.28-.056-.32-.168-.04-.118.05-.265.17-.306 1.88-.572 4.545-.933 7.51-.936 2.963.003 5.64.364 7.517.937.125.042.216.19.177.307-.04.112-.2.208-.32.168-1.87-.553-4.478-.897-7.373-.9"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M277.844 213.345c-2.894.003-5.493.347-7.36.9-.126.04-.28-.056-.32-.168-.04-.118.05-.265.17-.306 1.88-.572 4.545-.933 7.51-.936 2.963.003 5.64.364 7.517.937.125.042.216.19.177.307-.04.112-.2.208-.32.168-1.87-.553-4.478-.897-7.373-.9z"}),(0,h.jsx)("path",{fill:"#fff",d:"M275.044 214.37c0-.217.187-.395.422-.395.23 0 .417.178.417.396a.404.404 0 0 1-.417.395c-.235 0-.422-.173-.422-.394"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M275.044 214.37c0-.217.187-.395.422-.395.23 0 .417.178.417.396a.404.404 0 0 1-.417.395c-.235 0-.422-.173-.422-.394z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M277.88 214.542h-.93c-.175 0-.32-.137-.32-.3s.14-.294.315-.294h1.883a.3.3 0 0 1 .308.293c0 .165-.14.302-.312.302z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M277.88 214.542h-.93c-.175 0-.32-.137-.32-.3s.14-.294.315-.294h1.883a.3.3 0 0 1 .308.293c0 .165-.14.302-.312.302h-.944"}),(0,h.jsx)("path",{fill:"#058e6e",d:"m273.216 214.86-.666.1a.316.316 0 0 1-.36-.248.294.294 0 0 1 .258-.334l.67-.1.683-.105c.172-.02.33.086.36.246a.3.3 0 0 1-.264.336z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m273.216 214.86-.666.1a.316.316 0 0 1-.36-.248.294.294 0 0 1 .258-.334l.67-.1.683-.105c.172-.02.33.086.36.246a.3.3 0 0 1-.264.336l-.68.105"}),(0,h.jsx)("path",{fill:"#ad1519",d:"m270.526 215.328.296-.476.634.12-.368.535-.562-.18"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m270.526 215.328.296-.476.634.12-.368.535-.562-.18"}),(0,h.jsx)("path",{fill:"#fff",d:"M279.81 214.37c0-.217.19-.395.42-.395.232 0 .422.178.422.396 0 .222-.19.395-.42.395s-.42-.173-.42-.394"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M279.81 214.37c0-.217.19-.395.42-.395.232 0 .422.178.422.396 0 .222-.19.395-.42.395s-.42-.173-.42-.394z"}),(0,h.jsx)("path",{fill:"#058e6e",d:"m282.477 214.86.67.1a.31.31 0 0 0 .356-.248.29.29 0 0 0-.255-.334l-.67-.1-.683-.105c-.173-.02-.332.086-.357.246-.03.158.094.312.263.336z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m282.477 214.86.67.1a.31.31 0 0 0 .356-.248.29.29 0 0 0-.255-.334l-.67-.1-.683-.105c-.173-.02-.332.086-.357.246-.03.158.094.312.263.336l.677.105"}),(0,h.jsx)("path",{fill:"#ad1519",d:"m285.113 215.356-.238-.508-.65.054.312.57z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m285.113 215.356-.238-.508-.65.054.312.57.576-.116"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M277.84 217.115c-2.335-.003-4.448-.208-6.057-.623 1.61-.413 3.722-.67 6.058-.675 2.337.003 4.46.26 6.065.675-1.604.415-3.728.62-6.064.623"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.25,d:"M277.84 217.115c-2.335-.003-4.448-.208-6.057-.623 1.61-.413 3.722-.67 6.058-.675 2.337.003 4.46.26 6.065.675-1.604.415-3.728.62-6.064.623z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M285.206 212.05c.06-.18.008-.36-.127-.404-.13-.036-.284.08-.346.253-.064.183-.008.365.122.405.13.037.288-.075.35-.255"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M285.206 212.05c.06-.18.008-.36-.127-.404-.13-.036-.284.08-.346.253-.064.183-.008.365.122.405.13.037.288-.075.35-.255z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M280.555 211.15c.025-.188-.07-.355-.205-.372-.133-.017-.267.126-.288.314-.025.187.064.354.202.37.136.014.266-.13.29-.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M280.555 211.15c.025-.188-.07-.355-.205-.372-.133-.017-.267.126-.288.314-.025.187.064.354.202.37.136.014.266-.13.29-.312z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M275.156 211.15c-.025-.188.064-.355.2-.372.138-.017.267.126.293.314.02.187-.07.354-.203.37-.136.014-.267-.13-.29-.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M275.156 211.15c-.025-.188.064-.355.2-.372.138-.017.267.126.293.314.02.187-.07.354-.203.37-.136.014-.267-.13-.29-.312z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M270.505 212.05c-.065-.18-.007-.36.122-.404.13-.036.288.08.35.253.06.183.007.365-.122.405-.134.037-.29-.075-.35-.255"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M270.505 212.05c-.065-.18-.007-.36.122-.404.13-.036.288.08.35.253.06.183.007.365-.122.405-.134.037-.29-.075-.35-.255z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m277.84 208.463-.823.497.61 1.326.214.14.21-.14.615-1.326-.824-.497"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m277.84 208.463-.823.497.61 1.326.214.14.21-.14.615-1.326-.824-.497"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m276.033 210.468.376.546 1.284-.397.136-.18-.136-.185-1.285-.375-.377.59"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m276.033 210.468.376.546 1.284-.397.136-.18-.136-.185-1.285-.375-.377.59"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m279.655 210.468-.378.546-1.285-.397-.136-.18.136-.185 1.285-.375.378.59"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m279.655 210.468-.378.546-1.285-.397-.136-.18.136-.185 1.285-.375.378.59"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m272.48 209.053-.646.61.827 1.092.22.087.164-.167.29-1.318-.854-.304"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m272.48 209.053-.646.61.827 1.092.22.087.164-.167.29-1.318-.854-.304"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m271.124 211.24.485.457 1.173-.633.09-.204-.168-.154-1.342-.116-.24.65"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m271.124 211.24.485.457 1.173-.633.09-.204-.168-.154-1.342-.116-.24.65"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m274.666 210.53-.248.602-1.344-.122-.174-.155.092-.207 1.178-.62.496.5"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m274.666 210.53-.248.602-1.344-.122-.174-.155.092-.207 1.178-.62.496.5"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m269.832 211.41-.11.64-1.346.14-.204-.117.05-.217 1.012-.84z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m269.832 211.41-.11.64-1.346.14-.204-.117.05-.217 1.012-.84.598.395"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M272.42 210.863c0-.25.213-.45.472-.45a.46.46 0 0 1 .47.45.46.46 0 0 1-.47.446.46.46 0 0 1-.472-.447"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M272.42 210.863c0-.25.213-.45.472-.45a.46.46 0 0 1 .47.45.46.46 0 0 1-.47.446.46.46 0 0 1-.472-.447z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m283.22 209.053.647.61-.83 1.092-.22.087-.16-.167-.292-1.318.854-.304"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m283.22 209.053.647.61-.83 1.092-.22.087-.16-.167-.292-1.318.854-.304"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m284.576 211.24-.486.457-1.174-.633-.094-.204.174-.154 1.342-.116z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m284.576 211.24-.486.457-1.174-.633-.094-.204.174-.154 1.342-.116.238.65"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m281.034 210.53.247.602 1.345-.122.172-.155-.09-.207-1.176-.62-.496.5"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m281.034 210.53.247.602 1.345-.122.172-.155-.09-.207-1.176-.62-.496.5"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m285.688 211.41.108.64 1.34.14.204-.117-.05-.217-1.008-.84z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m285.688 211.41.108.64 1.34.14.204-.117-.05-.217-1.008-.84-.594.395"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M277.377 210.44c0-.252.207-.45.47-.45.257 0 .473.198.473.45 0 .245-.213.447-.472.447a.46.46 0 0 1-.47-.446"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M277.377 210.44c0-.252.207-.45.47-.45.257 0 .473.198.473.45 0 .245-.213.447-.472.447a.46.46 0 0 1-.47-.446z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M282.344 210.863c0-.25.212-.45.47-.45.263 0 .478.2.478.45 0 .245-.215.446-.477.446a.46.46 0 0 1-.47-.447"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M282.344 210.863c0-.25.212-.45.47-.45.263 0 .478.2.478.45 0 .245-.215.446-.477.446a.46.46 0 0 1-.47-.447z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M276.963 205.396c0-.465.396-.84.885-.84.488 0 .89.375.89.84 0 .463-.402.838-.89.838-.49 0-.885-.375-.885-.838"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M278.474 205.098v.556h-1.368v-.556h.448v-1.254h-.595v-.56h.594v-.547h.586v.548h.583v.56h-.583v1.253h.33"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.288,d:"M278.474 205.098v.556h-1.368v-.556h.448v-1.254h-.595v-.56h.594v-.547h.586v.548h.583v.56h-.583v1.253h.334z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M279.087 205.098v.556h-2.434v-.556h.9v-1.254h-.594v-.56h.594v-.547h.586v.548h.586v.56h-.586v1.253h.947"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M278.104 204.59c.366.1.633.424.633.806 0 .463-.395.838-.89.838-.488 0-.884-.375-.884-.838 0-.39.278-.713.655-.812"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M268.014 212.158c-.01.01-.364-.464-.63-.702-.187-.167-.647-.31-.647-.31 0-.085.27-.276.562-.276.168 0 .33.07.425.19l.034-.184s.237.045.34.308c.11.272.04.685.04.685s-.043.19-.126.288"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M268.014 212.158c-.01.01-.364-.464-.63-.702-.187-.167-.647-.31-.647-.31 0-.085.27-.276.562-.276.168 0 .33.07.425.19l.034-.184s.237.045.34.308c.11.272.04.685.04.685s-.043.19-.126.288z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M268.032 211.923c.113-.116.342-.092.512.055.173.146.223.36.11.48-.11.12-.338.093-.51-.054-.173-.147-.223-.365-.112-.48"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M268.032 211.923c.113-.116.342-.092.512.055.173.146.223.36.11.48-.11.12-.338.093-.51-.054-.173-.147-.223-.365-.112-.48z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M287.5 212.158c.016.01.364-.464.632-.702.184-.167.648-.31.648-.31 0-.085-.27-.276-.562-.276-.17 0-.33.07-.428.19l-.035-.184s-.24.045-.343.308c-.108.272-.04.685-.04.685s.043.19.13.288"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M287.5 212.158c.016.01.364-.464.632-.702.184-.167.648-.31.648-.31 0-.085-.27-.276-.562-.276-.17 0-.33.07-.428.19l-.035-.184s-.24.045-.343.308c-.108.272-.04.685-.04.685s.043.19.13.288z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M287.514 211.923c-.114-.116-.342-.092-.516.055-.173.146-.22.36-.112.48.112.12.342.093.514-.054.173-.147.225-.365.114-.48"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M287.514 211.923c-.114-.116-.342-.092-.516.055-.173.146-.22.36-.112.48.112.12.342.093.514-.054.173-.147.225-.365.114-.48z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M267.165 223.074h21.394v-5.608h-21.395z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M267.165 223.074h21.394v-5.608h-21.395z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M286.315 226.806a.94.94 0 0 0-.396-.06h-16.023q-.242 0-.443.077c.55-.183.947-.68.947-1.268 0-.586-.43-1.094-.985-1.285.133.04.312.08.47.08h16.034c.16 0 .312-.008.448-.053l-.09.014c-.572.178-.9.686-.9 1.245 0 .538.363 1.078.937 1.25"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M286.315 226.806a.94.94 0 0 0-.396-.06h-16.023q-.242 0-.443.077c.55-.183.947-.68.947-1.268 0-.586-.43-1.094-.985-1.285.133.04.312.08.47.08h16.034c.16 0 .312-.008.448-.053l-.09.014c-.572.178-.9.686-.9 1.245 0 .538.363 1.078.937 1.25z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M269.897 226.745h16.022c.538 0 .978.337.978.75 0 .416-.44.754-.98.754H269.9c-.545 0-.984-.34-.984-.755 0-.413.44-.75.983-.75"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M269.897 226.745h16.022c.538 0 .978.337.978.75 0 .416-.44.754-.98.754H269.9c-.545 0-.984-.34-.984-.755 0-.413.44-.75.983-.75z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M269.885 223.074h16.034c.538 0 .978.286.978.634 0 .354-.44.64-.98.64h-16.033c-.542 0-.982-.286-.982-.64 0-.348.44-.634.982-.634"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M269.885 223.074h16.034c.538 0 .978.286.978.634 0 .354-.44.64-.98.64h-16.033c-.542 0-.982-.286-.982-.64 0-.348.44-.634.982-.634z"}),(0,h.jsx)("path",{fill:"#005bbf",d:"M262.925 317.45c1.482 0 2.8-.31 3.77-.83.967-.49 2.273-.79 3.712-.79 1.444 0 2.787.304 3.752.797.964.51 2.302.822 3.764.822 1.476 0 2.8-.346 3.772-.863.957-.47 2.235-.758 3.642-.758 1.452 0 2.736.276 3.705.777.968.516 2.317.842 3.793.842v2.316c-1.476 0-2.825-.337-3.793-.848-.97-.498-2.253-.78-3.705-.78-1.407 0-2.685.29-3.642.763-.968.516-2.296.866-3.772.866-1.458 0-2.797-.32-3.765-.823-.966-.5-2.305-.805-3.753-.805-1.44 0-2.745.304-3.71.798-.973.517-2.27.83-3.75.83l-.022-2.317"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M262.925 317.45c1.482 0 2.8-.31 3.77-.83.967-.49 2.273-.79 3.712-.79 1.444 0 2.787.304 3.752.797.964.51 2.302.822 3.764.822 1.476 0 2.8-.346 3.772-.863.957-.47 2.235-.758 3.642-.758 1.452 0 2.736.276 3.705.777.968.516 2.317.842 3.793.842v2.316c-1.476 0-2.825-.337-3.793-.848-.97-.498-2.253-.78-3.705-.78-1.407 0-2.685.29-3.642.763-.968.516-2.296.866-3.772.866-1.458 0-2.797-.32-3.765-.823-.966-.5-2.305-.805-3.753-.805-1.44 0-2.745.304-3.71.798-.973.517-2.27.83-3.75.83l-.022-2.317z"}),(0,h.jsx)("path",{fill:"#ccc",d:"M262.925 319.766c1.482 0 2.8-.313 3.77-.83.967-.494 2.273-.798 3.712-.798 1.444 0 2.787.304 3.752.805.964.504 2.302.823 3.764.823 1.476 0 2.8-.35 3.772-.865.957-.473 2.235-.762 3.642-.762 1.452 0 2.736.282 3.705.78.968.51 2.317.848 3.793.848v2.312c-1.476 0-2.825-.33-3.793-.842-.97-.505-2.253-.784-3.705-.784-1.407 0-2.685.29-3.642.764-.968.515-2.296.862-3.772.862-1.458 0-2.797-.32-3.765-.825-.966-.497-2.305-.8-3.753-.8-1.44 0-2.745.303-3.71.797-.973.515-2.27.828-3.75.828l-.022-2.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M262.925 319.766c1.482 0 2.8-.313 3.77-.83.967-.494 2.273-.798 3.712-.798 1.444 0 2.787.304 3.752.805.964.504 2.302.823 3.764.823 1.476 0 2.8-.35 3.772-.865.957-.473 2.235-.762 3.642-.762 1.452 0 2.736.282 3.705.78.968.51 2.317.848 3.793.848v2.312c-1.476 0-2.825-.33-3.793-.842-.97-.505-2.253-.784-3.705-.784-1.407 0-2.685.29-3.642.764-.968.515-2.296.862-3.772.862-1.458 0-2.797-.32-3.765-.825-.966-.497-2.305-.8-3.753-.8-1.44 0-2.745.303-3.71.797-.973.515-2.27.828-3.75.828l-.022-2.312"}),(0,h.jsx)("path",{fill:"#005bbf",d:"M262.925 322.078c1.482 0 2.8-.313 3.77-.828.967-.494 2.273-.798 3.712-.798 1.444 0 2.787.304 3.752.8.964.506 2.302.826 3.764.826 1.476 0 2.8-.347 3.772-.862.957-.474 2.235-.764 3.642-.764 1.452 0 2.736.28 3.705.784.968.512 2.317.842 3.793.842v2.31c-1.476 0-2.825-.33-3.793-.844-.97-.497-2.253-.777-3.705-.777-1.407 0-2.685.29-3.642.76-.968.518-2.296.862-3.772.862-1.458 0-2.797-.317-3.765-.82-.966-.5-2.305-.803-3.753-.803-1.44 0-2.745.3-3.71.795-.973.52-2.27.827-3.75.827l-.022-2.312"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M262.925 322.078c1.482 0 2.8-.313 3.77-.828.967-.494 2.273-.798 3.712-.798 1.444 0 2.787.304 3.752.8.964.506 2.302.826 3.764.826 1.476 0 2.8-.347 3.772-.862.957-.474 2.235-.764 3.642-.764 1.452 0 2.736.28 3.705.784.968.512 2.317.842 3.793.842v2.31c-1.476 0-2.825-.33-3.793-.844-.97-.497-2.253-.777-3.705-.777-1.407 0-2.685.29-3.642.76-.968.518-2.296.862-3.772.862-1.458 0-2.797-.317-3.765-.82-.966-.5-2.305-.803-3.753-.803-1.44 0-2.745.3-3.71.795-.973.52-2.27.827-3.75.827l-.022-2.312"}),(0,h.jsx)("path",{fill:"#ccc",d:"M262.946 326.704c1.48 0 2.778-.313 3.75-.83.966-.492 2.272-.793 3.71-.793 1.445 0 2.788.302 3.753.8.964.505 2.302.824 3.764.824 1.476 0 2.8-.348 3.772-.866.957-.47 2.235-.757 3.642-.757 1.452 0 2.736.28 3.705.78.968.514 2.317.844 3.793.844v-2.3c-1.476 0-2.825-.345-3.793-.86-.97-.497-2.253-.777-3.705-.777-1.407 0-2.685.29-3.642.76-.968.518-2.296.862-3.772.862-1.458 0-2.797-.317-3.765-.82-.966-.5-2.305-.803-3.753-.803-1.44 0-2.745.3-3.71.795-.973.52-2.29.827-3.772.827l.02 2.314"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M262.946 326.704c1.48 0 2.778-.313 3.75-.83.966-.492 2.272-.793 3.71-.793 1.445 0 2.788.302 3.753.8.964.505 2.302.824 3.764.824 1.476 0 2.8-.348 3.772-.866.957-.47 2.235-.757 3.642-.757 1.452 0 2.736.28 3.705.78.968.514 2.317.844 3.793.844v-2.3c-1.476 0-2.825-.345-3.793-.86-.97-.497-2.253-.777-3.705-.777-1.407 0-2.685.29-3.642.76-.968.518-2.296.862-3.772.862-1.458 0-2.797-.317-3.765-.82-.966-.5-2.305-.803-3.753-.803-1.44 0-2.745.3-3.71.795-.973.52-2.29.827-3.772.827l.02 2.314"}),(0,h.jsx)("path",{fill:"#005bbf",d:"M262.946 329.02c1.48 0 2.778-.315 3.75-.83.966-.497 2.272-.8 3.71-.8 1.445 0 2.788.306 3.753.804.964.504 2.302.825 3.764.825 1.476 0 2.8-.352 3.772-.867.957-.473 2.235-.763 3.642-.763 1.452 0 2.736.283 3.705.783.968.512 2.317.846 3.793.846v-2.296c-1.476 0-2.825-.35-3.793-.865-.97-.5-2.253-.775-3.705-.775-1.407 0-2.685.286-3.642.757-.968.514-2.296.862-3.772.862-1.458 0-2.797-.32-3.765-.824-.966-.498-2.305-.795-3.753-.795-1.44 0-2.745.297-3.71.79-.973.516-2.286.83-3.765.83l.014 2.314"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M262.946 329.02c1.48 0 2.778-.315 3.75-.83.966-.497 2.272-.8 3.71-.8 1.445 0 2.788.306 3.753.804.964.504 2.302.825 3.764.825 1.476 0 2.8-.352 3.772-.867.957-.473 2.235-.763 3.642-.763 1.452 0 2.736.283 3.705.783.968.512 2.317.846 3.793.846v-2.296c-1.476 0-2.825-.35-3.793-.865-.97-.5-2.253-.775-3.705-.775-1.407 0-2.685.286-3.642.757-.968.514-2.296.862-3.772.862-1.458 0-2.797-.32-3.765-.824-.966-.498-2.305-.795-3.753-.795-1.44 0-2.745.297-3.71.79-.973.516-2.286.83-3.765.83l.014 2.314z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M286.31 307.952c-.05.195-.117.386-.117.593 0 1.404 1.21 2.522 2.69 2.522H266.87c1.478 0 2.69-1.118 2.69-2.522 0-.205-.04-.398-.085-.593.12.045.27.05.418.05h16.022c.13 0 .28-.013.392-.05"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M286.31 307.952c-.05.195-.117.386-.117.593 0 1.404 1.21 2.522 2.69 2.522H266.87c1.478 0 2.69-1.118 2.69-2.522 0-.205-.04-.398-.085-.593.12.045.27.05.418.05h16.022c.13 0 .28-.013.392-.05h.004z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M269.897 306.496h16.022c.538 0 .978.34.978.754 0 .416-.44.754-.98.754H269.9c-.545 0-.984-.338-.984-.754 0-.413.44-.754.983-.754"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M269.897 306.496h16.022c.538 0 .978.34.978.754 0 .416-.44.754-.98.754H269.9c-.545 0-.984-.338-.984-.754 0-.413.44-.754.983-.754z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M266.895 316.668h21.962v-5.6h-21.962z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M266.895 316.668h21.962v-5.6h-21.962z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M290.572 286.673c2.175 1.255 3.65 2.54 3.413 3.18-.12.59-.81 1.03-1.796 1.685-1.553 1.08-2.5 3.01-1.76 3.9-1.282-1.036-2.093-2.584-2.093-4.306 0-1.8.854-3.422 2.235-4.46"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M290.572 286.673c2.175 1.255 3.65 2.54 3.413 3.18-.12.59-.81 1.03-1.796 1.685-1.553 1.08-2.5 3.01-1.76 3.9-1.282-1.036-2.093-2.584-2.093-4.306 0-1.8.854-3.422 2.235-4.46z"}),(0,h.jsx)("path",{fill:"#ccc",d:"M270.106 305.59h15.604v-76.45h-15.604z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M281.425 229.11v76.29m1.754-76.287V305.4m-13.073.19h15.604v-76.45h-15.604z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M254.167 257.735c3.407-1.407 9.197-2.45 15.838-2.67 2.288.02 4.84.234 7.476.673 9.33 1.557 16.44 5.283 15.875 8.318-.01.064-.03.196-.047.255 0 0 3.5-7.883 3.553-8.184.627-3.368-7.256-7.506-17.615-9.234a53.5 53.5 0 0 0-9.176-.727c-6.63 0-12.39.85-15.86 2.138z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M254.167 257.735c3.407-1.407 9.197-2.45 15.838-2.67 2.288.02 4.84.234 7.476.673 9.33 1.557 16.44 5.283 15.875 8.318-.01.064-.03.196-.047.255 0 0 3.5-7.883 3.553-8.184.627-3.368-7.256-7.506-17.615-9.234a53.5 53.5 0 0 0-9.176-.727c-6.63 0-12.39.85-15.86 2.138l-.043 9.432"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M285.738 267.33c4.327-.31 7.282-1.465 7.617-3.274.27-1.442-1.195-3.038-3.805-4.486-1.17.125-2.484.286-3.84.286l.028 7.475"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M285.738 267.33c4.327-.31 7.282-1.465 7.617-3.274.27-1.442-1.195-3.038-3.805-4.486-1.17.125-2.484.286-3.84.286l.028 7.475"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M270.08 261.49c-2.706.408-4.734 1.08-5.748 1.904l-.09.166c-.486.99 1.892 3.093 5.86 5.442l-.02-7.513"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M270.08 261.49c-2.706.408-4.734 1.08-5.748 1.904l-.09.166c-.486.99 1.892 3.093 5.86 5.442l-.02-7.513"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M295.428 282.08c.41-1.236-3.81-3.707-9.772-5.895-2.725-.975-4.976-1.992-7.764-3.22-8.283-3.664-14.402-7.867-13.647-9.4l.08-.157c-.436.358-1.12 7.908-1.12 7.908-.755 1.405 4.846 5.546 12.464 9.2 2.44 1.167 7.598 3.072 10.032 3.924 4.352 1.51 8.676 4.358 8.283 5.414l1.443-7.77"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M295.428 282.08c.41-1.236-3.81-3.707-9.772-5.895-2.725-.975-4.976-1.992-7.764-3.22-8.283-3.664-14.402-7.867-13.647-9.4l.08-.157c-.436.358-1.12 7.908-1.12 7.908-.755 1.405 4.846 5.546 12.464 9.2 2.44 1.167 7.598 3.072 10.032 3.924 4.352 1.51 8.676 4.358 8.283 5.414l1.443-7.77v-.005z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M263.892 254.385c.59-2.24 1.353-4.405 2.102-6.597-.165.045-.344.08-.51.106a5 5 0 0 1-.522.047c-.356 1.576-.84 3.16-1.357 4.74-.922-1.384-1.926-2.728-2.725-4.125-.32.065-.652.143-.98.192-.32.047-.662.07-.992.102a131 131 0 0 1 4.032 5.674c.154-.04.304-.092.475-.116.154-.02.316-.017.477-.023m5.934-6.552c-.286.013-.57.034-.855.03-.282-.004-.566-.037-.847-.058l-.116 6.156 4.305.074c-.022-.126-.054-.263-.05-.392 0-.127.04-.26.06-.386-.77.05-1.61.1-2.598.082l.102-5.505m6.757 1.011c.688.058 1.35.177 2.013.297-.012-.13-.032-.26-.022-.393.01-.126.06-.253.094-.376l-5.83-.483c.015.13.037.257.023.382-.01.137-.058.26-.09.385a19 19 0 0 1 2.113.048l-.508 5.54c.284.006.568.003.85.026.283.022.565.073.845.115l.508-5.54m2.388 6.067c.28.044.564.077.843.14.277.057.548.147.818.224l.69-2.83.076.018c.16.388.37.862.48 1.135l.863 2.138c.338.054.675.098 1.008.17.34.075.668.174.996.266l-.298-.64c-.465-.966-.954-1.927-1.357-2.904 1.073.047 1.905-.342 2.113-1.204.148-.6-.09-1.07-.656-1.474-.416-.296-1.226-.453-1.748-.57l-2.35-.513-1.476 6.043m3.015-5.205c.678.15 1.524.26 1.524 1.03-.004.193-.023.33-.054.452-.22.904-.904 1.217-2.045.876zm8.082 7.05c-.052.668-.17 1.316-.3 2.018.294.14.586.266.87.422.285.158.547.33.82.502l.577-6.942a3.4 3.4 0 0 1-.75-.41l-6.12 3.888c.163.078.33.15.488.235.16.09.292.184.45.273.514-.433 1.054-.784 1.674-1.244l2.29 1.254v.003zm-1.734-1.585 2.038-1.32-.237 2.302z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M182.19 192.43c0-1.09.933-1.973 2.08-1.973 1.146 0 2.082.883 2.082 1.974s-.932 1.97-2.08 1.97c-1.15 0-2.08-.88-2.08-1.97z"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.25,d:"M205.663 175.414c6.38 0 12.055.944 15.752 2.41 2.116.955 4.957 1.66 8.067 2.076 2.368.317 4.618.38 6.576.232 2.618-.05 6.404.715 10.19 2.382 3.135 1.39 5.752 3.082 7.49 4.72l-1.504 1.34-.435 3.802-4.127 4.724-2.062 1.75-4.884 3.91-2.495.204-.757 2.16-31.602-3.704-31.696 3.703-.76-2.16-2.498-.202-4.884-3.91-2.062-1.75-4.125-4.724-.43-3.803-1.51-1.34c1.745-1.637 4.362-3.328 7.49-4.72 3.787-1.666 7.574-2.432 10.19-2.38 1.957.148 4.208.084 6.576-.233 3.113-.416 5.956-1.12 8.068-2.076 3.7-1.466 9.06-2.41 15.435-2.41z"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M206.148 217.132c-11.774-.017-22.32-1.41-29.846-3.678-.55-.167-.84-.672-.807-1.194-.01-.507.275-.967.807-1.128 7.526-2.264 18.072-3.658 29.846-3.675 11.77.017 22.31 1.41 29.838 3.675.532.16.812.62.802 1.128.03.522-.255 1.027-.802 1.194-7.527 2.267-18.067 3.66-29.838 3.678"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M206.12 215.587c-10.626-.013-20.23-1.24-27.54-3.128 7.31-1.894 16.914-3.05 27.54-3.07 10.622.02 20.277 1.176 27.588 3.07-7.31 1.887-16.966 3.114-27.59 3.127"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.086,d:"M206.908 215.652v-6.305"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.134,d:"M205.196 215.652v-6.305"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.173,d:"M203.58 215.652v-6.305"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.221,d:"M201.977 215.652v-6.305"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.269,d:"M200.548 215.652v-6.305"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.317,d:"m197.825 215.312-.038-5.738m1.33 5.814v-6.003"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.355,d:"M195.31 215.053v-5.286m1.274 5.438-.037-5.626"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.403,d:"M191.938 214.752v-4.645m1.106 4.72v-4.87m1.14 5.022v-5.063"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.442,d:"M190.755 214.714v-4.494"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.49,d:"M189.653 214.487v-4.19"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.538,d:"M188.47 214.374v-3.89"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.576,d:"m186.05 214.035-.038-3.097m1.28 3.248v-3.475"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.605,d:"M184.81 213.77v-2.72"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.653,d:"M183.673 213.55v-2.266"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.701,d:"M182.433 213.248v-1.774"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.739,d:"M181.158 213.097v-1.32"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.874,d:"M179.81 212.795v-.642"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M213.72 215.312v-5.776m-2.9 5.965.038-6.115m-2.153 6.192v-6.23"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M206.066 207.447c-11.914.023-22.608 1.517-30.135 3.836.626-.298.57-1.068-.208-3.07-.94-2.426-2.404-2.32-2.404-2.32 8.322-2.457 19.905-3.995 32.798-4.013 12.898.018 24.575 1.556 32.897 4.013 0 0-1.465-.106-2.404 2.32-.78 2.002-.837 2.772-.21 3.07-7.526-2.32-18.42-3.813-30.334-3.836"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M206.116 201.883c-12.893.02-24.476 1.555-32.798 4.017-.555.166-1.142-.05-1.32-.576-.18-.526.118-1.13.673-1.3 8.358-2.563 20.24-4.172 33.45-4.2 13.212.025 25.14 1.637 33.497 4.2.555.17.854.774.674 1.3-.18.525-.766.742-1.32.576-8.323-2.462-19.956-3.996-32.854-4.017"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.374,d:"M206.12 215.587c-10.626-.013-20.23-1.24-27.54-3.128 7.31-1.894 16.914-3.05 27.54-3.07 10.622.02 20.277 1.176 27.588 3.07-7.31 1.887-16.966 3.114-27.59 3.127z"}),(0,h.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.374,d:"M196.92 204.812c0-.55.47-.995 1.05-.995.584 0 1.057.446 1.057.995s-.473 1-1.056 1c-.58 0-1.05-.452-1.05-1"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.374,d:"M206.142 205.596h-3.154c-.582 0-1.065-.443-1.065-.995 0-.548.472-.997 1.052-.997h6.376c.58 0 1.054.45 1.054.998 0 .553-.482.996-1.067.996h-3.195"}),(0,h.jsx)("path",{fill:"#058e6e",stroke:"#000",strokeWidth:.374,d:"m190.293 206.465-2.27.263c-.578.07-1.115-.32-1.187-.863-.07-.548.34-1.046.92-1.11l2.282-.266 2.32-.268c.576-.067 1.102.314 1.174.863.07.545-.352 1.046-.928 1.11l-2.31.27"}),(0,h.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.374,d:"M181.072 206.664c0-.55.47-.996 1.05-.996.584 0 1.055.447 1.055.996 0 .552-.47.998-1.055.998-.58 0-1.05-.446-1.05-.998"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.374,d:"m174.056 208.477 1.17-1.53 3.233.408-2.587 1.886-1.817-.763"}),(0,h.jsx)("path",{fill:"#058e6e",stroke:"#000",strokeWidth:.374,d:"m221.995 206.465 2.267.263c.575.07 1.117-.32 1.188-.863.065-.548-.342-1.046-.918-1.11l-2.282-.266-2.32-.268c-.58-.067-1.106.314-1.175.863-.072.545.353 1.046.928 1.11l2.312.27"}),(0,h.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.374,d:"M213.26 204.812c0-.55.474-.995 1.054-.995.582 0 1.054.446 1.054.995s-.472 1-1.054 1c-.58 0-1.053-.452-1.053-1m15.849 1.852c0-.55.472-.996 1.052-.996.583 0 1.054.447 1.054.996 0 .552-.47.998-1.054.998-.58 0-1.052-.446-1.052-.998"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.374,d:"m238.23 208.477-1.168-1.53-3.233.408 2.584 1.886 1.817-.763"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M177.31 212.796c7.444-2.09 17.566-3.385 28.81-3.406 11.242.02 21.414 1.316 28.858 3.406"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m182.324 183.762 1.332 1.068 1.997-3.262c-2.167-1.327-3.653-3.63-3.653-6.257q-.001-.442.055-.87c.208-4.164 5.28-7.604 11.718-7.604 3.34 0 6.358.914 8.482 2.38.057-.644.115-1.196.205-1.782-2.34-1.365-5.375-2.185-8.687-2.185-7.403 0-13.195 4.204-13.476 9.186q-.044.436-.043.875c0 2.658 1.213 5.05 3.13 6.714z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"m182.324 183.762 1.332 1.068 1.997-3.262c-2.167-1.327-3.653-3.63-3.653-6.257q-.001-.442.055-.87c.208-4.164 5.28-7.604 11.718-7.604 3.34 0 6.358.914 8.482 2.38.057-.644.115-1.196.205-1.782-2.34-1.365-5.375-2.185-8.687-2.185-7.403 0-13.195 4.204-13.476 9.186q-.044.436-.043.875c0 2.658 1.213 5.05 3.13 6.714l-1.06 1.738"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M182.41 183.8c-2.527-1.886-4.095-4.45-4.095-7.27 0-3.254 2.126-6.154 5.358-8.077-1.994 1.6-3.203 3.67-3.376 5.983q-.044.436-.043.875c0 2.658 1.213 5.05 3.13 6.714z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M182.41 183.8c-2.527-1.886-4.095-4.45-4.095-7.27 0-3.254 2.126-6.154 5.358-8.077-1.994 1.6-3.203 3.67-3.376 5.983q-.044.436-.043.875c0 2.658 1.213 5.05 3.13 6.714l-.974 1.775"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M160.12 187.092c-1.416-1.584-2.283-3.633-2.283-5.873 0-1.352.312-2.643.877-3.795 2.045-4.206 8.46-7.268 16.083-7.268 2.078 0 4.065.226 5.9.644-.407.445-.726.932-1.038 1.423a25.5 25.5 0 0 0-4.863-.457c-6.98 0-12.818 2.714-14.51 6.38a7.1 7.1 0 0 0-.702 3.073c0 2.228 1.044 4.226 2.678 5.59l-2.526 4.127-1.353-1.076 1.735-2.764"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M160.12 187.092c-1.416-1.584-2.283-3.633-2.283-5.873 0-1.352.312-2.643.877-3.795 2.045-4.206 8.46-7.268 16.083-7.268 2.078 0 4.065.226 5.9.644-.407.445-.726.932-1.038 1.423a25.5 25.5 0 0 0-4.863-.457c-6.98 0-12.818 2.714-14.51 6.38a7.1 7.1 0 0 0-.702 3.073c0 2.228 1.044 4.226 2.678 5.59l-2.526 4.127-1.353-1.076 1.735-2.764v-.004z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M162.707 173.263c-1.837 1.156-3.226 2.577-3.993 4.162a8.6 8.6 0 0 0-.877 3.794c0 2.24.867 4.288 2.282 5.872l-1.535 2.49c-1.468-1.887-2.322-4.088-2.322-6.43 0-4.033 2.566-7.557 6.444-9.89"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M162.707 173.263c-1.837 1.156-3.226 2.577-3.993 4.162a8.6 8.6 0 0 0-.877 3.794c0 2.24.867 4.288 2.282 5.872l-1.535 2.49c-1.468-1.887-2.322-4.088-2.322-6.43 0-4.033 2.566-7.557 6.444-9.89z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M206.037 164.416c1.692 0 3.146 1.12 3.493 2.62.226 1.325.367 2.835.398 4.444.003.167-.01.33-.01.494.004.19.04.396.043.59.06 3.374.54 6.354 1.228 8.178l-5.153 4.93-5.21-4.93c.69-1.824 1.17-4.804 1.234-8.178.003-.194.04-.4.04-.59 0-.164-.01-.327-.007-.494.025-1.61.17-3.12.395-4.445.343-1.5 1.858-2.62 3.546-2.62"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M206.037 164.416c1.692 0 3.146 1.12 3.493 2.62.226 1.325.367 2.835.398 4.444.003.167-.01.33-.01.494.004.19.04.396.043.59.06 3.374.54 6.354 1.228 8.178l-5.153 4.93-5.21-4.93c.69-1.824 1.17-4.804 1.234-8.178.003-.194.04-.4.04-.59 0-.164-.01-.327-.007-.494.025-1.61.17-3.12.395-4.445.343-1.5 1.858-2.62 3.546-2.62h.003z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M206.037 166.022c.88 0 1.62.56 1.8 1.336.213 1.254.35 2.687.378 4.2 0 .157-.008.314-.008.466 0 .188.032.376.036.567.055 3.188.512 5.997 1.167 7.726l-3.4 3.218-3.4-3.218c.65-1.725 1.106-4.538 1.163-7.725.004-.19.037-.378.04-.566 0-.152-.01-.31-.01-.466a28 28 0 0 1 .38-4.2c.177-.776.98-1.336 1.854-1.336"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M206.037 166.022c.88 0 1.62.56 1.8 1.336.213 1.254.35 2.687.378 4.2 0 .157-.008.314-.008.466 0 .188.032.376.036.567.055 3.188.512 5.997 1.167 7.726l-3.4 3.218-3.4-3.218c.65-1.725 1.106-4.538 1.163-7.725.004-.19.037-.378.04-.566 0-.152-.01-.31-.01-.466a28 28 0 0 1 .38-4.2c.177-.776.98-1.336 1.854-1.336z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m229.712 183.762-1.332 1.068-1.997-3.262c2.165-1.327 3.653-3.63 3.653-6.257a7 7 0 0 0-.053-.87c-.207-4.164-5.285-7.604-11.718-7.604-3.348 0-6.36.914-8.487 2.38a23 23 0 0 0-.206-1.782c2.34-1.365 5.374-2.185 8.693-2.185 7.402 0 13.192 4.204 13.476 9.186q.04.436.04.875c0 2.658-1.21 5.05-3.13 6.714l1.062 1.738"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"m229.712 183.762-1.332 1.068-1.997-3.262c2.165-1.327 3.653-3.63 3.653-6.257a7 7 0 0 0-.053-.87c-.207-4.164-5.285-7.604-11.718-7.604-3.348 0-6.36.914-8.487 2.38a23 23 0 0 0-.206-1.782c2.34-1.365 5.374-2.185 8.693-2.185 7.402 0 13.192 4.204 13.476 9.186q.04.436.04.875c0 2.658-1.21 5.05-3.13 6.714l1.062 1.738"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M229.626 183.8c2.526-1.886 4.096-4.45 4.096-7.27 0-3.254-2.128-6.154-5.356-8.077 1.99 1.6 3.2 3.67 3.375 5.983q.04.436.04.875c0 2.658-1.21 5.05-3.13 6.714l.976 1.775"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M229.626 183.8c2.526-1.886 4.096-4.45 4.096-7.27 0-3.254-2.128-6.154-5.356-8.077 1.99 1.6 3.2 3.67 3.375 5.983q.04.436.04.875c0 2.658-1.21 5.05-3.13 6.714l.976 1.775"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M251.92 187.092c1.412-1.584 2.278-3.633 2.278-5.873a8.65 8.65 0 0 0-.873-3.795c-2.05-4.206-8.462-7.268-16.088-7.268-2.077 0-4.063.226-5.9.644.412.445.73.932 1.043 1.423a25.5 25.5 0 0 1 4.854-.457c6.98 0 12.822 2.714 14.51 6.38.453.936.703 1.98.703 3.073 0 2.228-1.045 4.226-2.68 5.59l2.528 4.127 1.357-1.076-1.734-2.764"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M251.92 187.092c1.412-1.584 2.278-3.633 2.278-5.873a8.65 8.65 0 0 0-.873-3.795c-2.05-4.206-8.462-7.268-16.088-7.268-2.077 0-4.063.226-5.9.644.412.445.73.932 1.043 1.423a25.5 25.5 0 0 1 4.854-.457c6.98 0 12.822 2.714 14.51 6.38.453.936.703 1.98.703 3.073 0 2.228-1.045 4.226-2.68 5.59l2.528 4.127 1.357-1.076-1.734-2.764z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M249.33 173.263c1.835 1.156 3.225 2.577 3.995 4.162a8.7 8.7 0 0 1 .873 3.794c0 2.24-.866 4.288-2.277 5.872l1.53 2.49c1.47-1.887 2.318-4.088 2.318-6.43 0-4.033-2.562-7.557-6.438-9.89"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M249.33 173.263c1.835 1.156 3.225 2.577 3.995 4.162a8.7 8.7 0 0 1 .873 3.794c0 2.24-.866 4.288-2.277 5.872l1.53 2.49c1.47-1.887 2.318-4.088 2.318-6.43 0-4.033-2.562-7.557-6.438-9.89z"}),(0,h.jsx)("path",{fill:"#fff",d:"M204.206 181.376c0-.955.82-1.724 1.83-1.724 1.007 0 1.827.77 1.827 1.724 0 .958-.82 1.732-1.828 1.732-1.01 0-1.83-.774-1.83-1.732"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M204.206 181.376c0-.955.82-1.724 1.83-1.724 1.007 0 1.827.77 1.827 1.724 0 .958-.82 1.732-1.828 1.732-1.01 0-1.83-.774-1.83-1.732z"}),(0,h.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.374,d:"M204.206 177.984c0-.954.82-1.732 1.83-1.732 1.007 0 1.827.778 1.827 1.732 0 .955-.82 1.728-1.828 1.728-1.01 0-1.83-.773-1.83-1.728m.367-3.648c0-.764.656-1.38 1.463-1.38.8 0 1.457.616 1.457 1.38s-.656 1.38-1.457 1.38c-.807 0-1.463-.617-1.463-1.38m.41-3.29c0-.547.473-.994 1.053-.994.582 0 1.05.447 1.05.994 0 .553-.468 1-1.05 1-.58 0-1.053-.447-1.053-1m.21-2.876c0-.444.376-.798.843-.798.463 0 .84.354.84.798 0 .44-.377.798-.84.798-.467 0-.843-.358-.843-.798"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"m206.19 191.786 1.187.22c-.19.48-.23 1.004-.23 1.557 0 2.464 2.116 4.47 4.72 4.47 2.093 0 3.875-1.296 4.487-3.086.07.047.45-1.616.648-1.595.165.017.147 1.728.208 1.697.303 2.252 2.362 3.777 4.68 3.777 2.602 0 4.712-1.995 4.712-4.463q.002-.278-.036-.546l1.48-1.466.793 1.868c-.316.587-.442 1.246-.442 1.95 0 2.357 2.016 4.262 4.503 4.262 1.566 0 2.94-.753 3.748-1.895l.947-1.204-.007 1.476c0 1.482.626 2.812 2.073 3.046 0 0 1.662.103 3.863-1.625 2.203-1.728 3.416-3.16 3.416-3.16l.19 1.732s-1.83 2.827-3.82 3.98c-1.087.632-2.74 1.297-4.052 1.083-1.39-.226-2.38-1.34-2.89-2.625a6.7 6.7 0 0 1-3.413.923c-2.692 0-5.112-1.476-6.07-3.698-1.237 1.336-2.962 2.157-4.984 2.157-2.148 0-4.118-.967-5.352-2.454a6.93 6.93 0 0 1-4.68 1.787c-2.38 0-4.502-1.167-5.705-2.926-1.202 1.758-3.323 2.925-5.7 2.925a6.94 6.94 0 0 1-4.68-1.787c-1.23 1.487-3.204 2.454-5.353 2.454-2.023 0-3.747-.82-4.987-2.157-.956 2.222-3.374 3.698-6.068 3.698a6.7 6.7 0 0 1-3.408-.923c-.515 1.284-1.505 2.4-2.89 2.625-1.315.214-2.967-.45-4.056-1.084-1.99-1.15-3.817-3.978-3.817-3.978l.192-1.73s1.213 1.43 3.412 3.16c2.204 1.73 3.863 1.624 3.863 1.624 1.447-.234 2.072-1.564 2.072-3.047l-.007-1.477.947 1.204c.806 1.142 2.186 1.895 3.748 1.895 2.487 0 4.502-1.905 4.502-4.26 0-.706-.127-1.365-.443-1.952l.793-1.868 1.482 1.466a4 4 0 0 0-.036.546c0 2.468 2.106 4.463 4.71 4.463 2.322 0 4.377-1.525 4.68-3.778.064.03.047-1.68.21-1.698.197-.02.58 1.642.646 1.595.615 1.79 2.394 3.085 4.493 3.085 2.604 0 4.714-2.005 4.714-4.47 0-.552-.033-1.077-.227-1.557l1.232-.22"}),(0,h.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.374,d:"M238.6 197.676c.27-.8.028-1.59-.548-1.764-.576-.18-1.268.324-1.54 1.12-.275.8-.03 1.586.547 1.767.574.172 1.265-.33 1.54-1.124m-20.519-3.973c.105-.835-.294-1.564-.895-1.633-.6-.072-1.177.544-1.285 1.377-.108.83.29 1.565.892 1.637.602.067 1.178-.55 1.287-1.382m-23.827.001c-.107-.835.296-1.564.893-1.633.6-.072 1.177.544 1.286 1.377.104.83-.29 1.565-.892 1.637-.602.067-1.178-.55-1.286-1.382m-20.518 3.975c-.273-.8-.028-1.59.548-1.764.576-.18 1.263.324 1.537 1.12.27.8.025 1.586-.548 1.767-.576.172-1.263-.33-1.537-1.124"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M182.648 183.984c1.02.643 1.908 1.715 2.217 2.912 0 0 .12-.246.68-.57.566-.317 1.044-.308 1.044-.308s-.162.93-.242 1.266c-.082.327-.09 1.326-.305 2.226-.217.9-.61 1.62-.61 1.62a1.9 1.9 0 0 0-1.51-.4 1.83 1.83 0 0 0-1.275.862s-.63-.548-1.156-1.322c-.53-.775-.89-1.71-1.09-1.992-.2-.286-.685-1.11-.685-1.11s.447-.168 1.092-.05c.642.12.844.315.844.315-.136-1.23.27-2.516.994-3.45"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M183.08 193.785a1.75 1.75 0 0 1-.648-1.037c-.08-.42.01-.835.224-1.176 0 0-.85-.43-1.762-.668-.69-.18-1.906-.188-2.274-.194l-1.1-.027s.06.167.268.53c.252.44.476.716.476.716-1.218.28-2.254 1.08-2.91 2.008.952.657 2.216 1.056 3.456.93 0 0-.108.332-.186.832-.065.413-.06.584-.06.584l1.024-.38c.342-.125 1.484-.52 2.07-.916.766-.525 1.422-1.2 1.422-1.2m2.728-.46a1.65 1.65 0 0 0 .235-1.18 1.72 1.72 0 0 0-.634-1.035s.64-.68 1.406-1.2c.584-.396 1.727-.795 2.07-.917.342-.126 1.026-.382 1.026-.382s.003.174-.062.587a6 6 0 0 1-.187.828c1.243-.13 2.508.286 3.46.948-.655.923-1.7 1.71-2.912 1.99a6.4 6.4 0 0 0 .745 1.248s-.734-.017-1.1-.023c-.368-.006-1.584-.01-2.275-.194-.91-.243-1.772-.665-1.772-.665"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.374,d:"M182.19 192.43c0-1.09.933-1.973 2.08-1.973 1.146 0 2.082.883 2.082 1.974s-.932 1.97-2.08 1.97c-1.15 0-2.08-.88-2.08-1.97"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M206.11 180.83c1 .908 1.77 2.263 1.87 3.658 0 0 .178-.252.873-.504.694-.252 1.227-.154 1.227-.154s-.37 1.013-.533 1.366c-.16.356-.37 1.467-.803 2.425a8.2 8.2 0 0 1-1.007 1.692 2.13 2.13 0 0 0-1.606-.72c-.644 0-1.22.284-1.6.72 0 0-.587-.726-1.012-1.69-.43-.96-.64-2.07-.8-2.426-.16-.353-.536-1.366-.536-1.366s.537-.1 1.228.154c.694.252.878.504.878.504.097-1.395.825-2.75 1.82-3.658"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M204.558 191.838a1.92 1.92 0 0 1-.507-1.275c0-.48.185-.93.494-1.268 0 0-.857-.642-1.82-1.077-.732-.334-2.09-.566-2.496-.642l-1.224-.23s.033.193.19.64c.192.542.383.89.383.89-1.41.085-2.74.786-3.662 1.697.922.903 2.247 1.588 3.662 1.68 0 0-.19.345-.382.89-.158.44-.19.638-.19.638s.813-.15 1.223-.224c.407-.082 1.764-.31 2.495-.648.964-.437 1.835-1.066 1.835-1.066m3.134-.005c.31-.345.507-.79.507-1.275 0-.48-.182-.93-.492-1.268 0 0 .857-.642 1.822-1.077.733-.334 2.09-.566 2.497-.642l1.216-.23s-.028.193-.19.64c-.192.542-.378.89-.378.89 1.41.085 2.74.786 3.657 1.697-.918.903-2.243 1.588-3.657 1.68 0 0 .186.345.378.89.16.44.19.638.19.638l-1.216-.224c-.407-.082-1.764-.31-2.497-.648-.965-.437-1.837-1.066-1.837-1.066m21.989-7.859c-1.014.643-1.902 1.715-2.213 2.912 0 0-.124-.246-.684-.57-.562-.317-1.046-.308-1.046-.308s.163.93.246 1.266c.084.327.087 1.326.302 2.226.217.9.607 1.62.607 1.62a1.9 1.9 0 0 1 1.513-.4c.56.096 1.016.426 1.278.862 0 0 .627-.548 1.157-1.322.524-.775.888-1.71 1.082-1.992.2-.286.688-1.11.688-1.11s-.45-.168-1.094-.05c-.645.12-.848.315-.848.315.144-1.23-.266-2.516-.99-3.45"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M229.254 193.785c.322-.257.57-.615.644-1.037a1.64 1.64 0 0 0-.22-1.176s.847-.43 1.757-.668c.692-.18 1.913-.188 2.274-.194l1.102-.027s-.058.167-.27.53a6 6 0 0 1-.474.716c1.215.28 2.252 1.08 2.907 2.008-.946.657-2.21 1.056-3.455.93 0 0 .112.332.188.832.06.413.056.584.056.584s-.683-.253-1.02-.38c-.343-.125-1.485-.52-2.072-.916-.762-.525-1.418-1.2-1.418-1.2m-2.73-.46a1.67 1.67 0 0 1-.235-1.18c.08-.422.314-.78.637-1.035 0 0-.644-.68-1.41-1.2-.584-.396-1.73-.795-2.07-.917l-1.022-.382s-.003.174.06.587c.077.498.185.828.185.828-1.243-.13-2.51.286-3.456.948.655.923 1.696 1.71 2.908 1.99 0 0-.22.276-.472.716-.21.37-.27.532-.27.532s.73-.017 1.1-.023c.362-.006 1.586-.01 2.273-.194a11 11 0 0 0 1.77-.665"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.374,d:"M225.98 192.43c0-1.09.93-1.973 2.08-1.973 1.152 0 2.084.883 2.084 1.974s-.932 1.97-2.084 1.97c-1.15 0-2.08-.88-2.08-1.97m23.27 4.377c-.49-.518-1.505-.41-2.264.24-.76.643-.98 1.59-.49 2.105.49.518 1.505.406 2.263-.238.76-.65.98-1.596.49-2.107"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.374,d:"M246.295 198.062c.105-.354.342-.716.69-1.015.76-.648 1.774-.757 2.265-.24.06.07.13.16.17.243 0 0 1.054-2 2.303-2.665 1.25-.672 3.363-.502 3.363-.502 0-1.535-1.257-2.774-2.877-2.774-.952 0-1.85.394-2.38 1.062l-.22-1.03s-1.303.26-1.9 1.75c-.594 1.493.053 3.65.053 3.65s-.324-.927-.812-1.545c-.486-.612-1.735-1.284-2.386-1.59-.652-.304-1.318-.76-1.318-.76s-.03.166-.054.58a5 5 0 0 0 .015.796c-1.195-.157-2.59.038-3.675.46.464.913 1.35 1.773 2.508 2.212 0 0-.417.345-.8.723a4 4 0 0 0-.416.47s.817.117 1.228.174c.405.055 1.762.27 2.573.215a15 15 0 0 0 1.67-.215m-80.259.001c-.104-.354-.34-.716-.69-1.015-.76-.648-1.772-.757-2.266-.24-.064.07-.13.16-.17.243 0 0-1.058-2-2.306-2.665-1.245-.672-3.358-.502-3.358-.502 0-1.535 1.257-2.774 2.876-2.774.954 0 1.847.394 2.382 1.062l.217-1.03s1.304.26 1.9 1.75c.597 1.493-.053 3.65-.053 3.65s.324-.927.814-1.545c.49-.612 1.74-1.284 2.39-1.59.65-.304 1.318-.76 1.318-.76s.025.166.05.58c.027.492-.014.796-.014.796 1.192-.157 2.59.038 3.676.46-.465.913-1.348 1.773-2.51 2.212 0 0 .418.345.8.723.317.32.42.47.42.47l-1.226.174c-.412.055-1.764.27-2.575.215a15 15 0 0 1-1.674-.215"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.374,d:"M163.08 196.808c.494-.518 1.506-.41 2.265.24.763.643.978 1.59.49 2.105-.49.518-1.506.406-2.264-.238-.76-.65-.978-1.596-.49-2.107m40.969-6.245c0-1.09.932-1.97 2.08-1.97 1.15 0 2.085.88 2.085 1.97s-.93 1.974-2.084 1.974c-1.148 0-2.08-.884-2.08-1.974"}),(0,h.jsx)("path",{fill:"#005bbf",stroke:"#000",strokeWidth:.25,d:"M201.8 160.61c0-2.23 1.906-4.03 4.252-4.03s4.25 1.8 4.25 4.03c0 2.22-1.903 4.02-4.25 4.02s-4.252-1.8-4.252-4.02"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.25,d:"M204.938 149.316v2.174h-2.326v2.205h2.326v6.345h-2.93c-.034.206-.21.357-.21.573 0 .556.115 1.09.33 1.57.007.014.025.018.03.03h7.794c.006-.012.025-.016.03-.03.216-.48.333-1.014.333-1.57 0-.215-.177-.368-.21-.574h-2.84v-6.344h2.325v-2.206h-2.326v-2.174h-2.326z"}),(0,h.jsx)("path",{fill:"#ccc",d:"M206.473 330.56c-12.558 0-25.006-3.078-35.47-8.2-7.713-3.82-12.828-11.524-12.828-20.34v-31.968h96.406v31.97c0 8.814-5.113 16.518-12.83 20.34-10.462 5.12-22.715 8.198-35.277 8.198"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.499,d:"M206.473 330.56c-12.558 0-25.006-3.078-35.47-8.2-7.713-3.82-12.828-11.524-12.828-20.34v-31.968h96.406v31.97c0 8.814-5.113 16.518-12.83 20.34-10.462 5.12-22.715 8.198-35.277 8.198z"}),(0,h.jsx)("path",{fill:"#ccc",d:"M206.268 269.997h48.31v-53.485h-48.31z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.499,d:"M206.268 269.997h48.31v-53.485h-48.31z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M206.304 301.983c0 12.634-10.706 22.874-24.04 22.874-13.34 0-24.154-10.24-24.154-22.874v-32.017h48.194z"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.499,d:"M168.64 320.86c1.505.8 3.573 2.13 5.783 2.663l-.14-54.685h-5.644v52.022z"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeLinejoin:"round",strokeWidth:.48,d:"M158.03 301.552c.148 6.747 2.826 11.762 5.504 15.047v-47.496H158.1z"}),(0,h.jsx)("path",{fill:"#c7b500",stroke:"#000",strokeWidth:.499,d:"M179.384 324.722a26.6 26.6 0 0 0 5.644 0v-55.884h-5.644z"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.499,d:"M189.99 323.523c2.21-.444 4.7-1.82 5.785-2.53v-52.155h-5.644l-.14 54.685z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M158.113 269.997h48.172v-53.485h-48.172z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.499,d:"M158.113 269.997h48.172v-53.485h-48.172z"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.499,d:"M201.02 316.067c2.35-2.087 4.56-6.837 5.363-12.25l.14-34.98h-5.644l.14 47.23z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.499,d:"M206.304 301.983c0 12.634-10.706 22.874-24.04 22.874-13.34 0-24.154-10.24-24.154-22.874v-32.017h48.194v32.017"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M254.624 269.966v32.017c0 12.634-10.827 22.874-24.167 22.874-13.336 0-24.153-10.24-24.153-22.874v-32.017z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.499,d:"M254.624 269.966v32.017c0 12.634-10.827 22.874-24.167 22.874-13.336 0-24.153-10.24-24.153-22.874v-32.017h48.32"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M215.093 294.132c.077.164.12.328.12.502 0 .59-.5 1.06-1.124 1.06-.62 0-1.123-.47-1.123-1.06 0-.174.043-.338.122-.48l-1.57-.022q-.05.24-.052.502c0 1.11.768 2.052 1.828 2.37l-.002 3.85 1.645.01.002-3.878a2.56 2.56 0 0 0 1.63-1.55h4.418v-1.303h-5.897m21.677 0v1.302l-3.973.01a2.6 2.6 0 0 1-.256.487l4.616 5.243-1.238 1.003-4.593-5.25c-.085.027-.127.06-.216.085l-.013 8.675h-1.626l-.003-8.713c-.07-.016-.127-.05-.19-.08l-4.782 5.283-1.238-1.003 4.778-5.304a2 2 0 0 1-.2-.435h-4.106v-1.302h13.044-.004zm2.647 0v1.302h4.422c.262.73.857 1.302 1.627 1.55l.003 3.88 1.642-.01-.004-3.852c1.062-.317 1.833-1.26 1.833-2.37q.002-.26-.058-.5h-1.562c.076.163.116.327.116.5 0 .59-.497 1.06-1.12 1.06-.618 0-1.123-.47-1.123-1.06a1 1 0 0 1 .123-.48zm-6.678 22.12c1.29-.205 2.478-.56 3.65-1.053l.807 1.373a17.6 17.6 0 0 1-4.32 1.223c-.252 1.122-1.3 1.964-2.558 1.964s-2.305-.832-2.564-1.945a17.5 17.5 0 0 1-4.542-1.242l.81-1.373c1.236.52 2.553.868 3.92 1.058.29-.625.818-1.11 1.513-1.335l.014-6.726h1.623l.015 6.702c.72.214 1.328.705 1.63 1.352h.003zm-11.033-2.257-.8 1.38a16.7 16.7 0 0 1-3.647-3.085c-.835.247-1.78.1-2.49-.48-1.103-.893-1.237-2.46-.293-3.5l.137-.146a15.3 15.3 0 0 1-1.267-4.804l1.642.007a13.1 13.1 0 0 0 1.05 4.105c.46-.065.954-.01 1.397.153l4.106-4.544 1.238 1-4.08 4.537c.55.838.528 1.92-.102 2.744a15.2 15.2 0 0 0 3.11 2.636zm-6.09-4.766c.405-.45 1.113-.5 1.584-.12.472.382.53 1.057.126 1.5a1.167 1.167 0 0 1-1.584.12 1.026 1.026 0 0 1-.127-1.5zm-2.07-4.493-1.687-.378-.238-4.276 1.674-.553.002 2.453c0 .95.085 1.85.25 2.754zm1.4-5.3 1.682.395s.087 2.747.05 2.13c-.043-.72.184 2.15.184 2.15l-1.694.557c-.17-.873-.226-1.767-.226-2.687l.003-2.547h.004zm5.543 13.676a15.7 15.7 0 0 0 4.84 2.57l.374-1.626a13.7 13.7 0 0 1-4.007-2.01zm-.813 1.404a17.4 17.4 0 0 0 4.84 2.547l-1.258 1.176a18.7 18.7 0 0 1-3.955-2.03zm2.194-9.42 1.604.68 2.937-3.26-.964-1.386zm-1.246-1.006-.963-1.394 2.94-3.26 1.6.685-3.576 3.97m18.08 9.906.802 1.38a16.7 16.7 0 0 0 3.646-3.085c.83.247 1.78.1 2.49-.48 1.102-.893 1.23-2.46.29-3.5l-.138-.146a15 15 0 0 0 1.263-4.804l-1.633.007a13.3 13.3 0 0 1-1.052 4.105 2.9 2.9 0 0 0-1.4.153l-4.103-4.544-1.24 1 4.08 4.537a2.36 2.36 0 0 0 .1 2.744 15 15 0 0 1-3.107 2.636zm6.086-4.766a1.16 1.16 0 0 0-1.58-.12 1.025 1.025 0 0 0-.126 1.5 1.167 1.167 0 0 0 1.584.12 1.024 1.024 0 0 0 .122-1.5m2.07-4.493 1.688-.378.238-4.276-1.67-.553-.004 2.453c0 .95-.084 1.85-.252 2.754m-1.396-5.3-1.68.395s-.092 2.747-.055 2.13c.045-.72-.185 2.15-.185 2.15l1.695.557c.17-.873.227-1.767.227-2.687l-.003-2.547m-5.544 13.677a15.7 15.7 0 0 1-4.838 2.57l-.374-1.626a13.7 13.7 0 0 0 4.003-2.01l1.21 1.066m.814 1.404a17.5 17.5 0 0 1-4.84 2.547l1.258 1.176c1.41-.52 2.74-1.21 3.956-2.03zm-2.193-9.42-1.604.68-2.938-3.26.965-1.386 3.578 3.966m1.245-1.006.963-1.394-2.938-3.26-1.6.685 3.575 3.97m-20.105-8.652.493 1.6h4.525l.487-1.6zm21.135 0-.496 1.6h-4.523l-.487-1.6zm-11.62 21.837c0-.59.502-1.066 1.122-1.066.618 0 1.118.475 1.118 1.065 0 .587-.5 1.06-1.118 1.06-.62 0-1.123-.473-1.123-1.06zm1.902-7.752 1.69-.473v-4.28l-1.69-.462zm-1.637 0-1.684-.473v-4.28l1.684-.462z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M211.52 294.17c.194-.892.89-1.616 1.79-1.886l-.014-5.282h1.63l.002 5.31c.804.253 1.422.847 1.67 1.612l4.392.007v.24h-5.897a1.16 1.16 0 0 0-1.004-.566c-.436 0-.818.242-1 .586l-1.57-.02m12.206 0v-.24h4.08a2.4 2.4 0 0 1 .174-.385l-5.032-5.608 1.237-1.004 4.97 5.517c.085-.042.176-.08.264-.11l.004-7.35h1.627v7.304c.074.02.184.042.257.063l4.853-5.526 1.247.99-4.872 5.503c.126.185.21.39.28.608h3.952v.24h-13.045.004zm21.59 0a1.15 1.15 0 0 1 1-.566c.44 0 .818.242 1.004.586l1.562-.02c-.194-.892-.885-1.616-1.784-1.886l.01-5.28h-1.624l-.007 5.31c-.8.254-1.418.845-1.667 1.61l-4.393.007v.24h5.9m-30.13-14.918 6.054 6.786 1.24-1.004-6.086-6.76c.12-.18.207-.378.28-.59h4.428v-1.544h-4.43c-.34-1-1.333-1.718-2.502-1.718-1.448 0-2.625 1.114-2.625 2.488 0 1.088.736 2.018 1.766 2.353l-.01 5.235h1.628v-5.2c.07-.02.193-.02.26-.046zm31.94.035-.015 5.21h-1.628v-5.23a2.5 2.5 0 0 1-.364-.15l-6.02 6.796-1.245-.99 6.135-6.93c-.05-.096-.104-.2-.14-.31h-4.452v-1.543h4.438c.342-1 1.325-1.718 2.49-1.718 1.447 0 2.625 1.114 2.625 2.488 0 1.116-.76 2.058-1.824 2.377m-16.06-.02-.013 3.21h-1.626l.004-3.184a2.57 2.57 0 0 1-1.715-1.61h-3.97v-1.543h3.97c.343-1 1.32-1.718 2.488-1.718 1.166 0 2.152.717 2.495 1.718h4.05v1.543h-4.06a2.53 2.53 0 0 1-1.62 1.583zm-17.75 3.895-1.69.475v4.29l1.69.465zm1.637 0 1.684.475v4.29l-1.684.465zm30.515 0-1.684.475v4.29l1.683.465zm1.638 0 1.69.475v4.29l-1.69.465zm-25.547.847 1.608-.683 2.937 3.265-.965 1.393zm-1.243 1.01-.96 1.398 2.936 3.262 1.6-.687-3.576-3.972m18.444-1.137-1.608-.67-2.91 3.29.976 1.383 3.543-4.003m1.254 1 .974 1.388-2.908 3.29-1.605-.673 3.54-4.003m-20.335 9.044.493-1.602h4.525l.488 1.602zm-6.634-17.016c0-.587.503-1.066 1.124-1.066.618 0 1.12.48 1.12 1.066 0 .588-.502 1.062-1.12 1.062-.62 0-1.124-.474-1.124-1.062m12.1.775-.495 1.606h-4.52l-.49-1.606h5.507m0-1.555-.496-1.6h-4.52l-.49 1.6zm15.668 17.796-.496-1.602h-4.523l-.487 1.602h5.505m4.39-17.016c0-.587.5-1.066 1.122-1.066.62 0 1.12.48 1.12 1.066 0 .588-.5 1.062-1.12 1.062-.622 0-1.123-.474-1.123-1.062zm-16.123 0c0-.587.504-1.066 1.122-1.066.62 0 1.12.48 1.12 1.066 0 .588-.5 1.062-1.12 1.062-.618 0-1.122-.474-1.122-1.062m6.266.775.497 1.606h4.52l.49-1.606zm0-1.555.497-1.6h4.52l.49 1.6zm-5.906 5.012-1.685.474v4.29l1.685.465zm1.62 0 1.684.475v4.29l-1.684.465z"}),(0,h.jsx)("path",{fill:"none",stroke:"#c8b100",strokeWidth:.25,d:"M232.738 316.252c1.29-.204 2.478-.56 3.65-1.052l.807 1.373a17.6 17.6 0 0 1-4.32 1.223c-.252 1.122-1.3 1.964-2.558 1.964s-2.305-.832-2.564-1.945a17.5 17.5 0 0 1-4.542-1.242l.81-1.373c1.236.52 2.553.868 3.92 1.06.29-.627.818-1.11 1.513-1.337l.014-6.726h1.623l.015 6.702c.72.214 1.328.705 1.63 1.352h.003zm-4.707-20.378a2.3 2.3 0 0 1-.198-.44h-4.107v-1.54h4.08a2.6 2.6 0 0 1 .178-.383l-5.035-5.6 1.237-1.002 4.973 5.506a2 2 0 0 1 .266-.108l.004-7.337h1.622v7.29c.073.02.184.042.257.066l4.853-5.52 1.247.992-4.872 5.49c.125.183.21.388.28.605h3.952v1.54l-3.974.012c-.058.174-.16.334-.252.487l4.616 5.247-1.238 1-4.593-5.252c-.085.03-.127.064-.22.088l-.01 8.676h-1.628l-.005-8.713c-.068-.02-.124-.056-.19-.086l-4.78 5.287-1.237-1 4.776-5.306m-12.842-16.632 6.053 6.774 1.24-1.002-6.086-6.747c.12-.18.207-.378.28-.59h4.428v-1.54h-4.43c-.34-1-1.333-1.715-2.502-1.715-1.448 0-2.625 1.112-2.625 2.482 0 1.087.736 2.014 1.766 2.348l-.01 5.227h1.628v-5.193c.07-.02.193-.02.26-.045zm6.517 34.754-.8 1.38a16.7 16.7 0 0 1-3.647-3.085c-.835.247-1.78.1-2.49-.48-1.103-.893-1.237-2.46-.293-3.5l.137-.146a15.3 15.3 0 0 1-1.267-4.804l1.642.007a13.1 13.1 0 0 0 1.05 4.105c.46-.065.954-.01 1.397.154l4.106-4.545 1.238 1-4.08 4.537c.55.838.528 1.92-.102 2.744a15.2 15.2 0 0 0 3.11 2.636zm-8.41-13.14v-3.853c-1.06-.314-1.83-1.26-1.83-2.37 0-1.108.782-2.062 1.844-2.383l-.014-5.27h1.63l.002 5.3c.804.253 1.422.843 1.67 1.607l4.392.007v1.54h-4.42a2.56 2.56 0 0 1-1.627 1.552l-.003 3.88-1.646-.01m2.32 8.374c.406-.45 1.114-.5 1.585-.12.472.382.53 1.057.126 1.5a1.167 1.167 0 0 1-1.584.12 1.026 1.026 0 0 1-.127-1.5zm-2.068-4.493-1.688-.378-.238-4.276 1.674-.553.002 2.453c0 .95.085 1.85.25 2.754zm1.4-5.3 1.68.395s.088 2.747.052 2.13c-.044-.72.184 2.15.184 2.15l-1.696.557c-.17-.873-.226-1.767-.226-2.687l.003-2.547h.004zm5.542 13.676a15.7 15.7 0 0 0 4.84 2.57l.374-1.626a13.7 13.7 0 0 1-4.007-2.01l-1.207 1.066m-.813 1.404a17.4 17.4 0 0 0 4.84 2.547l-1.258 1.176a18.7 18.7 0 0 1-3.955-2.03l.373-1.693"}),(0,h.jsx)("path",{fill:"none",stroke:"#c8b100",strokeWidth:.25,d:"m221.87 305.096 1.604.68 2.937-3.258-.964-1.387-3.577 3.966m-1.246-1.006-.963-1.394 2.94-3.26 1.6.685-3.576 3.97m-7.657-9.456c0-.59.503-1.067 1.122-1.067s1.12.476 1.12 1.067c0 .59-.5 1.06-1.12 1.06s-1.123-.47-1.123-1.06zm25.736 19.362.803 1.38a16.7 16.7 0 0 0 3.646-3.085c.83.247 1.78.1 2.49-.48 1.102-.893 1.23-2.46.29-3.5l-.138-.146a15 15 0 0 0 1.263-4.804l-1.633.007a13.3 13.3 0 0 1-1.052 4.105 2.9 2.9 0 0 0-1.4.154l-4.103-4.545-1.24 1 4.08 4.537a2.36 2.36 0 0 0 .1 2.744 15 15 0 0 1-3.107 2.636zm8.413-13.14-.004-3.853c1.062-.314 1.832-1.26 1.832-2.37 0-1.108-.78-2.062-1.843-2.383l.012-5.27h-1.628l-.007 5.3c-.8.253-1.418.843-1.667 1.607l-4.394.007v1.54h4.423c.262.73.856 1.303 1.626 1.552l.003 3.88 1.642-.01zm-2.326 8.374a1.16 1.16 0 0 0-1.58-.12 1.025 1.025 0 0 0-.126 1.5 1.167 1.167 0 0 0 1.584.12 1.024 1.024 0 0 0 .122-1.5zm2.07-4.493 1.688-.378.238-4.276-1.67-.552-.004 2.45c0 .952-.084 1.852-.252 2.755zm-1.396-5.3-1.68.395s-.092 2.748-.055 2.13c.045-.72-.185 2.15-.185 2.15l1.695.557c.17-.873.227-1.767.227-2.687l-.003-2.547m1.662-20.16-.014 5.203h-1.628v-5.225a2.3 2.3 0 0 1-.364-.147l-6.02 6.782-1.245-.99 6.135-6.913c-.05-.098-.104-.2-.14-.31h-4.452v-1.54h4.438c.342-1 1.325-1.715 2.49-1.715 1.447 0 2.625 1.11 2.625 2.482 0 1.115-.76 2.055-1.824 2.372zm-16.058-.02-.014 3.204h-1.626l.004-3.177a2.57 2.57 0 0 1-1.715-1.606h-3.97v-1.54h3.97c.343-1 1.32-1.715 2.487-1.715s2.153.716 2.496 1.714h4.05v1.54h-4.06a2.52 2.52 0 0 1-1.622 1.58zm8.852 33.857a15.7 15.7 0 0 1-4.838 2.57l-.374-1.626a13.7 13.7 0 0 0 4.003-2.01l1.21 1.066m.814 1.404a17.5 17.5 0 0 1-4.84 2.547l1.258 1.176c1.41-.52 2.74-1.21 3.956-2.028l-.374-1.695m-27.418-31.372-1.688.475v4.28l1.688.464v-5.22m1.638 0 1.684.476v4.28l-1.684.464v-5.22m30.515 0-1.685.476v4.28l1.684.464v-5.22"}),(0,h.jsx)("path",{fill:"none",stroke:"#c8b100",strokeWidth:.25,d:"m247.108 283.145 1.69.475v4.28l-1.69.464v-5.22m-8.567 21.952-1.604.68-2.938-3.258.965-1.387 3.578 3.966m1.245-1.006.963-1.394-2.937-3.26-1.6.685 3.575 3.97m-18.224-20.1 1.608-.682 2.937 3.26-.965 1.39-3.58-3.968m-1.243 1.01-.96 1.394 2.936 3.256 1.6-.685-3.576-3.966m18.444-1.136-1.608-.667-2.91 3.282.977 1.38 3.54-3.996m1.254 1 .974 1.383-2.908 3.283-1.605-.672 3.54-3.995m-20.335 9.028.493-1.6h4.525l.488 1.6h-5.506m0 1.548.493 1.6h4.525l.488-1.6h-5.506m-6.634-18.53c0-.586.503-1.064 1.124-1.064.618 0 1.12.478 1.12 1.063 0 .587-.502 1.06-1.12 1.06-.62 0-1.124-.473-1.124-1.06zm12.1.773-.495 1.603h-4.52l-.49-1.602h5.507m0-1.55-.496-1.6h-4.52l-.49 1.6h5.507m20.046 18.504c0-.59.505-1.067 1.123-1.067.623 0 1.12.476 1.12 1.067 0 .59-.497 1.06-1.12 1.06-.618 0-1.123-.47-1.123-1.06zm-4.378-.743-.496-1.6h-4.523l-.487 1.6h5.505m0 1.548-.496 1.6h-4.523l-.487-1.6h5.505m-11.62 21.837c0-.59.502-1.066 1.122-1.066.618 0 1.118.475 1.118 1.065 0 .587-.5 1.06-1.118 1.06-.62 0-1.123-.473-1.123-1.06zm1.902-7.752 1.69-.473v-4.28l-1.69-.462v5.215m-1.637 0-1.684-.473v-4.28l1.684-.462v5.215m15.744-32.616c0-.585.5-1.063 1.123-1.063.62 0 1.12.478 1.12 1.063 0 .587-.5 1.06-1.12 1.06-.622 0-1.123-.473-1.123-1.06zm-16.122 0c0-.585.504-1.063 1.122-1.063.62 0 1.12.478 1.12 1.063 0 .587-.5 1.06-1.12 1.06-.618 0-1.122-.473-1.122-1.06zm6.266.774.497 1.603h4.52l.49-1.602h-5.507m0-1.55.497-1.6h4.52l.49 1.6h-5.507m-5.91 4.994-1.685.474v4.282l1.685.464v-5.22m1.62 0 1.684.474v4.282l-1.684.464v-5.22"}),(0,h.jsx)("path",{fill:"#058e6e",d:"M227.688 294.66c0-1.376 1.178-2.49 2.63-2.49 1.446 0 2.622 1.114 2.622 2.49 0 1.37-1.176 2.482-2.623 2.482-1.45 0-2.63-1.11-2.63-2.482"}),(0,h.jsx)("path",{fill:"#db4446",d:"m230.892 229.69.054-.593.082-.33s-1.546.126-2.36-.103c-.814-.23-1.548-.566-2.308-1.206-.76-.646-1.058-1.048-1.602-1.128-1.302-.21-2.306.382-2.306.382s.98.36 1.713 1.257c.73.903 1.527 1.36 1.87 1.468.57.174 2.55.05 3.093.072.544.027 1.764.183 1.764.183"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"m230.892 229.69.054-.593.082-.33s-1.546.126-2.36-.103c-.814-.23-1.548-.566-2.308-1.206-.76-.646-1.058-1.048-1.602-1.128-1.302-.21-2.306.382-2.306.382s.98.36 1.713 1.257c.73.903 1.527 1.36 1.87 1.468.57.174 2.55.05 3.093.072.544.027 1.764.183 1.764.183z"}),(0,h.jsx)("path",{fill:"#ed72aa",stroke:"#000",strokeWidth:.374,d:"M238.124 227.515s.004.692.07 1.354c.067.633-.203 1.188-.1 1.54.1.355.15.634.29.89.128.255.2.903.2.903s-.37-.263-.713-.52c-.337-.258-.58-.418-.58-.418s.07.692.102.99c.037.295.21.854.49 1.185.278.324.833.856 1.004 1.282.177.43.142 1.378.142 1.378s-.45-.72-.837-.85c-.38-.133-1.215-.596-1.215-.596s.766.76.766 1.483c0 .722-.31 1.544-.31 1.544s-.347-.654-.796-1.083c-.454-.426-1.08-.856-1.08-.856s.49 1.12.49 1.872c0 .76-.137 2.373-.137 2.373s-.382-.623-.764-.927c-.384-.293-.835-.556-.976-.75-.136-.197.455.62.52 1.114.067.495.3 2.257 1.842 4.507.9 1.315 2.292 3.616 5.276 2.86 2.988-.754 1.88-4.77 1.253-6.645-.628-1.87-.94-3.948-.905-4.673.033-.72.554-2.856.486-3.256-.068-.39-.23-1.92.14-3.15.383-1.28.7-1.778.905-2.307.204-.526.377-.823.446-1.283.07-.46.07-1.32.07-1.32s.554 1.023.694 1.384c.138.366.138 1.447.138 1.447s.103-1.08.94-1.606c.835-.53 1.805-1.087 2.05-1.383.242-.3.313-.494.313-.494s-.07 1.845-.59 2.57c-.345.47-1.705 2.005-1.705 2.005s.698-.266 1.182-.293c.487-.037.833 0 .833 0s-.59.46-1.354 1.578c-.762 1.115-.45 1.214-1.006 2.134-.56.92-1.01.955-1.704 1.514-1.043.84-.48 4.172-.345 4.668.14.49 1.944 4.573 1.98 5.56.032.988.21 3.19-1.53 4.604-1.12.918-2.95.925-3.37 1.187-.418.258-1.245 1.08-1.245 2.79 0 1.716.62 1.975 1.106 2.404.49.43 1.113.198 1.252.53.14.326.21.523.418.72.21.195.35.427.278.785-.068.364-.868 1.186-1.146 1.782-.28.586-.835 2.137-.835 2.366 0 .232-.065.955.173 1.32 0 0 .868 1.012.277 1.21-.382.13-.755-.24-.936-.198-.518.137-.79.456-.938.43-.348-.066-.348-.236-.383-.723-.032-.492-.015-.692-.17-.692-.21 0-.313.17-.35.43-.036.262-.036.85-.276.85-.243 0-.59-.425-.798-.52-.21-.1-.8-.198-.832-.46-.036-.263.346-.822.727-.922.382-.098.73-.292.486-.49s-.486-.198-.727 0c-.244.198-.763.03-.73-.265.035-.297.104-.656.067-.822-.032-.16-.45-.49.102-.792.558-.293.798.267 1.353.167.558-.093.836-.298 1.044-.622.21-.327.173-1.02-.208-1.445-.383-.43-.764-.498-.905-.76-.14-.263-.345-.887-.345-.887s.1 1.15.03 1.316c-.066.164-.03.852-.03.852s-.382-.427-.695-.753c-.31-.33-.623-1.314-.623-1.314s-.033.92-.033 1.284c0 .357.414.69.277.822-.14.13-.796-.692-.97-.822-.177-.132-.73-.558-.976-1.022-.24-.46-.418-1.115-.485-1.35-.07-.23-.185-1.255-.07-1.514.172-.392.45-1.085.45-1.085h-1.354c-.727 0-1.25-.228-1.526.262-.277.495-.14 1.484.206 2.765.35 1.278.553 1.906.453 2.137-.102.23-.555.758-.727.853-.178.102-.664.068-.873-.027-.205-.1-.55-.267-1.213-.267-.658 0-1.076.03-1.317-.027-.243-.067-.835-.365-1.116-.3-.278.068-.757.313-.626.693.212.59-.205.724-.486.69-.277-.034-.514-.133-.868-.23-.344-.1-.867 0-.797-.397.067-.396.208-.426.38-.72.175-.3.24-.49.046-.51-.244-.025-.49-.052-.68.105-.183.153-.482.485-.727.362-.245-.13-.435-.413-.435-1.034 0-.616-.65-1.155-.053-1.128s1.357.465 1.494.13c.134-.337.05-.487-.272-.75-.326-.256-.732-.41-.297-.743.434-.332.542-.332.708-.515.162-.177.394-.756.7-.613.595.283.027.695.624 1.36.598.667.976.903 1.98.797 1.003-.102 1.278-.232 1.278-.515s-.084-.795-.112-1.003c-.025-.204.138-.95.138-.95s-.462.285-.598.564c-.13.284-.404.77-.404.77s-.11-.577-.08-1.048c.02-.276.117-.757.107-.852-.026-.255-.216-.9-.216-.9s-.164.696-.27.9c-.11.205-.162 1.03-.162 1.03s-.638-.556-.46-1.49c.132-.72-.11-1.67.106-1.98.213-.31.728-1.57 1.978-1.623 1.248-.047 2.223.054 2.66.03.434-.03 1.98-.31 1.98-.31s-2.85-1.462-3.5-1.902c-.65-.433-1.656-1.564-1.983-2.08-.325-.514-.623-1.513-.623-1.513s-.512.023-.975.28a5 5 0 0 0-1.192.947c-.274.31-.705 1.005-.705 1.005s.078-.9.078-1.183c0-.276-.053-.824-.053-.824s-.325 1.233-.976 1.693c-.652.468-1.41 1.11-1.41 1.11s.082-.69.082-.846c0-.153.16-.95.16-.95s-.46.687-1.166.824c-.705.126-1.738.1-1.82.54-.08.43.19 1.024.028 1.33-.163.31-.514.516-.514.516s-.407-.338-.76-.362c-.353-.027-.68.157-.68.157s-.3-.39-.19-.645c.11-.256.65-.64.517-.797-.136-.154-.57.054-.842.18-.27.13-.842.256-.788-.18.055-.437.19-.692.055-1.003-.136-.303-.055-.51.165-.59.215-.07 1.083.024 1.165-.173.08-.208-.216-.464-.788-.594-.57-.126-.842-.463-.542-.746.298-.283.38-.358.515-.616.135-.26.19-.72.707-.49.51.23.403.796.95.976.538.184 1.815-.074 2.084-.228.275-.157 1.142-.798 1.44-.954.3-.15 1.545-1.077 1.545-1.077s-.73-.51-1.003-.77c-.27-.257-.756-.87-.997-1-.246-.133-1.44-.59-1.847-.617s-1.656-.46-1.656-.46.57-.184.76-.338c.19-.153.62-.542.84-.514.215.028.267.028.267.028s-1.16-.056-1.407-.127c-.244-.083-.95-.52-1.218-.52-.276 0-.815.107-.815.107s.73-.463 1.327-.565c.597-.1 1.06-.08 1.06-.08s-.922-.255-1.142-.562c-.216-.31-.43-.767-.598-.975-.162-.204-.27-.54-.57-.565-.297-.027-.814.36-1.11.334-.296-.024-.516-.21-.546-.643-.02-.438 0-.286-.102-.514-.11-.234-.544-.774-.138-.9.41-.13 1.278.076 1.357-.078.083-.154-.46-.617-.812-.797s-.922-.49-.623-.744c.3-.256.596-.357.76-.59.162-.23.352-.872.706-.67.352.207.84 1.212 1.112 1.134.274-.08.294-.798.244-1.104-.055-.31 0-.85.266-.8.274.052.49.41.925.44.432.025 1.084-.1 1.03.203-.054.307-.3.688-.598 1.026-.29.337-.428 1.002-.24 1.438.19.44.68 1.137 1.112 1.416.43.282 1.245.49 1.764.822.513.338 1.71 1.284 2.116 1.387.407.105.814.31.814.31s.46-.205 1.086-.205c.623 0 2.06.102 2.603-.13.543-.234 1.25-.616 1.032-1.107-.215-.485-1.41-.924-1.303-1.306.11-.385.543-.41 1.273-.44.732-.023 1.736.13 1.924-.9.19-1.025.245-1.62-.782-1.847-1.032-.232-1.794-.255-1.98-1.002-.19-.744-.38-.924-.165-1.132.22-.2.597-.307 1.357-.354.76-.055 1.627-.055 1.872-.24.245-.173.295-.663.594-.872.297-.2 1.468-.386 1.468-.386s1.394.683 2.69 1.644c1.158.866 2.206 2.144 2.206 2.144"}),(0,h.jsx)("path",{d:"M228.124 226.792s-.162-.462-.19-.592c-.025-.127-.11-.283-.11-.283s.844 0 .816.255c-.026.26-.27.26-.325.358-.054.106-.19.262-.19.262"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M228.124 226.792s-.162-.462-.19-.592c-.025-.127-.11-.283-.11-.283s.844 0 .816.255c-.026.26-.27.26-.325.358-.054.106-.19.262-.19.262z"}),(0,h.jsx)("path",{d:"m231.98 225.453-.058-.412s.734.008 1.087.257c.543.385.89.977.866 1.002-.094.09-.514-.257-.814-.36 0 0-.216.052-.434.052-.216 0-.325-.102-.354-.205-.024-.105.03-.283.03-.283l-.324-.047"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"m231.98 225.453-.058-.412s.734.008 1.087.257c.543.385.89.977.866 1.002-.094.09-.514-.257-.814-.36 0 0-.216.052-.434.052-.216 0-.325-.102-.354-.205-.024-.105.03-.283.03-.283l-.324-.047v-.004z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M237.27 231.262s-.327-.464-.406-.62c-.083-.15-.22-.46-.22-.46"}),(0,h.jsx)("path",{fill:"#db4446",d:"M217.405 226.636s.46.33.814.382c.35.054.733.054.787.054s.165-.52.108-.872c-.19-1.16-1.25-1.415-1.25-1.415s.316.703.163 1.026c-.216.464-.623.826-.623.826"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M217.405 226.636s.46.33.814.382c.35.054.733.054.787.054s.165-.52.108-.872c-.19-1.16-1.25-1.415-1.25-1.415s.316.703.163 1.026c-.216.464-.623.826-.623.826z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M215.205 227.638s-.407-.746-1.273-.644c-.868.102-1.44.774-1.44.774s.958-.03 1.194.125c.354.233.462.826.462.826s.518-.31.68-.516a7 7 0 0 0 .377-.566"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M215.205 227.638s-.407-.746-1.273-.644c-.868.102-1.44.774-1.44.774s.958-.03 1.194.125c.354.233.462.826.462.826s.518-.31.68-.516a7 7 0 0 0 .377-.566z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M214.148 230.642s-.732.105-1.138.57c-.41.462-.352 1.335-.352 1.335s.484-.51.92-.51 1.113.152 1.113.152-.215-.546-.215-.775c0-.23-.327-.773-.327-.773"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M214.148 230.642s-.732.105-1.138.57c-.41.462-.352 1.335-.352 1.335s.484-.51.92-.51 1.113.152 1.113.152-.215-.546-.215-.775c0-.23-.327-.773-.327-.773z"}),(0,h.jsx)("path",{d:"m228.153 230.54.323-.512.32.464-.643.047"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m228.153 230.54.323-.512.32.464-.643.047"}),(0,h.jsx)("path",{d:"m228.937 230.515.38-.51.41.458z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m228.937 230.515.38-.51.41.458-.79.052"}),(0,h.jsx)("path",{d:"m228.586 227.355.787.283-.705.358-.082-.64"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m228.586 227.355.787.283-.705.358-.082-.64"}),(0,h.jsx)("path",{d:"m229.534 227.614.706.178-.568.436z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m229.534 227.614.706.178-.568.436-.138-.614"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M224.243 233.652s-.773.225-1.058.64c-.352.514-.326 1.03-.326 1.03s.65-.54 1.49-.31c.844.23.923.31 1.28.286.352-.027 1.22-.338 1.22-.338s-.705.822-.626 1.39c.082.564.187.82.164 1.106-.058.695-.57 1.544-.57 1.544s.298-.184 1.003-.337a4.6 4.6 0 0 0 1.682-.77c.38-.287.867-.98.867-.98s-.158.952 0 1.364c.162.413.216 1.595.216 1.595s.453-.4.812-.593c.19-.106.68-.362.873-.668.134-.22.3-1.024.3-1.024s.107.866.377 1.286c.273.405.676 1.67.676 1.67s.274-.82.573-1.158c.296-.334.652-.77.677-1.03.025-.256-.08-.818-.08-.818l.378.818m-10.96.59s.462-.795.898-1.054c.435-.258 1.033-.72 1.194-.77.158-.052.868-.44.868-.44m.95 4.963s1.045-.535 1.357-.722c.65-.383 1.112-1.078 1.112-1.078"}),(0,h.jsx)("path",{fill:"#db4446",d:"M216.616 240.357s-.406-.433-1.112-.307c-.706.13-1.166.927-1.166.927s.597-.157.95-.078c.352.077.598.435.598.435s.324-.283.432-.436c.11-.154.295-.543.295-.543"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M216.616 240.357s-.406-.433-1.112-.307c-.706.13-1.166.927-1.166.927s.597-.157.95-.078c.352.077.598.435.598.435s.324-.283.432-.436c.11-.154.295-.543.295-.543h.003z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M215.803 243.21s-.598-.102-1.112.31-.542 1.207-.542 1.207.49-.413.87-.357c.378.047.84.254.84.254s.082-.49.107-.616c.083-.36-.162-.8-.162-.8"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M215.803 243.21s-.598-.102-1.112.31-.542 1.207-.542 1.207.49-.413.87-.357c.378.047.84.254.84.254s.082-.49.107-.616c.083-.36-.162-.8-.162-.8z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M217.19 245.835s-.04.763.323 1.23c.38.49 1.087.567 1.087.567s-.237-.512-.274-.772c-.053-.384.325-.72.325-.72s-.35-.356-.7-.356c-.355 0-.76.05-.76.05"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M217.19 245.835s-.04.763.323 1.23c.38.49 1.087.567 1.087.567s-.237-.512-.274-.772c-.053-.384.325-.72.325-.72s-.35-.356-.7-.356c-.355 0-.76.05-.76.05zm16.01 1.281s1.954 1.21 1.9 2.213c-.057 1.002-1.087 2.313-1.087 2.313"}),(0,h.jsx)("path",{fill:"#db4446",d:"M224.243 252.594s-.49-.616-1.166-.592c-.68.027-1.387.664-1.387.664s.844-.072 1.06.208c.22.287.435.64.435.64s.38-.2.544-.33c.162-.125.513-.59.513-.59"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M224.243 252.594s-.49-.616-1.166-.592c-.68.027-1.387.664-1.387.664s.844-.072 1.06.208c.22.287.435.64.435.64s.38-.2.544-.33c.162-.125.513-.59.513-.59z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M222.153 255.29s-.893-.128-1.33.335c-.435.46-.406 1.31-.406 1.31s.545-.59 1.03-.54c.49.052 1.033.31 1.033.31s-.083-.514-.137-.746-.19-.67-.19-.67"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M222.153 255.29s-.893-.128-1.33.335c-.435.46-.406 1.31-.406 1.31s.545-.59 1.03-.54c.49.052 1.033.31 1.033.31s-.083-.514-.137-.746-.19-.67-.19-.67z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M224.082 258.145s-.436.616-.108 1.104c.324.49 1 .722 1 .722s-.24-.358-.132-.775c.085-.326.65-.77.65-.77l-1.41-.28"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M224.082 258.145s-.436.616-.108 1.104c.324.49 1 .722 1 .722s-.24-.358-.132-.775c.085-.326.65-.77.65-.77l-1.41-.28z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M235.992 259.304s-.783-.185-1.22.075c-.43.254-.784 1.335-.784 1.335s.705-.59 1.22-.518c.515.08.897.287.897.287s.078-.44.024-.744c-.033-.184-.138-.436-.138-.436"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M235.992 259.304s-.783-.185-1.22.075c-.43.254-.784 1.335-.784 1.335s.705-.59 1.22-.518c.515.08.897.287.897.287s.078-.44.024-.744c-.033-.184-.138-.436-.138-.436z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M236.374 262.178s-.597.616-.382 1.13c.22.515.598 1.054.598 1.054s-.022-.766.22-.974c.35-.308 1-.36 1-.36s-.514-.462-.68-.513a16 16 0 0 1-.756-.337"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M236.374 262.178s-.597.616-.382 1.13c.22.515.598 1.054.598 1.054s-.022-.766.22-.974c.35-.308 1-.36 1-.36s-.514-.462-.68-.513a16 16 0 0 1-.756-.337z"}),(0,h.jsx)("path",{fill:"#db4446",d:"M239.358 263.08s-.298.743.274 1.23c.568.492 1.06.543 1.06.543s-.437-.774-.3-1.183c.14-.426.514-.692.514-.692s-.706-.235-.814-.208c-.107.024-.734.31-.734.31"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M239.358 263.08s-.298.743.274 1.23c.568.492 1.06.543 1.06.543s-.437-.774-.3-1.183c.14-.426.514-.692.514-.692s-.706-.235-.814-.208c-.107.024-.734.31-.734.31z"}),(0,h.jsx)("path",{fill:"#ffd691",stroke:"#000",strokeWidth:.499,d:"M208.79 316.368c2.01.605 3.028 2.1 3.028 3.852 0 2.28-2.213 4.012-5.086 4.012-2.872 0-5.2-1.73-5.2-4.012 0-1.725.956-3.65 2.954-3.79 0 0-.06-.18-.233-.478-.208-.22-.616-.633-.616-.633s.763-.144 1.202.023c.442.167.733.446.733.446s.21-.41.5-.727c.296-.314.678-.51.678-.51s.442.37.587.62c.144.255.238.56.238.56s.406-.337.76-.473c.35-.14.805-.248.805-.248s-.13.44-.216.664c-.086.223-.133.692-.133.692"}),(0,h.jsx)("path",{fill:"#058e6e",stroke:"#000",strokeWidth:.499,d:"M206.308 326.708s-3.82-2.574-5.475-2.922c-2.117-.446-4.496-.085-5.525-.14.028.03 1.234.89 1.763 1.422.53.528 2.294 1.585 3.29 1.834 3.1.778 5.948-.194 5.948-.194m1.089.225s2.447-2.544 5.007-2.895c3.027-.42 5.007.25 6.183.556.026 0-.972.474-1.5.835-.53.36-1.893 1.503-3.977 1.527-2.087.03-4.39-.22-4.772-.16-.382.05-.94.136-.94.136"}),(0,h.jsx)("path",{fill:"#ad1519",stroke:"#000",strokeWidth:.499,d:"M206.664 323.786a4.85 4.85 0 0 1 .003-7.13 4.85 4.85 0 0 1 1.552 3.562 4.86 4.86 0 0 1-1.556 3.568"}),(0,h.jsx)("path",{fill:"#058e6e",stroke:"#000",strokeWidth:.499,d:"M205.692 329.002s.59-1.46.648-2.713c.05-1.05-.148-2.087-.148-2.087h.763s.382 1.114.382 2.086c0 .973-.176 2.27-.176 2.27s-.528.08-.704.162c-.174.086-.764.28-.764.28"}),(0,h.jsx)("path",{fill:"#fff",d:"M254.005 190.727c0-.553.47-.993 1.05-.993.585 0 1.052.44 1.052.993s-.467.995-1.05.995c-.58 0-1.052-.443-1.052-.995"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M254.005 190.727c0-.553.47-.993 1.05-.993.585 0 1.052.44 1.052.993s-.467.995-1.05.995c-.58 0-1.052-.443-1.052-.995z"}),(0,h.jsx)("path",{fill:"#fff",d:"M255.444 188.177c0-.55.468-.992 1.052-.992.58 0 1.05.443 1.05.992 0 .556-.47 1-1.05 1-.584 0-1.052-.444-1.052-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M255.444 188.177c0-.55.468-.992 1.052-.992.58 0 1.05.443 1.05.992 0 .556-.47 1-1.05 1-.584 0-1.052-.444-1.052-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M256.4 185.225c0-.55.473-.995 1.058-.995.58 0 1.05.446 1.05.995 0 .552-.47 1-1.05 1-.585 0-1.057-.448-1.057-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M256.4 185.225c0-.55.473-.995 1.058-.995.58 0 1.05.446 1.05.995 0 .552-.47 1-1.05 1-.585 0-1.057-.448-1.057-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M256.525 182.057c0-.552.47-.994 1.05-.994s1.05.442 1.05.994c0 .553-.47.996-1.05.996s-1.05-.443-1.05-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M256.525 182.057c0-.552.47-.994 1.05-.994s1.05.442 1.05.994c0 .553-.47.996-1.05.996s-1.05-.443-1.05-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M255.743 178.94c0-.55.473-.993 1.05-.993.584 0 1.056.443 1.056.992 0 .554-.473.998-1.056.998-.578 0-1.05-.444-1.05-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M255.743 178.94c0-.55.473-.993 1.05-.993.584 0 1.056.443 1.056.992 0 .554-.473.998-1.056.998-.578 0-1.05-.444-1.05-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M254.124 176.11c0-.553.47-.996 1.05-.996.584 0 1.054.443 1.054.995s-.47.998-1.053.998c-.58 0-1.05-.446-1.05-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M254.124 176.11c0-.553.47-.996 1.05-.996.584 0 1.054.443 1.054.995s-.47.998-1.053.998c-.58 0-1.05-.446-1.05-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M251.964 173.784c0-.552.47-.998 1.05-.998.585 0 1.055.446 1.055.998 0 .55-.47.996-1.055.996-.58 0-1.05-.447-1.05-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M251.964 173.784c0-.552.47-.998 1.05-.998.585 0 1.055.446 1.055.998 0 .55-.47.996-1.055.996-.58 0-1.05-.447-1.05-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M249.454 171.852c0-.553.473-1 1.056-1 .58 0 1.05.447 1.05 1 0 .548-.47.994-1.05.994-.583 0-1.056-.446-1.056-.994"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M249.454 171.852c0-.553.473-1 1.056-1 .58 0 1.05.447 1.05 1 0 .548-.47.994-1.05.994-.583 0-1.056-.446-1.056-.994z"}),(0,h.jsx)("path",{fill:"#fff",d:"M246.457 170.27c0-.553.47-.992 1.05-.992.584 0 1.056.44 1.056.99 0 .554-.472 1-1.055 1-.58 0-1.05-.446-1.05-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M246.457 170.27c0-.553.47-.992 1.05-.992.584 0 1.056.44 1.056.99 0 .554-.472 1-1.055 1-.58 0-1.05-.446-1.05-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M243.347 169.14c0-.548.47-.994 1.054-.994.58 0 1.053.446 1.053.995 0 .553-.473 1-1.052 1-.582 0-1.053-.447-1.053-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M243.347 169.14c0-.548.47-.994 1.054-.994.58 0 1.053.446 1.053.995 0 .553-.473 1-1.052 1-.582 0-1.053-.447-1.053-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M239.87 168.52c0-.548.47-.998 1.05-.998.585 0 1.054.45 1.054.998 0 .55-.47.997-1.053.997-.58 0-1.05-.448-1.05-.997"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M239.87 168.52c0-.548.47-.998 1.05-.998.585 0 1.054.45 1.054.998 0 .55-.47.997-1.053.997-.58 0-1.05-.448-1.05-.997z"}),(0,h.jsx)("path",{fill:"#fff",d:"M236.568 168.347c0-.55.473-.992 1.055-.992.58 0 1.053.442 1.053.992 0 .553-.473 1-1.053 1-.582 0-1.055-.447-1.055-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M236.568 168.347c0-.55.473-.992 1.055-.992.58 0 1.053.442 1.053.992 0 .553-.473 1-1.053 1-.582 0-1.055-.447-1.055-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M233.328 168.46c0-.55.474-.996 1.055-.996.584 0 1.052.447 1.052.996 0 .552-.468.998-1.052.998-.58 0-1.055-.446-1.055-.998"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M233.328 168.46c0-.55.474-.996 1.055-.996.584 0 1.052.447 1.052.996 0 .552-.468.998-1.052.998-.58 0-1.055-.446-1.055-.998z"}),(0,h.jsx)("path",{fill:"#fff",d:"M230.093 168.46c0-.55.47-.996 1.05-.996s1.052.447 1.052.996c0 .552-.472.998-1.05.998-.58 0-1.052-.446-1.052-.998"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M230.093 168.46c0-.55.47-.996 1.05-.996s1.052.447 1.052.996c0 .552-.472.998-1.05.998-.58 0-1.052-.446-1.052-.998z"}),(0,h.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.374,d:"M231.714 171.238c0-.552.47-.998 1.05-.998.584 0 1.05.446 1.05.998 0 .55-.466.998-1.05.998-.58 0-1.05-.45-1.05-.998m.658 3.068c0-.552.472-1 1.05-1 .584 0 1.056.448 1.056 1 0 .546-.472.992-1.055.992-.58 0-1.05-.446-1.05-.992m.117 3.058c0-.556.473-1 1.055-1 .58 0 1.05.444 1.05 1 0 .548-.47.995-1.05.995-.582 0-1.055-.448-1.055-.996m-.957 2.782c0-.55.47-.998 1.05-.998.584 0 1.053.45 1.053.998 0 .552-.47.995-1.053.995-.58 0-1.05-.443-1.05-.995m-1.789 2.557c0-.55.472-.998 1.05-.998.583 0 1.052.45 1.052.998 0 .55-.47.996-1.05.996s-1.052-.446-1.052-.996"}),(0,h.jsx)("path",{fill:"#fff",d:"M227.642 166.53c0-.55.472-.992 1.054-.992.58 0 1.052.443 1.052.992 0 .552-.472 1-1.052 1-.582 0-1.054-.448-1.054-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M227.642 166.53c0-.55.472-.992 1.054-.992.58 0 1.052.443 1.052.992 0 .552-.472 1-1.052 1-.582 0-1.054-.448-1.054-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M224.765 164.94c0-.548.47-.997 1.052-.997.58 0 1.05.45 1.05.998 0 .55-.47.997-1.05.997-.582 0-1.052-.446-1.052-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M224.765 164.94c0-.548.47-.997 1.052-.997.58 0 1.05.45 1.05.998 0 .55-.47.997-1.05.997-.582 0-1.052-.446-1.052-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M221.595 163.983c0-.55.472-.99 1.053-.99.58 0 1.052.44 1.052.99 0 .552-.472 1-1.052 1s-1.053-.448-1.053-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M221.595 163.983c0-.55.472-.99 1.053-.99.58 0 1.052.44 1.052.99 0 .552-.472 1-1.052 1s-1.053-.448-1.053-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M218.298 163.418c0-.55.472-.996 1.05-.996.584 0 1.052.447 1.052.996s-.468.995-1.05.995c-.58 0-1.052-.447-1.052-.995"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M218.298 163.418c0-.55.472-.996 1.05-.996.584 0 1.052.447 1.052.996s-.468.995-1.05.995c-.58 0-1.052-.447-1.052-.995z"}),(0,h.jsx)("path",{fill:"#fff",d:"M215.07 163.472c0-.548.47-1 1.05-1 .583 0 1.054.452 1.054 1 0 .553-.47.996-1.054.996-.58 0-1.05-.443-1.05-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M215.07 163.472c0-.548.47-1 1.05-1 .583 0 1.054.452 1.054 1 0 .553-.47.996-1.054.996-.58 0-1.05-.443-1.05-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M211.71 164.038c0-.548.472-.993 1.052-.993.583 0 1.054.445 1.054.993 0 .555-.47 1-1.054 1-.58 0-1.052-.445-1.052-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M211.71 164.038c0-.548.472-.993 1.052-.993.583 0 1.054.445 1.054.993 0 .555-.47 1-1.054 1-.58 0-1.052-.445-1.052-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M208.6 165.112c0-.553.472-1 1.05-1 .585 0 1.056.447 1.056 1 0 .548-.47 1-1.055 1-.578 0-1.05-.452-1.05-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M208.6 165.112c0-.553.472-1 1.05-1 .585 0 1.056.447 1.056 1 0 .548-.47 1-1.055 1-.578 0-1.05-.452-1.05-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M155.928 190.727c0-.553.473-.993 1.052-.993.583 0 1.05.44 1.05.993s-.467.995-1.05.995c-.58 0-1.052-.443-1.052-.995"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M155.928 190.727c0-.553.473-.993 1.052-.993.583 0 1.05.44 1.05.993s-.467.995-1.05.995c-.58 0-1.052-.443-1.052-.995z"}),(0,h.jsx)("path",{fill:"#fff",d:"M154.488 188.177c0-.55.472-.992 1.052-.992.583 0 1.055.443 1.055.992 0 .556-.472 1-1.055 1-.58 0-1.052-.444-1.052-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M154.488 188.177c0-.55.472-.992 1.052-.992.583 0 1.055.443 1.055.992 0 .556-.472 1-1.055 1-.58 0-1.052-.444-1.052-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M153.527 185.225c0-.55.472-.995 1.055-.995.58 0 1.052.446 1.052.995 0 .552-.472 1-1.052 1-.583 0-1.055-.448-1.055-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M153.527 185.225c0-.55.472-.995 1.055-.995.58 0 1.052.446 1.052.995 0 .552-.472 1-1.052 1-.583 0-1.055-.448-1.055-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M153.408 182.057c0-.552.473-.994 1.052-.994.583 0 1.055.442 1.055.994 0 .553-.472.996-1.055.996-.58 0-1.052-.443-1.052-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M153.408 182.057c0-.552.473-.994 1.052-.994.583 0 1.055.442 1.055.994 0 .553-.472.996-1.055.996-.58 0-1.052-.443-1.052-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M154.19 178.94c0-.55.47-.993 1.05-.993s1.052.443 1.052.992c0 .554-.472.998-1.052.998s-1.05-.444-1.05-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M154.19 178.94c0-.55.47-.993 1.05-.993s1.052.443 1.052.992c0 .554-.472.998-1.052.998s-1.05-.444-1.05-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M155.805 176.11c0-.553.473-.996 1.056-.996.58 0 1.052.443 1.052.995s-.472.998-1.05.998c-.584 0-1.057-.446-1.057-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M155.805 176.11c0-.553.473-.996 1.056-.996.58 0 1.052.443 1.052.995s-.472.998-1.05.998c-.584 0-1.057-.446-1.057-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M157.966 173.784c0-.552.472-.998 1.054-.998.58 0 1.052.446 1.052.998 0 .55-.473.996-1.052.996-.582 0-1.054-.447-1.054-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M157.966 173.784c0-.552.472-.998 1.054-.998.58 0 1.052.446 1.052.998 0 .55-.473.996-1.052.996-.582 0-1.054-.447-1.054-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M160.475 171.852c0-.553.47-1 1.054-1 .58 0 1.05.447 1.05 1 0 .548-.47.994-1.05.994-.584 0-1.055-.446-1.055-.994"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M160.475 171.852c0-.553.47-1 1.054-1 .58 0 1.05.447 1.05 1 0 .548-.47.994-1.05.994-.584 0-1.055-.446-1.055-.994z"}),(0,h.jsx)("path",{fill:"#fff",d:"M163.473 170.27c0-.553.47-.992 1.055-.992.58 0 1.05.44 1.05.99 0 .554-.47 1-1.05 1-.584 0-1.055-.446-1.055-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M163.473 170.27c0-.553.47-.992 1.055-.992.58 0 1.05.44 1.05.99 0 .554-.47 1-1.05 1-.584 0-1.055-.446-1.055-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M166.583 169.14c0-.548.472-.994 1.052-.994.582 0 1.054.446 1.054.995 0 .553-.473 1-1.055 1-.58 0-1.052-.447-1.052-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M166.583 169.14c0-.548.472-.994 1.052-.994.582 0 1.054.446 1.054.995 0 .553-.473 1-1.055 1-.58 0-1.052-.447-1.052-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M170.064 168.52c0-.548.47-.998 1.052-.998.578 0 1.05.45 1.05.998 0 .55-.472.997-1.05.997-.58 0-1.052-.448-1.052-.997"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M170.064 168.52c0-.548.47-.998 1.052-.998.578 0 1.05.45 1.05.998 0 .55-.472.997-1.05.997-.58 0-1.052-.448-1.052-.997z"}),(0,h.jsx)("path",{fill:"#fff",d:"M173.362 168.347c0-.55.47-.992 1.054-.992.58 0 1.05.442 1.05.992 0 .553-.47 1-1.05 1-.584 0-1.054-.447-1.054-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M173.362 168.347c0-.55.47-.992 1.054-.992.58 0 1.05.442 1.05.992 0 .553-.47 1-1.05 1-.584 0-1.054-.447-1.054-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M176.6 168.46c0-.55.472-.996 1.05-.996.585 0 1.056.447 1.056.996 0 .552-.47.998-1.055.998-.578 0-1.05-.446-1.05-.998"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M176.6 168.46c0-.55.472-.996 1.05-.996.585 0 1.056.447 1.056.996 0 .552-.47.998-1.055.998-.578 0-1.05-.446-1.05-.998z"}),(0,h.jsx)("path",{fill:"#fff",d:"M179.84 168.46c0-.55.47-.996 1.05-.996.584 0 1.056.447 1.056.996 0 .552-.472.998-1.055.998-.58 0-1.05-.446-1.05-.998"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M179.84 168.46c0-.55.47-.996 1.05-.996.584 0 1.056.447 1.056.996 0 .552-.472.998-1.055.998-.58 0-1.05-.446-1.05-.998z"}),(0,h.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.374,d:"M178.22 171.238c0-.552.472-.998 1.052-.998.582 0 1.054.446 1.054.998 0 .55-.472.998-1.054.998-.58 0-1.052-.45-1.052-.998m-.658 3.068c0-.552.467-1 1.05-1 .58 0 1.052.448 1.052 1 0 .546-.472.992-1.05.992-.585 0-1.052-.446-1.052-.992m-.122 3.058c0-.556.47-1 1.054-1 .58 0 1.05.444 1.05 1 0 .548-.47.995-1.05.995-.583 0-1.054-.448-1.054-.996m.96 2.782c0-.55.472-.998 1.05-.998.585 0 1.056.45 1.056.998 0 .552-.47.995-1.055.995-.578 0-1.05-.443-1.05-.995m1.787 2.557c0-.55.474-.998 1.052-.998.583 0 1.055.45 1.055.998 0 .55-.472.996-1.055.996-.578 0-1.052-.446-1.052-.996"}),(0,h.jsx)("path",{fill:"#fff",d:"M182.288 166.53c0-.55.472-.992 1.05-.992.584 0 1.055.443 1.055.992 0 .552-.47 1-1.054 1-.58 0-1.052-.448-1.052-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M182.288 166.53c0-.55.472-.992 1.05-.992.584 0 1.055.443 1.055.992 0 .552-.47 1-1.054 1-.58 0-1.052-.448-1.052-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M185.168 164.94c0-.548.47-.997 1.05-.997.583 0 1.055.45 1.055.998 0 .55-.472.997-1.055.997-.58 0-1.05-.446-1.05-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M185.168 164.94c0-.548.47-.997 1.05-.997.583 0 1.055.45 1.055.998 0 .55-.472.997-1.055.997-.58 0-1.05-.446-1.05-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M188.334 163.983c0-.55.473-.99 1.055-.99.58 0 1.05.44 1.05.99 0 .552-.47 1-1.05 1-.583 0-1.056-.448-1.056-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M188.334 163.983c0-.55.473-.99 1.055-.99.58 0 1.05.44 1.05.99 0 .552-.47 1-1.05 1-.583 0-1.056-.448-1.056-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M191.635 163.418c0-.55.472-.996 1.05-.996.585 0 1.057.447 1.057.996s-.472.995-1.056.995c-.58 0-1.05-.447-1.05-.995"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M191.635 163.418c0-.55.472-.996 1.05-.996.585 0 1.057.447 1.057.996s-.472.995-1.056.995c-.58 0-1.05-.447-1.05-.995z"}),(0,h.jsx)("path",{fill:"#fff",d:"M194.865 163.472c0-.548.467-1 1.05-1 .58 0 1.05.452 1.05 1 0 .553-.47.996-1.05.996-.583 0-1.05-.443-1.05-.996"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M194.865 163.472c0-.548.467-1 1.05-1 .58 0 1.05.452 1.05 1 0 .553-.47.996-1.05.996-.583 0-1.05-.443-1.05-.996z"}),(0,h.jsx)("path",{fill:"#fff",d:"M198.223 164.038c0-.548.47-.993 1.05-.993.585 0 1.052.445 1.052.993 0 .555-.467 1-1.052 1-.58 0-1.05-.445-1.05-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M198.223 164.038c0-.548.47-.993 1.05-.993.585 0 1.052.445 1.052.993 0 .555-.467 1-1.052 1-.58 0-1.05-.445-1.05-1z"}),(0,h.jsx)("path",{fill:"#fff",d:"M201.33 165.112c0-.553.47-1 1.054-1 .58 0 1.05.447 1.05 1 0 .548-.47 1-1.05 1-.584 0-1.054-.452-1.054-1"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.374,d:"M201.33 165.112c0-.553.47-1 1.054-1 .58 0 1.05.447 1.05 1 0 .548-.47 1-1.05 1-.584 0-1.054-.452-1.054-1z"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.442,d:"M174.647 228.876h-.887v-.888h-1.553v3.55h1.553v2.44h-3.327v7.098h1.774v14.197h-3.55v7.32h27.286v-7.32h-3.55v-14.197h1.775v-7.1h-3.327v-2.438h1.554v-3.55h-1.553v.888h-.886v-.888H188.4v.888h-1.108v-.888h-1.554v3.55h1.554v2.44h-3.328v-7.765h1.774v-3.55h-1.774v.888h-.887v-.886h-1.553v.887h-.887v-.886h-1.775v3.55h1.775v7.763h-3.328v-2.44h1.552v-3.55h-1.553v.89h-.89v-.89h-1.773v.89zm-5.99 33.718h27.286m-27.285-1.775h27.285m-27.285-1.776h27.285m-27.285-1.775h27.285m-27.285-1.997h27.285m-23.736-1.553h20.187m-20.187-1.775h20.187m-20.187-1.996h20.187m-20.187-1.776h20.187m-20.187-1.775h20.187m-20.187-1.775h20.187m-20.187-1.775h20.187m-21.96-1.774h23.734m-23.735-1.775h23.735m-23.735-1.773h23.735m-23.735-1.775h23.735m-20.408-1.775h17.08m-10.203-1.774h3.327m-3.327-1.775h3.327m-3.327-1.774h3.327m-3.327-1.775h3.327m-5.102-2.22h6.876m-11.978 7.543h3.55m-5.103-2.22h6.655m-6.655 32.61v-1.774m0-1.776v-1.775m-1.774 1.774v1.775m3.327 0v-1.776m1.774 3.55v-1.775m0-1.776v-1.775m0-1.997v-1.553m0-1.775v-1.996m-1.774 7.32v-1.997m-3.327 1.996v-1.997m6.876 0v1.996m1.552-1.997v-1.553m-5.102-1.775v1.775m3.55-1.775v1.775m3.327-1.775v1.775m-1.775-1.775v-1.996m1.775-1.776v1.775m0-5.325v1.774m-1.775-3.55v1.775m1.775-3.55v1.775m-3.328-1.774v1.774m-3.55-1.774v1.774m-1.553-3.55v1.776m3.327-1.775v1.776m3.328-1.775v1.776m1.775-3.55v1.775m-3.328-1.773v1.774m-3.55-1.773v1.774m-1.553-3.548v1.775m6.655-1.775v1.775m-3.328-5.324v1.774m15.307-1.774h-3.548m5.102-2.22h-6.656m6.656 32.61v-1.774m0-1.776v-1.775m1.774 1.774v1.775m-3.327 0v-1.776m-1.774 3.55v-1.775m0-1.776v-1.775m0-1.997v-1.553m0-1.775v-1.996m1.775 7.32v-1.997m3.328 1.996v-1.997m-6.876 0v1.996m-1.554-1.997v-1.553m5.103-1.775v1.775m-3.548-1.775v1.775m-3.328-1.775v1.775m1.774-1.775v-1.996m-1.774-1.776v1.775m0-5.325v1.774m1.774-3.55v1.775m-1.774-3.55v1.775m3.328-1.774v1.774m3.55-1.774v1.774m1.552-3.55v1.776m-3.328-1.775v1.776m-3.328-1.775v1.776m-1.774-3.55v1.775m3.328-1.773v1.774m3.55-1.773v1.774m1.552-3.548v1.775m-6.656-1.775v1.775m3.328-5.324v1.774m-6.877 17.968v-1.996m0-5.325v-1.775m0 5.324V246.4m0-5.324V239.3m0-1.773v-1.775m0-3.55v-1.774m0-1.774v-1.775m-8.43 4.658h3.55m3.327-5.325h3.327m3.328 5.325h3.55"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.442,d:"M186.848 262.594v-4.66c0-.886-.444-3.548-4.66-3.548-3.992 0-4.435 2.662-4.435 3.55v4.658z"}),(0,h.jsx)("path",{fill:"#c8b100",stroke:"#000",strokeWidth:.442,d:"m179.305 258.156-2.217-.22c0-.888.22-2.22.887-2.663l1.997 1.553c-.222.222-.667.887-.667 1.33zm5.99 0 2.218-.22c0-.888-.22-2.22-.887-2.663l-1.997 1.553c.22.222.665.887.665 1.33zm-2.218-2.218 1.11-1.996c-.445-.222-1.333-.443-1.998-.443-.444 0-1.33.22-1.775.442l1.11 1.996h1.552zm-4.215-5.545v-4.88c0-1.33-.887-2.44-2.44-2.44s-2.44 1.11-2.44 2.44v4.88zm6.876 0v-4.88c0-1.33.888-2.44 2.44-2.44 1.554 0 2.44 1.11 2.44 2.44v4.88zm-1.774-11.979.444-4.437h-4.215l.222 4.437h3.55zm3.328 0-.444-4.437h4.436l-.443 4.437h-3.548zm-9.982 0 .22-4.437h-4.214l.444 4.437z"}),(0,h.jsx)("path",{fill:"#0039f0",d:"M185.295 262.594V258.6c0-.665-.444-2.662-3.106-2.662-2.44 0-2.885 1.997-2.885 2.662v3.994zm-6.877-12.644v-4.216c0-1.11-.665-2.218-1.997-2.218-1.33 0-1.994 1.11-1.994 2.218v4.215h3.992zm7.765 0v-4.216c0-1.11.665-2.218 1.996-2.218s1.995 1.11 1.995 2.218v4.215h-3.992z"}),(0,h.jsx)("path",{fill:"#ad1519",d:"M190.808 269.766c0-9.698 6.987-17.56 15.604-17.56 8.62 0 15.608 7.862 15.608 17.56s-6.987 17.56-15.608 17.56c-8.617 0-15.604-7.862-15.604-17.56"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.586,d:"M190.808 269.766c0-9.698 6.987-17.56 15.604-17.56 8.62 0 15.608 7.862 15.608 17.56s-6.987 17.56-15.608 17.56c-8.617 0-15.604-7.862-15.604-17.56z"}),(0,h.jsx)("path",{fill:"#005bbf",d:"M195.437 269.732c0-7.112 4.913-12.875 10.982-12.875 6.064 0 10.978 5.763 10.978 12.875 0 7.114-4.914 12.88-10.98 12.88-6.068 0-10.98-5.766-10.98-12.88"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.586,d:"M195.437 269.732c0-7.112 4.913-12.875 10.982-12.875 6.064 0 10.978 5.763 10.978 12.875 0 7.114-4.914 12.88-10.98 12.88-6.068 0-10.98-5.766-10.98-12.88z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M201.232 260.868s-1.304 1.428-1.304 2.75c0 1.33.55 2.434.55 2.434-.196-.524-.73-.902-1.355-.902-.79 0-1.437.607-1.437 1.36 0 .218.134.56.235.746l.468.945c.155-.348.52-.54.944-.54.567 0 1.03.432 1.03.97a1 1 0 0 1-.033.238l-1.17.004v.996h1.043l-.777 1.54 1.03-.4.776.875.806-.876 1.026.4-.773-1.54h1.044v-.995l-1.173-.004a1 1 0 0 1-.024-.237c0-.538.453-.97 1.02-.97.426 0 .79.192.948.54l.464-.944c.1-.187.235-.528.235-.746 0-.753-.64-1.36-1.436-1.36-.627 0-1.156.378-1.354.902 0 0 .547-1.104.547-2.433 0-1.324-1.33-2.752-1.33-2.752"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.326,d:"M201.232 260.868s-1.304 1.428-1.304 2.75c0 1.33.55 2.434.55 2.434-.196-.524-.73-.902-1.355-.902-.79 0-1.437.607-1.437 1.36 0 .218.134.56.235.746l.468.945c.155-.348.52-.54.944-.54.567 0 1.03.432 1.03.97a1 1 0 0 1-.033.238l-1.17.004v.996h1.043l-.777 1.54 1.03-.4.776.875.806-.876 1.026.4-.773-1.54h1.044v-.995l-1.173-.004a1 1 0 0 1-.024-.237c0-.538.453-.97 1.02-.97.426 0 .79.192.948.54l.464-.944c.1-.187.235-.528.235-.746 0-.753-.64-1.36-1.436-1.36-.627 0-1.156.378-1.354.902 0 0 .547-1.104.547-2.433 0-1.324-1.33-2.752-1.33-2.752h.002z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M199.16 269.868h4.177v-.996h-4.178v.996z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.326,d:"M199.16 269.868h4.177v-.996h-4.178v.996z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M211.436 260.868s-1.302 1.428-1.302 2.75c0 1.33.547 2.434.547 2.434-.194-.524-.726-.902-1.353-.902-.795 0-1.436.607-1.436 1.36 0 .218.135.56.235.746l.464.945c.158-.348.522-.54.947-.54.568 0 1.025.432 1.025.97a1 1 0 0 1-.028.238l-1.17.004v.996h1.043l-.777 1.54 1.026-.4.78.875.804-.876 1.03.4-.778-1.54h1.043v-.995l-1.17-.004a.8.8 0 0 1-.028-.237c0-.538.457-.97 1.026-.97.425 0 .788.192.943.54l.467-.944c.102-.187.234-.528.234-.746 0-.753-.643-1.36-1.436-1.36-.624 0-1.16.378-1.355.902 0 0 .55-1.104.55-2.433 0-1.324-1.33-2.752-1.33-2.752"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.326,d:"M211.436 260.868s-1.302 1.428-1.302 2.75c0 1.33.547 2.434.547 2.434-.194-.524-.726-.902-1.353-.902-.795 0-1.436.607-1.436 1.36 0 .218.135.56.235.746l.464.945c.158-.348.522-.54.947-.54.568 0 1.025.432 1.025.97a1 1 0 0 1-.028.238l-1.17.004v.996h1.043l-.777 1.54 1.026-.4.78.875.804-.876 1.03.4-.778-1.54h1.043v-.995l-1.17-.004a.8.8 0 0 1-.028-.237c0-.538.457-.97 1.026-.97.425 0 .788.192.943.54l.467-.944c.102-.187.234-.528.234-.746 0-.753-.643-1.36-1.436-1.36-.624 0-1.16.378-1.355.902 0 0 .55-1.104.55-2.433 0-1.324-1.33-2.752-1.33-2.752h.002z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M209.363 269.868h4.176v-.996h-4.177v.996z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.326,d:"M209.363 269.868h4.176v-.996h-4.177v.996z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M206.333 269.646s-1.304 1.428-1.304 2.755.55 2.43.55 2.43c-.197-.524-.727-.903-1.356-.903-.792 0-1.437.608-1.437 1.36 0 .222.133.56.234.747l.47.944c.158-.347.517-.545.94-.545.57 0 1.032.436 1.032.975a.9.9 0 0 1-.033.242l-1.17.003v.996h1.047l-.778 1.54 1.026-.406.777.876.807-.876 1.03.406-.783-1.54h1.048v-.997l-1.17-.003a1 1 0 0 1-.03-.242c0-.54.458-.975 1.028-.975.423 0 .783.198.942.545l.47-.944c.098-.188.232-.525.232-.746 0-.753-.644-1.36-1.436-1.36-.625 0-1.154.378-1.356.903 0 0 .55-1.103.55-2.43 0-1.326-1.335-2.754-1.335-2.754"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeLinejoin:"round",strokeWidth:.326,d:"M206.333 269.646s-1.304 1.428-1.304 2.755.55 2.43.55 2.43c-.197-.524-.727-.903-1.356-.903-.792 0-1.437.608-1.437 1.36 0 .222.133.56.234.747l.47.944c.158-.347.517-.545.94-.545.57 0 1.032.436 1.032.975a.9.9 0 0 1-.033.242l-1.17.003v.996h1.047l-.778 1.54 1.026-.406.777.876.807-.876 1.03.406-.783-1.54h1.048v-.997l-1.17-.003a1 1 0 0 1-.03-.242c0-.54.458-.975 1.028-.975.423 0 .783.198.942.545l.47-.944c.098-.188.232-.525.232-.746 0-.753-.644-1.36-1.436-1.36-.625 0-1.154.378-1.356.903 0 0 .55-1.103.55-2.43 0-1.326-1.335-2.754-1.335-2.754h.003z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M204.26 278.65h4.178v-.997h-4.178v.996z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.326,d:"M204.26 278.65h4.178v-.997h-4.178v.996z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m237.567 223.398-.278.02a1.5 1.5 0 0 1-.256.342c-.246.234-.616.26-.825.064a.47.47 0 0 1-.134-.393.5.5 0 0 1-.49-.006c-.248-.143-.31-.483-.13-.767.03-.054.058-.125.1-.167l-.017-.31-.336.08-.097.182c-.208.236-.518.297-.673.158a.56.56 0 0 1-.126-.253c.003.008-.08.082-.166.102-.513.126-.72-1.006-.73-1.3l-.17.24s.153.677.076 1.25c-.075.573-.278 1.146-.278 1.146.717.184 1.79.766 2.855 1.588 1.066.815 1.904 1.7 2.25 2.322 0 0 .552-.308 1.13-.49.574-.188 1.303-.192 1.303-.192l.21-.205c-.308.044-1.52.095-1.495-.413.005-.08.065-.17.076-.17a.7.7 0 0 1-.29-.065c-.175-.116-.17-.412.024-.658l.17-.123.01-.326-.325.045c-.03.04-.105.087-.15.128-.254.222-.62.238-.823.03a.42.42 0 0 1-.107-.446.55.55 0 0 1-.433-.045c-.248-.15-.295-.5-.104-.773.09-.134.266-.29.297-.307l-.067-.287"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m237.567 223.398-.278.02a1.5 1.5 0 0 1-.256.342c-.246.234-.616.26-.825.064a.47.47 0 0 1-.134-.393.5.5 0 0 1-.49-.006c-.248-.143-.31-.483-.13-.767.03-.054.058-.125.1-.167l-.017-.31-.336.08-.097.182c-.208.236-.518.297-.673.158a.56.56 0 0 1-.126-.253c.003.008-.08.082-.166.102-.513.126-.72-1.006-.73-1.3l-.17.24s.153.677.076 1.25c-.075.573-.278 1.146-.278 1.146.717.184 1.79.766 2.855 1.588 1.066.815 1.904 1.7 2.25 2.322 0 0 .552-.308 1.13-.49.574-.188 1.303-.192 1.303-.192l.21-.205c-.308.044-1.52.095-1.495-.413.005-.08.065-.17.076-.17a.7.7 0 0 1-.29-.065c-.175-.116-.17-.412.024-.658l.17-.123.01-.326-.325.045c-.03.04-.105.087-.15.128-.254.222-.62.238-.823.03a.42.42 0 0 1-.107-.446.55.55 0 0 1-.433-.045c-.248-.15-.295-.5-.104-.773.09-.134.266-.29.297-.307l-.067-.287-.007-.003z"}),(0,h.jsx)("path",{d:"M235.406 224.06c.048-.06.148-.056.223.002.074.058.095.15.05.205-.047.054-.145.054-.223-.007-.072-.054-.097-.147-.05-.2"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M235.406 224.06c.048-.06.148-.056.223.002.074.058.095.15.05.205-.047.054-.145.054-.223-.007-.072-.054-.097-.147-.05-.2z"}),(0,h.jsx)("path",{d:"m236.317 224.825-.314-.242c-.057-.044-.075-.115-.04-.156.037-.038.113-.038.17.003l.313.246.32.243c.055.04.075.11.04.155-.04.037-.115.034-.172-.007l-.317-.243"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"m236.317 224.825-.314-.242c-.057-.044-.075-.115-.04-.156.037-.038.113-.038.17.003l.313.246.32.243c.055.04.075.11.04.155-.04.037-.115.034-.172-.007l-.317-.243"}),(0,h.jsx)("path",{d:"m234.644 223.68-.25-.146c-.06-.037-.093-.11-.063-.156.026-.052.1-.06.162-.02l.247.145.252.147c.06.034.09.106.065.157-.028.044-.1.054-.165.017z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"m234.644 223.68-.25-.146c-.06-.037-.093-.11-.063-.156.026-.052.1-.06.162-.02l.247.145.252.147c.06.034.09.106.065.157-.028.044-.1.054-.165.017l-.248-.144"}),(0,h.jsx)("path",{d:"M233.653 222.996c.047-.05.15-.05.223.007.076.058.097.15.05.204-.047.055-.146.05-.222-.003-.075-.062-.098-.15-.05-.208"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M233.653 222.996c.047-.05.15-.05.223.007.076.058.097.15.05.204-.047.055-.146.05-.222-.003-.075-.062-.098-.15-.05-.208z"}),(0,h.jsx)("path",{d:"M237.325 225.528c.047-.055.024-.143-.05-.204-.076-.06-.177-.062-.224-.003-.045.054-.024.146.05.204.076.06.177.06.225.004"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M237.325 225.528c.047-.055.024-.143-.05-.204-.076-.06-.177-.062-.224-.003-.045.054-.024.146.05.204.076.06.177.06.225.004z"}),(0,h.jsx)("path",{d:"m237.876 226.16.204.196c.05.047.13.066.174.027.043-.033.037-.1-.01-.15l-.203-.2-.208-.205c-.05-.047-.13-.06-.173-.023-.047.03-.04.105.013.152l.203.202"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"m237.876 226.16.204.196c.05.047.13.066.174.027.043-.033.037-.1-.01-.15l-.203-.2-.208-.205c-.05-.047-.13-.06-.173-.023-.047.03-.04.105.013.152l.203.202"}),(0,h.jsx)("path",{d:"M238.785 226.935c.048-.057.026-.146-.05-.207-.075-.06-.176-.06-.223-.003-.047.058-.025.146.05.207.076.055.178.06.223.003"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M238.785 226.935c.048-.057.026-.146-.05-.207-.075-.06-.176-.06-.223-.003-.047.058-.025.146.05.207.076.055.178.06.223.003z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m236.146 221.14-.567.018-.112.835.06.133.148-.01.727-.49-.257-.486"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m236.146 221.14-.567.018-.112.835.06.133.148-.01.727-.49-.257-.486"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m234.608 221.604-.016.522.883.11.137-.06-.01-.142-.516-.686z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m234.608 221.604-.016.522.883.11.137-.06-.01-.142-.516-.686-.478.256"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m236.432 222.644-.47.262-.517-.687-.01-.14.137-.06.886.106-.026.518"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m236.432 222.644-.47.262-.517-.687-.01-.14.137-.06.886.106-.026.518"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M235.29 222a.28.28 0 0 1 .378-.09.25.25 0 0 1 .095.356.287.287 0 0 1-.378.092.255.255 0 0 1-.095-.358"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M235.29 222a.28.28 0 0 1 .378-.09.25.25 0 0 1 .095.356.287.287 0 0 1-.378.092.255.255 0 0 1-.095-.358z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M233.226 221.138c-.015.003-.124-.44-.246-.686-.083-.177-.375-.408-.375-.408.03-.055.397-.188.836.088.357.294-.028.832-.028.832s-.094.13-.184.174"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M233.226 221.138c-.015.003-.124-.44-.246-.686-.083-.177-.375-.408-.375-.408.03-.055.397-.188.836.088.357.294-.028.832-.028.832s-.094.13-.184.174z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m234.217 221.437-.402.348-.656-.57.057-.08.023-.14.888-.066z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m234.217 221.437-.402.348-.656-.57.057-.08.023-.14.888-.066.09.507"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M233.107 221.082c.05-.143.175-.227.276-.197.1.037.14.177.093.317-.05.143-.176.225-.276.198-.105-.038-.144-.178-.093-.318"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M233.107 221.082c.05-.143.175-.227.276-.197.1.037.14.177.093.317-.05.143-.176.225-.276.198-.105-.038-.144-.178-.093-.318z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m238.32 222.5-.564-.06-.237.815.043.14.148.003.792-.386-.18-.51"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m238.32 222.5-.564-.06-.237.815.043.14.148.003.792-.386-.18-.51"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m236.727 222.753-.09.515.857.225.144-.04.01-.14-.407-.754z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m236.727 222.753-.09.515.857.225.144-.04.01-.14-.407-.754-.513.193"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m238.383 224.02-.507.202-.407-.75.01-.143.143-.04.857.227-.097.504"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m238.383 224.02-.507.202-.407-.75.01-.143.143-.04.857.227-.097.504"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M237.346 223.237c.094-.116.27-.125.386-.037a.25.25 0 0 1 .043.365.29.29 0 0 1-.39.036.25.25 0 0 1-.04-.363"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M237.346 223.237c.094-.116.27-.125.386-.037a.25.25 0 0 1 .043.365.29.29 0 0 1-.39.036.25.25 0 0 1-.04-.363z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m240.22 224.264.102.534-.838.28-.148-.03-.017-.14.348-.775.55.13"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m240.22 224.264.102.534-.838.28-.148-.03-.017-.14.348-.775.55.13"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m240.068 225.794-.536.12-.297-.8.034-.135.147-.02.817.333-.166.5"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m240.068 225.794-.536.12-.297-.8.034-.135.147-.02.817.333-.166.5"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m238.613 224.314-.173.495.818.33.15-.02.03-.137-.292-.794-.533.124"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m238.613 224.314-.173.495.818.33.15-.02.03-.137-.292-.794-.533.124"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M239.517 225.242a.26.26 0 0 0 .015-.373.3.3 0 0 0-.393-.014.257.257 0 0 0-.01.373.29.29 0 0 0 .387.012"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M239.517 225.242a.26.26 0 0 0 .015-.373.3.3 0 0 0-.393-.014.257.257 0 0 0-.01.373.29.29 0 0 0 .387.012z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M240.837 226.973c-.003.014.48.025.757.085.198.042.504.263.504.263.054-.04.108-.405-.27-.755-.378-.27-.85.204-.85.204s-.115.112-.14.203"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M240.837 226.973c-.003.014.48.025.757.085.198.042.504.263.504.263.054-.04.108-.405-.27-.755-.378-.27-.85.204-.85.204s-.115.112-.14.203z"}),(0,h.jsx)("path",{fill:"#c8b100",d:"m240.32 226.114-.277.447.726.492.09-.08.118-.04-.112-.84-.547.022"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"m240.32 226.114-.277.447.726.492.09-.08.118-.04-.112-.84-.547.022"}),(0,h.jsx)("path",{fill:"#c8b100",d:"M240.917 227.072c.133-.074.198-.21.144-.296-.057-.09-.21-.1-.344-.024-.134.078-.198.207-.14.3.052.085.208.096.34.02"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.25,d:"M240.917 227.072c.133-.074.198-.21.144-.296-.057-.09-.21-.1-.344-.024-.134.078-.198.207-.14.3.052.085.208.096.34.02z"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.288,d:"M279.087 205.098v.556h-2.434v-.556h.9v-1.254h-.594v-.56h.594v-.547h.586v.548h.586v.56h-.586v1.253h.947"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.019,d:"M134.418 217.104v-1.216"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.029,d:"M134.087 217.104v-1.216"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.038,d:"M133.775 217.104v-1.216m-.31 1.216v-1.216"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M133.19 217.104v-1.216"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.058,d:"m132.665 217.04-.008-1.11m.256 1.123v-1.16"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.067,d:"M132.18 216.99v-1.022m.245 1.05-.007-1.086"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.077,d:"M131.528 216.93v-.896m.214.91v-.94m.22.97v-.977"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.086,d:"M131.3 216.924v-.868"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.096,d:"M131.087 216.88v-.81"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.106,d:"M130.86 216.857v-.75"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.115,d:"m130.392 216.792-.008-.598m.247.627v-.67m-.479.589v-.524"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.125,d:"M129.933 216.698v-.437"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.134,d:"M129.693 216.64v-.342"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.144,d:"M129.448 216.612v-.256"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.173,d:"M129.188 216.553v-.124"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.01,d:"M135.733 217.04v-1.116m-.56 1.15.007-1.18m-.416 1.196v-1.202"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.019,d:"M277.777 217.125v-1.217"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.029,d:"M277.447 217.125v-1.217"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.038,d:"M277.135 217.125v-1.217m-.309 1.217v-1.217"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.048,d:"M276.55 217.125v-1.217"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.058,d:"m276.024 217.06-.008-1.11m.258 1.123v-1.157"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.067,d:"M275.54 217.01v-1.022m.245 1.05-.008-1.086"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.077,d:"M274.888 216.95v-.895m.214.91v-.94m.22.97v-.977"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.086,d:"M274.66 216.944v-.867"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.096,d:"M274.447 216.9v-.81"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.106,d:"M274.22 216.878v-.75"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.115,d:"m273.752 216.812-.008-.597m.247.627v-.67m-.479.588v-.524"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.125,d:"M273.293 216.72v-.438"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.134,d:"M273.053 216.66v-.34"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.144,d:"M272.807 216.632v-.256"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.173,d:"M272.547 216.573v-.124"}),(0,h.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.01,d:"M279.092 217.06v-1.116m-.56 1.15.008-1.178m-.415 1.194v-1.202"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3068.7b747a5f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js deleted file mode 100644 index 51e596f064..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3125.ce787981.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3125"],{14948(l,i,e){e.r(i),e.d(i,{default:()=>s});var d=e(74848);e(47867);let s=l=>(0,d.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"#28ff09",fillOpacity:14.118,viewBox:"0 0 640 480",...l,children:(0,d.jsxs)("g",{fillOpacity:1,fillRule:"evenodd",children:[(0,d.jsx)("path",{fill:"#0000cd",d:"M0 320.344h640V480H0z"}),(0,d.jsx)("path",{fill:"#fff",d:"M0 160.688h640v159.656H0z"}),(0,d.jsx)("path",{fill:"#00cd00",d:"M0 0h640v160.688H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3125.ce787981.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js deleted file mode 100644 index c4f8b883d1..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3144.edcf7515.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3144"],{85435(e,l,i){i.r(l),i.d(l,{default:()=>t});var s=i(74848);i(47867);let t=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#ff3319",d:"M213.33 0H640v240H213.33z"}),(0,s.jsx)("path",{fill:"#00cc28",d:"M213.33 240H640v240H213.33z"}),(0,s.jsx)("path",{fill:"#fff",d:"M0 0h213.33v480H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3144.edcf7515.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js deleted file mode 100644 index 6ab7b9de28..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3166.32d06e35.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3166"],{71805(i,s,e){e.r(s),e.d(s,{default:()=>h});var l=e(74848);e(47867);let h=i=>(0,l.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"-18 -12 36 24",...i,children:[(0,l.jsx)("defs",{children:(0,l.jsx)("clipPath",{id:"gg_inline_svg__a",children:(0,l.jsx)("path",{fillOpacity:.67,d:"M-18-13.5h36v27h-36z"})})}),(0,l.jsxs)("g",{clipPath:"url(#gg_inline_svg__a)",children:[(0,l.jsx)("path",{fill:"#fff",d:"M-18-18h36v36h-36z"}),(0,l.jsx)("path",{fill:"#fff",d:"M-18-13.5h36v27h-36z"}),(0,l.jsx)("path",{fill:"none",stroke:"#e8112d",strokeWidth:7.195,d:"M0-21.586v43.172M-21.586 0h43.172"}),(0,l.jsxs)("g",{transform:"scale(1.75)",children:[(0,l.jsx)("path",{id:"gg_inline_svg__b",fill:"#f9dd16",d:"M-6.75 1.5-6 .75H.75v-1.5H-6l-.75-.75z"}),(0,l.jsx)("use",{xlinkHref:"#gg_inline_svg__b",width:36,height:24,transform:"rotate(90)"}),(0,l.jsx)("use",{xlinkHref:"#gg_inline_svg__b",width:36,height:24,transform:"rotate(-90)"}),(0,l.jsx)("use",{xlinkHref:"#gg_inline_svg__b",width:36,height:24,transform:"scale(-1)"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3166.32d06e35.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js deleted file mode 100644 index ee268b12d6..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3197.ebf93fd4.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3197"],{47372(t,s,e){e.r(s),e.d(s,{default:()=>r});var i=e(74848);e(47867);let r=t=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,i.jsxs)("defs",{children:[(0,i.jsxs)("linearGradient",{id:"fk_inline_svg__a",children:[(0,i.jsx)("stop",{offset:0,stopColor:"#a43907",stopOpacity:.996}),(0,i.jsx)("stop",{offset:1,stopColor:"#fff"})]}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__b",x1:444.4,x2:470.9,y1:592.2,y2:577.14,gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__c",x1:458.24,x2:520.55,y1:562.51,y2:552.83,gradientTransform:"scale(.94 1.07)",gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__d",x1:472.38,x2:445.28,y1:578.68,y2:580.2,gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__e",x1:517.97,x2:456.44,y1:553.74,y2:558.12,gradientTransform:"scale(.94 1.07)",gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__f",x1:851.78,x2:646.19,y1:369.94,y2:369.94,gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__g",x1:388.53,x2:677.4,y1:507.23,y2:508.75,gradientTransform:"scale(.82 1.22)",gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__h",x1:579.84,x2:556.8,y1:504.94,y2:505.86,gradientTransform:"scale(.84 1.2)",gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__i",x1:581.43,x2:558.88,y1:512.01,y2:514.33,gradientTransform:"scale(.82 1.22)",gradientUnits:"userSpaceOnUse"}),(0,i.jsx)("linearGradient",{xlinkHref:"#fk_inline_svg__a",id:"fk_inline_svg__j",x1:552,x2:589.77,y1:517.88,y2:503.9,gradientTransform:"scale(.84 1.2)",gradientUnits:"userSpaceOnUse"})]}),(0,i.jsx)("path",{fill:"#006",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#006",fillRule:"evenodd",d:"M0 0h400v200H0z"}),(0,i.jsxs)("g",{strokeWidth:"1pt",children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0v25.562L317.137 228.63h39.92v-25.56L39.918 0zm357.056 0v25.56L39.92 228.63H0v-25.562L317.137 0h39.92z"}),(0,i.jsx)("path",{fill:"#fff",d:"M148.773 0v228.63h59.51V0zM0 76.21v76.21h357.056V76.21z"}),(0,i.jsx)("path",{fill:"#c00",d:"M0 91.452v45.726h357.056V91.452zM160.675.002v228.627h35.706V0h-35.705zM0 228.63l119.02-76.21h26.61L26.614 228.63zM0 0l119.02 76.21H92.405L0 17.042V.002zm211.425 76.21L330.445 0h26.61L238.038 76.21h-26.612zm145.63 152.42-119.018-76.21h26.613l92.406 59.168v17.04z"})]}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__b)",fillRule:"evenodd",stroke:"#fff",strokeWidth:10,d:"M670.97 321.56a13 13 0 0 0-2.03.188c-3.39.59-8.734 11.63-11.69 18.094-4.62 5.644-7.088 10.03-9.03 13.28-.755 1.263-1.92 2.728-1.563 4.407-6.996 1.718-7.344 7.724-7.344 10.06 0 2.48.782 3.72.782 3.72l4.187 7.843.03.094c4.458 9.216 11.058 21.626 14.75 22.656 5.244 1.462 18.822-3.55 29-12.156 16.69 6.875 38.073 12.562 61.97 12.562s45.248-5.69 61.938-12.563c10.18 8.606 23.758 13.618 29 12.156 3.705-1.033 10.324-13.525 14.78-22.75l4.19-7.844s.78-1.24.78-3.72c0-2.338-.377-8.344-7.375-10.062.35-1.678-.776-3.143-1.53-4.406-1.958-3.274-4.42-7.7-9.095-13.406-2.966-6.48-8.29-17.382-11.656-17.97-4.742-.825-14.97 1.58-14.97 2.407 0 .02-.057.45-.062.5l-20.54 19.4c0 .557 1.09 14.594 4.938 27-13.75 5.006-30.626 8.532-50.406 8.532-19.793 0-36.715-3.52-50.47-8.532 3.85-12.406 4.97-26.443 4.97-27l-20.53-19.4c-.005-.05-.063-.48-.063-.5 0-.723-7.83-2.675-12.968-2.593zm5.25 24.094c2.582-.032 5.332 2.095 7.594 4.47-.078.465-.157.943-.25 1.374-.624 2.872-1.696 6.663-3.188 10.625-5.87-3.43-10.66-6.996-14.312-10.312 2.228-2.37 5.806-5.596 9.594-6.124.185-.026.375-.03.563-.03zm147.56 0c.187.002.377.005.563.03 3.788.53 7.397 3.757 9.625 6.126-3.66 3.324-8.457 6.91-14.344 10.344-1.498-3.97-2.563-7.778-3.188-10.656-.094-.432-.172-.907-.25-1.375 2.265-2.38 5.006-4.5 7.594-4.47zm-166 27.375c2.73 2.09 6.296 4.475 10.594 7-1.19.755-2.456 1.316-3.78 1.624-1.766.41-3.622.33-5.5-.063-.588-1.45-1.083-3.274-1.22-5.717a70 70 0 0 1-.094-2.844zm184.47 0c-.014.877-.068 1.825-.125 2.843-.137 2.443-.6 4.267-1.188 5.72-1.88.392-3.766.47-5.53.06-1.326-.307-2.56-.868-3.75-1.624 4.3-2.525 7.862-4.908 10.593-7z",transform:"translate(-389.23 -21.96)scale(1.17)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__b)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M445.63 595.48s5.625-8.75 10.313-8.125c4.687.625 9.062 6.25 9.375 6.562.312.313 7.187-7.187 6.875-7.5s-7.188-16.562-10.938-17.187-11.847 1.196-11.847 1.82-3.778 24.43-3.778 24.43z",transform:"matrix(-1.48 0 0 1.54 1073.61 -525.43)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__c)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M433.13 586.11c0 .625 1.875 23.75 10 31.875s21.25 13.125 25.938 11.875 15.312-24.687 15.312-24.687-11.25 11.25-19.687 9.375-13.438-15.938-15-22.813c-1.563-6.875-.313-20.313-.313-20.313z",transform:"matrix(-1.48 0 0 1.54 1073.61 -525.43)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__d)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M445.63 595.48s5.625-8.75 10.313-8.125c4.687.625 9.062 6.25 9.375 6.562.312.313 7.187-7.187 6.875-7.5s-7.188-16.562-10.938-17.187-11.847 1.196-11.847 1.82-3.778 24.43-3.778 24.43z",transform:"matrix(1.48 0 0 1.54 -99.78 -525.43)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__e)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M433.13 586.11c0 .625 1.875 23.75 10 31.875s21.25 13.125 25.938 11.875 15.312-24.687 15.312-24.687-11.25 11.25-19.687 9.375-13.438-15.938-15-22.813c-1.563-6.875-.313-20.313-.313-20.313z",transform:"matrix(1.48 0 0 1.54 -99.78 -525.43)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__f)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.5,d:"M656.44 338.56c-4.742 5.785-7.274 10.257-9.25 13.562-1.976 3.306-.814 7.906 3.75 14.47 4.92 7.072 45.374 34.718 98.062 34.718 52.69 0 93.142-27.646 98.062-34.72 4.564-6.562 5.695-11.162 3.72-14.468-1.977-3.306-4.478-7.777-9.22-13.562 0 8.677-33.512 40.03-92.562 40.03s-92.562-31.353-92.562-40.03z",transform:"translate(-388.04 -20.79)scale(1.17)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__g)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M467.82 625.48c.625-.937 7.187-11.875 7.187-11.875l-3.598-2.538c-1.106 3.094-5.153 4.1-5.778 7.85s2.813 7.5 2.188 6.563z",transform:"matrix(1.48 0 0 1.54 -98.8 -524.06)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__h)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M475 622.98s1.25-5.312-2.812-5.937c-4.063-.625-6.214 2.973-5.625 1.562.654-1.567 3.125-3.125 3.437-8.437.313-5.313-.312-8.125-.312-8.125s1.562-6.876 8.125-5.938 6.875 5.938 6.875 7.813-.625 2.812-.625 2.812z",transform:"matrix(1.48 0 0 1.54 -99.78 -525.43)"}),(0,i.jsx)("path",{d:"m568.3 406.338 1.973 3.453 1.332-.83-.884-2.28.165-.448 2.318-1.446 6.067 10.608-.15.516-1.2.88.546.957 5.777-3.606-.547-.954-1.31.686-.507-.106-6.068-10.61 2.32-1.447.434.072 1.52 1.883 1.335-.833-1.973-3.452zm-14.253 8.169.48.993 1.216-.513.478.155 5.21 10.764-.165.494-1.117.716.48.993 5.687-3.002-.48-.993-1.256.536-.48-.154-2.47-5.108 5.806-3.065 2.47 5.11-.143.482-1.158.737.48.993 5.667-2.99-.48-.993-1.215.514-.478-.154-5.21-10.765.165-.493 1.116-.718-.48-.993-5.665 2.99.48.994 1.256-.535.46.165 2.147 4.44-5.807 3.064-2.148-4.438.165-.494 1.157-.74-.48-.992-5.687 3zm-3.337 9.151.305 1.066 1.628-.39.432.198 1.275 4.437c-.55.217-.952.368-1.168.435-3.32 1.037-6.004-.613-7.128-4.53-1.093-3.806.24-6.687 3.455-7.692a4.75 4.75 0 0 1 1.89-.21l.434.29 1.072 2.177 1.574-.492-1.06-3.697c-1.735.02-3.334.26-4.758.704-4.787 1.496-7.015 5.44-5.734 9.9 1.3 4.523 5.26 6.7 9.788 5.285 1.574-.493 3.083-1.296 4.575-2.403l-1.454-5.068.257-.413 1.22-.5-.306-1.066-6.298 1.968zm-13.338 12.512 6.428-2.024-.32-1.064-1.473.346-.45-.24-3.483-11.577.253-.412 1.407-.563-.32-1.064-6.428 2.025.32 1.064 1.452-.338.435.196 3.484 11.578-.24.456-1.385.554zm-34.8 5.693 11.316-1.036-.345-4.047-1.433.13-.155 2.432-.243.387-4.888.446-.502-5.88 2.74-.252.322.29.35 1.61 1.242-.115-.447-5.25-1.243.115-.073 1.65-.268.34-2.74.252-.458-5.383 4.194-.384.3.27.484 1.962 1.475-.136-.3-3.55-10.622.97.095 1.11 1.295-.005.364.287 1.028 12.056-.307.392-1.276.23.095 1.108zm-16.845-14.916.02 1.112 1.228.092.345.357.21 12.053-.332.37-1.225.133.02 1.112 5.985-.104-.02-1.112-1.27-.09-.345-.358-.1-5.72 6.112-.107.1 5.72-.31.37-1.267.134.02 1.113 5.965-.104-.02-1.113-1.23-.092-.343-.357-.21-12.054.33-.37 1.226-.135-.02-1.113-5.965.104.02 1.113 1.272.092.323.358.087 4.97-6.113.108-.087-4.97.332-.37 1.267-.136-.02-1.112zm-12.847-.431-.038 4.02 1.46.017.36-2.426.342-.29 2.54.03-.117 12.35-.364.36-1.376.095-.01 1.112 6.326.076.01-1.112-1.375-.13-.356-.367.116-12.35 2.54.03.314.3.337 2.434 1.458.017.038-4.018-12.206-.146zm-19.483 12.839 11.06.548.18-4.058-1.402-.07-.456 2.387-.285.35-4.778-.237.258-5.897 2.677.132.275.333.135 1.642 1.215.06.23-5.26-1.214-.06-.278 1.623-.303.302-2.677-.133.236-5.397 4.1.203.256.308.22 2.013 1.442.07.156-3.56-10.38-.514-.05 1.11 1.252.176.316.334-.53 12.088-.345.346-1.262.05zm-25.347-6.559 5.87 1.98.324-1.06-1.282-.55-.208-.45 3.536-11.518.407-.197 1.35.336.324-1.058-5.87-1.98-.324 1.06 1.262.544.22.41-3.535 11.515-.42.24-1.33-.33-.324 1.06zm-10.438-4.054a11.4 11.4 0 0 0 3.572 1.99c3.22 1.086 5.773-.103 6.563-2.674.39-1.275.12-2.654-.772-3.838-.906-1.21-1.848-1.887-2.33-2.502-.828-1.04-1.18-1.875-.874-2.87.366-1.188 1.514-1.753 2.948-1.27.628.212 1.047.47 1.34.784l.183.396-.355 2.36 1.413.477 1.074-3.5c-1.09-.893-2.247-1.57-3.465-1.98-2.807-.946-5.204.296-5.94 2.694-.326 1.06-.18 2.276.465 3.423.618 1.09 1.43 1.77 2.08 2.466 1.156 1.247 1.625 2.263 1.267 3.43-.366 1.188-1.574 1.735-3.165 1.2a5.5 5.5 0 0 1-1.634-.887l-.155-.41.482-2.698-1.494-.504-1.2 3.912zm-13.266-5.554 9.996 4.997 1.672-3.665-1.265-.632-1.308 2.013-.392.207-4.318-2.158 2.43-5.327 2.42 1.21.13.417-.49 1.567 1.1.55 2.167-4.753-1.1-.55-.858 1.384-.39.155-2.42-1.21 2.223-4.873 3.703 1.85.12.388-.54 1.943 1.3.653 1.468-3.216-9.383-4.69-.458 1.002 1.09.67.166.436-4.977 10.916-.448.18-1.182-.467zm-1.684-18.191-5.03-3.466-.585.93.99.82.086.493-6.333 10.065-.466.113-1.11-.63-.585.93 5.03 3.465c1.723 1.187 3.194 1.793 4.835 1.62 2.136-.214 3.957-1.46 5.364-3.695 2.504-3.98 1.8-7.888-2.198-10.643zm-2.098.076 1 .69c2.74 1.886 2.98 4.526.74 8.09s-4.667 4.39-7.407 2.504l-1-.69zm40.078 15.69-.224 1.088 1.167.376.258.383-2.438 11.837-.395.284-1.213-.152-.224 1.088 5.685 1.257.224-1.088-1.207-.382-.25-.426 1.03-4.998.343.075c2.035.45 2.363 1.52 2.553 3.77.104 1.135.08 2.176.945 3.296.398.53 1.088.96 1.956 1.152a14 14 0 0 0 2.052.27l.22-1.068-.262-.058c-1.35-.298-1.886-.764-2.06-2.08-.153-1.195-.067-2.43-.49-3.546-.317-.813-.917-1.386-1.834-1.845 2.374.037 3.83-.987 4.25-3.03.508-2.467-.83-4.156-3.955-4.847l-6.128-1.355zm3.872 2.18.928.205c1.954.432 2.772 1.68 2.397 3.502-.422 2.045-1.642 2.75-3.798 2.273-.223-.05-.464-.102-.722-.183zm74.094 1.29.173 1.098 1.33-.11.406.253 1.883 11.943-.3.42-1.294.334.173 1.098 6.265-1.07-.173-1.098-1.373.12-.413-.297-.795-5.042.378-.064c2.244-.383 2.973.482 3.997 2.493.525 1.013.886 1.988 2.18 2.687.602.334 1.466.462 2.422.3a16.5 16.5 0 0 0 2.192-.56l-.17-1.075-.29.05c-1.487.253-2.206.03-2.868-1.122-.598-1.047-.966-2.227-1.81-3.096-.624-.63-1.448-.925-2.552-.99 2.436-.9 3.542-2.423 3.217-4.484-.393-2.488-2.382-3.53-5.827-2.94l-6.755 1.153zm4.757.5 1.022-.175c2.155-.368 3.45.47 3.74 2.306.325 2.063-.66 3.197-3.036 3.603-.244.042-.51.087-.803.114z"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__i)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M467.82 625.48c.625-.937 7.187-11.875 7.187-11.875l-3.598-2.538c-1.106 3.094-5.153 4.1-5.778 7.85s2.813 7.5 2.188 6.563z",transform:"matrix(-1.48 0 0 1.54 1072.67 -524.06)"}),(0,i.jsx)("path",{fill:"url(#fk_inline_svg__j)",fillRule:"evenodd",stroke:"#000",strokeWidth:1.16,d:"M475 622.98s1.25-5.312-2.812-5.937c-4.063-.625-6.214 2.973-5.625 1.562.654-1.567 3.125-3.125 3.437-8.437.313-5.313-.312-8.125-.312-8.125s1.562-6.876 8.125-5.938 6.875 5.938 6.875 7.813-.625 2.812-.625 2.812z",transform:"matrix(-1.48 0 0 1.54 1073.61 -525.43)"}),(0,i.jsx)("path",{fill:"#0072c4",fillOpacity:.996,fillRule:"evenodd",stroke:"#fff",strokeWidth:3.867,d:"M396.85 605.91s-75.43-21.26-74.99-102.14l.58-106.91h148.82l.584 106.3c.44 80.882-74.993 102.76-74.993 102.76z",transform:"matrix(1.48 0 0 1.54 -99.33 -521.46)"}),(0,i.jsxs)("g",{fillRule:"evenodd",children:[(0,i.jsx)("path",{fill:"#bcbcbc",d:"M392.306 128.963c.184 0 1.534-1.282 2.77-2.412 1.727-.864 3.324-2.08 5.08-2.896 1.307-.757 3.89-1.344 5.077-1.93 1.555-.815 2.824-1.752 4.156-3.38.158-2.16.46-3.71.46-6.275 1.837-.885 3.467-1.742 5.078-2.415 2.31-.65 2.812-1.574 5.08-1.93 1.46-.51 3.87-.485 6-.485 2.297 0 3.747 1.633 5.81 2.02 2.447.986 3.59 1.67 5.54 3.38 1.102 1.394 1.788 2.528 3.667 3.578 1.488.763 2.88 1.92 4.617 2.413 1.905 1.105 3.597 1.745 5.077 3.38 1.355.965 1.915 2.397 3.23 3.38 1.526 1.264 2.972 2.403 4.618 3.38 1.978 1.324 3.94 2.33 7.143 2.043 1.697-.1 3.523-.296 5.54.08 2.26 0 4.464-.04 6.464.485 2.355 0 4.26.318 6.463.482 2.064.386 4.168.483 6.463.483 2.002.522 4.205.482 6.464.482h12.926c2.352 0 4.733.096 6.463.484 2.33 0 4.333-.22 6.463-.485 2.507 0 4.42-.46 6.926-.482h7.85c2.014.552 4.59.93 6 1.93 1.848.528 2.768 1.404 4.616 1.932 1.416.726 3.565 1.875 4.617 3.378 1.303 1.363 2.64 3.314 3.693 5.31 1.285 1.855 1.774 3.974 2.77 6.276.528 2.205.895 4.302.923 6.757.502 2.093.464 4.396.464 6.758-.528 2.2-.643 4.65-1.386 6.758-.08 2.356-.55 4.487-.923 6.276-.41 1.975-.894 3.246-.924 5.792v6.758c-.16 2.217-.646 3.845-.922 6.275-1.117 2.108-2.186 4.573-3.23 7.24-1.537 1.072-2.87 2.595-3.694 3.863-.985.61-1.556 1.532-1.386 1.93 1.845.643 1.386 1.927 1.386 4.345.24 1.86.42 4.17.923 6.276.17 2.303.662 3.712 1.385 5.308.728.95.87.483-.924.483-1.334 1.047-2.684.5-3.23-1.448-1.078-1.3-1.432-2.87-1.847-5.31-.255-2.234-.612-4.412-1.385-5.79-.236-2.722-.96-2.694-3.693-2.898-1.3-1.152-3.017-1.45-5.54-1.45-2.513 0-2.724-.255-2.77 2.416v6.758c-.434 1.96-1.387 3.547-1.847 5.31-1.377 1.008-2.093 2.7-3.693 3.86-.762 2.193-1.87 2.574-4.156 2.897-.8-.998-2.102-2.3-2.77-3.378 1.293-2.17 2.422-2.496 3.233-4.827.98-1.922 1.556-3.17 2.306-4.828-.985-1.516-1.87-2.2-2.77-4.345-.76-1.168-1.81-3.68-2.307-5.31-1.517-.527-3.904-.612-5.08-1.448-2.24-.522-2.866 1.93-5.54 1.93h-6.462c-2.858 0-3.572 1.596-6.002 1.45-.714.23-2.445-.103-5.08 0-1.928.67-4.252.48-6.462.48-2.342-.03-4.258-.568-6-.965-2.122-.58-4.232-1.17-6.464-1.447-2.71 0-3.72.216-5.54 1.447-1.44.855-3.528 2.807-5.08 3.862-.655 1.602-.996 4.313-1.846 6.276-.49 1.883-1.288 3.077-1.846 4.828-.625 1.633-1.216 3.314-1.385 5.793-.156 3.253-.867 2.855-2.77 1.93-.793-1.346-2.057-2.827-2.77-4.344.42-2.457.893-3.68.924-6.276-.45-1.874-1.498-1.813-2.77-.483 0 2.528.117 4.477-.924 5.793-.52 1.995-1.356 2.857-2.77 3.862-.69 1.792-2.226 2.612-3.693 3.38-.235-.082 0-.647 0-1.93-1.106-2.208-.08-4.04-.08-6.76.03-2.437-.11-4.052.597-6.275 0-2.34-1.085-4.566-1.44-6.275-.858-1.793-1.353-2.68-3.693-3.38-1.645-.653-4.014-1.537-5.08-2.896-1.34-1.74-2.195-2.454-4.153-3.38-2.124-.77-3.155-1.473-4.616-2.414-1.427-1.574-2.587-2.256-3.232-4.343-.964-1.485-1.13-4.242-1.847-6.277-.157-2.12-.764-4.088-1.384-5.792-.274-2.12-.608-3.67-1.385-5.793-.257-1.984-.83-4.06-1.384-6.273 0-2.362.04-4.667-.462-6.76v-6.757c-.332-1.95-.455-4.807-.923-6.276 0-2.626-.28-4.11-.923-5.793-1.056-1.704-1.142-2.47-2.77-2.895-1.176 1.5-3.114 2.112-5.54 2.415-1.695-.387-4.086-.638-6.002-1.45-1.85-.455-3.117-1.187-4.617-1.93-.82-1.262-1.8-2.69-2.77-3.862-.286-2.52-.836-3.82-.923-6.275 0-1.843.044-.865 1.846-3.38z"}),(0,i.jsx)("path",{fill:"#fefefe",d:"m419.65 146.357.328-.34c-.742.774-.47.4 1.306-.343.993-.625 2.88-1.727 3.59-2.39.854-.39 2.21-.9 2.938-1.705.91-.97 1.82-1.776 2.938-2.732 1.293-1.097 2.498-1.457 3.918-2.39 1.847-.137 2.516-.928 4.243-.34 1.622.367 2.294.377 3.592-1.025 1.31-.84 2.753-1.654 3.265-3.073v-2.046c-.025 2.23-.427 2.953-1.96 3.753-1.067 1.224-2.398 2.608-2.937 3.756-1.037 1.5-1.257 2.34-2.285 3.072-.844 1.075-2.292 1.644-2.61 3.412.464.813.04 1.258.977 1.366.946.812 1.93.466 3.265 0 1.328-1.537 1.925-2.53 2.612-4.095 1.095-1.497 1.708-2.21 2.284-3.414 1.135-.823 1.856-1.464 2.286-2.73 1.313-.77 2.393-1.578 3.263-2.39.976-.628 1.494-1.138 2.938-1.366-.02 1.833-.29 2.7-.978 3.755-.325 1.9-.26 2.802.326 4.096.938.58.772 1.084 1.306 2.39.532-1.13.802-3.415.98-4.78v-.342c0 1.493.136 3.473-.327 4.438.022 1.99.464 2.878.98 4.437.55.752.938 1.24 1.632 1.707.064-1.97.556-3.267.652-5.12.455 1.43.303 3.32.653 4.778.118 1.607.7 2.852 1.306 4.097.744.46.997 1.813 1.305.683.773-2.402.792-5.03 1.306-7.51.094-1.26.195-3.133.654-4.096l-.653 4.095c.094-1.26.195-3.132.654-4.095v-.34c.305 1.797.593 3.533.653 5.46 0 1.536-.1 3.1.327 4.437 1.086-.503 1.715-1.68 2.285-3.073.87-1.65 1.465-2.382 2.61-3.754l-2.61 3.754c.87-1.65 1.465-2.382 2.61-3.754v-.34c-.18 1.573-.325 3.056-.325 4.777 0 1.574-.018 3.358.326 4.438.385 1.81.91 2.145.98 4.095 0 .95-.124 1.92.327 2.39 1.406.367 1.41-.452 1.632-2.39.017-2.202.58-3.703.65-5.802 0-2.59.367.316.654 1.366.66 1.52.864 2.872.98 4.437 0 .95-.123 1.92.326 2.39 1.26-.523 1.76-1.996 2.612-2.732.65-1.616 1.322-2.33 1.96-3.41 1.69-.355 1.607-1.05 1.63-3.073 0-1.633-.127-3.352.328-4.78.523-1.483 1.016-3.134 1.305-4.436.61-.364 1.27.538 1.63 1.366.716 1.1.654 2.705.654 4.437.314 1.51.942 2.69 1.632 4.096.818 1.577 1.483 2.533 2.285 3.413.344 1.08.327 2.864.327 4.437 1.272-1.445 1.515-3.598 1.632-5.802-.17-1.5-.202-3.368-.653-4.78-.052-1.503-.32-3.055-.653-4.095-1.102-.53-1.276-1-.326-2.39 1.05-.908 2.185-.557 3.918-.34.876.915 1.236 1.405 1.305 3.41 0 1.82.077 3.218.653 4.44.64.982 1.272 1.657 1.63 3.413.502.428.89 1.12 1.634.342.41-1 .65-3.062.98-4.097.318-1.295.893-1.93 1.632-2.39 0 1.9-.022 3.066.653 4.44.638 1.524 1.082 2.097 1.63 3.755.697.485.786 1.53 1.633 2.046.2-1.602.327-3.437.327-5.46v-4.78c.12-1.625.514-2.54.98-3.752 1.05 1.31.98 1.852.98 3.753 1.073-.4 1.253-1.17 1.63-2.387.767-.675.976-.99 1.306.68.23 1.787.665 3.395.98 5.122.67.788 1.447 2.696 2.285 3.414.575.975 1.22 1.92 1.96 2.73.508 1.123.638 1.71 1.958 2.047 0-2.31.077-4.627-.326-6.826 0-1.96-.428-2.66-.653-4.437-.545-1.177-.865-2.912-.654-3.412 1.53 1.517 2.22 2.398 2.938 4.096.766 1.64 1.41 2.743 1.958 4.437.755.648 2.092 2.59 2.612 3.414 1.165 1.04 1.733 2.126 2.938 3.07.623.588 1.94.916 2.285.684-.06-2-.364-3.72-.98-5.46-.02-1.91-.458-2.948-.978-4.096-1.285-1.108-2.26-1.863-2.94-3.414-.505-.432-.604-.755-.653-1.705 1.876 1.552 3.187 2.936 4.57 4.777.936 1.213 1.412 1.763 2.613 2.39.65.73 2.545 1.638 3.916 2.048.823 1.09 1.922 1.718 3.265 2.05l-3.264-2.05c.823 1.09 1.922 1.718 3.265 2.05v.34c-.163-2.135-.947-3.695-1.958-5.462-.85-1.868-1.63-2.56-2.938-3.755-.854-1.352-1.81-2.15-3.264-3.07-.9-1.06-2.25-2.82-2.938-3.415 1.392-.874 3.027.592 4.57 1.366 1.274 1.38 2.465 3.18 3.264 4.095.87 1.753 1.537 2.838 2.94 4.437 1.405.834 2.38 1.66 3.59 2.73 1.87.518 1.124-.166.653-1.706-.647-1.926-.072-1.956 1.305-.682.908.647 1.92 1.725 3.263 2.39.58.752 1.457 1.17 2.286.682.345-.482.326-.427.326-1.024-.687-2.118-1.325-3.767-2.938-4.438-.74-.942-1.942-2.063-2.937-3.072-.65-1-1.408-1.576-1.96-2.73l1.96 2.73c-.65-1-1.408-1.576-1.96-2.73h-.326c1.97.073 2.672.573 4.242 1.366 1.12.408 2.327 1.475 2.94 2.388.635.845 1.655 1.753 2.284 2.73 1.003.773 2.11 1.652 3.265 2.39 1.087 1.425 1.282 2.352 1.307 4.44.626.964.738 2.938.978 4.094-.24 1.877-.882.403-.978-.683-.277-1.507-.85-1.428-1.96-1.023 0 2.062.228 2.626.98 4.096-.204 1.41-.672 2.44-1.306 3.414-.76.454-.925-1.004-1.63-1.707-.076-2.11-.67-2.343-1.96-3.414v1.366c.728 1.457 1.497 2.785 1.632 4.78.504 1.52.653 2.482.653 4.436 0 1.67.027 3.3-.326 4.78 0 1.85-.307 2.645-.328 4.437v9.558c-.25 1.207-.326 2.78-.326 4.436l.326-4.438c-.25 1.208-.326 2.782-.326 4.437v.34c-.62-1.715-1.296-3.267-1.632-5.12-1.058-1.047-1.73-2.126-2.286-3.413-.25-1.464-.406-3.253-.653-4.438-.46-1.203-.947-2.486-1.96-1.706-.4 2.544.106 4.06.98 6.484.513 1.608.457 2.872.98 4.438.757 1.805 1.365 2.064 0 4.095-.673 1.084-1.034 1.427-1.306 2.732-1.208.632-1.51.913-1.632 2.39-.406-1.328-1.393-2.884-1.96-4.438-.584-1.634-1.306-3.313-1.63-4.778-.793-1.143-1.722-2.992-2.613-3.755-.82-1.102-1.997-2.94-2.612-4.095-1.25-1.457-1.526-2.3-2.61-3.07-.28-.683-.612-1.534-1.306-1.025 0 1.632-.13 3.35.326 4.777.33 2.013.91 3.13.98 5.12v3.756c-.785-1.923-1.622-3.64-2.286-5.462-.713-1.018-1.41-3.003-2.285-3.754-.555-1.324-.988-2.422-1.632-3.412-.167-.992-.606-.98-.98-1.707.022 1.935.61 2.613.98 4.095.636 1.3.84 3.48.653 4.096-.823-2.392-1.568-5.008-2.612-7.167-.99-1.402-1.955-3.204-2.61-4.437-.972-1.172-1.97-1.21-2.938-2.048-.882-.437-1.726-.926-2.285-1.707.257 1.8.927 2.924 1.305 4.438.215 1.716.97 3.09 1.306 4.438-.363 2.335-.89-.648-1.306-1.707-.344-1.922-.98-2.99-1.632-4.097-.875-.622-1.67-1.727-2.612-2.39-.916-.367-.653.067-.653 1.366 0 2.112.077 3.507.653 4.78.652 1 .653 2.306.653 4.094-.056 1.68-.325 3.03-.325 4.78V188c-.75-1.45-1.46-2.275-1.96-4.096-1.132-1.55-1.468-2.688-2.285-4.436-.724-.305-1.902-.556-2.61 0 .127 1.727.89 2.487.98 4.436-1.302 1.333-1.067 1.713-1.96-.34-.744-1.557-1.61-1.484-2.61-2.39-1.64-.214-1.12-1.263-1.634-2.73 0-1.315.13-2.642-.326-3.756-1.79 0-2.816-.064-3.917 1.025-.518 1.08-.335 3.033 0 4.436v4.778c-.372 1.196-1.11 1.26-1.306 2.73-.63 1.458-.84 3.066-1.305 4.098-1.163 1.05-.658 1.182-1.306-.683v-10.925c0-1.854.267-2.758.326-4.435-.677-1.415-.86-1.68-2.938-1.707-.506.882-.313 2.52 0 3.414 0 1.654.075 3.23.326 4.436 0 1.813.214 2.912.327 4.438-.062 1.81-.4 3.25-1.306 4.096-1.177.308-.128 1.057-1.305 1.366-1.18-.592-2.568-1.396-3.59-2.39-1.27-.404-2.466-.682-4.244-.682-2.164-.028-2.2-.29-2.938-2.05-.662-1.88-.973-3.514-1.306-5.46-.718-1.598-.886-2.687-1.306-4.437-.548-1.043-1.133-1.83-1.957-2.39-.473 1.726-.917 3.17-.98 5.12-.382.8-.462 2.834-.652 3.754-.655-1.01-.912-2.995-1.305-4.435-.62-2.07-1.148-3.414-3.265-2.73-2.197.027-2.26.09-2.286 2.39.946 1.48 1.956 2.918 2.612 4.094v4.778c0 1.973.115 2.544-1.306 3.072-.54-2.048-1.688-4.003-2.938-5.803-.17-1.392-.6-1.024-1.957-1.024-.91 0-1.837-.128-2.286.34 0 1.19.097 2.842 0 3.074-.788.145-1.106-.008-1.633-.683-.57.993-.14 2.393 0 3.755-.415 1.518-.91 2.905-1.633 3.753-.144-.454-.47-.342 0-.342-2.24-.86-3.993-1.39-5.875-2.045-1.134.146-1.957 1.19-2.613 2.046-1.66.56-2.393 1.002-4.244 1.025-1.776 0-2.64.28-4.244.342-1.155.262-2.662.34-4.244.34-.878-.26-2.41-.268-2.94-.682.675-1.005 1.426-1.513 1.96-3.07.894-.637 1.732-1.452 2.612-2.39.86-.613 1.87-1.883 2.61-2.73.51-1.645 1.21-1.93 2.286-2.732 1.94.076 2.32.692 4.244 1.024 1.88.712 2.92.922 3.918-.34 1.56-.66 2.882-1.69 4.57-2.05 1.307-.653 2.144-1.288 3.264-2.048 1.39-.837 2.05-1.696 3.265-2.73.347-1.392 1.33-2.467.98-4.097-1.767-.462-2.89-.277-3.918.683-1.43 1.177-1.7 1.666-3.265 2.73-1.352.385-1.93.98-3.59 1.366-1.365.476-3.01.342-4.57.342-1.428 0-3.322-.142-4.245.34 1.452-.977 3.197-1.993 4.57-2.39 1.318-.884 1.816-1.332 3.592-1.364.823-1.078 1.673-1.105 1.956-2.73.553-2.02-1.204-1.38-2.61-.684-1.327.244-2.79 1.183-3.918 1.707-1.09.38-2.68.663-4.244.683-.412-.615.322-1.106.653-2.05 1.525-.54 1.77-.738 1.96-2.388-1.73.24-2.39.808-3.92 1.024-1.665.436-3.394.63-5.22.683h-4.572c-1.604-.062-2.47-.342-4.243-.342-1.3-.68-1.306-1.002-1.306-3.072 1.024-1.176 2.02-1.022 3.917-1.022 1.46-.718 2.597-1.1 3.59-1.707 1.183-.254 1.99-.76 1.633-1.364h-4.57c-1.76-.745-.08-1.086.98-1.707 1.587 0 3.225.093 4.243.682 1.963-.076 2.647-.697 4.242-2.05 1.25-1.03 1.864-1.687 3.265-2.388 1.006-1.11 1.956-1.723 2.612-2.73 1.342-1.28 2.23-1.988 2.937-3.072.864-.476 1.392-1.09.98-1.707-2.046.25-2.874.993-4.245 2.048-.796.793-1.57 1.503-2.612 2.048-1.47.874-2.385 1.228-4.242 1.365-1.676 0-2.964-.28-4.57-.34-1.774-.186-.142-.6.325-1.365.686-.48 1.22-1.542.653-2.39-1.365-.475-3.008-.34-4.57-.34h-4.57c-1.725-.067-2.455-.463-3.59-1.025-.353-.958.062-.683 1.305-.683 1.574-.062 2.69-.276 4.245-.683 1.535-.438 1.727-.95 1.958-2.732-1.506 0-3.21.02-4.243-.34h-2.94zm-28.274-7.739c-.287-2.52-.836-3.82-.924-6.275 0-1.843.045-.865 1.847-3.38.182 0 1.532-1.282 2.77-2.412 1.726-.864 3.323-2.08 5.078-2.896 1.307-.757 3.89-1.344 5.077-1.93 1.556-.815 2.825-1.752 4.156-3.38.16-2.16.464-3.71.464-6.275 1.836-.885 3.465-1.742 5.077-2.415 2.312-.65 2.812-1.574 5.08-1.93 1.46-.51 3.872-.485 6-.485 2.298 0 3.747 1.633 5.81 2.02 2.447.986 3.59 1.67 5.54 3.38 1.103 1.394 1.788 2.528 3.668 3.578 1.487.763 2.88 1.92 4.616 2.413.015 1.743.386 1.442-.858 1.442-.132 1.786-.56 1.675-2.286 1.707a8 8 0 0 1-2.938-2.732c.653-1.773.22 1.435 0 2.048-.84.69-1.338 1.426-2.285.683-.53-1.666-.978-2.817-.978-4.78-.25-2.132-.846-.584-1.307.343-.442 1.72-.24 2.343.326 3.753-1.666 0-2.942-.157-4.245-.34-1.21-.302-2.572.068-3.918.682-1.71 1.073-1.177 1.08-.326 2.39 1.51.444 2.593 1.28 3.92 2.048 1.505-.3 3.08-.635 4.57-1.025 1.555-.54 2.98-.196 4.57 0 .788.414 1.825.497 2.284 1.026 0 1.055.084 2.158-.326 2.73-.68.452-1.324 1.7-2.286 2.047-1.44.825-2.95 1.344-4.57 1.707-2 .076-2.73.515-4.243 1.366-.25 1.725-.753 2.212-2.287 2.73-1.526.667-2.74 1.025-4.57 1.025-.908 0-1.835.13-2.285-.34 1.454-1.66 1.89-2.44 2.612-4.097.282-.69.873-1.134.327-1.707-1.934.076-2.44.063-2.612 2.048-.22 1.798-.91 2.1-2.285 2.73.37-1.664.432-2.943.98-4.436-1.156.262-2.662.34-4.245.34-.99.628-1.4.872-.98 2.05-1.312.456-2.91.175-4.57 0-1.386-.076-.62-.705-1.63-1.366-.663-1.3-1.424-1.616-2.94-1.707-.752.94-2.145 1.33-2.938 2.048-1.43.5-2.34.085-3.59-.683-1.63.05-1.412.576-.98 1.707.622.434-.038.907.98 1.024.938.852 1.74 1.025 3.59 1.025 1.415-.37 2.974-.34 4.57-.34 1.612.05 1.307.43 1.307 2.047-1.054.746-2.59.683-4.245.683-1.576-.196-2.784-.604-3.917-1.024-1.53-.113-2.752-.405-3.918 0-.526.583-2.11.838-.326 1.025.7.66 4.478.342 4.747 1.466.89.99.692 2.29-.83 2.29-.925-.483-1.64-.364-2.286 0-1.086.285-2.377.078-4.274.22 2.477.204-1.8-2.69-2.77-3.862z"}),(0,i.jsx)("path",{fill:"#bcbcbc",d:"M401.687 127.25c-.108 0-1.083.677-1.96 1.364-1.433.768-2.965 2.075-3.916 2.73-.748.6-.744.862-1.63 1.026 1.555-.22 2.248-.617 3.59-1.366 1.695-.204 3.338-.564 4.244-1.365.85-.298-.064-1.66-.327-2.39zm15.025-16.05c.187 0 .57 1.067 1.304 1.706.47 1.31.903 2.235.98 3.755.4-1.667 1.084-3.008 1.305-4.778-.507-.9-.54-1.32-1.958-1.365 0 .922.108.32-1.63.682z"}),(0,i.jsx)("path",{fill:"#c4c4c2",stroke:"#000",strokeWidth:.875,d:"M349.36 417.73c-.494 0 .87-.492 1.326-.663.364-.767.653-1.31 1.326-1.767 1.107.085 1.65.404 2.21 1.104.93.254 1.265.697 2.43.884.434.366 1.02.408 0 .663-.692.367-1.563.443-2.65.443-1.14.082-1.955.333-2.653.663-1.48 0-1.243.05-1.99-1.326z",transform:"matrix(1.48 0 0 1.54 -109.52 -520.08)"}),(0,i.jsx)("path",{fill:"#bcbcbc",d:"M422.576 111.54v.34c0-.92-.02-.45.327 1.366.54 1.145.653 2.373.653 4.097.857-.64 1.572-1.916 1.96-3.073 0-2.695-.366-2.536-2.94-2.73m12.084 39.25h.327c-.96 0-.42.06 1.306-1.024 1.117-.778 2.03-1.93 3.592-2.39 1.51-1.24 2.673-1.82 4.242-2.388.766-.367 1.44-1.005 2.286-.34-.243 1.683-.522 2.32-1.96 3.07-.742.973-1.912 1.54-2.936 2.048-1.062.488-2.23.513-2.612 1.707-1.776.817-1.994.68-4.244-.683zm6.205 9.902c.583-.46 2.627-2.592 3.59-3.412 1.09-1.503 2.193-2.653 3.265-3.414.952-1.465 2.17-2.446 2.94-3.755.906-1.147 1.573-2.12 2.61-3.412 0 1.492-.136 3.47.325 4.437 0 2.062-.227 2.626-.978 4.096-.74 1.21-1.294 2.01-2.938 2.732-1.484.822-2.373 1.11-3.592 2.047-.93.597-1.897 1.192-2.94 1.706-.932.42-.504.236-2.283-1.024zm-10.119 7.848h.326c-.96 0-.42.058 1.306-1.025 1.393-1.457 2.503-1.963 4.245-2.73 1.325-.108 2.928-.452 3.917-1.025.79-.146 1.34-.648 1.958 0 1.025 1.45 1.307 1.858-.327 2.73-.78.694-2.158 1.392-3.262 1.708-.815.702-2.43.746-3.918 1.024-1.334 0-2.075.157-2.612-.683l2.612.682c-1.334 0-2.075.157-4.244-.683zm14.034 0v-.342c0 .953-.04.448.653-1.366 1.224-1.91 1.684-2.963 3.265-3.414.74-.936 2.023-1.178 3.59-1.707.59 1.027.137 2.223 0 3.415-.425 1.275-1.59 2.174-2.284 3.073-1.018.723-1.433 1.418-2.938 1.706-1.246 0-.585-.032-2.286-1.365"}),(0,i.jsx)("path",{d:"M412.788 124.16c0 .942-.73 1.706-1.632 1.706-.9 0-1.632-.764-1.632-1.707s.73-1.708 1.632-1.708 1.632.764 1.632 1.707z"})]}),(0,i.jsxs)("g",{fill:"#005120",fillOpacity:.996,fillRule:"evenodd",stroke:"#002b0d",strokeOpacity:.996,strokeWidth:"1pt",children:[(0,i.jsx)("path",{d:"M351.79 479.6h.884c-2.77 0-1.115-.185 3.535 3.535 1.947-1.623 1.924-1.842 3.535.884.93 1.55 1.203-.16 2.65-1.768.7 3.21 1.146 6.578 3.537 3.535 2.73 0 5.59-.227 7.07.884 1.79 3.326 1.205-.563 2.653.885 3.892.467 3.818-3.338 8.057-4.322 2.635 3.293 3.79.76 7.072-.883 2.438.682 4.736 4.38 5.2.785 1.996-3.256 2.17-2.98 3.536 0 1.94 1.748 2.76-.874 4.42-1.767 2.958 1.73 6.258 1.97 10.606.884.736 2.944 2.592 1.667 4.42.883 3.91 1.643 5.273 2.146 9.722 0 2.204-2.604.956.073 2.65 1.768 3.297-1.023 2.387-1.24 6.19-.884 3.82 0 4.13-.093 5.302-2.652 1.92 1.92 2.614 3.304 5.303.884 4.12.12 2.846.52 5.304-.884 1.818 4.026 2.245 1.117 4.42 2.65-1.433 3.632-3.633 5.335-6.188 7.072-1.7 2.816-2.764 5.857-6.188 7.072-2.498 2.548-5.16 4.025-7.955 6.187-3.832.957-8.05.883-12.375.883h-37.12c-2.64 1.32-6.96 1.948-10.608 2.65-4.075 0-8.694.05-11.49-.883-1.895-1.894-5.22-4.01-7.07-6.187-1.875-1.51-1.93-4.46-3.537-6.187-1.48-2.53-1.936-6.486-3.535-8.84z",transform:"matrix(1.48 0 0 1.54 -103 -521.43)"}),(0,i.jsx)("path",{d:"M437.52 487.56v.884c0-2.47.11-1.158-1.768 3.535-.38 1.14-1.212 1.407-2.652 1.767m-3.53-2.656h.884c-3.273 3.09-5.476 4.515-6.188 7.955l6.188-7.955c-3.273 3.09-5.476 4.515-6.188 7.955m-7.076-12.365c0 .08-.124 3.153-.884 4.42m-2.646 1.76v.884zm-7.07-5.3h.884-.884c.294 0 .59 0 0 0zm-49.5 0c.422 0 2.16 2.806 4.42 4.42-.563 2.585-1.427 5.577 0 7.954m2.65-7.074c.422 0 2.16 2.807 4.42 4.42l-4.42-4.42c.422 0 2.16 2.807 4.42 4.42v.884c0-2.73-.227-5.59.883-7.072.983 1.663 2.224 4.337 2.652 1.768 4.978-.178 7.38-1.576 10.607-2.65 0 1.3-.21.674.884 1.766m60.104-3.536h.884c-1.667 1.39-2.946 4.222-4.42 6.187m-32.704-8.837h7.07",transform:"matrix(1.48 0 0 1.54 -103 -521.43)"})]}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M413.61 239.342c-15.702 0-20.906 16.41-36.61 16.41-.302 0-.588-.024-.883-.035v.993c-.06 11.375.835 21.97 2.466 31.864 14.485-1.058 19.866-16.41 35.028-16.41 15.704 0 20.945 16.446 36.65 16.446s20.943-16.447 36.646-16.447 20.944 16.447 36.648 16.447 20.944-16.447 36.647-16.447c15.123 0 20.52 15.244 34.92 16.373 1.724-10.158 2.635-21.07 2.574-32.784v-.037c-.294.012-.58.037-.883.037-15.702 0-20.906-16.41-36.61-16.41s-20.944 16.41-36.647 16.41-20.944-16.41-36.648-16.41-20.944 16.41-36.647 16.41-20.944-16.41-36.647-16.41zm0 64.064c-12.214 0-18.09 9.902-27.485 14.313a151.4 151.4 0 0 0 11.664 24.836c4.46-3.374 9.202-6.292 15.822-6.292 15.695-.012 20.934 16.4 36.64 16.4s20.945-16.41 36.65-16.41c15.702 0 20.943 16.41 36.646 16.41s20.944-16.41 36.648-16.41c6.472 0 11.15 2.794 15.527 6.07a153 153 0 0 0 11.7-24.725c-9.244-4.47-15.123-14.203-27.227-14.203-15.703 0-20.944 16.41-36.647 16.41s-20.945-16.41-36.65-16.41c-15.702 0-20.943 16.41-36.646 16.41s-20.944-16.41-36.648-16.41zm73.284 64.052c-15.703 0-20.944 16.448-36.647 16.448-14.85 0-20.347-14.703-34.182-16.3 18.49 20.597 39.458 33.068 53.757 39.92 4.836-3.752 9.844 4.564 17.072 4.564 7.178 0 12.16-8.36 16.963-4.636 14.14-6.885 34.853-19.375 53.242-39.775-13.384 1.956-18.932 16.225-33.558 16.225-15.703 0-20.944-16.447-36.648-16.447z"}),(0,i.jsxs)("g",{transform:"translate(-406.92 -18.22)scale(1.18)",children:[(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M332.54 541.35c1.744-.58 10.173-3.197 10.464-2.907.29.29 16.278 15.697 16.278 15.697l-13.37 2.616z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.594,d:"M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 31.413c0-.29 6.686-31.127 6.686-31.127m-4.396 31.177c.29-1.744 5.558-31.175 5.558-31.175M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197 4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58",transform:"matrix(1.06 0 0 1.03 276.8 -177.96)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.41,d:"M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197 4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58",transform:"matrix(-1.25 0 0 1.76 1290.4 -502.06)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197 4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58",transform:"matrix(-1.25 0 0 1.3 1321.3 -301.92)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M395.32 572.16c0-.29.872-72.96.872-72.96s2.616-.29 2.616 0-.29 72.67-.58 72.96-3.2.58-2.908 0zm28.49-69.76c0 .582-.582 61.333-.582 61.333l-2.035 2.326.582-63.66z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M363.06 560.24s2.907 29.94 36.335 29.068 42.73-30.23 42.73-30.23-14.244-.582-14.535-.582c-.29 0-11.627 13.953-26.16 13.662s-19.185-3.78-22.383-6.685c-3.197-2.907-6.104-7.267-6.104-7.267l-16.86-6.686.873 6.395zm90.24-3.11c-.29-.872-1.007-3.866-1.007-3.866v-3.488l1.61-3.532s-25.29 3.623-25.29 3.914c0-.335-.156 6.885-.156 6.885z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"m448.52 549.78-.58 6.104h4.068l-.29-6.104zm-4.36.29-.29 6.394 2.615-.29.29-6.104zm-4.36 6.39v-4.94l2.616-.873.29 4.94zm-4.95-.28.582-4.36 2.906.29.29 4.65zm-5.52 0 .29-3.78 2.908-.29v4.36zm-67.44 3.77c.872 0 7.558 1.453 7.558 1.453l6.976 9.302",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M366.84 561.12c.29.29 6.104 19.766 34.01 19.766s34.59-22.09 34.59-22.09",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M439.8 559.37s-13.37 29.068-38.95 27.033c-25.58-2.034-29.65-11.627-31.685-16.568s-3.197-9.01-3.197-9.01",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M373.23 558.21c.29-1.745.29-54.357.29-54.357l-1.744-.29-.29 53.775zm-41.57-17.15 22.09 10.755-.58 1.453s-21.22-9.883-21.22-10.174c0-.29.29-1.453-.29-2.034z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M341.84 537.86c0 .872 3.198 18.603 3.198 18.603s2.035.29 2.035 0-3.49-18.312-3.49-18.312zm20.34.58c1.163 0 20.93-3.197 20.93-3.197l-.292 3.197-19.475 2.035z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#fecf3e",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M365.09 514.32c.58 0 6.976 3.198 9.592 2.326s.872-2.907 1.453-2.907 2.616 1.452 3.78.29c1.162-1.163 2.034-4.65 1.453-4.36-.582.29-15.988 5.813-16.278 4.65z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M362.48 521.58c1.163.29 23.836-6.104 23.836-6.104s0 2.035-.29 2.035-23.546 6.105-23.546 6.105z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#fecf3e",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M415.09 512.57s1.454 3.488 2.907 2.907 2.907-1.744 2.907-1.744 1.163 2.907 3.197 2.325c2.036-.58 3.2-3.78 3.2-3.78s2.033.583 2.905.292c.873-.29 2.035-4.94 2.035-4.94zm-1.75 28.2c-.29.58 1.454 2.035 2.907 2.035s2.035-2.035 2.325-1.454c.29.583.29 3.2 4.07 2.327s3.78-3.488 3.78-3.488-1.164.87 1.452 1.16c2.616.292 5.232-3.778 4.942-3.778s-18.894 3.49-19.476 3.198z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M363.35 513.15c-.29 1.163.29 2.617.29 2.617l18.894-6.395s.872-1.454 0-1.454-19.475 5.814-19.184 5.232zm25-4.07c.58 0 19.475-6.104 19.475-6.104s.29 2.616 0 2.616-17.73 5.232-17.73 5.232z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#fecf3e",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M413.34 521.88s-2.907 3.197-2.035 7.557 2.035 8.14 2.326 8.14 3.49-5.814 6.977-6.105 9.883 3.198 9.883 3.198-.872-6.977-.58-10.174c.29-3.198 5.23-8.72 5.23-8.72z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M386.89 516.64s-.58 2.616-.29 2.616 24.707-6.395 24.707-6.395v-1.743z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#b6b6b4",fillOpacity:.996,fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M355.5 551.82s-5.813-.872-5.523.58c.29 1.454 2.907 2.908 3.198 3.78s-.872 4.07.872 3.78c1.744-.292 3.488-1.455 3.488-2.327s-.29-4.94-.29-4.94z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M387.76 537.28v2.034l20.93-2.906-.582-1.454z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#fecf3e",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M363.06 540.77c.29 0 0 2.616 2.325 2.035 2.326-.582 2.907-2.035 2.907-2.035s.58 3.197 3.78 2.907c3.196-.29 4.94-3.78 4.94-3.78s.29 2.617 2.326 1.745 2.616-2.907 2.616-2.907l-18.313 2.616zm0-17.15s-2.616.872-1.744 6.104 2.907 8.14 3.197 8.14 2.616-4.942 6.104-5.814c3.49-.873 9.593 2.616 9.593 2.616s-.582-4.65.29-9.01c.873-4.362 3.78-7.56 3.78-7.56s-20.348 5.524-21.22 5.524z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"m411.89 538.73.29 1.744s20.93-2.616 20.93-2.907 0-2.034-.29-2.034c-.292 0-20.64 3.488-20.93 3.197zm-.29-18.6.29 2.034 24.708-6.685s.582-1.745.29-1.745-24.707 7.267-25.288 6.395z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M414.22 510.83s-.29 1.744 0 1.744 18.313-4.36 18.313-4.65 1.744-2.036.29-1.745-18.02 5.522-18.603 4.65zm38.66 33.72-18.03-28.49m-2.32 19.77c.29-.872 1.163-18.312 1.163-18.312",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"#fecf3e",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M388.93 509.96c1.163.29 3.198 3.197 4.36 2.616 1.163-.58 2.907-2.325 2.907-2.325s-.29 3.49 2.035 2.907c2.325-.58 2.616-2.906 2.616-2.906s1.744.873 3.197 0c1.454-.87 2.907-5.232 2.326-5.232s-16.858 5.233-17.44 4.942zm-.58 8.43c0 .58-2.907 5.232-2.035 9.592s2.616 8.43 2.907 8.43 4.65-4.65 8.43-5.523c3.778-.873 9.3 2.906 9.01 2.906s-1.453-4.36-1.453-7.558 4.36-13.08 4.36-13.08l-21.22 5.232zm0 20.93c0 .29.872 2.326 2.907 2.326 2.034 0 2.325-2.035 2.325-2.035s-.29 3.49 2.907 3.2c3.196-.292 4.36-3.49 4.36-3.49s.29 1.745 2.906.873 6.104-3.78 5.813-3.78c-.29 0-20.93 3.78-21.22 2.907z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("use",{xlinkHref:"#fk_inline_svg__k",width:992.126,height:496.063,transform:"translate(-6.56 7.28)"}),(0,i.jsx)("use",{xlinkHref:"#fk_inline_svg__k",width:992.126,height:496.063,transform:"translate(6.56 3.76)"}),(0,i.jsx)("use",{xlinkHref:"#fk_inline_svg__k",width:992.126,height:496.063,transform:"translate(0 11.03)"}),(0,i.jsx)("path",{id:"fk_inline_svg__k",fill:"#be0f17",fillOpacity:.996,fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.581,d:"M408.98 476.96a1.89 1.89 0 1 1-3.78 0 1.89 1.89 0 0 1 3.78 0z",transform:"matrix(.04 -1.07 1.02 .04 251.6 667.92)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M398.23 500.07c0-.29 9.01 3.78 9.01 4.07s31.975 42.73 32.266 42.73m-15.986-42.73 8.14 3.49 2.615 6.393M372.94 503.56c-.29 0 9.01 6.976 9.01 6.976l1.164 5.814M341.26 546c4.07-1.744 32.265-26.452 32.265-26.452M333.7 541.35c3.49-2.907 31.684-26.742 31.684-26.742m21.216 4.072 29.94 49.706m-3.53-29.156s3.532 11.71 7.02 13.455 7.557 4.65 7.557 4.65",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M412.61 539.48s2.48 13.793 5.97 16.41 6.976 5.522 6.976 5.522",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M390.96 439.03s3.488 19.185 10.465 23.545c6.976 4.36 12.79 8.14 12.79 8.14",transform:"matrix(1.25 0 0 1.3 256.26 -299.49)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M390.67 438.74s7.557 15.116 13.952 19.767 15.115 9.01 15.115 9.01M366.26 439.9c2.034 3.488 1.744 10.174 4.07 12.5 2.324 2.325 5.813 7.557 5.813 7.557",transform:"matrix(1.25 0 0 1.3 256.26 -299.49)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M366.84 440.19c1.163 1.744 4.406 10.428 6.395 13.08 1.454 2.326 16.278 17.15 16.278 17.15",transform:"matrix(1.25 0 0 1.3 256.26 -299.49)"}),(0,i.jsx)("path",{fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M384.57 471.15a2.18 2.18 0 1 1-4.36 0 2.18 2.18 0 0 1 4.36 0zm10.75 4.65a1.89 1.89 0 1 1-3.78 0 1.89 1.89 0 0 1 3.78 0zm13.66 1.16a1.89 1.89 0 1 1-3.78 0 1.89 1.89 0 0 1 3.78 0zm11.92-4.5c0 .963-.716 1.744-1.6 1.744-.882 0-1.597-.78-1.597-1.744 0-.963.715-1.744 1.598-1.744s1.6.78 1.6 1.744zm9.59-5.67c0 .883-.846 1.6-1.89 1.6s-1.89-.717-1.89-1.6.847-1.6 1.89-1.6 1.89.717 1.89 1.6z",transform:"matrix(1.25 0 0 1.3 256.26 -299.49)"}),(0,i.jsx)("path",{fill:"red",fillOpacity:.996,fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M374.1 404.44c-.872.582-15.406 4.07-13.37 3.78 2.033-.29 13.66 2.906 13.37 2.034s0-5.232 0-5.814zm24.71-4.36c-.582 0-9.012 3.198-8.72 3.198s9.592 2.616 9.3 2.034c-.29-.58-.29-4.36-.58-5.232zm25.29 2.91c-.582.29-10.465 2.616-8.72 2.907s8.43 2.616 8.43 2.035c0-.582 0-4.65.29-4.942z",transform:"matrix(1.25 0 0 1.3 256.26 -299.49)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197 4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58",transform:"matrix(1.25 0 0 1.3 256.26 -299.49)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 31.413c0-.29 6.686-31.127 6.686-31.127m-4.396 31.177c.29-1.744 5.558-31.175 5.558-31.175M413.93 467.23c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197 4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58",transform:"matrix(1.25 0 0 1.36 225.31 -323.36)"}),(0,i.jsx)("path",{fill:"none",stroke:"#512007",strokeOpacity:.996,strokeWidth:.474,d:"M413.64 471.01c.29-4.65 8.72-31.103 8.72-31.103m-5.82 30.223c0-.29 6.686-29.94 6.686-29.94m-3.776 27.62c.29-1.744 4.94-27.614 4.94-27.614m-10.46 27.034c1.453-.872 5.813-2.035 5.813-2.035m-3.783-2.615c1.453 0 4.36-1.163 4.36-1.163m-3.49-2.327c0-.29 4.36-1.163 4.36-1.163m-3.78-3.197 4.65-.872m-2.61-2.908c0 .29 3.197.29 3.197.29m-2.327-3.78c.58 0 3.197.58 3.197.58",transform:"matrix(-1.25 0 0 1.32 1259.2 -307.28)"}),(0,i.jsx)("path",{fill:"#dd8b59",fillRule:"evenodd",stroke:"#512007",strokeOpacity:.996,strokeWidth:.475,d:"m426.42 558.5 27.614.582.29-2.035-28.486-.29zm1.17-7.27c3.198 0 27.324-4.65 27.324-4.65s.872-2.907 0-2.907-27.324 5.523-27.324 5.523z",transform:"matrix(1.25 0 0 1.3 259.35 -430)"}),(0,i.jsx)("use",{xlinkHref:"#fk_inline_svg__k",width:992.126,height:496.063,transform:"translate(0 5.52)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3197.ebf93fd4.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3209.6722a080.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3209.6722a080.js deleted file mode 100644 index 227a395d45..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3209.6722a080.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3209.6722a080.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3209"],{21728(e,t,n){"use strict";let r,o;var a,l,i=Object.create,c=Object.defineProperty,u=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,f=Object.getPrototypeOf,p=Object.prototype.hasOwnProperty,h=(e,t,n,r)=>{if(t&&"object"==typeof t||"function"==typeof t)for(let o of s(t))p.call(e,o)||o===n||c(e,o,{get:()=>t[o],enumerable:!(r=u(t,o))||r.enumerable});return e},y={},d={$dispatcherGuard:()=>O,$makeReadOnly:()=>M,$reset:()=>k,$structuralCheck:()=>I,c:()=>E,clearRenderCounterRegistry:()=>T,renderCounterRegistry:()=>j,useRenderCounter:()=>z};for(var $ in d)c(y,$,{get:d[$],enumerable:!0});e.exports=h(c({},"__esModule",{value:!0}),y);var _=(o=null!=(r=n(47867))?i(f(r)):{},h(r&&r.__esModule?o:c(o,"default",{value:r,enumerable:!0}),r)),{useRef:m,useEffect:R,isValidElement:N}=_,g=null!=(a=_.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE)?a:_.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,b=Symbol.for("react.memo_cache_sentinel"),E="function"==typeof(null==(l=_.__COMPILER_RUNTIME)?void 0:l.c)?_.__COMPILER_RUNTIME.c:function(e){return _.useMemo(()=>{let t=Array(e);for(let n=0;n{w[e]=()=>{throw Error(`[React] Unexpected React hook call (${e}) from a React compiled function. Check that all hooks are called directly and named according to convention ('use[A-Z]') `)}});var C=null;function S(e){return g.ReactCurrentDispatcher.current=e,g.ReactCurrentDispatcher.current}w.useMemoCache=e=>{if(null!=C)return C.useMemoCache(e);throw Error("React Compiler internal invariant violation: unexpected null dispatcher")};var v=[];function O(e){let t=g.ReactCurrentDispatcher.current;if(0===e){if(v.push(t),1===v.length&&(C=t),t===w)throw Error("[React] Unexpected call to custom hook or component from a React compiled function. Check that (1) all hooks are called directly and named according to convention ('use[A-Z]') and (2) components are returned as JSX instead of being directly invoked.");S(w)}else if(1===e){let e=v.pop();if(null==e)throw Error("React Compiler internal error: unexpected null in guard stack");0===v.length&&(C=null),S(e)}else if(2===e)v.push(t),S(C);else if(3===e){let e=v.pop();if(null==e)throw Error("React Compiler internal error: unexpected null in guard stack");S(e)}else throw Error("React Compiler internal error: unreachable block"+e)}function k(e){for(let t=0;t{e.count=0})}function z(e){let t=m(null);null!=t.current&&(t.current.count+=1),R(()=>{if(null==t.current){let n,r={count:0};null==(n=j.get(e))&&(n=new Set,j.set(e,n)),n.add(r),t.current=r}return()=>{var n;let r;null!==t.current&&(n=t.current,null!=(r=j.get(e))&&r.delete(n))}})}var A=new Set;function I(e,t,n,r,o,a){function l(e,t,l,i){let c=`${r}:${a} [${o}] ${n}${l} changed from ${e} to ${t} at depth ${i}`;A.has(c)||(A.add(c),console.error(c))}!function e(t,n,r,o){if(!(o>2)){if(t!==n)if(typeof t!=typeof n)l(`type ${typeof t}`,`type ${typeof n}`,r,o);else if("object"==typeof t){let a=Array.isArray(t),i=Array.isArray(n);if(null===t&&null!==n)l("null",`type ${typeof n}`,r,o);else if(null===n)l(`type ${typeof t}`,"null",r,o);else if(t instanceof Map)if(n instanceof Map)if(t.size!==n.size)l(`Map instance with size ${t.size}`,`Map instance with size ${n.size}`,r,o);else for(let[a,i]of t)n.has(a)?e(i,n.get(a),`${r}.get(${a})`,o+1):l(`Map instance with key ${a}`,`Map instance without key ${a}`,r,o);else l("Map instance","other value",r,o);else if(n instanceof Map)l("other value","Map instance",r,o);else if(t instanceof Set)if(n instanceof Set)if(t.size!==n.size)l(`Set instance with size ${t.size}`,`Set instance with size ${n.size}`,r,o);else for(let e of n)t.has(e)||l(`Set instance without element ${e}`,`Set instance with element ${e}`,r,o);else l("Set instance","other value",r,o);else if(n instanceof Set)l("other value","Set instance",r,o);else if(a||i)if(a!==i)l(`type ${a?"array":"object"}`,`type ${i?"array":"object"}`,r,o);else if(t.length!==n.length)l(`array with length ${t.length}`,`array with length ${n.length}`,r,o);else for(let a=0;at});var e=l(74848);l(47867);let t=s=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"st_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#st_inline_svg__a)",transform:"scale(.9375)",children:[(0,e.jsx)("path",{fill:"#ff0",d:"M0 0h1024v504.3H0z"}),(0,e.jsx)("path",{fill:"#009d00",d:"M0 0h1024v146.29H0zM0 365.71h1024V512H0z"}),(0,e.jsx)("path",{fill:"#f10600",d:"M.708 0c1.417 0 255.29 253.03 255.29 253.03L-.002 512 .707 0z"}),(0,e.jsx)("g",{strokeWidth:"1pt",children:(0,e.jsx)("path",{d:"m411.966 268.686-31.97-23.896 39.499.04 12.174-38.705 12.173 38.705 39.5-.029-31.977 23.885 12.236 38.687-31.938-23.942-31.938 23.937zM215.048 268.686l-31.971-23.896 39.5.04 12.173-38.705 12.174 38.705 39.5-.029-31.977 23.885 12.235 38.687-31.938-23.942-31.937 23.937z"})})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3229.97f4b7e5.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3229.97f4b7e5.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3229.97f4b7e5.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js deleted file mode 100644 index d55d241429..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3240.f86bdd91.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3240"],{77451(s,c,l){l.r(c),l.d(c,{default:()=>e});var m=l(74848);l(47867);let e=s=>(0,m.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,m.jsx)("defs",{children:(0,m.jsx)("clipPath",{id:"as_inline_svg__a",children:(0,m.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,m.jsxs)("g",{clipPath:"url(#as_inline_svg__a)",children:[(0,m.jsx)("path",{fill:"#006",d:"M-374-16H650v512H-374z"}),(0,m.jsx)("path",{fill:"#bd1021",fillRule:"evenodd",d:"M-374 240 650 496V-16z"}),(0,m.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M650 11.43v457.14L-264.29 240z"}),(0,m.jsxs)("g",{stroke:"#000",children:[(0,m.jsx)("path",{fill:"#9c3900",fillRule:"evenodd",strokeLinejoin:"round",strokeWidth:1.761,d:"M478 297.4s-6.392-5.23 1.163-13.658c-4.068-3.486-.29-10.17-.29-10.17s-6.975-2.615.29-13.366c-5.23-3.487-2.906-11.333-2.906-11.333s-17.144-6.393-.87-12.494c-13.368 5.81-25.863-7.848-25.863-7.848l-19.468.582c-3.302-16.172-28.97-2.127-9.888-48.52-4.94-.872-10.46-2.324-15.982 1.744s-21.212 12.784-30.51 4.067 6.1-21.212 6.392-21.502c.29-.29 20.63-10.75 23.536-17.725-.29-5.23-6.682-9.298-.872-20.63 6.683-10.753 47.65-20.923 66.26-24.41 9.007-4.068 13.076-11.914 13.076-11.914l2.034 7.555s41.262-12.205 43.296-18.016.872 5.23.872 5.23c16.272-1.453 36.903-15.4 39.81-9.008 13.656-2.615 39.81-14.238 39.81-14.238s9.006-.29 2.613 9.59c4.068 6.392-1.162 11.913-1.452 11.913s1.743 6.394-3.487 9.88c1.745 5.522-3.197 9.88-3.197 9.88s2.326 6.684-6.973 10.17c.872 5.812-5.23 6.975-5.23 6.975s.872 6.102-3.196 8.717c0 4.65-4.65 6.974-4.65 6.974s2.906 1.743-1.163 4.65c-4.067 2.905-46.2 28.766-46.2 28.476s30.8 5.52 32.834 6.683 25.28 16.564 25.28 16.564l-23.537 29.056s-26.15-2.905-27.312-1.452 5.52 2.034 6.973 4.358c1.455 2.324 3.78 7.847 8.428 7.265 4.65-.582-8.717 8.427-17.434 9.3 0 3.195 11.04 3.485 13.947.87s-6.973 7.555-8.136 9.008 13.077-2.034 13.077-2.034-2.324 9.59-14.818 12.496c4.94 8.136 2.905 13.367 2.614 13.367s-8.136-8.137-15.69-6.684c2.033 7.845 8.136 15.108 9.88 16.272 1.742 1.162-13.658.87-15.692-3.488s-3.778 10.46 1.743 15.11c-6.392.29-11.914-3.487-11.914-3.487s-3.776 8.717-1.162 13.077c2.617 4.36-9.006-8.718-9.006-8.718l-22.084 9.3-4.94-8.428z"}),(0,m.jsx)("path",{fill:"#ffc221",fillRule:"evenodd",strokeWidth:1.878,d:"M307.325 280.1c.518 0 32.082-.518 46.572-8.797 7.244 11.384 17.076 19.146 17.076 19.146l4.658-16.56s11.385.518 12.42 3.106c-1.553 3.103-2.07 7.243-2.07 7.243s7.76.518 8.28 1.552c.516 1.035-2.07 9.83-2.07 9.83l33.116 7.763s2.587-12.936 5.175-11.384c2.588 1.554 13.972 17.595 30.013 18.63s17.076-13.455 17.076-13.455l3.62 2.07s6.728-14.487 7.763-14.487 2.588 2.07 11.384 2.07c2.587 3.104 3.623 10.347 3.623 10.347s-9.833 9.833-6.728 17.595 3.623 5.69 3.623 5.69l71.408 17.077s3.624 5.693-2.586 8.798c0 .517-71.927-16.56-71.927-16.56s-6.728 7.762-11.902 6.21-1.552 3.105-1.552 3.105l77.618 6.21s5.692 7.244 1.552 9.314c-5.174.517-83.827-5.174-83.827-5.174s-4.66 9.83-9.833 1.552c-3.62 5.69-7.762-1.552-7.762-1.552s-6.726 5.174-7.762-.52c-5.692 4.14-9.314-2.585-9.314-2.585l-33.118-2.07-2.07 3.104s5.692 1.55-3.105 5.174c-8.796 3.622 52.78 2.07 54.333 2.587 1.552.52-4.14 5.176-4.14 5.176s31.566 2.07 37.257-4.657c5.692-6.73-2.07 8.795-2.07 8.795s24.84-1.034 24.84-2.07-.52 7.763-17.595 6.727c10.35 6.728 23.285 10.867 23.285 10.867s-12.936 3.104-27.942-.518c2.586 6.727 13.972 12.936 13.972 12.936s-8.28 7.245-26.91-10.35c5.176 9.315 1.036 12.938.52 11.902-.52-1.035-9.315-13.97-30.013-18.628 12.936 8.28 7.243 11.902 7.243 11.902s-6.726-11.902-17.593 0c-4.14-10.867-20.18-17.076-39.844-18.112-6.21-7.243-9.83-5.174-24.32-9.314-8.28-9.313-20.18-19.663-20.18-19.663s.517-13.97 14.488-12.42c1.552 4.658 1.552 3.106 1.552 3.106s15.524-5.692 20.18 2.07c6.728-11.902 16.042-1.78 17.595 2.36 4.458.654 26.907 1.262 26.907 1.262s-2.588-4.657-1.035-4.14c1.552.518 13.97-4.656 13.454-6.208-.517-1.553-1.034-6.727 1.035-6.21s-17.593-2.588-28.46 5.693c-3.622-3.623-1.035-13.455-1.035-13.455l-32.08-6.726-1.554 8.28s-9.314 1.55-8.796-.518c.517-2.07-2.07 7.243-2.07 7.243s-12.42-3.104-12.42-3.62 3.623-18.63 3.623-18.112-10.35 1.035-24.838 11.902c-4.14-12.936-36.74-30.012-36.74-30.53z"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"m385.98 284.763-6.727 30.013m12.935-18.63-2.07 9.83m35.189-2.068-3.105 9.314m60.546 53.808c-.517 0-16.558 2.07-18.63 1.554-2.068-.517 25.357 8.28 25.357 11.9m-35.705-9.818s-16.04-10.348-18.628-9.314c-2.587 1.035 16.04-.517 17.594-2.07m-32.086-.52s-16.558.517-18.11-1.035 16.04 11.384 19.145 10.35m-33.118-16.569c-.518 0-11.385-4.14-16.04-5.176 4.138 4.14 7.243 9.833 17.592 11.902m2.588-13.446c-.518-1.035-20.698-7.245-20.698-10.35 4.656 1.553 11.383 3.622 17.592 2.07m110.221-15.528-2.07 9.314"}),(0,m.jsx)("path",{fill:"#ffc221",fillRule:"evenodd",strokeWidth:1.878,d:"M347.688 237.67s-21.734 18.628 0 29.494c1.034-7.244 2.587-8.278 2.587-8.278s18.11 6.726 28.977-9.315c-4.657-6.725-12.937-4.138-12.937-4.138s-17.076 0-18.628-7.76z"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"m365.8 245.954-15.006 12.936m61.222 76.91s3.46 3.814.354 8.47m72.45-4.652-5.692.52m-40.881-3.633 10.35 1.552m17.486-28.162s.29 10.46-8.427 10.17-5.812.29-5.812.29"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M472.774 308.148s3.487 1.162 2.616 3.778c-.872 2.614.87 10.17-9.298 17.434-10.753 2.324-9.59-9.007-9.59-9.007"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M476.55 311.346s6.392-3.777 7.264 2.325c.87 6.102-5.23 17.435-9.59 19.18-4.358 1.742-9.297-.292-8.717-3.197m18.889-15.688s5.813-4.65 7.555 1.452c1.745 6.103-4.648 19.76-7.264 20.05m7.837-20.051s2.907-1.453 4.94.29m-14.237 20.629c-1.162.29-6.102.58-7.845-3.196m-18.3-6.975c-.29 0-6.102.292-6.102.292m28.472 22.67-.58-9.59-2.325-3.195-4.068 4.068s-.583 9.59-2.326 10.46m2.327-10.76c-.292-.58-3.198-6.1-3.198-6.1l-4.94 6.1s-.58 8.72-2.324 9.592m2.318-9.887c0-.29-2.034-5.81-2.034-5.81s-5.81 3.196-6.392 5.52c-.58 2.325-.872 8.717-2.325 9.3m2.327-10.461s.582-5.23-1.162-5.23c-1.742 0-9.59 7.265-9.88 13.657"}),(0,m.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeLinejoin:"round",strokeWidth:1.878,d:"M348.402 237.825s2.905-2.906 3.777-6.392c.87-3.487-1.163-7.265 2.324-10.46 3.487-3.198 49.397-22.666 53.176-26.444 3.777-3.778 10.75-11.914 11.623-13.658.87-1.743 3.487 8.717-4.36 13.367 8.428-2.326 13.95-4.94 17.435-3.78-3.487 4.94-12.785 13.078-17.144 13.078 10.17-3.778 19.47-6.975 22.084-4.94s-12.495 12.204-18.597 12.785c10.17-2.615 23.83-6.683 25.572-2.325-5.52 1.744-3.78 3.195-15.11 9.59-1.453 1.163-8.717 1.452-8.717 1.452 8.717-.872 20.63-4.36 21.792 2.034-6.973 2.615-9.588 6.102-15.4 7.555-5.81 1.453-19.178 4.067-27.315 7.264-8.136 3.196-20.05 12.495-20.05 12.495s-25.86.87-25.86.58-4.94-11.914-5.23-12.205z"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M360.605 235.797s.29-5.81 2.906-7.845c2.616-2.034 15.693-6.975 18.6-11.333 2.904-4.36-4.36 7.554-3.198 10.75m-13.077-.292s6.393 2.326 4.94 7.265"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.631,d:"M373.39 230.422a4.794 4.794 0 1 1-9.59.001 4.794 4.794 0 0 1 9.591-.001z"}),(0,m.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeWidth:1.878,d:"m570.116 220.104 50.27 9.59s5.52-6.394 2.615-9.88c7.556-1.743 5.522-11.623 5.522-11.623s8.717-3.776 1.452-12.495c4.942-4.94-1.162-8.717-1.162-8.717s2.034-8.717-4.36-9.59c1.745-6.972-11.04-9.297-11.04-9.297s-26.443 7.265-45.04 7.847c6.102 6.102-2.325 9.88-2.325 9.88s4.94 3.486 3.487 6.392c-1.453 2.905.872 6.1-5.52 8.136 8.426 3.778-.873 10.17-.873 10.17s9.3 6.392 6.976 9.588z"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M565.17 209.356s44.46 5.23 46.494 5.23 9.88 2.616 11.333 5.23m-55.502-13.081 61.893 1.453m-61.598-2.903s58.698-3.487 62.766-9.59m-61.032-3.195s58.988-6.394 59.57-5.522m-61.599-1.744s57.244-9.007 57.825-7.555m-221.127-29.347s18.016 19.76 16.272 33.126"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M419.303 170.997s5.81 8.426 8.136 9.298 22.665 2.034 23.827 10.752c1.162 5.52-4.358 3.777-3.486 7.845 1.453 5.23 15.11 11.913 29.93 4.068m-13.655 4.07s12.203 18.017 30.22-1.45m-9.301 7.847s14.82 7.845 27.023-12.495M496.3 215.16s7.264 6.102 22.376-2.033m20.927-8.137s22.375 4.647 23.828 6.1m-15.404-11.032c.29 0 15.692.582 15.692.582m-25.285-9.303s26.733-1.743 30.22 3.778m-41.842-12.205s37.486 1.453 39.228 3.487m-30.804 34.863s6.393-1.743 7.265-.87m-21.788 16.562s8.426 7.265 19.18 4.068m-14.533 8.146s9.59 4.358 20.923 1.742m-17.723 5.512s9.588 6.393 15.98 5.23m-20.334-1.44s6.683 4.94 6.973 7.555m-16.269-1.751s2.033 10.46 9.298 14.237m-14.244-9.589s-3.196 13.658 4.94 22.084M501.54 281.41c0 .29-.58 6.393-.29 6.975m-52.015-59.857 15.692-.872s5.81-2.324 1.742-6.1m2.034 3.494c.292 0 14.82 1.16 18.598 5.52 3.778 4.358 8.428 13.075 11.042 14.53 2.616 1.45 3.197-.583 3.197-.583m-6.395-2.325s-7.845 13.368-1.743 17.436m-2.624-2.616s-6.973 9.3-1.453 13.948m-1.449-1.17s-5.52 9.008 1.163 15.11m-3.599-39.003c-.376.375-6.75 4.874-9 3.75m2.25 10.493s2.625 2.624 4.875 2.25M479 273.776l4.19 2.872m-3.626 7.566 3.624 2.186m-69.255-144.7s7.64 3.974 13.75 0c6.112-3.97 35.446-18.943 43.085-21.388 7.638-2.445 11.917-16.5 13.445-22.61M478.41 114.2l42.78-12.527s7.027-5.806 7.332-16.5m-3.062 11.611s42.778-4.278 42.778-20.167m-6.715 10.999S606.44 75.393 610.72 70.81"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M436.233 151.48s27.195-14.057 31.473-15.584c4.277-1.528 14.055-13.75-.61-13.75"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M449.376 156.98c.306 0 22.305-14.363 29.64-16.196 3.972-5.5 1.833-11.305-4.89-10.083"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M480.846 137.118c.612-.306 11.918-.612 7.945 8.25-5.802 4.278-30.86 16.806-30.86 16.806m17.111-34.529 47.67-15.89s3.973-8.25-1.832-9.472m39.727-14.363c0 .307 6.112 3.668 2.445 9.168-6.722 3.973-38.5 11.612-38.5 11.612m84.331-25.667L563.965 95.56m41.551-2.443-39.11 11.917m35.758-2.139-34.53 10.39m28.106-.613c-.917 0-25.667 7.64-25.667 7.64m20.173 0-15.89 6.417m11.917 2.138c-.61 0-13.75 5.805-13.75 5.805m9.777 1.223-12.22 5.805m-8.867 7.335s1.528.61 1.222 2.445m-32.087 14.36s5.195 1.834.306 6.723c-2.444 3.36-9.472 2.445-13.75 8.556m46.76-83.724s6.418 1.528 1.528 9.778c-12.834 4.89-38.807 12.833-38.807 12.833s-1.22 2.14-4.582 3.973c-3.36 1.832-40.334 12.22-40.334 12.22m84.336-29.332s7.028 3.056 0 8.25c-7.945 4.584-35.75 13.14-35.75 13.14s-.307 2.444-1.528 3.36c-1.223.917-37.89 13.14-37.89 13.14"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M567.636 115.116s7.334 2.14.917 8.25c-7.64 4.584-32.084 12.834-32.084 12.834s-2.445 3.056-6.418 4.278c-3.972 1.222-29.333 11.61-29.333 11.61m68.75-28.721c2.14.917 7.945 1.834.917 7.334-8.25 3.667-28.417 11.612-28.417 11.612l-1.834 3.36-32.083 13.75m63.249-27.805s3.054 3.667-3.668 7.945c-7.334 3.972-23.222 10.083-23.222 10.083m23.226-9.473s3.36 2.14-.915 5.195c-4.89 2.444-24.14 12.528-24.14 12.528l-12.528 8.25"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M523.63 112.06c0 .307 5.194 4.584 3.36 9.473 4.584 3.362 3.667 7.028 3.667 7.028s6.416 3.668 5.5 8.863c6.417 1.528 6.11 5.194 6.11 5.194l-2.138 3.36s6.415-.304.916 7.946c3.36 1.833 1.834 3.972 1.834 3.972m-1.839-3.666c-.917 0-22.305 7.944-27.806 12.833"}),(0,m.jsx)("path",{fill:"none",strokeWidth:1.878,d:"M489.41 144.757s6.418-.306 5.502 6.722c7.334-2.445 5.805 4.583 5.805 4.583s8.555-3.362 7.028 7.333c5.5-1.222 4.583 4.278 4.583 4.278s4.89-.306 4.89 2.444c3.36-3.055 7.028-1.527 7.028-1.527s2.444-3.36 5.805-2.444m-34.836-14.972c0 .61-28.723 16.5-28.723 16.5m34.218-11.307-21.696 13.445m29.034-6.722c0 .305-18.945 11.306-18.945 11.306m23.227-7.028s-13.444 11-16.5 10.39m21.08-7.028s-7.64 5.805-14.057 8.555m22.001-11s2.444 3.056-12.833 11"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3240.f86bdd91.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js deleted file mode 100644 index 2ecadabd74..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3330.c830e580.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3330"],{80377(i,l,s){s.r(l),s.d(l,{default:()=>h});var e=s(74848);s(47867);let h=i=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,e.jsxs)("defs",{children:[(0,e.jsx)("clipPath",{id:"cw_inline_svg__a",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})}),(0,e.jsx)("path",{id:"cw_inline_svg__b",d:"m0-1 .225.69H.95L.364.12l.225.69L0 .383-.588.81l.225-.692L-.95-.31h.725z"})]}),(0,e.jsxs)("g",{clipPath:"url(#cw_inline_svg__a)",transform:"scale(.94)",children:[(0,e.jsx)("path",{fill:"#002b7f",d:"M0 0h768v512H0z"}),(0,e.jsx)("path",{fill:"#f9e814",d:"M0 320h768v64H0z"}),(0,e.jsx)("use",{xlinkHref:"#cw_inline_svg__b",width:13500,height:9e3,x:2,y:2,fill:"#fff",transform:"scale(42.67)"}),(0,e.jsx)("use",{xlinkHref:"#cw_inline_svg__b",width:13500,height:9e3,x:3,y:3,fill:"#fff",transform:"scale(56.9)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3330.c830e580.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js deleted file mode 100644 index ace84ba212..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 334.67e5210f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["334"],{81101(l,i,e){e.r(i),e.d(i,{default:()=>s});var h=e(74848);e(47867);let s=l=>(0,h.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"#28ff09",fillOpacity:14.118,viewBox:"0 0 640 480",...l,children:(0,h.jsxs)("g",{fillOpacity:1,fillRule:"evenodd",children:[(0,h.jsx)("path",{fill:"#009a00",d:"M0 360h640v120H0z"}),(0,h.jsx)("path",{fill:"#00f",d:"M0 120h640v120H0z"}),(0,h.jsx)("path",{fill:"red",d:"M0 0h640v120H0z"}),(0,h.jsx)("path",{fill:"#ff0",d:"M0 240h640v120H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/334.67e5210f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js deleted file mode 100644 index 24b52b6ac3..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3379.f0e413e5.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3379"],{34915(e){e.exports={area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0}},53054(e,t,n){"use strict";let i;n.r(t),n.d(t,{withSSR:()=>q,getDefaults:()=>C,TransWithoutContext:()=>z,initReactI18next:()=>Y,withTranslation:()=>W,getI18n:()=>R,useTranslation:()=>H,date:()=>J,composeInitialProps:()=>F,Translation:()=>U,select:()=>Q,selectOrdinal:()=>ee,setI18n:()=>j,I18nContext:()=>V,time:()=>Z,number:()=>G,I18nextProvider:()=>K,plural:()=>X,Trans:()=>D,getInitialProps:()=>_,setDefaults:()=>S,useSSR:()=>M});var a=n(47867),r=n(34915),s=n.n(r),l=/\s([^'"/\s><]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function o(e){var t={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},n=e.match(/<\/?([^\s]+?)[/\s>]/);if(n&&(t.name=n[1],(s()[n[1]]||"/"===e.charAt(e.length-2))&&(t.voidElement=!0),t.name.startsWith("!--"))){var i=e.indexOf("--\x3e");return{type:"comment",comment:-1!==i?e.slice(4,i):""}}for(var a=new RegExp(l),r=null;null!==(r=a.exec(e));)if(r[0].trim())if(r[1]){var o=r[1].trim(),c=[o,""];o.indexOf("=")>-1&&(c=o.split("=")),t.attrs[c[0]]=c[1],a.lastIndex--}else r[2]&&(t.attrs[r[2]]=r[3].trim().substring(1,r[3].length-1));return t}var c=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,u=/^\s*$/,p=Object.create(null);let d=function(e,t){t||(t={}),t.components||(t.components=p);var n,i=[],a=[],r=-1,s=!1;if(0!==e.indexOf("<")){var l=e.indexOf("<");i.push({type:"text",content:-1===l?e:e.substring(0,l)})}return e.replace(c,function(l,c){if(s){if(l!=="")return;s=!1}var p,d="/"!==l.charAt(1),f=l.startsWith("\x3c!--"),g=c+l.length,m=e.charAt(g);if(f){var h=o(l);return r<0?i.push(h):(p=a[r]).children.push(h),i}if(d&&(r++,"tag"===(n=o(l)).type&&t.components[n.name]&&(n.type="component",s=!0),n.voidElement||s||!m||"<"===m||n.children.push({type:"text",content:e.slice(g,e.indexOf("<",g))}),0===r&&i.push(n),(p=a[r-1])&&p.children.push(n),a[r]=n),(!d||n.voidElement)&&(r>-1&&(n.voidElement||n.name===l.slice(2,-1))&&(n=-1==--r?i:a[r]),!s&&"<"!==m&&m)){p=-1===r?i:a[r].children;var y=e.indexOf("<",g),b=e.slice(g,-1===y?void 0:y);u.test(b)&&(b=" "),(y>-1&&r+p.length>=0||" "!==b)&&p.push({type:"text",content:b})}}),i};function f(){if(console&&console.warn){for(var e=arguments.length,t=Array(e),n=0;n()=>{if(e.isInitialized)t();else{let n=()=>{setTimeout(()=>{e.off("initialized",n)},0),t()};e.on("initialized",n)}},y=(e,t,n)=>{e.loadNamespaces(t,h(e,n))},b=(e,t,n,i)=>{N(n)&&(n=[n]),n.forEach(t=>{0>e.options.ns.indexOf(t)&&e.options.ns.push(t)}),e.loadLanguages(t,h(e,i))},v=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=t.languages[0],a=!!t.options&&t.options.fallbackLng,r=t.languages[t.languages.length-1];if("cimode"===i.toLowerCase())return!0;let s=(e,n)=>{let i=t.services.backendConnector.state[`${e}|${n}`];return -1===i||2===i};return(!(n.bindI18n&&n.bindI18n.indexOf("languageChanging")>-1)||!t.services.backendConnector.backend||!t.isLanguageChangingTo||!!s(t.isLanguageChangingTo,e))&&!!(t.hasResourceBundle(i,e)||!t.services.backendConnector.backend||t.options.resources&&!t.options.partialBundledLanguages||s(i,e)&&(!a||s(r,e)))},x=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return t.languages&&t.languages.length?void 0===t.options.ignoreJSONStructure?v(e,t,n):t.hasLoadedNamespace(e,{lng:n.lng,precheck:(t,i)=>{if(n.bindI18n&&n.bindI18n.indexOf("languageChanging")>-1&&t.services.backendConnector.backend&&t.isLanguageChangingTo&&!i(t.isLanguageChangingTo,e))return!1}}):(m("i18n.languages were undefined or empty",t.languages),!0)},E=e=>e.displayName||e.name||(N(e)&&e.length>0?e:"Unknown"),N=e=>"string"==typeof e,$=e=>"object"==typeof e&&null!==e,k=/&(?:amp|#38|lt|#60|gt|#62|apos|#39|quot|#34|nbsp|#160|copy|#169|reg|#174|hellip|#8230|#x2F|#47);/g,O={"&":"&","&":"&","<":"<","<":"<",">":">",">":">","'":"'","'":"'",""":'"',""":'"'," ":" "," ":" ","©":"\xa9","©":"\xa9","®":"\xae","®":"\xae","…":"…","…":"…","/":"/","/":"/"},w=e=>O[e],I={bindI18n:"languageChanged",bindI18nStore:"",transEmptyNodeValue:"",transSupportBasicHtmlNodes:!0,transWrapTextNodes:"",transKeepBasicHtmlNodesFor:["br","strong","i","p"],useSuspense:!0,unescape:e=>e.replace(k,w)},S=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};I={...I,...e}},C=()=>I,j=e=>{i=e},R=()=>i,T=(e,t)=>{if(!e)return!1;let n=e.props?e.props.children:e.children;return t?n.length>0:!!n},L=e=>{if(!e)return[];let t=e.props?e.props.children:e.children;return e.props&&e.props.i18nIsDynamicList?P(t):t},P=e=>Array.isArray(e)?e:[e],A=(e,t)=>{if(!e)return"";let n="",i=P(e),r=t.transSupportBasicHtmlNodes&&t.transKeepBasicHtmlNodesFor?t.transKeepBasicHtmlNodesFor:[];return i.forEach((e,i)=>{if(N(e))n+=`${e}`;else if((0,a.isValidElement)(e)){let{props:a,type:s}=e,l=Object.keys(a).length,o=r.indexOf(s)>-1,c=a.children;if(c||!o||l)if(!c&&(!o||l)||a.i18nIsDynamicList)n+=`<${i}>`;else if(o&&1===l&&N(c))n+=`<${s}>${c}`;else{let e=A(c,t);n+=`<${i}>${e}`}else n+=`<${s}/>`}else if(null===e)f("Trans: the passed in value is invalid - seems you passed in a null child.");else if($(e)){let{format:t,...i}=e,a=Object.keys(i);if(1===a.length){let e=t?`${a[0]}, ${t}`:a[0];n+=`{{${e}}}`}else f("react-i18next: the passed in object contained more than one variable - the object should look like {{ value, format }} where format is optional.",e)}else f("Trans: the passed in value is invalid - seems you passed in a variable like {number} - please pass in variables for interpolation as full objects like {{number}}.",e)}),n};function z(e){let{children:t,count:n,parent:i,i18nKey:r,context:s,tOptions:l={},values:o,defaults:c,components:u,ns:p,i18n:f,t:g,shouldUnescape:h,...y}=e,b=f||R();if(!b)return m("You will need to pass in an i18next instance by using i18nextReactModule"),t;let v=g||b.t.bind(b)||(e=>e),x={...C(),...b.options&&b.options.react},E=p||v.ns||b.options&&b.options.defaultNS;E=N(E)?[E]:E||["translation"];let k=A(t,x),O=c||k||x.transEmptyNodeValue||r,{hashTransKey:w}=x,I=r||(w?w(k||O):k||O);b.options&&b.options.interpolation&&b.options.interpolation.defaultVariables&&(o=o&&Object.keys(o).length>0?{...o,...b.options.interpolation.defaultVariables}:{...b.options.interpolation.defaultVariables});let S=o||void 0!==n||!t?l.interpolation:{interpolation:{...l.interpolation,prefix:"#$?",suffix:"?$#"}},j={...l,context:s||l.context,count:n,...o,...S,defaultValue:O,ns:E},z=I?v(I,j):O;u&&Object.keys(u).forEach(e=>{let t=u[e];"function"==typeof t.type||!t.props||!t.props.children||0>z.indexOf(`${e}/>`)&&0>z.indexOf(`${e} />`)||(u[e]=(0,a.createElement)(function(){return(0,a.createElement)(a.Fragment,null,t)}))});let V=((e,t,n,i,r,s)=>{if(""===t)return[];let l=i.transKeepBasicHtmlNodesFor||[],o=t&&new RegExp(l.map(e=>`<${e}`).join("|")).test(t);if(!e&&!o&&!s)return[t];let c={},u=e=>{P(e).forEach(e=>{N(e)||(T(e)?u(L(e)):$(e)&&!(0,a.isValidElement)(e)&&Object.assign(c,e))})};u(e);let p=d(`<0>${t}`),f={...c,...r},g=(e,t,n)=>{let i=L(e),r=h(i,t.children,n);return Array.isArray(i)&&i.every(a.isValidElement)&&0===r.length||e.props&&e.props.i18nIsDynamicList?i:r},m=(e,t,n,i,r)=>{e.dummy?(e.children=t,n.push((0,a.cloneElement)(e,{key:i},r?void 0:t))):n.push(...a.Children.map([e],e=>{let n={...e.props};return delete n.i18nIsDynamicList,(0,a.createElement)(e.type,{...n,key:i,ref:e.ref},r?null:t)}))},h=(t,r,c)=>{let u=P(t);return P(r).reduce((t,r,p)=>{let d=r.children&&r.children[0]&&r.children[0].content&&n.services.interpolator.interpolate(r.children[0].content,f,n.language);if("tag"===r.type){var y,b;let s,v=u[parseInt(r.name,10)];1!==c.length||v||(v=c[0][r.name]),v||(v={});let x=0!==Object.keys(r.attrs).length?(y={props:r.attrs},(s={...b=v}).props=Object.assign(y.props,b.props),s):v,E=(0,a.isValidElement)(x),k=E&&T(r,!0)&&!r.voidElement,O=o&&$(x)&&x.dummy&&!E,w=$(e)&&Object.hasOwnProperty.call(e,r.name);if(N(x)){let e=n.services.interpolator.interpolate(x,f,n.language);t.push(e)}else if(T(x)||k){let e=g(x,r,c);m(x,e,t,p)}else if(O)m(x,h(u,r.children,c),t,p);else if(Number.isNaN(parseFloat(r.name)))if(w){let e=g(x,r,c);m(x,e,t,p,r.voidElement)}else if(i.transSupportBasicHtmlNodes&&l.indexOf(r.name)>-1)if(r.voidElement)t.push((0,a.createElement)(r.name,{key:`${r.name}-${p}`}));else{let e=h(u,r.children,c);t.push((0,a.createElement)(r.name,{key:`${r.name}-${p}`},e))}else if(r.voidElement)t.push(`<${r.name} />`);else{let e=h(u,r.children,c);t.push(`<${r.name}>${e}`)}else if($(x)&&!E){let e=r.children[0]?d:null;e&&t.push(e)}else m(x,d,t,p,1!==r.children.length||!d)}else if("text"===r.type){let e=i.transWrapTextNodes,l=s?i.unescape(n.services.interpolator.interpolate(r.content,f,n.language)):n.services.interpolator.interpolate(r.content,f,n.language);e?t.push((0,a.createElement)(e,{key:`${r.name}-${p}`},l)):t.push(l)}return t},[])};return L(h([{dummy:!0,children:e||[]}],p,P(e||[]))[0])})(u||t,z,b,x,j,h),B=void 0!==i?i:x.defaultTransParent;return B?(0,a.createElement)(B,y,V):V}let V=(0,a.createContext)();class B{constructor(){this.usedNamespaces={}}addUsedNamespaces(e){e.forEach(e=>{this.usedNamespaces[e]||(this.usedNamespaces[e]=!0)})}getUsedNamespaces=()=>Object.keys(this.usedNamespaces)}let F=e=>async t=>{let n=e.getInitialProps?await e.getInitialProps(t):{},i=_();return{...n,...i}},_=()=>{let e=R(),t=e.reportNamespaces?e.reportNamespaces.getUsedNamespaces():[],n={},i={};return e.languages.forEach(n=>{i[n]={},t.forEach(t=>{i[n][t]=e.getResourceBundle(n,t)||{}})}),n.initialI18nStore=i,n.initialLanguage=e.language,n};function D(e){let{children:t,count:n,parent:i,i18nKey:r,context:s,tOptions:l={},values:o,defaults:c,components:u,ns:p,i18n:d,t:f,shouldUnescape:g,...m}=e,{i18n:h,defaultNS:y}=(0,a.useContext)(V)||{},b=d||h||R(),v=f||b&&b.t.bind(b);return z({children:t,count:n,parent:i,i18nKey:r,context:s,tOptions:l,values:o,defaults:c,components:u,ns:p||v&&v.ns||y||b&&b.options&&b.options.defaultNS,i18n:b,t:f,shouldUnescape:g,...m})}let H=function(e){var t,n,i,r;let s,l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},{i18n:o}=l,{i18n:c,defaultNS:u}=(0,a.useContext)(V)||{},p=o||c||R();if(p&&!p.reportNamespaces&&(p.reportNamespaces=new B),!p){m("You will need to pass in an i18next instance by using initReactI18next");let e=(e,t)=>N(t)?t:$(t)&&N(t.defaultValue)?t.defaultValue:Array.isArray(e)?e[e.length-1]:e,t=[e,{},!1];return t.t=e,t.i18n={},t.ready=!1,t}p.options.react&&void 0!==p.options.react.wait&&m("It seems you are still using the old wait option, you may migrate to the new useSuspense behaviour.");let d={...C(),...p.options.react,...l},{useSuspense:f,keyPrefix:g}=d,h=e||u||p.options&&p.options.defaultNS;h=N(h)?[h]:h||["translation"],p.reportNamespaces.addUsedNamespaces&&p.reportNamespaces.addUsedNamespaces(h);let v=(p.isInitialized||p.initializedStoreOnce)&&h.every(e=>x(e,p,d)),E=(t=l.lng||null,n="fallback"===d.nsMode?h:h[0],(0,a.useCallback)(p.getFixedT(t,n,g),[p,t,n,g])),k=()=>E,O=()=>{let e,t;return e=l.lng||null,t="fallback"===d.nsMode?h:h[0],p.getFixedT(e,t,g)},[w,I]=(0,a.useState)(k),S=h.join();l.lng&&(S=`${l.lng}${S}`);let j=(i=S,s=(0,a.useRef)(),(0,a.useEffect)(()=>{s.current=r?s.current:i},[i,r]),s.current),T=(0,a.useRef)(!0);(0,a.useEffect)(()=>{let{bindI18n:e,bindI18nStore:t}=d;T.current=!0,v||f||(l.lng?b(p,l.lng,h,()=>{T.current&&I(O)}):y(p,h,()=>{T.current&&I(O)})),v&&j&&j!==S&&T.current&&I(O);let n=()=>{T.current&&I(O)};return e&&p&&p.on(e,n),t&&p&&p.store.on(t,n),()=>{T.current=!1,e&&p&&e.split(" ").forEach(e=>p.off(e,n)),t&&p&&t.split(" ").forEach(e=>p.store.off(e,n))}},[p,S]),(0,a.useEffect)(()=>{T.current&&v&&I(k)},[p,g,v]);let L=[w,p,v];if(L.t=w,L.i18n=p,L.ready=v,v||!v&&!f)return L;throw new Promise(e=>{l.lng?b(p,l.lng,h,()=>e()):y(p,h,()=>e())})},W=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};return function(n){function i(i){let{forwardedRef:r,...s}=i,[l,o,c]=H(e,{...s,keyPrefix:t.keyPrefix}),u={...s,t:l,i18n:o,tReady:c};return t.withRef&&r?u.ref=r:!t.withRef&&r&&(u.forwardedRef=r),(0,a.createElement)(n,u)}return i.displayName=`withI18nextTranslation(${E(n)})`,i.WrappedComponent=n,t.withRef?(0,a.forwardRef)((e,t)=>(0,a.createElement)(i,Object.assign({},e,{forwardedRef:t}))):i}};function U(e){let{ns:t,children:n,...i}=e,[a,r,s]=H(t,i);return n(a,{i18n:r,lng:r.language},s)}function K(e){let{i18n:t,defaultNS:n,children:i}=e,r=(0,a.useMemo)(()=>({i18n:t,defaultNS:n}),[t,n]);return(0,a.createElement)(V.Provider,{value:r},i)}let M=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},{i18n:i}=n,{i18n:r}=(0,a.useContext)(V)||{},s=i||r||R();s.options&&s.options.isClone||(e&&!s.initializedStoreOnce&&(s.services.resourceStore.data=e,s.options.ns=Object.values(e).reduce((e,t)=>(Object.keys(t).forEach(t=>{0>e.indexOf(t)&&e.push(t)}),e),s.options.ns),s.initializedStoreOnce=!0,s.isInitialized=!0),t&&!s.initializedLanguageOnce&&(s.changeLanguage(t),s.initializedLanguageOnce=!0))},q=()=>function(e){function t(t){let{initialI18nStore:n,initialLanguage:i,...r}=t;return M(n,i),(0,a.createElement)(e,{...r})}return t.getInitialProps=F(e),t.displayName=`withI18nextSSR(${E(e)})`,t.WrappedComponent=e,t},Y={type:"3rdParty",init(e){S(e.options.react),j(e)}},J=()=>"",Z=()=>"",G=()=>"",Q=()=>"",X=()=>"",ee=()=>""}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3379.f0e413e5.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js deleted file mode 100644 index b034bb70c8..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3392.42b07d09.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3392"],{82963(c,s,t){t.r(s),t.d(s,{default:()=>e});var i=t(74848);t(47867);let e=c=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...c,children:[(0,i.jsx)("path",{d:"M0 320h640v160H0z"}),(0,i.jsx)("path",{fill:"#fff",d:"M0 160h640v160H0z"}),(0,i.jsx)("path",{fill:"#ce1126",d:"M0 0h640v160H0z"}),(0,i.jsxs)("g",{fill:"#fff",stroke:"#c09300",transform:"matrix(.8 0 0 .8 -40.004 .002)",children:[(0,i.jsx)("path",{strokeLinejoin:"round",strokeWidth:1.27,d:"m450.81 302.4 68.488 63.58-4.876-115.47c-.716-17.5-15.924-13.486-26.97-7.173-11.192 7.172-23.96 7.172-37.447 2.437-13.485 4.735-26.253 4.735-37.444-2.437-11.045-6.313-26.25-10.328-26.97 7.172l-4.878 115.47 70.098-63.58z"}),(0,i.jsx)("path",{id:"eg_inline_svg__a",fill:"#c09300",stroke:"none",d:"m393.47 246.49-4.734 112.32-8.035 7.168 4.88-115.47c2.294-1.578 6.313-4.017 7.89-4.017zm9.62 8.04-4.017 93.955-8.032 8.22 4.878-108.49c1.58 1.577 6.314 5.45 7.172 6.31zm8.75 7.17-3.155 78.362-6.455 6.31 4.018-89.406c1.574 1.578 4.73 3.874 5.592 4.734m9.47 4.02-3.156 66.787-6.313 5.12 3.157-74.345c1.58.717 4.735 2.438 6.313 2.438zm8.75 0-2.297 55.657-6.455 6.313 2.44-61.252c1.575 0 5.593 0 6.312-.718"}),(0,i.jsx)("use",{xlinkHref:"#eg_inline_svg__a",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 900 0)"}),(0,i.jsx)("path",{fill:"#c09300",strokeWidth:1.074,d:"m453.16 315.06 9.613 43.755-3.158 3.155-3.3-2.44-5.45-39.017 2.294 39.018-3.157 4.017-3.157-4.016 2.296-39.017-5.45 39.018-3.303 2.44-3.155-3.155 9.61-43.755h6.315z"}),(0,i.jsxs)("g",{id:"eg_inline_svg__b",fill:"none",strokeLinejoin:"round",strokeWidth:1.27,children:[(0,i.jsx)("path",{fill:"#fff",strokeWidth:1.189,d:"m428.48 295.84-19.08 67.705 26.255 4.018 11.188-50.924-18.363-20.8z"}),(0,i.jsx)("path",{d:"m422.17 318.94 2.296 5.593 12.405-11.848"}),(0,i.jsx)("path",{d:"m430.76 304.92 2.596 24.346 7.89-10.328m-3.156 4.012 4.31 14.875m1.69-5.465-8.718 13.24m2.72 13.217-2.79-13.198-2.437-13.424-5.84 7.91-2.562-9.12-8.174 8.385 4.156 15.252 5.738-9.435 3.155 9.612 5.89-9.163"}),(0,i.jsx)("path",{d:"m414.99 361.97 5.3-7.444 3.452 11.457 4.735-8.032 3.157 9.615"})]}),(0,i.jsx)("use",{xlinkHref:"#eg_inline_svg__b",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 900 0)"}),(0,i.jsxs)("g",{strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.27,children:[(0,i.jsx)("path",{strokeWidth:2.378,d:"M450 393.81c19.943 0 39.024-1.578 50.213-4.734 4.735-.86 4.735-3.298 4.735-6.455 4.736-1.577 2.295-7.17 5.595-7.17-3.3.863-4.016-5.594-8.033-4.73 0-5.598-5.596-6.314-10.33-4.74-9.47 3.16-26.255 3.876-42.18 3.876-15.924-.717-32.567-.717-42.18-3.875-4.733-1.574-10.326-.858-10.326 4.74-4.018-.864-4.736 5.593-8.034 4.73 3.3 0 .86 5.593 5.594 7.17 0 3.158 0 5.597 4.878 6.456 11.045 3.156 30.128 4.734 50.068 4.734z"}),(0,i.jsx)("path",{d:"M422.89 363.54c6.454.86 13.628 1.578 19.225.86 3.153 0 5.45 5.452-.863 6.314-5.593.715-14.345 0-19.08-.862-4.017-.718-12.768-2.295-18.364-3.876-5.594-2.436-1.576-7.168 1.578-6.452 4.88 1.577 11.192 3.157 17.505 4.016zm54.23 0c-6.457.86-13.628 1.578-19.08.86-3.302 0-5.597 5.452.716 6.314 5.596.715 14.347 0 19.078-.862 4.02-.718 12.77-2.295 18.364-3.876 5.597-2.436 1.58-7.168-1.577-6.452-4.877 1.577-11.19 3.157-17.5 4.016z"}),(0,i.jsx)("path",{d:"M403.09 360.39c-4.877-.86-7.172 4.732-5.593 7.887.717-1.578 4.017-1.578 4.735-3.155.858-2.437-.718-2.437.858-4.732m19.08 14.67c0-3.153 3.155-2.765 3.155-5.921 0-1.578-.86-4.02-2.437-4.02-1.58 0-3.158 1.58-3.158 3.157-.718 3.157 2.44 3.63 2.44 6.783zm22.71-9.08c4.73 0 4.262 6.314 1.966 9.47 0-2.295-4.017-3.156-4.017-4.732 0-2.442 3.625-2.442 2.05-4.738zm52.03-5.59c4.878-.86 7.174 4.732 5.595 7.887-.718-1.578-4.017-1.578-4.734-3.155-.86-2.437.72-2.437-.86-4.732zm-19.08 14.67c0-3.153-3.153-2.765-3.153-5.921 0-1.578.86-4.02 2.438-4.02 1.577 0 3.156 1.58 3.156 3.157.72 3.157-2.44 3.63-2.44 6.783zm-22.71-9.08c-4.732 0-4.263 6.314-1.967 9.47 0-2.295 4.015-3.156 4.015-4.732 0-2.442-3.626-2.442-2.048-4.738"}),(0,i.jsx)("path",{strokeWidth:.891,d:"M404.67 361.97c1.58 0 4.018.718 4.735 1.577l-4.74-1.58zm7.88 2.44c.862 0 4.018.716 5.596 1.575l-5.6-1.58zm28.7 3.15c-1.578 0-4.734 0-5.593.715l5.59-.72zm-8.75 0c-.86-.862-4.016-.862-5.593 0h5.59zm62.84-5.59c-1.578 0-3.875.718-4.735 1.577zm-7.89 2.44c-.86 0-4.017.716-5.595 1.575l5.6-1.58zm-28.7 3.15c1.58 0 4.735 0 5.595.715l-5.6-.72zm8.75 0c.86-.862 4.018-.862 5.595 0h-5.6z"}),(0,i.jsxs)("g",{fill:"#c09300",stroke:"none",children:[(0,i.jsx)("path",{d:"M403.34 374.58c-.534-.102-.815-.525-.68-1.025.164-.61.65-.957 1.112-.794.294.105.83.646.832.84.003.222-.28.752-.402.754-.053 0-.135.046-.182.102-.1.118-.413.175-.68.124zm54.93 3.92c-.2-.074-.515-.518-.515-.724.002-.387.574-1.018.93-1.02.174-.002.654.247.833.433.325.337.254.892-.154 1.207-.2.155-.8.212-1.094.103zm.36 2.48c-.42-.142-.574-.348-.608-.814-.036-.485.012-.56.525-.84l.365-.2.347.155c.478.215.692.446.71.768.017.348-.24.704-.64.883-.353.16-.374.16-.7.05z"}),(0,i.jsx)("path",{d:"M407.75 370.09c-.346-.01-.82.307-1.094.47-.65.15-1.404.55-2.03.124-.618-.19-1.44-.04-1.532.718.158.652 1.07 1.025 1.625.594.41-.537 1.53-.853 1.655.063-.457.69-.405 1.608-.78 2.343-.062.457-.253.892-.5 1.28-.463.047-.955-.007-1.345.282-.626.034-1.265.345-1.625.875-.403.578-.79 1.165-.906 1.875.106.725.936.933 1.56.97.668.182 1.336.423 2 .624 1.087.242 2.103.634 3.19.874 1.583.477 3.247.697 4.842 1.125.168.054.325.103.5.124.663.137 1.008-.583 1.063-1.125.33-1.16.58-2.34.906-3.5.226-.467.498-1.518-.405-1.282-.515.308-.952.773-1.594.812-.873.05-.374.945-.03 1.313.076.587-.11 1.288-.5 1.75-.52.33-1.172-.057-1.72-.188-.573.01-1.722-.283-1.186-1.062.19-.577.207-1.21.437-1.782.295-.613.337-1.284.47-1.936-.36-.777-.98.256-1.47.344-.337.234-1.604.334-.936.937.575.437.134 1.197.03 1.75-.036.77-.837.954-1.468.78-.628-.03-1.5-.496-.97-1.186.122-.576.323-1.14.44-1.72.236-.698.436-1.363.686-2.062.11-.62.33-1.208.625-1.75.018-.686.478-1.276.47-1.97-.048-.338-.2-.46-.407-.468zm-3.594 7.25a.35.35 0 0 1 .22.03c.25.107.256.31 0 .532-.113.097-.24.19-.282.188-.468-.04-.606-.11-.625-.28-.02-.152.03-.196.342-.345a1.5 1.5 0 0 1 .344-.125zm-1.036 5.02c-.496-.466-.416-.806.317-1.353.314-.234.505-.208.863.12.553.504.575.823.087 1.255-.24.213-.346.257-.627.26-.293.003-.376-.034-.64-.282m3.05.92a.86.86 0 0 1-.623-1.088c.13-.434.203-.477.84-.483.716-.008.854.11.86.74.005.355-.022.437-.2.6a1.07 1.07 0 0 1-.877.23zm89.11.08c-.227-.19-.273-.274-.275-.515-.003-.41.233-.712.746-.944.683-.307.96-.265 1.217.187.342.6.325.847-.084 1.252-.225.223-.268.236-.785.24-.507.004-.565-.01-.818-.22zm-85.06 1.15c-.364-.097-.552-.37-.557-.807-.004-.334.02-.387.253-.57.152-.118.39-.22.58-.245.266-.037.363-.013.578.138.55.387.668.77.35 1.14-.34.397-.663.488-1.204.344m21.92.98c-.08-.1-.26-.16-.278-.287.032-.555.06-1.117.236-1.648.096-.523.012-1.07.194-1.58.187-.926.187-1.88.402-2.802.01-.475.055-.95.193-1.406.157-.722.013-1.476.226-2.19-.023-.267.285-.983.556-.56.393.578.91 1.046 1.42 1.517.438.252.036.624-.266.75-.416.163-.517.62-.487 1.022-.058.414-.225.806-.242 1.23-.087.622-.07 1.254-.15 1.876-.183.61-.114 1.26-.174 1.888.01.398-.18.76-.155 1.16-.048.406-.066.894-.407 1.172-.33.166-.804.138-1.068-.142m29.7-9.8c-.482.365-.914.795-1.344 1.22-.592.448.487.71.625 1.093.158.586.15 1.21.19 1.812.178.552.257 1.138.217 1.72-.05.62-.863.49-1.218.843-.493.207-.69.69-1.064 1.03-.246.484-.312 1.077-.344 1.626.036.448-.302.95 0 1.344.04.055.086.132.125.187.102.145.343.03.5.063.504-.03 1.03.047 1.5-.157 1.21-.208 2.432-.225 3.657-.28.75.024 1.47-.237 2.218-.22.587.13.85-.505.844-.967-.332-.654-.045-1.43-.312-2.094-.235-.674-.143-1.43-.25-2.126-.015-.55-.71-.752-1.063-.344-.34.345-.892.414-1.155.844-.297.602.627.603.78 1.062.177.465.12.98.157 1.47.115.592-.53.625-.937.687-.537.2-1.29.336-1.594-.313-.19-.48-.164-.993-.218-1.5-.013-.892-.227-1.768-.28-2.656-.052-1.097-.242-2.187-.313-3.28-.01-.457-.072-1.2-.72-1.064zm-.625 8.25.313.03.03.376.032.375-.406.126a3 3 0 0 1-.407.094 3 3 0 0 1-.187-.125c-.22-.16-.164-.385.125-.688.163-.17.24-.203.5-.187zm-29.965-9.28c-.38.135-.862.693-1.25.688-.88.062-.757.92-.125 1.218.083.26.005.588.03.875.124.79-.374 1.426-.28 2.22-.044.87-.307 1.718-.344 2.594-.246.903-.25 1.832-.405 2.75-.104.823-.7.533-1.22.312-.003-.356-.026-.705-.03-1.062.216-.817-.44-1.056-1.094-1.156-.685.065-1.022-.523-.874-1.125.295-.35 1.036-.254 1.5-.313.98.204.942-1.112.438-1.562-.345-.636-1.2-.91-1.438-1.563.096-.866-.48-1.732-1.187-2.156-1.09-.077-1.912.862-2.314 1.78-.452.13-.904.267-1.344.438-.71.177-1.72 1.407-.75 1.875.545.15 2.2.528 1.47 1.28-.413.708-1.202.72-1.907.532-.724 0-1.53-.352-1.5-1.187-.148-.75-.123-1.558-.47-2.25-.147-.84-1.1-.643-1.155.125-.733.534-.636 1.397-.125 2.03.32.73.003 1.578-.313 2.25-.19.876-1.155.906-1.843 1.188-.34.132-1.63-.077-1.158.658.754.265 1.653.505 2.438.312.823-.102 1.538-.665 1.938-1.375.552-.56 1.502-.267 2.218-.28.773-.003 1.563.54 2.313.186.216-.563 1.22-1.494 1.53-.53-.053.863.71 1.326 1.5 1.22.864-.05.544.61.53 1.124.058.934.66 1.425 1.44 1.812.264.072.544.048.81 0 .75-.235 1.555-.568 1.782-1.406.304-.68.31-1.45.532-2.156.177-1.13.406-2.26.437-3.406.277-1.04.198-2.136.407-3.188.133-.782.23-1.563.313-2.344-.092-.417-.272-.487-.5-.406zm-6.78 4.156c.15.02.234.204.25.53.015.366.205.662.436.72.183.046.167.24-.03.375-.116.08-.322.128-.688.126-.578-.003-.937-.153-1.25-.47l-.188-.186.28-.188c.143-.108.4-.332.564-.5.285-.29.473-.424.625-.406zm66.03-7.876a8.4 8.4 0 0 0-1.656.25c-1.04-.065-1.563 1.027-.563 1.563.603 1.534 1.542-.317 2.5-.188 1.44.28 1.56 1.832 1.783 3 .08 1.157.414 2.282.75 3.375.962 1.07-.72 1.74-1.438.906-.61-.664-1.92-1.48-2.656-.562-.905.382-.942 1.59-1.69 1.937-1.208.37-1.36-1.118-2-1.75-.586-.823-1.71-.895-2.624-1.186-.43-.87-.205-2.346-1.094-2.938-.745.304-2.113 1.702-.968 2.344 1.117.96-.488 1.4-1 2.063-.732.814-.85 1.936-.97 2.968-1.258.697-1.503-.786-1.655-1.717-.1-1.112-1.037-.786-1.69-.375-.95.385-1.427 1.29-2.092 2-.08.647.037 1.356.03 2.03.217.812 1.203.43 1.813.376.98-.41 1.38.627.595 1.22-.532.675-2.22.32-2.063 1.405.544.062 1.11.042 1.657 0 1.09-.3 2.26-1.07 2.374-2.282.143-1.06 1.667-.866 2.5-1.094 1.04-.3 2.294-.377 2.53.937.71.746 2.25 1.585 3.032.564.795-.485 1.176-1.338 1.125-2.25-.16-.785 1.27-.813 1.626-.375.52.857 2.15.604 2.938.124.836-.617 1.017-1.705 2.218-1.72 1.783-.533 3.635-.84 5.375-1.5 1.41-.306-.21-1.197-.562-1.718-1.074-.53-2.008 1.642-3.22.563-.935-.717-.87-2.078-1.218-3.126-.237-1.358-.177-2.923-1.156-4-.67-.715-1.585-.887-2.53-.844zm-6.813 9.47c.126-.004.268.058.5.186.44.242.75.643.75.97 0 .212-.054.226-.375.374-.197.09-.42.19-.5.188-.18-.002-.624-.357-.625-.5 0-.06-.058-.287-.125-.47-.117-.32-.1-.316.063-.53.103-.138.187-.216.313-.22zm6.532.343c.37-.025.592.09.75.375.18.33.057.58-.408.78-.203.09-.407.16-.437.157s-.198-.102-.375-.22c-.27-.176-.31-.263-.313-.467-.003-.316.35-.597.782-.625zm-8.94.093c.11-.017.21.04.345.156.18.155.237.28.28.594.033.22.028.502 0 .625-.047.227-.052.217-.56.22-.642.006-.7-.064-.69-.656.01-.377.013-.478.22-.688.16-.162.297-.233.406-.25zm-5.5 1.438a.57.57 0 0 1 .44.437c.064.32.007.463-.25.595-.223.113-.735.15-.876.063a.6.6 0 0 1-.188-.188c-.068-.12-.055-.18.03-.25.062-.05.127-.12.126-.156 0-.037.068-.163.157-.28a.54.54 0 0 1 .56-.22zm9.25 1.187c.18 0 .33.062.44.157.184.163.178.4-.033.563-.135.104-.87.095-1.125 0-.112-.042-.155-.1-.156-.22-.002-.14.038-.226.28-.343.206-.097.417-.155.595-.156zm-17.169 4.819c-.096-.063-.238-.117-.095-.222.173-.302.518-.407.825-.52a3.44 3.44 0 0 0 1.373-1.118c.05-.333.424-.513.422-.86.003-.476.032-.963-.084-1.427-.128-.426-.45-.752-.826-.974-.256-.203-.674-.26-.768-.615-.053-.343.253-.604.36-.91.223-.42.41-.863.65-1.275.26-.288.66-.015.794.263.19.277.357.576.45.897.303.332.57.72.68 1.162.148.31.383.602.37.966 0 .416.234.787.22 1.206.013.56.012 1.145-.192 1.674-.14.294-.42.47-.607.733-.318.296-.67.58-1.08.737-.288.092-.456.426-.818.345-.514.01-1.037.08-1.547-.004.032.054-.156-.092-.125-.058zm-6.85.45c-.243-.25-.295-.355-.298-.6-.003-.248.045-.346.282-.586.44-.443.653-.453 1.41-.07.722.365.967.4 1.032.14.062-.25.478-.48.874-.48a.82.82 0 0 1 .592.202c.25.196.263.227.27.68.004.463-.002.48-.29.736-.278.244-.323.26-.666.224-.437-.043-.7-.244-.77-.588-.052-.25-.14-.31-.206-.14-.02.055-.13.122-.24.15-.203.05-.548.268-.793.5-.093.087-.255.128-.52.13-.354.004-.404-.017-.677-.298m-19.82-8.9c-.665.007-1.38.566-1.47 1.22.153.75.778 1.488.376 2.28.278 1.013-.76 1.397-1.47.813-.426-.972-.642-2.036-1.28-2.907-.804-.227-1.154 1.057-1.72 1.5.28.755 1.097 1.433 1.19 2.375.194.916-.362 1.932-1.157 2.407-.687.655-1.627.42-2.47.563-1.024.6.752.818 1.22.844 1.046.106 2.134-.032 2.905-.813.77-.366.71-1.696 1.625-1.843 1.588-.07 3.163.244 4.75.282.85.202 2.163-.102 2.75.53.002 1.107.94 1.79 1.844 2.22.498.137 1.024-.48 1.53-.595.966-.308.673-1.502 1.25-1.97 1.65-.088 3.317-.07 4.97-.093.314.008.407-.44.625-.625-.038-.638-.06-1.272-.158-1.906-.318-.805.052-1.843-.53-2.53-.83-.226-1.537.534-2.376.594-.926.412-1.706 1.268-1.75 2.312-.548.897-1.427-.16-1.125-.906-.033-.325.072-.704-.03-1-.507-.608-1.395-.41-2.094-.5-1.018.04-2.012-.18-3.03-.156-.894-.068-1.823.078-2.688-.156-1.032-.03-.89-1.04-1.063-1.75a1.02 1.02 0 0 0-.625-.188zm2 3.688c.343.006.667.05 1 .093.43.072.89-.147 1.313 0 .976.167 1.953.128 2.937.22.26-.004.446.185.625.344.002.683 0 1.38 0 2.062-.03.258.076.598-.156.78a.7.7 0 0 1-.25.126c-.272-.07-.56-.247-.69-.5-.04-.357.02-.704.032-1.062-.007-.093.04-.237 0-.313a1.25 1.25 0 0 0-.718-.25c-.85-.03-1.682-.09-2.53-.125-.708-.044-1.435.06-2.127-.125-.268-.097-.617-.064-.78-.343-.235-.273.103-.597.343-.72a2.3 2.3 0 0 1 1-.187zm11.28.25c.16-.003.21.05.282.343.046.19.1.418.125.5.037.12-.022.157-.187.22-.494.186-.986.168-1.156-.063-.078-.104.012-.434.156-.562.29-.26.61-.437.78-.438"})]})]}),(0,i.jsx)("path",{strokeWidth:1.15,d:"M449.98 327.23c32.642-25.106 29.843-61.883 29.843-61.883-.86.172-1.68.258-2.54.258-6.848 0-23.18-3.917-26.99-8.892-4.08 4.503-20.77 8.892-27.573 8.892-.86 0-1.722-.086-2.54-.258 0 0-2.843 36.776 29.8 61.883z"}),(0,i.jsx)("path",{strokeWidth:.916,d:"M477.22 268.04q-.42.026-.848.026c-6.205 0-20.62-3.183-26.175-7.957-5.82 4.41-20.47 7.956-26.576 7.956a4.7 4.7 0 0 1-.848-.086c-.015 1.39.058 2.832.144 4.144.323 4.9 1.183 9.82 2.488 14.552 4.108 14.895 12.516 27.553 24.572 37.155 12.066-9.61 20.484-22.28 24.6-37.185 1.308-4.732 2.17-9.65 2.496-14.55.086-1.285.157-2.692.148-4.055z"}),(0,i.jsx)("path",{fill:"#c09300",stroke:"none",d:"M439.38 265.03c-5.872 1.845-12.23 3.03-15.75 3.03-.286 0-.563-.04-.844-.093-.014 1.39.07 2.846.156 4.157a72.8 72.8 0 0 0 2.47 14.53c2.764 10.026 7.506 19.033 13.968 26.782zm20.62-.09v49.25c6.794-7.92 11.733-17.206 14.594-27.562a73 73 0 0 0 2.47-14.53c.084-1.285.165-2.7.155-4.064-.282.018-.56.032-.845.032-3.73 0-10.42-1.17-16.375-3.125z"}),(0,i.jsxs)("g",{strokeWidth:1.27,children:[(0,i.jsx)("path",{strokeWidth:1.218,d:"M462.31 253.09c.667.04-.902-3.568-.902-3.568 1.765 1.804 8.43 2.235 8.43 2.235-4-1.766-7.998-15.096-7.528-25.72.432-10.665-1.528-14.86-3.097-16.43-2-2-8.43-3.763-12.664-3.998-2.393-.12-2 1.802-2 1.802-4.43-1.137-8.86-1.568-10.862-.235-1.882 1.255-2.274 7.528-.9 6.43 3.33-2.666 6.233-.235 8.232 2.666 1.764 2.55 1.647 9.763-.902 18.192-2.666 8.86-9.96 17.722-9.96 17.722 3.96 0 9.53-3.528 9.53-3.528l-1.334 5.527c4.195-2 7.528-5.097 7.528-5.097l4 4.195c1.332-1.764 3.998-4.195 3.998-4.195s3.333 3.53 8.43 4z"}),(0,i.jsx)("path",{fill:"none",d:"M446.12 227.57s-2.235 16.428-6.43 21.094m9.96-21.524s-.863 16.623-3.764 21.956m6.894-21.286s0 18.192 1.098 21.29m2.862-20.39s.902 15.29 4.666 20.82"}),(0,i.jsx)("path",{fill:"#c09300",strokeWidth:.354,d:"M442.08 219.61c-.196-1.45-.55-2.588-1.06-3.333-1.998-2.9-4.9-5.332-8.232-2.666 0 0 1.137-3.528 3.568-3.645 1.882-.118 6.155 1.41 9.92 7.84 0 0-2.784-.626-3.45-.038-1.256 1.098-.746 1.843-.746 1.843z"}),(0,i.jsx)("path",{fill:"#c09300",strokeWidth:.354,d:"M432.44 209.26c.274-.902.706-1.725 1.255-2.078 2-1.333 6.43-.902 10.86.235 0 0-.392-1.92 2-1.803 4.234.235 10.664 2 12.663 4 .47.51 1.02 1.254 1.49 2.39h-.078c-.98-1.372-3.764-1.293-4.43-1.215-1.06.117-1.726.077-3.138.43-.666.157-1.686.353-2.235.784-.43.353-.784 1.647-1.45 1.647-1.06 0-.98-.273-1.255-.587-.353-.43-.55-1.06-.902-1.02-1.097.197-2.862-.666-5.096-2.43s-3.098-2.196-6-2c-2.86.235-3.763 1.843-3.763 1.843l.08-.196z"}),(0,i.jsx)("circle",{cx:448.824,cy:210.672,r:1.176,stroke:"none"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3392.42b07d09.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js deleted file mode 100644 index 75f0fc65ea..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3396.4cc8f904.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3396"],{90847(e,l,i){i.r(l),i.d(l,{default:()=>t});var s=i(74848);i(47867);let t=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#00267f",d:"M0 0h213.337v480H0z"}),(0,s.jsx)("path",{fill:"#f31830",d:"M426.662 0H640v480H426.662z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3396.4cc8f904.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js deleted file mode 100644 index 00c61da5ba..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3406.86351b7b.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3406"],{5037(l,e,i){i.r(e),i.d(e,{default:()=>h});var s=i(74848);i(47867);let h=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"gw_inline_svg__a",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M0 77.588h503.67v377.75H0z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#gw_inline_svg__a)",transform:"translate(0 -98.59)scale(1.27)",children:[(0,s.jsx)("path",{fill:"#fff41e",d:"M159.45-60.328h375.7v327.84h-375.7z"}),(0,s.jsx)("path",{fill:"#1f7848",d:"M207.32 258.67H512v253.07H207.32z"}),(0,s.jsx)("path",{fill:"#e80006",d:"M0 0h207.32v512H0z"}),(0,s.jsx)("path",{d:"m160.61 325.58-55.86-39.888-55.587 40.28 20.674-65.457-55.485-40.42 68.645-.563 21.29-65.258 21.748 65.108 68.645.086-55.2 40.8z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3406.86351b7b.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js deleted file mode 100644 index cd4ee0c846..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 35.d81ad3e5.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["35"],{90638(e,l,i){i.r(l),i.d(l,{default:()=>h});var s=i(74848);i(47867);let h=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v479.997H0z"}),(0,s.jsx)("path",{fill:"#00267f",d:"M0 0h213.331v479.997H0z"}),(0,s.jsx)("path",{fill:"#f31830",d:"M426.663 0h213.331v479.997H426.663z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/35.d81ad3e5.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js deleted file mode 100644 index e15056febf..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3528.60fd342c.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3528"],{12699(e,h,s){s.r(h),s.d(h,{default:()=>l});var i=s(74848);s(47867);let l=e=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 640 480",width:"1em",height:"1em",...e,children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#ce1124",d:"M281.6 0h76.8v480h-76.8z"}),(0,i.jsx)("path",{fill:"#ce1124",d:"M0 201.6h640v76.8H0z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3528.60fd342c.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js deleted file mode 100644 index 74e40fc63d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3548.133939a2.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3548"],{30295(t,r,s){s.r(r),s.d(r,{default:()=>h});var x=s(74848);s(47867);let h=t=>(0,x.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,x.jsx)("path",{fill:"#67b1ff",fillRule:"evenodd",d:"M0 0v480h640V0z"}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{fill:"#0000b4",fillRule:"evenodd",d:"M0 0h431.43v277.167H0z"}),(0,x.jsx)("path",{fill:"#fff",d:"M0 0v30.99l383.195 246.18h48.234v-30.988L48.233 0zm431.43 0v30.988L48.233 277.17H0v-30.987L383.195 0h48.234z"}),(0,x.jsx)("path",{fill:"#fff",d:"M179.762 0v277.17h71.905V0zM0 92.39v92.39h431.43V92.39z"}),(0,x.jsx)("path",{fill:"#c00",d:"M0 110.87v55.433h431.43V110.87zM194.143 0v277.17h43.143V0zM0 277.17l143.81-92.39h32.155l-143.81 92.39zM0 0l143.81 92.39h-32.156L0 20.66zm255.463 92.39L399.273 0h32.156L287.62 92.39zM431.43 277.17l-143.81-92.39h32.155l111.654 71.733v20.658z"})]}),(0,x.jsxs)("g",{fillRule:"evenodd",children:[(0,x.jsx)("path",{fill:"#fff",d:"M391.43 137.047V296.31c20.534 111.483 56.467 127.41 102.667 159.262 46.2-31.853 82.132-47.78 102.666-159.263V137.046H391.43z"}),(0,x.jsx)("path",{fill:"#da0000",d:"m480.408 137.047.215 309.49 13.69 8.987L508 446.288l-.214-309.236h-27.378z"}),(0,x.jsx)("path",{fill:"#da0000",d:"m391.43 297.99 10.27 43.38 185.335-.12 9.73-43.26H391.433zm0-160.943h205.333V248.53H391.43z"}),(0,x.jsxs)("g",{transform:"matrix(.28 0 0 .4 309.75 297.89)",children:[(0,x.jsx)("rect",{width:46.45,height:55.978,x:306.09,y:-281.68,fill:"#f6efec",stroke:"#000",strokeWidth:.75,rx:23.225,ry:27.989}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.875,d:"M850.4-296.57s47.64-3.573 64.315-22.63-11.314-53.596 6.55-57.17c7.147-.595 17.27 1.788 25.012 11.315-1.19-7.145-5.955-11.314-7.74-15.48-6.552-5.958-13.103-5.362-22.63-5.362-6.552 1.192-7.743-1.192-18.46-13.697-5.36-5.955-5.36-20.842-1.193-30.966-12.505 9.528-10.123 22.628-8.932 25.606 2.977 13.102 5.955 16.675 5.955 22.63-3.573-1.786-10.124-17.27-44.068-19.652-33.946-2.382-119.7 23.82-158.41 23.82s-94.688-16.078-94.688-16.078 14.292-11.315-2.978-16.08c-17.27-4.763-55.382 16.676-66.102 4.765-7.74-11.314-4.764-8.932-5.955-14.29-2.977 1.785-4.764 8.932-.595 18.46 4.168 9.528 6.55 6.55 5.955 6.55-.596 0-13.697 0-14.888 4.765-1.192 3.572-2.98 7.74 3.572 20.842 2.382-13.1-6.55-14.887 13.1-16.078 19.654-1.192 33.35 7.74 50.024 10.718 16.675 2.978 16.675-7.146 17.27-6.55.596.595 51.214 14.292 97.664 11.314s121.49-28.585 156.02-23.225c34.54 5.36 57.17 30.37 57.765 53.596-.595 14.292-15.483 21.438-27.393 23.82-14.292 2.382-47.64 5.956-47.64 5.956l18.46 13.1z",transform:"matrix(.88 0 0 .7 113.77 -89.63)"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.5,d:"M683.06-248.92c-.596 0-32.754.596-42.282 14.292s-13.697 26.8-13.1 26.8c.594 0 21.437-11.316 21.437-11.316s-15.483 22.63-7.146 42.877-22.01 19.056-39.508 19.65c-7.742-5.954-32.473-16.078-41.292-17.864-5.507-2.085-16.32-2.354-27.616 10.346-6.653 7.83 9.888-7.37 26.295-6.178 1.773 1.786 2.915 3.574 3.23 7.74-8.74-.594-17.84-10.718-28.558 10.125 10.72-7.146 12.06-6.997 17.493-7.444 7.24-.537 6.31 3.275 6.01 3.275-1.19 0-4.144.595-8.616 4.764-2.383 2.976-8.338 9.527-7.147 9.527s4.752-3.573 10.327-6.55c3.484-2.383 6.793-2.383 17.322.595 57.765 13.696 88.73 3.573 92.304-1.787 1.787-2.38-33.35-69.675 60.147-87.54-1.19-.596-39.303-10.72-39.303-11.315z",transform:"matrix(.85 0 0 1 231.25 -38.11)"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.625,d:"M472.84-212.6c32.753 27.394 253.69-29.18 281.68-48.832 16.08-11.315 44.068-19.652 44.068 19.056 7.146-26.203 7.147-32.753 7.147-32.158.595.596 11.314 10.125 20.843 42.283 2.382-28.587-4.17-45.26-.596-42.88 2.382-2.38 2.382 14.293 21.438 37.518-4.168-18.46-5.36-26.798-5.36-26.798s35.732 34.54 55.98 39.304 49.427-9.528 58.36-1.19c8.932 8.337 24.418 23.224 23.818 35.135-.59 11.91-33.347 1.785-36.92 11.313-3.573 9.53 2.382 9.53 2.382 9.53s2.977 7.145 5.36 13.1c1.786-4.17-1.787-13.102 4.764-13.697 4.764.595 4.764 8.337 5.955 12.506 1.388-4.764-.2-14.292 4.168-14.292 4.764-.993 5.36 7.543 8.932 13.1v-13.1c13.698-4.17 25.604-4.764 27.394-13.697 1.78-8.933-20.846-29.18-26.206-42.282-5.356-13.1 4.17-18.46-5.952-25.606s-48.832 11.315-66.697 4.17c-17.867-7.147-10.72-58.362-78.014-69.676s-249.52 59.55-281.68 62.53c-32.158 2.976-71.46-10.125-71.46-10.125l.594 54.787z"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.5,d:"M420.43-263.22s-28.585-37.518-51.81-41.09c-23.225-2.978-45.855 14.292-50.62 11.91-4.763-2.383-6.55.596-9.527 5.955-2.978 5.36.596 8.932.595 8.337 1.19 0 4.17-8.933 5.36-9.528 1.192-.596-5.955 10.72 1.192 11.91 2.382.596 3.573-8.337 6.55-11.91.596.595-4.764 12.506-1.786 13.1 2.977.597 6.55-11.91 11.91-14.887 7.742-5.36 19.056-7.147 33.35-7.146 14.29 4.17 43.47 38.71 46.45 38.113z",transform:"matrix(.98 .23 .18 -1.25 64.17 -655.73)"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.5,d:"M420.43-263.22s-28.585-37.518-51.81-41.09c-23.225-2.978-45.855 14.292-50.62 11.91-4.763-2.383-6.55.596-9.527 5.955-2.978 5.36.596 8.932.595 8.337 1.19 0 4.17-8.933 5.36-9.528 1.192-.596-5.955 10.72 1.192 11.91 2.382.596 3.573-8.337 6.55-11.91.596.595-4.764 12.506-1.786 13.1 2.977.597 6.55-11.91 11.91-14.887 7.742-5.36 19.056-7.147 33.35-7.146 14.29 4.17 43.47 38.71 46.45 38.113z",transform:"matrix(1 0 0 1.13 11.31 42.24)"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.5,d:"m417.46-267.98-31.562 15.483 23.225 5.956-16.675 19.056 23.82-7.742-1.785 25.607 13.697-16.673 8.932 23.225 9.528-17.27 11.315 19.056 4.764-18.46 13.696 18.46 4.764-25.01 16.675 15.482-2.382-26.203 20.247 6.55-12.506-20.247s22.034-1.19 20.843-1.19-16.674-13.102-30.37-16.675z"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.808,d:"m417.46-267.98-31.562 15.483 23.225 5.956-16.675 19.056 23.82-7.742-1.785 25.607 13.697-16.673 8.932 23.225 9.528-17.27 11.315 19.056 4.764-18.46 13.696 18.46 4.764-25.01 16.675 15.482-2.382-26.203 20.247 6.55-12.506-20.247s22.034-1.19 20.843-1.19-16.674-13.102-30.37-16.675z",transform:"matrix(.55 0 0 .57 205.56 -123.01)"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.5,d:"M443.06-316.81s-8.93-7.146-12.504 0c-3.574 7.147 7.74 4.17 7.74 5.36s-7.74 9.528-7.74 19.057 5.955 25.607 5.955 27.99 2.383 8.93 10.72 11.313 11.315-7.74 13.1-8.932c1.788-1.19 13.103 1.786 17.27-8.337 4.17-10.123 4.17-28.584 4.17-28.584s7.146 5.36 7.146-5.36-7.742 0-7.742 0 1.19-11.314-17.27-16.674-20.247 5.36-20.843 4.168z"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:.54,d:"M441.48-317.31c-2.38-4.827-9.14-23.32-9.14-23.32l16.205 6.942c-5.53-1.374-10.25-2.18-9.654-2.18s7.147 8.934 7.147 8.934c6.45-.374 12.903 1.774 20.843 3.503 0 0 6.55-7.287 5.955-7.287-.596 0-3.573-1.192-3.573-1.192l14.888-6.83-4.764 9.214h-2.978l-5.955 6.69c6.7 1.26 9.975 2.242 16.525 6.445 5.807-.84 10.72-3.852 13.846-6.13-5.21-1.437-7.592-2.558-6.997-2.558.596 0 21.885 1.12 21.885 1.12s-20.89 12.917-33.093 17.65c-11.29-3.245-39.95-9.215-41.14-11.002z",transform:"matrix(.94 -.02 .03 1.42 35.5 137.73)"}),(0,x.jsx)("rect",{width:13.731,height:6.153,x:-1065.8,y:-1416.1,rx:6.865,ry:3.077,transform:"matrix(.9 .43 -1 -.1 0 0)"}),(0,x.jsx)("rect",{width:13.731,height:6.153,x:-1050,y:-1419.6,rx:6.865,ry:3.077,transform:"matrix(.9 .43 -1 -.1 0 0)"}),(0,x.jsx)("rect",{width:25.522,height:11.94,x:-1253.9,y:-1636.5,rx:12.761,ry:5.97,transform:"matrix(.95 .32 -1 -.08 0 0)"}),(0,x.jsx)("rect",{width:11.562,height:5.349,x:-1186.4,y:-1565.8,rx:5.781,ry:2.674,transform:"matrix(.94 .35 -1 -.1 0 0)"}),(0,x.jsx)("rect",{width:9.861,height:4.093,x:1061.7,y:734.39,rx:4.931,ry:2.046,transform:"matrix(.33 -.94 .14 1 0 0)"})]}),(0,x.jsxs)("g",{stroke:"#000",transform:"matrix(1.1 0 0 1.27 -361.45 -17.2)",children:[(0,x.jsx)("path",{fill:"#ff7300",strokeWidth:.375,d:"M737.05 319.5c1.663 4.742.814 0-.957 7.344 1.094-2.188 2.656-3.438 3.28-3.437.94 0 1.407 0 3.282 1.406-1.718-2.5-4.687-1.875-4.53-5.625-.157-.86-1 .08-1.075.312z",transform:"matrix(1.05 0 0 1.4 -30.43 -120.97)"}),(0,x.jsx)("rect",{width:1.369,height:18.038,x:708.8,y:717.59,fill:"#b2802e",strokeWidth:.103,rx:.685,ry:.506,transform:"matrix(.82 -.57 .2 .98 0 0)"}),(0,x.jsx)("path",{fill:"#fff",strokeWidth:.375,d:"M734.06 312.16c.78-.47 6.562-11.094 34.062-9.532-15.625 5.313-25.313 16.563-27.656 17.03-1.72.47-5.47-5.78-6.406-7.498z",transform:"matrix(.8 0 0 .98 152.8 3.9)"}),(0,x.jsxs)("g",{fill:"#007500",strokeWidth:.333,children:[(0,x.jsx)("path",{d:"m-3819.3-4447.1-7.42-2.76 15.13 11.39-2.9-5.35z",transform:"matrix(-.5 -1.05 .3 .95 159.9 514.87)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1-5.31.27 12.7 7.59-2.58-4.58z",transform:"matrix(.07 -.68 -.3 .54 -293.62 91.01)"}),(0,x.jsx)("path",{d:"m-3819.9-4447.6 4.64 7.4 4.42 1.26-3.58-4.96z",transform:"matrix(-1.36 -.47 1.52 .64 2287.67 1355.68)"}),(0,x.jsx)("path",{d:"m-3821.8-4448.7 17.53 22.4-6.67-12.48-3.47-5.09z",transform:"matrix(-.55 .32 .76 -.15 2024.7 827.17)"}),(0,x.jsx)("path",{d:"m-3822.2-4449.9-12.5-6.51 24.05 18.66-3.81-6.13z",transform:"matrix(.98 .07 -1.18 -.24 -766.75 -528.55)"}),(0,x.jsx)("path",{d:"m-3823.5-4450.2-5.23-1.22 17.81 13.32-3.56-5.79z",transform:"matrix(1.5 .65 -1.64 -.82 -831.78 -851.13)"}),(0,x.jsx)("path",{d:"m-3824.7-4451.7-13.4-9.74 24.35 20.96-.74-3.33z",transform:"matrix(1.75 1.24 -1.77 -1.34 -460.51 -944.94)"}),(0,x.jsx)("path",{d:"m-3822.2-4449.3 10.6 14.41 1.71-2.6-4.55-6.35z",transform:"matrix(1.37 1.4 -1.26 -1.4 359.75 -588.43)"}),(0,x.jsx)("path",{d:"m-3820.2-4447 15.6 19.25-3.35-7.74-6.53-8.32z",transform:"matrix(.92 1.25 -.75 -1.2 896.99 -233.09)"}),(0,x.jsx)("path",{d:"m-3821-4448.7 12.21 17.13-.11-5.25-5.57-6.99z",transform:"matrix(.2 .85 .02 -.73 1547.59 307.23)"}),(0,x.jsx)("path",{d:"m-3818.9-4446.9 1.97 4.26 4.24 2.13-1.8-3.38z",transform:"matrix(-1.14 -1.33 1 1.3 788.44 989.43)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(-.5 -.73 .34 .64 325.56 337.13)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(-.84 -.28 .9 .4 1501.16 974.27)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(.7 .14 -.82 -.25 -238.04 -272.2)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1 15.68 18.95-10.18-13.71-.69-1.96z",transform:"matrix(.25 .62 -.13 -.56 1093.02 160.12)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1 10.95 13.18-4.32-6.06-1.82-3.84z",transform:"matrix(1.64 1.38 -1.6 -1.44 -104.7 -827.04)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1-14.43-12.59 18.26 16.79.98-.92z",transform:"matrix(1.46 .6 -1.6 -.77 -839.02 -829.37)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(-.36 -.73 .22 .66 328.35 444.53)"})]}),(0,x.jsx)("path",{fill:"#fff",strokeWidth:.375,d:"M759.39 305.01c-3.24 1.066-4.827 1.573-6.465 1.782.835.357 2.69.14 4.807.71-1.886.042-5.374 1.48-6.825 1.516 1.003.602 4.58.022 5.238.18-1.913.118-4.99 1.6-6.908 1.6-.878.67 4.46-.46 6.602.807-2.216-.114-6.52 1.16-8.85.853 1.777 1.042 4.952-.112 7.6 1.017-.767.084-6.91.772-9.086.445 1.3.65 5.218.543 6.18 1.12-1.62-.21-5.927.69-7.425.332 1.348.972 5.413.424 6.16 1.01-2.657.925-6.683.186-8.535.437 1.242.58 2.267 1.167 3.366 1.71 1.605 1.127 6.61 4.294 9.6 5.245-3.31-.433-4.464-.49-6.603-.665l4.867 5.16c-2.03-1.095-5.61-3.162-7.988-4.23-5.264-2.577-9.058-2.13-12.704-4.313-5.122-4.966-7.966-10.885-8.222-12.464-.257-1.578-.48-4.407-5.153-2.933 4.51-.58 6.405-5.792 6.758-5.583.16.09.578 3.483 1.638 4.853.706.983 6.71 4.348 7.706 4.527 8.943-5.314 16.197-5.967 24.24-3.117z",transform:"matrix(1.05 0 0 1.4 -29.62 -119.66)"})]}),(0,x.jsxs)("g",{stroke:"#000",strokeWidth:.25,transform:"matrix(1.1 0 0 1.27 -358.42 -17.2)",children:[(0,x.jsx)("rect",{width:2.782,height:11.127,x:802.37,y:-352.62,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(44.69)"}),(0,x.jsx)("path",{fill:"#006000",d:"M795.02 334.335c-.21-1.173-.348-1.765.244-3.303.864-1.083 1.317-2.043 2.893-3.164 1.71-.563 2.286-.055 4.528-2.134.72-1.37 1.82-2.405 2.445-3.882 1.46-2.177 1.95-3.252 3.12-4.927 1.55-1.74 2.8-3.302 3.708-4.636.97-1.71 1.84-2.768 3.245-4.174.57-1.604 1.79-2.794 3.245-4.172 1.113-2.033 3.247-4.36 4.173-6.027 1.642-1.88 2.284-2.697 3.71-4.636 1.254-.827 3.37-2.643 5.1-3.244 2.358-.99 3.62-1.97 5.172-.464 1.027 1.027 2.873 2.68 1.59 3.9-.675.748-1.78.84-3.054.273-1.31-.848-1.946-3.315-3.71-1.39-1.273 1.454-1.926 2.615-3.708 4.17-.886 1.305-1.525 2.28-2.318 4.174-1.048 1.208-1.914 2.567-2.78 4.635-1.125.928-2.094 2.77-2.783 4.172-1.113 1.166-1.916 2.364-2.783 4.173-1.75 1.677-2.405 3.095-3.71 4.172-.86 1.82-2.216 3.558-3.244 4.636-.812 1.32-1.618 2.695-2.318 4.173-1.475 1.506-1.54 1.83-3.71 4.173-1.805 2.355-1.197 2.07-4.025 4.8-1.548.51-3.103.685-5.03-1.298z"}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:862.29,y:-20.84,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(22.17)"}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:863.44,y:-48.488,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(24.03)"}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:840.48,y:-224.52,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(35.85)"}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:773.6,y:-420.33,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(49.53)"}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:799.69,y:-363.86,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(45.46)"}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:844.16,y:-224.23,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(35.85)"}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:842.29,y:-224.62,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(35.85)"}),(0,x.jsxs)("g",{fill:"#e4cc00",transform:"rotate(35.85 -1.43 -10.31)",children:[(0,x.jsx)("rect",{width:2.782,height:11.127,x:838.79,y:-244.57,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:840.85,y:-244.68,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:843,y:-244.66,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:845.3,y:-244.7,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:847.15,y:-244.54,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:857.84,y:-245.75,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:856.37,y:-245.32,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:854.94,y:-245.1,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:852.83,y:-245.02,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:850.76,y:-244.68,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:848.96,y:-244.64,rx:1.391,ry:5.563})]}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:859.81,y:-115.05,fill:"#e4cc00",rx:1.391,ry:5.563,transform:"rotate(28.47 -.2 -.77)"}),(0,x.jsxs)("g",{fill:"#e4cc00",transform:"rotate(35.85 -14.89 -15.59)",children:[(0,x.jsx)("rect",{width:2.782,height:11.127,x:838.79,y:-244.57,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:840.85,y:-244.68,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:843,y:-244.66,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:845.3,y:-244.7,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:847.15,y:-244.54,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:857.84,y:-245.75,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:856.37,y:-245.32,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:854.94,y:-245.1,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:852.83,y:-245.02,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:850.76,y:-244.68,rx:1.391,ry:5.563}),(0,x.jsx)("rect",{width:2.782,height:11.127,x:848.96,y:-244.64,rx:1.391,ry:5.563})]})]}),(0,x.jsxs)("g",{stroke:"#000",transform:"matrix(1.06 0 0 1.15 -335.89 12.3)",children:[(0,x.jsx)("rect",{width:2.864,height:24.19,x:774.89,y:-28.09,fill:"#b2802e",strokeWidth:.172,rx:1.432,ry:.678,transform:"rotate(18.82)"}),(0,x.jsx)("rect",{width:2.864,height:24.19,x:727.44,y:221.74,fill:"#b2802e",strokeWidth:.172,rx:1.432,ry:.678}),(0,x.jsx)("rect",{width:2.864,height:24.19,x:707.97,y:221.28,fill:"#b2802e",strokeWidth:.172,rx:1.432,ry:.678}),(0,x.jsxs)("g",{fill:"#004500",strokeWidth:.25,children:[(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-14.492-19.462 1.56-16.9 2.41.754-2.172 2.144-5.51 2.76-4.52.572-1.702 6.83 7.266 12.633 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014.687 3.448.084 7.97-1.055 3.918-1.582 3.466-1.81-.075.785-2.466-2.345-6.312-2.344-8.272z",transform:"matrix(.42 .6 -.7 .23 583.24 -257.26)"}),(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-6.197-19.173 9.854-16.61 2.41.753 1.945 1.61-1.392 2.227-4.52.57-14.114 7.073-5.146 12.875 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 1.095 5.817.492 10.34-1.055 3.917-1.582 3.465-1.81-.076.076-.602-2.753-8.68-2.752-10.64z",transform:"matrix(.38 .62 -.7 .2 612.9 -260.63)"}),(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-2.64-11.925 11.99-9.1 1.586.2-2.096 2.163-5.433 2.78-4.52.57-12.21-.99-3.24 4.813 1.958 1.508 6.328 4.597 6.328 4.597s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 7.07 9.44 6.467 13.96-1.055 3.92-1.582 3.467-1.81-.074.076-.603-8.728-12.303-8.727-14.263z",transform:"matrix(.33 .65 -.7 .13 652.31 -262.77)"})]}),(0,x.jsxs)("g",{fill:"#004500",strokeWidth:.25,children:[(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-10.194-16.4 5.857-13.838 2.41.753-2.095 2.164-5.432 2.78-4.52.572-6.077 3.75 2.89 9.55 1.96 1.51 6.33 4.598 6.33 4.598s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014-1.734 3.165-2.337 7.687-1.055 3.918-1.582 3.466-1.81-.075.076-.604.076-6.03.077-7.99z",transform:"matrix(.43 .6 -.7 .24 560.19 -256.51)"}),(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-10.194-16.4 5.857-13.838 2.41.753-2.095 2.164-5.432 2.78-4.52.572-6.077 3.75 2.89 9.55 1.96 1.51 6.33 4.598 6.33 4.598s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014-1.734 3.165-2.337 7.687-1.055 3.918-1.582 3.466-1.81-.075.076-.604.076-6.03.077-7.99z",transform:"matrix(.4 .62 -.7 .2 589.82 -260.11)"}),(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-10.194-16.4 5.857-13.838 2.41.753-2.095 2.164-5.432 2.78-4.52.572-6.077 3.75 2.89 9.55 1.96 1.51 6.33 4.598 6.33 4.598s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014-1.734 3.165-2.337 7.687-1.055 3.918-1.582 3.466-1.81-.075.076-.604.076-6.03.077-7.99z",transform:"matrix(.34 .65 -.7 .14 629.21 -262.57)"})]}),(0,x.jsxs)("g",{fill:"#004500",strokeWidth:.25,children:[(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-14.492-19.462 1.56-16.9 2.41.754-2.172 2.144-5.51 2.76-4.52.572-1.702 6.83 7.266 12.633 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014.687 3.448.084 7.97-1.055 3.918-1.582 3.466-1.81-.075.785-2.466-2.345-6.312-2.344-8.272z",transform:"matrix(.2 .7 -.73 -.02 770.2 -279)"}),(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-6.197-19.173 9.854-16.61 2.41.753 1.945 1.61-1.392 2.227-4.52.57-14.114 7.073-5.146 12.875 1.96 1.508 6.33 4.597 6.33 4.597s-1.583 2.788-1.734 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 1.095 5.817.492 10.34-1.055 3.917-1.582 3.465-1.81-.076.076-.602-2.753-8.68-2.752-10.64z",transform:"matrix(.15 .72 -.72 -.06 799.25 -272.13)"}),(0,x.jsx)("path",{d:"M692.68 226.06c.3-4.898 4.144-6.405 10.4-4.22.527.302.98-.602.828-.678-10.023-5.274-2.64-11.925 11.99-9.1 1.586.2-2.096 2.163-5.433 2.78-4.52.57-12.21-.99-3.24 4.813 1.958 1.508 6.328 4.597 6.328 4.597s-1.582 2.788-1.733 2.788c-.15 0-12.207-4.37-15.07-.603-1.81 3.014 7.07 9.44 6.467 13.96-1.055 3.92-1.582 3.467-1.81-.074.076-.603-8.728-12.303-8.727-14.263z",transform:"matrix(.1 .73 -.72 -.12 837.06 -260.81)"})]})]}),(0,x.jsxs)("g",{stroke:"#000",transform:"matrix(1.1 0 0 1.27 -361.45 -17.2)",children:[(0,x.jsx)("rect",{width:2.864,height:24.19,x:826.05,y:222.49,fill:"#b2802e",strokeWidth:.172,rx:1.432,ry:.678}),(0,x.jsxs)("g",{fill:"#007500",strokeWidth:.333,children:[(0,x.jsx)("path",{d:"m-3819.3-4447.1-7.42-2.76 15.13 11.39-2.9-5.35z",transform:"matrix(2.83 -1.24 -3.05 .95 -1925.62 -304.33)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1-5.31.27 12.7 7.59-2.58-4.58z",transform:"matrix(3.13 -.33 -3.22 -.02 -1573.42 -1098.14)"}),(0,x.jsx)("path",{d:"m-3819.9-4447.6 4.64 7.4 4.42 1.26-3.58-4.96z",transform:"matrix(-2.35 -1.9 2.13 2.18 1324.03 2719.86)"}),(0,x.jsx)("path",{d:"m-3821.8-4448.7 17.53 22.4-6.67-12.48-3.47-5.09z",transform:"matrix(-3.1 -.45 3.1 .8 2735.85 2087.12)"}),(0,x.jsx)("path",{d:"m-3822.2-4449.9-12.5-6.51 24.05 18.66-3.81-6.13z",transform:"matrix(2.85 1.2 -2.74 -1.54 -448.35 -2034.45)"}),(0,x.jsx)("path",{d:"m-3823.5-4450.2-5.23-1.22 17.81 13.32-3.56-5.79z",transform:"matrix(2.03 2.16 -1.77 -2.43 720.32 -2307.97)"}),(0,x.jsx)("path",{d:"m-3824.7-4451.7-13.4-9.74 24.35 20.96-.74-3.33z",transform:"matrix(.34 2.82 .04 -2.9 2314.66 -1926.99)"}),(0,x.jsx)("path",{d:"m-3822.2-4449.3 10.6 14.41 1.71-2.6-4.55-6.35z",transform:"matrix(-1.55 2.47 1.92 -2.34 3429.12 -741.41)"}),(0,x.jsx)("path",{d:"m-3820.2-4447 15.6 19.25-3.35-7.74-6.53-8.32z",transform:"matrix(-2.4 1.85 2.68 -1.6 3638.7 109.42)"}),(0,x.jsx)("path",{d:"m-3821-4448.7 12.21 17.13-.11-5.25-5.57-6.99z",transform:"matrix(-3.04 .75 3.2 -.42 3422.62 1206.87)"}),(0,x.jsx)("path",{d:"m-3818.9-4446.9 1.97 4.26 4.24 2.13-1.8-3.38z",transform:"matrix(2.05 -2.16 -2.38 1.96 -1931.76 726.96)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(1.5 -1.04 -1.62 .8 -633.93 -217.22)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(-1.52 -1.17 1.2 1.3 424.38 1558.92)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(1.7 .92 -1.6 -1.12 156.59 -1254.09)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1 15.68 18.95-10.18-13.71-.69-1.96z",transform:"matrix(-1.85 .67 2 -.5 2589.49 580.62)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1 10.95 13.18-4.32-6.06-1.82-3.84z",transform:"matrix(-.6 2.78 1 -2.76 2955.04 -1435.12)"}),(0,x.jsx)("path",{d:"m-3819.3-4447.1-14.43-12.59 18.26 16.79.98-.92z",transform:"matrix(2.13 2.1 -1.88 -2.36 604.09 -2303.24)"}),(0,x.jsx)("path",{d:"M-3819.3-4447.1v5.78l6.63 1.34-1.82-3.84z",transform:"matrix(1.96 -.88 -2.12 .67 -1083.67 -148.42)"})]})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3548.133939a2.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js deleted file mode 100644 index 5455edb538..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3584.4ad9a196.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3584"],{6211(s,l,t){t.r(l),t.d(l,{default:()=>i});var c=t(74848);t(47867);let i=s=>(0,c.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,c.jsx)("path",{fill:"#006",d:"M0 0h640v480H0z"}),(0,c.jsx)("path",{fill:"#006",fillRule:"evenodd",d:"M0 0h400v200H0z"}),(0,c.jsxs)("g",{strokeWidth:"1pt",children:[(0,c.jsx)("path",{fill:"#fff",d:"M0 0v27.09l334.411 215.208h42.094v-27.09L42.093.002zm376.505 0v27.089L42.093 242.297H0v-27.089L334.411 0z"}),(0,c.jsx)("path",{fill:"#fff",d:"M156.877 0v242.297h62.75V0zM0 80.766v80.765h376.505V80.766z"}),(0,c.jsx)("path",{fill:"#c00",d:"M0 96.919v48.46h376.505v-48.46zM169.427 0v242.297h37.65V0zM0 242.297l125.502-80.766h28.062L28.062 242.297zM0 0l125.502 80.766H97.439L0 18.06zm222.941 80.766L348.443 0h28.062L251.003 80.766zm153.564 161.53-125.502-80.765h28.062l97.44 62.707z"})]}),(0,c.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M448.33 179.141c-1.009.61-3.028 2.44-5.048 1.83s-6.562-8.542-11.61-7.322c-5.05 1.22-8.078 3.051-10.097 3.051s-7.573 1.831-7.573 6.712.505 8.543 1.515 8.543 2.524-3.05 2.524-3.05.505 6.1 4.039 6.1 11.106.611 11.61 2.442c.506 1.83-3.533 6.102-2.523 9.763s5.553 9.763 5.553 9.763-6.563 4.881-6.563 7.933 1.01 6.102 1.01 6.102l-29.28 1.22s-2.02 86.647-1.01 93.36c1.01 6.71 3.533 23.186 3.533 23.186s-6.562-2.134-12.116 3.358c-5.553 5.493-24.988 14.948-25.493 19.219s-2.272 7.934-.252 10.984 9.124 11.34 7.067 10.985c-6.777-1.17-9.3-10.798-13.882-14.34-4.504-3.476-13.378-2.745-14.387.914-1.01 3.662-.505 9.763 0 10.984.504 1.22 6.057 20.747 7.572 25.018s17.416 10.677 24.484 10.068c13.377.304 19.435-5.796 19.94-5.184.505.608 28.78 29.768 86.83 29.898 45.188.1 79.258-29.29 79.258-28.678 0 .609 18.679 6.101 25.241 4.272 6.563-1.834 16.155-6.105 18.174-10.376 2.02-4.27 7.573-26.239 8.078-29.897.505-3.663 0-7.934-4.544-9.155s-7.067-.916-9.591.304-3.282 4.58-7.068 10.68c-2.019 1.833-7.32 6.713-5.805 5.492s4.795-10.372 5.3-13.426c.505-3.05 2.02-8.542-1.514-11.593-3.534-3.05-8.947-4.297-15.145-8.846-5.886-4.034-10.6-10.68-14.135-10.68-3.534 0-7.573-1.829-7.068-1.829s4.552-8.865 3.542-18.016c-1.01-9.155.496-96.7-.008-96.7-.505 0-25.242 1.83-25.242.61s2.02-9.763 0-15.255c-2.019-5.491-10.601-9.153-8.077-10.373s13.63-4.271 13.125-9.153-7.572-4.271-10.601-6.102c-3.029-1.83-12.116-10.373-13.126-10.373s26.25-16.475 24.232-16.475-12.62-3.05-16.154-1.22c0-3.051 14.64-12.204 12.116-13.425-2.524-1.22-14.136-2.44-11.107-3.05s4.039-7.933 3.534-7.933-13.125 1.83-13.125 1.83-3.03-4.27-4.039-4.27c-1.01 0-5.553 2.44-5.553 2.44l-2.524-6.712-5.553 3.661-2.524-3.051s-4.544 1.22-4.544 0c.191-.044-.523-3.064-1.236-3.064-.715 0-5.712 3.883-5.89 3.667-.179-.215-5.712-7.982-5.712-7.766s-3.927 14.67-4.105 14.67-3.927.431-4.105.647-19.99-11.434-19.811-11.218 5.175 11.218 5.175 11.218-4.283 2.373-4.283 2.59c0 .215.714 4.96.714 4.96l-13.21-4.53s4.998 10.139 4.64 10.139c-.356 0-9.816.432-9.637.432.178 0 4.462 8.413 4.462 8.413l-1.606 4.962s14.217 10.033 13.207 10.644zm84.307 212.347c1.262 1.83 8.077 10.372 7.067 10.372s-17.92 11.289-24.737 13.426c-6.815 2.134-29.027 6.1-27.765 5.796s19.946-10.535 27.519-15.414c7.572-4.88 17.915-13.57 17.915-14.18zm-105.513-.308c-1.01 1.22-5.806 10.68-5.806 10.68s13.883 9.763 24.232 13.425c10.349 3.659 28.018 4.88 27.008 4.575s-22.212-9.763-28.27-14.643c-6.058-4.883-16.912-14.038-17.165-14.038z"}),(0,c.jsxs)("g",{fill:"#fec500",fillRule:"evenodd",stroke:"#6d6666",children:[(0,c.jsx)("path",{strokeWidth:1.403,d:"M394.65-212.97s28.777 17.265 35.354 21.376 27.954 22.199 29.598 21.377c1.645-.822 13.155-9.866 13.155-9.866s-23.843-18.91-38.642-23.021-39.465-8.222-39.465-9.866z",transform:"matrix(.307 0 0 .37108 317.054 244.257)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M390.54-231.88c2.467 0 47.687 23.022 61.664 34.532s19.732 26.31 21.377 26.31 23.021-3.289 22.198-3.289c-.822 0-9.866-29.598-30.42-38.642s-73.996-18.911-74.819-18.911z",transform:"matrix(.307 0 0 .37108 317.054 244.257)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M603.48-296.01c-.822 0-9.044 24.666-11.511 32.065-2.466 7.4-6.577 23.021-6.577 23.021s-36.176 3.289-34.532-.822 55.086-54.264 52.62-54.264z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M398.76-261.48s42.754 28.776 57.553 45.22 29.598 45.22 30.42 45.22 40.287-8.222 40.287-7.4-46.042-46.042-68.241-60.019-59.197-21.377-60.019-23.021z",transform:"matrix(.307 0 0 .37108 317.054 244.257)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M443.16-273.81s21.377 32.887 25.487 44.398c4.111 11.51 16.444 41.109 16.444 41.109H518.8s-16.443-36.998-34.531-55.086-40.287-28.776-41.109-30.421z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M454.66-291.9c.823 2.467 31.243 31.243 38.643 50.153 7.399 18.91 13.155 42.754 13.155 42.754l29.598-7.4s-26.31-48.509-42.753-61.664c-16.444-13.154-36.998-22.198-38.643-23.843z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M700.5-209.68s-61.663 6.578-83.862 12.333-34.532 27.132-34.532 27.132 28.777 10.688 30.421 9.044 18.91-18.91 37.82-25.488 51.797-22.199 50.153-23.021z",transform:"matrix(.307 0 0 .37108 317.054 244.257)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M698.03-249.97c-1.645.823-50.975 41.11-66.597 54.264s-30.421 27.132-32.065 27.954c-1.644.823-32.065-4.11-30.421-5.755 1.645-1.644 45.22-36.998 73.997-52.619 28.776-15.622 52.619-22.199 55.086-23.844z",transform:"matrix(.307 0 0 .37108 317.054 244.257)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M685.7-278.75c-4.933 5.755-53.442 45.22-66.597 59.197s-34.531 38.643-34.531 38.643-25.488-11.511-23.843-16.444 36.175-33.709 60.841-50.153c24.665-16.444 66.596-29.599 64.13-31.243z",transform:"matrix(.307 0 0 .37108 317.054 244.257)"}),(0,c.jsx)("path",{strokeWidth:1.403,d:"M636.37-282.04c-.822.823-29.598 31.243-35.354 39.465-5.755 8.222-23.021 44.398-23.021 44.398s-25.487-22.199-25.487-23.021 32.065-34.532 50.975-47.687 33.709-10.688 32.887-13.155z",transform:"matrix(.307 0 0 .37108 317.054 244.257)"}),(0,c.jsx)("path",{strokeWidth:1.497,d:"M565.09-241.77c0 5.78-4.685 10.465-10.465 10.465s-10.465-4.685-10.465-10.465 4.685-10.465 10.465-10.465 10.465 4.685 10.465 10.465zM586.02-227.81c0 5.137-4.685 9.302-10.465 9.302s-10.465-4.165-10.465-9.302 4.685-9.302 10.465-9.302 10.465 4.165 10.465 9.302zM539.51-238.28c0 5.137-5.726 9.302-12.79 9.302s-12.79-4.165-12.79-9.302 5.726-9.302 12.79-9.302 12.79 4.165 12.79 9.302z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.497,d:"M573.23-219.09c0 9.954-6.507 18.022-14.534 18.022s-14.534-8.069-14.534-18.022 6.507-18.022 14.534-18.022 14.534 8.069 14.534 18.022zM533.7-218.51c0 7.706-6.507 13.953-14.534 13.953s-14.534-6.247-14.534-13.953 6.507-13.953 14.534-13.953 14.534 6.247 14.534 13.953z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.497,d:"M513.93-207.46c0 6.743-4.945 12.209-11.046 12.209s-11.046-5.466-11.046-12.209 4.945-12.209 11.046-12.209 11.046 5.466 11.046 12.209zM595.32-208.63c0 8.027-7.548 14.534-16.86 14.534s-16.86-6.507-16.86-14.534 7.548-14.534 16.86-14.534 16.86 6.507 16.86 14.534zM554.63-229.56c0 4.816-5.987 8.72-13.372 8.72s-13.372-3.904-13.372-8.72 5.987-8.72 13.372-8.72 13.372 3.904 13.372 8.72z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.497,d:"M556.95-210.37c0 7.064-8.33 12.79-18.604 12.79s-18.604-5.726-18.604-12.79 8.33-12.79 18.604-12.79 18.604 5.726 18.604 12.79zM604.62-187.7c0 8.67-7.809 15.697-17.441 15.697s-17.441-7.028-17.441-15.697 7.809-15.697 17.441-15.697c9.633 0 17.441 7.028 17.441 15.697zM509.28-191.77c0 5.78-4.425 10.465-9.883 10.465s-9.884-4.685-9.884-10.465 4.425-10.465 9.884-10.465 9.883 4.685 9.883 10.465z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.497,d:"M579.04-193.51c0 7.385-6.767 13.372-15.116 13.372s-15.116-5.987-15.116-13.372 6.768-13.372 15.116-13.372 15.116 5.987 15.116 13.372zM531.37-194.09c0 6.422-5.987 11.627-13.371 11.627s-13.371-5.206-13.371-11.627 5.987-11.627 13.371-11.627 13.371 5.206 13.371 11.627z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"}),(0,c.jsx)("path",{strokeWidth:1.497,d:"M554.63-190.61c0 7.064-6.247 12.79-13.953 12.79s-13.953-5.726-13.953-12.79 6.247-12.79 13.953-12.79 13.953 5.726 13.953 12.79zM494.16-267.35c3.488 0 27.906 8.139 27.906 8.139s-30.232 11.628-25.581 10.465 33.72-4.651 31.394-4.651c-2.325 0-25.58 22.092-18.604 20.929 6.977-1.162 20.93-15.115 22.092-15.115 1.163 0 15.116 22.092 16.279 20.929 1.162-1.163 0-22.092 1.162-22.092 1.163 0 29.069 13.953 26.743 12.79-2.325-1.163-18.603-17.441-17.441-17.441s38.371 3.488 36.045 2.325c-2.325-1.162-24.417-11.627-24.417-11.627s16.278-15.115 12.79-15.115-30.231 15.115-27.906 13.952c2.326-1.162 29.069-31.393 29.069-31.393l-26.743 12.79s4.651-18.604 2.325-17.442c-2.325 1.163-20.929 24.418-22.092 24.418s-5.814-23.255-5.814-23.255 1.163 25.58-5.813 26.743c-6.977 1.163-31.394 5.814-31.394 4.651z",transform:"matrix(.307 0 0 .37108 317.054 245.983)"})]}),(0,c.jsxs)("g",{fillRule:"evenodd",children:[(0,c.jsx)("path",{fill:"#00389b",d:"M445.509 216.536c.178.863 5.89 16.396 14.636 15.964s12.315-3.02 11.958-3.236-4.105-2.804-6.247-8.414-2.499-7.982-2.499-7.982zM476.744 210.495s6.425 15.317 9.28 17.474c2.857 2.158 9.46 3.884 12.316 3.668s6.247 0 6.247 0-2.855-1.51-5.176-9.924-3.034-11.218-3.034-11.218zM516.01 216.104s-1.25 11.218 0 14.023 7.496 7.982 7.496 7.982 7.496-1.079 7.675-7.982-2.499-13.376-2.499-13.376z"}),(0,c.jsx)("path",{fill:"#005120",stroke:"#000",strokeWidth:1.497,d:"M288.94 21.015s1.163 4.65 0 8.14-11.046 12.79-11.046 20.347 11.627 30.812 47.091 31.394 80.229-19.185 79.647-19.767c-.58-.58-84.88-56.974-86.04-56.393-1.16.582-29.65 17.441-29.65 16.28zM523.23 61.129s7.557 20.348 10.464 22.674c2.907 2.325 4.07 6.976 4.651 6.976s48.835 10.464 48.835 10.464 4.651-13.37-2.325-23.836c-6.977-10.465-33.138-37.789-33.138-37.789l-28.49 21.511zM556.37 36.13c1.162 0 12.79 9.883 22.092 4.65 9.301-5.231 24.417-19.184 24.417-19.184s-12.79 4.07-22.092 3.488c-9.302-.581-23.836 11.627-24.417 11.046z",transform:"matrix(.307 0 0 .37108 350.733 188.675)"}),(0,c.jsx)("path",{fill:"#005120",stroke:"#000",strokeWidth:1.497,d:"M287.2 23.34s-3.488-9.883-12.79-10.465c-9.302-.581-26.162 1.163-31.975-3.488S234.877-6.31 231.97-5.73s-10.465 0-11.046 0-3.488-9.302 4.651-13.953 15.116-.582 19.766-4.07c4.651-3.488 11.628-5.813 20.93-6.395s24.417 11.628 31.394 14.534 22.092 6.395 27.905 3.488 38.371-15.697 49.998-16.278 36.045-1.162 45.347-.581 45.928 5.232 56.974 10.465 69.764 25.58 77.903 30.23c8.139 4.652 26.162 11.628 26.162 11.628s-31.976 31.394-47.672 36.626c-15.697 5.232-65.695 13.372-95.345 11.627s-52.904-4.651-75.578-16.278c-22.68-11.626-47.1-22.672-48.26-28.486-1.16-5.813-.58-13.371-.58-13.371l-27.324 9.883z",transform:"matrix(.307 0 0 .37108 350.733 188.675)"}),(0,c.jsx)("path",{fill:"#005120",stroke:"#000",strokeWidth:1.497,d:"M251.15-14.449c-1.163.581-6.976 2.907-5.814 4.07 1.163 1.162 3.489 4.65 10.465 4.07 6.977-.582 14.534-4.652 14.534-4.652s-8.72-4.07-19.185-3.488z",transform:"matrix(.307 0 0 .37108 350.733 188.675)"}),(0,c.jsx)("path",{stroke:"#000",strokeWidth:1.497,d:"M250.57-13.286v6.395s8.139 2.325 8.139.581.581-5.813-1.163-5.813-6.395-.582-6.976-1.163z",transform:"matrix(.307 0 0 .37108 350.733 188.675)"}),(0,c.jsx)("path",{fill:"#001707",stroke:"#000007",strokeWidth:1.497,d:"M331.95-8.453c2.056-3.7 0-8.632 11.922-14.388 11.921-5.755 32.681-4.11 32.681-4.11s-5.96 4.521-6.166 9.249c-.205 4.727.411 6.783.411 6.783s-11.305-3.7-19.938-1.439-18.704 4.522-18.91 3.905zM385.4-28.596c-1.233.617-10.277 10.688-9.25 13.772 1.028 3.083 13.155 10.483 17.061 9.866 3.905-.616 21.787-9.25 22.815-13.566s1.85-10.072.411-11.305-30.832 1.645-31.037 1.233zM424.66-30.24c-2.261 2.261-1.439 13.155-.617 14.388S439.048-.436 442.131.386s25.899-1.439 27.749-3.905 7.399-12.95 5.755-15.416-6.578-5.756-21.788-9.044-24.254-2.878-29.187-2.261zM482.82-16.469c3.7 1.85 25.282 12.333 38.026 20.76 12.743 8.427 17.882 18.088 21.582 18.91s18.704-8.222 19.321-10.688-18.293-15.621-31.037-21.582c-12.744-5.96-47.892-6.783-47.892-7.4zM478.3-7.63c-1.85 1.644 23.021 45.014 27.748 46.453 4.728 1.438 33.093-8.428 32.682-11.716-.41-3.288-7.81-9.866-25.28-19.526S481.8-8.452 478.3-7.63zM447.47 8.196c-3.905 2.261-10.071 41.11-6.166 42.96s52.003-4.728 53.853-9.044c1.849-4.317-19.733-38.643-26.105-38.643S451.17 5.114 447.47 8.197zM397.73-.025c-5.14 4.727-4.11 40.903-1.85 43.164 2.261 2.26 30.831 9.66 33.914 6.988s7.195-43.37 4.317-46.453-10.894-10.483-17.06-11.099c-6.167-.616-16.444 5.96-19.321 7.4zM333.19-.642c-4.728 3.7-4.933 13.36.205 15.005 5.139 1.644 17.882 7.194 29.804 12.333s18.705 11.305 22.199 11.099 6.783-36.381 3.083-38.437-14.594-3.7-24.871-3.289-25.282 1.44-30.42 3.289z",transform:"matrix(.307 0 0 .37108 350.733 188.675)"})]}),(0,c.jsx)("path",{fill:"#d40f0f",fillOpacity:.996,fillRule:"evenodd",d:"M387.976 359.201c2.59-2.52 6.616-8.682 12.081-8.962 5.466-.28 11.22 4.761 11.22 4.761s5.752 23.528 5.465 23.528c-.288 0-9.493 6.722-9.78 6.722-.288 0-4.028-9.243-7.48-8.404-3.451.841-3.164 13.445-3.739 12.605s-15.245-18.206-14.67-18.766c.576-.56 7.192-10.642 6.904-11.483zM539.866 356.12c1.726-.28 9.493-6.163 14.958-5.882 5.466.28 8.63 2.8 11.506 5.321s6.329 8.962 6.329 8.962-6.904 19.046-7.479 19.046-3.452 1.681-4.028.28-2.3-5.882-5.753-6.442c-3.451-.56-4.315 6.161-4.315 6.161z"}),(0,c.jsx)("path",{fill:"#fddc59",fillOpacity:.996,fillRule:"evenodd",d:"M543.604 362.007c0 1.682 10.643 28.01 27.903 33.05 17.258 5.041 22.724-4.761 24.737-8.122s9.205-3.08 9.205-3.08-1.725 24.647-4.603 27.727c-2.876 3.081-5.178 9.803-21.286 10.082-16.107.281-30.778-15.123-35.667-19.605-4.892-4.482-11.22-16.244-13.81-21.567-2.587-5.32 13.809-17.924 13.52-18.485zM356.048 414.374c.288 0 7.767 8.123 18.697 7.282 10.931-.839 29.629-7.282 38.258-18.485s12.944-23.247 12.944-23.247-12.656-22.406-12.944-22.406-1.438 7.282-3.74 12.043c-2.301 4.762-8.63 18.205-19.272 22.408-10.644 4.2-10.644 5.88-14.958 5.32-4.315-.56-15.533-7.281-15.533-7.562 0-.28-5.465 13.165-5.465 13.165s-1.151 8.682 2.013 11.483z"}),(0,c.jsx)("path",{fill:"#fddc59",fillOpacity:.996,fillRule:"evenodd",d:"M387.782 358.423c-.814 0-21.154 11.091-20.34 15.844.813 4.753 34.985 72.089 108.206 72.88 73.223.794 117.975-60.998 114.719-71.296-3.254-10.298-26.034-22.181-26.034-22.181s5.694 4.753 4.881 11.09c-.814 6.338-26.036 61-89.497 59.416s-93.565-49.908-93.565-55.453 3.255-8.715 1.628-10.299z"}),(0,c.jsx)("path",{fill:"#d40f0f",fillOpacity:.996,fillRule:"evenodd",d:"M586.171 407.38c1.727-1.4 12.37-30.529 18.41-29.688 6.042.84 4.029 9.522 3.453 11.763-.575 2.24-6.616 22.407-6.616 22.407s.288-4.762-3.74-5.882c-4.026-1.12-10.643 1.961-11.506 1.401zM356.048 414.671c0-1.583-4.882-7.129.813-8.714 5.696-1.583 13.019 1.585 13.019 1.585s-4.069-11.883-8.95-21.39c-4.882-9.505-6.51-7.92-10.577-6.337-4.068 1.585-3.97 5.778-1.528 12.115 2.44 6.338 7.223 24.326 7.223 22.741z"}),(0,c.jsx)("path",{fill:"#fdc400",fillRule:"evenodd",d:"m423.176 360.347 7.063-23.923-19.616-15.038 24.568-.567 8.012-23.608 8.123 23.568 24.567.455-19.549 15.13 7.17 23.887-20.201-14.216z"}),(0,c.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M555.637 235.833v92.04c.18 44.983-45.689 84.374-76.147 92.04-30.461-7.666-76.328-47.057-76.147-92.036v-92.04h152.294z"}),(0,c.jsx)("path",{fill:"#d40f0f",fillOpacity:.996,fillRule:"evenodd",stroke:"#000",strokeWidth:1.497,d:"m177.16 325.98.421 160.73s2.386-3.288 35.012-1.284c32.627 2.004 35.433 35.433 70.867 35.433 35.433 0 35.433-35.433 70.866-35.433s35.433 35.433 70.866 35.433 35.433-35.433 70.866-35.433 35.433 35.433 72.87 37.459c33.429-2.026 33.429-37.459 69.062-39.463l35.233 2.004v-159.45h-496.06z",transform:"matrix(.307 0 0 .35829 348.952 119.039)"}),(0,c.jsx)("path",{fill:"#0062bb",fillOpacity:.996,fillRule:"evenodd",d:"M403.34 312.006v19.043h10.879c10.016.718 10.878 12.695 21.756 12.695s10.878-12.695 21.756-12.695 10.878 12.695 21.757 12.695 10.878-12.695 21.756-12.695 10.263 11.969 21.756 12.695c10.263-.726 10.817-11.977 21.757-12.695h10.878v-19.043h-10.878c-10.879 0-10.879 12.695-21.757 12.695s-10.878-12.695-21.756-12.695-10.878 12.695-21.756 12.695-10.879-12.695-21.757-12.695-10.878 12.695-21.756 12.695-10.878-12.695-21.756-12.695zM406.623 350.088l7.596 19.043c10.017.718 10.878 12.695 21.757 12.695 10.878 0 10.878-12.695 21.756-12.695s10.878 12.695 21.756 12.695 10.879-12.695 21.757-12.695 10.263 11.97 21.756 12.695c10.263-.726 10.564-11.977 21.504-12.695l7.85-19.337-7.598.294c-10.878 0-10.878 12.695-21.756 12.696s-10.878-12.696-21.756-12.696-10.878 12.695-21.757 12.695c-10.878 0-10.878-12.695-21.756-12.695s-10.878 12.695-21.756 12.695-10.878-12.695-21.757-12.695zM479.49 419.911c10.879 0 35.803-19.043 35.548-19.043.253 0-2.914-12.695-13.792-12.695s-10.878 12.695-21.757 12.695c-10.878 0-10.878-12.695-21.756-12.695s-13.655 12.695-13.68 12.695c-.504 0 24.558 19.043 35.435 19.043z"}),(0,c.jsx)("path",{fill:"#fdc400",fillOpacity:.996,fillRule:"evenodd",stroke:"#000",strokeWidth:.701,d:"M90.849 117.57c.822 0 8.222 1.233 13.565.822 5.344-.411 7.4-2.467 7.4-2.878v-1.233h6.988s1.233 5.755.411 6.166-2.878 2.056-3.289 2.056 0-2.878-.822-2.056-1.233 2.056-1.233 2.056-.822-1.234-1.233-1.234-1.233 1.234-1.233 1.234 0-1.234-.412-1.234c-.411 0-2.466 2.056-2.466 2.056l-2.055-1.645s-1.234 2.056-1.645 2.056-2.877-1.644-2.877-1.644l-4.111 2.466s0-3.7-.822-3.289-5.344.411-5.344.411-1.234 2.467-1.645 2.467-2.055-2.055-1.644-2.055 1.233-1.234.822-1.645c-.41-.411-2.466 0-2.466-.411s-.822-2.878-.411-2.878 2.055.412 2.055.412v-2.467h2.055z",transform:"matrix(1.5005 0 0 1.3054 286.934 126.302)"}),(0,c.jsx)("path",{fill:"#fdc400",fillOpacity:.996,fillRule:"evenodd",stroke:"#000",strokeWidth:.701,d:"M98.248 94.136c-.411 0-3.289 3.289-2.878 6.988s7.4 9.044 7.4 9.044 3.7-1.644 4.933 0 1.233 6.577.822 6.577-5.344 1.234-5.344.41c0-.821 0-1.643-.411-1.643s-4.933.41-4.933.41l.411-1.643-4.11-.822 1.644-1.645s-6.578-2.877-6.167-2.877 2.878-1.644 2.878-1.644L87.56 104h2.878s-4.111-3.288-3.7-3.288 2.466.41 2.466.41l-1.233-3.287h1.233l-1.233-2.467 2.055-.822 1.234 2.055-.411-4.933 2.877.412v4.11s1.233-2.466 1.233-2.877 3.7 1.644 3.289.822z",transform:"matrix(1.5005 0 0 1.3054 286.934 126.302)"}),(0,c.jsx)("path",{fillOpacity:.996,fillRule:"evenodd",d:"M529.965 282.453c-.771.671-3.085 2.146-3.085 2.146s5.244-.402 5.09-.402-1.85-1.342-2.005-1.744M534.436 284.998c-.307.403-1.233 4.562-.616 4.293.616-.268 3.083-3.354 3.083-3.354zM541.519 285.534c.77.67 4.317 3.755 3.854 3.084-.462-.67-.925-3.488-1.233-3.62-.31-.135-2.314.803-2.621.536M479.384 281.108c-.462.135-4.317 2.684-4.317 2.684s6.477-1.074 6.167-1.074c-.307 0-2.004-1.206-1.85-1.61M483.39 284.333c-.616.536-2.62 4.292-1.85 4.159.772-.135 4.164-2.55 4.164-2.55zM480.915 279.098c-.462-.134-3.702-1.476-3.547-1.476s4.318-.939 4.318-.939zM419.858 277.362l-4.626-3.22 5.86 1.61zM415.849 279.503c-.617 0-6.477 3.219-6.323 3.219s8.173.134 8.019 0c-.154-.133-1.388-2.95-1.696-3.22M419.549 284.202c-.617.27-5.243 3.354-4.935 3.354s6.94.134 6.94 0-1.851-3.22-2.005-3.354M418.932 250.792s-1.696-3.756-1.542-3.756 4.318 2.951 4.318 2.951zM423.558 246.096c0-.134.463-2.414.463-2.414s4.163 2.817 4.009 2.817-4.164 0-4.472-.403M430.035 247.84c0-.134.463-3.488.463-3.488s3.855 4.562 3.547 4.696c-.309.134-3.701-.67-4.01-1.208"}),(0,c.jsx)("path",{fill:"#fdc400",fillOpacity:.996,fillRule:"evenodd",stroke:"#000",strokeWidth:.701,d:"M137.26 110.86c0 .206 4.316 3.7 4.419 4.522s-7.811 1.028-7.811 1.028-2.261-1.747-2.98-1.645c-.72.103-1.028 1.85-1.028 1.85l1.85 1.028-3.494.205 1.028 1.953 2.672-.206-.617 1.85s1.644 1.234 1.953 1.028c.308-.205 1.336-2.055 2.158-2.364s2.569-.308 2.569-.308-1.336 2.261-.719 2.261c.616 0 3.391-2.364 3.391-2.364s.617 2.158.719 2.158c.103 0 2.056-2.466 2.056-2.466s0 1.953.308 1.953 3.186-2.467 3.186-2.467 2.261 2.878 2.569 2.672c.309-.205.617-3.083.925-3.083s2.261-.308 2.261-.411-1.233-1.131-1.439-2.569c-.205-1.439.206-4.83.103-4.83s-13.874.513-14.079.205z",transform:"matrix(1.5005 0 0 1.3054 285.91 126.597)"}),(0,c.jsx)("path",{fill:"#fdc400",fillOpacity:.996,fillRule:"evenodd",stroke:"#000",strokeWidth:.701,d:"M115.37 104.6h40.286c4.111 0 7.81-1.644 7.81-4.111s-6.577-2.877-9.043-2.055c-2.467.822-13.155 5.755-17.677 5.344s-8.632-3.289-9.043-6.166c-.412-2.878 2.055-5.344 6.577-5.344s10.277 1.644 11.51 1.233 4.111-3.7 5.344-4.11c1.233-.412 4.933-.823 4.933-.823l-1.644 1.233 5.344-1.233s-4.111 4.522-8.222 5.755c-4.111 1.234-12.743.822-16.032.822s-4.933-.41-4.522 2.056 2.878 4.111 4.933 3.699c2.056-.411 8.222-2.466 8.222-2.466l-1.645-1.233 7.4-.411s-.411-1.233 0-1.233 4.111.41 4.111.41-2.467-1.233-2.056-1.233 2.056 0 5.344.412c3.289.41 10.277 1.644 9.866 4.932s-2.877 6.166-5.755 6.166-5.344-.822-5.344.412 3.289 2.055 5.344 2.055 4.522-1.644 4.933-1.644 1.233 2.466 1.644 2.466 2.878-.822 2.878-.822l-1.644 4.522 2.877.822s-1.644 1.644-1.233 1.644 2.877 0 2.877.411-3.288 2.878-3.288 3.289 2.466 1.644 2.466 1.644-1.644 2.467-2.055 2.056-2.056-2.467-2.056-2.467-.411 1.645-1.233 1.645-2.466-.411-2.466-.411 1.233-2.467.822-2.467-2.467 1.644-2.467 1.233l-1.232-1.236s3.288-1.336 3.288-3.289c0-1.952-1.336-3.905-7.296-4.213-5.961-.309-6.064 1.438-10.483 1.233-4.419-.206-4.419-1.953-7.708-1.953-3.288 0-13.463 4.111-18.19 4.008s-10.688-.411-10.483-.616 3.906-9.661 4.008-9.966z",transform:"matrix(1.5005 0 0 1.3054 285.91 126.597)"}),(0,c.jsx)("path",{fill:"#fdc400",fillOpacity:.996,fillRule:"evenodd",stroke:"#000",strokeWidth:.701,d:"M106.88 102.46c-.411.206-4.008.72-4.214 4.522-.205 3.803.309 3.803.72 3.597s1.233-3.494 1.233-3.494-1.233 4.522.103 5.55a9.3 9.3 0 0 0 2.775 1.438l.513-3.597s-1.027 3.495 1.439 4.728 3.392.308 3.186-.617-.925-3.288-.925-3.288 1.953 2.158 2.056 2.363 1.027 1.85 3.494 1.131c2.466-.72.719-2.364.719-2.364l-2.98-2.46s3.083 3.185 4.419 2.055-1.028-3.597-.925-3.494 1.953 3.494 2.672 1.336-1.13-2.775-1.747-4.83-1.131-2.261-.514-3.495.72-3.596.72-3.596 2.569.616 2.363-1.542-2.775-2.672-3.288-2.775c-.514-.103-.412-2.26-.617-2.158-.206.103-1.85 1.336-1.85 1.336s-1.439-3.392-1.747-3.186-1.953 1.953-3.186 2.055-1.953 1.85-1.953 1.85-4.316-2.055-4.213 1.336 2.569 2.57 2.569 2.672-.411 4.728-.822 4.933z",transform:"matrix(1.5005 0 0 1.3054 286.934 126.302)"}),(0,c.jsx)("path",{fillOpacity:.996,fillRule:"evenodd",d:"M450.874 253.257c.742-.227 1.833-1.174 3.098-1.06s3.291 1.085 2.288 1.615c-1.005.53-1.745.758-2.88.491-1.133-.267-2.005-.837-2.506-1.046M463.452 253.123c-.742-.227-1.833-1.175-3.098-1.06s-3.29 1.085-2.287 1.615 1.745.757 2.88.49c1.132-.266 2.004-.836 2.505-1.045"}),(0,c.jsx)("path",{fill:"#000039",fillOpacity:.996,fillRule:"evenodd",stroke:"#000",strokeWidth:.421,d:"M110.99 103.17c.103.514.411 4.831.616 4.522.206-.308 1.748-4.419 1.645-4.419s-2.158.103-2.261-.103z",transform:"matrix(1.5005 0 0 1.3054 287.143 126.366)"}),(0,c.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.842,d:"M109.96 103.17c.049-1.215.822-1.13 2.467-.925 1.644.206 2.466 1.028 2.363 1.234-.102.205-1.438.719-2.569.616-1.336-.411-2.298.089-2.261-.925z",transform:"matrix(1.5005 0 0 1.3054 287.143 126.556)"}),(0,c.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.497,d:"m112.43 100.08-.206 1.953M119.32 94.844s1.336.617 1.131 1.233-1.131.925-1.131.925M108.12 94.33c-.308.103-.719.308-.925 1.13-.205.823.925 1.337.925 1.337",transform:"matrix(1.5005 0 0 1.3054 287.143 126.556)"}),(0,c.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.497,d:"M111.19 136.13s-1.454 1.454 1.017 1.454.727-1.308.727-1.308",transform:"matrix(1.5005 0 0 1.3054 287.361 77.606)"}),(0,c.jsx)("path",{fill:"#fdc400",fillRule:"evenodd",d:"m462.348 403.76 6.41-21.062-17.8-13.24 22.293-.498 7.271-20.784 7.37 20.75 22.294.4-17.74 13.32 6.506 21.03-18.33-12.516z"}),(0,c.jsx)("path",{fill:"#003017",fillOpacity:.996,fillRule:"evenodd",d:"m465.383 398.115 5.34-16.73-14.832-10.518 18.577-.396 6.06-16.51 6.141 16.482 18.578.318-14.783 10.582 5.421 16.705-15.275-9.942z"}),(0,c.jsx)("path",{fill:"#fdc400",fillRule:"evenodd",d:"m425.661 361.105 6.34-19.917-17.607-12.52 22.052-.472 7.193-19.655 7.291 19.622 22.053.378-17.548 12.597 6.435 19.887-18.132-11.836z"}),(0,c.jsx)("path",{fill:"#003017",fillOpacity:.996,fillRule:"evenodd",d:"m428.673 355.764 5.283-15.822-14.673-9.946 18.377-.374 5.994-15.614 6.076 15.588 18.377.3-14.623 10.007 5.363 15.798-15.11-9.403z"}),(0,c.jsx)("path",{fill:"#fdc400",fillRule:"evenodd",d:"m499.57 361.105 6.423-19.917-17.835-12.52 22.337-.472 7.285-19.655 7.385 19.622 22.337.378-17.774 12.597 6.518 19.887-18.366-11.836z"}),(0,c.jsx)("path",{fill:"#003017",fillOpacity:.996,fillRule:"evenodd",d:"m502.618 355.764 5.352-15.822-14.862-9.946 18.614-.374 6.07-15.614 6.154 15.588 18.614.3-14.811 10.007 5.431 15.798-15.304-9.403z"}),(0,c.jsx)("path",{fill:"none",d:"M373.272 372.554c8.026 34.543 41.902 60.18 87.528 66.243 58.605 7.787 114.514-21.906 124.795-66.277"}),(0,c.jsx)("path",{d:"m373.128 377.899 11.006-6.218 1.036 2.263-4.317 2.439 1.429 3.12 4.316-2.438 1.036 2.263-11.006 6.218-1.036-2.263 4.988-2.818-1.428-3.121-4.988 2.818zm4.607 9.63 10.276-7.607 3.516 5.865-1.708 1.264-2.25-3.752-2.375 1.759 2.094 3.492-1.628 1.205-2.094-3.492-2.829 2.094 2.303 3.84-1.735 1.285zm7.16 11.046 9.065-9.315 1.552 1.863-3.555 3.654 2.139 2.57 3.555-3.653 1.552 1.864-9.065 9.315-1.551-1.864 4.108-4.222-2.14-2.57-4.108 4.222zm11.837 5.516 1.47 1.434 2.674-5.05zm-5.75 1.72 10.232-8.277 2.321 2.261-6.031 12.372-1.863-1.815 1.588-3.039-1.99-1.938-2.491 2.157zm8.93 8.294 6.097-9.238-2.134-1.739 1.205-1.825 6.122 4.99-1.204 1.825-2.134-1.74-6.097 9.24zm5.008 4.003 6.432-11.71 1.95 1.322-2.522 4.593 2.69 1.824 2.522-4.593 1.95 1.323-6.432 11.71-1.95-1.322 2.915-5.308-2.69-1.824-2.915 5.308zm12.09 7.652 5.19-12.448 5.857 3.014-.849 2.037-3.768-1.94-1.227 2.943 3.557 1.83-.829 1.99-3.557-1.832-2.285 5.48zm11.453-1.89q-1.081 3.165-1.033 4.128.058.96.958 1.338.885.373 1.48-.29.605-.669 1.698-3.868c1.093-3.199 1.075-3.516 1.041-4.153q-.05-.955-.943-1.332-.892-.375-1.5.301-.609.677-1.701 3.876m-2.197-.927q.697-2.04 1.285-3.183.59-1.152 1.169-1.613.8-.663 1.626-.744.824-.08 1.964.4t1.709 1.149q.57.669.78 1.758.15.789-.1 2.074-.243 1.289-.937 3.32-.69 2.025-1.282 3.176-.588 1.143-1.164 1.625-.808.66-1.633.74t-1.965-.4q-1.14-.48-1.708-1.149-.57-.668-.773-1.755-.157-.77.086-2.06.246-1.297.943-3.338m10.62-2.914 2.205.73-2.375 8.862q-.406 1.52-.223 2.176.194.65 1.047.932.846.28 1.315-.16.476-.437.89-1.983l2.366-8.828 2.175.72-2.432 9.076q-.355 1.323-.658 1.892a2.9 2.9 0 0 1-.732.92 2.87 2.87 0 0 1-1.539.625q-.876.081-1.951-.274-2.03-.671-2.605-1.922-.567-1.256.085-3.69zm5.906 16.178 2.696-13.388 2.308.574 1.252 10.143 1.823-9.379 2.12.528-2.696 13.387-2.292-.57-1.272-10.166-1.827 9.396zm12.07.682 1.006.175q.768.134 1.094.064a.97.97 0 0 0 .551-.337q.391-.473.655-1.365.265-.9.55-2.925.278-1.971.246-2.896t-.347-1.45a1.1 1.1 0 0 0-.47-.406q-.297-.151-.961-.266l-.975-.17zm-2.507 1.61 1.91-13.554 3.652.636q1.117.195 1.745.52.636.327.996.877.543.807.655 1.917.12 1.103-.195 3.338-.406 2.888-.757 4.053-.35 1.156-.904 1.916-.537.763-1.337.967-.79.195-2.636-.125zm9.55 1.57 1.188-13.655 6.312.677-.197 2.27-4.038-.433-.275 3.157 3.76.403-.189 2.164-3.759-.404-.326 3.76 4.133.444-.2 2.305zm10.43-1.106 1.018.04q.777.033 1.093-.08a1 1 0 0 0 .511-.408q.337-.521.504-1.441.167-.93.233-2.978.065-1.994-.066-2.908-.13-.915-.5-1.393a1.05 1.05 0 0 0-.511-.341q-.31-.111-.982-.138l-.986-.04zm-2.317 1.931.444-13.71 3.694.148q1.13.045 1.788.285.666.24 1.083.739.627.73.856 1.817.238 1.08.165 3.34-.096 2.92-.319 4.124-.223 1.194-.691 2.023-.452.828-1.224 1.136-.765.3-2.63.225zm13.754.18-.49-13.71 2.3-.1.49 13.708zm6.141-.361-.844-11.419-2.637.241-.166-2.255 7.567-.69.167 2.255-2.637.24.844 11.418zm8.1-14.71 2.268-.438 1.425 9.11q.244 1.563.672 2.059.435.487 1.31.316.87-.168 1.114-.793.252-.628.003-2.216l-1.42-9.076 2.236-.431 1.46 9.33q.212 1.36.169 2.02-.037.648-.287 1.185a3.27 3.27 0 0 1-1.128 1.321q-.751.507-1.856.72-2.086.403-3.103-.431-1.011-.845-1.403-3.346zm12.285 3.479.935-.253q1.044-.283 1.366-.847.32-.572.08-1.672-.245-1.108-.726-1.426-.477-.33-1.56-.037l-.965.262zm-.514 8.08-2.922-13.33 3.88-1.05q1.775-.48 2.748.191.972.672 1.412 2.68.433 1.974-.188 3.169-.615 1.185-2.321 1.646l-1.628.44 1.239 5.652zm8.817-9.659q.92 3.227 1.498 3.95.581.71 1.498.387.902-.318.998-1.249.1-.942-.83-4.203c-.93-3.26-1.122-3.499-1.504-3.974q-.574-.714-1.484-.394-.909.321-1.008 1.272-.099.95.832 4.211m-2.239.79q-.594-2.082-.772-3.383-.18-1.31.015-2.07.257-1.072.859-1.705.602-.634 1.763-1.042 1.162-.41 1.982-.278t1.594.84q.559.514 1.08 1.694.53 1.178 1.122 3.25.588 2.063.77 3.374.178 1.302-.005 2.076-.265 1.076-.867 1.707-.601.634-1.763 1.042-1.162.41-1.982.278t-1.586-.843q-.554-.496-1.084-1.674-.532-1.186-1.126-3.267m11.286 3.136-4.594-12.735 2.196-.977 6.197 7.576-3.273-8.88 2.017-.897 4.594 12.734-2.18.972-6.226-7.584 3.279 8.896zm14.3-7.024-4.816-10.13-2.34 1.374-.951-2 6.713-3.942.951 2-2.339 1.374 4.817 10.13zm5.435-3.24-6.593-11.6 1.932-1.356 2.586 4.55 2.664-1.87-2.586-4.55 1.932-1.355 6.593 11.6-1.932 1.355-2.988-5.257-2.664 1.87 2.988 5.257zm8.236-5.932-7.441-10.947 5.06-4.247 1.238 1.82-3.238 2.716 1.72 2.531 3.014-2.529 1.18 1.735-3.014 2.529 2.048 3.014 3.315-2.781 1.256 1.848zm6.352-11.772 1.641-1.792.557.63q.798.9 1.29 1.014.492.099.99-.444.52-.57.53-1.154.017-.593-.49-1.164-.387-.44-.851-.544-.47-.111-1.537.08l-1.425.257q-1.83.347-2.61.125-.774-.228-1.505-1.054-1.09-1.233-1.05-2.65.039-1.416 1.194-2.678 1.223-1.335 2.534-1.304c1.31.03 1.72.495 2.54 1.423q.123.14.185.222.067.077.112.14l-1.555 1.698-.23-.26q-.703-.794-1.24-.882-.54-.087-1.076.5-.394.43-.393.941 0 .497.406.956.544.615 2.22.26a.1.1 0 0 1 .029-.005l1.505-.307q1.595-.344 2.5-.083.9.254 1.765 1.233 1.18 1.335 1.135 2.808-.045 1.474-1.321 2.866-1.327 1.449-2.653 1.398-1.32-.057-2.703-1.62-.147-.165-.46-.571zm9.554-3.854-9.463-8.811 4.073-5.401 1.573 1.465-2.606 3.455 2.188 2.037 2.426-3.217 1.5 1.397-2.426 3.216 2.605 2.426 2.668-3.537 1.598 1.487zm2.404-12.282 1.093-1.803-4.847-2.307zm2.264 6.12-8.687-10.229 1.725-2.844 11.809 5.078-1.384 2.284-2.914-1.365-1.479 2.438 2.242 2.473zm1.465-11.156 1.051-2.275.707.403q1.013.578 1.511.512.495-.078.815-.767.332-.721.177-1.28-.153-.569-.794-.935-.493-.28-.963-.218-.477.058-1.436.612l-1.28.742q-1.638.97-2.442 1.03-.8.055-1.727-.474-1.384-.789-1.747-2.148-.363-1.36.376-2.96.784-1.696 2.036-2.124 1.253-.426 2.814.464.157.09.239.147.085.048.146.093l-.996 2.155-.293-.166q-.891-.51-1.427-.404-.534.106-.88.85-.252.547-.106 1.031.143.472.656.765.692.394 2.182-.528a.1.1 0 0 1 .025-.016l1.342-.816q1.418-.884 2.35-.953.927-.072 2.025.554 1.498.855 1.871 2.27.375 1.415-.443 3.182-.85 1.839-2.123 2.254-1.269.407-3.024-.594a12 12 0 0 1-.599-.382z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3584.4ad9a196.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js deleted file mode 100644 index 7c4eebfa1b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 365.e655295f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["365"],{9372(h,s,e){e.r(s),e.d(s,{default:()=>l});var i=e(74848);e(47867);let l=h=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,i.jsx)("path",{fill:"#006b3f",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#fcd116",d:"M0 0h640v320H0z"}),(0,i.jsx)("path",{fill:"#ce1126",d:"M0 0h640v160H0z"}),(0,i.jsx)("path",{d:"m320 160 51.987 160-136.104-98.885h168.234L268.013 320z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/365.e655295f.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js deleted file mode 100644 index 483b1efba1..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3653.7c1ffecd.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3653"],{42628(a,s,t){t.r(s),t.d(s,{default:()=>d});var h=t(74848);t(47867);let d=a=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...a,children:[(0,h.jsx)("path",{fill:"#0038a8",d:"M0 319.7h640V480H0z"}),(0,h.jsx)("path",{fill:"#fff",d:"M0 160h640v160H0z"}),(0,h.jsx)("path",{fill:"#d52b1e",d:"M0 0h640v160H0z"}),(0,h.jsxs)("g",{fill:"none",stroke:"#000",transform:"translate(-116.364)scale(1.45455)",children:[(0,h.jsx)("circle",{cx:300,cy:165,r:42.2,strokeWidth:1.076}),(0,h.jsx)("circle",{cx:300,cy:165,r:34.67,strokeWidth:.478}),(0,h.jsx)("circle",{cx:300,cy:165,r:26.56,strokeWidth:.438})]}),(0,h.jsx)("path",{d:"m287.317 263.68-7.116 4.227-2.176-3.665q-.605-1.02-.75-1.662a1.93 1.93 0 0 1 .132-1.254q.277-.612.957-1.015.592-.35 1.17-.353a2.3 2.3 0 0 1 1.11.28q.338.18.74.605-.102-.47-.078-.73.015-.171.165-.573t.26-.57l1.43-2.29 1.476 2.486-1.477 2.466q-.29.475-.313.724-.024.336.155.637l.115.194 2.89-1.715zm-5.544.306-.55-.927q-.09-.153-.444-.526a.68.68 0 0 0-.436-.225.77.77 0 0 0-.495.106q-.345.205-.4.533-.055.327.302.93l.574.965zm-6.703-5.498-2.163-6.504 1.677-.557 1.354 4.07 1.248-.414-1.256-3.777 1.602-.533 1.256 3.777 1.548-.515-1.393-4.19 1.78-.59 2.2 6.62zm-2.836-9.673-.484-4.223q-.158-1.38.42-2.143.576-.765 1.79-.9 1.245-.143 2.03.525.789.667.964 2.205l.16 1.39 3.05-.348.293 2.552zm3.213-2.953-.07-.623q-.086-.735-.374-1.004a.83.83 0 0 0-.688-.222.92.92 0 0 0-.627.333q-.24.29-.158 1l.083.725zm-3.475-12.582.273-2.536 4.906.53a4.2 4.2 0 0 1 1.355.375q.624.296 1.057.834.435.537.572 1.092.195.77.083 1.81-.065.6-.225 1.3-.16.702-.462 1.152t-.804.796q-.502.345-1.008.44-.81.151-1.417.085l-4.905-.53.274-2.537 5.022.542q.675.072 1.093-.26.42-.333.49-.995.071-.657-.26-1.07-.334-.414-1.02-.487zm1.105-6.065 1.58-4.52q.395-1.13 1.166-1.54a1.92 1.92 0 0 1 1.597-.12q.693.243 1.038.848.23.404.228 1.025.496-.773 1.128-.996.63-.225 1.378.036.608.211.994.664.387.451.497 1.04.07.367-.064 1.007-.18.852-.273 1.118l-1.457 4.168zm3.916-1.364.367-1.05q.199-.564.08-.853-.117-.29-.485-.418-.34-.121-.61.034-.27.154-.46.703l-.373 1.066zm3.07 1.074.43-1.23q.218-.625.087-.958a.79.79 0 0 0-.505-.464.73.73 0 0 0-.646.06q-.3.18-.52.813l-.43 1.226zm-3.073-9.659 1.32-2.19 5.343 3.224 2.062-3.418 1.745 1.053-3.384 5.608zm5.004-7.578 1.64-1.97 6.36 5.3-1.642 1.97zm11.126-4.276 2.142-.947q.444.861.488 1.658t-.293 1.51-1.18 1.437q-1.023.88-1.928 1.14-.906.26-2.02-.085-1.115-.345-2.12-1.514-1.338-1.557-1.23-3.107.11-1.549 1.625-2.85 1.186-1.02 2.277-1.124t2.275.605l-1.386 1.853q-.335-.21-.548-.257a1.5 1.5 0 0 0-.692 0 1.5 1.5 0 0 0-.63.333q-.66.566-.554 1.4.072.621.797 1.465.9 1.044 1.548 1.16.65.115 1.225-.378.556-.479.573-1.036.015-.556-.367-1.262zm8.815-3.172-2.57 1.37.29 1.395-2.308 1.23-1.15-8.767 2.462-1.312 6.638 5.84-2.36 1.26zm-1.315-1.326-2.207-2.196.598 3.054zm7.817-8.477 3.744-.647q1.11-.19 1.842-.008.734.181 1.276.667.54.483.87 1.195t.474 1.546q.225 1.308.053 2.08a3.4 3.4 0 0 1-.618 1.35 2.74 2.74 0 0 1-1.023.844 6 6 0 0 1-1.464.482l-3.744.647zm2.84 1.412.77 4.455.617-.107q.789-.135 1.093-.37.304-.232.418-.7.113-.47-.056-1.45-.225-1.296-.73-1.7-.505-.407-1.485-.238zm7.793-2.837 6.848.292-.076 1.766-4.287-.183-.056 1.314 3.976.17-.072 1.687-3.977-.17-.07 1.63 4.412.19-.08 1.872-6.973-.3zm9.964.785 2.484.608-1.483 6.06 3.877.95-.485 1.978-6.36-1.557zm13.28 4.407 3.66 2.164q1.193.706 1.454 1.627.26.92-.36 1.97-.639 1.08-1.647 1.303-1.005.225-2.34-.563l-1.204-.713-1.563 2.644-2.21-1.307zm.416 4.345.54.318q.635.375 1.024.308a.83.83 0 0 0 .592-.414.92.92 0 0 0 .113-.7q-.087-.367-.704-.732l-.627-.37zm7.177 9.648-2.134-1.984-1.224.728-1.915-1.78 7.915-3.942 2.042 1.9-3.36 8.18-1.958-1.824zm.826-1.676 1.356-2.8-2.693 1.56zm.992 5.501 6.824-4.682 2.41 3.514q.671.979.86 1.61.186.63-.05 1.26-.239.627-.89 1.075-.567.389-1.145.43a2.3 2.3 0 0 1-1.125-.208q-.349-.158-.778-.555.134.464.125.722-.003.173-.126.582a3.3 3.3 0 0 1-.22.586l-1.28 2.377-1.635-2.383 1.313-2.558q.258-.492.264-.743a1.1 1.1 0 0 0-.196-.624l-.128-.186-2.77 1.9zm5.513-.667.61.89q.1.143.476.494.186.18.45.195a.76.76 0 0 0 .486-.14q.33-.225.363-.557.034-.33-.362-.908l-.635-.926zm2.559 12.391-1.08-2.706-1.417.135-.97-2.428 8.842-.18 1.033 2.592-6.534 5.956-.99-2.486zm1.464-1.16 2.426-1.953-3.1.258zm2.159 9.044 1.702-.255.585 3.91-3.49.52q-.933-1.005-1.338-1.83-.405-.819-.584-2.004-.218-1.455.142-2.45.36-.992 1.267-1.644.905-.653 2.18-.843 1.34-.201 2.414.204a3.62 3.62 0 0 1 1.746 1.394q.52.774.73 2.18.205 1.357.06 2.067a2.67 2.67 0 0 1-.596 1.23q-.45.523-1.21.864l-.8-2.373q.441-.22.633-.618c.192-.398.164-.584.108-.956q-.123-.832-.775-1.24-.653-.406-1.903-.22-1.329.2-1.824.784t-.36 1.478q.063.425.243.79.182.37.552.82l.77-.114zm5.41 12.014-.226 2.542-4.915-.438a4.2 4.2 0 0 1-1.362-.35 3 3 0 0 1-1.072-.816q-.443-.53-.592-1.082-.21-.766-.117-1.807.054-.6.202-1.306.146-.704.44-1.16a3 3 0 0 1 .79-.81q.495-.356.997-.458.809-.168 1.416-.113l4.915.438-.227 2.542-5.032-.45q-.675-.059-1.087.28-.413.342-.47 1.005-.06.66.28 1.065.342.407 1.027.47zm-9.15 8.756.91-2.767-1.172-.807.817-2.483 6.89 5.54-.87 2.65-8.835.37.836-2.543zm1.87.05 3.11.06-2.542-1.792zm2.96 6.73-1.46 2.435-3.256-.003 1.538 2.87-1.45 2.42-2.473-5.232-2.974-1.782 1.318-2.198 2.973 1.782z"}),(0,h.jsxs)("g",{fill:"#009b3a",stroke:"#000",strokeWidth:.145,children:[(0,h.jsx)("path",{d:"M328.117 211.346s23.35 10.06 19.272 30.847-17.078 20.647-22.174 22.945c-5.098 2.297-8.614 5.585-10.625 5.125s-4.67-2.012-4.67-2.012-.212 3.415 3.882 4.037c4.094.62 9.476-5.388 12.06-6.056 2.586-.668 18.456-2.39 22.318-23.54 4.507-22.58-19.917-30.68-20.06-31.344z"}),(0,h.jsx)("path",{d:"M339.9 215.768a3.205.76 75.104 0 1-1.54.118 3.205.76 75.104 1 1 1.54-.118z"}),(0,h.jsx)("path",{d:"M339.1 215.986a3.303.737 63.335 1 1-1.393.51 3.303.737 63.335 0 1 1.392-.51zm-2.343 1.542a3.128.778 17.053 0 1-.146 1.58 3.128.778 17.053 0 1 .147-1.58z"}),(0,h.jsx)("path",{d:"M337.107 216.67a3.29.74 34.225 1 1-.672 1.332 3.29.74 34.225 1 1 .672-1.332z"}),(0,h.jsx)("path",{d:"M338.096 216.262a3.344.727 46.194 1 1-1.017 1.042 3.344.727 46.194 0 1 1.016-1.042z"}),(0,h.jsx)("path",{d:"M339.725 219.2c.013.015-.9.51-1.108.582-.207.074-.488-.275-1.083.03s-1.004.863-1.134 1.19.17.464.888.114c.72-.35.91-.904 1.256-1.12.347-.218.93-.537 1.26-.655.143-.312.61-.983.85-1.37.24-.384 1.185-1.02 1.53-1.76.3-.612.186-1.133-.215-.915-.403.217-.922.833-1.164 1.275-.242.44-.035 1.004-.303 1.418-.212.3-.723 1.212-.778 1.213zm7.229 2.386a1.08 4.807-1.585 1 1-2.17-.52 1.08 4.807-1.585 1 1 2.17.52z"}),(0,h.jsx)("path",{d:"M345.747 221.543a5.008 1.036 77.49 1 1-2.097.105 5.008 1.036 77.49 1 1 2.097-.105z"}),(0,h.jsx)("path",{d:"M342.008 222.706a4.665 1.112 34.91 1 1-.725 2.198 4.665 1.112 34.91 1 1 .725-2.198z"}),(0,h.jsx)("path",{d:"M342.765 221.644a4.99 1.04 50.904 0 1-1.37 1.607 4.99 1.04 50.904 1 1 1.37-1.606z"}),(0,h.jsx)("path",{d:"M344.277 221.5a5.096 1.018 61.837 1 1-1.752 1.036 5.096 1.018 61.837 1 1 1.752-1.037z"}),(0,h.jsx)("path",{d:"M345.557 226.43c.015.026-1.415.324-1.726.337s-.583-.613-1.51-.442c-.924.17-1.675.786-1.963 1.197-.288.41.08.74 1.192.56 1.11-.178 1.557-.887 2.11-1.042s1.463-.353 1.96-.374c.303-.384 1.17-1.137 1.63-1.58.462-.445 1.98-.933 2.702-1.84.618-.74.635-1.538.007-1.406-.63.132-1.552.78-2.033 1.306-.482.524-.38 1.423-.89 1.895-.392.336-1.403 1.413-1.48 1.39zm5.193 4.843a1.074 4.828 8.74 1 1-2.026-.93 1.074 4.828 8.74 1 1 2.026.93z"}),(0,h.jsx)("path",{d:"M349.6 230.983a1.03 5.04-2.05 1 1-2.067-.3 1.03 5.04-2.05 1 1 2.068.3z"}),(0,h.jsx)("path",{d:"M345.732 231.42a4.688 1.106 46.026 1 1-1.106 2.03 4.688 1.106 46.026 1 1 1.106-2.03z"}),(0,h.jsx)("path",{d:"M346.663 230.517a5.026 1.032 61.79 1 1-1.63 1.324 5.026 1.032 61.79 1 1 1.63-1.323z"}),(0,h.jsx)("path",{d:"M348.147 230.663a5.136 1.01 72.543 1 1-1.9.687 5.136 1.01 72.543 1 1 1.9-.687z"}),(0,h.jsx)("path",{d:"M348.525 235.768c.008.028-1.442.048-1.75 0-.305-.046-.46-.717-1.394-.725-.935-.01-1.78.454-2.135.804-.356.35-.056.746 1.064.783 1.118.037 1.682-.577 2.25-.625.567-.047 1.494-.067 1.984.008.365-.322 1.348-.9 1.88-1.25.53-.35 2.102-.54 2.97-1.295.738-.615.898-1.4.26-1.39s-1.657.475-2.222.9-.628 1.333-1.21 1.7c-.445.257-1.627 1.127-1.697 1.09m2.515 6.298a1.074 4.83 31.31 0 1-1.472-1.7 1.074 4.83 31.31 0 1 1.473 1.7"}),(0,h.jsx)("path",{d:"M350.096 241.324a1.022 5.072 20.618 0 1-1.757-1.132 1.022 5.072 20.618 0 1 1.756 1.132m-3.665-1.192a4.764 1.088 69.934 0 1-1.79 1.426 4.764 1.088 69.934 0 1 1.79-1.426"}),(0,h.jsx)("path",{d:"M347.623 239.68a1.015 5.107-4.863 0 1-1.99.554 1.015 5.107-4.863 1 1 1.99-.553"}),(0,h.jsx)("path",{d:"M348.917 240.437a.996 5.205 5.55 1 1-1.987-.148.996 5.205 5.55 1 1 1.987.147"}),(0,h.jsx)("path",{d:"M347.274 245.324c-.003.03-1.324-.55-1.584-.72-.26-.172-.138-.857-.98-1.252-.845-.395-1.79-.314-2.247-.137-.458.177-.34.67.66 1.166.998.498 1.747.162 2.28.352s1.378.556 1.793.828c.455-.147 1.57-.276 2.185-.38.618-.106 2.115.368 3.195.026.907-.265 1.356-.926.775-1.18-.582-.255-1.685-.247-2.36-.086-.678.16-1.087.976-1.758 1.077-.5.053-1.91.37-1.958.307m.857 7.695a1.257 5.5 48.457 1 1-1.063-2.41 1.257 5.5 48.457 1 1 1.062 2.41"}),(0,h.jsx)("path",{d:"M347.332 251.87a1.194 5.792 37.466 1 1-1.56-1.885 1.194 5.792 37.466 1 1 1.56 1.885"}),(0,h.jsx)("path",{d:"M343.696 249.223a1.248 5.54-3.478 1 1-2.44.927 1.248 5.54-3.478 1 1 2.44-.927"}),(0,h.jsx)("path",{d:"M345.15 249.15a1.173 5.896 11.633 0 1-2.372-.11 1.173 5.896 11.633 1 1 2.372.11"}),(0,h.jsx)("path",{d:"M346.328 250.444a1.157 5.978 22.12 1 1-2.14-.882 1.157 5.978 22.12 1 1 2.14.882"}),(0,h.jsx)("path",{d:"M342.91 255.26c-.013.03-1.276-1.09-1.506-1.37-.23-.282.13-.995-.67-1.736-.798-.74-1.864-.994-2.426-.964s-.594.616.342 1.526 1.87.81 2.395 1.212c.524.403 1.335 1.112 1.702 1.563.55.002 1.818.264 2.53.37.714.108 2.206 1.173 3.507 1.185 1.085.037 1.797-.53 1.24-1.022-.556-.49-1.772-.88-2.57-.948s-1.516.684-2.288.553c-.57-.122-2.223-.28-2.256-.37m-2.298 7.345a1.407 6.065 79.752 1 1 .29-2.905 1.407 6.065 79.752 1 1-.29 2.904"}),(0,h.jsx)("path",{d:"M340.496 261.048a1.343 6.355 68.504 0 1-.478-2.696 1.343 6.355 68.504 0 1 .478 2.696"}),(0,h.jsx)("path",{d:"M338.416 256.423a1.403 6.085 26.238 0 1-2.86-.53 1.403 6.085 26.238 1 1 2.86.53"}),(0,h.jsx)("path",{d:"M339.87 257.208a1.323 6.45 41.823 0 1-2.23-1.475 1.323 6.45 41.823 0 1 2.23 1.475"}),(0,h.jsx)("path",{d:"M340.292 259.128a1.305 6.538 52.67 1 1-1.583-2.076 1.305 6.538 52.67 0 1 1.582 2.076"}),(0,h.jsx)("path",{d:"M334.357 261.717c-.03.023-.637-1.773-.705-2.173s.668-.87.302-2.038c-.366-1.166-1.257-2.023-1.816-2.32s-.91.242-.503 1.65c.406 1.406 1.364 1.85 1.65 2.537.284.686.68 1.83.788 2.47.53.32 1.61 1.303 2.24 1.817s1.49 2.39 2.738 3.154c1.03.662 2.026.534 1.757-.255-.27-.79-1.23-1.864-1.963-2.39-.734-.525-1.837-.225-2.51-.797-.483-.445-1.993-1.553-1.976-1.656"}),(0,h.jsx)("path",{d:"M330.765 267.986a1.763 6.137 89.068 0 1 .01-3.526 1.763 6.137 89.068 0 1-.01 3.526"}),(0,h.jsx)("path",{d:"M329.95 262.474a1.704 6.35 37.587 0 1-2.616-2.188 1.704 6.35 37.587 1 1 2.616 2.188"}),(0,h.jsx)("path",{d:"M330.808 265.28a1.742 6.213 66.472 0 1-1.246-3.255 1.742 6.213 66.472 0 1 1.246 3.256m1.672-53.411a3.812.775 41.126 0 1-1.446.788 3.812.775 41.126 1 1 1.447-.788m-1.876 1.585a3.86.765 8.163 0 1 .293 1.585 3.86.765 8.163 1 1-.293-1.585"}),(0,h.jsx)("path",{d:"M331.36 212.452a4.038.732 26.817 1 1-.765 1.252 4.038.732 26.817 0 1 .766-1.252m-27.666 49.556s5.144 1.103 9.615 2.728c4.47 1.625 11.264 7.203 13.09 7.52 2.048.092 4.888-.607 5.966-3.565-3.154.843-5.045 2.12-8.056.466-1.064-.403-4.548-3.575-8.367-5.272s-11.52-3.634-11.52-3.634l-.727 1.758m5.484-46.503c-.02-.044 5.92-3.123 5.92-3.123l-6.53 1.67-.757 1.148 1.366.306"}),(0,h.jsx)("path",{d:"M314.794 216.946c-2.292-.417-5.817-1.187-8.062-1.367 1.552-1.72 3.69-4.625 5.007-6.408-.87 1.7-2.237 3.944-2.776 5.572 1.58.853 4.064 1.52 5.83 2.202"}),(0,h.jsx)("path",{d:"M308.117 215.87c-.025-.04 5.26-4.074 5.26-4.074l-6.11 2.734-.543 1.263 1.393.077"}),(0,h.jsx)("path",{d:"M313.732 216.888c-2.308-.44-5.86-1.248-8.116-1.442 1.524-1.77 3.614-4.764 4.902-6.603-.84 1.755-2.168 4.068-2.678 5.75 1.602.886 4.107 1.585 5.892 2.295"}),(0,h.jsx)("path",{d:"M307.245 216.204c-.015-.045 6.195-2.594 6.195-2.594l-6.67 1.098-.863 1.075 1.338.42"}),(0,h.jsx)("path",{d:"M313.034 216.946c-2.335-.194-5.943-.63-8.197-.58 1.3-1.966 3.014-5.238 4.072-7.247-.626 1.874-1.667 4.37-1.974 6.134 1.69.727 4.248 1.165 6.098 1.692"}),(0,h.jsx)("path",{d:"M306.605 216.233c-.034-.034 4.197-5.114 4.197-5.114l-5.318 3.976-.247 1.356 1.368-.22"}),(0,h.jsx)("path",{d:"M313.005 217.28c-2.502-.047-6.38-.267-8.772-.055 1.183-2.237 2.677-5.93 3.6-8.196-.477 2.09-1.332 4.887-1.48 6.834 1.867.675 4.633.97 6.652 1.417"}),(0,h.jsx)("path",{d:"M305.76 217.44c-.03-.044 5.098-4.89 5.098-4.89l-6.167 3.413-.422 1.46 1.493.018"}),(0,h.jsx)("path",{d:"M311.885 217.44c-2.688.01-6.827-.135-9.45.16 1.74-2.495 4.116-6.6 5.58-9.12-.946 2.315-2.45 5.418-3.012 7.567 1.875.696 4.796.954 6.882 1.394"}),(0,h.jsx)("path",{d:"M304.045 217.804c-.026-.048 6.51-5.514 6.51-5.514l-7.36 3.913-.757 1.62 1.607-.02"}),(0,h.jsx)("path",{d:"M310.91 217.6c-2.662.385-6.784.818-9.34 1.47 1.366-2.673 3.133-7.005 4.223-9.666-.606 2.39-1.65 5.623-1.9 7.795 1.957.417 4.888.262 7.017.4"}),(0,h.jsx)("path",{d:"M303.172 218.895c-.038-.04 5.016-6.948 5.016-6.948l-6.26 5.66-.335 1.734 1.58-.445"}),(0,h.jsx)("path",{d:"M309.44 218.43c-2.68.25-6.82.475-9.41.997 1.514-2.6 3.522-6.836 4.76-9.437-.74 2.354-1.964 5.53-2.336 7.687 1.932.515 4.868.507 6.987.753"}),(0,h.jsx)("path",{d:"M302.27 219.623c-.026-.05 6.386-5.526 6.386-5.526L301.41 218l-.732 1.632 1.592-.01"}),(0,h.jsx)("path",{d:"M308.656 218.706c-2.672.564-6.818 1.278-9.37 2.098 1.248-2.73 2.817-7.122 3.786-9.82-.493 2.396-1.387 5.656-1.532 7.815 2 .274 4.956-.083 7.116-.094"}),(0,h.jsx)("path",{d:"M301.208 219.913c-.043-.03 4.08-7.574 4.08-7.574l-5.522 6.55-.09 1.73 1.532-.707"}),(0,h.jsx)("path",{d:"M308.656 219.143c-2.867.745-7.335 1.723-10.04 2.75 1.04-3.103 2.228-8.077 2.963-11.134-.25 2.697-.835 6.378-.73 8.796 2.23.22 5.434-.307 7.806-.414"}),(0,h.jsx)("path",{d:"M300.408 221.66c-.043-.045 5.14-7.592 5.14-7.592l-6.572 6.135-.277 1.915 1.708-.46"}),(0,h.jsx)("path",{d:"M307.52 220c-2.817.892-7.217 2.1-9.86 3.26.888-3.123 1.838-8.103 2.427-11.162-.122 2.68-.532 6.348-.315 8.73 2.23.1 5.394-.594 7.75-.827"}),(0,h.jsx)("path",{d:"M299.375 222.78c-.05-.036 3.907-8.38 3.907-8.38l-5.554 7.216.025 1.927 1.622-.764"}),(0,h.jsx)("path",{d:"M306.445 221.15c-2.887.658-7.378 1.5-10.115 2.44 1.168-3.038 2.566-7.924 3.43-10.926-.365 2.66-1.106 6.284-1.107 8.678 2.213.28 5.425-.152 7.792-.192"}),(0,h.jsx)("path",{d:"M298.445 223.58c-.035-.053 6.382-6.56 6.382-6.56l-7.524 4.857-.613 1.842 1.755-.14"}),(0,h.jsx)("path",{d:"M305.165 222.284c-2.86.384-7.298.798-10.028 1.484 1.327-2.978 2.993-7.812 4.022-10.782-.522 2.672-1.468 6.287-1.616 8.723 2.143.503 5.307.38 7.62.574"}),(0,h.jsx)("path",{d:"M297.18 222.924c-.048-.04 4.342-8.205 4.342-8.205l-5.89 6.904-.093 1.955 1.64-.656"}),(0,h.jsx)("path",{d:"M305.514 221.31c-3.11 1.273-7.968 3.048-10.882 4.618.955-3.692 1.963-9.54 2.588-13.136-.112 3.115-.533 7.4-.273 10.14 2.47-.077 5.963-1.15 8.567-1.622"}),(0,h.jsx)("path",{d:"M296.583 225.412c-.05-.044 5.198-9.416 5.198-9.416l-6.86 7.967-.19 2.225 1.853-.776"}),(0,h.jsx)("path",{d:"M304.32 222.473c-3.046 1.433-7.816 3.46-10.655 5.172.79-3.692 1.535-9.512 1.998-13.088.027 3.074-.202 7.318.18 10.005 2.46-.218 5.9-1.475 8.478-2.09"}),(0,h.jsx)("path",{d:"M295.52 226.837c-.056-.033 3.794-10.133 3.794-10.133l-5.677 9.05.144 2.194 1.74-1.11"}),(0,h.jsx)("path",{d:"M302.983 223.317c-3.04 1.457-7.8 3.52-10.63 5.255.766-3.695 1.475-9.517 1.916-13.095.045 3.072-.157 7.315.242 9.997 2.46-.238 5.895-1.523 8.47-2.157"}),(0,h.jsx)("path",{d:"M294.663 228.044c-.047-.05 5.868-8.935 5.868-8.935l-7.398 7.312-.36 2.216 1.89-.594"}),(0,h.jsx)("path",{d:"M302.706 222.852c-2.71 2.164-7 5.344-9.443 7.722-.004-3.73-.504-9.48-.805-13.016.68 2.928 1.355 7.04 2.304 9.504 2.39-.85 5.525-2.95 7.944-4.21"}),(0,h.jsx)("path",{d:"M294.954 228.466c-.065-.01.68-10.707.68-10.707l-2.828 10.41.79 1.96 1.358-1.664"}),(0,h.jsx)("path",{d:"M301.935 223.84c-2.718 2.15-7.018 5.31-9.47 7.675.01-3.732-.465-9.487-.752-13.025.668 2.932 1.325 7.05 2.264 9.52 2.39-.84 5.534-2.923 7.958-4.17"}),(0,h.jsx)("path",{d:"M294.27 230.284c-.06-.025 2.735-10.462 2.735-10.462l-4.732 9.62.373 2.15 1.624-1.308"}),(0,h.jsx)("path",{d:"M301.63 224.088c-2.57 2.53-6.66 6.286-8.93 9.006-.403-3.828-1.534-9.67-2.223-13.265 1.015 2.925 2.152 7.067 3.396 9.488 2.377-1.147 5.392-3.66 7.757-5.23"}),(0,h.jsx)("path",{d:"M294.285 231.623c-.068-.01.51-11.127.51-11.127l-2.732 10.81.85 2.04 1.372-1.723"}),(0,h.jsx)("path",{d:"M300.815 225.935c-2.75 2.273-7.104 5.618-9.574 8.11-.085-3.876-.727-9.846-1.116-13.517.766 3.036 1.553 7.302 2.587 9.854 2.447-.906 5.636-3.116 8.106-4.447"}),(0,h.jsx)("path",{d:"M293.47 232.888c-.06-.036 3.874-10.466 3.874-10.466l-5.81 9.273.153 2.297 1.783-1.104"}),(0,h.jsx)("path",{d:"M300.772 225.98c-2.433 2.573-6.308 6.393-8.46 9.157-.383-3.88-1.46-9.802-2.115-13.444.965 2.965 2.045 7.16 3.226 9.612 2.252-1.17 5.108-3.728 7.35-5.326"}),(0,h.jsx)("path",{d:"M293.615 233.426c-.068 0-.458-11.065-.458-11.065l-1.79 11.022 1.026 1.915 1.223-1.87"}),(0,h.jsx)("path",{d:"M299.58 226.808c-2.355 2.597-6.112 6.453-8.18 9.24-.497-3.883-1.746-9.802-2.508-13.442 1.05 2.96 2.253 7.152 3.505 9.595 2.214-1.19 4.99-3.773 7.182-5.392"}),(0,h.jsx)("path",{d:"M292.99 234.532c-.062-.02 1.236-11.24 1.236-11.24l-3.296 10.63.657 2.185 1.403-1.575"}),(0,h.jsx)("path",{d:"M299.07 227.244c-2.152 2.813-5.61 7.014-7.46 9.986-.792-3.812-2.487-9.578-3.524-13.124 1.273 2.84 2.79 6.894 4.226 9.202 2.12-1.4 4.695-4.24 6.758-6.064"}),(0,h.jsx)("path",{d:"M292.946 235.58c-.064-.004-.713-11.255-.713-11.255l-1.417 11.165 1.02 1.967 1.11-1.878"}),(0,h.jsx)("path",{d:"M298.852 227.884c-2.02 2.945-5.28 7.357-6.99 10.446-.99-3.796-2.984-9.513-4.205-13.03 1.423 2.794 3.153 6.795 4.71 9.044 2.06-1.52 4.504-4.515 6.485-6.46"}),(0,h.jsx)("path",{d:"M293.645 236.626c-.063-.02 1.145-11.304 1.145-11.304l-3.222 10.626.68 2.224 1.397-1.546"}),(0,h.jsx)("path",{d:"M298.445 228.932c-1.742 3.208-4.583 8.048-6.003 11.357-1.323-3.638-3.82-9.044-5.35-12.37 1.665 2.58 3.744 6.316 5.494 8.336 1.908-1.797 4.066-5.116 5.86-7.324"}),(0,h.jsx)("path",{d:"M293.252 237.557c-.063.018-3.16-10.72-3.16-10.72l1.068 11.3 1.424 1.593.668-2.173"}),(0,h.jsx)("path",{d:"M298.372 230.183c-1.815 3.2-4.772 8.024-6.257 11.323-1.33-3.627-3.854-9.017-5.4-12.333 1.69 2.572 3.798 6.298 5.58 8.312 1.974-1.792 4.217-5.1 6.077-7.302"}),(0,h.jsx)("path",{d:"M293.397 239.58c-.066 0-1.16-11.273-1.16-11.273l-1.044 11.273 1.128 1.932 1.077-1.933"}),(0,h.jsx)("path",{d:"M298.56 231.172c-1.865 3.156-4.9 7.91-6.437 11.175-1.272-3.658-3.707-9.107-5.2-12.46 1.65 2.612 3.695 6.388 5.445 8.443 2.003-1.745 4.3-5 6.193-7.158"}),(0,h.jsx)("path",{d:"M293.295 240.48c-.066.008-2.09-11.07-2.09-11.07l-.103 11.338 1.283 1.785.91-2.052"}),(0,h.jsx)("path",{d:"M297.76 232.772c-2.012 3.022-5.267 7.56-6.957 10.714-1.095-3.74-3.266-9.35-4.595-12.803 1.52 2.723 3.383 6.635 5.03 8.808 2.083-1.603 4.53-4.695 6.523-6.718"}),(0,h.jsx)("path",{d:"M292.32 241.717c-.064-.018.937-11.315.937-11.315l-3.083 10.73.744 2.186 1.403-1.6"}),(0,h.jsx)("path",{d:"M297.877 233.048c-1.72 3.273-4.536 8.22-5.924 11.58-1.436-3.568-4.115-8.847-5.756-12.095 1.764 2.5 3.98 6.132 5.82 8.07 1.92-1.875 4.066-5.276 5.86-7.555"}),(0,h.jsx)("path",{d:"M291.943 242.663c-.065.02-3.473-10.546-3.473-10.546l1.337 11.214 1.496 1.527.64-2.194"}),(0,h.jsx)("path",{d:"M297.412 233.892c-1.202 3.592-3.23 9.067-4.09 12.67-1.95-3.19-5.38-7.79-7.485-10.624 2.112 2.07 4.84 5.156 6.94 6.657 1.61-2.262 3.21-6.072 4.635-8.703"}),(0,h.jsx)("path",{d:"M295.026 243.52c-.064.024-3.76-10.4-3.76-10.4l1.644 11.154 1.537 1.465.58-2.22"}),(0,h.jsx)("path",{d:"M297.383 234.997c-1.176 3.605-3.164 9.1-4 12.714-1.972-3.17-5.436-7.734-7.56-10.545 2.127 2.047 4.875 5.105 6.99 6.583 1.592-2.278 3.165-6.105 4.57-8.75"}),(0,h.jsx)("path",{d:"M295.055 245.295c-.06.033-4.837-9.726-4.837-9.726l2.817 10.8 1.68 1.214.34-2.29"}),(0,h.jsx)("path",{d:"M297.02 235.9c-.752 3.74-2.092 9.475-2.505 13.176-2.323-2.86-6.284-6.89-8.715-9.37 2.346 1.724 5.424 4.36 7.69 5.524 1.32-2.487 2.44-6.506 3.53-9.33"}),(0,h.jsx)("path",{d:"M295.375 246.823c-.066.013-2.608-10.906-2.608-10.906l.43 11.322 1.366 1.693.812-2.11"}),(0,h.jsx)("path",{d:"M297.034 237.063c-.398 3.825-1.194 9.713-1.26 13.453-2.57-2.534-6.874-6.01-9.517-8.154 2.488 1.4 5.788 3.61 8.144 4.463 1.078-2.653 1.816-6.804 2.634-9.762"}),(0,h.jsx)("path",{d:"M295.506 247.623c-.05.05-6.895-7.874-6.895-7.874l5.197 9.535 1.9.65-.2-2.312"}),(0,h.jsx)("path",{d:"M297.18 238.4c-.414 3.824-1.233 9.707-1.313 13.446-2.56-2.55-6.85-6.05-9.486-8.207 2.484 1.413 5.775 3.642 8.128 4.507 1.088-2.646 1.842-6.793 2.67-9.746"}),(0,h.jsx)("path",{d:"M296.277 249.44c-.06.036-5.296-9.49-5.296-9.49l3.328 10.653 1.738 1.137.23-2.3"}),(0,h.jsx)("path",{d:"M297.485 239.972c-.252 3.846-.823 9.775-.746 13.517-2.663-2.392-7.092-5.63-9.812-7.628 2.537 1.263 5.914 3.29 8.3 4.013.974-2.71 1.553-6.9 2.257-9.903"}),(0,h.jsx)("path",{d:"M296.946 251.186c-.053.047-6.543-8.297-6.543-8.297l4.772 9.846 1.868.77-.097-2.32"}),(0,h.jsx)("path",{d:"M297.557 241.746c-.228 3.85-.763 9.784-.664 13.525-2.676-2.367-7.124-5.568-9.856-7.54 2.545 1.24 5.934 3.24 8.323 3.94.958-2.72 1.512-6.915 2.197-9.924"}),(0,h.jsx)("path",{d:"M297.543 252.597c-.062.03-4.588-10.003-4.588-10.003l2.54 10.95 1.65 1.316.398-2.263"}),(0,h.jsx)("path",{d:"M297.732 242.895c.13 3.862.152 9.84.598 13.552-2.874-1.997-7.585-4.584-10.478-6.18 2.64.893 6.188 2.426 8.623 2.802.697-2.837.856-7.088 1.257-10.175"}),(0,h.jsx)("path",{d:"M298.343 252.204c-.04.064-8.38-5.737-8.38-5.737l7.104 7.828 1.974.102-.697-2.193"}),(0,h.jsx)("path",{d:"M297.994 243.303c.333 3.844.667 9.802 1.308 13.484-2.983-1.882-7.836-4.283-10.816-5.764 2.69.79 6.323 2.184 8.78 2.467.55-2.853.488-7.096.728-10.188"}),(0,h.jsx)("path",{d:"M299.245 254.343c-.052.048-6.983-8.027-6.983-8.027l5.29 9.638 1.91.696-.217-2.307"}),(0,h.jsx)("path",{d:"M298.605 244.772c.494 3.828 1.078 9.773 1.873 13.42-3.052-1.705-7.988-3.815-11.02-5.12 2.713.63 6.392 1.807 8.853 1.942.43-2.89.186-7.133.295-10.242"}),(0,h.jsx)("path",{d:"M300.64 255.695c-.038.063-8.315-5.876-8.315-5.876l7.014 7.943 1.974.136-.673-2.205"}),(0,h.jsx)("path",{d:"M298.866 246.4c.746 3.784 1.72 9.676 2.752 13.25-3.145-1.417-8.188-3.06-11.286-4.078 2.737.373 6.47 1.2 8.923 1.104.232-2.93-.29-7.154-.39-10.275"}),(0,h.jsx)("path",{d:"M301.557 256.86c-.052.047-6.878-8.155-6.878-8.155l5.16 9.73 1.904.734-.187-2.31"}),(0,h.jsx)("path",{d:"M299.317 247.448c1.092 3.68 2.608 9.434 3.963 12.866-3.24-.994-8.38-1.962-11.54-2.563 2.74.007 6.508.335 8.925-.09-.045-2.96-.957-7.108-1.348-10.212"}),(0,h.jsx)("path",{d:"M301.92 256.874c-.014.075-9.608-2.06-9.608-2.06l9.138 4.544 1.846-.695-1.375-1.79"}),(0,h.jsx)("path",{d:"M299.943 248.597c1.077 3.685 2.57 9.447 3.912 12.886-3.238-1.013-8.375-2.01-11.53-2.628 2.74.02 6.507.37 8.925-.04-.033-2.96-.93-7.112-1.307-10.218"}),(0,h.jsx)("path",{d:"M303.492 257.892c-.03.068-9.194-4.44-9.194-4.44l8.246 6.684 1.976-.185-1.028-2.058"}),(0,h.jsx)("path",{d:"M299.463 249.237c1.826 3.358 4.496 8.652 6.527 11.71-3.368-.258-8.583-.07-11.79.04 2.675-.6 6.42-1.11 8.69-2.06-.656-2.884-2.404-6.74-3.427-9.69"}),(0,h.jsx)("path",{d:"M304.946 258.895c-.017.074-9.553-2.638-9.553-2.638l8.966 5.077 1.884-.576-1.298-1.863"}),(0,h.jsx)("path",{d:"M300.452 250.663c1.846 3.344 4.546 8.62 6.596 11.662-3.368-.23-8.578.003-11.78.14 2.668-.623 6.407-1.165 8.67-2.134-.675-2.88-2.445-6.724-3.486-9.667"}),(0,h.jsx)("path",{d:"M306.154 259.68c-.034.065-8.903-5.325-8.903-5.325l7.78 7.444 2 .02-.876-2.14"}),(0,h.jsx)("path",{d:"M301.194 251.506c2.137 3.122 5.302 8.073 7.61 10.865-3.33.21-8.424 1.122-11.557 1.676 2.562-.974 6.18-2.006 8.308-3.275-.94-2.807-3.053-6.44-4.36-9.264"}),(0,h.jsx)("path",{d:"M306.808 260.466c-.003.08-9.61-.226-9.61-.226l9.508 2.81 1.69-1.05-1.588-1.534m5.572-46.56c0-.03 6.913-1.153 6.913-1.153l-6.88.16-1.2.617 1.166.376"}),(0,h.jsx)("path",{d:"M316.176 215.375c-2.006-.606-5.038-1.62-7.097-2.07 2.187-.87 5.426-2.41 7.42-3.357-1.535.96-3.764 2.192-4.952 3.155 1.148.78 3.23 1.575 4.628 2.272"}),(0,h.jsx)("path",{d:"M312.074 214.14c-.008-.03 6.69-1.84 6.69-1.84l-6.93.885-1.046.717 1.286.237"}),(0,h.jsx)("path",{d:"M316.496 215.87c-2.344-.22-5.94-.67-8.252-.694 1.743-1.543 4.186-4.124 5.69-5.71-1.034 1.49-2.625 3.467-3.31 4.876 1.57.63 4.093 1.053 5.872 1.528"}),(0,h.jsx)("path",{d:"M309.586 214.62c.006-.032 6.952-.786 6.952-.786l-6.773-.217-1.267.557 1.09.445"}),(0,h.jsx)("path",{d:"M314.736 216.132c-2.132-.408-5.37-1.118-7.526-1.37 2.048-1.006 5.033-2.736 6.87-3.798-1.37 1.036-3.395 2.39-4.42 3.4 1.298.643 3.542 1.223 5.076 1.768"}),(0,h.jsx)("path",{d:"M308.99 214.546c-.018-.026 6.12-2.633 6.12-2.633l-6.703 1.77-.803.815 1.386.048"}),(0,h.jsx)("path",{d:"M314.532 216.902c-1.774-.732-4.49-1.973-6.246-2.49 1.36-1.263 3.274-3.48 4.453-4.838-.82 1.358-2.075 3.114-2.63 4.46 1.18 1.003 3.084 1.987 4.422 2.87"}),(0,h.jsx)("path",{d:"M309.34 214.997c-.014-.04 4.76-2.063 4.76-2.063l-5.185.71-.637.924 1.06.43m-3.984 44.582c.004.075-9.867.073-9.867.073l9.99 2.443 1.64-1.074-1.763-1.443"}),(0,h.jsx)("path",{d:"M307.128 260.22c-.01.07-10.02-2.332-10.02-2.332l9.622 4.718 1.886-.607-1.488-1.78"}),(0,h.jsx)("path",{d:"M308.772 260.888c0 .076-9.95-.5-9.95-.5l9.95 2.997 1.705-.967-1.705-1.53"}),(0,h.jsx)("path",{d:"M302.46 253.863c2.587 2.852 6.465 7.397 9.18 9.913-3.34.505-8.374 1.855-11.47 2.68 2.46-1.182 5.983-2.516 7.964-3.947-1.334-2.656-3.967-6.01-5.675-8.647"}),(0,h.jsx)("path",{d:"M310.14 261.397c-.02.07-9.945-3.254-9.945-3.254l9.344 5.556 1.957-.414-1.358-1.89"}),(0,h.jsx)("path",{d:"M303.375 254.517c2.82 2.573 7.076 6.703 9.985 8.918-3.202.922-7.962 2.91-10.89 4.125 2.272-1.5 5.563-3.285 7.342-4.98-1.58-2.525-4.496-5.6-6.437-8.063"}),(0,h.jsx)("path",{d:"M310.954 262.008c.015.077-9.437 1.856-9.437 1.856l9.944.677 1.405-1.385-1.91-1.147"}),(0,h.jsx)("path",{d:"M308.99 261.412c.01.076-9.842.755-9.842.755l10.155 1.745 1.555-1.184-1.868-1.316"}),(0,h.jsx)("path",{d:"M310.808 261.935c-.007.073-10.177-1.63-10.177-1.63l9.96 4.037 1.837-.735z"}),(0,h.jsx)("path",{d:"M312.496 262.488c.005.075-9.968.187-9.968.187l10.155 2.302 1.63-1.08z"}),(0,h.jsx)("path",{d:"M305.66 255.914c2.797 2.664 7.008 6.927 9.908 9.246-3.298.734-8.22 2.428-11.248 3.463 2.367-1.347 5.783-2.92 7.653-4.484-1.532-2.555-4.41-5.716-6.314-8.226z"}),(0,h.jsx)("path",{d:"M313.906 262.895c-.013.07-10.17-2.557-10.17-2.557l9.745 4.893 1.924-.545z"}),(0,h.jsx)("path",{d:"M306.634 256.495c3.008 2.37 7.565 6.193 10.635 8.2-3.128 1.14-7.73 3.45-10.562 4.862 2.156-1.65 5.307-3.657 6.955-5.468-1.765-2.41-4.907-5.275-7.03-7.595z"}),(0,h.jsx)("path",{d:"M314.765 263.448c.02.076-9.28 2.5-9.28 2.5l9.976-.01 1.298-1.478-1.993-1.01z"})]}),(0,h.jsx)("path",{fill:"#fedf00",stroke:"#000",strokeWidth:.435,d:"m327.58 249.484-7.58-5.238-7.58 5.238 2.842-8.38-6.633-5.24h8.526l2.843-8.382 2.84 8.382h8.53l-6.634 5.24 2.843 8.38z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3653.7c1ffecd.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js deleted file mode 100644 index 476acff8be..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3657.cf916f7e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3657"],{61344(e,s,d){d.r(s),d.d(s,{default:()=>i});var h=d(74848);d(47867);let i=e=>(0,h.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,h.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,h.jsx)("path",{fill:"#d52b1e",d:"M0 0h640v480H0z"}),(0,h.jsxs)("g",{fill:"#fff",children:[(0,h.jsx)("path",{d:"M170 194.997h299.996v89.997H170z"}),(0,h.jsx)("path",{d:"M275 89.997h89.996v299.996H275z"})]})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3657.cf916f7e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js deleted file mode 100644 index 2435f537ec..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3686.6b54036a.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3686"],{32453(e,i,s){s.r(i),s.d(i,{default:()=>n});var _=s(74848);s(47867);let n=e=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,_.jsx)("defs",{children:(0,_.jsxs)("g",{id:"eu_inline_svg__d",children:[(0,_.jsxs)("g",{id:"eu_inline_svg__b",children:[(0,_.jsx)("path",{id:"eu_inline_svg__a",d:"m0-1-.31.95.477.156z"}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__a",transform:"scale(-1 1)"})]}),(0,_.jsxs)("g",{id:"eu_inline_svg__c",children:[(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__b",transform:"rotate(72)"}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__b",transform:"rotate(144)"})]}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__c",transform:"scale(-1 1)"})]})}),(0,_.jsx)("path",{fill:"#039",d:"M0 0h640v480H0z"}),(0,_.jsxs)("g",{fill:"#fc0",transform:"translate(320 242.263)scale(23.7037)",children:[(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__d",width:"100%",height:"100%",y:-6}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__d",width:"100%",height:"100%",y:6}),(0,_.jsxs)("g",{id:"eu_inline_svg__e",children:[(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__d",width:"100%",height:"100%",x:-6}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__d",width:"100%",height:"100%",transform:"rotate(-144 -2.344 -2.11)"}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__d",width:"100%",height:"100%",transform:"rotate(144 -2.11 -2.344)"}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__d",width:"100%",height:"100%",transform:"rotate(72 -4.663 -2.076)"}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__d",width:"100%",height:"100%",transform:"rotate(72 -5.076 .534)"})]}),(0,_.jsx)("use",{xlinkHref:"#eu_inline_svg__e",width:"100%",height:"100%",transform:"scale(-1 1)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3686.6b54036a.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js deleted file mode 100644 index 813d4080f4..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3748.7adfb9d1.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3748"],{54847(t,r,s){s.r(r),s.d(r,{default:()=>o});var f=s(74848);s(47867);let o=t=>(0,f.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,f.jsx)("defs",{children:(0,f.jsx)("clipPath",{id:"io_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,f.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,f.jsxs)("g",{clipPath:"url(#io_inline_svg__a)",transform:"scale(.9375)",children:[(0,f.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M0 0h1024v512H0z"}),(0,f.jsx)("path",{fill:"#000063",fillRule:"evenodd",d:"M1024 445.24c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.715 0 60.955 33.96 121.9 33.96 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 360.32c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286.01 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 275.41c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203v43.727c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 190.5c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.476 0-39.619 24.203-57.905 24.203V247.5c18.286 0 27.428-24.2 57.905-24.2 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 105.59c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491-.002-39.634 24.2-57.92 24.2v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528v-50.235zM1024 20.675c-11.474 6.903-21.332 23.035-51.814 23.035-60.947 0-76.188-33.965-121.9-33.965-30.474 0-45.712 33.965-76.187 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.477 0-45.715 33.965-76.191 33.965-60.952 0-76.191-33.965-121.9-33.965-30.478 0-45.715 33.965-76.191 33.965-60.952 0-76.192-33.965-121.91-33.965-30.491 0-39.634 24.203-57.92 24.203v43.727c18.286 0 27.428-24.203 57.905-24.203 45.714 0 60.953 33.965 121.91 33.965 30.476 0 45.713-33.965 76.191-33.965 45.713 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.191-33.965 45.714 0 60.952 33.965 121.9 33.965 30.476 0 45.714-33.965 76.187-33.965 45.715 0 60.956 33.965 121.9 33.965 30.482 0 40.34-9.625 51.814-16.528V20.674z"}),(0,f.jsx)("path",{fill:"#000063",fillRule:"evenodd",d:"M0 .063h261.31v157.91H0z"}),(0,f.jsxs)("g",{strokeWidth:"1pt",children:[(0,f.jsx)("path",{fill:"#fff",d:"M0 .063v17.654L232.097 157.97h29.215v-17.654L29.215.064zm261.312 0v17.654L29.215 157.968H0v-17.654L232.097.064z"}),(0,f.jsx)("path",{fill:"#fff",d:"M108.88.063v157.905h43.552V.063zM0 52.698v52.635h261.312V52.698z"}),(0,f.jsx)("path",{fill:"#c00",d:"M0 63.225v31.581h261.312v-31.58zM117.59.063v157.905h26.132V.063zM0 157.968l87.104-52.635h19.476l-87.104 52.635zM0 .063l87.104 52.635H67.628L0 11.833zm154.732 52.635L241.836.063h19.476l-87.104 52.635zm106.58 105.27-87.104-52.635h19.476l67.628 40.866z"})]}),(0,f.jsx)("path",{fill:"#a24300",fillRule:"evenodd",stroke:"#fff",strokeWidth:6.935,d:"m814.96-301.18-17.72 708.66c0 37.298 80.097 37.298 88.583 0l-17.717-708.66h-53.149z",transform:"matrix(.2064 0 0 .4902 211.633 267.436)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15z",transform:"matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3",transform:"matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 797.24 70.866 106.3 70.866-106.3",transform:"matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 726.38 70.866 106.3 70.866-106.3",transform:"matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 673.23 70.866 88.583 70.866-88.583",transform:"matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 620.08 70.866 88.582 70.866-88.582",transform:"matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m442.91 566.93 53.15 106.3 53.15-106.3",transform:"matrix(-.2354 .06743 -.1035 -.19501 591.314 322.549)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15z",transform:"matrix(.17703 -.18126 .22077 .14638 73.835 93.526)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3",transform:"matrix(.17703 -.18126 .22077 .14638 73.835 93.526)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 797.24 70.866 106.3 70.866-106.3",transform:"matrix(.17703 -.18126 .22077 .14638 73.835 93.526)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 726.38 70.866 106.3 70.866-106.3",transform:"matrix(.17703 -.18126 .22077 .14638 73.835 93.526)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 673.23 70.866 88.583 70.866-88.583",transform:"matrix(.17703 -.18126 .22077 .14638 73.835 93.526)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 620.08 70.866 88.582 70.866-88.582",transform:"matrix(.17703 -.18126 .22077 .14638 73.835 93.526)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m442.91 566.93 53.15 106.3 53.15-106.3",transform:"matrix(.17703 -.18126 .22077 .14638 73.835 93.526)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15z",transform:"matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3",transform:"matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 797.24 70.866 106.3 70.866-106.3",transform:"matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 726.38 70.866 106.3 70.866-106.3",transform:"matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 673.23 70.866 88.583 70.866-88.583",transform:"matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 620.08 70.866 88.582 70.866-88.582",transform:"matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m442.91 566.93 53.15 106.3 53.15-106.3",transform:"matrix(.1135 .2156 -.24917 .1076 581.756 -57.78)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15z",transform:"matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3",transform:"matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 797.24 70.866 106.3 70.866-106.3",transform:"matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 726.38 70.866 106.3 70.866-106.3",transform:"matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 673.23 70.866 88.583 70.866-88.583",transform:"matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 620.08 70.866 88.582 70.866-88.582",transform:"matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m442.91 566.93 53.15 106.3 53.15-106.3",transform:"matrix(-.15682 .19451 -.23555 -.12827 705.85 197.798)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m496.06 549.21 17.717 70.866 35.433-53.15-17.717 88.583 35.433-35.433-35.433 88.582 35.433-35.433-35.433 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-88.583 35.433 35.433-35.433-88.582 35.433 35.433-17.717-88.583 35.433 53.15z",transform:"matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"M496.06 549.21v496.07M425.2 868.11l70.86 106.3 70.87-106.3",transform:"matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 797.24 70.866 106.3 70.866-106.3",transform:"matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 726.38 70.866 106.3 70.866-106.3",transform:"matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 673.23 70.866 88.583 70.866-88.583",transform:"matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 620.08 70.866 88.582 70.866-88.582",transform:"matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m442.91 566.93 53.15 106.3 53.15-106.3",transform:"matrix(-.15547 -.16616 .17678 -.15123 275.837 396.088)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m460.63 549.21 28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15z",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m467.21 584.65 28.855 124.02v336.62",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m436.23 885.83 59.833 88.582 60.682-88.582",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m434.53 814.96 61.53 88.582 60.682-88.582",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m435.38 744.1 60.682 88.582 59.833-88.582",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m432.84 690.94 63.228 70.866 53.149-70.866",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 637.8 70.866 70.865 45.406-70.865",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m436.12 593.24 53.15 86.886 35.327-95.478",transform:"matrix(-.27108 -.06397 -.15704 .20433 684.121 -32.23)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m460.63 549.21 28.643 70.866 42.223-53.15-10.184 88.583 27.9-35.433-17.716 88.582 25.249-35.433-25.249 88.583 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3 35.433-35.433-35.433 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-35.433-106.3 35.433 35.433-45.617-88.583 45.617 35.433-53.15-88.582 42.966 35.433-25.25-88.583 35.433 53.15z",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m467.21 584.65 28.855 124.02v336.62",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m436.23 885.83 59.833 88.582 60.682-88.582",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m434.53 814.96 61.53 88.582 60.682-88.582",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m435.38 744.1 60.682 88.582 59.833-88.582",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m432.84 690.94 63.228 70.866 53.149-70.866",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 637.8 70.866 70.865 45.406-70.865",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m436.12 593.24 53.15 86.886 35.327-95.478",transform:"matrix(.27011 .06695 .00989 .24471 240.767 -138.419)"}),(0,f.jsx)("path",{fill:"#006d00",fillRule:"evenodd",stroke:"#fff",strokeWidth:8.25,d:"m354.33 531.5 88.583 88.583 17.716-53.149v88.582l35.433-35.433-17.716 88.583 35.432-35.434-17.716 88.584 35.433-35.433-17.716 106.3 35.433-35.433-35.433 106.3 35.433-35.433-17.717 106.3-17.716 53.151-17.717 17.72-17.717-17.72-17.716-53.151-53.15-82.294 35.434 11.429-35.433-106.3 35.433 35.433-53.15-106.3 35.433 35.433-53.15-88.584 53.15 35.434-70.866-88.583 53.149 35.433-70.866-70.866 70.866 35.433-53.149-88.583z",transform:"matrix(.03453 -.23456 .24402 .04167 115.462 229.538)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m378.96 560.02 63.952 95.497 17.716 53.15 8.859 45.205 8.858 78.811 9.315 70.866 8.401 141.74",transform:"matrix(.03453 -.23456 .24402 .04167 115.462 229.538)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m425.2 903.54 63.665 70.866 50.749-88.583",transform:"matrix(.03453 -.23456 .24402 .04167 115.462 229.538)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m417.08 814.96 70.579 88.583 50.75-88.583",transform:"matrix(.03453 -.23456 .24402 .04167 115.462 229.538)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m407.48 752.44 70.867 80.235 45.948-88.583M372.05 637.8l88.583 70.866 25.831-70.866",transform:"matrix(.03453 -.23456 .24402 .04167 115.462 229.538)"}),(0,f.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m360.62 602.36 82.296 53.149 10.515-53.149M389.76 690.94l81.095 70.866 33.946-70.866",transform:"matrix(.03453 -.23456 .24402 .04167 115.462 229.538)"}),(0,f.jsxs)("g",{fillRule:"evenodd",children:[(0,f.jsx)("path",{fill:"#c00",stroke:"#000",strokeWidth:"1pt",d:"m541.46 1173.3-1.7-229.13-61.1-106.94c-15.277-52.618-7.754-78.079 16.973-79.776 24.728-1.698 49.224 13.579 84.868 15.276 35.645 1.697 28.856-59.408 81.474-57.71 52.618 1.697 144.28 32.25 222.36 37.342 78.078 5.092 118.81-27.158 208.77-30.553 89.97-3.395 113.73 42.435 118.82 42.435s30.55-18.672 56.01-22.066c25.46-3.395 33.95 10.184 33.95 10.184s-1.7 57.71-13.58 91.657c-11.88 33.948-54.32 89.961-56.01 89.961-1.7 0-15.28 249.52-15.28 251.21 0 1.7-675.55-6.79-675.55-11.88z",transform:"matrix(.13659 0 0 .12573 266.36 208.19)"}),(0,f.jsxs)("g",{stroke:"#000",strokeWidth:"1pt",children:[(0,f.jsx)("path",{fill:"#fff100",d:"M531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z",transform:"matrix(-.13659 0 0 .12573 508.357 252.74)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 506.168 252.526)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 508.588 247.431)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 509.849 242.243)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 510.776 236.694)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 510.545 230.678)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 502.69 257.008)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 508.487 224.996)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 504.082 220.515)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 498.054 217.528)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 492.026 217.1)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 485.535 217.314)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 479.043 218.168)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 472.55 219.022)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 465.596 220.088)"}),(0,f.jsx)("path",{fill:"#fff",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(-.13659 0 0 .12573 459.568 221.583)"})]}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 268.548 252.526)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 266.128 247.432)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 264.867 242.243)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 263.94 236.694)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 264.172 230.678)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 266.23 224.996)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 270.635 220.515)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 276.662 217.527)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 282.69 217.1)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 289.181 217.314)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 295.674 218.168)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 302.166 219.021)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 309.12 220.088)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 315.149 221.583)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 272.026 257.008)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M531.5 584.65s-67.982-52.097-69.813-177.17c-1.053-71.929 34.38-124.02 122.96-124.02 124.02 0 301.18 53.149 301.18 53.149v17.717s-141.73-53.15-301.18-53.15c-70.866 0-106.3 52.087-106.3 105.24 0 88.583 70.867 178.23 70.867 178.23v141.73h-17.717v-141.73z",transform:"matrix(.13659 0 0 .12573 266.36 252.74)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:2.991,d:"M1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583s17.72 106.3 17.72 106.3-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z",transform:"matrix(.04553 0 0 .0479 299.433 309.064)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:2.991,d:"M1240.2 531.5s15.35-35.433 70.86-35.433c37.79 0 70.87 35.433 70.87 70.866v70.866h35.43v-70.866c0-35.47 35.44-70.866 70.87-70.866 53.15 0 70.87 35.433 70.87 35.433s0-106.3-70.87-106.3c-53.15 0-70.87 35.433-70.87 35.433s17.72-53.15 17.72-106.3-35.43-88.583-35.43-88.583c0 6.79-35.44 35.433-35.44 88.583s17.72 106.3 17.72 106.3-17.72-35.433-70.87-35.433c-70.86 0-70.86 106.3-70.86 106.3z",transform:"matrix(.04553 0 0 .0479 347.83 309.064)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M531.5 832.68V673.23s35.433 53.15 88.583 53.15c43.489 0 88.582-70.866 88.582-70.866s41.515 53.149 88.583 53.149c42.021 0 88.516-68.572 88.516-68.572s43.207 68.572 88.649 68.572 88.581-53.149 88.581-53.149 46.29 70.866 106.3 70.866c53.15 0 70.87-53.15 70.87-53.15v159.45h-708.66z",transform:"matrix(.13659 0 0 .12573 266.36 252.74)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M708.66 832.68V708.66s106.3 35.433 106.3 124.02z",transform:"matrix(.13659 0 0 .12573 242.16 252.74)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M708.66 832.68V708.66s106.3 35.433 106.3 124.02z",transform:"matrix(-.13659 0 0 .12573 532.547 252.74)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6z",transform:"matrix(.13659 0 0 .12573 266.36 252.74)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M602.36 832.68c0-88.583 106.37-144.6 106.37-144.6s106.23 56.016 106.23 144.6z",transform:"matrix(.13659 0 0 .12573 314.758 252.74)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M584.65 847.53c0-88.583 124.08-159.45 124.08-159.45s123.95 70.866 123.95 159.45z",transform:"matrix(.13659 0 0 .12573 290.558 250.873)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M1275.6 655.51c-35.43-17.716-166.02-35.433-376.28-35.433s-350.1 17.717-385.53 35.433c-35.434 17.717-35.434 53.149-.001 70.866s175.28 35.433 385.54 35.433 340.84-17.716 376.28-35.433c35.43-17.716 35.43-53.149 0-70.866z",transform:"matrix(.13505 0 0 .12573 265.898 275.015)"}),(0,f.jsx)("path",{fill:"gray",d:"M435.757 366.342c0 4.455-40.256 4.455-48.399 4.455-8.797 0-48.398 1.207-48.398-4.455 0-4.455 39.928-4.455 48.398-4.455s48.399.906 48.399 4.455"}),(0,f.jsx)("path",{fill:"#c00",d:"M343.797 350.342c0 1.456-1.084 2.636-2.42 2.636-1.337 0-2.42-1.18-2.42-2.636s1.083-2.637 2.42-2.637 2.42 1.18 2.42 2.637M435.753 350.342c0 1.456-1.083 2.636-2.42 2.636s-2.42-1.18-2.42-2.636 1.084-2.637 2.42-2.637c1.337 0 2.42 1.18 2.42 2.637"}),(0,f.jsx)("path",{d:"M392.195 348.932c0 1.456-2.167 2.636-4.84 2.636s-4.84-1.18-4.84-2.636 2.167-2.636 4.84-2.636 4.84 1.18 4.84 2.636"}),(0,f.jsx)("path",{fill:"#006300",d:"M415.41 348.932c0 1.456-1.625 2.636-3.63 2.636s-3.63-1.18-3.63-2.636 1.626-2.636 3.63-2.636 3.63 1.18 3.63 2.636M365.576 348.932c0 1.456-1.626 2.636-3.63 2.636s-3.63-1.18-3.63-2.636 1.625-2.636 3.63-2.636 3.63 1.18 3.63 2.636"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:2.188,d:"M1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867V442.91h35.43c35.43 0 70.87 53.15 70.87 53.15V354.33s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15z",transform:"matrix(.07805 0 0 .07185 279.5 297.926)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:3.307,d:"m1381.9 549.21 70.87.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87z",transform:"matrix(.03903 0 0 .06287 285.03 307.314)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:3.307,d:"m1381.9 549.21 70.87.001s-53.15-17.717-53.15-70.867v-35.433h35.43c35.43 0 70.87 53.15 70.87 53.15v-141.73s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-70.87z",transform:"matrix(-.03903 0 0 .06287 489.685 307.314)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M903.54 602.36c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 266.36 252.74)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:2.188,d:"M1257.9 496.06s35.44-53.15 70.87-53.15h35.43v35.433c0 53.15-53.15 70.867-53.15 70.867h141.74s-53.15-17.717-53.15-70.867V442.91h35.43c35.43 0 70.87 53.15 70.87 53.15V354.33s-35.44 53.15-70.87 53.15h-35.43v-35.433c0-53.15 53.15-70.867 53.15-70.867h-141.74s53.15 17.717 53.15 70.867v35.433h-35.43c-35.43 0-70.87-53.15-70.87-53.15z",transform:"matrix(.07805 0 0 .07185 279.5 251.15)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M903.54 602.36c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 266.592 206.336)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M850.39 655.51h70.866v53.15H850.39z",transform:"matrix(.13659 0 0 .12573 266.36 208.19)"}),(0,f.jsx)("path",{fill:"#fff100",stroke:"#000",strokeWidth:"1pt",d:"M850.39 683.3h70.866v202.53H850.39z",transform:"matrix(.13659 0 0 .12573 266.36 208.19)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 324.438 246.057)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 324.438 240.295)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 324.438 234.92)"}),(0,f.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:"1pt",d:"M478.35 549.21c0 9.785-7.932 17.717-17.717 17.717s-17.717-7.932-17.717-17.717 7.932-17.717 17.717-17.717 17.717 7.932 17.717 17.717z",transform:"matrix(.13659 0 0 .12573 324.438 229.372)"}),(0,f.jsx)("path",{d:"M392.495 357.482c0 1-2.202 1.81-4.918 1.81s-4.918-.81-4.918-1.81 2.202-1.811 4.918-1.811 4.918.81 4.918 1.81M437.065 361.903c-.272.685-2.668.742-5.35.127-2.683-.615-4.638-1.67-4.366-2.355.273-.686 2.668-.743 5.35-.128 2.684.616 4.638 1.67 4.366 2.356M418.437 358.899c-.108.882-2.439 1.44-5.206 1.247-2.768-.194-4.925-1.065-4.817-1.947s2.439-1.44 5.206-1.247 4.925 1.065 4.817 1.947M336.567 361.903c.272.685 2.668.742 5.35.127 2.683-.615 4.638-1.67 4.366-2.355-.273-.686-2.668-.743-5.35-.128-2.684.616-4.638 1.67-4.366 2.356M356.128 358.472c.108.882 2.439 1.44 5.206 1.247s4.925-1.065 4.817-1.947-2.439-1.44-5.207-1.247-4.924 1.065-4.816 1.947"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3748.7adfb9d1.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js deleted file mode 100644 index dba56713cb..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3750.921e74ed.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3750"],{83221(e,i,t){t.r(i),t.d(i,{default:()=>s});var h=t(74848);t(47867);let s=e=>(0,h.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,h.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,h.jsx)("rect",{width:640,height:477.9,rx:0,ry:0}),(0,h.jsx)("rect",{width:640,height:159.3,y:320.7,fill:"#fff",rx:0,ry:0}),(0,h.jsx)("path",{fill:"#1291ff",d:"M0 0h640v159.3H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3750.921e74ed.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js deleted file mode 100644 index a456f19fe5..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3756.7a4c5e02.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3756"],{18599(l,e,d){d.r(e),d.d(e,{default:()=>i});var s=d(74848);d(47867);let i=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 640 480",width:"1em",height:"1em",...l,children:[(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"red",d:"M0 0h640v243.574H0z"}),(0,s.jsx)("path",{d:"M0 236.428h640v243.574H0z"})]}),(0,s.jsx)("path",{fill:"#ffec00",fillRule:"evenodd",d:"M228.67 148.173c165.22 43.304 58.99 255.64-71.216 167.26l-8.817 13.545c76.628 54.658 152.57 10.66 173.9-46.358 22.297-58.788-7.52-141.48-92.51-150.03l-1.356 15.576z"}),(0,s.jsx)("path",{fill:"#ffec00",fillRule:"evenodd",d:"m169.955 330.827 21.73 10.125-10.142 21.696-21.73-10.125zm148.985-99.48h23.98v23.942h-23.98zm-11.684-38.892 22.342-8.694 8.707 22.31-22.342 8.693zm-25.894-29.188 17.035-16.85 16.877 17.01-17.035 16.85zm-26.284-39.787 22.434 8.455-8.468 22.4-22.434-8.455zM316.1 270.01l22.265 8.888-8.902 22.23-22.265-8.887zm-69.876 70.05 22.06-9.388 9.402 22.025-22.058 9.39zm-39.504 2.77h23.98v23.94h-23.98zm41.29-115.937-20.35-15.006-20.245 14.47 8.034-22.92-20.348-14.956 24.447-.17 8.567-22.55 7.782 22.702 24.7-.242-19.586 15.232 6.996 23.44z"}),(0,s.jsx)("path",{fill:"#fe0",fillRule:"evenodd",d:"M336.03 346.376c-1.21.418-6.23 12.39-9.675 18.248 1.797.51 2.56.596 3.625 1.025 13.655 4.8 20.384 9.18 26.186 17.504 2.888 2.79 7.032 2.93 10.198.697 0 0 2.795-1.114 6.43-5.02 2.968-4.52 2.194-8.11-1.384-11.16-10.944-7.952-22.9-13.902-35.38-21.295z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M365.247 372.842c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zM343.87 359.17c0 2.388-1.94 4.324-4.33 4.324s-4.333-1.936-4.333-4.324 1.94-4.325 4.332-4.325 4.33 1.936 4.33 4.325zm10.898 6.975c0 2.39-1.94 4.325-4.33 4.325s-4.333-1.936-4.333-4.325 1.94-4.324 4.332-4.324 4.33 1.937 4.33 4.325z"}),(0,s.jsx)("path",{fill:"#fe0",fillRule:"evenodd",d:"M324.47 363.667c-42.57-24.273-87.31-50.52-129.88-74.796-18.75-11.635-19.683-33.384-7.17-49.875 1.302-2.337 2.836-1.758 3.514-.524 1.463 8.03 5.97 16.325 11.37 21.496 44.693 28.383 87.732 55.804 131.71 85.613-3.448 5.767-6.104 12.32-9.55 18.086z"}),(0,s.jsx)("path",{fill:"#ffec00",fillRule:"evenodd",d:"m297.174 305.457 17.85 15.986-16.01 17.824-17.85-15.986z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:3.05,d:"M331.54 348.82 206.58 273.3m109.53 58.093-42.24-27.28m18.21 42.687-42.75-24.755"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3756.7a4c5e02.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js deleted file mode 100644 index 25544cabb5..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 380.0cdf7b27.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["380"],{97527(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"cu_inline_svg__a",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-32 0h682.67v512H-32z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#cu_inline_svg__a)",transform:"translate(30)scale(.94)",children:[(0,e.jsx)("path",{fill:"#0050f0",d:"M-32 0h768v512H-32z"}),(0,e.jsx)("path",{fill:"#fff",d:"M-32 102.4h768v102.4H-32zm0 204.8h768v102.4H-32z"}),(0,e.jsx)("path",{fill:"#ed0000",d:"m-32 0 440.69 255.67L-32 511.01z"}),(0,e.jsx)("path",{fill:"#fff",d:"m161.75 325.47-47.447-35.432-47.214 35.78 17.56-58.144-47.13-35.904 58.306-.5 18.084-57.97 18.472 57.836 58.305.077-46.886 36.243 17.948 58.016z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/380.0cdf7b27.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js deleted file mode 100644 index 890942d47f..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3836.6a4b9fd9.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3836"],{84999(h,i,l){l.r(i),l.d(i,{default:()=>e});var s=l(74848);l(47867);let e=h=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"bv_inline_svg__a",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#bv_inline_svg__a)",children:[(0,s.jsx)("path",{fill:"#fff",d:"M-28 0h699.74v512H-28z"}),(0,s.jsx)("path",{fill:"#d72828",d:"M-52.992-77.837h218.72v276.26h-218.72zM289.42-.572h380.91v199H289.42zM-27.545 320.01h190.33v190.33h-190.33zM292 322.12h378.34v188.21H292z"}),(0,s.jsx)("path",{fill:"#003897",d:"M196.65-25.447h64.425v535.78H196.65z"}),(0,s.jsx)("path",{fill:"#003897",d:"M-27.545 224.84h697.88v63.444h-697.88z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3836.6a4b9fd9.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js deleted file mode 100644 index da0c7b76a1..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3838.4b01fffb.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3838"],{70797(e,i,l){l.r(i),l.d(i,{default:()=>t});var s=l(74848);l(47867);let t=e=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"qa_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M-27.334 0h682.67v512h-682.67z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#qa_inline_svg__a)",transform:"translate(25.626)scale(.9375)",children:[(0,s.jsx)("path",{fill:"#660057",d:"M-70 0h768v512H-70z"}),(0,s.jsx)("path",{fill:"#fff",d:"m86.533 511.76-156.53.24L-70 0 85.8.081l100.53 32.327-99.795 31.51 99.791 32.49-99.791 31.51 99.791 32.49-99.791 31.51 99.791 32.49-99.791 31.51 99.791 32.49-99.791 31.511 99.791 32.49-99.791 31.511 99.791 32.49-99.791 31.51 99.791 32.49-99.791 31.51"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3838.4b01fffb.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js deleted file mode 100644 index 7518cb50e9..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3839.800430ba.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3839"],{51890(l,s,d){d.r(s),d.d(s,{default:()=>i});var e=d(74848);d(47867);let i=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("path",{fill:"#078930",d:"M0 0h640v480z"}),(0,e.jsx)("path",{fill:"#fcdd09",d:"m0 0 640 480H0z"}),(0,e.jsx)("path",{fill:"#da121a",d:"M252.37 218.025h135.26L278.203 297.53 320 168.89l41.798 128.64z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3839.800430ba.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js deleted file mode 100644 index d37a9a9f35..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3846.e0ec9537.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3846"],{55589(i,s,e){e.r(s),e.d(s,{default:()=>n});var t=e(74848);e(47867);let n=i=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 6.4 4.8",...i,children:[(0,t.jsxs)("defs",{children:[(0,t.jsx)("clipPath",{id:"mm_inline_svg__b",clipPathUnits:"userSpaceOnUse",children:(0,t.jsx)("path",{d:"M1-7.2h16v12H1z",style:{stroke:"none"}})}),(0,t.jsx)("path",{id:"mm_inline_svg__a",d:"m0-.5.162.5h-.324z",style:{fill:"#fff"},transform:"scale(8.844)"}),(0,t.jsxs)("g",{id:"mm_inline_svg__c",children:[(0,t.jsx)("use",{xlinkHref:"#mm_inline_svg__a",width:18,height:12,transform:"rotate(-144)"}),(0,t.jsx)("use",{xlinkHref:"#mm_inline_svg__a",width:18,height:12,transform:"rotate(-72)"}),(0,t.jsx)("use",{xlinkHref:"#mm_inline_svg__a",width:18,height:12}),(0,t.jsx)("use",{xlinkHref:"#mm_inline_svg__a",width:18,height:12,transform:"rotate(72)"}),(0,t.jsx)("use",{xlinkHref:"#mm_inline_svg__a",width:18,height:12,transform:"rotate(144)"})]})]}),(0,t.jsxs)("g",{clipPath:"url(#mm_inline_svg__b)",transform:"matrix(.4 0 0 .4 -.4 2.88)",children:[(0,t.jsx)("path",{d:"M0-7.2h18v6H0z",style:{fill:"#fecb00"}}),(0,t.jsx)("path",{d:"M0-1.2h18v6H0z",style:{fill:"#ea2839"}}),(0,t.jsx)("path",{d:"M0-3.2h18v4H0z",style:{fill:"#34b233"}}),(0,t.jsx)("use",{xlinkHref:"#mm_inline_svg__c",width:18,height:12,x:9,y:6.422,transform:"translate(0 -7.2)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3846.e0ec9537.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js deleted file mode 100644 index 7257ee78ff..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 385.d9b4f6a1.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["385"],{75816(e,t,r){r.d(t,{xP:()=>A});var n=r(18117),i=r(88605),a=r(62284),s=r(25508),u=r(47867);function o(e){return e.replace(e[0],e[0].toUpperCase())}function c(e){return"infinitequery"===e.type}function l(e,...t){return Object.assign(e,...t)}var d=Symbol();function f(e){let t=(0,u.useRef)(e),r=(0,u.useMemo)(()=>(0,n.$J)(t.current,e),[e]);return(0,u.useEffect)(()=>{t.current!==r&&(t.current=r)},[r]),r}function p(e){let t=(0,u.useRef)(e);return(0,u.useEffect)(()=>{(0,a.shallowEqual)(t.current,e)||(t.current=e)},[e]),(0,a.shallowEqual)(t.current,e)?t.current:e}var h="u">typeof window&&void 0!==window.document&&void 0!==window.document.createElement,g="u">typeof navigator&&"ReactNative"===navigator.product,m=h||g?u.useLayoutEffect:u.useEffect,y=e=>e.isUninitialized?{...e,isUninitialized:!1,isFetching:!0,isLoading:void 0===e.data,status:n.RE.pending}:e;function b(e,...t){let r={};return t.forEach(t=>{r[t]=e[t]}),r}var v=["data","status","isLoading","isSuccess","isError","error"],S=Symbol(),A=(0,n.l0)((0,n.m7)(),(({batch:e=a.batch,hooks:t={useDispatch:a.useDispatch,useSelector:a.useSelector,useStore:a.useStore},createSelector:r=s.Mz,unstable__sideEffectsInRender:h=!1,...g}={})=>({name:S,init(s,{serializeQueryArgs:g},S){let{buildQueryHooks:A,buildInfiniteQueryHooks:w,buildMutationHook:R,usePrefetch:q}=function({api:e,moduleOptions:{batch:t,hooks:{useDispatch:r,useSelector:s,useStore:o},unstable__sideEffectsInRender:l,createSelector:h},serializeQueryArgs:g,context:S}){let A=l?e=>e():u.useEffect,w=e=>e.current?.unsubscribe?.(),R=S.endpointDefinitions;return{buildQueryHooks:function(a){let s=(e,t={})=>{let[r]=O(a,e,t);return C(r),(0,u.useMemo)(()=>({refetch:()=>(function(e){if(!e.current)throw Error((0,i.formatProdErrorMessage)(38));return e.current.refetch()})(r)}),[r])},o=({refetchOnReconnect:n,refetchOnFocus:i,pollingInterval:s=0,skipPollingIfUnfocused:o=!1}={})=>{let{initiate:c}=e.endpoints[a],l=r(),[f,h]=(0,u.useState)(d),g=(0,u.useRef)(void 0),m=p({refetchOnReconnect:n,refetchOnFocus:i,pollingInterval:s,skipPollingIfUnfocused:o});A(()=>{m!==g.current?.subscriptionOptions&&g.current?.updateSubscriptionOptions(m)},[m]);let y=(0,u.useRef)(m);A(()=>{y.current=m},[m]);let b=(0,u.useCallback)(function(e,r=!1){let n;return t(()=>{w(g),g.current=n=l(c(e,{subscriptionOptions:y.current,forceRefetch:!r})),h(e)}),n},[l,c]),v=(0,u.useCallback)(()=>{g.current?.queryCacheKey&&l(e.internalActions.removeQueryResult({queryCacheKey:g.current?.queryCacheKey}))},[l]);return(0,u.useEffect)(()=>()=>{w(g)},[]),(0,u.useEffect)(()=>{f===d||g.current||b(f,!0)},[f,b]),(0,u.useMemo)(()=>[b,f,{reset:v}],[b,f,v])},c=E(a,q);return{useQueryState:c,useQuerySubscription:s,useLazyQuerySubscription:o,useLazyQuery(e){let[t,r,{reset:n}]=o(e),i=c(r,{...e,skip:r===d}),a=(0,u.useMemo)(()=>({lastArg:r}),[r]);return(0,u.useMemo)(()=>[t,{...i,reset:n},a],[t,i,n,a])},useQuery(e,t){let r=s(e,t),i=c(e,{selectFromResult:e===n.hT||t?.skip?void 0:y,...t}),a=b(i,...v);return(0,u.useDebugValue)(a),(0,u.useMemo)(()=>({...i,...r}),[i,r])}}},buildInfiniteQueryHooks:function(e){let r=(r,a={})=>{let[s,o,c,l]=O(e,r,a),d=(0,u.useRef)(l);A(()=>{d.current=l},[l]);let h=p(a.refetchCachedPages),g=(0,u.useCallback)(function(e,r){let n;return t(()=>{w(s),s.current=n=o(c(e,{subscriptionOptions:d.current,direction:r}))}),n},[s,o,c]);C(s);let m=f(a.skip?n.hT:r),y=(0,u.useCallback)(e=>{if(!s.current)throw Error((0,i.formatProdErrorMessage)(38));let t={refetchCachedPages:e?.refetchCachedPages??h};return s.current.refetch(t)},[s,h]);return(0,u.useMemo)(()=>({trigger:g,refetch:y,fetchNextPage:()=>g(m,"forward"),fetchPreviousPage:()=>g(m,"backward")}),[y,g,m])},a=E(e,P);return{useInfiniteQueryState:a,useInfiniteQuerySubscription:r,useInfiniteQuery(e,t){let{refetch:i,fetchNextPage:s,fetchPreviousPage:o}=r(e,t),c=a(e,{selectFromResult:e===n.hT||t?.skip?void 0:y,...t}),l=b(c,...v,"hasNextPage","hasPreviousPage");return(0,u.useDebugValue)(l),(0,u.useMemo)(()=>({...c,fetchNextPage:s,fetchPreviousPage:o,refetch:i}),[c,s,o,i])}}},buildMutationHook:function(n){return({selectFromResult:i,fixedCacheKey:o}={})=>{let{select:c,initiate:l}=e.endpoints[n],d=r(),[f,p]=(0,u.useState)();(0,u.useEffect)(()=>()=>{f?.arg.fixedCacheKey||f?.reset()},[f]);let g=(0,u.useCallback)(function(e){let t=d(l(e,{fixedCacheKey:o}));return p(t),t},[d,l,o]),{requestId:m}=f||{},y=(0,u.useMemo)(()=>c({fixedCacheKey:o,requestId:f?.requestId}),[o,f,c]),S=s((0,u.useMemo)(()=>i?h([y],i):y,[i,y]),a.shallowEqual),A=null==o?f?.arg.originalArgs:void 0,w=(0,u.useCallback)(()=>{t(()=>{f&&p(void 0),o&&d(e.internalActions.removeMutationResult({requestId:m,fixedCacheKey:o}))})},[d,o,f,m]),R=b(S,...v,"endpointName");(0,u.useDebugValue)(R);let q=(0,u.useMemo)(()=>({...S,originalArgs:A,reset:w}),[S,A,w]);return(0,u.useMemo)(()=>[g,q],[g,q])}},usePrefetch:function(t,n){let i=r(),a=p(n);return(0,u.useCallback)((r,n)=>i(e.util.prefetch(t,r,{...a,...n})),[t,i,a])}};function q(e,t,r){if(t?.endpointName&&e.isUninitialized){let{endpointName:e}=t,i=R[e];r!==n.hT&&g({queryArgs:t.originalArgs,endpointDefinition:i,endpointName:e})===g({queryArgs:r,endpointDefinition:i,endpointName:e})&&(t=void 0)}let i=e.isSuccess?e.data:t?.data;void 0===i&&(i=e.data);let a=void 0!==i,s=e.isLoading,u=(!t||t.isLoading||t.isUninitialized)&&!a&&s,o=e.isSuccess||a&&(s&&!t?.isError||e.isUninitialized);return{...e,data:i,currentData:e.data,isFetching:s,isLoading:u,isSuccess:o}}function P(e,t,r){if(t?.endpointName&&e.isUninitialized){let{endpointName:e}=t,i=R[e];r!==n.hT&&g({queryArgs:t.originalArgs,endpointDefinition:i,endpointName:e})===g({queryArgs:r,endpointDefinition:i,endpointName:e})&&(t=void 0)}let i=e.isSuccess?e.data:t?.data;void 0===i&&(i=e.data);let a=void 0!==i,s=e.isLoading,u=(!t||t.isLoading||t.isUninitialized)&&!a&&s,o=e.isSuccess||s&&a;return{...e,data:i,currentData:e.data,isFetching:s,isLoading:u,isSuccess:o}}function O(t,i,{refetchOnReconnect:a,refetchOnFocus:s,refetchOnMountOrArgChange:o,skip:l=!1,pollingInterval:d=0,skipPollingIfUnfocused:h=!1,...g}={}){let{initiate:m}=e.endpoints[t],y=r(),b=(0,u.useRef)(void 0);b.current||(b.current=y(e.internalActions.internal_getRTKQSubscriptions()));let v=f(l?n.hT:i),S=p({refetchOnReconnect:a,refetchOnFocus:s,pollingInterval:d,skipPollingIfUnfocused:h}),w=p(g.initialPageParam),q=p(g.refetchCachedPages),P=(0,u.useRef)(void 0),{queryCacheKey:E,requestId:C}=P.current||{},M=!1;E&&C&&(M=b.current.isRequestSubscribed(E,C));let T=!M&&void 0!==P.current;return A(()=>{T&&(P.current=void 0)},[T]),A(()=>{let e=P.current;if(v===n.hT){e?.unsubscribe(),P.current=void 0;return}let r=P.current?.subscriptionOptions;e&&e.arg===v?S!==r&&e.updateSubscriptionOptions(S):(e?.unsubscribe(),P.current=y(m(v,{subscriptionOptions:S,forceRefetch:o,...c(R[t])?{initialPageParam:w,refetchCachedPages:q}:{}})))},[y,m,o,v,S,T,w,q,t]),[P,y,m,S]}function E(t,r){return(i,{skip:c=!1,selectFromResult:l}={})=>{let{select:d}=e.endpoints[t],p=f(c?n.hT:i),g=(0,u.useRef)(void 0),y=(0,u.useMemo)(()=>h([d(p),(e,t)=>t,e=>p],r,{memoizeOptions:{resultEqualityCheck:a.shallowEqual}}),[d,p]),b=(0,u.useMemo)(()=>l?h([y],l,{devModeChecks:{identityFunctionCheck:"never"}}):y,[y,l]),v=s(e=>b(e,g.current),a.shallowEqual),S=y(o().getState(),g.current);return m(()=>{g.current=S},[S]),v}}function C(e){(0,u.useEffect)(()=>()=>{w(e),e.current=void 0},[e])}}({api:s,moduleOptions:{batch:e,hooks:t,unstable__sideEffectsInRender:h,createSelector:r},serializeQueryArgs:g,context:S});return l(s,{usePrefetch:q}),l(S,{batch:e}),{injectEndpoint(e,t){if("query"===t.type){let{useQuery:t,useLazyQuery:r,useLazyQuerySubscription:n,useQueryState:i,useQuerySubscription:a}=A(e);l(s.endpoints[e],{useQuery:t,useLazyQuery:r,useLazyQuerySubscription:n,useQueryState:i,useQuerySubscription:a}),s[`use${o(e)}Query`]=t,s[`useLazy${o(e)}Query`]=r}if("mutation"===t.type){let t=R(e);l(s.endpoints[e],{useMutation:t}),s[`use${o(e)}Mutation`]=t}else if(c(t)){let{useInfiniteQuery:t,useInfiniteQuerySubscription:r,useInfiniteQueryState:n}=w(e);l(s.endpoints[e],{useInfiniteQuery:t,useInfiniteQuerySubscription:r,useInfiniteQueryState:n}),s[`use${o(e)}InfiniteQuery`]=t}}}}}))())},18117(e,t,r){r.d(t,{hT:()=>en,l0:()=>ec,$J:()=>g,m7:()=>ev,RE:()=>o,cw:()=>P});var n,i=r(88605),a=r(91251),s=class extends Error{issues;constructor(e){super(e[0].message),this.name="SchemaError",this.issues=e}},u=r(25508),o=((n=o||{}).uninitialized="uninitialized",n.pending="pending",n.fulfilled="fulfilled",n.rejected="rejected",n),c="uninitialized",l="pending",d="fulfilled",f="rejected";function p(e){return{status:e,isUninitialized:e===c,isLoading:e===l,isSuccess:e===d,isError:e===f}}var h=i.isPlainObject;function g(e,t){if(e===t||!(h(e)&&h(t)||Array.isArray(e)&&Array.isArray(t)))return t;let r=Object.keys(t),n=Object.keys(e),i=r.length===n.length,a=Array.isArray(t)?[]:{};for(let n of r)a[n]=g(e[n],t[n]),i&&(i=e[n]===a[n]);return i?e:a}function m(e,t,r){return e.reduce((e,n,i)=>(t(n,i)&&e.push(r(n,i)),e),[]).flat()}function y(e){return null!=e}function b(e){return[...e?.values()??[]].filter(y)}function v(e,t,r){return e.has(t)?e.get(t):e.set(t,r(t)).get(t)}var S=()=>new Map,A=(...e)=>fetch(...e),w=e=>e.status>=200&&e.status<=299,R=e=>/ion\/(vnd\.api\+)?json/.test(e.get("content-type")||"");function q(e){if(!(0,i.isPlainObject)(e))return e;let t={...e};for(let[e,r]of Object.entries(t))void 0===r&&delete t[e];return t}function P({baseUrl:e,prepareHeaders:t=e=>e,fetchFn:r=A,paramsSerializer:n,isJsonContentType:a=R,jsonContentType:s="application/json",jsonReplacer:u,timeout:o,responseHandler:c,validateStatus:l,...d}={}){return"u"{let m,y,b,v,S,{getState:A,extra:R,endpoint:P,forced:O,type:E}=h,{url:C,headers:M=new Headers(d.headers),params:T,responseHandler:j=c??"json",validateStatus:k=l??w,timeout:Q=o,...N}="string"==typeof p?{url:p}:p,D={...d,signal:Q?((...e)=>{for(let t of e)if(t.aborted)return AbortSignal.abort(t.reason);let t=new AbortController;for(let r of e)r.addEventListener("abort",()=>t.abort(r.reason),{signal:t.signal,once:!0});return t.signal})(h.signal,(v=new AbortController,setTimeout(()=>{let e="signal timed out",t="TimeoutError";v.abort("u">typeof DOMException?new DOMException(e,t):Object.assign(Error(e),{name:t}))},Q),v.signal)):h.signal,...N};M=new Headers(q(M)),D.headers=await t(M,{getState:A,arg:p,extra:R,endpoint:P,forced:O,type:E,extraOptions:g})||M;let x="object"==typeof(S=D.body)&&((0,i.isPlainObject)(S)||Array.isArray(S)||"function"==typeof S.toJSON);if(null==D.body||x||"string"==typeof D.body||D.headers.delete("content-type"),!D.headers.has("content-type")&&x&&D.headers.set("content-type",s),x&&a(D.headers)&&(D.body=JSON.stringify(D.body,u)),D.headers.has("accept")||("json"===j?D.headers.set("accept","application/json"):"text"===j&&D.headers.set("accept","text/plain, text/html, */*")),T){let e=~C.indexOf("?")?"&":"?";C+=e+(n?n(T):new URLSearchParams(q(T)))}let I=new Request(C=function(e,t){var r;if(!e)return t;if(!t)return e;if(r=t,RegExp("(^|:)//").test(r))return t;let n=e.endsWith("/")||!t.startsWith("?")?"/":"";return e=e.replace(/\/$/,""),t=t.replace(/^\//,""),`${e}${n}${t}`}(e,C),D);m={request:new Request(C,D)};try{y=await r(I)}catch(e){return{error:{status:(e instanceof Error||"u">typeof DOMException&&e instanceof DOMException)&&"TimeoutError"===e.name?"TIMEOUT_ERROR":"FETCH_ERROR",error:String(e)},meta:m}}let K=y.clone();m.response=K;let _="";try{let e;if(await Promise.all([f(y,j).then(e=>b=e,t=>e=t),K.text().then(e=>_=e,()=>{})]),e)throw e}catch(e){return{error:{status:"PARSING_ERROR",originalStatus:y.status,data:_,error:String(e)},meta:m}}return k(y,b)?{data:b,meta:m}:{error:{status:y.status,data:b},meta:m}};async function f(e,t){if("function"==typeof t)return t(e);if("content-type"===t&&(t=a(e.headers)?"json":"text"),"json"===t){let t=await e.text();return t.length?JSON.parse(t):null}return e.text()}}var O=class{constructor(e,t){this.value=e,this.meta=t}},E="__rtkq/",C="focused",M=(0,i.createAction)(`${E}${C}`),T=(0,i.createAction)(`${E}un${C}`),j=(0,i.createAction)(`${E}online`),k=(0,i.createAction)(`${E}offline`),Q="query",N="mutation",D="infinitequery";function x(e){return e.type===Q}function I(e){return e.type===D}function K(e){return x(e)||I(e)}function _(e,t,r,n,i,a){let s="function"==typeof e?e(t,r,n,i):e;return s?m(s,y,e=>a($(e))):[]}function $(e){return"string"==typeof e?{type:e}:e}var F=(e,t)=>e.endpointDefinitions[t],U=Symbol("forceQueryFn"),z=e=>"function"==typeof e[U],B=class extends s{constructor(e,t,r,n){super(e),this.value=t,this.schemaName=r,this._bqMeta=n}},L=(e,t)=>Array.isArray(e)?e.includes(t):!!e;async function W(e,t,r,n){let i=await e["~standard"].validate(t);if(i.issues)throw new B(i.issues,t,r,n);return i.value}function H(e){return e}var J=(e={})=>({...e,[i.SHOULD_AUTOBATCH]:!0});function V(e,{pages:t,pageParams:r},n){let i=t.length-1;return e.getNextPageParam(t[i],t,r[i],r,n)}function X(e,{pages:t,pageParams:r},n){return e.getPreviousPageParam?.(t[0],t,r[0],r,n)}function G(e,t,r,n){return _(r[e.meta.arg.endpointName][t],(0,i.isFulfilled)(e)?e.payload:void 0,(0,i.isRejectedWithValue)(e)?e.payload:void 0,e.meta.arg.originalArgs,"baseQueryMeta"in e.meta?e.meta.baseQueryMeta:void 0,n)}function Y(e){return(0,a.isDraft)(e)?(0,a.current)(e):e}function Z(e,t,r){let n=e[t];n&&r(n)}function ee(e){return("arg"in e?e.arg.fixedCacheKey:e.fixedCacheKey)??e.requestId}function et(e,t,r){let n=e[ee(t)];n&&r(n)}var er={},en=Symbol.for("RTKQ/skipToken"),ei={status:c},ea=(0,i.createNextState)(ei,()=>{}),es=(0,i.createNextState)(ei,()=>{}),eu=WeakMap?new WeakMap:void 0,eo=({endpointName:e,queryArgs:t})=>{let r="",n=eu?.get(t);if("string"==typeof n)r=n;else{let e=JSON.stringify(t,(e,t)=>(t="bigint"==typeof t?{$bigint:t.toString()}:t,t=(0,i.isPlainObject)(t)?Object.keys(t).sort().reduce((e,r)=>(e[r]=t[r],e),{}):t));(0,i.isPlainObject)(t)&&eu?.set(t,e),r=e}return`${e}(${r})`};function ec(...e){return function(t){let r=(0,u.X4)(e=>t.extractRehydrationInfo?.(e,{reducerPath:t.reducerPath??"api"})),n={reducerPath:"api",keepUnusedDataFor:60,refetchOnMountOrArgChange:!1,refetchOnFocus:!1,refetchOnReconnect:!1,invalidationBehavior:"delayed",...t,extractRehydrationInfo:r,serializeQueryArgs(e){let r=eo;if("serializeQueryArgs"in e.endpointDefinition){let t=e.endpointDefinition.serializeQueryArgs;r=e=>{let r=t(e);return"string"==typeof r?r:eo({...e,queryArgs:r})}}else t.serializeQueryArgs&&(r=t.serializeQueryArgs);return r(e)},tagTypes:[...t.tagTypes||[]]},a={endpointDefinitions:{},batch(e){e()},apiUid:(0,i.nanoid)(),extractRehydrationInfo:r,hasRehydrationInfo:(0,u.X4)(e=>null!=r(e))},s={injectEndpoints:function(e){for(let[t,r]of Object.entries(e.endpoints({query:e=>({...e,type:Q}),mutation:e=>({...e,type:N}),infiniteQuery:e=>({...e,type:D})}))){if(!0!==e.overrideExisting&&t in a.endpointDefinitions){if("throw"===e.overrideExisting)throw Error((0,i.formatProdErrorMessage)(39));continue}for(let e of(a.endpointDefinitions[t]=r,o))e.injectEndpoint(t,r)}return s},enhanceEndpoints({addTagTypes:e,endpoints:t}){if(e)for(let t of e)n.tagTypes.includes(t)||n.tagTypes.push(t);if(t)for(let[e,r]of Object.entries(t))"function"==typeof r?r(F(a,e)):Object.assign(F(a,e)||{},r);return s}},o=e.map(e=>e.init(s,n,a));return s.injectEndpoints({endpoints:t.endpoints})}}function el(e,...t){return Object.assign(e,...t)}var ed=({reducerPath:e,api:t,queryThunk:r,context:n,internalState:a,selectors:{selectQueryEntry:s,selectConfig:u},getRunningQueryThunk:o,mwApi:c})=>{let{removeQueryResult:l,unsubscribeQueryResult:d,cacheEntriesUpserted:f}=t.internalActions,p=(0,i.isAnyOf)(d.match,r.fulfilled,r.rejected,f.match);function h(e){let t=a.currentSubscriptions.get(e);return!!t&&t.size>0}let g={};function m(e){for(let t of e.values())t?.abort?.()}function y(e,t,r){let i=t.getState();for(let a of e){let e=s(i,a);e?.endpointName&&function(e,t,r,i){let a=F(n,t),u=a?.keepUnusedDataFor??i.keepUnusedDataFor;if(u===1/0)return;let c=Math.max(0,Math.min(u,2147482.647));if(!h(e)){let t=g[e];t&&clearTimeout(t),g[e]=setTimeout(()=>{if(!h(e)){let t=s(r.getState(),e);if(t?.endpointName){let e=r.dispatch(o(t.endpointName,t.originalArgs));e?.abort()}r.dispatch(l({queryCacheKey:e}))}delete g[e]},1e3*c)}}(a,e.endpointName,t,r)}}return(e,r)=>{let i=u(r.getState());if(p(e)){let t;if(f.match(e))t=e.payload.map(e=>e.queryDescription.queryCacheKey);else{let{queryCacheKey:r}=d.match(e)?e.payload:e.meta.arg;t=[r]}y(t,r,i)}if(t.util.resetApiState.match(e)){for(let[e,t]of Object.entries(g))t&&clearTimeout(t),delete g[e];m(a.runningQueries),m(a.runningMutations)}if(n.hasRehydrationInfo(e)){let{queries:t}=n.extractRehydrationInfo(e);y(Object.keys(t),r,i)}}},ef=Error("Promise never resolved before cacheEntryRemoved."),ep=({api:e,reducerPath:t,context:r,queryThunk:n,mutationThunk:a,internalState:s,selectors:{selectQueryEntry:u,selectApiState:o}})=>{let c=(0,i.isAsyncThunkAction)(n),l=(0,i.isAsyncThunkAction)(a),d=(0,i.isFulfilled)(n,a),f={},{removeQueryResult:p,removeMutationResult:h,cacheEntriesUpserted:g}=e.internalActions;function m(e,t,r){let n=f[e];n?.valueResolved&&(n.valueResolved({data:t,meta:r}),delete n.valueResolved)}function y(e){let t=f[e];t&&(delete f[e],t.cacheEntryRemoved())}function b(e){let{arg:t,requestId:r}=e.meta,{endpointName:n,originalArgs:i}=t;return[n,i,r]}function v(t,n,i,a,s){let u=F(r,t),o=u?.onCacheEntryAdded;if(!o)return;let c={},l=new Promise(e=>{c.cacheEntryRemoved=e}),d=Promise.race([new Promise(e=>{c.valueResolved=e}),l.then(()=>{throw ef})]);d.catch(()=>{}),f[i]=c;let p=e.endpoints[t].select(K(u)?n:i),h=a.dispatch((e,t,r)=>r),g={...a,getCacheEntry:()=>p(a.getState()),requestId:s,extra:h,updateCachedData:K(u)?r=>a.dispatch(e.util.updateQueryData(t,n,r)):void 0,cacheDataLoaded:d,cacheEntryRemoved:l};Promise.resolve(o(n,g)).catch(e=>{if(e!==ef)throw e})}return(r,i,s)=>{var o;let S=c(o=r)?o.meta.arg.queryCacheKey:l(o)?o.meta.arg.fixedCacheKey??o.meta.requestId:p.match(o)?o.payload.queryCacheKey:h.match(o)?ee(o.payload):"";function A(e,t,r,n){let a=u(s,t),o=u(i.getState(),t);!a&&o&&v(e,n,t,i,r)}if(n.pending.match(r)){let[e,t,n]=b(r);A(e,S,n,t)}else if(g.match(r))for(let{queryDescription:e,value:t}of r.payload){let{endpointName:n,originalArgs:i,queryCacheKey:a}=e;A(n,a,r.meta.requestId,i),m(a,t,{})}else if(a.pending.match(r)){if(i.getState()[t].mutations[S]){let[e,t,n]=b(r);v(e,t,S,i,n)}}else if(d(r))m(S,r.payload,r.meta.baseQueryMeta);else if(p.match(r)||h.match(r))y(S);else if(e.util.resetApiState.match(r))for(let e of Object.keys(f))y(e)}},eh=({api:e,context:{apiUid:t},reducerPath:r})=>(r,n)=>{e.util.resetApiState.match(r)&&n.dispatch(e.internalActions.middlewareRegistered(t))},eg=({reducerPath:e,context:t,context:{endpointDefinitions:r},mutationThunk:n,queryThunk:a,api:s,assertTagType:u,refetchQuery:o,internalState:l})=>{let{removeQueryResult:d}=s.internalActions,f=(0,i.isAnyOf)((0,i.isFulfilled)(n),(0,i.isRejectedWithValue)(n)),p=(0,i.isAnyOf)((0,i.isFulfilled)(a,n),(0,i.isRejected)(a,n)),h=[],g=0;function m(r,n){let i=n.getState(),a=i[e];if(h.push(...r),"delayed"===a.config.invalidationBehavior&&g>0)return;let u=h;if(h=[],0===u.length)return;let f=s.util.selectInvalidatedBy(i,u);t.batch(()=>{for(let{queryCacheKey:e}of Array.from(f.values())){let t=a.queries[e],r=v(l.currentSubscriptions,e,S);t&&(0===r.size?n.dispatch(d({queryCacheKey:e})):t.status!==c&&n.dispatch(o(t)))}})}return(e,t)=>{(a.pending.match(e)||n.pending.match(e))&&g++,p(e)&&(g=Math.max(0,g-1)),f(e)?m(G(e,"invalidatesTags",r,u),t):p(e)?m([],t):s.util.invalidateTags.match(e)&&m(_(e.payload,void 0,void 0,void 0,void 0,u),t)}},em=({reducerPath:e,queryThunk:t,api:r,refetchQuery:n,internalState:i})=>{let{currentPolls:a,currentSubscriptions:s}=i,u=new Set,o=null;function l(t,r){u.add(t),o||(o=setTimeout(()=>{for(let t of u)!function({queryCacheKey:t},r){let n=r.getState()[e].queries[t],i=s.get(t);if(!n||n.status===c)return;let{lowestPollingInterval:u}=p(i);if(!Number.isFinite(u))return f(t);let o=a.get(t),l=Date.now()+u;(!o||l{(i.config.focused||!f)&&r.dispatch(n(u)),d({queryCacheKey:t},r)},l)})}function f(e){let t=a.get(e);t?.timeout&&clearTimeout(t.timeout),a.delete(e)}function p(e=new Map){let t=!1,r=1/0;for(let n of e.values())n.pollingInterval&&(r=Math.min(n.pollingInterval,r),t=n.skipPollingIfUnfocused||t);return{lowestPollingInterval:r,skipPollingIfUnfocused:t}}return(e,n)=>{(r.internalActions.updateSubscriptionOptions.match(e)||r.internalActions.unsubscribeQueryResult.match(e))&&l(e.payload.queryCacheKey,n),(t.pending.match(e)||t.rejected.match(e)&&e.meta.condition)&&l(e.meta.arg.queryCacheKey,n),(t.fulfilled.match(e)||t.rejected.match(e)&&!e.meta.condition)&&d(e.meta.arg,n),r.util.resetApiState.match(e)&&(function(){for(let e of a.keys())f(e)}(),o&&(clearTimeout(o),o=null),u.clear())}},ey=({api:e,context:t,queryThunk:r,mutationThunk:n})=>{let a=(0,i.isPending)(r,n),s=(0,i.isRejected)(r,n),u=(0,i.isFulfilled)(r,n),o={};return(r,n)=>{if(a(r)){let{requestId:i,arg:{endpointName:a,originalArgs:s}}=r.meta,u=F(t,a),c=u?.onQueryStarted;if(c){let t={},r=new Promise((e,r)=>{t.resolve=e,t.reject=r});r.catch(()=>{}),o[i]=t;let l=e.endpoints[a].select(K(u)?s:i),d=n.dispatch((e,t,r)=>r),f={...n,getCacheEntry:()=>l(n.getState()),requestId:i,extra:d,updateCachedData:K(u)?t=>n.dispatch(e.util.updateQueryData(a,s,t)):void 0,queryFulfilled:r};c(s,f)}}else if(u(r)){let{requestId:e,baseQueryMeta:t}=r.meta;o[e]?.resolve({data:r.payload,meta:t}),delete o[e]}else if(s(r)){let{requestId:e,rejectedWithValue:t,baseQueryMeta:n}=r.meta;o[e]?.reject({error:r.payload??r.error,isUnhandledError:!t,meta:n}),delete o[e]}}},eb=Symbol(),ev=({createSelector:e=i.createSelector}={})=>({name:eb,init(t,{baseQuery:r,tagTypes:n,reducerPath:s,serializeQueryArgs:u,keepUnusedDataFor:o,refetchOnMountOrArgChange:h,refetchOnFocus:A,refetchOnReconnect:w,invalidationBehavior:R,onSchemaFailure:q,catchSchemaFailure:P,skipSchemaValidation:E},C){(0,a.enablePatches)();let D=e=>e;Object.assign(t,{reducerPath:s,endpoints:{},internalActions:{onOnline:j,onOffline:k,onFocus:M,onFocusLost:T},util:{}});let K=function({serializeQueryArgs:e,reducerPath:t,createSelector:r}){let n=e=>ea,i=e=>es;return{buildQuerySelector:function(e,t){return l(e,t,a)},buildInfiniteQuerySelector:function(e,t){let{infiniteQueryOptions:r}=t;return l(e,t,function(e){var t,n,i,a,s,u;let o={...e,...p(e.status)},{isLoading:c,isError:l,direction:d}=o,f="forward"===d,h="backward"===d;return{...o,hasNextPage:(t=r,n=o.data,i=o.originalArgs,!!n&&null!=V(t,n,i)),hasPreviousPage:(a=r,s=o.data,u=o.originalArgs,!!s&&!!a.getPreviousPageParam&&null!=X(a,s,u)),isFetchingNextPage:c&&f,isFetchingPreviousPage:c&&h,isFetchNextPageError:l&&f,isFetchPreviousPageError:l&&h}})},buildMutationSelector:function(){return e=>{let n;return r((n="object"==typeof e?ee(e)??en:e)===en?i:e=>(function(e){return e[t]})(e)?.mutations?.[n]??es,a)}},selectInvalidatedBy:function(e,r){let n=e[t],i=new Set;for(let e of m(r,y,$)){let t=n.provided.tags[e.type];if(t)for(let r of(void 0!==e.id?t[e.id]:Object.values(t).flat())??[])i.add(r)}return Array.from(i.values()).flatMap(e=>{let t=n.queries[e];return t?{queryCacheKey:e,endpointName:t.endpointName,originalArgs:t.originalArgs}:[]})},selectCachedArgsForQuery:function(e,t){return m(Object.values(u(e)),e=>e?.endpointName===t&&e.status!==c,e=>e.originalArgs)},selectApiState:s,selectQueries:u,selectMutations:function(e){return function(e){return e[t]}(e)?.mutations},selectQueryEntry:o,selectConfig:function(e){return function(e){return e[t]}(e)?.config}};function a(e){return{...e,...p(e.status)}}function s(e){return e[t]}function u(e){return e[t]?.queries}function o(e,t){return u(e)?.[t]}function l(t,i,a){return s=>{if(s===en)return r(n,a);let u=e({queryArgs:s,endpointDefinition:i,endpointName:t});return r(e=>o(e,u)??ea,a)}}}({serializeQueryArgs:u,reducerPath:s,createSelector:e}),{selectInvalidatedBy:ei,selectCachedArgsForQuery:eu,buildQuerySelector:eo,buildInfiniteQuerySelector:ec,buildMutationSelector:ef}=K;el(t.util,{selectInvalidatedBy:ei,selectCachedArgsForQuery:eu});let{queryThunk:ev,infiniteQueryThunk:eS,mutationThunk:eA,patchQueryData:ew,updateQueryData:eR,upsertQueryData:eq,prefetch:eP,buildMatchThunkActions:eO}=function({reducerPath:e,baseQuery:t,context:{endpointDefinitions:r},serializeQueryArgs:n,api:s,assertTagType:u,selectors:o,onSchemaFailure:l,catchSchemaFailure:d,skipSchemaValidation:f}){function p(e,t,r=0){let n=[t,...e];return r&&n.length>r?n.slice(0,-1):n}function h(e,t,r=0){let n=[...e,t];return r&&n.length>r?n.slice(1):n}let g=(e,t)=>e.query&&e[t]?e[t]:H,m=async(e,{signal:n,abort:i,rejectWithValue:a,fulfillWithValue:s,dispatch:u,getState:c,extra:m})=>{let b=r[e.endpointName],{metaSchema:v,skipSchemaValidation:S=f}=b,A=e.type===Q;try{let r,a=H,l={signal:n,abort:i,dispatch:u,getState:c,extra:m,endpoint:e.endpointName,type:e.type,forced:A?y(e,c()):void 0,queryCacheKey:A?e.queryCacheKey:void 0},d=A?e[U]:void 0,f=async(t,r,n,i)=>{if(null==r&&t.pages.length)return Promise.resolve({data:t});let a={queryArg:e.originalArgs,pageParam:r},s=await w(a),u=i?p:h;return{data:{pages:u(t.pages,s.data,n),pageParams:u(t.pageParams,r,n)},meta:s.meta}};async function w(e){let r,{extraOptions:n,argSchema:i,rawResponseSchema:s,responseSchema:u}=b;if(i&&!L(S,"arg")&&(e=await W(i,e,"argSchema",{})),d?r=d():b.query?(a=g(b,"transformResponse"),r=await t(b.query(e),l,n)):r=await b.queryFn(e,l,n,e=>t(e,l,n)),r.error)throw new O(r.error,r.meta);let{data:o}=r;s&&!L(S,"rawResponse")&&(o=await W(s,r.data,"rawResponseSchema",r.meta));let c=await a(o,r.meta,e);return u&&!L(S,"response")&&(c=await W(u,c,"responseSchema",r.meta)),{...r,data:c}}if(A&&"infiniteQueryOptions"in b){let t,{infiniteQueryOptions:n}=b,{maxPages:i=1/0}=n,a=e.refetchCachedPages??n.refetchCachedPages??!0,s=o.selectQueryEntry(c(),e.queryCacheKey)?.data,u=(!y(e,c())||e.direction)&&s?s:{pages:[],pageParams:[]};if("direction"in e&&e.direction&&u.pages.length){let r="backward"===e.direction,a=(r?X:V)(n,u,e.originalArgs);t=await f(u,a,i,r)}else{let{initialPageParam:r=n.initialPageParam}=e,o=s?.pageParams??[],c=o[0]??r,l=o.length;if(t=await f(u,c,i),d&&(t={data:t.data.pages[0]}),a)for(let r=1;r=a)}let b=()=>(0,i.createAsyncThunk)(`${e}/executeQuery`,m,{getPendingMeta({arg:e}){let t=r[e.endpointName];return J({startedTimeStamp:Date.now(),...I(t)?{direction:e.direction}:{}})},condition(e,{getState:t}){let n=t(),i=o.selectQueryEntry(n,e.queryCacheKey),a=i?.fulfilledTimeStamp,s=e.originalArgs,u=i?.originalArgs,c=r[e.endpointName],l=e.direction;return!!z(e)||i?.status!=="pending"&&(!!(y(e,n)||x(c)&&c?.forceRefetch?.({currentArg:s,previousArg:u,endpointState:i,state:n}))||!a||!!l)},dispatchConditionRejection:!0}),v=b(),S=b();function A(e){return t=>t?.meta?.arg?.endpointName===e}return{queryThunk:v,mutationThunk:(0,i.createAsyncThunk)(`${e}/executeMutation`,m,{getPendingMeta:()=>J({startedTimeStamp:Date.now()})}),infiniteQueryThunk:S,prefetch:(e,t,r={})=>(n,i)=>{let a="force"in r&&r.force,u="ifOlderThan"in r&&r.ifOlderThan,o=(r=!0)=>s.endpoints[e].initiate(t,{forceRefetch:r,subscribe:!1}),c=s.endpoints[e].select(t)(i());if(a)n(o());else if(u){let e=c?.fulfilledTimeStamp;if(!e)return void n(o());(Number(new Date)-Number(new Date(e)))/1e3>=u&&n(o())}else n(o(!1))},updateQueryData:(e,t,r,n=!0)=>(i,u)=>{let o,l=s.endpoints[e].select(t)(u()),d={patches:[],inversePatches:[],undo:()=>i(s.util.patchQueryData(e,t,d.inversePatches,n))};if(l.status===c)return d;if("data"in l)if((0,a.isDraftable)(l.data)){let[e,t,n]=(0,a.produceWithPatches)(l.data,r);d.patches.push(...t),d.inversePatches.push(...n),o=e}else o=r(l.data),d.patches.push({op:"replace",path:[],value:o}),d.inversePatches.push({op:"replace",path:[],value:l.data});return 0===d.patches.length||i(s.util.patchQueryData(e,t,d.patches,n)),d},upsertQueryData:(e,t,r)=>n=>n(s.endpoints[e].initiate(t,{subscribe:!1,forceRefetch:!0,[U]:()=>({data:r})})),patchQueryData:(e,t,i,a)=>(o,c)=>{let l=r[e],d=n({queryArgs:t,endpointDefinition:l,endpointName:e});if(o(s.internalActions.queryResultPatched({queryCacheKey:d,patches:i})),!a)return;let f=s.endpoints[e].select(t)(c()),p=_(l.providesTags,f.data,void 0,t,{},u);o(s.internalActions.updateProvidedBy([{queryCacheKey:d,providedTags:p}]))},buildMatchThunkActions:function(e,t){return{matchPending:(0,i.isAllOf)((0,i.isPending)(e),A(t)),matchFulfilled:(0,i.isAllOf)((0,i.isFulfilled)(e),A(t)),matchRejected:(0,i.isAllOf)((0,i.isRejected)(e),A(t))}}}}({baseQuery:r,reducerPath:s,context:C,api:t,serializeQueryArgs:u,assertTagType:D,selectors:K,onSchemaFailure:q,catchSchemaFailure:P,skipSchemaValidation:E}),{reducer:eE,actions:eC}=function({reducerPath:e,queryThunk:t,mutationThunk:r,serializeQueryArgs:n,context:{endpointDefinitions:s,apiUid:u,extractRehydrationInfo:o,hasRehydrationInfo:p},assertTagType:h,config:m}){let y=(0,i.createAction)(`${e}/resetApiState`);function b(e,t,r,n){e[t.queryCacheKey]??={status:c,endpointName:t.endpointName},Z(e,t.queryCacheKey,e=>{e.status=l,e.requestId=r&&e.requestId?e.requestId:n.requestId,void 0!==t.originalArgs&&(e.originalArgs=t.originalArgs),e.startedTimeStamp=n.startedTimeStamp,I(s[n.arg.endpointName])&&"direction"in t&&(e.direction=t.direction)})}function v(e,t,r,n){Z(e,t.arg.queryCacheKey,e=>{if(e.requestId!==t.requestId&&!n)return;let{merge:u}=s[t.arg.endpointName];if(e.status=d,u)if(void 0!==e.data){let{fulfilledTimeStamp:n,arg:a,baseQueryMeta:s,requestId:o}=t,c=(0,i.createNextState)(e.data,e=>u(e,r,{arg:a.originalArgs,baseQueryMeta:s,fulfilledTimeStamp:n,requestId:o}));e.data=c}else e.data=r;else e.data=s[t.arg.endpointName].structuralSharing??!0?g((0,a.isDraft)(e.data)?(0,a.original)(e.data):e.data,r):r;delete e.error,e.fulfilledTimeStamp=t.fulfilledTimeStamp})}let S=(0,i.createSlice)({name:`${e}/queries`,initialState:er,reducers:{removeQueryResult:{reducer(e,{payload:{queryCacheKey:t}}){delete e[t]},prepare:(0,i.prepareAutoBatched)()},cacheEntriesUpserted:{reducer(e,t){for(let r of t.payload){let{queryDescription:n,value:i}=r;b(e,n,!0,{arg:n,requestId:t.meta.requestId,startedTimeStamp:t.meta.timestamp}),v(e,{arg:n,requestId:t.meta.requestId,fulfilledTimeStamp:t.meta.timestamp,baseQueryMeta:{}},i,!0)}},prepare:e=>({payload:e.map(e=>{let{endpointName:t,arg:r,value:i}=e,a=s[t];return{queryDescription:{type:Q,endpointName:t,originalArgs:e.arg,queryCacheKey:n({queryArgs:r,endpointDefinition:a,endpointName:t})},value:i}}),meta:{[i.SHOULD_AUTOBATCH]:!0,requestId:(0,i.nanoid)(),timestamp:Date.now()}})},queryResultPatched:{reducer(e,{payload:{queryCacheKey:t,patches:r}}){Z(e,t,e=>{e.data=(0,a.applyPatches)(e.data,r.concat())})},prepare:(0,i.prepareAutoBatched)()}},extraReducers(e){e.addCase(t.pending,(e,{meta:t,meta:{arg:r}})=>{let n=z(r);b(e,r,n,t)}).addCase(t.fulfilled,(e,{meta:t,payload:r})=>{let n=z(t.arg);v(e,t,r,n)}).addCase(t.rejected,(e,{meta:{condition:t,arg:r,requestId:n},error:i,payload:a})=>{Z(e,r.queryCacheKey,e=>{if(t);else{if(e.requestId!==n)return;e.status=f,e.error=a??i}})}).addMatcher(p,(e,t)=>{let{queries:r}=o(t);for(let[t,n]of Object.entries(r))(n?.status===d||n?.status===f)&&(e[t]=n)})}}),A=(0,i.createSlice)({name:`${e}/mutations`,initialState:er,reducers:{removeMutationResult:{reducer(e,{payload:t}){let r=ee(t);r in e&&delete e[r]},prepare:(0,i.prepareAutoBatched)()}},extraReducers(e){e.addCase(r.pending,(e,{meta:t,meta:{requestId:r,arg:n,startedTimeStamp:i}})=>{n.track&&(e[ee(t)]={requestId:r,status:l,endpointName:n.endpointName,startedTimeStamp:i})}).addCase(r.fulfilled,(e,{payload:t,meta:r})=>{r.arg.track&&et(e,r,e=>{e.requestId===r.requestId&&(e.status=d,e.data=t,e.fulfilledTimeStamp=r.fulfilledTimeStamp)})}).addCase(r.rejected,(e,{payload:t,error:r,meta:n})=>{n.arg.track&&et(e,n,e=>{e.requestId===n.requestId&&(e.status=f,e.error=t??r)})}).addMatcher(p,(e,t)=>{let{mutations:r}=o(t);for(let[t,n]of Object.entries(r))(n?.status===d||n?.status===f)&&t!==n?.requestId&&(e[t]=n)})}}),w=(0,i.createSlice)({name:`${e}/invalidation`,initialState:{tags:{},keys:{}},reducers:{updateProvidedBy:{reducer(e,t){for(let{queryCacheKey:r,providedTags:n}of t.payload){for(let{type:t,id:i}of(R(e,r),n)){let n=(e.tags[t]??={})[i||"__internal_without_id"]??=[];n.includes(r)||n.push(r)}e.keys[r]=n}},prepare:(0,i.prepareAutoBatched)()}},extraReducers(e){e.addCase(S.actions.removeQueryResult,(e,{payload:{queryCacheKey:t}})=>{R(e,t)}).addMatcher(p,(e,t)=>{let{provided:r}=o(t);for(let[t,n]of Object.entries(r.tags??{}))for(let[i,a]of Object.entries(n)){let n=(e.tags[t]??={})[i||"__internal_without_id"]??=[];for(let t of a)n.includes(t)||n.push(t),e.keys[t]=r.keys[t]}}).addMatcher((0,i.isAnyOf)((0,i.isFulfilled)(t),(0,i.isRejectedWithValue)(t)),(e,t)=>{q(e,[t])}).addMatcher(S.actions.cacheEntriesUpserted.match,(e,t)=>{q(e,t.payload.map(({queryDescription:e,value:t})=>({type:"UNKNOWN",payload:t,meta:{requestStatus:"fulfilled",requestId:"UNKNOWN",arg:e}})))})}});function R(e,t){for(let r of Y(e.keys[t]??[])){let n=r.type,i=r.id??"__internal_without_id",a=e.tags[n]?.[i];a&&(e.tags[n][i]=Y(a).filter(e=>e!==t))}delete e.keys[t]}function q(e,t){let r=t.map(e=>{let t=G(e,"providesTags",s,h),{queryCacheKey:r}=e.meta.arg;return{queryCacheKey:r,providedTags:t}});w.caseReducers.updateProvidedBy(e,w.actions.updateProvidedBy(r))}let P=(0,i.createSlice)({name:`${e}/subscriptions`,initialState:er,reducers:{updateSubscriptionOptions(e,t){},unsubscribeQueryResult(e,t){},internal_getRTKQSubscriptions(){}}}),O=(0,i.createSlice)({name:`${e}/internalSubscriptions`,initialState:er,reducers:{subscriptionsUpdated:{reducer:(e,t)=>(0,a.applyPatches)(e,t.payload),prepare:(0,i.prepareAutoBatched)()}}}),E=(0,i.createSlice)({name:`${e}/config`,initialState:{online:"u"{e.addCase(j,e=>{e.online=!0}).addCase(k,e=>{e.online=!1}).addCase(M,e=>{e.focused=!0}).addCase(T,e=>{e.focused=!1}).addMatcher(p,e=>({...e}))}}),C=(0,i.combineReducers)({queries:S.reducer,mutations:A.reducer,provided:w.reducer,subscriptions:O.reducer,config:E.reducer});return{reducer:(e,t)=>C(y.match(t)?void 0:e,t),actions:{...E.actions,...S.actions,...P.actions,...O.actions,...A.actions,...w.actions,resetApiState:y}}}({context:C,queryThunk:ev,infiniteQueryThunk:eS,mutationThunk:eA,serializeQueryArgs:u,reducerPath:s,assertTagType:D,config:{refetchOnFocus:A,refetchOnReconnect:w,refetchOnMountOrArgChange:h,keepUnusedDataFor:o,reducerPath:s,invalidationBehavior:R}});el(t.util,{patchQueryData:ew,updateQueryData:eR,upsertQueryData:eq,prefetch:eP,resetApiState:eC.resetApiState,upsertQueryEntries:eC.cacheEntriesUpserted}),el(t.internalActions,eC);let eM=new WeakMap,eT=e=>v(eM,e,()=>({currentSubscriptions:new Map,currentPolls:new Map,runningQueries:new Map,runningMutations:new Map})),{buildInitiateQuery:ej,buildInitiateInfiniteQuery:ek,buildInitiateMutation:eQ,getRunningMutationThunk:eN,getRunningMutationsThunk:eD,getRunningQueriesThunk:ex,getRunningQueryThunk:eI}=function({serializeQueryArgs:e,queryThunk:t,infiniteQueryThunk:r,mutationThunk:n,api:i,context:a,getInternalState:s}){let u=e=>s(e)?.runningQueries,o=e=>s(e)?.runningMutations,{unsubscribeQueryResult:c,removeMutationResult:l,updateSubscriptionOptions:d}=i.internalActions;return{buildInitiateQuery:function(e,t){return f(e,t)},buildInitiateInfiniteQuery:function(e,t){return f(e,t)},buildInitiateMutation:function(e){return(t,{track:r=!0,fixedCacheKey:i}={})=>(a,s)=>{var u,c;let d=a(n({type:"mutation",endpointName:e,originalArgs:t,track:r,fixedCacheKey:i})),{requestId:f,abort:p,unwrap:h}=d,g=Object.assign((u=d.unwrap().then(e=>({data:e})),c=e=>({error:e}),u.catch(c)),{arg:d.arg,requestId:f,abort:p,unwrap:h,reset:()=>{a(l({requestId:f,fixedCacheKey:i}))}}),m=o(a);return m.set(f,g),g.then(()=>{m.delete(f)}),i&&(m.set(i,g),g.then(()=>{m.get(i)===g&&m.delete(i)})),g}},getRunningQueryThunk:function(t,r){return n=>{let i=e({queryArgs:r,endpointDefinition:F(a,t),endpointName:t});return u(n)?.get(i)}},getRunningMutationThunk:function(e,t){return e=>o(e)?.get(t)},getRunningQueriesThunk:function(){return e=>b(u(e))},getRunningMutationsThunk:function(){return e=>b(o(e))}};function f(n,a){let s=(o,{subscribe:l=!0,forceRefetch:f,subscriptionOptions:p,[U]:h,...g}={})=>(m,y)=>{let b,v=e({queryArgs:o,endpointDefinition:a,endpointName:n}),S={...g,type:Q,subscribe:l,forceRefetch:f,subscriptionOptions:p,endpointName:n,originalArgs:o,queryCacheKey:v,[U]:h};if(x(a))b=t(S);else{let{direction:e,initialPageParam:t,refetchCachedPages:n}=g;b=r({...S,direction:e,initialPageParam:t,refetchCachedPages:n})}let A=i.endpoints[n].select(o),w=m(b),R=A(y()),{requestId:q,abort:P}=w,O=R.requestId!==q,E=u(m)?.get(v),C=()=>A(y()),M=Object.assign(h?w.then(C):O&&!E?Promise.resolve(R):Promise.all([E,w]).then(C),{arg:o,requestId:q,subscriptionOptions:p,queryCacheKey:v,abort:P,async unwrap(){let e=await M;if(e.isError)throw e.error;return e.data},refetch:e=>m(s(o,{subscribe:!1,forceRefetch:!0,...e})),unsubscribe(){l&&m(c({queryCacheKey:v,requestId:q}))},updateSubscriptionOptions(e){M.subscriptionOptions=e,m(d({endpointName:n,requestId:q,queryCacheKey:v,options:e}))}});if(!E&&!O&&!h){let e=u(m);e.set(v,M),M.then(()=>{e.delete(v)})}return M};return s}}({queryThunk:ev,mutationThunk:eA,infiniteQueryThunk:eS,api:t,serializeQueryArgs:u,context:C,getInternalState:eT});el(t.util,{getRunningMutationThunk:eN,getRunningMutationsThunk:eD,getRunningQueryThunk:eI,getRunningQueriesThunk:ex});let{middleware:eK,actions:e_}=function(e){let{reducerPath:t,queryThunk:r,api:n,context:s,getInternalState:u}=e,{apiUid:o}=s,l={invalidateTags:(0,i.createAction)(`${t}/invalidateTags`)},d=e=>e.type.startsWith(`${t}/`),f=[eh,ed,eg,em,ep,ey];return{middleware:r=>{let l=!1,h=u(r.dispatch),g={...e,internalState:h,refetchQuery:p,isThisApiSliceAction:d,mwApi:r},m=f.map(e=>e(g)),y=(({api:e,queryThunk:t,internalState:r,mwApi:n})=>{let i=`${e.reducerPath}/subscriptions`,s=null,u=null,{updateSubscriptionOptions:o,unsubscribeQueryResult:c}=e.internalActions,l=()=>r.currentSubscriptions,d={getSubscriptions:l,getSubscriptionCount:e=>{let t=l().get(e);return t?.size??0},isRequestSubscribed:(e,t)=>{let r=l();return!!r?.get(e)?.get(t)}};function f(e){return JSON.parse(JSON.stringify(Object.fromEntries([...e].map(([e,t])=>[e,Object.fromEntries(t)]))))}return(n,l)=>{if(s||(s=f(r.currentSubscriptions)),e.util.resetApiState.match(n))return s={},r.currentSubscriptions.clear(),u=null,[!0,!1];if(e.internalActions.internal_getRTKQSubscriptions.match(n))return[!1,d];let p=((r,n)=>{if(o.match(n)){let{queryCacheKey:e,requestId:t,options:i}=n.payload,a=r.get(e);return a?.has(t)&&a.set(t,i),!0}if(c.match(n)){let{queryCacheKey:e,requestId:t}=n.payload,i=r.get(e);return i&&i.delete(t),!0}if(e.internalActions.removeQueryResult.match(n))return r.delete(n.payload.queryCacheKey),!0;if(t.pending.match(n)){let{meta:{arg:e,requestId:t}}=n,i=v(r,e.queryCacheKey,S);return e.subscribe&&i.set(t,e.subscriptionOptions??i.get(t)??{}),!0}let i=!1;if(t.rejected.match(n)){let{meta:{condition:e,arg:t,requestId:a}}=n;if(e&&t.subscribe){let e=v(r,t.queryCacheKey,S);e.set(a,t.subscriptionOptions??e.get(a)??{}),i=!0}}return i})(r.currentSubscriptions,n),h=!0;if(p){u||(u=setTimeout(()=>{let t=f(r.currentSubscriptions),[,n]=(0,a.produceWithPatches)(s,()=>t);l.next(e.internalActions.subscriptionsUpdated(n)),s=t,u=null},500));let o="string"==typeof n.type&&!!n.type.startsWith(i),c=t.rejected.match(n)&&n.meta.condition&&!!n.meta.arg.subscribe;h=!o&&!c}return[h,!1]}})(g),b=(({reducerPath:e,context:t,api:r,refetchQuery:n,internalState:i})=>{let{removeQueryResult:a}=r.internalActions;function s(r,s){let u=r.getState()[e],o=u.queries,l=i.currentSubscriptions;t.batch(()=>{for(let e of l.keys()){let t=o[e],i=l.get(e);if(!i||!t)continue;let d=[...i.values()];(d.some(e=>!0===e[s])||d.every(e=>void 0===e[s])&&u.config[s])&&(0===i.size?r.dispatch(a({queryCacheKey:e})):t.status!==c&&r.dispatch(n(t)))}})}return(e,t)=>{M.match(e)&&s(t,"refetchOnFocus"),j.match(e)&&s(t,"refetchOnReconnect")}})(g);return e=>a=>{let u;if(!(0,i.isAction)(a))return e(a);l||(l=!0,r.dispatch(n.internalActions.middlewareRegistered(o)));let c={...r,next:e},f=r.getState(),[p,h]=y(a,c,f);if(u=p?e(a):h,r.getState()[t]&&(b(a,c,f),d(a)||s.hasRehydrationInfo(a)))for(let e of m)e(a,c,f);return u}},actions:l};function p(t){return e.api.endpoints[t.endpointName].initiate(t.originalArgs,{subscribe:!1,forceRefetch:!0})}}({reducerPath:s,context:C,queryThunk:ev,mutationThunk:eA,infiniteQueryThunk:eS,api:t,assertTagType:D,selectors:K,getRunningQueryThunk:eI,getInternalState:eT});return el(t.util,e_),el(t,{reducer:eE,middleware:eK}),{name:eb,injectEndpoint(e,r){let n=t.endpoints[e]??={};x(r)&&el(n,{name:e,select:eo(e,r),initiate:ej(e,r)},eO(ev,e)),r.type===N&&el(n,{name:e,select:ef(),initiate:eQ(e)},eO(eA,e)),I(r)&&el(n,{name:e,select:ec(e,r),initiate:ek(e,r)},eO(ev,e))}}}});ev()}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/385.d9b4f6a1.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js deleted file mode 100644 index 919be78786..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js +++ /dev/null @@ -1,4 +0,0 @@ -/*! For license information please see 3902.5873a27f.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3902"],{34231(e,t,r){r.d(t,{U:()=>a,W:()=>i});let n=(0,r(81624)._l)().querySelector("#app"),i=window.location.origin;null===n&&console.warn("App element not found");let o=(null==n?void 0:n.getAttribute("data-app-config"))??null,l=null;null!==o&&(l=JSON.parse(o));let a={baseUrl:(null==l?void 0:l.baseUrl)??"/pimcore-studio/",mercureUrl:(null==l?void 0:l.mercureUrl)??`${i}/.well-known/mercure`,wysiwyg:(null==l?void 0:l.wysiwyg)??{defaultEditorConfig:{dataObject:{},document:{}}},...l??{}}},62930(e,t,r){r.d(t,{Ay:()=>o,H$:()=>i,jg:()=>l});var n=r(35864);let i="Something went wrong.",o=class extends Error{handleApiErrorDetails(e){let t=null==e?void 0:e.errorKey,r=null==e?void 0:e.message,i=null==e?void 0:e.error;return(0,n.isEmpty)(t)||"error_element_validation_failed"!==t?(0,n.isEmpty)(t)||"error_something_generic_went_wrong"===t||"error_invalid_argument"===t?(0,n.isEmpty)(r)?(0,n.isEmpty)(i)?void 0:i:r:{errorKey:t}:{title:t,errorKey:r}}getContent(){if(!(0,n.isEmpty)(this.errorData)){var e;if(!(0,n.isEmpty)(null==(e=this.errorData)?void 0:e.message))return this.errorData.message;if("data"in this.errorData){let e=this.handleApiErrorDetails(this.errorData.data);if(!(0,n.isUndefined)(e))return e}if("error"in this.errorData&&(0,n.isString)(this.errorData.error))return this.errorData.error}return i}constructor(e){super(),this.errorData=e}};function l(e){return"object"==typeof e&&null!==e&&!(e instanceof Error)}},86818(e,t,r){r.d(t,{A:()=>n});let n=class extends Error{getContent(){return this.errorData}constructor(e){super(),this.errorData=e}}},55638(e,t,r){r.d(t,{B4:()=>u,$g:()=>l.A,Ay:()=>i.A,hD:()=>o.Ay,jg:()=>o.jg,ok:()=>s});var n,i=r(28792),o=r(62930),l=r(86818),a=r(35864);let s=e=>{if(!(0,a.isPlainObject)(e)||!(0,a.isPlainObject)(e.data))return;let t=e.data;if((0,a.isString)(t.errorKey))return t.errorKey};var u=((n={}).GENERIC_ERROR="error_something_generic_went_wrong",n.ELEMENT_EXISTS="error_element_exists",n.FOLDER_EXISTS="error_folder_exists",n.INVALID_ARGUMENT="error_invalid_argument",n.WIDGET_NAME_MISSING="error_widget_name_missing",n.WIDGET_NAME_INVALID="error_widget_name_invalid",n.VALIDATION_FAILED="error_validation_failed",n.ELEMENT_VALIDATION_FAILED="error_element_validation_failed",n.GDI_PARSING_EXCEPTION="error_gdi_parsing_exception",n)},86375(e,t,r){let n;r.d(t,{B:()=>o});var i=r(35864);let o=(n=null,{setModalInstance:e=>{n=e},showError:e=>{let{content:t,title:r}=e;if((0,i.isEmpty)(n)){console.warn("ErrorModalService: Modal instance is not set. Call setModalInstance first."),console.warn("Error title:",r),console.warn("Error content:",t);return}n.error({content:t,title:r})}})},70184(e,t,r){r.d(t,{CZ:()=>l,S5:()=>a,Tv:()=>s,lW:()=>i});var n=r(35864);let i=async e=>{if(!(0,n.isNil)(navigator.clipboard)&&!(0,n.isNil)(navigator.clipboard.writeText))try{return await navigator.clipboard.writeText(e),!0}catch(e){console.warn("Clipboard API failed, trying fallback method:",e)}return o(e)},o=e=>{try{let t=document.createElement("textarea");t.value=e,t.style.position="fixed",t.style.left="-999999px",t.style.top="-999999px",t.setAttribute("readonly",""),t.setAttribute("aria-hidden","true"),document.body.appendChild(t),t.select(),t.setSelectionRange(0,99999);let r=document.execCommand("copy");return t.remove(),r}catch(e){return console.error("Fallback clipboard method failed:",e),!1}},l=async(e,t,r)=>{await i(e)?null==t||t():null==r||r("Failed to copy to clipboard")},a=async()=>{if(!(0,n.isNil)(navigator.clipboard)&&!(0,n.isNil)(navigator.clipboard.readText))try{return await navigator.clipboard.readText()}catch(e){console.warn("Clipboard API read failed:",e)}return null},s=async(e,t)=>{let r=await a();(0,n.isNull)(r)?null==t||t("Failed to paste from clipboard"):null==e||e()}},20426(e,t,r){r.d(t,{Z:()=>n});let n=function(){for(var e=arguments.length,t=Array(e),r=0;rt.reduce((e,t)=>Array.isArray(t)?t[0](e,...t.slice(1)):t(e),e)}},73039(e,t,r){r.d(t,{M:()=>n});function n(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;if(0===e)return"0 B";let r=["B","KB","MB","GB","TB"],n=Math.floor(Math.log(e)/Math.log(1e3));return e/=Math.pow(1e3,n=Math.min(n,r.length-1)),`${e.toFixed(t)} ${r[n]}`}},276(e,t,r){r.d(t,{Yq:()=>s,fU:()=>u,r6:()=>a});var n=r(60142),i=r.n(n),o=r(55638),l=r(35864);function a(e){let{timestamp:t,lng:r,timeStyle:n,dateStyle:a,options:s}=e;if(void 0===r&&(r=i().language),null===t)return"";try{let e=new Date((0,l.isNumber)(t)?1e3*t:t);return i().format(e,"datetime",r,{timeStyle:n,dateStyle:a,...s})}catch(e){return(0,o.Ay)(new o.$g(`Failed to format date time: ${e}`)),""}}function s(e){return a({timestamp:e,dateStyle:"short"})}function u(e){return a({timestamp:e,timeStyle:"short"})}},21313(e,t,r){function n(e,t){let r=e.split(".");return r[r.length-1]=t,r.join(".")}function i(e,t){let r=document.createElement("a");r.download=t??"",r.href=e,r.click()}r.d(t,{G:()=>n,l:()=>i})},59814(e,t,r){r.d(t,{L:()=>i});var n=r(47867);let i=(e,t,r)=>{(0,n.useEffect)(()=>{let n=n=>{var i,o,l,a,s;if(void 0!==r){for(let e of document.querySelectorAll(r))if(e.contains(n.target))return}(null==(l=e.current)||null==(o=l.menu)||null==(i=o.list)?void 0:i.contains(n.target))===!0||(null==(s=e.current)||null==(a=s.nativeElement)?void 0:a.contains(n.target))!==!0&&t(n)};return document.addEventListener("mousedown",n,!0),()=>{document.removeEventListener("mousedown",n,!0)}},[e,t])}},82528(e,t,r){r.d(t,{d:()=>i});var n=r(47867);let i=(e,t)=>{let[r,i]=(0,n.useState)(e);return(0,n.useEffect)(()=>{let r=setTimeout(()=>{i(e)},t);return()=>{clearTimeout(r)}},[e,t]),r}},53636(e,t,r){r.d(t,{A:()=>a,y:()=>l});var n=r(47867),i=r(35864);let o=e=>(0,i.isString)(e)?document.getElementById(e):e.current,l=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],[r,l]=(0,n.useState)({width:0,height:0});return(0,n.useLayoutEffect)(()=>{if(t)return;let r=o(e);if(!(0,i.isNull)(r)){let{width:e,height:t}=r.getBoundingClientRect();l({width:e,height:t})}},[t]),(0,n.useEffect)(()=>{if(t)return;let r=o(e);if((0,i.isNull)(r))return;let n=new ResizeObserver(e=>{let t,r,[n]=e;if(!(0,i.isNull)(n.borderBoxSize)&&n.borderBoxSize.length>0)t=n.borderBoxSize[0].inlineSize,r=n.borderBoxSize[0].blockSize;else{let e=n.contentRect;t=e.width,r=e.height}l(e=>0!==t&&0!==r&&(t!==e.width||r!==e.height)?{width:t,height:r}:e)});return n.observe(r),()=>{n.disconnect()}},[e,t]),r},a=l},82740(e,t,r){r.d(t,{A:()=>l,g:()=>o});var n=r(35864),i=r(47867);let o=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],r=arguments.length>2&&void 0!==arguments[2]&&arguments[2],[o,l]=(0,i.useState)(r);return(0,i.useEffect)(()=>{if(r)return;let i=new IntersectionObserver(e=>{let[r]=e;r.isIntersecting?(l(!0),t||i.disconnect()):t&&l(!1)},{threshold:.1});return(0,n.isNil)(e)||null===e.current||i.observe(e.current),()=>{(0,n.isNil)(e)||null===e.current||(i.unobserve(e.current),i.disconnect())}},[e,t]),o},l=o},29722(e,t,r){r.d(t,{Z:()=>i});var n=r(47867);let i=e=>{let t=(0,n.useRef)();return(0,n.useEffect)(()=>{t.current=e},[e]),t.current}},76673(e,t,r){r.d(t,{Dq:()=>d,Kq:()=>l,Tx:()=>c,ZD:()=>s,jT:()=>a,jz:()=>u});var n=r(81427),i=r.n(n),o=r(35864);let l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];return i().sanitize(e,{ALLOWED_TAGS:t})},a=e=>{let t=document.createElement("textarea");return t.innerHTML=e,t.textContent??t.innerText??""},s=e=>{let t=document.createElement("div");return t.textContent=e,t.innerHTML},u=e=>!(0,o.isNil)(e)&&!!(0,o.isString)(e)&&""!==e.trim()&&/<\/?[a-z][\s\S]*>/i.test(e),c=e=>!(0,o.isNil)(e)&&!!(0,o.isString)(e)&&/\n/gm.test(e),d=function(e){let t,r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:window,n=r.getSelection();if(!(0,o.isNil)(n)&&!(0,o.isNil)(n.getRangeAt)&&n.rangeCount>0){(t=n.getRangeAt(0)).deleteContents();let i=r.document.createElement("div");i.innerHTML=e;let l=r.document.createDocumentFragment(),a=null,s=null;for(;!(0,o.isNil)(i.firstChild);)a=i.firstChild,s=l.appendChild(a);t.insertNode(l),(0,o.isNil)(s)||((t=t.cloneRange()).setStartAfter(s),t.collapse(!0),n.removeAllRanges(),n.addRange(t))}}},81624(e,t,r){r.d(t,{GZ:()=>o,WK:()=>l,_l:()=>a});var n=r(35864);let i=new Map,o=()=>{try{return null!==window.parent&&window.parent!==window}catch(e){return!0}},l=e=>{let t=e.document;if(t===window.parent.document)return{x:0,y:0};if(!i.has(t)){let e=Array.from(window.parent.document.querySelectorAll("iframe")).find(e=>e.contentDocument===t);i.set(t,e??null)}let r=i.get(t);if(!(0,n.isNil)(r)){let e=r.getBoundingClientRect();return{x:e.left,y:e.top}}return{x:0,y:0}},a=()=>{if(!o())return document;try{return window.parent.document}catch{return document}}},58754(e,t,r){r.d(t,{O:()=>o});var n=r(60142),i=r.n(n);function o(e){let{locale:t,lng:r}=e;r??(r=i().language);let n=r.replaceAll("_","-"),o=t.replaceAll("_","-");return new Intl.DisplayNames([n],{type:"language"}).of(o)??t}},86833(e,t,r){function n(e){return`pimcore_studio_${e}`}function i(e,t){try{localStorage.setItem(n(e),t)}catch(e){console.warn("Failed to save to localStorage:",e)}}function o(e){try{return localStorage.getItem(n(e))}catch(e){return console.warn("Failed to read from localStorage:",e),null}}function l(e){try{localStorage.removeItem(n(e))}catch(e){console.warn("Failed to remove from localStorage:",e)}}function a(e){return"true"===o(`dont_ask_again_${e}`)}function s(e,t){t?i(`dont_ask_again_${e}`,"true"):l(`dont_ask_again_${e}`)}r.d(t,{Pw:()=>s,Y_:()=>a,sc:()=>l,_S:()=>o,AP:()=>i})},32753(e,t,r){r.d(t,{Z:()=>l});var n=r(60142),i=r.n(n),o=r(35864);function l(e){let{value:t,lng:r,options:n={useGrouping:!1}}=e;return(0,o.isNil)(t)?"":(void 0===r&&(r=i().language),i().format(t,"number",r,n))}},33082(e,t,r){r.d(t,{$:()=>i});var n=r(55638);async function i(e){let{url:t,onSuccess:r,interval:i=3e3,throwOnError:o=!1}=e;await new Promise((e,l)=>{let a=async()=>{try{let s=await fetch(t);if(200===s.status){let t=await s.blob();r(t),e(void 0)}else 202===s.status?setTimeout(()=>{a()},i):o?l(Error(`Unexpected response status: ${s.status}`)):((0,n.Ay)(new n.$g(`Unexpected response status: ${s.status}`)),e(void 0))}catch(t){o?l(t):((0,n.Ay)(new n.$g("An error occurred while fetching the blob")),e(void 0))}};a()})}},84218(e,t,r){r.d(t,{G:()=>n});function n(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[""],r=[];for(let n of e)t.includes(n.value)||r.push(`${n.key}=${n.value}`);return r.join("&")}},18196(e,t,r){r.d(t,{Po:()=>i,uI:()=>o,v_:()=>l});var n=r(35864);let i=e=>null==e||("object"!=typeof e||Array.isArray(e)?"object"==typeof e&&Array.isArray(e)?0===e.length:"string"==typeof e&&0===e.trim().length:0===Object.keys(e).length),o=e=>(0,n.isString)(e)&&!(0,n.isEmpty)((0,n.trim)(e)),l=e=>(0,n.isNil)(e)?"":(0,n.isString)(e)?e:(0,n.isObject)(e)?JSON.stringify(e):String(e)},77060(e,t,r){r.d(t,{Z:()=>n});function n(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"_cb",r=Date.now().toString();try{let n=new URL(e,window.location.origin);return n.searchParams.set(t,r),n.toString()}catch{let n=e.includes("?")?"&":"?";return`${e}${n}${t}=${r}`}}},62059(e,t,r){r.d(t,{u:()=>i});var n=r(13815);function i(){return(0,n.v4)()}},25085(e,t,r){r.r(t),r.d(t,{copyToClipboardWithFeedback:()=>n.CZ,compose:()=>i.Z,buildQueryString:()=>y.G,isSet:()=>g.vM,fetchBlobWithPolling:()=>h.$,decodeHtmlEntities:()=>f.jT,pasteHtmlAtCaret:()=>f.Dq,removeLocalStorageItem:()=>b.sc,replaceFileEnding:()=>d.G,setLocalStorageItem:()=>b.AP,pasteFromClipboardWithFeedback:()=>n.Tv,useElementResize:()=>N.y,formatTime:()=>c.fU,getParentDocument:()=>m._l,isInIframe:()=>m.GZ,useDebounce:()=>M.d,useElementVisible:()=>x.g,isNonEmptyString:()=>S.uI,getLocalStorageItem:()=>b._S,formatDate:()=>c.Yq,pasteFromClipboard:()=>n.S5,formatNumber:()=>p.Z,saveFileLocal:()=>d.l,addCacheBusterToUrl:()=>_.Z,isDontAskAgainEnabled:()=>b.Y_,useCssContainer:()=>D.A,uuid:()=>E.u,toCssDimension:()=>o.x,escapeHtml:()=>f.ZD,respectLineBreak:()=>g.SN,formatRelativeTime:()=>w,copyToClipboard:()=>n.lW,toDisplayString:()=>S.v_,isHtmlContent:()=>f.jz,formatDateTime:()=>c.r6,onKeyEnterExecuteClick:()=>g.Kb,usePrevious:()=>I.Z,getIframeOffset:()=>m.WK,formatDataUnit:()=>u.M,getLanguageName:()=>v.O,formatCurrency:()=>s,hasLineBreaks:()=>f.Tx,useClickOutside:()=>A.L,isEmptyValue:()=>S.Po,setDontAskAgain:()=>b.Pw,stripTags:()=>f.Kq,useServerSideEvent:()=>j});var n=r(70184),i=r(20426),o=r(83499),l=r(60142),a=r.n(l);function s(e){let{value:t,lng:r,options:n}=e;return void 0===r&&(r=a().language),a().format(t,"currency",r,{style:"currency",currency:"EUR",...n})}var u=r(73039),c=r(276),d=r(21313),g=r(93233),f=r(76673),m=r(81624),v=r(58754),p=r(32753),h=r(33082),y=r(84218);function w(e){let{value:t,unit:r,lng:n,options:i}=e;return void 0===n&&(n=a().language),new Intl.RelativeTimeFormat(n,i).format(t,r)}var _=r(77060),E=r(62059),S=r(18196),b=r(86833),A=r(59814),D=r(28980),N=r(53636),x=r(82740),I=r(29722),T=r(47867),C=r(34231),$=r(55638);let L=C.U.mercureUrl,j=e=>{let t,{topics:r,messageHandler:n,openHandler:i}=e;function o(){void 0!==t&&t.close()}return 0===r.length&&(0,$.Ay)(new $.$g("No topics provided")),(0,T.useEffect)(()=>()=>{o()},[]),{open:function(){let e=new URL(L);r.forEach(t=>{e.searchParams.append("topic",t)}),t=new EventSource(e.toString(),{withCredentials:!0}),void 0!==n&&(t.onmessage=n),void 0!==i&&(t.onopen=i)},close:o}};var M=r(82528);void 0!==(e=r.hmd(e)).hot&&e.hot.accept()},73062(e,t,r){r.d(t,{h:()=>l});var n=r(74848);r(47867);var i=r(81427),o=r.n(i);let l=e=>{let t,{html:r,options:i,tag:l="div"}=e;return t=void 0!==i?o().sanitize(r,i):o().sanitize(r),(0,n.jsx)(l,{dangerouslySetInnerHTML:{__html:t}})}},28792(e,t,r){r.d(t,{A:()=>g});var n=r(74848);r(47867);var i=r(35864),o=r(86375),l=r(55638),a=r(21429),s=r(62930),u=r(73062);let c=e=>{let{errorContent:t}=e,{t:r}=(0,a.useTranslation)(),o=(0,i.isString)(t)?t:(0,i.isString)(t)||(0,i.isUndefined)(null==t?void 0:t.errorKey)?s.H$:r(`error.${t.errorKey}`);return(0,n.jsx)(u.h,{html:o})},d=new Set,g=(e,t)=>{let r=e.getContent();if(d.has(r))return;d.add(r),setTimeout(()=>{d.clear()},0);let a=()=>e instanceof l.hD?(0,n.jsx)(c,{errorContent:r}):r;if((0,i.isUndefined)(t)?o.B.showError({content:a(),title:"object"==typeof r?r.title:null}):t(a()),e instanceof l.$g)throw Error(r)}},83499(e,t,r){r.d(t,{x:()=>n});let n=(e,t)=>{if(null==e||""===e||0===e){if(void 0===t)return;e=t}return"number"==typeof e?`${e}px`:e}},93233(e,t,r){r.d(t,{Kb:()=>l,SN:()=>s,vM:()=>a});var n=r(74848),i=r(47867),o=r.n(i);function l(e){"Enter"===e.key&&(e.preventDefault(),e.stopPropagation(),e.currentTarget.click())}function a(e){return null!=e}function s(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1],r=e.replace(/\n+$/,"").split("\n");return t?(0,n.jsx)("div",{children:r.map((e,t)=>(0,n.jsx)("p",{children:e},`${t}-${e}`))}):(0,n.jsx)("div",{children:r.map((e,t,r)=>(0,n.jsxs)(o().Fragment,{children:[e,to});var n=r(47867);let i=(0,r(44241).createStyles)((e,t)=>{let{token:r,css:n}=e;return{container:n` - container: ${t.name} / ${t.type}; - `}}),o=e=>{let{name:t,type:r="size"}=e,o=i({name:t,type:r});return(0,n.useMemo)(()=>({styleDefinition:o}),[])}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3902.5873a27f.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js deleted file mode 100644 index fdc8797acc..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3935.0990f5be.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3935"],{24338(h,v,z){z.r(v),z.d(v,{default:()=>m});var H=z(74848);z(47867);let m=h=>(0,H.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,H.jsx)("defs",{children:(0,H.jsx)("clipPath",{id:"by_inline_svg__a",children:(0,H.jsx)("path",{fillOpacity:.67,d:"M0 0h682.6v512H0z"})})}),(0,H.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#by_inline_svg__a)",transform:"scale(.9376 .9375)",children:[(0,H.jsx)("path",{fill:"#b20000",d:"M0 0h1024v340.11H0z"}),(0,H.jsx)("path",{fill:"#429f00",d:"M0 340.11h1024V512H0z"}),(0,H.jsx)("path",{fill:"#fff",d:"M0 0h113.37v512H0z"}),(0,H.jsxs)("g",{fill:"#b20000",strokeWidth:"1pt",children:[(0,H.jsx)("path",{d:"M5.394 8.682h5.398v8.68H5.394zm16.196 0h16.196v8.68H21.59zM26.983 0h5.398v8.68h-5.397zM53.98 0h5.4v8.68h-5.4zm21.59 8.682h16.197v8.68H75.57zM80.98 0h5.398v8.68H80.98z"}),(0,H.jsx)("path",{d:"M16.196 17.36h10.798v8.68H16.196zm16.196 0H43.19v8.68H32.392zm37.785 0h10.798v8.68H70.177zm16.196 0H97.17v8.68H86.374zm-75.586 8.68h10.798v8.678H10.787zm26.999 0h10.797v8.678H37.786zm26.998 0H75.58v8.678H64.785zm26.983 0h10.797v8.678H91.767zM102.57 8.682h5.397v8.68h-5.398zM5.394 34.718h10.798v8.678H5.394zm37.786 0h10.797v8.678H43.18zm53.995 0h10.798v8.678H97.175zM10.787 60.75h10.798v8.68H10.787zm5.409 8.68h10.798v8.677H16.196zm21.59-8.68h10.797v8.68H37.786zm-5.394 8.68H43.19v8.677H32.392zM21.59 78.107h16.196v8.678H21.59z"}),(0,H.jsx)("path",{d:"M26.983 86.784h5.398v8.68h-5.397zm37.801-26.032H75.58v8.678H64.785zm5.393 8.678h10.798v8.677H70.177zm21.59-8.68h10.797v8.68H91.767zm-5.394 8.68H97.17v8.677H86.374zM75.57 78.107h16.197v8.678H75.57z"}),(0,H.jsx)("path",{d:"M80.98 86.784h5.398v8.68H80.98zm-27-8.677h5.4v8.678h-5.4zm-53.98 0h5.398v8.678H0zm107.963 0h5.398v8.678h-5.397zm-80.98 43.39h5.398v8.678h-5.397z"}),(0,H.jsx)("path",{d:"M21.59 130.174h16.196v8.678H21.59zm-5.394 8.678H43.19v8.678H16.196zm64.784-17.355h5.398v8.678H80.98z"}),(0,H.jsx)("path",{d:"M75.57 130.174h16.197v8.678H75.57zm-5.393 8.678H97.17v8.678H70.178zm5.393 43.39h26.994v8.678H75.57zM64.784 147.53h37.79v8.68h-37.79zm-53.997 0h37.79v8.68h-37.79zm5.409 43.39h16.196v8.678H16.196zm-5.409-8.678H37.78v8.678H10.788zm75.586-17.356h26.994v8.678H86.373zM80.98 190.92h16.195v8.678H80.98z"}),(0,H.jsx)("path",{d:"M21.59 199.597h5.398v8.68H21.59zm64.783 0h5.398v8.68h-5.397zM0 164.886h26.994v8.678H0zm48.588 17.356h16.196v8.678H48.588zm5.392 8.678h5.4v8.678h-5.4zm-16.194-26.034h37.79v8.678h-37.79zM59.375 34.718h10.798v8.678H59.375z"}),(0,H.jsx)("path",{d:"M48.588 43.395h16.196v8.678H48.588z"}),(0,H.jsx)("path",{d:"M43.18 52.073h10.797v8.68H43.18zm16.195 0h10.798v8.68H59.375zM0 43.395h10.798v8.678H0z"}),(0,H.jsx)("path",{d:"M5.394 52.073h10.798v8.68H5.394zm97.176-8.678h10.797v8.678H102.57zM97.175 52.073h10.798v8.68H97.175zM0 130.174h5.398v8.678H0zm107.963 0h5.398v8.678h-5.397zm-59.375 69.423h16.196v8.68H48.588z"}),(0,H.jsx)("path",{d:"M43.18 208.276h10.797v8.678H43.18zm16.195 0h10.798v8.678H59.375zm-21.589 8.678h10.797v8.678H37.786zm26.998 0H75.58v8.678H64.785z"}),(0,H.jsx)("path",{d:"M32.392 225.63H43.19v8.68H32.392zm37.785 0h10.798v8.68H70.177zm-43.194 8.68H37.78v8.678H26.984zm48.587 0h10.8v8.678h-10.8z"}),(0,H.jsx)("path",{d:"M16.196 242.987h16.196v8.678H16.196zm64.784 0h16.195v8.678H80.98z"}),(0,H.jsx)("path",{d:"M91.767 234.31h10.797v8.678H91.767zm5.408-8.68h10.798v8.68H97.175z"}),(0,H.jsx)("path",{d:"M102.57 216.954h10.797v8.678H102.57zM10.787 234.31h10.798v8.678H10.787zm-5.393-8.68h10.798v8.68H5.394z"}),(0,H.jsx)("path",{d:"M0 216.954h10.798v8.678H0zm21.59 34.711h5.398v8.678H21.59zm64.783 0h5.398v8.678h-5.397zM53.98 225.63h5.4v8.68h-5.4zm-16.194 26.035h5.398v8.678h-5.398zm32.391 0h5.398v8.678h-5.398zm-16.197 0h5.4v8.678h-5.4zm-53.98 0h5.398v8.678H0zm107.963 0h5.398v8.678h-5.397zM53.98 130.174h5.4v8.678h-5.4zM26.983 43.395h5.398v8.678h-5.397zm53.997 0h5.398v8.678H80.98zM48.588 104.14h16.196v8.68H48.588z"}),(0,H.jsx)("path",{d:"M37.786 112.818H53.98v8.68H37.787z"}),(0,H.jsx)("path",{d:"M43.18 121.497h5.397v8.678H43.18zM32.392 104.14H43.19v8.68H32.392z"}),(0,H.jsx)("path",{d:"M37.786 95.463H53.98v8.678H37.787z"}),(0,H.jsx)("path",{d:"M43.18 86.784h5.397v8.68H43.18zm16.195 8.679H75.57v8.678H59.376z"}),(0,H.jsx)("path",{d:"M64.784 86.784h5.398v8.68h-5.398zm5.393 17.356h10.798v8.68H70.177z"}),(0,H.jsx)("path",{d:"M59.375 112.818H75.57v8.68H59.376z"}),(0,H.jsx)("path",{d:"M64.784 121.497h5.398v8.678h-5.398zm21.589-17.357H97.17v8.68H86.374z"}),(0,H.jsx)("path",{d:"M91.767 95.463h16.196v8.678H91.767z"}),(0,H.jsx)("path",{d:"M102.57 104.14h10.797v8.68H102.57z"}),(0,H.jsx)("path",{d:"M91.767 112.818h16.196v8.68H91.767z"}),(0,H.jsx)("path",{d:"M97.175 121.497h5.4v8.678h-5.4zm0-34.713h5.4v8.68h-5.4zM0 104.14h10.798v8.68H0z"}),(0,H.jsx)("path",{d:"M5.394 95.463H21.59v8.678H5.394z"}),(0,H.jsx)("path",{d:"M16.196 104.14h10.798v8.68H16.196z"}),(0,H.jsx)("path",{d:"M5.394 112.818H21.59v8.68H5.394z"}),(0,H.jsx)("path",{d:"M10.787 121.497h5.398v8.678h-5.398zm0-34.713h5.398v8.68h-5.398zm-5.393 69.424h21.594v8.678H5.394zm26.998 0h21.594v8.678H32.392zm26.983 0H80.97v8.678H59.374zm26.998 0h21.594v8.678H86.373zM43.18 173.563h26.993v8.68H43.18zm-37.786 0h26.993v8.68H5.394zm75.586 0h26.993v8.68H80.98zm26.983 34.713h5.398v8.678h-5.397zM0 208.276h5.398v8.678H0zm5.394 295.051h5.398v-8.678H5.394zm16.196 0h16.196v-8.678H21.59z"}),(0,H.jsx)("path",{d:"M26.983 511.997h5.398v-8.678h-5.397zm26.997 0h5.4v-8.678h-5.4zm21.59-8.67h16.197v-8.678H75.57z"}),(0,H.jsx)("path",{d:"M80.98 511.997h5.398v-8.678H80.98zm-64.784-17.352h10.798v-8.678H16.196zm16.196 0H43.19v-8.678H32.392zm37.785 0h10.798v-8.678H70.177zm16.196 0H97.17v-8.678H86.374zm-48.587-8.682h10.797v-8.678H37.786zm26.998 0H75.58v-8.678H64.785zm26.983 0h10.797v-8.678H91.767zm10.803 17.364h5.397v-8.678h-5.398zM5.394 477.293h10.798v-8.678H5.394z"}),(0,H.jsx)("path",{d:"M43.18 477.293h10.797v-8.678H43.18zm53.995 0h10.798v-8.678H97.175zM10.787 451.26h10.798v-8.68H10.787zm5.409-8.683h10.798V433.9H16.196zm21.59 8.683h10.797v-8.68H37.786zm-5.394-8.683H43.19V433.9H32.392zm-10.802-8.682h16.196v-8.678H21.59z"}),(0,H.jsx)("path",{d:"M26.983 425.225h5.398v-8.678h-5.397zm37.801 26.035H75.58v-8.68H64.785zm5.393-8.683h10.798V433.9H70.177zm21.59 8.683h10.797v-8.68H91.767zm-5.394-8.683H97.17V433.9H86.374zm-10.803-8.682h16.197v-8.678H75.57z"}),(0,H.jsx)("path",{d:"M80.98 425.225h5.398v-8.678H80.98zm-27 8.67h5.4v-8.678h-5.4zm-53.98 0h5.398v-8.678H0zm107.963 0h5.398v-8.678h-5.397zm-80.98-43.385h5.398v-8.68h-5.397z"}),(0,H.jsx)("path",{d:"M21.59 381.84h16.196v-8.68H21.59zm-5.394-8.682H43.19v-8.68H16.196zM80.98 390.51h5.398v-8.68H80.98z"}),(0,H.jsx)("path",{d:"M75.57 381.84h16.197v-8.68H75.57zm-5.393-8.682H97.17v-8.68H70.178zm5.393-43.386h26.994v-8.68H75.57zm-10.786 34.703h37.79v-8.678h-37.79zm-53.997 0h37.79v-8.678h-37.79zm5.409-43.385h16.196v-8.682H16.196zm-5.409 8.682H37.78v-8.68H10.788zm75.586 17.352h26.994v-8.68H86.373zM80.98 321.09h16.195v-8.68H80.98zM0 347.124h26.994v-8.68H0zm48.588-17.352h16.196v-8.68H48.588zm5.392-8.682h5.4v-8.68h-5.4zm-16.194 26.034h37.79v-8.68h-37.79zm21.589 130.169h10.798v-8.678H59.375zm-10.787-8.683h16.196v-8.677H48.588zm-5.408-8.68h10.797v-8.68H43.18zm16.195 0h10.798v-8.68H59.375zM0 468.61h10.798v-8.677H0zm5.394-8.68h10.798v-8.68H5.394zm97.176 8.68h10.797v-8.677H102.57zm-5.395-8.68h10.798v-8.68H97.175zM0 381.84h5.398v-8.68H0zm107.963 0h5.398v-8.68h-5.397zM43.18 303.738h10.797v-8.68H43.18zm16.195 0h10.798v-8.68H59.375zm-21.589-8.682h10.797v-8.68H37.786zm26.998 0H75.58v-8.68H64.785zm-32.392-8.682H43.19v-8.68H32.392zm37.785 0h10.798v-8.68H70.177z"}),(0,H.jsx)("path",{d:"M26.983 277.704H37.78v-8.68H26.984zm48.587 0h10.8v-8.68h-10.8zm-59.374-8.682h16.196v-8.68H16.196zm64.784 0h16.195v-8.68H80.98zm10.787 8.682h10.797v-8.68H91.767z"}),(0,H.jsx)("path",{d:"M97.175 286.374h10.798v-8.68H97.175zm5.395 8.682h10.797v-8.68H102.57zm-91.783-17.352h10.798v-8.68H10.787z"}),(0,H.jsx)("path",{d:"M5.394 286.374h10.798v-8.68H5.394zM0 295.056h10.798v-8.68H0zm21.59-34.713h5.398v-8.678H21.59zm32.39 26.031h5.4v-8.68h-5.4zm0 95.466h5.4v-8.68h-5.4zm-26.997 86.77h5.398v-8.677h-5.397zm53.997 0h5.398v-8.677H80.98zm-32.392-60.737h16.196v-8.678H48.588zm-10.802-8.683H53.98v-8.677H37.787zm5.394-8.68h5.397v-8.68H43.18zm-10.788 17.363H43.19v-8.678H32.392z"}),(0,H.jsx)("path",{d:"M37.786 416.543H53.98v-8.678H37.787zm5.394 8.682h5.397v-8.678H43.18zm16.195-8.682H75.57v-8.678H59.376zm5.409 8.682h5.398v-8.678h-5.398z"}),(0,H.jsx)("path",{d:"M70.177 407.873h10.798v-8.678H70.177zm-10.802-8.683H75.57v-8.677H59.376zm5.409-8.68h5.398v-8.68h-5.398zm21.589 17.363H97.17v-8.678H86.374z"}),(0,H.jsx)("path",{d:"M91.767 416.543h16.196v-8.678H91.767z"}),(0,H.jsx)("path",{d:"M102.57 407.873h10.797v-8.678H102.57zm-10.803-8.683h16.196v-8.677H91.767zm5.408-8.68h5.4v-8.68h-5.4zm0 34.715h5.4v-8.678h-5.4zM0 407.873h10.798v-8.678H0z"}),(0,H.jsx)("path",{d:"M5.394 416.543H21.59v-8.678H5.394z"}),(0,H.jsx)("path",{d:"M16.196 407.873h10.798v-8.678H16.196zM5.394 399.19H21.59v-8.677H5.394zm5.393-8.68h5.398v-8.68h-5.398zm0 34.715h5.398v-8.678h-5.398zm-5.393-69.419h21.594v-8.68H5.394zm26.998 0h21.594v-8.68H32.392zm26.983 0H80.97v-8.68H59.374zm26.998 0h21.594v-8.68H86.373zM43.18 338.442h26.993v-8.68H43.18zm-37.786 0h26.993v-8.68H5.394zm75.586 0h26.993v-8.68H80.98zm26.983-34.704h5.398v-8.68h-5.397zM0 303.738h5.398v-8.68H0zm48.588-43.395h5.398v8.68h-5.398zm10.787 0h5.398v8.68h-5.398zm0-17.356h5.398v8.678h-5.398zm-10.787 0h5.398v8.678h-5.398zM10.787 477.293h10.798v8.68H10.787zm75.586-164.885h5.398v-8.68h-5.397zm-64.783 0h5.398v-8.68H21.59zm26.995-8.674H64.78v8.677H48.585z"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3935.0990f5be.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js deleted file mode 100644 index c20bb50e46..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 3941.9ceed713.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["3941"],{52116(r,s,t){t.r(s),t.d(s,{default:()=>l});var x=t(74848);t(47867);let l=r=>(0,x.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...r,children:[(0,x.jsx)("defs",{children:(0,x.jsx)("clipPath",{id:"dm_inline_svg__a",children:(0,x.jsx)("path",{fillOpacity:.67,d:"M-85.01 0h682.67v512H-85.01z"})})}),(0,x.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#dm_inline_svg__a)",transform:"translate(79.7)scale(.94)",children:[(0,x.jsx)("path",{fill:"#108c00",d:"M-258.27 0h1027.5v512h-1027.5z"}),(0,x.jsx)("path",{fill:"#ffd600",d:"M-260 178.16H772.6v50.162H-260z"}),(0,x.jsx)("path",{fill:"#ffd600",d:"M181.08 0h48.432v512H181.08z"}),(0,x.jsx)("path",{d:"M227.78 0h48.432v512H227.78z"}),(0,x.jsx)("path",{d:"M-260 226.59H772.6v50.162H-260z"}),(0,x.jsx)("path",{fill:"#fff",d:"M-260 276.76H772.6v50.162H-260z"}),(0,x.jsx)("path",{fill:"#fff",d:"M276.22 0h48.432v512H276.22z"}),(0,x.jsx)("rect",{width:273.75,height:275.03,x:-394.56,y:-393.87,fill:"#e72910",ry:137.51,transform:"scale(-1)"}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M250.51 136.92c0-.258 5.61-15.997 5.61-15.997l5.098 15.74s17.08.515 17.08.257-13.51 10.32-13.51 10.32 6.373 18.062 6.118 17.546-14.787-10.837-14.787-10.837-14.787 10.32-14.532 10.32 5.608-17.03 5.608-17.03l-13.256-10.063 16.57-.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M251.274 137.72c0-.224 4.857-13.855 4.857-13.855l4.417 13.63s14.794.448 14.794.225-11.7 8.938-11.7 8.938 5.52 15.643 5.298 15.196c-.22-.447-12.807-9.386-12.807-9.386s-12.805 8.94-12.584 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M253.328 139.987c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.747 5.154-6.747 5.154 3.182 9.02 3.055 8.762-7.384-5.41-7.384-5.41-7.385 5.153-7.257 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.275-.13z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M356.875 211.8c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.375 18.062 6.12 17.546-14.787-10.837-14.787-10.837-14.786 10.32-14.53 10.32 5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M357.638 212.6c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.795.448 14.795.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M359.692 214.867c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.748 5.154-6.748 5.154 3.182 9.02 3.055 8.762-7.384-5.41-7.384-5.41-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.275-.13z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M325.875 330.65c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.375 18.062 6.12 17.546-14.787-10.837-14.787-10.837S316.697 358 316.953 358s5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M326.638 331.45c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.795.448 14.795.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M328.692 333.717c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.748 5.154-6.748 5.154 3.182 9.02 3.055 8.762-7.384-5.41-7.384-5.41-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025 8.275-.13z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M177.167 330.65c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.374 18.062 6.12 17.546c-.256-.516-14.788-10.837-14.788-10.837S167.99 358 168.245 358s5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M177.93 331.45c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.794.448 14.794.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.482-8.716 14.352-.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M179.984 333.717c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.746 5.154-6.746 5.154 3.182 9.02 3.055 8.762c-.128-.257-7.385-5.41-7.385-5.41s-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M150.01 208.74c0-.258 5.608-15.997 5.608-15.997l5.1 15.74s17.08.515 17.08.257-13.512 10.32-13.512 10.32 6.374 18.062 6.12 17.546c-.256-.516-14.788-10.837-14.788-10.837s-14.786 10.32-14.53 10.32 5.607-17.03 5.607-17.03l-13.256-10.063 16.57-.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M150.773 209.54c0-.224 4.857-13.855 4.857-13.855l4.416 13.63s14.794.448 14.794.225-11.702 8.938-11.702 8.938 5.52 15.643 5.3 15.196c-.222-.447-12.808-9.386-12.808-9.386s-12.806 8.94-12.585 8.94 4.857-14.75 4.857-14.75l-11.48-8.716 14.35-.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M152.827 211.807c0-.13 2.8-7.99 2.8-7.99l2.547 7.86s8.53.26 8.53.13-6.747 5.154-6.747 5.154 3.182 9.02 3.055 8.762-7.384-5.41-7.384-5.41-7.384 5.153-7.256 5.153 2.8-8.504 2.8-8.504l-6.62-5.025z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M324.615 174.14c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546 14.787 10.837 14.787 10.837 14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M323.852 173.34c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M321.798 171.073c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762 7.384 5.41 7.384 5.41 7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025-8.275.13z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M367.315 290.28c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546 14.787 10.837 14.787 10.837 14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M366.552 289.48c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M364.498 287.213c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762 7.384 5.41 7.384 5.41 7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M261.425 375.25c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546 14.787 10.837 14.787 10.837 14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M260.662 374.45c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M258.608 372.183c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762 7.384 5.41 7.384 5.41 7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M161.935 290.28c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546 14.787 10.837 14.787 10.837 14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M161.172 289.48c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M159.118 287.213c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762 7.384 5.41 7.384 5.41 7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025z"})]}),(0,x.jsxs)("g",{strokeWidth:"1pt",children:[(0,x.jsx)("path",{d:"M198.655 175.85c0 .258-5.608 15.997-5.608 15.997l-5.1-15.74s-17.08-.515-17.08-.257 13.512-10.32 13.512-10.32-6.375-18.062-6.12-17.546 14.787 10.837 14.787 10.837 14.786-10.32 14.53-10.32-5.607 17.03-5.607 17.03l13.256 10.063-16.57.258z"}),(0,x.jsx)("path",{fill:"#ffe700",d:"M197.892 175.05c0 .224-4.857 13.855-4.857 13.855l-4.416-13.63s-14.795-.448-14.795-.225 11.702-8.938 11.702-8.938-5.52-15.643-5.3-15.196c.222.447 12.808 9.386 12.808 9.386s12.806-8.94 12.585-8.94-4.857 14.75-4.857 14.75l11.48 8.716-14.35.223z"}),(0,x.jsx)("path",{fill:"#108c00",d:"M195.838 172.783c0 .13-2.8 7.99-2.8 7.99l-2.547-7.86s-8.53-.26-8.53-.13 6.748-5.154 6.748-5.154-3.182-9.02-3.055-8.762 7.384 5.41 7.384 5.41 7.384-5.153 7.256-5.153-2.8 8.504-2.8 8.504l6.62 5.025z"})]}),(0,x.jsxs)("g",{transform:"translate(-250.6 359.43)scale(1.04)",children:[(0,x.jsxs)("g",{fill:"#009200",stroke:"#000",strokeWidth:2.5,transform:"matrix(.16 -.02 0 .18 429.84 -215.63)",children:[(0,x.jsx)("ellipse",{cx:680.21,cy:586.13,rx:30.805,ry:189.82,transform:"matrix(1.4 0 0 1 -534.29 263.72)"}),(0,x.jsx)("ellipse",{cx:680.21,cy:586.13,rx:30.805,ry:189.82,transform:"matrix(1.5 0 0 1 -547.22 267.05)"}),(0,x.jsx)("ellipse",{cx:680.21,cy:586.13,rx:30.805,ry:189.82,transform:"matrix(1.2 0 0 1.1 -364.93 214.1)"})]}),(0,x.jsxs)("g",{stroke:"#000",transform:"translate(72.86 -9.8)",children:[(0,x.jsx)("path",{fill:"#a95600",strokeWidth:.501,d:"M388.528-52.952c5.994-.333 3.33-3.33 6.327-4.995 2.998-1.666 7.327-.666 8.659 1.332s.333 3.996 1.998 3.996 46.912-2.535 48.576-.87 1.998 4.996.333 6.327c-1.665 1.332-58.9 2.868-60.898 1.536s-4.995-6.993-4.995-7.326z"}),(0,x.jsx)("path",{fill:"#ff0",strokeWidth:3.853,d:"M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z",transform:"matrix(.15 0 0 .1 340.42 -81.69)"}),(0,x.jsx)("path",{fill:"#ff0",strokeWidth:3.853,d:"M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z",transform:"matrix(.15 0 0 .1 344.42 -81.64)"}),(0,x.jsx)("path",{fill:"#ff0",strokeWidth:3.853,d:"M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z",transform:"matrix(.15 0 0 .1 348.71 -81.8)"}),(0,x.jsx)("path",{fill:"#ff0",strokeWidth:3.853,d:"M529.59 405.46c0 39.983 45.562 27.88 46.81 61.25-.724 35.407-76.706 3.466-78.635-61.25 1.93-64.716 75.107-97.93 76.705-61.01 1.246 30.685-44.88 21.027-44.88 61.01z",transform:"matrix(.15 0 0 .1 352.71 -81.75)"}),(0,x.jsx)("ellipse",{cx:478.38,cy:-41.086,fill:"#a95600",strokeWidth:.399,rx:3.534,ry:3.403,transform:"matrix(1.1 .02 -.02 1.15 -75.57 4.68)"})]}),(0,x.jsxs)("g",{fill:"#009200",stroke:"#000",strokeWidth:2.5,transform:"rotate(-5.8 688.37 -625.22)",children:[(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.17 0 0 .32 369.8 -361.65)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.17 0 0 .32 364.04 -362.7)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.17 0 0 .32 360.64 -370.55)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .35 369.3 -399.35)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 377.41 -379.07)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 373.22 -382.21)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 367.99 -386.66)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 363.01 -389.54)"})]}),(0,x.jsx)("path",{fill:"#804bff",stroke:"#000",strokeWidth:.4562,d:"M482.57-141.072s-11.702 10.055-10.09 36.95c1.775 27.045 26.52 39.53 26.52 39.53s6.192-7.742 5.231-29.476c-2.097-31.772-13.868-45.705-13.868-45.705z"}),(0,x.jsxs)("g",{fill:"#009200",stroke:"#000",strokeWidth:2.5,transform:"rotate(4.47 180.98 769.89)",children:[(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.17 0 0 .32 369.8 -361.65)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.17 0 0 .32 364.04 -362.7)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.17 0 0 .32 360.64 -370.55)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .35 369.3 -399.35)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 377.41 -379.07)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 373.22 -382.21)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 367.99 -386.66)"}),(0,x.jsx)("ellipse",{cx:427.11,cy:905,rx:20.814,ry:24.144,transform:"matrix(.16 0 0 .33 363.01 -389.54)"})]}),(0,x.jsx)("ellipse",{cx:624.42,cy:606.11,fill:"#c90000",stroke:"#000",strokeWidth:"1pt",rx:58.28,ry:186.49,transform:"matrix(.16 -.06 .06 .15 369.61 -145.05)"}),(0,x.jsxs)("g",{fill:"#009200",stroke:"#000",transform:"rotate(1.02 242.4 -1957.8)",children:[(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.464,rx:10.823,ry:12.905,transform:"matrix(.4 0 0 .3 445.07 -230.53)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.546,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 457.17 -235.92)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.546,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 452 -235.92)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.56,rx:10.823,ry:12.905,transform:"matrix(.37 0 0 .27 449.48 -233.46)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.56,rx:10.823,ry:12.905,transform:"matrix(.37 0 0 .27 448.95 -237.93)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.546,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 447.01 -238.85)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.562,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 448.08 -241.58)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.464,rx:10.823,ry:12.905,transform:"matrix(.4 0 0 .3 432.77 -243.48)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.56,rx:10.823,ry:12.905,transform:"matrix(.37 0 0 .27 445.92 -243.48)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.562,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 444.16 -246.97)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.546,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 436.14 -243.17)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.562,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 437.42 -243.88)"}),(0,x.jsx)("ellipse",{cx:218.13,cy:356.75,strokeWidth:1.562,rx:10.823,ry:12.905,transform:"matrix(.35 0 0 .3 438.99 -247.02)"})]}),(0,x.jsxs)("g",{fill:"#009200",stroke:"#000",transform:"matrix(.18 0 0 .2 420.99 -216.8)",children:[(0,x.jsx)("ellipse",{cx:528.68,cy:564.48,strokeWidth:2.545,rx:67.438,ry:205.64,transform:"matrix(.98 -.3 .36 .87 -245.81 324.4)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:2.5,rx:13.321,ry:40.796,transform:"rotate(-23.38 630.52 660.85)"}),(0,x.jsx)("path",{strokeWidth:1.533,d:"M139.87 643.99c0 57.677-18.755 86.17-34.55 110.32 7.516-32.47 12.904-52.637 12.904-110.31 0-57.677 29.58-85.337 40.38-101.99-4.187 16.652-18.734 44.312-18.734 101.99z",transform:"matrix(1.88 -.46 .95 1.18 -352.26 -10.02)"}),(0,x.jsx)("path",{strokeWidth:1.533,d:"M139.87 643.99c0 57.677-18.755 86.17-34.55 110.32 7.516-32.47 12.904-52.637 12.904-110.31 0-57.677 29.58-85.337 40.38-101.99-4.187 16.652-18.734 44.312-18.734 101.99z",transform:"matrix(1.88 -.46 .95 1.18 -348.42 44.06)"}),(0,x.jsx)("path",{strokeWidth:1.533,d:"M139.87 643.99c0 57.677-18.755 86.17-34.55 110.32 7.516-32.47 12.904-52.637 12.904-110.31 0-57.677 29.58-85.337 40.38-101.99-4.187 16.652-18.734 44.312-18.734 101.99z",transform:"matrix(1.87 -.5 .98 1.16 -361.92 105.78)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:1.389,rx:13.321,ry:40.796,transform:"matrix(1.8 -.4 .7 1.64 -915.63 -221.01)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:1.64,rx:13.321,ry:40.796,transform:"matrix(1.63 -.23 .54 1.35 -739.49 -91.78)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:1.64,rx:13.321,ry:40.796,transform:"matrix(1.63 -.2 .5 1.36 -750.62 -91.83)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:2.097,rx:13.321,ry:40.796,transform:"matrix(1.3 -.2 .47 1 -531.06 47.57)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:2.097,rx:13.321,ry:40.796,transform:"matrix(1.33 -.13 .4 1.03 -517.87 12.21)"}),(0,x.jsx)("path",{strokeWidth:2.086,d:"M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61s-14.986-27.604-14.986-61.61",transform:"matrix(1.03 -.5 .46 1.18 12.77 -14.52)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:2.097,rx:13.321,ry:40.796,transform:"matrix(1.33 -.13 .4 1.03 -519.53 -34.41)"}),(0,x.jsx)("ellipse",{cx:528.68,cy:646.07,strokeWidth:2.097,rx:13.321,ry:40.796,transform:"matrix(1.33 -.1 .38 1.04 -533.98 -40.12)"}),(0,x.jsx)("path",{strokeWidth:2.88,d:"M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61s-14.986-27.604-14.986-61.61",transform:"matrix(.67 -.47 .46 .8 39.49 143.28)"}),(0,x.jsx)("path",{strokeWidth:2.88,d:"M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61s-14.986-27.604-14.986-61.61",transform:"matrix(.67 -.47 .46 .8 51.14 125.79)"}),(0,x.jsx)("path",{strokeWidth:2.086,d:"M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61s-14.986-27.604-14.986-61.61",transform:"matrix(.94 -.64 .64 1.1 -40.2 -10.74)"}),(0,x.jsx)("path",{strokeWidth:2.742,d:"M145.7 569.47c0 34.006-6.712 61.61-14.985 61.61s-14.986-27.604-14.986-61.61",transform:"matrix(.67 -.52 .46 .88 68.63 71.18)"})]}),(0,x.jsxs)("g",{fill:"#804bff",stroke:"#000",strokeWidth:2.5,children:[(0,x.jsx)("path",{d:"M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z",transform:"matrix(.16 0 0 .22 457.95 -214.27)"}),(0,x.jsx)("path",{d:"M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z",transform:"matrix(.16 0 0 .22 456.55 -220.15)"}),(0,x.jsx)("path",{d:"M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z",transform:"matrix(.16 0 0 .22 454.77 -225.77)"}),(0,x.jsx)("path",{d:"M276.27 345.41c-12.278 9.174.41 25.144 12.022 30.68 13.06 7.67 86.603 58.184 136.32 11.998-40.795.833-118.66-63.183-148.34-42.678z",transform:"matrix(.16 0 0 .22 450.9 -232.2)"})]}),(0,x.jsxs)("g",{transform:"rotate(1.02 -589.59 681.63)",children:[(0,x.jsx)("path",{fill:"#804bff",stroke:"#000",strokeWidth:2.5,d:"M211.17 247.3c21.773-12.065 56.618-9.75 79.734 11.165 19.36 16.943 45.307 75.194 70.322 92.834-20.227.018-31.298-5.77-42.24-15.18-28.768 15.44-38.128 16.723-63.89 15.63-35.882-1.333-62.46-17.653-68.18-40.603-6.165-21.804 4.926-52.498 24.254-63.847z",transform:"matrix(.2 -.04 .05 .18 407.8 -213.64)"}),(0,x.jsx)("ellipse",{cx:287.23,cy:323.04,fill:"red",stroke:"#000",strokeWidth:2.5,rx:14.154,ry:14.986,transform:"matrix(.25 0 0 .13 401.82 -215.18)"}),(0,x.jsx)("ellipse",{cx:204.58,cy:348.26,fill:"#ff0",stroke:"#000",strokeWidth:2.5,rx:23.254,ry:15.895,transform:"matrix(.2 -.08 .07 .17 398.66 -208.06)"}),(0,x.jsx)("circle",{cx:283.9,cy:333.86,r:5.828,transform:"matrix(.2 0 0 .2 411.29 -233.74)"}),(0,x.jsx)("path",{fill:"#ff0",stroke:"#000",strokeWidth:6.56,d:"M516.8 260.29c4.425 18.107-6.674 43.083-33.133 52.61-26.775 13.172-46.08 41.83-55.64 88.016-47.245-103.27-23.108-148.28 20.6-160.35 37.376-14.363 60.42-13.37 68.173 19.72z",transform:"matrix(.1 0 0 .08 417.85 -191.49)"}),(0,x.jsx)("circle",{cx:198.98,cy:362.39,r:4.71,transform:"matrix(.2 0 0 .2 418.69 -234.98)"})]})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/3941.9ceed713.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js deleted file mode 100644 index f412fed71d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4028.d910fe41.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4028"],{18231(l,h,z){z.r(h),z.d(h,{default:()=>e});var M=z(74848);z(47867);let e=l=>(0,M.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,M.jsx)("desc",{children:"The United States of America flag, produced by Daniel McRae"}),(0,M.jsx)("defs",{children:(0,M.jsx)("clipPath",{id:"us_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,M.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,M.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#us_inline_svg__a)",transform:"scale(.9375)",children:[(0,M.jsxs)("g",{strokeWidth:"1pt",children:[(0,M.jsx)("g",{fill:"#bd3d44",children:(0,M.jsx)("path",{d:"M0 0h972.81v39.385H0zM0 78.77h972.81v39.385H0zM0 157.54h972.81v39.385H0zM0 236.31h972.81v39.385H0zM0 315.08h972.81v39.385H0zM0 393.85h972.81v39.385H0zM0 472.62h972.81v39.385H0z"})}),(0,M.jsx)("g",{fill:"#fff",children:(0,M.jsx)("path",{d:"M0 39.385h972.81V78.77H0zM0 118.155h972.81v39.385H0zM0 196.925h972.81v39.385H0zM0 275.695h972.81v39.385H0zM0 354.465h972.81v39.385H0zM0 433.235h972.81v39.385H0z"})})]}),(0,M.jsx)("path",{fill:"#192f5d",d:"M0 0h389.12v275.69H0z"}),(0,M.jsx)("g",{fill:"#fff",children:(0,M.jsx)("path",{d:"m32.427 11.8 3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 11.8l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 11.8l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 11.8l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 11.8l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 11.8l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 39.37l3.54 10.896h11.458L70.583 57l3.542 10.897-9.27-6.734-9.269 6.734L59.126 57l-9.269-6.734h11.458zM129.707 39.37l3.54 10.896h11.457L135.435 57l3.54 10.897-9.268-6.734-9.27 6.734L123.978 57l-9.27-6.734h11.458zM194.562 39.37l3.54 10.896h11.458L200.29 57l3.541 10.897-9.27-6.734-9.268 6.734L188.833 57l-9.269-6.734h11.457zM259.417 39.37l3.54 10.896h11.458L265.145 57l3.541 10.897-9.269-6.734-9.27 6.734L253.69 57l-9.27-6.734h11.458zM324.269 39.37l3.54 10.896h11.457L329.997 57l3.54 10.897-9.268-6.734-9.27 6.734L318.54 57l-9.27-6.734h11.458zM32.427 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 66.939l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 66.939l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 94.508l3.54 10.897h11.458l-9.27 6.734 3.542 10.897-9.27-6.734-9.269 6.734 3.54-10.897-9.269-6.734h11.458zM129.707 94.508l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM194.562 94.508l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.27-6.734-9.268 6.734 3.54-10.897-9.269-6.734h11.457zM259.417 94.508l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.269-6.734-9.27 6.734 3.542-10.897-9.27-6.734h11.458zM324.269 94.508l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM32.427 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 122.078l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 122.078l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 149.647l3.54 10.897h11.458l-9.27 6.734 3.542 10.897-9.27-6.734-9.269 6.734 3.54-10.897-9.269-6.734h11.458zM129.707 149.647l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM194.562 149.647l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.27-6.734-9.268 6.734 3.54-10.897-9.269-6.734h11.457zM259.417 149.647l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.269-6.734-9.27 6.734 3.542-10.897-9.27-6.734h11.458zM324.269 149.647l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM32.427 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 177.217l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 177.217l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 204.786l3.54 10.897h11.458l-9.27 6.734 3.542 10.897-9.27-6.734-9.269 6.734 3.54-10.897-9.269-6.734h11.458zM129.707 204.786l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM194.562 204.786l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.27-6.734-9.268 6.734 3.54-10.897-9.269-6.734h11.457zM259.417 204.786l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.269-6.734-9.27 6.734 3.542-10.897-9.27-6.734h11.458zM324.269 204.786l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM32.427 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 232.356l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 232.356l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458z"})})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4028.d910fe41.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js deleted file mode 100644 index 6cab4d2889..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4034.ebc0a070.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4034"],{90073(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"pr_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-37.298 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#pr_inline_svg__a)",transform:"translate(34.967)scale(.9375)",children:[(0,e.jsx)("path",{fill:"#ed0000",d:"M-37.298 0h768v512h-768z"}),(0,e.jsx)("path",{fill:"#fff",d:"M-37.298 102.4h768v102.4h-768zM-37.298 307.2h768v102.4h-768z"}),(0,e.jsx)("path",{fill:"#0050f0",d:"m-37.298 0 440.69 255.67-440.69 255.34z"}),(0,e.jsx)("path",{fill:"#fff",d:"m156.45 325.47-47.447-35.432-47.214 35.78 17.56-58.144-47.128-35.904 58.305-.5L108.61 173.3l18.472 57.835 58.305.077-46.886 36.243 17.947 58.016z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4034.ebc0a070.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js deleted file mode 100644 index 9436d792fa..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4062.57e047db.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4062"],{82797(e,s,l){l.r(s),l.d(s,{default:()=>d});var i=l(74848);l(47867);let d=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,i.jsx)("path",{fill:"#fff",d:"M0 0h640.01v479.997H0z"}),(0,i.jsx)("path",{fill:"#00bf13",d:"M0 0h320.006v479.997H0z"}),(0,i.jsxs)("g",{fill:"#f21930",children:[(0,i.jsx)("path",{d:"M445.896 308.66c-40.313 72.507-129.227 98.27-199.877 59.356S149.612 240.18 188.526 169.53c38.914-70.648 127.83-96.406 198.48-57.49 26.117 14.385 44.713 33.297 59.338 60.236-5.337-7.34-11.296-13.4-19.118-19.55-48.19-37.886-118.046-29.525-155.93 18.664-37.887 48.19-29.526 118.046 18.662 155.93 48.19 37.888 118.045 29.526 155.93-18.663z"}),(0,i.jsx)("path",{d:"m411.372 321.598-35.185-49.87-58.022 18.922 36.55-48.875-35.923-49.332 57.78 19.662 35.82-49.412-.852 61.028 58.062 18.795-58.295 18.046"})]})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4062.57e047db.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js deleted file mode 100644 index 68533c6c05..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4083.82e017ef.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4083"],{74979(e,t,n){n.d(t,{$$:()=>b,Es:()=>h,KG:()=>w,Ks:()=>x,Ll:()=>o,Re:()=>k,Sw:()=>l,TW:()=>d,WQ:()=>_,YG:()=>y,YN:()=>g,ZC:()=>S,_q:()=>m,ag:()=>Y,e_:()=>j,jn:()=>u,kx:()=>E,l6:()=>c,lk:()=>v,sb:()=>a,wz:()=>f,xZ:()=>s,zk:()=>i});var r=n(47867);function u(){for(var e=arguments.length,t=Array(e),n=0;ne=>{t.forEach(t=>t(e))},t)}let l="u">typeof window&&void 0!==window.document&&void 0!==window.document.createElement;function c(e){let t=Object.prototype.toString.call(e);return"[object Window]"===t||"[object global]"===t}function o(e){return"nodeType"in e}function i(e){var t,n;return e?c(e)?e:o(e)&&null!=(t=null==(n=e.ownerDocument)?void 0:n.defaultView)?t:window:window}function f(e){let{Document:t}=i(e);return e instanceof t}function a(e){return!c(e)&&e instanceof i(e).HTMLElement}function s(e){return e instanceof i(e).SVGElement}function d(e){return e?c(e)?e.document:o(e)?f(e)?e:a(e)||s(e)?e.ownerDocument:document:document:document}let h=l?r.useLayoutEffect:r.useEffect;function m(e){let t=(0,r.useRef)(e);return h(()=>{t.current=e}),(0,r.useCallback)(function(){for(var e=arguments.length,n=Array(e),r=0;r{e.current=setInterval(t,n)},[]),(0,r.useCallback)(()=>{null!==e.current&&(clearInterval(e.current),e.current=null)},[])]}function g(e,t){void 0===t&&(t=[e]);let n=(0,r.useRef)(e);return h(()=>{n.current!==e&&(n.current=e)},t),n}function w(e,t){let n=(0,r.useRef)();return(0,r.useMemo)(()=>{let t=e(n.current);return n.current=t,t},[...t])}function v(e){let t=m(e),n=(0,r.useRef)(null),u=(0,r.useCallback)(e=>{e!==n.current&&(null==t||t(e,n.current)),n.current=e},[]);return[n,u]}function S(e){let t=(0,r.useRef)();return(0,r.useEffect)(()=>{t.current=e},[e]),t.current}let p={};function y(e,t){return(0,r.useMemo)(()=>{if(t)return t;let n=null==p[e]?0:p[e]+1;return p[e]=n,e+"-"+n},[e,t])}function T(e){return function(t){for(var n=arguments.length,r=Array(n>1?n-1:0),u=1;u{for(let[r,u]of Object.entries(n)){let n=t[r];null!=n&&(t[r]=n+e*u)}return t},{...t})}}let _=T(1),k=T(-1);function E(e){if(!e)return!1;let{KeyboardEvent:t}=i(e.target);return t&&e instanceof t}function j(e){if(function(e){if(!e)return!1;let{TouchEvent:t}=i(e.target);return t&&e instanceof t}(e)){if(e.touches&&e.touches.length){let{clientX:t,clientY:n}=e.touches[0];return{x:t,y:n}}else if(e.changedTouches&&e.changedTouches.length){let{clientX:t,clientY:n}=e.changedTouches[0];return{x:t,y:n}}}return"clientX"in e&&"clientY"in e?{x:e.clientX,y:e.clientY}:null}let x=Object.freeze({Translate:{toString(e){if(!e)return;let{x:t,y:n}=e;return"translate3d("+(t?Math.round(t):0)+"px, "+(n?Math.round(n):0)+"px, 0)"}},Scale:{toString(e){if(!e)return;let{scaleX:t,scaleY:n}=e;return"scaleX("+t+") scaleY("+n+")"}},Transform:{toString(e){if(e)return[x.Translate.toString(e),x.Scale.toString(e)].join(" ")}},Transition:{toString(e){let{property:t,duration:n,easing:r}=e;return t+" "+n+"ms "+r}}}),R="a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";function Y(e){return e.matches(R)?e:e.querySelector(R)}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4083.82e017ef.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js deleted file mode 100644 index e0578feba6..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4084.a80198a1.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4084"],{55023(t,s,r){r.r(s),r.d(s,{default:()=>o});var e=r(74848);r(47867);let o=t=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,e.jsx)("path",{fill:"#006",d:"M0 0h640v480H0z"}),(0,e.jsxs)("g",{fillRule:"evenodd",children:[(0,e.jsx)("path",{fill:"#fff",d:"M408.303 192.25h214.293l-.255 153.441c1.782 61.682-36.423 99.957-106.72 117.214-49.926-12.476-107.489-38.28-107.573-115.464l.255-155.193z"}),(0,e.jsx)("path",{fill:"#00a2bd",stroke:"#000",strokeWidth:"1pt",d:"M44.069 22.713h169.3l-.201 120.79c1.408 48.558-28.777 78.69-84.317 92.276-39.437-9.82-84.916-30.13-84.982-90.9l.201-122.17z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"#a53d08",d:"M616.248 361.329c-7.45 56.418-50.63 81.069-100.65 94.152-44.276-11.951-91.91-31.032-101.143-93.869l201.798-.283z"})]}),(0,e.jsxs)("g",{fillRule:"evenodd",stroke:"#000",children:[(0,e.jsx)("path",{fill:"#ffc6b5",strokeLinejoin:"round",strokeWidth:1.25,d:"M155.77 197.17c.094.094.658 9.295-4.319 14.929 4.413 1.409 7.418-.282 8.826-2.066s1.879-4.037 1.879-4.037 1.22-.751 1.408-2.441c.094-2.348-.939-2.348-1.784-2.817l.187-5.258s-5.07-3.099-6.197 1.69z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"#ff9a08",strokeLinecap:"round",strokeWidth:"1pt",d:"m155.49 210.32-1.503-1.221",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"})]}),(0,e.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M141.64 69.393s.117 5.625-.235 6.211c-.351.586-3.554 2.07-3.554 2.07l2.734 5.82s7.695-1.093 7.734-1.093 3.321-8.711 3.321-8.711-1.719-2.89-1.289-5.898c-2.578-8.165-8.594 1.64-8.711 1.601z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"#005121",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:1.25,d:"M131.45 203.09s4.319 4.319 9.295 3.756c11.268-1.22 14.554-11.267 18.028-11.361s5.634 6.103 8.92 5.352c-2.817-5.164-5.821-16.619-5.352-24.694.47-8.075.47-42.065.47-42.065s-5.634-17.558-8.263-20.469c2.629-2.817 4.413-7.793 4.319-13.239s0-11.455 0-11.455 1.314-1.502 1.221-5.727c-.094-4.226-7.136-10.328-8.075-10.047s-9.765 7.887-10.516 9.67c-.752 1.785-1.784-6.478-.094-7.23 1.69-.75-3.944-1.22-7.512 3.005-3.568 4.226-2.535 124.69-2.441 124.5z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"m467.518 224.122 39.97.144-.286-18.531 14.562.144.142 18.387h39.828l.142 14.365-39.97.144-.32 169.41-14.202.09-.182-169.641-39.693.143.009-14.652z"}),(0,e.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M122.03 81.959s-2.258-.398-3.984.133 2.656-19.586 2.656-21.246c1.527-.73 9.162-2.125 8.963-7.503-.531-3.253-11.818.2-11.619 4.316-.73 2.058-8.099 23.038-6.639 29.943 2.589 2.058 7.37 1.66 10.623 1.129z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:.625,d:"M124.22 53.211s-.664 3.718 2.722 4.25",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.375,d:"M129.2 53.144c-.133.066-4.382 2.722-4.382 2.722M128.94 54.804l-2.988 2.191M127.81 52.348l-3.32 1.992",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"#ff9a08",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"m95.49 163.56 30.14 31.267c10.422-11.455 3.193-54.272-10.515-62.158-1.643 5.07-4.437 11.149-7.407 13.109-6.534 4.453-22.546 9.659-17.194 12.993 1.22-1.69 4.413-3.286 5.915.47 1.784 5.915-6.666 6.291-6.666 6.291s-5.352-.658-6.291-6.104 7.972-10.417 8.732-10.797c.751-.282 12.394-3.38 14.366-13.709 2.441-10.141 4.976-8.638 5.446-8.826 15.21 1.502 25.163 28.732 25.727 47.886.563 19.154-7.793 31.83-9.296 32.675s-36.243-41.219-36.243-41.219z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m117.46 134.45.187 56.43M114.08 135.48l.187 51.267M110.42 142.9l.187 40.75M107.42 145.81l.188 33.709M104.22 147.32v28.45M100.75 149.57v22.534M97.744 151.35v17.276",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#ffdf00",strokeLinecap:"round",strokeWidth:1.25,d:"m95.021 167.13 31.079 35.58M127.6 144.69s14.085 30.798 1.033 56.149M91.359 160.65s1.033-2.723 2.347-1.596M88.918 152.76s-5.634 4.976-2.535 8.169",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"M141.03 82.999s.47 4.32-.469 7.605 3.568 12.394 1.877 14.272M142.91 113.7l11.831-.094",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:"1pt",d:"M138.59 118.49c.094.187 1.408 6.197 1.032 10.328M142.44 120.65c-.375 1.221-5.258 15.117-5.07 15.68M145.35 114.36c.094.282-.375 8.826-1.69 10.047M151.36 113.7s7.7 17.84 7.606 24.882 2.629 21.314.845 27.605M153.8 138.4s-.564 13.239-6.103 18.403c-5.54 5.165 13.239 19.906 13.239 19.906",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:1.25,d:"M153.61 175.86s2.066 18.215 5.54 19.53M136.62 145.34c.094.188-1.878 12.3-.282 14.272 1.597 1.972 14.836 20.469 14.272 39.624M146.85 193.51s-.376 11.549-11.08 12.488",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:1.25,d:"M143.66 185.91s3.193 12.018-7.699 19.624",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:"1pt",d:"M147.88 156.89s12.3 12.77 12.864 18.404M151.45 113.98s2.16 9.107 1.315 10.704",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M113.51 132.69s-1.317-2.305-1.152-4.857-.412-6.502 7.82-9.713c5.021-5.103 10.618-8.149 13.663-9.712 4.445-2.881 7.327-2.223 9.96-3.211 1.729-1.975 1.646-6.338 3.457-10.206 1.811-3.869 5.021-11.853 8.478-10.618 3.458 1.235.741 11.606-.576 15.228s-2.469 7.408-4.774 9.63-12.758 6.256-14.816 6.997-11.441 2.88-13.828 6.174c-2.388 3.292-2.223 8.149-8.232 10.289z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"M112.85 125.78c.247-.082 4.115-1.317 5.926 2.141",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:1.25,d:"M141.91 55.2s-1.74 2.837-2.222 4.561c-.374 1.29-1.58-.087-2.218 2.708l1.035.181c-.412.823-.546 2.214-.628 2.543-.083.33-.662 1.834-.576 2.964.046.583 1.152 3.128 10.124-.741s-2.881-14.85-5.515-12.216z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"#c59200",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.261,d:"M140.9 55.563c.921-.494 7.457-1.07 6.368 11.688 1.257-.165 2.011-.33 2.764.905.754 1.235.671 2.717 2.011 2.717s1.509-.247 1.844-1.235c.334-.988 5.53 1.152 6.869-3.457-.232-.897-3.183-2.305-3.519-3.951.755-2.305-.335-9.795-9.885-10.207-4.944-.082-5.948 1.975-6.452 3.54z",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:"1pt",d:"M140.42 58.115c.083.082 2.964.906 3.293 2.305",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fillRule:"evenodd",d:"M531.733 244.091c0 .526-.402.951-.898.951s-.897-.425-.897-.95.401-.951.897-.951.898.425.898.95"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.25,d:"M154.38 61.542s-1.055 5.078 3.594 7.07M150.94 62.167s1.722.078 1.722 1.68-1.414 1.796-1.296 3.086 2.425 1.718 2.503 2.812M143.4 52.792c.078 0 8.243.938 7.774 2.969s-1.758 1.21-1.719 2.968 3.281.704 3.281.704.196-1.485 1.563-1.368.742 1.68 2.617 1.64",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:1.25,d:"m138.41 65.458 1.936-.064",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:"1pt",d:"M143.45 73.696s.72 3.36-2 3.04",transform:"matrix(1.2096 0 0 1.2172 359.74 169.23)"}),(0,e.jsxs)("g",{strokeWidth:"1pt",children:[(0,e.jsx)("path",{fill:"#fff",d:"M0 .063v28.44l343.648 225.93h43.256v-28.438L43.256.064zm386.904 0v28.439L43.256 254.433H0v-28.439L343.648.063z"}),(0,e.jsx)("path",{fill:"#fff",d:"M161.21.063v254.37h64.484V.063zM0 84.853v84.79h386.904v-84.79z"}),(0,e.jsx)("path",{fill:"#c00",d:"M0 101.811v50.874h386.904v-50.874zM174.107.063v254.37h38.69V.063zM0 254.433l128.968-84.79h28.837l-128.968 84.79zM0 .063l128.968 84.79h-28.837L0 19.023zm229.099 84.79L358.067.063h28.837l-128.968 84.79zm157.805 169.58-128.968-84.79h28.837l100.131 65.831z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4084.a80198a1.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js deleted file mode 100644 index 10c61458d7..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4120.afd6653a.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4120"],{60283(i,e,s){s.r(e),s.d(e,{default:()=>_});var l=s(74848);s(47867);let _=i=>(0,l.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 213.333 160",...i,children:[(0,l.jsx)("defs",{children:(0,l.jsxs)("g",{id:"ge_inline_svg__c",children:[(0,l.jsx)("clipPath",{id:"ge_inline_svg__a",children:(0,l.jsx)("path",{d:"M-109 104a104 104 0 0 0 0-208h218a104 104 0 0 0 0 208z"})}),(0,l.jsx)("path",{id:"ge_inline_svg__b",d:"M-55 74a55 55 0 0 1 110 0V-74a55 55 0 0 1-110 0z",clipPath:"url(#ge_inline_svg__a)"}),(0,l.jsx)("use",{xlinkHref:"#ge_inline_svg__b",width:300,height:200,transform:"rotate(90)"})]})}),(0,l.jsx)("path",{fill:"#fff",d:"M0 0h213.33v160H0z"}),(0,l.jsx)("path",{fill:"#fff",d:"M6.385 13.192h200.56v133.71H6.385z"}),(0,l.jsx)("path",{fill:"red",d:"M93.296 13.192v53.484H6.386v26.742h86.91v53.484h26.742V93.418h86.91V66.676h-86.91V13.192z"}),(0,l.jsx)("use",{xlinkHref:"#ge_inline_svg__c",width:300,height:200,fill:"red",transform:"matrix(.67 0 0 .67 49.47 39.57)"}),(0,l.jsx)("use",{xlinkHref:"#ge_inline_svg__c",width:300,height:200,fill:"red",transform:"matrix(.67 0 0 .67 163.86 120.53)"}),(0,l.jsx)("use",{xlinkHref:"#ge_inline_svg__c",width:300,height:200,fill:"red",transform:"matrix(.67 0 0 .67 163.86 39.57)"}),(0,l.jsx)("use",{xlinkHref:"#ge_inline_svg__c",width:300,height:200,fill:"red",transform:"matrix(.67 0 0 .67 49.47 120.53)"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4120.afd6653a.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js deleted file mode 100644 index 9df4feeeb3..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4154.2617dd8b.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4154"],{58337(e,i,l){l.r(i),l.d(i,{default:()=>t});var s=l(74848);l(47867);let t=e=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"ma_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M0-48h640v480H0z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#ma_inline_svg__a)",transform:"translate(0 48)",children:[(0,s.jsx)("path",{fill:"#eb0013",d:"M0-128h640v640H0z"}),(0,s.jsx)("path",{fill:"#0b5035",d:"M371.01 263.71 204.26 380.32l42.967-131.57 22.318 16.163-16.012 48.063 108.75-78.369 8.73 29.105zm17.105-76.157 58.208 195.62-109.3-81.567 22.482-15.934 38.898 29.187-40.653-128.4 30.368 1.093zm-68.999-38.843 204.88.241-111.65 80.529-8.933-26.067 41.515-27.793-135.44 1.912 9.63-28.821zm-57.93 52.3L326.066 5.1l44.65 134.69-27.56.35-16.44-51.593-41.16 130.61-24.37-18.15zm33.248 70.407-165.29-121.32 139.53-1.079-8.139 26.324-51.786-.209 110.45 78.67-24.761 17.614z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4154.2617dd8b.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js deleted file mode 100644 index ced71a9db7..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4160.1311e5ef.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4160"],{77043(i,s,l){l.r(s),l.d(s,{default:()=>t});var e=l(74848);l(47867);let t=i=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,e.jsx)("path",{fill:"#00267f",d:"M0 0h640v480H0z"}),(0,e.jsx)("path",{fill:"#ffc726",d:"M213.333 0h213.333v480H213.333z"}),(0,e.jsx)("path",{id:"bb_inline_svg__a",d:"M319.77 135.527c-6.933 18.907-14 38.587-29.12 53.654 4.694-1.546 12.907-2.933 18.187-2.8v79.52l-22.453 3.334c-.8-.08-1.067-1.333-1.067-3.04-2.16-24.693-8-45.44-14.72-66.907-.48-2.933-8.987-14.133-2.427-12.16.8.107 9.574 3.68 8.187 1.974-11.947-12.373-29.413-21.28-46.373-23.92-1.494-.373-2.374.374-1.04 2.107 22.506 34.64 41.333 75.52 41.173 124.027 8.747 0 29.947-5.173 38.72-5.173v56.107h11.067l2.533-156.693z"}),(0,e.jsx)("use",{xlinkHref:"#bb_inline_svg__a",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 639.54 0)"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4160.1311e5ef.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js deleted file mode 100644 index c94831ad6e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4195.4fb2f2ba.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4195"],{59710(e,t,l){l.r(t),l.d(t,{default:()=>o});var s=l(74848);l(47867);let o=e=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h639.984v480H0z"}),(0,s.jsx)("path",{fill:"#0b7226",d:"M0 0h214.301v480H0z"}),(0,s.jsx)("path",{fill:"#bc0000",d:"M426.91 0h213.074v480H426.909z"})]}),(0,s.jsx)("path",{fill:"#9c4314",fillRule:"evenodd",d:"M213.125 258.71c.077-.1 3.468-6.038 3.066-5.081 1.562 1.197 4.415.063 2.345-2.63.504-1.089 1.14-1.919 1.643-3.008 1.138-2.132-1.299-3.05-2.263-1.576-.59 1.128-1.159 1.8-1.748 2.929-3.071-1.458-3.273 1.97-1.804 2.57-.652.922-1.762 2.443-2.413 3.366q.586 1.714 1.174 3.43"}),(0,s.jsx)("path",{fill:"#9c4314",fillRule:"evenodd",d:"M212.722 257.388c-.101-.075-6.086-3.382-5.124-2.994 1.175-1.579 0-4.415-2.662-2.307-1.096-.489-1.936-1.113-3.032-1.601-2.147-1.107-3.03 1.342-1.544 2.285 1.138.574 1.816 1.133 2.954 1.707-1.414 3.09 2.017 3.244 2.595 1.767.932.639 4.544 2.732 5.476 3.37 1.137-.406.2-1.82 1.337-2.227M234.369 293.669c.02-.124.174-6.96.276-5.928 1.943.309 3.911-2.047.809-3.429-.076-1.197.088-2.23.012-3.428-.014-2.416-2.595-2.063-2.74-.308.019 1.274-.162 2.135-.143 3.409-3.394.18-1.939 3.291-.361 3.118-.134 1.122-.386 2.988-.52 4.11z"}),(0,s.jsx)("path",{fill:"#9c4314",fillRule:"evenodd",d:"M233.384 292.694c-.124-.018-6.961-.075-5.93-.192.28-1.948-2.103-3.882-3.44-.76-1.197.092-2.232-.057-3.429.036-2.415.049-2.025 2.624-.269 2.745 1.274-.038 2.137.13 3.41.093.23 3.392 3.32 1.892 3.124.318l5.756.602c.806-.9-.027-1.942.778-2.842"}),(0,s.jsx)("path",{fill:"#42b2f3",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M304.128 316.122s2.345 3.166 3.4 3.283c3.283.234 29.312 0 29.312 0 0-.04.938-.547.938-.586.86-1.095.782-1.72 1.642-2.815 1.368-1.367 3.322-1.797 4.69-3.165 5.862-1.407 11.138-2.814 17.001-3.752-.469-3.478-3.986-2.736-5.862-4.104-.586-.547-.47-1.094-.118-1.641l13.015-5.98v-1.407c-9.224 1.094-17.744 2.892-27.671 3.283L306.59 313.19z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.5278124999999999,d:"M210.444 253.863h-.118c.588 0 .12.039 0-1.408"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#286726",strokeWidth:1.8309375,d:"M210.95 255.428c-1.759-6.214-4.6-11.66-11.233-13.27-1.244-.282-2.127-3.834-.055-3.668 1.173.469.024-.223 1.196.246 1.161.415 2.968-.5 2.222-2.476 0-.235-2.213-4.164-2.213-4.281-.415-.45.355-2.969 2.345-1.642.938.616 1.876 2.06 3.228 2.345.498-.083.827-1.627.744-2.823 0-.117.117-4.052.117-4.052-.471-2.371 1.627-3.582 3.311-1.807.118.586-.013.592.104 1.178.386.785.855.907 1.406.117l2.228-2.228c1.323-.491 2.149-.983 2.228 1.76 0 0-1.825 2.287-2.688 3.116-.45.663-1.424 1.565.269 2.062.117 0 2.419.332 2.419.332 1.575.655 1.741 2.388.58 2.545 0 0-1.228 1.433-3.383 2.628-.663.532-1.21 1.173-.629 1.904 1.244.484.848.02 2.969.02 1.79-.414 1.624 3.969-1.61 3.672-.967.231-2.244.135-2.768 1.682-.235 1.204-.293 3.517-.293 4.103-.2 2.79.21 6.662.21 6.779.234 1.993-.47 1.29-.704 1.758zM230.14 291.185c-.228-.292-6.104-6.73-12.89-6.007-1.267.153-3.298-2.892-1.29-3.436 1.261.046.279-.134 1.54-.088 1.067-.749-.862-3.051-1.733-2.252-.079-.22-2.327.482-3.28.288-2.949-.283-4.237-3.578-2.083-4.828 1.34.512 3.873.56 5.243.37 1.353-.412.726-1.644-.585-1.828-1.866-.276-9.395-2.11-8.73-3.024-1.244-2.073-.01-3.671 2.175-2.57 1.803 1.093 2.013.48 1.574-.336-.534-1.55-1.048-1.179-1.126-2.524-.133-.867.148-1.65 1.427-1.106.54-.454 1.427 2.792 4.78 1.561.62.519 1.147-3.512 3.473-2.898 1.744.54.553 2.352.893 4.912.28 1.686 1.964 1.299 2.195.423-.364-3.873 3.422-3.941 3.855-2.632.36.956.683 3.562.225 6.012-.249 1.245-.051 3.716.742 4.21 1.334.034.473-.268 1.39-1.648 1.545-.994 3.947 2.606 1.136 4.414-2.966.64 1.68 11.938 2.072 12.57-.43.462-.94-.104-1.003.417z"}),(0,s.jsx)("path",{fill:"#9c4314",fillRule:"evenodd",d:"M266.563 321.4c0-.126-.92-6.901-.656-5.897 1.968 0 3.542-2.635.262-3.514-.262-1.17-.263-2.216-.525-3.387-.393-2.384-2.887-1.632-2.755.125.218 1.255.175 2.133.393 3.388-3.324.71-1.4 3.555.132 3.137.043 1.129.087 3.011.13 4.14z"}),(0,s.jsx)("path",{fill:"#9c4314",fillRule:"evenodd",d:"M266.44 320.603c-.125.002-6.887 1.017-5.887.74-.028-1.968-2.685-3.505-3.517-.212-1.167.278-2.213.293-3.38.572-2.378.427-1.59 2.91.164 2.753 1.252-.236 2.131-.205 3.383-.441.757 3.313 3.574 1.349 3.134-.176l5.78-.307c.655-1.015-.331-1.913.324-2.929"}),(0,s.jsx)("path",{fill:"#33b1e9",fillRule:"evenodd",stroke:"#000",strokeWidth:1.03875,d:"M264.134 283.553c16.55 9.769 20.803 8.351 20.112 4.023.793 0 .964.69 3.314-1.04-.328 6.4 6.641 10.078 10.89 9.307 3.833.247 3.339 5.317 3.339 5.317.233 5.188-1.512 7.285-1.28 12.473-.057 0-.116-.619-.174-.619-4.716-1.121-14.008-1.253-17.488-2.004 15.951-10.883-12.268-11.18-14.792-11.551-1.906-.248-.546-2.102.567-2.597 8.78-1.731-8.253-10.046-7.81-11.035-1.04-.619.073-1.113.073-1.113 1.166-.758 2.084-.403 3.25-1.16z"}),(0,s.jsx)("path",{fill:"#983d25",fillRule:"evenodd",stroke:"#000",strokeWidth:1.4840625,d:"M305.46 291.831a5.18 5.18 0 0 0-5.194 5.194c-.866 3.957-.743 9.522 0 14.839a5.18 5.18 0 0 0 5.193 5.194c11.46 1.236 23.784.865 34.378 0a5.18 5.18 0 0 0 5.193-5.194c1.36-4.699.99-9.645 0-14.839a5.18 5.18 0 0 0-5.193-5.194c-11.46-.494-23.166-1.113-34.378 0z"}),(0,s.jsx)("path",{fill:"#268728",fillRule:"evenodd",stroke:"#000003",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"m266.76 150.569-7.844 6.793c-3.222 1.424-6.724 3.198-4.202 10.785-1.471 9.735 6.373 11.275 13.236 9.244 1.144-2.52 1.507-4.261 2.651-6.782-3.035-.467-4.658.596-7.413.41-1.891-.304-2.031-1.728-1.33-2.662 2.964-1.47 5.648-2.871 8.613-4.342-.07-.443-.14-.116-.21-.56-2.451 1.26-4.202 1.68-6.793 2.731-2.055.724-2.638-1.914-1.821-3.082 0 0 5.322-7.633 5.322-7.703.446-1.605.137-4.308-.21-4.832z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.9894999999999999,d:"M288.682 284.03a4.11 4.11 0 1 1-8.22 0 4.11 4.11 0 0 1 8.22 0z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.98930018,d:"M269.192 299.53a3.875 3.875 0 1 1-7.75 0 3.875 3.875 0 0 1 7.75 0z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.9795975,d:"M365.475 308.21a3.875 3.875 0 1 1-7.75 0 3.875 3.875 0 0 1 7.75 0z"}),(0,s.jsx)("path",{fill:"#ba4600",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:.5278124999999999,d:"M267.125 155.753c.093 2.33.156 5.256.156 6.147-.099-2.179-.862-3.924-1.145-4.781.34-.56.89-1.366.989-1.366z"}),(0,s.jsx)("path",{fill:"#973100",fillRule:"evenodd",stroke:"#000",strokeWidth:1.42480124,d:"M305.119 312.908a3.875 3.875 0 1 1-7.75 0 3.875 3.875 0 0 1 7.75 0zM345.984 312.908a3.875 3.875 0 1 1-7.749 0 3.875 3.875 0 0 1 7.75 0zM345.984 294.12a3.875 3.875 0 1 1-7.749 0 3.875 3.875 0 0 1 7.75 0zM305.353 294.12a3.875 3.875 0 1 1-7.75 0 3.875 3.875 0 0 1 7.75 0z"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#286726",strokeWidth:1.8309375,d:"M267.144 323.51c-.229-.292-1.969-5.225-11.804-5.44-1.384-.08-2.261.317-5.063.124-1.624.133-.988-1.802-.344-2.498 1.066-.749-3.8-.384-5.473-.186-1.687-.097-2.822-.384-3.774-.577-2.95-.283-4.676-2.354-2.52-3.604.902-.887 4.572.122 5.94-.067 1.355-.412 1.165-2.694-.147-2.878-1.866-.276-10.006-.886-9.341-1.8-1.245-2.073-.884-3.146 2.35-2.745 1.802 1.094 1.75-.307 1.311-1.123-.534-1.55-3.496-1.79-3.575-3.135-.482-3.228 1.636-3.662 2.914-3.117.54-.455-2.42-2.98.932-4.21.833-.261 2.546-.058 3.124 3.003 1.744.54.539-2.008 2.904-3.044 2.028-.85-.135 9.081 2.283 8.992 2.083.848 1.673-5.428 3.417-4.207 3.77-.967 1.946 12.045 3.586 11.26 2.724 2.382 3.009-2.142 3.802-1.65 1.334.036 2.222.083 1.478 3.075-.554 2.328.275 2.868.698 3.802 2.547 5.614 6.37 5.561 7.646 8.145.41 3.82-.281 1.359-.344 1.88z"}),(0,s.jsx)("path",{fill:"#009400",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M314.244 332.144c-4.703 3.863-9.588 6.365-11.377 10.386 2.143-.288 2.971-.646 4.57-.444 1.732-3.875 7.178-5.944 10.393-9.077zM326.816 332.556c4.252 3.928 9.523 6.173 11.376 10.323-2.143-.288-3.037-.581-4.314-.251-1.732-3.875-7.434-6.137-10.649-9.27 1.196-.289 2.391-.513 3.587-.802z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M323.61 333.353c5.152 3.092 7.208 5.317 10.382 9.274-1.525.092-3.664.784-4.447 1.237-3.834-4.987-6.802-6.76-10.016-9.892 1.195-.289 2.886-.33 4.08-.619z"}),(0,s.jsx)("path",{fill:"#ffba00",fillRule:"evenodd",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M274.963 165.944c-2.064.568-2.955 2.308-3.143 3.931-7.604 5.326-2.077 15.811 4.975 13.633-5.218-7.813 0-12.227 5.803-9.488 1.759 1.29 2.985 3.98 3.15 3.814 1.105-2.394 5.473-4.478 5.473-4.478s3.519.473 4.153-1.803c.401-1.456 3.64-7.482 3.64-7.482l-11.275-2.321-7.793-.166-4.146 1.824c-.552.884-.284 1.651-.837 2.535z"}),(0,s.jsx)("path",{fill:"#d40000",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M319.4 333.606c5.153 3.092 7.515 5.987 10.69 9.944-1.397.412-1.87 2.71-2.652 3.164-2.474-4.988-6.564-9.238-10.892-13.484 1.195-.289 1.659.664 2.854.376z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M317.46 333.006c-5.153 3.092-6.952 5.06-10.126 9.018 1.525.092 3.407 1.04 4.19 1.493 3.834-4.987 6.801-6.76 10.016-9.892-1.195-.289-2.886-.33-4.08-.618z"}),(0,s.jsx)("path",{fill:"#d40000",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M321.66 333.25c-5.153 3.092-7.323 6.178-10.497 10.135 2.554 1.83 1.932 1.941 2.458 2.973 2.474-4.987 7.915-9.109 12.243-13.354-1.195-.289-3.01.536-4.205.247z"}),(0,s.jsx)("path",{fill:"#973000",fillRule:"evenodd",stroke:"#000",strokeWidth:2.243,d:"M203.69 472.45c0 5.002-7.22 9.058-16.127 9.058s-16.127-4.056-16.127-9.058 7.22-9.058 16.127-9.058 16.127 4.056 16.127 9.058z",transform:"matrix(.41114 .13432 -.1235 .44716 238.466 46.832)"}),(0,s.jsx)("path",{fill:"#008d2b",fillRule:"evenodd",stroke:"#005e00",strokeWidth:.99,d:"M313.288 326.763c-3.715 2.669-8.967 6.234-12.681 8.903-.763.651 2.575 1.334 3.798.736 3.92-2.692 5.983-4.455 9.904-7.147l2.242-1.251c-1.6-.115-1.663-1.127-3.263-1.241z"}),(0,s.jsx)("path",{fill:"#973000",fillRule:"evenodd",stroke:"#000",strokeWidth:2.549,d:"M203.69 472.45c0 5.002-7.22 9.058-16.127 9.058s-16.127-4.056-16.127-9.058 7.22-9.058 16.127-9.058 16.127 4.056 16.127 9.058z",transform:"matrix(.3491 -.13705 .16417 .36723 137.816 164.088)"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0396874999999999,d:"M351.172 285.635c.194-10.192 9.13-1.269 12.638-5.468 8.245-9.717 8.952-10.457 16.236-9.403 19.522 7.672-.855 25.412-20.808 17.334-2.19-1.205-5.876-1.26-8.066-2.464z"}),(0,s.jsxs)("g",{fill:"#6d390b",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M424.792 252.051c-.26 1.14-1.592 1.744-2.975 1.351s-2.291-1.634-2.03-2.773 1.592-1.744 2.974-1.351 2.291 1.634 2.03 2.773"}),(0,s.jsx)("path",{d:"m424.134 251.534 4.75 4.12-1.251 1.442-4.75-4.12z"})]}),(0,s.jsx)("path",{fill:"#6d390b",fillRule:"evenodd",d:"m395.319 266.622 1.037 1.453 3.583-3.122-1.037-1.453z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:1.4840625,d:"M305.46 291.7c6.059 1.855 10.51 23.867 16.446 25.845M311.272 291.578c6.06 1.855 10.387 23.867 16.323 25.845M316.963 291.335c6.059 1.855 10.51 23.99 16.446 25.967"}),(0,s.jsx)("path",{fill:"#973000",fillRule:"evenodd",stroke:"#000",strokeWidth:2.243,d:"M203.69 472.45c0 5.002-7.22 9.058-16.127 9.058s-16.127-4.056-16.127-9.058 7.22-9.058 16.127-9.058 16.127 4.056 16.127 9.058z",transform:"matrix(.3491 -.13705 .16417 .36723 226.353 148.76)"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.9450000000000001,d:"M398.169 271.675c.303 1.175-.223 2.7-2.29 3.234s-4.01-.272-4.313-1.447c-.304-1.176.894-2.865 2.962-3.4s3.337.438 3.64 1.613z"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#286026",strokeWidth:1.8309375,d:"M307.175 328.01c-3.066.621-10.054 2.136-13.1 8.243-.553 1.15-5.15 2.04-4.528.057.719-1.039.975-1.129 1.694-2.167-.056-1.302-3.035-.917-2.83.247-.229-.052-1.67.227-2.346.925-1.827 2.333-4.946 2.229-4.838-.26 1.153-.852 1.737-1.671 2.315-2.926.382-1.363-2.283-1.85-3.145-.845-1.824.955-2.969 2.322-5.14 3.38-2.417.87-4.74-.68-2.635-1.926 1.893-.93.316-3.08-.608-3.149-1.594-.385-8.123.717-9.299.059-.92-.121-2.6-2.54-.63-2.971 1.783-.582 4.761.653 5.53-2.834.771-5.871 10.088 3.004 8.575.553-3.413-5.047 2.397-6.233 4.15-2.796.716 1.552 4.263 3.853 5.292 3.42 1.934.215-3.588-4.888.796-5.72 1 .212 2.784.288 4.014 1.994.915.88 1.11 4.507 4.532 4.808.748-1.104.03-.542-.638-2.059-.006-1.837 3.032-1.687 4.33 1.422 1.286 2.374 8.074.762 14.285.904 1.99-.325 5.192 1.424-5.777 1.64z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M391.288 271.45c1.092 1.679 1.07 4.339-1.884 6.261s-6.41 1.683-7.504.004-.108-4.951 2.845-6.873 5.45-1.071 6.542.608z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.9450000000000001,d:"M393.406 264.494c1.023.653 1.677 2.127.528 3.927-1.148 1.8-3.118 2.534-4.141 1.88-1.023-.652-1.3-2.705-.15-4.505 1.148-1.8 2.74-1.955 3.763-1.302z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.9450000000000001,d:"M396.519 267.55c.662 1.017.648 2.63-1.142 3.795s-3.886 1.02-4.548.003-.066-3.001 1.725-4.166c1.789-1.165 3.302-.649 3.965.369z"}),(0,s.jsx)("path",{fill:"#d90000",fillRule:"evenodd",stroke:"#000",strokeWidth:.7106250000000001,d:"M403.175 261.522c.498.765.488 1.979-.859 2.855-1.346.877-2.924.767-3.422.002-.498-.766-.05-2.258 1.297-3.135s2.485-.488 2.984.278z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M318.088 323.331c-2.635.31-4.134.472-4.64 2.378-.281 1.294-.057 2.985.168 4.437 0 1.668 2.105 2.773 4.556 3.249h4.218c1.776 0 5.062-1.739 5.062-3.407.263-.943.253-2.465.253-3.495 0-2.805-1.98-2.978-4.456-3.24z"}),(0,s.jsx)("path",{fill:"#008f00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.633125,d:"M411.734 290.19c-.29-9.734-2.856-23.842 9.094-28.68 1.542-.402 2.099.467 1.574 1.749z"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.633125,d:"M427.175 270.372c2.127-4.001 7.385-5.01 9.24-4.885-3.67 3.75-7.338 12.943-9.399 15.951-2.968 5.112-11.624 8.739-16.817 11.748 5.812-7.914 11.164-14.9 16.977-22.814z"}),(0,s.jsx)("path",{fill:"#009400",fillRule:"evenodd",stroke:"#000",strokeWidth:.5278124999999999,d:"M318.313 323.275s-2.639.47-2.697.47-2.052 1.289-2.052 1.289-.41 2.52-.41 2.58.468 2.872.468 2.872l1.232 1.7 3.224 1.113z"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.633125,d:"M410.16 293.172c.349-.35 6.84-30.95 17.663-34.575 1.748 2.273.905 7.215.206 9.838-3.323 11.425-11.398 19.257-17.87 24.737z"}),(0,s.jsxs)("g",{fill:"#6d390b",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M434.054 255.517c-.467 1.07.245 2.348 1.59 2.854s2.814.047 3.281-1.024-.244-2.349-1.59-2.854-2.814-.047-3.28 1.024"}),(0,s.jsx)("path",{d:"m434.89 255.491-6.268.492.15 1.904 6.268-.493z"})]}),(0,s.jsxs)("g",{fill:"#6d390b",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M407.649 286.838c-.673 1.081-2.228 1.212-3.473.29s-1.71-2.543-1.038-3.625 2.227-1.211 3.473-.29 1.71 2.543 1.038 3.625"}),(0,s.jsx)("path",{d:"m407.175 286.057 3.28 6.032-1.775 1.026-3.28-6.031z"})]}),(0,s.jsxs)("g",{fill:"#6d390b",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M415.414 295.28c-.583-1.132.103-2.534 1.532-3.13s3.06-.164 3.644.968-.102 2.534-1.531 3.13-3.061.164-3.645-.968"}),(0,s.jsx)("path",{d:"m416.327 295.274-6.86-.278.03-2.051 6.86.278z"})]}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.3284375,d:"M405.453 302.285c6.65-3.604 2.483 1.452 2.07 4.22-1.965 6.83-3.802 6.874-6.112 8.038-3.446 3.143-14.487 1.618-19.617 2.913 6.43-4.67 17.229-10.502 23.66-15.171zM395.497 300.7c2.776-2.203 3.232-7.068 3.047-8.754-2.516 3.594-8.957 7.543-11.021 9.621-3.534 3.043-5.704 11.183-7.607 16.12 5.41-5.822 10.172-11.164 15.58-16.987z"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.633125,d:"M360.922 328.647c4.349-1.276 11.76 1.937 12.97 3.35-5.247 0-13.75 3.643-17.342 4.273-5.73 1.45-21.62-7.515-27.31-8.795 9.498-.479 21.96 2.549 31.682 1.172z"}),(0,s.jsx)("path",{fill:"#00602b",fillRule:"evenodd",stroke:"#004500",strokeWidth:.99,d:"M327.819 327.728c3.714 2.67 8.966 6.235 12.68 8.904.763.65-2.574 1.334-3.798.736-3.92-2.692-5.983-4.455-9.903-7.147l-2.243-1.252c1.6-.115 1.663-1.126 3.264-1.24z"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.5590625,d:"M379.372 317.463c.446-.169 18.153-24.073 29.16-23.085.661 2.623-2.017 6.561-3.661 8.556-7.408 8.584-17.624 12.265-25.5 14.529z"}),(0,s.jsxs)("g",{fill:"#6d390b",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M377.195 313.952c-1.103.637-2.536.02-3.2-1.38s-.31-3.05.793-3.687 2.535-.019 3.2 1.38.31 3.05-.793 3.687"}),(0,s.jsx)("path",{d:"m377.145 313.04.051 6.866-2.05.068-.051-6.865z"})]}),(0,s.jsxs)("g",{fill:"#6d390b",fillRule:"evenodd",children:[(0,s.jsx)("path",{d:"M381.821 323.761c.074-1.271 1.378-2.129 2.912-1.915s2.718 1.418 2.644 2.689-1.378 2.129-2.912 1.915-2.718-1.417-2.644-2.689"}),(0,s.jsx)("path",{d:"m382.61 324.22-5.764-3.73 1.07-1.75 5.763 3.73z"})]}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.73875,d:"M231.613 236.94c.518-.773 1.714-1.282 3.203-.447 1.49.834 2.12 2.296 1.6 3.07-.518.775-2.193 1.008-3.683.174s-1.64-2.022-1.12-2.796z"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.3284375,d:"M357.894 325.46c7.312-1.934 6.876-5.455 10.293-8.534-7.909-1.158-14.218 1.641-17.596 3.5-5.337 3.442-6.718 7.178-11.342 9.751 7.883-1.006 11.434-2.138 18.644-4.718z"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.5590625,d:"M334.044 327.597c20.914 1.578 17.58-6.913 40.5-6.703-.338 2.684-4.714 6.052-6.972 7.312-10.023 5.3-26.493 7.783-33.529-.609z"}),(0,s.jsx)("path",{fill:"#d40000",fillRule:"evenodd",stroke:"#000",strokeWidth:.5278124999999999,d:"m323.413 323.219.058 9.848 2.697-1.055s1.113-1.759 1.113-1.876.47-2.404.47-2.462-.235-2.814-.235-2.814l-2.052-1.348z"}),(0,s.jsx)("path",{fill:"#6d390b",fillRule:"evenodd",d:"M236.346 231.77 233 228.091l1.139-.964 3.346 3.677z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.87375,d:"M232.138 234.035c.567-.988 1.876-1.638 3.506-.572 1.631 1.064 2.32 2.93 1.752 3.919s-2.4 1.287-4.032.222c-1.63-1.065-1.794-2.58-1.227-3.57z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.7940625,d:"M241.353 229.91c.953.039 1.987.882 1.934 2.8-.054 1.916-1.09 3.382-2.044 3.342s-1.965-1.502-1.912-3.42c.054-1.916 1.067-2.76 2.022-2.722z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.87,d:"M236.656 230.678c1.08-.283 2.489.196 2.996 2.098s-.22 3.691-1.3 3.975c-1.081.283-2.647-.813-3.155-2.715-.507-1.902.378-3.074 1.46-3.358z"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"M263.6 261.175c-3.261-8.29-12.16-22.054-21.224-15.42-10.06 8.677 4.588 22.329 17.08 21.555z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0359375,d:"M237.716 236.875c1.741-1.171 4.536-1.198 6.611 1.845s1.89 6.655.148 7.826c-1.743 1.172-5.198.207-7.273-2.836s-1.229-5.662.514-6.835z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.744375,d:"M231.275 223.028c.794-.534 2.068-.546 3.015.842.946 1.387.861 3.035.067 3.57-.794.533-2.37.093-3.317-1.295-.946-1.387-.56-2.582.235-3.117z"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0396874999999999,d:"M291.294 271.038c-4.097-7.29-15.278-16.405-26.667-10.573-13.469 9.452 5.432 23.611 24.775 16.63 1.735-1.798.155-4.26 1.891-6.058z"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0396874999999999,d:"M329.263 275.35c-4.097-7.289-26.056-15.575-35.622-8.583-11.975 13.432 5.599 22.782 29.253 16.132 1.736-1.798 4.633-5.751 6.369-7.55z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"M243.978 248.125c.117 0 2.462 2.931 2.462 2.931l-.117-4.104M248.084 253.863l2.463 2.462M256.756 252.222l.235 2.814 1.524-.117M256.756 261.606c-.586-.351-2.58-1.993-2.58-1.993M251.01 261.84l-3.284-1.054"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"m244.794 255.625-3.166-1.055"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"M238.822 253.75h-2.697"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.5278124999999999,d:"M251.478 244.835v-3.518"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"M246.79 263.838c-.35 0-4.924-.235-4.924-.235M255.003 266.997l-3.517 1.172M260.272 254.453c.117-.117 2.931-1.524 2.931-1.524M252.303 250.469c0-.117-.938-3.869-.938-3.869"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"M318.031 323.266c-2.634.309-4.133.471-4.64 2.377-.28 1.294-.056 2.985.169 4.438.469 2.43 2.105 2.773 4.556 3.248h4.218c1.776 0 4.652-1.152 5.12-3.348.322-1.119.195-2.523.195-3.554-.234-2.57-1.98-2.978-4.456-3.24zM318.322 323.275l-.083 9.783M323.46 323.275l-.084 9.783"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:.8887499999999999,d:"M429.256 239.613c1.547-5.086-3.807-6.288-5-9.144-2.444 4.784-1.587 9.656-1.155 12.218 1.003 4.16 4.69 7.036 5.302 10.55 1.08-5.246.907-8.462.853-13.625z"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.18125,d:"M436.344 234.888c.104-2.783 3.734-4.776 5.197-5.215-.907 5.411.722 7.953.291 10.172-.323 3.624-6.96 9.16-9.782 12.236 1.43-5.944 2.862-11.25 4.293-17.193z"}),(0,s.jsx)("path",{fill:"#008c00",fillRule:"evenodd",stroke:"#286326",strokeWidth:1.2646875,d:"M428.694 256.581c.177-.332-2.762-25.866 4.6-31.164 1.93 1.133 2.562 4.788 2.704 6.792.408 8.801.696 13.273-7.304 24.373z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0940625,d:"M281.01 255.972c2.106.669 3.962 2.966 2.823 6.7s-2.904 6.137-5.672 5.303c-3.6-.834-4.245-4.17-3.106-7.905 1.139-3.734 3.847-4.766 5.954-4.098z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:1.2534375,d:"M284.572 252.156c.67.47 1.07 1.456.253 2.572-.816 1.115-2.155 1.5-2.824 1.03-.67-.47-.802-1.813.014-2.93.816-1.114 1.887-1.142 2.557-.672zM279.031 251.013c.8-.17 1.794.209 2.054 1.567s-.37 2.6-1.17 2.77-1.873-.65-2.134-2.008c-.26-1.357.45-2.16 1.25-2.33z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:1.2534375,d:"M281.366 253.975c.783.235 1.473 1.045 1.05 2.361s-1.574 2.103-2.357 1.868-1.332-1.47-.908-2.785c.423-1.315 1.43-1.68 2.215-1.444z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:.9965624999999999,d:"M282.5 249.269c.653.178 1.23.79.876 1.786s-1.313 1.592-1.966 1.414c-.654-.179-1.111-1.112-.758-2.108.353-.995 1.194-1.27 1.848-1.092z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:1.2553125,d:"M285.931 255.26c.715.491 1.116 1.427.177 2.365-.938.938-2.42 1.162-3.135.67-.716-.492-.808-1.728.13-2.667.937-.937 2.113-.86 2.828-.368z"}),(0,s.jsx)("path",{fill:"#dc0000",fillRule:"evenodd",stroke:"#000",strokeWidth:1.1390625,d:"M276.931 253.206c.728-.087 1.584.345 1.703 1.611.12 1.267-.545 2.351-1.273 2.439-.729.087-1.618-.755-1.738-2.02-.12-1.267.58-1.942 1.308-2.03z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.5278124999999999,d:"M266.019 319.056v-.117.117z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M360.584 270.025c4.104 2.189 2.697 7.309-.234 8.677-.157-3.362-2.306-4.378-5.51-5.159 1.68-.938 3.478-3.987 5.744-3.518z"}),(0,s.jsx)("path",{fill:"#008d00",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0396874999999999,d:"M321.397 290.5c1.51-22.251 18.416-24.95 29.622-21.098 16.41 11.907-.232 21.8-24.794 22.44-2.19-1.204-2.638-.137-4.828-1.342z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0518750000000001,d:"M326.31 265.497c-5.249-.212-6.833 4.91-4.774 7.582 2.09-2.811 4.763-2.589 8.327-1.625-1.092-1.664-1.081-5.204-3.554-5.957z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M329.047 272.153c-4.104 2.19-3.23 7.309-.299 8.677.157-3.361 2.306-4.378 5.51-5.159-1.68-.938-2.944-3.987-5.211-3.518z"}),(0,s.jsx)("path",{fill:"#f6aa00",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"M361.128 270.447c.048-1.83-1.397-3.414-3.091-3.67-2.042-.248-4 1.161-6.043-.33-.248-.167-4.99-4.26-6.351-6.166-1.361-.747-4.213-2.145-4.213-2.145-1.68 2.189-2.863 4.709-5.29 6.151-1.207.484-1.668 1.05-3.87.87-2.276-1.064-4.78-1.61-6.082-.455 1.107 2.193.805 4.967.337 7.077.821.47 1.725-.092 2.711.128 3.04.08 2.267 3.347 3.4 4.754 3.203.871 4.83-.663 5.297-3.274.847-1.333 3.435-1.505 5.276-2.008 1.993-.385 4.484-1.019 6.311.006 1.51.802 2.52 1.77 3.283 3.4 0 0 2.403.215 4.807-.234.083-1.444-.213-4.07 3.518-4.104z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"m339.884 260.435.118 5.276c.625 1.915 4.885 1.72 5.393.469l-.117-5.98"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:.99,d:"M341.29 271.685c.92-.312 1.261-2.87 1.261-2.87M345.05 270.981l.234-2.11M348.913 270.981l-.347-2.221M338.713 269.34c-.143.08-1.993-2.227-1.407-1.992M335.319 272.744c.234 0-3.063-3.415-2.477-3.18M332.263 266.416c-.086-.262-.235-1.524.351-1.29"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:.99,d:"M339.613 265.628c-5.01 4.324-9.726 2.505-10.407 6.14M352.016 268.075c.175-.212.778-1.33.147-1.329"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"M271.569 270.213c.065-.097 3.806-.406 3.806-.406l-3.47-2.194M294.369 273.944c.065-.097 3.806-.406 3.806-.406l-2.972-3.44M303.584 274.572c-.183-.595 3.932.092 3.807-.406l-2.598-2.817M298.663 261.447c.117 0 2.462 2.931 2.462 2.931l-.118-4.104M369.275 281.013c.09.076-.022 4.18-.022 4.18l2.693-2.92M339.219 279.963c.08.085-.453 3.801-.453 3.801l4.015-2.13M268.84 260.913l2.463 2.462M264.36 265.019l2.462 2.462M281.15 271.403l3.468-.31M275.638 274.825l3.473-.246M300.753 266.94l2.462 2.463M311 268.216l2.462 2.462M291.903 263.735l2.462 2.462M266.019 255.916l2.462 2.462M293.534 285.888l2.278-2.634M305.075 288.072l2.278-2.634M260.778 274.6l3.468-.31"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.0537500000000002,d:"M267.34 272.135c-.566.03 1.757-.15 2.398.106l-3.425-2.45"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"m271.672 279.475 3.468-.31M312.8 276.11l3.473-.247M306.912 280.975l3.474-.246M311.094 263.116c.117 0 2.462 2.93 2.462 2.93l-.118-4.103M344.89 273.606l-2.462 2.463M352.963 276.297l-2.463 2.462M349.372 283.216l-2.462 2.462M378.331 283.853l-2.462 2.463M363.088 282.063l-2.463 2.462M378.078 267.325l-2.462 2.462M389.731 283.966l-3.467-.33M360.613 291.69l.168-3.478M371.6 275.95l1.772-2.998M377.113 279.278l1.771-2.998M381.706 288.813c-.076.089-3.828-.03-3.828-.03l2.69 1.961M329.61 287.772c.08.086-.453 3.801-.453 3.801l4.015-2.13M298.719 280.975c.457-.339 2.777-1.061 2.653-1.56l-2.47-.894"}),(0,s.jsx)("path",{fill:"#9c4314",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeOpacity:.772,strokeWidth:.99,d:"M403.278 257.528c1.627 1.263 4.37-13.105 3.95-17.601 0-.297-.51-9.832 1.486-16.643 1.26-2.293 1.306-19.474-.585-23.991 1.506-.127 3.332-.615 3.557-2.456-6.958 2.576-8.61-14.707-15.306-24.632-6.537-9.954-14.651-15.756-23.08-21.796.657-1.69 1.63-3.275 2.918-4.86-10.35 5.185-26.478-13.586-50.276-12.183-5.364.534-7.891.858-9.263 4.124-4.424.375-8.954 1.38-8.966 7.22.009 1.398 1.279 3.952 4.124 3.985 3.9 1.123 7.063.25 9.702 5.68.198 1.486.501 4.127.7 5.613 0 0-3.491-4.422-5.4-5.157.506-.735-.3-1.24 1.17-2.377-1.786-1.033-4.983-.193-4.983-.193s-6.912-3.253-12.48-2.377c0-.594-1.066-4.508-1.066-4.508-.985 2.757-3.16 2.608-3.479 5.226-.594-1.882-1.399-4.185-1.993-6.067-1.954 2.669-1.387 5.547-2.08 8.32-.775.631-2.32.666-2.709-1.12-.198-2.18-.466-2.397-.454-4.996-1.41 2.458-3.102 3.655-3.672 7.9-.594-1.585-.908-3.1-1.503-4.685.076 5.52-4.686 8.833-9.195 12.708-1.267 2.345.198 2.378.297 3.566l2.378 1.189c1.386-.099 2.878-.198 4.265-.297.693.891.126.945 1.975 1.52 4.953 1.388 11.152-4.567 16.015 4.79-2.24 1.863-4.48 6.249-3.777 7.062.892 0-1.79 1.261 1.834.105-3.782 3.678-6.345 8.513-6.345 8.81-.42 1.033 1.524-.14 1.118 1.737.531-1.407.899-.117.899-.117-8.632 9.337-.289 19.35-1.219 24.744 1.435 2.311 1.614-.044 3.409-.3 1.518 6.616 5.861 10.629 8.536 15.88-1.381-.424-4.125-.574-5.611.055.126 2.49 2.377 4.857 4.16 7.034-1.287.395-2.476.791-3.764 1.19-2.674 1.386-4.452 2.843-6.334 4.92-1.255 3.033 5.99 3.769 9.464 4.28-.315 1.088-.759 2.457-.128 3.653 5.463.526 11.775-1.089 11.775-1.386 0-.3 1.37-1.068 1.37-1.068.735 1.472 2.353 1.907 3.07 1.698 1.032 0 2.635-4.113 1.9-7.263 1.98 2.374 3.845 6.158 5.826 8.537.6.63 1.375.166 1.87-.257 1.684 2.676 4.009 5.351 5.693 8.023.891 1.021.7.645 1.906.72 1.101-.356 2.04-.502 2.616-2.64 0 0 .365.332.885 1.51 1.33.946 2.269-1.328 3.004-2.064.42-1.014 2.06.198 2.06-.396.595.396.985 2.138 1.58 2.533.909-.336 1.812-2.335 1.881-4.456.904 1.86 1.183 1.706 1.876 2.204.595-.498.781-2.438 1.376-2.933-.129-1.025 7.137 7.006 7.434 7.006.718.523 4.824 1.781 5.664.313 2.05 1.37 7.568 2.216 8.462.016 4.542 1.939 9.886-.234 9.66-2.403 4.142 1.655 10.599.55 10.599.253.735-.087 2.732-2.026.84-3.494-13.769-9.61-34.261-25.522-42.147-29.353 0-2.836-2.146-13.07-4.457-15.887-.42-1.453.526-3.25 1.892-3.144 5.358 5.01 7.305 4.532 10.142 5.34 3.07 2.422 4.172 6.12 7.243 9.488 1.447.463 3.157 1.928 2.713.5-1.916-4.81-4.233-9.466-9.97-15.719 2.971 1.486 7.839 5.422 11.126 8.274 2.191 3.61 2.806 6.487 4.788 11.043 1.435.91 2.902 4.268 2.692 1.485-.315-5.234-3.986-13.546-3.986-14.14 5.836 4.655 5.775 11.87 7.534 16.285 1.524 2.24 2.29 5.217 2.921 4.52.736-1.017-1.732-13.62-1.732-13.62-.396-1.584-.595-3.38-.99-4.964 4.343 2.5 5.861 12.04 7.894 23.469.005 1.82.747 3.815.648 5.003.932 1.152 2.006 4.33 1.957 2.434 0 0 .003-18.593-1.257-22.865-.316-2.275.558-5.997.558-5.997 1.585 7.726 3.275 16.082 4.86 23.808v5.648q1.188 1.186 2.377 2.379l1.486-13.968s-1.783-16.346-1.783-16.642v-4.755c-.036-1.675 1.503-1.354 2.518.544.198 4.061.186 7.282.384 11.344.694 4.653 1.177 8.049 1.555 13.966.186 4.849.373 16.316 1.4 16.118z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.99,d:"M326.3 284.406c-.223-.523-.384-2.948-.898-2.943l-1.446 2.193M369.753 271.169l-.296 2.453M348.144 289.263c-.565.069-2.94-.45-3.077.044l1.705 1.999"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.5278124999999999,d:"M311.806 234.297v.257-.257.257-.257 4.485c.131.636.128 1.344.128 2.05.08.544.27 1.196.513 1.795.035.76.247 1.258.513 1.922.054.655.278 1.216.512 1.794.056.658.269 1.003.385 1.538.185.616.41 1.016.64 1.41.167.167.231.333.385.384"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.5278124999999999,d:"M301.803 250.056c0-.207-.032-.837.257-1.281.453-.645.817-1.045 1.409-1.666.7-.445 1.2-.973 1.794-1.538.638-.407.959-.767 1.538-1.153.355-.363.766-.542 1.153-.77.441-.216.762-.536 1.41-.64.39-.195 1.201-.128 1.794-.128.611 0 .825-.117 1.41-.128"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M394.963 205.544c1.98 1.436 4.16 4.557 5.052 10.203M383.825 207.466c2.872 2.575 4.494 5.376 6.637 11.689"}),(0,s.jsx)("path",{fill:"#00c600",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M376.888 210.54c1.75 1.998 2.806 4.095 3.764 6.588M365 204.006c2.278 2.625 5.943 6.637 7.825 10.698"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M316.616 136.975c.166 11.418 16.878 8.633 18.286 19.361 3.198 11.708 1.865 19.272-2.814 22.989-2.656 2.735-.625 6.987.166 9.17 4.344 11.01 10.903 12.782 13.723 22.285"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M310.363 144.766c0-.22.392-.602.78-.78 1.663-.542 2.686-.574 4.387-.682 1.463 0 2.828.064 4.29.292"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"m332.01 249.578 5.81 9.452M350.525 235.516l31.11 23.824M349.69 242.05l22.734 19.957M306.922 217.29c2.994 5.945 11.454 13.84 16.53 15.1.174-3.819-.042-5.293-.65-7.94"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M316.55 213.906c2.994 5.945 5.727 12.279 13.668 15.88.824-5.77-.954-13.623-5.337-21.607"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M317.956 205.938c2.734 1.649 5.207 2.386 7.03 2.603.824-5.77 1.546-11.877-3.162-20.14"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M307.438 209.35c4.035 4.383 7.289 4.599 9.111 4.816 1.345-3.948 1.91-12.322.26-21.348M296.984 212.866c4.018 5.2 13.28 15.068 18.264 18.655.173-.827.43-1.212.364-3.858M365.6 155.763c4.304 4.961 20.912 21.659 24.2 29.474 5.675 12.773 16.14 15.202 18.749 13.772M337.147 224.79c1.494 6.112 4.208 17.23 8.119 18.988.673-.657 1.242-1.872 1.176-4.52"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M314.572 190.15c1.756 1.788 2.154 3.417 3.976 3.634 2.22-1.816 6.13-11.938 4.726-19.41"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M305.366 189.869c.825 4.021 1.595 7.418 4.441 7.449 4.733-3.956 6.13-12.812 4.726-20.283M303.528 211.15l-2.13-4.683M349.513 249.044l14.265 12.959M342.716 243.831l4.402 12.393M323.319 232.488c2.994 5.945 9.372 14.525 14.448 15.784.174-.823.077-1.54.011-4.183M315.594 231.297c2.994 5.941 11.79 15.626 16.867 18.464.174-.823.914-.981.848-3.625M337.503 248.022l6.356 10.54M329.9 221.566c2.733 1.649 5.603 3.03 7.425 3.248.279-6.426-1.961-16.79-6.56-24.725"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M298.269 187.872c-.812 3.04-.7 6.361 2.147 6.392 7.898-3.41 3.182-6.807 9.965-18.318M308.694 166.966c2.994 5.944 3.871 9.985 8.536 11.512.934-.42 3.256-10.927-4.62-19.457"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M318.284 171.916c1.538 1.788 3.792 2.215 5.615 2.105 1.783-3.562-2.03-13.654-7.05-18.873M362.403 163.685c3.758 5.289 20.247 23.752 27.314 29.645 1.588-.202 3.938 1.77 1.74-4.903"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M360.547 175.366c3.758 5.289 10.64 14.243 17.706 20.137 1.777.663 3.496.45 4.06-.012.606-.583.055-4.775.211-9.04"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M356.075 182.031c4.304 4.744 9.985 10.204 16.943 16.535 1.776.663 3.311.69 3.514-.012.169-.693.491-.518.101-4.782"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M350.066 190.544c4.304 4.743 8.238 8.239 12.14 9.11 1.885.227 2.874.253 3.077-.448.169-.693.054-4.011-.007-7.84"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M343.953 196.872c4.304 4.743 4.308 6.71 8.21 7.582 1.885.226 3.281-.022 3.623-.667.606-1.348.818-2.81.756-6.638"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M342.21 165.869c4.335.789 4.694-2.96 4.342-5.64-.427-3.362-2.804-4.833-5.62-4.127M339.8 180.719c2.043.789 4.61.738 5.544-1.601.754-1.78.471-6.143-2.344-5.437"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M342.866 173.622c3.898.243 4.263-1.537 4.124-3.785-.154-2.62-1.93-4.614-4.746-3.907"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M346.653 163.44c5.693-3.426 22.093 10.316 9.62 14.691"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M345.444 173.172c5.693-3.427 18.23 7.784 5.518 12.151"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M343.316 180.906c6.356.221 13.67 10.424 1.208 11.67"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M335.825 186.353c2.043.79 3.223 1.3 5.046-.274.72-.66 1.669-3.688-1.017-5.367"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M282.603 174.025c2.15-2.774 7.404-4.543 9.202-.87M339.66 186.85c3.702 1.216 9.594 11.517-.3 12.568"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M334.934 140.256c4.27.808 6.427 7.708 9.83 8.24 6.224.928-.804-7.204-2.151-8.118"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M271.972 169.75c1.915.078 3.713-.274 4.924-2.54M290.956 189.522c1.064 1.984 3.799 1.191 6.059-.185 3.091-1.768.486-7.98 7.855-13.276M294.875 215.678c4.017 5.2 11.638 12.957 16.388 17.127.173-.823.943-1.242.877-3.89M311.113 232.46l9.136 12.693M330.163 229.394c1.494 6.11 7.437 15.786 11.347 17.544.673-.66 1.125-3.28 1.06-5.929M328.034 246.897l-.558 5.664M341.713 218.575c1.494 6.111 3.739 20.982 7.18 23.678.674-.657 2.064-13.012 1.998-15.658M337.1 218.153c2.03.243 3.213.236 4.801.218.28-6.425-2.505-13.979-7.104-21.914"}),(0,s.jsx)("path",{fill:"#00c600",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"m348.416 202.281-.317 6.498"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M325.475 199.506c2.147.829 3.682 1.097 5.388.962 1.762-8.702-2.675-8.711-8.204-14.863"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeOpacity:.772,strokeWidth:.99,d:"M350.178 141.663c4.27.807 1.563 7.194 7.368 9.177 4.873 1.624 2.127-5.093.78-6.007"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M343.831 156.006c3.081-2.24 14.096.862 17.823 3.992 1.068.996 2.697 4.97-2.366 8.623M285.472 161.266c8.842-8.629 12.943-7.646 23.066-1.282 1.453.342 3.033.043 3.973-.512.512-1.24.024-2.501-.641-3.46-4.528-3.246-7.902-4.186-12.174-3.588M298.203 193.29c-1.988 2.931-3.614 9.305-.256 16.403.133.817.991 1.634.128 2.179-1.655.833-2.403 2.21-3.332 3.588M349.728 238.61c.06-10.753-1.51-19.33-5.8-27.093M331.156 196.74c1.42-.15 3.202.243 4.078-.18.423-1.57-.785-3.504-1.269-4.984.816-.09 1.813-.09 2.447-.272.362-1.36 0-3.262 0-4.893"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M278.047 166.14c.341-2.391 2.477-5.04 4.87-6.406 1.153-.641 1.922.128 2.434.383.641 1.026.256 2.948 0 3.717-.64 1.282-1.922 2.307-4.228 3.204-1.197-.513-1.88-.385-3.076-.897z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M298.55 211.76c.513.256 5.638 5.894 5.638 5.894h3.076l.256-8.586"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.772,strokeWidth:.99,d:"M306.875 195.231c-1.025 3.375-.64 6.75 0 10.124"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"m300.2 211.15 1.2-4.683M302.394 193.431c-1.538 2.82-1.976 7.451-1.176 10.814M344.281 212.172l-2.9.058"}),(0,s.jsx)("path",{fill:"#9f3000",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M240.397 201.278c.407 1.256-.963.582-1.257.935-1.44.508-3.722-1.256-5.164-5.522.704-1.194 4.839-3.761 6.166-3.209 0 0 2.602.992 2.914 2.079-.5 1.585-2.747 5.894-2.659 5.717z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"m344.281 212.172.048-5.709M348.997 242.163l.814 13.928"}),(0,s.jsx)("path",{fill:"#238700",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M240.303 201.766c2.81 2.642 7.225.87 7.927 7.325.301 3.613-4.816 10.838 0 17.36 1.706 2.51 6.122 5.218 6.122 5.218 2.308 2.576 3.01 7.158 4.515 10.737 3.178 4.75 7.56 5.787 11.038 4.617 0 0 11.44-5.118 11.44-5.219s-5.82-7.827-5.82-7.726-6.523 5.52-6.623 5.52c-.703-.101-4.516.3-5.92-4.517-.1-6.154-3.144-9.562-8.028-12.04-2.475-1.875-4.449-4.85-2.308-9.032 1.237-3.813 2.475-10.236-1.907-14.55-2.81-1.873-4.817-3.345-7.827-3.914-3.98 1.506-3.947 1.104-2.609 6.222z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M296.872 148.047c-1.538 2.819-1.398 4.51-1.142 7.328M289.063 161.913h3.587c.955-.026 1.363-.388 2.051-.897.462-.261.953-.655 1.41-1.025.38-.272.836-.591 1.281-.77.727 0 1.295.054 1.922.257.58.243 1.057.591 1.538.897.48.192.913.256 1.666.256.782 0 1.602-.036 2.306.129.678.045 1.436.194 1.923.384.62.391.994.858 1.41 1.282.024.68.247 1.096.256 1.793 0 .596.067 1.404-.128 1.795 0 .737-.118 1.261-.257 1.794-.47.442-.641.784-1.281.897-.504.395-1.258.384-2.05.384h-2.051c-.445-.37-.985-.757-1.538-1.281-.297-.69-.494-.914-1.153-1.154a13 13 0 0 0-1.922-.128c-.626 0-1.148.044-1.538-.256-.354-.337-.864-.514-1.41-.64-.58-.165-1.265-.129-1.922-.129h-1.025"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"m292.39 163.066.129.128c-.291-.29-.185-.15.512.128.849.196 1.761.358 2.692.385.881 0 1.683.108 2.562.128.613 0 1.259.05 1.795-.128"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M300.594 161.013h-.128c.401 0 .154-.034-.385.64-.052.732-.209 1.136.128 1.795.418.139 1.125.449 1.41.768.412.295.384.56.384 1.282-.246.4-.468.723-.768 1.281-.162.403-.371.944-.513 1.41-.146.585-.249 1.142-.256 1.794v1.281M346.99 146.088c.144.273 2.6 5.179 5.652 2.067.453-.53.61-.915.61-1.82 0-.471-.064-1.02-.18-1.409"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.5371874999999999,d:"M273.031 244.75c1.478 2.06 4.164 1 4.703-.65-1.84.12-2.542-.966-3.191-2.63-.393.953-1.926 2.098-1.512 3.28z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M359.956 150.672c0 .095 2.603 2.489 6.54 2.489.95 0 5.466-1.14 6.904-3.146"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M365.403 152.978c.058.385.181 1.787.181 2.719-.012.987.225 1.813-.147 2.636-.405 1.05-.855 1.469-1.846 1.83-.807.364-.979.015-1.878.048M343.738 148.019c0 .06 2.776 6.657 3.69 7.326"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.5371874999999999,d:"M274.84 243.55c1.479 2.06 4.165 1 4.704-.65-1.84.12-2.543-.966-3.192-2.63-.393.953-1.925 2.098-1.511 3.28z"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:.5371874999999999,d:"M277.644 242.35c1.478 2.06 4.164 1 4.703-.65-1.84.12-2.543-.966-3.192-2.63-.393.953-1.925 2.098-1.511 3.28z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M327.894 144.644h.9059999999999999c2.88-.486 12.554 1.299 14.235 3.08M329.703 191.397c-.06-.06.135 1.11.075 1.049.357.357-.054-.966-.256-1.774-.302-.72-.363-1.196-.363-2.175v-.725M311.619 234.053v.258-.258.258-1.05 5.277c.13.637.128 1.345.128 2.05.08.546.27 1.195.513 1.797.035.76.247 1.259.512 1.92.055.657.278 1.219.513 1.796.055.657.268 1.002.384 1.536.186.618.41 1.017.64 1.41.168.17.33 1.028.484 1.076"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.772,strokeWidth:.99,d:"M303.8 226.497v3.461c.167.849.196 1.747.384 2.563.07.732.247 1.357.385 2.05.061.685.881 3.115 1.153 3.717.304.566.752 1.155 1.026 1.535.512.159.93.34 1.537.384h1.794c.72-.138.967-.214 1.282-.768.173-.344.162-.585.384-.768M301.625 249.822c0-.21-.032-.839.256-1.282.454-.646.818-1.045 1.41-1.667.7-.447 2.441-2.842 7.689-4.227.611 0 .825-.119 1.41-.13M302.244 238.197c.042.044 2.868 1.52 4.333 1.583"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.5278124999999999,d:"M310.316 243.156h-.14.14c-.047 0-.094 0 0 0z"}),(0,s.jsx)("path",{fill:"#ffbc00",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M309.05 243.016c-.42-.28-14.006-4.202-13.727-4.202.28 0-4.972 3.572-4.972 3.572l12.956 4.412 5.182-3.782z"}),(0,s.jsx)("path",{fill:"#f7b200",fillRule:"evenodd",stroke:"#000",strokeWidth:.99,d:"M296.075 238.703c.858-2.179.627-5.05-2.179-6.834-6.404-3.928-17.167-3.598-19.214.99-2.212-.297-3.335 1.487-3.665 3.27-5.711 1.55-.428 8.15.99 8.416 1.92.657 2.444.175 2.774-.452 1.068.263 2.533-.88 2.901-1.667 1.357.25 2.387.225 2.413-1.135 3.887 3.642 9.244 6.164 9.84 1.473z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"M271.025 236.031c-.363 2.543 1.344 5.283 4.051 7.924M274.578 232.863c-.363 2.542.363 6.866 3.07 9.508M278.6 230.135c-2.486 2.087-1.131 8.547 1.576 11.189"}),(0,s.jsx)("path",{fill:"#288800",fillRule:"evenodd",stroke:"#000100",strokeLinejoin:"round",strokeWidth:.99,d:"M285.247 177.325c5.737 7.598-2.285 15.992-9.295 20.829-8.264 6.5-12.727 19.169 1.847 19.947 5.263-.097 10.978-.563 14.194 3.558s3.334 11.734-4.766 16.614c-.794-.701-1.974-2.79-2.853-3.427s-1.457.18-2.25-.521c-.28-2.615 3.992-6.506-.048-7.446-5.23.887-23.535.963-23.302-16.499.402-3.891 2.482-8.26 5.82-12.704s12.49-9.955 13.37-12.368c1.408-2.084-1.169-6.138-3.223-6.699-1.68-4.482 5.743-9.268 10.505-1.285z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"m272.497 190.769.198 10.2M267.153 194.828l10.895 1.585M275.178 188.49l9.21 1.882"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.642,strokeWidth:.99,d:"m265.475 196.61 7.67 4.542M260.01 206.2l5.989 6.363M265.55 197.031l1.017 15.047M261.416 203.331l9.84.2"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"M251.122 228.756c1.523-1.443 3.114-3.515 4.098-5.542M254.197 231.344c2.058-1.274 4.7-2.278 7.32-2.811M257.984 240.1c1.785-1.487 3.705-3.064 5.018-5.135M258.05 240.438c3.14-.077 6.326-.4 9.42-.97M263.656 246.616c2.336-.88 4.47-2.23 6.2-3.582M247.41 225.597c1.81-1.462 3.621-3.126 5.095-4.858M246.078 220.91c1.969-.529 3.892-1.529 5.57-2.462M246.763 216.025c1.592-.617 3.454-.875 5.18-.976M248.244 211.525c1.926-.19 3.224-.072 5.15.53M248.572 208.666c1.594-.856 3.386-1.413 5.178-1.179M247.775 206.547l5.55-3.79M246.8 204.981l4.727-4.685M245.46 204.335l3.463-5.916M259.269 169.366l-.043 8.43M267.8 170.706c-1.243 2.43-2.983 5.302-5.22 7.447M261.51 169.085c-2.477-.198-4.816 1.143-6.698 2.727"}),(0,s.jsx)("path",{fill:"#9d4600",fillOpacity:.994,fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.5278124999999999,d:"M274.71 175.516c4.115 1.514 9.579 3.595 9.01 15.681 3.406-3.69 4.968-8.869.64-15.397-2.91-3.146-7.167-3.809-9.65-.284z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"M276.566 179.547c.165-2.342 3.44-5.238 5.167-5.877M277.822 181.666c.863-2.993 4.594-5.369 6.32-6.007M277.906 185.903c1.594.025 7.625-3.32 9.005-5.311M278.394 183.672c1.939-1.348 5.581-4.4 7.308-5.038M283.719 186.119c1.452-.827 1.948-.624 3.47-2.19"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"M274.71 175.581c4.138 1.349 9.2 4.4 8.869 15.61"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeOpacity:.642,strokeWidth:.99,d:"m260.928 218.903 5.633-6.828M261.631 220.31l5.03-.005M258.819 213.485l7.037 4.009"}),(0,s.jsx)("path",{fill:"#9d4600",fillRule:"evenodd",stroke:"#000",strokeWidth:.5278124999999999,d:"M268.297 212.8c-1.347-.125-2.12-.381-3.292-.815.552 9.07 1.457 9.536 2.89 12.956 4.289 2.72 11.71 2.084 14.851 1.406.338.474 2.195 2.779 1.053 3.448-1.231.772-1.73 2.269-1.775 4.688.727.82 1.485.108 2.225.635s1.61 2.391 2.296 3.996c0 0 9.12-6.268 7.64-12.165-.97-5.54-4.715-7.426-4.715-7.426-5.295-2.647-12.738-.891-15.454-1.906-3.378-.75-5.503-3.67-5.72-4.817z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"M283.325 228.803c4.568-2.085 9.397-2.255 10.71-2.063M265.456 216.69c.992-.58 2.451-1.819 4.132-1.793M273.856 226.685c.812-4.806 2.871-8.05 3.932-8.862M276.603 227.06c.812-4.806 3.058-8.238 4.118-9.049M279.66 226.74c.81-4.804 2.87-7.924 3.93-8.735M281.975 226.366c.811-4.805 3.495-7.176 4.555-7.988M283.503 227.735c.812-4.806 4.893-7.475 5.953-8.287M283.634 228.475c2.782-4 7.354-5.944 8.66-6.226M270.988 226.056c.81-4.805 2.932-7.425 3.993-8.237M268.24 225.185c.812-4.806 3.308-7.239 4.37-8.05M282.5 235.056c2.156-1.696 3.622 3.783 3.729 4.447s.51 1.34 1.583 1.96M266.563 221.875c.873-2.434 2.808-5.116 3.869-5.928"}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:1.0518750000000001,d:"M278.384 230.35c-2.798 4.445.432 8.37 4.055 6.796-.416-3.072-1.201-5.023 1.6-7.978-1.986.117-3.77-.586-5.655 1.182z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"m267.828 197.669 1.324 6.53M269.15 203.669l-2.383 8.03M283.222 229.225c4.928-.96 9.665 0 10.895.493"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.0640625,d:"M282.64 230.013c5.052-.074 9.458 1.99 10.544 2.8"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.0565625,d:"M282.697 230.95c4.86 1.106 7.038 3.57 7.888 4.61M282.36 232.066c4.36 2.414 5.34 4.395 5.867 5.632"}),(0,s.jsx)("path",{fill:"#296526",fillRule:"evenodd",d:"m210.222 255.434 2.342-.55 2.539 10.83-2.341.548zM229.69 292.019l4.917 5.599 1.836-1.553-4.615-5.8zM379.756 315.944l-6.09 4.291 1.348 1.991 6.258-3.97zM411.884 289.15l-5.433 5.098 1.613 1.784 5.643-4.804zM429.116 253.188l-1.977 4.878 1.08 1.399 2.127-4.642z"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.99,d:"M268.175 225.447c-2.639-4.342-2.973-8.885-3.106-13.327 1.402.668 2.505 1.035 3.306.801M258.988 169.113c-2.173-5.433.335-8.376 3.045-10.955"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M262.525 156.643c.457.579.179 1.628-.621 2.344-.8.715-1.82.826-2.278.247-.457-.58-.179-1.629.622-2.344.8-.716 1.82-.826 2.277-.247"}),(0,s.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.2862500000000001,d:"M248.46 197.997c-.455 0-8.326-1.06-8.326-1.06M245.131 203.753c0-.302-5.146-6.66-5.146-6.66"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4195.4fb2f2ba.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js deleted file mode 100644 index 6f72ae4d64..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4225.61de23fc.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4225"],{62840(l,z,m){m.r(z),m.d(z,{default:()=>s});var h=m(74848);m(47867);let s=l=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,h.jsx)("defs",{children:(0,h.jsx)("clipPath",{id:"rs_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,h.jsx)("path",{d:"M60 0h1200v900H60z",style:{fill:"#000",fillRule:"evenodd",stroke:"none"}})})}),(0,h.jsxs)("g",{clipPath:"url(#rs_inline_svg__a)",transform:"matrix(.53333 0 0 .53333 -32 0)",children:[(0,h.jsx)("path",{d:"M0 0h1350v900H0z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M0 0h1350v600H0z",style:{fill:"#0c4076"}}),(0,h.jsx)("path",{d:"M0 0h1350v300H0z",style:{fill:"#c6363c"}}),(0,h.jsxs)("g",{transform:"matrix(1 0 0 1.00437 0 -.328)",children:[(0,h.jsx)("path",{d:"m473.38 259.35.006-.176 1.01.034-.006.176-.482.492zm1.01.034-.016.471-.467.02zm-93.132 5.243-.989.212.462-.615 4.146-.263 4.066-.257 3.986-.25 3.905-.245 3.826-.238 3.746-.23 3.666-.227 3.587-.219 3.507-.211 3.426-.207 3.347-.2 3.267-.195 3.187-.187 3.11-.182 3.028-.175 2.949-.17 2.868-.164 2.79-.157 2.71-.152 2.632-.145 2.55-.14 2.473-.133 2.393-.129 2.313-.121 2.234-.117 2.156-.11 2.074-.104 1.996-.1 1.917-.092 1.839-.088 1.758-.082 1.68-.076.045 1.018-1.68.076-1.756.081-1.838.088-1.915.093-1.996.1-2.074.103-2.154.11-2.233.117-2.313.122-2.391.128-2.472.134-2.551.14-2.631.145-2.709.151-2.79.158-2.868.164-2.948.17-3.029.175-3.107.181-3.187.188-3.267.195-3.347.2-3.426.206-3.507.212-3.585.219-3.666.226-3.746.23-3.825.239-3.906.244-3.986.25-4.063.258-4.146.263zm-.989.212-.121-.577.583-.037zm6.535 31.051-6.535-31.051.989-.212 6.534 31.051-.48.615zm.508.403-.421.012-.087-.415zm94.846-4.08-.03 1.017h.03l-2.879.087-2.9.09-2.923.092-2.939.094-2.957.095-2.97.096-2.987.097-2.998.1-3.008.1-3.017.1-3.024.102-3.03.1-3.034.103-3.036.103-3.035.103-3.036.102-3.032.102-3.028.101-3.021.102-3.016.1-3.004.1-2.994.098-2.982.098-2.967.096-2.952.094-2.933.092-2.915.092-2.894.089-2.872.088-2.848.084-2.82.083-2.795.08-.029-1.018 2.795-.08 2.82-.082 2.846-.085 2.872-.087 2.894-.09 2.915-.09 2.932-.093 2.952-.094 2.966-.096 2.981-.098 2.994-.098 3.005-.1 3.015-.1 3.021-.102 3.029-.1 3.032-.103 3.035-.102 3.036-.103 3.035-.103 3.035-.102 3.03-.101 3.023-.102 3.018-.1 3.008-.1 2.997-.1 2.987-.097 2.97-.096 2.96-.095 2.939-.094 2.922-.091 2.9-.09 2.88-.088zm-.03 0h.03zm94.367 3.465.989.212-.509.403-2.794-.08-2.821-.083-2.85-.084-2.87-.088-2.894-.089-2.915-.091-2.933-.093-2.952-.093-2.968-.096-2.98-.098-2.995-.098-3.005-.1-3.015-.1-3.022-.102-3.027-.101-3.033-.103-3.035-.102-3.036-.102-3.036-.103-3.033-.103-3.03-.1-3.025-.103-3.016-.1-3.01-.1-2.997-.1-2.985-.097-2.973-.096-2.956-.095-2.94-.094-2.921-.091-2.901-.09-2.88-.088.032-1.017 2.879.087 2.9.09 2.923.092 2.939.094 2.959.095 2.972.096 2.986.097 2.997.1 3.01.1 3.016.1 3.025.102 3.03.1 3.032.103 3.036.104 3.037.102 3.034.102 3.033.102 3.028.101 3.022.102 3.014.1 3.006.1 2.994.098 2.98.098 2.967.096 2.952.094 2.932.092 2.915.092 2.894.089 2.87.087 2.848.085 2.82.083 2.795.079zm.989.212-.087.415-.422-.012zm6.534-31.051-6.534 31.05-.989-.21 6.535-31.052.526-.403zm-.462-.615.584.038-.122.577zm-93.659-4.84 1.01-.033-.482-.492 1.68.076 1.757.082 1.839.088 1.917.092 1.996.099 2.074.104 2.156.11 2.234.116 2.313.123 2.393.128 2.472.133 2.551.14 2.631.145 2.711.152 2.79.157 2.868.164 2.949.17 3.028.175 3.11.181 3.187.188 3.267.195 3.347.2 3.426.206 3.507.212 3.587.219 3.666.226 3.746.231 3.826.238 3.905.244 3.986.25 4.066.258 4.146.263-.065 1.018-4.146-.264-4.063-.257-3.986-.25-3.905-.245-3.826-.238-3.746-.23-3.666-.227-3.585-.219-3.507-.211-3.426-.207-3.347-.2-3.267-.195-3.187-.187-3.107-.182-3.029-.175-2.948-.17-2.868-.163-2.79-.158-2.709-.152-2.63-.145-2.551-.14-2.473-.133-2.39-.128-2.314-.122-2.233-.116-2.154-.11-2.074-.105-1.996-.099-1.915-.092-1.838-.088-1.756-.082-1.68-.076zm.482.493-.467-.02-.015-.472zm.522-.703.006.177-1.01.034-.006-.177.408-.517zm-1.01.034-.014-.434.422-.083zm-7.766.336.036-1.018h-.036l.67-.023.644-.02.616-.02.59-.016.564-.016.538-.013.51-.012.485-.012.457-.007.431-.007.406-.005.38-.002.353-.001h.326l.3.003.275.004.25.007.224.008.2.008.177.013.152.015.132.016.125.023.14.045.206.14.12.53-.209.28-.14.078-.12.044-.126.036-.144.035-.164.034-.194-1 .141-.03.108-.025.074-.021.026-.008-.048.027-.167.235.107.486.14.1.023.007-.048-.008-.092-.012-.125-.012-.152-.01-.182-.008-.214-.008-.239-.005-.266-.004-.295-.002-.321-.001h-.349l-.374.003-.401.005-.429.007-.455.007-.48.009-.51.012-.535.013-.563.016-.587.016-.616.02-.642.02-.667.023h-.036zm.036 0h-.036zm-8.27.157v-1.02l-.096 1.01-.164-.033-.144-.035-.126-.036-.12-.044-.14-.079-.208-.28.113-.523.211-.147.137-.043.124-.024.136-.018.154-.015.175-.012.2-.009.224-.007.248-.007.276-.005.3-.002h.328l.35.001.38.002.405.005.432.006.459.008.483.011.512.012.536.015.565.014.59.018.615.02.645.02.67.023-.036 1.017-.667-.022-.643-.02-.616-.02-.587-.018-.562-.015-.536-.014-.507-.012-.481-.008-.456-.008-.428-.006-.402-.005-.375-.002-.348-.001h-.32l-.294.002-.266.005-.241.005-.213.007-.182.009-.154.009-.123.012-.089.01-.045.01.017-.008.146-.105.102-.48-.167-.235-.048-.028.026.008.074.022.108.025.14.03zm0-1.02v1.02l-.505-.527zm-.505.493.017-.493h.488z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M583.45 264.21c3.272-6.6 6.709-13.075 11.297-18.682-11.747 8.742-17.928 7.423-18.788-3.96-.696-.247-1.638-.247-2.578-.247q-13.446 20.97-26.156-5.815c-11.543 18.351-21.448 18.022-29.225-1.113-13.313 16.726-24.528 16.772-33.646.353l-.001-2.085c.507.226.162.298-1.034.132l-.194-.38a69 69 0 0 1-.982.189q-.45-.083-.982-.189l-.194.38c-1.197.166-1.542.094-1.035-.132v2.086c-9.117 16.417-20.333 16.372-33.646-.354-7.777 19.135-17.683 19.465-29.226 1.113-8.471 17.857-17.192 19.794-26.155 5.815-.94 0-1.882 0-2.58.248-.858 11.382-7.038 12.7-18.785 3.959 4.587 5.607 8.025 12.082 11.297 18.682 33.848-1.413 67.579-3.181 101.31-4.956 33.728 1.775 67.457 3.543 101.31 4.956z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m595.05 245.94-.602-.82.692.733-.424.525-.417.527-.41.534-.404.538-.397.543-.394.546-.387.553-.382.554-.376.56-.371.565-.368.569-.362.57-.358.575-.352.58-.35.58-.346.585-.341.589-.34.59-.334.593-.331.597-.329.599-.326.601-.322.604-.32.606-.318.607-.316.609-.315.61-.311.614-.31.615-.31.614-.308.617-.307.617-.904-.454.306-.62.31-.62.31-.616.313-.617.314-.616.315-.613.317-.614.321-.612.323-.608.324-.609.329-.606.33-.604.335-.601.339-.6.34-.595.345-.595.35-.591.353-.588.357-.585.363-.583.366-.579.372-.576.377-.57.383-.569.386-.564.394-.56.4-.556.404-.552.412-.546.416-.543.424-.54.43-.53zm-19.257-3.89.337-.96.335.442.096 1.02.124.959.155.897.184.836.215.774.242.713.27.652.297.588.325.528.35.468.373.409.401.352.426.297.454.243.483.19.516.14.55.086.585.033.62-.022.66-.08.694-.134.732-.191.767-.252.802-.31.838-.37.873-.426.908-.486.94-.547.976-.605 1.008-.666 1.044-.724 1.075-.784.602.82-1.095.796-1.062.738-1.03.679-1 .621-.969.562-.938.503-.907.446-.879.386-.847.327-.822.268-.791.208-.764.15-.735.086-.71.027-.68-.04-.653-.101-.623-.169-.59-.233-.56-.298-.519-.365-.484-.424-.448-.488-.407-.545-.37-.605-.334-.66-.298-.717-.263-.773-.23-.828-.195-.886-.163-.943-.129-.997-.097-1.056zm.337-.96.31.112.025.33zm-2.322.51-.85-.554.425-.233h.356l.088.001h.087l.09.001.092.001.087.002.086.001.093.004.088.004.085.004.087.004.09.005.088.006.087.007.086.007.083.007.088.01.088.01.081.01.086.013.085.015.08.014.087.018.08.018.077.018.086.023.078.022.079.024.078.028-.336.96-.053-.018-.057-.017-.059-.018-.054-.013-.067-.016-.062-.016-.061-.01-.07-.014-.066-.01-.07-.01-.074-.01-.069-.008-.073-.007-.076-.007-.076-.007-.078-.005-.08-.006-.076-.005-.08-.004-.085-.004-.081-.004-.079-.001-.086-.001-.087-.002-.083-.001-.084-.001h-.087l-.088-.001h-.349zm-.85-.554.15-.233h.275zm-25.304-5.265-.855-.546.884.053.79 1.617.79 1.523.792 1.428.79 1.335.791 1.24.792 1.143.791 1.052.79.954.787.862.787.767.783.672.78.579.777.485.774.395.767.303.766.213.762.127.764.039.764-.048.77-.136.773-.224.779-.313.788-.404.794-.496.8-.59.805-.681.812-.78.816-.87.82-.967.823-1.061.828-1.156.83-1.25.85.554-.849 1.278-.85 1.185-.85 1.094-.85 1.003-.852.91-.852.817-.856.725-.86.633-.863.54-.866.445-.87.349-.874.252-.876.155-.879.056-.876-.046-.873-.144-.867-.242-.864-.342-.854-.435-.849-.53-.84-.623-.836-.718-.83-.809-.826-.902-.82-.993-.817-1.085-.813-1.177-.81-1.269-.808-1.361-.805-1.454-.803-1.546-.8-1.638zm-.855-.546.49-.778.394.831zm-28.404-.522-.788-.637.862.125.73 1.726.74 1.614.753 1.502.762 1.391.773 1.279.782 1.166.791 1.056.799.944.807.831.814.723.818.61.825.503.828.395.836.29.842.186.85.083.864-.02.877-.124.894-.227.908-.333.926-.442.942-.55.958-.658.971-.77.987-.88 1-.991 1.013-1.1 1.025-1.213 1.038-1.324 1.048-1.434 1.059-1.544 1.07-1.655.855.546-1.085 1.677-1.076 1.568-1.067 1.46-1.059 1.35-1.051 1.244-1.043 1.134-1.037 1.026-1.027.918-1.022.808-1.017.7-1.011.59-1.005.48-1.002.367-.997.254-.99.138-.982.023-.971-.095-.96-.21-.943-.329-.926-.441-.909-.554-.891-.665-.874-.775-.857-.884-.842-.992-.825-1.102-.81-1.21-.795-1.317-.783-1.425-.768-1.536-.754-1.643-.741-1.752zm-.788-.637.538-.675.324.8zm-33.758.672h1.013l-.065-.249.851 1.477.865 1.377.873 1.282.884 1.181.894 1.086.903.987.914.892.921.792.931.696.938.602.948.504.956.41.965.316.975.222.986.13 1 .038 1.011-.056 1.027-.148 1.042-.244 1.057-.337 1.074-.432 1.088-.53 1.105-.627 1.12-.723 1.136-.822 1.15-.918 1.164-1.018 1.178-1.115 1.194-1.214 1.206-1.312 1.22-1.411 1.234-1.508.788.637-1.25 1.53-1.24 1.432-1.227 1.336-1.218 1.24-1.207 1.14-1.196 1.047-1.187.947-1.176.85-1.166.755-1.16.656-1.148.558-1.141.462-1.13.361-1.124.261-1.112.162-1.103.06-1.092-.042-1.08-.141-1.066-.245-1.052-.342-1.035-.446-1.022-.543-1.003-.642-.988-.74-.972-.836-.956-.932-.942-1.028-.925-1.124-.912-1.22-.898-1.316-.883-1.41-.87-1.506zm.065.25-.065-.116v-.134zm.947-2.335v2.085h-1.012v-2.085l.71-.466zm-1.013 0v-.782l.71.316zm-.977.364.9-.464-.381-.273.107.014.103.015.093.01.089.012.084.007.085.008.07.007.07.004.068.005.052.004h.133l.03-.001.019-.001.009-.001h-.004l-.02.006-.034.013-.083.049-.1.105-.078.178v.187l.05.142.05.071.028.029.018.014.005.004h-.002l-.022-.011-.029-.016-.031-.015.408-.93.06.026.05.025.049.026.057.035.055.037.059.048.057.058.07.1.061.168v.211l-.088.2-.12.124-.11.066-.074.028-.07.02-.064.01-.06.008-.06.004-.06.002h-.122l-.075-.001-.077-.004-.071-.005-.08-.006-.09-.007-.085-.008-.094-.01-.1-.01-.105-.013-.108-.015-.112-.014-.38-.273zm.38.273-.26-.036-.12-.237zm.326-1.117.194.38-.9.464-.194-.38.353-.732zm-.547-.268.373-.075.174.343zm-.976 1.19.182-1.003h-.182l.024-.004.028-.006.03-.005.03-.006.029-.006.03-.006.028-.005.03-.006.029-.005.022-.004.04-.008.03-.005.021-.005.031-.006.03-.006.033-.006.04-.007.032-.005.012-.002.03-.007.042-.008.033-.006.03-.006.035-.007.023-.004.032-.007.042-.008.025-.004.034-.007.04-.008.026-.005.034-.007.196 1-.034.008-.04.007-.024.004-.034.007-.04.008-.022.004-.032.007-.042.008-.03.005-.03.006-.033.006-.02.004-.031.007-.05.009-.031.005-.022.005-.028.006-.03.006-.031.006-.038.007-.03.005-.02.004-.038.008-.028.005-.03.006-.029.005-.03.006-.027.004-.028.006-.027.005-.027.006-.034.006zm.182 0-.091.017-.09-.017zm-.623-.458-.9-.464.549-.267.033.007.024.004.042.008.032.007.025.004.043.008.032.007.025.005.031.006.033.006.03.006.041.007.034.008.012.002.03.005.043.007.03.006.031.006.03.006.022.005.03.005.04.008.023.004.028.005.03.006.029.005.03.006.03.006.028.006.031.005.028.006.023.004-.181 1.003-.034-.006-.027-.006-.026-.005-.029-.006-.027-.004-.03-.006-.029-.005-.03-.006-.028-.005-.037-.008-.02-.004-.03-.005-.04-.007-.03-.006-.03-.006-.03-.006-.02-.005-.03-.005-.05-.01-.03-.005-.023-.005-.031-.006-.032-.006-.031-.006-.04-.007-.032-.007-.022-.004-.041-.008-.033-.007-.025-.004-.04-.008-.034-.007zm-.9-.464.174-.342.375.075zm-.194.38.194-.38.9.464-.194.38-.38.273zm.9.464-.12.237-.26.036zm-.979-.364h-1.012l.71.465-.03.015-.03.015-.022.011-.002.001.005-.004.018-.014.029-.03.049-.07.051-.142v-.188l-.079-.178-.11-.112-.071-.042-.031-.012-.024-.006h-.004.008l.022.001.028.002h.133l.052-.005.068-.005.068-.004.072-.007.085-.008.086-.007.088-.01.093-.011.103-.015.107-.014.139 1.01-.113.015-.107.014-.105.013-.103.011-.093.01-.085.007-.088.007-.08.006-.073.005-.076.004-.074.002h-.123l-.06-.003-.06-.004-.06-.008-.064-.01-.074-.021-.07-.027-.102-.059-.129-.13-.087-.2v-.212l.06-.168.07-.1.058-.058.058-.048.055-.037.057-.035.05-.025.05-.026.06-.026.71.465zm-.71-.466.71-.316v.782zm-.302 2.552v-2.086h1.012v2.086l-.064.25zm1.012 0v.133l-.064.116zm-33.684-.16-.936-.388.862-.125 1.233 1.508 1.22 1.41 1.207 1.313 1.194 1.214 1.178 1.115 1.165 1.018 1.148.918 1.137.822 1.12.723 1.104.627 1.09.53 1.073.433 1.057.336 1.042.244 1.027.148 1.012.056.998-.036.986-.131.977-.223.964-.316.956-.41.947-.504.94-.6.93-.697.922-.793.913-.89.904-.988.894-1.085.883-1.183.874-1.28.864-1.378.851-1.477.883.498-.87 1.506-.883 1.41-.898 1.315-.912 1.22-.925 1.125-.942 1.029-.956.93-.971.838-.989.74-1.004.64-1.02.544-1.035.445-1.053.343-1.065.244-1.081.143-1.091.04-1.103-.06-1.113-.162-1.123-.26-1.132-.362-1.14-.461-1.15-.558-1.157-.657-1.166-.754-1.177-.85-1.187-.948-1.196-1.046-1.207-1.142-1.217-1.238-1.229-1.337-1.239-1.432-1.25-1.53zm-.936-.388.325-.8.537.675zm-28.302 1.527-.912-.44.884-.053 1.07 1.655 1.06 1.544 1.047 1.434 1.038 1.324 1.025 1.212 1.012 1.1 1 .993.988.879.973.77.956.659.942.55.927.44.909.334.892.227.877.124.864.02.851-.083.842-.186.835-.29.83-.396.825-.502.817-.61.814-.723.807-.83.799-.945.791-1.056.782-1.166.774-1.279.761-1.391.753-1.502.74-1.614.73-1.726.936.387-.742 1.752-.754 1.643-.767 1.536-.784 1.425-.795 1.317-.81 1.21-.825 1.102-.841.992-.858.884-.873.775-.892.665-.908.554-.928.441-.943.328-.958.21-.973.096-.982-.023-.99-.138-.996-.254-1.001-.367-1.007-.48-1.01-.59-1.017-.7-1.023-.808-1.027-.918-1.036-1.026-1.044-1.134-1.051-1.243-1.06-1.351-1.066-1.46-1.076-1.568-1.085-1.677zm-.912-.44.394-.83.49.777zm-25.7 6.545.002-1.02.424.233.83 1.25.828 1.156.824 1.06.819.967.816.871.812.78.806.681.8.59.793.496.788.404.78.313.773.224.769.136.764.048.764-.039.763-.127.765-.213.767-.303.774-.395.776-.486.782-.578.783-.672.786-.768.787-.86.79-.956.79-1.05.792-1.144.791-1.24.79-1.335.792-1.428.79-1.524.79-1.616.912.44-.8 1.638-.802 1.546-.805 1.454-.807 1.361-.81 1.269-.814 1.177-.816 1.085-.821.993-.825.902-.83.809-.835.718-.842.624-.848.529-.854.435-.863.342-.868.242-.873.144-.876.046-.878-.056-.877-.155-.873-.252-.87-.35-.867-.444-.863-.54-.86-.633-.856-.725-.852-.818-.852-.909-.85-1.003-.85-1.094-.85-1.185-.849-1.278zm.002-1.02h.275l.15.233zm-2.077.796-1.007-.077.335-.441.08-.028.078-.024.078-.023.086-.022.077-.019.081-.018.088-.016.078-.015.086-.016.085-.012.084-.01.086-.011.083-.008.09-.01.085-.005.085-.007.091-.006.084-.005.088-.005.092-.004.088-.002.086-.002.09-.004.09-.001.088-.001.087-.001.09-.001h.446l-.002 1.02h-.519l-.087.002h-.088l-.083.002h-.082l-.086.003-.081.002-.078.004-.081.005-.084.005-.074.004-.079.007-.077.006-.073.007-.074.008-.072.008-.074.01-.068.01-.067.01-.069.012-.06.012-.065.016-.066.015-.055.014-.058.018-.058.017-.052.018.335-.442zm-1.007-.077.025-.33.31-.111zm-17.892 3.674-.78.647.69-.733 1.076.784 1.043.724 1.009.666.975.605.94.547.908.486.874.427.838.37.802.31.766.251.732.191.695.135.659.08.62.021.585-.032.55-.087.516-.14.484-.19.452-.243.428-.297.4-.35.373-.41.351-.469.323-.528.299-.589.27-.65.242-.714.214-.773.183-.837.156-.898.125-.958.094-1.02 1.008.077-.097 1.056-.13.999-.162.941-.196.885-.228.829-.264.773-.298.718-.335.66-.369.604-.408.545-.445.487-.486.426-.52.364-.558.299-.59.233-.624.168-.653.101-.68.04-.71-.027-.734-.086-.764-.15-.792-.207-.821-.269-.848-.327-.878-.386-.907-.446-.939-.503-.969-.561-1-.622-1.03-.678-1.062-.739-1.094-.796zm10.885 18.497.043 1.018-.474-.282-.307-.617-.308-.617-.309-.614-.31-.615-.312-.613-.315-.611-.315-.609-.319-.607-.32-.606-.323-.604-.325-.601-.33-.599-.331-.596-.334-.595-.338-.589-.343-.59-.345-.584-.35-.58-.353-.58-.357-.574-.363-.571-.366-.569-.373-.564-.374-.56-.384-.555-.386-.553-.393-.546-.398-.543-.404-.537-.41-.535-.417-.528-.423-.523.78-.647.43.532.424.538.418.542.412.548.404.552.4.555.392.56.388.565.382.567.377.572.371.576.368.578.362.583.358.585.352.588.35.592.345.594.342.596.337.6.334.6.332.604.327.606.326.609.322.608.321.613.318.613.315.613.314.616.313.617.309.617.31.62.307.619zm.043 1.018-.327.013-.147-.295zm101.31-5.974-.053 1.018h.053l-3.162.166-3.162.167-3.162.166-3.162.166-3.163.164-3.162.166-3.163.165-3.162.164-3.163.164-3.164.163-3.163.162-3.164.162-3.164.162-3.164.16-3.165.158-3.164.158-3.166.157-3.164.157-3.169.154-3.165.154-3.167.151-3.167.152-3.168.149-3.168.148-3.17.147-3.17.144-3.17.143-3.17.14-3.171.14-3.172.137-3.173.136-3.173.134-.043-1.018 3.173-.133 3.173-.136 3.172-.137 3.169-.14 3.17-.14 3.17-.144 3.169-.144 3.168-.147 3.168-.148 3.168-.149 3.167-.151 3.167-.152 3.166-.154 3.165-.154 3.165-.156 3.166-.157 3.164-.158 3.165-.159 3.164-.16 3.163-.16 3.163-.163 3.163-.163 3.163-.162 3.163-.165 3.163-.163 3.163-.165 3.162-.166 3.162-.165 3.162-.166 3.162-.166 3.162-.167 3.162-.166zm-.053 0h.053zm101.33 4.955v1.02l-.021-.001-3.173-.134-3.173-.136-3.171-.137-3.172-.14-3.17-.14-3.17-.143-3.169-.144-3.17-.147-3.169-.148-3.166-.15-3.169-.15-3.166-.152-3.166-.154-3.167-.154-3.166-.156-3.164-.158-3.166-.157-3.163-.16-3.165-.16-3.163-.16-3.166-.163-3.163-.162-3.162-.162-3.163-.165-3.163-.164-3.163-.164-3.162-.166-3.162-.165-3.162-.166-3.162-.166-3.162-.167-3.162-.166.052-1.018 3.162.166 3.162.167 3.162.166 3.162.166 3.163.165 3.162.166 3.163.165 3.162.163 3.163.165 3.162.163 3.164.162 3.163.162 3.163.161 3.165.16 3.163.16 3.166.157 3.164.157 3.166.157 3.165.154 3.165.153 3.167.152 3.168.152 3.167.149 3.168.148 3.168.146 3.17.145 3.169.143 3.17.14 3.17.14 3.171.137 3.173.136 3.173.133zm0 1.02-.021-.001h.028zm.001 0v-1.02l.453.737zm.453-.283-.14.283h-.313z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m459.63 277.31 22.5-11.25 22.5 11.25-22.5 11.25z",style:{fill:"#edb92e"},transform:"matrix(1.01066 0 0 1.01824 -5.128 -6.19)"}),(0,h.jsx)("path",{d:"m473.89 259.19-.006.176c-17.488.781-48.477 2.522-93.121 5.366l6.534 31.05c29.651-.836 64.257-2.138 94.845-3.062 30.588.924 65.195 2.226 94.846 3.063l6.535-31.051c-44.64-2.86-75.63-4.6-93.12-5.38l-.006-.177c1.766-.348-.976-.408-8.254-.156-7.278-.253-10.018-.192-8.25.156h-.001z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m597.33 236.74-3.684-.62c-7.075 17.39-13.417 17.813-14.61 1.27 1.58-.568.957-3.334 2.748-2.228.94.579 2.131-1.07 1.354-1.977-2.005-1.482-3.788-1.252-5.541.398-.825-2.641-2.85-3.872-5.375-2.76-1.09.481-.717 2.458.378 2.345 1.768-.184 1.058 1.666 1.608 2.902-12.548 16.482-18.963 14.52-17.4-7.124-2.988-.62-6.466-1.238-9.577-2.352-11.548 23.346-19.765 24.35-26.418 3.4 1.425-1.069 1.02-3.752 3.102-2.89 1.174.486 2.16-1.6 1.11-2.49-2.431-2.06-5.07-1.364-6.838 1.285-1.42-2.854-3.949-3.883-6.62-2.149-1.152.748-.437 2.943.788 2.611 2.352-.636 1.296 2.474 3.076 3.54-5.101 19.696-30.867 21.02-26.65-8.13-2.365.079-4.502.16-6.63.239-2.13-.08-4.266-.16-6.632-.24 4.217 29.152-21.55 27.827-26.65 8.132 1.78-1.067.723-4.176 3.076-3.54 1.224.331 1.94-1.864.788-2.612-2.672-1.734-5.2-.705-6.62 2.15-1.768-2.65-4.408-3.347-6.838-1.285-1.05.89-.065 2.975 1.11 2.49 2.082-.863 1.676 1.82 3.101 2.888-6.652 20.95-14.869 19.947-26.416-3.399-3.11 1.114-6.59 1.732-9.578 2.352 1.563 21.644-4.851 23.607-17.4 7.124.55-1.236-.159-3.086 1.608-2.902 1.094.113 1.47-1.865.38-2.345-2.526-1.114-4.55.119-5.376 2.76-1.753-1.65-3.537-1.878-5.542-.398-.777.908.415 2.556 1.354 1.977 1.792-1.106 1.167 1.66 2.749 2.229-1.193 16.542-7.536 16.12-14.61-1.27l-3.684.619c-.113 4.087 1.306 8.434 3.807 11.63 10.608 13.554 18.499 10.479 18.788-4.701 13.89 16.392 24.394 14.319 26.278-2.97 11.685 21.808 30.433 11.371 30.82-1.856 5.147 19.226 33.666 19.09 35.49-3.007 1.822 22.096 30.34 22.232 35.487 3.007.388 13.227 19.136 23.665 30.82 1.855 1.884 17.29 12.389 19.363 26.279 2.97.287 15.18 8.178 18.256 18.788 4.702 2.5-3.194 3.92-7.543 3.806-11.63h-.002z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m593.72 235.62 3.684.62-.167 1.005-3.684-.62-.384-.696zm-.551.31.152-.377.399.067zm-14.312.983.339.96.334-.518.126 1.49.154 1.387.183 1.286.21 1.184.235 1.083.258.98.283.877.302.773.321.667.335.565.348.457.352.354.353.258.355.166.362.085.378.008.408-.075.44-.16.472-.257.503-.356.526-.458.547-.56.566-.66.581-.764.596-.868.607-.966.62-1.068.628-1.17.637-1.27.645-1.372.65-1.47.658-1.572.936.387-.665 1.589-.66 1.492-.657 1.393-.65 1.294-.641 1.196-.637 1.1-.629 1-.62.903-.614.807-.606.71-.6.612-.595.516-.591.42-.591.32-.59.216-.593.106-.586-.013-.567-.134-.536-.25-.499-.36-.457-.461-.422-.556-.387-.65-.357-.745-.329-.836-.3-.934-.271-1.029-.245-1.123-.215-1.22-.187-1.32-.16-1.417-.126-1.513zm-.335.517-.027-.387.361-.13zm3.517-2.7-.528.868-.132-.075-.111-.053-.089-.034-.065-.017-.038-.005-.02.001-.012.002-.002.001-.008.006-.02.018-.027.03-.033.045-.038.062-.04.077-.045.094-.045.101-.045.11-.05.124-.053.127-.054.13-.06.142-.066.14-.072.142-.082.146-.09.142-.101.14-.116.139-.13.13-.145.122-.16.11-.175.096-.191.08-.34-.96.094-.039.085-.047.076-.053.073-.061.068-.069.063-.076.064-.087.06-.094.057-.1.054-.11.053-.112.05-.117.051-.124.05-.124.05-.124.053-.127.058-.128.058-.122.067-.125.076-.125.09-.122.106-.117.123-.104.147-.093.17-.068.177-.039.185-.008.187.022.182.046.182.067.185.09zm.79-1.132.6-.822.083.078.099.13.084.135.068.144.052.144.036.145.025.146.009.152-.004.143-.016.14-.024.141-.035.135-.042.131-.054.131-.06.124-.069.12-.074.112-.08.108-.09.104-.095.097-.101.09-.107.082-.117.076-.121.065-.127.054-.133.044-.145.032-.147.013-.144-.001-.153-.02-.15-.04-.146-.056-.14-.077.527-.868.036.02.035.013.03.008.028.002h.037l.034-.003.033-.007.043-.014.045-.02.047-.024.045-.03.048-.039.049-.042.045-.047.046-.053.042-.057.041-.06.035-.062.032-.066.025-.061.023-.069.016-.065.012-.063.006-.064.001-.061-.002-.053-.008-.053-.014-.056-.017-.048-.022-.046-.029-.045-.035-.046zm.6-.822.045.033.038.045zm-6.324.962.965-.306-.827-.22.175-.16.176-.15.176-.145.18-.136.18-.127.182-.119.183-.11.185-.1.187-.091.189-.083.188-.071.193-.065.195-.053.194-.042.197-.034.2-.022.197-.01.2-.002.2.01.2.02.201.03.202.043.2.052.201.062.2.073.202.083.2.095.2.103.2.114.2.124.2.132.202.143-.599.823-.173-.124-.172-.116-.17-.104-.168-.095-.163-.086-.163-.075-.158-.067-.158-.056-.156-.048-.154-.04-.152-.032-.15-.023-.148-.016-.146-.006h-.147l-.145.008-.145.017-.144.024-.146.033-.143.038-.145.048-.148.057-.145.063-.147.073-.15.081-.148.088-.15.098-.151.107-.15.114-.153.124-.154.133-.154.14zm.828.22-.587.552-.24-.772zm-5.518-2.666-.406-.934.257-.105.255-.093.251-.077.25-.064.25-.05.246-.035.244-.02.24-.007.236.007.233.02.231.035.226.05.218.063.216.076.21.089.202.1.2.115.192.129.182.137.176.148.172.16.162.173.155.181.147.19.141.2.133.21.126.22.117.228.11.236.103.245.093.254.087.26-.965.305-.075-.226-.081-.218-.086-.207-.093-.2-.098-.19-.103-.179-.108-.17-.112-.16-.119-.153-.121-.143-.125-.131-.128-.12-.135-.115-.138-.103-.14-.093-.144-.083-.149-.074-.15-.065-.157-.054-.16-.046-.164-.036-.168-.025-.173-.016-.176-.005-.183.005-.186.016-.191.027-.197.039-.2.052-.206.062-.21.076zm.123 1.372.105 1.012-.158.008-.158-.012-.15-.03-.144-.045-.136-.064-.124-.075-.114-.086-.103-.096-.093-.105-.082-.112-.072-.115-.062-.12-.054-.124-.045-.13-.036-.129-.027-.132-.02-.137-.009-.136-.002-.134.007-.138.018-.138.027-.139.037-.136.046-.132.061-.133.07-.125.083-.122.1-.119.109-.107.12-.096.134-.087.144-.072.406.933-.051.027-.045.029-.042.033-.037.035-.031.037-.03.047-.03.05-.022.052-.02.058-.019.061-.011.064-.008.069-.002.066v.076l.005.068.009.067.015.07.017.066.021.06.025.058.03.054.028.048.03.04.03.035.032.029.03.024.032.02.028.012.03.01.032.005.036.002h.043-.001zm2.062 3.718-.802-.62-.061.518-.059-.145-.051-.148-.042-.148-.033-.142-.03-.146-.025-.144-.02-.14-.016-.139-.014-.136-.012-.13-.012-.127-.01-.122-.014-.116-.013-.112-.014-.104-.017-.097-.018-.088-.02-.077-.023-.068-.024-.06-.022-.047-.023-.035-.022-.03-.023-.022-.025-.02-.028-.016-.042-.017-.055-.016-.069-.013-.086-.007h-.107l-.124.008-.105-1.012.193-.014h.182l.176.015.17.03.16.047.151.065.145.083.125.097.112.11.096.12.08.126.063.129.052.127.042.131.035.133.027.13.022.13.019.13.016.128.013.129.013.128.012.128.012.127.011.122.015.119.017.117.017.113.023.109.026.108.028.1.032.093.037.09zm.06-.518.124.277-.184.242zm-17.963-6.417.203-.998.402.536-.122 1.96-.076 1.846-.03 1.729.013 1.612.06 1.495.105 1.38.147 1.261.19 1.144.232 1.025.271.908.308.787.343.668.373.548.399.433.421.326.45.224.483.131.528.038.58-.057.636-.16.688-.267.738-.377.788-.49.833-.598.876-.712.92-.823.96-.933.998-1.045 1.039-1.155 1.078-1.264 1.115-1.373 1.151-1.484.803.62-1.164 1.499-1.13 1.393-1.094 1.283-1.058 1.176-1.023 1.07-.988.961-.953.852-.916.746-.886.637-.852.528-.822.42-.793.307-.767.192-.74.074-.712-.053-.674-.184-.626-.312-.57-.437-.508-.553-.45-.662-.395-.768-.342-.874-.295-.98-.246-1.09-.198-1.197-.154-1.307-.106-1.418-.06-1.529-.016-1.641.032-1.755.076-1.868.124-1.982zm.203-.998.434.09-.032.446zm-9.227-1.625-.904-.455.622-.252.287.1.29.1.292.095.292.093.296.09.298.09.299.087.298.084.301.082.302.08.302.077.303.077.304.074.304.073.305.071.304.071.302.067.304.068.303.066.302.064.302.063.301.064.299.063.298.06.298.061.293.06.293.06.294.058.289.059.287.058.285.059.282.057-.203.998-.282-.057-.283-.06-.287-.057-.288-.059-.292-.059-.293-.059-.298-.06-.296-.061-.298-.06-.303-.063-.303-.064-.302-.063-.307-.067-.306-.066-.307-.067-.309-.07-.308-.07-.308-.074-.309-.073-.308-.076-.31-.077-.31-.08-.306-.083-.308-.084-.308-.086-.306-.088-.305-.092-.303-.092-.305-.098-.3-.098-.3-.101-.297-.106zm-.904-.455.199-.404.423.152zm-26.267 3.217.604.818.179-.564.624 1.888.634 1.757.64 1.628.651 1.496.66 1.364.667 1.233.673 1.102.683.968.686.836.691.705.694.572.696.446.694.32.701.199.71.083.725-.035.746-.154.77-.274.797-.403.823-.532.846-.661.87-.794.89-.927.912-1.059.93-1.19.952-1.324.972-1.457.99-1.587 1.01-1.72 1.028-1.852 1.05-1.984 1.069-2.115.905.455-1.077 2.131-1.059 2.001-1.04 1.871-1.022 1.742-1.007 1.614-.988 1.483-.975 1.355-.958 1.227-.946 1.097-.932.97-.922.842-.913.714-.906.585-.9.453-.897.32-.891.183-.885.042-.873-.1-.853-.243-.83-.38-.807-.517-.781-.644-.76-.775-.74-.9-.72-1.027-.707-1.152-.692-1.277-.678-1.405-.664-1.53-.653-1.658-.644-1.783-.631-1.913zm-.18.564-.11-.347.29-.217zm3.776-3.515-.384.943-.156-.059-.134-.038-.115-.023-.098-.01-.075.002-.06.009-.05.015-.048.02-.046.029-.046.038-.048.048-.054.064-.055.077-.053.086-.056.103-.056.111-.058.123-.06.131-.058.137-.06.143-.064.15-.068.153-.07.158-.08.159-.08.156-.091.16-.1.16-.11.155-.12.15-.132.148-.147.141-.16.13-.604-.818.098-.08.09-.085.084-.095.084-.104.076-.11.074-.116.07-.124.069-.132.064-.133.063-.138.064-.143.06-.14.061-.146.064-.147.064-.146.067-.144.073-.143.077-.14.088-.14.095-.133.106-.128.122-.12.14-.111.155-.095.167-.076.183-.054.195-.029.2-.004.2.02.208.039.215.063zm.592-1.628.652-.78.13.123.114.131.099.14.084.149.067.15.054.155.037.158.026.156.01.159.002.154-.01.157-.022.152-.03.15-.042.147-.049.143-.06.142-.066.132-.074.129-.084.125-.096.12-.1.111-.11.1-.118.095-.129.084-.138.07-.145.057-.155.044-.16.023-.164.005-.168-.016-.165-.036-.166-.058.384-.943.054.02.049.009.045.006.043-.002.043-.006.043-.012.047-.019.047-.025.048-.031.05-.039.05-.048.05-.053.045-.057.043-.065.043-.074.038-.077.033-.077.028-.08.023-.085.017-.083.012-.086.006-.08v-.083l-.007-.08-.012-.074-.017-.073-.023-.066-.029-.066-.032-.058-.042-.058-.049-.056zm-6.965 1.123.905-.457-.873-.055.18-.259.184-.246.19-.234.197-.223.2-.21.207-.2.213-.186.217-.173.223-.162.227-.146.23-.133.238-.12.24-.105.243-.09.249-.077.25-.06.255-.045.255-.029.258-.013.259.004.259.02.261.034.262.053.259.07.26.084.26.102.255.12.255.133.253.151.25.166.25.184.246.2-.652.78-.21-.172-.211-.155-.21-.14-.208-.124-.208-.11-.207-.095-.204-.08-.203-.068-.204-.053-.2-.04-.2-.028-.196-.015h-.197l-.196.007-.193.022-.192.035-.191.046-.191.057-.189.071-.19.083-.185.094-.185.107-.184.119-.182.131-.18.142-.176.158-.175.167-.172.179-.169.192-.166.205-.16.215-.158.227zm.873.055-.485.725-.388-.78zm-6.766-2.005-.547-.856.268-.166.27-.15.27-.135.271-.116.27-.101.269-.085.268-.068.269-.05.266-.037.266-.016.262-.004.26.014.258.03.254.047.25.061.244.076.244.093.235.107.231.12.225.136.218.148.214.163.205.175.202.187.193.201.187.21.181.224.172.235.167.246.159.258.151.267.146.279-.905.457-.126-.246-.135-.235-.137-.224-.144-.21-.148-.201-.152-.19-.156-.177-.16-.165-.163-.154-.167-.14-.171-.13-.173-.117-.177-.107-.179-.094-.18-.083-.184-.068-.187-.06-.19-.046-.192-.035-.194-.023-.198-.009-.201.001-.205.014-.206.027-.209.04-.214.055-.218.067-.22.082-.223.097-.223.111-.23.129-.23.142zm.382 1.691.262.984-.17.036-.17.015-.17-.005-.163-.027-.154-.044-.149-.062-.135-.074-.129-.088-.118-.101-.105-.108-.096-.116-.084-.121-.08-.13-.067-.136-.057-.135-.052-.144-.04-.146-.031-.148-.022-.151-.012-.153-.001-.155.008-.155.02-.154.033-.155.045-.154.057-.148.072-.15.088-.142.1-.134.116-.126.13-.115.145-.105.547.856-.061.045-.054.048-.046.052-.043.056-.036.06-.031.062-.026.07-.022.073-.016.078-.01.082-.006.083v.083l.008.085.012.084.018.086.022.083.028.077.033.08.036.07.037.063.044.06.043.054.045.046.042.036.043.03.044.024.042.018.042.01.044.008.043.002.049-.005zm3.697 4.162-.98-.258.231.567-.198-.133-.18-.146-.163-.16-.143-.167-.125-.174-.113-.18-.097-.183-.085-.181-.076-.186-.066-.181-.06-.18-.053-.176-.052-.172-.047-.17-.043-.156-.047-.152-.044-.143-.045-.13-.046-.116-.049-.106-.046-.088-.047-.07-.047-.057-.045-.045-.047-.033-.049-.027-.058-.02-.078-.016-.095-.006-.122.006-.146.02-.174.041-.263-.984.249-.057.236-.035.227-.01.22.015.208.042.197.068.18.096.16.116.14.133.118.146.102.153.085.157.072.159.065.162.057.166.052.163.049.166.047.165.046.163.046.16.05.16.052.155.053.15.058.14.065.138.068.13.073.118.083.113.088.103.095.094.107.087.119.079zm-.23-.567.325.196-.095.37zm-26.894-7.184-.033-1.018.517.582-.306 2.616-.14 2.435.014 2.26.16 2.084.294 1.911.42 1.742.535 1.573.639 1.408.734 1.247.819 1.09.896.936.962.786 1.022.64 1.075.498 1.118.358 1.153.22 1.183.085 1.205-.05 1.215-.184 1.216-.316 1.212-.445 1.195-.574 1.17-.698 1.136-.825 1.093-.95 1.039-1.068.977-1.189.905-1.306.825-1.42.733-1.535.635-1.645.526-1.755.98.258-.549 1.829-.663 1.72-.769 1.607-.865 1.49-.953 1.373-1.03 1.253-1.098 1.132-1.158 1.004-1.21.878-1.247.747-1.28.614-1.303.48-1.317.34-1.32.2-1.314.054-1.298-.093-1.272-.242-1.236-.397-1.189-.55-1.129-.708-1.06-.866-.98-1.025-.89-1.183-.792-1.343-.681-1.505-.566-1.664-.442-1.828-.307-1.993-.164-2.159-.015-2.327.143-2.5.313-2.672zm-.033-1.018.604-.02-.087.602zm-6.632 1.257.038-1.017h-.038l.2-.007.198-.007.2-.008.201-.007.2-.007.201-.007.2-.007.2-.008.203-.007.202-.007.202-.007.203-.008.204-.007.204-.007.203-.007.205-.008.207-.007.206-.007.208-.007.206-.007.21-.008.212-.007.211-.007.209-.007.214-.008.216-.007.215-.007.216-.007.216-.007.218-.008.22-.007.222-.007.033 1.017-.22.007-.219.007-.218.008-.219.007-.216.007-.215.007-.213.007-.212.008-.213.007-.212.007-.207.007-.21.008-.208.007-.208.007-.206.007-.205.007-.205.008-.205.007-.204.007-.202.007-.203.008-.204.007-.202.007-.2.007-.2.008-.203.007-.2.007-.2.007-.199.007-.2.008-.201.007-.198.007zm.038 0-.02.001-.018-.001zm-6.151-.821-1 .146.516-.582.221.007.22.007.22.008.217.007.216.007.215.007.214.007.213.008.211.007.211.007.212.007.21.008.206.007.208.007.207.007.206.007.205.008.203.007.204.007.206.007.203.008.2.007.202.007.203.007.2.008.201.007.2.007.2.007.202.007.199.008.2.007.2.007-.038 1.018-.199-.007-.201-.007-.2-.008-.199-.007-.2-.007-.2-.007-.203-.007-.2-.008-.2-.007-.203-.007-.203-.007-.202-.008-.203-.007-.204-.007-.206-.007-.205-.008-.204-.007-.207-.007-.207-.007-.21-.007-.21-.008-.206-.007-.211-.007-.214-.007-.212-.008-.213-.007-.215-.007-.216-.007-.218-.007-.22-.008-.218-.007-.221-.007zm-1 .146-.088-.602.604.02zm-26.409 7.62.518.876.23-.567.527 1.755.635 1.645.733 1.535.825 1.42.905 1.306.976 1.188 1.04 1.07 1.092.949 1.135.825 1.173.698 1.195.574 1.211.445 1.217.316 1.215.183 1.203.05 1.183-.084 1.154-.22 1.119-.358 1.073-.498 1.022-.64.962-.786.896-.936.82-1.09.733-1.247.64-1.408.535-1.573.419-1.742.295-1.91.16-2.085.014-2.26-.14-2.435-.307-2.616 1-.147.314 2.672.143 2.5-.015 2.327-.164 2.159-.307 1.993-.44 1.828-.566 1.664-.683 1.505-.792 1.343-.89 1.183-.98 1.025-1.06.866-1.13.707-1.187.55-1.235.398-1.274.242-1.298.093-1.313-.055-1.32-.2-1.317-.34-1.302-.479-1.28-.614-1.25-.747-1.209-.878-1.156-1.004-1.1-1.132-1.029-1.253-.952-1.373-.866-1.49-.768-1.607-.664-1.72-.548-1.83zm-.23.567-.095-.37.325-.197zm3.696-4.161-.263.983-.174-.04-.145-.021-.12-.005-.1.006-.076.014-.058.022-.05.025-.046.035-.046.045-.045.054-.046.072-.048.09-.049.103-.045.118-.046.13-.044.14-.044.154-.047.16-.046.166-.052.172-.052.175-.06.18-.067.183-.075.183-.086.185-.098.183-.11.177-.125.173-.144.17-.162.158-.18.147-.199.132-.518-.875.12-.08.106-.086.095-.094.087-.102.081-.113.076-.122.069-.127.062-.135.058-.144.055-.15.05-.153.05-.161.047-.16.047-.164.046-.165.05-.164.05-.165.058-.164.065-.163.072-.159.084-.155.102-.154.12-.148.14-.131.159-.117.18-.095.197-.07.211-.04.215-.016.228.009.237.035.249.058zm.383-1.691.547-.857.144.105.13.115.116.127.101.136.086.14.073.147.057.15.046.154.032.155.02.157.009.155-.002.153-.012.152-.022.15-.031.15-.04.145-.05.142-.058.14-.07.136-.076.126-.085.123-.098.116-.104.107-.118.101-.13.088-.134.075-.15.061-.153.045-.164.026-.17.005-.17-.014-.17-.036.263-.984.057.012.05.005.042-.002.044-.007.042-.011.042-.018.044-.024.043-.03.042-.036.046-.047.043-.052.04-.06.041-.066.036-.071.032-.075.028-.079.024-.083.016-.083.012-.087.007-.085v-.085l-.004-.083-.01-.08-.016-.078-.022-.072-.026-.068-.032-.065-.036-.062-.042-.054-.046-.052-.054-.048zm-6.765 2.004.838-.567-.871.055.145-.279.152-.267.159-.257.167-.247.172-.233.18-.225.187-.212.194-.2.202-.187.205-.174.214-.164.218-.148.224-.136.23-.12.237-.107.242-.093.245-.075.25-.062.254-.047.259-.03.259-.014.263.004.265.017.267.036.269.05.268.069.269.084.27.1.27.117.27.135.271.15.268.166-.547.857-.232-.142-.228-.129-.225-.11-.224-.098-.218-.082-.218-.067-.214-.054-.209-.041-.208-.026-.203-.015-.203-.001-.197.009-.194.023-.192.035-.19.047-.187.059-.183.068-.182.083-.177.094-.177.107-.173.117-.17.13-.168.14-.164.154-.16.166-.156.176-.151.189-.148.202-.144.21-.137.224-.135.235-.126.246zm.872-.055-.388.78-.484-.725zm-6.966-1.123-.651-.78.246-.2.249-.183.25-.166.254-.152.255-.133.256-.12.259-.101.259-.085.259-.07.261-.052.262-.035.26-.02.258-.003.257.013.256.029.254.044.252.06.248.077.243.09.24.105.236.12.232.134.228.146.222.162.217.173.212.186.206.197.203.21.196.226.19.233.185.247.178.258-.838.568-.159-.227-.16-.216-.167-.204-.168-.191-.172-.18-.177-.168-.176-.157-.18-.142-.18-.133-.183-.118-.187-.107-.186-.093-.19-.083-.19-.071-.188-.058-.192-.046-.192-.035-.194-.021-.195-.008h-.196l-.198.015-.2.028-.2.04-.2.054-.205.067-.204.08-.208.096-.207.109-.21.125-.208.14-.212.155zm.592 1.628.385.943-.166.058-.166.036-.167.015-.166-.005-.16-.022-.155-.044-.146-.056-.137-.072-.127-.083-.119-.093-.111-.102-.101-.112-.094-.119-.083-.124-.075-.13-.068-.134-.058-.14-.05-.14-.041-.15-.03-.15-.022-.154-.009-.155v-.154l.012-.159.025-.156.04-.16.052-.153.067-.15.085-.15.097-.138.114-.132.131-.123.652.78-.055.05-.047.056-.043.059-.032.057-.029.066-.023.069-.018.07-.01.075-.008.08v.082l.005.083.012.084.018.083.022.082.03.083.033.079.036.075.042.072.046.066.045.059.049.052.049.047.05.04.05.032.047.024.045.018.043.012.043.006.044.002.046-.006.049-.01.053-.018zm3.775 3.516-.962-.31.179.563-.16-.13-.147-.14-.132-.148-.12-.15-.11-.156-.1-.16-.09-.16-.082-.156-.079-.159-.071-.158-.066-.152-.064-.148-.061-.145-.059-.138-.06-.13-.057-.123-.056-.112-.056-.102-.055-.09-.053-.075-.052-.061-.049-.049-.049-.04-.043-.027-.047-.02-.053-.016-.058-.01h-.077l-.096.009-.116.023-.133.038-.156.059-.384-.943.22-.083.214-.062.209-.04.2-.02.2.005.194.028.182.055.17.075.155.095.137.11.123.12.108.131.095.134.085.137.078.14.073.144.067.144.064.145.064.147.06.143.063.143.063.145.062.137.064.132.07.132.069.124.074.117.076.11.084.104.085.095.09.085.097.08zm-.18-.565.29.217-.11.348zm-26.548-2.51-.34-.96.623.253 1.07 2.115 1.049 1.984 1.027 1.852 1.012 1.72.99 1.588.97 1.456.95 1.324.933 1.19.911 1.059.892.927.869.794.846.661.822.532.797.403.77.274.747.154.724.035.71-.083.7-.2.696-.319.695-.446.693-.572.692-.705.686-.836.683-.968.673-1.102.667-1.233.66-1.364.65-1.496.64-1.628.635-1.757.624-1.888.962.31-.631 1.913-.644 1.783-.653 1.659-.665 1.53-.678 1.404-.69 1.277-.708 1.152-.72 1.026-.74.901-.76.775-.782.644-.804.516-.832.381-.854.243-.871.1-.885-.042-.891-.183-.898-.32-.899-.453-.906-.585-.913-.714-.922-.842-.932-.97-.946-1.097-.959-1.227-.974-1.355-.988-1.483-1.007-1.614-1.023-1.742-1.04-1.87-1.058-2.002-1.077-2.131zm-.34-.96.423-.15.2.403zm-8.904 2.795-1.008.074.403-.536.281-.058.286-.059.287-.058.29-.059.292-.059.293-.059.293-.06.298-.06.3-.061.297-.063.3-.063.304-.064.3-.064.304-.066.304-.067.304-.068.303-.07.305-.071.304-.074.304-.073.302-.077.302-.078.303-.08.301-.082.298-.084.299-.088.298-.089.296-.09.293-.092.292-.096.29-.099.287-.1.339.959-.297.106-.301.1-.3.1-.304.097-.303.092-.306.092-.306.087-.308.087-.308.084-.307.082-.31.08-.309.078-.309.075-.308.074-.308.073-.31.07-.308.07-.307.068-.306.066-.305.066-.303.064-.304.064-.302.062-.3.06-.295.062-.298.06-.293.059-.29.059-.291.059-.286.058-.283.058-.281.058zm-1.008.074-.032-.446.435-.09zm-17.359 6.88.924.416-.06-.519 1.151 1.483 1.116 1.375 1.077 1.264 1.039 1.154 1 1.045.958.935.92.821.877.712.832.6.788.489.739.376.687.267.634.16.583.058.527-.039.484-.13.449-.225.42-.325.4-.433.373-.549.343-.667.309-.788.27-.907.231-1.026.191-1.143.147-1.262.104-1.38.06-1.494.014-1.613-.029-1.728-.077-1.846-.122-1.96 1.007-.075.125 1.982.077 1.867.031 1.755-.015 1.642-.061 1.528-.106 1.418-.154 1.307-.199 1.197-.245 1.088-.294.982-.343.874-.395.769-.45.661-.508.553-.57.437-.625.313-.675.184-.711.053-.74-.075-.768-.191-.792-.308-.823-.42-.852-.529-.885-.636-.918-.746-.952-.852-.987-.961-1.025-1.07-1.057-1.176-1.094-1.283-1.13-1.391-1.164-1.5zm.061.518-.184-.242.123-.277zm2.06-3.719-.102 1.013h-.001l-.124-.008h-.108l-.086.007-.069.013-.053.014-.041.019-.03.016-.025.02-.021.021-.023.03-.024.038-.024.047-.022.057-.022.065-.02.08-.02.091-.016.095-.014.104-.013.109-.011.117-.012.123-.012.13-.014.13-.013.134-.017.138-.02.14-.023.143-.03.148-.036.144-.04.145-.052.148-.058.146-.924-.416.037-.09.032-.093.029-.102.026-.106.02-.107.02-.115.016-.117.015-.12.013-.123.012-.128.011-.125.012-.126.013-.129.016-.13.02-.13.02-.132.03-.128.032-.129.043-.135.053-.13.065-.128.079-.124.094-.12.112-.11.128-.098.142-.082.15-.064.161-.048.17-.03.176-.015h.182l.193.014zm.126-1.372.406-.933.144.072.134.086.12.097.112.108.095.115.082.12.074.13.059.133.046.13.039.138.027.14.016.135.007.136-.001.14-.011.136-.02.132-.025.133-.037.133-.046.127-.052.123-.062.121-.074.118-.081.11-.093.104-.103.097-.115.086-.124.075-.136.063-.144.046-.15.03-.157.012-.158-.008.103-1.012h.043l.036-.001.032-.006.03-.01.028-.013.031-.019.031-.024.031-.029.031-.035.031-.042.029-.045.026-.052.027-.06.021-.063.018-.065.014-.066.01-.072.005-.071.001-.067-.005-.071-.008-.07-.01-.061-.017-.06-.023-.062-.022-.053-.027-.044-.032-.047-.033-.041-.035-.034-.042-.033-.045-.03-.052-.026zm-5.517 2.666.69-.745-.828.22.087-.26.094-.254.102-.245.11-.236.117-.228.127-.22.132-.21.14-.2.148-.19.154-.182.164-.172.171-.16.174-.148.184-.138.192-.128.197-.114.205-.101.208-.089.215-.077.222-.063.226-.049.228-.034.233-.022.238-.007.242.007.243.021.245.035.248.05.25.063.254.078.254.093.257.106-.406.933-.214-.089-.211-.076-.205-.063-.201-.05-.196-.04-.192-.027-.186-.017-.182-.005-.176.005-.173.016-.169.026-.163.035-.16.046-.155.055-.154.065-.147.075-.145.083-.14.091-.135.105-.136.114-.13.121-.125.132-.12.14-.118.153-.113.161-.108.17-.103.18-.098.19-.093.2-.086.207-.08.217-.076.226zm.827-.22-.241.772-.586-.552zm-5.642-.217-.766-.667.085-.078.2-.143.201-.132.2-.125.2-.112.2-.104.201-.093.2-.083.201-.074.202-.064.2-.051.2-.041.201-.031.201-.02.202-.011.198.002.2.01.199.022.195.034.195.043.193.053.192.062.191.073.189.083.187.09.185.102.183.11.182.118.181.127.179.136.177.145.175.15.176.16-.69.746-.154-.14-.154-.134-.153-.124-.15-.114-.15-.107-.151-.098-.15-.088-.149-.081-.147-.073-.145-.063-.146-.056-.147-.048-.145-.04-.145-.032-.145-.024-.142-.017-.147-.008h-.146l-.147.006-.148.016-.15.024-.153.031-.153.04-.154.047-.158.059-.162.066-.16.075-.164.086-.169.095-.17.104-.171.115-.174.124zm-.766-.667.036-.042.049-.036zm1.473 1.876.528.869-.14.075-.146.058-.152.04-.152.02h-.144l-.146-.013-.146-.031-.133-.045-.126-.054-.12-.065-.116-.074-.11-.083-.1-.09-.094-.097-.091-.104-.081-.109-.074-.113-.07-.121-.058-.122-.054-.128-.043-.134-.035-.134-.024-.141-.016-.14-.002-.148.01-.148.022-.144.037-.147.052-.144.068-.144.084-.135.099-.13.766.666-.035.046-.028.046-.023.046-.016.048-.014.053-.008.055-.005.057.002.057.006.064.012.064.017.065.022.066.027.064.032.068.034.06.04.06.043.057.043.052.05.048.047.042.048.037.046.031.047.024.047.02.04.014.034.007.033.004.037-.001.03-.002.028-.008.034-.012.037-.02zm3.517 2.7-1.008-.074.334.517-.19-.08-.176-.096-.16-.11-.146-.123-.127-.13-.116-.137-.103-.142-.09-.143-.08-.144-.073-.142-.066-.141-.061-.14-.054-.132-.052-.126-.05-.124-.046-.112-.045-.102-.042-.09-.042-.076-.04-.065-.033-.046-.027-.031-.017-.014-.009-.006-.005-.002-.008-.002-.021-.001-.039.005-.065.016-.088.034-.111.053-.133.076-.528-.868.19-.11.185-.089.182-.067.182-.046.186-.022.187.008.178.039.167.067.148.093.126.108.104.115.088.12.076.123.068.125.06.128.055.126.053.126.05.124.05.124.051.123.052.118.051.112.056.11.056.101.06.093.062.086.066.077.068.07.071.06.077.053.085.047.093.04zm-.335-.517.362.13-.027.387zm-14.696-.287-.167-1.006.552.31.658 1.571.65 1.471.645 1.371.636 1.27.63 1.17.617 1.068.608.967.597.867.58.764.566.661.548.56.526.458.501.356.472.256.442.161.407.075.378-.008.362-.086.354-.166.355-.257.352-.355.346-.457.337-.564.32-.667.303-.772.282-.878.259-.98.234-1.083.21-1.184.182-1.286.154-1.388.127-1.489 1.007.075-.126 1.513-.159 1.416-.187 1.32-.215 1.22-.244 1.124-.273 1.028-.299.933-.328.837-.357.745-.389.65-.42.556-.46.46-.497.361-.536.25-.567.134-.586.013-.591-.106-.592-.216-.591-.319-.592-.42-.594-.517-.6-.612-.606-.71-.614-.806-.62-.904-.63-1-.635-1.1-.643-1.196-.65-1.294-.655-1.393-.66-1.492-.665-1.589zm-.167-1.006.4-.067.152.376zm-3.683.62 3.683-.62.167 1.006-3.683.62-.589-.518zm-.422.488.012-.42.41-.068zm4.71 11.329-.796.63-.238-.313-.232-.318-.224-.326-.219-.33-.211-.338-.203-.342-.198-.348-.19-.352-.183-.358-.175-.362-.167-.365-.161-.37-.152-.375-.146-.376-.137-.38-.13-.384-.122-.386-.113-.387-.106-.39-.098-.393-.09-.394-.081-.395-.073-.397-.064-.397-.056-.398-.048-.398-.038-.4-.03-.398-.02-.398-.014-.398-.002-.397.007-.396 1.01.029-.005.371.002.373.011.374.02.377.028.376.036.377.045.376.054.376.06.376.07.375.076.375.085.373.093.373.1.369.108.368.114.367.123.362.13.36.139.358.144.355.152.348.16.347.166.342.173.338.178.333.186.329.193.323.2.318.204.311.212.307.218.3.224.293zm18.773-4.717-.768.662.89-.322-.05 1.405-.094 1.335-.139 1.263-.18 1.192-.223 1.12-.266 1.048-.306.974-.35.901-.389.825-.432.75-.474.673-.516.593-.558.512-.6.428-.638.34-.676.247-.705.154-.734.061-.76-.033-.78-.127-.801-.219-.819-.307-.84-.4-.859-.49-.875-.581-.894-.671-.913-.765-.93-.857-.949-.948-.963-1.043-.981-1.139-.997-1.234.795-.63.975 1.21.96 1.112.94 1.016.917.92.897.826.875.73.849.638.824.547.797.455.766.366.735.276.706.193.668.109.638.027.605-.05.574-.125.544-.2.52-.276.494-.354.47-.43.444-.511.417-.593.389-.674.356-.755.323-.836.289-.914.252-.994.213-1.07.174-1.15.133-1.221.092-1.297.048-1.37zm-.89.321.025-1.342.865 1.021zm27.229-3.202-.89.483.947-.186-.204 1.596-.254 1.508-.306 1.419-.354 1.33-.403 1.24-.45 1.152-.501 1.062-.55.97-.595.877-.643.784-.691.69-.74.592-.783.49-.826.39-.867.286-.904.179-.937.073-.968-.032-.995-.138-1.023-.24-1.05-.345-1.076-.449-1.1-.55-1.124-.652-1.15-.758-1.172-.861-1.196-.964-1.218-1.069-1.241-1.175-1.26-1.28-1.283-1.386-1.3-1.494.768-.661 1.282 1.472 1.26 1.364 1.24 1.257 1.212 1.148 1.19 1.043 1.16.937 1.133.832 1.105.726 1.072.624 1.042.521 1.006.42.972.319.934.22.898.124.86.027.823-.063.784-.156.75-.246.716-.337.683-.428.65-.522.616-.613.582-.71.548-.804.508-.901.47-.997.427-1.091.385-1.186.34-1.282.296-1.37.248-1.466.199-1.557zm-.948.186.177-1.625.77 1.439zm31.812-1.933-.976.265.993-.117-.092 1.275-.2 1.25-.3 1.225-.397 1.188-.49 1.149-.576 1.104-.657 1.053-.736.997-.807.936-.877.868-.938.798-1 .718-1.052.636-1.102.547-1.147.451-1.188.35-1.22.247-1.255.132-1.276.014-1.297-.108-1.312-.237-1.317-.372-1.323-.51-1.32-.654-1.311-.802-1.301-.955-1.282-1.113-1.26-1.276-1.235-1.445-1.204-1.615-1.17-1.793-1.13-1.976.891-.484 1.1 1.926 1.137 1.742 1.164 1.563 1.189 1.389 1.208 1.223 1.222 1.06 1.232.907 1.237.757 1.239.613 1.234.476 1.227.345 1.217.22 1.2.102 1.184-.015 1.159-.123 1.133-.227 1.101-.326 1.066-.42 1.026-.508.983-.593.933-.673.878-.744.82-.813.757-.878.69-.932.615-.986.54-1.034.456-1.074.372-1.112.28-1.14.185-1.166.087-1.189zm35.504-2.916-1.007.084h1.007l-.252 2.05-.404 1.922-.547 1.795-.68 1.668-.804 1.542-.92 1.411-1.023 1.284-1.12 1.154-1.206 1.027-1.28.898-1.35.768-1.403.643-1.45.515-1.488.389-1.516.262-1.534.138-1.544.013-1.545-.11-1.535-.234-1.517-.356-1.489-.478-1.452-.6-1.407-.723-1.35-.844-1.286-.965-1.212-1.084-1.128-1.205-1.033-1.321-.93-1.442-.817-1.558-.696-1.674-.562-1.788.976-.265.536 1.702.66 1.59.774 1.478.88 1.363.978 1.252 1.066 1.137 1.145 1.026 1.217.912 1.28.798 1.331.685 1.377.568 1.412.455 1.438.337 1.456.222 1.464.105 1.463-.013 1.453-.131 1.435-.248 1.405-.367 1.368-.486 1.323-.605 1.267-.725 1.205-.842 1.131-.964 1.053-1.085.962-1.206.867-1.33.759-1.456.643-1.579.52-1.708.386-1.836.243-1.965zm35.49 3.033-1.01.031.992.117-.562 1.788-.696 1.674-.816 1.558-.931 1.442-1.033 1.321-1.128 1.205-1.212 1.085-1.286.964-1.35.844-1.407.721-1.452.602-1.491.478-1.516.356-1.534.234-1.545.11-1.544-.013-1.534-.138-1.516-.264-1.489-.388-1.449-.515-1.404-.64-1.349-.77-1.28-.899-1.206-1.026-1.12-1.154-1.024-1.285-.918-1.412-.804-1.54-.68-1.668-.546-1.796-.405-1.922-.252-2.049 1.008-.084.242 1.965.385 1.835.52 1.71.644 1.578.76 1.454.865 1.33.962 1.208 1.053 1.085 1.131.963 1.205.843 1.268.724 1.322.605 1.368.486 1.405.367 1.435.248 1.453.132 1.463.013 1.464-.106 1.455-.221 1.44-.337 1.411-.455 1.377-.57 1.332-.683 1.278-.798 1.218-.913 1.145-1.025 1.066-1.138.977-1.252.881-1.362.774-1.478.66-1.59.536-1.702zm30.818 1.816-1.005.11.948.187-1.13 1.976-1.17 1.793-1.204 1.615-1.234 1.445-1.26 1.276-1.282 1.113-1.302.955-1.31.802-1.32.655-1.323.51-1.318.371-1.312.237-1.296.107-1.276-.014-1.254-.133-1.222-.245-1.188-.351-1.147-.451-1.1-.547-1.055-.635-.999-.718-.938-.798-.877-.87-.807-.934-.737-.998-.656-1.053-.576-1.103-.49-1.149-.398-1.188-.3-1.224-.199-1.25-.092-1.276 1.01-.03.087 1.187.185 1.167.281 1.14.371 1.111.457 1.074.54 1.033.616.986.689.934.756.876.82.815.88.744.931.672.983.592 1.026.509 1.066.42 1.102.327 1.132.226 1.16.122 1.183.015 1.2-.1 1.217-.22 1.227-.345 1.235-.476 1.239-.614 1.236-.756 1.232-.907 1.223-1.06 1.208-1.224 1.189-1.389 1.163-1.562 1.137-1.743 1.1-1.925zm-.948-.186.771-1.439.177 1.625zm27.23 3.202-1.013.02.89.32-1.3 1.494-1.283 1.386-1.26 1.28-1.241 1.176-1.218 1.069-1.196.963-1.172.861-1.15.758-1.124.653-1.1.55-1.075.448-1.05.345-1.024.24-.995.138-.968.032-.937-.073-.904-.18-.867-.284-.826-.39-.783-.49-.74-.592-.69-.69-.644-.785-.596-.876-.55-.971-.5-1.062-.45-1.15-.403-1.242-.354-1.33-.306-1.42-.254-1.507-.204-1.596 1.005-.11.2 1.557.246 1.464.296 1.371.34 1.282.386 1.186.427 1.091.47.997.508.9.548.805.581.71.617.613.65.522.683.428.716.337.75.247.784.155.822.064.86-.028.899-.123.934-.221.972-.319 1.006-.42 1.042-.52 1.072-.624 1.104-.727 1.134-.832 1.16-.937 1.19-1.043 1.212-1.148 1.24-1.257 1.26-1.364 1.282-1.472zm-.891-.32.865-1.022.025 1.342zm18.774 4.716.795.63-.997 1.234-.981 1.139-.963 1.043-.95.95-.93.855-.913.765-.895.67-.875.582-.858.49-.84.4-.82.307-.8.22-.78.126-.76.033-.734-.06-.706-.155-.675-.248-.639-.339-.6-.428-.558-.512-.516-.593-.473-.674-.431-.749-.39-.825-.35-.9-.306-.975-.265-1.047-.223-1.12-.182-1.193-.137-1.263-.094-1.335-.05-1.404 1.012-.02.047 1.371.092 1.297.133 1.222.174 1.147.214 1.071.25.995.29.914.323.836.357.755.388.675.416.592.444.51.47.431.495.354.52.276.543.2.575.125.605.05.637-.027.67-.11.704-.192.737-.277.765-.365.796-.455.825-.547.85-.637.874-.732.897-.826.918-.919.94-1.016.96-1.112zm4.204-10.805v-1.02l.505.496.007.395-.002.397-.013.398-.02.398-.03.4-.04.399-.046.398-.056.398-.065.398-.073.397-.08.394-.09.395-.098.39-.105.392-.115.39-.123.383-.129.385-.138.379-.145.377-.153.373-.158.37-.17.367-.175.361-.183.357-.19.354-.196.347-.204.342-.21.337-.22.332-.224.324-.231.32-.24.312-.794-.63.224-.294.218-.3.212-.305.204-.312.2-.318.192-.322.186-.329.18-.334.173-.338.166-.341.158-.346.151-.35.146-.354.137-.359.132-.36.121-.363.116-.366.108-.368.1-.37.093-.371.085-.373.076-.375.07-.375.06-.377.054-.376.044-.377.037-.377.027-.376.02-.376.011-.374.002-.373-.005-.371zm0-1.02h.49l.015.496zm-.002 0h.002v1.02h-.002l-.084-.007zm0 1.02h-.04l-.044-.007z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 262.87q-1.804 0-3.605.006l-1.2.006-.616.002-1.115.006-.67.005-.433.002-.765.006-1.198.012-1.054.009-.225.002-.882.009q-1.314.015-2.623.034l-.29.005-.166.002-1.117.018-.342.004-.473.008-1.15.02h-.044l-1.192.023-.386.007-.804.015-.264.006-.927.02-1.19.025-.053.002-1.136.027-.481.01-.036.001q-2.118.052-4.233.112l-.575.017-1.612.05-.182.004-1.428.046-.94.03-.668.022-.186.007-1.422.05-.086.001-1.18.043-.053.002-1.128.044-.763.028-1.593.064h-.01q-3.143.129-6.277.274l-.298.014q-4.61.218-9.193.476l-.175.009-.455.026q-9.178.526-18.247 1.214l-.227.017-.075.007a965 965 0 0 0-26.328 2.369c-4.947.465-5.892-5.409 0-5.956a961 961 0 0 1 26.328-2.368l.075-.006a984 984 0 0 1 36.897-2.11l1.027-.038.156-.007.339-.012 1.18-.043.088-.004q7.633-.27 15.332-.427l.805-.017h.04l1.365-.026.174-.004h.043l1.149-.02.474-.008.72-.011.903-.013.29-.005.425-.006q1.58-.023 3.162-.039l1.003-.01.195-.003 1.198-.009q1.749-.014 3.5-.024h.098l1.2-.005a1082 1082 0 0 1 7.21 0l1.203.005h.097q1.751.01 3.5.024l1.2.01.193.001 1.002.011q1.584.017 3.162.039l.427.006.288.005.904.013.721.01.473.009 1.15.02h.043l.172.004 1.366.025.04.001.805.017q7.699.157 15.333.427l.086.004 1.18.043.34.012.156.007 1.028.039a984 984 0 0 1 36.897 2.11l.075.005a961 961 0 0 1 26.327 2.368c5.893.547 4.947 6.422 0 5.956a966 966 0 0 0-26.327-2.37l-.075-.006-.227-.017a978 978 0 0 0-18.247-1.214l-.455-.026-.175-.01q-4.584-.257-9.193-.475l-.3-.014q-3.132-.145-6.277-.274h-.01l-1.592-.064-.763-.028-1.128-.044-.052-.002-1.18-.043-.087-.002-1.422-.05-.186-.006-.669-.022-.94-.03-1.427-.046-.181-.005-1.613-.049-.575-.017q-2.114-.06-4.232-.112h-.036l-.48-.011-1.137-.027-.054-.002-1.19-.025-.927-.02-.263-.006-.806-.015-.385-.007-1.193-.023h-.043l-1.15-.02-.473-.008-.342-.004-1.116-.018-.167-.002-.289-.005q-1.312-.019-2.623-.034l-.884-.009-.223-.002-1.054-.009-1.2-.012-.764-.006-.434-.002-.669-.005-1.114-.006-.615-.002-1.202-.006q-1.801-.006-3.605-.006z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"M482.14 105.07c9.483 0 17.169 7.744 17.169 17.298s-7.686 17.298-17.169 17.298c-9.481 0-17.168-7.744-17.168-17.298s7.686-17.298 17.168-17.298",style:{fill:"#0c4076"}}),(0,h.jsx)("path",{d:"M485.26 84.894c1.678-.046 3.026-1.431 3.026-3.133 0-1.704-1.35-3.09-3.03-3.134-.01-1.723-1.399-3.117-3.112-3.117-1.711 0-3.1 1.395-3.11 3.118-1.68.043-3.031 1.429-3.031 3.133a3.125 3.125 0 0 0 3.027 3.133v6.425h-5.491c-.009-1.723-1.399-3.116-3.11-3.116-1.691 0-3.069 1.36-3.112 3.054-1.709.009-3.094 1.408-3.094 3.133s1.385 3.126 3.096 3.134c.043 1.694 1.418 3.055 3.11 3.055 1.666 0 3.028-1.323 3.106-2.983h5.494v21.372h6.23V97.596h5.494c.079 1.66 1.441 2.983 3.108 2.983 1.691 0 3.067-1.361 3.11-3.055 1.71-.008 3.094-1.408 3.094-3.134 0-1.724-1.384-3.124-3.094-3.133-.043-1.693-1.42-3.055-3.11-3.055-1.712 0-3.1 1.394-3.111 3.117h-5.49z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"M487.78 81.761h1.012l-.005.184-.014.182-.022.178-.03.178-.039.174-.048.17-.055.168-.063.163-.07.16-.079.156-.084.147-.09.147-.098.143-.104.135-.11.132-.117.127-.122.12-.127.114-.134.108-.137.101-.142.095-.146.09-.153.082-.157.075-.16.067-.163.06-.168.052-.17.043-.175.037-.177.026-.179.018-.181.01-.026-1.018.13-.007.13-.013.126-.02.126-.026.124-.031.118-.038.118-.043.116-.048.112-.053.108-.059.107-.065.104-.068.099-.075.095-.077.092-.083.089-.086.083-.09.08-.094.074-.101.07-.1.066-.106.062-.11.055-.111.052-.115.044-.117.04-.12.034-.122.029-.124.021-.128.017-.13.009-.13.002-.134zm-3.03-3.132 1.011-.005-.493-.506.182.01.179.018.177.026.173.035.172.043.168.052.165.06.16.068.156.074.152.082.148.089.143.096.137.101.133.108.127.115.122.12.116.125.112.132.104.136.098.14.092.149.084.15.078.156.07.16.064.163.054.168.046.168.04.176.032.178.021.18.015.18.005.185h-1.013l-.002-.134-.009-.13-.016-.132-.022-.125-.029-.125-.034-.125-.04-.118-.045-.118-.05-.115-.056-.11-.061-.11-.066-.105-.072-.102-.075-.1-.079-.094-.084-.091-.089-.087-.092-.083-.094-.077-.101-.074-.103-.07-.105-.063-.111-.06-.111-.053-.117-.048-.117-.043-.12-.037-.122-.032-.126-.025-.126-.02-.132-.012-.13-.008zm.492.507-.49-.014-.002-.493zm-3.097-3.116V75l.185.005.183.014.182.023.177.032.171.04.172.048.169.058.163.064.163.073.155.082.15.085.147.095.14.101.136.106.133.115.126.12.118.126.112.13.109.138.1.142.094.147.088.152.08.157.073.16.065.163.058.17.05.173.04.174.033.18.023.181.015.183.006.187-1.012.005-.004-.134-.01-.133-.018-.132-.023-.127-.03-.127-.034-.124-.042-.12-.048-.12-.051-.114-.059-.113-.062-.11-.068-.106-.072-.1-.077-.1-.084-.094-.087-.092-.09-.086-.093-.082-.099-.077-.102-.075-.104-.066-.11-.064-.112-.057-.115-.052-.118-.047-.118-.04-.124-.034-.127-.03-.129-.023-.129-.018-.13-.01zm-3.098 3.117-.026-1.018-.493.507.006-.188.015-.183.023-.18.032-.18.043-.177.05-.17.055-.168.066-.166.073-.161.08-.157.088-.151.094-.147.1-.142.108-.137.113-.132.12-.125.126-.12.13-.114.136-.108.141-.1.148-.095.152-.087.155-.08.158-.072.164-.066.17-.058.172-.048.173-.04.176-.032.18-.023.184-.014.185-.005v1.02l-.134.002-.13.01-.13.018-.128.022-.128.03-.123.034-.118.041-.117.047-.117.053-.112.058-.109.06-.105.07-.103.073-.098.077-.094.082-.09.086-.086.092-.083.093-.076.099-.074.103-.068.106-.063.11-.058.112-.051.115-.047.118-.041.122-.037.127-.029.124-.022.127-.018.132-.011.133-.004.134zm.493-.507-.002.494-.49.013zm-3.03 3.131h-1.013l.005-.184.014-.182.022-.179.03-.178.041-.175.047-.17.055-.167.063-.164.07-.158.077-.154.086-.154.09-.146.098-.142.106-.136.11-.13.116-.126.122-.12.127-.114.133-.109.139-.102.144-.096.147-.088.15-.082.158-.074.159-.067.165-.06.168-.052.172-.044.173-.035.178-.026.178-.018.181-.01.026 1.018-.131.007-.13.013-.128.02-.125.025-.122.031-.12.037-.118.044-.115.048-.113.053-.11.06-.108.064-.101.067-.098.073-.096.08-.093.083-.088.086-.085.092-.08.095-.074.097-.072.104-.066.104-.06.106-.055.113-.051.115-.045.118-.04.12-.035.123-.028.125-.022.125-.017.132-.009.13zm3.026 3.133h-1.012l.493.509-.181-.01-.18-.018-.176-.026-.175-.036-.17-.044-.168-.051-.164-.06-.159-.068-.157-.075-.153-.083-.146-.089-.142-.093-.138-.103-.133-.108-.127-.114-.122-.12-.116-.125-.112-.133-.104-.138-.098-.14-.09-.145-.084-.15-.079-.157-.07-.158-.064-.164-.053-.168-.047-.169-.04-.174-.031-.18-.022-.177-.014-.182-.005-.184h1.012l.002.134.009.13.017.13.021.127.029.124.034.125.04.118.045.118.05.115.055.11.061.108.068.108.07.102.075.098.078.093.085.092.088.086.092.083.095.077.1.074.104.07.107.064.108.06.112.052.116.048.118.044.118.037.124.031.125.027.127.019.129.013.131.007zm-.493-.509.493.013v.496zm-.519 6.933v-6.424h1.012v6.424l-.506.51zm1.012 0v.51h-.506zm-5.997-.51h5.491v1.02h-5.49l-.507-.507zm0 1.02h-.504l-.002-.507zm-3.11-3.116v-1.02l.184.005.184.015.18.023.177.032.173.04.171.048.17.058.163.064.162.074.154.08.15.086.146.094.144.1.137.11.129.113.125.118.12.126.114.133.108.137.1.142.094.146.087.152.081.156.073.161.065.165.057.167.049.171.043.178.032.18.023.18.015.184.006.186-1.012.005-.004-.134-.01-.133-.019-.132-.022-.127-.029-.125-.037-.125-.04-.121-.048-.12-.051-.115-.058-.11-.063-.111-.068-.106-.074-.103-.076-.099-.083-.094-.084-.09-.092-.087-.096-.084-.097-.076-.1-.072-.106-.067-.111-.064-.113-.059-.113-.051-.118-.046-.12-.041-.122-.034-.128-.03-.129-.023-.13-.018-.129-.01zm-3.109 3.055-.005-1.02-.503.497.01-.183.017-.18.027-.178.034-.175.043-.175.053-.169.058-.162.067-.165.075-.156.08-.153.09-.149.093-.143.101-.14.11-.134.11-.128.122-.125.125-.117.13-.11.134-.106.143-.1.145-.09.148-.085.154-.079.158-.07.164-.064.166-.056.168-.047.172-.04.178-.032.178-.021.18-.015.183-.005v1.02l-.133.003-.13.01-.13.016-.123.022-.124.029-.123.034-.12.041-.116.045-.114.051-.11.057-.11.061-.105.066-.1.071-.096.075-.096.082-.092.085-.084.087-.082.094-.078.097-.072.1-.07.104-.063.106-.058.112-.054.113-.048.114-.041.122-.039.12-.03.123-.026.126-.019.128-.013.132-.007.132zm.503-.497-.014.495-.489.002zm-3.093 3.12h-1.013l.005-.186.015-.186.022-.181.033-.178.04-.175.047-.172.057-.172.066-.166.072-.158.078-.157.087-.152.095-.15.099-.141.107-.138.112-.13.12-.128.124-.12.131-.115.136-.108.141-.1.145-.096.151-.089.155-.08.16-.073.164-.066.168-.057.17-.05.173-.042.179-.032.179-.023.182-.016.185-.006.005 1.02-.132.004-.133.01-.13.018-.127.023-.126.03-.124.035-.118.041-.117.047-.116.054-.112.058-.106.062-.107.069-.102.075-.098.077-.093.083-.091.086-.086.091-.081.096-.076.098-.073.104-.068.105-.061.11-.057.113-.053.118-.046.118-.041.119-.034.124-.03.128-.022.13-.018.131-.009.13-.002.136zm3.094 3.12-1.01.027.502.497-.186-.006-.181-.016-.18-.023-.178-.032-.173-.042-.17-.05-.168-.056-.166-.067-.159-.074-.154-.079-.152-.089-.145-.095-.141-.101-.136-.108-.133-.116-.123-.12-.119-.125-.113-.133-.107-.139-.099-.14-.094-.147-.087-.154-.079-.156-.071-.16-.066-.165-.057-.172-.048-.173-.04-.174-.032-.178-.022-.182-.015-.186-.005-.186h1.013l.002.136.009.132.017.13.023.13.03.127.033.126.041.119.047.117.052.118.057.113.061.109.068.105.073.105.078.1.08.092.086.092.092.089.091.082.098.077.103.074.105.069.109.062.11.058.116.054.116.046.12.042.125.035.125.03.127.023.131.018.131.01.134.005.503.496zm-.503-.496.49.002.013.494zm3.107 3.055v1.02l-.182-.005-.18-.015-.178-.022-.177-.03-.174-.042-.169-.047-.166-.055-.162-.064-.159-.07-.154-.079-.148-.085-.144-.09-.143-.1-.135-.106-.13-.112-.124-.116-.12-.123-.113-.128-.109-.134-.101-.14-.094-.145-.088-.148-.08-.153-.075-.157-.067-.162-.06-.164-.05-.17-.044-.174-.034-.175-.027-.178-.018-.18-.009-.183 1.01-.026.007.132.013.132.02.128.025.126.03.124.038.119.042.119.048.118.053.112.06.112.063.107.068.103.073.1.077.096.083.094.085.089.091.085.094.08.097.075.1.071.104.066.11.062.111.056.114.052.117.044.118.041.123.035.124.03.124.02.13.018.13.009.133.002zm3.108-2.983v1.02l.505-.486-.012.18-.023.177-.029.175-.039.173-.045.166-.053.165-.062.162-.068.16-.076.154-.081.148-.09.147-.096.14-.1.134-.106.13-.116.128-.12.118-.12.114-.132.11-.134.102-.14.096-.143.09-.15.084-.152.075-.156.07-.161.063-.163.051-.167.048-.172.039-.173.03-.175.022-.178.013-.18.005v-1.02l.13-.002.13-.01.125-.015.126-.023.121-.027.12-.033.119-.04.113-.043.114-.05.11-.055.106-.06.105-.065.099-.07.098-.073.093-.078.09-.083.087-.087.08-.089.077-.095.074-.1.07-.1.063-.103.06-.11.055-.11.048-.112.043-.117.039-.119.033-.122.028-.123.021-.126.016-.127.009-.13zm-.505.486.022-.486h.483zm5.998.534h-5.493v-1.02h5.493l.506.51zm0-1.02h.506v.51zm-.506 21.882V97.596h1.012v21.372l-.506.51zm.506.51h-.506v-.51zm6.231 0h-6.231v-1.02h6.231l.506.51zm.506-.51v.51h-.506zm0-21.372v21.372h-1.012V97.596l.506-.51zm-1.012 0v-.51h.506zm6 .51h-5.494v-1.02h5.494l.504.486zm0-1.02h.482l.022.486zm3.107 2.983v1.02l-.18-.005-.178-.013-.176-.022-.173-.03-.172-.039-.167-.048-.162-.052-.161-.062-.157-.07-.153-.076-.149-.084-.143-.089-.14-.096-.133-.102-.132-.11-.122-.114-.119-.118-.116-.127-.106-.131-.1-.134-.096-.14-.09-.147-.08-.148-.077-.154-.068-.16-.062-.162-.052-.165-.046-.166-.04-.173-.028-.175-.022-.176-.012-.18 1.01-.05.009.13.015.127.022.126.027.123.034.123.038.119.043.116.049.112.055.11.06.11.063.104.069.1.074.1.078.094.08.09.085.086.091.083.093.078.098.073.1.07.104.065.107.06.11.054.113.051.113.043.12.04.119.034.122.026.125.023.125.014.13.011zm3.107-3.055.005 1.02.502-.497-.009.182-.016.182-.028.179-.034.173-.043.174-.052.17-.06.165-.066.16-.073.156-.08.155-.09.15-.094.142-.101.139-.108.136-.113.128-.12.123-.123.117-.132.113-.135.104-.142.1-.145.091-.148.085-.154.078-.16.07-.161.064-.166.056-.169.047-.174.04-.177.032-.177.022-.18.014-.183.005v-1.02l.132-.002.13-.009.13-.017.125-.021.124-.029.123-.035.118-.04.117-.045.113-.052.111-.057.11-.062.105-.065.099-.071.099-.076.093-.08.09-.085.087-.089.082-.092.077-.095.072-.102.07-.105.063-.106.057-.11.054-.114.048-.117.042-.12.037-.119.031-.123.025-.128.02-.126.013-.131.007-.134.502-.496zm-.503.497.012-.494.49-.002zm3.094-3.12h1.013l-.005.186-.015.185-.022.183-.033.178-.039.173-.048.173-.057.172-.066.166-.071.159-.08.156-.086.154-.094.147-.1.14-.106.139-.113.133-.12.125-.122.12-.133.116-.136.108-.14.101-.146.095-.152.09-.154.078-.159.074-.166.067-.168.057-.17.049-.173.042-.179.032-.179.023-.181.016-.186.006-.005-1.02.133-.004.132-.01.13-.019.127-.022.126-.03.124-.035.12-.042.116-.046.116-.054.111-.058.109-.063.105-.068.102-.075.098-.077.092-.081.092-.09.086-.09.08-.093.078-.1.073-.105.068-.106.06-.108.058-.113.052-.118.047-.118.04-.119.034-.125.03-.127.022-.13.018-.13.01-.132.001-.136zm-3.092-3.12 1.01-.027-.503-.497.185.006.183.016.179.023.179.032.173.042.17.05.168.057.164.067.16.073.154.08.152.088.144.095.141.101.136.109.132.114.124.12.12.128.111.13.108.138.099.142.094.149.087.152.079.157.072.159.065.166.057.172.048.171.04.175.032.178.023.181.014.186.005.186h-1.012l-.002-.136-.01-.13-.017-.13-.023-.13-.03-.13-.033-.123-.04-.12-.047-.117-.053-.118-.057-.113-.06-.11-.069-.105-.073-.104-.076-.098-.081-.095-.086-.092-.09-.086-.094-.083-.098-.077-.103-.075-.106-.068-.106-.063-.112-.058-.116-.054-.117-.047-.118-.04-.124-.035-.126-.03-.126-.023-.132-.018-.132-.011-.133-.004zm.502.496-.49-.002-.012-.495zm-3.108-3.055v-1.02l.182.005.18.015.178.021.178.032.172.04.169.048.167.055.16.064.16.07.155.079.148.085.144.09.143.1.135.106.13.112.123.115.122.124.112.129.109.133.101.141.094.143.09.15.08.152.074.156.067.165.059.162.052.169.043.175.035.175.026.178.018.18.009.183-1.01.026-.007-.132-.013-.132-.02-.128-.024-.126-.031-.123-.038-.12-.042-.121-.048-.115-.053-.113-.059-.111-.063-.106-.07-.105-.072-.1-.078-.097-.081-.093-.086-.088-.092-.086-.094-.08-.097-.075-.1-.071-.104-.066-.11-.062-.11-.056-.115-.052-.116-.044-.12-.041-.122-.035-.125-.03-.122-.02-.13-.018-.13-.009zm-3.111 3.117v-1.02l-.506.506.006-.185.015-.184.024-.183.032-.177.041-.175.05-.174.058-.167.065-.166.074-.162.08-.153.085-.151.095-.148.102-.143.107-.136.113-.133.121-.126.123-.118.132-.114.138-.108.14-.101.147-.094.15-.085.154-.081.162-.073.164-.065.17-.058.17-.048.173-.04.177-.032.18-.023.184-.015.185-.004v1.02l-.135.002-.129.01-.13.017-.129.023-.128.03-.123.034-.119.04-.118.047-.112.051-.114.06-.11.063-.105.067-.102.072-.098.077-.093.083-.092.087-.086.09-.081.094-.08.1-.072.102-.067.105-.062.11-.06.115-.052.114-.047.118-.04.121-.036.123-.029.127-.025.129-.016.13-.011.133-.004.135zm.506-.507-.004.507h-.503zm-5.996-.513h5.49v1.02h-5.49l-.506-.51zm0 1.02h-.506v-.51zm.506-6.935v6.425h-1.012v-6.425l.493-.509zm-1.012 0v-.496l.493-.013zm.506 0-.013-.509zm-.506 0v-.496l.493-.013z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M499.82 122.37h-1.012l-.022-.865-.063-.852-.107-.841-.146-.826-.186-.812-.226-.796-.261-.782-.298-.761-.334-.743-.367-.724-.402-.703-.433-.682-.464-.658-.496-.633-.522-.61-.554-.583-.578-.557-.605-.527-.63-.499-.652-.468-.677-.436-.697-.405-.719-.37-.738-.337-.755-.3-.776-.263-.79-.227-.806-.187-.82-.147-.834-.108-.847-.064-.858-.022v-1.02l.908.024.9.069.884.113.87.156.856.2.838.24.821.28.803.318.783.356.762.395.74.428.718.463.693.496.667.528.641.56.614.589.585.62.556.645.524.672.493.7.46.722.425.746.391.767.354.789.316.81.278.827.238.844.198.862.155.877.112.891.068.906zm-17.675 17.808v-1.02l.858-.021.847-.064.834-.108.82-.147.806-.188.79-.227.776-.263.756-.3.737-.337.719-.37.697-.404.677-.438.653-.468.629-.499.605-.527.579-.556.553-.583.522-.608.496-.636.464-.658.434-.68.4-.703.368-.725.335-.744.297-.76.261-.781.226-.798.186-.81.146-.828.107-.84.063-.852.022-.865h1.012l-.024.916-.068.904-.112.891-.155.878-.198.861-.238.846-.278.826-.316.81-.354.788-.391.769-.425.745-.46.722-.493.699-.524.672-.556.647-.586.618-.612.588-.641.56-.668.529-.693.496-.718.465-.74.428-.761.394-.783.356-.804.319-.821.28-.838.24-.856.199-.87.156-.885.113-.898.069zm-17.674-17.808h1.012l.022.865.063.852.107.841.146.826.186.812.226.796.261.782.298.761.334.743.367.724.402.703.433.682.464.658.496.633.522.61.553.582.579.558.605.527.63.499.652.468.676.436.698.405.719.37.738.337.755.3.775.263.791.227.806.187.82.147.834.108.846.064.858.022v1.02l-.909-.024-.897-.069-.885-.113-.87-.156-.856-.2-.839-.24-.82-.28-.803-.318-.783-.356-.762-.395-.741-.428-.717-.463-.693-.496-.667-.528-.641-.56-.615-.59-.584-.618-.556-.646-.524-.672-.493-.7-.46-.722-.425-.746-.391-.767-.354-.789-.316-.81-.278-.827-.238-.844-.198-.862-.155-.877-.112-.891-.068-.906zm17.674-17.808v1.02l-.858.022-.845.063-.835.108-.82.147-.806.188-.791.227-.775.263-.755.3-.738.337-.719.37-.698.404-.676.437-.653.468-.629.499-.605.528-.579.555-.551.584-.524.61-.496.633-.464.658-.433.682-.401.702-.368.724-.334.743-.298.762-.261.781-.226.797-.186.811-.145.827-.108.84-.063.853-.022.865h-1.012l.024-.916.068-.905.112-.891.155-.877.198-.862.238-.845.278-.827.316-.81.354-.788.391-.768.425-.745.46-.723.493-.699.524-.672.555-.646.585-.62.615-.589.64-.559.668-.528.693-.497.717-.463.741-.428.762-.394.783-.356.803-.319.82-.28.84-.24.855-.199.87-.156.885-.113.897-.069z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M498.96 118.85a17.6 17.6 0 0 1 .181 5.964c-5.643-.197-11.302-.33-16.995-.33-5.692 0-11.35.133-16.996.33a17.5 17.5 0 0 1 .183-5.964c5.584-.191 11.183-.324 16.813-.324s11.23.133 16.813.324z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"M499.82 122.37h-1.012v-.11l-.001-.106-.002-.111-.002-.112-.001-.106-.005-.107-.005-.112-.005-.11-.006-.105-.007-.107-.007-.108-.007-.11-.008-.106-.01-.105-.01-.109-.01-.109-.01-.105-.013-.105-.012-.108-.013-.103-.014-.108-.014-.107-.015-.102-.016-.106-.016-.106-.018-.105-.016-.103-.02-.105-.019-.106-.019-.103-.02-.103-.02-.104.99-.204.023.11.02.109.022.11.019.11.019.11.019.11.018.113.018.11.016.111.017.114.014.112.015.108.015.116.012.112.013.113.012.116.011.11.01.113.01.115.008.113.009.115.007.113.007.114.006.118.005.114.005.112.005.117.004.117.002.112.002.116v.233zm-.697 2.959.036-1.018-.518.437.009-.071.009-.076.01-.076.008-.066.008-.076.01-.076.007-.072.008-.07.007-.077.008-.075.006-.074.007-.072.006-.07.006-.078.006-.076.006-.077.005-.073.005-.074.005-.07.004-.074.004-.08.005-.075.002-.074.004-.077.002-.072.002-.073.001-.078.002-.077v-.148l.001-.077v-.075h1.012v.237l-.003.087-.002.077v.078l-.003.08-.002.082-.004.077-.002.081-.005.082-.004.073-.004.08-.005.081-.005.081-.007.08-.006.078-.006.075-.006.077-.006.081-.007.08-.008.08-.008.076-.007.076-.008.08-.008.08-.009.075-.008.076-.01.083-.011.076-.009.076-.012.078zm.518-.437-.065.452-.453-.015zm-17.495.107v-1.02h.534l.534.001.535.002.532.002.534.004.534.004.533.005.534.006.531.006.534.007.53.007.534.008.532.008.532.01.531.008.533.011.53.01.532.014.531.012.53.013.531.014.53.014.531.013.53.016.53.016.53.015.532.016.528.017.532.017.528.018.53.018.53.018-.035 1.017-.528-.018-.53-.018-.529-.018-.528-.017-.53-.017-.528-.015-.53-.016-.53-.016-.528-.015-.53-.013-.53-.015-.53-.013-.53-.013-.53-.012-.53-.011-.53-.01-.53-.012-.532-.009-.53-.009-.531-.008-.531-.008-.532-.007-.53-.007-.532-.006-.531-.006-.531-.005-.534-.004-.531-.004-.533-.002-.532-.002h-1.066zm-17.496-.107 1-.144-.518-.437.53-.018.53-.018.529-.018.531-.017.53-.017.53-.015.53-.016.53-.016.531-.015.53-.014.53-.014.533-.013.53-.014.531-.012.531-.013.531-.01.533-.011.53-.01.533-.008.532-.008.533-.008.531-.007.534-.007.531-.006.534-.006.533-.005.534-.004.533-.004.533-.002.535-.002.534-.001h.534v1.02h-1.066l-.532.002-.533.002-.531.004-.534.004-.53.005-.532.006-.531.006-.531.007-.532.007-.53.008-.532.008-.53.01-.531.008-.53.011-.531.011-.53.01-.53.013-.53.013-.53.013-.53.015-.53.013-.53.016-.53.015-.53.016-.527.016-.53.016-.529.017-.528.018-.53.018-.528.019zm.518.437-.454.015-.064-.452zm-.697-2.959h1.012v.075l.001.077v.148l.002.076.001.079.002.073.002.072.004.077.002.074.005.074.004.08.004.074.005.071.005.074.005.073.006.077.006.076.006.077.006.07.007.073.006.073.008.076.007.076.008.071.008.072.01.076.007.076.008.066.01.076.01.076.009.07-1 .145-.012-.078-.01-.076-.01-.076-.01-.083-.009-.076-.009-.076-.008-.079-.008-.08-.007-.076-.008-.076-.008-.08-.007-.08-.006-.08-.006-.078-.006-.076-.006-.077-.007-.08-.005-.08-.005-.081-.004-.081-.004-.073-.005-.082-.002-.08-.004-.078-.002-.081-.002-.081v-.078l-.003-.077-.002-.087v-.237zm.845-4.023.034 1.018.478-.406-.02.102-.02.104-.021.106-.02.106-.018.102-.017.103-.018.105-.015.103-.016.108-.017.105-.013.105-.014.104-.012.107-.013.107-.012.106-.012.109-.009.105-.01.109-.01.105-.008.106-.007.11-.007.108-.007.107-.006.106-.005.11-.005.109-.004.11-.004.107v.11l-.003.11v.216h-1.013v-.115l.001-.117.002-.116.004-.114.004-.116.004-.114.005-.114.005-.114.006-.118.007-.114.007-.113.01-.115.007-.113.01-.115.01-.113.012-.113.012-.113.012-.113.013-.112.014-.112.014-.112.016-.114.017-.112.015-.108.018-.113.018-.112.02-.11.018-.113.022-.11.02-.109.02-.108.023-.112zm-.479.405.08-.392.399-.013zm17.31-.73v1.02h-.528l-.527.001-.526.002-.528.002-.525.004-.528.004-.525.005-.525.006-.526.006-.526.006-.525.008-.526.007-.524.008-.526.01-.525.008-.524.011-.525.009-.524.012-.525.012-.524.012-.524.013-.524.013-.524.015-.524.014-.524.015-.523.015-.524.016-.523.017-.524.017-.524.017-.523.016-.524.018-.034-1.017.524-.018.523-.017.524-.017.524-.017.526-.016.524-.016.525-.016.524-.014.524-.015.526-.014.524-.013.527-.013.524-.012.525-.012.526-.012.526-.012.526-.011.525-.01.528-.008.526-.008.527-.007.525-.008.528-.006.526-.006.528-.006.527-.005.528-.004.527-.004.528-.002.529-.002.529-.001zm17.308.732-.99.204.478.407-.524-.019-.523-.016-.524-.017-.524-.017-.523-.017-.524-.015-.522-.016-.524-.014-.524-.015-.524-.014-.525-.014-.524-.013-.524-.012-.525-.012-.524-.012-.525-.009-.524-.01-.525-.01-.526-.009-.524-.008-.526-.007-.525-.008-.525-.006-.527-.006-.525-.006-.525-.005-.528-.004-.525-.004-.528-.002-.526-.002h-1.054v-1.02h1.057l.528.002.528.002.527.004.528.004.527.005.528.006.526.006.528.006.525.008.527.007.526.008.528.01.525.008.526.011.526.012.526.012.525.012.524.012.527.013.524.014.526.014.524.014.524.015.525.016.525.015.525.017.524.017.524.017.523.016.524.019zm-.478-.407.398.013.08.394z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M468.82 133.18c-3.635-2.257-4.27 1.236-4.178 4.75.346 13.233 2.865 25.826-.674 42.03-1.416 6.485-3.697 10.132-1.475 11.382 5.67 3.187 8.27 6.103 7.37 7.67 1.675 3.22 5.855 2.597 12.277 1.565 6.422 1.032 10.604 1.654 12.281-1.564-.901-1.568 1.699-4.484 7.368-7.67 2.223-1.25-.058-4.898-1.475-11.383-3.538-16.205-1.019-28.797-.674-42.03.092-3.514-.542-7.007-4.177-4.75-7.156 4.445-19.404 4.496-26.643 0z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m465.15 137.91-1.01.027-.007-.337-.002-.335.004-.334.01-.332.015-.328.021-.325.03-.319.036-.312.045-.307.054-.297.063-.291.074-.279.084-.272.098-.26.11-.247.126-.236.142-.221.16-.206.18-.186.2-.168.22-.14.24-.112.255-.08.27-.05.281-.015.29.019.299.05.308.082.318.113.33.144.341.177.354.207-.53.868-.31-.183-.29-.148-.267-.117-.245-.087-.224-.06-.2-.034-.181-.01-.161.006-.142.026-.131.042-.12.056-.11.071-.108.09-.103.107-.1.129-.095.147-.09.168-.081.186-.077.204-.069.221-.062.238-.056.25-.047.264-.04.275-.034.284-.027.295-.02.3-.015.31-.007.312-.004.318.002.32zm-.685 42.154-.989-.219.313-1.498.278-1.48.247-1.458.215-1.441.186-1.423.16-1.406.13-1.389.108-1.375.085-1.359.062-1.345.043-1.333.021-1.32.006-1.309-.009-1.298-.023-1.289-.038-1.28-.048-1.272-.059-1.264-.067-1.258-.074-1.252-.079-1.246-.082-1.243-.086-1.239-.086-1.237-.086-1.235-.082-1.234-.08-1.233-.074-1.235-.068-1.235-.06-1.238-.05-1.24-.038-1.244 1.01-.027.038 1.234.05 1.232.06 1.23.068 1.228.074 1.23.08 1.23.082 1.232.086 1.233.086 1.237.086 1.241.082 1.246.079 1.25.074 1.258.067 1.265.058 1.271.05 1.28.036 1.291.027 1.3.009 1.309-.006 1.323-.024 1.335-.043 1.347-.062 1.36-.085 1.376-.11 1.391-.134 1.406-.16 1.425-.19 1.44-.217 1.46-.249 1.478-.283 1.498zm-1.723 10.828-.491.89-.244-.154-.217-.178-.191-.2-.16-.22-.132-.237-.101-.253-.072-.263-.045-.27-.024-.28-.002-.29.017-.298.032-.307.047-.319.062-.33.073-.342.085-.357.096-.367.104-.381.112-.395.12-.41.129-.424.13-.438.136-.452.14-.47.144-.482.143-.499.145-.515.144-.529.143-.545.141-.562.139-.576.132-.593.988.219-.137.607-.14.588-.144.572-.146.555-.146.539-.147.522-.146.504-.143.488-.141.47-.137.455-.132.437-.125.42-.118.403-.11.387-.101.37-.092.352-.08.333-.068.317-.055.298-.042.28-.027.26-.015.241.002.217.017.2.031.179.043.158.054.139.069.123.083.115.1.106.122.098zm7.57 7.879-.895.473.01-.491.045-.093.032-.095.02-.103.009-.112-.005-.124-.02-.138-.037-.15-.053-.16-.073-.174-.093-.184-.112-.195-.133-.204-.153-.212-.172-.219-.192-.226-.214-.233-.232-.24-.252-.246-.272-.249-.293-.257-.309-.26-.33-.265-.35-.269-.37-.272-.386-.276-.406-.28-.425-.283-.443-.285-.462-.288-.482-.29-.498-.294-.516-.295.491-.89.53.302.509.298.492.299.474.294.457.295.437.29.42.29.4.286.384.284.364.281.347.277.329.276.309.27.291.268.274.267.251.26.236.257.218.255.198.252.18.25.158.246.14.243.123.242.101.24.08.24.057.239.035.237.01.237-.019.234-.046.231-.076.22-.102.21.009-.491zm-.895.473-.13-.248.14-.243zm12.806.825-.16 1.006h.16l-.596.095-.583.092-.57.09-.56.085-.543.08-.534.075-.52.067-.507.063-.496.054-.482.046-.47.038-.458.028-.445.018-.434.007-.42-.005-.41-.016-.395-.03-.386-.043-.374-.059-.361-.074-.349-.092-.338-.11-.323-.128-.313-.148-.3-.17-.282-.19-.268-.212-.253-.235-.235-.256-.219-.279-.199-.3-.183-.322.896-.474.147.26.158.237.169.217.18.196.193.179.208.163.218.148.233.131.248.12.264.103.28.091.297.077.311.065.329.052.345.038.36.028.376.016.394.002.407-.005.421-.019.44-.027.452-.036.468-.044.482-.054.497-.06.51-.067.527-.074.54-.08.554-.083.566-.088.582-.093.594-.095zm-.16 0 .08-.013.08.013zm11.923-.807.877-.51.009.492-.183.323-.2.3-.218.278-.236.256-.25.234-.27.213-.285.19-.298.17-.312.148-.324.128-.338.11-.349.092-.361.074-.374.06-.386.043-.396.03-.41.015-.42.005-.433-.007-.446-.018-.457-.028-.47-.038-.483-.046-.495-.054-.508-.062-.52-.068-.533-.076-.545-.08-.559-.083-.57-.09-.583-.093-.597-.095.16-1.005.595.095.582.092.566.088.554.084.54.08.526.073.51.067.499.06.48.055.469.043.453.036.438.027.423.019.407.005.394-.002.376-.016.36-.028.345-.038.329-.052.311-.065.296-.077.28-.091.266-.104.247-.118.234-.132.218-.148.207-.162.193-.18.181-.197.169-.216.159-.237.146-.26.01.492zm.877-.51.14.243-.13.25zm6.683-7.86.492.89-.517.295-.498.293-.482.291-.46.288-.444.285-.426.283-.406.28-.386.276-.37.272-.348.27-.33.264-.312.26-.291.256-.271.25-.253.246-.233.24-.212.232-.193.226-.172.22-.154.213-.132.203-.112.194-.092.184-.073.174-.054.163-.037.148-.019.137-.005.125.008.112.02.103.033.095.045.092-.876.51-.103-.21-.075-.22-.047-.231-.017-.235.009-.235.033-.238.059-.24.08-.24.101-.238.12-.242.141-.244.162-.247.177-.249.199-.251.216-.255.236-.259.254-.26.272-.266.29-.267.31-.272.33-.276.344-.276.365-.282.384-.283.4-.287.42-.288.439-.291.455-.295.475-.295.492-.298.51-.298zm-1.722-10.828.988-.219.133.593.138.576.14.563.144.545.145.529.144.515.144.498.144.483.14.47.135.451.132.438.127.425.121.41.112.394.104.381.096.368.084.355.074.342.062.332.047.318.032.308.016.299-.002.288-.023.28-.045.271-.073.263-.101.253-.13.237-.163.221-.19.199-.217.178-.243.153-.492-.89.148-.093.122-.099.101-.107.084-.113.068-.124.056-.14.042-.157.03-.178.016-.2.002-.218-.013-.24-.027-.26-.042-.28-.055-.297-.07-.317-.08-.336-.09-.35-.101-.37-.11-.387-.118-.403-.126-.42-.131-.438-.139-.454-.14-.472-.142-.486-.147-.505-.147-.522-.147-.538-.146-.555-.143-.572-.14-.588zm-.686-42.154 1.01.027-.038 1.243-.05 1.241-.06 1.238-.066 1.235-.076 1.235-.078 1.233-.084 1.233-.085 1.236-.087 1.237-.085 1.239-.082 1.243-.08 1.246-.074 1.252-.067 1.258-.058 1.264-.048 1.271-.038 1.281-.023 1.288-.009 1.3.005 1.308.023 1.32.042 1.333.063 1.345.085 1.36.106 1.374.131 1.39.159 1.405.186 1.423.215 1.44.247 1.46.278 1.479.313 1.498-.988.219-.316-1.518-.282-1.498-.25-1.478-.217-1.46-.189-1.44-.161-1.425-.134-1.406-.108-1.391-.085-1.376-.063-1.36-.042-1.347-.025-1.335-.005-1.323.009-1.309.025-1.3.038-1.29.048-1.281.058-1.271.067-1.265.074-1.257.08-1.251.082-1.246.085-1.241.087-1.238.085-1.232.084-1.232.079-1.23.075-1.23.067-1.228.06-1.23.05-1.232zm-3.406-4.302-.53-.868.353-.207.341-.177.33-.144.319-.113.306-.082.3-.05.29-.019.28.015.272.05.255.08.238.112.222.14.199.167.18.187.16.207.141.22.125.236.111.246.097.26.086.273.073.28.063.29.054.297.045.307.036.312.03.319.021.325.016.328.009.332.004.334-.002.335-.007.336-1.01-.026.005-.322.002-.32-.004-.318-.007-.313-.016-.309-.019-.3-.027-.295-.034-.284-.04-.275-.047-.263-.056-.252-.06-.237-.07-.22-.078-.204-.082-.187-.09-.168-.095-.148-.098-.128-.104-.107-.106-.09-.112-.07-.121-.057-.129-.042-.142-.025-.161-.007-.18.01-.202.034-.223.06-.245.087-.267.118-.29.148zm-27.173 0 .53-.868.674.397.7.371.727.346.75.32.775.295.795.27.814.244.83.217.846.193.858.167.87.14.878.115.887.09.892.063.895.038.895.011.897-.013.895-.041.89-.065.885-.091.876-.117.868-.142.855-.167.841-.194.827-.219.809-.244.79-.27.767-.293.746-.318.721-.343.695-.367.665-.393.53.868-.706.415-.732.389-.76.362-.781.333-.804.308-.823.281-.844.254-.859.226-.872.2-.888.175-.897.147-.907.121-.913.094-.92.067-.923.041-.925.016-.927-.013-.924-.039-.92-.065-.916-.092-.91-.12-.9-.145-.889-.172-.877-.2-.863-.227-.847-.253-.829-.282-.81-.309-.79-.335-.765-.365-.74-.393z",style:{fill:"#21231e"}}),(0,h.jsxs)("g",{id:"rs_inline_svg__b",children:[(0,h.jsx)("path",{d:"M363.03 212.12c-1.897-4.143-.366-9.927.253-11.235.314-.663-.616-2.118-1.02-2.688-12.906-18.28-13.127-19.903-4.23-26.753 8.029-6.18 26.161-12.19 39.133-16.235 2.701-2.062 4.42-4.867 6.876-7.176-24.928 1.793-51.946 11.919-65.572 23.754-7.2 6.254 1.555 18.889 12.28 38.106 6.63 4.784 9.742 7.01 12.28 2.227z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m362.83 200.67.912.438-.051.116-.059.146-.066.173-.066.196-.072.22-.073.24-.074.263-.074.278-.071.296-.07.313-.07.329-.065.341-.062.353-.056.365-.051.376-.044.383-.036.392-.029.4-.021.404-.01.409v.41l.01.415.023.414.035.414.046.413.063.409.076.405.09.4.107.395.123.387.14.378.158.37-.919.426-.178-.416-.156-.426-.137-.43-.118-.436-.1-.439-.084-.444-.067-.445-.051-.446-.037-.445-.023-.444-.013-.442v-.438l.013-.433.021-.428.031-.42.039-.415.046-.405.054-.394.058-.385.065-.372.07-.358.07-.345.076-.329.076-.315.08-.297.078-.276.078-.26.076-.24.077-.217.072-.197.07-.175.071-.155zm-.975-2.173.823-.592.042.06.044.064.046.067.05.074.05.078.051.078.056.088.054.089.054.088.056.093.056.099.055.097.054.1.053.104.053.104.049.102.05.106.047.11.043.11.04.107.038.107.035.111.031.114.025.11.02.113.016.115.007.114v.118l-.009.123-.02.118-.032.119-.05.123-.913-.438.002-.007.004-.018.006-.027.002-.031v-.041l-.005-.052-.006-.057-.013-.063-.015-.07-.02-.072-.023-.077-.03-.083-.031-.085-.036-.086-.035-.084-.04-.086-.045-.093-.043-.088-.047-.086-.049-.09-.047-.088-.05-.084-.048-.082-.052-.085-.049-.08-.046-.073-.05-.076-.045-.069-.045-.066-.043-.065-.04-.056-.036-.053zm-4.126-27.454.614.81-.802.625-.748.595-.69.571-.632.55-.574.534-.514.517-.454.506-.393.5-.334.492-.275.492-.217.493-.159.504-.105.517-.049.54.01.567.066.602.129.643.19.685.256.732.323.785.39.837.457.894.528.955.595 1.019.665 1.086.738 1.16.807 1.232.88 1.31.952 1.395 1.024 1.48 1.099 1.57 1.172 1.664-.824.592-1.174-1.667-1.101-1.574-1.027-1.485-.957-1.4-.885-1.32-.814-1.242-.745-1.171-.676-1.103-.608-1.038-.54-.981-.473-.926-.407-.876-.342-.83-.277-.79-.21-.753-.143-.724-.079-.694-.009-.673.059-.647.126-.628.192-.607.258-.59.32-.573.38-.56.435-.553.493-.55.547-.55.6-.557.653-.57.708-.586.76-.605zm39.134-16.236.612.813-.157.08-1.23.384-1.256.396-1.282.407-1.304.418-1.322.425-1.339.438-1.35.446-1.364.456-1.37.464-1.374.474-1.378.481-1.376.489-1.373.496-1.366.503-1.358.511-1.345.516-1.33.524-1.314.53-1.292.532-1.27.54-1.244.544-1.214.547-1.183.553-1.148.556-1.111.56-1.07.56-1.028.565-.98.565-.932.569-.88.566-.825.57-.767.568-.614-.81.796-.59.852-.587.903-.583.954-.58 1.001-.578 1.045-.574 1.086-.569 1.126-.566 1.16-.563 1.195-.558 1.226-.554 1.253-.547 1.28-.544 1.301-.538 1.321-.531 1.34-.527 1.352-.518 1.363-.514 1.373-.505 1.378-.5 1.38-.49 1.383-.483 1.38-.474 1.374-.467 1.366-.456 1.356-.448 1.34-.438 1.325-.428 1.306-.417 1.284-.408 1.26-.396 1.232-.386zm.612.813-.07.054-.087.026zm6.605-7.074-.071-1.018.38.882-.222.212-.22.216-.214.218-.214.221-.21.223-.206.226-.208.227-.204.228-.202.231-.203.232-.2.233-.2.235-.201.234-.201.234-.2.237-.203.235-.203.235-.206.235-.205.232-.209.234-.212.231-.213.231-.217.229-.22.226-.223.225-.228.222-.233.22-.236.216-.242.214-.247.209-.254.206-.259.203-.61-.813.242-.189.236-.194.233-.197.228-.2.224-.204.22-.21.217-.21.214-.215.212-.219.208-.219.208-.223.205-.224.202-.227.203-.23.2-.23.2-.233.201-.232.2-.235.201-.234.2-.236.204-.236.203-.237.205-.234.206-.236.212-.236.21-.232.213-.233.22-.232.221-.229.224-.227.23-.226.234-.224zm-.071-1.018 1.427-.102-1.046.984zm-65.206 24.648-.662-.772 1.33-1.115 1.405-1.102 1.477-1.09 1.544-1.075 1.613-1.058 1.677-1.043 1.737-1.025 1.795-1.005 1.852-.986 1.905-.964 1.953-.941 2-.918 2.045-.894 2.087-.867 2.126-.84 2.16-.81 2.194-.783 2.225-.752 2.25-.72 2.278-.685 2.3-.652 2.315-.615 2.334-.58 2.346-.542 2.358-.501 2.365-.462 2.37-.42 2.372-.376 2.371-.332 2.368-.289 2.361-.24 2.354-.194.072 1.018-2.332.19-2.342.239-2.35.286-2.354.33-2.354.374-2.352.417-2.348.457-2.341.5-2.33.537-2.317.575-2.302.612-2.282.647-2.261.68-2.236.715-2.208.745-2.179.777-2.145.806-2.109.834-2.07.86-2.028.886-1.984.91-1.936.932-1.886.956-1.832.975-1.777.995-1.717 1.013-1.656 1.03-1.591 1.045-1.523 1.058-1.453 1.073-1.379 1.083zm12.244 37.306-.59.828-.146-.164-.999-1.78-.983-1.743-.97-1.705-.947-1.667-.93-1.628-.902-1.591-.877-1.553-.849-1.516-.815-1.477-.783-1.44-.745-1.404-.705-1.366-.665-1.33-.62-1.292-.574-1.256-.524-1.22-.47-1.184-.418-1.147-.36-1.114-.3-1.08-.235-1.044-.171-1.01-.102-.979-.028-.946.05-.912.129-.879.212-.844.3-.81.39-.768.481-.73.575-.684.666-.643.661.772-.592.568-.5.6-.42.632-.335.665-.261.7-.186.742-.115.78-.043.823.026.864.095.91.158.95.226.993.286 1.034.348 1.076.406 1.116.46 1.157.515 1.196.565 1.237.612 1.277.658 1.315.7 1.355.74 1.394.779 1.433.813 1.472.846 1.512.875 1.55.902 1.589.927 1.628.95 1.667.97 1.707.985 1.745 1 1.783zm-.59.828-.09-.066-.056-.098zm12.574 1.304v1.02l.446-.27-.251.449-.26.41-.266.375-.275.337-.286.3-.3.266-.31.227-.323.192-.338.151-.346.112-.356.073-.364.035h-.371l-.376-.037-.38-.068-.388-.099-.395-.126-.403-.155-.412-.18-.424-.206-.434-.23-.446-.253-.46-.275-.473-.296-.488-.318-.504-.336-.522-.357-.536-.375-.555-.392-.573-.41-.593-.425-.612-.443.59-.827.61.44.59.425.57.407.551.39.531.37.512.35.495.331.476.31.457.285.44.264.424.24.406.216.39.188.372.164.355.136.338.11.324.081.305.054.29.029.274.001.259-.025.25-.052.242-.078.235-.106.232-.136.232-.17.23-.205.23-.243.231-.282.23-.323.229-.363.228-.408zm-.446.269.143-.27h.303zm.447.75v-1.02l.46.298zm.46-.722.33.722h-.79z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M359.11 213.58a34 34 0 0 1-1.245-4.72c-.543-2.709-.31-5.516.59-8.15-2.974-4.21-6.311-8.784-8.72-13.329-1.72-3.245-3.049-6.857-2.038-10.558 1.08-3.947 4.494-6.636 7.58-9.011 3.696-2.846 8.625-5.338 13.613-7.466 11.172-4.634 20.054-6.902 26.563-7.108l-4.131 3.835c-12.112 3.917-26.406 9.084-33.283 14.38-8.898 6.85-8.677 8.47 4.23 26.752.403.57 1.334 2.026 1.02 2.688-.62 1.309-1.762 7.341.136 11.483-1.115 2.101-2.73 1.003-4.317 1.204z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m357.37 208.96.99-.202.002.007.026.137.028.138.026.14.028.138.03.14.029.14.03.14.032.143.032.14.032.144.035.142.035.144.034.143.037.146.036.145.038.145.038.145.039.146.041.146.04.148.042.148.043.148.043.148.045.148.046.15.046.15.046.149.05.151.048.153.05.149.05.151.052.152-.957.332-.053-.156-.052-.157-.052-.156-.049-.155-.049-.154-.049-.154-.047-.154-.047-.153-.047-.155-.045-.153-.043-.152-.044-.153-.04-.15-.042-.152-.04-.15-.041-.15-.039-.152-.038-.148-.037-.148-.037-.15-.034-.147-.035-.147-.035-.148-.032-.145-.033-.146-.031-.147-.03-.143-.031-.144-.029-.145-.029-.142-.027-.143-.026-.142zm.99-.202.002.007-.004-.02zm-.316-7.755.824-.591.066.461-.08.24-.077.241-.073.242-.068.243-.064.243-.06.243-.057.245-.053.246-.049.246-.045.246-.04.246-.037.248-.034.248-.029.246-.023.25-.022.25-.017.246-.011.249-.01.249-.001.247v.25l.002.25.008.247.013.248.016.248.022.249.025.247.03.248.033.247.038.246.043.246.047.245-.99.202-.052-.262-.046-.265-.04-.266-.036-.263-.032-.265-.028-.264-.021-.266-.02-.264-.013-.267-.008-.267-.005-.266v-.265l.005-.267.01-.266.011-.265.02-.266.021-.265.026-.263.031-.266.036-.265.04-.262.042-.263.048-.262.051-.261.058-.262.06-.26.064-.26.07-.26.072-.257.078-.259.08-.255.085-.255zm.824-.591.15.212-.084.25zm-9.58-12.791.894-.482.225.423.232.422.236.422.241.423.247.422.25.424.255.422.257.423.261.421.267.422.268.421.271.422.273.42.277.42.28.42.279.418.284.417.283.418.285.415.286.414.287.413.288.412.288.41.289.41.286.41.288.405.287.405.286.404.285.402.283.4.283.397.28.396-.825.592-.279-.396-.283-.398-.283-.4-.285-.401-.285-.404-.288-.405-.288-.408-.289-.409-.288-.41-.288-.413-.29-.415-.288-.414-.287-.418-.288-.417-.285-.42-.285-.42-.284-.423-.279-.422-.28-.422-.277-.427-.274-.425-.27-.425-.27-.427-.266-.428-.261-.429-.258-.429-.254-.428-.25-.43-.245-.43-.242-.43-.236-.431zm-2.078-10.933.975.269-.084.328-.07.329-.059.328-.047.327-.034.326-.023.327-.014.325v.325l.007.325.018.323.028.324.038.324.047.321.055.322.064.323.072.32.08.318.088.321.096.32.1.315.109.317.114.316.12.314.125.311.133.313.134.312.141.307.145.307.149.307.152.305.154.302.158.3-.893.482-.16-.31-.162-.312-.156-.315-.154-.316-.15-.319-.145-.322-.142-.324-.137-.325-.133-.33-.126-.331-.12-.33-.116-.336-.107-.338-.1-.338-.093-.34-.088-.343-.076-.347-.07-.346-.059-.349-.051-.35-.04-.352-.032-.354-.02-.356-.01-.357.003-.358.014-.359.025-.36.04-.362.05-.364.065-.362.08-.364zm7.76-9.282.614.81-.289.223-.29.225-.292.227-.291.227-.29.231-.29.235-.29.235-.286.237-.283.242-.282.244-.278.248-.273.249-.269.255-.266.258-.259.26-.253.265-.25.269-.24.273-.233.277-.227.282-.219.287-.208.29-.202.296-.191.3-.182.307-.171.31-.162.317-.15.323-.138.327-.128.335-.115.34-.102.347-.975-.27.113-.387.129-.376.14-.37.152-.362.167-.356.176-.347.188-.341.198-.334.208-.325.219-.32.225-.315.235-.306.241-.302.249-.296.256-.29.262-.283.267-.28.274-.274.275-.268.28-.264.286-.261.288-.255.289-.252.292-.249.294-.244.296-.24.293-.237.296-.236.297-.232.292-.227.292-.228zm13.729-7.533.384.943.005-.002-.465.2-.465.202-.463.204-.464.206-.461.208-.46.21-.46.212-.456.214-.454.217-.452.219-.45.22-.446.222-.444.225-.44.227-.438.228-.432.23-.43.233-.425.234-.42.238-.417.239-.412.241-.406.24-.4.246-.398.247-.39.249-.384.25-.378.252-.373.254-.365.256-.36.258-.35.26-.345.262-.614-.811.355-.27.363-.266.369-.267.377-.261.38-.261.387-.26.394-.255.4-.254.404-.251.408-.25.415-.248.42-.244.423-.243.427-.24.433-.24.436-.237.44-.233.443-.232.447-.23.45-.227.451-.225.455-.223.457-.221.459-.219.462-.216.463-.216.466-.211.465-.21.467-.209.468-.207.469-.202.47-.202.005-.002zm-.005.002.005-.002.03-.013zm27.103-6.263-.685-.75.358.883-.608.026-.622.037-.636.05-.65.06-.666.074-.679.085-.692.098-.707.11-.722.123-.734.135-.75.149-.764.16-.776.173-.791.187-.806.2-.817.21-.832.226-.848.237-.86.251-.873.265-.888.277-.902.29-.915.305-.928.317-.943.33-.956.343-.97.359-.983.372-.996.384-1.012.4-1.023.412-1.038.426-.384-.943 1.043-.428 1.03-.415 1.018-.402 1.004-.387.99-.374.977-.36.964-.347.95-.335.937-.32.923-.306.91-.292.896-.28.883-.268.87-.253.856-.242.842-.227.83-.214.815-.202.803-.19.788-.175.776-.162.761-.152.749-.137.734-.125.72-.113.707-.1.696-.088.68-.074.667-.063.653-.051.64-.038.628-.025zm-.358-.884 1.356-.043-.998.927zm-4.459 3.969 4.132-3.835.685.75-4.132 3.835-.188.11zm.685.75-.08.075-.108.035zm-33.318 14.41-.613-.811.678-.504.72-.504.758-.502.796-.498.832-.497.865-.492.897-.492.928-.49.957-.486.984-.482 1.009-.48 1.034-.476 1.055-.474 1.077-.469 1.093-.465 1.11-.462 1.127-.457 1.139-.455 1.15-.448 1.162-.444 1.169-.438 1.174-.434 1.18-.428 1.184-.423 1.184-.417 1.184-.41 1.18-.406 1.178-.4 1.17-.39 1.163-.386 1.155-.38 1.143-.37.308.97-1.139.37-1.152.379-1.16.384-1.168.39-1.174.397-1.177.406-1.18.409-1.179.416-1.178.42-1.176.426-1.17.432-1.163.438-1.155.441-1.146.446-1.131.45-1.12.455-1.103.46-1.086.462-1.067.464-1.046.47-1.022.471-.999.475-.973.477-.944.48-.914.481-.883.483-.848.484-.813.486-.777.486-.737.487-.696.487zm4.336 26.052-.824.59-1.174-1.666-1.101-1.575-1.027-1.485-.957-1.4-.884-1.32-.815-1.241-.744-1.172-.677-1.103-.608-1.038-.54-.98-.473-.927-.407-.875-.342-.83-.277-.79-.21-.753-.143-.724-.079-.694-.009-.674.059-.647.126-.627.192-.608.258-.59.32-.573.38-.56.435-.552.493-.55.547-.55.6-.557.654-.57.707-.586.76-.605.811-.632.614.811-.802.624-.748.596-.69.57-.632.552-.574.532-.514.517-.454.507-.393.499-.334.493-.275.492-.217.493-.159.504-.105.517-.049.539.009.567.067.603.129.642.19.686.256.732.322.784.39.837.458.895.528.955.595 1.019.665 1.086.738 1.159.807 1.233.88 1.31.952 1.394 1.024 1.481 1.099 1.57 1.172 1.664zm1.063 3.202-.912-.438.002-.007.004-.018.006-.027.002-.03v-.042l-.004-.048-.008-.061-.011-.063-.016-.068-.022-.077-.022-.076-.029-.08-.03-.086-.035-.083-.039-.086-.04-.09-.042-.088-.045-.087-.048-.091-.047-.088-.047-.085-.05-.087-.05-.084-.05-.083-.049-.077-.05-.078-.045-.074-.047-.068-.045-.07-.042-.061-.04-.057-.036-.054.824-.59.041.06.044.064.047.07.048.07.051.078.053.08.052.084.056.091.054.09.055.092.055.096.057.1.054.102.052.099.053.105.051.106.048.104.047.108.045.112.04.107.038.11.035.111.029.108.027.112.02.113.015.112.008.118v.118l-.01.122-.02.118-.032.12zm.127 11.505-.893-.481-.013.454-.18-.416-.158-.426-.142-.431-.125-.438-.109-.445-.093-.448-.079-.45-.066-.452-.05-.453-.04-.452-.028-.45-.017-.448-.007-.444.004-.438.014-.432.019-.424.028-.415.034-.407.041-.395.047-.383.051-.37.055-.355.06-.34.062-.321.066-.308.065-.285.068-.267.068-.248.07-.225.068-.203.07-.185.072-.162.912.438-.048.11-.054.143-.058.172-.06.198-.063.224-.061.245-.063.268-.061.287-.058.305-.057.322-.052.337-.05.352-.043.366-.04.376-.033.388-.027.395-.019.406-.01.412-.004.416.005.42.016.425.025.425.037.424.05.424.06.424.074.418.086.414.099.409.116.399.127.393.145.383.16.37zm.013-.455.106.231-.119.224zm-4.776.908v1.02l-.063-1.015.172-.018.17-.01.17-.003.165.005.158.007.158.01.159.014.151.017.148.015.147.017.141.016.137.013.135.009.131.009.125.004h.123l.115-.004.111-.01.107-.014.103-.021.1-.027.093-.032.093-.041.092-.05.09-.056.086-.069.093-.081.091-.095.092-.109.092-.127.093-.146.092-.163.893.48-.12.212-.125.194-.13.178-.137.166-.143.146-.146.132-.154.117-.159.102-.16.085-.163.072-.167.06-.164.043-.163.033-.164.024-.163.015-.162.006h-.156l-.158-.006-.152-.01-.152-.011-.152-.016-.15-.015-.144-.017-.146-.016-.142-.014-.137-.014-.139-.008-.137-.007-.134-.002-.129.001-.125.007-.127.014zm.001 1.02v-1.02l.479.344zm.479-.676.23.676h-.709z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M468.14 132.2c.112-2.315-.044-1.924-.39 1.648-.373-.716-.862-1.044-1.454-1.032-1.047.019-1.679 1.615-1.781 5.22l.187 2.76c-33.058-.736-52.66 4.283-57.715 13.921-4.16 7.93 2.913 21.062 13.584 36.055 1.29 1.814 1.249 1.66.001 3.155-1.805 2.162-3.75 5.823-2.288 9.039-6.466 3.567-14.161 4.433-20.874 1.485-1.114-2.96-3.532-4.37-5.488-5.712-.397-.275-1.835-.98-1.979-1.441-3.527-11.35-7.068-21.843-10.107-31.615-9.536-30.687 75.242-33.501 88.304-33.483z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m467.31 134.09.895-.474-.951.188.032-.327.031-.308.03-.29.029-.273.027-.253.026-.235.025-.217.024-.2.023-.181.021-.168.022-.148.019-.129.018-.117.019-.1.017-.085.02-.089.031-.09.073-.136.586-.183.314.323.03.119.009.087.005.08.004.089v.224l-.003.134-.004.148-.005.165-.007.182-.008.193-.01.212-1.01-.05.01-.207.008-.192.007-.174.005-.158.004-.14v-.315l-.001-.068-.002-.046v-.006l.016.062.3.298.566-.17.051-.093.005-.013-.006.024-.011.065-.015.079-.015.102-.02.124-.018.138-.022.157-.02.176-.024.198-.025.214-.026.23-.028.25-.029.269-.03.287-.028.306-.032.325zm.951-.188-.164 1.7-.787-1.512zm-1.948-.57-.019-1.02h.07l.077.001.077.007.065.007.07.01.076.013.074.018.074.02.07.023.062.024.067.026.072.033.066.035.062.035.063.04.063.041.062.046.058.045.056.047.057.051.056.055.054.056.052.059.05.059.05.061.047.064.048.068.043.067.045.07.044.074.04.07.042.078-.896.474-.03-.056-.032-.056-.027-.048-.031-.048-.031-.047-.031-.042-.031-.042-.029-.037-.032-.038-.031-.034-.03-.03-.03-.03-.029-.026-.032-.027-.03-.026-.03-.021-.027-.019-.03-.018-.033-.018-.03-.015-.024-.011-.033-.015-.035-.012-.031-.01-.029-.009-.028-.006-.03-.006-.035-.005-.042-.005-.03-.002h-.073zm.001 0h.012zm-1.287 4.675-1.01.067v-.048l.011-.337.015-.327.017-.315.022-.302.023-.293.027-.283.03-.271.033-.26.039-.25.04-.24.042-.23.047-.22.049-.209.052-.2.057-.192.061-.183.066-.172.07-.163.072-.154.079-.148.085-.138.09-.13.093-.12.102-.11.113-.106.12-.09.121-.078.132-.067.138-.053.142-.04.146-.024.143-.01.02 1.02-.05.003-.044.007-.042.01-.04.017-.043.022-.048.03-.045.035-.045.04-.05.059-.055.066-.053.077-.054.088-.052.1-.054.112-.053.125-.05.136-.05.147-.048.16-.045.172-.044.185-.042.196-.038.208-.037.22-.033.231-.031.243-.03.255-.025.266-.023.279-.019.292-.018.303-.014.313-.01.327v-.048zm-1.01.067v-.048zm.682 3.235.022-1.017-.516.544-.006-.085-.006-.085-.006-.085-.006-.09-.005-.086-.006-.082-.006-.085-.006-.086-.006-.086-.006-.085-.006-.087-.006-.085-.006-.088-.006-.085-.006-.086-.006-.091-.005-.086-.006-.081-.006-.088-.006-.087-.006-.086-.006-.087-.006-.086-.006-.087-.006-.086-.006-.087-.006-.09-.005-.088-.006-.083-.006-.087-.006-.087-.006-.088 1.01-.067.006.085.006.088.006.086.006.09.005.088.006.083.006.087.006.086.006.087.006.086.006.087.006.087.006.086.006.086.006.089.005.087.006.082.006.085.006.088.006.086.006.085.006.087.006.085.006.085.006.087.006.085.006.09.005.085.006.083.006.085.006.086.006.086zm.516-.543.038.555-.554-.012zm-57.772 14.195-.895-.476.54-.928.623-.896.712-.866.796-.833.88-.803.964-.772 1.048-.74 1.13-.708 1.212-.678 1.296-.647 1.376-.617 1.457-.585 1.542-.555 1.62-.524 1.704-.494 1.785-.462 1.864-.432 1.947-.4 2.028-.37 2.108-.338 2.19-.306 2.267-.274 2.35-.243 2.43-.21 2.51-.18 2.59-.146 2.67-.114 2.748-.08 2.827-.048 2.908-.016 2.987.02 3.064.052-.021 1.018-3.055-.05-2.975-.02-2.896.015-2.816.046-2.736.08-2.656.115-2.574.146-2.496.176-2.413.21-2.334.241-2.251.272-2.17.304-2.087.336-2.006.364-1.923.396-1.841.427-1.758.455-1.675.484-1.59.515-1.508.542-1.424.572-1.338.6-1.254.628-1.171.653-1.086.682-1 .705-.914.732-.83.757-.746.78-.661.807-.58.828zm13.547 35.52-.821.594-.992-1.404-.97-1.391-.946-1.38-.92-1.367-.893-1.354-.867-1.341-.837-1.327-.807-1.312-.772-1.296-.743-1.281-.705-1.264-.669-1.248-.632-1.23-.593-1.213-.553-1.192-.51-1.175-.468-1.155-.422-1.135-.376-1.114-.33-1.096-.28-1.073-.228-1.05-.176-1.03-.122-1.006-.065-.983-.008-.959.05-.937.113-.91.176-.884.24-.858.309-.827.375-.799.895.477-.339.719-.28.748-.217.778-.16.81-.105.838-.047.867.008.898.063.926.114.954.169.981.22 1.01.27 1.033.317 1.06.366 1.084.41 1.107.46 1.13.5 1.15.542 1.173.584 1.193.623 1.213.662 1.232.698 1.25.733 1.268.767 1.285.8 1.302.83 1.317.862 1.331.888 1.347.915 1.36.942 1.373.965 1.386zm-.023 3.78-.773-.657.113-.136.108-.127.097-.117.09-.108.084-.102.074-.09.062-.081.055-.075.046-.067.035-.054.025-.05.02-.042.012-.032.007-.024.002-.016.001-.013v-.02l-.003-.024-.008-.03-.012-.04-.022-.054-.029-.063-.036-.068-.047-.08-.058-.093-.064-.1-.075-.11-.085-.123-.09-.133-.1-.14-.11-.152-.117-.165.822-.594.117.165.11.153.103.146.096.137.087.128.082.123.076.116.07.112.064.112.06.112.05.108.044.11.038.114.028.121.017.12.006.122-.008.126-.022.124-.033.116-.041.109-.049.105-.056.102-.063.102-.066.096-.072.099-.078.102-.084.102-.086.105-.094.113-.1.119-.105.125-.114.136zm-2.433 9.158-.484-.895-.217.66-.139-.33-.118-.332-.097-.336-.077-.335-.059-.337-.04-.337-.023-.338-.006-.335.009-.335.025-.333.04-.33.052-.33.067-.325.076-.322.088-.319.1-.316.11-.312.117-.305.127-.302.135-.298.142-.292.148-.287.153-.279.157-.275.164-.268.167-.262.17-.253.171-.249.174-.24.176-.23.175-.223.176-.215.773.657-.163.198-.164.208-.163.217-.163.222-.16.23-.157.238-.155.243-.152.249-.146.254-.143.26-.136.264-.13.268-.123.272-.114.275-.108.28-.1.28-.088.282-.08.285-.069.287-.057.288-.048.286-.032.288-.022.287-.007.286.004.288.02.285.033.284.05.281.065.283.08.278.1.276.114.277zm.218-.66.195.431-.413.229zm-21.806 1.878.945-.36-.27-.287.616.259.622.237.627.215.633.195.633.173.64.153.642.133.646.11.648.093.652.071.652.052.653.032.655.012.657-.005.654-.026.655-.045.657-.063.653-.082.653-.1.65-.119.65-.136.647-.154.642-.17.64-.19.637-.206.633-.223.626-.239.623-.256.618-.273.61-.288.606-.305.6-.321.484.895-.62.33-.628.318-.635.3-.64.282-.648.266-.65.249-.657.232-.662.214-.665.196-.669.178-.673.161-.675.14-.677.125-.682.104-.681.084-.683.067-.684.047-.685.026-.686.007-.684-.014-.684-.033-.682-.054-.68-.076-.68-.095-.677-.118-.673-.138-.67-.16-.668-.183-.661-.204-.658-.225-.653-.25-.648-.272zm.27.286-.195-.085-.075-.2zm-5.57-5.758.57-.842.183.125.185.125.19.128.19.13.194.13.196.134.196.136.197.139.198.14.2.146.2.15.198.152.197.157.197.16.197.167.194.172.191.177.19.182.187.188.183.194.181.202.176.208.17.215.168.223.16.23.158.238.15.246.144.254.137.263.132.272.121.282.115.288-.945.361-.103-.257-.107-.248-.115-.238-.12-.232-.13-.225-.13-.218-.14-.209-.144-.206-.148-.198-.154-.191-.156-.187-.162-.18-.166-.177-.169-.17-.173-.167-.176-.162-.178-.158-.18-.152-.186-.15-.187-.149-.186-.144-.189-.14-.19-.139-.19-.136-.193-.136-.19-.13-.192-.132-.19-.13-.192-.128-.19-.128-.187-.127zm-2.176-1.709.964-.305-.008-.022v-.002l.007.012.014.018.024.027.034.033.04.037.044.039.052.042.056.043.06.045.07.049.068.047.07.047.072.048.078.048.076.048.075.046.08.048.078.047.078.045.078.046.074.043.074.042.072.043.067.039.067.04.063.037.058.034.06.038.053.033.049.033-.57.842-.033-.02-.038-.027-.042-.026-.055-.032-.056-.035-.062-.035-.07-.04-.07-.042-.071-.042-.079-.046-.078-.045-.08-.047-.082-.05-.082-.048-.087-.053-.084-.053-.082-.053-.084-.053-.085-.056-.08-.057-.076-.054-.078-.056-.078-.06-.072-.06-.072-.062-.068-.064-.065-.065-.062-.07-.06-.075-.054-.082-.05-.094zm-10.107-31.615.964-.305.287.918.288.922.293.924.294.933.297.934.3.94.301.943.305.95.305.95.31.958.31.962.313.966.314.971.316.976.317.98.32.983.32.99.321.994.324 1 .325 1.002.324 1.008.327 1.013.327 1.018.327 1.023.33 1.027.328 1.033.33 1.036.331 1.042.331 1.049.33 1.05.331 1.058.331 1.062-.964.305-.331-1.062-.33-1.054-.331-1.051-.331-1.047-.328-1.041-.331-1.037-.328-1.03-.33-1.028-.327-1.022-.327-1.016-.327-1.013-.325-1.008-.324-1.003-.324-.999-.32-.993-.322-.989-.319-.985-.317-.98-.317-.975-.313-.972-.313-.966-.31-.962-.31-.957-.305-.954-.305-.949-.302-.944-.3-.942-.297-.934-.296-.932-.292-.927-.289-.924zm88.28-33.66 1.01.05-.506.484-1.423.007-1.814.03-2.175.052-2.503.084-2.802.12-3.07.16-3.308.203-3.514.251-3.69.304-3.838.362-3.953.426-4.038.492-4.093.563-4.116.638-4.111.72-4.073.804-4.006.894-3.907.987-3.778 1.085-3.618 1.188-3.427 1.294-3.207 1.402-2.95 1.517-2.668 1.633-2.355 1.751-2.01 1.87-1.637 1.99-1.242 2.115-.818 2.244-.376 2.383.096 2.54.604 2.712-.964.305-.642-2.882-.104-2.733.407-2.582.885-2.425 1.328-2.263 1.73-2.106 2.1-1.954 2.434-1.811 2.74-1.677 3.013-1.548 3.256-1.426 3.473-1.31 3.656-1.201 3.814-1.095 3.935-.994 4.03-.9 4.097-.81 4.13-.722 4.135-.64 4.11-.566 4.053-.494 3.966-.426 3.85-.365 3.703-.304 3.524-.254 3.317-.203 3.08-.159 2.81-.12 2.514-.084 2.182-.055 1.824-.03 1.437-.006zm1.01.05-.023.485h-.483zm-.504-.026-.505-.025zm.504.026-.023.485h-.483z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M404.99 190.16c3.517 0 6.367 2.872 6.367 6.415s-2.85 6.416-6.367 6.416-6.367-2.872-6.367-6.416c0-3.542 2.85-6.415 6.367-6.415",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M411.87 196.57h-1.012c.027-2.2-1.296-4.34-3.275-5.3a5.8 5.8 0 0 0-2.586-.605v-1.02c2.333-.02 4.61 1.261 5.824 3.25a6.97 6.97 0 0 1 1.05 3.675zm-6.873 6.926v-1.02c2.17.027 4.269-1.287 5.225-3.23.42-.825.636-1.75.636-2.676h1.012c.02 2.352-1.253 4.66-3.259 5.891a6.85 6.85 0 0 1-3.614 1.035m-6.874-6.926h1.013c-.026 2.186 1.278 4.317 3.24 5.283.808.411 1.714.623 2.62.623v1.02c-2.332.02-4.61-1.261-5.824-3.25a6.97 6.97 0 0 1-1.049-3.676zm6.874-6.925v1.02c-2.17-.026-4.27 1.287-5.226 3.23a5.9 5.9 0 0 0-.635 2.675h-1.012c-.02-2.352 1.254-4.659 3.258-5.89a6.85 6.85 0 0 1 3.615-1.035z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M350.75 203.61c3.265 0 5.912 2.666 5.912 5.957s-2.647 5.956-5.912 5.956-5.914-2.667-5.914-5.956 2.648-5.957 5.914-5.957",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M357.17 209.56h-1.012c.02-1.941-1.09-3.837-2.793-4.769a5.4 5.4 0 0 0-2.613-.678v-1.02c2.178-.018 4.305 1.178 5.439 3.034a6.5 6.5 0 0 1 .979 3.433m-6.418 6.467v-1.02c1.989.023 3.915-1.173 4.804-2.948a5.5 5.5 0 0 0 .602-2.499h1.012c.017 2.184-1.156 4.329-3.013 5.48a6.4 6.4 0 0 1-3.405.987m-6.42-6.467h1.012c-.023 2.005 1.167 3.96 2.96 4.858.753.387 1.6.589 2.447.589v1.02c-2.178.017-4.307-1.178-5.44-3.036a6.5 6.5 0 0 1-.98-3.431m6.42-6.467v1.02c-2.002-.023-3.94 1.188-4.822 2.98a5.5 5.5 0 0 0-.586 2.467h-1.012c-.017-2.196 1.17-4.352 3.044-5.5a6.4 6.4 0 0 1 3.376-.967",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M345.1 192.72c3.265 0 5.912 2.668 5.912 5.958s-2.647 5.957-5.912 5.957-5.912-2.668-5.912-5.957c0-3.29 2.646-5.958 5.912-5.958",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M351.52 198.68h-1.012c.023-2.005-1.166-3.96-2.959-4.858-.753-.39-1.6-.59-2.447-.59v-1.02c2.178-.017 4.306 1.178 5.439 3.036a6.5 6.5 0 0 1 .979 3.432m-6.418 6.467v-1.02c1.937.022 3.816-1.11 4.733-2.813a5.5 5.5 0 0 0 .673-2.634h1.012c.017 2.196-1.17 4.352-3.044 5.5a6.4 6.4 0 0 1-3.375.967zm-6.419-6.467h1.012c-.023 2.005 1.166 3.96 2.959 4.858.753.387 1.6.589 2.447.589v1.02c-2.165.017-4.283-1.164-5.419-3.005a6.5 6.5 0 0 1-1-3.462m6.419-6.468v1.02c-1.938-.021-3.818 1.11-4.733 2.813a5.5 5.5 0 0 0-.674 2.635h-1.012c-.018-2.196 1.17-4.352 3.043-5.501a6.4 6.4 0 0 1 3.376-.967",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M339.79 181.71c3.266 0 5.912 2.666 5.912 5.957 0 3.289-2.646 5.956-5.912 5.956s-5.912-2.667-5.912-5.956 2.647-5.957 5.912-5.957",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M346.21 187.66h-1.012c.023-1.992-1.15-3.936-2.926-4.84a5.4 5.4 0 0 0-2.48-.607v-1.02c2.165-.018 4.281 1.164 5.419 3.004a6.5 6.5 0 0 1 1 3.463m-6.418 6.467v-1.02c1.925.021 3.794-1.095 4.714-2.781.456-.81.691-1.738.692-2.666h1.012c.018 2.183-1.157 4.327-3.012 5.48a6.4 6.4 0 0 1-3.407.987m-6.419-6.467h1.012c-.023 1.993 1.152 3.935 2.926 4.84.761.4 1.621.606 2.48.607v1.02c-2.178.017-4.306-1.178-5.439-3.036a6.5 6.5 0 0 1-.979-3.431m6.419-6.467v1.02c-1.99-.023-3.916 1.173-4.805 2.948a5.5 5.5 0 0 0-.602 2.5h-1.012c-.017-2.184 1.156-4.33 3.013-5.481a6.4 6.4 0 0 1 3.406-.987",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M444.27 202.15c3.416-.232 2.571 5.894 1.897 7.26-.88 1.782-1.698 1.838-2.808.19-.85-1.262-2.504-7.218.911-7.45",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m446.62 209.63-.905-.455.05-.11.054-.143.056-.17.056-.196.056-.219.054-.237.05-.254.047-.267.04-.276.034-.291.028-.294.02-.3.011-.303.002-.303-.007-.3-.016-.298-.029-.289-.042-.281-.051-.268-.065-.258-.076-.24-.087-.22-.1-.199-.111-.179-.12-.155-.132-.134-.142-.11-.154-.09-.172-.068-.195-.05-.22-.024-.249.004-.07-1.018.367-.004.349.04.326.08.303.122.278.161.25.195.22.222.19.245.163.263.14.281.119.295.095.304.079.313.063.321.047.327.033.335.02.334.008.335-.005.335-.011.333-.022.328-.031.323-.037.312-.044.306-.051.293-.055.278-.059.263-.063.248-.066.23-.07.213-.074.19zm-3.678.25.836-.572.095.138.096.13.09.118.088.104.084.097.08.084.077.072.071.061.066.05.062.04.052.03.047.02.04.013.035.008.029.004.024-.001.03-.004.027-.006.031-.012.037-.018.045-.03.05-.035.054-.048.06-.06.062-.069.066-.082.07-.094.07-.105.072-.117.074-.129.077-.14.076-.152.905.455-.088.173-.089.162-.088.155-.092.148-.092.137-.093.128-.097.123-.102.113-.103.102-.11.096-.115.084-.12.075-.128.063-.136.051-.142.035-.14.018h-.145l-.143-.015-.139-.03-.135-.046-.13-.057-.129-.07-.119-.08-.118-.087-.115-.1-.112-.106-.11-.115-.11-.123-.11-.133-.108-.142-.11-.15zm1.294-8.245.07 1.017-.249.031-.215.053-.185.075-.16.092-.144.111-.124.128-.111.149-.1.172-.086.19-.072.211-.059.232-.044.247-.028.262-.017.274-.001.283.009.292.023.296.032.3.043.299.052.298.06.296.067.289.073.28.076.27.081.26.084.243.083.226.086.21.082.187.08.164.072.133.063.103-.835.572-.102-.162-.096-.18-.098-.2-.097-.218-.096-.236-.095-.255-.09-.27-.09-.282-.085-.296-.078-.306-.074-.315-.064-.323-.058-.327-.047-.33-.037-.336-.025-.334-.012-.334.004-.33.019-.327.036-.323.056-.316.077-.304.1-.299.13-.283.155-.269.187-.25.222-.226.253-.195.283-.162.314-.125.34-.087z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M444.49 205.46c8.031-.547 6.045 13.845 4.458 17.055-2.068 4.186-3.991 4.316-6.6.449-1.999-2.965-5.888-16.956 2.143-17.503z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m449.4 222.74-.905-.455.135-.301.14-.368.143-.431.14-.483.136-.532.13-.576.122-.612.11-.646.097-.671.084-.694.067-.712.047-.724.029-.731.006-.734-.017-.73-.043-.723-.07-.71-.1-.69-.128-.67-.161-.64-.194-.605-.228-.567-.261-.525-.296-.478-.33-.424-.368-.372-.407-.316-.446-.26-.494-.199-.547-.135-.602-.068-.665.008-.07-1.017.782-.008.732.082.678.17.626.25.569.33.512.398.456.46.402.517.349.564.302.602.257.641.214.671.176.7.14.72.105.738.075.752.045.76.02.767-.009.765-.028.76-.05.753-.07.738-.085.72-.103.698-.115.67-.126.639-.135.602-.145.563-.15.517-.154.47-.16.418zm-7.47.508.835-.573.237.342.23.316.226.291.22.268.215.243.21.217.203.193.199.169.19.144.182.119.174.096.169.075.157.053.152.033.145.016h.142l.14-.018.142-.036.147-.054.148-.073.156-.096.162-.12.163-.143.17-.17.174-.192.175-.219.18-.244.18-.269.182-.296.185-.32.187-.345.188-.37.905.455-.198.391-.2.37-.2.346-.202.322-.202.303-.205.28-.206.258-.212.236-.213.212-.221.192-.226.167-.233.144-.24.12-.248.09-.252.062-.259.034h-.259l-.26-.027-.257-.058-.253-.084-.25-.11-.245-.135-.245-.16-.242-.183-.239-.205-.24-.227-.24-.25-.24-.272-.243-.292-.245-.318-.247-.337zm2.56-17.28v-1.02l.035 1.018-.661.083-.589.148-.523.208-.463.265-.407.316-.362.37-.313.417-.271.466-.23.514-.19.556-.149.593-.11.626-.075.656-.04.679-.004.699.024.713.055.722.078.727.104.724.127.722.144.71.161.697.175.676.187.652.196.625.202.59.205.552.205.51.204.46.197.405.19.348.173.28-.835.572-.212-.338-.213-.393-.216-.444-.219-.492-.217-.537-.215-.579-.209-.617-.203-.647-.194-.678-.182-.702-.168-.722-.15-.738-.13-.75-.11-.758-.083-.762-.057-.76-.026-.754.007-.747.041-.732.081-.716.123-.694.169-.67.218-.64.272-.604.328-.565.39-.519.456-.465.519-.403.587-.334.65-.261.712-.18.776-.097zm0-1.02v1.02l-.035-1.02z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M379.74 210.81c3.262-1.046 3.891 5.107 3.56 6.594-.434 1.942-1.214 2.193-2.683.86-1.124-1.021-4.14-6.408-.877-7.454",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m383.79 217.51-.986-.224.022-.118.019-.152.014-.18.009-.204.001-.225-.004-.243-.012-.258-.018-.27-.027-.281-.035-.288-.043-.293-.051-.297-.061-.297-.07-.295-.077-.29-.087-.285-.097-.274-.105-.263-.113-.25-.123-.231-.133-.214-.137-.194-.143-.17-.15-.146-.155-.123-.157-.097-.165-.074-.172-.05-.183-.025h-.2l-.22.028-.242.063-.306-.972.355-.091.346-.046h.337l.323.047.308.089.287.129.267.162.242.192.222.217.203.24.183.255.166.272.151.288.138.297.122.306.11.315.1.321.087.324.076.326.066.326.056.323.048.32.037.314.03.307.02.297.012.283.006.271-.004.256-.01.24-.018.221-.024.203-.036.188zm-3.514 1.127.678-.758.126.112.122.103.116.093.11.083.102.071.098.061.092.052.086.043.073.033.067.022.065.018.05.009.039.004.033-.001.034-.005.025-.006.021-.008.029-.016.027-.02.034-.026.037-.038.038-.046.042-.059.044-.072.043-.082.044-.095.046-.11.044-.12.041-.128.042-.145.04-.155.04-.165.986.224-.044.189-.048.18-.049.17-.054.167-.058.155-.06.147-.065.14-.072.135-.078.125-.082.12-.093.11-.1.101-.109.094-.118.08-.127.065-.136.055-.142.034-.138.02-.144.004-.145-.011-.141-.027-.133-.034-.138-.049-.137-.059-.134-.067-.133-.076-.136-.085-.137-.095-.137-.102-.14-.112-.14-.118zm-.691-8.319.305.972-.233.089-.195.105-.164.116-.134.128-.112.142-.092.155-.072.172-.057.189-.037.205-.02.225-.002.238.017.252.032.26.05.269.066.278.078.28.091.281.103.283.112.28.122.278.128.272.133.264.138.255.138.246.14.23.138.217.138.202.13.182.124.16.116.14.101.112.087.084-.678.758-.135-.132-.14-.153-.139-.17-.146-.188-.149-.209-.151-.223-.153-.238-.154-.255-.15-.267-.15-.277-.145-.289-.14-.298-.134-.304-.124-.312-.115-.313-.103-.32-.09-.321-.075-.322-.06-.322-.042-.322-.019-.319.002-.317.028-.312.056-.307.09-.299.122-.287.162-.271.198-.253.238-.226.276-.196.308-.164z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M380.74 213.97c7.67-2.46 9.145 11.994 8.364 15.491-1.02 4.564-2.855 5.152-6.304 2.022-2.643-2.4-9.73-15.055-2.06-17.513z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m389.6 229.58-.986-.224.06-.326.05-.39.035-.453.022-.504.006-.55-.009-.587-.028-.626-.045-.652-.064-.675-.084-.694-.104-.707-.124-.716-.145-.717-.167-.713-.19-.706-.213-.69-.236-.673-.26-.648-.284-.618-.307-.583-.332-.541-.355-.497-.377-.446-.4-.392-.423-.335-.443-.273-.47-.209-.495-.144-.526-.074h-.562l-.603.079-.645.167-.305-.972.756-.196.73-.096.698.001.667.095.63.183.593.264.552.338.511.405.473.461.437.516.4.56.367.6.336.637.305.666.277.692.251.71.224.73.2.739.174.744.15.746.13.742.108.734.086.72.067.702.046.679.029.65.012.619-.008.58-.023.538-.04.493-.054.444zm-7.136 2.289.678-.758.31.275.298.252.289.23.277.206.267.184.254.161.244.139.231.116.219.094.206.072.192.053.178.031.169.014.155-.004.145-.02.138-.036.13-.05.131-.07.129-.087.128-.107.127-.132.128-.153.127-.18.125-.203.12-.23.121-.256.116-.28.111-.303.109-.332.103-.355.1-.38.095-.404.986.223-.1.429-.107.406-.113.384-.118.363-.125.343-.133.32-.14.3-.149.28-.159.258-.167.238-.18.218-.192.194-.207.175-.217.147-.231.122-.243.094-.252.064-.258.035-.262.006-.266-.02-.271-.049-.271-.072-.274-.096-.278-.12-.281-.141-.287-.163-.292-.185-.299-.206-.305-.228-.31-.247-.32-.27-.329-.29zm-1.874-18.378.306.971-.622.238-.537.285-.458.329-.386.368-.323.405-.261.444-.207.483-.152.518-.102.553-.054.584-.005.612.042.635.082.655.125.67.158.68.192.686.224.688.25.686.273.68.292.67.308.654.322.637.33.616.336.59.337.559.335.524.331.487.32.445.306.4.288.346.265.292.237.23-.678.757-.284-.278-.301-.33-.315-.38-.327-.426-.34-.47-.344-.51-.35-.546-.351-.583-.349-.611-.341-.638-.334-.661-.32-.681-.305-.696-.285-.711-.261-.718-.235-.726-.205-.727-.17-.726-.132-.72-.092-.715-.044-.705.005-.691.061-.674.12-.652.187-.627.257-.597.33-.562.41-.515.49-.467.57-.408.649-.345zm.153.485-.153-.485z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M464.2 137.77c-17.233-1.568-34.854.195-52.298 7.171-14.703 5.881-13.262 23.054 4.666 46.89-1.622 3.02-2.545 6.775-2.69 11.11 1.896-.105 3.226-.056 4.9-.098-1.299-2.888.155-6.425 1.796-8.916 1.071-1.628 1.29-1.341 0-3.155-10.673-14.993-17.745-28.125-13.585-36.055 5.056-9.637 24.656-14.657 57.715-13.922q-.091-1.32-.181-2.663-.157-.18-.324-.36z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m412.09 145.42-.372-.948 1.642-.64 1.645-.613 1.646-.582 1.645-.55 1.647-.524 1.649-.493 1.647-.465 1.647-.436 1.649-.41 1.648-.381 1.649-.354 1.647-.327 1.649-.3 1.647-.275 1.646-.247 1.647-.224 1.646-.199 1.645-.173 1.644-.148 1.644-.125 1.641-.1 1.641-.076 1.64-.055 1.638-.032 1.636-.009 1.635.013 1.634.036 1.63.055 1.63.077 1.627.097 1.626.119 1.622.137-.09 1.015-1.61-.137-1.615-.117-1.614-.096-1.616-.077-1.619-.055-1.62-.034-1.62-.013-1.624.009-1.624.03-1.625.054-1.627.077-1.627.1-1.63.122-1.629.148-1.63.171-1.632.196-1.63.221-1.633.246-1.633.271-1.631.299-1.633.324-1.635.352-1.631.376-1.632.405-1.633.433-1.633.46-1.632.49-1.63.518-1.631.546-1.63.577-1.63.605zm4.925 46.659-.89-.486.041.55-1.638-2.223-1.542-2.183-1.445-2.144-1.35-2.102-1.254-2.061-1.156-2.02-1.06-1.976-.966-1.932-.87-1.887-.773-1.841-.676-1.798-.582-1.75-.483-1.702-.388-1.655-.293-1.605-.194-1.558-.096-1.507v-1.456l.098-1.404.197-1.351.295-1.297.396-1.241.493-1.185.595-1.123.692-1.063.792-1 .888-.935.986-.87 1.08-.802 1.173-.735 1.27-.666 1.362-.599.373.948-1.3.57-1.203.633-1.11.694-1.013.751-.919.812-.826.87-.734.928-.642.984-.55 1.041-.459 1.1-.367 1.158-.279 1.214-.185 1.273-.093 1.331v1.387l.093 1.444.188 1.497.283 1.553.376 1.607.471 1.657.567 1.71.663 1.76.759 1.807.855 1.858.951 1.904 1.048 1.95 1.143 1.995 1.24 2.04 1.337 2.083 1.433 2.125 1.53 2.166 1.626 2.207zm-.041-.55.196.261-.155.289zm-3.122 10.907.055 1.018-.532-.526.015-.41.02-.408.026-.404.03-.402.035-.396.04-.394.043-.39.049-.385.052-.384.057-.379.062-.376.066-.372.072-.368.074-.366.08-.36.084-.358.089-.353.093-.349.096-.347.103-.342.106-.338.111-.334.115-.331.12-.326.123-.322.13-.318.132-.315.136-.309.14-.307.148-.3.149-.298.154-.294.89.486-.147.277-.142.281-.137.286-.134.29-.13.295-.126.298-.122.303-.118.308-.114.311-.11.314-.106.32-.101.324-.098.327-.094.33-.089.337-.086.34-.08.342-.077.347-.072.35-.069.357-.063.357-.06.362-.055.367-.05.369-.047.374-.043.378-.037.38-.034.386-.029.387-.025.392-.02.396-.016.398zm.055 1.018-.552.03.02-.556zm4.412-.396.921-.421-.447.72-.158.003-.156.005-.153.002-.152.002-.151.002-.15.001-.149.001-.145.001-.147.001-.146.001h-.145l-.142.001-.147.001h-.146l-.143.001-.146.001-.147.001-.144.001-.148.002-.15.001-.147.002-.152.004-.151.001-.154.005-.158.004-.156.005-.162.006-.162.006-.166.007-.168.007-.17.008-.175.01-.055-1.018.178-.01.177-.007.17-.007.169-.007.167-.006.163-.006.164-.005.157-.004.157-.005.156-.004.152-.004.154-.002.15-.001.148-.002.15-.001.146-.001.146-.001.145-.001h.146l.142-.001.147-.001h.145l.144-.001.147-.001.145-.001.148-.001.146-.001.147-.002.151-.002.15-.002.152-.002.155-.004zm.921-.421.315.7-.762.02zm.915-8.987.842.562-.148.231-.148.235-.145.242-.143.245-.14.251-.136.254-.133.257-.127.264-.123.264-.119.267-.112.272-.106.272-.099.274-.093.277-.084.275-.076.278-.068.279-.061.278-.049.276-.04.277-.031.277-.02.273-.01.271.001.271.014.27.024.265.037.262.05.261.061.258.074.251.091.25.103.248-.922.42-.124-.297-.107-.301-.091-.307-.074-.308-.059-.309-.044-.31-.028-.311-.015-.313-.004-.314.012-.313.023-.314.035-.312.046-.31.056-.31.066-.31.075-.305.083-.307.093-.302.1-.3.11-.299.113-.293.121-.291.126-.289.132-.284.138-.278.14-.276.145-.27.15-.267.15-.26.155-.256.155-.248zm.009-2.577.821-.594.118.165.109.155.1.143.093.135.086.129.078.119.074.116.065.112.059.107.054.11.046.11.038.108.033.116.02.118.01.12-.005.123-.014.115-.025.112-.035.108-.043.105-.046.099-.054.096-.057.095-.059.091-.063.095-.068.101-.074.105-.077.11-.08.116-.085.123-.091.134-.096.142-.843-.563.1-.151.096-.14.09-.13.083-.119.077-.11.069-.099.06-.089.057-.085.049-.075.038-.063.03-.056.023-.046.014-.034.008-.03.006-.022.002-.017v-.014l-.001-.017-.004-.024-.008-.03-.017-.046-.022-.054-.033-.064-.041-.076-.05-.085-.06-.095-.07-.107-.078-.117-.089-.127-.097-.141-.107-.15-.115-.163zm-13.621-36.59.895.476-.339.719-.28.748-.217.778-.16.81-.105.838-.047.867.008.898.063.926.114.954.169.981.22 1.01.27 1.034.317 1.06.366 1.083.41 1.107.46 1.13.5 1.15.543 1.173.583 1.193.623 1.214.662 1.231.698 1.25.733 1.269.767 1.284.8 1.302.83 1.317.862 1.332.888 1.347.915 1.36.942 1.372.965 1.387.987 1.396-.821.594-.992-1.403-.97-1.392-.946-1.38-.92-1.367-.893-1.354-.867-1.34-.837-1.327-.807-1.312-.772-1.297-.743-1.28-.705-1.265-.669-1.248-.632-1.23-.593-1.213-.553-1.191-.51-1.175-.468-1.156-.422-1.134-.376-1.115-.33-1.096-.28-1.073-.228-1.05-.176-1.029-.122-1.007-.065-.983-.008-.959.05-.937.113-.91.176-.884.24-.858.309-.827zm57.658-13.65 1.01-.07-.516.544-3.055-.05-2.974-.02-2.896.016-2.816.046-2.737.08-2.655.115-2.576.145-2.495.177-2.414.21-2.332.241-2.253.273-2.169.303-2.087.336-2.006.364-1.923.397-1.842.426-1.757.456-1.675.484-1.59.514-1.507.543-1.424.572-1.34.599-1.253.627-1.171.655-1.085.68-1 .707-.915.732-.83.756-.745.78-.662.806-.579.829-.494.853-.895-.477.54-.927.624-.896.711-.866.796-.833.88-.802.965-.772 1.048-.741 1.13-.707 1.212-.679 1.294-.647 1.377-.615 1.458-.586 1.54-.556 1.622-.523 1.703-.494 1.784-.463 1.865-.43 1.947-.402 2.027-.37 2.11-.338 2.188-.305 2.269-.275 2.349-.243 2.43-.21 2.51-.18 2.59-.146 2.669-.114 2.749-.08 2.828-.049 2.908-.015 2.986.02 3.065.052zm1.01-.07.038.556-.554-.012zm-1.066-2.29.759-.674.125.303.006.086.005.084.006.08.006.083.006.088.005.083.006.08.006.084.006.088.005.083.006.08.006.083.006.088.005.082.005.08.006.082.007.085.006.087.005.082.005.08.006.083.007.086.005.083.005.078.006.083.007.087.005.083.005.08.006.081.007.087.005.082.006.081-1.01.07-.006-.084-.005-.082-.005-.08-.006-.08-.007-.087-.005-.083-.005-.08-.006-.083-.007-.085-.005-.083-.005-.08-.006-.083-.007-.086-.005-.084-.006-.08-.005-.083-.006-.083-.007-.086-.005-.085-.006-.08-.006-.083-.006-.088-.005-.083-.006-.08-.006-.084-.006-.087-.005-.083-.006-.08-.006-.085-.006-.087-.005-.084-.006-.083zm.759-.674.113.13.012.173zm-1.061-.385.716.722.012-.708.008.008.02.023.01.01v.001l.02.022.01.012-.008-.01.03.032.008.012.011.01.009.013h.001l.02.021.01.012.02.022.01.012.029.032v.001l.03.033v.001l.029.032v.001l.01.011.02.023v.001l.009.01.01.011.012.013-.759.674-.007-.008-.01-.012-.011-.012-.018-.02v-.002l-.01-.01-.02-.023.01.01-.021-.021-.02-.023.01.01-.02-.02-.02-.024.01.011-.021-.022-.01-.012-.02-.021-.01-.012-.02-.022-.01-.012-.01-.01-.01-.013.009.01-.03-.032-.009-.012h-.001l-.02-.022-.01-.011v-.001l-.013-.013.011-.709zm-.012.709-.333-.361.345-.348zm.73.012h-.002l-.716-.72v-.002l.404-.146zm-.314-.869 1.077.1-.764.769z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M380.59 142.66c3.391 0 6.14 2.769 6.14 6.185 0 3.417-2.749 6.187-6.14 6.187s-6.14-2.77-6.14-6.187c0-3.416 2.749-6.185 6.14-6.185",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M387.24 148.84h-1.012c.025-2.114-1.246-4.174-3.15-5.094a5.6 5.6 0 0 0-2.484-.58v-1.02c2.255-.02 4.458 1.218 5.631 3.141a6.7 6.7 0 0 1 1.015 3.553m-6.646 6.696v-1.02c2.085.025 4.105-1.237 5.023-3.105.404-.792.61-1.682.61-2.57h1.013c.02 2.274-1.212 4.506-3.152 5.694a6.6 6.6 0 0 1-3.495 1.001m-6.647-6.696h1.012c-.024 2.102 1.23 4.151 3.117 5.079a5.6 5.6 0 0 0 2.517.597v1.02c-2.256.02-4.459-1.22-5.631-3.143a6.7 6.7 0 0 1-1.015-3.553m6.647-6.695v1.02c-2.086-.025-4.106 1.236-5.024 3.104a5.7 5.7 0 0 0-.61 2.57h-1.013c-.02-2.26 1.198-4.481 3.12-5.674a6.6 6.6 0 0 1 3.527-1.02",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M392.62 138.7c3.391 0 6.14 2.769 6.14 6.185 0 3.418-2.749 6.187-6.14 6.187s-6.14-2.769-6.14-6.187c0-3.415 2.749-6.185 6.14-6.185",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M399.27 144.88h-1.012c.025-2.114-1.246-4.174-3.15-5.094a5.6 5.6 0 0 0-2.484-.581v-1.02c2.255-.02 4.458 1.22 5.631 3.142a6.7 6.7 0 0 1 1.015 3.553m-6.646 6.696v-1.02c2.073.025 4.08-1.221 5.006-3.071.415-.801.627-1.704.628-2.605h1.012c.02 2.275-1.212 4.507-3.152 5.697a6.6 6.6 0 0 1-3.495 1zm-6.646-6.696h1.012c-.024 2.09 1.214 4.126 3.082 5.062a5.6 5.6 0 0 0 2.551.614v1.02c-2.268.02-4.483-1.233-5.65-3.174a6.73 6.73 0 0 1-.995-3.522m6.645-6.695v1.02c-2.072-.025-4.079 1.221-5.005 3.07a5.7 5.7 0 0 0-.628 2.604h-1.012c-.02-2.286 1.226-4.53 3.183-5.714a6.6 6.6 0 0 1 3.463-.98z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M394.22 143.97q.908 1.228 1.838 2.456c-9.7 5.361-13.717 11.016-12.77 16.702.161.976 3.111 11.382 9.7 31.549q6.755 4.7 10.07 8.412c-.248.282.71 1.16.424 1.4.673 3.08-2.775 2.454-5.09 1.694-1.115-2.961-4.516-6.103-6.47-7.446-.398-.273-1.837-.98-1.98-1.44-3.526-11.349-7.068-21.843-10.106-31.615-3.052-9.82 3.56-16.78 14.384-21.713z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m396.31 146.88-.487-.892-.159.755-.06-.078-.057-.077-.055-.074-.06-.078-.06-.078-.058-.077-.057-.077-.057-.076-.059-.078-.057-.076-.058-.077-.059-.08-.055-.073-.058-.075-.06-.081-.057-.077-.058-.077-.056-.076-.057-.076-.058-.078-.058-.077-.057-.077-.056-.076-.059-.077-.057-.08-.056-.074-.057-.077-.058-.077-.056-.076-.058-.079-.056-.077-.058-.076.812-.608.057.078.056.077.057.075.056.075.057.077.057.077.059.08.055.074.056.075.058.078.058.077.057.077.056.076.057.076.059.078.057.077.057.077.055.073.059.076.06.08.056.075.058.077.057.078.057.074.06.078.056.077.059.077.056.076.056.073.062.08.058.078.057.075zm.159-.755.357.47-.516.285zm-12.674 16.928-.998.166-.078-.559-.048-.561-.016-.562.015-.559.046-.56.076-.56.11-.559.138-.557.172-.554.202-.553.234-.554.265-.55.296-.546.327-.545.358-.544.39-.541.422-.539.452-.536.484-.535.515-.532.546-.53.578-.528.61-.526.64-.523.674-.523.705-.52.738-.517.769-.516.802-.515.836-.51.867-.51.9-.508.488.892-.886.5-.851.5-.82.502-.785.503-.752.504-.718.505-.687.505-.653.507-.62.506-.589.509-.556.507-.524.51-.492.508-.46.508-.428.508-.397.51-.367.507-.334.508-.306.506-.272.506-.246.507-.212.505-.185.505-.156.504-.126.504-.098.504-.069.501-.04.505-.014.504.015.504.043.504.07.506zm0-.001-.023-.136zm9.488 31.214-.575.84-.192-.262-.609-1.861-.585-1.807-.566-1.747-.543-1.692-.524-1.635-.502-1.578-.484-1.52-.462-1.465-.443-1.407-.421-1.35-.403-1.296-.382-1.236-.366-1.182-.343-1.126-.325-1.067-.306-1.012-.287-.956-.27-.9-.25-.844-.231-.788-.215-.732-.195-.676-.178-.62-.16-.566-.143-.51-.124-.455-.108-.398-.091-.342-.075-.291-.058-.237-.041-.184-.03-.145.999-.166.019.094.037.165.055.222.073.282.088.338.106.393.124.45.141.505.16.563.178.618.195.673.212.73.232.786.25.842.266.897.288.956.306 1.01.324 1.067.344 1.123.363 1.18.382 1.236.404 1.293.42 1.348.444 1.407.462 1.463.48 1.52.503 1.575.524 1.635.544 1.69.565 1.747.585 1.804.607 1.862zm-.575.84-.138-.097-.054-.165zm10.736 8.33-.757-.676.002.678-.205-.228-.215-.23-.22-.233-.228-.236-.232-.237-.241-.24-.248-.24-.254-.243-.261-.245-.269-.249-.273-.248-.283-.252-.287-.254-.296-.255-.302-.258-.308-.259-.315-.262-.323-.264-.328-.265-.337-.269-.341-.269-.35-.272-.356-.273-.363-.275-.369-.28-.377-.277-.383-.283-.39-.283-.397-.287-.403-.287-.41-.289-.417-.29.575-.84.42.293.414.294.409.29.398.288.395.286.386.285.382.283.374.281.367.278.36.278.355.277.346.271.342.273.333.269.328.268.32.267.315.263.307.264.3.26.294.258.288.257.28.255.276.254.267.25.261.25.254.248.249.247.24.244.235.243.226.24.222.24.215.238zm-.002-.678.302.338-.3.34zm.542 1.63-.988.22.17-.5-.053.056-.044.073-.023.07-.007.056v.028l.004.021h-.001l-.005-.016-.006-.017-.014-.028-.02-.038-.023-.042-.024-.045-.029-.048-.026-.044-.032-.052-.037-.061-.03-.05-.035-.059-.034-.06-.035-.065-.032-.062-.028-.059-.032-.07-.029-.08-.024-.08-.016-.085-.011-.098.004-.12.026-.126.058-.134.08-.113.758.676.04-.057.031-.071.012-.057v-.064l.002.007.005.013.01.026.021.04.018.038.023.04.025.044.03.048.032.056.027.047.035.054.036.061.033.058.034.059.03.059.032.06.03.066.033.077.024.07.022.084.016.1.002.103-.014.126-.045.133-.075.128-.101.105zm-.988.22-.066-.302.236-.199zm-5.069 1.764.946-.361-.317-.304.213.068.22.067.225.065.227.064.228.059.23.054.23.05.229.045.225.039.223.032.219.025.212.017.206.011h.198l.185-.007.177-.017.162-.025.15-.035.136-.043.117-.048.102-.056.09-.062.072-.066.065-.077.055-.086.044-.098.036-.12.026-.139.01-.166-.004-.19-.023-.217-.045-.243.988-.22.057.313.033.297.007.282-.02.27-.046.254-.074.24-.102.223-.129.204-.15.18-.173.157-.185.13-.2.111-.21.087-.213.067-.224.052-.226.034-.234.024-.238.01-.24-.003-.244-.01-.246-.02-.25-.03-.25-.035-.251-.043-.252-.05-.25-.054-.247-.06-.247-.063-.24-.066-.237-.07-.233-.07-.227-.073zm.317.304-.23-.076-.087-.228zm-6.598-7.51.568-.841h.001l.195.137.2.145.208.154.216.166.219.175.224.181.23.19.232.201.235.207.236.213.24.221.24.227.241.234.242.242.237.244.239.251.234.256.233.261.228.265.224.27.22.272.213.277.207.281.2.282.193.285.183.287.176.29.165.292.154.292.143.295.132.296.118.297-.945.36-.104-.258-.116-.262-.129-.263-.14-.266-.15-.266-.16-.266-.17-.266-.18-.265-.187-.265-.194-.262-.202-.26-.208-.26-.212-.256-.219-.252-.22-.25-.225-.243-.227-.24-.23-.237-.23-.23-.23-.223-.231-.22-.23-.212-.23-.206-.225-.2-.221-.188-.22-.183-.215-.174-.209-.165-.201-.156-.199-.147-.188-.138-.18-.125zm.568-.841h.001l.3.205zm-2.746-.866.964-.306-.008-.021-.002-.005.009.013.017.022.021.024.031.03.04.037.05.043.049.041.056.042.063.048.067.047.065.046.073.047.074.05.072.045.079.048.08.05.076.046.078.046.08.047.073.043.075.042.076.045.07.04.069.04.065.039.065.037.058.036.061.037.053.034.047.033-.568.841-.033-.02-.038-.027-.042-.025-.054-.031-.057-.035-.063-.036-.068-.04-.07-.04-.072-.043-.078-.044-.082-.048-.078-.047-.082-.048-.086-.052-.08-.05-.084-.05-.088-.056-.081-.053-.083-.054-.082-.058-.079-.057-.075-.055-.078-.059-.075-.062-.067-.058-.068-.063-.066-.067-.065-.072-.057-.075-.053-.078-.052-.096zm-10.106-31.615.964-.306.287.92.288.92.293.927.293.93.297.935.3.94.301.943.305.948.306.952.308.958.31.962.313.965.314.972.317.976.317.979.32.983.32.991.322.994.324 1 .323 1.002.326 1.008.326 1.012.327 1.02.328 1.021.329 1.027.33 1.033.33 1.037.33 1.042.33 1.048.33 1.051.331 1.058.33 1.061-.964.306-.33-1.062-.331-1.055-.33-1.05-.331-1.047-.33-1.042-.328-1.036-.33-1.031-.328-1.027-.328-1.022-.327-1.017-.326-1.012-.326-1.008-.323-1.003-.324-1-.322-.993-.32-.988-.32-.984-.317-.982-.317-.975-.314-.972-.312-.965-.31-.962-.309-.958-.307-.952-.304-.95-.302-.944-.3-.942-.298-.935-.294-.933-.292-.926-.289-.924zm15.272-22.17-.812.608.615.16-.995.463-.967.478-.94.486-.911.5-.882.512-.854.522-.821.535-.79.548-.756.559-.72.571-.687.585-.65.596-.616.609-.574.62-.538.633-.497.645-.457.659-.415.67-.374.684-.332.696-.286.708-.244.726-.199.737-.153.752-.106.767-.057.782-.01.8.04.815.092.834.14.85.198.868.25.886-.964.306-.265-.94-.209-.921-.153-.91-.096-.892-.045-.877.012-.863.062-.846.116-.833.165-.814.216-.8.263-.783.31-.766.356-.749.402-.734.444-.716.486-.7.527-.686.567-.667.606-.653.643-.638.68-.623.712-.606.75-.593.781-.578.814-.564.846-.552.875-.537.903-.524.934-.51.958-.498.986-.484 1.011-.473zm-.615-.16.371-.17.244.33z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m355.95 216.87-.368 1.98q-4.237.99-7.245.494c3.355-3.299 5.854-4 7.613-2.474",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m355.08 218.76.368-1.98.993.188-.368 1.98-.382.403zm.993.188-.06.328-.322.075zm-8.095.036.706.728-.272-.867.183.03.18.024.189.022.188.02.19.019.192.013.198.012.198.009.202.006.205.002.206.001.207-.002.212-.005.215-.008.216-.01.22-.015.221-.016.225-.02.227-.021.229-.025.23-.028.235-.031.237-.034.24-.037.242-.039.243-.042.249-.045.25-.047.25-.05.254-.055.258-.057.259-.06.23.994-.27.06-.264.059-.262.056-.262.053-.26.05-.255.045-.255.045-.251.04-.248.038-.249.036-.244.031-.243.03-.24.026-.24.024-.236.019-.231.018-.232.014-.23.011-.225.008-.225.007-.225.002h-.22l-.217-.006-.216-.006-.212-.009-.21-.012-.21-.015-.208-.019-.203-.022-.2-.024-.202-.028-.197-.031-.272-.868zm.272.867-.989-.164.717-.703zm8.19-2.883-.992-.188.167.48-.143-.118-.147-.104-.148-.093-.15-.08-.154-.07-.156-.058-.16-.048-.161-.035-.17-.024-.174-.014-.179-.002-.184.01-.19.022-.198.035-.205.047-.21.06-.216.075-.224.086-.23.103-.236.116-.242.129-.249.145-.254.16-.261.174-.265.19-.274.204-.278.218-.283.234-.289.25-.294.266-.302.28-.305.295-.706-.729.318-.308.314-.293.31-.278.305-.262.3-.249.297-.235.292-.218.29-.205.284-.191.28-.176.278-.162.276-.148.27-.131.267-.12.265-.103.261-.089.26-.074.256-.059.252-.044.25-.03.249-.012.246.002.24.019.235.034.235.051.227.068.22.081.217.099.21.112.204.128.197.141.19.156zm-.166-.48.22.191-.053.289zm-.33.386.497.094zm.33-.386.22.191-.053.289z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M355.64 212.34c1.77.394 1.934.695 2.706.83.992.172 2.359.102 3.3-.729 3.837-2.319 3.92 1.858 2.429 4.986-1.082 2.266-.527 4.826.505 6.766 1.22 2.291.96 3.34.097 3.96-.596.393-1.166.762-1.677 1.09-1.033 1.23-1.819 1.018-1.964-.59-3.832-1.589-5.101-5.292-6.248-8.551-1.677-4.766-7.771-5.893.85-7.762z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m358.43 212.66-.172 1.003-.082-.015-.078-.016-.073-.017-.074-.018-.074-.02-.07-.022-.065-.022-.064-.022-.065-.024-.06-.022-.06-.022-.066-.026-.057-.024-.06-.023-.067-.026-.062-.025-.065-.026-.07-.027-.072-.027-.077-.027-.078-.03-.082-.027-.093-.03-.095-.03-.1-.03-.108-.031-.116-.034-.123-.033-.129-.033-.138-.034-.15-.035-.156-.036.217-.995.168.038.155.037.148.036.143.036.132.037.123.034.119.034.115.035.105.035.098.032.097.033.09.03.083.03.081.032.073.028.073.027.07.028.059.024.064.025.06.024.051.02.055.021.054.022.048.017.05.017.052.016.047.015.048.013.05.013.056.012.059.012zm2.953-.664.52.873.074-.054-.107.09-.107.083-.11.08-.115.074-.112.068-.116.065-.12.06-.118.054-.118.05-.121.045-.124.043-.12.036-.122.034-.125.03-.121.027-.125.022-.121.019-.12.016-.124.014-.12.009-.119.007-.121.004-.116.002h-.117l-.118-.005-.11-.005-.115-.007-.11-.01-.11-.01-.11-.015-.102-.014-.105-.018.172-1.003.084.013.088.012.087.012.09.008.093.01.09.004.098.005.095.002h.195l.092-.004.098-.007.098-.007.095-.01.098-.013.098-.015.096-.018.095-.02.093-.022.093-.027.094-.029.089-.029.09-.036.091-.037.087-.04.083-.04.082-.046.084-.05.078-.051.077-.055.076-.06.073-.06zm-.073.054.036-.032.037-.022zm3.219 5.59-.912-.442.127-.28.12-.286.11-.288.099-.291.09-.292.078-.288.067-.286.056-.283.043-.277.032-.268.02-.258.006-.246-.006-.233-.019-.219-.03-.2-.041-.185-.052-.16-.06-.138-.069-.118-.072-.094-.08-.077-.085-.061-.092-.044-.114-.034-.134-.02h-.16l-.189.022-.216.05-.246.08-.273.112-.299.148-.324.185-.52-.873.372-.212.355-.176.34-.141.325-.105.314-.07.3-.037h.29l.278.041.261.077.245.12.215.152.189.18.158.207.13.224.107.24.08.253.06.26.042.274.024.281.008.291-.008.299-.023.306-.037.31-.05.314-.063.32-.074.319-.088.325-.1.322-.11.322-.122.32-.132.315-.142.312zm.494 6.305-.89.48-.1-.193-.098-.195-.094-.202-.09-.203-.085-.205-.084-.21-.078-.214-.072-.215-.07-.218-.063-.221-.06-.222-.052-.226-.049-.227-.04-.229-.037-.23-.03-.234-.023-.233-.017-.233-.009-.239-.002-.235.006-.238.015-.239.02-.238.03-.24.038-.238.048-.237.056-.24.066-.238.075-.234.085-.235.094-.234.105-.232.912.442-.088.194-.08.196-.07.198-.064.199-.056.2-.047.2-.04.204-.034.202-.025.202-.018.204-.012.204-.004.205v.204l.01.205.014.204.02.207.025.202.032.202.039.205.041.2.048.2.053.2.056.197.062.194.065.193.07.19.075.19.079.187.08.184.084.18.087.178zm-.07 4.626-.554-.854-.017.012.06-.046.057-.047.056-.05.049-.048.042-.047.041-.053.039-.053.033-.054.029-.054.025-.058.023-.064.02-.066.017-.072.015-.077.009-.077.005-.088v-.094l-.005-.098-.01-.109-.014-.113-.022-.121-.028-.129-.034-.133-.042-.141-.05-.152-.056-.158-.065-.164-.071-.172-.082-.179-.088-.189-.098-.195-.105-.203.89-.481.115.22.105.212.098.205.091.201.081.196.074.19.066.183.06.178.05.175.045.171.035.165.03.16.021.159.015.151.007.152-.002.144-.007.143-.017.142-.024.135-.031.13-.04.129-.045.121-.053.12-.063.115-.066.11-.072.1-.075.096-.085.095-.087.087-.087.08-.094.078-.097.072zm.016-.012-.017.012zm-1.585 1.005-.771-.659.113-.1.047-.03.051-.033.05-.031.048-.032.048-.03.049-.03.05-.033.05-.033.053-.035.05-.03.048-.032.05-.034.055-.035.052-.033.051-.034.054-.035.054-.035.052-.033.053-.034.054-.035.05-.033.053-.036.057-.036.054-.036.054-.034.054-.036.056-.038.054-.033.055-.038.058-.038.053-.034.056-.038.554.854-.057.036-.057.038-.054.034-.054.037-.059.039-.054.034-.056.036-.053.035-.055.036-.052.034-.053.036-.058.037-.053.035-.055.036-.053.034-.053.035-.052.032-.051.034-.053.034-.048.032-.052.034-.055.036-.052.033-.048.03-.05.033-.05.032-.051.034-.05.033-.05.03-.049.032-.046.029-.049.032zm-.771-.659.049-.059.064-.04zm-1.772.21.385-.942.311.426.013.13.017.121.02.112.022.102.024.09.025.079.027.07.027.062.026.049.023.037.019.026.016.016.016.014.006.005h.002l.002.002h.006l.005.002.009-.001.023-.004.026-.006.037-.014.044-.019.051-.028.059-.036.062-.044.07-.054.072-.063.075-.07.08-.081.084-.092.087-.1.77.66-.105.121-.105.116-.107.107-.106.1-.106.09-.108.086-.11.076-.108.067-.113.062-.116.05-.118.042-.125.03-.123.018-.133.004-.132-.013-.125-.028-.124-.044-.12-.061-.108-.075-.094-.083-.089-.094-.078-.104-.068-.107-.06-.114-.053-.117-.046-.124-.042-.131-.036-.138-.03-.144-.026-.147-.021-.157-.018-.162zm.385-.942.284.118.027.308zm-6.917-7.909.953-.341.107.306.11.308.11.31.112.309.114.309.117.307.119.308.124.306.127.305.131.302.135.298.142.295.147.294.151.287.16.283.165.277.173.273.178.266.189.26.197.254.204.247.212.239.225.232.232.222.243.215.254.206.266.196.278.188.29.178.304.167.316.157.332.146-.385.943-.372-.165-.357-.177-.344-.189-.328-.202-.314-.211-.302-.223-.288-.234-.275-.242-.262-.251-.25-.261-.24-.267-.227-.274-.216-.28-.208-.287-.197-.292-.187-.297-.18-.302-.171-.304-.164-.31-.156-.31-.15-.314-.144-.315-.136-.316-.134-.318-.126-.317-.124-.318-.12-.317-.118-.316-.112-.314-.112-.312-.11-.31zm1.328-8.442v1.02l.106-.012-.757.17-.672.168-.59.163-.51.159-.432.155-.359.151-.285.145-.212.136-.147.121-.087.099-.04.072-.015.056-.001.067.019.092.048.128.08.155.118.179.149.202.175.218.2.235.222.252.235.268.248.283.257.301.26.32.26.336.258.357.25.378.237.397.225.42.204.443.181.467-.952.341-.158-.406-.18-.388-.198-.372-.214-.356-.226-.342-.235-.326-.242-.314-.246-.3-.245-.288-.24-.278-.236-.265-.226-.259-.215-.25-.196-.247-.18-.243-.158-.244-.134-.254-.098-.267-.055-.285.008-.301.08-.3.154-.276.209-.241.257-.213.308-.196.359-.183.415-.175.479-.172.546-.171.618-.17.693-.173.776-.175zm-.106.012.054-.012h.052zm.107 1.008zv-1.02h.001l.109.012zm0-1.02h.055l.054.012z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M357.15 212.5c3.336 1.198 3.709-.666 5.96-.571-.887 5.141-1.785 7.801-7.11 5.042-2.938-1.523-6.701.706-7.416 2.36-.261.604-1.97-.65-2.595-2.025-2.615-5.757 6.688-6.412 11.16-4.806",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m363.61 212.02-.996-.176.477.597-.18-.002-.169.006-.157.014-.154.023-.147.028-.142.035-.137.04-.138.047-.135.05-.138.055-.137.057-.139.06-.142.063-.147.064-.153.065-.158.062-.161.06-.174.058-.177.05-.188.047-.198.037-.203.029-.215.02-.223.007-.235-.005-.244-.016-.254-.032-.266-.044-.28-.06-.29-.075-.307-.091-.32-.11.339-.96.289.098.268.082.253.065.236.05.221.037.207.024.193.015.18.002.171-.006.162-.015.156-.021.145-.028.142-.035.14-.04.137-.046.138-.05.137-.055.136-.058.14-.06.142-.062.148-.065.151-.064.155-.063.164-.06.17-.057.179-.05.187-.048.195-.037.201-.03.215-.02.222-.007.232.005zm-.476-.597.575.025-.099.572zm-7.363 6.005.463-.907.472.237.445.204.419.173.391.144.366.113.34.084.315.058.288.031.264.007.242-.015.22-.036.201-.056.185-.075.172-.094.164-.114.155-.135.148-.158.143-.18.136-.205.13-.23.126-.253.118-.277.113-.3.106-.321.103-.343.098-.365.093-.383.09-.402.087-.42.085-.439.082-.454.084-.473.995.176-.084.477-.084.464-.087.45-.09.436-.094.418-.098.405-.105.389-.11.372-.118.355-.128.34-.14.323-.149.304-.163.288-.18.27-.195.247-.215.227-.234.202-.252.177-.272.15-.292.116-.308.086-.324.053-.335.023-.352-.009-.367-.04-.38-.07-.397-.099-.418-.13-.434-.159-.455-.187-.479-.22zm-6.722 2.11-.926-.407.094-.193.11-.193.13-.189.142-.184.158-.182.173-.18.182-.175.197-.172.21-.17.221-.162.232-.159.241-.15.252-.146.26-.136.268-.13.278-.12.283-.108.29-.1.296-.088.302-.075.308-.062.31-.048.314-.032.318-.017h.318l.321.018.321.037.322.058.32.078.316.1.315.124.31.146-.464.907-.247-.118-.248-.097-.255-.08-.255-.064-.26-.046-.26-.03-.264-.016h-.264l-.265.015-.264.027-.265.041-.26.052-.26.066-.255.076-.252.085-.247.096-.24.104-.234.113-.226.119-.219.126-.21.131-.198.135-.19.14-.177.141-.163.146-.154.146-.137.141-.122.142-.109.141-.09.131-.073.128zm-3.517-2.017.919-.423.053.109.058.112.063.107.07.11.073.111.078.107.079.105.084.102.088.102.09.098.087.093.092.09.092.087.092.08.091.077.087.068.088.065.086.059.08.05.077.045.068.036.06.028.056.02.044.013.028.007.011.001h-.007l-.032.007-.05.02-.048.033-.04.047-.026.044.927.406-.082.147-.115.126-.136.095-.153.061-.147.03-.136.001-.13-.013-.122-.026-.113-.035-.115-.045-.116-.051-.113-.06-.11-.064-.116-.072-.112-.079-.112-.081-.116-.09-.112-.096-.113-.1-.111-.104-.111-.108-.11-.116-.106-.117-.104-.121-.104-.126-.1-.131-.095-.134-.09-.133-.089-.139-.082-.145-.076-.143-.07-.148zm11.79-5.497-.34.96-.411-.138-.437-.124-.462-.11-.481-.098-.5-.083-.511-.067-.523-.053-.529-.035-.533-.018-.533-.001-.531.016-.523.034-.514.055-.502.073-.484.091-.465.11-.44.133-.417.15-.385.169-.353.188-.316.204-.277.221-.237.237-.197.253-.157.27-.117.285-.074.31-.032.34.017.37.07.407.13.443.192.482-.919.423-.229-.568-.157-.547-.092-.527-.022-.507.044-.481.11-.457.172-.426.228-.392.278-.356.321-.321.36-.289.396-.255.424-.226.45-.197.474-.172.495-.147.514-.123.53-.1.542-.079.553-.059.561-.037.565-.018.566.001.564.02.562.038.554.055.546.072.532.088.517.105.498.12.48.136zm-.17.48.17-.48z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M458.84 124.49c3.376 0 6.112 2.758 6.112 6.159s-2.736 6.159-6.112 6.159-6.113-2.758-6.113-6.16c0-3.4 2.737-6.158 6.113-6.158",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M465.46 130.64h-1.012c.027-2.145-1.29-4.233-3.244-5.123a5.5 5.5 0 0 0-2.362-.525v-1.02c2.247-.02 4.44 1.215 5.609 3.13a6.7 6.7 0 0 1 1.009 3.538m-6.618 6.669v-1.02c2.076.025 4.085-1.231 4.998-3.09a5.65 5.65 0 0 0 .608-2.559h1.012c.02 2.265-1.207 4.488-3.137 5.672a6.6 6.6 0 0 1-3.48.997m-6.619-6.669h1.013c-.026 2.104 1.24 4.155 3.134 5.07a5.55 5.55 0 0 0 2.472.578v1.02c-2.26.02-4.464-1.229-5.63-3.161a6.7 6.7 0 0 1-.989-3.507m6.62-6.669v1.02c-2.09-.026-4.11 1.248-5.016 3.124a5.65 5.65 0 0 0-.591 2.525h-1.013c-.02-2.265 1.207-4.488 3.139-5.672a6.6 6.6 0 0 1 3.48-.997",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M446.31 124.49c3.376 0 6.113 2.758 6.113 6.159s-2.737 6.159-6.113 6.159-6.113-2.758-6.113-6.16c0-3.4 2.737-6.158 6.113-6.158",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M452.93 130.64h-1.012c.025-2.104-1.24-4.154-3.135-5.07a5.55 5.55 0 0 0-2.472-.578v-1.02c2.26-.02 4.464 1.23 5.63 3.161a6.7 6.7 0 0 1 .989 3.507zm-6.619 6.669v-1.02c2.088.026 4.109-1.247 5.016-3.124.391-.78.591-1.653.59-2.525h1.013c.02 2.265-1.207 4.488-3.139 5.672a6.6 6.6 0 0 1-3.48.997m-6.619-6.669h1.012c-.025 2.104 1.24 4.155 3.135 5.07a5.55 5.55 0 0 0 2.472.578v1.02c-2.26.02-4.464-1.229-5.63-3.161a6.7 6.7 0 0 1-.99-3.507m6.619-6.669v1.02c-2.088-.026-4.109 1.248-5.016 3.124a5.65 5.65 0 0 0-.59 2.525h-1.013c-.02-2.265 1.207-4.488 3.139-5.672a6.6 6.6 0 0 1 3.48-.997z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M433.79 125.48c3.376 0 6.113 2.757 6.113 6.159 0 3.4-2.737 6.159-6.113 6.159s-6.112-2.758-6.112-6.16 2.736-6.158 6.112-6.158",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M440.41 131.63h-1.012c.025-2.091-1.223-4.131-3.101-5.054a5.54 5.54 0 0 0-2.506-.595v-1.02c2.247-.02 4.44 1.215 5.61 3.13a6.7 6.7 0 0 1 1.009 3.539m-6.619 6.669v-1.02c2.088.026 4.109-1.247 5.016-3.124a5.65 5.65 0 0 0 .59-2.525h1.013c.02 2.265-1.207 4.488-3.139 5.672a6.6 6.6 0 0 1-3.48.997m-6.618-6.669h1.012c-.026 2.145 1.291 4.233 3.244 5.123a5.5 5.5 0 0 0 2.362.526v1.02c-2.26.02-4.465-1.23-5.629-3.163a6.7 6.7 0 0 1-.989-3.506m6.618-6.669v1.02c-2.088-.026-4.109 1.247-5.015 3.123a5.65 5.65 0 0 0-.59 2.526h-1.013c-.02-2.334 1.285-4.624 3.316-5.779a6.57 6.57 0 0 1 3.302-.89",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M422.25 127.7c3.376 0 6.112 2.757 6.112 6.158s-2.736 6.16-6.112 6.16-6.113-2.758-6.113-6.16 2.737-6.158 6.113-6.158",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M428.87 133.86h-1.012c.025-2.104-1.24-4.154-3.134-5.07a5.54 5.54 0 0 0-2.472-.577v-1.02c2.26-.02 4.464 1.228 5.629 3.16a6.7 6.7 0 0 1 .99 3.507m-6.618 6.67v-1.02c2.088.026 4.108-1.248 5.015-3.124.391-.78.59-1.653.59-2.526h1.013c.02 2.265-1.206 4.488-3.137 5.673a6.6 6.6 0 0 1-3.48.997m-6.619-6.67h1.013c-.023 2.014 1.13 3.98 2.894 4.947.825.46 1.768.705 2.712.703v1.02c-2.246.02-4.44-1.215-5.609-3.13a6.7 6.7 0 0 1-1.01-3.54m6.62-6.667v1.02c-2.102-.027-4.133 1.262-5.033 3.155a5.66 5.66 0 0 0-.575 2.492h-1.012c-.021-2.322 1.271-4.6 3.284-5.759a6.6 6.6 0 0 1 3.335-.909z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M346.3 159.43c3.391 0 6.14 2.769 6.14 6.186s-2.749 6.186-6.14 6.186-6.14-2.769-6.14-6.186c0-3.418 2.749-6.186 6.14-6.186",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M352.94 165.62h-1.012c.024-2.101-1.23-4.151-3.117-5.078a5.6 5.6 0 0 0-2.518-.598v-1.02c2.256-.02 4.459 1.219 5.632 3.142a6.73 6.73 0 0 1 1.015 3.554m-6.646 6.695v-1.02c2.085.025 4.105-1.236 5.023-3.104.404-.792.61-1.682.61-2.57h1.013c.02 2.26-1.198 4.481-3.12 5.674a6.6 6.6 0 0 1-3.527 1.02zm-6.647-6.695h1.012c-.024 2.101 1.23 4.15 3.116 5.077a5.6 5.6 0 0 0 2.518.598v1.02c-2.242.019-4.434-1.205-5.611-3.11a6.7 6.7 0 0 1-1.035-3.585m6.647-6.696v1.02c-2.074-.025-4.082 1.221-5.007 3.071a5.7 5.7 0 0 0-.628 2.605h-1.012c-.02-2.275 1.212-4.507 3.152-5.697a6.6 6.6 0 0 1 3.495-1",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M356.82 152.75c3.39 0 6.14 2.769 6.14 6.186s-2.749 6.186-6.14 6.186-6.14-2.769-6.14-6.186 2.749-6.186 6.14-6.186",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M363.47 158.94h-1.012c.024-2.09-1.214-4.126-3.083-5.062a5.6 5.6 0 0 0-2.55-.614v-1.02c2.268-.02 4.482 1.234 5.65 3.174a6.74 6.74 0 0 1 .995 3.522m-6.645 6.695v-1.02c2.085.025 4.104-1.236 5.022-3.103.404-.793.61-1.683.61-2.572h1.013c.02 2.261-1.197 4.48-3.118 5.674a6.6 6.6 0 0 1-3.527 1.021m-6.647-6.695h1.012c-.024 2.114 1.246 4.174 3.15 5.094.769.384 1.626.581 2.485.58v1.02c-2.256.02-4.459-1.218-5.632-3.141a6.7 6.7 0 0 1-1.015-3.553m6.647-6.696v1.02c-2.086-.025-4.106 1.237-5.024 3.105a5.7 5.7 0 0 0-.61 2.57h-1.013c-.02-2.274 1.212-4.506 3.152-5.694a6.6 6.6 0 0 1 3.495-1.001",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M368.79 147.09c3.391 0 6.14 2.769 6.14 6.186s-2.747 6.186-6.14 6.186c-3.39 0-6.14-2.769-6.14-6.186 0-3.418 2.749-6.186 6.14-6.186",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M375.43 153.28h-1.012c.025-2.114-1.246-4.175-3.15-5.096a5.6 5.6 0 0 0-2.484-.58v-1.02c2.255-.02 4.458 1.219 5.631 3.142a6.73 6.73 0 0 1 1.015 3.554m-6.646 6.695v-1.02c2.085.026 4.104-1.236 5.023-3.103a5.7 5.7 0 0 0 .61-2.572h1.013c.02 2.274-1.211 4.505-3.15 5.694a6.6 6.6 0 0 1-3.496 1.001m-6.646-6.695h1.012c-.024 2.089 1.215 4.125 3.083 5.06a5.6 5.6 0 0 0 2.55.615v1.02c-2.268.02-4.482-1.234-5.651-3.174a6.73 6.73 0 0 1-.994-3.521m6.646-6.696v1.02c-2.073-.025-4.08 1.22-5.006 3.07a5.7 5.7 0 0 0-.627 2.605h-1.013c-.02-2.273 1.211-4.505 3.15-5.695a6.6 6.6 0 0 1 3.495-1z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M338.16 169.49c3.391 0 6.14 2.769 6.14 6.186s-2.749 6.186-6.14 6.186-6.14-2.769-6.14-6.186 2.749-6.186 6.14-6.186",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M344.8 175.68h-1.012c.025-2.114-1.246-4.175-3.15-5.096a5.6 5.6 0 0 0-2.484-.58v-1.02c2.255-.02 4.458 1.219 5.631 3.142a6.73 6.73 0 0 1 1.015 3.554m-6.646 6.695v-1.02c2.073.025 4.08-1.221 5.007-3.072.414-.8.626-1.702.627-2.603h1.012c.02 2.274-1.213 4.506-3.153 5.694a6.6 6.6 0 0 1-3.494 1.001m-6.646-6.695h1.012c-.024 2.089 1.215 4.125 3.083 5.06a5.6 5.6 0 0 0 2.55.615v1.02c-2.268.02-4.482-1.234-5.65-3.174a6.73 6.73 0 0 1-.995-3.521m6.646-6.696v1.02c-2.073-.025-4.08 1.22-5.006 3.07a5.7 5.7 0 0 0-.627 2.605h-1.013c-.02-2.273 1.212-4.505 3.15-5.695a6.6 6.6 0 0 1 3.496-1z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M454.53 277.39 432.76 290l-23.15-9.86 21.77-12.6z",style:{fill:"#edb92e"},transform:"matrix(1.01066 0 0 1.01824 -5.128 -6.19)"}),(0,h.jsx)("path",{d:"m431.11 266.67-22.003 12.832-.506-.883 22.003-12.832.451-.027zm-.506-.883.218-.127.233.1zm23.447 10.945-23.392-10.035.396-.938 23.392 10.035.055.91zm.396-.938.931.4-.876.51zm-22.456 12.861 22.005-12.833.506.883-22.005 12.833-.45.028zm.506.883-.218.127-.233-.1zm-23.445-10.947 23.39 10.036-.396.938-23.39-10.036-.055-.91zm-.396.938-.931-.4.876-.51z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M431.13 270.65c5.641-.348 10.401 2.443 10.631 6.23.23 3.79-4.158 7.143-9.798 7.491s-10.4-2.443-10.63-6.23c-.23-3.79 4.156-7.144 9.797-7.491z",style:{fill:"#c6363c"}}),(0,h.jsx)("path",{d:"m442.26 276.85-1.01.063-.03-.314-.055-.308-.076-.305-.099-.295-.12-.291-.143-.288-.162-.279-.184-.274-.205-.266-.223-.26-.245-.252-.264-.244-.28-.235-.299-.226-.317-.215-.333-.206-.35-.195-.364-.183-.38-.171-.394-.16-.407-.145-.42-.134-.43-.118-.445-.106-.453-.092-.464-.075-.472-.06-.483-.046-.489-.028-.497-.01-.502.003-.51.024-.062-1.017.543-.024.539-.006.53.013.525.03.515.048.507.065.499.08.489.1.477.112.47.13.456.145.442.16.43.173.418.189.402.202.388.216.371.23.356.242.34.254.32.269.302.28.283.292.264.304.241.317.22.327.195.337.174.347.149.359.12.368.096.376.068.382zm-10.272 8.03-.062-1.017.508-.04.5-.056.492-.073.481-.088.473-.103.463-.119.452-.132.438-.146.427-.159.414-.172.4-.182.387-.196.372-.206.355-.216.339-.228.324-.237.306-.243.288-.253.27-.263.251-.267.232-.274.211-.279.191-.286.17-.289.15-.296.129-.298.106-.3.084-.305.062-.306.04-.31.016-.315-.007-.313 1.01-.063.009.393-.022.389-.049.385-.076.378-.103.374-.13.368-.155.359-.178.351-.202.344-.224.334-.245.325-.267.315-.287.306-.304.293-.323.285-.342.274-.358.261-.375.252-.392.238-.406.225-.42.213-.436.2-.448.186-.46.17-.475.158-.484.142-.497.126-.506.11-.517.096-.525.077-.534.061zm-11.166-6.708 1.01-.063.03.314.055.308.076.304.099.296.12.291.143.288.162.279.184.274.205.266.223.26.245.252.264.244.28.235.299.226.317.215.333.206.35.194.364.183.38.172.394.159.407.145.42.135.43.118.444.106.453.091.463.076.474.06.483.046.488.028.496.01.503-.003.51-.025.062 1.018-.543.024-.539.006-.53-.013-.524-.03-.515-.049-.508-.064-.499-.081-.49-.099-.478-.113-.467-.13-.456-.144-.442-.16-.43-.173-.418-.189-.402-.202-.388-.216-.371-.23-.356-.242-.34-.255-.32-.268-.302-.28-.283-.292-.264-.305-.241-.316-.22-.327-.195-.337-.174-.347-.149-.359-.12-.368-.096-.376-.068-.383zm10.271-8.03.062 1.017-.508.04-.5.056-.492.072-.481.088-.473.104-.462.119-.453.132-.438.146-.427.158-.414.172-.4.183-.387.196-.372.206-.355.216-.339.227-.324.237-.306.243-.288.254-.27.262-.251.267-.23.274-.213.28-.191.286-.17.288-.15.295-.128.298-.106.302-.085.304-.062.307-.04.31-.015.313.007.315-1.01.063-.009-.392.02-.39.05-.385.076-.379.104-.374.13-.367.154-.358.178-.352.201-.344.225-.335.246-.324.266-.315.286-.306.305-.293.323-.285.342-.275.358-.26.375-.252.392-.238.406-.225.42-.213.436-.2.448-.186.46-.17.474-.158.486-.142.496-.126.506-.111.517-.095.525-.077.533-.061z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m382.38 269.85 23.776 9.074-19.628 13.224c-5.087-1.704-9.122-19.12-4.148-22.298",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m405.98 279.4-23.776-9.074.358-.953 23.776 9.074.102.9zm.358-.952.917.35-.815.55zm-20.088 13.277 19.628-13.225.561.847-19.628 13.224-.44.06zm.561.846-.205.138-.235-.078zm-4.25-23.198-.358.953.45-.046-.372.286-.334.359-.3.434-.264.504-.225.57-.185.633-.147.69-.106.738-.068.78-.03.82.006.849.045.874.077.895.11.905.145.914.174.917.202.913.232.902.255.886.28.867.304.838.325.806.345.768.361.724.376.673.392.618.4.556.41.488.412.414.412.335.407.256.399.172-.32.967-.55-.237-.523-.328-.503-.408-.48-.483-.46-.549-.44-.61-.422-.667-.403-.718-.38-.765-.362-.804-.34-.842-.314-.872-.293-.898-.265-.918-.238-.933-.21-.944-.178-.948-.15-.948-.115-.942-.082-.93-.045-.913-.008-.895.032-.867.073-.836.116-.8.161-.76.211-.714.262-.665.319-.607.378-.545.442-.474.508-.392.45-.046zm-.45.046.213-.136.238.09zm.271.43.18-.476zm-.27-.43.212-.136.238.09z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M382.83 274.26c5.621-.577 10.49 2.017 10.872 5.792.382 3.777-3.868 7.306-9.489 7.883-3.655.376-5.928-2.845-6.323-6.26-.396-3.413 1.085-7.02 4.94-7.415z",style:{fill:"#0c4076"}}),(0,h.jsx)("path",{d:"m394.21 280-1.005.103-.044-.312-.066-.306-.09-.3-.11-.293-.132-.285-.154-.28-.174-.274-.195-.265-.215-.258-.235-.25-.252-.242-.273-.233-.29-.223-.308-.213-.327-.203-.34-.192-.358-.18-.37-.168-.388-.156-.4-.144-.411-.128-.425-.117-.437-.102-.446-.087-.459-.072-.464-.057-.476-.04-.484-.027-.49-.007-.494.007-.503.028-.509.042-.102-1.013.542-.047.536-.027.53-.01.526.01.517.026.51.045.502.06.492.08.482.093.473.11.46.126.45.14.438.158.423.171.411.185.396.201.381.214.365.227.349.242.33.254.315.267.294.28.276.294.253.306.233.318.21.33.188.34.16.352.137.36.11.372.083.383zm-9.94 8.441-.103-1.012.507-.062.497-.077.487-.092.48-.108.468-.122.456-.137.445-.15.435-.164.419-.175.407-.188.393-.2.378-.213.363-.22.346-.23.33-.241.315-.25.297-.258.277-.263.258-.272.24-.278.222-.282.199-.289.18-.293.158-.297.138-.3.116-.303.093-.304.073-.31.05-.308.026-.312.005-.312-.02-.316 1.005-.103.025.392-.005.39-.033.386-.062.383-.088.377-.114.372-.14.365-.165.36-.187.35-.21.341-.233.337-.254.326-.272.316-.294.308-.313.297-.33.286-.348.277-.364.265-.382.254-.396.242-.412.229-.426.217-.44.205-.455.19-.466.175-.479.163-.491.147-.502.13-.51.116-.523.1-.532.082zm-6.877-6.707 1.005-.118.04.303.05.3.06.297.072.296.082.29.09.287.1.281.11.278.12.27.127.263.139.256.147.248.155.24.165.228.173.221.18.208.189.199.198.187.204.176.212.162.22.15.227.136.235.123.242.11.251.093.258.08.266.063.275.048.282.032.293.013.298-.002.31-.023.102 1.013-.369.027-.36.005-.352-.018-.345-.038-.337-.058-.328-.078-.318-.099-.308-.115-.3-.134-.287-.151-.277-.167-.267-.182-.258-.196-.245-.212-.234-.221-.224-.234-.212-.247-.201-.255-.191-.267-.18-.275-.168-.284-.157-.292-.147-.301-.134-.304-.124-.312-.113-.317-.102-.323-.09-.324-.08-.33-.067-.333-.056-.336zm5.39-7.98.104 1.012-.328.043-.311.06-.297.075-.284.09-.273.104-.256.118-.246.132-.233.143-.22.156-.21.169-.198.18-.187.191-.176.201-.163.213-.154.221-.143.231-.133.242-.122.249-.108.255-.1.264-.089.271-.078.278-.066.281-.056.288-.045.29-.033.295-.024.3-.013.3-.001.301.008.303.02.303.03.303-1.005.118-.034-.336-.021-.34-.01-.339.003-.338.013-.338.027-.335.038-.333.051-.33.063-.328.077-.322.09-.32.102-.31.115-.309.13-.3.143-.292.156-.285.17-.277.185-.267.2-.256.213-.247.228-.232.243-.221.257-.207.273-.192.286-.177.3-.161.314-.145.33-.126.341-.108.357-.09.37-.069.381-.05z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M457.46 280.42c1.763 0 3.193 1.44 3.193 3.217 0 1.776-1.43 3.216-3.193 3.216s-3.192-1.44-3.192-3.216 1.429-3.217 3.192-3.217",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M461.16 283.63h-1.012l-.002-.14-.011-.137-.018-.138-.023-.132-.03-.131-.036-.128-.042-.125-.048-.123-.053-.119-.06-.117-.065-.113-.07-.11-.075-.107-.08-.103-.084-.098-.09-.094-.093-.089-.099-.086-.101-.08-.105-.075-.109-.071-.112-.065-.116-.06-.12-.054-.12-.049-.125-.042-.129-.037-.128-.03-.132-.023-.137-.018-.135-.01-.139-.002v-1.02l.191.005.188.015.182.023.183.033.18.042.174.049.175.059.168.067.164.076.158.082.155.089.15.097.145.104.14.111.132.116.13.123.122.13.117.135.109.14.104.145.097.153.088.157.08.158.076.165.067.17.058.174.05.178.041.182.032.182.023.184.016.19zm-3.7 3.726v-1.02l.14-.002.134-.01.137-.019.133-.023.128-.03.128-.037.125-.042.12-.048.12-.054.117-.06.112-.065.108-.071.105-.075.102-.08.099-.087.093-.089.09-.094.083-.097.08-.104.076-.107.07-.108.063-.112.06-.119.054-.12.048-.123.042-.125.037-.129.03-.128.022-.134.018-.138.01-.136.003-.14h1.012l-.005.193-.016.189-.022.184-.033.184-.041.181-.05.177-.058.173-.066.171-.076.164-.08.16-.09.157-.097.152-.103.145-.108.14-.117.136-.123.13-.13.122-.132.116-.14.112-.145.103-.15.097-.154.09-.16.081-.163.076-.168.067-.174.06-.175.049-.18.042-.182.032-.183.023-.187.015zm-3.697-3.726h1.012l.002.14.01.135.018.139.023.133.03.129.037.129.041.125.048.122.054.12.06.12.064.111.07.11.074.106.08.102.086.1.089.092.091.09.1.086.1.08.106.075.109.071.11.064.119.061.12.054.12.048.125.042.128.037.127.03.133.023.137.018.135.011.139.002v1.02l-.191-.005-.188-.016-.182-.023-.183-.032-.18-.042-.176-.05-.172-.058-.17-.068-.162-.075-.158-.081-.157-.09-.149-.098-.146-.103-.14-.112-.132-.115-.13-.123-.122-.131-.114-.134-.111-.14-.103-.147-.097-.15-.09-.158-.08-.16-.074-.163-.067-.171-.059-.173-.049-.177-.041-.182-.033-.184-.022-.184-.016-.189-.005-.192zm3.698-3.727v1.02l-.139.002-.135.01-.137.019-.132.023-.128.03-.128.037-.124.042-.122.048-.12.054-.117.061-.111.064-.109.07-.105.076-.101.08-.1.087-.091.089-.089.092-.086.1-.08.102-.074.105-.07.112-.064.113-.06.117-.054.12-.048.122-.041.125-.037.128-.03.13-.023.133-.018.138-.01.137-.002.14h-1.013l.005-.192.016-.19.023-.184.032-.183.042-.182.049-.178.058-.173.067-.17.075-.166.081-.158.089-.157.096-.15.103-.148.11-.14.115-.134.122-.131.13-.123.133-.115.14-.112.145-.104.15-.097.156-.09.158-.08.163-.077.17-.067.171-.059.176-.05.18-.041.183-.033.182-.023.188-.015.19-.005z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M408.71 283.14c1.763 0 3.193 1.44 3.193 3.217 0 1.776-1.43 3.216-3.193 3.216s-3.192-1.44-3.192-3.216 1.429-3.217 3.192-3.217",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M412.41 286.36h-1.012l-.002-.14-.01-.137-.019-.138-.022-.132-.03-.131-.037-.128-.042-.125-.047-.123-.054-.119-.06-.117-.064-.113-.07-.11-.076-.107-.08-.103-.084-.098-.09-.094-.092-.089-.1-.086-.1-.08-.106-.075-.108-.071-.113-.065-.115-.06-.12-.054-.121-.049-.125-.042-.129-.037-.127-.03-.133-.023-.137-.018-.135-.01-.138-.002v-1.02l.19.005.188.015.183.023.182.033.18.042.175.049.174.059.168.067.164.076.159.082.155.089.15.097.145.104.14.111.132.116.129.123.123.13.117.135.108.14.104.145.097.153.088.156.081.16.076.164.066.17.059.174.049.178.042.182.032.182.023.184.015.19.005.193zm-3.7 3.726v-1.02l.14-.002.134-.01.137-.019.133-.023.128-.03.128-.037.125-.042.12-.048.12-.054.117-.06.112-.065.108-.071.105-.075.102-.08.099-.087.093-.089.09-.094.083-.097.08-.104.077-.107.069-.108.063-.112.061-.119.054-.12.047-.123.042-.125.037-.128.03-.13.022-.133.018-.138.011-.136.002-.14h1.012l-.005.193-.015.189-.023.184-.032.184-.042.181-.049.177-.058.173-.067.171-.075.164-.08.16-.09.157-.098.152-.102.145-.11.14-.116.136-.123.13-.129.122-.132.116-.14.112-.146.103-.149.097-.155.09-.159.081-.163.076-.169.067-.174.06-.174.049-.18.042-.183.032-.183.023-.187.015zm-3.697-3.726h1.012l.002.14.01.135.018.139.023.133.03.129.037.129.041.125.048.122.054.12.06.12.064.111.07.11.074.106.08.102.086.1.089.092.091.09.1.086.1.08.106.075.109.071.11.064.119.061.12.054.12.048.125.042.128.038.127.03.133.022.137.018.135.011.139.002v1.02l-.191-.005-.188-.016-.182-.022-.183-.033-.18-.042-.176-.05-.172-.058-.17-.068-.162-.075-.158-.08-.157-.091-.149-.098-.146-.103-.14-.112-.132-.115-.13-.123-.122-.131-.114-.134-.111-.14-.103-.147-.097-.15-.09-.158-.08-.16-.074-.163-.067-.171-.059-.173-.049-.177-.041-.182-.033-.184-.022-.184-.016-.189-.005-.192zm3.698-3.727v1.02l-.139.002-.135.01-.137.019-.132.023-.128.03-.128.037-.124.042-.122.048-.12.054-.117.061-.111.064-.109.07-.105.075-.101.081-.1.087-.091.089-.089.092-.086.1-.08.102-.073.105-.07.112-.065.113-.06.117-.054.12-.047.122-.042.125-.037.128-.03.13-.022.133-.018.138-.011.137-.002.14h-1.012l.005-.192.015-.19.023-.184.032-.183.042-.182.049-.178.059-.173.066-.17.076-.166.08-.158.089-.157.097-.15.102-.148.111-.14.115-.134.122-.131.13-.123.132-.115.14-.112.146-.104.149-.097.156-.09.159-.08.162-.077.17-.067.172-.059.175-.05.18-.041.183-.033.183-.023.187-.015.191-.005z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M406.99 268.29c1.763 0 3.193 1.44 3.193 3.217 0 1.776-1.43 3.217-3.193 3.217s-3.192-1.44-3.192-3.217c0-1.776 1.429-3.217 3.192-3.217",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M410.69 271.51h-1.012l-.002-.14-.01-.135-.019-.139-.022-.133-.03-.129-.037-.13-.042-.125-.048-.121-.053-.122-.06-.116-.065-.113-.069-.109-.076-.107-.08-.103-.084-.098-.09-.093-.094-.092-.096-.084-.103-.08-.106-.078-.108-.07-.112-.064-.116-.06-.12-.055-.12-.048-.125-.042-.129-.037-.127-.03-.133-.023-.137-.018-.135-.01-.139-.002v-1.02l.191.005.188.015.182.023.183.033.18.042.175.049.174.059.168.067.164.076.159.082.155.089.15.098.145.104.138.11.135.117.129.123.122.13.117.136.108.14.103.145.098.151.088.157.081.16.075.164.067.17.059.175.049.176.041.182.033.184.022.184.016.188zm-3.7 3.727v-1.02l.14-.002.134-.01.137-.019.133-.022.128-.03.128-.038.125-.042.12-.048.12-.054.117-.06.112-.065.107-.07.106-.077.103-.08.097-.084.093-.092.09-.094.084-.097.08-.103.077-.107.069-.109.064-.113.06-.116.054-.122.047-.121.042-.125.037-.13.03-.129.022-.133.018-.139.011-.136.002-.14h1.012l-.005.193-.015.189-.023.184-.032.184-.042.182-.049.175-.058.176-.067.17-.075.164-.082.16-.088.156-.098.152-.102.146-.109.139-.117.136-.122.13-.129.122-.134.118-.139.11-.144.103-.15.099-.156.089-.159.082-.163.075-.169.068-.174.059-.174.049-.18.042-.183.032-.183.023-.187.016zm-3.697-3.727h1.012l.002.14.01.135.018.139.023.133.03.129.037.13.041.125.048.121.054.122.06.116.064.113.07.11.074.106.08.102.086.1.088.093.094.09.096.085.103.08.106.077.108.07.11.064.119.061.12.054.12.048.125.042.128.038.127.03.133.022.137.019.135.01.139.002v1.02l-.191-.005-.188-.016-.182-.022-.183-.033-.18-.042-.176-.05-.172-.058-.17-.068-.162-.075-.158-.08-.157-.091-.15-.099-.145-.103-.138-.11-.135-.117-.129-.124-.122-.13-.114-.134-.111-.14-.103-.147-.097-.15-.088-.157-.08-.16-.076-.165-.067-.17-.058-.175-.05-.175-.041-.182-.032-.184-.023-.184-.016-.189-.005-.192zm3.698-3.727v1.02l-.139.002-.135.01-.137.019-.132.023-.128.03-.128.037-.124.042-.122.048-.12.054-.117.061-.111.064-.108.07-.106.077-.103.08-.096.084-.093.09-.089.094-.086.1-.08.102-.074.106-.07.11-.065.113-.06.116-.053.122-.048.121-.041.125-.037.13-.03.129-.023.133-.018.139-.01.136-.002.14h-1.013l.005-.193.016-.189.023-.184.032-.184.042-.182.049-.175.058-.176.067-.17.075-.164.081-.16.089-.156.096-.15.103-.148.11-.14.116-.134.121-.13.13-.123.134-.118.139-.11.144-.103.15-.099.157-.09.159-.08.162-.076.17-.068.171-.059.176-.049.18-.042.183-.032.182-.023.188-.016z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M457.34 266.19c1.763 0 3.192 1.44 3.192 3.216s-1.429 3.217-3.192 3.217-3.193-1.44-3.193-3.217c0-1.776 1.429-3.216 3.193-3.216",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M461.04 269.41h-1.012l-.002-.14-.01-.135-.019-.139-.022-.133-.03-.129-.037-.129-.042-.125-.047-.122-.054-.12-.061-.12-.063-.111-.07-.11-.075-.106-.08-.102-.086-.1-.088-.092-.092-.09-.099-.086-.101-.08-.105-.075-.11-.07-.11-.064-.118-.062-.12-.054-.121-.048-.125-.042-.127-.037-.128-.03-.132-.023-.138-.018-.135-.011-.138-.002v-1.02l.19.005.188.016.183.023.183.032.18.042.175.05.172.058.17.068.162.076.159.08.156.09.15.098.145.103.14.112.132.115.13.123.122.131.115.134.11.14.103.147.097.15.09.158.08.16.075.164.067.17.058.173.05.177.04.182.033.184.023.184.015.189.005.192zm-3.698 3.727v-1.02l.138-.002.135-.01.138-.019.132-.023.128-.03.127-.037.125-.042.121-.048.12-.054.118-.061.11-.064.11-.07.105-.075.101-.081.1-.087.091-.089.088-.092.086-.1.08-.102.074-.105.07-.112.065-.113.06-.116.053-.122.048-.121.042-.125.037-.128.03-.131.022-.132.018-.139.01-.137.003-.14h1.012l-.005.193-.016.19-.022.184-.033.183-.041.182-.05.178-.058.173-.067.17-.075.164-.08.16-.09.156-.096.15-.103.149-.11.14-.115.134-.122.131-.13.123-.133.115-.14.112-.145.103-.15.098-.155.09-.16.08-.162.076-.169.068-.172.059-.175.049-.18.042-.183.033-.183.022-.187.016-.191.005zm-3.7-3.727h1.013l.002.14.01.137.018.138.023.132.03.131.037.128.041.125.048.121.054.122.06.116.064.113.07.112.074.105.08.102.086.1.089.092.092.09.099.086.101.08.104.075.11.071.113.065.117.06.118.054.122.048.124.042.127.038.13.03.131.022.137.018.136.011.139.002v1.02l-.191-.005-.189-.016-.182-.023-.182-.032-.18-.042-.177-.05-.172-.058-.17-.068-.163-.075-.157-.082-.155-.09-.15-.097-.146-.103-.14-.112-.133-.115-.13-.123-.121-.131-.115-.134-.111-.14-.103-.148-.096-.15-.089-.157-.08-.16-.076-.165-.067-.17-.058-.172-.05-.178-.041-.182-.032-.183-.023-.184-.016-.19-.005-.192zm3.7-3.726v1.02l-.139.002-.136.01-.137.019-.131.023-.13.03-.127.037-.124.042-.122.048-.118.054-.117.06-.112.065-.111.071-.104.075-.101.08-.1.087-.091.089-.089.092-.086.1-.08.102-.074.106-.07.11-.063.111-.061.12-.054.12-.048.122-.041.126-.037.128-.03.129-.023.133-.017.139-.011.136-.002.14h-1.012l.005-.193.015-.19.023-.183.032-.184.042-.182.049-.177.058-.173.067-.17.075-.164.08-.16.09-.158.097-.15.102-.147.111-.14.115-.134.122-.13.13-.124.132-.115.14-.112.147-.103.149-.098.155-.089.158-.082.163-.075.17-.068.172-.059.176-.049.18-.042.182-.032.183-.023.188-.016.191-.005z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M370.93 237.39c2.417-.743 6.195 4.636 7.094 4.544 1.189-3.077-1.237-10.433-5.533-16.257-2.918-.959-3.18-2.848-3.782-7.23-.18-1.312-2.68-.408-2.726 1.822-.05 2.391-.234 3.715.298 5.756.208.805.093 1.576-.8 2.31 4.551 1.815 5.669 4.04 5.449 9.057z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m377.56 241.75.943.37-.42.322-.253-.016-.2-.067-.179-.093-.173-.112-.173-.13-.181-.148-.186-.163-.196-.177-.204-.192-.213-.204-.218-.21-.227-.219-.234-.226-.239-.229-.244-.23-.249-.229-.252-.226-.253-.221-.256-.216-.255-.204-.255-.193-.254-.18-.251-.165-.245-.146-.24-.127-.231-.104-.222-.083-.21-.058-.197-.034-.182-.009-.168.013-.158.035-.296-.974.304-.068.306-.026.308.017.302.053.299.082.296.11.291.13.29.153.288.171.284.186.28.2.28.212.275.221.271.227.268.234.261.235.258.237.25.237.243.231.236.229.227.218.219.21.205.2.195.18.183.167.168.147.15.124.13.096.106.07.068.036.017.007-.067-.001zm.943.37-.112.29-.308.031zm-6.16-15.958.312-.969.25.18.403.56.392.566.38.574.367.578.356.585.342.588.33.59.316.592.302.592.288.592.274.59.26.588.244.583.23.58.214.574.198.569.182.56.165.55.15.542.13.533.114.52.096.508.078.496.06.48.04.466.02.451v.435l-.021.417-.042.4-.064.381-.09.365-.116.342-.943-.37.087-.259.07-.285.053-.314.037-.34.02-.363v-.385l-.021-.408-.036-.425-.055-.447-.073-.461-.09-.479-.108-.492-.125-.506-.142-.517-.16-.53-.173-.538-.191-.548-.207-.554-.223-.56-.236-.567-.251-.569-.268-.573-.28-.575-.293-.575-.306-.575-.32-.574-.333-.57-.346-.569-.357-.561-.37-.557-.379-.55-.391-.542zm.312-.969.154.05.096.13zm-4.44-6.676 1.002-.14.056.404.053.388.053.373.053.36.051.343.054.331.055.315.055.304.057.29.06.275.063.26.067.248.07.237.074.224.079.212.083.198.088.186.094.177.1.166.105.158.114.148.12.14.129.133.137.125.15.119.162.115.172.11.186.103.202.101.216.096.231.09.249.087-.313.97-.284-.1-.27-.106-.257-.113-.242-.12-.234-.13-.22-.141-.205-.147-.197-.157-.185-.169-.172-.177-.159-.185-.149-.196-.138-.203-.127-.212-.118-.222-.109-.23-.1-.24-.09-.247-.086-.255-.078-.266-.074-.274-.07-.285-.063-.295-.062-.305-.057-.316-.057-.328-.054-.34-.054-.352-.052-.363-.054-.378-.055-.389zm-1.718 1.764-1.012-.021.013-.24.03-.235.045-.224.057-.213.072-.208.085-.196.094-.185.106-.176.112-.164.123-.154.13-.144.133-.13.14-.12.146-.11.147-.097.152-.085.154-.075.156-.06.158-.049.16-.036.158-.022.163-.007.16.011.16.029.162.052.153.075.143.098.128.123.11.144.085.163.06.171.037.182-1.003.14-.01-.052-.012-.036-.01-.02-.008-.012-.011-.009-.014-.01-.02-.008-.027-.008-.043-.007-.051-.004-.06.002-.073.009-.076.016-.084.027-.087.035-.092.043-.092.052-.094.062-.093.069-.09.078-.09.086-.085.095-.08.101-.076.11-.07.118-.064.125-.056.13-.048.14-.04.147-.031.154-.02.16-.009.17zm.28 5.617-.979.257-.049-.196-.046-.195-.04-.19-.039-.185-.033-.183-.031-.182-.027-.18-.025-.176-.02-.178-.018-.174-.014-.172-.014-.172-.009-.17-.008-.171-.005-.172-.005-.17-.002-.172v-.174l.001-.172.002-.174.005-.178.005-.178.005-.182.006-.184.006-.185.006-.194.007-.192.006-.2.007-.204.006-.207.006-.213.004-.22 1.013.022-.006.222-.006.218-.006.211-.007.205-.006.2-.007.194-.006.19-.006.187-.006.181-.005.177-.005.176-.002.17-.002.168-.001.167v.162l.002.16.002.163.005.157.008.156.009.16.01.157.015.157.015.161.018.157.023.16.024.164.028.164.031.168.034.171.038.173.042.178zm-1.102 1.965-.372.948-.134-.869.07-.059.065-.057.06-.06.058-.06.054-.057.048-.057.043-.053.04-.054.036-.055.035-.055.03-.055.028-.053.024-.05.022-.05.018-.052.016-.055.016-.053.01-.048.01-.053.008-.056.006-.052.004-.053v-.111l-.001-.056-.005-.058-.005-.058-.01-.058-.008-.065-.012-.058-.013-.06-.017-.066.979-.258.021.086.02.089.017.091.015.086.012.09.009.09.007.091.002.09.002.09-.004.095-.006.094-.011.095-.013.088-.017.094-.023.096-.025.091-.028.09-.035.093-.038.094-.043.091-.047.09-.05.087-.054.087-.058.086-.063.088-.07.087-.071.083-.075.081-.078.08-.084.08-.09.082-.092.078-.134-.868zm-.372.948-.8-.319.666-.55zm5.128 8.582h1.012l-1.01-.023.016-.453.007-.437v-.42l-.008-.405-.018-.388-.027-.372-.037-.358-.047-.342-.057-.328-.066-.315-.079-.301-.087-.289-.099-.275-.11-.265-.121-.255-.134-.245-.146-.236-.159-.228-.173-.22-.187-.214-.203-.208-.217-.201-.235-.198-.252-.192-.269-.189-.289-.184-.305-.181-.326-.177-.345-.176-.365-.172-.386-.168-.406-.167.373-.948.427.177.407.178.392.184.37.187.355.194.337.198.32.206.304.213.288.219.27.228.256.237.24.247.222.254.207.264.192.274.174.284.163.294.143.303.131.312.116.324.101.334.089.344.075.354.064.367.052.377.04.39.029.4.018.415.01.426v.443l-.008.455-.017.47zm1.012-.001h-1.012l.358-.487zm-1.012 0v-.377l.358-.11z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M368.78 218.51c-.417 1.009-.543 1.835-.643 3.367-.077 1.168.35 2.261 1.092 3.23.745.972 1.81 1.829 3.008 2.524.741.432 1.592 1.625 2.266 2.981.67 1.35 1.16 2.872 1.187 3.955.096 3.58.79 6.708 2.417 7.325 1.065.404 1.491.341 2.316.149-.233-.643-.144-1.549-.718-2.446-.74-1.157-1.388-2.486-1.446-3.649-.051-.904-.475-1.508-.125-3.29.225-1.155.973-1.592.84-2.656-.257-2.062-1.874-6.02-4.248-6.02-2.341-.001-3.435-.254-4.646-3.37-.412-1.06-.95-1.57-1.3-2.1z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m368.64 221.91-1.01-.067.01-.143.008-.139.01-.137.011-.135.011-.127.01-.126.014-.125.012-.118.012-.118.013-.116.014-.114.016-.114.015-.108.017-.107.018-.109.02-.105.02-.103.019-.1.022-.102.023-.1.024-.101.026-.1.026-.098.03-.1.03-.097.03-.093.032-.1.036-.1.034-.096.037-.099.04-.1.04-.1.934.393-.036.089-.035.086-.032.087-.032.086-.029.083-.027.083-.028.09-.027.084-.023.081-.024.087-.021.084-.022.087-.02.086-.018.088-.02.093-.017.092-.017.091-.016.094-.014.098-.016.1-.013.1-.012.105-.013.108-.012.11-.011.116-.011.116-.01.121-.012.125-.01.128-.008.13-.01.136zm.987 2.884-.8.623-.075-.099-.07-.098-.07-.099-.069-.102-.066-.102-.064-.102-.063-.105-.059-.106-.056-.102-.056-.107-.052-.107-.053-.11-.046-.11-.046-.107-.044-.11-.04-.114-.04-.117-.035-.111-.032-.112-.03-.117-.028-.118-.023-.113-.023-.117-.019-.122-.015-.118-.013-.12-.01-.12-.005-.12-.004-.124v-.12l.004-.121.006-.124 1.01.067-.006.095-.001.095v.19l.007.094.007.092.01.095.011.094.014.09.018.092.02.096.021.089.024.09.027.093.028.092.03.088.033.09.035.088.038.093.04.09.04.086.043.088.046.088.05.09.048.087.052.085.054.088.054.085.059.086.06.086.062.084zm2.861 2.394-.506.883-.115-.068-.115-.069-.115-.07-.114-.072-.111-.07-.111-.073-.112-.074-.11-.076-.109-.076-.106-.076-.108-.078-.106-.08-.102-.079-.104-.08-.104-.083-.1-.082-.1-.083-.098-.087-.096-.084-.095-.085-.095-.088-.092-.088-.09-.089-.09-.09-.088-.09-.089-.095-.082-.092-.082-.091-.084-.096-.079-.095-.078-.098-.074-.097.8-.623.066.085.067.083.07.083.068.082.076.084.075.084.074.079.079.08.08.08.08.08.083.078.085.079.085.078.089.08.087.074.092.076.09.077.093.072.094.074.095.073.097.072.098.07.099.072.101.07.1.069.1.067.107.068.104.068.105.065.105.065.107.064zm2.465 3.196-.904.455-.061-.123-.062-.12-.064-.12-.064-.12-.065-.116-.065-.116-.067-.114-.066-.112-.066-.11-.068-.109-.068-.106-.07-.103-.068-.102-.068-.098-.069-.096-.069-.095-.068-.09-.067-.087-.069-.083-.068-.083-.067-.077-.066-.072-.066-.07-.066-.068-.065-.063-.062-.057-.062-.055-.06-.05-.056-.042-.058-.042-.057-.038-.05-.03.507-.883.09.054.083.058.085.059.088.068.082.07.081.07.084.078.081.08.08.081.081.085.08.09.081.093.078.093.079.097.078.101.078.102.077.105.076.106.078.112.075.111.074.113.075.118.073.117.074.119.073.121.071.124.07.125.07.127.07.127.067.129.067.132zm1.24 4.168-1.01.027-.003-.09-.006-.092-.01-.098-.008-.101-.013-.1-.015-.103-.017-.109-.02-.11-.022-.11-.025-.112-.028-.117-.028-.118-.03-.117-.033-.119-.035-.12-.037-.127-.037-.12-.04-.121-.044-.128-.044-.127-.045-.125-.046-.123-.05-.126-.05-.128-.051-.126-.053-.126-.055-.125-.055-.127-.056-.124-.058-.123-.06-.125-.06-.123.905-.455.065.133.062.13.063.133.06.136.06.133.058.135.057.136.056.136.053.135.052.133.053.14.048.137.046.134.046.133.045.135.042.138.039.13.038.133.037.133.035.134.03.13.03.127.028.129.026.128.023.126.02.125.02.123.015.123.012.12.009.116.008.12zm2.09 6.863-.355.952-.193-.083-.186-.102-.175-.118-.164-.132-.156-.144-.148-.158-.14-.172-.13-.183-.121-.189-.115-.2-.11-.213-.101-.22-.097-.229-.09-.238-.084-.245-.08-.257-.074-.26-.07-.269-.064-.278-.06-.283-.054-.289-.052-.295-.045-.303-.043-.308-.038-.312-.034-.318-.03-.322-.025-.327-.022-.33-.018-.334-.014-.337-.011-.34 1.01-.027.01.329.015.324.018.323.02.317.025.313.03.31.03.303.036.296.041.294.043.283.049.278.05.272.055.262.06.254.064.245.067.238.07.228.076.216.077.207.083.195.084.184.089.172.093.16.093.148.097.134.096.12.1.106.103.097.103.082.103.07.102.056zm1.664.8.95-.35-.36.672-.078.018-.078.018-.078.017-.073.014-.07.015-.074.014-.079.015-.071.01-.068.01-.077.01-.073.007-.073.006-.077.005-.078.004h-.078l-.074-.002-.077-.002-.084-.006-.079-.008-.079-.009-.08-.013-.082-.013-.086-.017-.087-.02-.087-.022-.09-.024-.091-.027-.09-.027-.096-.03-.102-.036-.1-.036-.1-.039.355-.952.094.033.09.034.079.026.08.026.08.025.074.022.07.02.066.016.063.013.06.012.06.01.06.009.056.007.053.006.048.004.051.002h.105l.048-.001.049-.002.054-.006.053-.005.05-.006.061-.01.058-.007.054-.01.06-.011.068-.015.068-.014.066-.015.07-.015.075-.018-.36.67zm.95-.35.196.542-.557.13zm-1.619-1.996.85-.55v-.002l.06.1.057.098.053.098.047.096.046.1.04.095.036.094.037.1.03.097.027.089.028.092.022.092.022.088.022.092.016.087.016.08.014.082.016.083.013.08.013.075.012.077.012.072.012.073.01.066.012.066.012.062.012.058.013.057.016.057.013.053.013.042.017.047-.95.35-.027-.077-.025-.083-.02-.074-.018-.072-.018-.079-.017-.077-.014-.077-.014-.075-.014-.076-.011-.075-.012-.074-.012-.072-.013-.077-.011-.074-.013-.07-.015-.075-.015-.076-.015-.075-.014-.066-.019-.076-.018-.07-.02-.07-.023-.077-.022-.07-.023-.065-.03-.072-.03-.074-.03-.066-.036-.072-.036-.07-.04-.07zm-1.525-3.895 1.01-.058v.004l.006.093.009.097.011.095.016.099.018.1.02.103.024.1.026.108.028.102.032.105.035.11.035.106.038.107.041.11.042.108.046.108.049.113.048.11.05.11.053.109.055.113.056.11.057.108.06.111.06.11.062.11.062.11.063.107.064.107.066.107.066.107.067.106-.85.55-.072-.113-.07-.111-.07-.115-.07-.116-.068-.117-.067-.117-.066-.119-.065-.118-.064-.117-.063-.123-.06-.12-.06-.12-.059-.122-.058-.125-.054-.123-.051-.12-.053-.125-.049-.125-.046-.124-.046-.126-.041-.126-.04-.122-.037-.126-.034-.127-.031-.124-.029-.125-.025-.126-.022-.123-.02-.127-.015-.126-.012-.124-.008-.127zm1.01-.058v.004l-.001-.031zm-1.127-3.36.993.197-.03.155-.024.146-.02.14-.017.137-.014.128-.01.118-.006.118-.005.114-.001.105v.1l.003.1.005.097.006.088.008.089.01.087.01.081.013.082.014.085.013.077.016.08.014.08.017.08.017.082.015.081.016.082.015.082.016.086.013.092.012.085.012.094.008.096.007.096-1.01.058-.005-.072-.006-.068-.009-.07-.009-.075-.01-.067-.014-.073-.013-.074-.015-.077-.016-.08-.014-.077-.017-.084-.017-.083-.018-.089-.015-.093-.015-.09-.015-.1-.014-.104-.011-.105-.01-.108-.009-.114-.005-.115-.005-.12v-.127l.003-.131.005-.131.007-.14.012-.146.017-.15.019-.153.022-.16.029-.17zm.835-2.493 1.003-.128.012.123.006.117.002.118-.006.114-.009.112-.018.11-.019.101-.024.099-.027.097-.031.098-.034.09-.036.088-.037.083-.038.084-.04.083-.04.074-.037.075-.04.076-.04.076-.038.073-.038.071-.036.07-.034.075-.035.073-.03.07-.032.076-.03.077-.026.076-.026.082-.024.083-.02.084-.02.09-.993-.197.027-.121.03-.12.033-.115.033-.108.039-.11.039-.098.038-.096.043-.099.042-.089.042-.084.043-.085.04-.081.04-.076.039-.073.037-.071.037-.07.034-.07.031-.061.029-.063.027-.063.024-.06.022-.058.019-.054.016-.06.014-.057.012-.061.008-.057.005-.059.004-.063v-.065l-.004-.074zm-3.747-5.574v-1.02l.273.014.266.041.258.068.247.09.24.11.232.131.221.147.213.165.204.178.194.191.188.203.176.213.172.222.164.23.156.239.15.245.142.25.134.255.127.257.122.259.113.262.106.264.098.26.092.26.086.258.076.253.07.25.062.246.053.237.046.23.039.223.03.215-1.003.128-.025-.182-.035-.194-.04-.206-.05-.213-.054-.22-.064-.227-.07-.232-.076-.235-.085-.238-.09-.24-.097-.24-.104-.238-.11-.237-.115-.233-.123-.229-.126-.224-.131-.216-.138-.21-.142-.199-.145-.19-.15-.18-.152-.164-.157-.153-.159-.14-.16-.123-.16-.108-.163-.092-.162-.075-.166-.06-.165-.043-.163-.026zm-5.116-3.695.94-.37v-.001l.112.275.107.257.109.242.106.224.108.209.105.194.106.176.105.165.104.15.104.135.105.124.103.112.104.1.107.09.106.082.107.072.111.066.114.058.117.051.123.047.129.042.132.035.14.03.15.028.154.023.162.017.172.015.177.011.187.007.196.005.203.002.211.001v1.02l-.22-.001-.215-.002-.208-.007-.204-.007-.2-.013-.194-.016-.193-.022-.19-.027-.183-.033-.181-.04-.18-.049-.177-.056-.171-.064-.172-.076-.166-.087-.16-.095-.158-.105-.154-.118-.147-.126-.147-.141-.14-.15-.136-.16-.132-.175-.128-.183-.127-.196-.123-.208-.121-.222-.12-.234-.118-.247-.118-.264-.117-.276-.116-.293zm-.363-2.089-.933-.392.888-.085.029.042.032.047.03.043.032.043.035.047.039.052.038.051.037.049.04.051.043.056.041.055.041.054.045.06.046.063.044.06.047.066.045.066.045.065.05.073.046.074.045.07.05.08.048.087.045.078.046.084.046.09.046.09.047.096.043.095.044.1.043.102.042.107-.941.37-.037-.088-.036-.087-.037-.083-.038-.083-.035-.075-.039-.076-.038-.074-.04-.07-.039-.074-.037-.062-.04-.063-.04-.066-.04-.061-.039-.06-.04-.06-.041-.058-.04-.054-.041-.058-.038-.053-.04-.053-.044-.057-.04-.053-.038-.05-.041-.054-.042-.056-.038-.051-.037-.05-.04-.051-.041-.058-.04-.055-.037-.054-.038-.057.888-.085zm-.933-.392.364-.88.524.795zm.467.196.466.196zm-.467-.196.364-.88.524.795z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M359.96 227.08c.635-.49 1.405-.853 2.128-1.135 1.231-.481 2.544-.555 3.812-.171 5.613 1.697 8.07 11.668 1.92 14.064-1.211.148-2.328-.948-3.416-3.354-1.282-3.185-2.645-5.395-4.106-6.747-.895-1.13-.925-2.086-.34-2.657z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m361.91 225.47.365.95-.064.025-.065.027-.07.028-.066.026-.064.028-.067.027-.065.028-.064.029-.068.031-.07.032-.064.028-.06.03-.067.032-.066.032-.066.033-.06.03-.066.036-.066.034-.062.034-.06.033-.062.037-.067.038-.06.035-.057.035-.058.037-.062.041-.06.037-.055.039-.056.04-.056.04-.056.041-.054.041-.616-.808.066-.05.066-.049.065-.048.068-.047.072-.048.067-.044.067-.044.07-.044.072-.044.071-.042.067-.039.07-.04.073-.042.072-.038.07-.037.07-.038.076-.038.07-.035.07-.035.072-.035.076-.036.074-.033.069-.032.07-.03.072-.032.074-.032.071-.03.072-.03.073-.03.066-.027.071-.029zm4.14-.184-.292.977-.107-.033-.111-.029-.11-.028-.107-.022-.11-.023-.109-.02-.108-.016-.111-.016-.109-.01-.11-.011-.11-.007-.108-.006-.11-.001-.111-.001h-.109l-.11.005-.11.007-.108.008-.11.01-.11.014-.107.015-.109.018-.112.021-.106.022-.109.025-.11.028-.106.027-.107.033-.108.032-.107.038-.106.037-.108.04-.365-.95.124-.048.125-.044.127-.042.127-.04.126-.037.13-.035.124-.03.13-.03.13-.026.127-.023.128-.023.132-.018.13-.016.13-.013.13-.01.132-.008.13-.004.13-.004.13.001.132.004.132.006.131.01.13.01.132.016.13.018.13.02.133.023.128.026.132.03.129.032.127.034zm1.836 15.058-.122-1.013-.122.032.507-.226.458-.263.41-.294.367-.329.324-.356.284-.383.245-.41.205-.433.169-.455.132-.475.093-.492.06-.505.022-.517-.012-.526-.048-.53-.08-.533-.113-.533-.146-.528-.175-.522-.206-.51-.236-.497-.263-.483-.289-.463-.314-.44-.339-.413-.361-.39-.382-.356-.404-.324-.421-.288-.44-.25-.457-.21-.473-.167.29-.976.56.198.539.247.513.292.488.334.464.372.437.406.407.438.382.467.35.493.322.513.29.535.261.551.23.566.194.577.16.585.128.591.09.595.052.596.014.593-.026.589-.067.58-.11.568-.154.557-.2.539-.245.517-.295.494-.346.466-.394.433-.445.398-.497.357-.548.313-.596.267zm.121-.031-.06.024-.061.007zm-4.068-3.638.938-.383-.008-.02.098.215.1.207.098.2.1.19.098.185.098.175.098.166.1.16.096.152.096.142.098.136.097.127.094.118.096.11.094.104.093.095.09.087.093.079.088.071.09.065.088.058.084.049.082.042.086.037.082.031.079.024.08.02.076.013.08.007.084.004.076-.001.083-.008.121 1.013-.144.013-.148.004-.141-.006-.144-.015-.146-.025-.142-.034-.14-.043-.138-.053-.134-.06-.135-.068-.133-.078-.127-.084-.128-.091-.124-.1-.123-.106-.122-.115-.119-.122-.116-.127-.117-.135-.116-.144-.11-.15-.113-.155-.11-.163-.112-.17-.108-.178-.11-.185-.108-.192-.106-.199-.106-.205-.106-.215-.107-.22-.105-.228zm.008.02v-.002l-.008-.018zm-4.04-6.64.79-.636-.053-.057.145.135.144.144.142.146.141.152.142.156.139.161.14.168.138.172.138.178.136.181.136.188.135.192.134.197.134.202.133.21.132.213.13.217.131.224.13.228.13.235.128.238.129.247.126.249.128.256.125.262.126.264.125.273.124.278.123.283.124.287.122.295.123.3-.938.382-.118-.292-.12-.285-.119-.28-.12-.276-.12-.268-.12-.264-.123-.257-.121-.252-.123-.245-.122-.241-.122-.235-.124-.228-.124-.225-.123-.217-.125-.214-.124-.208-.124-.2-.125-.196-.126-.19-.127-.185-.125-.18-.126-.173-.127-.17-.127-.163-.127-.158-.127-.153-.129-.146-.127-.145-.13-.137-.127-.132-.128-.126-.13-.122zm.052.057-.025-.024-.027-.034zm.004-3.542v1.02l.352-.144-.034.035-.03.033-.029.04-.027.038-.02.032-.02.04-.02.044-.015.037-.014.046-.012.044-.008.046-.007.047-.004.052v.106l.005.059.008.067.01.06.015.067.019.07.021.07.026.074.033.08.034.076.04.083.044.083.05.087.053.088.058.089.064.091.068.094.074.096-.79.635-.089-.116-.085-.113-.08-.115-.075-.116-.068-.114-.065-.113-.059-.114-.056-.112-.049-.113-.044-.11-.04-.112-.037-.112-.028-.111-.025-.112-.02-.113-.012-.106-.01-.107-.003-.113.004-.106.008-.107.014-.107.02-.103.027-.102.03-.099.039-.1.042-.09.047-.092.056-.094.059-.084.06-.078.07-.082.073-.074.352-.144zm-.352.145.148-.145h.204zm.353.875v-1.02l.308.914zm.308-.106-.137.106h-.17z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M362.79 227.74c5.392-2.105 9.361 8.226 4.322 10.189-2.704 1.054-2.962-2.33-3.488-4.212-.709-2.54-6.012-3.955-.834-5.977",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m367.29 238.4-.365-.95.388-.18.336-.216.292-.25.251-.281.212-.313.175-.342.139-.37.104-.393.065-.416.031-.437-.005-.447-.04-.459-.073-.464-.106-.466-.138-.462-.167-.456-.196-.446-.223-.428-.25-.41-.271-.388-.293-.358-.314-.328-.332-.295-.346-.256-.36-.216-.372-.173-.382-.126-.392-.08-.404-.03-.415.023-.429.082-.443.142-.365-.95.56-.18.553-.104.546-.032.533.04.514.103.494.165.473.218.448.269.422.311.397.353.368.386.343.418.313.445.283.468.254.488.222.504.191.516.156.527.121.531.084.534.046.533.005.53-.036.52-.082.51-.128.494-.179.474-.23.45-.285.42-.343.383-.396.34-.454.29zm-4.158-4.548.974-.277.052.19.047.195.05.198.046.202.049.207.048.208.047.206.052.207.052.208.054.202.057.198.061.195.064.189.067.18.07.171.076.16.08.15.082.141.085.123.088.11.092.097.092.081.096.068.1.055.104.043.113.03.124.02.139.005.155-.011.173-.03.192-.05.212-.073.365.95-.283.098-.271.072-.266.046-.258.018-.25-.01-.24-.035-.23-.064-.216-.09-.198-.11-.184-.13-.168-.146-.152-.16-.138-.172-.126-.183-.113-.189-.104-.196-.094-.203-.087-.21-.08-.211-.073-.215-.066-.217-.064-.218-.059-.22-.055-.216-.053-.217-.05-.215-.048-.208-.047-.204-.046-.198-.047-.19-.045-.184zm-.53-6.59.366.95-.436.18-.376.174-.313.167-.256.16-.199.147-.145.135-.098.117-.059.098-.03.08-.01.066.004.071.019.087.042.105.066.122.091.136.115.147.136.156.155.163.17.17.183.176.191.183.199.186.2.192.203.201.202.21.194.215.188.225.175.233.163.244.146.26.122.273.097.284-.974.276-.063-.185-.084-.186-.104-.185-.126-.19-.142-.19-.16-.188-.17-.189-.18-.187-.189-.187-.193-.185-.196-.187-.196-.185-.192-.185-.185-.185-.179-.189-.167-.192-.155-.198-.139-.208-.117-.219-.092-.234-.057-.253-.01-.268.044-.272.096-.262.147-.246.191-.229.234-.216.275-.205.318-.198.368-.196.419-.196.474-.195z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M363.35 229.27c2.629-1.025 6.238 5.137 2.948 6.536-2.221.946-3.977-.298-4.69-2.155s-.102-3.662 1.742-4.381",style:{fill:"#0c4076"}}),(0,h.jsx)("path",{d:"m366.5 236.28-.394-.938.232-.116.19-.13.158-.146.13-.16.105-.173.08-.19.06-.205.036-.223.014-.24-.008-.25-.032-.262-.054-.273-.075-.275-.095-.277-.114-.278-.134-.275-.148-.27-.163-.26-.177-.25-.186-.237-.197-.22-.204-.203-.21-.183-.214-.16-.213-.136-.212-.11-.206-.082-.202-.055-.191-.03h-.186l-.178.024-.174.053-.366-.95.325-.099.328-.045.327.004.323.046.314.086.306.123.295.154.283.179.274.205.262.229.25.247.237.265.225.283.207.296.192.308.177.317.158.328.137.334.117.339.092.343.068.342.042.344.013.344-.022.34-.055.335-.093.326-.135.314-.179.296-.22.27-.266.244-.307.21zm-5.358-2.44.943-.368.063.154.067.151.074.147.077.142.081.136.089.133.092.127.095.122.1.116.103.108.109.105.11.097.116.09.119.086.123.077.124.07.127.063.133.055.135.05.137.04.142.034.143.024.15.017.152.01.156-.002.16-.009.163-.02.168-.028.172-.04.177-.05.18-.063.184-.072.394.938-.23.092-.227.077-.227.064-.225.052-.22.039-.22.026-.216.012-.215.001-.21-.012-.206-.022-.203-.036-.2-.045-.194-.06-.188-.067-.182-.077-.18-.089-.173-.097-.165-.106-.162-.114-.154-.122-.149-.13-.142-.137-.137-.144-.13-.151-.124-.157-.116-.162-.11-.167-.105-.172-.097-.178-.09-.183-.084-.185zm2.03-5.04.365.95-.149.062-.14.065-.13.07-.127.077-.119.08-.113.083-.105.088-.097.09-.092.095-.086.1-.08.102-.071.105-.067.108-.06.112-.056.115-.047.118-.043.123-.037.123-.03.128-.025.13-.017.133-.012.137-.005.138v.14l.008.144.015.145.022.147.029.152.033.15.043.151.05.156.056.155-.943.368-.07-.194-.062-.191-.052-.193-.046-.193-.035-.19-.028-.193-.019-.19-.01-.19-.003-.188.007-.19.017-.182.024-.184.034-.182.042-.176.051-.176.06-.17.07-.17.078-.165.087-.16.096-.156.105-.15.113-.146.12-.139.13-.136.14-.128.145-.122.154-.116.161-.107.17-.103.176-.095.185-.086zm.183.475-.183-.476z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M400.08 179.66c3.517 0 6.367 2.872 6.367 6.415 0 3.542-2.85 6.415-6.367 6.415s-6.367-2.872-6.367-6.415 2.85-6.415 6.367-6.415",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M406.95 186.07h-1.012c.027-2.2-1.296-4.34-3.275-5.3a5.8 5.8 0 0 0-2.586-.605v-1.02c2.333-.02 4.61 1.261 5.824 3.25a6.97 6.97 0 0 1 1.05 3.675zm-6.873 6.925v-1.02c2.17.026 4.269-1.287 5.225-3.23.42-.824.636-1.75.635-2.675h1.013c.02 2.352-1.255 4.659-3.259 5.89a6.85 6.85 0 0 1-3.614 1.035m-6.874-6.925h1.013c-.027 2.2 1.295 4.34 3.274 5.3a5.8 5.8 0 0 0 2.586.605v1.02c-2.332.02-4.61-1.261-5.824-3.25a6.97 6.97 0 0 1-1.049-3.675zm6.874-6.925v1.02c-2.17-.027-4.27 1.287-5.225 3.228a5.9 5.9 0 0 0-.636 2.676h-1.012c-.02-2.351 1.253-4.66 3.258-5.89a6.85 6.85 0 0 1 3.615-1.034z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M395.43 169c3.517 0 6.367 2.872 6.367 6.416 0 3.543-2.85 6.415-6.367 6.415s-6.367-2.872-6.367-6.415 2.85-6.416 6.367-6.416",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M402.31 175.42h-1.012c.026-2.186-1.279-4.317-3.24-5.283a5.8 5.8 0 0 0-2.621-.623v-1.02c2.333-.02 4.61 1.261 5.824 3.25a6.97 6.97 0 0 1 1.049 3.676m-6.873 6.925v-1.02c2.169.026 4.268-1.287 5.224-3.228a5.9 5.9 0 0 0 .636-2.677h1.013c.02 2.352-1.253 4.66-3.259 5.89a6.85 6.85 0 0 1-3.614 1.035zm-6.874-6.925h1.013c-.027 2.2 1.295 4.34 3.274 5.3.8.399 1.693.605 2.587.605v1.02c-2.333.02-4.611-1.261-5.825-3.25a6.97 6.97 0 0 1-1.049-3.675m6.874-6.926v1.02c-2.17-.027-4.27 1.287-5.226 3.23a5.9 5.9 0 0 0-.635 2.676h-1.012c-.02-2.352 1.253-4.66 3.258-5.891a6.85 6.85 0 0 1 3.615-1.035",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M410.68 131.46c3.391 0 6.14 2.769 6.14 6.185 0 3.417-2.749 6.187-6.14 6.187s-6.14-2.77-6.14-6.187c0-3.416 2.749-6.185 6.14-6.185",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M417.32 137.65h-1.012c.025-2.114-1.246-4.174-3.15-5.094a5.6 5.6 0 0 0-2.484-.581v-1.02c2.255-.02 4.458 1.22 5.631 3.142a6.7 6.7 0 0 1 1.015 3.553m-6.646 6.696v-1.02c2.085.025 4.105-1.237 5.023-3.105.404-.792.61-1.682.61-2.57h1.013c.02 2.274-1.212 4.506-3.152 5.694a6.6 6.6 0 0 1-3.495 1.001zm-6.647-6.696h1.012c-.024 2.102 1.23 4.15 3.117 5.079a5.6 5.6 0 0 0 2.517.597v1.02c-2.243.019-4.434-1.205-5.611-3.111a6.7 6.7 0 0 1-1.035-3.585m6.647-6.695v1.02c-2.086-.025-4.106 1.236-5.024 3.104a5.7 5.7 0 0 0-.61 2.57h-1.013c-.02-2.26 1.198-4.481 3.12-5.674a6.6 6.6 0 0 1 3.527-1.02",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M400.36 136.18c3.517 0 6.367 2.872 6.367 6.415s-2.85 6.416-6.367 6.416-6.367-2.872-6.367-6.416c0-3.543 2.85-6.415 6.367-6.415",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M407.23 142.59h-1.012c.027-2.2-1.296-4.34-3.275-5.3a5.8 5.8 0 0 0-2.586-.605v-1.02c2.333-.02 4.61 1.261 5.824 3.25a6.97 6.97 0 0 1 1.049 3.675m-6.873 6.926v-1.02c2.156.026 4.244-1.27 5.207-3.194a5.9 5.9 0 0 0 .654-2.712h1.012c.02 2.352-1.253 4.66-3.259 5.891a6.85 6.85 0 0 1-3.614 1.035m-6.874-6.926h1.013c-.026 2.186 1.278 4.317 3.24 5.283.808.411 1.714.624 2.62.623v1.02c-2.332.02-4.61-1.261-5.824-3.25a6.97 6.97 0 0 1-1.049-3.676zm6.874-6.925v1.02c-2.17-.026-4.27 1.287-5.225 3.228a5.9 5.9 0 0 0-.636 2.677h-1.012c-.02-2.352 1.253-4.66 3.258-5.89a6.85 6.85 0 0 1 3.615-1.035z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M392.77 145.25c3.517 0 6.367 2.872 6.367 6.416 0 3.543-2.85 6.415-6.367 6.415s-6.367-2.872-6.367-6.415 2.85-6.416 6.367-6.416",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M399.64 151.66h-1.012c.026-2.186-1.279-4.317-3.24-5.283a5.8 5.8 0 0 0-2.62-.623v-1.02c2.332-.02 4.61 1.261 5.824 3.25a6.97 6.97 0 0 1 1.048 3.676m-6.873 6.925v-1.02c2.169.026 4.269-1.287 5.225-3.228a5.9 5.9 0 0 0 .635-2.676h1.012c.02 2.351-1.253 4.66-3.258 5.89a6.85 6.85 0 0 1-3.614 1.034zm-6.874-6.925h1.013c-.027 2.186 1.278 4.316 3.24 5.282.808.411 1.714.623 2.62.623v1.02c-2.332.02-4.61-1.261-5.824-3.25a6.96 6.96 0 0 1-1.049-3.675zm6.874-6.926v1.02c-2.17-.027-4.27 1.287-5.226 3.23a5.9 5.9 0 0 0-.635 2.676h-1.012c-.02-2.352 1.253-4.66 3.258-5.891a6.85 6.85 0 0 1 3.615-1.035",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M391.54 156.66c3.518 0 6.367 2.872 6.367 6.415s-2.85 6.415-6.367 6.415-6.367-2.872-6.367-6.415 2.85-6.415 6.367-6.415",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M398.41 163.08h-1.012c.026-2.186-1.279-4.316-3.24-5.283a5.8 5.8 0 0 0-2.621-.622v-1.02c2.346-.02 4.637 1.276 5.846 3.283a7 7 0 0 1 1.027 3.642zm-6.873 6.925v-1.02c2.182.027 4.294-1.303 5.242-3.263a5.9 5.9 0 0 0 .618-2.642h1.013c.021 2.424-1.335 4.802-3.444 6a6.83 6.83 0 0 1-3.43.925zm-6.874-6.925h1.013c-.027 2.2 1.295 4.34 3.274 5.3.8.399 1.693.605 2.586.605v1.02c-2.332.02-4.61-1.26-5.824-3.25a6.97 6.97 0 0 1-1.049-3.675zm6.874-6.925v1.02c-2.17-.026-4.27 1.287-5.225 3.228a5.9 5.9 0 0 0-.636 2.677h-1.012c-.02-2.352 1.253-4.66 3.258-5.89a6.85 6.85 0 0 1 3.615-1.035z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M474.41 198.02q-4.051-7.546-8.596-9.65c4.176-13.155 5.158-30.146 2.703-51.096-.249-3.13-1.02-4.479-2.213-4.457-1.046.02-1.679 1.616-1.781 5.22.759 11.526 1.692 21.607 1.17 30.166-.469 7.642-2.263 13.996-4.238 21.155-.274.993.43 1.775 3.869 3.712 2.536 1.443 4.133 3.217 4.666 5.073.735-.296 1.207-.207 1.472-.13 2.547.739 3.623.538 2.948.006z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m465.33 188.22.962.31-.27-.618.299.144.296.154.295.166.292.176.293.188.29.198.289.208.287.219.287.23.283.24.282.25.282.262.28.272.279.284.277.292.276.305.274.314.273.324.271.336.271.344.27.357.268.366.267.377.265.389.264.396.265.41.261.42.262.427.259.44.259.45.256.46.258.472-.89.486-.251-.462-.252-.45-.252-.44-.254-.429-.254-.419-.255-.407-.255-.397-.257-.385-.257-.376-.258-.364-.258-.353-.26-.343-.26-.332-.26-.32-.262-.311-.26-.3-.264-.29-.263-.277-.264-.267-.264-.258-.265-.245-.263-.236-.267-.223-.265-.216-.266-.202-.267-.193-.266-.182-.269-.17-.268-.162-.27-.151-.266-.14-.27-.13zm.27.618-.406-.187.136-.431zm2.41-51.518 1.007-.082v-.019l.219 1.957.2 1.935.182 1.91.16 1.888.14 1.865.121 1.841.1 1.82.08 1.796.062 1.774.041 1.75.022 1.728v1.704l-.017 1.682-.04 1.659-.057 1.637-.076 1.614-.096 1.59-.117 1.569-.135 1.545-.155 1.524-.174 1.5-.193 1.48-.213 1.454-.231 1.434-.253 1.41-.27 1.387-.29 1.366-.308 1.344-.329 1.32-.347 1.3-.365 1.274-.386 1.254-.962-.31.378-1.235.361-1.258.343-1.282.323-1.301.306-1.327.285-1.35.267-1.37.249-1.395.229-1.417.21-1.44.193-1.463.172-1.485.153-1.51.135-1.53.114-1.557.096-1.577.076-1.602.058-1.622.037-1.646.017-1.67v-1.693l-.022-1.716-.04-1.74-.06-1.762-.08-1.786-.1-1.808-.121-1.831-.139-1.856-.16-1.877-.179-1.902-.2-1.925-.22-1.947zm0 .02v-.02l.002.028zm-1.7-4.008-.02-1.02.149.004.144.014.147.025.143.036.139.05.136.058.13.071.128.083.118.092.114.1.11.111.104.12.096.128.092.135.088.144.082.151.078.162.074.167.07.175.065.187.062.19.058.203.055.212.052.217.047.23.046.236.041.248.039.257.034.266.032.274.029.286.025.295-1.007.082-.025-.283-.027-.27-.03-.26-.032-.248-.036-.238-.039-.226-.04-.22-.043-.205-.047-.196-.048-.185-.051-.173-.053-.165-.053-.153-.058-.142-.057-.133-.058-.12-.061-.111-.06-.101-.063-.092-.062-.081-.061-.07-.06-.061-.062-.054-.061-.049-.058-.037-.061-.032-.06-.028-.062-.02-.062-.017-.066-.011-.07-.006-.074-.001zm-1.286 4.677-1.01.068v-.048l.011-.337.014-.327.018-.315.022-.302.022-.295.03-.281.028-.27.033-.262.038-.251.04-.24.043-.23.046-.218.05-.21.054-.201.056-.19.061-.18.063-.175.07-.165.075-.155.079-.147.082-.137.09-.131.096-.12.104-.112.11-.101.116-.09.125-.081.131-.067.139-.053.142-.04.146-.024.143-.01.019 1.02-.05.003-.043.007-.042.01-.04.017-.044.022-.044.028-.046.037-.05.046-.05.054-.052.065-.053.076-.053.089-.055.1-.053.112-.05.124-.052.136-.05.15-.048.16-.046.172-.044.184-.042.195-.038.208-.037.22-.033.233-.031.241-.029.256-.026.267-.023.278-.019.293-.018.303-.014.312-.01.327zm-1.01.068v-.049zm2.18 30.162-1.01-.063.046-.8.035-.811.029-.82.02-.83.013-.837.007-.847v-.855l-.007-.866-.013-.874-.016-.884-.024-.892-.03-.902-.035-.91-.038-.919-.044-.928-.047-.937-.05-.945-.056-.955-.057-.965-.06-.972-.064-.98-.066-.992-.067-.998-.069-1.008-.07-1.015-.072-1.026-.072-1.033-.072-1.043-.073-1.052-.073-1.058-.073-1.068-.071-1.078 1.01-.067.071 1.075.073 1.068.073 1.058.073 1.05.072 1.043.072 1.033.072 1.026.07 1.017.07 1.008.066 1 .066.992.063.984.06.974.058.967.055.957.051.95.047.94.044.933.038.923.035.915.03.907.024.899.019.888.013.882.007.873v.865l-.007.854-.013.847-.023.839-.028.83-.036.82zm-4.255 21.259-.974-.272.185-.669.182-.665.183-.66.18-.656.177-.654.176-.65.173-.646.172-.646.167-.642.166-.641.162-.641.158-.64.154-.639.153-.64.146-.64.143-.64.138-.643.134-.643.128-.646.125-.648.118-.65.113-.654.108-.658.102-.661.094-.664.09-.671.083-.676.076-.68.068-.686.064-.695.055-.699.046-.707 1.01.062-.049.72-.055.71-.063.705-.07.698-.077.692-.085.686-.09.68-.097.676-.104.672-.109.667-.114.661-.12.662-.126.655-.13.653-.136.651-.139.65-.145.648-.148.646-.153.645-.157.644-.158.644-.164.646-.166.646-.17.647-.171.648-.173.65-.177.652-.179.654-.18.658-.183.66-.183.665zm3.63 3.133-.497.887.001.001-.316-.18-.302-.173-.287-.168-.272-.16-.257-.157-.243-.15-.23-.147-.219-.143-.202-.136-.19-.132-.182-.133-.167-.126-.158-.124-.145-.123-.137-.12-.124-.118-.118-.119-.106-.119-.096-.116-.09-.123-.077-.122-.07-.125-.059-.127-.047-.126-.039-.13-.027-.13-.016-.134-.006-.13.006-.132.015-.126.022-.123.03-.121.974.271-.016.064-.01.06-.007.057-.001.05v.048l.007.047.01.05.015.051.021.057.028.06.035.063.044.068.053.072.067.081.075.085.087.088.1.096.113.099.124.103.139.11.15.114.162.118.18.123.192.13.204.134.22.14.234.145.25.152.265.156.28.165.296.17.312.176zm-.001-.001-.098-.056zm4.231 5.045.375.945-.673-.33-.048-.158-.053-.157-.06-.157-.066-.158-.072-.157-.075-.155-.085-.158-.087-.155-.095-.156-.1-.156-.107-.155-.113-.154-.117-.155-.124-.154-.13-.153-.136-.151-.14-.15-.148-.15-.155-.151-.158-.148-.166-.147-.172-.148-.175-.145-.18-.143-.19-.142-.194-.142-.2-.14-.204-.14-.211-.135-.219-.136-.22-.135-.229-.13.497-.888.242.14.238.142.23.146.226.145.22.15.215.151.208.152.204.154.2.157.192.158.186.16.18.16.177.166.167.163.165.166.158.17.152.17.146.172.14.174.134.174.128.176.123.179.115.179.11.18.103.182.097.184.092.184.084.186.077.187.072.189.066.19.057.188zm.375.945-.518.208-.155-.539zm1.424-1.092-.28.979-.017-.005-.023-.006-.025-.007-.012-.002-.027-.006-.028-.006-.019-.004-.025-.004-.023-.004-.027-.004-.028-.002-.031-.004-.024-.001-.036-.001h-.101l-.035.003-.032.002-.04.005-.042.005-.04.006-.046.008-.043.008-.045.009-.047.012-.052.014-.053.016-.05.016-.055.019-.06.022-.057.021-.375-.945.079-.031.074-.027.074-.026.078-.026.07-.02.071-.02.07-.016.07-.017.069-.013.063-.011.068-.01.061-.008.062-.007.066-.005.06-.002h.051l.059-.003.057.002.05.001.057.004.048.004.048.005.048.006.045.006.044.008.048.008.035.008.034.006.046.012.03.007.032.008.032.01zm3.315.495h-1.012l.818-.401.084.072.08.078.07.083.067.102.055.13.033.154-.012.184-.067.177-.104.138-.106.088-.109.062-.11.044-.107.03-.108.02-.108.013-.111.007-.118.005-.128-.002-.134-.005-.14-.01-.149-.015-.156-.02-.164-.022-.173-.028-.181-.033-.189-.038-.198-.04-.206-.049-.218-.051-.222-.058-.231-.064-.24-.067.28-.979.227.065.222.059.21.055.2.05.193.043.184.038.174.035.165.03.154.024.144.02.135.018.124.012.115.008.1.005h.09l.08-.002.068-.005.051-.006.034-.006.014-.004-.007.002-.025.014-.042.035-.058.08-.043.113-.007.114.015.08.022.05.01.018-.004-.006-.016-.016-.032-.026zm-1.012 0v-1.046l.818.645zm0 .001h1.012l-.951.243z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M458.4 214.56c1.565-.986 1.872-.724 2.374-1.371.647-.832.656-2.198.453-3.508-.82-5.285 2.335-4.547 5.882-2.21 1.774 1.168 3.559 3.882 5.083 5.298s2.788 1.537 3.168 2.096c.048 2.028.057 3.78.043 4.573v.005c.014.793.006 2.542-.043 4.57-.38.56-1.645.68-3.168 2.096-1.524 1.417-3.309 4.13-5.083 5.298-3.548 2.338-6.701 3.074-5.882-2.21.201-1.31.194-2.676-.453-3.509-.502-.647-.81-.384-2.374-1.37-1.016-.64-1.777-1.409-2.285-2.244-.507-.835-.231-1.735-.231-2.635s-.276-1.8.231-2.635c.508-.835 1.27-1.605 2.285-2.244z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m460.37 212.87.795.628h.001l-.057.07-.056.066-.061.066-.06.059-.06.055-.064.053-.061.046-.066.047-.063.038-.062.036-.068.037-.065.032-.062.029-.062.027-.064.028-.067.028-.06.024-.069.028-.07.03-.073.03-.073.032-.079.036-.083.038-.089.042-.094.046-.096.048-.102.055-.112.062-.117.065-.122.072-.13.078-.137.085-.537-.863.149-.093.142-.085.136-.08.129-.072.12-.066.117-.062.114-.058.104-.05.097-.048.094-.043.09-.04.085-.037.08-.033.07-.03.069-.028.068-.029.057-.023.052-.022.048-.02.046-.023.04-.019.03-.016.036-.021.03-.02.027-.018.027-.021.028-.022.027-.027.031-.03.03-.032.035-.04.036-.045zm.35-3.116 1-.156.018.127.019.129.016.13.015.13.013.128.012.13.01.13.007.13.005.129.005.128.002.131v.127l-.004.13-.005.127-.008.13-.012.125-.012.123-.016.123-.018.126-.024.123-.025.122-.031.12-.032.117-.036.116-.042.117-.045.116-.05.11-.053.11-.06.11-.064.105-.067.1-.074.1-.795-.627.043-.06.043-.064.04-.066.037-.065.034-.074.035-.077.03-.077.028-.08.027-.083.025-.09.021-.09.02-.092.017-.092.016-.097.012-.1.012-.105.009-.104.006-.103.005-.106v-.33l-.004-.114-.005-.114-.008-.115-.007-.116-.012-.115-.01-.118-.014-.117-.016-.115-.016-.12-.018-.117zm6.66-2.714-.555.851v.001l-.324-.21-.32-.199-.315-.188-.31-.175-.305-.162-.297-.15-.29-.134-.28-.12-.272-.103-.258-.086-.247-.069-.232-.05-.22-.034-.2-.017-.183.002-.167.018-.147.033-.13.047-.115.059-.104.074-.094.093-.09.115-.082.141-.074.173-.064.206-.052.24-.035.275-.02.312-.002.348.02.385.041.423.063.458-1 .157-.068-.497-.043-.464-.022-.436v-.405l.023-.378.046-.352.07-.326.095-.302.12-.276.148-.254.174-.224.2-.194.223-.16.24-.127.253-.09.264-.06.27-.03.277-.001.282.022.287.043.292.065.297.083.304.1.307.119.313.13.319.15.321.16.328.175.33.188.334.197.337.21.339.218zm5.148 5.35-.685.748-.152-.144-.152-.15-.152-.156-.153-.16-.154-.167-.154-.172-.154-.173-.155-.178-.156-.18-.156-.183-.157-.184-.158-.187-.159-.188-.157-.187-.16-.187-.16-.187-.16-.186-.159-.184-.16-.18-.16-.179-.161-.176-.16-.174-.16-.166-.159-.16-.16-.158-.158-.15-.16-.145-.157-.138-.155-.13-.154-.12-.154-.113-.152-.105.554-.851.18.123.18.133.179.14.176.146.175.153.173.157.173.164.172.17.17.173.17.177.167.18.168.182.165.186.167.187.164.19.16.188.163.189.161.19.16.189.157.186.157.184.155.184.154.18.153.176.15.173.15.169.147.162.144.156.143.152.141.144.14.137zm3.33 2.458-1.01.024.087.276-.012-.017-.013-.015-.026-.025-.033-.029-.034-.026-.043-.029-.054-.034-.058-.034-.066-.036-.073-.039-.078-.04-.083-.043-.09-.043-.093-.047-.103-.05-.103-.052-.106-.053-.116-.06-.118-.063-.12-.065-.125-.07-.127-.075-.132-.08-.132-.085-.136-.09-.141-.097-.14-.1-.143-.108-.148-.116-.147-.123-.148-.129-.152-.137.686-.748.132.12.134.115.13.108.127.1.126.095.125.091.12.083.122.08.118.075.114.07.114.066.11.063.11.06.107.057.101.051.106.053.1.05.096.048.097.047.092.046.094.047.088.045.085.046.087.048.083.05.08.05.083.058.081.062.072.063.071.068.073.082.065.087.087.275zm-.087-.275.084.123.004.152zm.131 4.86h-1.012v-.01l.001-.074.001-.083.001-.088.001-.089v-.098l.001-.102v-.848l-.002-.137v-.142l-.002-.148v-.15l-.002-.153v-.155l-.003-.16-.002-.163-.002-.166-.002-.168-.002-.172-.002-.173-.004-.176-.004-.181-.002-.18-.004-.181-.005-.189-.002-.186-.005-.188 1.01-.024.005.19.005.189.002.184.006.185.002.183.004.177.004.18.002.176.002.172.002.168.002.166.002.164.002.16.001.16.001.153.001.15.001.146.001.142.001.142v.135l.001.13v.592l-.001.105v.099l-.001.096-.001.088-.001.083-.001.08v-.01zm-1.012 0v-.01zm0 .005v-.005h1.012v.005l-1.012.009zm0 .009v-.01zm.88 4.849-.833-.577-.089.276.005-.187.004-.19.005-.186.002-.18.004-.182.004-.178.002-.176.004-.175.002-.17.002-.17.002-.166.002-.162.001-.16.002-.157.001-.15.001-.15.001-.148.001-.14v-.14l.001-.134v-.913l-.002-.089v-.088l-.002-.083v-.074l1.012-.02v.08l.002.083v.088l.002.096v1.199l-.001.144-.001.146-.001.15-.001.155-.002.157-.001.16-.002.164-.002.166-.002.17-.002.173-.004.174-.002.177-.004.18-.004.182-.005.185-.005.187-.004.186-.005.19zm.088-.277-.004.153-.084.124zm-3.33 2.459-.685-.749.15-.137.15-.13.147-.121.144-.114.145-.11.142-.103.139-.094.135-.091.134-.085.133-.081.125-.074.124-.07.123-.067.115-.061.115-.059.11-.055.103-.052.1-.048.094-.046.091-.046.084-.04.078-.042.073-.038.064-.036.06-.036.051-.031.044-.03.037-.029.031-.027.026-.025.014-.014.013-.018.833.577-.063.085-.073.082-.072.069-.074.065-.08.06-.08.056-.083.053-.083.048-.086.049-.087.045-.09.046-.09.046-.092.046-.098.048-.098.048-.099.05-.102.05-.103.054-.108.056-.108.06-.11.063-.116.066-.116.07-.115.075-.12.079-.125.087-.123.087-.124.094-.13.102-.128.107-.133.116zm-5.149 5.349-.553-.852.151-.104.154-.113.154-.12.156-.131.157-.136.157-.145.16-.151.16-.156.16-.163.159-.167.16-.172.161-.176.16-.178.16-.18.159-.184.161-.186.16-.187.159-.187.157-.187.159-.189.158-.186.157-.184.157-.183.155-.18.155-.178.154-.173.154-.172.154-.166.153-.162.152-.156.152-.149.152-.144.685.748-.135.13-.14.137-.14.144-.144.152-.144.156-.147.162-.15.169-.15.173-.153.175-.153.18-.156.185-.157.184-.157.186-.16.189-.16.19-.163.189-.161.189-.164.189-.167.187-.165.185-.168.183-.167.18-.17.176-.17.175-.172.168-.172.163-.174.16-.176.152-.175.145-.178.14-.18.132-.18.125zm-6.66-2.714 1.001.156-.063.458-.04.423-.021.385v.348l.021.312.036.276.051.24.065.205.074.173.08.14.092.116.094.093.104.074.117.06.129.048.144.032.167.017.184.002.2-.017.22-.034.233-.05.247-.069.26-.086.27-.103.28-.12.29-.133.296-.15.305-.163.31-.174.316-.188.32-.2.324-.209.554.852-.339.22-.337.208-.334.2-.33.186-.326.175-.323.162-.318.147-.313.133-.31.116-.301.101-.297.083-.293.065-.286.044-.282.021-.277-.002-.27-.029-.266-.059-.253-.092-.239-.125-.223-.161-.2-.194-.174-.224-.148-.253-.12-.277-.095-.302-.07-.326-.045-.352-.023-.378-.001-.405.023-.435.043-.465zm-.35-3.117.797-.627.073.1.067.1.064.105.06.11.054.11.049.11.045.116.042.117.036.117.032.116.031.12.026.126.022.12.02.123.016.126.013.125.009.125.008.127.005.128.004.127v.13l-.003.13-.004.129-.006.129-.007.13-.01.13-.012.13-.014.127-.013.128-.017.133-.019.128-.018.128-1-.157.018-.117.017-.12.014-.113.013-.119.012-.117.01-.116.009-.115.007-.116.006-.114.004-.114v-.22l-.001-.11-.005-.106-.006-.105-.01-.104-.01-.103-.012-.098-.017-.098-.016-.096-.02-.09-.021-.088-.025-.09-.026-.084-.028-.08-.03-.077-.035-.077-.035-.074-.036-.064-.04-.067-.043-.065zm-2.243-1.253.535-.863.138.085.13.078.122.072.117.065.112.062.101.055.097.048.094.046.089.042.083.038.079.036.073.032.073.03.07.03.068.028.061.024.067.028.064.028.062.028.063.028.064.032.068.037.062.036.063.038.066.047.06.046.064.053.061.055.06.06.06.065.057.065.057.071-.797.628-.036-.044-.035-.041-.03-.033-.03-.03-.028-.026-.027-.022-.028-.022-.027-.018-.03-.02-.036-.02-.03-.017-.04-.019-.046-.022-.047-.02-.053-.023-.057-.023-.068-.028-.068-.03-.07-.028-.08-.034-.085-.036-.091-.04-.093-.044-.098-.047-.104-.05-.113-.058-.119-.063-.119-.066-.129-.072-.136-.08-.142-.085-.15-.092zm.535-.863.496.311zm-2.983-1.546.861-.531.043.07.047.07.048.074.046.067.05.068.054.074.051.07.054.067.054.069.056.066.06.07.06.067.06.066.064.067.064.068.063.063.068.065.07.068.069.063.069.062.073.062.075.064.076.062.078.063.078.06.08.06.083.06.084.062.082.056.086.058.088.059.089.056-.535.864-.1-.064-.098-.064-.098-.065-.097-.068-.093-.066-.092-.068-.09-.07-.09-.069-.087-.07-.086-.07-.085-.07-.085-.072-.084-.076-.08-.076-.077-.072-.078-.075-.077-.078-.074-.077-.073-.077-.072-.078-.068-.08-.067-.077-.068-.08-.065-.08-.066-.085-.06-.082-.058-.077-.061-.084-.059-.087-.054-.083-.054-.084zm-.307-2.9h1.012v.09l-.003.092-.004.095-.005.092-.006.088-.006.084-.006.084-.007.088-.007.088-.007.08-.005.08-.006.08-.005.076-.004.08-.004.075v.22l.002.07.005.068.006.068.008.066.01.066.011.06.016.063.017.063.016.057.023.059.025.061.028.06.03.058.033.058-.862.531-.057-.098-.052-.1-.046-.1-.04-.097-.036-.1-.034-.104-.026-.098-.023-.098-.02-.104-.013-.095-.013-.097-.008-.096-.007-.098-.002-.093-.004-.094v-.094l.003-.09.004-.09.004-.087.005-.09.006-.088.007-.087.007-.087.007-.081.005-.08.006-.085.006-.084.006-.08.005-.078.004-.073v-.154zm.307-2.901.861.531-.033.058-.03.059-.027.059-.025.061-.023.06-.017.056-.016.063-.016.064-.01.058-.01.067-.009.066-.006.068-.005.067-.002.07v.22l.004.076.004.079.005.077.006.08.005.08.007.08.007.087.007.088.006.084.006.084.006.088.005.091.004.097.002.091.001.091h-1.012v-.154l-.005-.074-.005-.077-.006-.08-.006-.085-.006-.084-.005-.08-.007-.081-.007-.087-.007-.088-.006-.086-.005-.092-.004-.086-.004-.09-.002-.09v-.094l.003-.094.002-.094.007-.096.008-.096.012-.098.014-.096.02-.103.023-.098.027-.097.033-.105.037-.1.04-.097.046-.1.051-.1zm2.447-2.41.537.863h-.001l-.088.057-.089.059-.086.057-.082.057-.084.061-.082.06-.08.06-.079.06-.077.063-.077.063-.074.062-.073.063-.071.065-.07.063-.067.065-.068.065-.064.064-.064.067-.063.067-.06.066-.061.068-.059.068-.056.068-.056.07-.053.068-.05.067-.054.072-.05.07-.048.07-.047.07-.045.07-.044.073-.862-.532.051-.084.055-.087.056-.083.056-.084.061-.084.059-.08.062-.084.066-.082.063-.078.068-.082.068-.078.068-.08.072-.077.072-.077.074-.077.078-.079.078-.074.077-.075.082-.073.08-.072.085-.075.086-.072.086-.07.087-.07.09-.07.09-.069.093-.067.093-.066.097-.069.097-.065.098-.063.1-.064zm.537.863h-.001l.496-.311z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m475.52 220.24-.131.889c-3.752.474-6.85 1.985-9.555 4.356 1.79-2.668 5.629-4.653 9.686-5.245M475.52 218.64l-.131-.889c-3.752-.475-6.85-1.985-9.555-4.356 1.79 2.667 5.629 4.652 9.686 5.245",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M461.16 207.28c1.141.469 2.384.972 3.437 1.994 1.6 1.553.563 4.13-1.504 6.624-.652.787-.967 2.177-.963 3.561s.332 2.763.963 3.524c2.066 2.494 3.103 5.072 1.504 6.624-1.052 1.023-2.295 1.523-3.436 1.993-.11-.601-.098-1.39.059-2.402.203-1.31.195-2.676-.452-3.508-.503-.647-.809-.385-2.375-1.37-1.015-.64-1.776-1.41-2.285-2.244-.507-.834-.231-1.734-.231-2.635s-.277-1.8.231-2.635c.509-.836 1.27-1.605 2.285-2.244 1.566-.986 1.872-.724 2.375-1.371.647-.832.655-2.198.452-3.508-.157-1.012-.169-1.802-.059-2.403z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m464.95 208.9-.702.734-.09-.087-.094-.084-.093-.082-.094-.078-.097-.078-.095-.075-.097-.072-.1-.071-.098-.069-.098-.064-.102-.064-.101-.063-.101-.061-.103-.059-.105-.059-.103-.055-.104-.054-.107-.056-.103-.051-.105-.05-.108-.051-.105-.05-.108-.048-.109-.048-.105-.047-.107-.046-.109-.047-.105-.043-.107-.045-.109-.044-.108-.044-.107-.045.382-.943.109.045.106.044.109.045.11.044.112.048.11.047.113.048.115.05.11.05.115.05.115.055.11.053.118.055.117.06.112.057.116.059.117.065.114.063.115.067.116.068.113.07.114.073.117.077.112.078.112.081.113.084.113.087.108.088.111.092.11.096.108.099zm-1.467 7.317-.776-.652.185-.228.18-.226.171-.228.165-.226.157-.226.152-.226.142-.221.133-.22.125-.222.118-.216.106-.214.1-.213.088-.208.078-.205.07-.2.058-.196.048-.193.038-.186.029-.184.016-.176.007-.17-.004-.165-.013-.16-.024-.15-.034-.152-.045-.144-.053-.138-.066-.133-.077-.131-.09-.128-.103-.125-.117-.121.702-.734.167.175.153.185.135.192.118.199.102.208.084.214.066.216.052.22.035.226.018.228.006.228-.009.232-.024.234-.035.234-.048.235-.06.235-.07.239-.081.238-.093.24-.103.24-.111.239-.12.243-.13.24-.138.24-.147.245-.156.243-.161.24-.17.243-.176.243-.184.242-.189.24-.197.242zm-.844 3.234-1.012.002v-.136l.004-.14.005-.136.006-.137.008-.136.01-.135.012-.135.015-.136.018-.133.018-.132.02-.133.024-.134.025-.13.026-.125.029-.13.032-.128.034-.123.034-.122.038-.123.041-.12.042-.117.046-.118.047-.113.05-.11.053-.111.056-.108.056-.104.06-.103.064-.099.067-.098.07-.093.07-.09.777.652-.048.061-.048.064-.045.067-.047.072-.041.072-.045.08-.041.082-.04.084-.039.089-.04.091-.034.092-.035.096-.033.1-.031.098-.03.104-.029.108-.027.106-.024.107-.024.115-.022.113-.02.112-.017.114-.016.12-.016.118-.012.117-.011.12-.008.122-.008.121-.006.123-.005.121-.001.12v.125zm.844 3.199-.776.652-.071-.09-.067-.09-.064-.093-.062-.099-.06-.1-.057-.104-.053-.105-.052-.107-.049-.11-.046-.111-.046-.116-.041-.115-.041-.118-.038-.123-.035-.119-.034-.123-.033-.127-.028-.125-.029-.13-.024-.127-.024-.128-.022-.134-.02-.133-.016-.133-.016-.136-.013-.134-.01-.133-.011-.136-.007-.138-.005-.136-.005-.137-.001-.139 1.012-.002.001.122.002.123.005.121.007.12.008.12.01.124.012.12.013.116.016.12.017.115.018.113.022.115.021.113.024.108.026.111.025.105.03.104.03.105.03.099.034.096.035.096.036.091.037.09.039.086.04.083.041.08.042.078.041.072.043.067.047.066.045.063.046.057zm1.467 7.317-.702-.734.117-.121.103-.125.09-.128.076-.13.065-.135.057-.139.043-.142.034-.15.023-.152.014-.161.004-.165-.007-.17-.017-.175-.028-.184-.038-.186-.048-.192-.06-.197-.07-.202-.077-.204-.088-.207-.1-.213-.106-.214-.117-.218-.125-.219-.135-.22-.142-.223-.15-.225-.158-.226-.164-.226-.172-.228-.18-.226-.184-.228.776-.652.197.24.188.24.184.243.177.242.17.243.162.242.154.242.146.243.139.243.129.24.122.242.11.24.103.24.092.24.081.236.072.238.06.237.047.235.036.234.024.234.009.232-.006.23-.02.225-.034.225-.051.222-.067.219-.085.211-.099.207-.12.2-.134.192-.153.185zm-4.284 1.718.995-.185-.688-.379.106-.044.108-.045.108-.044.106-.045.11-.045.107-.046.107-.045.105-.047.108-.048.108-.048.105-.049.108-.05.105-.051.105-.053.106-.053.102-.054.105-.058.102-.056.104-.06.102-.06.102-.063.1-.064.1-.067.098-.068.097-.07.097-.071.097-.076.097-.077.092-.077.094-.083.093-.084.091-.087.702.734-.108.1-.107.1-.109.094-.11.094-.112.089-.11.085-.113.085-.113.081-.115.077-.112.075-.115.073-.115.073-.115.067-.113.067-.116.064-.115.062-.117.062-.114.057-.115.058-.117.055-.111.053-.115.054-.114.05-.111.051-.115.05-.113.049-.112.046-.108.046-.11.047-.11.044-.107.045-.109.044zm.689.38-.577.236-.112-.616zm-.633-2.952 1 .156-.014.09-.013.092-.012.086-.01.088-.013.085-.008.082-.009.084-.007.08-.007.08-.007.08-.005.075-.005.078-.005.074-.004.07-.002.073-.002.071v.199l.001.07v.065l.002.06.004.06.004.062.004.054.006.06.005.056.006.05.007.054.008.053.008.052.008.048-.995.185-.01-.065-.012-.066-.008-.065-.009-.066-.008-.072-.007-.068-.006-.069-.006-.076-.004-.07-.004-.072-.002-.078-.002-.074v-.071l-.002-.08.001-.082.002-.078.002-.078.002-.08.004-.087.005-.082.005-.083.007-.089.007-.087.007-.085.01-.091.008-.09.011-.093.012-.093.01-.092.015-.096.013-.097zm-.349-3.116.795-.628.074.1.067.1.065.105.06.111.053.11.049.11.045.116.042.116.036.117.032.117.031.12.026.125.022.12.02.123.016.126.013.125.009.125.008.128.005.127.004.13v.126l-.001.128-.005.132-.006.129-.007.13-.01.132-.013.127-.013.128-.015.131-.016.13-.02.129-.017.127-1-.156.018-.118.016-.12.016-.115.013-.116.01-.118.013-.118.008-.113.007-.116.006-.114.002-.11v-.334l-.005-.105-.006-.106-.01-.104-.01-.103-.012-.097-.017-.099-.016-.096-.02-.09-.021-.088-.025-.09-.026-.083-.028-.081-.03-.077-.036-.077-.034-.073-.036-.065-.04-.066-.044-.065zm-2.246-1.252.537-.864h-.001l.138.086.13.077.122.072.12.067.107.059.104.054.099.05.093.046.087.042.084.039.076.034.077.032.075.033.067.027.065.027.067.028.065.026.06.027.064.027.066.031.062.03.069.038.06.036.065.038.065.047.06.043.065.056.061.055.06.06.06.065.057.065.056.071-.795.628-.037-.045-.035-.04-.03-.033-.03-.03-.028-.026-.025-.02-.031-.024-.026-.018-.031-.02-.035-.02-.03-.017-.042-.02-.041-.02-.05-.02-.055-.024-.058-.024-.062-.025-.07-.03-.077-.032-.075-.032-.083-.035-.091-.04-.093-.044-.102-.047-.105-.053-.108-.055-.119-.062-.124-.068-.126-.072-.135-.077-.143-.087-.148-.092zm0 0-.454-.286.455.286zm-2.447-2.41.861-.532.045.071.046.072.046.069.048.07.05.07.05.07.056.071.052.068.055.068.056.067.058.067.06.068.063.067.063.068.064.067.065.065.066.064.069.066.07.065.07.061.073.064.077.065.075.062.074.06.08.062.081.06.081.06.082.06.085.058.086.059.087.057.09.057-.537.863-.1-.063-.098-.065-.096-.064-.097-.067-.094-.067-.093-.069-.088-.068-.09-.069-.09-.072-.088-.072-.08-.07-.084-.07-.084-.077-.08-.074-.079-.074-.077-.075-.077-.077-.074-.077-.073-.077-.069-.077-.07-.079-.07-.08-.065-.08-.067-.08-.064-.084-.06-.08-.061-.082-.059-.081-.058-.085-.057-.087-.052-.082zm0 0 .311.512zm-.307-2.901h1.012l-.001.091-.002.091-.004.097-.005.091-.006.088-.006.084-.006.084-.007.088-.007.088-.007.08-.005.08-.006.08-.005.076-.004.08-.004.076v.076l-.001.072.001.072.002.07.005.067.006.067.009.066.009.068.01.057.016.064.017.064.017.056.022.06.025.06.028.06.03.058.033.058-.862.532-.057-.099-.051-.1-.047-.1-.04-.097-.036-.1-.034-.104-.026-.097-.023-.098-.02-.103-.014-.096-.012-.098-.008-.096-.007-.096-.002-.094-.004-.094v-.093l.003-.09.004-.09.004-.087.005-.092.006-.086.007-.088.007-.087.007-.08.005-.08.006-.085.006-.084.006-.08.005-.078.004-.075v-.154zm.307-2.901.861.531v.001l-.033.057-.03.059-.029.062-.025.058-.02.057-.018.059-.017.063-.015.064-.012.061-.009.064-.008.066-.007.067-.004.068-.004.07v.144l.001.075.002.076.005.076.005.08.006.08.005.08.007.084.006.084.007.084.007.088.006.084.006.088.005.095.002.092.004.088.001.095h-1.012l-.001-.073-.001-.08-.002-.08-.005-.072-.006-.081-.006-.084-.005-.08-.007-.085-.006-.084-.007-.083-.007-.088-.006-.087-.005-.087-.005-.09-.002-.09-.004-.091v-.094l.002-.093.004-.094.006-.096.009-.097.01-.097.017-.1.02-.1.022-.097.026-.097.032-.103.037-.102.042-.1.045-.097.052-.1.057-.1v.002zm2.447-2.41.537.863h-.001l-.088.057-.088.057-.085.06-.085.057-.082.06-.082.06-.08.06-.08.062-.077.061-.075.061-.073.063-.074.064-.072.065-.07.064-.068.064-.066.064-.064.065-.064.067-.064.067-.062.068-.06.068-.057.065-.056.069-.057.07-.053.068-.053.07-.05.068-.05.07-.05.073-.045.066-.045.072-.046.072-.862-.531.053-.084.052-.085.059-.087.056-.082.058-.083.062-.083.061-.082.065-.082.064-.078.066-.08.07-.082.07-.079.07-.077.073-.077.074-.077.076-.077.078-.075.08-.076.08-.072.081-.072.084-.074.084-.072.088-.07.088-.072.09-.068.088-.069.093-.068.094-.068.097-.067.095-.064.1-.064.1-.064h-.001zm2.246-1.253.795.627-.056.071-.056.065-.06.066-.06.06-.062.055-.065.055-.06.043-.064.047-.065.039-.06.036-.07.037-.062.03-.066.031-.063.028-.06.026-.065.027-.064.025-.069.03-.07.028-.072.031-.074.031-.076.035-.086.04-.09.043-.092.044-.096.049-.104.055-.111.061-.117.065-.122.072-.13.078-.137.086-.537-.864.149-.092.142-.086.136-.08.129-.071.12-.066.119-.063.11-.057.107-.052.099-.046.09-.042.091-.042.086-.036.08-.034.072-.03.067-.027.065-.028.058-.024.056-.024.049-.02.042-.02.04-.02.031-.016.035-.022.03-.02.027-.017.031-.024.025-.02.028-.026.03-.03.03-.033.035-.04.037-.045zm.349-3.117 1-.156.018.128.019.128.016.13.015.131.013.128.012.127.01.133.008.13.006.128.005.132v.254l-.003.13-.005.127-.008.128-.01.125-.012.125-.017.126-.02.123-.02.12-.027.125-.03.12-.033.117-.036.117-.042.117-.045.115-.05.11-.053.11-.06.11-.064.105-.067.101-.074.1-.795-.628.043-.059.043-.065.04-.066.036-.065.035-.073.035-.077.03-.077.028-.08.027-.084.025-.09.021-.089.02-.089.016-.096.017-.099.012-.097.01-.103.01-.104.005-.106.005-.106.001-.108v-.225l-.003-.11-.006-.115-.007-.115-.008-.113-.012-.118-.01-.118-.013-.116-.016-.116-.017-.119zm.441-1.97v-1.02l.498.602-.008.048-.008.052-.008.053-.007.054-.006.05-.005.057-.006.059-.004.054-.004.061-.004.063-.002.058v.135l-.002.064.001.064v.07l.002.073.002.072.004.07.005.077.005.077.005.074.007.078.007.082.007.08.01.084.007.082.012.085.01.088.013.086.013.092.014.09-1 .156-.015-.097-.013-.096-.014-.096-.01-.093-.013-.092-.01-.094-.01-.09-.008-.09-.007-.087-.007-.085-.007-.09-.005-.084-.005-.081-.004-.085-.002-.081-.002-.08-.002-.078-.001-.08v-.081l.002-.071.002-.075.002-.077.004-.072.004-.07.006-.077.006-.068.007-.069.008-.072.009-.066.008-.065.01-.066.011-.065zm0-1.02h.608l-.11.602zm0 0v1.02l-.192-.039zM361 226.26l.677-.292c-1.54-2.152-1.873-4.208-1.283-6.266-1.312 1.636-.992 4.212.606 6.558",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M410.74 199.91c1.329 1.686 1.169 2.09 1.89 2.574.94.624 2.216.406 3.4-.046 4.859-1.86 4.861 2.005 3.449 6.428-.684 2.146-2.756 4.471-3.68 6.296-.909 1.787-.713 3.126-1.12 3.583a96 96 0 0 1-3.964.585h-.005c-.675.109-2.175.302-3.907.489-.567-.324-1.005-1.594-2.612-2.988-1.613-1.4-4.402-2.917-5.903-4.63-3.044-3.473-4.662-6.81.124-6.694 1.192.03 2.383-.188 2.917-1.044.422-.669.105-.972.515-2.928.269-1.284.74-2.307 1.343-3.043.614-.75 1.509-.585 2.334-.738.832-.157 1.589-.648 2.508-.182.918.465 1.845 1.237 2.71 2.337z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m412.91 202.06-.556.851h-.002l-.08-.056-.072-.054-.07-.057-.068-.059-.066-.06-.058-.061-.055-.06-.055-.065-.05-.064-.047-.064-.045-.066-.043-.065-.043-.068-.04-.067-.038-.064-.044-.075-.04-.072-.042-.07-.048-.081-.047-.081-.051-.084-.055-.09-.058-.093-.064-.099-.068-.103-.074-.11-.079-.116-.085-.122-.094-.128-.101-.135-.109-.143-.117-.15.793-.633.124.157.116.153.106.145.1.138.093.13.089.128.079.118.075.113.068.109.065.103.058.096.056.092.051.087.046.079.046.078.04.072.038.062.038.064.035.058.03.05.032.047.028.042.029.04.03.037.028.034.031.034.033.033.032.03.037.033.042.032.046.035.053.036zm-.556.851h-.002l-.055-.037zm3.5-.947.358.952-.117.045-.12.042-.117.04-.119.04-.12.037-.123.036-.12.033-.12.031-.125.03-.124.025-.121.024-.122.021-.124.02-.125.014-.121.012-.126.009-.123.004-.121.004-.127-.004-.122-.006-.123-.011-.125-.016-.12-.019-.123-.025-.122-.03-.117-.034-.118-.04-.12-.045-.118-.053-.112-.057-.112-.062-.111-.07.556-.852.068.044.07.038.073.037.072.032.073.028.077.026.081.024.08.02.081.016.085.014.085.011.087.006.093.006.089.001h.093l.096-.005.095-.007.1-.009.098-.012.098-.014.102-.018.103-.02.103-.023.1-.022.106-.03.105-.027.104-.031.104-.033.105-.034.109-.036.103-.038zm4.108 7.06-.962-.312.126-.404.117-.4.106-.395.096-.386.088-.38.074-.37.063-.36.05-.345.037-.335.024-.322.009-.306-.004-.288-.02-.27-.032-.252-.045-.229-.06-.209-.073-.184-.083-.163-.096-.142-.104-.12-.118-.104-.132-.087-.153-.073-.176-.055-.204-.04-.234-.02-.261.003-.294.03-.326.057-.356.086-.388.117-.42.15-.359-.952.463-.165.439-.133.416-.101.393-.069.375-.037.354-.004.334.028.317.061.297.096.275.131.249.164.223.195.192.221.163.243.136.262.107.278.085.293.062.306.042.317.021.33.006.339-.012.351-.026.361-.042.37-.054.38-.068.387-.08.395-.091.402-.101.408-.114.413-.122.418zm-3.71 6.372-.9-.464.093-.182.102-.184.106-.186.111-.186.116-.19.12-.19.123-.19.126-.193.127-.194.132-.196.132-.194.134-.199.134-.197.134-.2.137-.2.132-.198.133-.2.132-.203.129-.198.128-.202.123-.2.121-.2.116-.2.112-.199.109-.198.103-.195.096-.196.092-.195.084-.191.078-.191.07-.188.063-.185.962.313-.072.218-.083.217-.087.215-.095.218-.102.214-.106.215-.112.214-.116.213-.12.212-.125.213-.126.21-.13.21-.133.209-.134.208-.134.204-.135.206-.138.203-.136.202-.135.2-.133.197-.134.196-.13.195-.129.191-.125.189-.123.188-.118.182-.114.182-.109.177-.103.174-.097.17-.092.167zm-1.488 3.853-.165-1.005-.294.162.004-.005.008-.014.015-.024.012-.027.015-.04.017-.05.015-.056.018-.069.018-.072.016-.08.018-.087.016-.09.018-.1.02-.108.02-.108.021-.116.024-.124.025-.125.028-.129.03-.135.033-.139.037-.144.04-.147.042-.15.05-.156.053-.162.058-.16.062-.164.07-.17.075-.17.08-.176.088-.177.9.464-.076.155-.07.152-.066.151-.06.146-.055.145-.051.144-.047.137-.042.134-.038.134-.037.132-.032.128-.029.123-.027.122-.025.121-.025.118-.022.11-.019.113-.02.108-.02.103-.017.103-.02.104-.02.098-.02.096-.023.096-.023.09-.027.093-.031.091-.035.09-.043.094-.047.087-.056.086-.07.087zm.293-.162-.119.134-.174.028zm-4.34.755v-1.02l-.057.005.063-.008.075-.008.073-.008.078-.01.083-.01.09-.012.094-.012.098-.013.1-.014.104-.014.108-.016.113-.015.117-.016.12-.017.123-.018.126-.018.129-.02.134-.019.131-.02.142-.022.14-.02.143-.023.147-.022.148-.024.151-.023.152-.022.154-.026.159-.025.158-.025.16-.027.162-.026.164-.028.165 1.005-.165.028-.163.027-.163.026-.16.025-.157.026-.156.025-.157.025-.149.023-.15.024-.147.022-.146.023-.142.02-.137.022-.139.02-.133.02-.132.02-.126.017-.123.018-.122.017-.117.018-.113.016-.11.016-.109.014-.102.013-.098.014-.095.012-.09.012-.085.01-.085.012-.08.008-.068.008-.07.008-.058.004zm.057-.004-.03.004h-.027zm.018-.004-.16-1.005.08.503v-.51h.004v1.02h-.004v-.51zm-.16-1.005.046-.007h.034zm-4.076 1.435.499-.888-.303-.062.16-.018.16-.017.16-.018.155-.017.155-.018.151-.017.152-.018.15-.017.144-.017.143-.018.143-.017.139-.017.138-.016.133-.015.13-.017.128-.015.122-.017.126-.016.116-.014.114-.016.111-.014.106-.015.105-.014.098-.014.097-.014.092-.012.085-.012.085-.012.077-.012.075-.01.066-.01.065-.01.16 1.005-.067.01-.075.013-.076.01-.08.012-.084.013-.092.014-.092.012-.097.014-.103.014-.102.014-.111.015-.111.014-.117.016-.12.014-.119.016-.128.017-.13.015-.132.017-.135.017-.136.017-.141.017-.141.017-.146.018-.149.016-.15.017-.15.018-.155.017-.155.018-.157.017-.16.018-.162.017-.16.018zm.303.062-.162.018-.141-.08zm-2.996-3.107.661-.772.154.137.148.136.141.134.135.134.13.133.122.131.116.128.11.126.11.128.1.123.093.117.093.118.09.118.08.108.077.106.077.106.07.098.068.095.066.093.062.088.057.081.055.075.054.07.05.07.046.056.043.05.042.048.037.038.033.03.027.024.025.017.02.013-.499.887-.085-.054-.08-.058-.078-.066-.07-.065-.068-.07-.063-.07-.064-.075-.063-.08-.058-.076-.061-.08-.062-.087-.062-.087-.062-.088-.064-.09-.068-.095-.068-.096-.071-.099-.075-.1-.078-.106-.078-.104-.083-.106-.091-.112-.091-.111-.094-.111-.102-.114-.106-.118-.111-.12-.115-.118-.12-.12-.13-.122-.133-.124zm-5.952-4.68.76-.673.133.149.143.149.148.148.158.15.162.15.168.147.175.148.179.147.184.148.187.147.191.146.195.146.195.144.2.146.2.143.202.144.202.142.203.142.203.142.203.14.2.141.2.14.196.14.196.139.192.138.191.138.185.139.182.137.178.138.173.136.168.14.161.137-.661.772-.147-.128-.154-.125-.161-.129-.168-.13-.175-.13-.178-.134-.183-.134-.188-.135-.19-.135-.195-.138-.2-.139-.2-.14-.2-.141-.204-.142-.205-.142-.207-.147-.204-.144-.205-.148-.204-.148-.203-.149-.202-.153-.198-.151-.197-.154-.193-.155-.191-.157-.186-.16-.183-.16-.177-.163-.172-.163-.167-.167-.16-.168zm.517-7.54-.026 1.018h-.406l-.367.017-.328.035-.287.05-.248.063-.208.075-.173.083-.14.089-.107.091-.082.094-.062.1-.046.11-.033.127-.017.142v.16l.018.181.039.199.058.215.08.23.1.244.12.256.136.264.157.275.175.285.188.29.204.299.22.302.233.308.244.311.257.315.267.319.276.32-.759.673-.285-.33-.277-.33-.266-.327-.257-.326-.245-.325-.231-.32-.219-.318-.205-.315-.189-.31-.174-.305-.158-.303-.138-.297-.12-.292-.098-.29-.078-.285-.055-.28-.028-.28v-.276l.034-.272.07-.263.107-.253.148-.237.185-.214.217-.185.247-.159.276-.133.303-.108.332-.085.358-.062.388-.04.421-.02h.453zm2.477-.809.852.549.002-.004-.068.102-.07.095-.078.094-.082.089-.086.082-.088.078-.091.07-.093.07-.1.063-.1.059-.1.054-.102.05-.108.047-.107.042-.11.041-.11.034-.11.033-.113.03-.114.026-.113.023-.117.022-.117.016-.115.016-.119.014-.117.01-.117.008-.118.006-.12.005-.119.004-.117.001h-.12l-.119-.004.027-1.017.105.001h.102l.105-.001.103-.001.103-.005.101-.006.1-.007.1-.009.096-.009.098-.013.093-.015.091-.016.09-.019.09-.021.084-.02.084-.026.08-.027.077-.026.074-.03.072-.031.069-.035.067-.035.063-.037.057-.037.058-.042.055-.042.05-.045.048-.046.041-.045.042-.051.04-.054.037-.054zm-.002.004.002-.004-.01.016zm.45-2.762.988.21-.035.173-.031.163-.028.154-.024.145-.02.136-.018.131-.017.124-.013.114-.01.107-.01.103-.007.102-.008.091-.005.084-.005.083-.005.085-.005.079-.005.076-.006.076-.006.073-.007.077-.01.073-.01.074-.015.082-.016.074-.02.072-.023.081-.028.078-.03.077-.036.078-.04.077-.041.077-.048.079-.852-.549.026-.044.025-.044.02-.04.017-.038.014-.036.013-.035.01-.032.008-.041.01-.04.006-.037.006-.05.007-.05.005-.054.006-.061.004-.064.005-.073.005-.075.005-.082.005-.087.007-.099.008-.101.008-.102.01-.115.013-.121.015-.129.017-.133.02-.14.023-.151.026-.158.03-.168.033-.175zm1.447-3.263.78.65-.05.062-.051.065-.047.062-.05.071-.049.069-.044.067-.05.078-.045.071-.043.076-.047.08-.043.078-.042.079-.043.083-.042.087-.04.085-.04.087-.037.086-.04.094-.038.095-.036.09-.034.095-.035.1-.033.097-.034.104-.032.102-.03.1-.03.108-.028.107-.028.11-.027.108-.024.113-.027.113-.988-.21.026-.125.029-.125.03-.122.03-.122.033-.119.032-.117.035-.12.037-.114.036-.113.038-.112.04-.11.039-.109.043-.112.043-.102.041-.103.047-.106.046-.101.048-.1.048-.096.048-.098.051-.096.052-.095.052-.089.055-.092.057-.09.052-.084.059-.089.058-.083.058-.08.06-.082.063-.08zm.78.65.562-.685zm1.85-1.564.187 1-.001.002-.089.014-.086.013-.085.012-.086.011-.086.01-.084.006-.082.007-.079.006-.073.007-.08.007-.077.007-.07.006-.07.008-.072.01-.069.008-.064.01-.059.011-.063.013-.056.015-.059.017-.055.018-.048.018-.052.022-.046.021-.047.027-.047.026-.044.03-.042.032-.04.034-.043.04-.042.043-.04.048-.781-.649.076-.086.078-.082.081-.076.084-.071.087-.065.087-.059.087-.053.09-.048.092-.043.09-.039.094-.035.088-.027.09-.027.089-.022.087-.02.092-.017.088-.014.084-.012.081-.01.086-.01.085-.008.08-.007.077-.007.083-.007.079-.006.075-.007.074-.007.071-.007.07-.008.071-.01.07-.01.066-.012v.001zm.187 1-.001.002-.762.142zm2.641-1.136-.453.91-.066-.03-.062-.027-.057-.022-.06-.017-.06-.015-.058-.012-.056-.008-.059-.006-.057-.004h-.116l-.057.005-.059.006-.066.009-.062.009-.065.013-.064.013-.066.017-.07.018-.07.018-.071.022-.074.02-.072.022-.076.023-.077.023-.078.024-.084.024-.08.02-.081.022-.09.023-.088.019-.087.017-.186-1 .068-.015.066-.015.066-.015.072-.02.073-.02.069-.02.072-.021.076-.023.076-.023.08-.024.078-.023.079-.021.083-.023.08-.02.087-.022.089-.018.088-.019.093-.014.088-.012.097-.01.098-.007.098-.004.101.002.103.006.102.01.106.017.104.021.105.026.107.033.11.039.107.046.107.051zm2.99 2.792h-1.012l.11.316-.076-.096-.08-.096-.078-.095-.079-.092-.077-.09-.08-.087-.08-.086-.08-.086-.08-.083-.077-.079-.08-.078-.08-.077-.08-.076-.08-.072-.08-.071-.08-.07-.08-.067-.08-.066-.08-.064-.08-.061-.08-.061-.08-.058-.082-.058-.077-.054-.08-.052-.081-.053-.08-.05-.076-.045-.08-.045-.083-.047-.079-.042-.076-.041.453-.91.096.049.093.051.09.05.093.053.096.059.092.057.091.058.092.061.094.064.091.065.092.067.092.069.09.07.093.074.09.074.091.077.09.077.092.08.09.084.09.083.086.085.09.087.09.092.087.09.087.092.087.094.088.099.087.1.086.1.085.103.085.103.086.108.11.317zm-.11-.317.11.14v.177zm-.902.318v-.001h1.013l-.903.317zm.11.316-.11-.14v-.176z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M410.05 219.43q-.396-.012-.793-.032c-1.368-3.837-3.5-6.933-6.306-9.536 2.816 1.573 5.561 5.415 7.099 9.57zM411.43 219.24q.37-.12.74-.242c-.502-3.989.067-7.536 1.536-10.88-1.96 2.375-2.76 6.806-2.276 11.122z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M418.3 201.97c-.18 1.423-.365 2.954-1.072 4.319-1.064 2.054-3.684 1.263-6.483-.699-.88-.618-2.23-.761-3.477-.541-1.243.219-2.383.791-2.88 1.613-1.595 2.638-3.511 4.12-5.309 2.613-1.191-1-1.997-2.291-2.751-3.477.482-.21 1.165-.315 2.09-.292 1.191.03 2.382-.188 2.916-1.044.423-.669.107-.972.517-2.924.27-1.286.738-2.308 1.342-3.047.613-.75 1.51-.58 2.334-.735.832-.155 1.588-.65 2.507-.184.918.464 1.846 1.237 2.712 2.337 1.328 1.686 1.163 2.09 1.89 2.577.94.62 2.217.4 3.4-.05.915-.346 1.662-.491 2.264-.466z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m417.68 206.53-.898-.471.06-.12.057-.117.054-.122.054-.124.05-.122.047-.122.045-.124.044-.127.04-.125.04-.13.037-.126.035-.13.034-.129.031-.13.031-.131.029-.131.027-.134.027-.132.026-.133.024-.13.021-.133.023-.137.02-.133.02-.134.021-.134.018-.133.018-.134.018-.136.018-.135.018-.132.016-.134.017-.134 1.003.13-.017.132-.017.136-.018.137-.018.134-.017.136-.018.137-.02.142-.021.14-.02.138-.023.14-.023.14-.024.142-.026.145-.026.14-.029.142-.03.141-.03.143-.034.143-.036.145-.037.141-.04.144-.041.143-.043.142-.047.142-.049.141-.05.144-.056.143-.057.14-.059.137-.063.141-.067.14zm-7.22-.516.577-.837.254.176.255.168.251.161.249.153.247.145.243.137.24.127.235.118.232.108.228.1.223.089.219.08.21.068.206.057.2.048.193.036.184.026.176.014.17.004.159-.006.154-.018.143-.026.132-.036.128-.049.12-.056.114-.067.108-.077.103-.092.1-.103.095-.118.09-.135.084-.15.898.471-.123.218-.137.202-.148.185-.161.169-.173.151-.184.133-.195.115-.202.095-.209.077-.216.06-.22.041-.222.025-.228.011-.232-.006-.234-.02-.236-.032-.24-.045-.241-.058-.245-.067-.248-.081-.25-.091-.252-.101-.254-.11-.255-.12-.26-.13-.26-.138-.263-.147-.264-.155-.265-.163-.266-.17-.27-.178zm-3.102-.458-.174-1.003.125-.02.13-.021.127-.016.125-.013.13-.012.124-.009.13-.007.128-.004.13-.004.127.001.125.004.13.005.127.01.123.008.129.013.124.018.122.018.125.022.12.025.121.027.122.031.118.034.117.036.115.04.114.042.115.048.11.049.107.053.105.055.105.06.104.064.099.066-.578.837-.068-.047-.07-.043-.074-.042-.077-.04-.08-.04-.082-.036-.083-.034-.086-.033-.089-.03-.09-.028-.095-.027-.093-.024-.096-.022-.1-.02-.096-.017-.105-.016-.103-.013-.1-.01-.109-.01-.105-.007-.104-.005h-.108l-.109-.002-.107.001-.109.004-.108.007-.111.007-.108.01-.11.013-.11.013-.107.015zm-2.534 1.376-.864-.53.06-.093.063-.093.07-.092.072-.086.075-.085.078-.082.082-.08.085-.076.086-.074.09-.072.095-.07.092-.064.098-.067.101-.063.102-.06.102-.058.104-.056.111-.055.109-.05.11-.05.114-.048.115-.044.114-.043.12-.041.119-.039.118-.036.122-.034.12-.032.125-.03.123-.027.124-.026.125-.023.174 1.003-.106.02-.107.022-.107.024-.102.026-.106.027-.103.03-.102.03-.1.032-.095.033-.098.036-.096.038-.09.038-.094.042-.09.041-.084.043-.085.046-.083.046-.08.048-.078.047-.072.05-.075.052-.068.05-.064.054-.065.054-.058.053-.057.055-.053.056-.052.056-.045.057-.042.054-.04.059zm-6.065 2.74.647-.782v-.001l.142.113.14.095.138.079.135.065.133.051.128.038.131.026.127.015.129.002.131-.007.132-.018.133-.03.135-.04.14-.053.14-.064.144-.077.148-.089.147-.098.148-.111.15-.124.152-.135.151-.144.152-.156.154-.167.152-.176.15-.184.152-.197.15-.202.148-.214.15-.22.146-.229.146-.236.864.53-.155.252-.16.245-.158.237-.162.231-.165.224-.166.214-.17.208-.17.197-.173.19-.176.18-.177.17-.18.16-.185.15-.186.139-.19.127-.19.116-.196.103-.198.09-.202.077-.207.063-.21.046-.21.03-.212.012-.215-.005-.215-.027-.213-.04-.213-.064-.208-.08-.206-.1-.203-.117-.2-.136zm-2.629-4.336.401.935.226-.743.07.113.07.11.072.111.073.115.072.112.071.111.074.113.072.111.075.11.077.114.074.11.076.111.076.11.08.109.078.11.079.106.082.109.083.107.082.105.085.105.086.104.085.102.089.1.092.102.09.1.092.096.096.097.094.092.1.094.1.093.1.09.104.089-.647.782-.12-.101-.113-.102-.112-.103-.111-.106-.109-.107-.105-.107-.105-.11-.102-.11-.099-.11-.098-.113-.095-.112-.093-.113-.092-.115-.092-.115-.087-.114-.087-.116-.086-.116-.084-.115-.083-.116-.081-.117-.082-.118-.078-.115-.077-.114-.078-.117-.076-.118-.074-.113-.076-.117-.072-.114-.073-.112-.072-.112-.072-.114-.07-.11zm-.225.743-.322-.505.547-.238zm2.529-1.077-.026 1.018h-.08l-.085-.001-.077-.001h-.074l-.08.002h-.071l-.074.004-.072.002-.066.005-.072.005-.068.004-.06.006-.065.006-.065.007-.056.007-.06.008-.063.009-.056.008-.052.009-.053.009-.052.01-.046.011-.05.013-.053.014-.046.012-.046.013-.038.012-.043.015-.043.015-.036.014-.038.015-.037.016-.4-.936.053-.022.057-.023.06-.023.055-.018.06-.022.064-.02.062-.017.06-.017.06-.014.063-.017.07-.016.066-.013.068-.015.073-.012.068-.01.065-.01.072-.01.078-.01.074-.006.074-.008.08-.006.077-.006.074-.005.084-.005.081-.002.081-.004.087-.002.081-.001.089-.001h.09l.085.002zm2.477-.809.852.548.002-.004-.068.103-.07.095-.078.094-.082.089-.086.081-.088.079-.091.07-.093.069-.1.064-.1.059-.1.054-.102.05-.108.047-.107.042-.11.041-.11.034-.11.032-.113.03-.114.027-.113.023-.117.021-.117.017-.115.016-.119.014-.117.01-.117.008-.118.006-.12.005-.119.004-.117.001h-.12l-.119-.004.027-1.017h.313l.102-.001.103-.005.101-.006.1-.007.1-.01.096-.008.098-.013.093-.015.091-.017.09-.018.09-.021.084-.021.084-.025.08-.027.077-.026.074-.03.072-.031.07-.035.066-.035.063-.037.058-.038.057-.042.055-.042.05-.044.048-.046.041-.046.042-.05.04-.054.036-.055zm-.002.004.002-.004-.01.016zm.451-2.759.988.212-.033.17-.032.165-.028.156-.025.144-.02.136-.018.128-.017.124-.013.113-.01.107-.01.103-.008.098-.007.095-.006.088-.005.08-.005.082-.005.08-.006.08-.006.073-.005.074-.008.075-.008.073-.011.078-.014.071-.016.08-.022.078-.022.076-.028.078-.03.077-.037.078-.039.077-.042.077-.047.078-.853-.548.027-.045.025-.043.02-.04.017-.038.014-.036.013-.035.01-.037.01-.036.007-.035.008-.047.007-.044.006-.052.006-.053.005-.06.006-.07.004-.067.005-.076.005-.08.005-.092.008-.095.007-.097.008-.106.009-.115.013-.121.016-.128.016-.133.02-.14.023-.151.028-.159.03-.165.032-.174zm1.446-3.266.78.65v-.002l-.051.064-.049.062-.047.065-.05.072-.049.068-.045.07-.048.074-.046.075-.045.074-.043.077-.045.082-.043.08-.043.084-.04.081-.041.09-.04.086-.038.087-.04.093-.036.093-.036.092-.036.098-.034.096-.034.1-.032.1-.032.104-.031.105-.03.104-.029.107-.027.109-.028.11-.024.112-.026.116-.988-.212.026-.125.028-.124.03-.123.03-.122.034-.12.032-.119.036-.116.034-.114.037-.115.038-.112.04-.113.04-.107.04-.11.045-.104.042-.103.046-.106.046-.1.048-.1.047-.098.05-.097.05-.095.05-.092.053-.094.056-.09.054-.09.055-.084.057-.09.06-.083.056-.08.06-.082.064-.081zm0 0 .355-.436zm2.633-.912.184 1.003v-.001l-.089.016-.086.013-.086.012-.085.01-.086.01-.084.007-.082.007-.079.006-.079.007-.078.006-.07.007-.074.007-.073.008-.07.008-.067.009-.064.009-.065.012-.057.012-.058.015-.06.017-.054.017-.048.018-.051.022-.05.024-.047.024-.043.025-.044.03-.042.031-.04.035-.043.04-.042.043-.04.048-.781-.65.076-.086.078-.082.081-.075.084-.071.087-.065.087-.06.09-.053.09-.048.088-.041.09-.039.096-.035.091-.029.085-.024.091-.022.09-.02.09-.017.085-.014.086-.012.085-.01.082-.009.081-.009.087-.007.078-.006.079-.007.079-.006.075-.007.074-.007.071-.007.07-.008.071-.009.07-.01zm-.001.001.001-.001.604-.113zm2.827-.14-.454.912-.065-.03-.062-.027-.058-.022-.06-.017-.06-.016-.058-.012-.056-.008-.058-.006-.054-.004-.06.001h-.06l-.053.005-.066.007-.062.007-.057.01-.066.013-.068.015-.07.017-.063.016-.068.02-.077.022-.073.02-.072.022-.076.023-.076.023-.079.024-.083.024-.08.02-.081.022-.09.023-.088.02-.089.017-.184-1.003.067-.013.067-.014.066-.016.071-.02.073-.02.07-.019.071-.022.076-.023.076-.022.08-.024.077-.023.077-.022.082-.023.088-.022.084-.02.085-.018.087-.018.095-.017.093-.012.09-.009.102-.007.097-.002.098.001.107.006.101.011.106.016.104.021.105.026.108.033.11.039.107.045.107.052zm-.454.912.305.154zm3.335 1.565-.792.632-.077-.096-.08-.096-.076-.094-.08-.091-.08-.093-.078-.087-.079-.085-.08-.085-.078-.082-.08-.08-.08-.08-.08-.077-.08-.075-.08-.072-.08-.072-.08-.07-.08-.066-.079-.066-.081-.064-.081-.062-.079-.06-.081-.058-.081-.058-.08-.055-.08-.053-.078-.05-.079-.049-.08-.049-.08-.046-.078-.044-.08-.041-.078-.04.454-.913.093.049.093.05.094.052.093.055.092.054.093.058.094.06.092.063.092.062.091.065.09.066.094.069.09.072.091.07.094.077.09.075.091.08.088.08.09.081.09.084.09.087.087.087.09.09.088.091.087.093.089.095.087.098.085.098.087.1.086.104.084.103zm1.77 2.467-.553.852-.004-.001-.078-.054-.075-.057-.074-.059-.065-.056-.063-.059-.062-.063-.057-.063-.053-.063-.049-.063-.048-.064-.045-.066-.044-.068-.04-.065-.041-.066-.043-.072-.038-.068-.043-.073-.043-.075-.046-.077-.048-.083-.049-.082-.056-.09-.058-.095-.062-.097-.068-.103-.074-.11-.08-.116-.085-.122-.093-.128-.101-.136-.108-.143-.117-.15.793-.632.124.159.114.152.107.144.1.138.093.13.088.128.08.118.074.113.07.111.063.101.058.096.057.094.05.085.047.082.043.076.041.07.04.068.034.058.035.056.034.056.03.045.029.042.029.04.03.037.03.036.029.033.03.031.036.033.04.034.038.033.047.032.054.038zm-.553.852-.004-.001-.123-.083zm3.498-.953.356.955-.116.043-.118.043-.12.04-.12.04-.117.035-.123.037-.123.033-.12.031-.12.028-.121.028-.126.024-.122.02-.125.02-.123.014-.122.012-.124.009-.124.005-.123.002-.124-.002-.123-.006-.124-.01-.122-.015-.122-.02-.124-.025-.12-.029-.117-.034-.122-.04-.118-.046-.115-.05-.114-.057-.113-.064-.11-.069.554-.851.07.042.069.04.071.035.074.033.073.028.074.025.08.022.084.022.079.015.086.012.086.012.088.006.09.006h.184l.094-.005.097-.007.098-.009.1-.012.098-.014.103-.018.099-.02.103-.022.106-.026.105-.026.104-.028.101-.03.108-.034.105-.033.104-.036.106-.039.106-.038zm2.944.076-1.003-.13.48.574-.046-.001h-.15l-.055.002-.05.002-.055.004-.054.005-.055.006-.061.007-.058.007-.062.008-.06.008-.057.01-.066.013-.064.012-.063.014-.07.016-.067.014-.067.017-.07.018-.07.02-.07.019-.073.022-.076.023-.074.022-.074.024-.079.028-.079.025-.079.03-.08.028-.08.031-.356-.955.088-.033.09-.032.088-.03.086-.03.083-.029.089-.028.083-.026.081-.025.083-.024.082-.024.082-.022.079-.02.081-.02.079-.019.075-.015.078-.017.078-.015.071-.014.08-.013.075-.011.07-.01.073-.01.068-.007.074-.008.072-.005.07-.006.071-.002.064-.002.07-.002h.132l.068.004.48.574zm-.48-.573.55.022-.07.551z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M391.76 221.18c.775-.942 1.083-.732 1.225-1.324.179-.765-.271-1.963-.854-3.104-2.331-4.57.15-4.185 3.512-2.383.852.457 1.842 1.268 2.824 2.104.991.843 1.975 1.726 2.798 2.317 1.667 1.2 2.696 1.235 3.181 1.72.74 1.857 1.35 3.464 1.606 4.187q0 .003.006.006c.284.724.882 2.329 1.541 4.178-.106.516-1.065.66-1.781 1.979-.704 1.3-1.258 3.658-2.12 4.795-1.264 1.666-2.42 2.658-3.32 2.494-.897-.163-1.537-1.477-1.777-4.381-.094-1.128-.739-2.322-1.483-3.03-.58-.552-.709-.32-2.144-1.128a9.3 9.3 0 0 1-2.345-1.865c-.627-.698-.724-1.478-1.015-2.248-.292-.773-.778-1.533-.703-2.267a3.8 3.8 0 0 1 .85-2.05z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m392.49 219.74.984.233v.004l-.02.071-.02.066-.026.076-.028.065-.027.06-.038.068-.039.057-.036.053-.043.05-.045.05-.046.046-.04.036-.044.035-.041.032-.04.03-.035.027-.041.03-.04.028-.038.027-.036.027-.035.027-.046.038-.043.033-.04.035-.047.043-.048.044-.049.048-.056.056-.056.06-.058.063-.061.07-.066.078-.778-.65.077-.092.076-.087.073-.08.072-.076.066-.066.066-.065.064-.06.06-.053.063-.054.057-.046.048-.037.053-.042.05-.036.043-.033.039-.028.032-.025.035-.024.027-.02.02-.016.018-.016.016-.014.006-.005.006-.006.005-.007.006-.007.005-.007v-.001l.008-.018.008-.017.005-.013.008-.033.01-.035v.004zm.984.233v.004l-.034.142zm-1.796-2.987.9-.467.055.11.055.11.055.113.054.111.051.113.051.11.05.111.05.115.046.112.044.11.045.112.041.11.04.11.04.112.035.11.034.109.033.11.028.106.029.11.024.107.022.106.02.107.016.107.012.104.009.101.007.107.002.106-.002.098-.005.103-.01.103-.015.101-.022.1-.983-.233.009-.047.007-.048.006-.053.002-.058v-.129l-.005-.066-.007-.075-.01-.075-.011-.076-.014-.08-.018-.085-.02-.085-.021-.086-.026-.093-.025-.09-.03-.093-.031-.096-.032-.093-.037-.1-.037-.098-.04-.1-.041-.1-.042-.103-.043-.1-.047-.103-.046-.104-.05-.103-.048-.103-.05-.104-.053-.105-.052-.103zm4.2-3.066-.475.9-.307-.161-.3-.153-.291-.142-.283-.131-.274-.121-.265-.109-.254-.097-.24-.082-.226-.07-.21-.054-.196-.04-.177-.027-.155-.012-.131.002-.107.012-.08.02-.05.022-.038.023-.024.023-.021.033-.023.053-.019.085-.012.115.005.15.023.187.043.219.067.247.09.282.117.31.144.342.171.371.199.402-.9.467-.21-.426-.184-.4-.158-.376-.131-.351-.108-.327-.08-.308-.058-.289-.032-.27-.007-.261.023-.248.055-.236.095-.221.133-.2.17-.167.192-.129.211-.09.219-.055.223-.027.227-.002.234.017.24.036.247.05.258.067.262.082.273.094.28.107.286.118.296.128.302.14.308.15.314.16zm2.912 2.164-.651.78-.092-.079-.091-.077-.092-.077-.092-.077-.092-.077-.09-.076-.092-.076-.09-.074-.089-.072-.09-.075-.091-.073-.088-.071-.088-.067-.09-.071-.089-.07-.086-.067-.086-.064-.088-.066-.085-.064-.084-.06-.084-.061-.085-.06-.081-.057-.081-.054-.083-.056-.08-.051-.078-.05-.08-.05-.074-.046-.078-.043-.076-.045-.072-.038.475-.9.088.048.086.05.087.05.091.056.087.053.089.056.09.059.086.058.091.061.091.062.09.064.09.064.092.067.092.069.088.066.094.07.093.073.09.07.091.07.093.075.094.076.091.073.093.075.095.077.092.077.093.076.093.078.092.077.092.077.094.08.093.079zm2.766 2.292-.587.83-.081-.059-.084-.061-.079-.062-.082-.06-.087-.067-.084-.065-.084-.067-.085-.068-.087-.07-.086-.07-.086-.07-.088-.073-.089-.074-.09-.074-.085-.072-.091-.076-.09-.078-.09-.076-.09-.077-.092-.078-.09-.079-.09-.077-.091-.078-.092-.078-.094-.08-.092-.08-.092-.08-.091-.079-.093-.08-.092-.079-.092-.078-.092-.078.652-.78.094.081.094.08.092.08.093.08.093.079.092.08.092.079.09.078.092.078.09.078.094.08.09.078.089.076.09.077.09.076.085.073.088.074.089.074.084.072.086.071.084.069.086.07.083.07.08.063.083.065.082.065.079.062.075.058.08.06.079.059.074.054zm3.357 1.945-.938.38.113.172-.024-.024-.027-.022-.034-.024-.04-.027-.04-.026-.048-.025-.053-.028-.06-.029-.066-.03-.071-.032-.075-.033-.077-.031-.087-.035-.092-.039-.09-.038-.1-.04-.105-.044-.11-.047-.112-.05-.114-.053-.12-.055-.124-.06-.129-.064-.133-.07-.133-.073-.14-.078-.145-.084-.146-.09-.15-.094-.153-.1-.16-.108-.161-.114.587-.83.147.104.143.097.141.092.136.085.134.082.125.075.124.068.126.068.117.061.114.056.114.056.106.05.107.048.103.047.098.042.097.04.095.04.096.038.087.036.087.035.09.038.085.038.082.035.08.037.08.038.08.042.08.045.078.048.073.048.074.055.075.063.07.065.113.172zm-.114-.172.074.074.04.098zm1.73 4.387-.96.322.004.011-.023-.067-.028-.077-.029-.08-.03-.082-.033-.09-.034-.092-.037-.098-.039-.106-.039-.107-.04-.109-.043-.114-.047-.12-.047-.125-.047-.125-.05-.129-.05-.136-.053-.137-.054-.14-.055-.144-.057-.145-.057-.15-.059-.15-.06-.155-.062-.157-.062-.16-.063-.162-.064-.163-.066-.166-.066-.168-.068-.17-.067-.17-.069-.174.939-.38.069.173.069.173.066.17.068.168.065.169.065.163.063.164.062.16.062.157.06.154.06.154.058.15.058.147.054.146.054.14.053.138.05.133.052.131.048.13.047.123.044.118.045.116.043.116.04.11.038.1.037.099.035.095.033.091.032.089.029.08.028.075.026.072.004.011zm-.004-.01.004.01zm0-.009-.94.376.167.22-.055-.047-.001-.001.358.149h-.001l-.506-.51v-.001l.506.51h-.001l-.506-.51v-.001l.506.51h-.001l-.506-.51v-.001l.148.36h-.001l-.148-.361v-.001l.026.161.96-.322.026.16v.002l-.148-.36h.001l.148.36v.002l-.506-.51.507.51-.506-.509.507.51-.506-.509.359.15h.001l-.055-.047zm-.167-.22.115.087.052.133zm1.733 4.69-.99-.207.019.275-.063-.172-.06-.17-.06-.17-.06-.168-.06-.164-.06-.164-.058-.162-.057-.159-.057-.156-.055-.153-.058-.153-.053-.149-.053-.145-.052-.142-.053-.141-.05-.137-.05-.134-.048-.13-.048-.126-.044-.124-.045-.118-.044-.116-.041-.11-.042-.108-.038-.102-.037-.099-.036-.094-.035-.09-.031-.085-.03-.076-.03-.075-.027-.07.94-.376.028.071.03.075.032.085.033.086.034.09.036.094.039.1.038.103.042.108.043.114.042.115.045.12.047.124.047.127.048.131.05.134.05.137.053.14.052.145.055.148.054.149.055.15.057.155.058.16.057.158.058.162.06.164.06.167.06.167.062.17.06.17.063.175zm-.019-.276.048.135-.029.14zm-1.813 2.394-.888-.488.076-.135.078-.127.079-.123.08-.114.082-.108.081-.101.08-.096.085-.094.08-.084.08-.08.08-.076.08-.07.076-.067.075-.061.074-.06.072-.056.063-.048.061-.047.06-.045.055-.042.048-.038.045-.036.04-.033.034-.03.022-.022.017-.017.017-.02.012-.016v.001-.002.002l-.002.007.99.207-.026.1-.036.095-.043.086-.052.086-.05.066-.05.061-.06.065-.061.057-.057.05-.058.048-.058.046-.059.047-.06.044-.057.044-.06.047-.064.048-.06.046-.06.048-.06.052-.064.054-.06.054-.061.059-.064.062-.062.065-.06.068-.064.074-.062.077-.062.084-.062.088-.06.092-.06.1zm-2.162 4.86-.804-.618.068-.094.068-.103.069-.108.065-.116.07-.124.065-.13.068-.134.066-.142.065-.144.064-.15.065-.155.064-.156.063-.16.063-.162.062-.161.062-.168.064-.167.06-.167.063-.166.06-.168.063-.166.062-.166.063-.164.062-.162.064-.161.063-.159.066-.155.065-.152.067-.149.068-.143.07-.14.07-.138.89.488-.06.114-.06.121-.061.129-.06.132-.06.14-.06.143-.06.149-.061.151-.06.158-.06.159-.06.163-.063.164-.06.166-.063.168-.063.17-.063.167-.062.17-.065.17-.066.167-.065.167-.068.166-.068.164-.07.162-.073.16-.073.155-.076.154-.077.15-.08.145-.081.142-.086.137-.087.13zm-3.811 2.687.179-1.003.044.006.049.002h.054l.053-.005.056-.008.06-.013.067-.02.073-.025.07-.028.077-.036.08-.041.084-.048.084-.052.088-.059.092-.065.092-.07.098-.078.098-.082.096-.086.1-.092.103-.1.105-.104.104-.106.106-.114.11-.12.11-.124.109-.125.11-.134.114-.14.114-.139.113-.145.115-.15.804.618-.122.157-.12.155-.12.152-.12.144-.12.143-.12.14-.118.132-.116.129-.118.126-.118.123-.117.114-.115.112-.117.108-.118.103-.117.097-.112.09-.116.089-.116.082-.114.078-.12.073-.117.065-.114.06-.12.056-.12.048-.119.04-.119.035-.124.028-.125.02-.126.01-.123.002-.125-.007zm-2.192-4.84 1.007-.086v.001l.024.26.025.254.028.242.03.233.03.224.035.213.036.206.037.196.038.186.042.177.043.167.044.16.047.15.046.14.048.13.05.122.051.114.05.103.052.095.051.086.052.077.051.07.05.06.05.052.046.045.047.04.047.032.042.025.043.022.043.018.044.013.042.01-.18 1.002-.125-.028-.118-.038-.12-.047-.114-.057-.111-.067-.104-.075-.1-.08-.1-.093-.091-.1-.086-.105-.082-.11-.08-.12-.075-.127-.07-.131-.07-.14-.063-.145-.062-.153-.06-.16-.056-.168-.054-.174-.051-.183-.048-.19-.047-.198-.043-.205-.041-.213-.039-.223-.037-.23-.033-.239-.032-.246-.028-.258-.027-.262-.024-.275zm-1.326-2.702.695-.74.077.075.079.08.076.084.074.083.073.086.073.088.072.093.068.092.069.096.066.098.064.097.063.103.062.104.059.105.056.103.056.108.055.11.05.11.049.11.049.116.044.115.04.113.04.114.037.115.035.12.03.119.03.115.026.124.022.119.017.121.016.12.012.12-1.008.086-.009-.091-.01-.093-.016-.092-.016-.093-.02-.09-.023-.096-.024-.096-.028-.092-.03-.093-.032-.095-.036-.097-.034-.092-.037-.09-.042-.093-.043-.092-.043-.09-.046-.088-.05-.09-.048-.087-.05-.084-.052-.082-.055-.083-.053-.08-.055-.078-.059-.078-.057-.073-.056-.071-.061-.07-.06-.068-.06-.064-.06-.061-.06-.06zm-2.044-1.053.494-.89.127.07.117.064.112.06.104.054.101.049.092.046.085.04.079.037.076.032.073.033.068.027.062.027.061.023.062.025.06.023.051.021.054.02.057.025.054.023.051.022.055.025.062.03.056.031.052.029.063.037.06.041.05.036.062.045.06.049.06.05.058.052.06.057-.694.74-.047-.042-.041-.038-.04-.033-.032-.027-.031-.023-.038-.027-.029-.019-.025-.015-.034-.02-.033-.017-.026-.013-.036-.015-.042-.02-.041-.018-.043-.017-.052-.02-.056-.022-.054-.023-.06-.023-.068-.027-.072-.03-.078-.032-.08-.034-.086-.038-.093-.043-.099-.046-.101-.05-.106-.054-.116-.06-.12-.063-.128-.069zm-2.473-1.969.75-.683.057.062.055.06.057.06.06.062.06.06.06.062.06.059.063.059.061.057.065.058.067.06.064.057.066.056.068.057.069.057.069.057.07.055.07.054.07.054.073.055.074.053.074.053.074.051.075.052.08.053.075.05.078.049.079.049.079.047.084.05.08.048.081.046-.494.89-.093-.053-.09-.053-.084-.05-.091-.054-.088-.057-.088-.055-.087-.058-.082-.055-.085-.057-.083-.059-.081-.057-.082-.06-.08-.06-.082-.06-.079-.062-.077-.063-.077-.06-.076-.063-.075-.064-.076-.064-.074-.066-.069-.062-.071-.065-.073-.068-.068-.066-.072-.068-.067-.067-.065-.067-.065-.067-.067-.069-.064-.072zm-1.113-2.408.946-.363.028.078.028.076.027.08.025.075.025.076.024.076.023.072.022.072.023.072.024.076.02.069.023.067.022.07.02.066.023.062.025.068.025.067.024.062.025.06.028.064.026.06.028.056.03.061.032.058.033.056.036.06.034.053.039.056.04.055.043.055.044.057.047.053-.75.683-.068-.08-.063-.075-.06-.077-.057-.08-.055-.08-.051-.08-.048-.078-.045-.08-.043-.08-.041-.078-.04-.082-.035-.08-.035-.078-.032-.08-.031-.079-.028-.074-.027-.075-.028-.08-.027-.079-.023-.07-.025-.078-.022-.075-.022-.069-.022-.072-.023-.072-.023-.072-.021-.069-.023-.068-.022-.069-.023-.065-.025-.068zm-.733-2.5 1.006.103v.001l-.004.042v.049l-.001.05.004.048.004.047.007.047.009.06.01.057.012.054.013.053.018.06.018.06.022.063.021.062.023.062.025.063.026.068.028.066.028.068.029.067.03.07.032.071.03.068.033.073.034.076.03.07.033.072.035.08.03.076.03.074.033.078.03.08-.945.362-.024-.065-.027-.066-.03-.073-.028-.067-.028-.065-.032-.071-.031-.074-.031-.068-.033-.071-.033-.075-.031-.072-.034-.072-.03-.076-.034-.076-.03-.075-.03-.075-.03-.078-.03-.08-.027-.078-.026-.08-.025-.081-.023-.08-.022-.086-.02-.088-.015-.082-.014-.08-.012-.09-.008-.093-.004-.091-.001-.087.002-.091.008-.095zm1.006.103v.001l-.01.092zm.347-1.592v-1.02l.39.835-.042.05-.035.046-.04.056-.038.05-.033.05-.036.052-.032.05-.031.054-.033.055-.03.053-.03.054-.028.056-.025.05-.024.055-.027.06-.022.051-.021.057-.022.055-.02.056-.02.06-.017.057-.018.057-.016.059-.015.058-.013.06-.015.057-.009.055-.012.064-.009.06-.008.06-.009.06-.006.06-1.005-.103.008-.08.01-.076.01-.08.014-.076.012-.074.017-.082.017-.077.018-.075.02-.076.02-.076.023-.076.023-.074.026-.074.025-.076.028-.074.03-.073.033-.077.03-.068.033-.072.037-.074.036-.07.037-.071.04-.07.038-.067.043-.07.045-.07.043-.064.047-.071.05-.065.045-.063.052-.07.053-.062.389.835zm0-1.02h1.075l-.686.835zm-.001 0v1.02l-.39-.835zm0 1.02h-1.076l.687-.835z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M406.51 226.13c.07.321.148.636.222.944-1.446.34-2.643.935-3.64 1.752-.996.818-1.795 1.868-2.426 3.128.22-1.395.914-2.643 1.933-3.645 1.017-1.002 2.366-1.764 3.91-2.179zM405.92 224.45q-.21-.466-.432-.932c-1.61-.134-3.165-.545-4.687-1.205-1.508-.656-2.985-1.555-4.446-2.671 1.158 1.298 2.664 2.402 4.319 3.228 1.669.834 3.49 1.385 5.245 1.58z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M391.36 213.8c.993.366 1.66.821 2.802 1.767.87.72 1.344 1.76 1.513 2.947.17 1.193.04 2.545-.293 3.885-.206.831.046 2.248.536 3.644.487 1.388 1.217 2.761 1.956 3.5 2.444 2.45 4.16 5.04 3.477 6.643-.446 1.05-.784 1.322-1.484 1.798-.29-.599-.986-1.135-1.22-2.153-.304-1.312-.792-2.67-1.567-3.486-.6-.639-.732-1.352-2.22-2.28-.964-.602-1.782-.343-2.438-1.149-1.269-1.56-2.933-5.376-1.306-7.117 1.604-1.719 2.178-2.69.824-5.649-.46-1.006-.449-1.74-.581-2.35z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m394.49 215.17-.642.787-.105-.087-.102-.083-.098-.08-.095-.076-.094-.075-.093-.072-.09-.071-.086-.066-.087-.065-.084-.063-.08-.059-.082-.057-.08-.057-.076-.053-.078-.05-.078-.051-.075-.048-.074-.045-.077-.045-.073-.044-.074-.04-.077-.043-.075-.038-.075-.039-.076-.036-.077-.037-.079-.035-.079-.035-.082-.033-.082-.034-.085-.032-.086-.033.346-.957.098.037.097.037.094.039.092.038.093.04.093.042.091.042.088.043.09.046.087.046.086.047.088.048.087.05.085.05.089.055.087.055.085.055.087.058.09.06.085.062.089.062.09.066.091.068.092.07.093.07.094.074.096.074.099.08.1.08.103.083.104.086zm1.693 3.269-1 .144-.016-.1-.018-.102-.02-.102-.018-.097-.023-.098-.023-.097-.026-.094-.027-.097-.029-.094-.029-.09-.033-.09-.034-.09-.034-.086-.036-.084-.04-.087-.04-.084-.043-.083-.043-.08-.046-.079-.047-.078-.05-.077-.05-.075-.052-.072-.055-.07-.056-.072-.057-.068-.06-.066-.063-.067-.066-.066-.063-.06-.068-.061-.07-.06.642-.787.09.077.089.078.087.085.082.083.08.085.08.088.076.09.072.09.07.093.07.096.064.096.063.096.06.1.059.1.055.104.052.103.052.103.047.106.048.108.044.11.04.109.039.11.038.114.034.113.032.11.031.117.028.114.027.117.024.119.021.114.02.12zm-.304 4.08-.98-.246v-.001l.029-.12.027-.122.03-.123.024-.119.025-.12.024-.123.021-.117.02-.12.021-.12.018-.121.017-.122.017-.119.014-.116.013-.117.01-.12.011-.117.008-.115.007-.117.007-.117.005-.112.001-.114.002-.113v-.112l-.002-.112-.002-.111-.005-.111-.006-.11-.007-.107-.009-.107-.01-.104-.012-.106-.015-.105 1-.144.017.12.015.122.013.121.009.124.009.124.006.124.005.122.005.127v.124l.002.126-.002.127-.004.127-.005.13-.007.127-.007.126-.01.13-.012.128-.013.128-.013.131-.016.132-.017.128-.02.129-.02.13-.02.13-.023.13-.023.132-.027.13-.025.13-.03.133-.028.128-.03.13zm-.98-.246v-.001l.048-.195zm1.502 3.597-.952.34-.048-.138-.044-.135-.045-.134-.043-.136-.04-.137-.038-.134-.039-.133-.035-.135-.035-.134-.031-.133-.031-.13-.029-.133-.027-.132-.024-.128-.021-.125-.022-.128-.02-.127-.015-.123-.014-.121-.013-.122-.01-.12-.006-.12-.004-.116-.004-.11v-.114l.004-.114.006-.108.008-.107.013-.105.014-.102.02-.105.022-.098.981.245-.013.06-.012.062-.009.07-.008.074-.006.078-.006.082v.263l.004.095.007.098.007.098.01.102.013.107.015.111.015.108.019.111.021.118.022.114.022.117.027.116.028.123.029.122.032.121.031.123.036.124.036.126.038.125.038.124.042.127.042.128zm1.837 3.31-.714.721-.077-.08-.078-.082-.078-.09-.075-.09-.075-.092-.074-.096-.073-.098-.074-.102-.072-.103-.07-.104-.072-.11-.069-.11-.07-.114-.067-.114-.067-.116-.068-.12-.064-.12-.065-.122-.064-.125-.061-.124-.062-.125-.061-.13-.06-.13-.058-.13-.058-.13-.055-.13-.056-.133-.053-.136-.052-.132-.051-.135-.049-.133-.048-.136.953-.34.045.125.047.126.047.125.049.125.048.122.052.122.052.125.053.122.053.12.055.12.056.116.058.118.058.116.058.113.06.112.059.111.058.106.063.106.06.104.063.1.062.099.062.095.063.093.062.092.062.085.064.086.062.08.063.077.06.074.062.067.06.066zm3.585 7.204-.929-.402.04-.11.032-.114.022-.123.012-.127.002-.137-.006-.144-.018-.153-.027-.16-.038-.164-.05-.172-.059-.179-.072-.185-.08-.19-.09-.194-.1-.198-.11-.202-.12-.205-.128-.21-.138-.213-.146-.214-.154-.218-.162-.219-.17-.22-.176-.223-.184-.224-.19-.225-.196-.226-.203-.227-.206-.225-.214-.226-.218-.228-.223-.226.713-.721.23.233.226.234.224.236.216.237.212.237.206.236.199.237.193.235.186.235.182.236.172.235.166.232.157.234.15.232.143.23.132.228.126.229.113.227.106.225.094.224.084.22.074.22.063.221.05.219.037.215.025.215.011.214-.005.212-.021.21-.037.206-.055.204-.074.196zm-2.402 1.82.907-.447-.736-.198.063-.044.06-.04.057-.041.059-.041.051-.036.048-.036.05-.039.045-.035.046-.037.043-.035.036-.03.041-.04.036-.033.036-.037.037-.037.03-.036.036-.042.035-.042.032-.043.035-.045.032-.047.031-.048.035-.054.036-.062.035-.059.033-.061.035-.069.036-.072.037-.078.038-.08.038-.086.04-.091.928.401-.044.101-.043.098-.043.095-.044.09-.043.086-.043.083-.047.086-.045.078-.043.071-.044.073-.048.073-.049.068-.046.065-.052.066-.049.06-.048.056-.054.06-.052.054-.052.054-.058.053-.05.048-.06.053-.058.047-.055.045-.06.047-.057.043-.062.046-.063.046-.059.04-.064.046-.065.044-.065.045-.737-.198zm.737.199-.481.327-.256-.526zm-1.997-2.46.986-.23.019.078.021.075.022.07.027.072.028.072.027.067.03.066.034.067.032.064.033.06.036.06.038.063.04.061.04.061.037.054.041.057.045.064.043.059.043.057.043.058.044.06.043.056.043.057.046.062.044.06.043.061.044.066.042.063.04.066.039.066.038.067.037.075-.908.447-.02-.038-.024-.044-.026-.044-.029-.045-.03-.048-.032-.047-.035-.049-.037-.053-.039-.052-.043-.055-.042-.059-.045-.059-.045-.06-.048-.065-.045-.064-.046-.061-.05-.069-.05-.075-.049-.074-.046-.073-.048-.077-.048-.082-.047-.086-.045-.086-.043-.089-.041-.09-.042-.097-.037-.097-.035-.098-.035-.108-.029-.107zm-1.441-3.252.735-.7-.002-.002.083.09.08.092.077.096.075.098.074.102.07.102.069.105.065.104.066.11.063.112.063.114.057.114.057.113.056.12.053.118.051.12.05.12.05.123.048.124.044.123.046.124.043.127.04.127.04.126.039.127.037.127.036.13.034.126.034.126.033.128.031.13.03.126-.986.23-.027-.12-.029-.116-.03-.118-.032-.122-.032-.119-.034-.118-.034-.116-.036-.118-.036-.117-.038-.114-.038-.113-.04-.114-.043-.113-.04-.11-.043-.107-.045-.108-.047-.107-.048-.105-.046-.1-.05-.1-.05-.1-.05-.093-.052-.092-.054-.088-.056-.09-.056-.086-.056-.083-.057-.078-.059-.076-.058-.072-.061-.068-.061-.067-.002-.002zm.002.002-.01-.01.007.008zm-2.121-2.198.532-.866.145.091.136.092.129.089.122.09.116.088.111.088.103.086.097.086.094.084.09.086.08.083.077.08.076.084.07.082.065.078.06.074.062.079.057.078.05.068.053.073.049.07.045.067.045.063.043.06.045.064.043.06.043.058.042.056.041.053.043.051.043.05.047.051-.735.7-.064-.07-.062-.07-.057-.07-.056-.07-.052-.07-.05-.066-.047-.068-.046-.064-.048-.067-.046-.069-.046-.063-.044-.064-.045-.062-.048-.067-.045-.061-.048-.061-.053-.065-.054-.066-.054-.063-.057-.062-.065-.068-.067-.068-.068-.065-.075-.07-.082-.07-.086-.073-.092-.073-.1-.076-.103-.076-.112-.077-.12-.08-.127-.081zm-2.563-1.26.783-.646.045.054.047.048.045.043.044.04.045.033.045.033.05.03.05.029.047.024.051.024.055.022.062.024.058.019.064.02.067.021.07.018.075.022.074.02.077.02.08.02.087.023.09.025.086.028.092.028.098.033.094.035.102.04.1.044.098.047.103.052.107.06.104.062-.532.865-.076-.045-.071-.04-.074-.037-.077-.035-.071-.033-.07-.027-.076-.028-.07-.024-.074-.023-.078-.023-.073-.02-.074-.02-.079-.021-.078-.02-.082-.023-.08-.021-.08-.023-.083-.025-.084-.026-.088-.03-.084-.032-.088-.036-.09-.04-.09-.047-.087-.05-.086-.054-.089-.062-.087-.067-.084-.073-.082-.077-.08-.087zm-1.283-7.789.737.698-.11.13-.097.14-.084.15-.072.162-.058.168-.045.182-.036.191-.024.198-.01.208v.218l.01.22.023.229.033.232.043.236.053.239.06.242.07.239.076.24.085.24.09.237.096.234.102.23.105.226.108.219.113.212.114.205.115.198.117.186.114.177.116.166.111.152.111.139-.783.647-.13-.167-.13-.177-.13-.188-.132-.198-.129-.21-.126-.217-.127-.225-.121-.233-.12-.24-.115-.249-.112-.251-.107-.259-.098-.26-.094-.266-.086-.27-.079-.27-.068-.273-.06-.273-.05-.275-.038-.273-.027-.274-.013-.273v-.268l.013-.268.03-.266.048-.259.067-.256.087-.25.108-.24.129-.232.151-.222zm.733-5.087.919-.426.125.28.115.271.102.261.093.253.083.243.072.236.061.231.052.223.04.218.03.21.022.21.008.204-.002.197-.012.195-.023.19-.034.186-.043.182-.054.178-.063.174-.074.172-.08.165-.089.162-.097.16-.102.157-.11.156-.117.155-.121.154-.13.155-.133.155-.139.157-.145.16-.15.16-.737-.697.144-.156.139-.15.129-.147.124-.143.114-.139.108-.134.098-.131.09-.13.085-.128.074-.124.067-.124.061-.121.05-.12.044-.12.037-.123.031-.126.023-.127.015-.132.01-.137v-.144l-.007-.15-.014-.156-.025-.167-.033-.177-.042-.186-.051-.193-.064-.205-.073-.217-.083-.228-.096-.237-.105-.252zm-.122-3.073v1.02l.494-.62.013.064.013.069.01.065.013.062.009.066.01.063.01.064.008.068.01.066.007.057.011.067.01.069.008.06.012.068.012.071.01.065.014.066.013.068.014.067.017.073.017.073.018.067.02.072.023.078.022.075.024.074.027.079.03.08.03.08.032.081.037.083.039.087-.92.426-.045-.101-.042-.1-.041-.101-.036-.096-.036-.095-.032-.095-.031-.094-.028-.092-.025-.085-.025-.09-.022-.09-.02-.082-.019-.08-.019-.085-.015-.08-.016-.08-.013-.077-.012-.071-.012-.072-.012-.076-.009-.066-.01-.065-.011-.074-.007-.063-.009-.057-.009-.061-.008-.06-.009-.057-.009-.057-.008-.053-.01-.047-.011-.052zm-.494.62-.135-.62h.629zm.495.4h-.001v-1.02h.001l.173.032zm0-1.02h.088l.085.032z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M434.07 226.22c-1.277 1.102-1.6.884-1.956 1.549-.453.845-.242 2.129.148 3.334 1.537 4.753-1.361 4.335-4.842 2.517-1.732-.905-3.754-3.217-5.325-4.379-1.578-1.16-2.686-1.15-3.118-1.63a119 119 0 0 1-.938-4.278q-.006.001-.005-.006c-.171-.749-.52-2.43-.89-4.407.216-.59 1.304-.861 2.372-2.46 1.085-1.617 2.166-4.636 3.57-6.105 2.876-3.013 5.765-4.307 5.925 1.479.04 1.402.286 2.82 1.037 3.586.589.603.832.292 2.471 1.102 1.069.527 1.922 1.216 2.534 2.003.615.79.489 1.73.625 2.63.135.898.533 1.765.178 2.644-.351.87-.946 1.698-1.786 2.42z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m432.56 228.01-.89-.483.041-.075.044-.072.045-.068.047-.067.052-.062.049-.056.052-.055.056-.053.054-.046.056-.044.054-.039.054-.038.054-.034.056-.036.055-.032.053-.033.06-.034.053-.03.056-.034.063-.038.064-.038.066-.042.07-.045.072-.047.076-.053.08-.056.087-.063.09-.067.093-.074.104-.082.104-.087.112-.095.657.775-.122.104-.118.097-.111.089-.106.084-.104.077-.098.072-.093.066-.09.06-.086.057-.08.052-.076.047-.07.043-.066.04-.063.037-.065.037-.049.029-.05.03-.045.025-.037.024-.037.024-.031.022-.03.021-.022.018-.023.02-.018.017-.02.019-.022.026-.018.022-.019.027-.022.033-.023.039zm.184 2.934-.962.316-.037-.12-.037-.119-.035-.117-.033-.12-.033-.119-.032-.121-.029-.12-.027-.12-.026-.12-.025-.122-.023-.124-.019-.12-.017-.118-.016-.12-.014-.12-.009-.12-.008-.119-.005-.118-.004-.12.002-.118.004-.114.007-.117.011-.119.016-.113.018-.113.023-.115.028-.109.03-.112.038-.109.04-.107.048-.108.052-.102.89.483-.03.059-.026.058-.024.063-.021.066-.02.069-.019.074-.014.073-.013.08-.01.08-.009.081-.005.086-.004.09v.09l.001.09.005.094.006.098.01.097.01.099.012.1.016.105.017.105.018.102.02.103.024.106.025.11.026.106.028.107.03.109.03.11.033.108.032.11zm-5.556 3.127.466-.904.317.162.312.154.308.143.298.133.294.122.285.111.275.096.264.086.253.07.238.056.226.04.211.027.194.013.175-.004.153-.015.132-.03.117-.038.094-.046.08-.056.068-.064.06-.08.054-.101.048-.128.037-.155.025-.186.007-.22-.01-.252-.03-.285-.054-.317-.076-.35-.1-.38-.127-.414.962-.315.136.447.112.421.086.396.061.37.038.348.015.326-.012.306-.037.29-.066.27-.095.251-.124.23-.156.207-.185.176-.204.143-.224.111-.232.08-.244.052-.251.026-.257.004-.265-.016-.268-.034-.278-.05-.285-.067-.29-.081-.298-.095-.303-.108-.31-.12-.315-.13-.32-.142-.324-.153-.328-.161zm-5.39-4.42.596-.822.001.001.156.118.157.123.161.13.16.134.161.137.164.14.165.148.164.148.166.15.17.153.168.155.169.156.169.156.17.157.171.157.171.157.17.155.17.151.171.152.172.15.17.146.167.142.168.137.167.135.165.128.163.123.16.117.161.11.16.105.153.097.15.088.15.082-.466.904-.178-.096-.179-.105-.178-.112-.175-.116-.178-.123-.179-.129-.178-.134-.177-.139-.176-.141-.178-.147-.177-.15-.176-.15-.175-.155-.175-.154-.177-.158-.173-.158-.173-.159-.173-.157-.17-.16-.17-.155-.169-.154-.166-.153-.164-.15-.164-.148-.162-.146-.158-.14-.156-.135-.154-.133-.15-.125-.147-.118-.146-.115-.14-.106zm.596-.822.001.001-.066-.05zm-3.908-1.102.984-.235-.117-.225.015.015.02.02.025.018.033.022.037.024.04.02.052.027.056.026.062.027.068.027.077.03.082.033.083.031.089.034.095.035.102.04.102.039.11.043.112.047.115.048.12.053.125.058.129.06.131.066.134.069.138.077.141.08.143.086.148.092.15.099.152.105.155.111-.596.823-.139-.1-.134-.092-.132-.087-.129-.08-.127-.076-.124-.071-.12-.065-.118-.061-.115-.06-.112-.052-.11-.05-.106-.047-.108-.046-.1-.042-.1-.038-.098-.04-.094-.035-.091-.034-.093-.034-.09-.036-.086-.033-.083-.032-.085-.035-.084-.036-.082-.038-.079-.039-.085-.047-.077-.048-.074-.05-.079-.062-.07-.062-.07-.071zm.117.225-.087-.096-.03-.129zm-.563-4.11v-1.02l.496.415.015.073.014.076.016.08.018.09.017.09.02.095.022.103.022.107.021.107.025.114.027.122.023.121.028.123.028.132.03.134.029.136.031.14.031.143.031.146.033.148.035.151.036.158.033.156.037.16.037.163.037.163.038.165.038.168.04.17.04.173.041.173.04.175-.983.235-.04-.176-.041-.174-.04-.173-.04-.17-.04-.17-.039-.167-.037-.166-.037-.161-.037-.162-.035-.16-.034-.153-.034-.152-.034-.153-.033-.148-.031-.143-.031-.14-.03-.139-.029-.133-.028-.13-.028-.13-.026-.124-.024-.117-.025-.116-.024-.114-.021-.105-.02-.101-.022-.101-.018-.094-.018-.088-.018-.086-.014-.08-.015-.074zm0-1.02h.418l.078.415zm-.498.62.986-.23.013.115v.002l-.148-.36.001.001-.358-.149h.003v1.02h-.003l-.358-.15h-.001l-.148-.361v-.003zm.986-.23.013.058v.057zm-1.857-4.47.947.354.023-.272.035.184.034.182.035.181.033.178.035.176.034.173.033.171.034.17.032.166.03.162.033.161.031.158.031.154.03.151.03.146.03.144.028.14.029.137.027.133.027.13.026.124.024.12.025.115.024.115.022.104.023.103.021.098.02.095.02.09.016.079.018.075.017.074-.986.228-.017-.073-.018-.08-.019-.087-.019-.09-.02-.092-.022-.098-.022-.105-.023-.11-.024-.111-.025-.118-.026-.123-.026-.126-.027-.13-.027-.13-.029-.14-.028-.142-.03-.145-.03-.15-.03-.151-.03-.154-.032-.158-.032-.161-.034-.165-.032-.166-.033-.17-.034-.173-.033-.173-.035-.178-.034-.18-.034-.18-.035-.183-.034-.184zm-.023.272-.026-.14.049-.132zm2.45-2.84.839.57-.107.156-.108.15-.108.141-.106.134-.106.126-.106.12-.107.116-.103.107-.1.1-.104.099-.098.091-.1.087-.094.08-.088.075-.09.075-.09.068-.08.064-.078.06-.074.06-.07.052-.066.053-.06.047-.05.042-.052.047-.045.04-.033.032-.028.03-.023.03-.02.026-.013.018-.006.013-.006.013-.947-.353.039-.095.049-.093.054-.085.055-.075.06-.072.063-.068.067-.067.065-.059.062-.054.072-.061.072-.057.07-.055.073-.058.074-.056.077-.06.08-.062.076-.06.078-.066.084-.07.085-.07.082-.075.086-.077.085-.082.088-.089.09-.092.09-.096.089-.104.092-.11.092-.114.093-.12.092-.13.094-.136zm3.625-6.174.728.708-.116.127-.12.138-.117.148-.116.153-.116.165-.118.17-.113.175-.114.184-.114.189-.113.193-.113.199-.111.202-.111.205-.109.206-.108.21-.109.212-.107.212-.108.214-.107.212-.107.211-.105.212-.106.21-.104.206-.105.203-.104.202-.105.199-.106.193-.105.188-.105.184-.107.178-.107.172-.108.165-.838-.57.094-.146.097-.155.098-.163.097-.17.1-.178.1-.184.1-.189.101-.195.103-.2.104-.204.104-.205.105-.21.106-.214.108-.214.107-.214.11-.216.11-.214.112-.216.113-.215.116-.213.116-.212.118-.208.12-.205.121-.201.123-.199.128-.196.127-.187.13-.182.135-.179.138-.17.138-.164zm6.794 1.819-1.01.029-.022-.506-.036-.461-.051-.42-.065-.379-.074-.337-.086-.295-.095-.258-.102-.216-.105-.18-.11-.146-.107-.113-.11-.086-.11-.063-.114-.044-.127-.028-.137-.014-.15.007-.165.026-.181.045-.195.068-.205.088-.216.109-.226.131-.235.15-.239.166-.245.187-.25.202-.255.218-.259.233-.26.246-.26.258-.264.272-.728-.708.276-.283.277-.275.277-.26.275-.25.276-.238.275-.221.273-.206.272-.19.271-.174.269-.155.27-.136.268-.114.269-.094.27-.067.268-.042.271-.01.269.024.262.06.256.098.24.139.223.174.203.21.179.24.16.27.14.3.121.33.105.364.088.394.072.427.056.466.04.5zm.893 3.243-.72.715-.086-.09-.08-.097-.075-.095-.074-.102-.069-.106-.064-.106-.061-.108-.059-.114-.052-.115-.052-.115-.048-.118-.045-.121-.04-.122-.04-.124-.037-.125-.033-.128-.031-.127-.03-.128-.028-.133-.023-.13-.023-.13-.022-.137-.018-.134-.017-.134-.015-.138-.013-.134-.012-.135-.01-.138-.009-.136-.007-.138-.005-.137-.005-.135 1.01-.028.005.127.005.128.007.123.008.127.008.122.012.127.01.124.015.119.016.123.015.118.02.117.02.118.022.114.022.11.025.113.026.109.029.105.03.103.032.102.034.098.035.095.036.091.04.09.04.085.042.08.044.08.045.077.046.07.048.066.052.066.05.06.053.055zm0 0 .005.005zm2.333 1.002-.444.914-.145-.068-.134-.065-.128-.057-.122-.053-.113-.048-.107-.043-.099-.037-.095-.035-.087-.031-.085-.028-.079-.025-.079-.024-.071-.023-.07-.02-.071-.021-.063-.018-.065-.02-.066-.019-.062-.02-.068-.022-.068-.027-.065-.026-.066-.03-.066-.031-.072-.039-.068-.042-.067-.044-.07-.052-.065-.053-.062-.054-.067-.061-.064-.065.72-.715.044.044.038.034.04.035.035.03.029.02.03.02.03.018.025.015.035.016.035.016.037.015.039.014.042.015.05.015.053.017.06.017.068.02.065.02.076.021.081.026.081.024.093.03.097.032.104.036.107.04.114.044.12.048.128.053.131.058.142.064.15.07zm2.71 2.146-.795.63v-.001l-.054-.066-.055-.069-.056-.066-.058-.067-.055-.063-.064-.066-.06-.066-.06-.06-.065-.064-.064-.061-.068-.064-.068-.061-.07-.063-.071-.06-.07-.059-.073-.059-.074-.059-.077-.055-.078-.059-.078-.057-.079-.055-.081-.054-.082-.055-.084-.052-.086-.054-.085-.052-.09-.052-.086-.049-.09-.048-.093-.05-.092-.049-.093-.047.444-.914.105.052.106.055.1.053.102.056.101.059.097.056.099.06.096.058.095.062.094.062.091.061.093.065.09.064.086.064.088.067.086.068.083.067.086.07.08.07.08.07.078.07.078.072.076.073.074.074.076.077.07.075.069.074.071.08.066.076.066.078.064.079.064.08zm-.795.63v-.001l.395.509zm1.522 2.24-1 .15v.002l-.014-.093-.012-.092-.009-.092-.009-.089-.008-.092-.006-.09-.007-.085-.006-.084-.007-.085-.006-.086-.007-.081-.007-.085-.007-.078-.008-.077-.008-.08-.009-.073-.012-.077-.011-.074-.014-.069-.014-.067-.018-.07-.018-.068-.019-.064-.022-.066-.024-.063-.025-.06-.029-.061-.03-.06-.034-.058-.037-.059-.04-.058-.041-.056.795-.63.068.092.063.092.058.094.055.095.048.095.045.095.042.099.036.096.032.095.031.098.025.096.023.092.021.097.018.097.015.091.014.092.012.093.01.088.011.092.007.092.007.084.007.09.006.085.007.085.006.084.007.086.006.082.008.078.007.082.01.077.008.078.011.076zm.145 2.91-.936-.384.023-.062.02-.06.017-.058.015-.063.01-.061.01-.06.005-.06.004-.064.001-.066v-.135l-.005-.064-.007-.07-.007-.073-.01-.07-.011-.075-.013-.072-.015-.075-.014-.076-.018-.078-.018-.084-.016-.08-.02-.079-.019-.083-.019-.083-.019-.086-.019-.087-.019-.087-.018-.091-.016-.087-.017-.091-.015-.095 1-.152.012.074.013.077.016.08.016.076.016.08.017.08.02.078.018.083.02.083.018.087.02.086.017.082.018.086.02.09.016.089.016.094.013.087.013.094.009.094.009.092.006.1.004.099v.096l-.004.097-.006.1-.01.105-.015.104-.02.103-.024.103-.029.106-.034.103zm-1.925 2.617-.657-.775.073-.064.074-.066.068-.062.067-.064.068-.066.066-.066.064-.066.062-.067.063-.068.061-.069.059-.067.057-.068.056-.068.054-.068.054-.072.053-.071.05-.069.05-.07.047-.069.044-.07.048-.076.044-.07.041-.07.043-.075.04-.072.036-.07.037-.073.037-.076.035-.072.032-.074.034-.074.03-.073.935.385-.037.09-.038.088-.04.086-.041.09-.042.085-.044.087-.047.09-.049.086-.047.084-.05.087-.054.085-.05.08-.056.087-.058.086-.058.083-.06.083-.06.08-.062.08-.065.083-.066.081-.067.079-.068.079-.07.078-.07.078-.075.079-.074.075-.075.076-.078.076-.078.076-.083.074-.08.071zm-.657-.775",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M417.9 222.59c-.024-.285-.05-.575-.068-.867 3.206-.878 5.693-2.725 7.722-5.435-1.141 2.895-4.208 5.283-7.654 6.302M418.22 224.11c.099.277.193.553.291.825 3.36.064 6.372 1.177 9.19 3.144-2.057-2.342-5.821-3.83-9.481-3.97",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M432.69 233.31c-1.085-.336-2.272-.688-3.364-1.531-1.664-1.287-1.18-3.78.248-6.354.459-.825.513-2.209.275-3.566-.239-1.363-.772-2.7-1.49-3.386-2.345-2.262-3.78-4.757-2.589-6.586.796-1.22 1.882-1.932 2.875-2.603.21.628.35 1.47.38 2.554.036 1.402.28 2.819 1.032 3.586.588.603.832.292 2.47 1.102 1.07.527 1.923 1.216 2.535 2.003.615.79.488 1.73.624 2.63.135.898.534 1.765.178 2.644-.35.868-.945 1.698-1.786 2.42-1.277 1.102-1.6.885-1.956 1.55-.453.845-.24 2.127.148 3.334.296.915.43 1.641.42 2.203",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m429.01 232.18.616-.808.095.072.094.068.095.067.097.063.096.062.1.06.095.059.097.054.1.054.099.053.098.048.102.05.098.048.1.044.102.043.102.045.1.04.102.04.1.039.1.036.105.038.104.036.102.036.102.034.102.034.103.033.103.033.101.031.1.033.105.03.104.033.1.032-.295.974-.103-.032-.102-.032-.102-.031-.108-.033-.106-.034-.105-.034-.107-.034-.108-.036-.108-.036-.11-.038-.109-.039-.109-.038-.11-.041-.114-.044-.11-.043-.114-.047-.111-.047-.11-.048-.116-.052-.115-.054-.11-.053-.114-.058-.113-.06-.113-.061-.113-.064-.115-.067-.11-.069-.112-.07-.113-.076-.112-.079-.112-.08zm.115-7.007.883.498-.128.234-.12.232-.116.23-.109.23-.101.228-.097.225-.088.223-.084.22-.074.216-.066.215-.06.21-.052.207-.044.203-.036.198-.027.194-.02.188-.011.183-.002.178.005.17.014.168.021.161.03.153.038.146.047.142.056.137.063.132.07.123.082.12.093.116.1.11.111.107.123.102-.616.808-.175-.145-.165-.157-.15-.166-.133-.17-.124-.181-.109-.189-.094-.193-.08-.2-.068-.204-.055-.21-.042-.215-.028-.217-.02-.217-.006-.224.005-.224.013-.228.025-.231.032-.23.043-.237.051-.234.059-.238.068-.24.075-.239.084-.244.09-.244.098-.243.104-.247.111-.245.118-.249.123-.249.13-.249zm.218-3.227.996-.178.022.135.02.134.02.131.016.135.016.134.014.134.011.135.009.133.007.13.005.132.005.131.001.131-.001.128-.004.129-.005.126-.006.126-.01.128-.013.119-.013.122-.016.123-.018.118-.022.119-.025.117-.026.115-.03.11-.03.108-.036.112-.039.107-.04.102-.045.102-.048.1-.05.097-.884-.498.032-.06.031-.065.03-.068.028-.073.028-.076.025-.076.024-.084.022-.088.022-.087.018-.09.016-.092.016-.099.014-.098.011-.101.01-.107.007-.104.006-.107.005-.11.001-.111.001-.113v-.112l-.003-.117-.005-.115-.007-.118-.007-.12-.01-.115-.012-.119-.014-.12-.016-.12-.017-.122-.018-.121-.02-.12zm-1.342-3.108.7-.736-.001-.001.079.078.077.083.077.087.074.089.072.092.068.095.066.096.065.1.064.105.062.104.06.106.059.112.056.11.057.115.054.119.049.114.052.122.048.121.045.12.047.127.043.126.042.125.04.13.038.131.036.129.035.128.034.134.033.136.028.13.029.133.026.136.024.134-.996.178-.021-.122-.024-.119-.026-.123-.027-.121-.027-.117-.03-.116-.032-.12-.034-.119-.033-.114-.036-.113-.037-.113-.038-.112-.04-.107-.042-.11-.04-.105-.044-.102-.046-.105-.045-.097-.045-.095-.049-.097-.049-.09-.05-.089-.05-.088-.05-.08-.053-.078-.052-.077-.054-.074-.053-.068-.052-.065-.053-.06-.053-.057-.055-.054zm.001 0 .007.008zm-2.663-7.234.845.56-.084.141-.072.142-.06.144-.047.148-.036.152-.027.153-.014.157-.004.163.006.167.017.17.027.172.04.18.05.185.06.185.071.191.08.193.092.196.102.2.11.2.121.203.13.205.139.206.148.208.156.208.164.208.173.209.178.21.186.209.194.209.2.209.205.208.211.207-.7.736-.222-.219-.218-.22-.21-.221-.205-.222-.2-.223-.193-.226-.185-.224-.178-.227-.17-.228-.163-.227-.155-.23-.144-.228-.138-.23-.127-.23-.116-.23-.109-.23-.096-.231-.086-.232-.074-.231-.062-.231-.052-.232-.037-.233-.023-.233-.008-.23.006-.229.021-.23.038-.227.055-.224.072-.22.088-.219.108-.211.123-.205zm3.776-2.487-.957.327.76.26-.094.062-.093.064-.092.062-.093.064-.096.065-.095.065-.091.062-.09.065-.095.069-.093.066-.09.066-.092.07-.09.07-.089.068-.088.072-.088.073-.086.074-.089.077-.084.076-.084.078-.086.082-.081.08-.079.08-.08.087-.08.09-.079.088-.076.093-.075.091-.072.095-.074.101-.072.101-.068.104-.845-.56.083-.123.083-.118.084-.116.088-.114.087-.11.091-.108.09-.103.092-.101.09-.099.096-.1.098-.094.093-.09.095-.09.1-.087.095-.085.098-.083.098-.08.098-.08.1-.078.098-.074.099-.075.099-.073.098-.071.096-.069.098-.07.1-.07.096-.064.093-.065.096-.066.096-.065.096-.064.092-.062zm-.76-.26.549-.37.21.63zm1.166 2.964-1.01.027-.004-.096-.004-.1-.004-.094-.005-.09-.006-.091-.006-.09-.006-.09-.007-.086-.008-.085-.008-.09-.007-.081-.01-.08-.008-.08-.01-.076-.012-.076-.011-.08-.011-.074-.012-.072-.013-.072-.013-.069-.013-.067-.015-.067-.015-.069-.013-.064-.016-.062-.015-.061-.016-.06-.018-.062-.015-.055-.017-.055-.018-.058-.017-.052.958-.327.021.068.02.063.022.07.02.07.018.068.02.072.019.074.018.074.017.076.016.073.017.077.015.08.016.08.013.082.014.082.013.085.012.08.013.086.011.09.012.088.009.094.009.091.008.09.008.092.007.096.008.096.006.098.006.098.005.105.004.1.004.1zm.888 3.243-.721.714-.085-.09-.081-.096-.076-.096-.072-.103-.068-.103-.065-.106-.063-.112-.056-.112-.054-.114-.05-.115-.049-.12-.044-.122-.04-.12-.04-.122-.037-.126-.033-.129-.033-.128-.027-.13-.026-.127-.027-.133-.021-.136-.02-.13-.02-.136-.016-.135-.015-.133-.014-.136-.01-.138-.011-.137-.007-.136-.007-.134-.006-.14-.004-.135 1.01-.027.003.127.006.125.007.128.007.127.008.122.011.124.012.122.014.124.015.12.016.119.018.12.02.114.021.112.024.116.025.112.025.107.028.104.03.102.033.103.033.1.035.092.037.093.038.089.042.085.041.083.042.076.045.074.05.075.047.066.05.065.05.06zm2.332 1.002-.444.914-.144-.069-.135-.065-.128-.056-.122-.053-.113-.048-.106-.044-.1-.037-.095-.035-.087-.031-.085-.028-.078-.025-.08-.024-.07-.023-.07-.02-.072-.02-.063-.019-.064-.02-.066-.018-.062-.021-.068-.022-.068-.026-.066-.027-.065-.03-.066-.03-.073-.04-.068-.041-.067-.045-.069-.052-.065-.053-.063-.054-.066-.061-.065-.065.721-.714.043.043.038.035.041.035.035.029.028.02.031.02.03.019.025.014.035.017.034.016.037.014.04.015.042.014.05.016.053.017.06.016.068.02.065.02.076.022.081.025.081.024.093.03.097.033.104.036.107.04.114.044.12.048.128.053.131.058.142.063.15.07zm2.71 2.145-.795.63-.054-.067-.055-.068-.056-.067-.058-.067-.055-.062-.063-.067-.061-.066-.06-.06-.064-.063-.065-.062-.068-.063-.068-.062-.07-.062-.07-.06-.07-.06-.074-.058-.074-.06-.076-.055-.079-.059-.078-.056-.079-.055-.08-.055-.083-.055-.084-.052-.085-.054-.085-.051-.09-.052-.087-.05-.09-.047-.093-.051-.092-.048-.093-.047.444-.914.105.052.107.055.1.053.101.055.102.06.097.056.099.059.095.059.096.061.094.063.09.06.094.066.09.063.085.064.088.067.086.069.084.066.086.071.08.07.08.07.077.07.078.071.076.074.074.073.077.077.07.076.068.073.072.08.065.077.066.078.065.078.063.08zm-.795.63.395.508zm1.522 2.24-1 .151v.001l-.013-.093-.012-.092-.01-.091-.008-.09-.008-.092-.006-.089-.007-.085-.006-.085-.007-.085-.006-.085-.007-.082-.007-.084-.007-.079-.008-.077-.008-.08-.01-.072-.011-.077-.012-.075-.013-.068-.015-.068-.017-.07-.018-.068-.02-.064-.022-.066-.024-.062-.025-.06-.028-.062-.031-.059-.034-.059-.037-.059-.04-.057-.04-.057.794-.63.068.092.063.092.059.095.055.095.047.095.046.095.042.098.035.097.033.095.03.097.026.096.022.093.022.096.018.097.014.092.014.091.012.094.01.088.012.091.007.093.007.084.007.089.006.085.007.086.006.084.007.085.006.082.008.078.007.082.009.077.009.078.01.076zm.146 2.911-.936-.385.022-.062.02-.06.018-.058.014-.063.01-.06.01-.06.006-.061.004-.064v-.201l-.004-.063-.007-.071-.007-.072-.011-.07-.01-.076-.014-.072-.014-.075-.015-.075-.017-.079-.018-.084-.017-.08-.02-.079-.018-.083-.02-.083-.018-.086-.02-.087-.019-.086-.018-.092-.015-.086-.018-.092-.014-.095 1-.151.012.073.013.077.016.08.015.076.017.08.017.08.019.079.019.083.019.083.019.086.019.087.018.082.018.085.019.09.017.09.015.093.013.088.013.094.01.093.008.093.006.1.004.098v.096l-.004.098-.006.1-.01.104-.015.105-.02.102-.024.103-.028.106-.035.104-.04.103zm-1.926 2.616-.656-.775.073-.063.074-.066.068-.063.066-.064.068-.066.065-.065.064-.067.066-.068.062-.068.06-.067.057-.066.057-.07.059-.07.054-.067.052-.07.054-.07.049-.07.05-.072.048-.07.045-.069.047-.074.043-.07.041-.072.043-.075.038-.07.039-.071.038-.075.036-.073.034-.073.032-.074.034-.073.03-.074.936.385-.037.09-.038.088-.04.087-.042.089-.043.087-.043.085-.045.089-.05.089-.048.081-.049.087-.055.087-.051.081-.055.086-.057.084-.057.08-.061.086-.061.082-.062.08-.066.083-.063.078-.067.08-.07.08-.07.08-.073.077-.07.076-.074.077-.076.077-.078.076-.079.075-.082.075-.081.071-.083.073zm-1.839 1.403-.89-.483.041-.075.044-.072.044-.067.048-.067.051-.063.05-.055.052-.056.056-.053.054-.045.056-.045.053-.038.055-.039.054-.033.056-.036.055-.033.052-.032.061-.034.053-.03.056-.035.063-.037.064-.039.066-.042.07-.044.072-.047.076-.053.08-.057.087-.062.09-.068.094-.074.103-.082.104-.087.112-.095.657.775-.122.105-.118.096-.11.089-.107.084-.104.077-.098.072-.093.066-.09.06-.085.057-.08.052-.077.047-.07.043-.066.04-.063.037-.065.037-.049.029-.05.03-.045.025-.037.024-.037.024-.031.022-.03.022-.023.018-.022.02-.018.016-.02.02-.022.026-.018.022-.019.026-.022.034-.023.038-.025.046zm.184 2.935-.963.315-.036-.12-.037-.118-.035-.118-.034-.12-.032-.118-.032-.122-.029-.121-.028-.12-.025-.122-.024-.12-.022-.12-.02-.12-.018-.12-.017-.121-.013-.12-.009-.12-.008-.119-.005-.119-.004-.119.002-.118.004-.115.007-.117.01-.117.016-.114.018-.113.024-.114.028-.11.03-.112.037-.109.041-.107.048-.108.051-.102.89.483-.03.06-.025.057-.024.064-.023.067-.019.066-.018.075-.014.073-.013.08-.011.081-.008.08-.005.085-.004.092v.089l.001.09.005.095.006.096.009.098.01.1.013.1.015.102.018.104.02.104.02.106.023.107.024.106.026.107.028.107.03.11.03.109.033.108.032.11.035.107zm-.209 2.848.296-.974-.654.477v-.091l-.001-.05v-.047l-.004-.045-.002-.054-.005-.055-.005-.05-.006-.053-.007-.063-.006-.054-.008-.055-.01-.063-.008-.059-.01-.06-.013-.065-.013-.066-.012-.063-.015-.069-.014-.066-.017-.067-.018-.076-.017-.07-.018-.07-.019-.073-.021-.074-.024-.081-.02-.076-.024-.077-.025-.082-.025-.08-.027-.082.963-.315.028.087.028.09.025.084.026.086.025.085.021.08.024.083.022.083.022.082.02.082.017.073.02.08.016.078.016.073.017.078.013.071.013.072.014.075.012.073.009.067.01.073.009.07.007.063.008.07.005.07.005.063.005.061.004.068.002.067v.183zm.654-.478-.013.676-.641-.198zm-.506-.009-.148.487zm.506.01-.013.675-.641-.198z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M410.55 216.45c4.026-.198 7.914 3.324 8.486 7.634.57 4.31-2.244 7.656-6.103 7.702-3.86.046-7.446-3.113-8.183-7.273s1.774-7.865 5.8-8.063",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m419.54 224.02-1.003.135-.06-.377-.076-.374-.095-.367-.111-.363-.127-.356-.143-.349-.158-.341-.173-.334-.186-.328-.202-.317-.212-.31-.225-.296-.238-.288-.249-.277-.26-.266-.269-.254-.278-.24-.286-.227-.296-.214-.303-.2-.312-.184-.316-.171-.321-.153-.329-.14-.331-.12-.335-.104-.341-.087-.342-.07-.343-.049-.346-.031-.348-.012-.348.006-.05-1.018.405-.008.403.015.4.036.4.059.393.08.39.098.384.119.377.14.371.156.367.174.357.192.347.207.341.224.332.24.322.256.312.269.3.283.289.294.276.31.265.32.251.334.239.342.223.356.208.363.194.376.177.382.16.392.143.4.126.406.105.415.088.42zm-6.599 8.279-.012-1.02.33-.013.327-.03.319-.046.31-.065.302-.08.295-.094.287-.112.279-.126.27-.14.26-.154.25-.168.241-.182.23-.194.22-.207.21-.22.196-.231.186-.244.175-.255.16-.265.149-.277.135-.286.12-.297.108-.307.092-.315.077-.324.063-.332.045-.342.029-.349.011-.358-.004-.363-.022-.37-.042-.378 1.003-.135.046.426.025.418.006.414-.014.406-.034.4-.052.392-.072.385-.09.373-.105.365-.125.357-.142.345-.156.335-.174.325-.19.312-.203.298-.22.288-.232.274-.248.259-.26.245-.273.23-.287.216-.296.2-.309.183-.319.166-.328.148-.34.13-.347.115-.357.094-.366.074-.373.055-.379.035zm-8.686-7.693.995-.18.073.365.088.358.104.354.117.346.131.338.146.333.159.324.17.317.183.306.196.3.206.29.217.278.228.27.237.258.247.248.256.236.263.226.273.211.28.2.285.188.295.173.299.16.304.145.312.133.315.117.318.101.324.088.325.071.33.054.33.039.334.022.334.004.012 1.02-.387-.006-.384-.025-.38-.043-.378-.064-.375-.08-.369-.1-.364-.116-.358-.135-.352-.149-.345-.166-.339-.18-.33-.197-.324-.21-.314-.226-.306-.238-.297-.252-.286-.265-.276-.277-.266-.29-.255-.3-.242-.313-.23-.323-.218-.333-.206-.344-.19-.354-.178-.362-.162-.372-.148-.378-.131-.39-.116-.395-.098-.401zm6.273-8.662.05 1.018-.345.026-.337.045-.324.063-.318.08-.307.096-.296.114-.286.128-.276.144-.266.159-.256.17-.243.186-.232.2-.222.212-.21.225-.196.236-.186.248-.172.26-.16.269-.148.279-.132.288-.118.297-.105.31-.091.315-.075.32-.061.33-.045.337-.028.342-.012.348.004.353.021.357.039.362.056.364-.996.18-.063-.412-.043-.41-.024-.405-.006-.4.014-.398.034-.392.051-.385.068-.38.087-.371.105-.363.122-.355.137-.348.157-.336.17-.328.188-.315.203-.303.217-.293.234-.28.248-.265.26-.25.278-.237.29-.221.302-.205.316-.187.328-.171.34-.152.35-.133.362-.114.372-.095.385-.074.391-.052z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M410.89 218.57c2.945-.129 5.77 2.422 6.202 5.574.435 3.152-1.586 5.648-4.458 5.696-2.834.05-5.52-2.338-6.039-5.377-.533-3.106 1.351-5.764 4.295-5.893",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m417.59 224.07-1.003.14-.043-.27-.056-.267-.068-.262-.08-.257-.093-.254-.102-.25-.114-.244-.123-.24-.134-.232-.143-.227-.153-.22-.16-.213-.171-.205-.177-.197-.186-.19-.192-.18-.199-.171-.204-.162-.211-.152-.217-.143-.22-.131-.226-.12-.231-.112-.23-.098-.237-.085-.241-.077-.239-.061-.243-.05-.245-.036-.247-.022-.247-.011-.247.004-.043-1.018.304-.006.302.014.3.027.297.046.294.059.291.076.286.089.282.102.278.119.27.129.266.142.26.155.254.167.247.178.24.189.231.2.223.211.215.219.206.228.197.239.187.247.177.255.167.264.155.27.144.278.133.285.12.291.107.297.094.303.08.31.065.313zm-4.951 6.275-.017-1.02.239-.01.235-.022.229-.036.222-.046.216-.059.211-.07.206-.08.197-.09.192-.102.185-.112.175-.12.171-.132.164-.14.154-.147.146-.158.14-.167.13-.174.122-.183.113-.191.105-.197.093-.205.085-.213.073-.219.065-.227.053-.232.042-.237.03-.245.02-.25.006-.254-.005-.261-.018-.267-.031-.27 1.003-.14.036.318.02.313.007.31-.008.303-.024.301-.036.294-.051.29-.066.282-.076.275-.092.27-.104.26-.117.256-.129.245-.14.237-.152.229-.164.217-.173.208-.185.199-.197.189-.204.175-.213.165-.226.154-.233.138-.24.129-.25.114-.257.102-.264.087-.27.073-.278.058-.284.043-.288.029zm-6.545-5.8.995-.173.052.26.06.257.074.251.084.25.094.243.104.24.113.234.125.229.13.221.143.217.15.211.156.201.166.196.171.19.18.18.186.171.192.164.2.156.201.146.208.136.212.127.216.117.221.106.224.096.227.085.23.075.232.061.234.052.233.038.237.027.24.015.238.001.017 1.02-.292-.004-.288-.018-.288-.031-.288-.048-.282-.062-.278-.075-.277-.09-.27-.102-.264-.113-.262-.125-.256-.138-.251-.15-.244-.16-.237-.171-.23-.18-.224-.19-.216-.201-.209-.21-.2-.22-.193-.227-.182-.237-.173-.243-.164-.25-.155-.26-.143-.267-.133-.27-.123-.28-.108-.287-.098-.288-.086-.297-.073-.302zm4.771-6.488.043 1.017-.246.018-.238.03-.231.042-.226.056-.217.067-.211.078-.205.088-.195.1-.19.11-.182.118-.174.131-.167.139-.157.147-.15.157-.143.167-.131.172-.126.184-.115.189-.105.197-.097.206-.086.21-.076.219-.067.224-.055.23-.044.236-.034.24-.021.247-.011.25v.256l.015.26.027.263.039.267-.996.173-.046-.313-.031-.311-.017-.306-.004-.305.013-.301.027-.295.04-.29.054-.286.067-.28.08-.274.094-.267.107-.261.118-.251.132-.246.144-.237.154-.227.167-.218.178-.208.189-.197.2-.189.21-.174.22-.163.23-.152.24-.139.247-.126.257-.112.264-.097.274-.084.281-.068.286-.054.295-.037z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M411.22 220.72c1.842-.068 3.603 1.514 3.888 3.489s-.986 3.568-2.789 3.607c-1.803.037-3.5-1.464-3.822-3.406-.32-1.944.882-3.62 2.723-3.689z",style:{fill:"#0c4076"}}),(0,h.jsx)("path",{d:"m415.6 224.13-1 .147-.028-.16-.034-.159-.042-.155-.048-.154-.055-.152-.062-.146-.068-.147-.074-.142-.08-.138-.087-.135-.09-.131-.097-.126-.1-.122-.107-.116-.11-.114-.117-.109-.115-.1-.123-.096-.126-.091-.127-.083-.13-.08-.135-.07-.136-.067-.137-.057-.138-.051-.142-.045-.142-.036-.143-.03-.144-.023-.142-.013-.145-.006h-.145l-.038-1.017.2-.002.198.008.199.02.196.03.193.04.19.05.187.06.184.066.184.078.177.085.173.093.17.1.166.11.16.116.155.122.152.131.144.136.14.142.135.148.129.155.123.163.114.164.11.171.1.177.096.18.087.186.08.19.07.195.063.197.053.2.045.205zm-3.278 4.19-.021-1.02.14-.006.138-.014.131-.02.13-.03.127-.034.121-.042.119-.047.114-.055.11-.059.109-.066.102-.072.098-.076.093-.083.092-.089.086-.092.08-.098.075-.102.072-.107.066-.112.06-.118.054-.121.05-.124.042-.131.038-.134.031-.137.024-.14.017-.142.01-.15.005-.151-.004-.154-.012-.156-.02-.162 1-.146.027.207.015.206.006.205-.006.2-.013.197-.024.196-.034.192-.043.188-.05.181-.06.18-.068.174-.076.17-.086.163-.092.158-.1.155-.109.145-.115.141-.125.134-.127.125-.136.119-.144.112-.15.103-.154.095-.16.088-.167.078-.17.069-.177.058-.18.05-.185.04-.188.03-.191.02zm-4.332-3.832.998-.168.03.158.037.157.043.153.05.151.055.147.063.144.068.142.073.137.08.134.086.132.09.127.094.122.099.118.102.113.109.108.112.105.115.097.12.094.12.087.126.081.128.076.129.069.134.065.132.056.136.05.137.044.136.036.144.03.14.023.14.015.143.008h.141l.022 1.02-.196-.002-.193-.01-.194-.021-.19-.033-.186-.04-.188-.047-.183-.06-.179-.066-.178-.075-.172-.082-.17-.09-.165-.1-.16-.103-.159-.114-.153-.12-.148-.126-.14-.131-.138-.137-.133-.147-.126-.15-.12-.155-.114-.16-.107-.166-.102-.172-.094-.176-.087-.18-.08-.186-.072-.19-.064-.192-.055-.198-.047-.199zm2.716-3.772h1.012l-.487.508-.143.01-.137.016-.137.026-.13.03-.126.038-.123.044-.12.052-.112.057-.11.062-.106.071-.101.074-.097.08-.093.087-.087.091-.085.096-.078.1-.072.106-.068.112-.063.114-.058.122-.053.123-.045.125-.04.133-.034.137-.027.138-.02.14-.014.145-.008.152v.149l.007.153.014.155.023.157-.998.169-.03-.206-.019-.203-.009-.203.002-.2.008-.195.018-.195.03-.193.037-.19.046-.182.054-.18.064-.178.072-.172.08-.168.088-.162.097-.155.104-.152.113-.145.118-.137.128-.133.134-.122.14-.117.146-.11.154-.1.16-.093.167-.083.172-.073.176-.064.182-.055.187-.045.188-.034.197-.024.198-.012zm1.012 0v.49l-.487.018zm0-.001h-1.012l.487-.509zm-1.012 0v-.491l.487-.018z",style:{fill:"#21231e"}})]}),(0,h.jsx)("path",{d:"M482.14 182.98c3.769 0 6.822 3.076 6.822 6.873s-3.053 6.873-6.822 6.873c-3.767 0-6.822-3.076-6.822-6.873 0-3.796 3.055-6.873 6.822-6.873",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M489.47 189.85h-1.012c.028-2.34-1.36-4.624-3.453-5.673a6.26 6.26 0 0 0-2.863-.69v-1.02c2.501-.021 4.943 1.36 6.233 3.5a7.44 7.44 0 0 1 1.095 3.883m-7.328 7.383v-1.02c2.323.028 4.573-1.368 5.611-3.44.466-.899.705-1.911.704-2.923h1.013c.023 2.598-1.439 5.147-3.708 6.418a7.3 7.3 0 0 1-3.62.965m-7.328-7.383h1.012c-.027 2.34 1.36 4.625 3.454 5.673.88.455 1.871.69 2.862.69v1.02c-2.487.021-4.916-1.345-6.21-3.465a7.44 7.44 0 0 1-1.118-3.918m7.328-7.383v1.02c-2.337-.028-4.6 1.386-5.63 3.478a6.4 6.4 0 0 0-.686 2.885h-1.012c-.02-2.508 1.336-4.97 3.475-6.28a7.3 7.3 0 0 1 3.853-1.103z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 171.07c3.769 0 6.822 3.078 6.822 6.873 0 3.797-3.053 6.873-6.822 6.873-3.767 0-6.822-3.076-6.822-6.873 0-3.796 3.055-6.873 6.822-6.873",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M489.47 177.94h-1.012c.028-2.368-1.394-4.677-3.527-5.71a6.3 6.3 0 0 0-2.789-.653v-1.02c2.488-.021 4.917 1.344 6.21 3.466a7.4 7.4 0 0 1 1.118 3.917m-7.328 7.383v-1.02c2.323.028 4.573-1.368 5.611-3.44.466-.899.705-1.911.704-2.922h1.013c.023 2.597-1.439 5.146-3.708 6.417a7.3 7.3 0 0 1-3.62.965m-7.328-7.383h1.012c-.027 2.34 1.36 4.625 3.454 5.673.88.455 1.871.69 2.862.69v1.02c-2.487.021-4.916-1.345-6.21-3.464a7.44 7.44 0 0 1-1.118-3.919m7.328-7.383v1.02c-2.337-.028-4.6 1.386-5.63 3.478a6.4 6.4 0 0 0-.686 2.885h-1.012c-.02-2.508 1.336-4.97 3.475-6.28a7.3 7.3 0 0 1 3.853-1.103z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 159.61c3.769 0 6.822 3.078 6.822 6.873s-3.053 6.873-6.822 6.873c-3.767 0-6.822-3.077-6.822-6.873 0-3.795 3.055-6.873 6.822-6.873",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M489.47 166.49h-1.012c.028-2.368-1.394-4.677-3.527-5.71a6.3 6.3 0 0 0-2.789-.653v-1.02c2.487-.021 4.917 1.344 6.21 3.466a7.4 7.4 0 0 1 1.118 3.917m-7.328 7.383v-1.02c2.323.027 4.575-1.367 5.611-3.442.466-.898.705-1.91.704-2.92h1.013c.021 2.507-1.337 4.967-3.474 6.28a7.3 7.3 0 0 1-3.854 1.102m-7.328-7.383h1.012c-.028 2.369 1.395 4.677 3.527 5.71a6.26 6.26 0 0 0 2.789.653v1.02c-2.502.021-4.943-1.361-6.233-3.5a7.44 7.44 0 0 1-1.095-3.883m7.328-7.383v1.02c-2.337-.028-4.6 1.386-5.63 3.478a6.4 6.4 0 0 0-.686 2.885h-1.012c-.02-2.508 1.336-4.97 3.475-6.28a7.3 7.3 0 0 1 3.853-1.103z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 127.08c3.769 0 6.822 3.078 6.822 6.873 0 3.797-3.053 6.875-6.822 6.875-3.767 0-6.822-3.078-6.822-6.875 0-3.795 3.055-6.873 6.822-6.873",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M489.47 133.95h-1.012c.028-2.368-1.394-4.677-3.527-5.71a6.3 6.3 0 0 0-2.789-.653v-1.02c2.488-.021 4.917 1.344 6.21 3.466a7.4 7.4 0 0 1 1.118 3.917m-7.328 7.384v-1.02c2.323.028 4.573-1.368 5.61-3.44a6.4 6.4 0 0 0 .705-2.924h1.012c.024 2.585-1.422 5.12-3.67 6.399a7.3 7.3 0 0 1-3.657.985m-7.328-7.384h1.012c-.027 2.355 1.377 4.652 3.49 5.692a6.25 6.25 0 0 0 2.826.672v1.02c-2.473.02-4.89-1.33-6.188-3.43a7.43 7.43 0 0 1-1.14-3.954zm7.328-7.383v1.02c-2.337-.027-4.6 1.386-5.63 3.478a6.4 6.4 0 0 0-.686 2.885h-1.012c-.02-2.507 1.336-4.97 3.475-6.28a7.3 7.3 0 0 1 3.853-1.103",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 137.16c3.769 0 6.822 3.076 6.822 6.872 0 3.797-3.053 6.874-6.822 6.874-3.767 0-6.822-3.077-6.822-6.874s3.055-6.872 6.822-6.872",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M489.47 144.03h-1.012c.028-2.355-1.378-4.65-3.49-5.69a6.3 6.3 0 0 0-2.826-.672v-1.02c2.565-.023 5.066 1.433 6.329 3.662a7.4 7.4 0 0 1 .999 3.72m-7.328 7.384v-1.02c2.323.027 4.573-1.368 5.61-3.44a6.4 6.4 0 0 0 .705-2.924h1.012c.024 2.585-1.422 5.12-3.67 6.399a7.3 7.3 0 0 1-3.657.985m-7.328-7.384h1.012c-.027 2.355 1.377 4.652 3.49 5.692a6.25 6.25 0 0 0 2.826.672v1.02c-2.488.021-4.916-1.345-6.21-3.465a7.43 7.43 0 0 1-1.118-3.919m7.328-7.382v1.02c-2.364-.029-4.653 1.42-5.666 3.551-.43.87-.649 1.84-.65 2.81h-1.012c-.02-2.507 1.336-4.968 3.475-6.278a7.3 7.3 0 0 1 3.853-1.103z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 148.16c3.769 0 6.822 3.078 6.822 6.873 0 3.797-3.053 6.875-6.822 6.875-3.767 0-6.822-3.078-6.822-6.875 0-3.795 3.055-6.873 6.822-6.873",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"M489.47 155.03h-1.012c.028-2.368-1.394-4.677-3.527-5.71a6.3 6.3 0 0 0-2.789-.653v-1.02c2.488-.021 4.917 1.344 6.21 3.466a7.4 7.4 0 0 1 1.118 3.917m-7.328 7.384v-1.02c2.323.028 4.573-1.368 5.61-3.44a6.4 6.4 0 0 0 .705-2.924h1.012c.024 2.585-1.422 5.12-3.67 6.399a7.3 7.3 0 0 1-3.657.985m-7.328-7.384h1.012c-.027 2.355 1.377 4.652 3.49 5.692a6.25 6.25 0 0 0 2.826.672v1.02c-2.473.02-4.89-1.33-6.188-3.43a7.43 7.43 0 0 1-1.14-3.954zm7.328-7.383v1.02c-2.337-.028-4.6 1.386-5.63 3.478a6.4 6.4 0 0 0-.686 2.885h-1.012c-.02-2.508 1.336-4.97 3.475-6.28a7.3 7.3 0 0 1 3.853-1.103z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M486.99 195.51c.978 1.578.719 1.886 1.36 2.393.826.652 2.182.66 3.482.456 5.245-.825 4.513 2.351 2.194 5.927-1.16 1.787-3.852 3.585-5.259 5.12-1.405 1.537-1.525 2.81-2.08 3.194-2.013.048-3.75.057-4.539.043h-.004c-.787.015-2.524.006-4.537-.043-.554-.384-.674-1.657-2.08-3.193-1.405-1.536-4.1-3.334-5.259-5.121-2.319-3.574-3.05-6.752 2.194-5.927 1.3.203 2.658.196 3.482-.456.643-.507.384-.815 1.361-2.393.635-1.022 1.398-1.79 2.228-2.302.828-.511 1.72-.232 2.615-.232.893 0 1.786-.279 2.615.232.829.512 1.593 1.28 2.228 2.302z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m488.66 197.51-.623.801h-.001l-.07-.057-.064-.056-.066-.061-.06-.063-.054-.061-.049-.061-.048-.063-.045-.065-.04-.065-.037-.065-.034-.066-.03-.062-.029-.062-.03-.068-.026-.061-.026-.062-.028-.07-.027-.067-.028-.07-.03-.073-.032-.074-.035-.08-.038-.084-.042-.088-.045-.094-.05-.1-.054-.104-.06-.11-.065-.118-.071-.123-.078-.131-.085-.14.857-.539.092.15.085.143.079.137.071.13.067.122.061.12.055.109.052.106.047.102.043.094.04.089.036.086.033.08.03.073.03.07.023.06.026.061.023.057.019.044.022.047.02.041.018.035.018.031.02.031.017.027.021.029.025.03.025.027.028.03.032.03.04.034.046.037zm-.623.801h-.001l-.358-.284zm3.716-.449.155 1.008-.126.018-.128.02-.131.016-.128.014-.127.014-.129.01-.129.012-.128.007-.128.006-.128.004-.13.004-.128-.001-.126-.004-.127-.005-.126-.008-.125-.01-.124-.013-.125-.016-.122-.02-.12-.021-.123-.027-.12-.031-.115-.033-.116-.036-.116-.042-.115-.045-.11-.05-.108-.054-.11-.06-.104-.065-.1-.067-.099-.075.623-.8.059.042.064.044.066.04.064.037.073.035.076.034.077.032.08.027.082.027.09.025.088.022.088.019.096.017.098.017.096.012.103.01.103.01.105.005.105.005.11.001.108.001h.109l.113-.005.114-.006.114-.007.115-.008.114-.01.117-.012.119-.014.112-.014.118-.017.117-.018zm2.695 6.71-.847-.558.207-.327.199-.322.186-.318.174-.313.161-.306.148-.301.134-.291.118-.283.103-.273.086-.26.068-.25.051-.234.032-.22.017-.203-.002-.183-.018-.169-.032-.149-.047-.13-.058-.115-.074-.105-.092-.096-.114-.089-.14-.083-.172-.075-.204-.064-.238-.052-.273-.036-.31-.02-.346-.002-.382.02-.42.042-.455.063-.155-1.007.493-.069.46-.043.433-.023.402.001.375.023.35.046.323.07.3.097.275.12.25.148.223.176.193.202.16.222.125.244.09.256.058.265.03.272.002.279-.022.285-.044.287-.063.295-.082.3-.1.306-.118.31-.13.316-.148.32-.16.324-.173.33-.186.333-.196.337-.208.339zm-5.31 5.187-.743-.69.143-.153.148-.153.155-.154.16-.154.165-.155.17-.155.173-.155.176-.156.18-.157.18-.157.184-.16.185-.158.187-.16.185-.159.186-.16.185-.16.185-.163.183-.16.179-.161.177-.161.174-.163.17-.16.167-.162.16-.16.156-.161.15-.161.143-.159.135-.157.13-.158.12-.155.112-.155.103-.153.847.558-.124.182-.131.181-.139.18-.144.176-.152.177-.157.176-.163.173-.167.173-.173.172-.175.17-.178.169-.182.17-.183.166-.187.168-.187.165-.187.162-.188.164-.188.162-.188.161-.185.158-.183.158-.182.157-.18.155-.174.154-.171.151-.168.15-.16.149-.156.145-.15.144-.143.142-.137.141zm-2.44 3.357-.024-1.018-.275.09.018-.014.015-.013.025-.027.026-.03.028-.038.03-.045.031-.05.036-.061.036-.065.038-.074.04-.077.041-.086.045-.092.046-.093.048-.101.052-.106.055-.11.057-.114.064-.119.064-.12.07-.127.074-.128.078-.131.085-.135.09-.138.096-.141.1-.14.107-.145.116-.15.121-.147.128-.15.136-.152.743.69-.12.134-.113.135-.108.13-.099.128-.094.128-.09.126-.084.121-.079.122-.073.118-.07.116-.066.115-.062.111-.06.111-.056.107-.052.105-.053.104-.047.099-.048.098-.048.099-.045.091-.044.092-.047.091-.045.088-.048.087-.048.083-.052.084-.056.08-.06.081-.065.075-.068.072-.08.073-.086.064zm.274-.09-.123.086-.151.004zm-4.825.134v-1.02h.01l.073.001.083.001.087.001.09.001h.097l.1.001h.843l.135-.002h.142l.146-.002h.149l.153-.002h.153l.157-.003.162-.002.165-.002.168-.002.17-.002.173-.002.173-.004.18-.004.18-.002.179-.004.187-.005.185-.002.186-.005.024 1.018-.189.005-.187.005-.183.002-.184.006-.181.002-.175.004-.178.004-.176.002-.17.002-.168.002-.164.002-.163.002-.16.002h-.157l-.153.002h-.15l-.142.002h-.142l-.14.002h-1.053l-.097-.001-.087-.001-.082-.001-.079-.001zm0-1.02h.01zm-.004 0h.004v1.02h-.004l-.009-1.02zm-.009 0h.01zm-4.814.887.573-.84-.275-.089.187.005.187.004.185.005.18.002.18.004.176.004.176.002.173.004.17.002.167.002.165.002.161.002.16.001.154.002.15.001.149.001.147.001.138.001h.138l.134.001h.906l.09-.002h.087l.082-.002h.074l.02 1.019-.08.001-.082.001-.087.001-.097.001h-.096l-.104.001h-.718l-.133-.001h-.139l-.143-.001-.144-.001-.148-.001-.156-.001-.155-.002-.159-.001-.163-.002-.165-.002-.168-.002-.172-.002-.173-.004-.176-.002-.179-.004-.18-.004-.184-.005-.185-.005-.185-.004-.188-.005-.275-.089zm.275.089-.152-.004-.123-.086zm-2.44-3.357.742-.69.136.151.13.15.12.15.114.146.108.145.101.142.097.142.09.138.082.132.08.131.075.13.07.126.065.122.06.118.06.114.054.11.05.103.05.1.047.098.043.09.043.087.038.077.038.07.037.068.036.062.031.05.032.047.027.037.025.029.022.024.018.016.017.013-.573.84-.084-.064-.08-.071-.07-.075-.066-.077-.06-.08-.053-.079-.053-.084-.047-.083-.047-.084-.048-.09-.045-.092-.045-.091-.046-.093-.045-.095-.05-.098-.05-.102-.05-.104-.053-.104-.056-.109-.059-.109-.062-.112-.066-.113-.07-.117-.075-.12-.078-.121-.082-.12-.09-.126-.095-.127-.102-.13-.105-.13-.114-.133zm-5.311-5.187.847-.558.103.153.112.155.12.155.13.158.135.157.143.159.15.161.156.161.16.16.167.161.17.161.175.163.176.16.18.162.182.161.185.16.186.163.185.16.185.158.188.16.185.159.182.159.182.156.18.158.175.156.174.155.169.155.166.155.159.154.155.153.15.154.141.153-.742.69-.128-.136-.137-.14-.144-.142-.149-.145-.156-.145-.16-.148-.168-.15-.171-.152-.176-.153-.179-.156-.182-.157-.183-.158-.185-.158-.187-.161-.188-.162-.188-.163-.188-.164-.186-.164-.187-.167-.184-.167-.182-.17-.178-.168-.175-.171-.173-.172-.167-.173-.163-.173-.157-.176-.152-.177-.144-.177-.139-.179-.13-.181zm2.695-6.71-.155 1.008-.455-.063-.42-.041-.382-.02h-.345l-.31.02-.272.037-.24.051-.203.065-.172.075-.139.082-.114.091-.092.095-.074.106-.06.117-.046.128-.033.148-.018.167v.186l.015.203.033.22.05.233.07.25.085.261.102.273.119.282.133.292.148.3.161.306.175.313.186.317.198.323.208.327-.848.558-.217-.342-.208-.339-.196-.337-.186-.332-.173-.33-.16-.324-.148-.321-.13-.315-.117-.312-.099-.304-.083-.298-.065-.296-.043-.29-.02-.282v-.28l.03-.272.06-.266.09-.256.125-.242.16-.224.192-.2.222-.176.251-.15.275-.12.3-.096.324-.07.348-.047.375-.022.403-.001.432.022.46.044zm3.093-.352.623.801-.099.075-.1.067-.104.065-.11.06-.107.053-.109.05-.115.046-.117.042-.116.036-.115.033-.12.031-.123.027-.12.021-.123.02-.125.016-.123.014-.125.009-.126.008-.127.005-.127.004h-.128l-.13-.003-.127-.004-.128-.006-.13-.007-.128-.011-.129-.011-.126-.015-.128-.013-.131-.017-.128-.019-.127-.018.155-1.008.117.018.119.017.112.015.118.013.117.012.115.01.114.009.115.007.113.006.114.004h.217l.11-.001.106-.005.104-.006.104-.01.101-.01.097-.012.098-.017.096-.017.087-.02.09-.02.088-.026.085-.027.079-.027.075-.032.075-.033.074-.036.065-.036.065-.041.065-.043zm1.244-2.263.857.54-.085.14-.077.13-.072.123-.065.118-.06.11-.053.105-.05.1-.046.094-.041.088-.039.084-.034.08-.033.074-.03.072-.028.07-.026.067-.029.07-.026.062-.025.062-.031.068-.029.061-.03.063-.034.066-.037.065-.043.068-.043.062-.043.06-.055.066-.055.061-.058.06-.066.062-.065.056-.07.057-.623-.801.044-.037.04-.035.033-.03.03-.031.026-.028.02-.025.023-.032.021-.03.017-.027.018-.032.018-.034.02-.041.022-.047.019-.045.022-.056.027-.062.024-.059.028-.07.031-.074.032-.08.037-.086.04-.089.043-.094.046-.102.053-.106.055-.109.06-.12.067-.122.072-.13.08-.137.084-.143.092-.149zm0 0 .284-.457zm2.392-2.466.528.868-.072.046-.071.046-.066.044-.07.05-.071.051-.07.052-.068.053-.067.053-.07.058-.069.056-.064.057-.068.061-.067.063-.066.062-.065.065-.067.067-.064.066-.063.068-.064.07-.065.073-.062.073-.062.075-.063.078-.06.075-.06.08-.061.082-.059.082-.06.083-.057.085-.058.087-.058.088-.056.09-.857-.541.063-.1.065-.1.063-.096.067-.098.067-.095.068-.093.068-.09.068-.09.071-.091.07-.085.07-.085.074-.085.072-.082.071-.08.077-.082.076-.078.074-.075.075-.075.078-.074.076-.07.078-.07.081-.072.08-.066.078-.065.081-.065.082-.062.083-.061.08-.058.082-.058.087-.059.083-.053zm2.88-.308v1.02l-.095-.001-.087-.004-.092-.002-.094-.005-.087-.006-.084-.006-.087-.007-.083-.007-.084-.006-.082-.007-.08-.005-.08-.006-.08-.005-.074-.005-.076-.002-.075-.001h-.143l-.07.004-.066.004-.067.007-.066.008-.063.009-.064.013-.064.013-.056.016-.06.02-.06.022-.059.024-.058.028-.059.03-.057.034-.528-.869.098-.057.1-.052.098-.047.1-.041.096-.035.1-.034.104-.027.097-.023.095-.018.1-.017.096-.01.095-.01.096-.006.093-.004.093-.002h.093l.09.004.09.002.089.005.087.005.086.006.087.007.082.007.084.006.084.007.08.005.083.006.08.006.073.005.078.002.08.001zm2.88.308-.53.868-.056-.033-.059-.03-.058-.028-.059-.024-.06-.023-.06-.02-.057-.015-.062-.013-.067-.013-.062-.011-.065-.007-.067-.007-.068-.004-.07-.004h-.218l-.075.003-.074.005-.08.005-.08.006-.079.005-.083.007-.084.006-.083.007-.088.007-.083.006-.087.006-.094.005-.091.002-.087.004h-.095v-1.019h.073l.08-.002.077-.002.072-.005.08-.006.084-.006.08-.005.084-.007.083-.006.084-.007.086-.007.087-.006.085-.005.09-.005.09-.002.09-.004h.093l.093.002.093.004.097.006.095.01.097.011.098.016.095.018.098.023.104.027.1.034.097.035.099.04.099.048.099.051.098.058zm-.001 0 .315.195zm1.963 3.246v-1.02l-.428.78-.056-.09-.058-.087-.058-.087-.057-.085-.06-.083-.058-.082-.061-.082-.061-.08-.06-.075-.062-.076-.065-.077-.063-.074-.06-.07-.065-.071-.066-.07-.063-.066-.065-.065-.066-.065-.067-.064-.067-.062-.068-.061-.066-.058-.066-.057-.068-.055-.067-.053-.072-.055-.07-.052-.068-.05-.07-.048-.068-.046-.071-.047-.072-.045.53-.868.084.054.08.052.088.058.083.059.082.058.08.062.08.06.083.065.08.067.079.066.08.07.077.07.077.07.076.074.077.075.076.077.075.078.073.08.074.08.075.084.07.084.07.082.072.088.071.091.068.09.068.09.068.093.067.095.067.097.063.097.065.1.063.1zm.429-.78.485.78h-.914zm-.43-.24h.001v1.02l-.43-.24zm-.428.78-.484-.78h.912z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m481.35 212.77-.883-.132c-.47-3.78-1.97-6.901-4.324-9.627 2.648 1.802 4.618 5.67 5.207 9.759",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M494.21 198.3c-.467 1.149-.965 2.402-1.98 3.462-1.541 1.61-4.098.567-6.574-1.516-.78-.656-2.16-.973-3.535-.968-1.373.005-2.741.333-3.497.968-2.476 2.083-5.033 3.127-6.575 1.516-1.015-1.06-1.511-2.312-1.977-3.462.596-.11 1.38-.097 2.383.06 1.3.203 2.656.196 3.482-.454.642-.508.383-.817 1.36-2.394.634-1.023 1.398-1.79 2.228-2.303.828-.51 1.721-.232 2.614-.232.894 0 1.787-.279 2.617.232.828.513 1.592 1.28 2.227 2.303.978 1.577.719 1.886 1.36 2.394.826.651 2.182.657 3.482.454 1.004-.157 1.79-.17 2.385-.06z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m492.6 202.12-.728-.707.086-.092.083-.093.081-.094.078-.095.078-.098.074-.096.071-.097.07-.099.066-.1.067-.103.065-.099.06-.102.061-.103.059-.105.057-.102.055-.105.056-.106.053-.104.051-.107.053-.108.047-.104.05-.11.05-.109.046-.104.045-.109.047-.108.044-.107.046-.11.044-.108.044-.108.044-.11.044-.107.936.387-.044.108-.044.107-.044.11-.047.113-.045.108-.047.114-.049.113-.048.113-.05.117-.051.112-.052.114-.054.118-.055.113-.056.116-.06.117-.059.116-.062.116-.064.117-.066.114-.068.116-.07.116-.074.118-.074.11-.077.115-.08.115-.084.115-.086.113-.087.11-.092.111-.096.11-.098.109zm-7.262-1.48.647-.781.226.186.225.18.225.174.225.166.224.159.224.152.22.144.219.133.22.126.214.12.213.106.21.1.207.09.202.078.2.07.194.06.192.047.185.04.18.028.176.016.17.007.164-.002.157-.013.153-.025.149-.034.14-.044.138-.056.133-.067.132-.077.125-.089.123-.103.122-.118.728.707-.174.168-.183.154-.192.137-.198.118-.203.101-.212.084-.217.069-.22.05-.22.035-.228.02-.228.006-.23-.01-.231-.023-.233-.035-.235-.05-.233-.06-.235-.07-.238-.082-.237-.094-.238-.104-.237-.111-.241-.122-.239-.13-.239-.14-.242-.147-.241-.158-.239-.162-.241-.17-.241-.179-.24-.185-.239-.19-.24-.198h.001zm.647-.781.563.474zm-3.857-.067-.002-1.02h.135l.138.004.135.005.136.006.135.008.135.01.134.013.134.014.133.018.13.018.133.02.132.025.129.025.124.027.13.028.124.033.125.032.124.038.12.037.117.04.117.043.117.047.112.047.11.05.109.052.106.055.108.06.1.06.096.062.1.068.091.07.09.072-.647.782-.06-.048-.064-.048-.066-.045-.073-.047-.074-.044-.074-.042-.082-.041-.085-.042-.088-.039-.09-.04-.092-.034-.095-.035-.1-.034-.1-.032-.1-.03-.105-.028-.107-.028-.106-.024-.115-.024-.112-.023-.111-.019-.114-.018-.118-.016-.118-.015-.116-.012-.12-.012-.12-.008-.12-.008-.122-.006-.12-.005-.12-.001zm-3.174.849-.65-.782h.001l.089-.072.09-.067.093-.064.097-.063.1-.06.103-.057.104-.054.106-.052.11-.05.11-.046.115-.046.117-.043.117-.04.117-.037.12-.036.126-.035.122-.031.125-.03.126-.027.129-.026.129-.023.131-.023.132-.02.132-.016.135-.016.132-.013.133-.01.135-.012.137-.007.135-.005.136-.005h.137l.002 1.02h-.12l-.122.002-.12.005-.119.007-.12.008-.123.011-.118.01-.116.014-.118.017-.115.017-.115.018-.112.02-.11.022-.11.025-.11.027-.105.026-.102.028-.101.031-.103.033-.096.032-.093.034-.09.036-.089.037-.086.04-.082.04-.08.041-.076.042-.072.042-.067.044-.066.047-.062.045-.057.046zm-7.264 1.48.728-.708.122.118.123.103.125.09.132.076.133.067.138.056.14.044.149.034.154.025.156.013.163.002.171-.007.176-.016.18-.028.185-.04.192-.048.195-.059.199-.07.202-.079.206-.089.212-.1.212-.107.215-.119.22-.126.218-.134.22-.143.224-.152.224-.16.225-.165.225-.173.225-.18.225-.187.65.782-.24.198-.239.19-.24.185-.24.178-.242.171-.239.162-.24.158-.243.148-.239.138-.239.131-.24.122-.238.112-.238.103-.237.094-.238.082-.235.07-.233.06-.235.05-.233.035-.23.024-.23.009-.229-.005-.228-.02-.22-.035-.22-.05-.217-.07-.212-.084-.203-.1-.198-.118-.192-.138-.183-.153-.174-.169zm-1.704-4.318.183 1.003.376-.694.045.107.044.11.044.109.044.108.043.106.047.11.045.107.048.11.045.107.048.106.05.109.05.106.05.106.052.107.055.108.051.103.058.104.056.104.06.104.06.102.061.101.065.103.066.101.066.099.07.097.07.099.076.097.076.098.077.092.082.095.084.094.086.091-.729.707-.1-.108-.098-.108-.094-.11-.093-.111-.088-.112-.085-.112-.083-.113-.082-.114-.077-.116-.074-.115-.072-.113-.072-.116-.066-.116-.067-.116-.063-.117-.063-.115-.06-.118-.058-.115-.056-.115-.056-.115-.054-.118-.05-.112-.052-.115-.05-.117-.048-.112-.048-.113-.047-.112-.047-.113-.045-.11-.044-.11-.044-.107-.044-.11.376-.693zm-.376.693-.236-.58.612-.113zm2.928-.636-.156 1.008-.09-.014-.089-.014-.088-.012-.085-.012-.082-.009-.084-.009-.083-.009-.079-.007-.08-.007-.08-.007-.078-.006-.071-.005-.072-.004-.079-.004-.071-.004-.067-.002h-.201l-.066.001h-.064l-.058.002-.057.004-.061.004-.064.005-.056.005-.052.005-.05.006-.054.008-.054.007-.05.008-.048.008-.184-1.003.065-.01.064-.011.066-.01.066-.007.071-.008.072-.007.068-.005.066-.005.07-.006.076-.004.078-.002.073-.002.074-.001h.151l.083.002.083.002.08.004.075.004.086.004.089.007.082.006.085.007.087.007.09.009.089.009.09.009.095.012.094.012.093.014.094.013zm3.093-.35.623.8v.001l-.1.073-.102.069-.103.064-.106.057-.11.057-.113.05-.112.043-.114.041-.118.039-.118.032-.117.03-.12.026-.124.024-.124.018-.123.017-.124.013-.124.009-.126.008-.127.005-.127.004-.127.001-.13-.004-.128-.004-.128-.006-.129-.007-.129-.01-.129-.012-.126-.014-.128-.013-.131-.017-.128-.02-.126-.018.155-1.007.117.018.118.017.112.014.118.013.117.012.115.011.115.008.114.007.113.006.114.004.109.001h.108l.11-.002.105-.005.105-.006.103-.009.102-.01.1-.013.095-.015.092-.017.092-.02.09-.023.088-.023.08-.027.082-.029.079-.032.074-.033.07-.034.068-.039.067-.04.062-.042.058-.044zm.623.8v.001l-.46.362zm.62-3.063.857.539-.084.14-.078.13-.072.123-.064.118-.06.112-.054.102-.05.1-.046.096-.04.086-.038.082-.036.08-.032.077-.03.072-.03.072-.026.065-.027.067-.027.064-.025.062-.03.069-.03.061-.029.063-.035.066-.038.067-.042.065-.04.06-.045.063-.055.066-.055.061-.059.06-.065.062-.065.056-.07.057-.623-.801.044-.038.04-.035.033-.03.03-.03.026-.028.019-.026.022-.029.023-.033.018-.03.017-.028.018-.035.02-.04.022-.048.019-.044.023-.055.026-.062.025-.062.028-.07.03-.072.033-.08.036-.085.039-.09.044-.096.048-.101.051-.105.055-.11.06-.12.068-.12.071-.13.079-.138.085-.143zm2.393-2.468.527.868-.071.046-.072.046-.066.044-.071.052-.07.05-.069.05-.069.054-.067.053-.068.057-.069.057-.068.06-.067.06-.065.06-.067.065-.067.064-.063.064-.065.069-.064.068-.064.07-.064.072-.062.073-.064.076-.06.075-.061.078-.061.08-.06.081-.06.083-.06.084-.057.083-.057.087-.058.089-.056.089-.858-.539.064-.1.063-.1.065-.098.068-.097.065-.094.067-.093.07-.091.067-.089.07-.09.07-.087.071-.085.074-.086.072-.081.073-.082.074-.078.074-.079.077-.078.077-.074.076-.074.078-.072.079-.068.077-.069.08-.067.08-.066.08-.065.082-.062.082-.062.082-.06.081-.056.087-.058.084-.053zm2.878-.308v1.02l-.095-.001-.087-.004-.09-.002-.095-.005-.087-.006-.083-.006-.087-.007-.084-.007-.084-.006-.083-.007-.08-.005-.079-.006-.08-.005-.074-.005-.075-.002-.075-.001h-.144l-.069.004-.067.004-.066.007-.066.008-.063.009-.065.013-.063.013-.056.016-.06.02-.06.022-.06.024-.058.028-.058.03-.058.034-.527-.869.097-.057.1-.052.098-.047.1-.041.096-.035.1-.034.104-.027.097-.023.095-.018.1-.017.096-.01.096-.01.095-.006.093-.004.093-.002h.093l.09.004.09.002.09.005.085.005.087.006.086.007.084.007.083.006.084.007.08.005.084.006.08.006.072.005.077.002.08.001zm2.881.308-.53.868h.001l-.057-.033-.059-.03-.058-.028-.059-.024-.06-.023-.06-.02-.056-.015-.062-.013-.067-.013-.063-.011-.066-.007-.066-.007-.068-.004-.069-.004h-.143l-.075.001-.076.002-.075.005-.08.005-.079.006-.08.005-.082.007-.084.006-.083.007-.087.007-.084.006-.087.006-.094.005-.092.002-.087.004-.094.001v-1.02h.072l.08-.002.078-.002.073-.005.08-.006.083-.006.08-.005.084-.007.084-.006.082-.007.087-.007.086-.006.087-.005.09-.005.09-.002.089-.004h.093l.093.002.093.004.097.006.097.01.094.011.099.016.095.018.098.023.104.027.1.034.097.035.099.04.099.048.099.052.098.057zm0 0 .314.195zm2.391 2.468-.857.539-.056-.09-.058-.089-.058-.086-.056-.083-.06-.084-.06-.083-.06-.082-.061-.08-.06-.075-.062-.075-.066-.08-.062-.073-.06-.07-.064-.07-.067-.069-.064-.068-.063-.064-.067-.065-.067-.064-.066-.06-.066-.061-.07-.06-.068-.058-.065-.054-.067-.053-.072-.056-.07-.051-.068-.05-.07-.049-.067-.046-.072-.047-.072-.044.53-.868.084.054.08.052.088.057.084.06.08.058.082.062.079.06.083.065.083.068.077.067.077.068.079.068.077.072.077.074.076.074.078.079.074.078.071.077.076.082.075.084.072.085.068.082.071.086.072.093.068.089.069.091.067.093.065.094.068.097.065.098.063.099.064.1zm1.243 2.262-.623.801h-.001l-.07-.056-.064-.057-.065-.061-.061-.063-.054-.061-.049-.061-.05-.065-.043-.064-.038-.061-.039-.068-.034-.066-.03-.062-.029-.062-.03-.068-.026-.063-.026-.063-.027-.068-.027-.064-.03-.073-.03-.072-.032-.076-.035-.08-.037-.082-.04-.086-.047-.095-.05-.101-.054-.103-.06-.111-.064-.118-.072-.123-.078-.131-.084-.14.857-.538.092.149.084.143.08.137.07.13.068.121.06.12.055.11.052.105.047.1.045.097.038.09.037.085.032.08.03.072.028.07.025.062.027.061.022.056.02.044.02.047.021.041.018.035.017.029.021.032.02.03.019.027.025.03.025.027.027.03.032.03.041.034.045.037zm-.623.801h-.001l-.358-.284zm3.716-.45.155 1.008-.126.018-.128.02-.13.015-.13.016-.128.013-.127.01-.129.012-.128.007-.128.006-.128.004-.128.004h-.13l-.126-.005-.124-.004-.13-.008-.124-.01-.126-.014-.123-.017-.122-.018-.123-.024-.118-.025-.12-.029-.12-.034-.116-.038-.11-.04-.115-.044-.112-.05-.11-.055-.109-.06-.104-.065-.1-.067-.099-.075.623-.8.059.042.064.044.066.04.064.037.073.034.074.034.077.03.084.03.083.027.084.024.089.021.094.02.092.018.098.015.099.015.1.009.103.009.102.006.108.004.11.002h.106l.11-.001.114-.004.114-.006.114-.007.115-.008.117-.01.114-.012.116-.013.115-.016.118-.016zm2.93.638-.935-.388.376.696-.048-.008-.05-.008-.054-.007-.054-.008-.05-.006-.051-.005-.059-.005-.062-.005-.06-.004-.058-.004-.058-.002h-.065l-.066-.001h-.201l-.067.002-.072.004-.079.004-.071.004-.072.005-.078.006-.08.007-.08.007-.078.007-.084.009-.083.009-.083.009-.085.012-.088.012-.09.013-.09.014-.155-1.008.096-.014.096-.013.093-.015.094-.012.094-.012.091-.009.088-.009.091-.009.087-.007.085-.007.082-.006.089-.007.086-.004.076-.004.079-.004.083-.002.083-.002h.153l.072.001.074.002.078.002.076.004.07.006.065.005.068.005.073.007.072.008.066.008.065.01.065.01.064.01.376.696zm-.376-.695.613.114-.237.58zm-.092.501.468.194zm.092-.501.613.114-.237.58z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 211.65c4.27 0 7.732 3.488 7.732 7.79s-3.462 7.79-7.732 7.79-7.73-3.488-7.73-7.79 3.46-7.79 7.73-7.79",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m482.94 212.77.882-.132c.47-3.78 1.97-6.901 4.324-9.627-2.648 1.802-4.619 5.67-5.206 9.759",style:{fill:"#21231e"}}),(0,h.jsx)("use",{xlinkHref:"#rs_inline_svg__b",width:1350,height:900,transform:"matrix(-1 0 0 1 964.286 0)"}),(0,h.jsx)("path",{d:"M576.93 293.58c2.002.303 3.062 1.568 2.991 2.861.07 1.294-.992 2.56-2.996 2.862a8.7 8.7 0 0 1-1.529.266c-60.788 5.236-125.72 5.238-186.51 0a8.7 8.7 0 0 1-1.529-.266c-2.004-.303-3.065-1.568-2.995-2.862-.07-1.293.99-2.558 2.99-2.861a8.6 8.6 0 0 1 1.534-.266c60.79-5.237 125.72-5.235 186.51 0q.851.076 1.534.266z",style:{fill:"#edb92e",stroke:"#21231e",strokeWidth:1.01444578}}),(0,h.jsx)("path",{d:"m412.13 298.41-.031-.002-.03-.004-.03-.006-.03-.007-.028-.008-.028-.009-.027-.012-.027-.012-.027-.014-.025-.015-.024-.017-.023-.017-.023-.019-.022-.018-.02-.02-.02-.022-.018-.023-.018-.023-.017-.024-.015-.025-.015-.025-.013-.027-.012-.028-.01-.027-.009-.028-.008-.029-.006-.03-.005-.029-.004-.03v-.03l-.002-.03.001-.032.004-.031.002-.02-.002-.021-.004-.031v-.063l.001-.03.004-.03.005-.029.006-.03.008-.029.008-.027.011-.028.012-.028.013-.026.015-.026.015-.025.017-.024.018-.023.018-.022.02-.022.02-.02.022-.02.023-.018.023-.018.024-.016.025-.015.027-.014.027-.013.028-.01.027-.01.029-.009.03-.006.03-.006.029-.004.031-.004v.001l.01.178h-.003l-.011-.179.73-.046.727-.044.73-.045.728-.044.728-.045.728-.043.73-.042.729-.043.728-.041.728-.04.73-.042.728-.04.73-.04.727-.039.73-.038.728-.04.73-.037.729-.038.729-.037.728-.035.73-.036.728-.036.729-.034.73-.034.727-.034.73-.034.73-.033.728-.033.73-.03.73-.032.728-.031.729-.03.05 1.212-.729.03-.728.031-.728.031-.728.031-.728.033-.728.034-.73.033-.728.034-.728.034-.728.035-.728.034-.729.036-.726.036-.73.038-.728.037-.728.037-.728.039-.728.038-.727.04-.729.04.729.04.729.038.727.038.728.039.728.037.728.038.729.036.728.036.728.036.728.035.728.035.728.034.728.033.729.034.728.034.728.032.728.032.73.03.728.032.728.03-.05 1.211v.001l-.73-.03-.73-.031-.729-.031-.729-.031-.728-.033-.73-.034-.729-.033-.73-.034-.727-.034-.73-.035-.729-.034-.728-.036-.73-.036-.728-.038-.729-.037-.73-.037-.727-.039-.73-.038-.728-.04-.73-.04-.727-.04-.73-.04-.728-.04-.73-.042-.727-.043-.729-.042-.728-.043-.73-.044-.727-.044-.728-.044-.73-.046-.728-.046.01-.18h.002zm.043-.696-.001.024v-.031zm46.617-2.63.024 1.213-.73.016-.728.014-.73.017-.729.016-.728.016-.729.018-.728.019-.73.018-.728.019-.729.02-.728.019-.73.02-.728.02-.729.022-.728.022-.728.023-.728.023-.73.022-.728.023-.73.025-.727.024-.73.024-.728.026-.728.026-.73.027-.728.027-.728.028-.73.028-.727.029-.728.029-.729.028-.728.03-.05-1.21.728-.03.73-.03.729-.03.73-.028.729-.028.729-.028.73-.026.729-.028.729-.026.73-.026.729-.024.729-.024.73-.025.729-.023.729-.023.73-.023.729-.022.73-.022.728-.022.73-.02.73-.02.728-.02.73-.02.73-.019.73-.018.73-.018.728-.018.73-.017.73-.015.73-.017.729-.015.73-.015zm23.348-.225-.001 1.213h-2.186l-.73.001-.727.002-.73.001-.728.004-.73.002-.728.004-.73.004-.728.005-.73.004-.729.006-.728.006-.73.006-.727.007-.73.007-.729.008-.73.007-.728.01-.729.007-.728.01-.73.01-.728.01-.729.011-.728.011-.73.012-.729.013-.728.014-.73.013-.727.013-.73.015-.024-1.213.73-.014.73-.013.73-.014.73-.013.728-.013.73-.012.73-.012.728-.01.731-.012.73-.009.729-.009.729-.009.73-.008.73-.008.73-.007.73-.007.73-.007.729-.006.729-.006.73-.006.73-.005.73-.004.728-.005.73-.002.73-.004.73-.002.73-.002h.728l.73-.002h2.19zm23.348.26-.026 1.213-.729-.016-.729-.014-.728-.015-.73-.014-.728-.013-.729-.012-.73-.014-.727-.012-.73-.01-.728-.012-.73-.011-.727-.01-.73-.008-.73-.01-.728-.007-.729-.01-.729-.006-.728-.007-.73-.007-.728-.007-.729-.006-.728-.006-.73-.004-.729-.005-.73-.005-.727-.004-.73-.002-.729-.002-.728-.002-.73-.002-.729-.001-.728-.001.001-1.212h.73l.729.002h.729l.73.003.73.004.73.002.73.004.73.004.728.005.73.005.73.006.73.006.73.006.728.007.73.007.73.008.73.008.729.008.73.009.73.009.73.01.729.011.729.01.73.013.73.012.73.012.729.013.729.013.73.015.729.014.729.015.73.015h.001zm23.342.739-.051 1.211-.729-.03-.728-.029-.73-.03-.727-.029-.728-.027-.729-.028-.729-.028-.728-.027-.73-.027-.728-.025-.729-.027-.728-.025-.73-.024-.728-.024-.728-.024-.73-.023-.727-.023-.73-.022-.728-.022-.73-.022-.727-.021-.73-.02-.729-.02-.728-.02-.73-.019-.728-.018-.729-.02-.728-.016-.73-.018-.729-.017-.728-.016-.73-.016.027-1.213.73.017.73.016.73.017.729.018.729.018.73.018.729.018.73.02.73.019.729.02.73.02.729.021.729.022.73.021.73.023.73.023.728.023.73.024.73.024.729.024.729.025.73.027.729.025.729.028.73.026.729.028.729.028.73.028.729.03.729.028.73.03.729.03zm23.322 1.209-.005.085zl.03.004.032.004.03.006.028.007.03.008.028.01.027.011.026.013.027.014.025.015.025.016.022.018.023.018.022.02.021.02.02.022.018.022.018.023.017.023.014.025.015.026.014.026.01.028.012.027.009.028.008.029.006.03.005.029.004.03v.031l.002.03-.001.031v.07100000000000001l-.001.03-.004.03-.005.03-.006.03-.008.029-.01.027-.01.028-.01.028-.015.026-.015.025-.014.026-.017.023-.018.022-.019.023-.019.022-.021.02-.022.02-.023.018-.022.018-.025.016-.025.015-.027.013-.026.014-.027.01-.029.011-.029.008-.028.007-.03.006-.031.004-.031.004-.005-.085.006.084h-.001l-.728.045-.73.043-.728.045-.73.043-.727.043-.73.042-.729.043-.728.042-.73.041-.729.04-.728.04-.728.04-.73.04-.728.039-.729.038-.73.039-.727.037-.73.037-.73.037-.727.035-.73.036-.728.036-.73.035-.729.033-.729.034-.73.034-.727.034-.73.032-.729.031-.73.033-.729.031-.73.03-.05-1.211.729-.031.73-.032.727-.03.728-.033.729-.033.729-.032.728-.034.728-.034.728-.034.729-.035.728-.035.728-.036.728-.035.728-.037.73-.037.728-.038.728-.038.728-.039.443-.022-.444-.024-.728-.039-.728-.038-.729-.038-.728-.037-.73-.037-.727-.036-.728-.036-.729-.034-.728-.035-.728-.034-.73-.034-.727-.034-.729-.034-.728-.03-.728-.033-.728-.033-.728-.031-.73-.03.05-1.212.73.03.73.032.729.031.73.033.727.032.73.033.729.033.73.034.729.035.728.035.73.035.729.036.729.036.728.037.73.037.729.037.729.039.73.038.728.039.729.04.728.04.73.04.728.041.729.04.728.043.73.042.729.043.728.043.73.044.727.044.729.043.729.046zm-.04.643v.005zm-116.61.705.03.002.031.004.03.005.03.007.029.007.028.009.028.01.026.013.026.013.027.014.023.017.024.017.024.018.021.018.022.02.02.021.02.023.017.023.017.024.017.024.014.025.013.025.013.028.011.028.009.028.008.028.007.03.006.028.004.03.004.03.001.031-.001.031-.002.032-.004.03-.004.03-.007.03-.008.028-.009.028-.01.028-.013.028-.013.026-.014.025-.016.026-.016.024-.018.022-.018.022-.02.022-.022.02-.022.02-.022.016-.024.019-.025.015-.025.015-.025.014-.027.012-.028.011-.029.009-.028.008-.029.007-.028.005-.03.005-.031.002-.03.001-.032-.001.05-1.211.001-.001zm93.325 1.157h-.032l-.03-.001-.03-.002-.03-.004-.03-.006-.029-.007-.028-.007-.028-.011-.027-.01-.028-.013-.025-.013-.025-.015-.025-.016-.024-.017-.022-.018-.022-.02-.021-.02-.02-.02-.019-.023-.018-.023-.016-.023-.016-.025-.014-.026-.013-.026-.014-.028-.01-.027-.008-.028-.008-.029-.007-.03-.005-.03-.004-.03-.001-.031-.001-.031v-.032l.003-.03.005-.03.006-.028.006-.03.009-.028.009-.029.01-.027.012-.027.013-.025.016-.026.016-.025.018-.023.017-.022.02-.022.02-.02.021-.021.022-.02.023-.018.025-.016.023-.016.025-.014.027-.014.027-.012.028-.01.028-.01.03-.007.029-.007.03-.005.03-.004.03-.002.052 1.213v-.001zM478.54 263.38l-.005-1.02h.5630000000000001l.112-.002h1.014l.112-.002h1.8060000000000005v1.019h-1.012l-.112.001h-.677l-.112.001h-.451l-.113.001h-.45l-.112.001h-.338l-.113.001h-.114zm-.005-1.02h-.002.004-.001zm-1.2.006 1.2-.006.005 1.02-1.2.006zm-.616.0030000000000001137.615-.002.005 1.02-.614.001zm-1.114.006 1.115-.006.005 1.02-1.115.005-.006-1.02m-.001 0h-.004zm-.67.005.67-.005.007 1.02-.67.004h-.001zm.007 1.02h.004zm-.44-1.018.434-.002.005 1.02-.433.002zm0 0h-.002.004zm-.765.006.765-.006.007 1.02-.765.006-.008-1.02m-.001 0h-.005zm-1.199.012 1.199-.012.009 1.02-1.199.012zm-1.054.009 1.054-.009.01 1.02-1.055.009-.01-1.02zm0 0h-.008zm-.225.002.224-.002.012 1.02-.224.002zm-.882.009.882-.009.012 1.02-.883.009zm-2.61 1.053-.017-1.02h.084l.08-.001.083-.001.082-.001.082-.001.082-.001.085-.001h.082l.079-.001.08-.001.083-.001.082-.001.081-.001.083-.001.082-.001.081-.001.082-.001.086-.001h.081l.08-.001.082-.001.08-.001.083-.001.086-.001h.082l.078-.001.082-.001.082-.001.086-.001h.081l.08-.001.083-.001.012 1.02h-.081l-.086.002h-.161l-.082.002h-.082l-.085.002h-.161l-.082.002h-.081l-.082.002h-.16699999999999998l-.08.002h-.082l-.08.002h-.083l-.082.002h-.081l-.083.002h-.082l-.081.002h-.16799999999999998l-.078.002h-.082l-.081.001-.083.001-.082.001-.081.001-.082.001zm-.017-1.02h-.006.007m-.29.006.29-.005.017 1.02-.29.004h-.001zm.017 1.02h.008zm-.181-1.018.166-.002.014 1.02-.166.002-.016-1.02zm-.001 0h-.011zm-1.116.018 1.116-.018.016 1.02-1.116.018h-.004zm.016 1.02h.007-.01zm-.356-1.016.343-.004.01 1.02-.344.004-.013-1.02zm-.004 0h-.005.008zm-.472.008.472-.008.017 1.02-.473.008zm-1.15.019000000000000128 1.15-.02.016 1.02-1.149.02-.022-1.019zm-.005.001.005-.001.103-.001zm-.044.001.044-.001.027 1.017-.045.001-.004.001zm.026 1.017-.004.001-.137.002zm-1.215-.995 1.193-.023.019 1.02-1.193.022zm-.385.007.385-.007.02 1.02-.386.006zm-.805.015.805-.015.019 1.02-.805.015-.021-1.019zm-.002.001h.002l.341-.008zm-.264.006.264-.006.024 1.018-.264.006zm.024 1.018-.575.013zm-.95-1 .927-.019.022 1.02-.928.02zm-1.189.026 1.189-.026.021 1.02-1.188.025-.034-1.018zm-.012 0h.012l.029-.001zm-.054.003.054-.002.045 1.017-.053.002h-.01zm.046 1.017h.012-.023zm-1.171-.991 1.136-.026.024 1.017-1.136.026h-.001zm-.48.01.481-.01.022 1.017-.481.011-.028-1.017zm-.006 0h-.012.018zm-.036.002.036-.001.033 1.017-.035.001h-.005zm.034 1.017h.013-.018zm-4.236.112-.028-1.017.134-.004.13-.004.133-.004.133-.004.132-.004.132-.004.132-.004.133-.004.132-.004.131-.004.133-.004.132-.004.133-.004.132-.004.132-.004.132-.004.133-.004.132-.004.133-.004.133-.004.132-.002.131-.004.133-.004.132-.004.134-.004.132-.002.132-.004.13-.004.133-.004.134-.004.133-.002.132-.004.024 1.017-.133.004-.132.002-.131.004-.133.004-.131.004-.134.004-.132.002-.132.004-.132.004-.133.004-.133.004-.132.002-.131.004-.133.004-.132.004-.133.004-.132.004-.131.004-.133.004-.132.004-.133.004-.132.004-.132.004-.132.004-.133.004-.132.004-.131.004-.133.004-.133.004-.132.004-.131.004zm-.604-1.001.576-.016.028 1.017-.575.017zm0 0-.027.001zm-1.612.05 1.611-.05.031 1.018-1.611.05h-.002zm.031 1.017h.014-.016zm-.211-1.012.182-.005.027 1.017-.183.005-.029-1.017zm-.002 0h-.011.013zm-1.428.045 1.428-.045.03 1.017-1.427.046zm-.94.03.94-.03.031 1.018-.94.03zm-.67.022.67-.022.033 1.018-.669.021-.035-1.017zm-.001 0h-.012.014zm-.186.007.186-.007.038 1.017-.186.007h-.001zm.038 1.017h.01-.011zm-1.459-.968 1.422-.049.036 1.017-1.422.05h-.004zm.036 1.018h.015-.019zm-.118-1.015.086-.002.028 1.017-.086.002-.032-1.017zm-.004 0h-.012.015zm-1.18.043 1.18-.043.035 1.017-1.18.043-.04-1.017zm-.006 0h.005-.024zm-.052.002.052-.002.045 1.017-.052.002h-.004zm.045 1.017h-.004.023zm-1.17-.974 1.128-.043.038 1.017-1.128.043zm-.763.029.763-.029.038 1.018-.762.028zm0 0-.022.001zm-1.594.064 1.593-.064.041 1.017-1.594.064-.02.001zm.04 1.017-.02.001h-.009zm-.03-1.019h.01v1.02h-.01l-.02-1.018zm-.02.001h.03zm-6.234 1.292-.046-1.017.196-.01.196-.007.196-.01.195-.007.197-.01.197-.007.195-.008.196-.01.197-.007.195-.008.196-.01.197-.007.196-.008.196-.008.195-.01.197-.007.197-.008.196-.008.196-.008.197-.008.196-.008.197-.008.195-.008.197-.008.196-.008.198-.008.196-.007.196-.008.195-.008.199-.008.195-.007.197-.008.041 1.017-.197.008-.196.007-.196.008-.195.008-.198.008-.196.007-.196.008-.196.008-.197.008-.195.008-.197.008-.196.008-.197.008-.196.008-.196.008-.197.008-.194.008-.196.01-.198.007-.196.008-.194.008-.196.01-.198.007-.195.008-.196.01-.197.007-.194.008-.197.01-.196.007-.196.01-.196.007zm0 0h.023zm-.344-1.004.298-.013.045 1.017-.298.013-.047-1.017zm-.001 0h-.019zm-9.142 1.494-.055-1.018.286-.016.286-.016.288-.016.286-.016.287-.015.286-.016.287-.016.288-.015.286-.016.287-.015.288-.016.287-.014.288-.016.286-.015.288-.015.286-.015.288-.015.289-.015.288-.014.286-.015.288-.014.287-.015.288-.014.288-.015.287-.014.29-.015.288-.013.287-.015.289-.014.287-.013.29-.015.287-.013.047 1.017-.287.014-.29.014-.287.013-.286.015-.29.014-.288.014-.286.014-.288.015-.288.014-.288.015-.287.014-.288.015-.286.014-.288.015-.287.014-.287.016-.287.014-.287.016-.287.014-.288.016-.286.014-.287.016-.286.016-.287.015-.287.016-.287.015-.286.016-.287.016-.286.016-.285.015-.287.017-.286.016zm.001 0 .045-.002zm-.231-1.008.175-.01.055 1.018-.175.01-.057-1.018zm-.001 0h-.02zm-.455.026.455-.026.057 1.017-.455.027zm-18.181 2.23-.074-1.015h-.001l.567-.043.568-.042.567-.042.568-.042.567-.041.568-.042.57-.042.57-.04.567-.04.57-.04.57-.04.569-.04.57-.038.568-.04.572-.039.57-.037.57-.038.572-.037.57-.038.572-.036.57-.037.574-.036.572-.036.571-.035.572-.035.572-.034.573-.035.573-.035.573-.034.573-.033.575-.034.573-.033.058 1.018-.573.032-.573.034-.573.034-.573.033-.57.035-.574.035-.572.035-.571.035-.572.035-.572.036-.57.036-.571.037-.572.036-.57.037-.57.037-.57.039-.57.037-.57.038-.569.04-.57.038-.569.04-.569.04-.567.04-.568.04-.57.04-.567.04-.568.042-.567.04-.568.043-.567.042-.566.042-.567.043zm0 0 .058-.005-.057.005zm-.301-.998.227-.017.074 1.015-.227.017-.085-1.015zm-.01 0h.01l-.048.004zm-.076.007.075-.007.096 1.015-.076.007h-.009zm.095 1.015h-.009l.047-.004-.037.004zm-26.329 2.369-.093-1.015-.005.001.816-.084.815-.084.818-.083.816-.083.817-.082.818-.08.82-.081.817-.08.821-.08.82-.078.82-.078.822-.077.82-.077.823-.076.822-.074.822-.075.825-.073.824-.073.823-.073.826-.072.825-.07.826-.072.827-.07.826-.068.829-.068.827-.068.827-.067.83-.066.83-.066.828-.065.83-.064.832-.063.076 1.015-.83.063-.83.064-.828.065-.83.066-.826.066-.828.067-.827.068-.826.068-.826.069-.825.07-.826.07-.825.071-.823.072-.824.073-.824.073-.822.073-.823.075-.82.074-.822.076-.82.077-.82.077-.82.078-.82.079-.818.08-.818.079-.819.08-.816.08-.817.083-.816.08-.815.083-.816.084-.815.085zm.005-.001-.005.001-.072.007zm-.102-6.968.102 1.012-.005.001-.5.062-.458.09-.418.113-.377.133-.34.153-.3.169-.262.181-.228.193-.194.2-.162.208-.13.212-.102.218-.074.217-.045.22-.022.222.005.219.031.217.055.216.079.208.104.203.129.196.155.186.179.176.206.162.23.15.256.13.283.109.31.09.334.065.361.037.388.008.414-.023.094 1.015-.491.028-.467-.01-.445-.048-.423-.081-.397-.115-.371-.145-.344-.176-.317-.202-.285-.227-.255-.248-.225-.27-.19-.29-.157-.305-.12-.316-.083-.326-.045-.333-.007-.34.03-.336.072-.335.11-.331.152-.321.19-.31.229-.295.267-.278.304-.257.344-.237.38-.212.415-.189.454-.16.49-.132.527-.102.565-.071h-.005zm.102 1.012-.005.001-.064.006zm26.236-3.381.082 1.015h-.002l-.831.063-.829.064-.828.065-.83.066-.827.066-.827.067-.827.068-.826.068-.826.069-.827.07-.824.07-.825.071-.825.071-.823.072-.823.074-.823.073-.822.075-.821.074-.822.076-.82.077-.82.077-.82.078-.819.078-.819.079-.817.08-.82.08-.816.081-.816.082-.817.08-.815.084-.815.084-.815.084-.103-1.012.815-.085.815-.084.818-.083.817-.083.816-.082.819-.081.819-.08.818-.08.82-.079.82-.078.82-.078.822-.077.82-.077.824-.076.821-.074.823-.075.825-.073.823-.074.825-.072.825-.07.825-.073.827-.07.826-.07.826-.068.828-.069.828-.067.827-.067.83-.066.83-.066.828-.065.83-.064.831-.064h-.002zm.082 1.015h-.002l.05-.004zm.075-.006-.075.006-.082-1.015.076-.006h.002zm-.081-1.015h.002l-.05.004zm36.919-2.111.038 1.017-1.165.046-1.164.047-1.164.048-1.163.05-1.162.05-1.16.052-1.16.054-1.161.054-1.158.057-1.158.057-1.157.06-1.156.06-1.156.06-1.154.063-1.156.064-1.151.065-1.152.067-1.152.067-1.15.07-1.15.071-1.149.072-1.147.073-1.148.074-1.146.076-1.145.077-1.145.08-1.145.079-1.142.08-1.142.082-1.14.083-1.142.084-1.138.087-.077-1.015 1.141-.087 1.142-.084 1.142-.085 1.142-.082 1.145-.08 1.145-.08 1.145-.08 1.147-.076 1.148-.076 1.149-.075 1.15-.072 1.149-.072 1.15-.071 1.151-.07 1.152-.067 1.154-.067 1.155-.065 1.155-.064 1.154-.062 1.158-.062 1.157-.06 1.16-.059 1.157-.058 1.16-.056 1.16-.054 1.163-.054 1.163-.052 1.162-.05 1.163-.05 1.166-.048 1.164-.047zm1.064.979-1.026.038-.038-1.017 1.026-.038.042 1.017zm.004 0h-.004l.02-.001zm.157-.007-.157.007-.045-1.018.156-.007h.005zm-.046-1.017h.005-.02zm.38 1.005-.339.012-.036-1.017.34-.012zm1.18-.043-1.18.043-.036-1.017 1.18-.044.04 1.018h-.003zm.003 0h-.002l.021-.001zm.087-.004-.087.004-.041-1.018.087-.004h.002zm-.04-1.018h-.015.017zm15.34-.428.022 1.02h-.001l-.48.009-.481.01-.481.01-.48.009-.481.01-.48.011-.48.011-.48.012-.48.01-.478.013-.48.012-.48.013-.48.012-.48.013-.479.012-.478.013-.479.015-.479.013-.478.015-.479.013-.477.014-.48.016-.478.014-.477.015-.478.016-.477.015-.478.016-.477.015-.479.017-.476.016-.476.017-.478.016-.036-1.017.478-.017.479-.017.476-.015.478-.017.478-.016.477-.015.478-.016.48-.016.477-.014.479-.015.479-.015.48-.015.478-.013.479-.015.478-.013.48-.014.48-.013.479-.012.48-.014.48-.012.48-.013.48-.012.48-.012.48-.01.48-.013.482-.01.48-.011.481-.011.48-.012.481-.01.481-.01.483-.009zm.827 1.003-.805.017-.022-1.02.806-.017.026 1.019zm.005 0h-.005l-.11.002.115-.004zm.04-.002-.04.001-.03-1.017.039-.001.006-.001zm-.031-1.017.006-.001.085-.001zm1.39.993-1.365.025-.02-1.02 1.366-.025.02 1.02zm.001 0h.01-.011zm.173-.004-.173.004-.021-1.02.173-.004.025 1.019zm.004 0h-.004l-.154.004zm.043-.002-.043.001-.028-1.017.043-.001.006-.001zm-.028-1.017.006-.001.092-.001zm1.172 1-1.15.018-.016-1.02 1.15-.019zm.474-.009-.474.008-.017-1.02.474-.008h.001zm-.017-1.02h-.007.008m.735 1.01-.72.01-.014-1.02.72-.01zm.904-.014-.904.013-.014-1.02.904-.013.015 1.02zm.001 0h.01-.012zm.29-.005-.29.005-.017-1.02.29-.005h.001zm-.017-1.02h-.007.008m.44 1.014-.424.006-.014-1.02.425-.006zm3.15-1.058.012 1.02h-.099l-.1.002h-.198l-.097.002h-.099l-.099.002h-.098l-.099.002h-.099l-.099.002h-.099l-.098.002h-.099l-.099.002h-.099l-.099.002h-.098l-.099.002h-.099l-.099.002h-.099l-.098.002h-.099l-.099.002h-.099l-.094.002-.099.002h-.102l-.1.002h-.097l-.098.002-.014-1.02.1-.001.098-.001.099-.001.095-.001.1-.002.1-.001.1-.001.099-.001.099-.001.098-.001.099-.001.099-.001.099-.001.099-.001.097-.001.1-.001.098-.001.1-.001.098-.001.098-.001.1-.001.098-.001.1-.001.098-.001.098-.001.1-.001.098-.001.102-.001h.099l.095-.001.1-.001.1-.001zm1.015 1.009-1.003.01-.012-1.02 1.003-.01zm.194-.002-.194.002-.012-1.02.194-.002h.002zm-.012-1.02h-.005.007zm1.208 1.01-1.198.01-.007-1.02 1.198-.01zm3.496-1.044v1.02h.002-.11l-.108.001h-.11l-.11.001h-.108l-.106.001-.114.001h-.108l-.11.001h-.11l-.109.001h-.11l-.106.001-.112.001h-.11l-.106.001-.112.001h-.11l-.11.001h-.109l-.106.001-.108.001-.114.001h-.11l-.105.001-.113.001h-.109l-.106.001-.109.001-.113.001h-.109l-.108.001-.007-1.02h.22l.106-.002h.108l.114-.002h.215l.112-.002h.216l.108-.002h.222l.11-.002h.215l.114-.002h.214l.114-.002h.328l.11-.002h.215l.113-.002h.329l.108-.002h.112zm-.002 0h.002zm.1 1.02h-.097v-1.02h.098l.002 1.02zm.003 0h-.002zm1.2-.005-1.2.005-.005-1.02 1.2-.005h.002zm3.603-1.027v1.02h-1.5750000000000002l-.113.002h-.788l-.113.002h-.788l-.113.002h-.114l-.002-1.02h.111l.114-.001h.337l.113-.001h.338l.112-.001H480l.113-.001h.338l.112-.001h.677l.112-.001h.792zm3.608.007-.005 1.02h-.113l-.112-.001h-.225l-.113-.001h-.225l-.112-.001h-.338l-.112-.001h-.338l-.114-.001h-.675l-.114-.001h-1.012v-1.02h1.0170000000000001l.114.001h.675l.114.001h.337l.113.001h.337l.113.001h.225l.112.001h.226l.112.001zm1.197 1.025-1.202-.005.005-1.02 1.202.005-.002 1.02zm.002 0h-.002zm.097 0h-.097v-1.02h.099zm0-1.02h.002zm3.504.024-.007 1.02-.108-.001h-.109l-.113-.001-.109-.001-.106-.001h-.11l-.112-.001-.106-.001h-.11l-.112-.001-.11-.001-.105-.001h-.11l-.11-.001h-.109l-.113-.001-.106-.001h-.109l-.113-.001-.106-.001h-.11l-.109-.001h-.11l-.11-.001h-.108l-.114-.001-.106-.001h-.108l-.11-.001h-.11l-.109-.001h-.11l.005-1.02h.329l.11.002h.222l.106.002h.328l.11.002h.222l.106.002h.222l.106.002h.329l.112.002h.11l.105.002h.223l.105.002h.223l.109.002h.215zm1.192 1.03-1.199-.01.007-1.02 1.199.01h.002zm.007-1.02h.007-.007m.183 1.022-.193-.002.012-1.02.193.002zm1.003.01-1.003-.01.012-1.02 1.003.01zm3.175-.98-.014 1.019-.098-.001-.098-.001-.099-.001-.099-.001-.102-.001-.098-.002-.096-.001-.099-.001-.098-.001-.099-.001-.099-.001-.099-.001-.097-.001-.1-.001-.098-.001-.1-.001-.098-.001-.098-.001-.1-.001-.098-.001-.1-.001-.098-.001-.096-.001h-.099l-.101-.001-.1-.001-.098-.001-.1-.001-.097-.001-.1-.001-.098-.001-.1-.001.013-1.02.099.001.099.001.099.001.098.001.099.001.099.001.099.001.096.001h.1l.1.001.099.001.099.001.099.001.099.001.097.001.1.001.098.001.1.001.098.001.098.001.1.001.098.001.1.001.097.001.1.001.102.001.098.002.095.001.1.001.098.001.098.001zm.412 1.025-.426-.006.014-1.02.427.006zm.015-1.02h.008zm.273 1.025-.289-.005.017-1.02.289.005zm0 0h-.008zm.904.013-.903-.013.014-1.02.904.013zm.721.01-.72-.01.014-1.02.72.01h.002zm.015-1.019h.007zm.457 1.028-.473-.008.017-1.02.473.009zm1.15.02-1.15-.02.017-1.02 1.15.02h.004zm.016-1.02h.005l-.107-.001zm.023 1.02-.044-.001.026-1.018.044.001-.024 1.019zm.002 0h-.002l.185.005zm.172.005-.172-.004.021-1.02.172.004zm0 0h-.008zm1.366.025-1.365-.025.019-1.02 1.365.025.005.001zm.02-1.02.004.001-.1-.002zm.016 1.02-.04-.001.028-1.017h.04l-.024 1.02zm.004 0h-.004l.13.004-.126-.002zm.805.018-.805-.017.022-1.02.804.017zm15.365-.592-.043 1.017h.004l-.478-.016-.476-.017-.478-.016-.477-.016-.478-.016-.477-.016-.479-.015-.476-.016-.479-.015-.478-.014-.478-.016-.477-.014-.479-.013-.479-.015-.48-.013-.478-.014-.478-.014-.48-.012-.48-.013-.478-.012-.48-.013-.48-.012-.478-.012-.482-.011-.48-.012-.478-.011-.481-.01-.48-.012-.481-.009-.481-.009-.481-.01-.48-.01.02-1.02.481.01.481.01.481.01.481.012.48.01.481.011.481.011.48.012.481.01.481.013.48.012.48.013.479.012.48.013.48.012.48.014.478.014.48.013.479.015.478.013.48.014.478.016.478.015.479.014.479.016.478.015.478.016.477.016.478.016.477.016.479.017.477.017zm-.004 0h.004l.019.001zm.046 1.021-.086-.004.043-1.017.086.004-.04 1.017zm.004 0h-.004l-.025-.001zm1.18.043-1.18-.043.036-1.017 1.18.043zm.34.012-.34-.012.037-1.017.339.012h.005zm.036-1.017h.02zm.115 1.025-.156-.007.045-1.018.157.007-.042 1.018zm.004 0h-.004l-.015-.001zm1.028.038-1.028-.038.039-1.018 1.027.039zm36.957 1.093-.08 1.015h.001l-1.139-.086-1.14-.084-1.14-.083-1.143-.082-1.143-.08-1.144-.08-1.145-.08-1.145-.077-1.146-.076-1.148-.074-1.147-.072-1.15-.072-1.15-.071-1.15-.07-1.152-.067-1.152-.068-1.152-.065-1.154-.063-1.156-.063-1.154-.061-1.157-.06-1.156-.06-1.16-.057-1.157-.056-1.16-.055-1.16-.054-1.16-.051-1.163-.051-1.163-.05-1.163-.047-1.165-.047-1.164-.046.038-1.018 1.166.046 1.165.047 1.165.048 1.164.05 1.163.05 1.162.052 1.162.054 1.16.054 1.16.057 1.16.057 1.159.06 1.156.06 1.157.06 1.156.063 1.154.064 1.154.065 1.155.067 1.151.068 1.154.07 1.149.07 1.15.072 1.149.072 1.148.075 1.149.076 1.147.077 1.145.08 1.144.079 1.145.08 1.143.082 1.142.086 1.141.084 1.141.086zm-.002 0h.002l.047.004zm-.004 1.021-.075-.006.081-1.015.075.006-.078 1.015zm.002 0h-.002l-.047-.004zm26.412 1.353-.093 1.015h-.005l-.815-.085-.815-.084-.816-.083-.816-.08-.817-.082-.816-.082-.82-.08-.817-.08-.819-.079-.819-.078-.82-.078-.82-.077-.82-.077-.821-.076-.821-.074-.823-.075-.822-.073-.824-.074-.822-.072-.825-.07-.825-.073-.824-.07-.826-.07-.826-.068-.826-.068-.827-.067-.828-.068-.828-.066-.828-.066-.83-.065-.828-.064-.83-.063.077-1.015.83.063.83.064.83.065.828.066.83.066.828.068.827.067.829.068.826.069.826.07.826.07.825.072.825.07.825.073.823.073.825.073.822.075.822.074.823.076.82.077.823.077.82.078.819.079.821.078.818.08.819.08.819.082.816.082.817.083.817.083.815.084.816.084zm-.093 1.015h-.005l.068.006zm-.005 5.955.103-1.013-.005-.001.414.023.388-.008.362-.037.334-.065.309-.09.283-.11.257-.131.23-.147.204-.162.182-.176.154-.186.128-.196.105-.203.08-.21.054-.214.03-.219.006-.218-.022-.22-.046-.22-.074-.22-.1-.217-.132-.212-.16-.21-.194-.199-.228-.192-.264-.183-.3-.167-.339-.153-.378-.133-.418-.113-.458-.09-.5-.062.093-1.015.564.071.528.102.49.132.452.16.417.19.379.212.342.236.307.257.268.28.228.293.19.31.151.322.11.329.073.335.03.34-.007.337-.045.332-.084.328-.12.317-.156.304-.191.287-.223.271-.256.25-.285.228-.316.202-.345.174-.372.147-.397.113-.423.082-.445.047-.467.01-.49-.027zm.005 0h-.005l.08.008zm-26.328-2.369.096-1.015h-.01l.83.064.831.064.83.065.828.066.83.066.828.067.827.068.829.068.826.069.827.07.825.07.825.071.826.072.823.073.824.073.825.073.822.075.822.074.823.076.82.077.823.077.82.078.819.079.821.08.818.079.819.08.818.08.817.083.816.083.818.083.815.084.816.084-.103 1.013-.815-.085-.816-.084-.815-.083-.816-.08-.817-.082-.816-.08-.82-.081-.817-.08-.819-.08-.819-.078-.82-.078-.82-.077-.82-.077-.821-.076-.821-.074-.823-.075-.822-.073-.824-.073-.824-.072-.823-.073-.825-.07-.825-.071-.825-.07-.826-.069-.826-.068-.827-.067-.828-.068-.828-.066-.828-.066-.83-.065-.828-.064-.83-.063h-.009zm.01 0h-.01l-.037-.004zm.01-1.022.075.007-.095 1.015-.076-.007.085-1.015zm-.01 0h.01l.037.004zm-.228-.017.227.017-.074 1.015-.227-.017zm-.074 1.015-.058-.005zm-18.239-1.212.058-1.017.573.032.575.034.573.034.573.033.572.034.574.035.572.035.571.034.572.036.572.036.573.036.57.036.572.038.57.037.571.037.571.037.57.039.571.038.57.039.57.04.57.04.569.039.568.04.57.04.569.04.57.042.568.042.567.04.568.043.567.042.568.042.567.043-.076 1.015-.567-.043-.566-.042-.567-.042-.568-.042-.567-.04-.569-.043-.567-.04-.57-.04-.566-.04-.568-.04-.57-.04-.569-.04-.57-.039-.568-.038-.57-.039-.57-.038-.569-.038-.57-.037-.571-.037-.572-.037-.57-.036-.571-.036-.572-.036-.572-.036-.571-.035-.572-.035-.572-.035-.572-.033-.573-.034-.573-.034-.573-.033zm-.397-1.044.455.027-.058 1.017-.454-.026.056-1.018zm-.001 0 .02.001zm-.176-.009.176.01-.055 1.017-.176-.01zm-.054 1.018h-.001l-.046-.002zm-9.188-.477.045-1.017h.001l.288.013.289.015.287.013.29.014.286.015.287.013.29.015.287.014.288.015.287.014.288.015.288.014.287.015.287.014.289.015.287.015.287.015.287.015.288.015.287.015.287.015.288.016.286.015.288.016.287.015.286.016.287.016.287.015.287.016.287.016.287.017.286.015-.057 1.018-.286-.016-.287-.017-.285-.015-.287-.016-.287-.016-.287-.015-.286-.016-.287-.016-.287-.015-.287-.016-.285-.015-.288-.015-.286-.016-.288-.014-.288-.016-.286-.014-.288-.016-.286-.014-.287-.015-.288-.014-.287-.015-.288-.014-.288-.015-.287-.014-.288-.015-.286-.014-.288-.014-.289-.014-.286-.015-.288-.013-.289-.014-.288-.014zm.045-1.017h.001l.017.001zm-.3-.013.3.013-.045 1.017-.3-.013h-.001zm-.045 1.017zh-.022zm-6.255-.273v-1.02l.02.001.197.008.196.007.198.008.196.008.196.008.197.007.197.008.197.008.195.008.197.008.196.008.196.008.197.008.196.008.197.008.195.008.197.008.197.01.195.007.196.008.198.008.196.01.194.007.197.008.197.01.195.007.197.008.195.01.196.007.196.01.196.007.197.01-.048 1.017-.195-.01-.195-.007-.196-.01-.196-.007-.196-.01-.194-.007-.197-.008-.197-.01-.195-.007-.197-.008-.196-.01-.195-.007-.196-.008-.197-.008-.197-.01-.195-.007-.195-.008-.197-.008-.196-.008-.197-.008-.196-.008-.196-.008-.196-.008-.196-.008-.197-.008-.195-.008-.197-.007-.198-.008-.196-.008-.195-.008-.196-.007-.197-.008zm0-1.02.02.001h-.03zm-.009 0h.009v1.02h-.028999999999999998zm0 1.02h-.02.03zm-1.572-1.082 1.592.063-.04 1.018-1.593-.064.04-1.017zm-.001 0h.021zm-.764-.03.764.03-.038 1.017-.764-.029zm-1.128-.042 1.128.043-.038 1.017-1.128-.043h-.005zm-.038 1.017h-.027zm-.008-1.02.051.002-.048 1.018-.051-.002.042-1.018zm-.006 0h.006l.021.001zm-1.18-.043 1.18.043-.036 1.018-1.18-.044.032-1.017zm-.005 0h.015-.015zm-.087-.002.087.002-.029 1.017-.087-.002h-.004zm-.029 1.017h-.018.019zm-1.39-1.066 1.423.049-.036 1.017-1.422-.049h-.001l.037-1.017zm-.035 1.017h-.012.012zm-.15-1.025.187.007-.038 1.018-.186-.007.035-1.018zm-.001 0h.014-.014zm-.669-.021.669.021-.034 1.018-.668-.022zm-.94-.03.94.03-.032 1.017-.94-.03zm-1.428-.046 1.428.046-.031 1.017-1.428-.046.029-1.017zm-.002 0h.014-.013zm-.181-.005.181.005-.026 1.017-.182-.005h-.002zm-.027 1.017h-.018.018000000000000002zm-1.584-1.067 1.613.05-.031 1.017-1.613-.05zm0 0 .027.001zm-.576-.016.575.016-.028 1.018-.576-.017zm-4.263.905.034-1.017h-.005l.132.004.133.002.133.004.133.004.131.004.132.004.132.002.134.004.132.004.133.004.131.004.131.002.134.004.133.004.132.004.133.004.13.004.133.004.133.004.132.004.132.004.132.004.133.004.132.004.131.004.133.004.132.004.132.004.132.004.133.004.131.004.134.004-.029 1.017-.131-.004-.131-.004-.133-.004-.132-.004-.132-.004-.132-.004-.133-.004-.131-.004-.133-.004-.132-.004-.133-.004-.13-.004-.133-.004-.133-.004-.132-.004-.132-.004-.132-.004-.133-.004-.132-.004-.132-.004-.13-.002-.135-.004-.132-.004-.133-.004-.13-.004-.133-.002-.134-.004-.131-.004-.133-.004-.131-.004-.133-.002-.132-.004zm.005 0h-.018.018zm-.007-1.018h.036l-.033 1.018-.036-.001.027-1.017zm-.006 0h.018-.018000000000000002m-.48-.011.48.01-.021 1.018-.481-.01h-.001zm-1.136-.027 1.136.027-.023 1.017-1.137-.026h-.01zm-.024 1.018h-.022.022m-.019-1.02.054.002-.046 1.017-.053-.002.033-1.018zm-.012-.001h.012l-.04-.001zm-1.19-.025 1.19.025-.021 1.02-1.19-.026zm-.927-.02.927.02-.021 1.02-.928-.02zm-.022 1.02h-.001l.548.011zm-.24-1.025.263.006-.024 1.018-.263-.006.022-1.019zm-.002 0h.002l-.33-.007zm-.806-.016.806.015-.02 1.02-.805-.015zm-.385-.007.385.007-.019 1.02-.385-.007zm-1.193-.023 1.193.023-.02 1.02-1.192-.023-.005-.001zm-.019 1.02-.005-.001.125.004zm-.019-1.02.043.001-.029 1.017h-.043l.023-1.02zm-.006 0h.006l-.098-.002zm-1.15-.02 1.15.02-.017 1.019-1.15-.02zm-.47300000000000003-.008999999999999897.474.008-.017 1.02-.474-.008.013-1.02zm-.004 0h.008-.009000000000000001zm-.342-.004.342.004-.01 1.02-.34-.004h-.005zm-.009 1.02h-.01.011zm-1.103-1.038 1.116.018-.016 1.02-1.116-.018zm0 0h.01zm-.168-.002.167.002-.014 1.02-.167-.002h-.001zm-.014 1.02h-.008.007m-.274-1.025.29.005-.017 1.02-.29-.005zm0 0h.006zm-2.637.987.011-1.02H494l.078.002h.16799999999999998l.082.002h.081l.08.002h.166l.083.002h.082l.081.002h.161l.085.002h.082l.083.002h.08l.083.002h.082l.081.002h.083l.082.002h.16l.086.002h.081l.082.002h.083l.082.002h.081l.082.002-.014 1.02-.082-.001-.082-.001-.082-.001-.082-.001-.082-.001-.082-.001-.078-.001h-.083l-.084-.001-.083-.001-.082-.001-.081-.001-.082-.001-.083-.001-.08-.001-.083-.001-.082-.001-.078-.001h-.082l-.086-.001-.081-.001-.083-.001-.082-.001-.078-.001h-.082l-.086-.001-.081-.001-.082-.001-.08-.001h-.081l-.085-.001zm-.872-1.03.884.01-.012 1.019-.884-.01zm-.223-.002.223.002-.012 1.02-.223-.002.01-1.02zm-.001 0h.008zm-1.054-.009 1.054.01-.009 1.019-1.054-.01zm-1.2-.012 1.2.012-.009 1.02-1.2-.012zm0 0h.005zm-.765-.006.764.006-.007 1.02-.764-.006zm0 0h.003-.002zm-.435-.002.434.002-.005 1.02-.434-.002h-.001zm-.005 1.02h-.005.004m-.663-1.025.669.005-.007 1.02-.669-.005zm0 0h.004zm-1.116-.006 1.115.006-.005 1.02-1.115-.006zm-.614-.002.614.002-.005 1.02-.614-.002zm-1.2029999999999998-.006000000000000005 1.202.006-.005 1.02-1.202-.006zm0 0h.003-.002zm-3.607 1.014v-1.02h1.0170000000000001l.112.001h.677l.112.001h.45l.114.001h.45l.112.001h.338l.113.001h.111l-.002 1.02h-.113l-.113-.001h-.338l-.112-.001h-.451l-.113-.001h-.45l-.112-.001h-.677l-.112-.001h-1.012zM482.37 265.18l-22.74 11.455-.451-.912 22.74-11.455h.451zm-.451-.912.225-.113.226.113zm22.74 12.367-22.74-11.455.451-.911 22.74 11.455v.911zm.451-.911.905.456-.905.455zm-23.191 11.455 22.74-11.455.451.911-22.74 11.455h-.451zm.451.911-.225.113-.226-.113zm-22.74-12.367 22.74 11.455-.451.912-22.74-11.455v-.912zm-.451.912-.905-.456.905-.456z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 269.15c5.651 0 10.234 3.078 10.234 6.873 0 3.797-4.583 6.873-10.234 6.873s-10.232-3.076-10.232-6.873c0-3.796 4.581-6.873 10.232-6.873",style:{fill:"#0c4076"}}),(0,h.jsx)("path",{d:"M492.88 276.02h-1.012l-.01-.315-.037-.31-.058-.307-.08-.304-.103-.299-.124-.293-.146-.29-.168-.284-.187-.28-.208-.272-.228-.267-.248-.26-.267-.25-.285-.245-.303-.236-.32-.223-.338-.217-.352-.205-.369-.195-.383-.183-.397-.17-.411-.16-.425-.145-.435-.132-.447-.118-.459-.105-.469-.09-.476-.073-.488-.06-.496-.04-.5-.028-.51-.007v-1.02l.543.01.537.027.529.046.521.061.512.08.503.096.492.111.483.128.47.144.459.158.446.17.433.188.42.2.404.214.39.227.374.238.358.253.34.264.323.276.304.287.284.299.264.307.244.32.223.331.2.34.176.35.15.358.127.365.099.374.073.381.042.388zm-10.74 7.383v-1.02l.51-.007.501-.026.495-.042.489-.06.476-.072.47-.09.457-.105.448-.118.435-.131.425-.147.41-.159.398-.17.383-.183.369-.195.352-.205.338-.216.32-.226.303-.235.285-.243.266-.25.249-.26.226-.268.21-.273.187-.279.168-.285.146-.288.124-.295.102-.298.08-.305.059-.306.036-.31.01-.316h1.013l-.016.393-.043.387-.073.381-.099.374-.126.366-.15.36-.177.348-.2.34-.223.33-.242.319-.265.31-.284.298-.305.288-.323.276-.34.264-.357.25-.374.24-.39.226-.405.214-.419.2-.433.188-.447.17-.458.16-.47.142-.484.128-.492.112-.502.095-.512.08-.522.062-.529.047-.537.026zm-10.738-7.383h1.012l.011.315.036.31.058.307.08.304.103.299.124.294.146.289.168.285.186.279.209.272.228.268.248.26.267.251.284.243.303.234.32.227.338.216.352.204.369.195.383.183.397.17.41.16.426.146.434.131.448.118.458.105.47.09.476.074.488.059.495.042.502.026.51.007v1.02l-.544-.01-.537-.026-.529-.047-.521-.06-.512-.082-.503-.095-.492-.111-.483-.128-.47-.143-.459-.159-.446-.17-.434-.188-.419-.2-.404-.214-.39-.226-.373-.24-.357-.25-.341-.264-.323-.277-.304-.287-.284-.298-.264-.31-.245-.32-.222-.329-.2-.34-.176-.349-.15-.36-.127-.365-.099-.374-.072-.381-.043-.388zm10.738-7.383v1.02l-.51.007-.501.027-.495.041-.489.06-.476.073-.47.09-.457.104-.448.118-.435.133-.425.145-.41.159-.398.17-.383.183-.369.195-.352.206-.336.216-.322.225-.303.235-.284.244-.266.251-.248.26-.228.267-.21.272-.185.28-.169.284-.145.29-.125.293-.102.298-.08.305-.059.306-.035.31-.011.316h-1.012l.015-.392.043-.388.073-.38.099-.375.126-.365.15-.359.178-.35.199-.339.222-.33.245-.32.263-.308.284-.299.305-.287.322-.276.342-.265.357-.252.372-.238.39-.227.405-.214.419-.2.433-.187.447-.171.458-.158.47-.144.484-.128.492-.111.502-.095.512-.081.522-.061.529-.046.537-.028z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 211.65c4.27 0 7.732 3.488 7.732 7.79s-3.462 7.79-7.732 7.79-7.73-3.488-7.73-7.79 3.46-7.79 7.73-7.79",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"M490.38 219.44h-1.012l-.008-.375-.028-.37-.047-.364-.064-.358-.08-.354-.098-.344-.113-.338-.129-.33-.146-.323-.158-.314-.175-.304-.187-.296-.202-.285-.215-.275-.226-.265-.24-.252-.251-.242-.263-.229-.273-.216-.283-.203-.294-.19-.302-.175-.311-.16-.32-.146-.328-.13-.336-.115-.341-.098-.351-.08-.356-.064-.362-.048-.366-.028-.372-.008v-1.02l.422.01.42.033.41.053.407.074.398.092.392.11.383.132.374.149.365.166.355.184.345.2.334.215.323.232.312.245.298.263.287.273.27.288.261.3.244.315.23.326.214.336.198.348.182.357.165.368.148.377.13.386.11.394.092.402.073.409.052.415.033.422zm-8.238 8.3v-1.02l.373-.008.366-.028.362-.048.356-.064.35-.08.342-.099.335-.114.329-.13.32-.147.311-.16.302-.175.294-.19.283-.202.273-.217.263-.228.25-.242.24-.253.227-.264.215-.276.202-.285.187-.296.174-.304.16-.314.145-.322.129-.33.113-.339.098-.344.08-.353.063-.359.048-.364.027-.37.008-.375h1.013l-.011.426-.032.422-.053.415-.073.41-.092.4-.11.395-.13.386-.148.377-.164.368-.183.357-.198.348-.214.336-.23.326-.244.314-.26.3-.27.29-.287.272-.299.263-.311.245-.324.232-.334.215-.345.2-.355.184-.365.166-.373.15-.384.13-.391.11-.399.093-.406.074-.412.053-.419.032zm-8.236-8.3h1.012l.008.375.028.37.047.364.064.358.08.354.097.344.114.338.129.33.145.323.159.314.173.304.189.296.2.285.216.275.226.265.24.252.252.242.261.23.273.215.283.203.294.19.302.175.312.16.32.146.328.13.335.115.342.098.35.08.356.064.362.049.366.027.373.008v1.02l-.423-.01-.419-.033-.412-.053-.405-.074-.4-.092-.39-.11-.384-.132-.373-.149-.366-.166-.354-.184-.345-.2-.334-.215-.324-.232-.311-.246-.298-.261-.285-.273-.273-.29-.26-.3-.244-.314-.23-.326-.214-.336-.197-.348-.183-.357-.164-.368-.148-.377-.13-.386-.11-.394-.092-.402-.073-.409-.053-.415-.032-.422zm8.236-8.3v1.02l-.372.008-.367.028-.361.048-.356.064-.351.08-.341.099-.336.114-.328.13-.32.147-.312.16-.302.175-.293.19-.283.202-.273.216-.262.23-.252.241-.24.253-.225.264-.216.276-.2.285-.19.296-.173.304-.158.314-.146.322-.129.33-.113.339-.098.344-.08.353-.063.359-.048.364-.028.37-.008.375h-1.012l.01-.426.033-.422.053-.415.072-.41.092-.4.11-.395.13-.386.148-.377.165-.368.183-.357.197-.348.214-.336.23-.326.244-.314.26-.3.273-.29.285-.272.297-.261.312-.247.323-.232.335-.215.345-.2.354-.184.365-.166.374-.15.383-.13.392-.11.398-.093.406-.074.412-.053.419-.032z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 213.71c3.14 0 5.684 2.564 5.684 5.727s-2.545 5.728-5.684 5.728-5.684-2.564-5.684-5.728 2.545-5.727 5.684-5.727",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"M488.33 219.44h-1.012l-.006-.268-.02-.266-.034-.261-.045-.257-.058-.253-.069-.246-.082-.243-.092-.237-.104-.231-.115-.225-.124-.218-.135-.211-.144-.206-.154-.197-.162-.19-.174-.18-.179-.174-.187-.163-.196-.156-.204-.145-.21-.136-.216-.125-.223-.116-.23-.104-.235-.093-.24-.083-.245-.07-.251-.057-.256-.046-.259-.034-.263-.02-.267-.006v-1.02l.32.008.313.025.31.039.305.055.298.07.295.084.287.098.282.111.275.127.266.137.26.149.25.162.242.175.234.184.226.197.215.205.204.217.196.227.182.236.173.244.161.253.148.26.137.269.125.276.11.285.098.29.083.296.07.3.054.309.039.311.025.317zm-6.19 6.238v-1.02l.266-.006.263-.02.26-.034.255-.046.25-.057.245-.07.241-.083.236-.093.229-.104.223-.116.216-.125.21-.136.204-.145.196-.155.188-.164.179-.174.173-.18.162-.19.154-.197.144-.205.135-.212.123-.217.115-.227.105-.23.092-.238.082-.241.07-.247.057-.254.045-.257.033-.261.02-.266.007-.268h1.012l-.008.321-.025.316-.038.312-.055.308-.07.302-.083.297-.097.29-.11.282-.125.277-.136.268-.149.262-.161.253-.173.244-.183.236-.196.227-.204.216-.215.206-.225.197-.234.184-.242.175-.251.162-.26.15-.265.136-.275.126-.283.112-.286.098-.295.084-.299.07-.305.055-.31.038-.313.026zm-6.191-6.238h1.012l.006.268.02.266.034.261.045.257.058.254.069.247.082.241.092.237.105.231.115.227.123.217.135.212.144.205.154.198.162.188.174.18.179.175.187.164.196.155.204.145.21.136.216.125.223.116.23.104.235.093.24.083.245.07.251.057.256.046.259.034.263.02.267.006v1.02l-.32-.008-.313-.025-.31-.039-.305-.055-.298-.07-.295-.084-.287-.097-.282-.112-.275-.126-.266-.138-.26-.149-.25-.162-.242-.174-.234-.184-.226-.198-.215-.205-.204-.217-.196-.227-.182-.236-.173-.244-.161-.253-.15-.262-.136-.268-.124-.276-.11-.283-.098-.29-.083-.297-.07-.302-.054-.308-.038-.311-.025-.317zm6.19-6.237v1.02l-.266.006-.264.02-.259.034-.255.046-.25.058-.245.07-.242.082-.235.093-.229.104-.223.116-.216.125-.21.136-.204.145-.196.155-.188.164-.179.174-.173.18-.162.19-.154.197-.144.205-.135.212-.124.218-.115.225-.104.23-.092.238-.082.242-.07.247-.057.253-.045.257-.034.26-.02.267-.006.268h-1.012l.008-.321.025-.317.038-.311.055-.308.07-.3.083-.298.096-.288.112-.285.125-.277.136-.268.148-.261.161-.253.173-.244.183-.235.196-.228.204-.216.215-.206.225-.197.234-.184.242-.174.251-.163.26-.149.265-.137.275-.126.283-.112.286-.098.295-.084.299-.07.305-.055.31-.038.313-.026z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M482.14 215.83c1.977 0 3.579 1.614 3.579 3.606s-1.602 3.605-3.579 3.605c-1.976 0-3.579-1.615-3.579-3.605 0-1.992 1.603-3.606 3.579-3.606",style:{fill:"#0c4076"}}),(0,h.jsx)("path",{d:"M486.23 219.44h-1.012l-.004-.16-.01-.157-.022-.154-.027-.154-.033-.15-.042-.146-.049-.143-.055-.141-.062-.137-.068-.134-.073-.13-.08-.123-.085-.123-.092-.118-.097-.113-.102-.106-.105-.102-.112-.097-.117-.093-.122-.086-.123-.081-.129-.073-.132-.069-.136-.062-.14-.056-.142-.049-.145-.042-.148-.034-.153-.026-.153-.022-.156-.01-.16-.005v-1.02l.21.007.209.015.205.027.198.036.198.045.196.057.19.064.185.074.181.082.176.09.172.1.166.107.16.115.152.122.148.129.144.136.134.144.128.149.12.154.115.161.107.167.099.173.09.177.08.183.074.186.064.192.056.197.045.2.036.2.026.206.016.21zm-4.085 4.116v-1.02l.159-.004.156-.011.153-.022.153-.026.148-.034.146-.042.142-.05.14-.055.135-.062.133-.069.129-.073.123-.08.121-.087.117-.093.113-.097.105-.102.101-.106.097-.113.092-.118.086-.123.08-.124.072-.13.068-.133.063-.137.054-.14.05-.144.041-.147.034-.149.026-.154.022-.154.01-.157.004-.16h1.013l-.006.21-.016.21-.026.208-.036.2-.046.199-.056.197-.063.191-.074.187-.081.183-.09.176-.099.174-.106.167-.114.16-.121.155-.128.149-.135.144-.143.136-.148.129-.153.121-.16.116-.166.107-.171.1-.176.09-.181.082-.185.074-.19.064-.196.056-.198.046-.198.036-.206.027-.208.015zm-4.085-4.116h1.013l.004.16.01.156.022.154.026.155.034.148.041.147.05.144.054.14.062.137.068.135.073.128.08.125.086.122.092.119.097.112.101.107.106.102.111.097.119.093.12.086.124.081.128.073.134.069.136.062.138.056.144.049.145.042.147.034.154.026.153.022.155.01.159.005v1.02l-.21-.007-.207-.015-.205-.027-.2-.036-.199-.046-.193-.056-.191-.064-.186-.074-.18-.082-.176-.09-.17-.1-.168-.107-.159-.116-.154-.121-.147-.129-.144-.136-.135-.145-.128-.148-.12-.155-.115-.16-.106-.169-.1-.172-.089-.178-.08-.18-.075-.188-.063-.192-.056-.195-.046-.2-.035-.202-.027-.206-.015-.21zm4.085-4.115v1.02l-.159.003-.155.011-.153.022-.154.026-.146.034-.146.042-.143.05-.139.055-.136.062-.133.069-.128.073-.124.08-.12.087-.12.092-.11.098-.108.102-.1.106-.096.113-.092.118-.086.123-.08.123-.073.13-.068.134-.062.137-.055.14-.049.144-.042.146-.033.15-.026.154-.022.153-.01.158-.005.16h-1.012l.006-.21.016-.211.026-.207.036-.2.045-.2.056-.196.064-.192.074-.186.08-.183.09-.177.1-.173.105-.167.115-.161.12-.154.128-.15.136-.143.144-.136.147-.129.153-.122.16-.115.166-.107.171-.1.177-.09.179-.082.186-.074.191-.064.193-.057.2-.045.2-.036.204-.027.208-.015z",style:{fill:"#21231e"}})]}),(0,h.jsx)("path",{d:"M314.58 301.17v271.324c.001 48.555 18.82 92.636 49.174 124.58s72.248 51.749 118.39 51.749h.006c46.145-.001 88.036-19.805 118.39-51.747 30.356-31.943 49.174-76.026 49.175-124.58v-271.31c-111.71-.01-223.43.015-335.14-.001z",style:{fill:"#c6363c"}}),(0,h.jsx)("path",{d:"M313.39 300v272.501l.062 4.57.155 4.539.28 4.507.372 4.476.496 4.446.59 4.414.683 4.383.807 4.352.9 4.29.992 4.259 1.087 4.227 1.179 4.197 1.272 4.134 1.396 4.104 1.459 4.04 1.552 4.011 1.644 3.948 1.738 3.917 1.831 3.854 1.924 3.793 1.986 3.73 2.08 3.7 2.14 3.636 2.235 3.575 2.327 3.513 2.39 3.45 2.482 3.389 2.544 3.295 2.607 3.264 2.7 3.202 2.762 3.108 2.824 3.047 1.706-1.617-2.792-3.015-2.7-3.078-2.669-3.14-2.576-3.201-2.513-3.295-2.452-3.326-2.358-3.42-2.265-3.45-2.235-3.544-2.11-3.575-2.048-3.637-1.986-3.7-1.862-3.76-1.8-3.793-1.737-3.855-1.614-3.885-1.552-3.98-1.427-3.979-1.366-4.04-1.272-4.104-1.179-4.134-1.055-4.166-.993-4.197-.869-4.258-.807-4.29-.683-4.321-.558-4.352-.497-4.414-.372-4.415-.28-4.445-.154-4.476-.063-4.508v-270.14h332.78v270.14l-.062 4.508-.155 4.476-.28 4.445-.371 4.415-.466 4.414-.59 4.352-.682 4.32-.776 4.29-.9 4.26-.962 4.196-1.086 4.166-1.18 4.134-1.272 4.103-1.334 4.041-1.458 3.98-1.552 3.979-1.614 3.885-1.706 3.855-1.8 3.792-1.893 3.762-1.986 3.699-2.048 3.637-2.11 3.575-2.204 3.544-2.296 3.45-2.358 3.42-2.452 3.326-2.513 3.295-2.576 3.202-2.638 3.14-2.73 3.077-2.793 3.015-2.855 2.922-2.948 2.891-2.98 2.798-3.04 2.705-3.134 2.642-3.166 2.549-3.227 2.487-3.29 2.424-3.35 2.332-3.414 2.238-3.445 2.145-3.506 2.052-3.569 1.99-3.6 1.895-3.661 1.803-3.724 1.71-3.755 1.617-3.786 1.523-3.848 1.43-3.879 1.336-3.91 1.244-3.972 1.119-4.003 1.026-4.034.932-4.065.84-4.096.715-4.159.59-4.158.529-4.189.373-4.251.28-4.252.186-4.282.062v2.363l4.344-.063 4.345-.186 4.282-.28 4.251-.404 4.252-.497 4.19-.622 4.157-.746 4.127-.84 4.097-.932 4.065-1.057 4.034-1.15 3.972-1.244 3.94-1.336 3.88-1.461 3.879-1.555 3.786-1.616 3.755-1.74 3.723-1.835 3.662-1.927 3.6-2.02 3.568-2.084 3.507-2.176 3.444-2.269 3.414-2.362 3.32-2.456 3.29-2.518 3.227-2.58 3.165-2.705 3.072-2.735 3.041-2.83 2.98-2.921 2.885-2.985 2.824-3.046 2.762-3.109 2.7-3.201 2.607-3.233 2.544-3.326 2.483-3.389 2.39-3.45 2.326-3.513 2.235-3.575 2.141-3.637 2.08-3.7 2.016-3.73 1.893-3.792 1.831-3.855 1.738-3.916 1.644-3.948 1.552-4.01 1.49-4.042 1.365-4.103 1.272-4.134 1.18-4.197 1.117-4.228.993-4.258.9-4.321.775-4.321.683-4.383.59-4.414.496-4.446.372-4.476.28-4.508.155-4.57.062-4.538V300z",style:{fill:"#fff"}}),(0,h.jsxs)("g",{style:{fill:"#fff",stroke:"#21231e",strokeWidth:.99388075},children:[(0,h.jsx)("path",{d:"M483.67 734.79c1.456-.24 3.913.067 5.77-1.393 2.47-1.943 1.49-9.787 1.267-14.751-1.135-25.354-2.173-68.034-3.463-127.97-2.113-.288-3.65-.14-5.095.078-1.444-.218-2.982-.366-5.094-.078-1.29 59.939-2.328 102.62-3.465 127.97-.221 4.964-1.202 12.809 1.27 14.75 1.856 1.461 4.313 1.153 5.769 1.394z"}),(0,h.jsx)("path",{d:"M499.55 734.06c-1.472-.106-3.89.423-5.872-.862-2.636-1.71-2.853-9.733-3.08-14.696-1.163-25.353-3.508-67.83-7.646-127.64 2.077-.479 3.623-.47 5.08-.385q.342-.084.694-.16c9.527 59.167 13.124 101.14 19.648 126.46.9 3.495 2.835 12.253-.176 15.098-1.717 1.623-4.192 1.54-5.62 1.91l-3.027.277z"}),(0,h.jsx)("path",{d:"M518.2 731.39c-1.475.027-3.836.774-5.926-.327-2.78-1.464-2.667-9.472-3.906-14.28-6.525-25.32-10.122-67.309-19.653-126.5 2.026-.666 3.564-.797 5.025-.844l.206-.068c15.15 57.536 19.692 98.095 31.45 123.15 1.09 3.471 4.053 12.69 1.22 15.903-1.565 1.772-4.036 1.913-5.425 2.413l-2.99.55z"}),(0,h.jsx)("path",{d:"M536.98 726.08c-1.465.174-3.935 1.54-6.123.65-2.911-1.18-3.366-9.746-5.461-14.208-11.813-25.17-16.342-65.982-31.66-123.94 1.95-.862 3.47-1.146 4.918-1.337 1.327-.61 1.075-.924 3.185-1.233 17.797 57.241 23.578 97.056 40.366 121.76 2.71 3.988 4.694 11.975 2.856 14.525-1.382 1.919-3.827 2.304-5.16 2.939l-2.922.842zM464.75 734.06c1.472-.106 3.89.423 5.873-.862 2.636-1.71 2.852-9.733 3.08-14.696 1.163-25.353 3.507-67.83 7.645-127.64-2.077-.479-3.622-.47-5.08-.385q-.341-.084-.694-.16c-9.527 59.167-13.124 101.14-19.648 126.46-.9 3.495-2.833 12.253.176 15.098 1.718 1.623 4.192 1.54 5.62 1.91l3.029.277z"}),(0,h.jsx)("path",{d:"M446.09 731.39c1.474.027 3.836.774 5.926-.327 2.779-1.464 2.666-9.472 3.905-14.28 6.524-25.32 10.122-67.309 19.655-126.5-2.026-.666-3.566-.797-5.026-.844l-.205-.068c-15.151 57.536-19.693 98.095-31.451 123.15-1.089 3.471-4.054 12.69-1.219 15.903 1.564 1.772 4.036 1.913 5.425 2.413l2.99.55z"}),(0,h.jsx)("path",{d:"M427.31 726.08c1.465.174 3.935 1.54 6.123.65 2.911-1.18 3.367-9.746 5.462-14.208 11.812-25.17 16.341-65.982 31.66-123.94-1.951-.862-3.47-1.146-4.918-1.337-1.328-.61-1.076-.924-3.186-1.233-17.797 57.241-23.578 97.056-40.366 121.76-2.71 3.988-4.693 11.975-2.856 14.525 1.382 1.919 3.827 2.304 5.16 2.939l2.922.842zM527.05 682.84c-1.34.081-3.36.899-5.464-.105-2.799-1.334-4.626-9.066-6.126-13.873-11.915-23.54-22.791-65.347-40.632-123.45 1.727-.728 3.108-.914 4.432-1.012 1.175-.517 2.454-.988 4.378-1.162 19.215 57.497 27.843 99.074 46.623 121.97 3.101 3.78 5.407 12.025 3.932 14.414-1.107 1.797-3.337 2.026-4.515 2.567l-2.63.648h.002z"}),(0,h.jsx)("path",{d:"M511.85 685.82c-1.344-.027-3.45.627-5.427-.54-2.632-1.553-3.562-9.395-4.501-14.3-4.802-25.051-13.658-67.096-26.244-126.12 1.804-.586 3.2-.66 4.528-.654 1.23-.42 2.556-.787 4.492-.807 14.871 58.657 18.311 102.58 32.376 125.13 2.563 4.109 3.998 12.402 2.257 14.663-1.31 1.7-3.556 1.75-4.79 2.195l-2.692.436z"}),(0,h.jsx)("path",{d:"M496.38 687.58c-1.335-.134-3.504.349-5.34-.97-2.44-1.757-2.464-9.636-2.835-14.592-1.897-25.321-5.876-67.88-11.614-127.64 1.863-.44 3.26-.403 4.583-.29 1.272-.32 2.634-.58 4.563-.445 8.055 59.573 12.736 102.71 17.833 127.14 1.017 4.873 2.552 12.664.558 14.776-1.499 1.588-3.74 1.458-5.018 1.803z"}),(0,h.jsx)("path",{d:"M437.24 682.84c1.34.081 3.36.899 5.464-.105 2.799-1.334 4.626-9.066 6.126-13.873 11.915-23.54 22.791-65.347 40.632-123.45-1.727-.728-3.108-.914-4.432-1.012-1.174-.517-2.454-.988-4.378-1.162-19.215 57.497-27.843 99.074-46.623 121.97-3.1 3.78-5.407 12.025-3.932 14.414 1.108 1.797 3.337 2.026 4.515 2.567l2.63.648h-.002z"}),(0,h.jsx)("path",{d:"M452.44 685.82c1.343-.027 3.448.627 5.427-.54 2.632-1.553 3.56-9.395 4.5-14.3 4.802-25.051 13.659-67.096 26.245-126.12-1.805-.586-3.2-.66-4.53-.654-1.228-.42-2.554-.787-4.49-.807-14.871 58.657-18.311 102.58-32.378 125.13-2.563 4.109-3.999 12.402-2.256 14.663 1.31 1.7 3.555 1.75 4.789 2.195l2.693.436z"}),(0,h.jsx)("path",{d:"M467.92 687.58c1.335-.134 3.505.349 5.34-.97 2.44-1.757 2.464-9.636 2.836-14.592 1.898-25.321 5.876-67.88 11.614-127.64-1.864-.44-3.26-.403-4.582-.29-1.273-.32-2.634-.58-4.565-.445-8.054 59.573-12.735 102.71-17.832 127.14-1.017 4.873-2.553 12.664-.56 14.776 1.5 1.588 3.74 1.458 5.02 1.803l2.73.218z"}),(0,h.jsx)("path",{d:"M483.52 688.09c1.312-.24 3.528.068 5.203-1.392 2.228-1.942 1.344-9.788 1.143-14.752-1.024-25.356-1.96-68.036-3.123-127.98-1.906-.288-3.292-.14-4.595.078-1.303-.217-2.688-.366-4.594-.078-1.164 59.942-2.1 102.62-3.123 127.98-.201 4.964-1.085 12.81 1.142 14.752 1.676 1.46 3.891 1.152 5.204 1.392z"}),(0,h.jsx)("path",{d:"M516.54 647.97c-1.027.081-2.574.9-4.186-.103-2.143-1.336-3.542-9.067-4.691-13.873-9.126-23.54-17.457-65.347-31.123-123.45 1.324-.728 2.38-.913 3.394-1.013.9-.517 1.88-.987 3.354-1.162 14.718 57.497 21.327 99.074 35.711 121.97 2.375 3.78 4.142 12.025 3.012 14.415-.849 1.796-2.557 2.026-3.457 2.566l-2.015.65z"}),(0,h.jsx)("path",{d:"M504.9 650.96c-1.03-.027-2.641.626-4.157-.54-2.016-1.552-2.728-9.395-3.448-14.3-3.677-25.053-10.46-67.098-20.1-126.12 1.382-.586 2.45-.66 3.467-.654.942-.42 1.958-.787 3.441-.807 11.391 58.657 14.025 102.58 24.8 125.13 1.963 4.109 3.062 12.402 1.728 14.663-1.004 1.7-2.723 1.75-3.669 2.195l-2.061.436z"}),(0,h.jsx)("path",{d:"M493.05 652.72c-1.022-.135-2.683.349-4.09-.972-1.87-1.755-1.887-9.635-2.172-14.592-1.452-25.32-4.5-67.88-8.895-127.64 1.428-.438 2.499-.401 3.51-.289.975-.32 2.02-.579 3.497-.444 6.17 59.573 9.755 102.71 13.659 127.14.779 4.873 1.955 12.664.428 14.776-1.148 1.588-2.865 1.458-3.845 1.801l-2.09.22z"}),(0,h.jsx)("path",{d:"M447.75 647.97c1.027.081 2.574.9 4.186-.103 2.143-1.336 3.542-9.067 4.691-13.873 9.126-23.54 17.457-65.347 31.123-123.45-1.324-.728-2.38-.913-3.394-1.013-.9-.517-1.879-.987-3.354-1.162-14.718 57.497-21.327 99.074-35.711 121.97-2.375 3.78-4.142 12.025-3.012 14.415.849 1.796 2.557 2.026 3.457 2.566l2.015.65z"}),(0,h.jsx)("path",{d:"M459.39 650.96c1.029-.027 2.641.626 4.157-.54 2.015-1.552 2.728-9.395 3.447-14.3 3.678-25.053 10.462-67.098 20.1-126.12-1.381-.586-2.45-.66-3.467-.654-.941-.42-1.958-.787-3.44-.807-11.391 58.657-14.025 102.58-24.8 125.13-1.963 4.109-3.063 12.402-1.728 14.663 1.003 1.7 2.723 1.75 3.667 2.195l2.063.436z"}),(0,h.jsx)("path",{d:"M471.25 652.72c1.023-.135 2.685.349 4.09-.972 1.87-1.755 1.888-9.635 2.172-14.592 1.453-25.32 4.5-67.88 8.895-127.64-1.428-.438-2.497-.401-3.51-.289-.975-.32-2.018-.579-3.496-.444-6.17 59.573-9.755 102.71-13.66 127.14-.778 4.873-1.955 12.664-.427 14.776 1.149 1.588 2.864 1.458 3.844 1.801z"}),(0,h.jsx)("path",{d:"M483.2 653.23c1.006-.24 2.703.068 3.987-1.392 1.706-1.942 1.03-9.787.876-14.751-.785-25.357-1.503-68.037-2.394-127.98-1.46-.288-2.522-.14-3.52.078-.998-.218-2.06-.366-3.518-.078-.892 59.942-1.61 102.62-2.394 127.98-.154 4.964-.83 12.809.876 14.75 1.283 1.461 2.98 1.153 3.986 1.393z"}),(0,h.jsx)("path",{d:"M474.88 559.13c-.079 4.248-.13 9.015-.162 13.914l-.047.015-10.59 2.201c-.023 4.831 11.917 55.429 18.064 55.429 6.154 0 18.088-50.631 18.064-55.462l-10.588-2.168-.048-.015c-.033-4.9-.083-9.666-.162-13.914-2.225 1.847-4.68 5.07-7.266 7.982-2.586-2.911-5.038-6.135-7.263-7.982z"})]}),(0,h.jsxs)("g",{id:"rs_inline_svg__d",children:[(0,h.jsx)("path",{d:"M412.13 584.52c-3.202.137-7.13 1.97-18.607 11.936-5.01 10.24-10.058 20.537-17.019 29.416-2.376 1.57-4.239 2.666-6.122 3.289-1.965.648-16.435.17-16.788-.436-4.503-4.09-11.384-1.175-9.087 3.138-1.784 1.694 2.144 7.888 5.3 5.319 2.899-2.36 12.986-.132 16.347-1.353-1.272 3.032-10.384 5.006-16.755 5.468-5.822.248-5.435 6.064-3.034 10.524 2.727 1.742.488-.457 1.477.816 2.607 3.869 8.182 3.366 8.369-.416.194-3.916 13.787-9.012 15.825-12.016-2.493 5.944-8.24 11.489-11.094 17.31-3.065 3.082-4.929 3.697-.966 9.911 4.399-.502 4.657-1.672 7.364.891 6.012-.658 6.984-2.445 6.01-7.21-1.03-5.034 3.178-14.14 4.577-16.711 1.291-2.374 1.607-4.839 2.862-6.325 2.18-2.582 12.57-7.75 15.232-6.331 4.896 2.611 8.634 1.031 9.251-3.718-1.577-1.223-.394-7.968-3.782-8.254-2.77-.233-4.413.62-6.958 2.703-4.01 3.279-6.07 5.025-7.39 4.66-3.127-.86 5.665-5.18 13.66-15.682 11.081-14.553 11.841-21.948 11.327-26.928z",style:{fill:"#edb92e",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("use",{xlinkHref:"#rs_inline_svg__c",width:1350,height:900,transform:"matrix(-1 0 0 1 801.634 0)"}),(0,h.jsx)("path",{d:"M345.18 634.54c-4.012-2.352-6.318-2.26-7.874-.509-.856.963-1.949.464-1.31-1.047 2.669-6.313 6.924-7.1 10.742-4.14 1.07.99 1.928 1.842 2.787 2.692-.64.948-3.828 2.277-4.345 3.004zM402.64 628.89c4.259-2.9 8.25-3.468 10.436-1.839 1.202.896 2.39.253 1.332-1.236-4.417-6.22-9.594-6.536-13.5-3.029-1.06 1.15-1.903 2.13-2.745 3.11 1.337 1.465 4.291 3.119 4.477 2.994zM369.09 664.55c.129-.257-.978-5.44-2.712-7.059-1.348 1.081-2.862 2.035-4.286 3.523-4.26 4.451-4.241 11.01 2.413 16.728 1.643 1.412 2.393-.077 1.73-1.7-1.136-2.777.243-6.32 2.855-11.493zM352.47 650.93c-3.956 1.644-5.321 3.727-5.177 6.463.079 1.505-.909 2.066-1.467.316-4.837-11.243.18-13.347 7.43-12.938.416 1.959-.615 6.087-.787 6.159z",style:{fill:"#edb92e",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("path",{d:"m383.95 621.26 1.012.613-.048.084-.043.083-.038.087-.034.088-.03.09-.024.09-.019.09-.012.094-.01.094-.001.096.002.097.009.099.015.1.022.104.028.106.037.108.044.11.054.112.062.116.073.118.082.12.093.122.103.126.115.125.128.128.14.13.153.131.165.133.18.132.193.134.208.132.222.134-.595 1.025-.251-.152-.238-.154-.225-.155-.213-.156-.199-.159-.185-.16-.175-.162-.162-.163-.151-.166-.139-.165-.126-.168-.116-.17-.104-.17-.092-.171-.081-.172-.07-.173-.06-.173-.046-.172-.036-.173-.026-.171-.017-.17-.005-.169.005-.165.016-.164.023-.16.033-.158.04-.153.049-.15.056-.145.062-.142.07-.136.076-.133zm6.506.817-.744.92-.252-.204-.243-.196-.235-.188-.23-.18-.219-.172-.213-.163-.205-.152-.197-.142-.191-.13-.182-.12-.175-.108-.168-.095-.16-.083-.15-.07-.141-.058-.132-.044-.122-.033-.113-.021-.105-.009-.097.001-.09.008-.087.019-.088.028-.09.04-.092.053-.097.068-.102.087-.108.106-.112.125-.115.147-.12.17-.12.192-1.012-.612.149-.236.152-.219.159-.2.161-.184.17-.166.175-.149.185-.129.192-.11.2-.09.205-.067.212-.044.212-.022h.211l.211.02.208.036.205.054.204.07.202.081.203.094.203.105.202.116.206.127.208.136.21.146.215.154.22.163.223.17.23.178.234.186.239.192.247.199.253.206z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m387.33 617.58 1.012.613-.048.083-.042.084-.039.086-.034.088-.028.09-.024.09-.02.091-.013.093-.008.094-.004.097.004.097.009.099.014.1.022.104.03.106.036.108.044.11.053.112.063.116.072.118.082.12.092.123.105.124.115.126.126.128.141.13.153.132.165.132.18.133.193.132.208.134.221.134-.594 1.024-.251-.152-.239-.153-.225-.155-.212-.157-.2-.159-.185-.16-.174-.16-.162-.164-.152-.166-.138-.165-.127-.168-.116-.17-.103-.17-.093-.17-.08-.173-.071-.173-.059-.174-.047-.171-.037-.173-.026-.171-.015-.17-.006-.167.006-.167.014-.165.023-.16.033-.157.041-.154.05-.15.055-.145.063-.14.07-.138.075-.133zm6.506.817-.744.92-.252-.204-.243-.196-.235-.188-.23-.18-.218-.171-.214-.164-.205-.151-.197-.142-.191-.132-.182-.119-.175-.108-.168-.095-.16-.083-.15-.07-.141-.057-.132-.045-.122-.033-.113-.02-.105-.009h-.097l-.09.01-.087.018-.088.028-.09.039-.092.053-.097.068-.102.087-.108.106-.112.125-.115.147-.12.17-.12.193-1.012-.613.149-.236.152-.219.159-.2.161-.184.17-.166.175-.148.185-.13.192-.11.2-.09.205-.066.212-.044.212-.023h.211l.211.02.208.037.205.054.204.068.202.082.203.094.203.106.202.116.206.126.208.136.21.146.215.154.22.163.223.17.23.18.234.184.239.192.247.199.253.206z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m390.88 612.83 1.06.546-.057.117-.052.12-.047.123-.04.126-.036.128-.03.131-.023.133-.016.136-.012.138-.002.14.002.142.012.144.019.147.027.15.035.15.045.155.052.155.064.157.072.16.085.163.094.164.108.165.117.17.131.169.144.17.158.172.17.174.185.173.2.174.215.175.231.175.245.175-.672.987-.275-.196-.262-.198-.246-.201-.232-.201-.217-.205-.203-.205-.19-.208-.175-.208-.163-.21-.148-.21-.136-.212-.123-.213-.109-.213-.099-.213-.084-.213-.073-.213-.06-.211-.05-.212-.037-.209-.026-.208-.017-.205-.005-.204.006-.2.014-.198.025-.195.034-.19.042-.186.05-.183.058-.179.066-.173.073-.169.08-.164zm7.145 1.103-.821.867-.278-.265-.269-.256-.26-.246-.252-.235-.243-.224-.236-.212-.226-.198-.22-.186-.21-.172-.203-.157-.194-.141-.185-.124-.176-.109-.167-.092-.157-.074-.144-.058-.134-.041-.123-.027-.11-.012h-.101l-.096.012-.093.023-.095.037-.098.052-.106.071-.112.094-.119.118-.124.143-.13.172-.13.2-.137.228-.138.258-1.059-.547.162-.3.163-.276.169-.254.173-.232.18-.209.19-.187.198-.165.209-.141.22-.115.228-.087.234-.059.238-.03h.239l.236.026.233.05.228.07.226.089.222.107.222.122.223.136.223.152.225.163.227.176.232.188.235.2.242.211.245.221.252.233.257.24.264.25.272.258.278.267.001-.002z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m394.82 607.72 1.074.523-.062.136-.056.139-.05.143-.045.146-.039.15-.033.153-.026.156-.02.159-.01.16-.005.164.005.167.012.17.02.17.03.173.038.178.048.177.058.181.068.182.081.186.09.187.103.189.115.19.128.193.14.194.155.196.169.196.183.196.198.199.212.197.23.199.245.198.263.199-.702.973-.292-.222-.277-.224-.26-.225-.245-.227-.228-.229-.215-.231-.2-.233-.185-.233-.17-.235-.157-.236-.142-.235-.129-.237-.115-.236-.102-.236-.089-.238-.075-.235-.063-.235-.05-.232-.04-.232-.028-.229-.016-.227-.006-.224.006-.221.016-.219.026-.213.034-.21.044-.206.052-.202.06-.197.068-.192.076-.187.084-.181zm7.552 1.267-.85.844-.294-.3-.286-.288-.276-.279-.268-.265-.258-.254-.25-.24-.243-.226-.233-.21-.224-.195-.217-.177-.206-.161-.199-.142-.188-.124-.177-.104-.168-.085-.155-.064-.142-.047-.13-.03-.117-.014-.108.001-.102.013-.099.026-.103.042-.107.06-.115.084-.122.108-.129.136-.135.167-.14.197-.142.23-.146.26-.147.295-1.076-.523.17-.336.173-.309.175-.283.182-.257.19-.234.196-.208.208-.183.218-.158.23-.129.241-.098.249-.066.253-.033.254-.001.25.03.247.056.243.08.238.1.236.12.234.137.235.153.235.17.239.184.241.198.245.212.25.226.255.237.26.25.267.261.274.273.28.282.287.292.296.301z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m399.15 602.61 1.002.633-.099.167-.088.168-.075.167-.066.166-.052.166-.044.167-.033.167-.02.17-.013.168-.002.17.008.174.02.175.03.177.04.18.05.182.063.184.073.188.086.19.096.193.108.195.12.198.13.2.145.202.155.203.168.205.18.207.191.208.204.21.216.212.228.211.239.214.251.214-.758.913-.27-.23-.259-.23-.248-.233-.237-.232-.225-.232-.214-.233-.203-.232-.19-.234-.18-.235-.167-.235-.156-.236-.144-.237-.131-.237-.12-.24-.108-.24-.094-.239-.08-.242-.067-.24-.056-.244-.04-.243-.026-.243-.013-.242.002-.242.017-.243.032-.24.046-.238.06-.236.076-.234.09-.23.102-.228.118-.223.13-.222zm7.525 1.43-.87.807-.291-.316-.283-.303-.27-.288-.262-.274-.251-.257-.243-.242-.232-.226-.223-.208-.214-.191-.204-.172-.194-.154-.186-.133-.177-.116-.164-.095-.155-.076-.143-.058-.132-.04-.122-.023-.113-.01-.108.003-.104.017-.11.03-.112.045-.12.065-.13.086-.138.11-.146.135-.152.162-.16.19-.166.217-.171.244-.177.272-1.003-.633.2-.305.196-.282.198-.259.2-.236.202-.214.206-.191.211-.17.218-.145.228-.121.234-.095.242-.068.247-.038.247-.007.246.02.242.048.238.072.233.093.23.114.228.131.226.147.227.166.23.18.231.196.237.21.242.224.246.24.254.254.26.268.268.28.277.293.285.308.296.318z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m462.62 580.6-9.49-5.375c-3.992 2.867-6.945 13.516-.123 22.215 8.504 10.843 11.947 18.704 14.025 27.48 6.19-7.929 8.318-16.27 4.388-24.405-5.302-10.976-8.753-17.165-8.8-19.915z",style:{fill:"#fff",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("path",{d:"m470.37 573.01-9.49-5.375c-3.992 2.868-12.335 13.179-5.513 21.877 8.503 10.843 17.338 19.044 19.415 27.819 6.19-7.928 8.823-16.271 4.894-24.407-5.302-10.975-9.258-17.164-9.306-19.913z",style:{fill:"#fff",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("path",{d:"m449.43 569.16-9.49-5.375c-3.992 2.867-6.945 13.515-.123 22.214 8.505 10.844 11.947 18.706 14.025 27.482 6.19-7.93 8.32-16.271 4.39-24.407-5.304-10.975-8.754-17.164-8.802-19.913z",style:{fill:"#fff",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("path",{d:"M405.49 468.99c.182 8.678-1.356 66.559-1.84 74.738-.483 8.144-4.092 13.695-7.938 16.877-3.527-4.849-5.632-11.392-6.134-19.156-.255-3.958.474-58.733.778-69.991 6.48-17.161 11.29-17.811 15.134-2.468z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m404.14 543.76-.992-.059.048-.904.054-1.179.06-1.437.063-1.673.068-1.891.071-2.093.076-2.277.077-2.44.08-2.586.08-2.715.083-2.826.083-2.917.082-2.992.083-3.046.081-3.084.08-3.105.078-3.106.077-3.089.072-3.054.07-3.001.064-2.93.06-2.841.055-2.734.05-2.61.045-2.463.038-2.304.03-2.124.023-1.926.016-1.708.006-1.475-.002-1.22-.012-.948.995-.02.011.961.002 1.23-.006 1.479-.015 1.713-.023 1.928-.03 2.126-.038 2.304-.045 2.466-.05 2.61-.055 2.736-.063 2.841-.064 2.933-.07 3-.072 3.055-.076 3.091-.079 3.106-.08 3.105-.08 3.084-.084 3.049-.082 2.991-.083 2.918-.082 2.825-.081 2.718-.08 2.587-.077 2.441-.075 2.277-.072 2.095-.068 1.894-.063 1.675-.06 1.44-.054 1.185zm-8.835 17.141.802-.585-.718-.092.351-.297.348-.311.348-.325.342-.338.341-.352.337-.367.332-.38.327-.394.321-.408.317-.422.31-.436.302-.45.295-.464.286-.478.279-.493.27-.507.26-.52.249-.536.239-.551.228-.564.215-.58.206-.594.19-.608.18-.623.163-.638.15-.653.136-.669.12-.682.104-.697.088-.714.072-.729.053-.742.992.058-.055.769-.074.754-.09.738-.11.723-.124.708-.14.694-.155.677-.172.664-.185.648-.2.635-.213.618-.225.603-.237.59-.25.574-.261.56-.272.543-.282.53-.29.515-.3.501-.31.486-.316.47-.324.458-.33.443-.338.426-.344.414-.348.398-.353.385-.358.37-.361.357-.364.34-.367.328-.37.314zm.718.092-.407.336-.311-.428zm-6.947-19.508.992-.064.05.717.062.71.069.703.08.696.087.687.098.68.105.672.116.664.125.657.132.647.143.642.15.63.16.625.17.615.176.607.186.599.195.59.203.58.213.572.221.564.229.554.238.546.245.537.254.526.263.517.27.508.28.499.288.491.295.478.304.47.313.46.319.452-.802.585-.333-.468-.325-.479-.316-.486-.307-.5-.297-.507-.29-.516-.28-.526-.273-.536-.262-.545-.254-.554-.245-.562-.236-.573-.227-.58-.219-.589-.21-.599-.199-.606-.191-.613-.183-.623-.172-.632-.165-.64-.154-.648-.146-.655-.137-.664-.127-.671-.118-.68-.108-.687-.1-.694-.09-.701-.08-.71-.071-.717-.061-.725zm.81-70.2.928.353.032-.163-.03 1.178-.032 1.417-.032 1.637-.037 1.842-.036 2.027-.039 2.194-.038 2.348-.04 2.481-.041 2.597-.04 2.697-.04 2.78-.04 2.845-.04 2.892-.038 2.923-.038 2.935-.036 2.933-.034 2.91-.033 2.873-.03 2.815-.029 2.742-.024 2.653-.024 2.544-.019 2.419-.015 2.277-.013 2.117-.008 1.939-.004 1.745.001 1.535.005 1.304.01 1.057.015.791.02.5-.991.063-.021-.535-.017-.805-.01-1.064-.005-1.309-.001-1.537.004-1.748.008-1.94.013-2.12.015-2.277.019-2.422.023-2.543.025-2.653.028-2.743.03-2.817.033-2.873.034-2.91.037-2.932.037-2.938.039-2.923.039-2.892.04-2.845.04-2.78.04-2.697.041-2.6.04-2.48.039-2.348.039-2.197.036-2.027.036-1.842.034-1.64.033-1.418.03-1.181zm-.033.164.002-.086.03-.077zm16.128-2.466-.994.021.015.11-.361-1.381-.365-1.287-.372-1.191-.375-1.095-.381-.999-.386-.902-.388-.804-.392-.707-.392-.606-.391-.508-.389-.409-.38-.31-.37-.217-.36-.133-.356-.055-.361.02-.384.098-.405.185-.433.276-.454.372-.473.474-.489.57-.502.672-.516.77-.528.868-.538.966-.549 1.066-.558 1.163-.57 1.26-.58 1.36-.59 1.455-.6 1.553-.929-.352.605-1.568.597-1.472.587-1.376.58-1.28.57-1.187.562-1.091.555-.998.549-.903.542-.81.537-.718.536-.625.533-.532.536-.44.544-.347.55-.248.56-.144.566-.031.555.086.538.196.513.302.488.397.466.49.448.581.434.67.42.759.411.85.403.94.393 1.034.387 1.124.378 1.217.372 1.31.366 1.4zm-.015-.11.014.056.001.054z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m367.87 454.83-2.456 79.583c-.775 7.06 8.418 49.073 13.442 57.361 12.436-5.318 15.062-33.821 12.721-61.594-2.34-27.775.392-51.76 2.288-56.751.166-6.282-.89-12.835-.952-19.378-7.918.473-17.125.304-25.043.779z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m364.91 534.4 2.456-79.583.992.03-2.456 79.584-.002.038zm.992.03v.025l-.002.014zm12.751 56.888.39.917-.62-.2-.5-.906-.515-1.08-.532-1.248-.546-1.405-.557-1.548-.57-1.681-.576-1.802-.584-1.912-.587-2.007-.587-2.091-.586-2.163-.581-2.22-.576-2.268-.565-2.302-.554-2.324-.54-2.332-.523-2.327-.502-2.313-.48-2.284-.456-2.243-.428-2.187-.4-2.123-.364-2.045-.332-1.951-.293-1.85-.254-1.735-.209-1.605-.165-1.465-.117-1.316-.066-1.152-.013-.981.047-.807.988.108-.04.717.01.927.064 1.115.115 1.288.163 1.446.209 1.589.25 1.72.291 1.839.33 1.942.365 2.035.397 2.116.426 2.18.455 2.236.479 2.277.502 2.305.52 2.323.538 2.325.553 2.317.563 2.295.574 2.26.579 2.214.583 2.153.585 2.082.584 1.997.58 1.898.572 1.788.564 1.665.55 1.529.535 1.377.517 1.214.494 1.037.466.842zm.39.917-.396.17-.224-.37zm12.03-62.01.99-.085.206 2.61.176 2.613.143 2.606.112 2.597.08 2.586.047 2.566.012 2.546-.025 2.52-.06 2.489-.097 2.454-.136 2.416-.175 2.372-.214 2.325-.256 2.272-.297 2.216-.339 2.156-.385 2.092-.429 2.022-.474 1.948-.52 1.87-.57 1.79-.618 1.704-.67 1.612-.72 1.518-.774 1.42-.83 1.318-.884 1.209-.943 1.096-1.003.98-1.063.855-1.126.725-1.188.592-.39-.916 1.087-.54 1.035-.67.986-.791.937-.917.89-1.032.841-1.15.794-1.261.746-1.369.697-1.471.65-1.57.605-1.663.558-1.753.512-1.838.466-1.917.423-1.994.38-2.066.336-2.132.295-2.195.253-2.25.212-2.307.173-2.353.136-2.4.096-2.438.058-2.474.025-2.506-.012-2.532-.044-2.554-.08-2.572-.113-2.586-.143-2.594-.173-2.6zm2.288-56.806.992.026-.032.164-.171.495-.177.613-.183.722-.187.83-.186.928-.187 1.03-.186 1.125-.183 1.217-.178 1.308-.175 1.394-.169 1.478-.162 1.559-.155 1.636-.144 1.712-.135 1.785-.123 1.854-.111 1.92-.098 1.985-.083 2.046-.068 2.105-.05 2.16-.032 2.212-.014 2.264.006 2.31.027 2.354.048 2.396.071 2.434.098 2.471.122 2.505.147 2.534.175 2.564.206 2.586-.99.085-.206-2.598-.177-2.573-.148-2.544-.121-2.514-.098-2.48-.071-2.444-.05-2.405-.028-2.364-.006-2.32.014-2.27.033-2.222.052-2.169.068-2.113.083-2.054.097-1.994.112-1.928.123-1.864.137-1.794.144-1.721.155-1.646.164-1.568.17-1.488.176-1.405.181-1.32.185-1.23.19-1.14.188-1.046.191-.95.191-.854.19-.752.19-.65.19-.551zm.992.026-.002.087-.03.077zm-1.42-18.894-.058-.994.527.492.008.609.013.608.02.61.023.61.028.61.032.61.035.61.037.611.041.609.043.61.043.61.046.61.047.609.048.61.047.608.048.609.047.609.044.607.046.606.042.607.04.606.038.605.034.604.03.604.027.604.022.601.018.6.014.6.007.599.001.6-.006.595-.013.595-.992-.025.01-.584.006-.587v-.587l-.008-.589-.011-.59-.018-.594-.022-.595-.027-.596-.03-.597-.035-.6-.037-.6-.04-.601-.042-.604-.044-.604-.044-.605-.047-.606-.048-.61-.047-.608-.048-.61-.047-.61-.046-.613-.046-.612-.042-.613-.04-.613-.038-.616-.036-.614-.031-.616-.028-.617-.024-.617-.02-.616-.015-.618-.008-.618zm-.058-.994.522-.032.005.524zm-24.517 1.291-.992-.03.467-.482.748-.042.755-.04.763-.036.768-.032.773-.03.779-.028.782-.025.787-.022.79-.021.794-.02.797-.019.8-.016.8-.016.8-.015.803-.015.803-.015.802-.014.801-.014.801-.015.8-.017.798-.016.794-.017.792-.019.788-.02.784-.024.78-.025.776-.027.769-.03.763-.032.758-.037.75-.038.744-.043.06.994-.75.043-.755.038-.762.037-.768.033-.774.029-.778.027-.782.025-.787.023-.79.021-.795.02-.796.018-.799.016-.8.017-.802.015-.803.014-.802.015-.801.014-.803.015-.8.015-.8.016-.798.016-.794.017-.792.02-.788.02-.785.023-.78.025-.774.028-.77.03-.764.032-.757.036-.751.04-.744.042zm-.992-.03.014-.455.453-.027zm.496.015.496.015zm-.496-.015.014-.455.453-.027z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m353.13 467.85 1.689 79.603c-.406 7.094 10.96 48.541 16.409 56.542 12.613-9.79 10.075-49.808 8.142-61.917-3.852-24.13-3.197-52.079-1.869-56.621-.16-6.282-.321-13.805-.723-20.334q-11.824 1.364-23.647 2.727z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m354.32 547.47-1.689-79.603.995-.021 1.689 79.603-.001.039zm.995-.021v.013l-.001.026zm15.608 56.159.607.787-.714-.113-.547-.876-.572-1.052-.595-1.217-.617-1.372-.639-1.516-.655-1.65-.67-1.767-.683-1.875-.69-1.972-.695-2.056-.698-2.127-.696-2.188-.692-2.232-.685-2.268-.675-2.29-.659-2.298-.643-2.297-.622-2.281-.599-2.254-.57-2.213-.543-2.162-.509-2.098-.472-2.021-.432-1.933-.39-1.83-.342-1.717-.294-1.592-.242-1.454-.184-1.307-.126-1.147-.063-.98.004-.809.993.056-.004.72.06.924.121 1.112.182 1.278.237 1.436.292 1.575.34 1.704.387 1.82.43 1.92.47 2.014.506 2.09.54 2.154.571 2.209.596 2.246.62 2.275.64 2.29.66 2.293.672 2.283.683 2.26.69 2.226.694 2.178.695 2.12.692 2.046.686 1.961.678 1.864.665 1.755.649 1.63.63 1.498.607 1.346.578 1.184.547 1.007.509.815zm.607.787-.417.323-.297-.436zm7.348-62.232.98-.157.185 1.223.184 1.377.182 1.515.175 1.649.17 1.768.157 1.88.144 1.978.126 2.067.107 2.146.085 2.214.06 2.272.031 2.317v2.355l-.035 2.379-.07 2.395-.11 2.4-.156 2.393-.198 2.377-.248 2.35-.3 2.312-.356 2.264-.412 2.205-.472 2.136-.539 2.058-.604 1.968-.675 1.868-.75 1.76-.828 1.636-.91 1.507-.998 1.364-1.088 1.212-1.185 1.044-.608-.787 1.094-.965 1.015-1.131.942-1.289.868-1.437.798-1.575.726-1.703.656-1.819.593-1.925.526-2.019.466-2.103.407-2.175.35-2.235.296-2.29.246-2.325.199-2.356.152-2.375.11-2.382.07-2.38.034-2.365v-2.34l-.03-2.305-.06-2.258-.084-2.202-.107-2.135-.126-2.057-.142-1.967-.158-1.868-.166-1.757-.176-1.636-.18-1.504-.181-1.36zm-1.874-56.687.992-.026-.019.153-.114.458-.113.604-.11.738-.106.862-.099.984-.091 1.096-.083 1.205-.076 1.309-.065 1.406-.055 1.5-.045 1.586-.032 1.67-.02 1.745-.007 1.819.006 1.887.022 1.949.035 2.007.051 2.058.07 2.107.085 2.147.105 2.186.122 2.22.141 2.244.161 2.268.183 2.285.204 2.297.227 2.306.248 2.307.272 2.305.297 2.297.321 2.284.348 2.266-.981.157-.35-2.278-.323-2.295-.297-2.31-.274-2.314-.249-2.318-.229-2.313-.204-2.307-.183-2.294-.163-2.277-.142-2.252-.122-2.227-.104-2.192-.086-2.157-.069-2.114-.051-2.065-.038-2.014-.021-1.956-.006-1.894.007-1.826.02-1.755.034-1.677.045-1.596.055-1.508.065-1.416.075-1.32.086-1.218.091-1.112.101-1.003.108-.885.115-.769.123-.648.13-.529zm.992-.026.002.081-.021.072zm-1.163-19.826-.113-.99.552.465.038.616.035.621.034.627.033.631.032.636.031.64.03.64.028.647.027.647.025.649.026.652.025.652.023.654.022.655.023.653.02.654.02.654.02.65.02.651.018.648.018.646.018.643.017.64.017.636.016.632.016.627.016.625.015.616.015.612.016.606.015.6.015.592-.992.025-.015-.592-.016-.599-.015-.606-.015-.612-.015-.618-.016-.623-.016-.627-.017-.632-.016-.636-.018-.638-.017-.643-.018-.646-.019-.647-.018-.649-.02-.65-.02-.654-.022-.652-.022-.653-.022-.652-.023-.652-.025-.652-.026-.65-.026-.649-.027-.645-.028-.644-.03-.639-.03-.637-.032-.633-.033-.628-.034-.625-.036-.62-.037-.613zm-.113-.99.52-.06.032.525zm-23.591 3.72v-.996l-.056.004.739-.084.738-.086.74-.085.738-.085.74-.085.737-.086.741-.085.739-.085.739-.086.739-.084.739-.086.739-.085.738-.085.74-.085.738-.086.74-.084.737-.086.74-.086.739-.084.739-.086.739-.085.739-.085.738-.085.74-.086.738-.084.74-.086.74-.086.738-.084.739-.086.739-.084.739-.086.739-.085.112.99-.739.084-.739.086-.738.084-.74.086-.738.085-.738.085-.741.086-.74.085-.738.085-.739.085-.739.086-.739.084-.739.086-.738.085-.738.085-.74.086-.74.085-.738.085-.739.085-.739.086-.739.084-.739.086-.739.084-.738.086-.74.085-.738.086-.74.085-.74.085-.738.086-.739.084-.739.086-.739.084-.056.004zm.056-.003-.03.004h-.026zm-.057-.993v.996l-.498-.488zm-.498.508-.01-.508h.508z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m342.19 486.7 20.911-.533c-1.777 8.683-.355 35.655 3.252 56.214 3.383 19.277 8.107 69.272-11.96 81.276-12.444-26.38-2.97-52.014-9.24-74.92-4.894-24.344-5.859-44.68-2.963-62.037z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m363.12 486.66-20.911.533-.026-.994 20.911-.533.5.597zm-.026-.994.625-.016-.125.613zm3.755 56.626-.979.172-.333-1.95-.319-1.983-.306-2.011-.292-2.035-.28-2.054-.265-2.07-.252-2.08-.237-2.084-.223-2.086-.209-2.085-.193-2.075-.18-2.064-.163-2.047-.15-2.025-.133-2-.117-1.969-.102-1.935-.086-1.896-.069-1.853-.053-1.804-.038-1.751-.02-1.695-.002-1.634.014-1.566.032-1.497.049-1.423.065-1.343.086-1.259.103-1.171.122-1.083.14-.984.162-.888.973.2-.154.845-.136.954-.12 1.054-.1 1.15-.083 1.241-.066 1.327-.05 1.408-.029 1.483-.014 1.557.002 1.622.02 1.685.037 1.742.052 1.797.07 1.843.085 1.89.102 1.927.117 1.963.133 1.992.148 2.021.163 2.04.18 2.057.193 2.068.206 2.077.223 2.08.237 2.079.25 2.072.265 2.061.278 2.047.292 2.028.304 2.002.319 1.975zm-12.898 81.575.898-.425-.704-.215 1.762-1.202 1.626-1.408 1.5-1.606 1.374-1.79 1.254-1.965 1.137-2.128 1.027-2.277.916-2.414.812-2.539.711-2.65.616-2.75.523-2.835.438-2.909.355-2.969.277-3.017.204-3.052.136-3.074.07-3.085.013-3.08-.04-3.066-.09-3.036-.136-2.996-.176-2.942-.21-2.875-.24-2.797-.267-2.705-.287-2.6-.303-2.484-.315-2.354-.32-2.213-.323-2.056-.319-1.889.978-.172.322 1.901.325 2.068.322 2.224.316 2.364.305 2.496.287 2.612.268 2.716.24 2.81.213 2.888.176 2.956.136 3.01.092 3.053.04 3.082-.012 3.1-.073 3.103-.136 3.097-.206 3.076-.28 3.043-.357 2.997-.442 2.94-.53 2.87-.626 2.788-.722 2.694-.827 2.586-.937 2.466-1.052 2.336-1.17 2.191-1.299 2.033-1.43 1.863-1.568 1.68-1.71 1.48-1.859 1.267zm.703.215-.469.28-.235-.495zm-9.982-75.249.973-.197-.007-.033.548 2.174.461 2.19.381 2.202.311 2.217.245 2.229.186 2.243.134 2.254.09 2.267.055 2.277.023 2.289-.001 2.3-.016 2.31-.026 2.32-.03 2.33-.024 2.338-.013 2.35.005 2.357.03 2.366.06 2.373.1 2.382.147 2.388.197 2.396.257 2.403.322 2.41.395 2.414.474 2.421.562 2.427.654 2.432.753 2.437.861 2.443.975 2.447 1.095 2.452-.898.426-1.112-2.49-.989-2.485-.875-2.48-.764-2.473-.664-2.468-.57-2.459-.48-2.454-.4-2.445-.327-2.436-.26-2.428-.199-2.42-.146-2.407-.1-2.4-.063-2.387-.03-2.378-.005-2.367.013-2.354.025-2.343.03-2.33.025-2.318.016-2.305.001-2.291-.023-2.277-.052-2.263-.09-2.247-.135-2.234-.183-2.217-.24-2.2-.306-2.187-.377-2.17-.454-2.151-.538-2.137zm.007.033-.007-.033.006.027zm-2.496-62.666.026.994.477-.415-.259 1.629-.236 1.646-.214 1.664-.191 1.683-.17 1.7-.146 1.719-.123 1.738-.102 1.757-.079 1.775-.055 1.796-.033 1.815-.01 1.834.013 1.854.034 1.874.057 1.895.081 1.914.103 1.935.127 1.956.148 1.978.171 1.997.195 2.02.217 2.041.24 2.064.263 2.084.285 2.106.31 2.13.33 2.152.356 2.173.377 2.197.401 2.221.424 2.243.445 2.266-.973.198-.448-2.276-.426-2.25-.4-2.228-.38-2.206-.356-2.183-.333-2.16-.31-2.138-.287-2.116-.265-2.094-.24-2.072-.218-2.051-.197-2.03-.171-2.009-.15-1.986-.127-1.968-.103-1.947-.081-1.926-.057-1.907-.037-1.885-.013-1.866.01-1.846.036-1.827.055-1.81.079-1.789.102-1.77.125-1.75.147-1.734.171-1.714.191-1.697.217-1.679.238-1.66.262-1.645zm-.477.415.068-.404.41-.011zm.49.082-.013-.497zm-.49-.082.068-.404.41-.011z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M422.15 454.38c-.08 8.68-3.37 66.485-4.103 74.644-.73 8.124-4.503 13.556-8.444 16.614-3.38-4.96-5.285-11.567-5.55-19.342-.136-3.964 2.252-58.69 2.896-69.933 6.997-16.946 11.824-17.441 15.2-1.983z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m418.54 529.07-.99-.09.076-.902.09-1.177.102-1.433.115-1.67.124-1.889.136-2.09.143-2.271.151-2.437.159-2.584.163-2.71.167-2.822.172-2.913.173-2.986.175-3.043.175-3.082.173-3.1.173-3.101.169-3.086.165-3.05.16-2.997.154-2.928.147-2.838.138-2.73.13-2.607.118-2.461.108-2.302.095-2.12.08-1.925.069-1.708.05-1.472.035-1.221.015-.948.995.009-.018.962-.035 1.228-.05 1.48-.068 1.71-.081 1.927-.095 2.123-.108 2.304-.119 2.463-.129 2.607-.138 2.732-.147 2.839-.154 2.928-.16 2.998-.165 3.051-.17 3.085-.172 3.104-.173 3.1-.175 3.082-.175 3.043-.173 2.989-.171 2.912-.168 2.822-.163 2.713-.159 2.584-.15 2.436-.144 2.274-.136 2.092-.124 1.89-.115 1.674-.105 1.435-.089 1.185zm-9.35 16.85.821-.562-.714-.112.359-.286.357-.3.357-.314.354-.327.35-.34.348-.357.342-.369.34-.383.335-.398.328-.41.322-.425.316-.442.309-.455.301-.469.293-.482.285-.497.275-.515.265-.526.257-.543.244-.557.234-.571.222-.588.21-.601.197-.618.184-.632.17-.648.155-.662.14-.68.126-.694.11-.71.092-.724.076-.743.99.09-.078.766-.097.75-.112.736-.13.719-.146.704-.162.688-.177.673-.191.658-.204.642-.22.627-.23.611-.244.597-.256.58-.266.567-.277.55-.289.535-.296.52-.308.507-.315.49-.323.476-.33.46-.338.447-.345.431-.35.417-.355.402-.361.388-.365.372-.368.36-.373.343-.373.329-.377.316-.38.302zm.714.113-.417.323-.297-.436zm-6.35-19.718.993-.035.029.72.04.71.047.705.058.697.067.69.078.684.085.674.095.668.104.66.113.653.122.644.133.635.142.63.149.62.158.613.168.603.177.597.186.587.194.578.204.57.212.561.22.553.23.544.239.535.246.526.257.516.264.508.272.498.281.49.29.48.298.47.306.46-.821.561-.318-.48-.31-.488-.3-.498-.292-.506-.284-.517-.273-.527-.264-.534-.255-.543-.247-.554-.238-.562-.227-.57-.22-.58-.208-.587-.201-.594-.191-.605-.182-.614-.172-.62-.163-.629-.154-.636-.144-.644-.135-.652-.127-.66-.116-.67-.106-.673-.097-.683-.088-.691-.077-.697-.07-.705-.058-.71-.05-.72-.04-.724-.029-.734zm2.934-70.14.917.38.037-.162-.065 1.178-.074 1.414-.084 1.636-.09 1.84-.1 2.024-.105 2.192-.11 2.345-.115 2.478-.118 2.596-.122 2.695-.125 2.777-.126 2.843-.127 2.889-.128 2.92-.125 2.933-.126 2.929-.122 2.908-.12 2.87-.116 2.813-.111 2.74-.106 2.65-.098 2.542-.093 2.418-.084 2.275-.076 2.115-.067 1.939-.058 1.745-.046 1.533-.034 1.304-.02 1.057-.009.791.005.498-.992.035-.007-.535.01-.805.021-1.065.035-1.308.045-1.536.058-1.747.067-1.941.076-2.117.084-2.276.093-2.418.098-2.544.106-2.65.111-2.74.117-2.815.12-2.87.121-2.909.126-2.929.125-2.933.128-2.922.127-2.89.126-2.841.125-2.778.122-2.695.118-2.596.115-2.48.11-2.345.106-2.195.098-2.024.09-1.84.085-1.638.074-1.417.065-1.18zm-.038.162.005-.082.033-.08zm16.195-1.95-.994-.01.011.112-.319-1.393-.326-1.298-.334-1.202-.342-1.107-.351-1.01-.358-.915-.365-.816-.369-.718-.374-.618-.377-.522-.375-.42-.372-.323-.362-.23-.356-.143-.354-.067-.362.008-.385.087-.413.17-.44.264-.465.358-.487.456-.505.556-.523.654-.539.753-.552.85-.568.951-.582 1.046-.593 1.145-.608 1.241-.62 1.34-.633 1.436-.648 1.534-.917-.381.652-1.547.64-1.453.63-1.357.617-1.261.605-1.167.596-1.074.584-.979.576-.886.567-.79.56-.702.553-.607.55-.515.55-.424.552-.329.559-.231.565-.125.564-.013.554.102.53.214.504.319.475.413.45.504.43.595.415.684.397.772.386.863.372.954.363 1.043.351 1.138.342 1.227.333 1.32.323 1.412zm-.011-.112.011.056v.056zm-.486.107.497.005zm.486-.107.011.056v.056z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M384.99 407.23c-.557 18.646-.875 59.108-.759 62.547.265 7.776 3.331 17.672 6.709 22.631 3.94-3.058 7.716-8.49 8.446-16.615.599-6.68.81-39.483.91-55.923-4.217-2.716-8.566-6.11-12.08-9.721 0 0-3.096-2.754-3.225-2.918z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m384.72 469.76-.992.033-.01-.437-.008-.64-.005-.832-.002-1.018v-1.189l.002-1.353.005-1.505.008-1.646.01-1.777.011-1.898.013-2.006.016-2.104.018-2.194.021-2.268.022-2.335.024-2.39.027-2.437.028-2.468.03-2.49.03-2.506.035-2.506.036-2.495.037-2.477.04-2.445.04-2.404.042-2.352.044-2.289.046-2.213.048-2.13.048-2.035.05-1.928.052-1.812.992.03-.051 1.81-.05 1.926-.049 2.032-.045 2.128-.046 2.213-.045 2.287-.042 2.35-.04 2.404-.04 2.445-.036 2.474-.036 2.495-.035 2.507-.031 2.502-.03 2.49-.028 2.47-.027 2.434-.023 2.39-.022 2.334-.021 2.269-.018 2.19-.016 2.105-.013 2.006-.012 1.896-.009 1.776-.008 1.646-.005 1.503-.002 1.351v1.19l.002 1.012.005.83.007.63zm5.909 22.254.607.787-.714-.113-.324-.492-.32-.518-.316-.544-.314-.569-.308-.59-.305-.614-.3-.634-.294-.655-.288-.67-.28-.69-.277-.704-.268-.72-.26-.732-.253-.745-.244-.754-.236-.765-.226-.772-.217-.78-.206-.786-.197-.79-.185-.794-.172-.796-.163-.795-.15-.795-.135-.793-.123-.791-.11-.786-.095-.78-.08-.773-.065-.765-.05-.757-.033-.746.992-.033.033.725.048.736.065.746.078.755.093.763.106.77.121.773.134.78.147.78.158.782.17.781.183.778.192.778.203.772.212.766.224.76.232.75.239.743.248.731.256.718.263.706.27.689.275.674.282.657.286.638.29.615.296.597.3.572.3.548.306.523.306.494.307.467zm.607.787-.417.323-.297-.436zm7.647-17.054.99.09-.078.766-.096.75-.113.736-.13.72-.146.704-.163.687-.176.673-.19.658-.205.642-.22.627-.23.611-.244.598-.256.58-.266.566-.278.55-.289.535-.296.522-.308.505-.314.491-.324.476-.33.46-.338.447-.345.431-.35.417-.355.402-.361.388-.365.372-.368.36-.373.343-.373.329-.377.316-.38.302-.607-.787.359-.286.357-.3.357-.314.354-.327.35-.34.348-.357.343-.369.339-.383.335-.398.328-.41.322-.426.316-.44.31-.456.3-.467.293-.484.285-.498.275-.514.266-.527.257-.542.244-.557.235-.572.221-.588.21-.601.197-.618.184-.632.17-.648.155-.663.14-.678.126-.695.11-.71.092-.724zm1.138-55.46.537-.836.229.421-.01 1.589-.01 1.675-.011 1.757-.012 1.83-.013 1.892-.014 1.951-.014 2-.016 2.041-.017 2.075-.017 2.102-.02 2.118-.02 2.13-.022 2.132-.023 2.127-.023 2.113-.026 2.094-.027 2.064-.03 2.028-.029 1.984-.031 1.932-.034 1.872-.036 1.806-.037 1.729-.039 1.648-.04 1.557-.043 1.457-.045 1.353-.045 1.237-.05 1.119-.05.988-.053.853-.056.712-.99-.09.054-.69.053-.841.05-.98.05-1.11.045-1.233.045-1.349.042-1.454.041-1.555.039-1.644.035-1.728.035-1.803.034-1.87.032-1.932.029-1.982.03-2.028.026-2.062.026-2.094.024-2.112.023-2.126.021-2.131.02-2.13.02-2.119.018-2.1.016-2.074.016-2.04.015-2 .014-1.952.013-1.893.011-1.83.012-1.756.01-1.675.01-1.589zm.537-.836.23.148v.273zm-12.35-9.801v.996l.356-.846.33.336.332.333.338.33.344.332.346.33.35.327.355.327.357.323.363.322.366.32.368.318.37.316.375.313.377.312.378.31.382.307.384.303.386.3.387.3.388.296.39.291.391.292.392.285.394.285.393.28.395.277.393.273.395.27.394.266.394.263.394.259.393.255-.537.836-.397-.257-.4-.263-.4-.266-.4-.269-.4-.274-.399-.278-.398-.28-.4-.284-.396-.287-.399-.29-.396-.294-.394-.296-.395-.3-.392-.302-.39-.306-.389-.308-.387-.311-.385-.313-.382-.316-.379-.318-.378-.32-.373-.324-.37-.324-.367-.327-.365-.33-.361-.331-.356-.334-.353-.335-.348-.336-.345-.338-.34-.34-.334-.34zm-.355.846-.824-.846h1.18zm-2.374-3.251-.992-.03.886-.293-.011-.015.03.03.042.042.064.06.076.071.092.083.1.094.11.098.118.11.128.114.134.12.138.126.14.128.147.13.147.134.148.131.149.134.144.13.144.129.14.125.136.12.129.116.123.11.111.1.106.094.095.085.082.073.07.063.06.054.036.032.024.02-.317.883v-.997l-.333.866-.03-.024-.046-.043-.053-.047-.07-.062-.085-.075-.092-.084-.106-.092-.116-.104-.12-.109-.13-.114-.136-.122-.14-.126-.144-.128-.146-.133-.147-.131-.15-.134-.147-.133-.146-.13-.143-.13-.139-.124-.133-.121-.128-.116-.121-.11-.113-.103-.102-.094-.091-.085-.081-.076-.07-.065-.062-.059-.042-.045-.054-.06zm-.992-.03.04-1.372.846 1.079z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M399.93 419.25c-.37 20.09-.154 51.736-.066 54.309.265 7.775 2.173 14.383 5.55 19.344 3.941-3.06 8.103-8.685 8.832-16.809.448-5.002 1.838-26.451 1.968-42.913-5.301-1.67-11.99-10.366-16.284-13.93z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m400.36 473.54-.992.033-.008-.331-.01-.49-.01-.645-.01-.793-.01-.933-.011-1.066-.01-1.191-.01-1.31-.01-1.42-.01-1.523-.008-1.622-.008-1.707-.007-1.79-.006-1.864-.006-1.928-.005-1.988-.002-2.04-.001-2.083v-2.119l.002-2.15.004-2.17.006-2.183.008-2.193.009-2.19.013-2.183.015-2.165.018-2.144.02-2.114.024-2.075.026-2.03.03-1.977.033-1.918.995.02-.033 1.914-.03 1.975-.026 2.028-.024 2.075-.02 2.111-.018 2.142-.016 2.166-.013 2.18-.009 2.19-.008 2.19-.006 2.183-.004 2.17-.002 2.148v2.12l.001 2.081.002 2.039.005 1.988.006 1.928.006 1.863.007 1.788.008 1.707.01 1.62.008 1.522.011 1.42.009 1.31.01 1.19.011 1.065.01.93.011.791.009.643.008.485zm4.75 18.966.608.787-.715-.113-.318-.479-.31-.489-.3-.498-.291-.506-.284-.517-.274-.528-.262-.534-.257-.543-.246-.554-.237-.56-.23-.57-.217-.581-.209-.587-.202-.595-.19-.605-.182-.612-.172-.622-.164-.629-.154-.636-.144-.644-.135-.653-.125-.66-.117-.667-.106-.676-.098-.682-.088-.691-.077-.697-.07-.705-.058-.71-.05-.72-.04-.724-.028-.734.992-.032.03.719.04.71.046.705.059.697.066.69.078.684.086.674.095.668.104.66.114.653.12.645.133.634.142.63.149.62.16.612.167.606.177.595.186.587.194.579.204.57.211.561.222.552.23.544.237.535.247.526.256.518.264.507.272.498.282.49.29.48.297.47.306.46zm.608.787-.418.324-.297-.437zm8.032-17.248.99.09-.08.768-.1.753-.118.739-.137.724-.156.708-.171.696-.188.679-.205.665-.22.65-.234.634-.247.62-.26.604-.274.59-.284.575-.295.559-.308.544-.314.53-.325.514-.333.5-.341.483-.347.468-.353.455-.36.438-.363.422-.368.409-.373.392-.374.379-.377.361-.38.348-.379.332-.378.316-.38.303-.608-.787.359-.287.362-.302.363-.317.36-.332.361-.345.358-.362.356-.376.352-.39.35-.405.342-.42.34-.433.332-.45.327-.464.32-.479.31-.493.303-.506.293-.523.284-.536.272-.551.261-.566.251-.58.239-.595.225-.609.21-.624.196-.639.18-.653.167-.667.149-.683.132-.696.114-.71.095-.728zm2.314-42.394.298-.95.349.48-.016 1.56-.023 1.584-.03 1.605-.036 1.624-.042 1.635-.046 1.648-.051 1.651-.057 1.654-.06 1.65-.064 1.645-.068 1.634-.07 1.622-.073 1.602-.075 1.582-.078 1.554-.077 1.526-.08 1.493-.08 1.454-.08 1.412-.078 1.368-.08 1.318-.077 1.265-.076 1.208-.074 1.147-.073 1.083-.069 1.012-.065.941-.065.863-.059.784-.054.7-.05.61-.045.52-.99-.09.045-.514.05-.607.055-.694.058-.781.062-.862.066-.938.07-1.012.072-1.08.074-1.145.076-1.206.078-1.265.08-1.316.078-1.365.08-1.412.08-1.453.079-1.49.077-1.523.078-1.555.075-1.579.073-1.6.07-1.619.068-1.632.063-1.642.061-1.649.057-1.65.051-1.65.046-1.642.042-1.634.034-1.619.03-1.602.023-1.58.015-1.556zm.298-.95.35.111-.001.368zm-15.935-13.445-.994-.019.814-.374.418.356.43.383.443.41.451.43.463.45.471.468.482.484.49.498.498.51.505.52.512.528.517.531.523.535.528.537.53.533.535.53.536.524.538.516.54.505.539.494.538.475.537.462.535.44.533.419.529.395.522.369.517.34.51.308.5.276.493.242.482.204.47.166-.297.95-.531-.188-.536-.227-.538-.263-.54-.297-.543-.33-.546-.359-.547-.385-.548-.411-.551-.433-.552-.455-.55-.47-.55-.488-.55-.503-.549-.512-.545-.523-.543-.531-.54-.535-.534-.538-.53-.54-.526-.536-.52-.534-.51-.527-.504-.518-.496-.508-.487-.496-.477-.479-.467-.464-.455-.443-.442-.42-.428-.398-.417-.369-.4-.342zm-.994-.019.018-1.033.796.66z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m387.08 405.55-14.24-20.52c-2.878 10.123-6.387 82.767-2.268 88.725.265 7.776 3.071 14.355 6.45 19.314 3.941-3.058 9.823-8.556 8.123-16.78-1.698-8.224.207-62.257 1.932-70.731z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m373.25 384.74 14.236 20.528-.816.569-14.236-20.528-.07-.421zm-.885.148.287-1.01.598.862zm-1.295 88.845-.993.033.088.267-.422-.862-.339-1.176-.285-1.494-.242-1.802-.202-2.093-.164-2.36-.128-2.607-.094-2.83-.061-3.03-.03-3.207v-3.36l.028-3.491.053-3.596.081-3.68.102-3.74.126-3.774.145-3.786.165-3.777.181-3.74.199-3.681.212-3.6.225-3.492.237-3.364.247-3.21.255-3.034.261-2.834.269-2.611.272-2.364.275-2.094.275-1.803.278-1.491.28-1.162.955.273-.261 1.093-.271 1.451-.274 1.778-.272 2.077-.27 2.35-.266 2.599-.261 2.824-.255 3.027-.247 3.204-.235 3.357-.225 3.488-.212 3.594-.198 3.677-.182 3.735-.164 3.77-.146 3.781-.125 3.77-.102 3.732-.079 3.675-.054 3.59-.028 3.483v3.35l.03 3.199.06 3.018.093 2.815.128 2.589.162 2.337.199 2.062.236 1.757.273 1.427.304 1.058.305.638zm-.088-.267.083.12.005.147zm5.738 19.204.608.788-.714-.113-.32-.476-.315-.487-.31-.493-.307-.504-.302-.513-.297-.522-.29-.532-.286-.542-.28-.55-.271-.558-.265-.569-.258-.575-.25-.587-.242-.593-.233-.603-.225-.61-.215-.62-.206-.628-.195-.636-.185-.643-.175-.653-.164-.66-.152-.669-.14-.675-.128-.684-.115-.69-.104-.7-.09-.707-.076-.713-.061-.722-.048-.73-.032-.735.992-.033.032.715.046.708.061.7.074.695.087.686.1.68.112.672.125.665.136.657.147.65.16.641.17.635.18.626.19.619.2.61.21.602.218.595.228.586.235.58.243.57.25.56.259.553.265.544.272.536.278.527.284.518.29.51.293.5.299.492.304.482.306.472.312.464zm.608.788-.418.323-.296-.436zm7.333-17.072.973-.203.142.788.097.773.057.759.015.741-.024.726-.06.71-.097.694-.129.678-.162.662-.19.643-.218.628-.245.612-.268.594-.291.578-.31.562-.33.545-.346.53-.36.512-.373.497-.384.48-.394.466-.401.449-.407.435-.41.417-.414.403-.414.386-.411.373-.409.356-.404.343-.398.326-.388.312-.38.297-.608-.787.371-.29.379-.305.388-.32.393-.33.396-.347.4-.36.4-.376.397-.386.396-.403.39-.416.385-.43.376-.444.366-.46.355-.47.342-.487.325-.5.311-.514.293-.529.272-.54.25-.557.229-.57.203-.585.177-.6.15-.611.12-.629.089-.643.056-.658.021-.672-.013-.69-.051-.704-.093-.722zm2.418-70.334v-.997l.487.598-.157.901-.162 1.162-.161 1.4-.16 1.619-.159 1.82-.157 2.005-.154 2.173-.15 2.321-.145 2.457-.14 2.572-.135 2.673-.128 2.755-.12 2.822-.113 2.872-.104 2.904-.095 2.92-.085 2.92-.075 2.9-.061 2.868-.05 2.816-.038 2.75-.024 2.663-.01 2.562.006 2.445.02 2.309.035 2.157.054 1.988.071 1.801.09 1.598.107 1.377.126 1.133.143.868-.974.202-.154-.937-.13-1.174-.11-1.403-.09-1.617-.072-1.815-.053-2-.038-2.166-.02-2.316-.005-2.45.009-2.57.025-2.667.037-2.754.05-2.82.064-2.872.075-2.905.085-2.922.095-2.924.104-2.907.113-2.874.12-2.827.128-2.76.135-2.675.14-2.576.145-2.462.15-2.328.156-2.18.157-2.012.16-1.83.162-1.633.163-1.418.164-1.19.166-.948zm0-.997h.609l-.122.598zm-.001 0v.997l-.408-.214zm0 .997h-.26l-.148-.214z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M357.88 451.24c-.645 11.241-1.101 18.85-.966 22.814.266 7.777 2.172 14.383 5.55 19.344 3.941-3.058 8.96-8.475 8.445-16.615-1.99-31.459 1.447-61.093 5.453-89.577-3.378-2.48-9.072-5.153-12.451-7.633-6.756 38.356-9.009 62.162-6.032 71.669z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m357.41 474.03-.992.035-.01-.387-.01-.41-.004-.43v-.45l.001-.47.005-.49.008-.514.013-.534.014-.555.017-.577.02-.598.022-.618.024-.639.029-.661.029-.682.033-.704.034-.723.036-.746.039-.769.04-.787.044-.81.045-.83.047-.852.048-.874.05-.894.052-.915.053-.938.055-.957.056-.98.058-1 .058-1.022.06-1.044.992.057-.06 1.043-.058 1.022-.058 1-.056.98-.055.957-.053.938-.051.915-.05.894-.049.872-.047.852-.044.83-.044.808-.04.787-.04.766-.036.744-.034.723-.033.702-.03.679-.027.66-.025.636-.022.616-.02.593-.016.572-.014.552-.011.53-.008.506-.005.487-.002.465.001.443.004.42.007.4.01.377zm4.75 18.968.608.787-.715-.113-.318-.479-.31-.489-.3-.498-.291-.506-.284-.517-.274-.528-.263-.534-.255-.543-.246-.554-.238-.561-.228-.57-.22-.58-.208-.587-.2-.595-.192-.604-.182-.613-.172-.62-.163-.63-.155-.636-.143-.645-.135-.652-.126-.66-.117-.668-.106-.676-.098-.682-.088-.691-.077-.697-.07-.703-.057-.712-.05-.72-.04-.724-.03-.732.993-.036.03.72.04.711.047.705.058.698.066.69.078.683.085.674.095.668.105.66.114.653.122.644.132.638.14.628.151.62.158.613.168.604.177.594.187.588.193.579.204.57.213.561.22.554.229.542.239.535.247.526.255.518.264.507.272.498.281.49.29.48.298.47.306.46zm.608.787-.418.323-.297-.436zm7.645-16.977.993-.063.032.776.001.76-.029.744-.06.728-.088.712-.116.697-.14.68-.165.666-.19.648-.21.632-.232.616-.25.602-.272.583-.286.57-.303.554-.317.537-.33.521-.342.507-.352.49-.362.475-.369.462-.379.444-.382.43-.387.416-.39.4-.392.384-.395.371-.392.356-.39.342-.388.325-.384.314-.38.299-.607-.788.366-.289.372-.302.374-.316.377-.33.38-.342.377-.357.378-.372.376-.383.37-.397.369-.414.36-.425.353-.44.347-.454.336-.468.326-.483.313-.496.301-.51.286-.524.273-.539.254-.553.237-.567.22-.582.199-.597.178-.611.156-.625.132-.643.11-.655.082-.673.056-.687.027-.702v-.72zm5.656-89.207.586-.803.198.47-.372 2.674-.37 2.678-.364 2.687-.358 2.693-.352 2.701-.344 2.709-.333 2.715-.326 2.72-.314 2.733-.304 2.737-.292 2.746-.277 2.753-.265 2.76-.249 2.771-.233 2.778-.218 2.786-.198 2.796-.181 2.804-.162 2.813-.14 2.82-.121 2.83-.099 2.84-.075 2.85-.05 2.858-.027 2.868-.001 2.879.025 2.886.05 2.899.082 2.908.11 2.918.14 2.928.17 2.938-.992.064-.17-2.95-.14-2.938-.11-2.927-.081-2.918-.053-2.908-.026-2.896v-2.888l.028-2.877.053-2.866.075-2.858.098-2.847.121-2.84.14-2.828.163-2.82.18-2.811.2-2.802.219-2.792.233-2.784.25-2.775.264-2.768.28-2.758.291-2.75.304-2.743.314-2.734.326-2.725.336-2.72.344-2.71.351-2.704.36-2.695.363-2.69.37-2.68.375-2.676zm.586-.803.24.176-.041.295zm-12.255-7.145-.978-.174.782-.315.318.228.33.232.342.23.353.232.366.234.374.236.384.235.392.239.398.237.406.239.41.24.416.24.419.24.422.24.423.243.425.24.426.243.425.242.423.24.42.243.42.242.413.24.41.243.403.24.398.241.391.24.382.24.373.24.364.239.354.24.342.238.33.238-.587.803-.318-.228-.33-.231-.342-.23-.353-.233-.366-.234-.374-.236-.382-.235-.393-.239-.4-.238-.404-.237-.411-.241-.414-.24-.42-.24-.421-.24-.424-.243-.425-.24-.425-.242-.426-.242-.422-.241-.421-.242-.42-.242-.413-.241-.41-.241-.404-.242-.396-.24-.39-.24-.384-.241-.373-.239-.365-.24-.354-.24-.341-.238-.33-.237zm-.978-.174.138-.787.644.472zm-5.895 71.403.704.705-.826-.203-.27-.959-.24-1.04-.206-1.12-.175-1.203-.144-1.284-.114-1.366-.083-1.449-.053-1.532-.025-1.614.006-1.698.037-1.782.064-1.865.094-1.948.122-2.032.152-2.118.181-2.2.208-2.283.238-2.369.265-2.453.293-2.536.322-2.623.35-2.707.376-2.79.405-2.875.433-2.961.458-3.044.488-3.13.513-3.216.54-3.3.567-3.384.595-3.47.62-3.555.978.174-.62 3.55-.592 3.468-.567 3.38-.54 3.297-.513 3.21-.486 3.126-.458 3.04-.433 2.956-.402 2.87-.377 2.786-.35 2.7-.32 2.615-.293 2.53-.265 2.446-.236 2.359-.207 2.277-.18 2.19-.15 2.105-.123 2.02-.094 1.937-.064 1.85-.034 1.767-.006 1.68.022 1.596.053 1.509.083 1.425.111 1.34.14 1.254.17 1.167.2 1.08.227.996.257.907zm.704.705-.58.582-.246-.785zm.001-.001v.001l-.705-.705h.001l.848.38zm-.704-.705.923-.925-.075 1.306z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m343.64 471.82 3.861 14.631c.266 7.776 5.067 14.196 8.446 19.156 3.94-3.058 7.52-8.088 6.515-16.18-5.779-46.464-3.713-77.204 6.033-115.07-22.039 15.045-32.255 46.787-24.855 97.459z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m347.02 486.58-3.861-14.631.962-.254 3.86 14.631.016.11zm.962-.254.013.05.002.06zm7.66 18.89.608.786-.714-.112-.319-.468-.328-.478-.335-.487-.339-.494-.344-.505-.349-.515-.348-.522-.35-.532-.35-.54-.35-.55-.347-.557-.344-.568-.339-.576-.334-.586-.326-.593-.319-.603-.31-.612-.299-.62-.29-.629-.275-.639-.263-.647-.248-.656-.233-.666-.214-.672-.198-.683-.179-.692-.158-.7-.136-.708-.113-.718-.09-.726-.067-.735-.037-.742.992-.035.037.707.063.699.085.693.108.685.132.676.15.67.172.663.189.655.207.648.223.64.24.633.255.626.266.618.28.61.293.604.3.595.312.589.32.58.324.572.332.563.339.558.34.549.345.542.345.533.348.525.346.52.344.51.342.5.339.495.334.486.329.478.321.47zm.608.786-.417.324-.297-.436zm5.72-16.512.984-.122.084.765.056.749.03.731.005.714-.02.698-.042.68-.066.665-.088.647-.109.631-.13.615-.15.599-.168.582-.187.568-.203.551-.222.537-.237.52-.25.506-.266.49-.28.477-.291.459-.303.446-.313.433-.324.417-.334.404-.34.389-.35.376-.355.363-.361.349-.366.338-.37.323-.376.313-.378.3-.607-.788.359-.285.356-.296.352-.31.35-.319.342-.332.337-.342.328-.357.324-.368.313-.38.305-.394.297-.407.284-.418.273-.434.263-.446.248-.46.237-.474.22-.488.208-.504.191-.518.176-.532.159-.548.14-.564.123-.579.103-.596.083-.612.063-.627.04-.645.018-.663-.004-.68-.03-.697-.053-.715zm6.805-114.72-.56-.822.76.536-.89 3.524-.844 3.488-.8 3.454-.755 3.423-.71 3.398-.665 3.378-.62 3.361-.573 3.349-.529 3.34-.484 3.335-.439 3.335-.394 3.34-.347 3.349-.304 3.36-.256 3.378-.213 3.398-.166 3.424-.122 3.453-.075 3.488-.03 3.524.014 3.567.06 3.613.107 3.663.152 3.719.198 3.778.243 3.84.289 3.908.335 3.978.382 4.055.425 4.135.473 4.218.517 4.307-.985.122-.52-4.314-.472-4.227-.428-4.143-.381-4.064-.336-3.99-.29-3.917-.245-3.851-.197-3.788-.152-3.73-.107-3.675-.062-3.627-.015-3.58.03-3.536.077-3.5.122-3.468.167-3.436.212-3.412.26-3.392.303-3.375.35-3.362.396-3.352.439-3.35.487-3.348.53-3.352.577-3.36.621-3.374.668-3.39.712-3.409.757-3.435.802-3.464.847-3.496.893-3.534zm-.56-.822 1.09-.745-.33 1.28zm-24.095 97.744-.961.254-.01-.055-.645-4.704-.54-4.593-.44-4.486-.341-4.376-.24-4.266-.142-4.156-.047-4.05.052-3.943.145-3.836.24-3.728.333-3.623.424-3.516.516-3.412.607-3.305.695-3.202.781-3.097.872-2.993.954-2.89 1.042-2.786 1.125-2.684 1.208-2.582 1.291-2.48 1.37-2.376 1.45-2.276 1.53-2.174 1.61-2.074 1.683-1.972 1.76-1.872 1.834-1.772 1.908-1.672 1.98-1.573 2.05-1.474.56.823-2.012 1.445-1.942 1.543-1.87 1.64-1.8 1.74-1.729 1.837-1.653 1.936-1.579 2.036-1.503 2.138-1.428 2.238-1.349 2.339-1.27 2.441-1.191 2.545-1.109 2.646-1.027 2.75-.945 2.856-.86 2.958-.774 3.064-.689 3.169-.599 3.274-.511 3.382-.423 3.488-.33 3.594-.237 3.702-.146 3.81-.049 3.917.045 4.027.142 4.135.239 4.245.339 4.354.437 4.465.539 4.575.641 4.687zm-.961.254-.006-.021-.005-.034zm.48-.127.481-.127zm-.48.127-.006-.021-.005-.034z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m344.77 486.22-20.223-6.717c-2.577 20.221 1.384 45.621 6.83 79.114 4.676 28.76 2.217 51.522-1.358 66.121 21.575-2.955 30.695-30.772 19.88-83.093-2.83-13.695-5.676-31.2-5.128-55.426z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m324.71 479.03 20.223 6.717-.312.945-20.223-6.717-.337-.536zm-.649.409.077-.6.572.191zm7.813 79.098-.98.16-.506-3.116-.498-3.07-.485-3.024-.474-2.979-.462-2.932-.45-2.888-.434-2.846-.42-2.8-.403-2.757-.385-2.717-.37-2.674-.35-2.631-.329-2.593-.31-2.551-.287-2.512-.265-2.472-.242-2.436-.217-2.397-.19-2.358-.166-2.321-.139-2.287-.109-2.25-.08-2.213-.052-2.18-.02-2.146.013-2.112.046-2.079.078-2.045.114-2.015.149-1.984.186-1.951.224-1.922.986.127-.222 1.9-.184 1.931-.147 1.965-.114 1.996-.078 2.029-.044 2.062-.012 2.096.02 2.132.049 2.165.08 2.202.11 2.238.138 2.275.163 2.312.191 2.349.217 2.387.24 2.426.265 2.465.287 2.505.307 2.546.33 2.586.35 2.627.367 2.67.385 2.711.403 2.756.42 2.797.434 2.841.448 2.886.462 2.932.473 2.976.486 3.022.497 3.07zm-1.914 65.708.133.987-.549-.612.33-1.387.323-1.434.314-1.48.304-1.528.293-1.573.281-1.62.269-1.666.254-1.71.24-1.755.221-1.798.206-1.843.186-1.887.167-1.93.145-1.972.124-2.014.102-2.056.077-2.098.051-2.139.025-2.179-.001-2.22-.03-2.26-.06-2.298-.09-2.338-.124-2.377-.156-2.415-.189-2.454-.225-2.49-.26-2.528-.298-2.563-.337-2.601-.376-2.637-.417-2.673.98-.16.42 2.685.378 2.65.337 2.614.3 2.577.263 2.54.225 2.504.191 2.465.156 2.427.124 2.391.09 2.35.062 2.312.03 2.273.002 2.23-.025 2.194-.054 2.15-.076 2.11-.102 2.068-.125 2.028-.147 1.984-.167 1.941-.189 1.899-.205 1.855-.224 1.812-.242 1.767-.254 1.721-.271 1.678-.284 1.632-.295 1.585-.307 1.54-.316 1.493-.325 1.447-.334 1.398zm.133.987-.722.098.173-.71zm19.326-83.485.974-.202.957 4.842.842 4.698.727 4.555.616 4.413.503 4.27.393 4.126.285 3.981.176 3.84.073 3.696-.036 3.552-.137 3.41-.24 3.267-.342 3.124-.44 2.98-.54 2.837-.637 2.694-.734 2.55-.828 2.41-.924 2.263-1.017 2.12-1.11 1.977-1.198 1.833-1.292 1.687-1.378 1.543-1.466 1.396-1.553 1.247-1.635 1.101-1.718.954-1.798.804-1.874.654-1.95.505-2.025.358-.133-.987 1.946-.343 1.873-.484 1.797-.629 1.72-.768 1.644-.912 1.565-1.054 1.487-1.196 1.407-1.34 1.327-1.483 1.244-1.629 1.161-1.774 1.077-1.918.991-2.066.9-2.21.812-2.357.72-2.503.628-2.65.531-2.796.435-2.94.337-3.087.238-3.234.137-3.377.033-3.524-.07-3.668-.176-3.814-.283-3.958-.39-4.103-.501-4.248-.614-4.392-.724-4.536-.838-4.68zm-4.798-55.055.312-.945.34.484-.04 2.247-.022 2.208-.004 2.17.014 2.133.032 2.096.047 2.057.064 2.023.081 1.987.095 1.952.11 1.916.123 1.884.134 1.849.148 1.817.16 1.784.17 1.753.183 1.72.192 1.69.2 1.66.21 1.631.216 1.602.224 1.572.233 1.545.237 1.515.243 1.49.247 1.464.253 1.437.257 1.412.258 1.388.262 1.363.262 1.339.265 1.317.265 1.292-.973.202-.265-1.297-.265-1.319-.265-1.344-.262-1.368-.26-1.392-.257-1.417-.253-1.444-.249-1.468-.244-1.497-.24-1.523-.231-1.552-.227-1.579-.217-1.608-.21-1.638-.201-1.667-.193-1.697-.182-1.728-.172-1.76-.16-1.793-.148-1.825-.138-1.857-.123-1.892-.109-1.926-.095-1.958-.08-1.996-.065-2.03-.05-2.067-.031-2.103-.014-2.142.004-2.177.022-2.219.042-2.255zm.312-.945.349.116-.008.368z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m343.56 584.05 1.181.042-.001.03-.004.03-.005.03-.006.029-.008.028-.008.027-.01.027-.012.027-.013.026-.014.025-.015.025-.017.023-.016.022-.02.023-.018.02-.02.02-.022.018-.022.018-.024.018-.023.015-.025.016-.024.012-.026.012-.027.012-.027.009-.028.008-.028.007-.029.006-.029.005-.03.002h-.06l-.03-.001-.03-.004-.03-.005-.029-.006-.028-.008-.027-.008-.027-.01-.027-.012-.025-.013-.025-.014-.025-.016-.023-.015-.022-.018-.022-.019-.02-.018-.02-.02-.02-.023-.017-.022-.017-.022-.016-.025-.015-.025-.013-.024-.012-.026-.011-.027-.01-.028-.007-.028-.008-.028-.005-.028-.005-.03-.002-.029-.001-.03zm-4.302-40.199 1.158-.24.238 1.163.235 1.178.234 1.189.23 1.2.227 1.212.223 1.222.218 1.232.214 1.24.207 1.25.203 1.257.196 1.264.19 1.271.182 1.277.175 1.283.167 1.287.159 1.29.149 1.294.14 1.297.13 1.298.121 1.3.11 1.302.098 1.3.088 1.302.075 1.299.062 1.297.05 1.295.037 1.292.022 1.288.01 1.284-.008 1.278-.02 1.273-.037 1.266-1.181-.04.036-1.253.02-1.258.007-1.265-.01-1.27-.021-1.276-.037-1.28-.049-1.282-.062-1.287-.075-1.287-.086-1.29-.098-1.291-.11-1.292-.119-1.29-.129-1.29-.14-1.289-.149-1.285-.157-1.283-.165-1.278-.175-1.275-.18-1.27-.19-1.264-.194-1.257-.2-1.252-.208-1.243-.212-1.235-.217-1.226-.222-1.216-.226-1.207-.23-1.196-.231-1.183-.236-1.172zm-5.413-50.215 1.182-.008.016 1.589.024 1.584.036 1.58.044 1.576.055 1.573.065 1.569.074 1.566.084 1.563.095 1.56.103 1.558.115 1.557.123 1.554.135 1.552.143 1.55.154 1.552.163 1.55.174 1.55.182 1.55.193 1.55.204 1.55.212 1.553.223 1.55.233 1.555.243 1.556.252 1.557.262 1.56.273 1.562.282 1.565.292 1.567.302 1.571.312 1.576.323 1.579-1.158.24-.323-1.585-.314-1.582-.303-1.578-.294-1.575-.282-1.572-.275-1.569-.262-1.566-.254-1.564-.244-1.563-.233-1.56-.224-1.561-.215-1.56-.204-1.556-.193-1.558-.184-1.557-.174-1.557-.164-1.558-.155-1.558-.144-1.56-.135-1.56-.125-1.562-.114-1.564-.105-1.566-.094-1.568-.085-1.57-.075-1.574-.065-1.575-.055-1.58-.045-1.584-.035-1.587-.026-1.592-.014-1.597zm1.181-.008-1.182.008.001-.03.001-.031.004-.03.006-.029.006-.028.008-.028.008-.028.01-.027.014-.026.012-.026.015-.026.015-.023.015-.024.018-.022.019-.021.02-.022.02-.02.022-.019.022-.017.022-.017.025-.016.024-.014.025-.013.027-.012.027-.012.027-.009.028-.007.03-.007.027-.006.03-.004.03-.004h.061l.03.002.029.004.03.005.027.006.028.008.029.01.027.01.027.011.025.013.025.015.023.015.024.016.022.018.022.018.02.02.02.02.019.022.018.021.016.024.016.023.014.025.013.026.012.027.01.026.011.028.007.028.007.028.006.03.004.029.004.03.001.03h-.002z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m343.96 367.25 13.271 2.232c-.65 2.848-4.02 20.313-4.63 23.295-4.964 24.275-8.236 52.876-4.484 84.25 1.392 11.64 3.86 21.16 7.48 28.517-14.559-1.653-23.89-15.872-22.683-40.67-2.53-28.96-1.419-51.99 3.27-69.313 1.373-5.074 5.79-24.209 7.776-28.31z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m357.15 369.98-13.271-2.232.164-.983 13.271 2.233.402.601zm.164-.982.52.087-.118.514zm-4.226 23.886-.973-.2.066-.32.08-.399.092-.473.108-.544.12-.608.13-.665.142-.719.15-.766.158-.808.167-.845.17-.875.178-.905.18-.923.185-.94.186-.95.187-.954.187-.954.187-.95.185-.937.18-.92.18-.9.174-.874.166-.839.16-.802.152-.76.143-.712.134-.658.123-.6.11-.534.099-.466.083-.393.07-.312.97.22-.069.306-.083.385-.096.462-.11.535-.124.597-.133.655-.143.71-.152.76-.16.802-.167.84-.173.872-.178.898-.18.921-.185.938-.187.949-.188.954-.186.954-.187.95-.184.94-.18.923-.177.902-.172.878-.166.844-.159.809-.15.766-.14.719-.132.665-.12.607-.107.544-.095.476-.08.402zm-4.476 84.09-.988.117-.33-2.938-.294-2.923-.252-2.907-.215-2.888-.176-2.873-.14-2.852-.105-2.836-.071-2.818-.038-2.798-.005-2.78.026-2.76.059-2.74.087-2.723.114-2.7.142-2.682.17-2.66.195-2.64.218-2.618.243-2.598.266-2.574.288-2.553.308-2.53.327-2.51.346-2.483.364-2.462.382-2.438.396-2.415.411-2.392.426-2.366.439-2.34.449-2.317.46-2.293.974.2-.458 2.285-.45 2.31-.436 2.336-.426 2.36-.409 2.382-.395 2.407-.38 2.431-.364 2.453-.343 2.477-.328 2.499-.306 2.521-.287 2.546-.264 2.565-.243 2.586-.218 2.61-.193 2.629-.17 2.65-.141 2.671-.115 2.69-.087 2.711-.056 2.73-.026 2.75.005 2.768.037 2.787.07 2.806.104 2.824.14 2.841.177 2.858.212 2.877.252 2.892.29 2.912zm6.93 29.072.113-.99-.502.715-.34-.703-.331-.715-.326-.729-.318-.739-.312-.753-.305-.766-.298-.778-.292-.79-.284-.804-.279-.815-.27-.829-.265-.84-.258-.853-.25-.864-.246-.878-.237-.89-.23-.903-.226-.915-.218-.928-.211-.94-.206-.953-.197-.964-.192-.977-.186-.99-.179-1.002-.172-1.015-.166-1.027-.16-1.038-.153-1.052-.147-1.064-.14-1.076-.135-1.09.988-.117.132 1.082.14 1.07.145 1.054.153 1.045.158 1.032.165 1.02.17 1.005.179.993.184.982.19.968.197.957.203.943.209.93.215.92.223.905.229.893.234.879.242.868.248.855.255.842.26.83.268.817.274.804.28.791.287.78.293.765.3.752.308.742.313.727.319.714.327.704.332.689zm.502-.715.402.817-.904-.102zm-23.624-40.407.99-.086v.068l-.081 2.28-.021 2.218.037 2.156.096 2.09.154 2.027.21 1.963.265 1.898.32 1.833.373 1.768.425 1.7.476 1.636.526 1.568.575 1.502.624 1.434.669 1.368.715 1.298.76 1.231.803 1.164.847 1.092.887 1.027.929.957.969.888 1.006.819 1.045.75 1.081.682 1.12.61 1.153.542 1.19.472 1.223.401 1.256.33 1.289.259 1.323.188-.113.99-1.377-.196-1.345-.271-1.315-.346-1.28-.42-1.245-.493-1.208-.567-1.173-.641-1.133-.712-1.094-.786-1.053-.857-1.011-.928-.969-.999-.924-1.067-.88-1.137-.831-1.205-.788-1.274-.74-1.343-.689-1.407-.64-1.477-.591-1.542-.539-1.606-.488-1.673-.434-1.738-.38-1.803-.325-1.866-.27-1.93-.214-1.994-.156-2.057-.096-2.12-.04-2.183.023-2.246.083-2.306zm.99-.086.002.032-.001.036zm2.295-69.4.96.26-.427 1.632-.407 1.666-.385 1.7-.365 1.735-.343 1.768-.324 1.8-.302 1.836-.281 1.87-.26 1.903-.239 1.936-.218 1.971-.197 2.006-.176 2.04-.154 2.073-.135 2.108-.113 2.142-.093 2.176-.07 2.21-.05 2.245-.027 2.28-.007 2.313.014 2.348.034 2.382.055 2.417.078 2.452.099 2.487.12 2.519.141 2.557.162 2.59.183 2.624.205 2.66.227 2.694-.99.087-.227-2.701-.205-2.667-.185-2.632-.162-2.597-.142-2.563-.12-2.529-.098-2.494-.078-2.46-.058-2.425-.034-2.391-.014-2.356.007-2.323.028-2.288.052-2.255.07-2.222.093-2.185.112-2.154.135-2.117.157-2.085.176-2.052.2-2.017.218-1.983.241-1.95.262-1.916.284-1.883.303-1.85.326-1.815.346-1.782.368-1.748.389-1.717.41-1.682zm8.338-28.671-.164.982.529-.274-.183.405-.2.495-.214.577-.228.652-.238.719-.246.784-.257.84-.264.89-.27.938-.275.979-.28 1.012-.283 1.043-.286 1.068-.287 1.085-.286 1.102-.287 1.108-.284 1.111-.281 1.11-.278 1.102-.274 1.088-.267 1.071-.26 1.046-.254 1.017-.244.984-.234.943-.223.9-.212.847-.199.794-.186.732-.17.667-.155.595-.138.52-.96-.261.136-.513.155-.59.17-.664.184-.73.198-.792.213-.847.223-.898.234-.943.244-.983.253-1.018.26-1.048.268-1.071.273-1.09.278-1.103.284-1.111.284-1.114.287-1.11.287-1.102.288-1.09.286-1.071.285-1.047.28-1.017.277-.984.271-.944.267-.898.259-.85.25-.792.244-.734.232-.668.223-.6.212-.526.204-.45zm-.529.273.162-.335.367.062zm.447.218.082-.491zm-.447-.218.162-.335.367.062z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m335.92 370.39 6.515 7.44c-1.85 1.322 1.288 7.027-.4 18.104-1.09 6.289-4.832 13.704-5.606 21.729-2.566 26.596-2.576 59.898 5.416 81.186-14.559-1.653-19.556-14.853-20.028-39.678-.39-20.523-.456-44.72 4.693-72.661 1.045-6.53 4.182-11.737 9.41-16.12z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m342.06 378.16-6.515-7.44.746-.656 6.515 7.44-.084.734zm.746-.656.362.414-.447.32zm-.285 18.515-.978-.169-.002.01.143-1.014.117-.98.092-.949.069-.92.05-.888.03-.858.011-.827-.004-.8-.015-.767-.03-.74-.04-.711-.046-.681-.054-.654-.059-.624-.063-.596-.063-.57-.065-.54-.06-.517-.058-.488-.052-.463-.045-.438-.034-.414-.024-.39-.01-.368.005-.345.024-.328.045-.31.076-.295.105-.276.144-.256.187-.232.227-.195.577.81-.091.078-.076.096-.067.12-.059.153-.047.19-.034.225-.019.262-.004.296.008.33.023.362.034.395.042.424.051.454.058.486.06.516.065.545.064.574.063.607.061.635.054.665.05.696.04.725.028.756.018.786.004.817-.014.848-.03.877-.05.91-.071.938-.094.973-.12 1-.145 1.035zm.002-.009-.002.01.007-.044zm-5.602 21.702-.99-.096.083-.761.1-.757.113-.754.13-.749.141-.743.155-.74.164-.734.177-.73.184-.724.193-.72.2-.715.205-.71.212-.703.213-.7.217-.691.22-.689.22-.681.22-.676.217-.67.216-.664.212-.658.208-.651.202-.647.197-.637.189-.633.179-.626.17-.618.16-.612.149-.604.134-.597.122-.59.11-.581.978.17-.112.604-.126.609-.14.613-.151.62-.165.627-.172.63-.184.635-.191.642-.197.645-.204.65-.21.656-.213.66-.215.665-.219.67-.219.676-.22.679-.217.683-.215.688-.213.692-.21.697-.202.7-.196.705-.19.708-.182.713-.172.716-.162.72-.153.723-.137.727-.126.73-.112.733-.095.735zm4.865 81.632.113-.989-.52.67-.733-2.044-.685-2.112-.638-2.173-.595-2.234-.55-2.287-.51-2.342-.466-2.392-.428-2.436-.389-2.479-.35-2.517-.312-2.555-.277-2.584-.242-2.616-.207-2.639-.175-2.663-.143-2.681-.111-2.697-.081-2.708-.054-2.716-.025-2.721.002-2.724.028-2.72.054-2.717.078-2.708.1-2.697.122-2.68.144-2.662.163-2.639.183-2.613.199-2.584.217-2.554.233-2.515.99.096-.233 2.509-.217 2.543-.2 2.578-.18 2.606-.163 2.632-.143 2.653-.122 2.673-.101 2.687-.078 2.698-.051 2.707-.028 2.712-.002 2.714.024 2.712.052 2.707.08 2.696.112 2.685.143 2.67.173 2.649.207 2.627.24 2.6.276 2.572.311 2.537.347 2.502.386 2.462.424 2.417.464 2.371.504 2.32.546 2.267.589 2.21.63 2.148.676 2.083.72 2.016zm.521-.67.286.762-.807-.092zm-20.989-39.492.995-.02.056 2.288.086 2.219.112 2.149.142 2.081.173 2.012.202 1.943.236 1.874.266 1.806.3 1.735.336 1.667.37 1.6.407 1.528.442 1.46.48 1.39.518 1.32.557 1.252.596 1.185.635 1.113.677 1.046.72.976.761.91.804.843.849.775.895.71.94.642.99.578 1.04.511 1.091.448 1.144.38 1.197.316 1.254.25 1.31.186-.112.99-1.364-.193-1.31-.262-1.259-.333-1.204-.401-1.154-.474-1.102-.542-1.05-.613-1-.682-.949-.752-.9-.822-.85-.891-.803-.958-.754-1.026-.71-1.095-.661-1.16-.62-1.227-.575-1.294-.533-1.361-.494-1.428-.451-1.494-.415-1.562-.378-1.627-.34-1.695-.305-1.762-.271-1.829-.238-1.895-.205-1.962-.173-2.03-.144-2.096-.113-2.166-.085-2.232zm4.7-72.75.98.158v.012l-.469 2.603-.436 2.583-.408 2.559-.381 2.539-.353 2.515-.329 2.495-.301 2.474-.28 2.45-.255 2.43-.231 2.407-.211 2.386-.191 2.364-.17 2.343-.152 2.32-.133 2.3-.116 2.276-.101 2.256-.085 2.236-.071 2.212-.057 2.191-.043 2.17-.033 2.148-.022 2.127-.012 2.106-.004 2.083.006 2.062.012 2.042.02 2.019.023 1.998.03 1.976.033 1.957.035 1.934-.995.018-.035-1.936-.033-1.956-.03-1.979-.023-2-.02-2.024-.011-2.044-.006-2.067.004-2.088.011-2.109.023-2.13.032-2.156.046-2.174.057-2.196.071-2.22.084-2.24.101-2.263.116-2.284.134-2.306.153-2.328.17-2.35.192-2.373.211-2.393.234-2.417.255-2.437.28-2.46.303-2.48.329-2.504.355-2.525.381-2.548.41-2.569.44-2.592.467-2.613zm.98.158v.012l-.007.03zm9.293-16.526-.746.656.692.054-.478.407-.464.413-.453.416-.44.42-.428.427-.415.432-.403.437-.392.442-.379.447-.366.45-.354.46-.344.463-.33.469-.318.474-.306.482-.295.485-.281.494-.27.5-.26.503-.244.512-.235.519-.221.525-.21.53-.199.54-.186.545-.175.554-.162.559-.149.567-.138.575-.127.581-.114.59-.103.598-.98-.157.105-.62.119-.61.131-.605.143-.596.156-.589.17-.582.18-.575.194-.569.206-.56.219-.555.231-.546.244-.54.257-.533.268-.527.282-.518.293-.515.306-.506.32-.5.33-.494.345-.488.355-.481.368-.476.38-.47.393-.463.406-.458.418-.452.429-.446.442-.44.454-.435.467-.43.478-.424.492-.42zm-.692-.054.372-.311.32.365z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m372.29 389.97-13.435-1.567c-2.469 12.704-4.357 21.686-4.815 26.212-.898 8.876 1.793 17.014 4.868 23.075 4.954-2.987 7.255-9.511 9.34-18.66 2.09-9.186 2.611-19.2 4.043-29.06z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m358.91 387.91 13.435 1.567-.115.99-13.435-1.568-.43-.59zm-.545.4.088-.453.457.053zm-3.833 26.357-.988-.1.047-.444.056-.468.064-.495.072-.518.08-.544.086-.569.095-.594.102-.618.109-.644.116-.667.122-.694.13-.717.135-.742.143-.765.148-.79.154-.813.16-.838.166-.86.171-.886.177-.908.182-.933.188-.954.192-.978.196-1 .201-1.024.207-1.047.21-1.069.214-1.091.22-1.114.221-1.135.227-1.159.23-1.18.975.191-.23 1.18-.226 1.158-.221 1.137-.22 1.114-.214 1.092-.21 1.069-.207 1.047-.201 1.023-.196 1-.193.978-.187.954-.182.931-.177.908-.171.884-.166.86-.16.835-.154.812-.148.79-.14.762-.137.739-.129.713-.122.691-.116.665-.107.64-.102.612-.092.588-.087.564-.079.537-.07.51-.063.484-.054.46zm4.118 22.598.511.853-.699-.2-.29-.58-.286-.592-.284-.604-.28-.614-.274-.626-.27-.64-.263-.647-.258-.66-.251-.669-.243-.68-.234-.69-.226-.699-.216-.708-.207-.72-.197-.725-.185-.738-.171-.744-.162-.752-.15-.76-.133-.768-.12-.776-.105-.783-.09-.79-.074-.797-.06-.803-.04-.81-.022-.816-.005-.822.015-.827.034-.832.054-.837.075-.843.987.101-.072.817-.052.814-.034.809-.013.803.005.8.021.794.04.788.056.782.072.776.088.77.103.763.117.756.132.75.144.741.157.736.169.727.18.72.193.709.202.702.212.695.22.685.23.673.238.666.247.656.25.647.26.636.264.625.27.614.273.603.279.592.282.582.285.568zm.511.853-.457.277-.242-.477zm8.6-19.196.968.221-.197.853-.198.838-.2.821-.205.809-.206.79-.211.775-.214.76-.22.743-.223.727-.231.71-.235.695-.244.678-.248.659-.256.645-.266.627-.274.609-.281.592-.292.574-.303.557-.312.538-.322.522-.336.502-.348.484-.359.464-.373.445-.386.427-.4.406-.416.387-.43.365-.444.346-.462.324-.476.303-.511-.853.436-.277.422-.299.41-.317.396-.337.382-.356.37-.376.36-.396.348-.417.338-.436.327-.456.317-.473.306-.494.298-.514.288-.531.28-.551.273-.572.264-.59.256-.606.25-.626.243-.645.237-.661.23-.68.226-.697.22-.715.216-.732.212-.748.208-.766.204-.782.202-.8.198-.814.199-.833zm4.528-28.453v-.996l.491.57-.13.922-.127.924-.123.923-.118.925-.115.923-.11.926-.11.925-.106.926-.106.924-.104.925-.103.923-.103.924-.103.922-.104.92-.105.919-.105.917-.108.917-.111.915-.114.912-.116.91-.121.907-.126.905-.129.902-.134.9-.141.895-.146.892-.153.89-.161.885-.167.882-.175.878-.185.874-.192.868-.969-.221.19-.859.182-.862.174-.868.166-.873.159-.878.15-.88.146-.886.139-.888.135-.894.129-.896.123-.9.12-.903.117-.905.113-.91.11-.91.107-.914.106-.915.104-.919.105-.92.103-.92.102-.923.103-.924.105-.927.105-.924.107-.928.109-.927.113-.929.114-.928.119-.929.123-.928.127-.928.132-.927zm0-.996h.574l-.083.57zm-.001 0v.996l-.058-.004zm0 .996h-.027l-.03-.004z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m407.15 418.58-11.924.125c-.408 10.96-.704 18.379-.509 22.24.382 7.576 2.272 13.995 5.506 18.796 3.622-3.02 7.05-8.35 7.59-16.274.543-7.958-.589-16.43-.663-24.887z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m395.23 418.2 11.924-.125.009.997-11.924.124-.5-.517zm-.491.48.017-.475.474-.005zm.483 22.234-.992.05-.017-.377-.014-.398-.012-.418-.009-.438-.006-.46-.004-.479v-1.02l.004-.541.006-.562.008-.583.01-.602.013-.624.015-.644.016-.665.018-.685.02-.707.021-.728.023-.747.025-.768.026-.79.028-.81.028-.83.03-.852.032-.871.032-.893.034-.914.035-.934.035-.956.037-.975.037-.996.038-1.018.992.038-.038 1.017-.037.997-.036.975-.036.955-.035.934-.034.912-.031.893-.032.872-.03.851-.029.83-.028.808-.026.79-.024.766-.024.747-.02.725-.02.705-.018.685-.017.663-.013.641-.011.622-.01.6-.009.578-.006.56-.004.535v1.012l.004.474.006.453.007.43.012.41.014.39zm4.692 18.437.636.766-.73-.104-.304-.464-.298-.473-.289-.482-.28-.493-.272-.5-.264-.509-.257-.52-.246-.528-.24-.536-.23-.544-.222-.553-.215-.563-.205-.57-.197-.579-.188-.586-.18-.595-.172-.602-.163-.611-.155-.62-.144-.626-.138-.635-.128-.642-.12-.648-.111-.657-.102-.664-.094-.67-.085-.68-.076-.686-.068-.693-.057-.7-.05-.706-.04-.714.992-.05.04.701.048.693.057.686.066.68.075.671.083.665.092.657.1.65.109.643.117.634.125.627.134.62.142.612.15.602.158.595.167.586.176.58.183.57.192.563.198.554.208.544.217.537.222.527.232.52.24.51.247.5.254.492.263.484.27.474.278.464.286.456.293.445zm.636.766-.422.352-.307-.456zm6.776-16.69.992.068-.06.747-.077.733-.094.717-.108.701-.124.687-.139.674-.153.656-.166.643-.18.627-.194.615-.205.598-.217.583-.228.568-.239.555-.25.54-.259.524-.268.51-.278.497-.287.48-.292.468-.302.453-.306.438-.315.424-.319.41-.325.396-.33.38-.333.369-.34.354-.342.34-.343.325-.346.312-.349.298-.635-.766.33-.282.326-.295.328-.309.323-.32.32-.337.317-.349.314-.361.309-.378.305-.388.298-.406.294-.417.286-.431.28-.447.273-.459.266-.473.257-.49.247-.5.238-.517.23-.53.218-.546.208-.56.198-.574.184-.588.174-.604.16-.617.147-.633.134-.648.12-.663.105-.678.09-.694.074-.707zm-.162-24.356-.01-.996.503.494.009.79.015.789.021.79.025.789.03.79.033.79.036.79.04.788.041.79.044.788.044.788.046.787.045.786.046.785.043.786.043.783.041.782.04.781.034.78.033.778.03.777.024.775.02.775.015.77.008.77.002.768-.005.766-.011.764-.022.76-.027.76-.037.757-.046.753-.992-.068.046-.741.037-.744.027-.747.019-.751.012-.754.005-.757-.002-.759-.008-.763-.013-.763-.02-.767-.025-.769-.03-.772-.032-.774-.035-.777-.039-.776-.04-.78-.044-.783-.044-.783-.046-.785-.044-.786-.046-.788-.045-.788-.043-.79-.04-.792-.04-.794-.037-.791-.033-.795-.03-.795-.025-.795-.021-.796-.018-.796-.009-.797zm-.01-.996.498-.005.005.498-.502-.493z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m419.99 424.24-11.913.542c-.027 10.969-.064 18.392.264 22.246.645 7.557 2.757 13.906 6.156 18.59 3.516-3.144 6.755-8.59 7.02-16.528.266-7.972-1.16-16.398-1.529-24.85z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m408.06 424.28 11.913-.542.045.994-11.913.542-.52-.498zm-.475.496.001-.475.474-.021zm1.256 22.205-.99.084-.03-.376-.028-.398-.026-.417-.024-.437-.022-.46-.02-.479-.017-.498-.018-.52-.014-.542-.014-.56-.013-.584-.01-.603-.01-.623-.008-.645-.007-.665-.006-.686-.005-.707-.004-.726-.004-.748-.002-.77v-4.156l.001-.893.002-.914.002-.935.002-.955.002-.977.002-.997.002-1.018.995.002-.002 1.018-.002.997-.002.977-.002.955-.002.935-.002.914-.001.893-.001.872v2.492l.001.788.002.767.004.748.004.726.005.705.006.683.007.663.008.643.009.62.01.6.011.58.014.558.014.537.018.515.017.496.02.473.023.452.023.43.026.41.027.389zm5.33 18.262.662.742-.733-.078-.32-.454-.313-.462-.306-.47-.297-.484-.29-.49-.281-.501-.275-.509-.265-.52-.257-.526-.25-.537-.241-.545-.233-.554-.224-.563-.219-.571-.208-.58-.2-.588-.193-.597-.184-.605-.176-.612-.168-.621-.158-.63-.152-.637-.14-.645-.135-.652-.126-.66-.117-.668-.108-.675-.1-.683-.09-.688-.083-.698-.075-.704-.065-.712.99-.085.065.698.072.692.081.684.09.677.098.668.105.662.115.653.123.646.13.638.139.631.147.622.156.614.163.605.17.598.18.589.188.58.196.574.202.564.21.554.22.546.226.538.234.53.241.517.25.513.256.5.265.492.27.483.28.474.287.464.295.455.301.445.309.435zm.662.742-.41.367-.323-.445zm6.193-16.916.992.033-.034.75-.052.734-.068.72-.083.705-.1.692-.114.676-.13.663-.146.647-.157.634-.171.62-.186.606-.197.59-.207.575-.22.564-.23.548-.241.532-.251.52-.26.506-.27.49-.276.478-.285.463-.292.448-.299.436-.306.42-.31.407-.318.393-.32.38-.326.364-.33.352-.333.337-.335.323-.338.31-.661-.742.319-.294.319-.306.314-.319.313-.333.308-.346.306-.36.3-.374.297-.387.29-.4.284-.415.278-.428.274-.442.262-.453.257-.47.249-.482.24-.497.23-.51.22-.525.212-.538.198-.552.19-.566.176-.58.164-.596.153-.61.138-.623.125-.637.112-.652.096-.666.081-.681.066-.697.049-.71zm-1.032-25.33v.996l.496-.52.037.788.044.789.048.788.053.79.056.787.06.787.065.79.067.787.07.787.07.786.071.785.073.786.073.785.072.782.072.784.07.78.068.78.066.78.062.78.06.775.057.775.052.775.046.771.04.771.036.77.03.767.021.766.016.762.007.763-.002.759-.01.758-.022.754-.992-.033.019-.742.01-.746.002-.748-.007-.75-.013-.754-.022-.756-.03-.758-.034-.762-.041-.764-.046-.765-.052-.767-.055-.771-.06-.773-.062-.774-.066-.776-.069-.778-.069-.78-.071-.781-.073-.782-.073-.785-.073-.786-.071-.787-.07-.789-.07-.79-.066-.789-.065-.792-.06-.792-.06-.794-.052-.794-.048-.796-.044-.794-.037-.796zm-.496.519-.023-.52h.519zm.497.477h-.001v-.997l.023.995z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m395 412.42-11.895-.845c-1.294 10.893-2.19 18.263-2.308 22.127-.234 7.582 1.13 14.133 3.966 19.18 3.856-2.714 7.703-7.748 8.882-15.603 1.186-7.888.744-16.423 1.355-24.86z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m383.14 411.08 11.895.845-.07.994-11.895-.845-.459-.556zm-.529.438.056-.472.473.034zm-1.318 22.201-.992-.03.012-.379.02-.398.021-.416.026-.437.032-.458.036-.478.039-.498.043-.519.047-.54.052-.56.055-.578.06-.6.063-.621.066-.64.07-.663.073-.682.077-.702.08-.723.083-.743.087-.764.09-.785.093-.805.096-.826.099-.846.102-.867.104-.887.108-.908.11-.928.113-.95.115-.969.118-.99.12-1.01.987.117-.12 1.01-.118.99-.115.97-.112.95-.11.927-.109.909-.104.887-.102.864-.098.846-.097.826-.092.805-.09.783-.087.763-.084.742-.08.722-.077.7-.072.68-.07.66-.066.638-.064.618-.057.598-.055.577-.052.554-.047.536-.043.513-.04.494-.033.473-.032.452-.026.43-.022.41-.019.39zm3.184 18.757.572.816-.719-.164-.266-.486-.259-.496-.249-.505-.239-.512-.231-.522-.222-.53-.213-.537-.204-.547-.195-.554-.185-.561-.177-.57-.168-.577-.158-.585-.15-.593-.14-.6-.131-.608-.122-.615-.113-.622-.103-.629-.095-.637-.086-.642-.076-.651-.067-.656-.057-.665-.048-.67-.04-.676-.028-.684-.02-.69-.012-.695-.001-.702.007-.708.019-.715.992.03-.017.701-.007.697.001.687.01.684.02.675.029.67.038.663.046.655.058.649.064.641.074.635.083.628.093.62.1.615.111.607.12.598.126.592.138.582.145.577.154.567.163.56.17.553.18.543.188.537.197.527.207.52.214.511.222.503.232.493.24.487.247.477.257.467zm.572.816-.449.316-.27-.48zm8.105-16.084.983.148-.121.74-.136.722-.15.708-.165.692-.179.674-.193.66-.206.642-.218.627-.23.611-.243.596-.252.58-.265.563-.272.549-.284.533-.292.517-.301.503-.31.486-.315.472-.324.455-.33.443-.337.427-.343.412-.347.397-.35.383-.358.368-.36.354-.362.338-.366.326-.368.31-.368.297-.372.282-.37.269-.573-.815.352-.253.35-.268.35-.28.35-.297.347-.306.343-.322.343-.337.339-.35.334-.364.33-.378.327-.394.32-.405.317-.422.307-.437.304-.45.295-.465.288-.48.28-.495.27-.51.263-.525.253-.543.243-.556.232-.572.222-.587.208-.602.199-.62.186-.635.172-.65.16-.667.145-.684.132-.699zm1.81-24.29.071-.993.46.533-.053.787-.05.789-.043.788-.038.79-.034.789-.03.79-.029.79-.025.79-.022.79-.02.789-.02.788-.02.789-.018.787-.02.787-.018.786-.021.785-.022.782-.025.782-.027.78-.03.779-.035.776-.037.775-.042.773-.048.77-.055.769-.06.765-.066.762-.074.76-.08.758-.091.754-.097.751-.108.747-.983-.148.106-.735.097-.74.088-.742.08-.746.072-.75.066-.754.06-.757.052-.76.049-.763.042-.766.037-.77.034-.772.03-.774.028-.775.024-.78.023-.78.02-.782.02-.784.018-.787.02-.787.018-.788.02-.791.021-.79.022-.794.025-.792.028-.794.03-.793.035-.794.038-.797.044-.795.049-.796.055-.794zm.071-.993.496.035-.036.498z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m383.86 399.58-13.046-5.419c-2.225 8.824-5.23 37.867.111 50.133 4.347-2.953 8.726-8.493 10.188-17.225 1.468-8.77 1.907-18.098 2.746-27.489z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m371 393.7 13.046 5.419-.38.918-13.046-5.418-.292-.582zm-.672.337.14-.558.532.221zm.314 49.843.559.825-.735-.214-.488-1.226-.438-1.314-.39-1.397-.344-1.471-.302-1.541-.259-1.602-.22-1.66-.182-1.707-.146-1.752-.114-1.787-.078-1.817-.05-1.842-.02-1.857.007-1.866.034-1.87.056-1.865.079-1.856.1-1.838.117-1.815.136-1.782.15-1.748.166-1.702.177-1.652.188-1.595.196-1.53.204-1.459.21-1.382.212-1.298.216-1.208.216-1.11.216-1.006.213-.899.964.245-.209.873-.21.987-.214 1.093-.211 1.192-.213 1.286-.207 1.37-.202 1.448-.196 1.52-.185 1.584-.177 1.642-.163 1.692-.151 1.737-.134 1.773-.117 1.803-.1 1.828-.079 1.843-.056 1.854-.032 1.857-.007 1.852.02 1.84.048 1.825.079 1.8.111 1.767.146 1.731.18 1.684.215 1.632.255 1.573.294 1.506.335 1.433.378 1.353.422 1.264.465 1.17zm.559.825-.495.336-.24-.55zm9.419-17.72.98.164-.148.822-.164.802-.18.784-.197.767-.213.747-.226.729-.242.712-.253.693-.267.674-.28.658-.293.64-.304.623-.315.604-.324.589-.335.568-.343.554-.353.537-.361.518-.368.502-.377.485-.38.467-.388.453-.394.434-.399.42-.402.403-.406.385-.41.37-.412.355-.414.337-.416.325-.42.307-.415.292-.559-.825.398-.277.397-.292.396-.307.395-.324.394-.338.39-.354.39-.368.383-.385.383-.4.375-.416.372-.434.366-.449.36-.464.354-.483.345-.497.339-.513.33-.532.322-.548.312-.565.304-.583.292-.599.28-.617.271-.634.258-.65.246-.67.233-.69.219-.704.205-.724.19-.741.176-.76.16-.78zm3.046-26.948.38-.919.305.504-.078.88-.075.878-.074.878-.073.877-.07.878-.07.876-.068.876-.07.875-.068.874-.068.873-.068.872-.069.87-.07.87-.07.868-.073.867-.074.864-.075.863-.078.863-.08.858-.083.857-.087.856-.089.855-.091.851-.096.849-.1.847-.106.843-.107.843-.114.839-.119.836-.123.833-.13.83-.135.828-.98-.164.134-.82.128-.824.123-.826.117-.83.113-.834.108-.835.103-.839.1-.842.096-.844.092-.847.089-.85.084-.851.082-.855.081-.856.078-.858.075-.86.074-.864.072-.865.07-.866.071-.87.07-.868.067-.872.068-.873.068-.874.07-.875.069-.875.07-.88.07-.877.072-.88.074-.88.075-.88.078-.882zm.38-.919.337.14-.033.364zm-.19.46-.19.459zm.19-.46.337.14-.033.364z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{id:"rs_inline_svg__c",d:"M387.75 701.16c7.963 6.383 15.249-8.217 8.187-27.512-5.225-14.277-30.765-8.735-16.54 10.47.674.91 1.624.488 1.489-.551-.808-3.938 1.703-6.227 5.577-5.5 10.577 1.98 10.91 22.068-.594 17.5-2.099-.137-.22 3.91 1.88 5.593z",style:{fill:"#edb92e",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("path",{d:"m400.05 639.16-.006.13c-1.038 3.349-4.906 7.537-7.918 10.678-4.667 4.869-3.563 12.245-.333 16.164 3.523 4.276 5.096 9.092 5.803 12.833.528 2.307 1.473 7.471.785 15.508-.34 3.956-2.73 5.993-4.968 7.766-1.138.903.483 3.053 4.244 5.878.412.31 1.544 1.085 2.083 3.045.208.47 1.953.47 2.162 0 .54-1.96 1.671-2.736 2.084-3.045 3.76-2.825 5.381-4.975 4.243-5.878-2.239-1.773-4.629-3.81-4.968-7.766-.688-8.035.258-13.2.786-15.508.707-3.742 2.28-8.557 5.803-12.833 3.23-3.92 4.334-11.297-.333-16.164-3.012-3.14-6.88-7.329-7.918-10.679l-.006-.129c-.051-.65-.411-.978-.772-.978-.36 0-.72.327-.771.978z",style:{fill:"#edb92e",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("path",{d:"M395.06 685.47h11.51c1.98 0 3.602 1.592 3.602 3.538s-1.621 3.538-3.602 3.538h-11.51c-1.98 0-3.602-1.592-3.602-3.537v-.001c0-1.946 1.621-3.538 3.602-3.538",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"M406.57 685.97h-11.51v-.996h11.51zm4.1 3.04h-.995l-.004-.156-.012-.153-.02-.15-.028-.151-.034-.145-.042-.144-.049-.141-.053-.135-.064-.134-.068-.133-.075-.127-.08-.123-.086-.119-.094-.115-.098-.112-.102-.104-.109-.103-.112-.096-.119-.091-.12-.085-.127-.079-.13-.075-.134-.067-.138-.06-.142-.057-.142-.047-.15-.042-.147-.035-.153-.025-.156-.02-.159-.012-.158-.004v-.996l.21.006.206.016.203.025.202.035.199.046.194.054.19.063.185.073.18.08.179.09.17.097.166.104.161.113.156.12.148.127.142.133.137.14.128.146.122.15.116.162.107.163.098.17.092.172.082.178.075.185.064.188.057.191.045.197.036.197.027.202.016.206.006.206zm-.995 0h.994zm-3.105 4.036v-.996l.158-.004.16-.012.156-.02.152-.026.148-.034.15-.042.141-.047.142-.056.138-.062.134-.066.13-.076.127-.078.12-.085.12-.092.112-.096.109-.101.1-.105.1-.112.093-.115.086-.12.08-.122.076-.127.068-.133.063-.134.054-.135.048-.141.042-.145.034-.144.028-.15.02-.151.012-.154.004-.155h.995l-.006.207-.017.205-.027.202-.035.198-.046.196-.056.192-.065.188-.075.184-.082.179-.091.172-.099.17-.107.163-.116.16-.122.151-.126.146-.139.142-.142.132-.147.127-.156.12-.161.112-.167.105-.17.096-.178.09-.18.08-.185.073-.19.064-.194.054-.2.046-.202.035-.202.024-.207.017zm-11.51-.996h11.51v.996h-11.51zm-4.1-3.04h.996l.004.156.011.153.02.15.028.151.034.145.042.144.049.141.053.135.064.134.068.133.075.127.08.123.086.119.094.115.099.113.1.104.11.102.112.096.119.092.12.084.127.079.13.075.134.067.138.061.142.056.142.047.15.043.147.034.152.026.156.02.16.011.158.004v.997l-.21-.006-.206-.017-.203-.024-.202-.036-.2-.045-.193-.054-.19-.064-.185-.073-.18-.08-.179-.09-.17-.096-.166-.105-.161-.113-.156-.12-.148-.127-.142-.131-.138-.142-.127-.146-.122-.15-.116-.161-.107-.164-.098-.169-.092-.173-.082-.178-.075-.185-.064-.188-.057-.191-.045-.196-.036-.198-.027-.202-.016-.205zm.996 0h-.995zm3.104-4.036v.996l-.158.004-.16.012-.156.02-.152.026-.148.034-.149.042-.142.047-.142.056-.138.061-.134.067-.13.075-.127.08-.12.084-.12.091-.112.096-.109.103-.102.104-.097.112-.094.115-.085.119-.081.123-.075.127-.068.133-.064.134-.054.135-.048.14-.042.145-.034.145-.028.15-.02.15-.012.154-.004.156h-.994l.006-.207.016-.206.027-.202.035-.197.046-.197.056-.191.065-.188.075-.184.082-.18.091-.172.099-.169.107-.163.116-.161.122-.15.128-.147.137-.14.142-.133.147-.127.156-.12.161-.113.167-.104.17-.097.178-.09.18-.08.185-.073.19-.063.194-.054.2-.046.202-.035.202-.025.207-.016z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m417.13 579.19.384-10.914c-4.381-2.228-15.174.06-19.732 10.136-5.683 12.56-11.058 19.246-17.873 25.141 9.877 1.845 18.248-.11 23.64-7.356 7.277-9.775 11.168-15.697 13.58-17.007z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m418.01 568.3-.384 10.914-.992-.035.384-10.914.721-.427zm-.27-.462.282.144-.012.318zm-19.505 10.786-.905-.411.456-.945.491-.898.525-.855.554-.81.584-.764.61-.72.631-.68.654-.636.672-.593.688-.553.7-.512.713-.47.723-.434.728-.394.734-.355.735-.317.734-.282.733-.244.727-.21.719-.173.712-.14.699-.105.686-.072.67-.038.65-.007.632.024.61.057.584.089.558.119.531.15.5.182.467.212-.45.888-.393-.179-.429-.156-.463-.132-.497-.104-.528-.08-.556-.052-.58-.022-.603.005-.623.036-.64.067-.656.099-.668.132-.679.164-.687.197-.69.23-.695.266-.697.301-.694.336-.69.372-.684.41-.675.448-.665.484-.651.524-.637.563-.618.601-.6.644-.578.685-.553.725-.527.767-.498.812-.466.854zm-18.234 24.446-.183.978-.233-.866.63-.551.623-.557.614-.563.606-.57.6-.579.593-.587.586-.597.579-.609.574-.62.57-.633.561-.647.558-.662.554-.677.55-.694.545-.711.542-.731.538-.75.538-.77.532-.791.531-.814.53-.837.527-.862.528-.886.525-.913.525-.94.525-.97.524-.995.526-1.027.526-1.059.527-1.089.529-1.122.529-1.156.905.411-.533 1.166-.534 1.131-.531 1.098-.532 1.068-.53 1.037-.531 1.008-.53.979-.531.951-.533.925-.532.898-.536.874-.537.848-.539.826-.542.805-.544.782-.548.762-.55.742-.556.725-.56.706-.562.689-.568.674-.573.658-.578.645-.584.63-.59.62-.596.606-.602.597-.61.589-.616.579-.622.57-.632.566-.639.558zm-.183.978-1.016-.19.783-.676zm23.334-8.142.798.594-.527.68-.544.648-.562.618-.58.586-.595.557-.614.525-.63.497-.644.468-.662.436-.677.407-.693.38-.706.349-.72.322-.735.293-.749.265-.762.237-.774.21-.787.181-.799.157-.81.129-.824.103-.835.078-.845.052-.855.027-.867.002-.876-.024-.887-.047-.896-.07-.905-.096-.915-.118-.923-.14-.934-.165.183-.977.91.16.902.137.892.114.882.093.87.068.86.047.849.021.838-.002.827-.024.815-.05.803-.075.79-.099.778-.124.766-.15.751-.174.74-.2.726-.226.711-.252.698-.278.685-.305.67-.333.656-.358.642-.386.626-.415.612-.442.597-.471.583-.5.566-.528.55-.558.535-.588.52-.618zm13.483-16.727.992.035-.259.42-.202.118-.214.147-.23.176-.243.203-.256.232-.268.258-.28.286-.295.313-.306.342-.32.368-.332.393-.345.42-.359.445-.372.472-.387.498-.4.523-.415.548-.43.571-.445.598-.46.623-.477.646-.494.672-.507.696-.527.718-.543.743-.56.766-.58.792-.597.813-.615.837-.633.861-.654.884-.672.904-.798-.594.672-.905.652-.881.634-.859.614-.837.597-.813.577-.79.56-.765.544-.744.526-.72.51-.696.494-.672.477-.648.463-.625.447-.6.432-.576.418-.551.405-.528.391-.503.377-.478.366-.455.352-.427.34-.404.33-.38.318-.354.309-.33.299-.304.29-.28.281-.255.276-.229.267-.204.264-.18.26-.154zm.992.035-.01.284-.249.135z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m425.16 580.63-11.789-4.965c-4.833 9.853-8.123 16.512-9.493 20.127-2.687 7.09-3.421 13.768-2.178 19.535 4.786-1.219 10.314-4.633 14.051-11.652 3.752-7.047 6.063-15.277 9.41-23.046z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m413.56 575.2 11.789 4.965-.385.917-11.789-4.966-.253-.678zm-.638.239.206-.421.432.182zm-8.583 20.523-.929-.353.136-.354.147-.369.157-.388.17-.406.18-.423.19-.44.201-.456.213-.477.221-.492.234-.513.244-.528.253-.547.264-.565.274-.584.286-.601.295-.62.304-.638.316-.655.325-.675.334-.693.345-.71.354-.73.364-.746.375-.766.384-.785.393-.804.402-.82.412-.84.42-.859.431-.876.44-.897.448-.914.891.44-.448.914-.44.896-.43.877-.421.859-.412.838-.402.822-.393.801-.383.785-.373.766-.364.746-.354.728-.345.71-.334.69-.325.675-.314.653-.304.636-.295.62-.283.598-.275.582-.261.563-.254.544-.241.526-.231.508-.222.49-.21.47-.198.454-.189.435-.177.416-.165.398-.155.38-.145.362zm-2.764 18.876.244.965-.608-.378-.113-.553-.102-.56-.089-.565-.077-.57-.065-.573-.055-.58-.042-.583-.03-.588-.02-.593-.005-.598.005-.601.017-.604.027-.611.041-.614.052-.616.063-.622.076-.625.086-.63.099-.63.109-.636.122-.64.134-.642.144-.645.156-.649.169-.65.178-.655.191-.657.203-.661.215-.662.225-.666.237-.667.248-.67.93.353-.245.657-.232.654-.22.652-.21.65-.198.645-.187.642-.176.64-.164.637-.151.632-.142.631-.132.627-.117.622-.107.62-.096.614-.084.61-.073.61-.06.602-.053.6-.038.595-.027.59-.016.587-.005.583.006.577.018.572.03.569.04.563.052.558.062.554.075.547.087.544.097.538.108.532zm.244.965-.499.127-.109-.505zm13.49-12.368.877.468-.363.659-.371.638-.383.617-.39.597-.401.577-.408.555-.417.538-.426.517-.431.497-.436.478-.445.462-.452.442-.453.422-.461.406-.464.387-.466.37-.472.352-.474.335-.475.319-.477.303-.48.285-.48.27-.48.254-.48.239-.48.223-.478.21-.478.192-.473.178-.474.166-.47.15-.466.138-.463.124-.244-.965.437-.118.445-.13.446-.144.448-.156.453-.171.454-.184.455-.197.459-.214.456-.227.457-.242.459-.258.456-.271.456-.29.454-.304.453-.32.45-.337.446-.353.445-.37.44-.388.435-.405.43-.423.426-.441.42-.46.415-.478.407-.495.4-.515.394-.537.384-.553.377-.576.368-.596.36-.614zm9.656-22.354.384-.916.264.655-.31.727-.303.728-.3.73-.294.734-.29.735-.285.736-.283.738-.282.739-.276.739-.277.739-.276.74-.273.738-.273.739-.274.739-.273.735-.274.736-.277.733-.277.73-.28.73-.283.725-.286.723-.29.72-.292.716-.298.713-.302.708-.309.703-.314.699-.321.693-.328.689-.334.682-.344.677-.35.67-.876-.468.344-.658.337-.665.33-.67.322-.68.317-.684.31-.69.303-.695.3-.699.296-.706.29-.709.287-.715.284-.718.28-.721.278-.724.277-.729.274-.73.275-.733.273-.736.273-.737.274-.739.273-.74.276-.74.276-.741.28-.742.281-.741.285-.743.289-.74.292-.74.296-.738.302-.738.306-.735.312-.733zm.384-.916.463.195-.199.46z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m428.55 580.62-12.643-1.931c-2.285 10.735-3.853 17.998-4.3 21.839-.878 7.532.037 14.186 2.649 19.477 4.344-2.352 8.872-7.016 10.786-14.736 1.92-7.752 2.155-16.298 3.508-24.649z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m415.98 578.2 12.643 1.932-.15.984-12.643-1.931-.41-.596zm-.56.389.097-.46.463.071zm-3.322 22-.988-.115.047-.376.052-.394.059-.415.064-.435.073-.453.076-.472.084-.495.09-.513.095-.532.102-.554.108-.572.111-.593.118-.612.125-.634.13-.653.135-.672.14-.694.146-.712.15-.735.156-.753.162-.773.165-.794.173-.814.176-.834.18-.855.186-.874.19-.894.194-.915.2-.935.203-.955.207-.977.212-.996.972.207-.213.996-.207.976-.203.956-.2.935-.194.915-.19.894-.186.874-.18.854-.176.835-.17.811-.166.795-.161.773-.156.75-.15.732-.146.712-.14.692-.136.67-.127.651-.125.631-.118.61-.112.59-.108.57-.1.55-.094.527-.09.508-.082.488-.076.468-.07.447-.065.427-.056.405-.052.387zm1.92 18.982.471.876-.681-.217-.245-.511-.235-.517-.223-.526-.214-.533-.204-.541-.194-.549-.183-.554-.172-.564-.163-.571-.152-.577-.141-.584-.132-.592-.12-.598-.11-.604-.103-.612-.09-.618-.079-.625-.068-.63-.06-.638-.048-.644-.037-.649-.027-.655-.018-.66-.007-.668.005-.673.016-.678.024-.685.035-.69.047-.694.057-.7.066-.705.078-.71.987.114-.077.697-.065.69-.056.687-.045.68-.035.676-.024.668-.013.664-.005.657.007.65.015.647.027.64.038.631.045.628.058.619.068.613.077.609.087.599.097.593.108.588.116.579.13.573.137.565.146.558.156.553.168.542.176.536.186.53.197.52.206.514.215.505.226.498.235.49zm.471.876-.452.246-.229-.463zm10.068-15.294.964.24-.19.726-.205.711-.22.692-.234.673-.248.658-.26.64-.274.622-.285.605-.298.589-.308.572-.32.553-.328.54-.338.52-.346.506-.356.49-.364.473-.37.455-.377.442-.384.426-.39.41-.395.394-.399.379-.404.364-.407.35-.411.333-.413.32-.415.303-.418.29-.418.277-.418.26-.418.247-.42.234-.472-.876.397-.22.397-.236.399-.248.398-.262.396-.276.394-.29.394-.304.392-.318.388-.331.386-.348.38-.362.376-.376.373-.391.366-.407.36-.42.355-.437.347-.453.34-.467.332-.483.323-.5.315-.515.305-.533.296-.546.284-.565.276-.582.261-.596.251-.616.24-.632.224-.65.213-.666.198-.685zm3.99-25.028v.997l.49-.419-.121.78-.119.78-.11.782-.107.784-.103.783-.099.784-.093.785-.092.785-.09.784-.088.785-.086.784-.085.784-.086.783-.084.782-.086.78-.088.781-.088.779-.091.775-.094.776-.098.773-.1.77-.106.77-.109.766-.115.764-.12.761-.13.757-.132.754-.142.752-.15.747-.159.744-.169.74-.175.736-.965-.24.174-.722.164-.728.156-.732.148-.735.14-.74.132-.745.127-.75.118-.752.115-.756.11-.76.104-.762.1-.766.097-.768.091-.771.092-.773.088-.777.088-.778.085-.778.085-.782.085-.783.086-.784.085-.786.088-.787.09-.787.092-.788.096-.79.099-.788.103-.788.107-.788.112-.79.119-.788.124-.787zm-.49.419.068-.419h.422zm.492.578h-.001v-.997l.076.006z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m430.43 563.41 7.54-.063c4.4 2.187 9.02 12.222 3.682 21.906-6.655 12.07-8.793 20.385-9.438 29.382-7.38-6.831-10.818-14.723-8.243-23.384 3.474-11.687 6.853-25.118 6.459-27.84z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m437.97 563.85-7.54.063-.008-.996 7.539-.063.225.052zm-.009-.996.117-.001.108.054zm4.123 22.645-.87-.482.46-.886.405-.887.352-.885.299-.88.25-.88.201-.873.158-.865.112-.857.07-.847.029-.837-.008-.822-.047-.81-.081-.795-.115-.777-.144-.759-.176-.737-.202-.718-.229-.693-.253-.67-.274-.643-.295-.614-.313-.587-.328-.553-.344-.523-.355-.487-.366-.453-.373-.416-.38-.374-.382-.338-.382-.293-.381-.253-.377-.208.441-.89.45.247.444.293.436.336.43.377.42.417.409.456.399.492.383.528.37.56.352.594.334.624.313.654.29.683.268.71.243.732.213.758.186.78.153.802.12.82.086.839.049.854.01.87-.031.883-.074.894-.12.906-.164.912-.213.92-.264.926-.316.93-.37.932-.425.932zm-10.21 29.506.673-.731-.833.33.066-.847.075-.845.084-.842.095-.841.107-.84.118-.84.13-.843.142-.842.158-.846.169-.85.185-.855.2-.858.214-.864.23-.871.248-.879.265-.887.283-.895.3-.905.32-.916.338-.927.36-.938.38-.953.4-.964.42-.98.444-.995.468-1.012.489-1.028.512-1.047.537-1.064.562-1.084.587-1.104.613-1.126.87.482-.609 1.116-.581 1.095-.557 1.074-.533 1.055-.508 1.035-.484 1.02-.461.999-.439.983-.416.968-.395.953-.374.939-.353.926-.334.913-.315.902-.296.89-.278.882-.26.87-.243.865-.228.857-.21.848-.197.844-.181.838-.167.836-.154.832-.14.828-.128.828-.116.827-.104.827-.095.828-.082.83-.075.833-.064.836zm.832-.33-.074 1.032-.758-.702zm-9.215-23.561.953.284-.22.79-.184.788-.151.78-.117.775-.085.771-.051.766-.02.76.011.757.044.75.075.748.103.74.136.737.164.733.195.726.224.724.253.716.282.714.31.708.338.705.365.698.393.694.421.69.447.685.474.678.5.675.524.669.55.663.576.659.6.652.625.647.649.642.672.636-.673.731-.689-.65-.665-.659-.641-.663-.617-.671-.593-.678-.566-.684-.543-.69-.516-.696-.49-.704-.464-.711-.437-.716-.41-.722-.38-.729-.354-.735-.323-.741-.296-.746-.265-.755-.236-.759-.204-.766-.173-.77-.144-.777-.11-.783-.077-.787-.046-.793-.013-.796.021-.803.054-.806.09-.813.124-.815.158-.82.194-.825zm6.93-28.196.01.996.486-.57.03.335.007.378-.018.427-.037.477-.057.527-.077.576-.093.623-.111.668-.128.712-.143.754-.16.792-.173.83-.187.865-.201.897-.213.928-.226.957-.236.982-.247 1.006-.257 1.029-.267 1.047-.276 1.063-.283 1.079-.29 1.092-.297 1.101-.304 1.11-.307 1.114-.312 1.12-.318 1.12-.32 1.118-.322 1.116-.326 1.11-.325 1.101-.952-.284.325-1.1.324-1.106.32-1.112.321-1.116.316-1.117.312-1.115.307-1.113.301-1.107.297-1.098.289-1.088.282-1.076.276-1.061.265-1.042.257-1.025.245-1 .236-.978.224-.952.212-.924.2-.89.186-.858.171-.822.157-.785.143-.743.126-.7.109-.654.09-.607.073-.556.054-.502.035-.444.015-.382-.004-.315-.021-.238zm-.486.57-.082-.566.569-.005zm.491-.072-.005-.498zm-.491.071-.082-.565.569-.005z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m433.79 558.16-12.055-4.28c-4.261 10.115-7.164 16.95-8.325 20.639-2.276 7.232-2.628 13.94-1.056 19.629 4.71-1.492 10.675-4.575 14.004-11.796 3.342-7.252 4.535-16.245 7.432-24.192z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m421.9 553.41 12.055 4.28-.333.938-12.055-4.28-.291-.663zm-.624.275.182-.432.442.157zm-7.394 20.983-.947-.298.115-.361.126-.377.135-.397.146-.414.156-.432.164-.45.175-.47.184-.486.193-.506.204-.523.213-.544.222-.56.232-.58.24-.597.25-.617.259-.636.267-.653.278-.675.287-.69.294-.711.303-.73.312-.748.32-.767.33-.786.34-.805.345-.824.355-.843.363-.863.37-.881.38-.9.388-.92.395-.939.915.388-.395.939-.389.92-.378.9-.371.88-.364.863-.354.842-.346.823-.338.805-.328.786-.321.767-.312.746-.303.73-.294.708-.286.691-.276.672-.267.653-.26.634-.247.614-.24.596-.232.577-.22.558-.212.54-.202.52-.191.501-.184.482-.173.464-.162.445-.153.426-.143.406-.133.388-.122.37zm-1.68 19.005.301.95-.628-.343-.146-.546-.132-.553-.122-.558-.11-.564-.098-.57-.087-.576-.076-.58-.065-.585-.051-.591-.041-.596-.03-.6-.018-.606-.007-.61.005-.615.017-.62.027-.624.04-.629.05-.633.063-.637.074-.64.083-.645.097-.649.108-.652.119-.657.13-.66.14-.664.154-.667.164-.67.176-.674.188-.677.198-.68.21-.683.948.299-.205.67-.196.667-.183.662-.171.66-.162.656-.15.654-.138.647-.127.646-.117.64-.105.638-.093.633-.083.628-.072.624-.06.62-.049.615-.038.612-.027.605-.016.602-.005.595.007.592.017.587.03.581.038.577.051.57.063.566.071.56.085.554.095.549.105.542.117.537.128.533.139.525zm.301.95-.491.154-.137-.497zm13.402-12.48.903.418-.327.679-.342.655-.357.631-.37.61-.383.586-.396.564-.406.542-.418.52-.428.5-.437.48-.446.46-.453.439-.46.42-.467.401-.472.383-.477.367-.48.348-.485.33-.486.315-.488.3-.489.283-.49.27-.49.254-.487.241-.485.226-.483.216-.48.201-.477.19-.469.178-.466.168-.46.157-.451.147-.3-.95.437-.141.446-.153.45-.161.454-.173.46-.183.462-.194.465-.207.467-.218.47-.232.469-.244.47-.259.468-.271.467-.287.467-.302.462-.317.458-.331.457-.35.45-.365.443-.383.44-.4.432-.418.424-.439.417-.456.407-.474.396-.497.39-.516.377-.538.365-.558.353-.582.34-.602.326-.628zm7.716-23.515.333-.937.3.639-.263.742-.256.748-.247.753-.24.759-.232.762-.226.766-.22.771-.216.774-.212.777-.208.778-.206.78-.202.779-.202.782-.202.782-.2.78-.202.78-.203.778-.207.775-.207.773-.212.77-.216.768-.222.763-.226.756-.232.754-.242.749-.248.739-.256.735-.267.729-.276.719-.288.712-.299.704-.31.694-.904-.418.304-.676.292-.685.28-.695.27-.705.262-.715.252-.721.245-.73.237-.736.23-.743.224-.75.22-.755.213-.76.21-.764.207-.77.204-.771.203-.776.202-.777.2-.78.202-.782.202-.782.203-.784.207-.782.209-.783.214-.781.215-.78.223-.777.229-.775.234-.772.244-.769.25-.765.26-.759.27-.754zm.333-.937.473.168-.172.47zm-.166.468-.167.47zm.166-.468.473.168-.172.47z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m425.6 549.74-2.645-16.405c-2.769-.75-6.448 5.729-10.048 9.51-.83.871-1.784 1.691-2.508 2.766a23.3 23.3 0 0 0-3.417 7.956c-3.012 13.456-7.4 20.454-12.874 27.615 10.045-.208 17.844-3.83 21.652-12.023 5.137-11.055 7.743-17.645 9.84-19.42z",style:{fill:"#fff"}}),(0,h.jsx)("path",{d:"m423.44 533.25 2.645 16.405-.98.16-2.646-16.405.62-.56zm-.36-.4.308.083.052.317zm-9.82 10.332-.717-.686.331-.355.332-.37.333-.383.334-.394.335-.402.335-.413.334-.416.336-.42.334-.422.333-.423.333-.422.332-.417.33-.411.33-.405.33-.398.326-.384.325-.373.324-.361.323-.343.32-.326.32-.309.32-.285.32-.264.318-.239.32-.213.322-.184.325-.154.33-.12.334-.078.338-.038.342.012.338.063-.26.961-.188-.035-.192-.007-.207.023-.219.053-.233.085-.248.116-.26.15-.268.18-.278.207-.286.236-.292.262-.297.286-.303.309-.308.326-.312.347-.315.362-.32.377-.322.388-.325.398-.326.409-.33.415-.332.42-.333.422-.337.424-.335.423-.34.42-.34.418-.34.411-.342.402-.343.395-.343.381-.344.37zm-2.455 2.703-.823-.557.072-.107.075-.106.076-.102.076-.1.076-.1.079-.099.08-.097.08-.096.08-.094.08-.092.082-.092.083-.092.082-.088.081-.087.085-.09.082-.084.082-.086.084-.086.082-.083.083-.085.085-.083.08-.08.08-.083.085-.082.08-.08.084-.083.077-.078.078-.077.08-.081.077-.08.077-.08.078-.079.718.686-.08.084-.08.083-.082.084-.08.08-.082.085-.084.083-.081.08-.08.08-.08.08-.082.083-.084.082-.08.081-.08.08-.08.081-.08.081-.08.084-.08.082-.077.082-.078.085-.078.083-.076.084-.075.085-.075.086-.074.085-.073.087-.07.086-.07.089-.07.09-.068.09-.068.094-.065.091zm-3.344 7.786-.969-.219.067-.289.07-.286.072-.286.076-.283.08-.282.081-.277.086-.278.089-.273.09-.272.094-.27.097-.267.099-.264.102-.262.104-.262.108-.257.11-.255.112-.255.115-.25.117-.25.12-.245.12-.245.126-.24.125-.24.13-.236.13-.234.132-.23.135-.23.137-.226.139-.223.14-.223.142-.218.145-.216.823.557-.137.206-.138.21-.133.212-.134.214-.13.217-.13.22-.126.221-.125.224-.125.227-.12.228-.119.232-.116.232-.115.236-.113.24-.11.24-.108.242-.104.245-.103.248-.1.248-.097.253-.097.255-.092.255-.09.258-.087.262-.085.262-.08.263-.08.268-.077.27-.071.27-.07.273-.067.277zm-13.369 27.007.021.996-.404-.801.507-.668.501-.67.496-.669.487-.672.482-.674.474-.682.468-.686.46-.693.455-.702.447-.71.44-.723.432-.734.425-.748.418-.762.413-.779.405-.794.398-.813.389-.833.383-.854.376-.876.37-.9.36-.922.354-.95.347-.977.339-1.003.33-1.034.324-1.066.316-1.097.31-1.13.3-1.164.293-1.2.285-1.236.968.218-.287 1.25-.295 1.21-.305 1.179-.312 1.143-.32 1.11-.329 1.079-.335 1.048-.344 1.02-.352.99-.359.965-.367.938-.374.914-.382.892-.39.868-.397.848-.405.827-.412.81-.42.791-.425.777-.434.761-.44.746-.447.734-.454.723-.46.713-.469.703-.472.695-.481.689-.487.684-.494.679-.498.674-.506.674-.512.675zm.021.996-1.033.021.629-.822zm21.191-12.73.901.42-.376.77-.402.746-.425.72-.447.694-.472.666-.492.64-.518.614-.536.588-.559.564-.58.537-.6.511-.621.488-.64.462-.661.435-.678.412-.697.387-.716.365-.733.34-.752.314-.767.291-.785.27-.8.246-.818.222-.833.201-.848.179-.862.157-.877.134-.893.114-.905.092-.92.071-.933.05-.946.03-.02-.996.923-.028.91-.05.896-.069.882-.09.867-.11.852-.13.836-.153.82-.171.804-.194.787-.215.77-.236.755-.259.737-.28.719-.303.7-.323.683-.348.664-.368.648-.393.627-.415.608-.438.589-.462.57-.485.548-.509.53-.533.51-.558.489-.583.466-.607.448-.634.426-.657.405-.685.382-.711.36-.738zm9.8-19.13.981-.16-.17.46-.172.158-.182.187-.189.219-.196.248-.203.28-.21.307-.218.337-.223.367-.23.396-.239.425-.245.454-.253.48-.26.51-.268.538-.278.566-.286.593-.296.62-.304.65-.315.674-.324.704-.335.73-.346.757-.358.786-.368.81-.38.839-.394.865-.406.892-.419.918-.433.946-.445.97-.461.999-.474 1.024-.9-.42.473-1.023.459-.996.445-.97.433-.944.419-.917.406-.892.391-.864.38-.839.371-.811.358-.786.346-.76.335-.73.326-.706.316-.68.306-.652.298-.625.288-.599.28-.57.273-.546.265-.52.258-.492.252-.465.245-.437.24-.412.235-.386.231-.358.228-.334.224-.305.221-.28.222-.257.222-.23.224-.204zm.981-.16.045.279-.215.182z",style:{fill:"#21231e"}})]}),(0,h.jsx)("use",{xlinkHref:"#rs_inline_svg__d",width:1350,height:900,transform:"matrix(-1 0 0 1 964.297 0)"}),(0,h.jsx)("path",{d:"M536.38 414.88a38 38 0 0 0 4.857-1.368c-7.63-4.787-13.96-10.575-21.484-22.122-7.707-11.828 3.379-32.95 7.924-44.156 9.496-7.04 18.449-17.379 21.29-31.012 1.125-7.334-19.09-4.683-32.997 1.886-16.996 8.03-19.31 5.804-25.37 7.163-2.154 10.42 2.357 11.303 6.694 10.79-9.365 15.029-13.273 29.987-15.141 51.498-1.868-21.512-5.779-36.47-15.144-51.497 4.338.512 8.85-.37 6.693-10.79-6.059-1.359-8.371.867-25.369-7.164-13.906-6.569-34.123-9.22-32.997-1.886 2.842 13.632 11.793 23.97 21.29 31.012 4.545 11.205 15.631 32.33 7.924 44.156-7.524 11.547-13.853 17.335-21.484 22.122 1.65.58 3.27 1.039 4.858 1.368-1.154 1.576-11.049 4.663-12.209 3.842-7.574-5.362-14.956-17.956-21.396-25.265-18.245-20.712-27.347-36.702-24.13-49.597 4.585-13.887 20.93-29.475-.723-26.783-21.653 2.694-39.601 32.426-45.366 68.197-2.139 13.274-3.378 24.385-4.826 33.478 11.82-4.22 17.054-8.433 20.2-13.622-1.414 4.935-2.474 9.619-3.185 14.088 9.67-1.714 16.683-6.464 19.195-15.137 1.017-3.512 2.268-6.431 3.567-8.855 2.97 1.057 6.822.996 11.508-.155 1.779 4.25 15.098 19.102 22.256 30.014 8.082 12.322 20.229 21.742 24.23 22.255 2.004.257 2.62-4.192 2.174-10.324 21.125.15 42.235.275 62.935-.43 20.7.705 41.811.58 62.936.43-.447 6.131.168 10.58 2.17 10.324 4.003-.514 16.15-9.933 24.23-22.255 7.159-10.914 20.479-25.764 22.257-30.014 4.685 1.15 8.54 1.212 11.508.155 1.3 2.424 2.55 5.343 3.568 8.855 2.51 8.673 9.526 13.423 19.194 15.137-.71-4.47-1.77-9.155-3.183-14.088 3.143 5.188 8.378 9.402 20.198 13.622-1.448-9.093-2.687-20.204-4.825-33.478-5.764-35.771-23.713-65.503-45.366-68.197-21.652-2.692-5.309 12.896-.724 26.783 3.217 12.896-5.884 28.885-24.13 49.597-6.439 7.309-13.821 19.903-21.395 25.265-1.16.821-11.056-2.266-12.21-3.842z",style:{fill:"#fff",stroke:"#21231e"}}),(0,h.jsxs)("g",{id:"rs_inline_svg__e",children:[(0,h.jsx)("path",{d:"M440.58 356.77c-2.036 1.781-8.756 1.807-17.956 2.397-14.818.52-23.397-3.954-25.301-13.446 5.56 6.629 12.191 9.908 19.725 8.04 10.164-2.517 15.978-4.324 18.296-3.875 1.562.554 3.843 3.38 5.236 6.884z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m422.64 359.67-.035-.994h-.014l.856-.054.842-.05.824-.049.81-.047.794-.044.776-.044.759-.042.741-.042.725-.044.705-.042.685-.045.667-.045.647-.047.627-.049.604-.052.585-.055.563-.057.54-.063.518-.065.495-.071.47-.075.448-.08.42-.086.396-.092.37-.098.344-.104.313-.109.286-.116.258-.12.228-.126.198-.129.166-.133.655.75-.242.191-.266.174-.288.161-.312.146-.334.135-.357.123-.38.116-.4.105-.424.099-.445.09-.467.085-.49.077-.508.073-.531.068-.553.063-.575.06-.592.055-.613.052-.632.049-.651.05-.672.044-.69.045-.707.042-.725.043-.744.043-.758.042-.777.043-.793.045-.808.047-.824.048-.84.051-.854.054zm.014 0h-.014l.032-.001zm-24.952-14.263-.76.642.867-.419.193.85.23.822.266.79.307.761.34.733.38.703.415.674.453.645.49.618.526.588.565.561.602.534.638.506.678.477.716.451.754.422.792.395.829.367.869.339.907.311.945.282.984.254 1.021.227 1.06.196 1.097.168 1.137.14 1.173.111 1.21.083 1.25.053 1.286.023 1.323-.005 1.36-.033.035.994-1.381.035-1.344.005-1.31-.026-1.273-.052-1.236-.085-1.201-.113-1.165-.143-1.127-.173-1.09-.203-1.057-.234-1.017-.263-.983-.294-.944-.323-.91-.355-.87-.384-.835-.416-.796-.447-.76-.477-.72-.51-.683-.54-.645-.57-.604-.602-.566-.632-.526-.663-.488-.694-.445-.724-.406-.754-.366-.783-.325-.812-.285-.842-.244-.87-.203-.9zm19.225 7.879.24.966-.723.164-.718.134-.713.103-.708.074-.702.044-.698.015-.693-.015-.685-.044-.681-.071-.675-.099-.67-.128-.663-.154-.656-.182-.65-.207-.646-.235-.638-.26-.63-.285-.627-.31-.618-.335-.611-.358-.605-.383-.598-.407-.592-.428-.585-.452-.58-.474-.572-.496-.564-.517-.56-.54-.55-.559-.545-.579-.538-.599-.531-.62.76-.642.517.604.524.583.528.563.535.542.54.52.546.501.551.477.556.456.562.435.568.41.572.39.577.364.583.342.587.319.594.293.598.272.603.245.607.221.614.195.62.17.623.147.629.12.634.093.64.067.644.041.651.013.656-.013.662-.041.668-.07.673-.098.678-.127zm18.581-3.862-.33.938.071.02-.194-.03-.22-.02-.244-.009-.269.001-.294.016-.318.024-.341.037-.365.047-.387.058-.413.07-.434.08-.457.09-.481.1-.504.11-.527.12-.551.127-.574.138-.598.144-.621.154-.646.162-.668.17-.693.174-.718.185-.742.19-.766.196-.79.204-.816.209-.84.215-.865.22-.89.225-.916.23-.941.233-.24-.966.941-.234.914-.229.888-.225.864-.22.839-.213.815-.209.79-.203.766-.196.743-.19.718-.185.695-.177.67-.17.648-.162.624-.154.603-.147.578-.137.556-.13.536-.121.512-.11.49-.103.469-.093.448-.082.427-.072.406-.06.386-.053.367-.038.346-.027.33-.016.31-.004.293.012.277.025.262.04zm-.071-.02.034.007.037.013zm5.469 7.747-.655-.75-.135.56-.129-.318-.135-.314-.14-.31-.142-.306-.147-.3-.152-.295-.153-.288-.157-.283-.16-.278-.163-.27-.164-.263-.166-.256-.168-.25-.168-.239-.17-.233-.171-.225-.169-.215-.171-.206-.169-.197-.168-.186-.167-.177-.165-.167-.164-.155-.16-.146-.158-.133-.153-.12-.15-.11-.145-.097-.138-.084-.134-.073-.125-.059-.118-.047.331-.937.18.07.18.085.178.096.181.11.18.12.18.131.182.145.183.153.182.165.183.174.183.185.184.194.184.205.183.214.183.222.183.231.18.24.182.246.18.257.177.263.176.27.173.28.172.284.167.291.167.298.162.304.157.31.156.314.15.322.147.324.141.33.136.335zm.134-.559.13.328-.264.231zM419.53 321.15l.086 1.577h-.081l-.04-.004-.039-.005-.037-.006-.039-.01-.038-.01-.036-.011-.036-.015-.034-.015-.034-.018-.033-.018-.033-.02-.03-.023-.031-.023-.028-.024-.028-.026-.026-.027-.025-.029-.023-.03-.024-.03-.02-.033-.02-.033-.017-.034-.017-.035-.014-.035-.011-.038-.012-.037-.008-.04-.008-.038-.005-.039-.004-.04-.001-.042.001-.04.004-.038.004-.04.007-.038.008-.039.01-.036.013-.038.014-.035.016-.035.017-.034.02-.033.02-.032.021-.031.023-.03.024-.03.026-.026.027-.027.03-.025.029-.023.03-.023.032-.021.034-.019.033-.017.035-.017.036-.014.038-.013.037-.01.038-.01.04-.007.038-.006.041-.004zm15.272 3.914-.537 1.483-.554-.202-.545-.2-.538-.198-.53-.196-.523-.193-.514-.189-.507-.186-.5-.182-.495-.177-.486-.174-.481-.168-.475-.162-.468-.156-.463-.152-.458-.143-.451-.139-.447-.13-.441-.123-.437-.115-.432-.105-.427-.1-.424-.088-.42-.08-.416-.072-.412-.061-.409-.05-.405-.04-.403-.031-.4-.019-.398-.007-.396.004-.394.015-.086-1.576.443-.018.443-.004.442.008.443.023.444.032.444.044.446.056.447.066.449.076.45.086.452.095.453.105.457.112.457.12.463.129.465.136.468.142.472.15.476.155.48.16.484.166.49.172.494.175.5.18.504.184.51.187.516.19.523.193.53.196.536.197.543.199.55.2zm8.862 2.59.237 1.562-.251.026-.257.005-.263-.012-.274-.026-.284-.038-.295-.05-.308-.059-.316-.07-.328-.076-.334-.085-.341-.092-.349-.099-.351-.103-.356-.11-.357-.11-.358-.117-.36-.118-.353-.12-.351-.12-.346-.121-.34-.12-.33-.119-.322-.115-.311-.114-.298-.11-.284-.105-.268-.1-.251-.094-.233-.086-.21-.08-.19-.069-.166-.06.537-1.485.171.064.194.071.213.08.233.086.25.094.267.1.281.103.296.11.306.111.318.115.326.116.333.12.339.118.344.116.346.118.347.115.348.111.345.108.342.105.337.1.33.093.322.087.31.078.3.07.285.063.27.053.25.041.23.032.205.019.177.008.143-.002.104-.01v-.002zm.237 1.56-.237-1.56.04-.006.04-.002h.08l.038.002.039.006.037.007.04.008.035.01.037.013.035.014.035.015.034.018.033.019.032.02.031.02.03.024.029.024.027.027.027.027.025.03.024.029.022.03.022.033.018.033.018.034.016.036.014.037.012.036.012.039.009.038.007.04.005.04.004.04v.081l-.004.038-.005.039-.007.038-.008.038-.01.036-.014.037-.012.035-.017.035-.016.034-.019.033-.02.033-.022.03-.022.03-.025.03-.026.026-.027.027-.03.026-.028.024-.032.022-.032.021-.033.02-.035.017-.035.016-.036.014-.038.012-.039.012-.038.009zM467.17 336.71l.192-1.168.03.006.029.007.028.008.028.01.028.01.026.012.026.015.025.014.023.016.023.017.023.019.022.018.019.02.02.02.017.023.017.022.016.023.015.025.013.025.013.026.012.026.009.027.008.028.008.027.006.028.005.03.004.029.002.029v.03l-.001.029-.002.03-.005.03-.006.03-.007.03-.008.027-.01.028-.01.028-.013.027-.014.026-.014.024-.016.024-.017.023-.017.023-.02.02-.02.02-.02.02-.022.018-.023.017-.023.016-.025.015-.024.014-.026.011-.026.012-.027.01-.027.008-.028.007-.028.006-.028.005-.03.004-.029.002-.03.001h-.03l-.029-.005-.03-.004h-.002zm-9.861-2.072.318-1.142.212.058.216.06.218.059.221.059.226.059.23.06.232.06.238.058.243.06.247.06.253.06.26.06.265.062.272.061.279.061.286.064.294.062.302.063.31.064.317.064.329.065.336.066.346.065.356.067.367.068.378.07.387.069.4.07.409.071.422.072.436.073.447.074-.192 1.169-.45-.074-.438-.074-.426-.073-.413-.072-.402-.07-.392-.071-.38-.07-.37-.068-.36-.066-.35-.069-.341-.066-.33-.065-.323-.066-.315-.064-.306-.064-.298-.063-.29-.064-.283-.062-.277-.063-.27-.061-.264-.063-.259-.06-.252-.062-.248-.061-.241-.06-.237-.06-.233-.06-.23-.06-.226-.062-.222-.059-.218-.06-.217-.06zm.318-1.142-.318 1.142-.03-.01-.028-.009-.027-.012-.027-.013-.025-.015-.025-.015-.025-.015-.022-.018-.022-.019-.021-.02-.02-.02-.019-.022-.019-.021-.016-.024-.017-.023-.014-.025-.013-.025-.012-.026-.011-.025-.009-.028-.009-.028-.007-.027-.006-.028-.004-.028-.004-.03-.001-.028v-.03l.001-.028.002-.03.005-.029.006-.03.007-.029.009-.029.009-.028.012-.027.013-.027.014-.026.015-.025.016-.025.018-.022.019-.022.019-.021.02-.02.022-.02.022-.018.024-.016.023-.017.023-.014.026-.013.026-.013.026-.01.027-.01.027-.008.028-.007.028-.006.028-.005.028-.002.03-.001h.058l.03.003.029.005.029.006.03.007z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m431.54 331.89-.77 1.378-.391-.23-.381-.246-.37-.258-.359-.27-.347-.282-.338-.293-.328-.303-.318-.313-.307-.32-.3-.33-.29-.334-.283-.343-.273-.347-.266-.352-.258-.357-.252-.36-.246-.364-.238-.366-.23-.366-.227-.367-.22-.367-.215-.367-.21-.367-.205-.363-.2-.36-.198-.359-.191-.354-.189-.35-.185-.344-.18-.337-.18-.33-.175-.324 1.382-.757.178.328.18.334.182.338.184.343.188.347.189.349.192.35.197.355.2.353.204.355.206.354.212.353.216.352.22.348.227.346.231.343.236.337.241.334.247.326.252.321.26.315.264.306.271.298.278.29.285.28.292.27.3.259.304.249.314.236.32.224.329.212.338.198zm7.607-5.164 1.39.746-.237.433-.243.42-.246.408-.253.398-.258.385-.263.372-.268.36-.273.344-.277.331-.282.317-.286.302-.291.286-.296.271-.3.254-.304.237-.31.221-.314.201-.318.183-.323.164-.329.142-.332.12-.336.1-.342.075-.343.05-.346.024-.349-.002-.348-.03-.347-.058-.345-.086-.34-.114-.337-.142-.33-.17.769-1.379.229.118.226.096.225.075.223.055.224.038.223.019.225.002.228-.017.23-.034.233-.05.237-.07.24-.088.242-.105.245-.124.249-.143.25-.16.25-.179.253-.196.252-.214.252-.231.252-.248.25-.264.25-.28.247-.296.245-.31.243-.326.24-.34.236-.352.234-.366.23-.38.225-.39.22-.404z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m429.59 330.91-2.19-2.193q-1.601-2.028 1.853-5.401c1.685.73 3.032 1.293 4.381 1.856q-1.348 4.556-4.044 5.738M423.26 412.95l-.39 1.119-.029-.011-.027-.013-.028-.013-.026-.014-.024-.016-.024-.017-.023-.019-.021-.017-.021-.02-.02-.021-.02-.022-.017-.022-.015-.023-.015-.024-.014-.025-.013-.026-.013-.025-.01-.028-.009-.027-.008-.027-.007-.028-.005-.028-.005-.028v-.029l-.002-.029v-.03l.002-.027.002-.03.005-.03.007-.028.007-.03.01-.028.01-.028.013-.028.013-.027.014-.026.016-.025.017-.024.017-.023.019-.022.02-.022.021-.018.021-.02.022-.017.024-.016.023-.015.025-.015.024-.012.026-.012.027-.01.027-.01.027-.008.028-.006.029-.006.028-.004.028-.002h.057999999999999996l.029.001.029.004.03.005.028.006.03.008zm23.873-3.528.83.845-.626.593-.64.56-.651.527-.665.494-.677.46-.69.43-.701.396-.713.365-.723.333-.735.3-.745.27-.754.24-.765.21-.775.177-.783.149-.793.119-.8.09-.81.06-.817.033-.824.004-.832-.024-.84-.05-.845-.079-.853-.103-.86-.13-.865-.158-.872-.182-.877-.207-.882-.233-.889-.256-.892-.28-.899-.305.39-1.118.875.296.868.273.86.248.855.225.848.2.841.177.834.15.825.126.818.101.81.074.802.048.794.024.783-.005.777-.03.767-.058.756-.085.749-.113.737-.14.73-.168.719-.196.71-.224.698-.253.689-.283.679-.312.668-.342.658-.372.648-.404.637-.433.626-.464.615-.499.605-.528.592-.562zm2.889-2.867.835.839-.086.086-.085.084-.087.087-.086.086-.088.088-.087.086-.086.087-.088.088-.09.087-.088.088-.088.089-.089.088-.089.09-.09.089-.09.089-.09.09-.091.09-.09.089-.092.09-.09.092-.093.09-.093.092-.092.09-.093.093-.093.092-.093.093-.094.093-.094.092-.095.093-.094.094-.095.093-.096.095-.83-.845.097-.094.095-.094.094-.092.094-.093.093-.093.094-.093.094-.091.093-.092.092-.092.093-.091.091-.09.092-.092.091-.09.092-.091.089-.09.09-.089.092-.09.09-.09.088-.087.09-.09.089-.089.089-.088.088-.088.088-.087.087-.088.089-.087.087-.087.085-.086.086-.085.087-.087.085-.086zm.835.839-.835-.839.022-.021.022-.02.024-.018.024-.018.025-.015.026-.014.025-.013.027-.012.027-.009.027-.009.027-.007.028-.006.028-.005.029-.004.028-.002h.056l.028.002.028.004.028.005.028.006.028.008.027.008.027.01.026.013.026.013.026.014.024.015.025.018.023.019.023.018.022.022.021.022.02.023.018.024.016.023.016.026.015.026.012.026.012.026.01.027.008.027.007.028.006.027.005.029.004.028.002.028v.056999999999999995l-.002.029-.004.028-.005.028-.006.027-.008.028-.008.027-.01.028-.012.027-.013.026-.014.025-.015.025-.018.024-.019.024-.02.023-.02.022h.001z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m452.17 401.28-1.172-.162.005-.03.007-.029.008-.029.008-.028.01-.027.014-.027.013-.026.014-.026.015-.025.015-.023.018-.023.019-.02.02-.022.02-.02.022-.019.021-.017.023-.017.024-.015.024-.014.025-.013.026-.012.027-.012.027-.009.028-.008.028-.007.028-.006.028-.004.03-.002h.059l.03.001.03.004.03.005.029.007.03.007.027.01.027.01.027.011.026.013.026.014.023.016.025.016.022.018.021.019.021.02.02.02.018.021.017.022.018.024.015.023.014.024.013.026.012.026.01.027.011.027.008.027.007.028.005.028.005.03.002.029.001.029v.03l-.002.03-.004.03zm-5.508 15.927.298 1.147-.688-.815.207-.472.206-.472.2-.474.197-.473.194-.475.189-.476.186-.478.182-.48.178-.48.174-.483.17-.486.166-.488.163-.49.159-.495.153-.498.152-.501.146-.505.142-.509.138-.513.135-.518.132-.523.125-.528.122-.533.119-.54.113-.544.11-.55.105-.556.1-.563.098-.569.093-.577.089-.582.083-.591 1.172.16-.086.602-.089.595-.095.587-.098.58-.103.574-.108.567-.113.56-.116.557-.12.55-.125.543-.13.54-.133.533-.137.529-.14.524-.146.52-.15.516-.154.511-.158.509-.161.505-.167.5-.17.5-.173.495-.177.493-.182.49-.186.489-.19.486-.192.484-.197.484-.2.482-.203.48-.21.481-.21.48zm-.39.332 1.08.482-.013.028-.014.026-.015.026-.017.025-.017.023-.02.023-.02.02-.02.022-.021.019-.023.017-.023.018-.023.015-.025.016-.025.013-.025.011-.027.01-.027.011-.027.008-.028.007-.027.005-.029.005-.028.002-.029.002h-.056l-.03-.003-.028-.005-.029-.005-.028-.008-.03-.008-.028-.01-.028-.012-.027-.013-.027-.014-.025-.015-.025-.017-.023-.017-.023-.02-.02-.02-.022-.02-.019-.022-.017-.022-.018-.023-.015-.024-.015-.025-.013-.024-.012-.026-.01-.027-.01-.027-.009-.028-.006-.028-.006-.027-.005-.028-.002-.028v-.03l-.002-.028.001-.028.002-.03.005-.027.006-.03.007-.028.008-.03.011-.027.012-.028zm15.249-9.535.97.68-.32.442-.33.434-.344.423-.355.414-.367.406-.378.396-.39.385-.4.378-.412.367-.423.36-.434.348-.445.341-.455.331-.466.322-.476.314-.486.304-.497.295-.505.288-.516.277-.526.27-.534.26-.543.253-.554.243-.563.235-.571.227-.58.22-.59.21-.598.202-.606.192-.615.187-.622.178-.631.169-.298-1.146.614-.165.606-.173.596-.18.59-.189.577-.195.572-.203.56-.212.552-.218.543-.227.532-.235.523-.242.514-.25.504-.259.494-.266.483-.274.474-.282.463-.292.453-.298.442-.305.433-.315.422-.323.41-.33.4-.34.39-.348.379-.355.367-.364.356-.372.344-.381.334-.39.323-.398.31-.407.3-.415zm.97.68-.97-.68.019-.024.018-.023.02-.022.021-.022.022-.018.023-.02.023-.017.024-.015.024-.016.026-.013.026-.011.026-.012.027-.009.027-.008.028-.007.028-.006.028-.004.028-.004h.085l.029.002.028.004.028.006.028.007.027.007.028.01.027.01.027.014.027.013.026.016.025.017.024.017.024.02.02.02.023.02.019.023.019.022.017.023.015.025.015.025.014.024.011.026.012.027.009.028.008.027.006.027.006.028.005.028.002.028.002.028v.028l-.001.03-.002.028-.004.028-.006.028-.007.028-.008.029-.009.027-.01.027-.013.028-.014.026-.016.026-.016.026v-.001z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m461.29 400.2-1.178.108-.002-.03v-.03l.001-.03.002-.03.005-.029.005-.028.007-.028.008-.028.01-.027.01-.027.012-.026.012-.025.015-.025.016-.023.016-.024.018-.022.019-.021.02-.021.02-.02.022-.018.022-.018.024-.016.023-.016.025-.014.025-.013.027-.011.027-.01.028-.01.029-.008.029-.006.03-.005.03-.004.03-.002h.06l.03.004.027.004.03.006.028.007.027.008.027.01.027.01.026.011.025.013.024.014.024.016.023.017.022.018.022.018.02.02.02.02.019.022.017.022.016.024.015.024.014.025.013.026.013.027.01.027.008.028.008.029.006.03.006.028.004.03zm4.435 15.717.713.946-.841-.133-.282-.411-.274-.418-.268-.427-.26-.432-.253-.44-.247-.447-.239-.453-.233-.46-.226-.468-.218-.473-.21-.48-.205-.488-.197-.494-.19-.5-.182-.506-.176-.513-.169-.518-.16-.525-.155-.533-.147-.537-.14-.542-.132-.55-.125-.555-.117-.561-.11-.567-.104-.572-.096-.578-.09-.585-.08-.589-.074-.595-.066-.6-.058-.606 1.176-.108.058.591.065.584.072.58.078.573.087.567.093.562.1.555.107.55.115.544.121.54.129.532.135.525.142.52.148.514.156.506.163.5.17.495.176.49.181.48.19.474.197.47.203.46.21.456.216.447.223.44.23.436.236.427.241.42.249.413.255.407.262.4.269.39-.841-.132zm-.13.813.97-.68.017.027.015.026.014.026.012.028.012.027.009.027.008.028.007.028.005.029.005.028.002.028v.057l-.001.028-.002.029-.005.028-.006.028-.007.027-.007.027-.01.027-.011.027-.012.026-.014.025-.014.025-.016.024-.017.024-.019.022-.02.022-.02.022-.023.018-.022.02-.025.018-.024.016-.027.017-.026.013-.027.013-.027.011-.028.01-.027.006-.029.007-.028.006-.028.004-.03.002-.027.001h-.056l-.028-.005-.029-.004-.028-.006-.028-.007-.027-.008-.027-.009-.026-.011-.025-.012-.026-.013-.025-.015-.023-.016-.024-.017-.023-.02-.021-.018-.021-.021-.02-.022-.019-.024-.019-.023v-.001zm7.672-12.607 1.147.289-.142.54-.151.533-.162.523-.17.512-.18.502-.188.492-.197.482-.206.472-.212.462-.22.452-.228.442-.233.432-.242.422-.247.412-.254.403-.259.393-.265.383-.269.373-.274.364-.28.354-.283.344-.287.335-.291.326-.295.316-.296.305-.3.296-.303.287-.305.278-.307.268-.31.259-.31.249-.31.24-.714-.944.292-.226.293-.235.29-.243.289-.252.287-.262.285-.27.284-.28.28-.29.278-.296.275-.307.27-.316.27-.326.263-.334.26-.344.254-.353.25-.362.246-.372.24-.381.234-.391.227-.4.223-.41.216-.418.209-.429.202-.438.194-.448.187-.458.18-.468.172-.477.161-.487.154-.497.144-.507.136-.517zm1.147.289-1.147-.289.008-.03.01-.027.01-.029.012-.027.013-.027.016-.025.015-.024.018-.024.017-.022.019-.022.02-.02.021-.02.021-.02.022-.017.024-.016.023-.014.025-.015.026-.012.025-.012.026-.012.027-.008.028-.008.028-.006.028-.006.029-.004.029-.002h.058l.03.002.03.004.028.005.03.007.029.007.03.01.027.01.027.013.026.014.026.014.025.016.023.017.022.017.021.02.021.02.02.02.02.022.017.022.015.023.015.024.014.025.013.026.012.025.01.026.01.027.008.029.006.028.005.028.005.028v.03l.002.029v.029l-.002.03-.004.029-.005.029-.007.03-.001.002z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M405.91 317.77c-16.619 1.798-15.826 12.669-.29 28.043 2.974 2.94 3.994 2.847 4.628-.211 1.109-5.344 7.02-8.5 10.123-4.429 2.113 2.772 1.64 4.358 8.677 3.375 8.89 7.458 16.126 12.704 4.495 12.267-5.117-.193-9.06 2.791-15.727 2.53 1.972 3.83 2.325 4.273 3.39 4.597 6.463 1.28 13.273-2.763 19.793-1.558 14.285 2.636-22.887-38.633-22.427-40.263 1.174-4.154-8.936-11.6-12.662-4.351z",style:{fill:"#edb92e"}}),(0,h.jsx)("path",{d:"m405.97 345.46-.699.707-1.42-1.434-1.335-1.41-1.247-1.382-1.16-1.355-1.072-1.324-.984-1.297-.895-1.266-.805-1.236-.716-1.207-.626-1.174-.534-1.142-.442-1.112-.348-1.079-.256-1.047-.16-1.014-.062-.98.038-.945.14-.91.241-.868.346-.826.448-.778.55-.73.65-.677.75-.623.845-.57.943-.518 1.04-.464 1.137-.411 1.231-.357 1.332-.306 1.43-.251 1.527-.198.106.99-1.486.192-1.38.242-1.28.294-1.175.34-1.072.389-.969.433-.868.475-.767.517-.668.557-.57.593-.478.633-.387.67-.297.71-.208.751-.121.795-.033.839.055.882.145.927.237.972.328 1.012.42 1.054.51 1.093.604 1.131.692 1.17.784 1.202.874 1.236.965 1.272 1.054 1.303 1.143 1.333 1.23 1.363 1.319 1.393zm3.792.041.973.202-.063.29-.067.27-.07.259-.073.243-.08.227-.085.214-.092.198-.1.187-.112.173-.123.158-.138.145-.153.126-.168.104-.182.08-.192.053-.2.025-.199-.004-.197-.026-.2-.048-.197-.068-.199-.086-.201-.104-.204-.12-.21-.137-.216-.154-.223-.168-.231-.188-.24-.202-.247-.22-.257-.238-.267-.254-.278-.271.699-.708.269.262.255.245.245.225.234.207.22.188.21.17.2.15.185.134.175.112.162.096.145.075.135.057.118.043.101.024.09.012.072.001.059-.008.051-.013.05-.023.054-.032.055-.046.062-.065.064-.083.067-.105.068-.125.068-.147.067-.17.066-.189.064-.208.062-.23.06-.249zm11.005-4.63-.79.605-.273-.33-.285-.288-.292-.25-.302-.212-.31-.177-.318-.144-.324-.11-.33-.08-.336-.048-.341-.019-.345.01-.348.04-.35.069-.352.096-.35.123-.346.15-.345.178-.34.202-.331.226-.323.251-.314.274-.302.296-.29.317-.276.337-.259.356-.242.375-.224.394-.204.409-.183.423-.16.44-.136.453-.11.466-.974-.202.124-.523.154-.509.178-.492.207-.477.227-.458.252-.44.272-.423.292-.4.311-.38.327-.36.343-.333.357-.311.369-.287.381-.26.393-.236.401-.205.41-.177.416-.146.42-.116.424-.084.428-.047.43-.015.428.023.424.062.42.101.413.141.402.184.392.222.378.266.362.308.344.35zm8.6 3.295-.638.764.388.112-.645.084-.604.072-.565.056-.528.042-.492.028-.46.014h-.428l-.402-.016-.373-.028-.349-.042-.326-.056-.306-.072-.284-.086-.266-.1-.25-.113-.232-.13-.217-.14-.2-.156-.187-.164-.174-.174-.163-.181-.154-.19-.148-.195-.143-.201-.14-.207-.143-.214-.142-.22-.148-.222-.152-.23-.163-.236-.171-.241-.186-.248.79-.604.198.265.183.257.17.248.16.237.15.23.141.217.136.204.133.195.129.182.127.168.129.156.128.146.133.132.137.122.145.11.153.101.17.094.181.084.203.076.223.067.247.058.272.047.302.035.333.026.362.013h.398l.431-.012.467-.027.507-.04.546-.054.588-.07.631-.084zm-.388-.111.22-.03.168.141zm4.545 13.258.037-.994 1.022.023.91-.007.802-.04.695-.068.59-.097.484-.12.38-.141.278-.152.182-.149.105-.14.054-.147.017-.175-.032-.224-.091-.277-.158-.323-.221-.362-.287-.395-.344-.425-.403-.452-.455-.477-.504-.498-.55-.522-.594-.54-.632-.564-.668-.58-.702-.6-.73-.617-.757-.634-.78-.648-.798-.665-.816-.68-.829-.692.638-.764.827.693.815.677.799.665.78.65.759.636.735.62.706.605.676.587.641.57.605.552.565.535.523.517.476.498.428.481.378.463.323.45.267.436.206.427.138.425.058.427-.04.424-.152.402-.26.352-.347.288-.423.231-.498.184-.575.143-.66.11-.751.074-.845.04-.947.01zm-15.267 1.805-.882.456.46-.725.603.015.587-.002.574-.02.56-.033.548-.048.535-.06.525-.074.515-.083.506-.094.496-.1.488-.109.483-.115.475-.119.47-.124.466-.127.46-.128.458-.13.456-.127.453-.127.454-.124.454-.12.453-.113.452-.107.458-.1.458-.09.461-.08.467-.07.47-.054.478-.042.48-.025.488-.01.495.01-.037.994-.458-.008-.452.008-.448.025-.445.037-.442.052-.439.065-.437.075-.438.088-.438.095-.439.105-.44.11-.443.117-.447.12-.45.127-.454.129-.46.129-.466.13-.472.127-.478.127-.489.123-.495.118-.504.111-.515.105-.524.096-.536.087-.549.077-.56.064-.574.049-.586.036-.602.021-.616.002-.632-.016zm-.882.456-.39-.757.85.032zm3.928 3.88-.193.977-.048-.013-.105-.032-.11-.037-.106-.04-.104-.043-.106-.05-.102-.053-.104-.06-.102-.068-.099-.071-.1-.08-.096-.085-.096-.094-.094-.1-.095-.108-.096-.117-.094-.125-.096-.131-.098-.144-.102-.153-.105-.167-.106-.177-.112-.188-.117-.202-.121-.216-.129-.229-.134-.245-.14-.262-.147-.277-.156-.296-.163-.313-.171-.33-.18-.35.881-.456.18.347.172.33.16.31.154.29.146.275.14.257.128.238.125.225.118.209.11.193.107.178.1.165.095.15.09.138.087.124.082.115.077.101.073.09.072.082.068.071.063.062.063.056.06.05.061.043.058.037.06.034.064.034.066.03.071.03.074.028.08.027.09.029zm-.193.977-.015-.004-.033-.009zm19.98-2.536-.18.98-.589-.094-.591-.067-.596-.041-.596-.017-.6.005-.603.027-.605.045-.608.062-.61.078-.614.09-.614.101-.616.112-.619.12-.62.124-.623.13-.621.13-.626.132-.625.128-.626.125-.627.12-.63.112-.628.102-.63.09-.63.077-.632.06-.63.043-.633.023h-.63l-.634-.023-.632-.052-.631-.077-.63-.108.192-.978.583.101.587.073.59.047.59.021h.597l.599-.02.603-.042.604-.057.606-.074.611-.088.612-.1.615-.11.618-.117.62-.123.62-.128.623-.132.623-.13.626-.13.627-.127.628-.12.63-.113.63-.106.633-.093.632-.08.633-.064.633-.047.636-.027.636-.007.635.018.636.044.636.071zm-22.996-39.908.958.27.04-.07.236.421.441.664.622.86.779 1.036.92 1.195 1.042 1.336 1.15 1.464 1.241 1.573 1.316 1.67 1.372 1.748 1.415 1.813 1.44 1.863 1.447 1.896 1.442 1.916 1.417 1.917 1.378 1.907 1.32 1.88 1.25 1.839 1.16 1.782 1.056 1.71.935 1.626.799 1.526.646 1.414.478 1.294.292 1.168.078 1.04-.186.922-.514.742-.823.452-1.05.143-1.281-.13.18-.98 1.102.114.76-.099.452-.244.255-.374.112-.59-.065-.83-.26-1.035-.447-1.21-.62-1.358-.778-1.484-.919-1.596-1.041-1.687-1.147-1.764-1.24-1.825-1.314-1.868-1.37-1.897-1.41-1.91-1.437-1.91-1.445-1.89-1.436-1.859-1.412-1.81-1.372-1.746-1.314-1.667-1.243-1.576-1.15-1.464-1.048-1.34-.924-1.202-.788-1.048-.636-.884-.471-.706-.3-.544zm-12.13-3.721-.106-.99-.39.267.392-.679.434-.598.472-.517.505-.437.535-.36.56-.284.58-.209.593-.14.602-.074.608-.01.61.046.605.1.6.148.594.192.581.235.57.273.55.308.533.337.509.365.486.39.457.413.427.431.392.448.354.46.313.469.272.48.223.486.171.49.114.493.052.492-.018.49-.093.476-.957-.27.062-.32.013-.34-.04-.361-.088-.382-.138-.395-.185-.405-.232-.41-.276-.412-.314-.41-.352-.4-.385-.389-.415-.375-.443-.354-.465-.335-.484-.307-.501-.28-.513-.244-.52-.211-.526-.172-.528-.13-.525-.085-.518-.041-.51.01-.498.06-.483.114-.47.17-.452.229-.434.29-.414.36-.394.432-.37.51-.343.595zm.389-.267-.122.237-.268.03zm-.442-.228.052.495zm.442.228-.122.237-.268.03z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"m406.86 317.22-1.126.395-.009-.03-.008-.029-.006-.03-.005-.028-.004-.03-.002-.029v-.03l.001-.028.002-.029.005-.028.005-.028.007-.028.008-.029.01-.027.01-.026.011-.027.013-.026.014-.024.015-.024.018-.023.018-.023.017-.022.02-.021.021-.02.023-.019.023-.018.024-.017.025-.016.026-.015.027-.013.028-.013.028-.01.03-.008.029-.008.03-.006.028-.005.03-.004.03-.001.028-.001h.028l.03.005.028.004.028.006.028.007.028.007.027.009.027.01.026.012.026.013.025.014.024.016.024.017.022.018.022.018.021.02.02.02.019.023.019.022.016.025.015.025.016.026.013.027.012.027.011.03v-.002zm7.702 10.54-.77.91-.366-.314-.358-.315-.352-.317-.344-.32-.336-.32-.33-.325-.322-.325-.315-.328-.307-.33-.3-.333-.292-.334-.286-.336-.278-.338-.27-.34-.264-.343-.256-.344-.248-.346-.24-.35-.235-.35-.227-.352-.218-.355-.211-.357-.204-.36-.197-.36-.189-.363-.182-.366-.173-.367-.167-.37-.16-.372-.15-.372-.145-.376-.136-.377 1.126-.395.129.356.135.354.143.352.15.351.157.35.164.346.173.345.178.343.187.342.193.341.2.338.208.338.215.336.222.332.23.331.236.332.244.329.251.325.26.326.265.323.273.322.28.32.288.319.295.316.303.315.31.313.316.312.325.31.332.308.339.306.347.305zm-.772.91.77-.91.024.02.021.022.022.021.018.024.018.024.016.024.016.025.013.026.013.026.01.027.01.027.009.028.007.027.006.028.005.029.002.029.002.028v.028l-.001.03-.002.028-.004.028-.006.028-.006.028-.008.028-.01.028-.01.027-.012.028-.014.025-.014.026-.016.026-.018.025-.019.023-.02.023-.022.022-.023.02-.023.019-.024.017-.024.017-.024.014-.026.014-.027.013-.027.01-.027.01-.028.009-.027.007-.028.006-.028.004-.028.004h-.03l-.028.002-.028-.001-.03-.002-.027-.005-.028-.005-.029-.007-.028-.007-.027-.01-.028-.01-.027-.013-.026-.013-.025-.015-.026-.016-.025-.018-.023-.019z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M.9 0C.9.435.497.788 0 .788S-.9.435-.9 0s.403-.788.9-.788.9.353.9.788",style:{fill:"#21231e"},transform:"matrix(.21422 -1.51084 1.7589 .184 404.143 325.547)"}),(0,h.jsx)("path",{d:"m358.42 362.56.026-.016.026-.017.025-.014.027-.012.027-.012.027-.009.029-.008.028-.008.028-.005.028-.005.028-.004h.085l.029.002.028.004.028.005.027.007.028.008.027.01.026.01.025.012.027.013.025.014.023.015.024.018.023.017.021.02.023.02.02.023.02.023.018.024.017.024.015.026.014.027.013.026.012.028.009.027.008.029.008.027.005.028.005.028.002.028v.028l.002.029-.001.028-.004.028-.004.028-.005.028-.007.027-.008.027-.01.028-.01.027-.011.026-.013.024-.014.026-.016.024-.017.023-.018.024-.019.02-.02.022-.023.02-.022.02-.025.018-.688-.959-.002.001zm-22.681 56.14.14-1.176.21-1.32.28-1.455.343-1.578.404-1.692.46-1.796.516-1.89.565-1.971.611-2.043.656-2.102.695-2.151.732-2.19.765-2.216.794-2.233.82-2.237.842-2.23.86-2.212.878-2.184.89-2.145.897-2.094.903-2.033.906-1.958.903-1.877.9-1.78.89-1.676.882-1.56.865-1.43.85-1.296.832-1.148.813-.992.795-.826.784-.65.688.958-.663.551-.717.746-.76.93-.797 1.098-.823 1.255-.846 1.398-.864 1.531-.879 1.652-.889 1.76-.895 1.856-.897 1.943-.897 2.018-.893 2.08-.883 2.132-.872 2.172-.858 2.202-.837 2.22-.816 2.226-.79 2.22-.76 2.207-.73 2.178-.69 2.14-.652 2.09-.608 2.03-.56 1.956-.51 1.874-.457 1.778-.4 1.672-.337 1.553-.274 1.421-.204 1.279-.133 1.122-1.178-.11zm5.553 80.362-.72-2.02-.678-2.083-.633-2.144-.589-2.203-.547-2.256-.505-2.308-.465-2.356-.426-2.4-.388-2.443-.35-2.48-.314-2.516-.28-2.547-.243-2.577-.211-2.6-.18-2.623-.146-2.643-.118-2.657-.088-2.67-.058-2.68-.032-2.684-.005-2.687.021-2.687.045-2.683.069-2.674.091-2.664.114-2.65.134-2.634.153-2.612.173-2.59.191-2.562.208-2.532.224-2.497 1.176.109-.223 2.49-.206 2.522-.19 2.554-.173 2.58-.152 2.603-.135 2.623-.113 2.641-.09 2.655-.069 2.664-.045 2.672-.02 2.675.004 2.677.032 2.672.059 2.666.086 2.658.116 2.643.147 2.629.178 2.608.21 2.586.243 2.56.277 2.53.312 2.497.347 2.462.385 2.421.422 2.38.46 2.332.5 2.284.541 2.23.582 2.173.624 2.115.666 2.053.71 1.985zm1.109-.414.009.03.008.028.007.03.006.027.004.03.002.028v.057l-.001.03-.004.028-.005.028-.006.027-.007.028-.01.027-.008.026-.01.027-.014.025-.013.025-.015.024-.016.024-.017.022-.018.022-.02.022-.02.02-.02.02-.024.017-.023.018-.024.016-.025.014-.027.015-.027.013-.028.01-.029.01-.029.008-.028.006-.03.006-.029.005-.028.002h-.057l-.03-.002-.027-.004-.029-.005-.028-.006-.027-.007-.027-.008-.028-.01-.026-.01-.025-.014-.025-.013-.023-.015-.025-.015-.022-.018-.022-.018-.022-.018-.02-.02-.02-.023-.018-.022-.018-.023-.015-.025-.015-.025-.014-.027-.013-.027-.012-.028 1.108-.413z",style:{fill:"#21231e"}})]}),(0,h.jsx)("use",{xlinkHref:"#rs_inline_svg__e",width:1350,height:900,transform:"matrix(-1 0 0 1 964.297 0)"}),(0,h.jsx)("path",{d:"m473.11 398.36-.031.031h-.062l-.031.031h-.031l-.031.031h-.031l-.031.031v.031h-.031l-.031.031v.031h-.031v.031l-.031.031v.031h-.031v.031l-.031.031v.124l-.031.031v.093l.062.777.062.777.062.746.093.778.125.746.124.777.124.746.155.746.186.746.186.715.218.746.217.715.217.715.248.715.28.684.279.715.28.684.31.684.31.683.341.684.341.653.373.684.372.653.404.653.403.652.403.622.435.653.434.622.466.621.465.622.466.622.496.59v.031l.031.031h.031v.031h.031l.031.031h.031l.031.031.031.031h.093l.031.031h.465v-.03h.093l.032-.03h.031l.031-.031.031-.031h.031l.031-.031.031-.031.031-.031.465-.59.497-.623.465-.621.435-.622.465-.622.404-.653.434-.621.404-.653.372-.653.372-.653.373-.684.341-.652.341-.684.31-.684.311-.684.31-.684.28-.715.248-.684.248-.715.248-.715.218-.746.186-.715.186-.715.186-.746.155-.746.156-.746.124-.777.093-.746.093-.777.093-.746.062-.778.03-.777v-.154l-.03-.032v-.062l-.031-.03v-.032l-.031-.03v-.032l-.031-.03-.031-.032-.031-.03-.031-.032-.031-.03-.031-.032h-.062l-.031-.03h-.031l-.031-.032h-.31l-.031.031h-.031l-.031.031h-.062l-.031.031v.031h-.031l-.031.031h-.031v.031l-.031.031-.031.031v.031l-.031.031v.031h-.031v.093l-.031.031v.093l-.031.746-.062.746-.093.746-.062.747-.125.746-.124.715-.124.715-.155.715-.155.715-.186.714-.217.715-.187.684-.248.684-.248.715-.248.653-.249.684-.31.684-.28.653-.31.684-.34.652-.342.622-.342.653-.372.653-.372.621-.373.622-.403.622-.435.622-.434.621-.435.59-.434.623-.467.59-.155.186-.124-.186-.466-.59-.465-.623-.435-.59-.434-.622-.403-.622-.404-.621-.403-.622-.373-.622-.372-.653-.341-.652-.342-.622-.31-.653-.31-.684-.31-.653-.28-.683-.28-.653-.247-.684-.249-.715-.217-.684-.217-.684-.186-.715-.187-.715-.186-.715-.124-.715-.155-.715-.124-.715-.093-.746-.093-.746-.062-.746-.062-.746-.063-.746v-.155l-.03-.031v-.031l-.032-.031v-.031l-.03-.031v-.031h-.032l-.03-.031v-.031h-.032l-.03-.031v-.031h-.032l-.03-.031h-.032l-.03-.031h-.062l-.032-.031h-.278z",style:{fill:"#21231e"}}),(0,h.jsx)("path",{d:"M549.18 422.03v108.564c-.001 19.413-7.528 37.038-19.669 49.809-12.143 12.772-28.899 20.691-47.357 20.691h-.006c-18.457-.001-35.214-7.919-47.354-20.69-12.143-12.771-19.67-30.397-19.671-49.811v-108.56h134.06z",style:{fill:"#c6363c"}}),(0,h.jsx)("use",{xlinkHref:"#rs_inline_svg__f",width:1350,height:900,transform:"matrix(-1 0 0 1 964.297 -90.088)"}),(0,h.jsx)("path",{d:"M549.18 488.62v27.978h-53.063v82.947a63.8 63.8 0 0 1-13.964 1.546h-.005c-4.785 0-9.456-.534-13.96-1.546v-82.947h-53.064V488.62h53.064v-66.588h27.929v66.588z",style:{fill:"#fff",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("use",{xlinkHref:"#rs_inline_svg__f",width:1350,height:900,transform:"translate(0 -90.088)"}),(0,h.jsx)("path",{id:"rs_inline_svg__f",d:"M459.14 567.32v-39.331c-8.56-2.303-29.402-10.619-30.486 7.613-.502 8.428 10.44 13.987 13.39 6.542 1.397-3.522-.124-6.018-2.183-6.822-2.222-.87-4.426.929-3.837 3.61-8.86-4.637 7.915-14.483 15.49-1.668 2.206 3.731-3.723 7.621-3.731 10.388-.007 2.768 5.825 6.912 3.73 10.394-7.669 12.754-24.35 2.969-15.49-1.669-.588 2.681 1.617 4.48 3.838 3.61 2.057-.804 3.579-3.3 2.183-6.823-2.95-7.444-13.892-1.884-13.39 6.543 1.084 18.231 21.926 9.915 30.486 7.612z",style:{fill:"#fff",stroke:"#21231e",strokeWidth:.99388075}}),(0,h.jsx)("use",{xlinkHref:"#rs_inline_svg__f",width:1350,height:900,transform:"matrix(-1 0 0 1 964.297 0)"}),(0,h.jsx)("path",{d:"M414 420.86v109.73l.031 1.834.062 1.834.093 1.834.155 1.803.217 1.803.218 1.772.279 1.772.341 1.74.342 1.773.403 1.71.466 1.71.465 1.678.528 1.678.558 1.648.59 1.648.62 1.616.683 1.585.683 1.586.745 1.554.775 1.555.807 1.492.838 1.492.869 1.46.9 1.462.93 1.399.963 1.399.993 1.367 1.055 1.337 1.055 1.337 1.086 1.274 1.117 1.275 1.148 1.181-.03.031 1.179 1.212 1.21 1.182 1.21 1.119 1.272 1.119 1.273 1.088 1.303 1.057 1.303.995 1.366.994 1.365.964 1.396.901 1.397.902 1.458.84 1.459.807 1.458.778 1.52.746 1.521.684 1.521.652 1.552.653 1.582.56 1.583.56 1.613.497 1.614.466 1.645.435 1.644.373 1.676.342 1.676.28 1.707.249 1.706.217 1.738.156 1.707.124 1.769.062 1.737.031 1.77-.03 1.737-.063 1.738-.124 1.706-.156 1.707-.217 1.707-.25 1.676-.279 1.675-.342 1.645-.373 1.645-.435 1.613-.466 1.614-.498 1.582-.56 1.583-.59 1.552-.622 1.551-.652 1.52-.684 1.49-.746 1.49-.778 1.458-.808 1.428-.87 1.427-.87 1.397-.902 1.365-.964 1.334-.994 1.335-.995 1.303-1.057 1.272-1.088 1.242-1.12 1.241-1.118 1.18-1.182 1.178-1.212 1.149-1.212 1.117-1.275 1.086-1.274 1.055-1.337 1.024-1.337.993-1.368.962-1.399.962-1.398.9-1.461.869-1.461.838-1.493.806-1.492.776-1.554.714-1.554.714-1.586.651-1.585.652-1.617.59-1.647.558-1.648.497-1.678.496-1.679.435-1.71.403-1.71.372-1.74.31-1.772.28-1.772.248-1.772.186-1.803.156-1.803.124-1.834.062-1.834.03-1.834h-.03V420.859H414zm2.265 2.363h131.79v107.37l-.03 1.771-.063 1.772-.093 1.772-.155 1.741-.186 1.74-.248 1.742-.249 1.71-.31 1.678-.372 1.678-.373 1.68-.434 1.647-.466 1.647-.496 1.617-.528 1.585-.59 1.586-.589 1.554-.652 1.554-.682 1.523-.714 1.492-.745 1.493-.776 1.46-.806 1.43-.838 1.43-.9 1.4-.9 1.367-.931 1.337-.962 1.337-.993 1.305-1.024 1.275-1.055 1.243-1.086 1.213-1.086 1.18-1.149 1.182-1.148 1.12-1.179 1.118-1.21 1.057-1.241 1.057-1.273 1.026-1.272.964-1.303.963-1.335.902-1.334.901-1.366.87-1.396.809-1.396.777-1.428.746-1.458.715-1.49.684-1.458.653-1.52.59-1.521.56-1.521.528-1.552.498-1.582.435-1.583.404-1.613.373-1.614.342-1.614.28-1.644.249-1.645.186-1.676.156-1.675.124-1.676.062-1.707.031-1.707-.031-1.675-.062-1.676-.124-1.676-.156-1.644-.186-1.645-.25-1.614-.279-1.613-.342-1.583-.373-1.613-.404-1.552-.435-1.552-.498-1.551-.528-1.52-.56-1.49-.59-1.49-.653-1.458-.684-1.459-.715-1.427-.746-1.428-.777-1.365-.84-1.397-.839-1.334-.87-1.334-.933-1.304-.963-1.272-.964-1.272-1.026-1.21-1.057-1.21-1.057-1.18-1.119-1.18-1.119-1.116-1.181-1.117-1.181-1.086-1.213-1.024-1.243-1.024-1.275-.993-1.305-.993-1.337-.931-1.337-.9-1.367-.87-1.4-.837-1.398-.807-1.461-.807-1.461-.744-1.492-.714-1.493-.652-1.523-.651-1.554-.621-1.554-.559-1.586-.558-1.585-.497-1.617-.465-1.647-.404-1.648-.403-1.678-.341-1.679-.31-1.679-.28-1.71-.217-1.74-.186-1.74-.156-1.742-.124-1.772-.062-1.772v-1.771z",style:{fill:"#21231e"}})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4225.61de23fc.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js deleted file mode 100644 index 84c1ef1c04..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4241.f5777d74.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4241"],{41816(h,v,M){M.r(v),M.d(v,{default:()=>s});var z=M(74848);M(47867);let s=h=>(0,z.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,z.jsx)("defs",{children:(0,z.jsx)("clipPath",{id:"ir_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,z.jsx)("path",{fillOpacity:.67,d:"M-85.311 0h682.67v512h-682.67z"})})}),(0,z.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#ir_inline_svg__a)",transform:"translate(79.98)scale(.9375)",children:[(0,z.jsx)("path",{fill:"#fff",d:"M-191.96 0h896v512h-896z"}),(0,z.jsx)("path",{fill:"#da0000",d:"M-191.96 343.84h896V512h-896z"}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M-21.628 350.958h49.07v3.377h-49.07zM-14.312 367.842h3.377v3.28h-3.377zM27.57 367.736v3.377h-9.807v-3.377zM32.844 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M52.379 367.736v3.377H33.794v-3.377zM17.763 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M49.614 350.958h3.377v20.16h-3.377zM41.172 350.958h3.377v20.16h-3.377zM-3.627 358.982v3.377h-17.91v-3.377zM35.673 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M17.763 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M17.763 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M17.763 359.849h3.377v11.27h-3.377zM-21.537 359.849h3.377v11.27h-3.377zM7.27 359.849h3.376v11.27H7.27zM-7.002 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M9.639 367.736v3.377h-15.14v-3.377zM10.646 358.982v3.377H1.048v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M-102.228 350.958h49.07v3.377h-49.07zM-94.912 367.842h3.377v3.28h-3.377zM-53.03 367.736v3.377h-9.807v-3.377zM-47.756 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M-28.221 367.736v3.377h-18.585v-3.377zM-62.837 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-30.986 350.958h3.377v20.16h-3.377zM-39.428 350.958h3.377v20.16h-3.377zM-84.227 358.982v3.377h-17.91v-3.377zM-44.927 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M-62.837 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-62.837 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-62.837 359.849h3.377v11.27h-3.377zM-102.137 359.849h3.377v11.27h-3.377zM-73.33 359.849h3.376v11.27h-3.377zM-87.602 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-70.961 367.736v3.377h-15.14v-3.377zM-69.954 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M58.297 350.958h49.07v3.377h-49.07zM65.613 367.842h3.376v3.28h-3.376zM107.494 367.736v3.377h-9.807v-3.377zM112.769 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M132.303 367.736v3.377H113.72v-3.377zM97.687 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M129.539 350.958h3.377v20.16h-3.377zM121.097 350.958h3.377v20.16h-3.377zM76.298 358.982v3.377h-17.91v-3.377zM115.597 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M97.687 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M97.687 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M97.687 359.849h3.377v11.27h-3.377zM58.388 359.849h3.377v11.27h-3.377zM87.194 359.849h3.377v11.27h-3.377zM72.922 359.849H76.3v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M89.563 367.736v3.377h-15.14v-3.377zM90.57 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M622.682 350.958h49.07v3.377h-49.07zM629.998 367.842h3.377v3.28h-3.377zM671.88 367.736v3.377h-9.807v-3.377zM677.154 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M696.689 367.736v3.377h-18.585v-3.377zM662.073 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M693.924 350.958h3.377v20.16h-3.377zM685.482 350.958h3.377v20.16h-3.377zM640.683 358.982v3.377h-17.91v-3.377zM679.983 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M662.073 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M662.073 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M662.073 359.849h3.377v11.27h-3.377zM622.773 359.849h3.377v11.27h-3.377zM651.58 359.849h3.376v11.27h-3.377zM637.308 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M653.949 367.736v3.377h-15.14v-3.377zM654.956 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M138.742 350.958h49.07v3.377h-49.07zM146.058 367.842h3.377v3.28h-3.377zM187.94 367.736v3.377h-9.807v-3.377zM193.214 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M212.749 367.736v3.377h-18.585v-3.377zM178.133 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M209.984 350.958h3.377v20.16h-3.377zM201.542 350.958h3.377v20.16h-3.377zM156.743 358.982v3.377h-17.91v-3.377zM196.043 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M178.133 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M178.133 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M178.133 359.849h3.377v11.27h-3.377zM138.833 359.849h3.377v11.27h-3.377zM167.64 359.849h3.376v11.27h-3.377zM153.368 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M170.009 367.736v3.377h-15.14v-3.377zM171.016 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M219.482 350.958h49.07v3.377h-49.07zM226.798 367.842h3.377v3.28h-3.377zM268.68 367.736v3.377h-9.807v-3.377zM273.954 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M293.489 367.736v3.377h-18.585v-3.377zM258.873 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M290.724 350.958h3.377v20.16h-3.377zM282.282 350.958h3.377v20.16h-3.377zM237.483 358.982v3.377h-17.91v-3.377zM276.783 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M258.873 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M258.873 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M258.873 359.849h3.377v11.27h-3.377zM219.573 359.849h3.377v11.27h-3.377zM248.38 359.849h3.376v11.27h-3.377zM234.108 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M250.749 367.736v3.377h-15.14v-3.377zM251.756 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsx)("path",{fill:"#239f40",d:"M-191.96 0h896v168.16h-896z"}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M300.692 350.958h49.07v3.377h-49.07zM308.008 367.842h3.377v3.28h-3.377zM349.89 367.736v3.377h-9.807v-3.377zM355.164 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M374.699 367.736v3.377h-18.585v-3.377zM340.083 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M371.934 350.958h3.377v20.16h-3.377zM363.492 350.958h3.377v20.16h-3.377zM318.693 358.982v3.377h-17.91v-3.377zM357.993 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M340.083 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M340.083 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M340.083 359.849h3.377v11.27h-3.377zM300.783 359.849h3.377v11.27h-3.377zM329.59 359.849h3.376v11.27h-3.377zM315.318 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M331.959 367.736v3.377h-15.14v-3.377zM332.966 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M381.422 350.958h49.07v3.377h-49.07zM388.738 367.842h3.377v3.28h-3.377zM430.62 367.736v3.377h-9.807v-3.377zM435.894 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M455.429 367.736v3.377h-18.585v-3.377zM420.813 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M452.664 350.958h3.377v20.16h-3.377zM444.222 350.958h3.377v20.16h-3.377zM399.423 358.982v3.377h-17.91v-3.377zM438.723 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M420.813 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M420.813 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M420.813 359.849h3.377v11.27h-3.377zM381.513 359.849h3.377v11.27h-3.377zM410.32 359.849h3.376v11.27h-3.377zM396.048 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M412.689 367.736v3.377h-15.14v-3.377zM413.696 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M462.162 350.958h49.07v3.377h-49.07zM469.478 367.842h3.377v3.28h-3.377zM511.36 367.736v3.377h-9.807v-3.377zM516.634 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M536.169 367.736v3.377h-18.585v-3.377zM501.553 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M533.404 350.958h3.377v20.16h-3.377zM524.962 350.958h3.377v20.16h-3.377zM480.163 358.982v3.377h-17.91v-3.377zM519.463 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M501.553 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M501.553 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M501.553 359.849h3.377v11.27h-3.377zM462.253 359.849h3.377v11.27h-3.377zM491.06 359.849h3.376v11.27h-3.377zM476.788 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M493.429 367.736v3.377h-15.14v-3.377zM494.436 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M543.372 350.958h49.07v3.377h-49.07zM550.688 367.842h3.377v3.28h-3.377zM592.57 367.736v3.377h-9.807v-3.377zM597.844 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M617.379 367.736v3.377h-18.585v-3.377zM582.763 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M614.614 350.958h3.377v20.16h-3.377zM606.172 350.958h3.377v20.16h-3.377zM561.373 358.982v3.377h-17.91v-3.377zM600.673 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M582.763 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M582.763 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M582.763 359.849h3.377v11.27h-3.377zM543.463 359.849h3.377v11.27h-3.377zM572.27 359.849h3.376v11.27h-3.377zM557.998 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M574.639 367.736v3.377h-15.14v-3.377zM575.646 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M-183.788 350.958h49.07v3.377h-49.07zM-176.472 367.842h3.377v3.28h-3.377zM-134.59 367.736v3.377h-9.807v-3.377zM-129.316 350.958h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M-109.781 367.736v3.377h-18.585v-3.377zM-144.397 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-112.546 350.958h3.377v20.16h-3.377zM-120.988 350.958h3.377v20.16h-3.377zM-165.787 358.982v3.377h-17.91v-3.377zM-126.487 358.982v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M-144.397 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-144.397 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-144.397 359.849h3.377v11.27h-3.377zM-183.697 359.849h3.377v11.27h-3.377zM-154.89 359.849h3.376v11.27h-3.377zM-169.162 359.849h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-152.521 367.736v3.377h-15.14v-3.377zM-151.514 358.982v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M-21.628 143.442h49.07v3.377h-49.07zM-14.312 160.326h3.377v3.28h-3.377zM27.57 160.22v3.377h-9.807v-3.377zM32.844 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M52.379 160.22v3.377H33.794v-3.377zM17.763 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M49.614 143.442h3.377v20.16h-3.377zM41.172 143.442h3.377v20.16h-3.377zM-3.627 151.466v3.377h-17.91v-3.377zM35.673 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M17.763 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M17.763 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M17.763 152.333h3.377v11.27h-3.377zM-21.537 152.333h3.377v11.27h-3.377zM7.27 152.333h3.376v11.27H7.27zM-7.002 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M9.639 160.22v3.377h-15.14v-3.377zM10.646 151.466v3.377H1.048v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M-102.228 143.442h49.07v3.377h-49.07zM-94.912 160.326h3.377v3.28h-3.377zM-53.03 160.22v3.377h-9.807v-3.377zM-47.756 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M-28.221 160.22v3.377h-18.585v-3.377zM-62.837 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-30.986 143.442h3.377v20.16h-3.377zM-39.428 143.442h3.377v20.16h-3.377zM-84.227 151.466v3.377h-17.91v-3.377zM-44.927 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M-62.837 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-62.837 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-62.837 152.333h3.377v11.27h-3.377zM-102.137 152.333h3.377v11.27h-3.377zM-73.33 152.333h3.376v11.27h-3.377zM-87.602 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-70.961 160.22v3.377h-15.14v-3.377zM-69.954 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M58.297 143.442h49.07v3.377h-49.07zM65.613 160.326h3.376v3.28h-3.376zM107.494 160.22v3.377h-9.807v-3.377zM112.769 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M132.303 160.22v3.377H113.72v-3.377zM97.687 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M129.539 143.442h3.377v20.16h-3.377zM121.097 143.442h3.377v20.16h-3.377zM76.298 151.466v3.377h-17.91v-3.377zM115.597 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M97.687 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M97.687 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M97.687 152.333h3.377v11.27h-3.377zM58.388 152.333h3.377v11.27h-3.377zM87.194 152.333h3.377v11.27h-3.377zM72.922 152.333H76.3v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M89.563 160.22v3.377h-15.14v-3.377zM90.57 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M622.682 143.442h49.07v3.377h-49.07zM629.998 160.326h3.377v3.28h-3.377zM671.88 160.22v3.377h-9.807v-3.377zM677.154 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M696.689 160.22v3.377h-18.585v-3.377zM662.073 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M693.924 143.442h3.377v20.16h-3.377zM685.482 143.442h3.377v20.16h-3.377zM640.683 151.466v3.377h-17.91v-3.377zM679.983 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M662.073 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M662.073 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M662.073 152.333h3.377v11.27h-3.377zM622.773 152.333h3.377v11.27h-3.377zM651.58 152.333h3.376v11.27h-3.377zM637.308 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M653.949 160.22v3.377h-15.14v-3.377zM654.956 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M138.742 143.442h49.07v3.377h-49.07zM146.058 160.326h3.377v3.28h-3.377zM187.94 160.22v3.377h-9.807v-3.377zM193.214 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M212.749 160.22v3.377h-18.585v-3.377zM178.133 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M209.984 143.442h3.377v20.16h-3.377zM201.542 143.442h3.377v20.16h-3.377zM156.743 151.466v3.377h-17.91v-3.377zM196.043 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M178.133 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M178.133 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M178.133 152.333h3.377v11.27h-3.377zM138.833 152.333h3.377v11.27h-3.377zM167.64 152.333h3.376v11.27h-3.377zM153.368 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M170.009 160.22v3.377h-15.14v-3.377zM171.016 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M219.482 143.442h49.07v3.377h-49.07zM226.798 160.326h3.377v3.28h-3.377zM268.68 160.22v3.377h-9.807v-3.377zM273.954 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M293.489 160.22v3.377h-18.585v-3.377zM258.873 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M290.724 143.442h3.377v20.16h-3.377zM282.282 143.442h3.377v20.16h-3.377zM237.483 151.466v3.377h-17.91v-3.377zM276.783 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M258.873 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M258.873 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M258.873 152.333h3.377v11.27h-3.377zM219.573 152.333h3.377v11.27h-3.377zM248.38 152.333h3.376v11.27h-3.377zM234.108 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M250.749 160.22v3.377h-15.14v-3.377zM251.756 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M300.692 143.442h49.07v3.377h-49.07zM308.008 160.326h3.377v3.28h-3.377zM349.89 160.22v3.377h-9.807v-3.377zM355.164 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M374.699 160.22v3.377h-18.585v-3.377zM340.083 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M371.934 143.442h3.377v20.16h-3.377zM363.492 143.442h3.377v20.16h-3.377zM318.693 151.466v3.377h-17.91v-3.377zM357.993 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M340.083 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M340.083 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M340.083 152.333h3.377v11.27h-3.377zM300.783 152.333h3.377v11.27h-3.377zM329.59 152.333h3.376v11.27h-3.377zM315.318 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M331.959 160.22v3.377h-15.14v-3.377zM332.966 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M381.422 143.442h49.07v3.377h-49.07zM388.738 160.326h3.377v3.28h-3.377zM430.62 160.22v3.377h-9.807v-3.377zM435.894 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M455.429 160.22v3.377h-18.585v-3.377zM420.813 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M452.664 143.442h3.377v20.16h-3.377zM444.222 143.442h3.377v20.16h-3.377zM399.423 151.466v3.377h-17.91v-3.377zM438.723 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M420.813 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M420.813 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M420.813 152.333h3.377v11.27h-3.377zM381.513 152.333h3.377v11.27h-3.377zM410.32 152.333h3.376v11.27h-3.377zM396.048 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M412.689 160.22v3.377h-15.14v-3.377zM413.696 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M462.162 143.442h49.07v3.377h-49.07zM469.478 160.326h3.377v3.28h-3.377zM511.36 160.22v3.377h-9.807v-3.377zM516.634 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M536.169 160.22v3.377h-18.585v-3.377zM501.553 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M533.404 143.442h3.377v20.16h-3.377zM524.962 143.442h3.377v20.16h-3.377zM480.163 151.466v3.377h-17.91v-3.377zM519.463 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M501.553 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M501.553 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M501.553 152.333h3.377v11.27h-3.377zM462.253 152.333h3.377v11.27h-3.377zM491.06 152.333h3.376v11.27h-3.377zM476.788 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M493.429 160.22v3.377h-15.14v-3.377zM494.436 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M543.372 143.442h49.07v3.377h-49.07zM550.688 160.326h3.377v3.28h-3.377zM592.57 160.22v3.377h-9.807v-3.377zM597.844 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M617.379 160.22v3.377h-18.585v-3.377zM582.763 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M614.614 143.442h3.377v20.16h-3.377zM606.172 143.442h3.377v20.16h-3.377zM561.373 151.466v3.377h-17.91v-3.377zM600.673 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M582.763 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M582.763 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M582.763 152.333h3.377v11.27h-3.377zM543.463 152.333h3.377v11.27h-3.377zM572.27 152.333h3.376v11.27h-3.377zM557.998 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M574.639 160.22v3.377h-15.14v-3.377zM575.646 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsxs)("g",{fill:"#fff",strokeWidth:"1pt",children:[(0,z.jsx)("path",{d:"M-183.788 143.442h49.07v3.377h-49.07zM-176.472 160.326h3.377v3.28h-3.377zM-134.59 160.22v3.377h-9.807v-3.377zM-129.316 143.442h3.377v20.16h-3.377z"}),(0,z.jsx)("path",{d:"M-109.781 160.22v3.377h-18.585v-3.377zM-144.397 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-112.546 143.442h3.377v20.16h-3.377zM-120.988 143.442h3.377v20.16h-3.377zM-165.787 151.466v3.377h-17.91v-3.377zM-126.487 151.466v3.377h-17.91v-3.377z"}),(0,z.jsx)("path",{d:"M-144.397 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-144.397 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-144.397 152.333h3.377v11.27h-3.377zM-183.697 152.333h3.377v11.27h-3.377zM-154.89 152.333h3.376v11.27h-3.377zM-169.162 152.333h3.377v11.27h-3.377z"}),(0,z.jsx)("path",{d:"M-152.521 160.22v3.377h-15.14v-3.377zM-151.514 151.466v3.377h-9.598v-3.377z"})]}),(0,z.jsx)("g",{fill:"#d90000",strokeWidth:"1pt",children:(0,z.jsx)("path",{d:"M-68.83 339.507h6.048v10.505h-6.048zM91.702 339.507h6.048v10.505h-6.048zM-192.003 339.507h6.048v10.505h-6.048zM-110.528 339.507h6.048v10.505h-6.048zM-29.633 339.507h6.048v10.505h-6.048zM10.391 339.507h6.049v10.505H10.39zM51.252 339.507H57.3v10.505h-6.048zM131.727 339.507h6.048v10.505h-6.048zM334.783 339.507h6.048v10.505h-6.048zM172.586 339.507h6.048v10.505h-6.048zM212.621 339.507h6.048v10.505h-6.048zM253.059 339.507h6.048v10.505h-6.048zM293.507 339.507h6.048v10.505h-6.048zM616.65 339.507h6.047v10.505h-6.048zM373.98 339.507h6.048v10.505h-6.048zM414.84 339.507h6.049v10.505h-6.049zM456.124 339.507h6.049v10.505h-6.049zM494.9 339.507h6.049v10.505H494.9zM536.174 339.507h6.048v10.505h-6.048zM576.622 339.507h6.048v10.505h-6.048zM696.296 339.507h6.048v10.505h-6.048zM657.518 339.507h6.048v10.505h-6.048zM-151.39 339.507h6.048v10.505h-6.048z"})}),(0,z.jsx)("g",{fill:"#239e3f",strokeWidth:"1pt",children:(0,z.jsx)("path",{d:"M-68.83 162.607h6.048v10.505h-6.048zM91.702 162.607h6.048v10.505h-6.048zM-192.003 162.607h6.048v10.505h-6.048zM-110.528 162.607h6.048v10.505h-6.048zM-29.633 162.607h6.048v10.505h-6.048zM10.391 162.607h6.049v10.505H10.39zM51.252 162.607H57.3v10.505h-6.048zM131.727 162.607h6.048v10.505h-6.048zM334.783 162.607h6.048v10.505h-6.048zM172.586 162.607h6.048v10.505h-6.048zM212.621 162.607h6.048v10.505h-6.048zM253.059 162.607h6.048v10.505h-6.048zM293.507 162.607h6.048v10.505h-6.048zM616.65 162.607h6.047v10.505h-6.048zM373.98 162.607h6.048v10.505h-6.048zM414.84 162.607h6.049v10.505h-6.049zM456.124 162.607h6.049v10.505h-6.049zM494.9 162.607h6.049v10.505H494.9zM536.174 162.607h6.048v10.505h-6.048zM576.622 162.607h6.048v10.505h-6.048zM696.296 162.607h6.048v10.505h-6.048zM657.518 162.607h6.048v10.505h-6.048zM-151.39 162.607h6.048v10.505h-6.048z"})}),(0,z.jsxs)("g",{fill:"#da0000",children:[(0,z.jsx)("path",{d:"M279.8 197.489c8.453 10.36 34.511 67.652-15.73 105.18-23.62 17.777-8.994 18.675-8.296 21.663 37.966-20.167 50.366-47.49 50.078-71.966-.29-24.476-13.266-46.102-26.052-54.873z"}),(0,z.jsx)("path",{d:"M284.826 194.826c18.75 9.6 59.553 57.879 15.635 112.344 27.288-6.056 61.98-86.417-15.635-112.344M227.245 194.826c-18.749 9.6-59.553 57.879-15.635 112.344-27.288-6.056-61.98-86.417 15.635-112.344"}),(0,z.jsx)("path",{d:"M232.2 197.489c-8.454 10.36-34.512 67.652 15.73 105.18 23.618 17.777 8.993 18.675 8.294 21.663-37.965-20.167-50.365-47.49-50.077-71.966s13.265-46.102 26.052-54.873z"}),(0,z.jsx)("path",{d:"M304.198 319.111c-14.86.236-33.593-2.047-47.486-9.267 2.288 4.45 4.189 7.252 6.477 11.701 13.25 1.222 31.535 2.734 41.01-2.434M209.225 319.111c14.86.236 33.593-2.047 47.487-9.267-2.289 4.45-4.19 7.252-6.478 11.701-13.25 1.222-31.535 2.734-41.01-2.434M236.482 180.397c3.011 8.002 10.91 9.165 19.365 4.454 6.161 3.697 15.69 3.93 18.976-4.067 2.499 19.784-18.305 15.104-19.08 11.231-7.745 7.487-22.165 3.163-19.26-11.618"}),(0,z.jsx)("path",{d:"m256.402 331.569 7.813-8.93 1.117-120.178-9.302-8.185-9.3 7.813 1.859 120.92 7.813 8.558z"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4241.f5777d74.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js deleted file mode 100644 index cf4564ccc0..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4319.ca014781.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4319"],{30066(e,i,s){s.r(i),s.d(i,{default:()=>n});var _=s(74848);s(47867);let n=e=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 128 96",...e,children:[(0,_.jsx)("defs",{children:(0,_.jsxs)("g",{id:"ve_inline_svg__f",transform:"translate(0 -36)",children:[(0,_.jsxs)("g",{id:"ve_inline_svg__e",children:[(0,_.jsxs)("g",{id:"ve_inline_svg__b",children:[(0,_.jsx)("path",{id:"ve_inline_svg__a",fill:"#fff",d:"M0-5-1.545-.245l2.853.927z"}),(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__a",width:180,height:120,transform:"scale(-1 1)"})]}),(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__b",width:180,height:120,transform:"rotate(72)"})]}),(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__b",width:180,height:120,transform:"rotate(-72)"}),(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__e",width:180,height:120,transform:"rotate(144)"})]})}),(0,_.jsx)("path",{fill:"#cf142b",d:"M0 0h128v96H0z"}),(0,_.jsx)("path",{fill:"#00247d",d:"M0 0h128v64H0z"}),(0,_.jsx)("path",{fill:"#fc0",d:"M0 0h128v32H0z"}),(0,_.jsxs)("g",{transform:"matrix(.8 0 0 .8 64 67.2)",children:[(0,_.jsxs)("g",{id:"ve_inline_svg__h",children:[(0,_.jsxs)("g",{id:"ve_inline_svg__g",children:[(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__f",width:180,height:120,transform:"rotate(10)"}),(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__f",width:180,height:120,transform:"rotate(30)"})]}),(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__g",width:180,height:120,transform:"rotate(40)"})]}),(0,_.jsx)("use",{xlinkHref:"#ve_inline_svg__h",width:180,height:120,transform:"rotate(-80)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4319.ca014781.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js deleted file mode 100644 index 775455390f..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4329.4e8ef4cc.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4329"],{92656(i,l,s){s.r(l),s.d(l,{default:()=>x});var e=s(74848);s(47867);let x=i=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,e.jsx)("path",{fill:"#0021ad",d:"M0 0h640v480H0z"}),(0,e.jsx)("path",{fill:"#1c8a42",d:"M0 0h640v480z"}),(0,e.jsx)("circle",{cx:320,cy:240,r:57.805,fill:"#ffc639"}),(0,e.jsx)("path",{fill:"#1c8a42",d:"M284.698 214.035c3.954 5.425 9.946 14.52 14.766 12.147 3.76.013 5.702.277 6.212 2.78 8.87 1.51 23.778-2.232 33.054-14.314 0 0 .78.103.51-4.49.05-2 2.735-1.6 2.8-.948.373.993.31 1.735.812 1.76 1.142-.38 2.703-2.94 4.012-4.566.355-.716.162-1.47.245-2.374.69-1.697 2.412-1.33 2.773-.44.33.575.336 1.014.658 1.588 1.75 1.168 4.904.077 5.15.077.31-1.425 1.225-1.29 1.225-1.29 1.167-.258.71-.155 1.477.245-.677 7.684 1.51 8.025 1.33 11.966.076 4.4-1.33 5.65-1.33 7.328.445 2.052 6.934 2.123 4.65 3.858-2.005 1.07.007 3.077-3.012 3.858-8.786 4.457-10.47 8.283-10.47 8.283s-2.206 4.167-2.45 4.167c-1.472 2.78-3.336 1.264-4.374 2.62-.516 1.702-1.097 5.476-.065 7.437.517 2.696-.063 4.167-.708 6.863-.58 5.625-2.813 6.477-3.07 8.45-1.033 2.11.218 12.02-.762 12.02-6.54.128-11.554-1.253-14.14-1.77 2.522-10.87 1.54-20.415 1.54-21.396-.644-7.773-11.642-5.883-13.326-6.915-1.393-.298-2.27-1.433-2.76-1.923-1.556-.168-2.136-.523-3.69-.684-.775.387-.31.787-2.04 1.322-4.386.53-6.32-3.825-6.32-3.825.212-1.464-9.864.297-15.34-.974-2.246 1.25-3.227 4.954-5.065 5.393-.053 1.147-3.027-.943-3.626-2.072-.123-3.283 2.864-4.735 2.864-4.735 2.374-1.67 3.78-1.942 4.922-3.096.574-2.858.283-4.974 1.503-7.122 1.032-1.64 2.554-.87 3.586-1.606 1.11-.737 1.58-5.55.554-6.865 0 0-4.438-4.006-4.683-4.25-1.444-4.142 1.69-6.813 2.588-6.51z"}),(0,e.jsx)("path",{fill:"#ffc639",d:"M561.875 142.435c-2.62-10.364-26.06-32.685-43.678-46.89-4.206-2.865-6.947-1.158-6.4 2.927 2.194 3.66 3.84 7.68 6.032 11.34.612 2.437 1.767 4.144 2.38 6.582 0 0 .18 4.206.548 4.572 5.483 6.037 6.22 11.156 6.22 11.156 3.166 6.097 5.972 10.546 11.52 15.546 6.22 3.903 1.645 16.03 1.826 22.494 0 4.083-2.923 3.6-5.484 3.11-20.178-18.534-40.175-18.592-57.792-23.96-6.89-.728-7.012 2.562-4.754 4.387 12.314 13.172 23.893 22.132 39.136 29.628l7.683 4.76c2.923 2.44 5.85 4.877 8.773 7.316 6.767 4.386 7.322 8.41 7.322 8.773.18 8.23-4.212 14.63-5.49 17.19-2.31 8.728-6.947 10.245-6.947 10.245-37.678 25.422-57.43 32.002-118.514 24.138-.916-.483-6.767.49 0 2.93 15.546 5.18 53.735 13.488 90.682-4.007 8.87-6.218 14.804-4.18 21.23-7.902 10.553-6.508 25.622-14.61 28.363-15.52 8.232-4.393 31.275-9.328 36.584-13.72 6.09-.49 12.41-1.29 12.837-6.53 2-1.295 4.93-.347 7.103-4.617 4.832-.84 4.02-2.568 4.02-2.568-1.22-3.412-5.736-4.82-8.96-7.315-4.762-1.587-8.052-2.077-11.53-.368-1.096.49-2.192.974-3.29 1.465 0 0-5.12-.736-5.12-1.097-11.38-.626-10.27-38.337-14.296-54.066z"}),(0,e.jsx)("path",{fill:"#1c8a42",d:"M588.563 204.166a2.818 1.76 15.947 1 1-5.373-1.687 2.818 1.76 15.947 0 1 5.373 1.686z"}),(0,e.jsxs)("g",{fill:"#fff",transform:"matrix(.64 0 0 .64 0 80)",children:[(0,e.jsx)("path",{id:"cx_inline_svg__a",d:"m188.16 190.94-12.75-11.936-12.905 11.77 1.383-17.405-17.25-2.754 14.476-9.774-8.606-15.197 16.668 5.22 6.518-16.205 6.31 16.287 16.734-5.007-8.8 15.086 14.348 9.96-17.283 2.53 1.158 17.424z"}),(0,e.jsx)("path",{d:"m233.39 335.53-13.752-9.167-13.39 9.664 4.71-15.568-13.58-9.416 16.666-.446 4.988-15.496 5.595 15.3 16.667-.156-13.21 9.902z"}),(0,e.jsx)("use",{xlinkHref:"#cx_inline_svg__a",width:"100%",height:"100%",x:2.522,y:269.061}),(0,e.jsx)("use",{xlinkHref:"#cx_inline_svg__a",width:"100%",height:"100%",x:-112.066,y:123.223}),(0,e.jsx)("use",{xlinkHref:"#cx_inline_svg__a",width:"100%",height:"100%",x:108.427,y:85.027})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4329.4e8ef4cc.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js deleted file mode 100644 index 634a997e57..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4346.867849d4.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4346"],{84945(c,a,q){q.r(a),q.d(a,{default:()=>l});var s=q(74848);q(47867);let l=c=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...c,children:[(0,s.jsx)("path",{fill:"#171796",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v320H0z"}),(0,s.jsx)("path",{fill:"red",d:"M0 0h640v160H0z"}),(0,s.jsx)("path",{fill:"red",d:"M320.03 364.15c51.322 0 93.31-41.99 93.31-93.31V159.964H226.72V270.84c0 51.322 41.99 93.31 93.308 93.31z"}),(0,s.jsx)("path",{fill:"#fff",d:"M320.03 362.654c50.343 0 91.53-41.19 91.53-91.53V161.76H228.5v109.365c0 50.342 41.188 91.53 91.53 91.53z"}),(0,s.jsxs)("g",{fill:"red",children:[(0,s.jsx)("path",{d:"M267.133 165.2H231.91v38.7h35.223zm0 77.4h35.225v-38.7h-35.225zm-35.223 28.31c0 3.513.217 6.98.622 10.39h34.6v-38.7H231.91zm105.675-28.31h-35.227v38.7h35.227zm0 77.398h35.224V281.3h-35.225zm35.225 21.17A89.2 89.2 0 0 0 392.92 320h-20.11zm-105.674-21.17h35.224V281.3h-35.224zm-20.144 0a89.2 89.2 0 0 0 20.144 21.194v-21.194zm79.114 38.702c3.898-.274 7.73-.8 11.476-1.567v-37.135h-35.224v37.14a87 87 0 0 0 11.443 1.558c4.103.254 8.204.24 12.304 0z"}),(0,s.jsx)("path",{d:"M407.375 281.3c.407-3.422.625-6.9.625-10.426v-28.272h-35.193v38.7h34.568zm-69.79-38.7h35.224v-38.7h-35.225zm0-77.4H302.36v38.7h35.225zM408 203.9v-38.7h-35.19v38.7z"})]}),(0,s.jsx)("path",{fill:"#fff",d:"m409.972 158.83 21.84-49.51-16.64-26.87-27.567 10.207-19.355-22.125-25.504 14.616-22.742-18.626-22.74 18.626-25.505-14.616L252.4 92.655l-27.57-10.206-16.643 26.875L230 158.843c27.485-12.44 57.96-19.372 90.005-19.372 32.03 0 62.49 6.927 89.97 19.36z"}),(0,s.jsx)("path",{fill:"#0093dd",d:"m253.008 94.842-.04.047-27.338-10.124-15.3 24.7 5.86 13.325 14.847 33.702a219.7 219.7 0 0 1 34.582-11.962l-12.61-49.686z"}),(0,s.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.28,d:"M251.435 119.268a13.26 13.26 0 0 1 1.533 6.2c0 7.36-6.002 13.363-13.362 13.363-6.486 0-11.917-4.662-13.116-10.807 2.308 4.08 6.69 6.844 11.694 6.844 7.395 0 13.428-6.03 13.428-13.43q0-1.108-.177-2.172z"}),(0,s.jsx)("path",{d:"m227.59 113.915.93-4.794-3.677-3.215-.17-.15.213-.072 4.618-1.59.945-4.794.044-.22.17.145 3.686 3.207 4.623-1.58.216-.072-.046.22-.932 4.796 3.68 3.216.17.147-.215.072-4.618 1.593-.947 4.793-.045.22-.168-.148-3.687-3.204-4.623 1.578-.216.073z"}),(0,s.jsx)("path",{fill:"#f7db17",d:"m233.64 107.59 3.447 3.007 4.315-1.485zm.027-.15 7.766 1.517-3.436-3.004zm-8.337-1.634 7.764 1.52-3.448-3.006zm7.735 1.674-7.765-1.52 3.436 3.002zm.435-.293 5.198-5.964-4.32 1.474zm-5.584 6.405 5.2-5.964-4.328 1.484zm5.318-5.862-5.2 5.964 4.32-1.474zm5.583-6.405-5.2 5.964 4.328-1.484zm-5.619 5.881-2.566-7.483-.884 4.48zm2.756 8.038-2.566-7.483-.88 4.49zm-2.419-7.534 2.566 7.484.885-4.478zm-2.755-8.04 2.565 7.487.88-4.49z"}),(0,s.jsx)("path",{fill:"#171796",d:"m297.5 87.406-.047.038-25.29-14.493-19.155 21.892 12.61 49.686a220 220 0 0 1 36.117-6.033l-4.237-51.09z"}),(0,s.jsx)("path",{fill:"red",d:"M262.49 132.196a232 232 0 0 1 38.195-6.38l-1.07-12.913a245.6 245.6 0 0 0-40.315 6.732l3.187 12.56zm-6.34-24.971a258 258 0 0 1 42.405-7.082l-1.052-12.678a271 271 0 0 0-44.483 7.43z"}),(0,s.jsxs)("g",{transform:"translate(-160)scale(.00237)",children:[(0,s.jsx)("path",{fill:"#0093dd",d:"m212105 36890-23 13-9517-7794-9497 7778 1788 21560c2543-210 5113-322 7709-322 2608 0 5190 113 7744 325l1795-21560z"}),(0,s.jsxs)("g",{id:"hr_inline_svg__a",children:[(0,s.jsx)("path",{d:"M202545 46585c-18-2-44 10-69 45-186 250-359 469-545 720-195 61-242 180-167 348-261-26-291 193-302 432-250-379-522-482-814-307-11-230-187-338-439-392-180-10-319-65-436-145-60-42-110-64-170-106-126-88-226-5-172 74 267 434 535 868 802 1302-14 80 6 151 88 204 47 133 93 265 140 397-11 38-21 75-32 113-221-105-443-118-664-133-170-8-287-50-361-137-54-63-91-26-92 82-3 534 162 1014 599 1492-231 4-462 11-694 21-79 6-95 39-73 104 126 304 339 579 822 766-208 112-327 285-357 520-9 224-75 382-212 455-60 32-81 65-24 106 253 185 565 193 895 112-157 270-226 553-198 850 208 56 412 15 614-52-29 61-44 175-52 309-7 115-41 229-104 343-32 33-65 84 4 102 336 91 648 52 915-47 0 243 2 487 76 727 18 58 70 102 125 26 155-214 322-396 527-517 31 90 75 168 156 215 96 55 147 170 153 343 0 30-2 60 35 90 149 7 514-380 589-597 206 121 284 246 439 461 55 76 99 29 128-25 62-243 67-481 66-724 267 99 579 138 915 47 69-19 36-70 4-102-62-114-105-250-113-365-9-133-14-226-43-287 202 68 405 108 614 52 29-297-53-579-211-850 330 80 655 73 908-112 57-41 35-74-24-106-136-73-203-231-212-455-30-235-149-409-357-520 483-187 696-463 822-766 22-66 6-99-73-104-231-10-480-24-711-27 437-478 606-961 604-1495-1-108-38-146-92-82-74 87-179 137-348 146-222 15-435 24-656 128-11-38-21-75-32-113 46-132 106-260 153-393 82-53 102-123 88-204 267-434 513-868 781-1302 54-79-46-162-171-74-60 42-110 64-170 106-117 80-257 134-437 145-251 54-417 167-428 397-293-175-564-73-814 307-11-239-41-457-302-432 75-168 17-291-178-352-186-250-458-470-644-720-31-35-51-47-69-45z"}),(0,s.jsxs)("g",{fill:"#f7db17",children:[(0,s.jsx)("path",{d:"M205075 47978c-51-26-124 17-162 95s-33 170 19 196c40 20 84-6 119-56l22-36c2-3 4-6 5-9 38-78 49-163-2-188zm-5008 0c52-26 124 17 162 95s39 165-13 191-103-24-141-102-60-158-9-184zm4539 905c-32 0-59 27-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59m-4032 0c-32 0-59 26-59 59 0 32 26 59 59 59s59-26 59-59-26-59-59-59m4294-304c-754-91-1506-133-2260-133s-1509 41-2269 115c-26 8-21 90 14 86 756-73 1507-113 2256-113 743 0 1485 40 2228 129 39 4 54-80 32-84z"}),(0,s.jsx)("path",{d:"M200319 48495c768-75 1530-117 2289-116 754 0 1507 42 2261 133l111-184c-32 10-62 9-90-5-76-38-92-161-36-274 56-114 164-175 240-138 39 19 62 62 68 114l446-739c-204 130-328 214-581 252-281 41-409 139-368 307 38 156-57 133-201 54-314-171-541 71-652 353-73 186-159 181-168-13-4-70 0-131-7-200-21-223-89-286-216-224-161 78-175 25-137-58 28-60 86-128 66-221-9-67-66-92-151-98-182-244-467-483-649-727-182 244-374 483-556 727-86 5-142 30-152 98-20 93 52 157 80 217 38 82 23 135-137 57-127-61-186-3-207 220-7 69-10 139-13 209-9 194-95 199-168 13-111-282-352-524-667-353-145 79-203 102-182-54 23-172-107-266-388-307-253-37-377-122-581-252l419 682c12-25 29-45 53-57 76-38 184 24 240 138 56 113 40 237-36 274-10 5-21 8-32 10l100 163zm4389 911c-7 3-7 4-24 11-46 19-80 66-134 124-57 60-128 125-211 188-12 10-25 19-44-6s-7-35 6-44c80-62 149-124 204-182 30-32 56-63 77-92-95-11-190-21-284-30-79 24-157 55-222 95-59 35-107 77-137 125-8 14-16 27-44 11-27-16-19-30-11-44 35-58 91-107 158-147 33-20 69-38 106-54-107-9-214-18-321-25-22 13-42 29-61 47-20 19-39 42-56 67-9 13-18 26-44 8s-18-31-8-44c19-29 41-54 64-77l9-9c-80-5-161-10-241-14-2 2-5 5-8 7-21 18-40 38-55 59s-28 43-38 67c-6 15-12 29-41 18-29-12-23-26-17-41 12-29 27-55 45-81 8-11 18-22 27-33-115-5-230-9-344-12-4 5-9 8-14 11q-37.5 22.5-66 51c-28.5 28.5-35 40-48 63-8 14-16 28-43 12-28-16-20-29-12-43 16-28 35-54 59-77 7-7 14-13 21-19-122-2-244-4-365-4q-180 0-360 3c8 7 15 13 22 20 23 23 42 49 59 77 8 14 16 27-12 43s-35 2-44-12q-19.5-34.5-48-63c-28.5-28.5-41-36-66-51-6-3-12-7-15-12-115 2-230 6-345 11 11 11 20 23 29 35 19 25 33 52 45 81 6 15 12 29-17 41s-35-3-41-18c-9-24-22-46-38-67-15-21-34-41-55-59-4-3-7-6-10-10-81 4-162 8-243 13 4 4 9 8 13 12 24 23 45 48 64 77 9 13 18 26-8 44s-35 5-44-8c-18-26-36-48-56-67s-41-35-64-49c-1-1-3-2-5-3-110 7-220 14-330 23 43 18 85 38 122 61 67 40 124 89 158 147 8 14 16 27-11 44-27 16-35 3-44-11-29-48-78-90-137-125-72-44-159-77-246-102h-2c-90 7-179 15-268 24 22 33 51 68 86 106 55 58 124 120 204 182 13 9 25 19 6 44s-32 15-44 6c-83-64-155-128-211-188-37-38-99-111-135-140-196-90-354-127-575-147-153-14-318-9-458-79 36 85 75 164 126 229 53 68 120 121 209 147 8 2 21 16 22 25 28 157 84 286 169 386 52 60 114 110 188 149-75-81-132-166-172-251-67-142-90-286-77-420 1-16 3-32 34-29 32 3 30 19 29 35-11 123 9 256 72 387 56 118 159 237 291 346 24 19 0 63-29 55-154-44-290-123-383-231-89-104-149-237-180-397-94-32-165-90-222-164-47-60-85-131-118-205 28 428 182 801 456 1137 61 75 165 182 255 216 92 35 95 100-20 101-34 1-69 1-105 1 84 31 164 66 233 105 127 73 217 162 224 273 1 16 2 32-29 34-32 2-33-14-34-29-6-86-82-160-192-223-113-65-259-117-402-160-154 0-312-1-459 3 39 28 80 57 131 84 82 44 188 86 343 122 89 21 166 52 233 91 71 42 130 93 177 150 10 12 20 25-5 45s-34 8-45-5c-42-52-95-98-159-135q-91.5-54-216-84c-161-38-272-81-358-128-75-40-131-82-184-123 180 393 450 573 835 689 23 7 43 13 61 19 3 1 6 1 9 2 86 21 175 40 266 55 92 15 166 28 261 37 16 1 32 3 29 34-3 32-19 30-34 29-99-9-174-22-266-38q-87-15-171-33c-26 6-64 9-107 12-232 14-420 225-435 494 0 5 0 11-1 16 88-80 179-157 273-212 117-68 239-103 364-69 15 4 31 8 22 39-8 31-23 27-39 22-106-28-212 3-316 63-108 63-213 158-315 253-24 147-82 285-205 377 61 34 104 65 163 45 86-39 172-78 261-108 91-31 184-52 282-57 16-1 32-1 33 31s-14 32-31 33c-91 4-179 24-264 53-75 26-149 58-222 91 221 47 460-1 667-79 60-22 105-42 133-41 51-30 112-53 172-79 66-28 132-51 182-57 16-2 32-4 35 28 4 32-12 33-28 35-112 13-127 21-222 79 0 21-66 57-126 96-36 24-70 52-87 67-95 86-144 181-188 287-29 70-52 145-68 224 55-108 121-211 201-303 94-108 208-201 345-265 14-7 29-13 42 15 13 29-1 35-15 42-129 60-236 147-324 250-90 103-161 222-219 345-31 64-8 1-42 86 110-122 212-224 323-307 132-100 283-157 418-133 15 3 31 6 26 37s-21 28-37 26c-116-21-250 32-369 121-121 92-244 223-366 361 184 26 366-26 542-85 91-30 183-135 239-152 19-24 38-46 57-67 33-37 67-71 102-100 12-10 24-20 45 4s8 34-4 45c-33 28-65 60-96 94-32 35-62 73-92 113-6 8-13 17-24 16-60 70-151 162-172 240-57 210-25 370-122 576 71-38 128-81 175-134 53-60 94-135 128-230 37-104 95-195 167-270 75-77 165-136 261-172 15-5 30-11 41 19s-4 35-19 41c-87 32-169 86-238 157-66 68-119 151-153 247-37 102-81 183-141 250-44 50-95 91-156 127 52-3 78-10 121-7 79-6 211-66 279-119 66-51 116-120 154-206 6-15 13-29 42-16s23 27 16 42c-42 96-99 174-173 231-56 43-121 75-196 93 161-5 311-42 467-100 65-24 87-168 127-208 32-58 66-112 105-158 47-56 101-101 164-127 15-6 29-12 41 18 12 29-3 35-17 41-52 21-98 60-139 108-36 42-68 93-98 147 10 73-51 228-53 305-7 205-2 409 53 612 53-71 107-134 162-192 0-5 0-10 1-15 18-106 33-219 40-332 7-112 7-223-6-329-2-16-4-32 27-35 32-4 34 12 35 28 14 111 14 226 7 340-6 90-16 180-30 269 54-51 53-51 77-103 37-80 59-159 67-237 9-80 5-157-13-230-4-15-7-31 24-38s35 8 38 24c19 80 25 165 14 252-8 65-24 132-49 199 56-42 114-82 178-122-4-75-5-153-3-227 2-68 7-134 18-190 4-20 7-40 47-33s37 27 33 48c-9 50-14 111-16 177-2 78 0 162 4 243 5 82 49 185 125 230 103 62 158 163 186 274 16-145 17-280 3-400-17-143-55-267-114-368-8-14-16-27 12-44 27-16 35-2 43 12 63 110 104 241 122 393 17 146 13 310-13 488 102-82 381-258 352-594-7-27-16-52-28-75-7-14-14-28 14-42s35 0 42 14c17 33 30 69 39 110 5 24 8 49 11 76 13-7 45-43 51-39 24 16 58 38 80 54-21-60-35-120-42-178-10-87-5-172 14-252 4-15 7-31 38-24s27 23 24 38c-18 73-22 151-13 230 9 77 31 157 67 237 4 8 8 16 5 25 24 21 47 42 70 65-13-84-22-170-28-255-8-115-7-230 7-341 2-16 4-32 35-28s29 20 27 35c-13 106-13 217-6 329 7 113 22 225 40 332 1 2 1 5 1 7 54 59 95 120 152 196 55-203 73-407 66-612-2-76-69-227-65-302-30-55-63-107-100-151-41-49-87-87-139-108-15-6-29-12-18-41 12-29 27-24 41-18 62 26 117 71 164 127 38 45 72 98 103 154 57 7 78 179 143 212 154 57 298 94 453 100q-112.5-28.5-195-93c-74-57-131-135-173-231-6-15-13-29 16-42s35 2 42 16c38 86 88 156 154 206 85 66 289 124 400 127-61-37-113-78-157-128-59-67-104-148-141-250-34-95-87-179-153-247-68-71-150-124-238-157-15-6-29-11-19-41 11-29 26-24 41-19 96 36 186 94 261 172 72 74 130 166 167 270 34 95 75 169 128 230 47 54 105 98 177 135-98-207-66-367-122-577-35-129-232-277-193-320 45-51 133 88 248 127 175 59 357 111 540 85-122-138-244-269-366-361-119-90-237-140-352-120-16 3-31 6-37-26-5-31 10-34 26-37 135-24 269 32 401 132 111 84 201 175 311 298-18-47 0-14-30-77-59-123-130-241-220-345-89-102-196-189-324-250-14-7-28-13-15-42 13-28 28-22 42-15 137 65 251 157 345 265 81 93 147 198 203 307-15-81-39-157-68-227-44-106-93-201-188-287-62-56-209-140-208-179-29-15-33-11-63-24-61-26-121-46-164-52-16-2-32-4-28-35 4-32 19-30 35-28 50 6 115 28 182 56 33 14 66 43 98 60 53 4 139 47 208 74 206 78 446 126 666 79-73-33-147-65-223-91-85-29-172-49-264-53-16-1-32-1-31-33s17-31 33-31c98 4 191 26 282 57 89 30 175 69 261 108 59 27 101-7 163-45-123-92-181-230-205-376l-2-2c-102-95-207-190-315-253-104-60-210-91-316-63-15 4-31 8-39-22-8-31 7-35 22-39 125-33 247 1 364 69 94 55 186 132 274 213 0-6-1-11-1-17-15-270-203-480-435-494-78-5-189 21-186-32 4-59 97-44 234-86 385-116 655-296 836-690-54 41-110 83-186 124-86 47-198 91-358 128-82 19-154 48-216 84-64 38-117 84-159 135-10 12-20 25-45 5s-14-32-5-45c47-57 106-108 177-150 67-39 145-70 233-91 155-36 261-78 343-122 51-27 92-55 131-84-148-4-305-3-459-3-143 44-289 96-402 160-110 63-186 136-192 223-1 16-2 32-34 29-32-2-31-18-29-34 8-111 97-200 224-273 69-39 149-74 233-105-35 0-70 0-104-1-116-2-112-66-20-101 90-34 190-141 251-216 271-334 412-714 456-1130-33 72-69 140-115 198-57 73-128 131-222 164-31 160-91 293-180 397-92 108-216 185-369 230-29 8-52-35-29-55 132-109 221-226 278-344 62-131 83-264 72-387-1-16-3-32 29-35 31-3 33 13 34 29 12 134-10 278-78 420-40 85-97 170-172 251 73-39 136-89 187-149 85-100 141-229 170-386 1-8 14-22 22-25 89-27 155-79 209-147 51-65 90-143 126-228-140 69-304 64-457 78-213 19-369 68-554 152z"}),(0,s.jsx)("path",{d:"M204649 49231c-680-88-1359-113-2041-114-684 0-1369 40-2058 112-20 6-15 33-14 46 2 28 37 35 121 27 643-60 1285-93 1932-93 674 0 1351 21 2038 102 33 9 77-85 22-81z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M200570 49160c683-71 1362-110 2038-110 675 0 1349 40 2025 127l31-127c-17 9-37 15-58 15-67 0-123-55-123-123s55-123 123-123c51 0 94 31 113 75l60-170c-724-84-1446-122-2171-122-729 0-1459 38-2193 107l58 164c22-32 59-54 101-54 68 0 123 55 123 123s-55 123-123 123c-12 0-25-2-36-6l33 94-2 7zm3067-416c-68 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123m0 64c-33 0-59 27-59 59s26 59 59 59c32 0 59-27 59-59s-26-59-59-59m-1082-91c-67 0-123 55-123 123s55 123 123 123 123-55 123-123-55-123-123-123m0 64c-32 0-59 26-59 59s26 59 59 59 59-26 59-59c0-32-26-59-59-59m-1064-40c-68 0-123 55-123 123s55 123 123 123c67 0 123-55 123-123s-55-123-123-123m0 64c-33 0-59 26-59 59s26 59 59 59c32 0 59-26 59-59 0-32-26-59-59-59"})]}),(0,s.jsx)("path",{d:"M202601 47974c-14-68-49-129-100-175-51-47-116-78-187-88-33-4-39-58-7-68 60-20 114-67 157-133 45-69 79-157 95-256 5-34 64-35 69-1 15 84 51 153 97 208 55 66 125 112 193 138 31 12 25 63-8 68-59 9-105 42-141 87-50 62-81 145-100 221-8 33-62 31-69-2zm33-118c20-52 47-103 81-146 28-34 60-64 99-84-51-30-100-70-143-120-28-34-53-73-73-116-19 59-45 112-75 158-31 47-67 86-108 116 50 19 95 47 134 82 34 31 63 68 85 110m799 5115-515 206c-17 7-35 14-48-21-14-34 4-41 21-48l515-206c17-7 35-14 48 21 14 34-4 41-21 48m59-326-604 328c-16 9-33 18-51-15s-1-42 15-51l604-328c16-9 33-18 51 15s1 42-15 51m-1826-65 604 328c16 9 33 18 15 51s-34 24-51 15l-604-328c-16-9-33-18-15-51s34-24 51-15m51 322 515 206c18 7 35 14 21 48-14 35-31 28-49 21l-515-206c-17-7-34-14-21-48 14-35 31-28 48-21zm224 434c137 33 261 48 358 31 88-16 155-60 191-146v-493c-107-1-212-15-303-41-109-31-170-98-201-178-41-107-27-235-4-329 5-18 9-36 45-27s32 27 27 45c-20 82-33 194 1 284 23 60 69 110 152 133 91 25 198 38 307 38 107 0 214-13 304-40 82-24 148-69 192-123s65-117 57-176c-5-36-24-62-49-80-34-24-82-35-128-37-47-2-94 7-142 16-25 5-50 9-77 13-19 2-37 5-42-32s14-40 32-42c23-3 48-8 73-12 52-10 105-20 159-18 60 2 121 18 168 51 42 29 72 72 80 131 11 80-16 163-73 233-53 65-131 119-229 147-83 24-178 38-274 42v483c3 5 3 11 2 16 37 82 102 125 188 141 97 18 221 2 358-31 18-5 36-9 45 27 8 37-9 41-28 45-146 35-279 51-388 32-92-17-165-58-215-132-49 74-124 115-215 132-109 20-242 4-388-32-18-4-37-8-28-45 8-36 27-32 45-27zm356 210 402-9c19 0 38-1 38 37 1 38-18 38-37 38l-402 9c-19 0-37 1-38-37s18-38 37-38m593-3082c151-125 293-227 423-297 133-72 254-111 359-106 19 1 37 1 36 39-1 37-20 37-39 36-92-4-200 32-322 97-125 67-263 166-410 289-14 12-29 24-53-5s-9-41 5-53zm-605 56c-141-130-298-240-445-314-139-71-268-108-363-100-19 2-37 4-40-34-4-37 15-39 34-40 110-10 252 31 404 107 152 77 315 191 461 325 14 13 28 25 2 53-25 27-39 15-53 2zm-213 1004c37-83 83-155 136-219 53-63 112-119 174-170 14-12 29-24 52 5 24 29 9 41-5 53-59 48-114 101-164 160-49 59-91 125-125 201-8 17-15 34-49 19s-27-32-19-49m371-1734c49 66 88 139 114 223 26 82 40 175 39 279 5 80 6 165-7 249-13 86-42 170-97 246-43 60-101 97-165 113-53 13-109 10-164-7 29 100 51 208 6 308-8 18-33 27-51 18-43-22-86-43-128-62s-84-36-127-51l-1-1c-95-37-173-73-236-112-65-39-115-80-150-124l1 2c-44-49-72-106-88-170-14-55-20-114-22-174-72-39-138-78-194-116-64-43-118-87-161-131-13-14-26-27 1-53s40-12 53 1c39 40 89 80 150 121 60 40 128 81 204 121 124 13 247 51 370 109 106 50 211 115 317 192 13 7 19 16 27 20 8 6 16 13 25 19 51 22 104 28 152 16 47-11 90-39 122-84 48-66 72-139 84-214 12-77 11-157 6-234v-2c1-97-12-183-35-258-24-76-58-142-102-201-11-15-22-30 7-52s41-7 52 7zm-375 1047c-104-77-207-141-311-190-105-49-210-83-314-98q3 72 18 135c13 52 35 99 71 138l1 1c30 37 73 72 130 107 60 36 134 71 225 106l-1-1c45 16 89 34 133 54 31 14 61 28 93 44 19-83-10-179-37-267-2-8-5-15-9-29zm776-1003c-44 59-79 125-102 201-24 76-36 161-35 258v2c-5 77-6 158 6 234 12 75 37 148 84 214 32 45 75 72 122 84 48 12 101 6 152-16 8-6 17-13 25-19 6-4 13-12 27-20 105-77 211-143 317-192 123-58 246-95 370-109 75-40 144-80 204-121s111-81 149-121c13-13 26-27 53-1s14 39 0 53c-43 44-97 88-161 131-57 38-122 77-194 116-2 61-8 119-22 174-16 63-44 121-88 170l1-2c-35 44-85 85-150 124-63 38-141 75-237 112l-1 1c-43 15-85 32-127 51-43 19-85 40-128 62-18 9-43 0-51-18-45-100-23-208 6-308-55 18-111 20-164 7-64-15-122-53-165-113-55-76-84-160-97-246-13-85-12-169-7-249-1-104 13-196 39-279 26-84 65-158 114-223 11-15 22-30 52-7 30 22 19 37 7 52zm940 715c-105 15-209 49-314 98-104 49-207 113-311 190-4 13-6 21-8 29-27 88-56 184-37 267 31-15 62-30 93-44 44-20 87-38 133-54l-1 1c91-35 165-70 225-106 58-34 100-70 131-107l1-1c35-39 57-86 71-138 11-42 16-87 19-135z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M203459 50602c-119 0-216 97-216 216s97 217 216 217 216-97 216-217c0-119-97-216-216-216m0 69c-81 0-147 66-147 147s66 147 147 147 147-66 147-147-66-147-147-147m0 60c-48 0-87 39-87 87s39 87 87 87 87-39 87-87-39-87-87-87m-1697-124c119 0 217 97 217 216s-97 217-217 217c-119 0-216-97-216-217 0-119 97-216 216-216m0 69c81 0 147 66 147 147s-66 147-147 147-147-66-147-147 66-147 147-147m0 60c48 0 87 39 87 87s-39 87-87 87-87-39-87-87 39-87 87-87"})]}),(0,s.jsx)("use",{xlinkHref:"#hr_inline_svg__a",width:"100%",height:"100%",transform:"rotate(-2.173 -55532.79 156275.842)"}),(0,s.jsx)("use",{xlinkHref:"#hr_inline_svg__a",width:"100%",height:"100%",transform:"rotate(2.18 459865.852 156275.76)"})]}),(0,s.jsx)("path",{fill:"#171796",d:"m387.186 94.883-.06.02-19.197-21.94-25.24 14.466-4.258 51.097a220 220 0 0 1 36.12 6.045l12.63-49.687z"}),(0,s.jsx)("path",{d:"M347.668 98.03c.877-.213 1.742-.258 2.58.256.37.152.646.346.816.595.39-.3.785-.582 1.195-.824.575-.426 1.163-.803 1.795-1.014q1.358-.69 2.714-.815c.957-.164 1.92-.173 2.876-.116.8.048 1.572.268 2.31.693.667.33 1.333.666 2 .997.707.394 1.414.75 2.12 1.048.896.353 1.903.472 2.977.512.526.02 1.043.02 1.55-.116.41-.11.666.15.213.43-3.318 2.035-5.918.224-8.136-.587.813.55 1.528 1.12 2.133 1.7.844.813 1.787 1.637 3.455 2.398 1.012.46 2.114.822 3.53.834.478.004.995-.015 1.554-.107.282-.045.403-.02.408.128.004.1-.022.3-.19.41-.856.574-1.66.726-2.56.783-1.71.11-3.54-.453-5.214-1.35-1.34-.722-2.242-1.6-3.308-2.385-1.064-.785-1.984-1.22-2.972-1.43-.974-.208-2.03-.184-2.918.09.266.053.49.178.628.337.458.27 1.046.39 1.896.486.444.053.306.36-.376.726-.41.53-.944.813-1.652.744-.977.647-1.325.256-1.652-.168q-.061.402-.235.785a.6.6 0 0 1-.014.426c.156.242.232.477.18.735.026.137.07.27.218.393.205.186.335.4.36.66.004.173.1.315.236.443.2.164.4.308.6.553.59.213.862.666.96 1.25.445.145.63.468.718.852.253.106.485.234.618.46.91.002 1.8.002 2.63.09.78.083 1.416.568 1.985 1.2.383.058.772.077 1.17-.013.41-.18.844-.318 1.316-.358.78-.066 1.56-.107 2.306.07.503.122.897.39 1.22.755.464.528 1.18.457 1.79.197.83-.355 1.52-.343 2.37.03a2.3 2.3 0 0 1 1.086-.17c.31-.335.64-.418.98-.428.55-.02.952.066.848.775-.03.192-.143.377-.287.443-.254.548-.737.71-1.35.657-.067.377-.22.656-.468.836.28.87.01 1.22-.634 1.207-.135.25-.336.407-.68.358a1.38 1.38 0 0 1-.872.514c.038.227.135.334.296.578.44.664-.22.932-.822.94.154.44.173.878.118 1.316.614.372.697.764.13 1.15.415.725.254 1.258-.523 1.647-.012.405-.052.813-.322 1.04-.184.157-.45.185-.274.48.315.52.246 1.18-.22 1.198-.1-.008-.19.006-.197.165 0 .054-.05.11-.14.163q-.842.449-1.565 1.04c-.072.048-.143.08-.214.017-.35.764-1.004 1.54-1.727 2.318q-.166.862-.974 1.164a.41.41 0 0 1-.32.327c.3.334.414.657.123.974-.358.39-.83.773-1.3.894-1.004.256-1.632.208-2.035-.176-.355-.34-.216-.595.01-.7-.62.048-.745-.28-.728-.715.036-.217.11-.188.327-.18.337.008.64-.174.958-.278q.185-.315.483-.54c.11-.702.555-1.09 1.157-1.32.485-.186.95-.655 1.4-1.262l.835-1.434a1.24 1.24 0 0 1-.254-.76 1.5 1.5 0 0 1-.557-.517c-.437-.032-.617-.23-.68-.5a1.1 1.1 0 0 1-.328-.044c-.214.138-.43.26-.697.247a7 7 0 0 1-1.09.91c-.13.36-.39.505-.704.55-.895.106-1.43 1.223-1.924 1.678-.2.148-.322.408-.41.72-.042.59-.144 1.05-.466 1.058-.29-.012-.335-.043-.344-.073a1.2 1.2 0 0 0-.377.016c.24.267.28.6.056.895-.223.29-.543.38-.85.4-.638.043-1.155-.014-1.634-.208-.457-.188-.512-.46-.498-.726-.33-.155-.395-.31-.36-.465.045-.2.228-.3.458-.237q.3-.142.597-.197c.577-.622 1.172-1.158 1.826-1.407a3 3 0 0 1 .68-.614c.076-.56.444-1 .894-1.41.04-.202.106-.406.22-.608-.026-.12.007-.177.01-.29-.183-.34-.292-.748-.157-1.087a1.3 1.3 0 0 1-.05-.54c-1.075.64-1.407.422-1.53-.097-.394.33-.76.483-1.024.01-.383.113-.767.24-1.148.09-.25.097-.5.184-.787.203-.116.23-.273.46-.484.69-.01.484-.18.968-.49 1.45a9.3 9.3 0 0 1-.696 1.55 1 1 0 0 1-.107.5c.083.594-.116.883-.443 1.03a2.4 2.4 0 0 1-.417.72q-.014.12-.026.237c.13.35.153.7-.203 1.05-.287.18-.592.37-.896.52-.357.175-.69.092-.99-.017-.528-.19-.488-.375-.42-.555a.64.64 0 0 1-.52-.007c-.128-.08-.21-.163-.337-.246-.114-.207-.154-.394.123-.54.35-.155.586-.27.86-.55.095-.214.216-.375.387-.418.166-.388.37-.65.647-.723.204-.48.422-1.01.68-1.47.09-.14.157-.285.114-.443-.005-.13.005-.254.114-.328.06-.053.17-.1.033-.174a1.36 1.36 0 0 1 .164-1.154c.28-.422.593-1.44.297-1.94-.054-.28-.108-.6-.073-.863-.102-.006-.178.008-.28-.063-.227-.14-.417-.007-.59.246-.125.318-.25.598-.376.598-.118.82-.52 1.458-.94 1.622-.098.377-.16.753-.107 1.13.043.41 0 .69-.19.737-.208.05-.403.172-.523.506a1 1 0 0 0-.074.337c.29.3.202.67-.076.946-.625.615-1.403.525-2.225.283-.595-.235-.74-.483-.68-.737-.844-.07-.676-.718.023-.912.752-.21 1.36-.693 1.86-1.38.046-.815.233-1.37.672-1.457.042-.5.2-.95.41-1.377.22-.387.355-.81.277-1.328q-.7-.436-.057-.9.213-.125-.05-.254c-.284-.028-.25-.3-.23-.557-.012-.13-.08-.2-.206-.202-.63-.093-.474-.35-.204-.63.114-.13.19-.318.07-.394-.096-.062-.162-.278-.183-.467-.387-.292-.22-.59 0-.877-.22-.185-.32-.455-.35-.77-.72-.03-.987-.396-.598-.927a3.4 3.4 0 0 1 .63-.647c.165-.268.324-.536.245-.803-.206-.524.453-.92 1.017-1.328a.9.9 0 0 1-.123-.41c-.32-.305-.238-.59.113-.86a1.1 1.1 0 0 1-.13-.417c-.79.156-.785-.315-.418-1.074-.457-.263-.33-.73.5-1.44a1 1 0 0 1 .09-.378 1.9 1.9 0 0 0-1 .304c-.315.206-.628.18-.943.05a1.5 1.5 0 0 0-.417-.41.62.62 0 0 1-.22-.63c-.93.05-1.107-.636-.55-1.04.31-.248.538-.506.623-.788.25-.638.784-1.07 1.303-1.517 0-.182.042-.365.1-.55-.23-.154-.473-.265-.74-.286a1.18 1.18 0 0 0-.572-.64c-.173-.103-.23-.2-.123-.435-.493-.44-.37-.71-.244-.962z"}),(0,s.jsxs)("g",{fill:"#f7db17",children:[(0,s.jsx)("path",{d:"M364.524 121.963a1.4 1.4 0 0 1-.176.007 8.5 8.5 0 0 1-.79.696c-.23-.265-.572.027-.238.188l-.17.118c-.11.29-.21.413-.532.462q-.075.01-.15.03a3 3 0 0 1 .015-.36 4 4 0 0 1 .07-.42c.004-.027.01-.05-.04-.063-.05-.01-.056.016-.06.042a4 4 0 0 0-.074.433 3 3 0 0 0-.015.396c-.813.262-1.283 1.108-1.837 1.71-.24.206-.36.49-.448.79-.047.158-.064.886-.228.897-.078.003-.16 0-.248 0q-.132-.198-.356-.01c-.34-.006-.7-.01-1 .04-.206.222.36.14.66.324.14.084.198.247.143.475-.276.66-1.824.447-2.338.175-.24-.126-.25-.27-.24-.476q.161 0 .325-.024c.185-.026.368-.08.548-.183.05-.028.102-.056.045-.158s-.11-.075-.16-.046a1.3 1.3 0 0 1-.463.154 2.6 2.6 0 0 1-.486.016q-.02-.001-.04 0c-.09-.052-.158-.114-.12-.168.038-.052.187.005.215.014.24-.11.448-.182.707-.232.545-.583 1.1-1.13 1.85-1.432.226-.27.47-.483.764-.677.104-.65.42-.997.89-1.428.058-.268.124-.46.257-.695-.03-.15-.007-.244 0-.395-.18-.342-.287-.638-.145-1.02-.088-.277-.076-.464-.042-.72a.4.4 0 0 0-.003-.144 6 6 0 0 1 .848-.574c-.02.256-.01.524.04.803l-.003.003a1.3 1.3 0 0 0-.197.263.53.53 0 0 0-.073.277c0 .026 0 .052.052.05.05 0 .05-.026.05-.052a.43.43 0 0 1 .06-.225c.043-.08.107-.16.183-.24a.1.1 0 0 0 .02-.026c.248-.007.492-.14.736-.336.22-.18.44-.412.658-.656q-.003.533-.01 1.067c-.213.19-.395.422-.538.705-.01.023-.023.045.022.068.047.024.06 0 .068-.023a2.3 2.3 0 0 1 .49-.65h.008c.052 0 .052-.026.052-.052v-.002a3.2 3.2 0 0 1 .917-.526c-.045.312-.066.618-.01.912.058.322.21.626.518.89q.007.008.02.01z"}),(0,s.jsx)("path",{d:"M349.043 112.947c.04-.073.142-.168.175-.16l.02-.006c.11-.207.227-.402.348-.577a4 4 0 0 1 .497-.6c.02-.02.038-.035.074 0 .035.038.016.055 0 .074a4 4 0 0 0-.486.583 6 6 0 0 0-.34.57c.035.046.052.12.033.172.035.324.078.507.223.694a.2.2 0 0 1 .05-.033q.09-.217.24-.386a1.7 1.7 0 0 1 .45-.35q.185-.153.305-.316.121-.159.19-.327c.01-.023.02-.047.07-.028.046.02.037.045.027.07q-.075.18-.2.35a2 2 0 0 1-.328.334l-.01.003q-.256.139-.427.33a1.3 1.3 0 0 0-.21.327c.075.054.108.204.037.3-.216.31-.472.492-.07.757a.64.64 0 0 0 .19.512c.093.096.084.435-.144.68-.213.215-.05.158.17.184l.05.017v-.002c.08-.156.176-.296.28-.426a4 4 0 0 1 .327-.363c.16-.157.285-.328.375-.5.087-.17.14-.342.15-.508 0-.026 0-.052.056-.048.052.003.05.03.047.055a1.4 1.4 0 0 1-.16.55c-.095.18-.227.36-.393.522a4 4 0 0 0-.318.354 2.6 2.6 0 0 0-.27.41c.267.16.182.45.222.715q.077.011.137.04a.03.03 0 0 1 .01-.015l.155-.246.247-.393c.014-.02.028-.045.07-.016.046.03.032.05.017.072l-.247.39-.157.248-.007.01c.163.134.175.376-.027.56-.396.3-.284.392.086.63.046.347.048.627-.027.923l.004.026q.014.146.024.293l.025.296c.002.025.004.05-.048.056s-.054-.02-.057-.047l-.023-.298a1 1 0 0 1-.005-.075q-.028.067-.062.142c-.265.58-.54 1.053-.6 1.705-.637.152-.542.78-.578 1.335-.502.677-1.085 1.22-1.893 1.49-.153.05-.52.14-.556.332-.005.07.247.218.408.13.445-.426.668-.19.156.247-.04.082-.007.174.08.252.463.415 1.608.55 2.13.22.385-.24.587-.506.25-.874.022-.52.225-1.03.775-1.178.064-.118.045-.338.017-.46-.052-.452.02-.855.13-1.29.02-.055.06-.1.15-.124.208-.043.61-.647.734-1.228.03-.125.05-.256.074-.386.033-.202.11-.237.213-.12.098-.13.096-.207.155-.357.213-.31.52-.56.882-.383a3 3 0 0 1-.176-.832 2.7 2.7 0 0 1 .115-1.03c.014-.05.03-.098.11-.087q.154-.368.31-.737l.312-.742c.01-.023.02-.047.067-.028.047.02.038.045.028.07l-.313.74-.31.735c.044.034.03.077.016.12a2.5 2.5 0 0 0-.102.943c.023.346.11.68.237.953.012.026.027.052.022.078.17.1.168.123.16.35-.004.18.02.354.063.567.34.627-.014 1.674-.344 2.198a1.1 1.1 0 0 0-.134.834c.204.197.07.4-.11.538-.013.048 0 .102.003.15.018.204-.055.374-.162.542-.277.5-.49 1.034-.713 1.558-.403.11-.486.346-.647.722-.235.067-.26.135-.358.35a2.7 2.7 0 0 1-.875.594c-.286.13-.01.256.192.393.183.134.422-.16.572-.382.162-.247.328-.174.22.018a2 2 0 0 0-.214.674c-.062.17.587.3.7.305.395.02.892-.367 1.203-.564.257-.262.217-.492.103-.812l.002-.02a2 2 0 0 1-.476-.048 3.4 3.4 0 0 1-.56-.185c-.024-.01-.048-.02-.03-.07.02-.046.046-.037.07-.027.185.075.363.14.543.177q.223.051.467.045l.026-.25a2.7 2.7 0 0 0 .46-.804c.438-.207.44-.42.38-.89.098-.19.12-.3.112-.516a10 10 0 0 0 .723-1.597c.347-.46.513-.894.473-1.44.03-.214.11-.335.265-.328a4 4 0 0 0 .308-.505l.057.005a.1.1 0 0 1 0-.038c.03-.126.062-.237.105-.33a.8.8 0 0 1 .142-.225.9.9 0 0 0 .07-.455 1.1 1.1 0 0 0-.153-.443.5.5 0 0 1-.116-.185c-.02-.074-.006-.148.067-.22.02-.02.038-.037.074 0s.02.056 0 .072c-.042.04-.05.078-.037.116a.5.5 0 0 0 .097.15l.005.01c.092.158.154.322.17.49a1 1 0 0 1-.083.514c0 .002-.01.014-.01.017a.7.7 0 0 0-.13.2 1.7 1.7 0 0 0-.097.308l-.004.02c.245 0 .46-.077.695-.193l.014-.014c.118-.094.243-.238.348-.428.087-.16.158-.353.2-.576.003-.026.008-.05.06-.043.05.01.045.036.043.06a2 2 0 0 1-.21.61c-.08.148-.175.27-.27.364.38.114.708.002 1.07-.11-.053-.506-.046-.893.008-1.196.06-.33.17-.56.31-.736.017-.022.03-.04.074-.01.04.034.026.052.01.074-.13.163-.235.38-.29.692-.052.29-.06.66-.01 1.147q.005-.002.018-.005c.15.26.232.446.542.244.114-.076.233-.15.327-.25.035-.04.023-.06.05-.09.298-.316.596-.61.893-.87.298-.264.597-.49.895-.67.022-.016.045-.03.072.015.026.046.004.058-.017.072a6.5 6.5 0 0 0-.882.66q-.379.334-.76.734c.015.045.022.123.03.242.025.35.09.56.59.37.28-.107.307-.12.566-.273a1.3 1.3 0 0 1 .305-.157 8 8 0 0 1 .49-.358q.239-.16.478-.29.04-.283.13-.55c.155-.456.413-.878.738-1.276l.016-.014q.404-.221.666-.517c.178-.197.31-.417.41-.656.01-.024.02-.048.07-.03.046.02.037.046.027.07q-.154.376-.426.685a2.5 2.5 0 0 1-.69.535c-.314.39-.565.797-.712 1.235a2.7 2.7 0 0 0-.116.474q.015.004.028.03c.024.048 0 .06-.02.07q-.012.004-.022.012a2.8 2.8 0 0 0 .023.805c.222-.007.445-.13.67-.312.24-.194.483-.462.725-.734.002-.007.002-.012.01-.017a1.7 1.7 0 0 1 .234-.503.95.95 0 0 1 .397-.327c.024-.01.048-.022.07.028.018.048-.003.057-.03.07a.86.86 0 0 0-.355.29 1.7 1.7 0 0 0-.225.49q-.004.553-.01 1.108.02-.015.038-.03c.273-.212.586-.368.925-.492.035-.014.076.02.068.057-.052.333-.08.663-.026.966.052.284.18.55.436.787a2.8 2.8 0 0 1 .48-.628q.144-.146.3-.273.115-.105.225-.21l.228-.212c.02-.02.04-.035.074.003.036.038.017.057-.002.073l-.228.21-.227.212-.003.002q-.145.119-.28.252.005.144.013.29l.004.155c.22.06.35.062.573.057.073.438.11.507.493.517a3 3 0 0 1 .014-.457c.02-.17.054-.336.114-.493.01-.023.018-.047.066-.03.05.018.04.042.03.066a2 2 0 0 0-.108.467 3 3 0 0 0-.015.448h.03c.153.314.333.468.655.607q.135-.213.2-.426a1.4 1.4 0 0 0 .056-.476c-.002-.026-.002-.052.048-.054.052-.002.054.02.057.047q.015.256-.062.512-.076.254-.248.506c-.01.015-.02.03-.035.03.014.18.045.316.11.454a3 3 0 0 1 .153-.3q.115-.205.277-.368c.02-.02.036-.036.073 0 .036.035.02.054 0 .073-.1.1-.184.22-.26.348a4 4 0 0 0-.183.363c.036.062.08.123.133.194-.607 1.04-1.256 2.482-2.453 2.956-.62.244-.89.56-1.012 1.22-.232.18-.398.363-.55.614-.403.135-.763.337-1.2.318 0 .282.093.405.375.407.538-.27.66-.32.707-.282.066.057-.076.444-.522.756-.068.042-.066.068-.026.14.376.59 1.364.378 1.895.24.38-.1 1.064-.55 1.254-.93.072-.176-.093-.4-.26-.586-.758.116-.613-.61.04-.308.22-.066.247-.07.31-.313.58-.225.82-.47.954-1.092.586-.63 1.173-1.28 1.595-2.035.115-.142.184-.394.15-.524a1.1 1.1 0 0 0 .2-.42c.038-.153.062-.302.057-.454 0-.026-.003-.052.05-.054.052-.002.052.024.054.05.006.16-.018.32-.058.48a5 5 0 0 1-.12.37c.037.095.056.16.14.136.506-.408 1.018-.695 1.565-1.034.038-.232.188-.346.417-.355.093 0 .126-.027.16-.113.127-.32-.034-.54-.188-.805-.142-.396.11-.49.365-.68.266-.197.247-.72.257-1.02h.002l-.03-.154a3 3 0 0 0-.092-.32c-.01-.023-.016-.05.03-.066.05-.017.058.007.068.033q.059.173.094.332.014.064.026.126c.254-.13.52-.282.62-.564.087-.314-.084-.61-.236-.876a10 10 0 0 1-.595.256c-.023.01-.047.02-.066-.028s.004-.06.028-.067a10 10 0 0 0 .687-.303 1.3 1.3 0 0 0 .313-.263c.182-.264-.308-.5-.48-.608q.002-.01.003-.02l-.736-.68c-.02-.016-.038-.035-.002-.073.036-.04.054-.022.073-.003l.683.626c.038-.387.043-.756-.078-1.14-.038-.124-.083-.244-.126-.365a1.1 1.1 0 0 1-.48-.398 1.04 1.04 0 0 1-.157-.496c-.003-.026-.003-.052.05-.057.052-.002.052.024.056.05.012.16.052.313.14.446.088.135.22.253.413.35.206.107.64.053.89-.068.35-.197-.106-.595-.213-.83-.076-.168-.094-.34-.128-.52q.045-.01.095-.018a1 1 0 0 0-.14-.147.6.6 0 0 0-.187-.113c-.024-.01-.05-.017-.03-.067.016-.05.042-.04.066-.03a.7.7 0 0 1 .22.132q.098.086.186.206a1 1 0 0 0 .102-.02c.344-.067.533-.26.742-.506a3.6 3.6 0 0 0-.374-.386 10 10 0 0 0-.427-.36c-.02-.017-.04-.034-.008-.074.033-.04.052-.024.073-.007.147.12.294.24.432.365q.21.19.393.41c.012.014.024.028.014.047.315.03.368-.035.526-.317a1.5 1.5 0 0 0-.19-.41 2.5 2.5 0 0 0-.314-.386c-.02-.02-.036-.038 0-.074.038-.036.056-.017.073 0 .122.128.236.263.326.403.09.137.16.28.202.434.147.002.305.01.43-.067.276-.163.044-.75-.028-.98q.007 0 .012-.008l-.11-.07c-.063-.04-.13-.08-.193-.122-.022-.014-.044-.028-.018-.07.03-.046.05-.032.07-.018l.196.124.142.09q.031-.026.064-.05c.2-.16.273-.375.334-.597.095-.343.114-.19.512-.25.43-.067.66-.114.915-.616.133-.067.2-.124.225-.287.043-.296.02-.448-.32-.474-.474-.038-.763.057-1.083.37l.128.194c.014.02.028.043-.014.073s-.056.007-.07-.014l-.12-.185c-.433-.04-.78.027-1.18.18l-.122-.05q.126.169.2.33.104.226.11.432c0 .026.003.053-.05.055-.052.002-.052-.024-.054-.05a1 1 0 0 0-.1-.396 1.8 1.8 0 0 0-.298-.442l-.003-.002a2.6 2.6 0 0 0-.96-.176q.08.08.16.154.103.1.203.2c.02.018.038.035 0 .073-.035.038-.054.02-.073 0a8 8 0 0 1-.204-.2 7 7 0 0 1-.205-.198l-.02-.022a2.7 2.7 0 0 0-.85.22c-.192.08-.388.142-.58.178q.214.204.357.467.15.27.226.6c.004.025.01.05-.038.06-.05.013-.057-.013-.062-.037a2.2 2.2 0 0 0-.216-.574 1.9 1.9 0 0 0-.353-.455c-.015-.012-.027-.026-.022-.045a1.8 1.8 0 0 1-.526.003l.21.348c.013.024.022.047-.023.07-.048.02-.06 0-.07-.025l-.194-.408a1.5 1.5 0 0 1-.474-.187q.075.282.116.602.058.424.07.9c0 .027 0 .053-.05.053-.053 0-.053-.026-.053-.05a8 8 0 0 0-.066-.89 5 5 0 0 0-.15-.71 1.7 1.7 0 0 1-.214-.2 2.1 2.1 0 0 0-.57-.442.95.95 0 0 1-.21.728c-.014.02-.028.04-.07.01-.04-.034-.027-.053-.01-.074a.85.85 0 0 0 .175-.72 3.1 3.1 0 0 0-1.05-.254 5.3 5.3 0 0 1 .55.872c.145.122.224.27.27.43.04.16.05.33.058.502 0 .025.002.05-.05.054-.052.002-.052-.024-.054-.05a2 2 0 0 0-.055-.48.7.7 0 0 0-.243-.38l-.014-.017a6 6 0 0 0-.268-.476 5 5 0 0 0-.33-.454l-.004-.005q-.187-.01-.376-.006.033.042.062.087a.6.6 0 0 1 .085.248c.004.026.006.052-.046.057s-.055-.02-.057-.048a.5.5 0 0 0-.07-.203.7.7 0 0 0-.112-.138c-.26.007-.52.03-.768.05q.39.502.63 1.036c.18.395.3.803.37 1.225.005.026.01.052-.043.06-.05.01-.054-.017-.06-.044a4.8 4.8 0 0 0-.362-1.2 5 5 0 0 0-.66-1.068l-.04.003c-.2.02-.404.06-.598.116q.13.082.23.163c.09.074.16.147.222.22.017.022.033.04-.007.074s-.058.016-.074-.006a1.6 1.6 0 0 0-.21-.208 2.4 2.4 0 0 0-.298-.204 5 5 0 0 0-.308.11c-.057.023-.11.044-.168.06q.263.188.505.418c.194.187.377.398.54.642.014.02.03.043-.014.07-.043.03-.057.008-.073-.013a3.8 3.8 0 0 0-.524-.627 5 5 0 0 0-.564-.457c-.214.047-.43.06-.645.052.133.263.25.528.337.796.094.29.16.58.182.877.003.027.005.053-.047.058-.053.005-.056-.02-.058-.048-.02-.29-.085-.57-.178-.853a6 6 0 0 0-.358-.834 8 8 0 0 1-.396-.043q.114.363.2.745.1.448.16.914c.003.025.005.052-.044.06-.052.006-.055-.02-.06-.046a9 9 0 0 0-.158-.906 9 9 0 0 0-.22-.81c-.375-.406-.79-.8-1.297-1.012a1.7 1.7 0 0 1 .374 1.123c0 .026 0 .052-.05.05-.053 0-.053-.03-.05-.053a1.6 1.6 0 0 0-.12-.67 1.7 1.7 0 0 0-.352-.525 2 2 0 0 0-.358-.07 16 16 0 0 0-1-.067c.256.232.457.445.438.704-.002.025-.005.05-.057.046s-.05-.03-.047-.057c.016-.24-.22-.456-.498-.702q-.3-.01-.6-.012.166.166.28.334.159.228.214.455v.007c.02.235.078.44.182.612q.151.252.45.39c.024.013.048.022.026.07-.02.047-.045.037-.068.025-.22-.1-.382-.247-.496-.432a1.5 1.5 0 0 1-.196-.65 1.3 1.3 0 0 0-.197-.416 2.7 2.7 0 0 0-.344-.396q-.33-.001-.665-.003c.093.264.157.534.202.81.052.335.076.68.083 1.027 0 .026 0 .052-.052.052-.053 0-.053-.026-.053-.05a7 7 0 0 0-.08-1.014 4.5 4.5 0 0 0-.21-.825h-.06a1 1 0 0 0-.49-.438.6.6 0 0 1-.107.282c-.012.02-.03.043-.072.014-.042-.027-.028-.048-.014-.07a.5.5 0 0 0 .09-.27q-.05-.02-.106-.045c-.107-.446-.207-.63-.562-.782-.003.123-.01.25-.033.38-.028.163-.08.326-.177.483-.014.02-.03.045-.07.016-.046-.028-.032-.05-.018-.07.09-.146.138-.295.164-.444.022-.135.03-.273.03-.405l-.062-.022c-.095-.622-.21-.97-.856-1.217q.012.121.005.247c-.007.14-.033.282-.09.43-.01.022-.02.048-.066.03-.047-.02-.037-.043-.03-.067.052-.135.076-.268.083-.398a2 2 0 0 0-.02-.368c-.137-.156-.333-.305-.502-.47a2.3 2.3 0 0 1-.09.686 3 3 0 0 1-.385.834c-.014.022-.028.045-.07.017-.046-.028-.032-.05-.018-.07a3 3 0 0 0 .375-.807 2.2 2.2 0 0 0 .08-.773 1 1 0 0 1-.177-.26l-.015.033-.075.17c-.012.024-.022.048-.07.03-.047-.022-.037-.046-.028-.07l.076-.17.06-.138q-.008-.044-.012-.09c-.02-.198-.127-.352-.272-.482l-.002-.002a1.5 1.5 0 0 1-.25.476c-.018.02-.032.04-.075.01-.04-.034-.023-.053-.008-.074q.104-.136.168-.268.051-.112.08-.23a1 1 0 0 1-.15-.246.8.8 0 0 1-.1.17q-.075.099-.195.197c-.02.018-.04.034-.074-.006-.032-.04-.01-.057.01-.073q.108-.09.174-.177a.7.7 0 0 0 .097-.176c.034-.092.046-.033.015-.182.055-.294-.054-.47-.21-.713l.01-.02a.9.9 0 0 0-.316.084 2.8 2.8 0 0 0-.456.265c-.022.015-.043.03-.072-.013-.03-.043-.01-.057.015-.07a3 3 0 0 1 .47-.274.9.9 0 0 1 .4-.092.37.37 0 0 0 .01-.227c-.473.176-.847.26-1.148.278a1.64 1.64 0 0 1-.76-.116c-.023-.01-.047-.02-.026-.068.02-.048.045-.038.07-.03.186.082.412.13.71.11.296-.02.66-.1 1.13-.275q-.002-.005-.004-.013.13-.283.2-.56a1.7 1.7 0 0 1-.5.04h-.032c-.026 0-.052-.004-.052-.053 0-.053.028-.053.052-.053h.033c.177.004.352.01.525-.048q.016-.093.03-.185c.027-.206.27-.256.44-.07.142.15.272.312.412.378.284.135.604.014.834-.17l-.21-.07c-.026-.007-.05-.016-.033-.063.016-.05.04-.043.064-.034q.135.043.27.088a1 1 0 0 0 .063-.064c.587.05.97-.073 1.346-.453a7 7 0 0 1-.892-.03c-.285-.035-.52-.092-.692-.177-.024-.012-.048-.024-.024-.07s.047-.034.07-.022c.16.08.385.136.658.167q.417.045.976.028h.005q.05-.057.103-.12c.16-.067.322-.14.44-.273-.685-.074-1.336-.21-1.95-.53-.16-.177-.41-.276-.678-.345-.498-.06-.938.062-1.344.273-.105-.1-.188-.19-.293-.287-.156-.02-.303-.102-.46-.12-.208-.025-.426.016-.635-.008-.026-.002-.052-.005-.045-.057.005-.052.03-.05.057-.045.21.024.427-.017.635.007.2.024.393.112.594.135.673-.253 1.23-.393 1.71-.372a5.7 5.7 0 0 1 1.73-.218.1.1 0 0 1-.022-.02c-.07-.068-.036-.103 0-.136.315-.32.39-.615.287-.88-.106-.276-.39-.534-.786-.77-.422.047-.827-.067-1.275-.017a4 4 0 0 0-.826.182q.34.119.583.403.302.353.418.957c.01.048.016.098-.08.114-.094.018-.103-.032-.112-.08q-.107-.55-.375-.866c-.187-.268-.616-.373-.75-.427-.45.045-.89.095-1.274.194-.29.075-.543.177-.737.328.29-.06.59-.05.85.08.25.124.46.356.593.733.017.046.03.094-.06.125-.094.03-.11-.015-.125-.062-.11-.325-.286-.52-.492-.62-.41-.205-1.257-.027-1.614.238a4.2 4.2 0 0 0-.625.594c-.038.045-.078.088-.166.012-.088-.08-.05-.12-.01-.164.216-.244.434-.46.66-.626.217-.16.442-.277.674-.33.237-.264.588-.423.993-.527.396-.103.85-.156 1.308-.2-.135-.273-.308-.437-.507-.524-.213-.095-.457-.11-.723-.083-.552.19-1.042.486-1.514.82q.066 0 .127.002c.14.01.265-.012.38.033.046.017.094.033.06.126-.04.11-.346.043-.452.035a1.4 1.4 0 0 0-.4.037c-.022.005-.046.012-.067.005-.576.356-.988.716-1.467 1.12l-.08.03c-.426-.017-.72.042-.896.175-.158.12-.17.31-.14.566-.073.24-.165.503-.19.782-.5.43-1.056.858-1.314 1.484a1.4 1.4 0 0 1-.275.487.54.54 0 0 1 .25.097q.034.028.063.062.015-.161.054-.315c.036-.146.088-.28.156-.39.015-.02.03-.043.072-.014.045.028.03.05.016.07a1.2 1.2 0 0 0-.144.36c-.04.164-.062.345-.067.51-.002.053-.097.057-.104.005a.29.29 0 0 0-.11-.2.5.5 0 0 0-.27-.086c-.107.117-.228.22-.35.318-.1.08-.193.168-.215.3-.014.226.266.266.53.283.606.036.124.38.456.68.162.112.312.242.425.4.23.084.373.065.53-.006.03-.41-.006-.62.174-.62h.018a.77.77 0 0 1 .18-.386c.017-.02.034-.04.074-.007s.024.052.007.073a.8.8 0 0 0-.122.204.8.8 0 0 0-.043.17c.03.062.024.183.022.4.343-.17.656-.212 1.007-.23.657-.767.936-.572.36-.013l-.092.176a1.4 1.4 0 0 0-.185.602c-.168.147-.993.825-.685 1.076.216-.03.35-.02.268.14-.102.216-.41.664-.308.91.038.09.17.08.3.05q.015-.014.03-.026a6 6 0 0 0 .656-.61 3.8 3.8 0 0 0 .566-.795c.02-.043.043-.083.104-.07a9 9 0 0 1 .226-.708q.132-.366.293-.737c.017-.035.067-.042.09-.01q.135.195.266.287a.4.4 0 0 0 .232.083.4.4 0 0 0 .232-.078c.086-.06.17-.15.26-.272.013-.022.03-.043.072-.012s.028.05.01.073a1.2 1.2 0 0 1-.283.296.5.5 0 0 1-.292.097.5.5 0 0 1-.29-.105 1.1 1.1 0 0 1-.238-.24q-.14.325-.256.648-.13.36-.23.72c.055.046.032.088.01.13-.17.32-.38.598-.602.842-.18.2-.372.375-.56.533.027.177.072.343.153.513.36-.308.693-.62.987-.943.294-.325.55-.66.75-1.007.015-.02.027-.045.072-.02.044.027.03.05.018.072a6 6 0 0 1-.35.53c.023.034.004.048-.015.065-.038.03-.06.154-.07.313-.013.215 0 .483.025.675.002.026.007.052-.045.06-.052.007-.055-.02-.06-.046-.025-.2-.037-.476-.025-.694q.005-.086.016-.156-.118.138-.242.277a12 12 0 0 1-1.014.966q.014.03.033.057c-.316.23-.575.31-.22.618q.18-.127.356-.255l.38-.272c.02-.014.042-.03.073.012s.01.056-.013.073l-.38.273-.37.264a.62.62 0 0 0 .09.362 1 1 0 0 1 .08-.007l.796-.58c.02-.016.043-.03.073.013s.01.057-.012.073q-.384.281-.772.562a.7.7 0 0 1-.093.118c-.26.188-1.17.75-1.074 1.138v.002c.218-.06.436-.137.644-.244.216-.11.427-.26.626-.464.02-.02.036-.036.074 0 .035.035.02.054 0 .073a2.5 2.5 0 0 1-.65.482v.01l-.004.106q-.003.054-.005.107c-.002.026-.002.052-.054.05s-.05-.03-.05-.055q.003-.052.005-.106.005-.03.004-.06a3.6 3.6 0 0 1-.562.202c.078.367-.114.683-.31.998-.112.09-1.022.827-.643 1.047a1 1 0 0 0 .33.087z"}),(0,s.jsx)("path",{d:"M349.455 100.128c-.19-.114-.434-.254-.67-.3a1.44 1.44 0 0 0-.505-.563c-.176-.114-.176-.104-.11-.23.2-.02.283-.076.285-.13a.9.9 0 0 1 .27.043.4.4 0 0 1 .202.14c.016.02.03.042.073.01s.026-.053.01-.075a.54.54 0 0 0-.252-.175 1 1 0 0 0-.37-.047q-.015-.001-.03.005a.74.74 0 0 0-.332-.054c-.135-.127-.25-.276-.194-.46.007.006.02.008.03.01q.162.043.292.102.126.054.2.133c.016.02.035.038.073.002s.02-.054.004-.073a.7.7 0 0 0-.23-.16 2 2 0 0 0-.226-.082c.782-.16 1.48-.147 2.18.268.368.152.54.327.74.597l-.2.17c-.457-.013-.793.05-1.004.212-.19.14-.228.397-.235.653z"})]}),(0,s.jsx)("path",{d:"M365.002 121.77c-.154.095-.28.162-.438.188a.1.1 0 0 0 .02-.02c.1-.19.22-.36.352-.51q.027-.03.052-.06l.007.19.007.215zm1.96 4.196a2.3 2.3 0 0 1-.376.428 4 4 0 0 1-.477.363c-.022.014-.046.03-.074-.014-.03-.043-.007-.057.014-.07q.25-.166.464-.354c.14-.127.264-.262.36-.41.015-.023.03-.044.074-.016.043.03.03.05.014.072zm1.298-1.546q-.1.15-.198.3c-.014.023-.028.044-.073.015-.044-.028-.03-.05-.016-.07.067-.1.13-.202.197-.302.015-.02.03-.042.075-.014.042.028.028.05.014.073zm-.707-.1a1.1 1.1 0 0 1-.183.423c-.095.13-.235.246-.436.338-.024.013-.047.023-.07-.025-.02-.047.004-.06.027-.068a1 1 0 0 0 .397-.306 1 1 0 0 0 .166-.383c.005-.026.012-.05.062-.038.05.01.045.035.038.06zm1.27-1.55a1 1 0 0 0-.138.178 1 1 0 0 0-.1.22c-.01.022-.016.048-.066.032-.05-.017-.043-.043-.034-.067a1.1 1.1 0 0 1 .26-.433c.02-.02.037-.036.074 0 .036.035.02.054 0 .073zm1.037.103c-.044.147-.087.296-.14.443-.056.152-.122.3-.207.45-.015.02-.027.045-.072.02-.044-.027-.032-.05-.018-.072.083-.145.145-.29.2-.43.052-.146.094-.293.14-.44.006-.026.014-.05.063-.035.05.013.043.037.036.063zm-.47-6.075c.322.474.393.963.405 1.453a7 7 0 0 1 .125-.534c0-.003.007-.017.007-.017q.2-.286.263-.567c.043-.188.043-.377.01-.565-.005-.026-.01-.05.042-.06.05-.008.057.018.062.044.036.2.036.405-.01.607a1.7 1.7 0 0 1-.272.596c-.088.33-.152.66-.213.993l-.013.06c-.01.05-.104.043-.104-.01q0-.054.002-.11c.007-.62.014-1.24-.386-1.828-.016-.02-.032-.042.013-.073.043-.03.06-.008.073.013zm-.79 1.017-.012.12q-.004.06-.01.12c-.002.026-.004.052-.056.047s-.05-.03-.048-.057q.006-.06.01-.12t.012-.12c.002-.025.005-.052.057-.047s.05.03.047.057m-.22 1.379q.12.393.187.806.045.28.06.57a1 1 0 0 1 .07-.1q.131-.16.334-.278c.023-.014.046-.026.073.02.026.044.004.058-.02.07a1 1 0 0 0-.303.254.7.7 0 0 0-.147.322c-.01.052-.104.043-.104-.01a5 5 0 0 0-.065-.83 6 6 0 0 0-.183-.793c-.007-.026-.016-.05.034-.064s.057.01.064.034zm1.1.493a3.6 3.6 0 0 1 .064 1.19c-.003.027-.008.053-.06.046s-.047-.033-.045-.06q.03-.265.018-.556a3.6 3.6 0 0 0-.08-.597c-.005-.027-.012-.05.04-.063.05-.012.057.014.06.04zm.943-.175c.035.194.054.384.045.566a1.5 1.5 0 0 1-.12.53 1.2 1.2 0 0 0-.037.584c.034.2.11.398.2.6.012.024.022.047-.026.07-.047.02-.06-.004-.07-.027a2.5 2.5 0 0 1-.207-.624 1.3 1.3 0 0 1 .04-.636l.003-.005a1.4 1.4 0 0 0 .11-.496 2.3 2.3 0 0 0-.044-.543c-.005-.025-.01-.05.043-.058.05-.01.055.016.06.042zm.455-1.564q-.036.147-.074.296-.035.146-.073.296c-.004.026-.01.05-.06.038s-.046-.038-.04-.064l.075-.296q.034-.146.073-.296c.007-.026.012-.05.064-.038.05.012.045.038.038.064zm-.468-2.598c.03.09.055.18.084.27.007.027.014.05-.036.064-.05.017-.057-.01-.064-.033q-.04-.135-.083-.27c-.008-.025-.015-.05.034-.063.05-.014.057.01.064.033zm.24-1.974c.002.123.002.247-.007.775a.77.77 0 0 0-.235.383 1.4 1.4 0 0 0-.007.585c.006.026.01.052-.04.062-.054.01-.058-.017-.063-.043a1.4 1.4 0 0 1 .01-.63.86.86 0 0 1 .265-.432l-.02-.33q-.005-.184-.006-.367c0-.026 0-.052.052-.052s.052.026.052.052zm-1.96-.686c.303.198.564.418.744.68.183.262.287.563.275.92a.053.053 0 0 1-.074.044q-.257-.11-.515-.22c.115.736.087 1.324-.074 1.774-.17.477-.486.8-.937.986a.052.052 0 0 1-.07-.064q.13-.42.162-.84c.02-.278.01-.558-.038-.835-.005-.026-.01-.053.043-.06.052-.01.057.017.06.043q.07.431.037.863c-.02.252-.062.5-.133.754a1.5 1.5 0 0 0 .776-.88c.16-.452.185-1.054.057-1.817-.007-.04.036-.073.07-.057l.53.228c-.005-.3-.1-.555-.256-.78-.173-.25-.422-.46-.716-.652-.02-.014-.042-.028-.013-.073.028-.043.05-.028.07-.014zm5.13-1.01-.04.1q-.023.052-.042.103c-.01.024-.02.047-.066.028-.048-.018-.038-.04-.03-.065.016-.033.03-.07.044-.102.014-.033.026-.07.04-.102.01-.022.02-.046.067-.027.047.02.038.042.028.066zm-1.205-.027q.149.061.246.16a.8.8 0 0 1 .16.224c.012.024.024.047-.02.07-.05.022-.06 0-.07-.023a.8.8 0 0 0-.14-.196.6.6 0 0 0-.213-.138c-.024-.01-.047-.02-.03-.066.02-.048.044-.038.068-.03zm-1.792.514q.195.217.26.505c.046.187.053.396.03.62-.003.025-.005.05-.058.046-.052-.005-.05-.03-.045-.057.022-.212.017-.41-.026-.584a1.03 1.03 0 0 0-.237-.458c-.016-.018-.035-.037.005-.073.038-.036.057-.014.073.005zm-6.055.583-.022.204-.02.204c0 .026-.003.052-.055.047s-.05-.03-.044-.056l.02-.205.02-.204c.002-.025.005-.05.057-.046s.05.03.047.056zm1.122-.592q.043.146.09.29l.025.09c.007.025.014.05-.036.063-.05.015-.058-.008-.065-.034l-.026-.088-.088-.292c-.007-.023-.015-.05.035-.064s.057.01.064.036zm2.305 1.547q.019.065.02.126a1 1 0 0 1 0 .127c0 .026-.004.052-.056.047s-.05-.03-.048-.057a1 1 0 0 0 0-.11.6.6 0 0 0-.02-.108c-.006-.027-.013-.05.036-.065.05-.014.057.012.064.038zm.795-1.753q.075.076.094.156a.23.23 0 0 1-.024.168c-.012.024-.026.048-.07.022-.046-.024-.034-.048-.023-.07a.14.14 0 0 0 .015-.1.25.25 0 0 0-.067-.108c-.02-.02-.035-.035 0-.073.036-.036.055-.02.074 0zm-5.5.278q0 .184.06.35t.194.313c.12.137.182.272.216.41.033.135.035.267.042.398 0 .027.003.053-.05.055-.052.003-.052-.023-.054-.05-.005-.127-.01-.255-.038-.38a.86.86 0 0 0-.192-.366 1.1 1.1 0 0 1-.216-.347 1.1 1.1 0 0 1-.066-.39c0-.025 0-.05.052-.05s.052.025.052.05zm2.226 1.497c.123.23.192.455.218.682.028.225.014.454-.026.694-.045.277.014.547.166.8.14.238.36.463.644.672a2.9 2.9 0 0 1-.128-.9c.015-.34.12-.67.358-.98.102-.133.17-.27.218-.41.05-.14.076-.282.095-.42.003-.025.008-.05.058-.044.052.004.047.03.045.057-.02.145-.047.292-.097.44a1.5 1.5 0 0 1-.235.438 1.6 1.6 0 0 0-.335.922c-.015.324.056.66.165 1.007.015.045-.04.083-.078.06-.358-.243-.63-.508-.798-.79a1.26 1.26 0 0 1-.178-.87c.038-.23.05-.45.024-.666a1.8 1.8 0 0 0-.207-.643c-.012-.022-.026-.045.022-.07.045-.025.06-.002.07.022zm-.894 1.367c0 .247-.068.493-.192.74a3.4 3.4 0 0 1-.377.578q.12-.044.237-.1a2.2 2.2 0 0 0 .7-.497q.145-.149.294-.353c.014-.022.03-.043.073-.012s.026.052.012.073a4 4 0 0 1-.305.365 2.5 2.5 0 0 1-.27.242l.07.34c.004.027.01.05-.04.063s-.058-.014-.063-.04l-.038-.183a2 2 0 0 0-.024-.114 2.2 2.2 0 0 1-.37.21c-.14.068-.28.117-.42.17-.046.016-.09-.045-.058-.083.2-.237.367-.472.484-.707.116-.232.182-.462.182-.692 0-.026 0-.052.052-.052s.052.026.052.052zm-1.088-.087v.234c0 .027 0 .053-.052.053s-.052-.026-.052-.052v-.233c0-.026 0-.053.052-.053s.052.027.052.053z"}),(0,s.jsx)("path",{d:"M363.052 113.675c.142.348.18.673.126.976a1.85 1.85 0 0 1-.413.852l-.007.007a1.9 1.9 0 0 0-.474.63q-.116.242-.182.516c.056-.078.113-.152.182-.22.135-.138.296-.244.51-.304q.328-.179.616-.403.291-.226.54-.505c.017-.02.036-.038.074-.005s.02.052.004.073q-.255.287-.554.517t-.635.415l-.013.005a1 1 0 0 0-.47.277 2.3 2.3 0 0 0-.322.443c-.026.043-.104.014-.095-.036.053-.293.13-.57.25-.822.118-.25.28-.474.497-.66.204-.252.34-.518.39-.802.048-.285.013-.59-.122-.92-.01-.023-.02-.047.028-.07.048-.017.06.006.07.03zm2.211 3.545c-.033.095.036.183.175.363l.095.123c.188.25.256.53.26.827.006.29-.05.59-.106.882-.01.05-.094.047-.102-.003a1.8 1.8 0 0 0-.386-.86 3.4 3.4 0 0 0-.79-.692c-.02-.014-.043-.028-.014-.073.028-.043.05-.03.07-.015.323.216.603.45.814.716.16.202.282.42.353.66a3.4 3.4 0 0 0 .06-.612 1.28 1.28 0 0 0-.24-.766q-.054-.073-.093-.12c-.163-.212-.24-.314-.192-.46.01-.024.017-.05.067-.034.05.017.04.043.033.067zm.943-.06c.038.04.08.08.116.122.038.04.08.08.117.123.018.02.034.038-.004.074-.038.034-.057.015-.073-.004q-.058-.06-.116-.123c-.038-.04-.08-.08-.116-.123-.016-.02-.035-.038.003-.074s.057-.016.073.003zm1.157.37q-.11.348-.216.695-.108.347-.218.694c-.008.026-.015.05-.065.033-.05-.015-.042-.04-.033-.064.074-.234.145-.463.216-.696q.108-.347.218-.694c.007-.026.014-.05.064-.036.05.017.042.04.033.067zm.654 3.88a.24.24 0 0 0 0 .173c.01.024.02.05-.03.067-.048.02-.058-.005-.067-.03a.35.35 0 0 1 0-.25c.01-.026.02-.05.066-.03.05.018.04.042.03.066zm-.687-1.14c-.03.12-.064.245-.095.365q-.045.184-.095.368c-.007.026-.014.05-.064.038-.05-.014-.045-.037-.038-.063q.047-.184.095-.368.047-.184.095-.366c.007-.026.012-.05.064-.038.05.012.045.038.038.064m-.99-.004.09.09c.018.02.035.035 0 .073-.04.035-.058.018-.074 0l-.09-.09c-.02-.02-.036-.036 0-.074.038-.036.056-.02.073 0zm-1.165-.556-.073.205q-.035.104-.074.206c-.01.025-.016.05-.066.032-.047-.017-.04-.043-.03-.066a5 5 0 0 1 .073-.207 5 5 0 0 1 .073-.207c.01-.026.017-.05.067-.033s.04.043.033.066zm-1.665 1.76a.7.7 0 0 0-.138.222 1.3 1.3 0 0 0-.062.252c-.005.026-.01.052-.06.042s-.046-.033-.042-.06c.017-.09.036-.18.07-.27a.8.8 0 0 1 .155-.255c.017-.018.036-.037.074 0 .038.034.02.053.002.072zm-4.77 4.67a.7.7 0 0 1-.1.16 1 1 0 0 1-.16.154c-.02.016-.04.033-.073-.01-.033-.04-.012-.057.007-.073a.8.8 0 0 0 .23-.272c.012-.023.02-.047.068-.028.048.02.036.045.026.07zm.747-.395a.35.35 0 0 1-.1.135.6.6 0 0 1-.163.093c-.026.01-.05.02-.066-.03-.02-.05.007-.06.03-.068a.4.4 0 0 0 .13-.073.3.3 0 0 0 .075-.097c.01-.024.02-.048.068-.026.05.02.037.044.027.067zm.991-.605a.5.5 0 0 1-.062.086.5.5 0 0 1-.106.085c-.022.016-.045.03-.07-.015-.027-.045-.006-.06.018-.07a.4.4 0 0 0 .135-.134c.014-.02.026-.044.07-.016.046.026.032.048.02.07zm1.492-3.877q-.075.21-.094.415a1.4 1.4 0 0 0 .024.41c.005.026.012.05-.038.062s-.057-.014-.06-.04a1.4 1.4 0 0 1-.028-.444q.023-.221.098-.438c.01-.026.016-.05.066-.033.05.016.04.042.033.066zm1.013-10.316a.9.9 0 0 1-.09.343 1.4 1.4 0 0 1-.235.337c-.016.02-.035.038-.073.002s-.02-.055-.002-.074q.142-.158.218-.31a.8.8 0 0 0 .08-.304c0-.026 0-.052.053-.05.053.003.05.03.05.055zm-1.036-.915c.09.156.145.315.176.474q.044.235.028.472c0 .026 0 .052-.053.05-.052-.003-.05-.03-.05-.055a1.8 1.8 0 0 0-.026-.446 1.5 1.5 0 0 0-.163-.443c-.01-.02-.026-.045.02-.07.044-.027.06-.003.07.018zm-1.372 1.702a1.5 1.5 0 0 1-.405-.417.65.65 0 0 1-.095-.437c.005-.026.01-.05.06-.042.052.01.047.033.042.06-.02.122.01.243.08.366q.115.191.377.387c.022.015.043.032.012.074-.03.043-.052.026-.073.012zm1.519 2.581v.225c0 .026 0 .052-.052.052s-.052-.026-.052-.052v-.225c0-.026 0-.053.052-.053s.052.027.052.053m-1.941-1.955c.306.288.49.637.586 1.023.06.24.086.493.09.76.004 0 .008-.004.013-.004q.207-.072.318-.368.118-.315.126-.865l.007-.026a1.9 1.9 0 0 0 .22-.535 3.5 3.5 0 0 0 .084-.543c.004-.045.066-.064.095-.026.177.252.334.512.455.792.12.28.2.576.232.898 0 .026.004.052-.05.057-.05.005-.053-.02-.055-.047a2.9 2.9 0 0 0-.223-.865 4 4 0 0 0-.363-.656 3 3 0 0 1-.072.417 2 2 0 0 1-.225.553q-.01.562-.13.887-.13.344-.382.43c-.016.003-.03.008-.044 0q-.004.195-.02.392c0 .026-.004.052-.056.048-.052-.005-.05-.03-.047-.057.035-.432.026-.842-.07-1.21a2 2 0 0 0-.556-.975c-.02-.017-.038-.036-.002-.074s.054-.02.073-.002zm1.137 4.865q-.03.204-.063.41-.031.203-.064.408c-.002.026-.007.052-.06.042-.05-.007-.047-.033-.042-.06l.065-.407q.031-.204.064-.41c.004-.026.006-.05.058-.042.05.01.048.033.043.06zm-2.184.927.057.31c.004.026.01.05-.043.06-.05.01-.057-.017-.062-.043l-.056-.312c-.005-.026-.01-.05.042-.06.05-.01.057.018.06.044zm1.889-2.508a2.3 2.3 0 0 1-.16.597q-.122.29-.345.558l-.002.003a1.13 1.13 0 0 0-.306.636 1.8 1.8 0 0 0 .064.685c.007.027.012.05-.038.065-.05.012-.057-.012-.064-.038a1.9 1.9 0 0 1-.066-.723c.03-.24.13-.472.33-.692a2.1 2.1 0 0 0 .33-.53 2.1 2.1 0 0 0 .152-.57c.003-.026.008-.052.057-.045.052.007.048.033.045.06zm-.493-.734c.035.2.005.395-.078.594a2.2 2.2 0 0 1-.387.58l-.004.003a1.8 1.8 0 0 0-.403.48c-.1.172-.173.35-.247.53-.01.024-.02.047-.07.028-.046-.02-.037-.042-.027-.066.073-.183.15-.366.254-.544.104-.177.237-.348.42-.505.163-.18.288-.363.366-.546a.9.9 0 0 0 .07-.533c-.003-.025-.008-.05.044-.06.05-.01.057.016.062.042zm-2.412 1.144c.058.398-.003.74-.153 1.038-.147.3-.38.555-.668.785-.02.016-.04.033-.074-.01-.034-.04-.012-.057.01-.073.274-.22.5-.467.64-.75.14-.28.198-.6.144-.978-.003-.026-.008-.052.045-.06.052-.006.054.02.06.046zm-3.077 1.704q.046.093.088.185.05.098.095.197c.012.023.022.047-.023.068-.048.022-.06 0-.07-.023q-.046-.098-.094-.197c-.028-.062-.06-.123-.088-.182-.01-.024-.02-.048.024-.07.048-.02.06 0 .07.025zm-1.221.024a2.7 2.7 0 0 0 .074.69c.06.222.154.438.31.644l.005.01c.08.158.124.317.155.478q.031.179.043.356c.15-.16.263-.32.346-.488a1.4 1.4 0 0 0 .15-.605c0-.026 0-.052.05-.05.053 0 .053.027.05.053a1.55 1.55 0 0 1-.158.647q-.152.311-.448.6c-.03.03-.085.01-.087-.036a3 3 0 0 0-.047-.457 1.8 1.8 0 0 0-.142-.448 1.9 1.9 0 0 1-.324-.677 2.7 2.7 0 0 1-.078-.718c0-.027 0-.053.052-.053s.052.026.052.053zm.166 4.168a2.6 2.6 0 0 1 .18-.766c.01-.022.02-.046.067-.027.05.02.038.042.03.066a2.5 2.5 0 0 0-.173.732c-.002.027-.002.053-.056.048-.053-.003-.05-.03-.048-.055zm-.142 1.162q.031-.231.064-.462c.002-.026.007-.052.06-.045.05.007.047.033.044.06q-.03.23-.064.46c-.002.027-.007.053-.06.046-.05-.006-.046-.032-.044-.058zm-.799 1.946q.115-.115.218-.266.105-.154.204-.33c.01-.023.025-.044.07-.02.045.026.033.047.02.07a4 4 0 0 1-.21.34c-.073.104-.15.2-.232.28-.02.018-.038.035-.073 0-.036-.036-.017-.055 0-.074zm-1.154-6.53v.192c0 .026 0 .053-.052.053-.05 0-.05-.027-.05-.053v-.192c0-.026 0-.052.05-.052.053 0 .053.026.053.052zm-1.953 4.499-.01-.142-.01-.145c0-.026 0-.052.05-.055.053-.002.056.022.056.05l.01.142q0 .072.01.143c0 .026 0 .052-.05.054-.053.002-.056-.02-.056-.05zm4.904-8.001c-.1.343-.178.7-.17 1.007.004.296.087.543.3.68.25.16.358.403.462.638q.01.023.02.043c.03-.116.056-.24.068-.362.017-.15.017-.298-.005-.43-.006-.027-.01-.053.042-.062.05-.01.057.016.06.042.023.142.023.3.006.46-.02.178-.06.358-.11.514-.015.043-.077.048-.096.007l-.078-.17c-.097-.22-.2-.447-.424-.592-.247-.158-.344-.436-.35-.765-.006-.318.072-.685.174-1.038.007-.026.014-.05.064-.036.05.013.043.037.036.063zm-.344-1.311a2.5 2.5 0 0 1-.02.763 4 4 0 0 1-.233.76 2.4 2.4 0 0 0-.166 1c.017.34.105.676.26.996.013.024.025.048-.022.07-.048.023-.06 0-.07-.025a2.54 2.54 0 0 1-.1-2.078 3.8 3.8 0 0 0 .227-.743c.045-.238.054-.475.02-.73-.002-.027-.006-.053.046-.06.05-.007.055.02.06.045zm-2.277 3.242a.8.8 0 0 0-.06.47q.046.239.195.48c.014.022.026.046-.017.072-.044.025-.058.003-.07-.02a1.5 1.5 0 0 1-.206-.517.88.88 0 0 1 .066-.53c.012-.022.02-.046.07-.025.046.022.034.045.025.07zm-.993-.355c.016.092.02.2.01.31a.9.9 0 0 1-.07.27v.003a.4.4 0 0 0-.038.263c.02.092.067.185.13.28.015.02.03.042-.014.073-.042.032-.056.01-.073-.013a.9.9 0 0 1-.147-.318.48.48 0 0 1 .047-.333.8.8 0 0 0 .062-.234c.01-.098.005-.197-.01-.282-.004-.025-.01-.052.043-.06.052-.008.057.018.06.044zm5.806-8.602a2.32 2.32 0 0 0 .313 1.468c.013.02.025.045-.02.07-.045.027-.057.003-.07-.018a2.6 2.6 0 0 1-.288-.723 2.3 2.3 0 0 1-.038-.806c.002-.025.005-.05.057-.044.053.005.05.03.046.057zm-.728.705c.136.24.252.497.34.78.087.282.146.592.168.936.002.027.002.053-.05.055s-.052-.024-.055-.05a3.8 3.8 0 0 0-.492-1.668c-.01-.024-.026-.045.02-.07.044-.027.06-.004.07.018zm-3.608.111c-.347.496-.5.898-.527 1.247-.03.346.064.635.2.903l.004.007q.14.411.13.822a2.6 2.6 0 0 1-.16.82c-.008.026-.015.05-.065.03-.05-.015-.04-.042-.03-.065q.142-.394.153-.787a2.3 2.3 0 0 0-.123-.782 1.7 1.7 0 0 1-.21-.954c.03-.365.186-.787.546-1.3.015-.02.03-.042.074-.013.042.03.028.052.012.073zm3.364-1.426c.03.15.017.305-.052.457q-.09.21-.327.398a.8.8 0 0 0-.3.486c-.044.202-.034.437.016.7.005.026.01.052-.042.062-.05.01-.057-.017-.062-.043-.05-.278-.06-.525-.01-.74a.9.9 0 0 1 .335-.546 1 1 0 0 0 .297-.357c.06-.13.07-.266.045-.394-.004-.026-.01-.05.04-.06s.058.015.062.04zm-3.562.305q.103.329.007.652-.093.32-.385.63l-.004.005a1.2 1.2 0 0 0-.37.576 2.9 2.9 0 0 0-.115.737c-.003.026-.003.052-.055.05-.052-.003-.05-.03-.05-.055a3 3 0 0 1 .12-.763c.075-.237.198-.45.4-.62q.272-.293.36-.59a1 1 0 0 0-.007-.59c-.007-.027-.017-.05.033-.065s.057.01.064.036zm2.038.107a.8.8 0 0 0 0 .232q.017.111.088.213c.014.022.03.043-.014.074-.043.03-.057.01-.074-.013a.6.6 0 0 1-.104-.254.8.8 0 0 1 0-.263c.002-.026.007-.052.06-.045.052.007.047.033.044.06zm-.097-.536a.85.85 0 0 0-.43.4q-.15.282-.18.726.02.021.02.036.149.204.21.476c.048.197.065.42.058.66 0 .027 0 .053-.054.05-.052 0-.05-.028-.05-.05a2.4 2.4 0 0 0-.054-.636q-.056-.24-.18-.42c-.386.36-.576.758-.588 1.192-.014.453.164.946.505 1.472.013.02.028.045-.015.073-.043.03-.057.005-.07-.016-.354-.546-.537-1.058-.523-1.532.015-.467.218-.894.638-1.278v-.002q.024-.486.192-.8a.96.96 0 0 1 .483-.447c.024-.008.048-.018.07.03.018.047-.006.06-.03.07zm-.578-.749c-.005.043-.01.076-.012.112-.026.245-.052.522-.24.69a.8.8 0 0 0-.217.318 1.6 1.6 0 0 0-.088.39c-.002.025-.005.05-.057.044-.05-.005-.046-.03-.044-.06a1.7 1.7 0 0 1 .095-.414.9.9 0 0 1 .245-.358c.156-.14.185-.398.206-.623l.013-.114c.002-.026.007-.052.06-.045.05.007.047.033.044.06zm5.662 6.041q.093.192.144.396.053.203.044.42c0 .026-.002.052-.054.05-.053-.003-.05-.03-.05-.055a1.4 1.4 0 0 0-.038-.392c-.03-.126-.08-.25-.14-.375-.012-.023-.02-.047.026-.068.048-.022.057 0 .07.023zm.016 1.858q.068.322.01.65c-.038.218-.12.44-.237.666l-.24.562c-.01.023-.02.047-.068.028-.048-.02-.038-.045-.03-.07q.122-.28.24-.563l.003-.006a2.2 2.2 0 0 0 .23-.635 1.6 1.6 0 0 0-.008-.612c-.005-.026-.01-.052.04-.062.05-.012.057.014.06.04zm-1.18-1.73q.509.565.664 1.195.159.63-.033 1.32c-.007.027-.015.05-.064.037-.05-.015-.043-.038-.036-.064q.185-.666.033-1.268-.152-.605-.642-1.152c-.017-.02-.033-.038.005-.074s.057-.015.073.004zm-.103 2.086a5.3 5.3 0 0 1-.867 1.322 2.5 2.5 0 0 0-.54.94c-.014.046-.104.03-.1-.02a1.5 1.5 0 0 0-.05-.47 1.9 1.9 0 0 0-.21-.47c-.19-.278-.27-.56-.256-.84q.027-.42.327-.834c.114-.194.195-.39.252-.585a2.4 2.4 0 0 0 .092-.588c0-.026.002-.052.055-.05.052.002.05.028.05.054a2.6 2.6 0 0 1-.36 1.224l-.003.005c-.188.262-.294.523-.308.78q-.023.392.24.78v.003q.15.248.222.5.032.119.047.235a2.7 2.7 0 0 1 .47-.728 5 5 0 0 0 .496-.65q.208-.326.355-.648c.013-.024.023-.048.07-.026.047.02.036.045.026.068zm-3.094-.995q-.01.387.07.727.076.338.255.63c.015.022.027.046-.016.072-.045.028-.057.004-.07-.017a2.3 2.3 0 0 1-.27-.66 3 3 0 0 1-.07-.753c0-.026.003-.053.052-.05.052.002.052.028.05.052zm-1.761.943v.302c0 .027 0 .053-.052.053s-.052-.026-.052-.052v-.303c0-.026 0-.052.053-.052.052 0 .052.026.052.052zm.583-1.61q.007.267-.073.517a1.4 1.4 0 0 1-.273.474c-.016.02-.033.042-.073.006-.042-.033-.023-.052-.006-.073q.176-.21.25-.44a1.4 1.4 0 0 0 .07-.482c0-.025-.002-.052.05-.052s.052.027.052.05zm-1.585 3.124c-.285-.708-.353-1.27-.282-1.727.072-.463.285-.813.565-1.1.187-.192.35-.382.457-.62.107-.236.157-.52.12-.904-.004-.026-.006-.052.046-.057s.052.02.057.047c.038.403-.014.704-.128.958-.11.252-.282.45-.476.65a1.87 1.87 0 0 0-.535 1.043c-.07.44 0 .986.277 1.676.01.022.02.046-.028.065s-.06-.005-.07-.028zm-.915-1.164a.7.7 0 0 0-.045.344q.018.171.125.346c.015.022.03.045-.016.07-.045.03-.057.006-.07-.015a.94.94 0 0 1-.14-.39.8.8 0 0 1 .05-.39c.01-.024.02-.047.067-.03.05.018.037.042.03.066zm4.498-3.194c.187.263.296.535.318.82.02.284-.043.578-.204.884-.012.02-.024.045-.07.02-.046-.022-.032-.046-.02-.068q.224-.428.192-.827a1.5 1.5 0 0 0-.3-.768c-.015-.02-.03-.042.013-.073s.057-.01.073.012zm1.406-1.1a2.4 2.4 0 0 1 .07 1.67c-.014.048-.1.04-.1-.013a1.8 1.8 0 0 0-.162-.702 1.5 1.5 0 0 0-.43-.534c-.018-.017-.04-.034-.007-.074.034-.04.053-.024.074-.007q.3.24.457.57.097.204.14.44.047-.26.038-.52a2.3 2.3 0 0 0-.175-.79c-.01-.025-.02-.048.028-.07.048-.02.06.005.07.03zm.834-1.14q.276.275.396.723.115.441.092 1.035v.002a2 2 0 0 0-.007.484.95.95 0 0 0 .137.41c.015.022.03.046-.014.074-.045.03-.06.005-.073-.017a1.06 1.06 0 0 1-.154-.455 2.3 2.3 0 0 1 .007-.507v.003a3.5 3.5 0 0 0-.088-1.005 1.5 1.5 0 0 0-.367-.676c-.02-.02-.038-.035 0-.073.035-.038.054-.02.073 0zm-2.214-.22c-.12.147-.194.32-.23.512-.035.194-.03.407.005.64.005.026.01.05-.043.06-.05.008-.054-.018-.06-.044a2 2 0 0 1-.004-.675q.055-.315.252-.56c.016-.02.033-.04.073-.008.04.034.024.052.007.074zm-4.339 2.922a2 2 0 0 1-.346 1.07 2.5 2.5 0 0 1-.8.705c-.023.014-.046.026-.072-.02-.027-.044-.005-.056.018-.07.31-.182.576-.4.768-.675.193-.273.312-.605.33-1.015 0-.026.003-.052.055-.05.052.003.05.03.05.055zm-.113-1.493q.036.24-.02.474a2.2 2.2 0 0 1-.175.466c-.012.023-.024.045-.07.023-.047-.024-.035-.048-.023-.07.076-.15.135-.298.168-.442.034-.145.043-.287.022-.437-.003-.025-.007-.05.045-.058.052-.007.057.02.06.045zm2.94-.215v.146l.05.763.005.068c.002.026.002.052-.048.057h-.016q-.007.015-.042.014c-.052 0-.052-.027-.052-.053v-.844l-.014-.206c-.003-.026-.005-.052.047-.057.05-.002.054.022.056.048v.016c.012.01.012.026.012.043zm.71-1.31c-.21.252-.293.496-.297.736s.068.478.177.715c.247.397.327.79.3 1.186-.022.394-.153.785-.326 1.176-.012.024-.02.047-.07.026-.046-.02-.034-.045-.025-.07.17-.378.293-.76.317-1.14a1.85 1.85 0 0 0-.287-1.127l-.002-.004c-.116-.25-.195-.504-.19-.765.005-.262.097-.528.32-.8.017-.02.033-.04.074-.007s.023.052.007.073zm-4.56-8.128c.345-.263.68-.412 1.035-.45.35-.036.713.04 1.106.225q.197-.003.392-.005.2-.004.4-.005c.027 0 .053 0 .053.052s-.026.052-.052.052q-.202.004-.4.004-.18.003-.36.005l-.008.008c-.422.372-.782.576-1.102.642a1.06 1.06 0 0 1-.872-.19c-.025-.018-.05-.037-.016-.09.036-.05.064-.035.09-.016a.96.96 0 0 0 .773.168c.28-.06.597-.232.97-.547-.342-.15-.655-.21-.956-.178-.326.033-.643.176-.968.424-.026.02-.052.04-.09-.01-.038-.053-.014-.072.012-.09z"}),(0,s.jsx)("path",{d:"M351.64 100.993a.26.26 0 0 1 .26.26.26.26 0 0 1-.26.26.26.26 0 0 1-.26-.26.26.26 0 0 1 .26-.26m1.794 1.577c.188-.098.332-.203.453-.31.12-.106.213-.215.294-.324.015-.02.032-.043.074-.012.043.03.027.052.012.074a2.3 2.3 0 0 1-.308.343c-.125.113-.277.22-.474.32-.023.013-.047.025-.07-.02-.022-.045 0-.06.023-.07zm3.7-1.532a.5.5 0 0 1 .29.002.8.8 0 0 1 .28.154c.018.017.04.033.006.074-.033.04-.052.023-.074.007a.7.7 0 0 0-.24-.133.46.46 0 0 0-.236-.002c-.026.007-.05.014-.064-.038-.014-.05.012-.057.036-.064zm-2.116.085a.85.85 0 0 1 .38-.426c.172-.09.387-.128.65-.105.027.003.053.005.048.057-.005.05-.03.05-.057.047q-.367-.032-.593.092a.73.73 0 0 0-.335.376c-.01.024-.02.047-.068.026-.048-.02-.038-.045-.026-.07zm.242.347a.42.42 0 0 1 .115-.24.56.56 0 0 1 .268-.147c.026-.007.05-.014.064.035.014.05-.012.057-.035.064a.45.45 0 0 0-.218.12.35.35 0 0 0-.088.184c-.005.026-.01.05-.06.042-.05-.007-.047-.033-.042-.06zm-3.522 1.17c-.057.09-.11.182-.147.282a.8.8 0 0 0-.047.332c.003.026.005.052-.047.054s-.055-.02-.057-.047a.9.9 0 0 1 .05-.374c.04-.11.096-.208.157-.303.015-.02.03-.045.072-.017.044.03.03.05.015.072zm1.009.453v.156c0 .025 0 .05-.052.05s-.052-.025-.052-.05v-.157c0-.026 0-.053.052-.053s.052.027.052.053zm-.657-1.128a1 1 0 0 0 .31.06q.159-.001.316-.04c.026-.004.05-.01.062.04s-.014.056-.038.063a1.4 1.4 0 0 1-.34.04 1 1 0 0 1-.347-.066c-.026-.01-.05-.02-.03-.067.018-.05.042-.038.065-.03zm.65-1.895a.32.32 0 0 0-.21.065.38.38 0 0 0-.13.19c-.006.026-.013.05-.063.035s-.043-.04-.035-.064a.5.5 0 0 1 .168-.242.43.43 0 0 1 .272-.085c.026 0 .053 0 .053.05 0 .053-.027.053-.053.053zm-1.05.108a.8.8 0 0 0-.187.11.25.25 0 0 0-.083.112c-.01.026-.017.05-.066.033-.05-.016-.04-.04-.034-.066.02-.06.06-.11.117-.16a.9.9 0 0 1 .215-.127c.024-.01.048-.02.067.03.02.046-.004.058-.03.068zm-.647.018a.8.8 0 0 0-.163.147.7.7 0 0 0-.107.183c-.01.024-.017.05-.066.03-.048-.016-.04-.042-.03-.066a.7.7 0 0 1 .122-.213 1 1 0 0 1 .184-.168c.02-.015.043-.03.073.013s.01.057-.014.073zm-.833.666a1.7 1.7 0 0 0-.378.392c-.014.02-.03.042-.073.01-.044-.03-.028-.05-.013-.072q.09-.125.19-.228.1-.102.21-.184c.022-.017.043-.03.074.01.032.042.01.056-.01.072m.084.918c-.05.054-.1.11-.15.16l-.15.162c-.017.02-.036.038-.074.002s-.022-.054-.003-.073l.15-.16.15-.16c.018-.02.037-.04.075-.004s.02.055.002.074zm-.841.244v.322c0 .026 0 .052-.052.052-.05 0-.05-.026-.05-.052v-.322c0-.026 0-.052.05-.052.053 0 .053.026.053.052zm1.077 1.416q-.023.263-.05.53 0 .024-.003.05c-.003.025-.005.05-.057.047-.052-.005-.05-.03-.048-.057q.003-.025.005-.05l.05-.528c.002-.027.005-.053.057-.048s.05.03.047.057zm-.632-.468q-.004.172-.01.343c0 .026-.004.053-.056.05s-.05-.028-.05-.052q.005-.173.012-.346c0-.026.002-.052.055-.05.05.003.048.03.048.055zm-.588-4.489a.73.73 0 0 1 .467.467c.01.026.017.05-.033.066-.05.017-.057-.01-.066-.033a.65.65 0 0 0-.156-.254.7.7 0 0 0-.25-.152c-.023-.01-.047-.02-.03-.067.02-.048.043-.04.066-.03zm5.162 6.731c.1.225.155.45.157.673q.007.338-.136.675c-.01.024-.02.048-.067.03-.047-.02-.037-.046-.028-.07a1.55 1.55 0 0 0-.022-1.266c-.012-.023-.022-.047.026-.068.047-.022.06.002.068.026zm-1.682 1.946c.073-.254.18-.474.303-.676.123-.2.263-.384.403-.564.16-.21.268-.436.325-.668a1.8 1.8 0 0 0 .02-.76c-.005-.025-.01-.048.042-.058.05-.01.057.017.06.043.047.26.045.533-.02.8-.06.247-.17.49-.343.71a6 6 0 0 0-.397.554c-.118.195-.223.41-.29.65-.008.026-.016.05-.065.036-.05-.014-.043-.038-.036-.064zm-2.164-.572a.7.7 0 0 1 .16-.25.9.9 0 0 1 .262-.186c.024-.012.047-.02.07.024.02.047 0 .06-.027.07a.8.8 0 0 0-.234.162.6.6 0 0 0-.135.216c-.01.024-.018.05-.066.03-.047-.016-.04-.042-.03-.066m-.42-.151q.118-.159.254-.287.142-.133.325-.21c.023-.01.047-.02.066.027.02.05-.004.06-.03.067a1 1 0 0 0-.29.19 2 2 0 0 0-.243.274c-.017.022-.03.043-.073.01-.043-.03-.026-.052-.01-.074zm2.244-2.223q.134.06.257.06a.8.8 0 0 0 .242-.03c.025-.007.048-.014.063.036s-.012.057-.036.064a.8.8 0 0 1-.57-.036c-.022-.01-.046-.02-.025-.068s.045-.036.07-.026zm-1.118-.144q.039-.047.078-.09l.01-.013c.017-.02.035-.038.073-.005.038.036.022.055.005.074l-.01.012q-.036.045-.08.09c-.017.02-.033.038-.073.005-.038-.034-.022-.055-.005-.074zm24.136 6.962q.075.082.13.173.054.093.088.194c.01.026.017.05-.033.063-.05.017-.057-.01-.066-.033a.8.8 0 0 0-.078-.173.8.8 0 0 0-.118-.154c-.016-.02-.035-.038.003-.073.038-.036.057-.017.073.002zm-26.795 12.575c.114.105.232.2.363.266a.95.95 0 0 0 .43.104c.027 0 .053 0 .053.052 0 .05-.027.05-.053.05-.178 0-.334-.044-.48-.115-.14-.07-.267-.17-.385-.28-.02-.016-.038-.035-.002-.073s.054-.02.073-.002z"}),(0,s.jsxs)("g",{fill:"red",children:[(0,s.jsx)("path",{d:"M368.9 99.6a8.2 8.2 0 0 0 1.655-.08c-.52.378-1.187.63-1.905.75a.77.77 0 0 0 .27-.34.43.43 0 0 0-.02-.33m-1.42-.148c.385.064.786.11 1.182.135.004.01.012.017.016.026q.097.132.055.256-.05.142-.27.296c-.04.028-.08.057-.024.135a5.6 5.6 0 0 1-1.215.022.2.2 0 0 0 .04-.033c.145-.153.238-.31.264-.473a.63.63 0 0 0-.05-.362zm-10.49-3.014c.668-.088 1.348-.11 2.04-.093a1 1 0 0 1 .5.406c.114.2.154.46.107.785-.007.047-.014.097.083.11s.104-.037.11-.084c.05-.37.003-.67-.132-.907a1 1 0 0 0-.256-.294q.093.002.185.01c.797.042 1.415.27 2.107.613l.017.02c.148.153.197.312.174.475-.026.173-.13.36-.296.552-.03.038-.064.074.01.138.075.064.108.026.14-.012.186-.22.31-.44.34-.652a.7.7 0 0 0-.035-.348c.583.29 1.175.566 1.75.87.013.007.025.01.037.02 0 .01.004.025.01.036a.48.48 0 0 1-.053.425q-.132.19-.476.32c-.045.016-.09.033-.056.125.033.09.08.074.125.057q.405-.153.568-.394a.63.63 0 0 0 .107-.453c.38.206.763.42 1.154.607v.002c.07.138.082.26.027.375q-.085.181-.4.338c-.043.022-.088.043-.045.13.042.09.087.067.13.046q.38-.189.49-.43a.54.54 0 0 0 .043-.346q.203.09.413.168a8 8 0 0 0 1.32.35.47.47 0 0 1 .11.377.74.74 0 0 1-.212.368c-.033.035-.066.068.002.137l.03.026c-1.48-.15-2.798-.86-4.177-1.393-.163-.064-.33-.126-.492-.19-.51-.192-1.024-.453-1.536-.66a.2.2 0 0 0-.066-.034q-.053-.019-.105-.033-.032-.014-.065-.027.004.004.01.008a8.5 8.5 0 0 0-1.418-.33 6.1 6.1 0 0 0-1.626-.018l-.09-.014c.05-.292.01-.548-.134-.77a1.25 1.25 0 0 0-.47-.415z"}),(0,s.jsx)("path",{d:"M354.565 97.09a8.7 8.7 0 0 1 2.074-.603c.32.128.534.285.655.47.116.182.145.395.104.642a4.2 4.2 0 0 0-1.84.225c-.156-.33-.367-.53-.614-.638a1.2 1.2 0 0 0-.38-.1zm7.458 3.772a9 9 0 0 0-.56-.334 6.9 6.9 0 0 0-3.037-.86q.013-.012.026-.024c.377-.384.46-.746.332-1.085-.1-.264-.33-.508-.647-.73.355-.018.684.004 1.054.056.523.073 1.198.25 1.814.497q.228.5.128.87c-.07.26-.263.474-.576.652-.042.024-.085.047-.038.133.048.085.09.06.133.035q.545-.305.67-.772.096-.36-.062-.812c.417.187.794.41 1.057.654.343.237.682.476 1.014.727.002.42-.122.66-.326.786-.215.13-.523.147-.874.112-.047-.005-.097-.01-.107.087v.005z"}),(0,s.jsx)("path",{d:"M364.052 102.39c-.616-.482-1.218-.985-1.865-1.42.358.03.678 0 .92-.143.234-.145.388-.396.414-.806.387.3.76.615 1.113.954q.264.252.538.498.002.002.003.01.064.225.045.39a.46.46 0 0 1-.11.263.55.55 0 0 1-.274.154q-.26.074-.675.028c-.046-.005-.094-.01-.106.073z"}),(0,s.jsx)("path",{d:"M366.178 103.79q-.319-.165-.614-.34c-.472-.28-.915-.6-1.348-.933q.398.031.668-.043a.75.75 0 0 0 .365-.21q.135-.15.16-.375a1 1 0 0 0-.002-.215c.424.363.87.7 1.35.993q.378.232.757.434-.003.024.002.052c.03.195-.078.318-.277.396-.233.092-.58.13-.974.154-.045.002-.088.005-.093.08z"}),(0,s.jsx)("path",{d:"M368.448 104.68a12 12 0 0 1-2.054-.782c.365-.026.687-.068.92-.16.262-.105.414-.266.404-.524a11 11 0 0 0 1.273.55c.077.168.082.305.01.42-.085.143-.272.262-.504.364-.045.02-.09.04-.05.128v.002z"}),(0,s.jsx)("path",{d:"M373.18 104.2c.06-.01.44-.11.243.035-1.394.912-3.162.91-4.828.48.26-.115.47-.255.576-.43a.57.57 0 0 0 .058-.443q.794.26 1.624.367a.38.38 0 0 1-.088.252c-.088.11-.237.216-.48.323-.046.02-.09.038-.05.128.037.09.082.07.127.05.276-.12.454-.25.558-.38a.55.55 0 0 0 .13-.353 9 9 0 0 0 2.133-.033zm-9.638 24.005c-.104.11-.19.23-.277.372-.405.135-.763.337-1.2.318 0 .282.093.405.375.407.538-.27.66-.32.707-.282.066.057-.076.444-.522.756-.068.043-.066.07-.026.14.376.59 1.364.38 1.895.24.38-.1 1.064-.55 1.254-.93.072-.172-.093-.4-.26-.585-.42.065-.563-.13-.497-.264-.443-.157-.936-.19-1.45-.17zm-15.152-4.775c-.307.25-.65.45-1.05.583-.153.05-.52.14-.556.33-.005.07.247.22.408.132.445-.427.668-.19.156.246-.04.084-.007.177.08.255.463.415 1.608.55 2.13.22.385-.24.587-.507.25-.874a2 2 0 0 1 .026-.246l-.637-.064-.39-.227-.416-.353zm9.974 3.47q-.058.007-.116.016c-.206.223.36.14.66.325.14.084.198.247.143.475-.276.66-1.824.447-2.338.175-.24-.126-.25-.27-.24-.476q.161 0 .325-.024c.185-.026.368-.08.548-.183.05-.028.102-.06.045-.158-.057-.103-.11-.075-.16-.046a1.3 1.3 0 0 1-.463.154 2.6 2.6 0 0 1-.486.016h-.04c-.09-.052-.158-.114-.12-.168.038-.052.187.005.215.014.24-.11.448-.182.707-.232q.051-.055.104-.11c.47.04.922.112 1.22.22zm-7.154-.406c-.096.057-.13.137-.198.287-.27.273-.528.437-.874.593-.287.13-.01.256.192.394.182.135.422-.16.57-.382.164-.246.33-.173.224.02-.12.21-.204.513-.216.672-.062.17.588.3.7.306.395.02.893-.367 1.203-.564.26-.264.22-.494.105-.814l.003-.02a2 2 0 0 1-.477-.05 3.4 3.4 0 0 1-.558-.184c-.024-.01-.047-.02-.028-.068.01-.03.026-.038.042-.036l-.682-.156zm2.77-26.378c.11-.005.218-.01.324.002.202.024.394.112.595.135.672-.253 1.23-.393 1.71-.372a5.7 5.7 0 0 1 1.728-.217.1.1 0 0 1-.02-.02c-.07-.067-.037-.103 0-.136.314-.32.387-.614.285-.88-.104-.274-.388-.533-.784-.77-.423.048-.828-.066-1.276-.016a4 4 0 0 0-.825.183q.337.119.582.403.3.353.417.958c.01.047.016.094-.08.113-.094.02-.103-.03-.113-.078-.068-.368-.196-.657-.374-.868-.187-.268-.616-.372-.75-.427-.45.045-.89.095-1.274.194-.29.073-.544.175-.738.327.29-.062.59-.05.85.08.25.123.46.356.593.732.017.044.03.092-.062.123-.092.03-.11-.015-.123-.062-.11-.324-.287-.518-.493-.62-.41-.204-1.256-.026-1.614.24a4.2 4.2 0 0 0-.623.592c-.02.026-.045.05-.073.052.767.052 1.54.093 2.137.332zm-2.278-.434c-.017-.042.012-.073.038-.104.216-.244.434-.46.66-.626.217-.16.442-.277.674-.332.237-.263.588-.42.996-.526.395-.102.848-.154 1.305-.2-.135-.27-.308-.435-.507-.523-.213-.093-.46-.108-.723-.082-.552.19-1.042.486-1.514.82q.066 0 .127.003c.14.01.265-.01.38.034.05.017.094.033.06.126-.04.11-.346.042-.452.035a1.4 1.4 0 0 0-.4.038c-.024.005-.046.012-.067.005-.495.306-.87.616-1.27.955.303.107.54.232.694.38z"})]}),(0,s.jsx)("path",{fill:"#0093dd",d:"m409.028 156.5 20.742-47.013-15.3-24.705-27.287 10.103-12.63 49.687a219.4 219.4 0 0 1 34.472 11.93z"}),(0,s.jsx)("path",{fill:"#fff",d:"M382.576 113.013a252 252 0 0 1 39.59 13.704l-8.003 18.147a232 232 0 0 0-36.474-12.623z"}),(0,s.jsx)("path",{fill:"red",d:"m415.45 141.95 5.347-12.12a248.6 248.6 0 0 0-39.055-13.518l-3.152 12.398a236 236 0 0 1 37.045 12.822l-.185.417z"}),(0,s.jsx)("path",{d:"M385.59 125.755c.358-.226.74-.17 1.124-.11.31-.116.668-.156 1.057-.142q.251-.134.577-.194.173-.135.016-.293a.62.62 0 0 1-.158-.353c-.616-.357-.844-.903-1.08-1.443-.35-.09-.513-.21-.55-.343q-.255-.024-.508-.052c-.8.088-1.005-.17-1.29-.38-.236-.08-.443-.21-.575-.46l-.263-.33c-.22-.278-.153-.645.176-.624.233.027.463.027.676-.065.25-.112.62-.11.903-.086.334-.02.545-.235.87-.54q-.003-.194-.005-.387-.078-.21.2-.183a.98.98 0 0 1 .866.508c.505.087.903.33 1.17.753.672.004 1.125.257 1.18.506.04.182-.157.39-.46.614q.004.068.004.137.27.236.36.467c.377.145.737.34 1.074.623.96-.11 2.578.586 4.766 1.982a18.6 18.6 0 0 1 4.12 1.217q.42.014.836.026c2.372-.35 4.67-.08 6.804 1.55.806.097 1.53.35 2.228.64.52.213 1.047.296 1.58.346a7.9 7.9 0 0 1 2.605.698c.974.218 1.884.524 2.448 1.206.402.484.305.93-.205 1.114-.308.65-.922.678-1.84.358-.634.116-1.33-.39-1.964-.867-.878-.283-1.686-.79-2.485-1.33-.415-.31-.834-.508-1.242-.596-.32-.068-.606-.113-.798 0-.095.057-.083.09 0 .16.222.186.38.466.43.803.044.296-.004.637.013 1 .02.38.25.66.633.896.264.16.576.33 1.03.395.215.043.276.17.27.332.12.578.232 1.16.443 1.685.06.15.173.22.343.346.586.423.282.895-.25.997-.468.412-.87.69-1.35.798-.38.128-.538-.028-.666-.215a.48.48 0 0 1-.443-.247c-.467-.343-.068-.94 1.048-.685.024-.13.118-.17.213-.168-.066-.29-.104-.61.02-.912-.098-.064-.183-.145-.328-.192-.403-.128-.784-.313-1.085-.595-.572-.537-1.465-.988-2.325-1.44-.71-.036-1.24-.363-1.797-.64l-.754-.01c-.22-.073-.4.003-.534.16-.223.272-.48.227-.787.19-.35-.04-.707-.013-1.058-.018-.173.043-.343.097-.53.1-.396-.022-.783-.026-1.046.194-.218.23-.436.213-.654.128a1 1 0 0 1-.35-.242c-.276-.057-.453-.125-.513-.208-.463-.13-.593-.26-.572-.39-.614-.148-.322-.632.076-.648.47-.02.898.07 1.358.135.386.11.863.046 1.178-.24.204-.184.28-.342.53-.48-.795-.052-1.38-.192-1.812-.464-1.16-.733-2.09-.91-2.83-.29-.197.112-.35.157-.562.076a1.06 1.06 0 0 0-.583-.028c-.42.095-.834.043-1.253-.11a4.1 4.1 0 0 1-1.84.063q-.777.408-1.14.094a9 9 0 0 1-.646-.397c-.33-.05-.472-.132-.486-.242-.422-.046-.474-.2-.472-.368-.175-.202-.11-.356.066-.486.313-.13.638-.178.998.007.216.102.375.2.505.303.24-.028.446 0 .626.067.133-.21.51-.218.923-.195.206-.137.452-.234.768-.263q-.014-.076-.026-.147c-.414-.11-.628-.41-.834-.713-.637-.012-1.095-.28-1.55-.56-.374.032-.675-.092-.967-.267-.237.02-.5.028-.75-.036a2.55 2.55 0 0 1-1.4 0c-.31.03-.56-.002-.815-.026-.29.334-.618.394-.976.223-.197-.25-.476-.413-.83-.506-.267-.087-.35-.204-.398-.33-.327-.2-.26-.4.055-.55.236-.115.532-.136.982.086q.219.084.496.107z"}),(0,s.jsx)("path",{fill:"#fff",d:"M401.218 130.518c-.03-.054-.097-.192-.336-.054-.742-.04-1.57-.03-2.195-.398-.65-.382-1.318-.78-2.036-.752q.324-.3.788-.422c.413-.11.9-.116 1.44-.028.76.123 1.428.27 1.945.465.497.186.848.418 1.002.717a.4.4 0 0 0 .043.047q.3.19.516.396.164.152.285.322a2.5 2.5 0 0 1-.715-.043 2.9 2.9 0 0 1-.74-.256z"}),(0,s.jsx)("path",{d:"m402.925 94.71.042.223.934 4.835-3.713 3.237-.17.15.215.075 4.655 1.61.946 4.834.045.223.17-.15 3.72-3.225 4.663 1.597.217.073-.043-.223-.934-4.837 3.714-3.237.17-.15-.215-.073-4.656-1.612-.945-4.834-.046-.222-.17.15-3.724 3.227-4.66-1.6z"}),(0,s.jsx)("path",{fill:"#f7db17",d:"m400.65 102.95 3.47-3.024 4.362 1.503zm8.41-1.632 3.482-3.027 4.35 1.506zm7.862-1.368-3.47 3.024-4.363-1.502zm-8.412 1.635-3.48 3.024-4.35-1.503zm-5.092-6.429 4.353 1.493.883 4.528zm5.622 6.464 4.36 1.503.872 4.52zm5.114 6.125-4.354-1.49-.88-4.53zm-5.622-6.465-4.36-1.5-.873-4.52zm3.022-7.627.884 4.517-3.482 3.027zm-2.79 8.101.88 4.53-3.477 3.016zm-2.746 7.494-.884-4.518 3.48-3.026zm2.789-8.101-.88-4.53 3.478-3.014z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4346.867849d4.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js deleted file mode 100644 index dea4571e92..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4426.20bcaf42.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4426"],{80225(e,l,i){i.r(l),i.d(l,{default:()=>d});var s=i(74848);i(47867);let d=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v480.003H0z"}),(0,s.jsx)("path",{fill:"#ab231d",d:"M0 0h640v192.001H0zM0 288.002h640v192.001H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4426.20bcaf42.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js deleted file mode 100644 index 2badabb488..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 446.2523c50a.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["446"],{43037(l,h,m){m.r(h),m.d(h,{default:()=>e});var s=m(74848);m(47867);let e=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("path",{fill:"#006",d:"M0 0h640v480H0z"}),(0,s.jsxs)("g",{strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0v24.81l319.75 197.106H360v-24.81L40.25 0H.002zm360.004 0v24.81L40.246 221.917H0v-24.814L319.75-.003H360z"}),(0,s.jsx)("path",{fill:"#fff",d:"M150.003 0v221.92h60V0zM0 73.973v73.973h360.004V73.973z"}),(0,s.jsx)("path",{fill:"#c00",d:"M0 88.766v44.384h360.004V88.766zM162.003 0v221.92h36V0zM0 221.92l120.004-73.974h26.833l-120.004 73.97H-.003zM0 0l120.004 73.973H93.17L.004 16.54V0zm213.172 73.973L333.168 0H360L239.998 73.973h-26.833zm146.832 147.95L240 147.948h26.833L360 205.38v16.542z"})]}),(0,s.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m471.6 213 5.2-16.668-14.013-10.647 17.655-.224 5.883-16.437 5.708 16.527 17.657.484-14.128 10.438 5.028 16.744-14.44-10.078m27.05 13.135 10.408-13.934-9.68-14.798 16.706 5.795 10.977-13.484-.086 17.512 16.474 6.463-16.76 5.026-.8 17.485-10.272-14.408m-98.397 14.976-.693-17.47-16.746-5.183 16.53-6.296.027-17.487 10.905 13.578 16.77-5.63-9.793 14.685 10.336 14.016-16.956-4.503m-39.69 40.867-7.332-15.822-17.415 1.824 12.818-12.317-6.675-16.123 15.25 8.21 13.292-11.798-3.394 17.39 14.894 8.84-17.348 2.535m-17.474 55.583-13.31-11.106-14.964 9.22 6.375-16.7-12.845-11.664 17.247.787 7.023-16.44 4.283 17.19 17.19 1.508-14.6 9.836m3.275 60.417-16.568-4.817-10.11 14.498-.703-17.895-16.36-5.516 16.13-6.24-.004-17.916 10.672 14.04 16.364-5.554-9.538 14.917m29.527 50.852-17.074 2.394-3.463 17.41-7.78-16.078-17.162 1.67 12.265-12.328-7.15-16.382 15.36 8.46 12.748-11.796-2.772 17.556m45.038 37.956-15.208 8.226 2.676 17.55-12.775-12.362-15.537 7.577 7.314-15.863-12.288-12.87 17.295 2.56 7.95-15.535 3.374 17.447m53.832 8.963-8.3 15.322 11.7 13.21-17.36-3.266-8.924 14.962-2.428-17.338-17.226-3.962 15.86-7.448-1.716-17.417 12.23 12.738m57.333-13.123-.517 17.475 16.345 6.365-16.924 5.103-1.237 17.442-9.94-14.32-17.116 4.423 10.783-13.952-9.342-14.716 16.604 5.698m54.4-203.218 11.944 12.604 15.92-7.39-8.25 15.835 11.418 13.102-17.04-2.82-8.864 15.496-2.28-17.577-16.9-3.53 15.632-8.043m34.244 21.104 5.42 16.595 17.507.293-14.174 10.68 4.734 16.815-14.176-9.994-14.585 10.107 5.412-16.857-13.75-10.576 17.524-.422m19.513 33.206-2.006 17.364 15.742 7.775-17.296 3.598-2.72 17.27-8.68-15.14-17.43 2.904L587.82 319.2l-8.05-15.48 16.054 7.133m2.931 39.795-7.767 15.607 12.148 12.79-17.462-2.652-8.406 15.268-3.02-17.24-17.353-3.35 15.596-8.006-2.314-17.345 12.66 12.296m-9.834 39.108-14.675 9.17 3.747 17.348-13.508-11.534-15.043 8.542 6.328-16.293-13.053-12.072 17.417 1.465 6.983-16.006 4.437 17.2"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/446.2523c50a.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js deleted file mode 100644 index 3432757b8a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 45.e217286d.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["45"],{47404(t,e,i){i.d(e,{Ar:()=>c,Bc:()=>tw,Gw:()=>tr,OO:()=>tk,_5:()=>l,et:()=>a,wm:()=>tu,yU:()=>tO});var n=i(52704),o=i(29332),s=i(15874);class l{constructor(t,e,i,n){this.state=t,this.pos=e,this.explicit=i,this.view=n,this.abortListeners=[],this.abortOnDocChange=!1}tokenBefore(t){let e=(0,s.mv)(this.state).resolveInner(this.pos,-1);for(;e&&0>t.indexOf(e.name);)e=e.parent;return e?{from:e.from,to:this.pos,text:this.state.sliceDoc(e.from,this.pos),type:e.type}:null}matchBefore(t){let e=this.state.doc.lineAt(this.pos),i=Math.max(e.from,this.pos-250),n=e.text.slice(i-e.from,this.pos-e.from),o=n.search(f(t,!1));return o<0?null:{from:i+o,to:this.pos,text:n.slice(o)}}get aborted(){return null==this.abortListeners}addEventListener(t,e,i){"abort"==t&&this.abortListeners&&(this.abortListeners.push(e),i&&i.onDocChange&&(this.abortOnDocChange=!0))}}function r(t){let e=Object.keys(t).join(""),i=/\w/.test(e);return i&&(e=e.replace(/\w/g,"")),`[${i?"\\w":""}${e.replace(/[^\w\s]/g,"\\$&")}]`}function a(t){let e=t.map(t=>"string"==typeof t?{label:t}:t),[i,n]=e.every(t=>/^\w+$/.test(t.label))?[/\w*$/,/\w+$/]:function(t){let e=Object.create(null),i=Object.create(null);for(let{label:n}of t){e[n[0]]=!0;for(let t=1;t{let o=t.matchBefore(n);return o||t.explicit?{from:o?o.from:t.pos,options:e,validFor:i}:null}}function c(t,e){return i=>{for(let e=(0,s.mv)(i.state).resolveInner(i.pos,-1);e;e=e.parent){if(t.indexOf(e.name)>-1)return null;if(e.type.isTop)break}return e(i)}}class h{constructor(t,e,i,n){this.completion=t,this.source=e,this.match=i,this.score=n}}function p(t){return t.selection.main.from}function f(t,e){var i;let{source:n}=t,o=e&&"^"!=n[0],s="$"!=n[n.length-1];return o||s?RegExp(`${o?"^":""}(?:${n})${s?"$":""}`,null!=(i=t.flags)?i:t.ignoreCase?"i":""):t}let u=n.YH.define(),d=new WeakMap;function m(t){if(!Array.isArray(t))return t;let e=d.get(t);return e||d.set(t,e=a(t)),e}let g=n.Pe.define(),v=n.Pe.define();class b{constructor(t){this.pattern=t,this.chars=[],this.folded=[],this.any=[],this.precise=[],this.byWord=[],this.score=0,this.matched=[];for(let e=0;e=48&&c<=57||c>=97&&c<=122?2:+(c>=65&&c<=90):(w=(0,n.MK)(c))!=w.toLowerCase()?1:2*(w!=w.toUpperCase());(!o||1==y&&g||0==b&&0!=y)&&(e[p]==c||i[p]==c&&(f=!0)?l[p++]=o:l.length&&(v=!1)),b=y,o+=(0,n.Fh)(c)}return p==a&&0==l[0]&&v?this.result(-100+(f?-200:0),l,t):u==a&&0==d?this.ret(-200-t.length+(m==t.length?0:-100),[0,m]):r>-1?this.ret(-700-t.length,[r,r+this.pattern.length]):u==a?this.ret(-900-t.length,[d,m]):p==a?this.result(-100+(f?-200:0)+-700+(v?0:-1100),l,t):2==e.length?null:this.result((o[0]?-700:0)+-200+-1100,o,t)}result(t,e,i){let o=[],s=0;for(let t of e){let e=t+(this.astral?(0,n.Fh)((0,n.vS)(i,t)):1);s&&o[s-1]==t?o[s-1]=e:(o[s++]=t,o[s++]=e)}return this.ret(t-i.length,o)}}class w{constructor(t){this.pattern=t,this.matched=[],this.score=0,this.folded=t.toLowerCase()}match(t){if(t.length(0,n.QR)(t,{activateOnTyping:!0,activateOnCompletion:()=>!1,activateOnTypingDelay:100,selectOnOpen:!0,override:null,closeOnBlur:!0,maxRenderedOptions:100,defaultKeymap:!0,tooltipClass:()=>"",optionClass:()=>"",aboveCursor:!1,icons:!0,addToOptions:[],positionInfo:C,filterStrict:!1,compareCompletions:(t,e)=>(t.sortText||t.label).localeCompare(e.sortText||e.label),interactionDelay:75,updateSyncTime:100},{defaultKeymap:(t,e)=>t&&e,closeOnBlur:(t,e)=>t&&e,icons:(t,e)=>t&&e,tooltipClass:(t,e)=>i=>x(t(i),e(i)),optionClass:(t,e)=>i=>x(t(i),e(i)),addToOptions:(t,e)=>t.concat(e),filterStrict:(t,e)=>t||e})});function x(t,e){return t?e?t+" "+e:t:e}function C(t,e,i,n,s,l){let r=t.textDirection==o.OP.RTL,a=r,c=!1,h="top",p,f,u=e.left-s.left,d=s.right-e.right,m=n.right-n.left,g=n.bottom-n.top;if(a&&u=g||t>e.top?p=i.bottom-e.top:(h="bottom",p=e.bottom-i.top)}let v=(e.bottom-e.top)/l.offsetHeight,b=(e.right-e.left)/l.offsetWidth;return{style:`${h}: ${p/v}px; max-width: ${f/b}px`,class:"cm-completionInfo-"+(c?r?"left-narrow":"right-narrow":a?"left":"right")}}let I=n.Pe.define();function O(t,e,i){if(t<=i)return{from:0,to:t};if(e<0&&(e=0),e<=t>>1){let t=Math.floor(e/i);return{from:t*i,to:(t+1)*i}}let n=Math.floor((t-e)/i);return{from:t-(n+1)*i,to:t-n*i}}class k{constructor(t,e,i){this.view=t,this.stateField=e,this.applyCompletion=i,this.info=null,this.infoDestroy=null,this.placeInfoReq={read:()=>this.measureInfo(),write:t=>this.placeInfo(t),key:this},this.space=null,this.currentClass="";let n=t.state.field(e),{options:o,selected:s}=n.open,l=t.state.facet(y);this.optionContent=function(t){let e=t.addToOptions.slice();return t.icons&&e.push({render(t){let e=document.createElement("div");return e.classList.add("cm-completionIcon"),t.type&&e.classList.add(...t.type.split(/\s+/g).map(t=>"cm-completionIcon-"+t)),e.setAttribute("aria-hidden","true"),e},position:20}),e.push({render(t,e,i,n){let o=document.createElement("span");o.className="cm-completionLabel";let s=t.displayLabel||t.label,l=0;for(let t=0;tl&&o.appendChild(document.createTextNode(s.slice(l,e)));let r=o.appendChild(document.createElement("span"));r.appendChild(document.createTextNode(s.slice(e,i))),r.className="cm-completionMatchedText",l=i}return lt.position-e.position).map(t=>t.render)}(l),this.optionClass=l.optionClass,this.tooltipClass=l.tooltipClass,this.range=O(o.length,s,l.maxRenderedOptions),this.dom=document.createElement("div"),this.dom.className="cm-tooltip-autocomplete",this.updateTooltipClass(t.state),this.dom.addEventListener("mousedown",i=>{let{options:n}=t.state.field(e).open;for(let e=i.target,o;e&&e!=this.dom;e=e.parentNode)if("LI"==e.nodeName&&(o=/-(\d+)$/.exec(e.id))&&+o[1]this.list.lastChild.getBoundingClientRect().bottom?this.range.to:null;null!=e&&(t.dispatch({effects:I.of(e)}),i.preventDefault())}}),this.dom.addEventListener("focusout",e=>{let i=t.state.field(this.stateField,!1);i&&i.tooltip&&t.state.facet(y).closeOnBlur&&e.relatedTarget!=t.contentDOM&&t.dispatch({effects:v.of(null)})}),this.showOptions(o,n.id)}mount(){this.updateSel()}showOptions(t,e){this.list&&this.list.remove(),this.list=this.dom.appendChild(this.createListBox(t,e,this.range)),this.list.addEventListener("scroll",()=>{this.info&&this.view.requestMeasure(this.placeInfoReq)})}update(t){var e;let i=t.state.field(this.stateField),n=t.startState.field(this.stateField);if(this.updateTooltipClass(t.state),i!=n){let{options:o,selected:s,disabled:l}=i.open;n.open&&n.open.options==o||(this.range=O(o.length,s,t.state.facet(y).maxRenderedOptions),this.showOptions(o,i.id)),this.updateSel(),l!=(null==(e=n.open)?void 0:e.disabled)&&this.dom.classList.toggle("cm-tooltip-autocomplete-disabled",!!l)}}updateTooltipClass(t){let e=this.tooltipClass(t);if(e!=this.currentClass){for(let t of this.currentClass.split(" "))t&&this.dom.classList.remove(t);for(let t of e.split(" "))t&&this.dom.classList.add(t);this.currentClass=e}}positioned(t){this.space=t,this.info&&this.view.requestMeasure(this.placeInfoReq)}updateSel(){let t=this.view.state.field(this.stateField),e=t.open;(e.selected>-1&&e.selected=this.range.to)&&(this.range=O(e.options.length,e.selected,this.view.state.facet(y).maxRenderedOptions),this.showOptions(e.options,t.id));let i=this.updateSelectedOption(e.selected);if(i){this.destroyInfo();let{completion:n}=e.options[e.selected],{info:s}=n;if(!s)return;let l="string"==typeof s?document.createTextNode(s):s(n);if(!l)return;"then"in l?l.then(e=>{e&&this.view.state.field(this.stateField,!1)==t&&this.addInfoPane(e,n)}).catch(t=>(0,o.c_)(this.view.state,t,"completion info")):(this.addInfoPane(l,n),i.setAttribute("aria-describedby",this.info.id))}}addInfoPane(t,e){this.destroyInfo();let i=this.info=document.createElement("div");if(i.className="cm-tooltip cm-completionInfo",i.id="cm-completionInfo-"+Math.floor(65535*Math.random()).toString(16),null!=t.nodeType)i.appendChild(t),this.infoDestroy=null;else{let{dom:e,destroy:n}=t;i.appendChild(e),this.infoDestroy=n||null}this.dom.appendChild(i),this.view.requestMeasure(this.placeInfoReq)}updateSelectedOption(t){var e,i;let n,o,s,l=null;for(let e=this.list.firstChild,i=this.range.from;e;e=e.nextSibling,i++)"LI"==e.nodeName&&e.id?i==t?e.hasAttribute("aria-selected")||(e.setAttribute("aria-selected","true"),l=e):e.hasAttribute("aria-selected")&&(e.removeAttribute("aria-selected"),e.removeAttribute("aria-describedby")):i--;return l&&(e=this.list,i=l,n=e.getBoundingClientRect(),o=i.getBoundingClientRect(),s=n.height/e.offsetHeight,o.topn.bottom&&(e.scrollTop+=(o.bottom-n.bottom)/s)),l}measureInfo(){let t=this.dom.querySelector("[aria-selected]");if(!t||!this.info)return null;let e=this.dom.getBoundingClientRect(),i=this.info.getBoundingClientRect(),n=t.getBoundingClientRect(),o=this.space;if(!o){let t=this.dom.ownerDocument.documentElement;o={left:0,top:0,right:t.clientWidth,bottom:t.clientHeight}}return n.top>Math.min(o.bottom,e.bottom)-10||n.bottom{t.target==n&&t.preventDefault()});let o=null;for(let s=i.from;si.from||0==i.from)&&(o=t,"string"!=typeof a&&a.header?n.appendChild(a.header(a)):n.appendChild(document.createElement("completion-section")).textContent=t)}let c=n.appendChild(document.createElement("li"));c.id=e+"-"+s,c.setAttribute("role","option");let h=this.optionClass(l);for(let t of(h&&(c.className=h),this.optionContent)){let e=t(l,this.view.state,this.view,r);e&&c.appendChild(e)}}return i.from&&n.classList.add("cm-completionListIncompleteTop"),i.to=this.options.length?this:new D(this.options,P(e,t),this.tooltip,this.timestamp,t,this.disabled)}static build(t,e,i,n,o,s){if(n&&!s&&t.some(t=>t.isPending))return n.setDisabled();let l=function(t,e){let i=[],n=null,o=null,s=t=>{i.push(t);let{section:e}=t.completion;if(e){n||(n=[]);let t="string"==typeof e?e:e.name;n.some(e=>e.name==t)||n.push("string"==typeof e?{name:t}:e)}},l=e.facet(y);for(let n of t)if(n.hasResult()){let t=n.result.getMatch;if(!1===n.result.filter)for(let e of n.result.options)s(new h(e,n.source,t?t(e):[],1e9-i.length));else{let i=e.sliceDoc(n.from,n.to),r,a=l.filterStrict?new w(i):new b(i);for(let e of n.result.options)if(r=a.match(e.label)){let i=e.displayLabel?t?t(e,r.matched):[]:r.matched,l=r.score+(e.boost||0);if(s(new h(e,n.source,i,l)),"object"==typeof e.section&&"dynamic"===e.section.rank){let{name:t}=e.section;o||(o=Object.create(null)),o[t]=Math.max(l,o[t]||-1e9)}}}}if(n){let t=Object.create(null),e=0;for(let i of n.sort((t,e)=>("dynamic"===t.rank&&"dynamic"===e.rank?o[e.name]-o[t.name]:0)||("number"==typeof t.rank?t.rank:1e9)-("number"==typeof e.rank?e.rank:1e9)||(t.namee.score-t.score||c(t.completion,e.completion))){let e=t.completion;a&&a.label==e.label&&a.detail==e.detail&&(null==a.type||null==e.type||a.type==e.type)&&a.apply==e.apply&&a.boost==e.boost?S(t.completion)>S(a)&&(r[r.length-1]=t):r.push(t),a=t.completion}return r}(t,e);if(!l.length)return n&&t.some(t=>t.isPending)?n.setDisabled():null;let r=e.facet(y).selectOnOpen?0:-1;if(n&&n.selected!=r&&-1!=n.selected){let t=n.options[n.selected].completion;for(let e=0;ee.hasResult()?Math.min(t,e.from):t,1e8),create:$,above:o.aboveCursor},n?n.timestamp:Date.now(),r,!1)}map(t){return new D(this.options,this.attrs,{...this.tooltip,pos:t.mapPos(this.tooltip.pos)},this.timestamp,this.selected,this.disabled)}setDisabled(){return new D(this.options,this.attrs,this.tooltip,this.timestamp,this.selected,!0)}}class L{constructor(t,e,i){this.active=t,this.id=e,this.open=i}static start(){return new L(R,"cm-ac-"+Math.floor(2e6*Math.random()).toString(36),null)}update(t){let{state:e}=t,i=e.facet(y),n=(i.override||e.languageDataAt("autocomplete",p(e)).map(m)).map(e=>(this.active.find(t=>t.source==e)||new E(e,+!!this.active.some(t=>0!=t.state))).update(t,i));n.length==this.active.length&&n.every((t,e)=>t==this.active[e])&&(n=this.active);let o=this.open,s=t.effects.some(t=>t.is(B));for(let l of(o&&t.docChanged&&(o=o.map(t.changes)),t.selection||n.some(e=>e.hasResult()&&t.changes.touchesRange(e.from,e.to))||!function(t,e){if(t==e)return!0;for(let i=0,n=0;;){for(;it.isPending)&&(o=null),!o&&n.every(t=>!t.isPending)&&n.some(t=>t.hasResult())&&(n=n.map(t=>t.hasResult()?new E(t.source,0):t)),t.effects))l.is(I)&&(o=o&&o.setSelected(l.value,this.id));return n==this.active&&o==this.open?this:new L(n,this.id,o)}get tooltip(){return this.open?this.open.tooltip:null}get attrs(){return this.open?this.open.attrs:this.active.length?T:A}}let T={"aria-autocomplete":"list"},A={};function P(t,e){let i={"aria-autocomplete":"list","aria-haspopup":"listbox","aria-controls":t};return e>-1&&(i["aria-activedescendant"]=t+"-"+e),i}let R=[];function F(t,e){if(t.isUserEvent("input.complete")){let i=t.annotation(u);if(i&&e.activateOnCompletion(i))return 12}let i=t.isUserEvent("input.type");return i&&e.activateOnTyping?5:i?1:t.isUserEvent("delete.backward")?2:t.selection?8:16*!!t.docChanged}class E{constructor(t,e,i=!1){this.source=t,this.state=e,this.explicit=i}hasResult(){return!1}get isPending(){return 1==this.state}update(t,e){let i=F(t,e),n=this;for(let e of((8&i||16&i&&this.touches(t))&&(n=new E(n.source,0)),4&i&&0==n.state&&(n=new E(this.source,1)),n=n.updateFor(t,i),t.effects))if(e.is(g))n=new E(n.source,1,e.value);else if(e.is(v))n=new E(n.source,0);else if(e.is(B))for(let t of e.value)t.source==n.source&&(n=t);return n}updateFor(t,e){return this.map(t.changes)}map(t){return this}touches(t){return t.changes.touchesRange(p(t.state))}}class M extends E{constructor(t,e,i,n,o,s){super(t,3,e),this.limit=i,this.result=n,this.from=o,this.to=s}hasResult(){return!0}updateFor(t,e){var i;if(!(3&e))return this.map(t.changes);let n=this.result;n.map&&!t.changes.empty&&(n=n.map(n,t.changes));let o=t.changes.mapPos(this.from),s=t.changes.mapPos(this.to,1),r=p(t.state);if(r>s||!n||2&e&&(p(t.startState)==this.from||rt.map(t=>t.map(e))}),N=n.sU.define({create:()=>L.start(),update:(t,e)=>t.update(e),provide:t=>[o.DK.from(t,t=>t.tooltip),o.Lz.contentAttributes.from(t,t=>t.attrs)]});function U(t,e){let i=e.completion.apply||e.completion.label,o=t.state.field(N).active.find(t=>t.source==e.source);return o instanceof M&&("string"==typeof i?t.dispatch({...function(t,e,i,o){let{main:s}=t.selection,l=i-s.from,r=o-s.from;return{...t.changeByRange(a=>{if(a!=s&&i!=o&&t.sliceDoc(a.from+l,a.from+r)!=t.sliceDoc(i,o))return{range:a};let c=t.toText(e);return{changes:{from:a.from+l,to:o==s.from?a.to:a.from+r,insert:c},range:n.OF.cursor(a.from+l+c.length)}}),scrollIntoView:!0,userEvent:"input.complete"}}(t.state,i,o.from,o.to),annotations:u.of(e.completion)}):i(t,e.completion,o.from,o.to),!0)}let $=t=>new k(t,N,U);function z(t,e="option"){return i=>{let n=i.state.field(N,!1);if(!n||!n.open||n.open.disabled||Date.now()-n.open.timestamp-1?n.open.selected+s*(t?1:-1):t?0:r-1;return a<0?a="page"==e?0:r-1:a>=r&&(a="page"==e?r-1:0),i.dispatch({effects:I.of(a)}),!0}}let _=t=>!!t.state.field(N,!1)&&(t.dispatch({effects:g.of(!0)}),!0);class q{constructor(t,e){this.active=t,this.context=e,this.time=Date.now(),this.updates=[],this.done=void 0}}let H=o.Z9.fromClass(class{constructor(t){for(let e of(this.view=t,this.debounceUpdate=-1,this.running=[],this.debounceAccept=-1,this.pendingStart=!1,this.composing=0,t.state.field(N).active))e.isPending&&this.startQuery(e)}update(t){let e=t.state.field(N),i=t.state.facet(y);if(!t.selectionSet&&!t.docChanged&&t.startState.field(N)==e)return;let n=t.transactions.some(t=>{let e=F(t,i);return 8&e||(t.selection||t.docChanged)&&!(3&e)});for(let e=0;e50&&Date.now()-i.time>1e3){for(let t of i.context.abortListeners)try{t()}catch(t){(0,o.c_)(this.view.state,t)}i.context.abortListeners=null,this.running.splice(e--,1)}else i.updates.push(...t.transactions)}this.debounceUpdate>-1&&clearTimeout(this.debounceUpdate),t.transactions.some(t=>t.effects.some(t=>t.is(g)))&&(this.pendingStart=!0);let s=this.pendingStart?50:i.activateOnTypingDelay;if(this.debounceUpdate=e.active.some(t=>t.isPending&&!this.running.some(e=>e.active.source==t.source))?setTimeout(()=>this.startUpdate(),s):-1,0!=this.composing)for(let e of t.transactions)e.isUserEvent("input.type")?this.composing=2:2==this.composing&&e.selection&&(this.composing=3)}startUpdate(){this.debounceUpdate=-1,this.pendingStart=!1;let{state:t}=this.view,e=t.field(N);for(let t of e.active)t.isPending&&!this.running.some(e=>e.active.source==t.source)&&this.startQuery(t);this.running.length&&e.open&&e.open.disabled&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(y).updateSyncTime))}startQuery(t){let{state:e}=this.view,i=p(e),n=new l(e,i,t.explicit,this.view),s=new q(t,n);this.running.push(s),Promise.resolve(t.source(n)).then(t=>{s.context.aborted||(s.done=t||null,this.scheduleAccept())},t=>{this.view.dispatch({effects:v.of(null)}),(0,o.c_)(this.view.state,t)})}scheduleAccept(){this.running.every(t=>void 0!==t.done)?this.accept():this.debounceAccept<0&&(this.debounceAccept=setTimeout(()=>this.accept(),this.view.state.facet(y).updateSyncTime))}accept(){var t;this.debounceAccept>-1&&clearTimeout(this.debounceAccept),this.debounceAccept=-1;let e=[],i=this.view.state.facet(y),n=this.view.state.field(N);for(let o=0;ot.source==s.active.source);if(l&&l.isPending)if(null==s.done){let t=new E(s.active.source,0);for(let e of s.updates)t=t.update(e,i);t.isPending||e.push(t)}else this.startQuery(l)}(e.length||n.open&&n.open.disabled)&&this.view.dispatch({effects:B.of(e)})}},{eventHandlers:{blur(t){let e=this.view.state.field(N,!1);if(e&&e.tooltip&&this.view.state.facet(y).closeOnBlur){let i=e.open&&(0,o.Eg)(this.view,e.open.tooltip);i&&i.dom.contains(t.relatedTarget)||setTimeout(()=>this.view.dispatch({effects:v.of(null)}),10)}},compositionstart(){this.composing=1},compositionend(){3==this.composing&&setTimeout(()=>this.view.dispatch({effects:g.of(!1)}),20),this.composing=0}}}),W="object"==typeof navigator&&/Win/.test(navigator.platform),j=n.Nb.highest(o.Lz.domEventHandlers({keydown(t,e){let i=e.state.field(N,!1);if(!i||!i.open||i.open.disabled||i.open.selected<0||t.key.length>1||t.ctrlKey&&!(W&&t.altKey)||t.metaKey)return!1;let n=i.open.options[i.open.selected],o=i.active.find(t=>t.source==n.source),s=n.completion.commitCharacters||o.result.commitCharacters;return s&&s.indexOf(t.key)>-1&&U(e,n),!1}})),K=o.Lz.baseTheme({".cm-tooltip.cm-tooltip-autocomplete":{"& > ul":{fontFamily:"monospace",whiteSpace:"nowrap",overflow:"hidden auto",maxWidth_fallback:"700px",maxWidth:"min(700px, 95vw)",minWidth:"250px",maxHeight:"10em",height:"100%",listStyle:"none",margin:0,padding:0,"& > li, & > completion-section":{padding:"1px 3px",lineHeight:1.2},"& > li":{overflowX:"hidden",textOverflow:"ellipsis",cursor:"pointer"},"& > completion-section":{display:"list-item",borderBottom:"1px solid silver",paddingLeft:"0.5em",opacity:.7}}},"&light .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#17c",color:"white"},"&light .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#777"},"&dark .cm-tooltip-autocomplete ul li[aria-selected]":{background:"#347",color:"white"},"&dark .cm-tooltip-autocomplete-disabled ul li[aria-selected]":{background:"#444"},".cm-completionListIncompleteTop:before, .cm-completionListIncompleteBottom:after":{content:'"\xb7\xb7\xb7"',opacity:.5,display:"block",textAlign:"center"},".cm-tooltip.cm-completionInfo":{position:"absolute",padding:"3px 9px",width:"max-content",maxWidth:"400px",boxSizing:"border-box",whiteSpace:"pre-line"},".cm-completionInfo.cm-completionInfo-left":{right:"100%"},".cm-completionInfo.cm-completionInfo-right":{left:"100%"},".cm-completionInfo.cm-completionInfo-left-narrow":{right:"30px"},".cm-completionInfo.cm-completionInfo-right-narrow":{left:"30px"},"&light .cm-snippetField":{backgroundColor:"#00000022"},"&dark .cm-snippetField":{backgroundColor:"#ffffff22"},".cm-snippetFieldPosition":{verticalAlign:"text-top",width:0,height:"1.15em",display:"inline-block",margin:"0 -0.7px -.7em",borderLeft:"1.4px dotted #888"},".cm-completionMatchedText":{textDecoration:"underline"},".cm-completionDetail":{marginLeft:"0.5em",fontStyle:"italic"},".cm-completionIcon":{fontSize:"90%",width:".8em",display:"inline-block",textAlign:"center",paddingRight:".6em",opacity:"0.6",boxSizing:"content-box"},".cm-completionIcon-function, .cm-completionIcon-method":{"&:after":{content:"'ƒ'"}},".cm-completionIcon-class":{"&:after":{content:"'○'"}},".cm-completionIcon-interface":{"&:after":{content:"'◌'"}},".cm-completionIcon-variable":{"&:after":{content:"'\uD835\uDC65'"}},".cm-completionIcon-constant":{"&:after":{content:"'\uD835\uDC36'"}},".cm-completionIcon-type":{"&:after":{content:"'\uD835\uDC61'"}},".cm-completionIcon-enum":{"&:after":{content:"'∪'"}},".cm-completionIcon-property":{"&:after":{content:"'□'"}},".cm-completionIcon-keyword":{"&:after":{content:"'\uD83D\uDD11︎'"}},".cm-completionIcon-namespace":{"&:after":{content:"'▢'"}},".cm-completionIcon-text":{"&:after":{content:"'abc'",fontSize:"50%",verticalAlign:"middle"}}});class V{constructor(t,e,i,n){this.field=t,this.line=e,this.from=i,this.to=n}}class Z{constructor(t,e,i){this.field=t,this.from=e,this.to=i}map(t){let e=t.mapPos(this.from,-1,n.iR.TrackDel),i=t.mapPos(this.to,1,n.iR.TrackDel);return null==e||null==i?null:new Z(this.field,e,i)}}class Q{constructor(t,e){this.lines=t,this.fieldPositions=e}instantiate(t,e){let i=[],n=[e],o=t.doc.lineAt(e),l=/^\s*/.exec(o.text)[0];for(let o of this.lines){if(i.length){let i=l,r=/^\t*/.exec(o)[0].length;for(let e=0;enew Z(t.field,n[t.line]+t.from,n[t.line]+t.to))}}static parse(t){let e=[],i=[],n=[],o;for(let s of t.split(/\r\n?|\n/)){for(;o=/[#$]\{(?:(\d+)(?::([^{}]*))?|((?:\\[{}]|[^{}])*))\}/.exec(s);){let t=o[1]?+o[1]:null,l=o[2]||o[3]||"",r=-1,a=l.replace(/\\[{}]/g,t=>t[1]);for(let i=0;i=r&&o.field++}for(let t of n)if(t.line==i.length&&t.from>o.index){let e=o[2]?3+(o[1]||"").length:2;t.from-=e,t.to-=e}n.push(new V(r,i.length,o.index,o.index+a.length)),s=s.slice(0,o.index)+l+s.slice(o.index+o[0].length)}s=s.replace(/\\([{}])/g,(t,e,o)=>{for(let t of n)t.line==i.length&&t.from>o&&(t.from--,t.to--);return e}),i.push(s)}return new Q(i,n)}}let Y=o.NZ.widget({widget:new class extends o.xO{toDOM(){let t=document.createElement("span");return t.className="cm-snippetFieldPosition",t}ignoreEvent(){return!1}}}),X=o.NZ.mark({class:"cm-snippetField"});class J{constructor(t,e){this.ranges=t,this.active=e,this.deco=o.NZ.set(t.map(t=>(t.from==t.to?Y:X).range(t.from,t.to)),!0)}map(t){let e=[];for(let i of this.ranges){let n=i.map(t);if(!n)return null;e.push(n)}return new J(e,this.active)}selectionInsideField(t){return t.ranges.every(t=>this.ranges.some(e=>e.field==this.active&&e.from<=t.from&&e.to>=t.to))}}let G=n.Pe.define({map:(t,e)=>t&&t.map(e)}),tt=n.Pe.define(),te=n.sU.define({create:()=>null,update(t,e){for(let i of e.effects){if(i.is(G))return i.value;if(i.is(tt)&&t)return new J(t.ranges,i.value)}return t&&e.docChanged&&(t=t.map(e.changes)),t&&e.selection&&!t.selectionInsideField(e.selection)&&(t=null),t},provide:t=>o.Lz.decorations.from(t,t=>t?t.deco:o.NZ.none)});function ti(t,e){return n.OF.create(t.filter(t=>t.field==e).map(t=>n.OF.range(t.from,t.to)))}function tn(t){return({state:e,dispatch:i})=>{let n=e.field(te,!1);if(!n||t<0&&0==n.active)return!1;let o=n.active+t,s=t>0&&!n.ranges.some(e=>e.field==o+t);return i(e.update({selection:ti(n.ranges,o),effects:G.of(s?null:new J(n.ranges,o)),scrollIntoView:!0})),!0}}let to=[{key:"Tab",run:tn(1),shift:tn(-1)},{key:"Escape",run:({state:t,dispatch:e})=>!!t.field(te,!1)&&(e(t.update({effects:G.of(null)})),!0)}],ts=n.sj.define({combine:t=>t.length?t[0]:to}),tl=n.Nb.highest(o.w4.compute([ts],t=>t.facet(ts)));function tr(t,e){let i;return{...e,apply:(i=Q.parse(t),(t,e,o,s)=>{let{text:l,ranges:r}=i.instantiate(t.state,o),{main:a}=t.state.selection,c={changes:{from:o,to:s==a.from?a.to:s,insert:n.EY.of(l)},scrollIntoView:!0,annotations:e?[u.of(e),n.ZX.userEvent.of("input.complete")]:void 0};if(r.length&&(c.selection=ti(r,0)),r.some(t=>t.field>0)){let e=new J(r,0),i=c.effects=[G.of(e)];void 0===t.state.field(te,!1)&&i.push(n.Pe.appendConfig.of([te,tl,ta,K]))}t.dispatch(t.state.update(c))})}}let ta=o.Lz.domEventHandlers({mousedown(t,e){let i=e.state.field(te,!1),n;if(!i||null==(n=e.posAtCoords({x:t.clientX,y:t.clientY})))return!1;let o=i.ranges.find(t=>t.from<=n&&t.to>=n);return!!o&&o.field!=i.active&&(e.dispatch({selection:ti(i.ranges,o.field),effects:G.of(i.ranges.some(t=>t.field>o.field)?new J(i.ranges,o.field):null),scrollIntoView:!0}),!0)}}),tc={brackets:["(","[","{","'",'"'],before:")]}:;>",stringPrefixes:[]},th=n.Pe.define({map(t,e){let i=e.mapPos(t,-1,n.iR.TrackAfter);return null==i?void 0:i}}),tp=new class extends n.FB{};tp.startSide=1,tp.endSide=-1;let tf=n.sU.define({create:()=>n.om.empty,update(t,e){if(t=t.map(e.changes),e.selection){let i=e.state.doc.lineAt(e.selection.main.head);t=t.update({filter:t=>t>=i.from&&t<=i.to})}for(let i of e.effects)i.is(th)&&(t=t.update({add:[tp.range(i.value,i.value+1)]}));return t}});function tu(){return[tb,tf]}let td="()[]{}<>\xab\xbb\xbb\xab[]{}";function tm(t){for(let e=0;e{if((tv?t.composing:t.compositionStarted)||t.state.readOnly)return!1;let l=t.state.selection.main;if(o.length>2||2==o.length&&1==(0,n.Fh)((0,n.vS)(o,0))||e!=l.from||i!=l.to)return!1;let r=function(t,e){let i=tg(t,t.selection.main.head),o=i.brackets||tc.brackets;for(let l of o){let r=tm((0,n.vS)(l,0));if(e==l)return r==l?function(t,e,i,o){let l=o.stringPrefixes||tc.stringPrefixes,r=null,a=t.changeByRange(o=>{if(!o.empty)return{changes:[{insert:e,from:o.from},{insert:e,from:o.to}],effects:th.of(o.to+e.length),range:n.OF.range(o.anchor+e.length,o.head+e.length)};let a=o.head,c=tx(t.doc,a),h;if(c==e){if(tC(t,a))return{changes:{insert:e+e,from:a},effects:th.of(a+e.length),range:n.OF.cursor(a+e.length)};else if(ty(t,a)){let o=i&&t.sliceDoc(a,a+3*e.length)==e+e+e?e+e+e:e;return{changes:{from:a,to:a+o.length,insert:o},range:n.OF.cursor(a+o.length)}}}else if(i&&t.sliceDoc(a-2*e.length,a)==e+e&&(h=tI(t,a-2*e.length,l))>-1&&tC(t,h))return{changes:{insert:e+e+e+e,from:a},effects:th.of(a+e.length),range:n.OF.cursor(a+e.length)};else if(t.charCategorizer(a)(c)!=n.Je.Word&&tI(t,a,l)>-1&&!function(t,e,i,n){let o=(0,s.mv)(t).resolveInner(e,-1),l=n.reduce((t,e)=>Math.max(t,e.length),0);for(let s=0;s<5;s++){let s=t.sliceDoc(o.from,Math.min(o.to,o.from+i.length+l)),r=s.indexOf(i);if(!r||r>-1&&n.indexOf(s.slice(0,r))>-1){let e=o.firstChild;for(;e&&e.from==o.from&&e.to-e.from>i.length+r;){if(t.sliceDoc(e.to-i.length,e.to)==i)return!1;e=e.firstChild}return!0}let a=o.to==e&&o.parent;if(!a)break;o=a}return!1}(t,a,e,l))return{changes:{insert:e+e,from:a},effects:th.of(a+e.length),range:n.OF.cursor(a+e.length)};return{range:r=o}});return r?null:t.update(a,{scrollIntoView:!0,userEvent:"input.type"})}(t,l,o.indexOf(l+l+l)>-1,i):function(t,e,i,o){let s=null,l=t.changeByRange(l=>{if(!l.empty)return{changes:[{insert:e,from:l.from},{insert:i,from:l.to}],effects:th.of(l.to+e.length),range:n.OF.range(l.anchor+e.length,l.head+e.length)};let r=tx(t.doc,l.head);return!r||/\s/.test(r)||o.indexOf(r)>-1?{changes:{insert:e+i,from:l.head},effects:th.of(l.head+e.length),range:n.OF.cursor(l.head+e.length)}:{range:s=l}});return s?null:t.update(l,{scrollIntoView:!0,userEvent:"input.type"})}(t,l,r,i.before||tc.before);if(e==r&&ty(t,t.selection.main.from))return function(t,e){let i=null,o=t.changeByRange(o=>o.empty&&tx(t.doc,o.head)==e?{changes:{from:o.head,to:o.head+e.length,insert:e},range:n.OF.cursor(o.head+e.length)}:i={range:o});return i?null:t.update(o,{scrollIntoView:!0,userEvent:"input.type"})}(t,r)}return null}(t.state,o);return!!r&&(t.dispatch(r),!0)}),tw=[{key:"Backspace",run:({state:t,dispatch:e})=>{if(t.readOnly)return!1;let i=tg(t,t.selection.main.head).brackets||tc.brackets,o=null,s=t.changeByRange(e=>{if(e.empty){var s,l;let o,r=(s=t.doc,l=e.head,o=s.sliceString(l-2,l),(0,n.Fh)((0,n.vS)(o,0))==o.length?o:o.slice(1));for(let o of i)if(o==r&&tx(t.doc,e.head)==tm((0,n.vS)(o,0)))return{changes:{from:e.head-o.length,to:e.head+o.length},range:n.OF.cursor(e.head-o.length)}}return{range:o=e}});return o||e(t.update(s,{scrollIntoView:!0,userEvent:"delete.backward"})),!o}}];function ty(t,e){let i=!1;return t.field(tf).between(0,t.doc.length,t=>{t==e&&(i=!0)}),i}function tx(t,e){let i=t.sliceString(e,e+2);return i.slice(0,(0,n.Fh)((0,n.vS)(i,0)))}function tC(t,e){let i=(0,s.mv)(t).resolveInner(e+1);return i.parent&&i.from==e}function tI(t,e,i){let o=t.charCategorizer(e);if(o(t.sliceDoc(e-1,e))!=n.Je.Word)return e;for(let s of i){let i=e-s.length;if(t.sliceDoc(i,e)==s&&o(t.sliceDoc(i-1,i))!=n.Je.Word)return i}return -1}function tO(t={}){return[j,N,y.of(t),H,tS,K]}let tk=[{key:"Ctrl-Space",run:_},{mac:"Alt-`",run:_},{mac:"Alt-i",run:_},{key:"Escape",run:t=>{let e=t.state.field(N,!1);return!!e&&!!e.active.some(t=>0!=t.state)&&(t.dispatch({effects:v.of(null)}),!0)}},{key:"ArrowDown",run:z(!0)},{key:"ArrowUp",run:z(!1)},{key:"PageDown",run:z(!0,"page")},{key:"PageUp",run:z(!1,"page")},{key:"Enter",run:t=>{let e=t.state.field(N,!1);return!(t.state.readOnly||!e||!e.open||e.open.selected<0||e.open.disabled||Date.now()-e.open.timestampt.facet(y).defaultKeymap?[tk]:[]))}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/45.e217286d.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js deleted file mode 100644 index b5f4f8bdac..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4530.72904f19.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4530"],{81558(e,t,o){o.d(t,{bk:()=>C,fB:()=>S,J6:()=>L});var r,a=o(47867),n=o(1240),l=o(83986),i=o(86608),s=o(20319),d=o(28907),c=o(53211);let p=new Map,u=(e,t)=>{p.has(e)&&console.warn(`A handler for the API gateway event type "${e}" is already registered. It will be overwritten.`),p.set(e,t)},m=(e,t)=>{let{elementSelectorHelper:o}=t;o.setConfig(e),o.open()},f=(e,t)=>{let{uploadModalContext:o}=t;o.triggerUpload(e)},h=(e,t)=>{let{linkModalContext:o}=t;o.openModal(e.value,e.options)},g=(e,t)=>{let{cropModalContext:o}=t;o.openModal(e.imageId,e.crop,e.options)};var y=o(62059);let w=(e,t)=>{let{hotspotMarkersModalContext:o}=t,r=`iframe-hotspot-modal-${(0,y.u)()}`;o.openModal(r,e.imageId,e.hotspots,e.crop,e.options)},v=(e,t)=>{let{videoModalContext:o}=t;o.openModal(e.value,e.options)};var M=o(41630),I=o(16327),A=o(59385),k=o(2700),D=o(20120),E=o(35864);let b=e=>{let{id:t,elementType:o}=e,r=(0,k.JT)(M.M_.getState());(0,E.isNull)(r)?console.warn("No active perspective available for locate in tree"):M.M_.dispatch(I.FH.endpoints.elementGetTreeLocation.initiate({id:t,elementType:o,perspectiveId:r.id},{forceRefetch:!0})).then(e=>{if(!(0,E.isNil)(e.data)&&!(0,E.isNil)(e.data.treeLevelData)){let o=String(e.data.widgetId);M.M_.dispatch((0,D.pg)(o)),M.M_.dispatch((0,A.locateInTree)({treeId:o,nodeId:(0,E.isString)(t)?t:String(t),treeLevelData:e.data.treeLevelData}))}}).catch(e=>{console.error("Error locating element in tree:",e)})},R="pimcore:gateway:request";class S extends CustomEvent{get eventType(){return this.detail.type}get payload(){return this.detail.payload}constructor(e,t){super(R,{detail:{type:e,payload:t}})}}let C=()=>{let e=(0,n.h)(),t=(0,l.d)(),o=(0,i.q)(),r=(0,s.c)(),y=(0,d.A)(),M=(0,c.Z)();return(0,a.useEffect)(()=>{u("openElementSelector",m),u("openUploadModal",f),u("openLinkModal",h),u("openCropModal",g),u("openHotspotMarkersModal",w),u("openVideoModal",v),u("locateInTree",b)},[]),(0,a.useEffect)(()=>{let a=a=>{if(!(a instanceof S))return void console.warn("Received non-ApiGatewayEvent on API gateway listener");let{type:n,payload:l}=a.detail;try{let a=p.get(n);(0,E.isUndefined)(a)?console.warn(`No handler registered for API event type: ${n}`):a(l,{elementSelectorHelper:e,uploadModalContext:t,linkModalContext:o,cropModalContext:r,hotspotMarkersModalContext:y,videoModalContext:M})}catch(e){console.error(`Error handling API gateway event of type ${n}:`,e)}};return window.addEventListener(R,a),()=>{window.removeEventListener(R,a)}},[e,t,o,r,y,M]),null};var L=((r={}).openElementSelector="openElementSelector",r.openUploadModal="openUploadModal",r.openLinkModal="openLinkModal",r.openCropModal="openCropModal",r.openHotspotMarkersModal="openHotspotMarkersModal",r.openVideoModal="openVideoModal",r.locateInTree="locateInTree",r)},21849(e,t,o){o.r(t),o.d(t,{PimcoreStudio:()=>E,Pimcore:()=>D});var r=o(63364),a=o(41630),n=o(29376),l=o(35864);let i=new class{register(e,t,o){if((0,l.isNull)(t.contentWindow))throw Error(`Iframe for document ${e} has no content window`);this.iframes.set(e,{iframe:t,documentId:e,contentWindow:t.contentWindow,iframeRef:o,isReady:!1,readyCallbacks:[]})}unregister(e){this.iframes.delete(e)}getIframe(e){var t;return null==(t=this.iframes.get(e))?void 0:t.iframe}getContentWindow(e){var t;return null==(t=this.iframes.get(e))?void 0:t.contentWindow}getIframeDocument(e){var t;let o=this.getIframe(e);return(null==o?void 0:o.contentDocument)??(null==o||null==(t=o.contentWindow)?void 0:t.document)}getDocumentEditorApi(e){let t=this.getContentWindow(e);if((0,l.isNull)(t))throw Error(`No iframe found for document ID ${e}`);let o=t.PimcoreDocumentEditor;if((0,l.isNil)(o))throw Error(`Document editor API not available in iframe for document ID ${e}`);return o}isIframeRegistered(e){return this.iframes.has(e)}getAllRegisteredDocumentIds(){return Array.from(this.iframes.keys())}getIframeRef(e){var t;return null==(t=this.iframes.get(e))?void 0:t.iframeRef}markAsReady(e){let t=this.iframes.get(e);(0,l.isNil)(t)||t.isReady||(t.isReady=!0,t.readyCallbacks.forEach(t=>{try{t()}catch(t){console.error(`Error executing ready callback for document ${e}:`,t)}}),t.readyCallbacks.length=0)}isIframeReady(e){var t;return(null==(t=this.iframes.get(e))?void 0:t.isReady)??!1}onReady(e,t){let o=this.iframes.get(e);if((0,l.isNil)(o))throw Error(`No iframe found for document ID ${e}`);if(o.isReady)try{t()}catch(t){console.error(`Error executing immediate ready callback for document ${e}:`,t)}else o.readyCallbacks.push(t)}constructor(){this.iframes=new Map}};var s=o(58042),d=o(51344);let c=new class{markDraftAsModified(e){var t;let o=a.M_.getState(),r=(0,n.ei)(o,e);null!=r&&null!=(t=r.changes)&&t.documentEditable||setTimeout(()=>{a.M_.dispatch((0,n.D3)(e))},0)}getIframeApi(e){return i.getDocumentEditorApi(e)}getIframeDocument(e){return i.getIframeDocument(e)}isIframeAvailable(e){return i.isIframeRegistered(e)}registerIframe(e,t,o){i.register(e,t,o),this.autoSaveCallbacks.set(e,(0,l.debounce)(async()=>{await this.performAutoSave(e)},800)),i.onReady(e,()=>{var e;null==(e=o.current)||e.setReady(!0)})}unregisterIframe(e){i.unregister(e),this.autoSaveCallbacks.delete(e)}triggerValueChange(e,t,o){var r;this.markDraftAsModified(e),null==(r=this.autoSaveCallbacks.get(e))||r()}triggerValueChangeWithReload(e,t,o){this.markDraftAsModified(e),this.performAutoSaveAndReload(e)}triggerSaveAndReload(e){this.performAutoSaveAndReload(e)}notifyIframeReady(e){i.markAsReady(e)}notifyAreablockTypes(e,t,o){a.M_.dispatch((0,d.$$)({documentId:e,editableTypeId:t,areablockTypes:o}))}mergeAreablockTypes(e,t,o){a.M_.dispatch((0,d.rx)({documentId:e,editableTypeId:t,areablockTypes:o}))}notifyTimeSliderVisible(e,t){a.M_.dispatch((0,d._g)({documentId:e,visible:t}))}isIframeReady(e){return i.isIframeReady(e)}onReady(e,t){i.onReady(e,t)}async performAutoSave(e){try{await s.Gy.saveDocument(e,"autoSave")}catch(t){console.error(`Auto-save failed for document ${e}:`,t)}}async performAutoSaveAndReload(e){try{let t=i.getIframeRef(e);(0,l.isNil)(null==t?void 0:t.current)||t.current.setReloading(!0),await s.Gy.saveDocument(e,"autoSave"),(0,l.isNil)(null==t?void 0:t.current)||t.current.reload()}catch(o){console.error(`Auto-save and reload failed for document ${e}:`,o);let t=i.getIframeRef(e);(0,l.isNil)(null==t?void 0:t.current)||t.current.setReloading(!1)}}constructor(){this.autoSaveCallbacks=new Map}};var p=o(88358),u=o(25085);let m=new class{getTranslationResources(){let e={};return(p.A.languages??[]).forEach(t=>{let o=p.A.getResourceBundle(t,"translation");(0,l.isNil)(o)||(e[t]=o)}),e}getCurrentLanguage(){return p.A.language}getFallbackLanguage(){let e=p.A.options.fallbackLng;if(Array.isArray(e))return e[0]??"en";if((0,u.isNonEmptyString)(e))return e;if((0,l.isPlainObject)(e)){var t;return(null==(t=e.default)?void 0:t[0])??"en"}return"en"}reportMissingTranslation(e){p.A.emit("missingKey",[p.A.language],"translation",e,e)}};var f=o(41045),h=o(18453),g=o(31325),y=o(46096),w=o(81624),v=o(81558);let M=new class{async openAsset(e){await f.c.openAsset(e)}async openDocument(e){await h.J.openDocument(e)}async openDataObject(e){await g.j.openDataObject(e)}async openElement(e,t){let o={id:e};switch(t){case"asset":await this.openAsset(o);break;case"document":await this.openDocument(o);break;case"data-object":await this.openDataObject(o);break;default:console.warn(`Unknown element type: ${String(t)}`)}}},I=new class{async openAsset(e){await M.openAsset({id:e})}async openDocument(e){await M.openDocument({id:e})}async openDataObject(e){await M.openDataObject({id:e})}async openElement(e,t){await M.openElement(e,t)}openElementSelector(e){try{let{element:t}=(0,y.qH)();(0,w.GZ)()?t.openElementSelector(e):this.openElementSelectorDirectly(e)}catch(e){console.error("Failed to open element selector:",e)}}openElementSelectorDirectly(e){let t=new v.fB("openElementSelector",e);window.dispatchEvent(t)}openUploadModal(e){try{if((0,w.GZ)()){let{element:t}=(0,y.qH)();t.openUploadModal(e)}else this.openUploadModalDirectly(e)}catch(e){console.error("Failed to open upload modal:",e)}}openUploadModalDirectly(e){let t=new v.fB("openUploadModal",e);window.dispatchEvent(t)}openLinkModal(e){try{if((0,w.GZ)()){let{element:t}=(0,y.qH)();t.openLinkModal(e)}else this.openLinkModalDirectly(e)}catch(e){console.error("Failed to open link modal:",e)}}openLinkModalDirectly(e){let t=new v.fB("openLinkModal",e);window.dispatchEvent(t)}openCropModal(e){try{if((0,w.GZ)()){let{element:t}=(0,y.qH)();t.openCropModal(e)}else this.openCropModalDirectly(e)}catch(e){console.error("Failed to open crop modal:",e)}}openCropModalDirectly(e){let t=new v.fB("openCropModal",e);window.dispatchEvent(t)}openHotspotMarkersModal(e){try{if((0,w.GZ)()){let{element:t}=(0,y.qH)();t.openHotspotMarkersModal(e)}else this.openHotspotMarkersModalDirectly(e)}catch(e){console.error("Failed to open hotspot markers modal:",e)}}openHotspotMarkersModalDirectly(e){let t=new v.fB("openHotspotMarkersModal",e);window.dispatchEvent(t)}openVideoModal(e){try{if((0,w.GZ)()){let{element:t}=(0,y.qH)();t.openVideoModal(e)}else this.openVideoModalDirectly(e)}catch(e){console.error("Failed to open video modal:",e)}}openVideoModalDirectly(e){let t=new v.fB("openVideoModal",e);window.dispatchEvent(t)}locateInTree(e,t){try{let{element:o}=(0,y.qH)();(0,w.GZ)()?o.locateInTree(e,t):this.locateInTreeDirectly(e,t)}catch(e){console.error("Failed to locate in tree:",e)}}locateInTreeDirectly(e,t){let o=new v.fB("locateInTree",{id:e,elementType:t});window.dispatchEvent(o)}};var A=o(81607),k=o(70463);let D={container:r.kL},E={document:c,i18n:m,element:I,modal:A.Y,settings:k.a}},81607(e,t,o){o.d(t,{Y:()=>n});var r=o(35864);let a=null,n=new class{setModalInstance(e){a=e}getModalInstance(){if((0,r.isNull)(a))throw Error("Modal instance not initialized. Make sure App.useApp() is called in the parent window.");return a}constructor(){this.info=e=>this.getModalInstance().info(e),this.success=e=>this.getModalInstance().success(e),this.error=e=>this.getModalInstance().error(e),this.warning=e=>this.getModalInstance().warning(e),this.confirm=e=>this.getModalInstance().confirm(e)}}},70463(e,t,o){o.d(t,{a:()=>a});var r=o(72098);let a=new class{initialize(e){this.store=e}getSettings(){if(null===this.store)return console.warn("Settings API not initialized - Redux store not available"),null;try{return(0,r.mt)(this.store.getState())}catch(e){return console.error("Failed to get settings from store:",e),null}}areSettingsAvailable(){return null!==this.store&&null!==(0,r.mt)(this.store.getState())}constructor(){this.store=null}}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4530.72904f19.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js deleted file mode 100644 index ae1ed56236..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js +++ /dev/null @@ -1,121 +0,0 @@ -/*! For license information please see 4596.13ba10c0.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4596"],{74718(e,t,r){r.d(t,{w:()=>a});var i=r(82763),l=r(55638),o=r(60142),n=r(35864);class a{async run(e){let{messageBus:t}=e,r=await this.executeAction();if(!(0,n.isNull)(r)){let i=this.createHandler(r,e);t.registerHandler(i)}}async executeAction(){try{return await this.options.action()}catch(e){return console.error(e),(0,l.Ay)(new l.$g((0,o.t)("jobs.job.download-error"))),null}}createHandler(e,t){let{title:r,downloadUrl:l}=this.options;return new i.j({jobRunId:e,title:r,onRetry:async()=>{await this.run(t)},onCustomizeButtons:t=>{t.addSuccessButton({label:(0,o.t)("jobs.job.button-download"),handler:()=>{let t=document.createElement("a");t.href=l.replace("{jobRunId}",e.toString()),t.download="",t.click()}})}})}constructor(e){this.options=e}}},48346(e,t,r){r.r(t),r.d(t,{useCustomReportExportCsvMutation:()=>p,useCustomReportsChartQuery:()=>l,useCustomReportsColumnConfigListQuery:()=>a,useCustomReportsConfigAddMutation:()=>o,useCustomReportsConfigCloneMutation:()=>n,useCustomReportsConfigDeleteMutation:()=>d,useCustomReportsConfigGetTreeQuery:()=>c,useCustomReportsConfigUpdateMutation:()=>s,useCustomReportsGetTreeQuery:()=>m,useCustomReportsListDrillDownOptionsQuery:()=>i,useCustomReportsReportQuery:()=>u});let{useCustomReportsListDrillDownOptionsQuery:i,useCustomReportsChartQuery:l,useCustomReportsConfigAddMutation:o,useCustomReportsConfigCloneMutation:n,useCustomReportsColumnConfigListQuery:a,useCustomReportsConfigUpdateMutation:s,useCustomReportsConfigDeleteMutation:d,useCustomReportsReportQuery:u,useCustomReportsConfigGetTreeQuery:c,useCustomReportExportCsvMutation:p,useCustomReportsGetTreeQuery:m}=r(85075).FH.enhanceEndpoints({endpoints:{customReportExportCsv:{invalidatesTags:()=>[]}}})},85075(e,t,r){r.d(t,{Ay:()=>c,Ep:()=>p,FH:()=>o,Mm:()=>u,Q9:()=>g,V2:()=>n,Y1:()=>s,ab:()=>f,iJ:()=>h,im:()=>m,ke:()=>a,qf:()=>d,rn:()=>l});var i=r(53073);let l=["Bundle Custom Reports"],o=i.api.enhanceEndpoints({addTagTypes:l}).injectEndpoints({endpoints:e=>({customReportsListDrillDownOptions:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/drill-down-options",method:"POST",body:e.body}),providesTags:["Bundle Custom Reports"]}),customReportsChart:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/chart",method:"POST",body:e.body}),providesTags:["Bundle Custom Reports"]}),customReportsConfigAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/config/add",method:"POST",body:e.bundleCustomReportAdd}),invalidatesTags:["Bundle Custom Reports"]}),customReportsConfigClone:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/clone/${e.name}`,method:"POST",body:e.bundleCustomReportClone}),invalidatesTags:["Bundle Custom Reports"]}),customReportsColumnConfigList:e.query({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/column-config/${e.name}`,method:"POST",body:e.bundleCustomReportsDataSourceConfig}),providesTags:["Bundle Custom Reports"]}),customReportsConfigUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/${e.name}`,method:"PUT",body:e.bundleCustomReportUpdate}),invalidatesTags:["Bundle Custom Reports"]}),customReportsConfigDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/config/${e.name}`,method:"DELETE"}),invalidatesTags:["Bundle Custom Reports"]}),customReportsReport:e.query({query:e=>({url:`/pimcore-studio/api/bundle/custom-reports/report/${e.name}`}),providesTags:["Bundle Custom Reports"]}),customReportsConfigGetTree:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/tree/config",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["Bundle Custom Reports"]}),customReportExportCsv:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/export/csv",method:"POST",body:e.body}),invalidatesTags:["Bundle Custom Reports"]}),customReportsGetTree:e.query({query:e=>({url:"/pimcore-studio/api/bundle/custom-reports/tree",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["Bundle Custom Reports"]})}),overrideExisting:!1}),{useCustomReportsListDrillDownOptionsQuery:n,useCustomReportsChartQuery:a,useCustomReportsConfigAddMutation:s,useCustomReportsConfigCloneMutation:d,useCustomReportsColumnConfigListQuery:u,useCustomReportsConfigUpdateMutation:c,useCustomReportsConfigDeleteMutation:p,useCustomReportsReportQuery:m,useCustomReportsConfigGetTreeQuery:g,useCustomReportExportCsvMutation:h,useCustomReportsGetTreeQuery:f}=o},31428(e,t,r){r.d(t,{L:()=>n});var i=r(31635),l=r(62446),o=r(69186);class n extends o.P{}n=(0,i.Cg)([(0,l.injectable)()],n)},26841(e,t,r){r.d(t,{m:()=>i});let i={NAME:"name",DISPLAY:"display",EXPORT:"export",ORDER:"order",FILTER_TYPE:"filterType",DISPLAY_TYPE:"displayType",FILTER_DRILLDOWN:"filterDrilldown",WIDTH:"width",LABEL:"label",ACTION:"action"}},64594(e,t,r){r.d(t,{j:()=>o});var i=r(47867),l=r(35864);let o=()=>{let[e,t]=(0,i.useState)(null),[r,o]=(0,i.useState)(null),n=(0,i.useMemo)(()=>!((0,l.isNull)(e)||(0,l.isNull)(r))&&!(0,l.isEqual)(e,r),[e,r]);return{initialData:e,currentData:r,isDirty:n,initializeForm:e=>{t({...e}),o({...e})},updateFormData:e=>{o(t=>(0,l.isNull)(t)?null:{...t,...e})},markFormSaved:()=>{(0,l.isNull)(r)||t({...r})}}}},45721(e,t,r){r.d(t,{y:()=>l});var i=r(47867);let l=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],[t,r]=(0,i.useState)(!1),l=(0,i.useMemo)(()=>t?e:null==e?void 0:e.slice(0,5),[t,e]);return{isExpanded:t,visibleItems:l,toggle:()=>{r(!t)},initialVisibleCount:5}}},13194(e,t,r){r.d(t,{f:()=>a});var i=r(16124),l=r(35864);let o=[i.purple,i.magenta,i.geekblue,i.cyan,i.blue,i.green,i.yellow,i.lime,i.gold,i.volcano,i.orange,i.red],n=[4,6,8,2,5,3,7,1,9,0],a=e=>{let t=[],r=Object.values(o);for(let e of n)for(let i of r)(0,l.isUndefined)(i[e])||t.push(i[e]);let i=e-t.length;if(i>0){let e=(e=>{let t=[];for(let r=0;re.toString(16).padStart(2,"0")).join("");t.push(e)}return t})(i);t.push(...e)}return t}},83209(e,t,r){r.d(t,{n:()=>l,w:()=>o});var i,l=((i={}).OPEN_OBJECT="openObject",i.OPEN_DOCUMENT="openDocument",i.OPEN_ASSET="openAsset",i.OPEN_URL="openUrl",i);let o=e=>{switch(e){case"openObject":default:return"data-object";case"openDocument":return"document";case"openAsset":return"asset"}}},1019(e,t,r){r.d(t,{N:()=>m});var i=r(41630),l=r(44499),o=r(9653),n=r(85422),a=r(85075),s=r(35864),d=r(18196),u=r(63364),c=r(10600),p=r(20814);let m=async()=>{if((0,l.J)(o.F.Reports)){let e="Reporting",t="dynamic_report_",r=u.kL.get(c.K.mainNavRegistry),l=u.kL.get(c.K.widgetManager);try{let u=await i.M_.dispatch(a.FH.endpoints.customReportsGetTree.initiate({page:1,pageSize:999999},{forceRefetch:!0})).unwrap();if(!(0,s.isUndefined)(null==u?void 0:u.items)){let i=new Set;u.items.forEach(t=>{if(t.menuShortcut&&t.hasDataSourceConfig){let r=t.name,l=(0,d.Po)(t.group)?`${e}/${r}`:`${e}/${t.group}/${r}`;i.add(l),(0,d.Po)(t.group)||i.add(`${e}/${t.group}`)}}),r.getMainNavItems().filter(r=>{var l;return r.path.startsWith(`${e}/`)&&!i.has(r.path)&&(null==(l=r.id)?void 0:l.startsWith(t))}).forEach(e=>{r.unregisterMainNavItem(e.path)}),u.items.forEach((i,l)=>{if(i.menuShortcut&&i.hasDataSourceConfig){let a=i.name,s=(0,d.Po)(i.niceName)?a:i.niceName,u=(0,d.Po)(i.group)?`${e}/${a}`:`${e}/${i.group}/${a}`,c=i.iconClass,p=i.groupIconClass;(0,d.Po)(i.group)||r.registerMainNavItem({id:`${t}group_${i.group}`,path:`${e}/${i.group}`,label:i.group,order:300+l,permission:o.F.Reports,perspectivePermission:n.d.Reports,...!(0,d.Po)(p)&&{icon:p}}),r.registerMainNavItem({id:`${t}${a}-${l}`,path:u,label:s,group:i.group,order:300+l,permission:o.F.Reports,perspectivePermission:n.d.Reports,...!(0,d.Po)(c)&&{icon:c},...!(0,d.Po)(p)&&{groupIcon:p},widgetConfig:{component:"dynamic-report",config:{translationKey:"navigation.reports",icon:{type:"name",value:"pie-chart"},reportId:a}}})}}),l.registerWidget({name:"dynamic-report",component:p.o})}}catch(e){console.error("Failed to load reports for menu:",e)}}}},73304(e,t,r){r.d(t,{y:()=>a});var i=r(74848);r(47867);var l=r(29740),o=r(13755),n=r(64756);let a=e=>{let{isFetching:t,refetch:r}=e;return t?(0,i.jsx)(n.a,{padding:{x:"extra-small",y:"extra-small"},children:(0,i.jsx)(o.t,{})}):(0,i.jsx)(l.K,{icon:{value:"refresh"},onClick:async()=>{r()}})}},37895(e,t,r){var i;r.d(t,{U:()=>l});let l=(0,r(62446).injectable)()(i=class{constructor(){!function(e,t,r){var i;(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var i=r.call(e,t||"default");if("object"!=typeof i)return i;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[t]=r}(this,"id",void 0)}})||i},87276(e,t,r){r.d(t,{h:()=>ef,z:()=>eh});var i=r(20814),l=r(74848),o=r(47867),n=r(35864),a=r(154),s=r(91206),d=r(88286),u=r(96940),c=r(39808),p=r(21429),m=r(25750),g=r(81898),h=r(22014),f=r(99154),x=r(67914),v=r(73304),y=r(27820);let b=e=>{let{isFetching:t,refetch:r,handleReportAdd:i}=e,{t:o}=(0,p.useTranslation)();return(0,l.jsxs)(u.M,{children:[(0,l.jsx)(v.y,{isFetching:t,refetch:r}),(0,l.jsx)(y.J,{"data-testid":"reports-editor-add-button",icon:{value:"new"},onClick:i,type:"link",children:o("new")})]})};var j=r(43565),C=r(55638),R=r(48346);let w=(e,t)=>{(0,o.useEffect)(()=>{e&&!(0,n.isUndefined)(t)&&(0,C.Ay)(new C.hD(t))},[e,t])},T=()=>{let[e,{isError:t,error:r}]=(0,R.useCustomReportsConfigAddMutation)(),[i,{isError:l,error:o}]=(0,R.useCustomReportsConfigCloneMutation)(),[n,{isError:a,error:s}]=(0,R.useCustomReportsConfigDeleteMutation)(),[d,{isError:u,error:c}]=(0,R.useCustomReportsConfigUpdateMutation)();return w(t,r),w(l,o),w(a,s),w(u,c),{addReport:async t=>{await e(t)},cloneReport:async e=>{await i(e)},deleteReport:async e=>{await n(e)},updateReport:async e=>{await d(e)}}};var S=r(44241);let E=(0,S.createStyles)(e=>{let{css:t,token:r}=e;return{sidebarReportItem:t` - padding: 2px ${r.paddingXS}px; - - &:hover { - background-color: ${r.controlItemBgActiveHover}; - cursor: pointer; - } - `,sidebarReportItemIcon:t` - color: ${r.colorIconTree}; - `,sidebarReportItemTitle:t` - color: ${r.colorTextTreeElement}; - `,tabsContainer:t` - height: 100%; - - .ant-tabs-content, - .ant-tabs-tabpane { - height: 100%; - } - `,tabs:t` - .ant-tabs-tab { - padding: ${r.paddingSM}px ${r.paddingXXS}px !important; - } - `,dropdownButton:t` - padding: 0 ${r.paddingXS}px; - `}});var N=r(18196),P=r(13755),L=r(1019);let I=e=>{let{isLoading:t,refetch:r,isFetching:i,reportsList:a,handleOpenReport:d,handleCloseReport:u}=e,[v,y]=(0,o.useState)([]),[C,R]=(0,o.useState)(null);(0,o.useEffect)(()=>{(0,n.isNil)(null==a?void 0:a.items)||y(a.items)},[a]);let{styles:w}=E(),{t:S}=(0,p.useTranslation)(),I=(0,j.Vl)(),{addReport:k,cloneReport:D,deleteReport:$}=T(),F=[{icon:(0,l.jsx)(g.I,{value:"copy-03"}),key:"copy",label:S("clone"),onClick:()=>{I.input({label:S("reports.editor.clone.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:S("reports.editor.content.validation.message")},onOk:async e=>{var t;if((0,n.isNil)(C))return;await D({name:C.id,bundleCustomReportClone:{newName:e}});let{data:i}=await r();(0,L.N)();let l=null==i||null==(t=i.items)?void 0:t.find(t=>t.id===e);(0,n.isUndefined)(l)||d(l)}})}},{icon:(0,l.jsx)(g.I,{value:"trash"}),key:"delete",label:S("delete"),onClick:()=>{I.confirm({title:S("delete"),content:S("reports.editor.delete.content",{reportName:null==C?void 0:C.text}),onOk:async()=>{(0,n.isNil)(C)||$({name:C.id}).then(()=>{u(C.id),(0,L.N)()})}})}}];return(0,l.jsx)(s.s,{renderToolbar:(0,l.jsx)(b,{handleReportAdd:()=>{I.input({label:S("reports.editor.add.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:S("reports.editor.content.validation.message")},onOk:async e=>{var t;await k({bundleCustomReportAdd:{name:e}});let{data:i}=await r(),l=null==i||null==(t=i.items)?void 0:t.find(t=>t.id===e);(0,n.isUndefined)(l)||d(l)}})},isFetching:i,refetch:r}),children:(0,l.jsxs)(c.U,{loading:t,padded:!0,children:[(0,l.jsx)(x.D,{onChange:e=>{var t,r;t=e.target.value,(0,N.Po)(t)?y((null==a?void 0:a.items)??[]):y((null==a||null==(r=a.items)?void 0:r.filter(e=>e.text.toLowerCase().includes(t.toLowerCase())))??[])},placeholder:S("search"),withoutAddon:!0}),(0,l.jsx)(m.s,{className:"h-full",gap:"mini",justify:i?"center":"start",vertical:!0,children:i?(0,l.jsx)(m.s,{align:"center",justify:"center",children:(0,l.jsx)(P.t,{asContainer:!0,tip:"Loading"})}):(0,l.jsx)(l.Fragment,{children:v.map(e=>(0,l.jsx)(f.m,{menu:{items:F},onOpenChange:t=>{t&&R(e)},trigger:["contextMenu"],children:(0,l.jsxs)(m.s,{align:"center",className:w.sidebarReportItem,"data-testid":`reports-editor-sidebar-item-${e.id}`,gap:"mini",onClick:()=>{d(e)},children:[(0,l.jsx)(g.I,{className:w.sidebarReportItemIcon,value:"chart-scatter"}),(0,l.jsx)(h.E,{className:w.sidebarReportItemTitle,children:e.text})]})},e.id))})})]})})};var k=r(8255),D=r(64594),$=r(37836),F=r(27994),M=r(57231),U=r(80632),A=r(18848);let O=()=>{let{t:e}=(0,p.useTranslation)(),t=e=>{let{label:t,name:r,disabled:i=!1,tooltip:o}=e;return(0,l.jsx)(M.lV.Item,{label:t,name:r,tooltip:o,children:(0,l.jsx)(U.p,{disabled:i})})};return(0,l.jsxs)(k.L.Panel,{title:e("reports.editor.general-settings.title"),children:[t({label:e("reports.editor.general-settings.name-label"),name:"name",disabled:!0}),t({label:e("reports.editor.general-settings.display-name-label"),name:"niceName"}),t({label:e("reports.editor.general-settings.icon-class-label"),name:"iconClass"}),t({label:e("reports.editor.general-settings.group-label"),name:"group",tooltip:e("reports.editor.general-settings.group-tooltip")}),t({label:e("reports.editor.general-settings.report-class-label"),name:"reportClass"}),t({label:e("reports.editor.general-settings.group-icon-class-label"),name:"groupIconClass"}),(0,l.jsx)(M.lV.Item,{name:"menuShortcut",children:(0,l.jsx)(A.d,{labelRight:e("reports.editor.general-settings.shortcut-menu-label")})})]})};var B=r(63364),_=r(10600),z=r(1993);let q=e=>{var t;let{form:r,currentData:i,updateFormData:a}=e,{t:s}=(0,p.useTranslation)(),{styles:d}=E(),[u,c]=(0,o.useState)(null==(t=i.dataSourceConfig)?void 0:t.type),g=(0,n.isUndefined)(u),x=B.kL.get(_.K["DynamicTypes/CustomReportDefinitionRegistry"]),v=x.getDynamicTypes(),b=g?void 0:x.getDynamicType(u),j=(0,o.useMemo)(()=>v.map(e=>({key:e.id,label:e.getLabel()})),[v]),C=e=>{null==r||r.resetFields(["dataSourceConfig"]),null==r||r.setFieldsValue({dataSourceConfig:{type:e}}),null==a||a({...i,dataSourceConfig:{type:e}}),c(e)};return(0,l.jsxs)(k.L.Panel,{extra:g&&(0,l.jsx)(f.m,{menu:{items:j,onClick:e=>{C(e.key)}},trigger:["click"],children:(0,l.jsx)(y.J,{className:d.dropdownButton,"data-testid":"report-source-add-button",icon:{value:"plus-circle"},children:s("add")})}),extraPosition:"start",title:s("reports.editor.source-definition.title"),children:[g&&(0,l.jsx)(h.E,{type:"secondary",children:s("reports.editor.source-definition.no-content")}),!g&&(0,l.jsx)(m.s,{gap:"extra-small",vertical:!0,children:(0,l.jsxs)(M.lV.Group,{name:"dataSourceConfig",children:[(0,l.jsx)(M.lV.Item,{label:s("reports.editor.source-definition.select-source-definition"),name:"type",children:(0,l.jsx)(z.l,{"data-testid":"report-source-type-select",fieldNames:{label:"label",value:"key"},onChange:e=>{C(e)},options:j})}),null==b?void 0:b.getCustomReportData({currentData:i,updateFormData:a,form:r})]})})]})};var V=r(88754),W=r(14013),G=r(89507),J=r(26841),K=r(43425),Q=r(75915);let H=(0,S.createStyles)(e=>{let{css:t,token:r}=e;return{grid:t` - position: relative; - width: 100%; - max-height: 500px; - overflow: auto; - - tbody { - .default-cell__content { - height: 32px; - } - } - `,permissionLabel:t` - color: ${r.colorTextLabel}; - `,permissionIcon:t` - color: ${r.colorTextLabel}; - `,permissionUpdateButton:t` - color: ${r.Button.defaultColor}; - - .pimcore-icon { - color: ${r.Button.defaultColor}; - } - - &:hover { - cursor: pointer; - } - `,permissionUpdateButtonText:t` - color: ${r.Button.defaultColor}; - `,permissionTag:t` - .ant-tag { - background-color: ${r.Colors.Neutral.Fill.colorFillTertiary}; - } - `,chartSelect:t` - width: 100%; - max-width: 100% !important; - `}}),X=e=>{let{currentData:t,updateFormData:r}=e,{t:i}=(0,p.useTranslation)(),{styles:a}=H(),s=(()=>{let e=(0,G.createColumnHelper)(),{t}=(0,p.useTranslation)(),r=(e,t)=>(0,Q.f)(e,{editable:t});return[e.accessor(J.m.NAME,{header:t("reports.editor.manage-column-configuration.name"),meta:{type:"text-cell"}}),e.accessor(J.m.DISPLAY,{header:t("reports.editor.manage-column-configuration.display"),meta:{type:"checkbox",editable:!0}}),e.accessor(J.m.EXPORT,{header:t("reports.editor.manage-column-configuration.export"),meta:{type:"checkbox",editable:!0}}),e.accessor(J.m.ORDER,{header:t("reports.editor.manage-column-configuration.order"),cell:e=>{let t=e.row.original.disableOrderBy;return(0,l.jsx)(K.A,{...r(e,!t)})},meta:{type:"checkbox"}}),e.accessor(J.m.FILTER_TYPE,{header:t("reports.editor.manage-column-configuration.filter-type"),cell:e=>{let t=e.row.original.disableFilterable;return(0,l.jsx)(K.A,{...r(e,!t)})},meta:{type:"select",config:{options:[{label:t("reports.editor.manage-column-configuration.filter-type.empty"),value:""},{label:t("reports.editor.manage-column-configuration.filter-type.text"),value:"string"},{label:t("reports.editor.manage-column-configuration.filter-type.number"),value:"numeric"},{label:t("reports.editor.manage-column-configuration.filter-type.date"),value:"date"},{label:t("reports.editor.manage-column-configuration.filter-type.bool"),value:"boolean"}]}}}),e.accessor(J.m.DISPLAY_TYPE,{header:t("reports.editor.manage-column-configuration.display-type"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.display-type.none"),value:""},{label:t("reports.editor.manage-column-configuration.display-type.text"),value:"text"},{label:t("reports.editor.manage-column-configuration.display-type.date"),value:"date"},{label:t("reports.editor.manage-column-configuration.display-type.hide"),value:"hide"}]}}}),e.accessor(J.m.FILTER_DRILLDOWN,{header:t("reports.editor.manage-column-configuration.filter-drilldown"),cell:e=>{let t=e.row.original.disableDropdownFilterable;return(0,l.jsx)(K.A,{...r(e,!t)})},meta:{type:"select",config:{options:[{label:t("reports.editor.manage-column-configuration.filter-drilldown.empty"),value:""},{label:t("reports.editor.manage-column-configuration.filter-drilldown.only-filter"),value:"only_filter"},{label:t("reports.editor.manage-column-configuration.filter-drilldown.filter-and-show"),value:"filter_and_show"}]}}}),e.accessor(J.m.WIDTH,{header:t("reports.editor.manage-column-configuration.width"),meta:{type:"number",editable:!0}}),e.accessor(J.m.LABEL,{header:t("reports.editor.manage-column-configuration.label"),cell:e=>{let t=e.row.original.disableLabel;return(0,l.jsx)(K.A,{...r(e,!t)})},meta:{type:"text-cell"}}),e.accessor(J.m.ACTION,{header:t("reports.editor.manage-column-configuration.action"),meta:{type:"select",editable:!0,config:{options:[{label:t("reports.editor.manage-column-configuration.action.none"),value:""},{label:t("reports.editor.manage-column-configuration.action.open-document"),value:"openDocument"},{label:t("reports.editor.manage-column-configuration.action.open-asset"),value:"openAsset"},{label:t("reports.editor.manage-column-configuration.action.open-object"),value:"openObject"},{label:t("reports.editor.manage-column-configuration.action.open-url"),value:"openUrl"}]}}})]})(),d=(0,o.useMemo)(()=>(null==t?void 0:t.columnConfigurations)??[],[t]);return(0,l.jsx)(k.L.Panel,{title:i("reports.editor.manage-column-configuration.title"),children:(0,l.jsx)(W.x,{autoWidth:!0,className:a.grid,columns:s,data:d,enableRowDrag:!0,enableRowVirtualizer:!0,handleDragEnd:e=>{let{active:i,over:l}=e;if(!(0,n.isNil)(i)&&!(0,n.isNil)(l)&&!(0,n.isEqual)(i.id,l.id)){let e=null==d?void 0:d.findIndex(e=>e.id===i.id),o=null==d?void 0:d.findIndex(e=>e.id===l.id);if(-1===e||-1===o)return;let n=(0,V.arrayMove)(d,e,o);null==r||r({...t,columnConfigurations:n})}},onUpdateCellData:e=>{let{rowIndex:i,columnId:l,value:o}=e,n=null==d?void 0:d.map((e,t)=>t===i?{...e,[l]:o}:e);null==r||r({...t,columnConfigurations:n})},resizable:!0,setRowId:e=>e.id})})};var Y=r(91669);let Z=e=>{let{currentData:t}=e,{t:r}=(0,p.useTranslation)(),{styles:i}=H(),n=[{value:"",label:r("reports.editor.chart-settings.chart-type.none")},{value:"pie",label:r("reports.editor.chart-settings.chart-type.pie-chart")},{value:"line",label:r("reports.editor.chart-settings.chart-type.line-chart")},{value:"bar",label:r("reports.editor.chart-settings.chart-type.bar-chart")}],a=(0,o.useMemo)(()=>t.columnConfigurations.map(e=>({value:e.name,label:e.name})),[t]),s=e=>{let{label:t,name:r,mode:o}=e;return(0,l.jsx)(M.lV.Item,{label:t,name:r,children:(0,l.jsx)(z.l,{className:i.chartSelect,"data-testid":`report-chart-${r}`,mode:o,options:a})})};return(0,l.jsxs)(k.L.Panel,{title:r("reports.editor.chart-settings.title"),children:[(0,l.jsx)(M.lV.Item,{label:r("reports.editor.chart-settings.chart-type"),name:"chartType",children:(0,l.jsx)(z.l,{className:i.chartSelect,"data-testid":"report-chart-type",options:n})}),(0,l.jsx)(Y.b,{condition:e=>"pie"===e.chartType,watchFields:["chartType"],children:(0,l.jsxs)(k.L.Panel,{border:!0,contentPadding:{top:"none",right:"small",bottom:"small",left:"small"},theme:"fieldset",title:r("reports.editor.chart-settings.settings"),children:[s({label:r("reports.editor.chart-settings.pie-label"),name:"pieLabelColumn"}),s({label:r("reports.editor.chart-settings.pie-data"),name:"pieColumn"})]})}),(0,l.jsx)(Y.b,{condition:e=>"line"===e.chartType,watchFields:["chartType"],children:(0,l.jsxs)(k.L.Panel,{border:!0,theme:"fieldset",title:r("reports.editor.chart-settings.settings"),children:[s({label:r("reports.editor.chart-settings.x-axis"),name:"xAxis"}),s({label:r("reports.editor.chart-settings.y-axis"),name:"yAxis",mode:"multiple"})]})}),(0,l.jsx)(Y.b,{condition:e=>"bar"===e.chartType,watchFields:["chartType"],children:(0,l.jsxs)(k.L.Panel,{border:!0,theme:"fieldset",title:r("reports.editor.chart-settings.settings"),children:[s({label:r("reports.editor.chart-settings.x-axis"),name:"xAxis"}),s({label:r("reports.editor.chart-settings.y-axis"),name:"yAxis",mode:"multiple"})]})})]})};var ee=r(73612),et=r(52178),er=r(91191),ei=r(57502);let el=e=>{let t,r,i,{currentData:a,updateFormData:s}=e,{t:d}=(0,p.useTranslation)(),{styles:u}=H(),{data:c}=(0,ee.Pd)(),{data:f}=(0,et.a_)(),[x,v]=(0,o.useState)(a.sharedGlobally),[y,b]=(0,o.useState)(!1),j=()=>{b(!1)},C=(0,o.useMemo)(()=>a.sharedUserNames.map(e=>{var t,r;return null==f||null==(r=f.items)||null==(t=r.find(t=>t.username===e))?void 0:t.id}).filter(e=>!(0,n.isUndefined)(e)),[a.sharedUserNames]),R=(0,o.useMemo)(()=>a.sharedRoleNames.map(e=>{var t,r;return null==c||null==(r=c.items)||null==(t=r.find(t=>t.name===e))?void 0:t.id}).filter(e=>!(0,n.isUndefined)(e)),[a.sharedRoleNames]),w=(e,t)=>(0,l.jsx)(g.I,{className:u.permissionIcon,options:{width:t??12,height:t??12},value:e});return(0,l.jsxs)(k.L.Panel,{title:d("reports.editor.permissions.title"),children:[(0,l.jsx)(M.lV.Item,{name:"sharedGlobally",children:(0,l.jsx)(A.d,{labelLeft:(0,l.jsx)(h.E,{children:d("grid.configuration.shared")}),labelRight:x?(0,l.jsx)(h.E,{className:u.permissionLabel,children:d("common.globally")}):(0,l.jsxs)(l.Fragment,{children:[(0,l.jsxs)(m.s,{gap:10,children:[(0,l.jsxs)(h.E,{className:u.permissionLabel,children:[w("user")," ",d("user-management.user")," | ",w("shield")," ",d("user-management.role")]}),(0,l.jsxs)(m.s,{align:"center",className:u.permissionUpdateButton,gap:8,onClick:()=>{b(!y)},children:[w("edit",16),(0,l.jsx)(h.E,{className:u.permissionUpdateButtonText,children:d("button.add-edit")})]})]}),y&&(0,l.jsx)(er.p,{handleApplyChanges:e=>{let{sharedUsers:t,sharedRoles:r}=e,i=t.map(e=>{var t,r;return null==f||null==(r=f.items)||null==(t=r.find(t=>t.id===e))?void 0:t.username}).filter(e=>!(0,n.isUndefined)(e)),l=r.map(e=>{var t,r;return null==c||null==(r=c.items)||null==(t=r.find(t=>t.id===e))?void 0:t.name}).filter(e=>!(0,n.isUndefined)(e));null==s||s({...a,sharedUserNames:i,sharedRoleNames:l}),j()},handleClose:j,initialSharedRoles:R,initialSharedUsers:C,placement:"top",roleList:c,userList:f})]}),onChange:e=>{v(e)}})}),!x&&(0,l.jsx)(ei.L,{itemGap:"mini",list:(t=[],r=[],i=e=>{let{label:t,iconName:r}=e;return{children:(0,l.jsx)(h.E,{ellipsis:!0,style:{maxWidth:"148px"},type:"secondary",children:t}),icon:w(r),bordered:!1}},a.sharedUserNames.forEach(e=>{t.push(i({label:e,iconName:"user"}))}),a.sharedRoleNames.forEach(e=>{r.push(i({label:e,iconName:"shield"}))}),[t,r]),tagListItemClassNames:u.permissionTag})]})},eo=e=>{let{report:t,isActive:r,modifiedReports:i,setModifiedReports:a}=e,{isLoading:s,data:d,isFetching:u,refetch:m}=(0,R.useCustomReportsReportQuery)({name:t.id}),{initializeForm:g,currentData:h,isDirty:f,updateFormData:x,markFormSaved:y}=(0,D.j)(),{updateReport:b}=T(),[j]=M.lV.useForm(),[C,w]=(0,o.useState)(!1),S=null==h?void 0:h.dataSourceConfig,{t:E}=(0,p.useTranslation)(),N=(0,o.useRef)(void 0);return(0,o.useEffect)(()=>{(0,n.isUndefined)(d)||g(d)},[d]),(0,o.useEffect)(()=>{let e=N.current,t=null==S?void 0:S.type;N.current=t,(0,n.isNull)(h)||(0,n.isUndefined)(t)||(0,n.isUndefined)(e)||e===t||(j.resetFields(),null==x||x({...h,columnConfigurations:[]}))},[null==S?void 0:S.type]),(0,o.useEffect)(()=>{f?a([...i,t.id]):a(i.filter(e=>e!==t.id))},[f]),(0,l.jsx)(c.U,{loading:s,padded:!0,padding:{top:"none",right:"extra-small",bottom:"none",left:"extra-small"},children:!(0,n.isNull)(h)&&(0,l.jsxs)(k.L,{formProps:{form:j,initialValues:h,onValuesChange:(e,t)=>{null==x||x({...h,...t})}},children:[(0,l.jsx)(O,{}),(0,l.jsx)(q,{currentData:h,form:j,updateFormData:x}),(0,l.jsx)(X,{currentData:h,updateFormData:x}),(0,l.jsx)(Z,{currentData:h}),(0,l.jsx)(el,{currentData:h,updateFormData:x}),r&&(0,l.jsx)($.Z,{targetId:ed,children:(0,l.jsx)(v.y,{isFetching:u,refetch:m})}),r&&(0,l.jsx)($.Z,{targetId:eu,children:(0,l.jsx)(F.$,{"data-testid":"reports-editor-save-button",disabled:!f,loading:C,onClick:()=>{var e;if((0,n.isNull)(h))return;w(!0);let r={...h,...{dataSourceConfig:(0,n.castArray)((null==h?void 0:h.dataSourceConfig)??[])},...""===h.chartType?{xAxis:"",yAxis:[],pieColumn:"",pieLabelColumn:""}:{pieColumn:h.pieColumn,pieLabelColumn:h.pieLabelColumn,xAxis:h.xAxis,yAxis:(0,n.isNull)(h.yAxis)?[]:(0,n.castArray)(h.yAxis)},...{columnConfigurations:null==h||null==(e=h.columnConfigurations)?void 0:e.map(e=>{let{disableLabel:t,disableDropdownFilterable:r,disableOrderBy:i,disableFilterable:l,...o}=e;return o})},...h.sharedGlobally&&{sharedRoleNames:[],sharedUserNames:[]}};b({name:t.id,bundleCustomReportUpdate:r}).then(()=>{y(),w(!1),(0,L.N)()})},type:"primary",children:E("save")})})]},null==S?void 0:S.type)})};var en=r(76103),ea=r(44499),es=r(9653);let ed="reports-editor-toolbar-refetch-btn",eu="reports-editor-toolbar-save-btn",ec=()=>{let e=(0,ea.J)(es.F.ReportsConfig),{data:t,isLoading:r,isFetching:i,refetch:p}=(0,R.useCustomReportsConfigGetTreeQuery)({page:1,pageSize:9999},{skip:!e}),[m,g]=(0,o.useState)([]),[h,f]=(0,o.useState)(void 0),[x,v]=(0,o.useState)([]),{styles:y}=E(),b=(0,o.useMemo)(()=>{var e;let r=new Set(null==t||null==(e=t.items)?void 0:e.map(e=>e.id));return m.filter(e=>r.has(e.id)).map(e=>({key:e.id,label:`${e.text} ${x.includes(e.id)?"*":""}`,children:(0,l.jsx)(eo,{isActive:h===e.id,modifiedReports:x,report:e,setModifiedReports:v})}))},[t,m,h,x]),j=e=>{let t=m.findIndex(t=>(null==t?void 0:t.id)===e),r=m.filter(t=>t.id!==e);if(e===h){let e=m[t-1],r=m[t+1],i=null==e?void 0:e.id,l=(0,n.isUndefined)(r)||null==r?void 0:r.id;f((0,n.isUndefined)(e)?l:i)}g(r)};return(0,l.jsx)(a.v,{leftItem:{children:(0,l.jsx)(I,{handleCloseReport:j,handleOpenReport:e=>{m.some(t=>t.id===e.id)||g([...m,e]),f(e.id)},isFetching:i,isLoading:r,refetch:p,reportsList:t})},rightItem:{children:(0,n.isUndefined)(h)?(0,l.jsx)(c.U,{none:!0}):(0,l.jsx)(s.s,{renderToolbar:(0,l.jsxs)(u.M,{justify:"space-between",children:[(0,l.jsx)(en.J,{id:ed}),(0,l.jsx)(en.J,{id:eu})]}),children:(0,l.jsx)(d.t,{activeKey:h,className:y.tabs,hasStickyHeader:!0,items:b,onChange:e=>{f(e)},onClose:j,rootClassName:y.tabsContainer})})}})};var ep=r(27755),em=r(85422);let eg="Reporting",eh={name:"Reports",id:"reports",component:"reports",config:{translationKey:"navigation.reports",icon:{type:"name",value:"pie-chart"}}},ef={name:"Custom Reports",id:"custom-reports",component:"custom-reports",config:{translationKey:"navigation.custom-reports",icon:{type:"name",value:"chart-scatter"}}};ep.s.registerModule({onInit:()=>{let e=B.kL.get(_.K.mainNavRegistry);B.kL.get(_.K["DynamicTypes/CustomReportDefinitionRegistry"]).registerDynamicType(B.kL.get(_.K["DynamicTypes/CustomReportDefinition/Sql"])),e.registerMainNavItem({path:`${eg}/Reports`,label:"navigation.reports",className:"item-style-modifier",order:100,dividerBottom:!0,permission:es.F.Reports,perspectivePermission:em.d.Reports,widgetConfig:eh}),e.registerMainNavItem({path:`${eg}/Custom Reports`,label:"navigation.custom-reports",order:200,dividerBottom:!0,permission:es.F.ReportsConfig,perspectivePermission:em.d.CustomReportsConfiguration,widgetConfig:ef});let t=B.kL.get(_.K.widgetManager);t.registerWidget({name:"reports",component:i.o}),t.registerWidget({name:"custom-reports",component:ec})}})},98655(e,t,r){r.d(t,{E:()=>f});var i=r(74848),l=r(47867),o=r(11195),n=r(35864),a=r(25750),s=r(13194),d=r(66384),u=r(45721),c=r(28387),p=r(53636);let m=(0,r(44241).createStyles)(e=>{let{css:t,token:r}=e;return{tooltipTitle:t` - color: ${r.colorTextTertiary}; - `,tooltipItemValue:t` - color: ${r.colorText}; - `,circle:t` - width: 8px; - height: 8px; - border-radius: 50%; - `}}),g="name",h="value",f=e=>{let{chartData:t,reportData:r,chartLabelMap:f,chartConfig:x,showLegend:v=!0}=e,{styles:y}=m(),b=(0,l.useRef)(null),{width:j}=(0,p.A)(b),[C]=(0,l.useState)((0,s.f)(t.length)),R=(null==r?void 0:r.xAxis)??"",w=null==r?void 0:r.yAxis,T=t.flatMap(e=>Object.entries(e).filter(e=>{let[t]=e;return t!==R&&(null==w?void 0:w.includes(t))}).map(t=>{let[r,i]=t;return{[R]:null==e?void 0:e[R],[g]:r,[h]:(0,n.toNumber)(i)}})),S=[...new Set(T.map(e=>e.name))],{isExpanded:E,visibleItems:N,toggle:P,initialVisibleCount:L}=(0,u.y)(S),[I,k]=(0,l.useState)(S),D={...Object.fromEntries(S.map((e,t)=>[e,C[t]]))},$=(0,l.useMemo)(()=>T.filter(e=>I.includes(e.name)),[T,I]),F=(0,l.useMemo)(()=>({data:$,xField:R,yField:h,seriesField:g,colorField:g,scale:{color:{range:C}},height:250,point:{shapeField:"circle",sizeField:4},legend:!1,interaction:{tooltip:{bounding:{x:20,y:20,height:250,width:j},render:(e,t)=>{let{title:r,items:l}=t;return(0,i.jsxs)(a.s,{gap:"mini",vertical:!0,children:[(0,i.jsx)("div",{className:y.tooltipTitle,children:r}),(0,i.jsx)(a.s,{vertical:!0,children:l.map(e=>(0,i.jsxs)(a.s,{gap:"small",justify:"space-between",children:[(0,i.jsxs)(a.s,{align:"center",gap:"mini",children:[(0,i.jsx)("div",{className:y.circle,style:{backgroundColor:e.color}}),(0,i.jsx)("div",{children:f[e.name]??e.name})]}),(0,i.jsx)("div",{className:y.tooltipItemValue,children:e.value})]},e.name))})]})}}}}),[$,j]),M=void 0===x?F:(0,n.merge)({},F,x);return(0,i.jsxs)("div",{className:"m-t-mini",children:[(0,i.jsx)("div",{ref:b,style:{overflowX:"hidden"},children:(0,i.jsx)(o.A,{...M})}),v?(0,i.jsx)(a.s,{gap:"mini",justify:"center",wrap:"wrap",children:N.map((e,t)=>{let r=I.includes(e);return(0,i.jsx)(d.J,{disabled:!r,handleClick:()=>{k(t=>t.includes(e)?t.filter(t=>t!==e):[...t,e])},label:f[e]??e,markerColor:D[e]},`${t}-${e}`)})}):null,(null==S?void 0:S.length)>L&&(0,i.jsx)(c.x,{isExpanded:E,toggle:P})]})}},66384(e,t,r){r.d(t,{J:()=>u});var i=r(74848);r(47867);var l=r(8651),o=r.n(l),n=r(35864),a=r(25750),s=r(22014);let d=(0,r(44241).createStyles)(e=>{let{css:t,token:r}=e;return{legendItem:t` - padding: 0 ${r.paddingXXS}px; - border: 1px solid ${r.colorBorderTertiary}; - border-radius: ${r.borderRadiusSM}px; - cursor: pointer; - `,legendItemDisabled:t` - background-color: ${r.colorBorderTertiary}; - opacity: 0.5; - `,circle:t` - margin-right: ${r.marginXXS}px; - width: 12px; - height: 12px; - border-radius: 50%; - `}}),u=e=>{let{label:t,value:r,disabled:l,markerColor:u,handleClick:c}=e,{styles:p}=d();return(0,i.jsxs)(a.s,{align:"center",className:o()(p.legendItem,{[p.legendItemDisabled]:l}),onClick:c,children:[(0,i.jsx)("div",{className:p.circle,style:{background:u}}),(0,i.jsxs)(a.s,{gap:"small",children:[(0,i.jsx)(s.E,{type:"secondary",children:t}),!(0,n.isUndefined)(r)&&(0,i.jsx)(s.E,{children:r})]})]})}},59740(e,t,r){r.d(t,{b:()=>f});var i=r(74848),l=r(47867),o=r(58683),n=r(35864),a=r(25750),s=r(66384),d=r(13194),u=r(45721),c=r(28387),p=r(53636);let m=(0,r(44241).createStyles)(e=>{let{css:t,token:r}=e;return{tooltipTitle:t` - color: ${r.colorTextTertiary}; - `,tooltipItemValue:t` - color: ${r.colorText}; - `,circle:t` - width: 8px; - height: 8px; - border-radius: 50%; - `}}),g="name",h="value",f=e=>{let{chartData:t,reportData:r,chartLabelMap:f,chartConfig:x,showLegend:v=!0}=e,{styles:y}=m(),b=(0,l.useRef)(null),{width:j}=(0,p.A)(b),[C]=(0,l.useState)((0,d.f)(t.length)),R=(null==r?void 0:r.xAxis)??"",w=null==r?void 0:r.yAxis,T=t.flatMap((e,t)=>Object.entries(e).filter(e=>{let[t]=e;return t!==R&&(null==w?void 0:w.includes(t))}).map(t=>{let[r,i]=t;return{[R]:null==e?void 0:e[R],[g]:r,[h]:(0,n.toNumber)(i)}})),S=[...new Set(T.map(e=>e.name))],{isExpanded:E,visibleItems:N,toggle:P,initialVisibleCount:L}=(0,u.y)(S),[I,k]=(0,l.useState)(S),D={...Object.fromEntries(S.map((e,t)=>[e,C[t]]))},$=(0,l.useMemo)(()=>T.filter(e=>I.includes(e.name)),[T,I]),F=(0,l.useMemo)(()=>({data:$,xField:R,yField:h,colorField:g,scale:{color:{range:C}},height:250,point:{shapeField:"circle",sizeField:4},legend:!1,interaction:{tooltip:{bounding:{x:20,y:20,height:250,width:j},render:(e,t)=>{let{title:r,items:l}=t;return(0,i.jsxs)(a.s,{gap:"mini",vertical:!0,children:[(0,i.jsx)("div",{className:y.tooltipTitle,children:r}),(0,i.jsx)(a.s,{vertical:!0,children:l.map(e=>(0,i.jsxs)(a.s,{gap:"small",justify:"space-between",children:[(0,i.jsxs)(a.s,{align:"center",gap:"mini",children:[(0,i.jsx)("div",{className:y.circle,style:{backgroundColor:e.color}}),(0,i.jsx)("div",{children:f[e.name]??e.name})]}),(0,i.jsx)("div",{className:y.tooltipItemValue,children:e.value})]},e.name))})]})}}}}),[$,j]),M=void 0===x?F:(0,n.merge)({},F,x);return(0,i.jsxs)("div",{className:"m-t-mini",children:[(0,i.jsx)("div",{ref:b,style:{overflowX:"hidden"},children:(0,i.jsx)(o.A,{...M})}),v?(0,i.jsx)(a.s,{gap:"mini",justify:"center",wrap:"wrap",children:N.map((e,t)=>{let r=I.includes(e);return(0,i.jsx)(s.J,{disabled:!r,handleClick:()=>{k(t=>t.includes(e)?t.filter(t=>t!==e):[...t,e])},label:f[e]??e,markerColor:D[e]},`${t}-${e}`)})}):null,(null==S?void 0:S.length)>L&&(0,i.jsx)(c.x,{isExpanded:E,toggle:P})]})}},54791(e,t,r){r.d(t,{r:()=>h});var i=r(74848),l=r(47867),o=r(59181),n=r(35864),a=r(13194),s=r(25750),d=r(66384),u=r(45721),c=r(28387);let p="type",m="value",g="color",h=e=>{let{reportData:t,chartData:r,chartConfig:h,showLegend:f=!0}=e,x=(null==t?void 0:t.pieLabelColumn)??"",v=(null==t?void 0:t.pieColumn)??"",[y]=(0,l.useState)((0,a.f)(r.length)),b=(0,l.useMemo)(()=>r.map((e,t)=>({[p]:null==e?void 0:e[x],[m]:null==e?void 0:e[v],[g]:y[t]})),[r,x,v,y]),{isExpanded:j,visibleItems:C,toggle:R,initialVisibleCount:w}=(0,u.y)(b),[T,S]=(0,l.useState)(null),[E,N]=(0,l.useState)([]),P=(0,l.useMemo)(()=>(0,n.isEmpty)(E)?b:b.filter(e=>!E.includes(e[p])),[b,E]),L=(0,l.useMemo)(()=>P.reduce((e,t)=>e+t[m],0),[P]);(0,l.useEffect)(()=>{null!==T&&T.chart.changeData(P)},[P,T]);let I={data:b,colorField:g,angleField:m,autoFit:!0,height:230,scale:{color:{type:"identity"}},innerRadius:.6,legend:!1,onReady:e=>{S(e)},tooltip:{items:[e=>({name:`${e.type}`,value:`${e.value} (${Math.round(100*e.value/L)}%)`})]},annotations:[{type:"text",data:[],style:{text:L.toString(),x:"50%",y:"50%",textAlign:"center",fontSize:40,fontStyle:"bold"}}]},k=void 0===h?I:(0,n.merge)({},I,h);return(0,i.jsxs)("div",{children:[(0,i.jsx)(o.A,{...k}),f?(0,i.jsx)(s.s,{gap:"mini",justify:"center",wrap:"wrap",children:null==C?void 0:C.map((e,t)=>{let r=E.includes(e.type);return(0,i.jsx)(d.J,{disabled:r,handleClick:()=>{var t;t=e.type,N(e=>e.includes(t)?e.filter(e=>e!==t):[...e,t])},label:e.type,markerColor:e.color,value:e.value},`${t}-${e.type}`)})}):null,(null==b?void 0:b.length)>w&&(0,i.jsx)(c.x,{isExpanded:j,toggle:R})]})}},28387(e,t,r){r.d(t,{x:()=>a});var i=r(74848);r(47867);var l=r(21429),o=r(25750),n=r(27820);let a=e=>{let{isExpanded:t,toggle:r}=e,{t:a}=(0,l.useTranslation)();return(0,i.jsx)(o.s,{className:"m-t-mini",justify:"center",children:(0,i.jsx)(n.J,{icon:{value:t?"chevron-up":"chevron-down"},iconPlacement:"right",onClick:r,type:"link",children:a(t?"reports.show-fewer-labels":"reports.show-all-labels")})})}},97233(e,t,r){r.d(t,{V:()=>c});var i=r(74848);r(47867);var l=r(35864),o=r(86569),n=r(39808),a=r(54791),s=r(59740),d=r(98655),u=r(18196);let c=e=>{let{chartData:t,reportData:r,chartConfig:c}=e;if((0,l.isUndefined)(r)||(0,l.isUndefined)(t))return(0,i.jsx)(n.U,{loading:!0});let p=(null==r?void 0:r.chartType)??"default",m=(0,l.fromPairs)((0,l.map)(null==r?void 0:r.columnConfigurations,e=>[e.name,(0,u.Po)(e.label)?e.name:e.label])),g={reportData:r,chartData:t,chartLabelMap:m,chartConfig:c};if((0,u.Po)(t))return(0,i.jsx)(o.Empty,{image:o.Empty.PRESENTED_IMAGE_SIMPLE});let h=(()=>{switch(p){case"pie":default:return(0,i.jsx)(a.r,{...g});case"line":return(0,i.jsx)(s.b,{...g});case"bar":return(0,i.jsx)(d.E,{...g})}})();return(0,i.jsx)("div",{"data-testid":"report-chart-container",children:h})}},20814(e,t,r){let i;r.d(t,{o:()=>e$});var l=r(74848),o=r(47867),n=r(35864);let{FilterProvider:a,useFilterContext:s}=(i=(0,o.createContext)(void 0),{FilterProvider:e=>{let{children:t,initialValue:r}=e,[n,a]=(0,o.useState)(r),s=()=>{a(r)},d=(0,o.useMemo)(()=>({filters:n,setFilters:a,resetFilters:s}),[n,r]);return(0,l.jsx)(i.Provider,{value:d,children:t})},useFilterContext:function(){let e=(0,o.useContext)(i);if((0,n.isUndefined)(e))throw Error("useFilterContext must be used within a FilterProvider");return e}}),d=(0,o.createContext)(void 0),u=e=>{let{children:t}=e,[r,i]=(0,o.useState)([]),[n,a]=(0,o.useState)([]),s=()=>{i(n)},u=e=>{i([...r,e])},c=(0,o.useMemo)(()=>({columns:r,setColumns:i,initialColumns:n,setInitialColumns:a,resetColumnsToInitial:s,addColumn:u}),[r,i,n,a]);return(0,l.jsx)(d.Provider,{value:c,children:t})},c=()=>{let e=(0,o.useContext)(d);if((0,n.isUndefined)(e))throw Error("useColumnsContext must be used within a ColumnsProvider");return e};var p=r(8651),m=r.n(p),g=r(18196),h=r(48346),f=r(39808),x=r(25750),v=r(81898),y=r(73062);let b,j=(0,o.createContext)(void 0),C=e=>{let{name:t,children:r}=e,[i,n]=(0,o.useState)(1),[a,d]=(0,o.useState)(50),[u,c]=(0,o.useState)(b),{filters:p}=s(),m=()=>{n(1),d(50),c(b)},f=(e=>{let{name:t,filters:r,page:i,pageSize:l,sorting:o}=e,{isLoading:n,data:a,refetch:s,isFetching:d}=(0,h.useCustomReportsReportQuery)({name:t},{skip:(0,g.Po)(t)}),{isLoading:u,data:c,refetch:p,isFetching:m}=(0,h.useCustomReportsChartQuery)({body:{name:t,filters:r,page:i,pageSize:l,sortBy:null==o?void 0:o.sortBy,sortOrder:null==o?void 0:o.sortOrder}},{skip:(0,g.Po)(t)});return{reportDetailData:a,chartDetailData:c,isLoading:n||u,isFetching:d||m,refetchAll:()=>{s().catch(e=>{console.error(e)}),p().catch(e=>{console.error(e)})}}})({name:t,filters:p,page:i,pageSize:a,sorting:u}),x=(0,o.useMemo)(()=>({...f,page:i,setPage:n,pageSize:a,setPageSize:d,sorting:u,setSorting:c,resetData:m}),[f,i,n,a,d,u,c]);return(0,l.jsx)(j.Provider,{value:x,children:r})},R=()=>{let e=(0,o.useContext)(j);if((0,n.isUndefined)(e))throw Error("useReportDataContext must be used within a ReportDataProvider");return e};var w=r(21429),T=r(96940),S=r(73304),E=r(78524),N=r(91206),P=r(10883),L=r(86569),I=r(41423),k=r(2338),D=r(29740),$=r(62059),F=r(32773),M=r(27994),U=r(99154),A=r(27820),O=r(74325),B=r(7814);let _=(0,r(44241).createStyles)(e=>{let{css:t,token:r}=e;return{selectReportLabel:t` - color: ${r.itemActiveColor}; - font-weight: ${r.fontWeightStrong}; - `,selectReportGroupLabel:t` - color: ${r.colorTextDescription}; - font-size: ${r.fontSize}px; - text-transform: uppercase; - `,withDivider:t` - &:before { - content: ''; - display: block; - margin-bottom: 10px; - width: 100%; - height: 1px; - background-color: ${r.colorSplit}; - } - `,drillDownSelectLabel:t` - color: ${r.colorPrimary}; - `,dropdownLabel:t` - color: ${r.colorPrimary}; - `,btnLink:t` - padding: 0; - `,gridTable:t` - min-height: 300px; - overflow: auto; - `,stackItem:t` - display: block; - max-width: 100%; - width: min-content; - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; - `}}),z=()=>{let{columns:e,setColumns:t,initialColumns:r,addColumn:i,resetColumnsToInitial:a}=c(),[s,d]=(0,o.useState)([]),{t:u}=(0,w.useTranslation)(),{styles:p}=_();(0,o.useEffect)(()=>{var t;d(null==r||null==(t=r.filter(t=>!e.some(e=>t.id===e.id)))?void 0:t.map(e=>({key:e.id??(0,$.u)(),label:e.header,onClick:()=>{i(e)}})))},[e]);let m=e.map(e=>{let r=(0,$.u)();return{id:r,sortable:!0,meta:e,children:(0,l.jsx)(B.m,{title:e.header,children:(0,l.jsx)(I.v,{className:p.stackItem,children:e.header})}),renderRightToolbar:(0,l.jsx)(k.$,{size:"mini",children:(0,l.jsx)(D.K,{icon:{value:"trash"},onClick:()=>{t(m.filter(e=>e.id!==r).map(e=>e.meta))},theme:"secondary"})})}});return(0,l.jsx)(N.s,{renderToolbar:(0,l.jsx)(T.M,{theme:"secondary",children:(0,l.jsx)(M.$,{className:p.btnLink,"data-testid":"report-columns-restore-default",onClick:a,type:"link",children:u("reports.grid-config.restore-to-default")})}),children:(0,l.jsxs)(f.U,{padded:!0,children:[(0,l.jsx)(O.h,{children:u("reports.grid-config.title-columns")}),(0,l.jsxs)(k.$,{direction:"vertical",style:{width:"100%"},children:[(0,l.jsxs)(x.s,{vertical:!0,children:[0===m.length&&(0,l.jsx)(L.Empty,{image:L.Empty.PRESENTED_IMAGE_SIMPLE}),m.length>0&&(0,l.jsx)(F.N,{items:m,onItemsChange:e=>{t(e.map(e=>e.meta))},sortable:!0})]}),!(0,n.isEmpty)(s)&&(0,l.jsx)(U.m,{menu:{items:s},children:(0,l.jsx)(A.J,{"data-testid":"report-columns-add-button",icon:{value:"new"},type:"link",children:u("reports.grid-config.add-column")})})]})]})})};var q=r(56974),V=r(71916),W=r(67967);let G={string:{frontendType:"string",type:"system.string"},numeric:{frontendType:"number",type:"system.number"},boolean:{frontendType:"boolean",type:"system.boolean"},date:{frontendType:"datetime",type:"system.datetime"}},J=Object.fromEntries(Object.entries(G).map(e=>{let[t,r]=e;return[r.frontendType,t]})),K=(0,o.createContext)(void 0),Q=e=>{let{children:t}=e,[r,i]=(0,o.useState)([]),[n,a]=(0,o.useState)([]),s=(0,o.useMemo)(()=>({columnsFilters:r,setColumnsFilters:i,fieldFilters:n,setFieldFilters:a}),[r,i,n,a]);return(0,l.jsx)(K.Provider,{value:s,children:t})},H=()=>{let e=(0,o.useContext)(K);if((0,n.isUndefined)(e))throw Error("useColumnsFiltersContext must be used within a ColumnsFiltersProvider");return e},X=e=>{let{name:t}=e,{filters:r}=s(),{isLoading:i,data:l}=(0,h.useCustomReportsChartQuery)({body:{name:t,page:1,pageSize:0x2540be3ff,filters:r}},{skip:(0,g.Po)(t)});return{isLoading:i,data:l}};var Y=r(72928),Z=r(13145),ee=r(46383);let et=()=>{let{t:e}=(0,w.useTranslation)(),[t,r]=(0,o.useState)([]),{reportDetailData:i}=R(),{setColumnsFilters:a,fieldFilters:s,setFieldFilters:d}=H(),{data:u}=X({name:(null==i?void 0:i.name)??""}),{getType:c}=(0,Y.R)(),p=e=>(0,g.Po)(e.label)?e.name:e.label;return(0,o.useEffect)(()=>{d([]),a([])},[i]),(0,o.useEffect)(()=>{var e;if((0,n.isEmpty)(u))return;let t=null==i?void 0:i.columnConfigurations.filter(e=>e.display&&!(0,g.Po)(e.filterType));r(null==t||null==(e=t.filter(e=>!s.some(t=>e.name===t.name)))?void 0:e.map(e=>({key:e.id,label:p(e),onClick:()=>{let t,r,i,l,o,a;r=G[t=e.filterType??"string"].frontendType,i=G[t].type,l=p(e),o=e.name,a=(0,n.reject)(null==u?void 0:u.items.map(e=>e.data[o]),e=>(0,n.isNull)(e)),d([...s,{data:void 0,id:l,translationKey:l,name:o,type:i,frontendType:r,config:{options:(0,n.uniq)(a),showSearch:"select"===r}}])}})))},[u,i,s]),(0,l.jsxs)(l.Fragment,{children:[(0,l.jsx)(O.h,{children:e("reports.field-filters")}),(0,l.jsxs)(L.Space,{direction:"vertical",style:{width:"100%"},children:[(0,l.jsxs)(x.s,{vertical:!0,children:[0===s.length&&(0,l.jsx)(L.Empty,{image:L.Empty.PRESENTED_IMAGE_SIMPLE}),s.length>0&&(0,l.jsx)(q.w,{data:s,onChange:e=>{d(e);let t=e.filter(e=>!(0,n.isUndefined)(e.data)).flatMap(e=>{let t=c({target:"FIELD_FILTER",dynamicTypeIds:[e.frontendType]}),r={property:e.name,type:J[e.frontendType]},i={operator:"like",value:String(e.data)};if((0,n.isNull)(t))return[{...r,...i}];return(t instanceof Z.R?(e=>{let{setting:t,from:r,to:i,is:l}=e,o=e=>(0,n.isNull)(e)?"":String(e),a={[V.L.IS]:[{operator:"eq",value:o(l)}],[V.L.LESS]:[{operator:"lt",value:o(i)}],[V.L.MORE]:[{operator:"gt",value:o(r)}],[V.L.BETWEEN]:[{operator:"gt",value:o(r)},{operator:"lt",value:o(i)}]};return a[t]??a[V.L.IS]})(e.data):t instanceof ee.y?(e=>{let{setting:t,from:r,to:i,on:l}=e,o={[W.q.ON]:[{operator:"eq",value:l??""}],[W.q.BEFORE]:[{operator:"lt",value:i??""}],[W.q.AFTER]:[{operator:"gt",value:r??""}],[W.q.BETWEEN]:[{operator:"gt",value:r??""},{operator:"lt",value:i??""}]};return o[t]??o[W.q.ON]})(e.data):[i]).map(e=>({...r,operator:e.operator,value:e.value}))});(0,n.isUndefined)(t)||a(t)}})]}),!(0,n.isEmpty)(t)&&(0,l.jsx)(U.m,{menu:{items:t},children:(0,l.jsx)(A.J,{"data-testid":"report-filters-add-column-button",icon:{value:"new"},type:"link",children:e("reports.grid-config.add-column")})})]})]})},er=()=>{let{filters:e,setFilters:t}=s(),{columnsFilters:r,setColumnsFilters:i,setFieldFilters:o}=H(),{setPage:n}=R(),{t:a}=(0,w.useTranslation)(),{styles:d}=_();return(0,l.jsx)(N.s,{renderToolbar:(0,l.jsxs)(T.M,{theme:"secondary",children:[(0,l.jsx)(M.$,{className:d.btnLink,"data-testid":"report-filters-clear-button",onClick:()=>{i([]),o([]),t({...e,columnFilters:[]})},type:"link",children:a("sidebar.clear-all-filters")}),(0,l.jsx)(M.$,{"data-testid":"report-filters-apply-button",onClick:()=>{n(1),t({...e,columnFilters:r})},type:"primary",children:a("button.apply")})]}),children:(0,l.jsx)(f.U,{padded:!0,children:(0,l.jsx)(et,{})})})},ei=()=>{let{t:e}=(0,w.useTranslation)(),{reportDetailData:t}=R(),r=(0,o.useMemo)(()=>{var e;return null==t||null==(e=t.columnConfigurations)?void 0:e.filter(e=>!(0,g.Po)(e.filterType))},[t]),i={entries:[{component:(0,l.jsx)(z,{}),key:"reports-columns-configuration",icon:(0,l.jsx)(v.I,{value:"columns"}),tooltip:e("reports.grid-config.title-columns")}]};return(0,n.isEmpty)(r)||i.entries.push({component:(0,l.jsx)(Q,{children:(0,l.jsx)(er,{})}),key:"reports-field-filters",icon:(0,l.jsx)(v.I,{value:"filter"}),tooltip:e("reports.field-filters")}),(0,l.jsx)(P.B,{sizing:"medium",...i})};var el=r(75525);let eo=e=>{let{page:t,setPage:r,pageSize:i,setPageSize:o,totalItems:n}=e,{t:a}=(0,w.useTranslation)();return(0,l.jsx)(el.d,{current:t,defaultPageSize:i,onChange:(e,t)=>{r(e),o(parseInt(t))},pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>a("pagination.show-total",{total:e}),total:n})};var en=r(73789),ea=r(30492),es=r(92428),ed=r(80632),eu=r(74718),ec=r(55638),ep=r(2662),em=r(58200);let eg=e=>{let{currentReport:t,showPagination:r,page:i,setPage:n,pageSize:a,setPageSize:d,totalItems:u}=e,[c,{isError:p,error:m}]=(0,h.useCustomReportExportCsvMutation)(),[g,f]=(0,o.useState)(!1),[y,b]=(0,o.useState)(!0),[j,C]=(0,o.useState)(";"),R=(0,ep.O)(),{filters:S}=s(),{t:E}=(0,w.useTranslation)(),{styles:N}=_();(0,o.useEffect)(()=>{p&&(0,ec.Ay)(new ec.hD(m))},[p]);let P=function(e){let t=!(arguments.length>1)||void 0===arguments[1]||arguments[1];return(0,l.jsxs)(x.s,{align:"center",className:N.dropdownLabel,gap:"extra-small",children:[t&&(0,l.jsx)(v.I,{value:"export"}),E(e)]})},L=[{key:"csv-export",label:P("reports.csv-export"),onClick:()=>{f(!0)}}];return(0,l.jsxs)(l.Fragment,{children:[(0,l.jsxs)(T.M,{justify:"space-between",theme:"secondary",children:[(0,l.jsx)(U.m,{menu:{items:L},children:(0,l.jsx)(en.g,{"data-testid":"report-export-button",children:P("reports.export",!1)})}),r&&(0,l.jsx)(eo,{page:i,pageSize:a,setPage:n,setPageSize:d,totalItems:u})]}),(0,l.jsx)(ea.a,{onCancel:()=>{f(!1)},onOk:()=>{let e=new eu.w({title:E("jobs.csv-job.title",{title:t}),downloadUrl:`${(0,em.$)()}/export/download/csv/{jobRunId}`,action:async()=>await c({body:{name:t,filters:S,includeHeaders:y,delimiter:j}}).unwrap()});R.runJob(e),f(!1)},open:g,title:E("reports.csv-export-modal.title"),children:(0,l.jsxs)(x.s,{gap:"small",vertical:!0,children:[(0,l.jsx)("div",{children:(0,l.jsx)(es.S,{checked:y,onChange:e=>{b(e.target.checked)},children:E("reports.csv-export-modal.include-headers")})}),(0,l.jsxs)("div",{children:[(0,l.jsx)("div",{style:{marginBottom:"8px"},children:(0,l.jsxs)("strong",{children:[E("reports.csv-export-modal.delimiter-label"),":"]})}),(0,l.jsx)(ed.p,{maxLength:1,onChange:e=>{C(e.target.value)},placeholder:E("reports.csv-export-modal.delimiter-placeholder"),style:{width:"100%"},value:j})]})]})})]})};var eh=r(22014),ef=r(1993);let ex=e=>{let{currentReport:t,setCurrentReport:r,reportsTreeOptions:i}=e,{t:o}=(0,w.useTranslation)(),{styles:n}=_(),{resetFilters:a}=s(),{resetData:d}=R();return(0,l.jsx)(f.U,{padded:!0,padding:{top:"extra-small",right:"extra-small",bottom:"extra-small",left:"extra-small"},children:(0,l.jsx)(T.M,{padding:{top:"extra-small",bottom:"extra-small",left:"none",right:"none"},position:"top",size:"auto",theme:"secondary",children:(0,l.jsxs)(x.s,{align:"center",gap:"extra-small",children:[(0,l.jsx)(eh.E,{className:n.selectReportLabel,children:o("reports.reports-title")}),(0,l.jsx)(ef.l,{className:"min-w-200","data-testid":"reports-view-report-selector",onChange:e=>{d(),a(),r(e)},options:i,placeholder:o("reports.select-report"),showSearch:!0,value:t})]})})})};var ev=r(89507),ey=r(97233),eb=r(14013);let ej=e=>{var t;let{reportName:r,field:i}=e,{filters:n,setFilters:a}=s(),{data:d,isLoading:u}=(0,h.useCustomReportsListDrillDownOptionsQuery)({body:{name:r,field:i.name??null}}),{t:c}=(0,w.useTranslation)(),{styles:p}=_(),[m,f]=(0,o.useState)(null),v=(0,g.Po)(i.label)?i.name:i.label;return(0,l.jsxs)(x.s,{align:"center","data-testid":`report-drilldown-${i.name}`,gap:"extra-small",children:[(0,l.jsx)(eh.E,{className:p.drillDownSelectLabel,children:v}),(0,l.jsx)(ef.l,{className:"min-w-200","data-testid":`report-drilldown-select-${i.name}`,loading:u,onSelect:e=>{f(e);let t={...(null==n?void 0:n.drillDownFilters)??{}};t[i.name]=String(e),a({...n,drillDownFilters:t})},options:null==d||null==(t=d.items)?void 0:t.map(e=>({label:e.name,value:e.value})),placeholder:c("select"),value:m})]})};var eC=r(56789),eR=r(83209),ew=r(34231);let eT=(0,ev.createColumnHelper)(),eS=e=>{var t,r;let{isLoading:i,currentReport:a,reportDetailData:s,chartDetailData:d}=e,[u,p]=(0,o.useState)(!1),m=(0,o.useRef)(null),h=(null==s?void 0:s.name)??"",{sorting:v,setSorting:y}=R(),{data:b}=X({name:h});(0,o.useEffect)(()=>{a!==m.current&&(m.current=a,(0,n.isUndefined)(a)||(0,n.isNil)(a)||!i||p(!0))},[a,i]),(0,o.useEffect)(()=>{i||p(!1)},[i]);let{columns:j,setColumns:C,setInitialColumns:T}=c(),{openElement:S}=(0,eC.K)(),{t:E}=(0,w.useTranslation)(),{styles:N}=_(),P=(0,o.useMemo)(()=>(0,n.isUndefined)(v)?[]:[{id:v.sortBy,desc:"DESC"===v.sortOrder}],[v]),L=()=>{var e;let t=[];return null==s||null==(e=s.columnConfigurations)||e.forEach((e,r)=>{if(e.display&&"only_filter"!==e.filterDrilldown){let i=(0,g.Po)(null==e?void 0:e.name)?`id-${r}`:e.name,o=(0,g.Po)(e.displayType)?"text":e.displayType;"hide"!==e.displayType&&t.push(eT.accessor(e=>null==e?void 0:e[i],{id:i,header:(0,g.Po)(e.label)?e.name:e.label,enableSorting:e.order,...!(0,n.isNull)(e.width)&&{size:e.width},meta:{type:o,..."date"===o&&{config:{showTime:!0}},..."text"===o&&{config:{renderAsHtml:!0}},...(0,n.isNull)(e.width)&&{autoWidth:!0}}})),(0,g.Po)(e.action)||t.push(eT.accessor(e=>null==e?void 0:e[i],{id:`${i}-action`,header:E("actions.open"),enableSorting:!1,size:50,cell:t=>(e=>{let{id:t,actionType:r}=e;return(0,l.jsx)(x.s,{align:"center",justify:"center",children:(0,l.jsx)(D.K,{icon:{value:"open-folder"},onClick:()=>{(e=>{let{id:t,actionType:r}=e;if(r===eR.n.OPEN_URL)window.open(`${ew.W}/pimcore-studio/${t}`,"_blank");else{let e=(0,eR.w)(r);S({id:Number(t),type:e})}})({id:Number(t),actionType:r})},type:"link"})})})({id:t.row.original[i],actionType:e.action})}))}}),t.filter(e=>!(0,n.isUndefined)(e))};(0,o.useEffect)(()=>{C(L()??[]),T(L()??[])},[s,C]);let I=(0,o.useMemo)(()=>{var e;return null==s||null==(e=s.columnConfigurations)?void 0:e.filter(e=>!(0,g.Po)(e.filterDrilldown)).map(e=>e)},[s]),k=!(0,g.Po)(null==s?void 0:s.chartType),$=null==d||null==(t=d.items)?void 0:t.map(e=>e.data),F=null==b||null==(r=b.items)?void 0:r.map(e=>e.data);return i&&u?(0,l.jsx)(f.U,{loading:!0}):(0,l.jsxs)(x.s,{className:"h-full","data-testid":"report-detail-container",gap:"small",vertical:!0,children:[!(0,n.isUndefined)(I)&&(0,l.jsx)(x.s,{"data-testid":"report-detail-drilldown-area",gap:"small",wrap:!0,children:null==I?void 0:I.map(e=>(0,l.jsx)(ej,{field:e,reportName:h},e.name))}),(0,l.jsxs)(x.s,{className:"h-full","data-testid":"report-detail-content",gap:"small",justify:"flex-start",vertical:!0,children:[k&&(0,l.jsx)(ey.V,{chartData:F,reportData:s}),!(0,n.isUndefined)($)&&(0,l.jsx)(eb.x,{allowMultipleAutoWidthColumns:!0,autoWidth:!0,className:N.gridTable,columns:j,data:$,dataTestId:"report-detail-grid",enableColumnVirtualizer:!0,enableSorting:!0,isLoading:i,manualSorting:!0,onSortingChange:e=>{if(e.length>0){let{id:t,desc:r}=e[0];y({sortBy:t,sortOrder:r?"DESC":"ASC"})}else y(void 0)},sorting:P})]})]})};var eE=r(63364),eN=r(10600);let eP=e=>{var t;let{currentReport:r,setCurrentReport:i,reportsTreeOptions:a}=e,{t:s}=(0,w.useTranslation)(),{isLoading:d,isFetching:u,reportDetailData:c,chartDetailData:p,refetchAll:m,page:h,setPage:v,pageSize:y,setPageSize:b}=R(),j=!(0,g.Po)(r),C=d||u,P=null==c||null==(t=c.dataSourceConfig)?void 0:t.type,L=(0,n.isUndefined)(P),I=eE.kL.get(eN.K["DynamicTypes/CustomReportDefinitionRegistry"]),k=L?void 0:I.getDynamicType(P),D=(0,o.useMemo)(()=>!((0,n.isNull)(r)||(0,n.isUndefined)(k))&&!!(0,n.isFunction)(null==k?void 0:k.getPagination)&&((null==k?void 0:k.getPagination())??!1),[r,k]);return(0,l.jsx)(E.F,{renderTabbar:(0,l.jsx)(N.s,{renderSidebar:!(0,n.isEmpty)(c)&&(0,l.jsx)(ei,{}),renderToolbar:!(0,n.isEmpty)(null==p?void 0:p.items)&&!u&&(0,l.jsx)(eg,{currentReport:r,page:h,pageSize:y,setPage:v,setPageSize:b,showPagination:D,totalItems:(null==p?void 0:p.totalItems)??0}),renderTopBar:(0,l.jsx)(ex,{currentReport:r,reportsTreeOptions:a,setCurrentReport:i}),children:(0,l.jsx)(f.U,{centered:!j,className:"h-full",padded:!0,padding:{top:"none",right:"extra-small",bottom:"extra-small",left:"extra-small"},children:j?(0,l.jsx)(eS,{chartDetailData:p,currentReport:r,isLoading:C,reportDetailData:c}):(0,l.jsx)(x.s,{align:"center",justify:"center",children:(0,l.jsx)(eh.E,{children:s("reports.select-report-name")})})})}),renderToolbar:(0,l.jsx)(T.M,{children:(0,l.jsx)(S.y,{isFetching:C,refetch:m})})})};var eL=r(44499),eI=r(9653);let ek=e=>{let{reportId:t}=e,[r,i]=(0,o.useState)(t??null),a=(0,eL.J)(eI.F.Reports),{isLoading:s,data:d}=(0,h.useCustomReportsGetTreeQuery)({page:1,pageSize:9999},{skip:!a}),{styles:u}=_(),c=(e,t)=>(0,l.jsxs)(x.s,{align:"center",gap:"mini",children:[!(0,g.Po)(e)&&(0,l.jsx)(v.I,{value:e}),(0,l.jsx)(y.h,{html:t})]}),p=(0,o.useMemo)(()=>{if(!(0,n.isUndefined)(null==d?void 0:d.items)){var e;let t=null==(e=d.items)?void 0:e.filter(e=>e.hasDataSourceConfig),r={},i=[];null==t||t.forEach(e=>{let l=(0,g.Po)(e.niceName)?e.name:e.niceName;if((0,g.Po)(e.group))return void i.push({label:c(e.iconClass,l),value:e.name});if((0,n.isUndefined)(r[e.group])){let i=null==t?void 0:t.filter(t=>t.group===e.group).find(e=>!(0,g.Po)(e.groupIconClass));r[e.group]={label:c((null==i?void 0:i.groupIconClass)??"",e.group),title:e.group,options:[]}}r[e.group].options.push({label:c(e.iconClass,l),value:e.name})});let o=i.length>0;return Object.keys(r).forEach((e,t)=>{let i=r[e].label;r[e].label=(0,l.jsx)("div",{className:m()(u.selectReportGroupLabel,{[u.withDivider]:o||t>0}),children:i})}),[...i,...Object.values(r)]}return[]},[d]),b=s&&(0,n.isEmpty)(p);return(0,l.jsx)(f.U,{loading:b,children:(0,l.jsx)(C,{name:r??"",children:(0,l.jsx)(eP,{currentReport:r,reportsTreeOptions:p,setCurrentReport:i})})})};var eD=r(87669);let e$=e=>{let{reportId:t}=e;return(0,l.jsx)(a,{initialValue:{columnFilters:[],drillDownFilters:{}},children:(0,l.jsx)(u,{children:(0,l.jsx)(eD.U,{serviceIds:["DynamicTypes/FieldFilterRegistry"],children:(0,l.jsx)(ek,{reportId:t})})})})}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4596.13ba10c0.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js deleted file mode 100644 index 3d70f3eca6..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4603.86da83a0.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4603"],{87227(e,l,i){i.r(l),i.d(l,{default:()=>t});var h=i(74848);i(47867);let t=e=>(0,h.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,h.jsxs)("g",{fillRule:"evenodd",children:[(0,h.jsx)("rect",{width:640,height:480,fill:"#fff",rx:0,ry:0}),(0,h.jsx)("rect",{width:480,height:159.3,y:320.7,fill:"#fff",rx:0,ry:0}),(0,h.jsx)("path",{fill:"#fff",d:"M0 0h480v159.3H0zM201.9 281l-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-.295 10.985-34.138 11.221 34.06 35.418.045-28.481 21.344zM509.54 281l-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-.295 10.985-34.138 11.221 34.06 35.418.045-28.481 21.344z"}),(0,h.jsx)("rect",{width:640,height:159.3,y:320.7,rx:0,ry:0}),(0,h.jsx)("path",{fill:"red",d:"M0 0h640v159.3H0z"}),(0,h.jsx)("path",{fill:"#090",d:"m201.9 281-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-.295 10.985-34.138 11.221 34.06 35.418.045-28.481 21.344zM509.54 281l-28.822-20.867-28.68 21.072 10.667-34.242-28.628-21.145 35.418-.295 10.985-34.138 11.221 34.06 35.418.045-28.481 21.344z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4603.86da83a0.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js deleted file mode 100644 index 1dbd1caf5c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4680.66eae797.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4680"],{73595(l,i,e){e.r(i),e.d(i,{default:()=>s});var f=e(74848);e(47867);let s=l=>(0,f.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"#28ff09",fillOpacity:14.118,viewBox:"0 0 640 480",...l,children:(0,f.jsxs)("g",{fillOpacity:1,fillRule:"evenodd",children:[(0,f.jsx)("path",{fill:"#00cd00",d:"M426.83 0H640v480H426.83z"}),(0,f.jsx)("path",{fill:"#ff9a00",d:"M0 0h212.88v480H0z"}),(0,f.jsx)("path",{fill:"#fff",d:"M212.88 0h213.95v480H212.88z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4680.66eae797.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js deleted file mode 100644 index 7b8fc7689a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4693.552164ec.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4693"],{25508(e,t,n){n.d(t,{Ad:()=>f,Mz:()=>p,X4:()=>s,i5:()=>l});var u=Symbol("NOT_FOUND"),o=e=>Array.isArray(e)?e:[e];Symbol();Object.getPrototypeOf({});var r=(e,t)=>e===t;function l(e,t){let n,{equalityCheck:o=r,maxSize:l=1,resultEqualityCheck:i}="object"==typeof t?t:{equalityCheck:t},c=function(e,t){if(null===e||null===t||e.length!==t.length)return!1;let{length:n}=e;for(let u=0;un&&c(n.key,e)?n.value:u,put(e,t){n={key:e,value:t}},getEntries:()=>n?[n]:[],clear(){n=void 0}}:function(e,t){let n=[];function o(e){let o=n.findIndex(n=>t(e,n.key));if(o>-1){let e=n[o];return o>0&&(n.splice(o,1),n.unshift(e)),e.value}return u}return{get:o,put:function(t,r){o(t)===u&&(n.unshift({key:t,value:r}),n.length>e&&n.pop())},getEntries:function(){return n},clear:function(){n=[]}}}(l,c);function p(){let t=f.get(arguments);if(t===u){if(t=e.apply(null,arguments),s++,i){let e=f.getEntries().find(e=>i(e.value,t));e&&(t=e.value,0!==s&&s--)}f.put(arguments,t)}return t}return p.clearCache=()=>{f.clear(),p.resetResultsCount()},p.resultsCount=()=>s,p.resetResultsCount=()=>{s=0},p}var i="u">typeof WeakRef?WeakRef:class{constructor(e){this.value=e}deref(){return this.value}};function c(){return{s:0,v:void 0,o:null,p:null}}function s(e,t={}){let n,u=c(),{resultEqualityCheck:o}=t,r=0;function l(){let t,l=u,{length:s}=arguments;for(let e=0;e{u=c(),l.resetResultsCount()},l.resultsCount=()=>r,l.resetResultsCount=()=>{r=0},l}function f(e,...t){let n="function"==typeof e?{memoize:e,memoizeOptions:t}:e,u=(...e)=>{let t,u,r=0,l=0,i={},c=e.pop();"object"==typeof c&&(i=c,c=e.pop()),function(e,t=`expected a function, instead received ${typeof e}`){if("function"!=typeof e)throw TypeError(t)}(c,`createSelector expects an output function after the inputs, but received: [${typeof c}]`);let{memoize:f,memoizeOptions:p=[],argsMemoize:a=s,argsMemoizeOptions:y=[],devModeChecks:d={}}={...n,...i},h=o(p),v=o(y),b=(!function(e,t="expected all items to be functions, instead received the following types: "){if(!e.every(e=>"function"==typeof e)){let n=e.map(e=>"function"==typeof e?`function ${e.name||"unnamed"}()`:typeof e).join(", ");throw TypeError(`${t}[${n}]`)}}(t=Array.isArray(e[0])?e[0]:e,"createSelector expects all input-selectors to be functions, but received the following types: "),t),m=f(function(){return r++,c.apply(null,arguments)},...h);return Object.assign(a(function(){l++;let e=function(e,t){let n=[],{length:u}=e;for(let o=0;ol,resetDependencyRecomputations:()=>{l=0},lastResult:()=>u,recomputations:()=>r,resetRecomputations:()=>{r=0},memoize:f,argsMemoize:a})};return Object.assign(u,{withTypes:()=>u}),u}var p=f(s),a=Object.assign((e,t=p)=>{!function(e,t=`expected an object, instead received ${typeof e}`){if("object"!=typeof e)throw TypeError(t)}(e,`createStructuredSelector expects first argument to be an object where each property is a selector, instead received a ${typeof e}`);let n=Object.keys(e);return t(n.map(t=>e[t]),(...e)=>e.reduce((e,t,u)=>(e[n[u]]=t,e),{}))},{withTypes:()=>a})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4693.552164ec.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js deleted file mode 100644 index 4e052b1727..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4698.6d0eba4e.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4698"],{40417(l,e,i){i.r(e),i.d(e,{default:()=>d});var s=i(74848);i(47867);let d=l=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"red",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#00006b",d:"M0 0h314.407v157.21H0z"}),(0,s.jsx)("g",{fill:"#fff",children:(0,s.jsx)("path",{d:"m162.77 144.4-12.468-8.415-11.95 8.555 3.795-15.007-11.471-9.25 14.817-.858 4.862-14.274 5.357 14.477 14.477.427-11.504 9.81zM160.634 44.574l-9.975-6.41-9.795 6.362 2.72-11.953-8.781-7.817 11.66-.977 4.357-11.192 4.49 11.349 11.48.9-8.888 7.99zM116.551 80.496l-9.708-6.66-9.922 6.658 3.089-11.673-9.147-7.768 11.607-.554 4.273-11.46 4.091 11.33 11.781.687-9.08 7.556zM204.934 72.47l-9.315-6.01-9.064 6.083 2.608-11.083-8.35-7.096 10.926-.841 3.899-10.468 4.143 10.564 10.763.625-8.362 7.37zM178.882 98.717l-6.21-3.868-6.188 3.907 1.613-7.347-5.482-4.924 7.208-.673 2.804-6.95 2.841 6.93 7.213.63-5.453 4.956z"})})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4698.6d0eba4e.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js deleted file mode 100644 index 688ccf09c2..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4702.508d41d1.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4702"],{59965(l,h,z){z.r(h),z.d(h,{default:()=>e});var M=z(74848);z(47867);let e=l=>(0,M.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,M.jsx)("desc",{children:"The United States of America flag, produced by Daniel McRae"}),(0,M.jsx)("defs",{children:(0,M.jsx)("clipPath",{id:"um_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,M.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,M.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#um_inline_svg__a)",transform:"scale(.9375)",children:[(0,M.jsxs)("g",{strokeWidth:"1pt",children:[(0,M.jsx)("g",{fill:"#bd3d44",children:(0,M.jsx)("path",{d:"M0 0h972.81v39.385H0zM0 78.77h972.81v39.385H0zM0 157.54h972.81v39.385H0zM0 236.31h972.81v39.385H0zM0 315.08h972.81v39.385H0zM0 393.85h972.81v39.385H0zM0 472.62h972.81v39.385H0z"})}),(0,M.jsx)("g",{fill:"#fff",children:(0,M.jsx)("path",{d:"M0 39.385h972.81V78.77H0zM0 118.155h972.81v39.385H0zM0 196.925h972.81v39.385H0zM0 275.695h972.81v39.385H0zM0 354.465h972.81v39.385H0zM0 433.235h972.81v39.385H0z"})})]}),(0,M.jsx)("path",{fill:"#192f5d",d:"M0 0h389.12v275.69H0z"}),(0,M.jsx)("g",{fill:"#fff",children:(0,M.jsx)("path",{d:"m32.427 11.8 3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 11.8l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 11.8l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 11.8l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 11.8l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 11.8l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 39.37l3.54 10.896h11.458L70.583 57l3.542 10.897-9.27-6.734-9.269 6.734L59.126 57l-9.269-6.734h11.458zM129.707 39.37l3.54 10.896h11.457L135.435 57l3.54 10.897-9.268-6.734-9.27 6.734L123.978 57l-9.27-6.734h11.458zM194.562 39.37l3.54 10.896h11.458L200.29 57l3.541 10.897-9.27-6.734-9.268 6.734L188.833 57l-9.269-6.734h11.457zM259.417 39.37l3.54 10.896h11.458L265.145 57l3.541 10.897-9.269-6.734-9.27 6.734L253.69 57l-9.27-6.734h11.458zM324.269 39.37l3.54 10.896h11.457L329.997 57l3.54 10.897-9.268-6.734-9.27 6.734L318.54 57l-9.27-6.734h11.458zM32.427 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 66.939l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 66.939l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 66.939l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 94.508l3.54 10.897h11.458l-9.27 6.734 3.542 10.897-9.27-6.734-9.269 6.734 3.54-10.897-9.269-6.734h11.458zM129.707 94.508l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM194.562 94.508l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.27-6.734-9.268 6.734 3.54-10.897-9.269-6.734h11.457zM259.417 94.508l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.269-6.734-9.27 6.734 3.542-10.897-9.27-6.734h11.458zM324.269 94.508l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM32.427 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 122.078l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 122.078l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 122.078l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 149.647l3.54 10.897h11.458l-9.27 6.734 3.542 10.897-9.27-6.734-9.269 6.734 3.54-10.897-9.269-6.734h11.458zM129.707 149.647l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM194.562 149.647l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.27-6.734-9.268 6.734 3.54-10.897-9.269-6.734h11.457zM259.417 149.647l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.269-6.734-9.27 6.734 3.542-10.897-9.27-6.734h11.458zM324.269 149.647l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM32.427 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 177.217l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 177.217l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 177.217l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458zM64.855 204.786l3.54 10.897h11.458l-9.27 6.734 3.542 10.897-9.27-6.734-9.269 6.734 3.54-10.897-9.269-6.734h11.458zM129.707 204.786l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM194.562 204.786l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.27-6.734-9.268 6.734 3.54-10.897-9.269-6.734h11.457zM259.417 204.786l3.54 10.897h11.458l-9.27 6.734 3.541 10.897-9.269-6.734-9.27 6.734 3.542-10.897-9.27-6.734h11.458zM324.269 204.786l3.54 10.897h11.457l-9.269 6.734 3.54 10.897-9.268-6.734-9.27 6.734 3.541-10.897-9.27-6.734h11.458zM32.427 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM97.28 232.356l3.541 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735H93.74zM162.136 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.269 6.734 3.54-10.896-9.269-6.735h11.458zM226.988 232.356l3.54 10.896h11.457l-9.269 6.735 3.54 10.896-9.268-6.734-9.27 6.734 3.541-10.896-9.27-6.735h11.458zM291.843 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.27-6.734-9.268 6.734 3.54-10.896-9.269-6.735h11.457zM356.698 232.356l3.54 10.896h11.458l-9.27 6.735 3.541 10.896-9.269-6.734-9.27 6.734 3.542-10.896-9.27-6.735h11.458z"})})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4702.508d41d1.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js deleted file mode 100644 index ed348c227c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4715.3e1202d6.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4715"],{32454(t,s,r){r.r(s),r.d(s,{default:()=>h});var a=r(74848);r(47867);let h=t=>(0,a.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:(0,a.jsxs)("g",{fillRule:"evenodd",children:[(0,a.jsx)("path",{fill:"#fff",d:"M320 0h320v480H320z"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M282.43-735.13c0 .625 55.956 222.85 118.17 300.56 69.375 87.27 113.18 87.333 113.18 87.333l70.866-17.717s-41.496 2.093-123.8-104.21c-83.45-107.78-109.42-285.96-108.17-282.84l-70.241 16.875z",transform:"matrix(-.24 0 0 .1991 534.09 334.357)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M285-727.64c-1.535-9.369 33.898 220.95 140.2 327.24 53.149 53.15 88.583 53.15 88.583 53.15l88.582-17.717s-51.712 3.751-134.02-102.55c-83.45-107.78-108.58-263.25-107.96-263.87l-75.38 3.75z",transform:"matrix(.24 0 0 .1991 381.891 336.17)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M282.43-735.13c0 .625 55.956 222.85 118.17 300.56 69.375 87.27 113.18 87.333 113.18 87.333l70.866-17.717s-41.496 2.093-123.8-104.21c-83.45-107.78-109.42-285.96-108.17-282.84l-70.241 16.875z",transform:"matrix(.24 0 0 .1991 381.891 336.17)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M285-727.64c-1.535-9.369 33.898 220.95 140.2 327.24 53.149 53.15 88.583 53.15 88.583 53.15l88.582-17.717s-51.712 3.751-134.02-102.55c-83.45-107.78-108.58-263.25-107.96-263.87l-75.38 3.75z",transform:"matrix(-.24 0 0 .1991 534.09 334.357)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839l5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696.054-9.464-1.714z",transform:"matrix(.23995 .00428 -.00516 .19905 380.013 342.305)"}),(0,a.jsxs)("g",{fill:"#b00",stroke:"#000",strokeWidth:12.791,children:[(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01763 .00275 .01016 -.01162 411.028 329.631)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0173 .00313 .01036 -.0116 409.377 330.944)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01763 .00275 .01016 -.01162 407.292 332.556)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01789 -.0011 .00628 -.01341 429.522 312.364)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0177 -.00038 .0068 -.01331 428.348 313.853)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01791 -.00081 .0066 -.0133 426.776 315.833)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01769 .00056 .0078 -.01292 425.782 316.386)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01765 -.00269 .00455 -.0139 433.904 305.88)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0175 -.00223 .00475 -.01392 432.92 307.599)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01765 -.00269 .00455 -.0139 431.657 309.728)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01754 -.00195 .00507 -.01384 430.475 311.23)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01784 .00155 .009 -.01227 417.952 323.963)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01754 .00195 .0092 -.01225 416.433 325.382)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01784 .00155 .009 -.01227 414.51 327.13)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0173 .00313 .01036 -.0116 413.114 328.019)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01794 .00014 .00759 -.01293 424.063 318.279)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01769 .00056 .0078 -.01292 422.71 319.81)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01784 .00155 .009 -.01227 421.393 320.795)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01754 .00195 .0092 -.01225 419.875 322.214)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01668 -.00552 .00122 -.01437 443.651 284.224)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01707 -.00392 .00278 -.01429 443.624 284.813)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01715 -.00439 .00258 -.01424 442.667 287.05)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01707 -.00392 .00278 -.01429 441.928 288.854)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01664 -.00505 .0014 -.01443 445.698 277.79)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01668 -.00552 .00122 -.01437 444.956 280.083)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01664 -.00505 .0014 -.01443 444.393 281.93)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01752 -.00323 .00393 -.01402 438.058 298.304)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01738 -.00277 .00413 -.01406 437.151 300.051)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01752 -.00323 .00393 -.01402 435.983 302.218)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0175 -.00223 .00475 -.01392 435.166 303.751)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01715 -.00439 .00258 -.01424 440.97 291.091)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01738 -.00277 .00413 -.01406 441.3 292.223)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01752 -.00323 .00393 -.01402 440.132 294.39)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01738 -.00277 .00413 -.01406 439.225 296.137)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01541 -.00768 -.00154 -.01435 448.859 266.508)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01656 -.00577 .0009 -.01438 448.904 268.049)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01653 -.0053 .0011 -.01445 448.38 269.903)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01546 -.0072 -.00136 -.01443 449.652 259.882)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01541 -.00768 -.00154 -.01435 449.357 262.246)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01546 -.0072 -.00136 -.01443 449.153 264.143)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01656 -.00577 .0009 -.01438 447.689 272.209)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01664 -.00505 .0014 -.01443 447.036 273.544)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01668 -.00552 .00122 -.01437 446.296 275.838)"})]}),(0,a.jsxs)("g",{fill:"#b00",stroke:"#000",strokeWidth:12.791,children:[(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01781 .00178 -.00923 -.01216 503.156 323.982)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0175 .00217 -.00943 -.01214 504.7 325.383)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01781 .00178 -.00923 -.01216 506.654 327.106)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01776 -.00209 -.00521 -.01373 486.055 305.736)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01762 -.00135 -.00574 -.01366 487.11 307.287)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0178 -.0018 -.00554 -.01364 488.524 309.348)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0177 -.00041 -.00676 -.01332 489.472 309.955)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0174 -.00365 -.00345 -.01411 482.192 299.026)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01728 -.00319 -.00365 -.01415 483.039 300.794)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0174 -.00365 -.00345 -.01411 484.132 302.988)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01735 -.0029 -.00398 -.01409 485.193 304.552)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01792 .00057 -.00802 -.01274 496.69 317.946)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01766 .00098 -.00823 -.01273 498.096 319.446)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01792 .00057 -.00802 -.01274 499.877 321.296)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0175 .00217 -.00943 -.01214 501.201 322.26)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0179 -.00085 -.00656 -.01332 491.039 311.938)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0177 -.00041 -.00676 -.01332 492.269 313.54)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01792 .00057 -.00802 -.01274 493.506 314.596)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01766 .00098 -.00823 -.01273 494.91 316.096)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01621 -.00642 -.00009 -.0144 474.163 276.88)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01672 -.00485 -.00165 -.01441 474.144 277.47)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01677 -.00532 -.00146 -.01435 474.924 279.755)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01672 -.00485 -.00165 -.01441 475.52 281.595)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0162 -.00595 -.00027 -.01447 472.625 270.347)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01621 -.00642 -.00009 -.0144 473.186 272.677)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0162 -.00595 -.00027 -.01447 473.603 274.55)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01723 -.00419 -.00282 -.01421 478.64 291.238)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01713 -.00372 -.00302 -.01425 479.408 293.031)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01723 -.00419 -.00282 -.01421 480.404 295.257)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01728 -.00319 -.00365 -.01415 481.099 296.832)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01677 -.00532 -.00146 -.01435 476.3 283.88)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01713 -.00372 -.00302 -.01425 475.882 284.991)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01723 -.00419 -.00282 -.01421 476.877 287.218)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01713 -.00372 -.00302 -.01425 477.645 289.011)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01478 -.0085 .00266 -.01423 470.356 258.917)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01607 -.00667 .00022 -.0144 470.19 260.452)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01608 -.0062 .00004 -.01448 470.567 262.331)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01486 -.00804 .00249 -.01433 470.084 252.262)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01478 -.0085 .00266 -.01423 470.193 254.636)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01486 -.00804 .00249 -.01433 470.248 256.541)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01607 -.00667 .00022 -.0144 471.076 264.67)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0162 -.00595 -.00027 -.01447 471.623 266.038)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01621 -.00642 -.00009 -.0144 472.182 268.368)"})]}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839l5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696.054-9.464-1.714z",transform:"matrix(-.23995 .00428 .00516 .19905 535.969 340.492)"}),(0,a.jsxs)("g",{transform:"matrix(.14437 0 0 .12085 423.643 295.291)",children:[(0,a.jsx)("path",{fill:"silver",d:"m324.546-255.37-50.11 50.11L449.82-29.874l50.11-50.11z"}),(0,a.jsx)("circle",{cx:354.33,cy:-1428,r:35.433,fill:"#fff133",stroke:"#000",strokeWidth:1.197,transform:"scale(-1 1)rotate(45 -177.879 -1104.595)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"m-402.046-956.911 37.583 37.583-25.055 25.054-37.583-37.582c-12.528-12.528 12.527-37.583 25.055-25.055z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m-346.606-926.531-50.11 50.11c-13.798 0-25.351-11.553-25.055-25.055 10.878-25.879 25.028-38.434 50.11-50.11 12.477.729 24.217 10.892 25.055 25.055z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"m-351.926-931.851 37.583 37.583-50.11 50.11-37.583-37.583c5.027-20.028 30.082-45.084 50.11-50.11z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m-309.026-888.951-50.11 50.11c-13.798 0-25.351-11.553-25.055-25.055 10.878-25.879 25.028-38.434 50.11-50.11 12.477.729 24.217 10.892 25.055 25.055z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M-314.356-894.281 28.44-551.477l-50.111 50.11-342.795-342.804c5.027-20.028 30.082-45.084 50.11-50.11z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m48.934-530.971-50.11 50.11c-13.798 0-25.351-11.553-25.055-25.055 10.878-25.879 25.028-38.434 50.11-50.11 12.477.729 24.217 10.892 25.055 25.055z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M48.944-530.976 274.44-305.48l-50.11 50.11L-1.166-480.866c5.027-20.028 30.082-45.084 50.11-50.11z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"m186.744-418.231-75.166 75.166c-13.797 0-25.35-11.553-25.055-25.055 0 0 0-25.055 25.055-50.11s50.11-25.055 50.11-25.055c11.64 1.567 21.415 12.527 25.055 25.055z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"m186.744-418.231 50.11 75.166-50.11 50.11-75.165-50.111c-2.83-2.442 0-25.054 25.055-50.11s48.98-24.456 50.11-25.055z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M336.61-506.69c0-35.433 0-86.653 17.717-129.98 17.716 43.326 17.716 94.546 17.716 129.98z",transform:"rotate(135 434.752 18.668)scale(1 -.81782)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z",transform:"rotate(-45 399.396 -194.158)scale(1 .81782)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z",transform:"rotate(135 434.752 18.668)scale(1 -.81782)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m-314.356-894.281 37.583 37.583C-251.718-831.643-164.03-718.9-164.03-718.9s117.296 92.25 142.356 117.31l37.583 37.583c-25.056-25.055-179.937-129.835-179.937-129.835S-71.784-551.479-34.2-513.896l-37.583-37.583c-25.055-25.055-117.305-142.36-117.3-142.366-.005.005-100.223-75.168-125.276-100.22l-50.111-50.111c25.055 25.055 175.382 125.281 175.382 125.281s-100.22-150.338-125.272-175.391z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M299.493-230.317c50.11 75.165 100.221 125.276 112.744 137.8 23.776 23.819 50.11 25.055 50.11 25.055s0-25.056-25.055-50.11c-12.527-12.528-62.638-62.639-137.8-112.745zm-62.64-112.75c87.695 87.695 187.916 137.806 250.552 200.442 50.11 50.11 15.414 88.464 1.443 100.606s-51.966 50.282-101.664-.386c-62.638-62.638-112.746-162.857-200.442-250.552 0-25.055 25.056-50.11 50.11-50.11z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M218.28 257.88h22.934v73.043H218.28z",transform:"matrix(-1.2487 -1.4214 -1.3593 1.3175 1166.1 -102.64)"}),(0,a.jsxs)("g",{fill:"silver",stroke:"#000",children:[(0,a.jsx)("path",{strokeWidth:.561,d:"m301.18 396.85 17.717 17.717-17.717 17.716 8.858 8.859 17.717-17.717 35.433 35.433-17.717 17.717 8.859 8.858 17.716-17.716 17.717 17.716-53.15 53.15-35.433-35.433 17.717-17.717 8.858 8.859 8.858-8.859L301.18 450l-8.858 8.859 8.858 8.858-17.716 17.716-17.717-17.716 8.858-8.859-8.858-8.858-35.433 35.433 8.858 8.858 8.858-8.858 17.717 17.717-17.716 17.716-8.858-8.858-8.859 8.858 35.433 35.433 8.859-8.858-8.859-8.859 17.717-17.716 35.433 35.433-53.15 53.15-17.717-17.717 17.717-17.716-8.858-8.858-17.717 17.716-35.433-35.433 17.717-17.717-8.859-8.858-17.716 17.717-17.717-17.717 124.02-124.02z",transform:"matrix(-2.2946 0 0 2.2438 360.577 -1733.726)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M318.9 786.61v35.433l88.582 88.583V839.76l-17.716-17.717h-35.433z",transform:"matrix(-1.1473 0 0 1.1219 157.31 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m230.41 698.78 70.381 70.381.838 35.19-71.219-71.219z",transform:"matrix(-1.1473 0 0 1.1219 157.424 -1288.525)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(-1.1473 0 0 1.1219 157.31 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(-1.1473 0 0 1.1219 258.941 -1387.881)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M248.03 644.88v35.433l17.717-17.717z",transform:"matrix(-1.1473 0 0 1.1219 157.31 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M248.03 644.88v35.433l17.717-17.717z",transform:"matrix(-1.1473 0 0 1.1219 55.679 -1189.119)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m230.41 698.78 35.786 35.433v35.433l-35.786-36.514z",transform:"matrix(-1.1473 0 0 1.1219 218.806 -1348.97)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(-1.1473 0 0 1.1219 55.679 -1507.136)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(-1.1473 0 0 1.1219 136.983 -1427.638)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m283.46 822.05 53.15-53.15v-35.433l-70.866 70.866z",transform:"matrix(-1.1473 0 0 1.1219 136.983 -1546.896)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M248.03 644.88v35.433l17.717-17.717z",transform:"matrix(-1.1473 0 0 1.1219 35.352 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33-35.433-35.433v-35.433l35.433 35.433z",transform:"matrix(-1.1473 0 0 1.1219 55.679 -1507.136)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m389.76 822.05-53.15-53.15v-35.433l70.866 70.866z",transform:"matrix(-1.1473 0 0 1.1219 55.679 -1546.896)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m230.41 698.05 70.866 70.866h35.433l17.717 17.716v70.867l-124.02-124.37v-35.08z",transform:"matrix(-1.1473 0 0 1.1219 -66.161 -1387.906)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m354.33 822.05 106.3-106.3h35.433l-106.3 106.3z",transform:"matrix(-1.1473 0 0 1.1219 157.31 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3z",transform:"matrix(-1.1473 0 0 1.1219 157.31 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M407.48 839.76v70.866l106.3-106.3V733.46z",transform:"matrix(-1.1473 0 0 1.1219 157.31 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m354.33 822.05 106.3-106.3h35.433l-106.3 106.3z",transform:"matrix(-1.1473 0 0 1.1219 -5.297 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3z",transform:"matrix(-1.1473 0 0 1.1219 -5.297 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M407.48 839.76v70.866l106.3-106.3V733.46z",transform:"matrix(-1.1473 0 0 1.1219 -5.297 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m318.9 786.62 17.717-17.717V733.47l-35.433 35.433z",transform:"matrix(-1.1473 0 0 1.1219 -86.606 -1527.016)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m318.9 786.62 17.717-17.717V733.47l-35.433 35.433z",transform:"matrix(-1.1473 0 0 1.1219 15.022 -1626.394)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M265.75 768.9v-35.433l17.717 17.716z",transform:"matrix(-1.1473 0 0 1.1219 55.679 -1348.129)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33-35.433-35.433 17.717-17.717 17.716 17.717z",transform:"matrix(-1.1473 0 0 1.1219 136.983 -1427.638)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33-17.716-17.717 17.716-17.716z",transform:"matrix(-1.1473 0 0 1.1219 15.022 -1586.645)"})]}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M196.5 254.15h25.197v80.26H196.5z",transform:"matrix(-1.2509 -1.4194 -1.3614 1.3153 1166.1 -102.64)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M336.61 166.54c0 14.669 35.433 35.434 35.433-17.716H336.61z",transform:"matrix(-1.8992 0 0 1.8865 1166.1 -102.64)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M242.1 24.803c-147.06 0-113.13 164.24-100.37 124.02 9.359-29.503 35.433-70.866 64.935-80.225 40.225-12.761 26.696 9.359 41.364 9.359 14.67 0 1.14-22.12 41.364-9.359 29.503 9.359 55.577 50.722 64.936 80.225 12.76 40.224 53.149-124.02-112.23-124.02z",transform:"matrix(-1.8992 0 0 1.8865 1166.1 -102.64)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M389.76 166.54c0 78.237-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73v-17.716c.001-29.116 35.433 124.02 141.73 124.02s141.73-124.77 141.73-124.02z",transform:"matrix(-1.8992 0 0 1.8865 1166.1 -102.64)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M336.61 166.54c0 14.669 35.433 35.434 35.433-17.716H336.61z",transform:"matrix(1.8992 0 0 1.8865 224 -100.51)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M389.76 148.82c0 78.236-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73 0-78.236 63.496-141.73 141.73-141.73 78.237 0 141.73 63.496 141.73 141.73zm-53.15 0c0 14.669 22.812 3.042 9.359 43.04-9.359 27.826-27.075 45.543-56.578 54.902-40.225 12.76-26.694-9.359-41.364-9.359-14.668 0-1.14 22.119-41.364 9.359-29.502-9.359-47.218-27.076-56.577-56.578-12.76-40.224 9.359-26.695 9.359-41.364 0-14.67-22.119-1.139-9.359-41.364 9.359-29.502 27.075-47.219 56.577-56.578 40.225-12.761 26.696 9.359 41.364 9.359 14.67 0 1.14-22.12 41.364-9.359 29.503 9.359 47.219 27.075 56.578 56.578 12.76 40.224-9.359 26.694-9.359 41.364z",transform:"matrix(-1.8992 0 0 1.8865 1166.1 -102.64)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M126.55 157.68c-20.248 0-1.929 67.6-9.104 51.705s-11.144-33.368-11.144-51.705 3.969-35.809 11.144-51.705c7.175-15.894-11.144 51.705 9.104 51.705z",transform:"matrix(-1.6618 0 0 1.7607 1107.2 -99.519)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M372.05 139.96c0 15.892-2.13 31.632-9.751 44.811-7.965 13.775 9.751-44.811-7.965-44.811 17.716 0 1.687-58.587 7.965-44.811 6.279 13.776 9.751 28.919 9.751 44.811z",transform:"matrix(-1.8992 0 0 2.0316 1166.1 -106.24)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M296.29 263.08c-14.836 6.279-31.144 9.751-48.258 9.751s-33.422-3.472-48.257-9.751c-14.835-6.278 48.257 9.751 48.257-7.966 0 17.717 63.093 1.688 48.258 7.966zM248.03 42.52c0-17.716-63.092-1.688-48.257-7.966s31.143-9.75 48.257-9.75 33.422 3.472 48.258 9.75c14.835 6.278-48.258-9.75-48.258 7.966z",transform:"matrix(-1.8992 0 0 1.8865 1166.1 -102.64)"}),(0,a.jsx)("ellipse",{cx:82.112,cy:160.86,fill:"#fff133",stroke:"#000",strokeWidth:1.197,rx:18.433,ry:20.109,transform:"matrix(-1.2929 -1.3819 -1.3912 1.2842 1257.6 -120.02)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(-1.2929 -1.3819 1.3912 -1.2842 808.89 712.05)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(-1.2929 -1.3819 -1.3912 1.2842 1223.2 329.88)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M267.7 308.51c-9.223 1.889-20.189.927-29.969.927-9.778 0-19.285-2.612-28.509-4.501l8.821-10.303c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(-1.2929 -1.3819 -1.3912 1.2842 1223.2 329.88)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(-1.3912 1.2842 1.2929 1.3819 847.44 -345.21)"}),(0,a.jsx)("ellipse",{cx:82.112,cy:160.86,fill:"#fff133",stroke:"#000",strokeWidth:1.197,rx:18.433,ry:20.109,transform:"matrix(-1.2929 -1.3819 -1.3912 1.2842 789.14 314.38)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M267.59 281.47c-9.223 1.889-17.098 2.943-26.877 2.943s-23.112-.712-32.336-2.601l9.672 12.822c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(-1.3912 1.2842 1.2929 1.3819 850.63 -315.18)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m173.94 271.77-.838 14.842-3.239 4.493.976-15.087zM330.54 265.6l3.562 4.189 1.047 13.616-2.933-2.933z",transform:"matrix(-1.8992 0 0 1.8865 1166.1 -102.64)"}),(0,a.jsx)("ellipse",{cx:82.112,cy:160.86,fill:"#fff133",stroke:"#000",strokeWidth:1.197,rx:18.433,ry:20.109,transform:"matrix(-1.2929 -1.3819 -1.3912 1.2842 1237.6 329.88)"})]}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"m513.78-790.16 35.432-17.714 35.433 17.714s-73.366 35.433-73.366 159.45c-.001 88.58 125.26 106.3 125.26 212.6 0 45.649-34.183 88.582-69.616 88.582s-88.583-17.716-141.73-70.866c35.433 17.716 76.082 37.308 106.3 36.058 19.588-.405 55.025-17.716 55.025-53.149 0-70.866-122.77-106.92-122.77-213.22 0-124.02 50.025-159.45 50.026-159.45z",transform:"matrix(-.24 0 0 .1991 534.09 334.357)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"m520.25-790.16 46.683-17.717 10 17.717s-70.649 35.433-70.649 159.45c-.001 88.58 125.89 106.3 125.89 212.6 0 45.649-26.714 87.362-65.241 88.582-73.403 2.363-90.458-23.966-141.73-70.866 43.149 32.308 105 46.752 129.02 34.183 29.354-15.364 35.024-36.058 35.024-53.774 0-70.866-120.89-104.42-120.89-210.72 0-124.02 51.9-159.45 51.9-159.45z",transform:"matrix(-.24 0 0 .1991 534.09 334.357)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M513.34-789.69c7.004-2.437 35.875-18.186 71.308 17.247 17.717 17.72 17.716 53.149 17.716 70.866l53.15-53.149s-29.066-86.87-107.62-53.592c-11.127 4.901-28.139 14.538-34.549 18.628z",transform:"matrix(-.24 0 0 .1991 534.09 334.357)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M523.8-795.94c8.839-2.869 36.676-6.325 64.596 18.501 17.717 17.72 18.966 42.933 18.966 60.65l40.65-37.933c3.44-3.21-24.832-81.252-99.241-54.034-4.498 1.807-14.779 6.302-24.971 12.816z",transform:"matrix(-.24 0 0 .1991 534.09 334.357)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839l5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696.054-9.464-1.714z",transform:"matrix(-.19534 -.02065 -.06668 .17315 439.546 337.121)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839l5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696.054-9.464-1.714z",transform:"matrix(.17775 .02412 .0031 -.13262 320.605 95.229)"}),(0,a.jsxs)("g",{transform:"matrix(.14437 0 0 .12085 423.643 295.291)",children:[(0,a.jsxs)("g",{transform:"rotate(45 478.12 -504.573)",children:[(0,a.jsx)("circle",{cx:354.33,cy:-1428,r:35.433,fill:"silver",stroke:"#000",strokeWidth:1.197,transform:"translate(124.01 283.46)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M460.63-1126.77v53.15h35.432l.001-53.15c0-17.717-35.433-17.717-35.433 0z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M442.91-1066.09h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M442.91-1073.62v53.15h70.866v-53.15c-17.717-10.607-53.15-10.607-70.866 0z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M442.91-1012.94h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z"}),(0,a.jsx)("path",{fill:"#fff133",d:"M442.91-116.93h70.866V131.1H442.91z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m442.91-1020.476.006 484.79h70.867l-.007-484.79c-17.717-10.607-53.15-10.607-70.866 0z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M442.92-506.698h70.866c9.757-9.756 9.757-26.095 0-35.433-25.991-10.607-44.874-9.48-70.866 0-8.307 9.338-9.422 24.826 0 35.433z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M442.92-506.7v318.9h70.866v-318.9c-17.717-10.607-53.15-10.607-70.866 0z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M425.19-329.53h106.3c9.757-9.756 9.757-26.095 0-35.433 0 0-17.716-17.716-53.149-17.716s-53.15 17.716-53.15 17.716c-7.122 9.338-6.284 24.001 0 35.433z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m425.19-329.53 17.717 88.583h70.866l17.716-88.583c.274-3.727-17.716-17.716-53.149-17.716s-51.928 17.341-53.15 17.716z"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M336.61-506.69c0-35.433 0-86.653 17.717-129.98 17.716 43.326 17.716 94.546 17.716 129.98z",transform:"matrix(1 0 0 .81782 124.01 173.44)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z",transform:"matrix(-1 0 0 .81782 832.67 173.44)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M318.9-506.69h17.716v-43.326c0-43.327-35.433-64.99-35.433-64.99l17.717 108.32z",transform:"matrix(1 0 0 .81782 124.01 173.44)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M478.34-116.93c17.716 88.582 17.716 159.45 17.716 177.16.031 33.655-17.716 53.15-17.716 53.15s-17.717-17.717-17.717-53.15c0-17.716 0-88.583 17.717-177.16zm-35.433-124.02c0 124.02-35.433 230.32-35.433 318.9 0 70.866 51.654 73.453 70.118 72.16s72.3-1.191 71.614-72.16c0-88.583-35.433-194.88-35.433-318.9-17.717-17.716-53.15-17.716-70.866 0z"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M442.91-1020.476v53.15c0 35.433 17.716 177.16 17.716 177.16s-17.71 148.17-17.71 183.61v53.15c0-35.433 35.427-219.04 35.427-219.04s35.44 165.89 35.44 219.04v-53.15c0-35.433-17.717-183.61-17.724-183.61.007 0 17.717-124.02 17.717-159.45v-70.867c0 35.433-35.426 212.6-35.426 212.6s-35.44-177.17-35.44-212.6z"})]}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M218.28 257.88h22.934v73.043H218.28z",transform:"matrix(1.2487 -1.4214 1.3593 1.3175 -662.45 -102.64)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M336.61 166.54c0 14.669 35.433 35.434 35.433-17.716H336.61z",transform:"matrix(1.8992 0 0 1.8865 -662.45 -102.64)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M242.1 24.803c-147.06 0-113.13 164.24-100.37 124.02 9.359-29.503 35.433-70.866 64.935-80.225 40.225-12.761 26.696 9.359 41.364 9.359 14.67 0 1.14-22.12 41.364-9.359 29.503 9.359 55.577 50.722 64.936 80.225 12.76 40.224 53.149-124.02-112.23-124.02z",transform:"matrix(1.8992 0 0 1.8865 -662.45 -102.64)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M389.76 166.54c0 78.237-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73v-17.716c.001-29.116 35.433 124.02 141.73 124.02s141.73-124.77 141.73-124.02z",transform:"matrix(1.8992 0 0 1.8865 -662.45 -102.64)"}),(0,a.jsx)("ellipse",{cx:82.112,cy:160.86,fill:"silver",stroke:"#000",strokeWidth:1.197,rx:18.433,ry:20.109,transform:"matrix(1.2929 -1.3819 1.3912 1.2842 -753.9 -120.02)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M196.5 254.15h25.197v80.26H196.5z",transform:"matrix(1.2509 -1.4194 1.3614 1.3153 -662.45 -102.64)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M336.61 166.54c0 14.669 35.433 35.434 35.433-17.716H336.61z",transform:"matrix(-1.8992 0 0 1.8865 279.67 -100.51)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M389.76 148.82c0 78.236-63.496 141.73-141.73 141.73-78.236 0-141.73-63.496-141.73-141.73 0-78.236 63.496-141.73 141.73-141.73 78.237 0 141.73 63.496 141.73 141.73zm-53.15 0c0 14.669 22.812 3.042 9.359 43.04-9.359 27.826-27.075 45.543-56.578 54.902-40.225 12.76-26.694-9.359-41.364-9.359-14.668 0-1.14 22.119-41.364 9.359-29.502-9.359-47.218-27.076-56.577-56.578-12.76-40.224 9.359-26.695 9.359-41.364 0-14.67-22.119-1.139-9.359-41.364 9.359-29.502 27.075-47.219 56.577-56.578 40.225-12.761 26.696 9.359 41.364 9.359 14.67 0 1.14-22.12 41.364-9.359 29.503 9.359 47.219 27.075 56.578 56.578 12.76 40.224-9.359 26.694-9.359 41.364z",transform:"matrix(1.8992 0 0 1.8865 -662.45 -102.64)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M126.55 157.68c-20.248 0-1.929 67.6-9.104 51.705s-11.144-33.368-11.144-51.705 3.969-35.809 11.144-51.705c7.175-15.894-11.144 51.705 9.104 51.705z",transform:"matrix(1.6618 0 0 1.7607 -603.57 -99.519)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M372.05 139.96c0 15.892-2.13 31.632-9.751 44.811-7.965 13.775 9.751-44.811-7.965-44.811 17.716 0 1.687-58.587 7.965-44.811 6.279 13.776 9.751 28.919 9.751 44.811z",transform:"matrix(1.8992 0 0 2.0316 -662.45 -106.24)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M296.29 263.08c-14.836 6.279-31.144 9.751-48.258 9.751s-33.422-3.472-48.257-9.751c-14.835-6.278 48.257 9.751 48.257-7.966 0 17.717 63.093 1.688 48.258 7.966zM248.03 42.52c0-17.716-63.092-1.688-48.257-7.966s31.143-9.75 48.257-9.75 33.422 3.472 48.258 9.75c14.835 6.278-48.258-9.75-48.258 7.966z",transform:"matrix(1.8992 0 0 1.8865 -662.45 -102.64)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(1.2929 -1.3819 -1.3912 -1.2842 -305.22 712.05)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(1.2929 -1.3819 1.3912 1.2842 -719.56 329.88)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M267.7 308.51c-9.223 1.889-20.189.927-29.969.927-9.778 0-19.285-2.612-28.509-4.501l8.821-10.303c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(1.2929 -1.3819 1.3912 1.2842 -719.56 329.88)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M276.58 287.67c-9.223 1.889-18.773 2.881-28.552 2.881s-19.329-.992-28.553-2.881l-1.432 6.965c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(1.3912 1.2842 -1.2929 1.3819 -343.78 -345.21)"}),(0,a.jsx)("ellipse",{cx:82.112,cy:160.86,fill:"silver",stroke:"#000",strokeWidth:1.197,rx:18.433,ry:20.109,transform:"matrix(1.2929 -1.3819 1.3912 1.2842 -285.47 314.38)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"M267.59 281.47c-9.223 1.889-17.098 2.943-26.877 2.943s-23.112-.712-32.336-2.601l9.672 12.822c9.686 1.984 19.715 3.025 29.985 3.025s20.299-1.041 29.985-3.025z",transform:"matrix(1.3912 1.2842 -1.2929 1.3819 -346.96 -315.18)"}),(0,a.jsx)("path",{fill:"silver",stroke:"#000",strokeWidth:1.197,d:"m173.94 271.77-.838 14.842-3.239 4.493.976-15.087zM330.54 265.6l3.562 4.189 1.047 13.616-2.933-2.933z",transform:"matrix(1.8992 0 0 1.8865 -662.45 -102.64)"}),(0,a.jsx)("ellipse",{cx:82.112,cy:160.86,fill:"silver",stroke:"#000",strokeWidth:1.197,rx:18.433,ry:20.109,transform:"matrix(1.2929 -1.3819 1.3912 1.2842 -733.89 329.88)"}),(0,a.jsxs)("g",{fill:"#fff133",stroke:"#000",children:[(0,a.jsx)("path",{strokeWidth:.561,d:"m301.18 396.85 17.717 17.717-17.717 17.716 8.858 8.859 17.717-17.717 35.433 35.433-17.717 17.717 8.859 8.858 17.716-17.716 17.717 17.716-53.15 53.15-35.433-35.433 17.717-17.717 8.858 8.859 8.858-8.859L301.18 450l-8.858 8.859 8.858 8.858-17.716 17.716-17.717-17.716 8.858-8.859-8.858-8.858-35.433 35.433 8.858 8.858 8.858-8.858 17.717 17.717-17.716 17.716-8.858-8.858-8.859 8.858 35.433 35.433 8.859-8.858-8.859-8.859 17.717-17.716 35.433 35.433-53.15 53.15-17.717-17.717 17.717-17.716-8.858-8.858-17.717 17.716-35.433-35.433 17.717-17.717-8.859-8.858-17.716 17.717-17.717-17.717 124.02-124.02z",transform:"matrix(2.2946 0 0 2.2438 143.093 -1733.726)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M318.9 786.61v35.433l88.582 88.583V839.76l-17.716-17.717h-35.433z",transform:"matrix(1.1473 0 0 1.1219 346.36 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m230.41 698.78 70.381 70.381.838 35.19-71.219-71.219z",transform:"matrix(1.1473 0 0 1.1219 346.246 -1288.525)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(1.1473 0 0 1.1219 346.36 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(1.1473 0 0 1.1219 244.729 -1387.881)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M248.03 644.88v35.433l17.717-17.717z",transform:"matrix(1.1473 0 0 1.1219 346.36 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M248.03 644.88v35.433l17.717-17.717z",transform:"matrix(1.1473 0 0 1.1219 447.991 -1189.119)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m230.41 698.78 35.786 35.433v35.433l-35.786-36.514z",transform:"matrix(1.1473 0 0 1.1219 284.864 -1348.97)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(1.1473 0 0 1.1219 447.991 -1507.136)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33 35.433-35.433v-35.433l-35.433 35.433z",transform:"matrix(1.1473 0 0 1.1219 366.687 -1427.638)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m283.46 822.05 53.15-53.15v-35.433l-70.866 70.866z",transform:"matrix(1.1473 0 0 1.1219 366.687 -1546.896)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M248.03 644.88v35.433l17.717-17.717z",transform:"matrix(1.1473 0 0 1.1219 468.318 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33-35.433-35.433v-35.433l35.433 35.433z",transform:"matrix(1.1473 0 0 1.1219 447.991 -1507.136)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m389.76 822.05-53.15-53.15v-35.433l70.866 70.866z",transform:"matrix(1.1473 0 0 1.1219 447.991 -1546.896)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m230.41 698.05 70.866 70.866h35.433l17.717 17.716v70.867l-124.02-124.37v-35.08z",transform:"matrix(1.1473 0 0 1.1219 569.831 -1387.906)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m354.33 822.05 106.3-106.3h35.433l-106.3 106.3z",transform:"matrix(1.1473 0 0 1.1219 346.36 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3z",transform:"matrix(1.1473 0 0 1.1219 346.36 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M407.48 839.76v70.866l106.3-106.3V733.46z",transform:"matrix(1.1473 0 0 1.1219 346.36 -1288.5)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m354.33 822.05 106.3-106.3h35.433l-106.3 106.3z",transform:"matrix(1.1473 0 0 1.1219 508.967 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m407.48 839.76 106.3-106.3-17.72-17.71-106.3 106.3z",transform:"matrix(1.1473 0 0 1.1219 508.967 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M407.48 839.76v70.866l106.3-106.3V733.46z",transform:"matrix(1.1473 0 0 1.1219 508.967 -1447.507)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m318.9 786.62 17.717-17.717V733.47l-35.433 35.433z",transform:"matrix(1.1473 0 0 1.1219 590.276 -1527.016)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m318.9 786.62 17.717-17.717V733.47l-35.433 35.433z",transform:"matrix(1.1473 0 0 1.1219 488.648 -1626.394)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"M265.75 768.9v-35.433l17.717 17.716z",transform:"matrix(1.1473 0 0 1.1219 447.991 -1348.129)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33-35.433-35.433 17.717-17.717 17.716 17.717z",transform:"matrix(1.1473 0 0 1.1219 366.687 -1427.638)"}),(0,a.jsx)("path",{strokeWidth:1.122,d:"m301.18 804.33-17.716-17.717 17.716-17.716z",transform:"matrix(1.1473 0 0 1.1219 488.648 -1586.645)"})]})]}),(0,a.jsxs)("g",{fill:"#b00",stroke:"#000",strokeWidth:17.958,children:[(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 452.07 279.279)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.107 277.374)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 452.114 274.997)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.15 273.091)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.98 287.843)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.018 285.938)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 452.025 283.561)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.062 281.656)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 452.246 262.15)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.284 260.246)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 452.29 257.87)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.328 255.964)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 452.158 270.715)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.195 268.81)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 452.202 266.433)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 452.24 264.528)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.715 313.535)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.753 311.63)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.76 309.253)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.797 307.348)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.627 322.098)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.664 320.194)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.671 317.817)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.708 315.912)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.892 296.407)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.93 294.502)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.937 292.125)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.974 290.22)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.804 304.97)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.841 303.066)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.848 300.689)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.885 298.784)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.361 347.79)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.399 345.886)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.406 343.509)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.443 341.603)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.31 354.45)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.317 352.072)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.354 350.168)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.538 330.663)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.576 328.757)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.583 326.381)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.62 324.476)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.45 339.227)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.487 337.322)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.494 334.945)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.531 333.04)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.139 369.31)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.176 367.404)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.183 365.028)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.22 363.123)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.088 375.969)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.095 373.591)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.132 371.687)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.227 360.745)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01446 .00854 -.00318 .01423 451.265 358.841)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01435 .009 -.00335 .01413 451.272 356.464)"})]}),(0,a.jsxs)("g",{fill:"#b00",stroke:"#000",strokeWidth:17.958,children:[(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.007 279.558)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.018 277.653)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 454.993 275.276)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.005 273.37)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.034 288.122)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.045 286.217)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.02 283.84)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.032 281.935)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 454.953 262.43)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 454.964 260.525)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 454.94 258.148)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 454.951 256.242)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 454.98 270.994)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 454.991 269.088)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 454.966 266.711)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 454.978 264.807)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.115 313.816)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.126 311.91)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.101 309.533)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.113 307.628)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.142 322.38)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.153 320.475)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.128 318.097)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.14 316.193)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.06 296.687)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.072 294.782)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.047 292.405)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.059 290.5)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.088 305.251)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.1 303.346)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.074 300.969)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.086 299.064)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.222 348.072)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.234 346.168)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.209 343.79)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.22 341.885)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.261 354.731)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.236 352.354)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.247 350.45)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.169 330.944)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.18 329.038)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.155 326.662)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.167 324.756)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.195 339.509)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.207 337.603)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.182 335.226)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.194 333.321)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.29 369.592)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.302 367.687)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.277 365.31)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.288 363.405)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.329 376.251)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.304 373.874)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.315 371.97)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.263 361.028)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01457 .0084 -.003 .01426 455.275 359.123)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01447 .00887 -.00316 .01416 455.25 356.746)"})]}),(0,a.jsxs)("g",{fill:"#b00",stroke:"#000",strokeWidth:12.791,children:[(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01804 .0045 .00258 .01426 466.68 266.44)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.00502 .01448 -.01369 .00945 463.064 262.695)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01316 .01078 -.0063 .01351 464.422 264.973)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.011 .01222 -.01787 -.00248 462.708 259.138)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0104 .0123 -.018 -.00234 465.109 259.125)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01155 .01189 -.01775 -.003 452.207 259.055)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01097 .01198 -.01788 -.00286 454.606 259.113)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01155 .01189 -.01775 -.003 457.6 259.152)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0104 .0123 -.018 -.00234 459.715 259.187)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01155 .01189 -.01775 -.003 448.742 258.147)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01268 .01087 -.01732 -.00452 450.414 258.509)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01676 .00696 -.01454 -.00862 449.456 256.964)"})]}),(0,a.jsxs)("g",{fill:"#b00",stroke:"#000",strokeWidth:12.791,children:[(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01456 -.00876 -.0151 .00691 500.895 356.244)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01407 -.00899 -.01526 .0068 503.055 355.643)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01456 -.00876 -.0151 .00691 505.762 354.925)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01407 -.00899 -.01526 .0068 507.922 354.324)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01737 .00284 -.00405 .01407 523.959 347.347)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01147 .01155 .00717 .0131 526.045 341.334)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0175 .0033 -.00385 .01404 525.113 345.175)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0136 -.00978 -.01575 .0058 490.77 358.257)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0131 -.00997 -.0159 .00568 492.983 357.815)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01493 -.00832 -.0148 .00736 496.453 357.222)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01254 -.01046 -.0162 .00507 497.317 356.546)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01456 -.00876 -.0151 .00691 510.629 353.606)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01407 -.00899 -.01526 .0068 512.788 353.005)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01096 -.01188 -.01683 .003 458.727 360.068)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01041 -.01198 -.01695 .00287 461 360.008)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01096 -.01188 -.01683 .003 463.84 359.968)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01041 -.01198 -.01695 .00287 466.116 359.91)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01096 -.01188 -.01683 .003 448.498 360.265)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01041 -.01198 -.01695 .00287 450.773 360.205)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01096 -.01188 -.01683 .003 453.612 360.165)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01041 -.01198 -.01695 .00287 455.887 360.107)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01244 -.01081 -.01634 .00452 479.926 359.599)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01231 -.01064 -.0163 .00483 482.462 359.341)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01284 -.01048 -.01616 .00495 485.265 358.968)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0131 -.00997 -.0159 .00568 488 358.778)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01096 -.01188 -.01683 .003 468.954 359.87)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0113 -.0114 -.0167 .00377 471.61 359.856)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0125 -.01076 -.01631 .0046 474.785 359.779)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01107 -.01156 -.01677 .00353 476.597 359.414)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00824 -.01334 -.0172 .00043 416.695 358.169)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00768 -.01335 -.01729 .00028 418.945 358.453)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00983 -.01256 -.01706 .0019 422.369 359.196)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00927 -.01262 -.01717 .00176 424.642 359.286)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00768 -.01335 -.01729 .00028 408.84 357.112)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00824 -.01334 -.0172 .00043 411.642 357.498)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00768 -.01335 -.01729 .00028 413.893 357.782)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00983 -.01256 -.01706 .0019 437.692 359.897)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00927 -.01262 -.01717 .00176 439.965 359.987)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01096 -.01188 -.01683 .003 443.384 360.362)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01041 -.01198 -.01695 .00287 445.658 360.304)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00983 -.01256 -.01706 .0019 427.477 359.43)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00927 -.01262 -.01717 .00176 429.75 359.519)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00983 -.01256 -.01706 .0019 432.585 359.663)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00927 -.01262 -.01717 .00176 434.858 359.752)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01773 -.00226 .00503 -.01378 399.867 338.592)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0141 -.00895 -.00376 -.01413 397.117 342.637)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.00947 -.01275 -.00925 -.01215 396.961 346.746)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.00376 -.01448 -.01383 -.00869 397.682 350.215)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01766 .00094 .00819 -.01275 405.433 332.911)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01793 .00053 .00798 -.01276 403.656 334.766)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01757 -.0018 .00523 -.0138 401.203 336.495)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.001 -.01499 -.0159 -.0055 399.736 353.467)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00438 -.01435 -.01702 -.00258 402.69 355.36)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.00824 -.01334 -.0172 .00043 406.461 356.81)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0174 -.00361 -.01096 .0111 516.711 351.703)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.0168 -.00469 -.0118 .01058 516.854 352.14)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01764 -.00272 -.01013 .01164 521.71 349.38)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(-.01667 -.00498 -.01207 .01037 518.628 350.93)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01634 -.0062 .01318 .00926 511.524 341.023)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0159 -.0065 .01336 .00919 509.547 340.079)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01686 -.00512 .01228 .01009 506.422 338.863)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0159 -.0065 .01336 .00919 518.47 344.267)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.01634 -.0062 .01318 .00926 515.986 343.118)"}),(0,a.jsx)("path",{d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.0159 -.0065 .01336 .00919 514.008 342.173)"})]}),(0,a.jsxs)("g",{transform:"matrix(.08053 0 0 .0956 438.435 288.09)",children:[(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M212.603-1994.912v53.15h-53.15v35.44h53.15v106.3h35.433v-106.3h53.149v-35.44h-53.149v-53.15z"}),(0,a.jsx)("ellipse",{cx:239.17,cy:-1813.5,fill:"#fff133",stroke:"#000",strokeWidth:1.197,rx:62.008,ry:57.32,transform:"matrix(.57143 0 0 .61816 93.645 -678.94)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M602.36-1119.4c0 68.45-10.417 145.68-29.252 205.02-120.08-26.455-268.06-39.682-339.04-39.682-87.586 0-246.15 13.227-345.26 26.455-18.835-59.336-30.538-123.34-30.538-191.79 0-273.81 105.27-390.21 367.5-496.03 233.3 105.82 376.6 222.22 376.6 496.03z",transform:"matrix(1.0576 0 0 1.3394 -5.764 363.72)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583z",transform:"matrix(1.1715 0 0 .74463 -32.833 -634.89)"}),(0,a.jsxs)("g",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,children:[(0,a.jsx)("path",{d:"m230.32-825.59-53.15 53.15 35.433 35.433-17.716 17.717-35.433-35.433-53.15 53.149 53.15 53.15 35.433-35.433 17.716 17.716v53.15h35.433v-53.15l17.717-17.716 35.433 35.433 53.15-53.15-53.15-53.149-35.433 35.433-17.717-17.717 35.434-35.433z",transform:"matrix(1.1725 0 0 .74463 -33.06 -766.809)"}),(0,a.jsx)("path",{d:"m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-.001v-53.15l17.717-17.716-.001 35.432 17.717-53.149-17.717-53.15.001 35.434-17.717-17.717v-35.433z",transform:"matrix(1.13516 -.18643 .29356 .72091 -190.034 -703.65)"}),(0,a.jsx)("path",{d:"m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-.001v-53.15l17.717-17.716-.001 35.432 17.717-53.149-17.717-53.15.001 35.434-17.717-17.717v-35.433z",transform:"matrix(1.1416 .16986 -.26746 .725 182.2 -778.388)"}),(0,a.jsx)("path",{d:"M141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44s35.433 17.72 35.433 35.44-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15H88.581l70.866-70.866s-17.717-17.711-17.717-35.431z",transform:"matrix(.92597 -.09509 .18717 .73508 28.799 -521.9)"}),(0,a.jsx)("path",{d:"M141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44s35.433 17.72 35.433 35.44-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15H88.581l70.866-70.866s-17.717-17.711-17.717-35.431z",transform:"matrix(.92699 .091 -.17909 .7359 124.84 -554.076)"}),(0,a.jsx)("path",{d:"M566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583z",transform:"matrix(1.1725 0 0 .74463 -33.06 -674.46)"})]}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583z",transform:"matrix(1.0735 0 0 .74463 -9.254 -386.86)"}),(0,a.jsxs)("g",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,children:[(0,a.jsx)("path",{d:"m230.32-825.59-53.15 53.15 35.433 35.433-17.716 17.717-35.433-35.433-53.15 53.149 53.15 53.15 35.433-35.433 17.716 17.716v53.15h35.433v-53.15l17.717-17.716 35.433 35.433 53.15-53.15-53.15-53.149-35.433 35.433-17.717-17.717 35.434-35.433z",transform:"matrix(1.1042 0 0 .74463 -12.892 -518.779)"}),(0,a.jsx)("path",{d:"m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-.001v-53.15l17.717-17.716-.001 35.432 17.717-53.149-17.717-53.15.001 35.434-17.717-17.717v-35.433z",transform:"scale(1.1042 .74463)rotate(-14.499 -2477.736 266.166)"}),(0,a.jsx)("path",{d:"m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-.001v-53.15l17.717-17.716-.001 35.432 17.717-53.149-17.717-53.15.001 35.434-17.717-17.717v-35.433z",transform:"scale(1.1042 .74463)rotate(13.186 3167.166 387.593)"}),(0,a.jsx)("path",{d:"M141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44s35.433 17.72 35.433 35.44-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15H88.581l70.866-70.866s-17.717-17.711-17.717-35.431z",transform:"matrix(.87203 -.09509 .17626 .73508 45.363 -273.87)"}),(0,a.jsx)("path",{d:"M141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44s35.433 17.72 35.433 35.44-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15H88.581l70.866-70.866s-17.717-17.711-17.717-35.431z",transform:"matrix(.873 .091 -.16866 .7359 135.81 -306.046)"}),(0,a.jsx)("path",{d:"M566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583z",transform:"matrix(1.1042 0 0 .74463 -12.892 -426.43)"})]}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"M566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583z",transform:"matrix(1.105 0 0 .74463 -16.106 -865.2)"}),(0,a.jsxs)("g",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,children:[(0,a.jsx)("path",{d:"m230.32-825.59-53.15 53.15 35.433 35.433-17.716 17.717-35.433-35.433-53.15 53.149 53.15 53.15 35.433-35.433 17.716 17.716v53.15h35.433v-53.15l17.717-17.716 35.433 35.433 53.15-53.15-53.15-53.149-35.433 35.433-17.717-17.717 35.434-35.433z",transform:"matrix(1.0799 0 0 .70238 -6.168 -1031.347)"}),(0,a.jsx)("path",{d:"m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-.001v-53.15l17.717-17.716-.001 35.432 17.717-53.149-17.717-53.15.001 35.434-17.717-17.717v-35.433z",transform:"matrix(1.0455 -.17585 .27037 .68 -150.745 -971.771)"}),(0,a.jsx)("path",{d:"m220.98-825.59-8.379 53.15v35.433l-17.716 17.717v-35.434l-17.717 53.15 17.717 53.149v-35.432l17.716 17.716v53.15l17.717-.001v-53.15l17.717-17.716-.001 35.432 17.717-53.149-17.717-53.15.001 35.434-17.717-17.717v-35.433z",transform:"scale(1.0799 .70238)rotate(13.186 6508.428 27.561)"}),(0,a.jsx)("path",{d:"M141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44s35.433 17.72 35.433 35.44-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15H88.581l70.866-70.866s-17.717-17.711-17.717-35.431z",transform:"matrix(.85284 -.0897 .17238 .69338 50.806 -800.335)"}),(0,a.jsx)("path",{d:"M141.73-1020.5c0-17.72 17.717-35.44 35.433-35.44s35.433 17.72 35.433 35.44-17.716 35.431-17.716 35.431l70.866 70.866h-35.433l-53.15-53.15-53.149 53.15H88.581l70.866-70.866s-17.717-17.711-17.717-35.431z",transform:"matrix(.85378 .08583 -.16494 .69414 139.262 -830.684)"}),(0,a.jsx)("path",{d:"M566.93-657.28c0-44.007-150.8-79.724-336.61-79.724s-336.61 35.717-336.61 79.724v26.575c0-44.007 150.8-70.866 336.61-70.866s336.61 44.576 336.61 88.583z",transform:"matrix(1.0799 0 0 .70238 -6.168 -944.238)"})]}),(0,a.jsx)("ellipse",{cx:234.13,cy:-822.11,fill:"#b90000",rx:375.87,ry:120.53,transform:"matrix(.96627 0 0 .41385 12.936 -517.53)"})]}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"m513.78-790.16 35.432-17.714 35.433 17.714s-73.366 35.433-73.366 159.45c-.001 88.58 125.26 106.3 125.26 212.6 0 45.649-34.183 88.582-69.616 88.582s-88.583-17.716-141.73-70.866c35.433 17.716 76.082 37.308 106.3 36.058 19.588-.405 55.025-17.716 55.025-53.149 0-70.866-122.77-106.92-122.77-213.22 0-124.02 50.025-159.45 50.026-159.45z",transform:"matrix(.24 0 0 .1991 381.891 336.17)"}),(0,a.jsx)("path",{fill:"#b00",stroke:"#000",strokeWidth:17.958,d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.02071 -.00148 .00948 .02238 454.378 384)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"m520.25-790.16 46.683-17.717 10 17.717s-70.649 35.433-70.649 159.45c-.001 88.58 125.89 106.3 125.89 212.6 0 45.649-26.714 87.362-65.241 88.582-73.403 2.363-90.458-23.966-141.73-70.866 43.149 32.308 105 46.752 129.02 34.183 29.354-15.364 35.024-36.058 35.024-53.774 0-70.866-120.89-104.42-120.89-210.72 0-124.02 51.9-159.45 51.9-159.45z",transform:"matrix(.24 0 0 .1991 381.891 336.17)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M513.34-789.69c7.004-2.437 35.875-18.186 71.308 17.247 17.717 17.72 17.716 53.149 17.716 70.866l53.15-53.149s-29.066-86.87-107.62-53.592c-11.127 4.901-28.139 14.538-34.549 18.628z",transform:"matrix(.24 0 0 .1991 381.891 336.17)"}),(0,a.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:1.197,d:"M523.8-795.94c8.839-2.869 36.676-6.325 64.596 18.501 17.717 17.72 18.966 42.933 18.966 60.65l40.65-37.933c3.44-3.21-24.832-81.252-99.241-54.034-4.498 1.807-14.779 6.302-24.971 12.816z",transform:"matrix(.24 0 0 .1991 381.891 336.17)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839l5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696.054-9.464-1.714z",transform:"matrix(.19534 -.02065 .06668 .17315 476.436 338.935)"}),(0,a.jsx)("path",{fill:"#fff133",stroke:"#000",strokeWidth:1.197,d:"m344.54-596.29 9.152 22.141s1.455-9.767 8.526-11.534l7.071-1.768s26.864 49.328 32.168 58.167c5.302 8.838-3.536 16.793-1.769 16.793 1.769 0 26.517-11.49 26.517-11.49s-10.606.883-15.026-6.188-34.819-59.934-34.819-59.934 6.187-2.652 11.49-5.303c5.304-2.652 10.607 7.955 10.607 7.955l-13.258-26.517s0 8.839-4.42 10.607c-4.419 1.767-7.955 3.535-7.955 3.535s-3.535-6.187-7.955-13.258c-4.419-7.071 4.42-14.142 4.42-14.142l-22.981 11.49s7.955 4.42 10.607 8.839l5.303 8.839s-3.223 1.768-8.214 3.482c-3.589 1.875-7.696.054-9.464-1.714z",transform:"matrix(-.17775 .02412 -.0031 -.13262 595.381 97.041)"}),(0,a.jsx)("path",{fill:"#b00",stroke:"#000",strokeWidth:17.958,d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.02071 -.00148 .00948 .02238 457.876 383.788)"}),(0,a.jsx)("path",{fill:"#b00",stroke:"#000",strokeWidth:17.958,d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.03487 -.00148 .01595 .02238 452.669 386.727)"}),(0,a.jsx)("path",{fill:"#b00",stroke:"#000",strokeWidth:17.958,d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.03487 -.00148 .01595 .02238 455.97 386.514)"}),(0,a.jsx)("path",{fill:"#b00",stroke:"#000",strokeWidth:17.958,d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.04323 -.00148 .01978 .02238 451.35 389.865)"}),(0,a.jsx)("path",{fill:"#b00",stroke:"#000",strokeWidth:17.958,d:"M212.6-453.54c-35.433 0-70.866 35.433-70.866 70.866s35.433 70.866 70.866 70.866h194.88c35.433 0 70.866-35.433 70.866-70.866 0-37.027-35.433-70.866-70.866-70.866z",transform:"matrix(.04323 -.00148 .01978 .02238 455.442 389.652)"}),(0,a.jsx)("path",{fill:"#ffe000",d:"M0 0h320v480H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4715.3e1202d6.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js deleted file mode 100644 index 5c340be868..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4718.b15efaaf.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4718"],{79677(l,i,h){h.r(i),h.d(i,{default:()=>e});var s=h(74848);h(47867);let e=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"lr_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#lr_inline_svg__a)",transform:"scale(.9375)",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 .084h767.87v511.92H0z"}),(0,s.jsx)("path",{fill:"#006",d:"M0 0h232.74v232.75H0z"}),(0,s.jsx)("path",{fill:"#c00",d:"M0 464.87h767.89v47.127H0z"}),(0,s.jsx)("path",{fill:"#c00",d:"M0 465.43h767.89v46.574H0zM0 372.52h767.89v46.21H0zM0 279.26h765.96v46.7H0zM232.67.055h535.17v46.494H232.67zM232.67 186.06h535.17v46.796H232.67zM232.67 93.361h535.17v46.494H232.67z"}),(0,s.jsx)("path",{fill:"#fff",d:"m166.35 177.47-50.71-30.98-50.465 31.29 18.769-50.85-50.373-31.394 62.321-.438 19.328-50.691 19.744 50.574 62.321.067-50.115 31.693 19.184 50.732z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4718.b15efaaf.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js deleted file mode 100644 index fc42531d59..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4771.c5e9b1dd.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4771"],{13182(e,l,i){i.r(l),i.d(l,{default:()=>h});var s=i(74848);i(47867);let h=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v479.997H0z"}),(0,s.jsx)("path",{fill:"#005700",d:"M0 0h213.331v479.997H0z"}),(0,s.jsx)("path",{fill:"#fc0000",d:"M426.663 0h213.331v479.997H426.663z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4771.c5e9b1dd.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js deleted file mode 100644 index a931e5c118..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4799.a225248d.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4799"],{58882(e,l,s){s.r(l),s.d(l,{default:()=>d});var i=s(74848);s(47867);let d=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",children:[(0,i.jsx)("path",{fill:"#65cfff",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#fff",d:"m318.9 41.991 162.66 395.3-322.6.91z"}),(0,i.jsx)("path",{d:"m319.09 96.516 140.67 339.99-278.99.78z"}),(0,i.jsx)("path",{fill:"#ffce00",d:"m318.9 240.1 162.66 197.64-322.6.46z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4799.a225248d.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js deleted file mode 100644 index 727402b01c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4858.820711a5.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4858"],{657(e,l,i){i.r(l),i.d(l,{default:()=>t});var s=i(74848);i(47867);let t=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#00267f",d:"M0 0h213.33v480H0z"}),(0,s.jsx)("path",{fill:"#f31830",d:"M426.67 0H640v480H426.67z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4858.820711a5.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js deleted file mode 100644 index 86956e6757..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 4871.b42a8935.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["4871"],{79722(s,i,l){l.r(i),l.d(i,{default:()=>e});var h=l(74848);l(47867);let e=s=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 512 512",...s,children:[(0,h.jsx)("defs",{children:(0,h.jsx)("clipPath",{id:"ax_inline_svg__a",children:(0,h.jsx)("path",{fillOpacity:.67,d:"M106.25 0h1133.3v850H106.25z"})})}),(0,h.jsxs)("g",{clipPath:"url(#ax_inline_svg__a)",transform:"translate(-149.33)scale(.6024)",children:[(0,h.jsx)("path",{fill:"#0053a5",d:"M0 0h1300v850H0z"}),(0,h.jsxs)("g",{fill:"#ffce00",children:[(0,h.jsx)("path",{d:"M400 0h250v850H400z"}),(0,h.jsx)("path",{d:"M0 300h1300v250H0z"})]}),(0,h.jsxs)("g",{fill:"#d21034",children:[(0,h.jsx)("path",{d:"M475 0h100v850H475z"}),(0,h.jsx)("path",{d:"M0 375h1300v100H0z"})]})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/4871.b42a8935.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js deleted file mode 100644 index 0982431bbb..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 489.693d11de.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["489"],{12064(e,t,r){r.r(t),r.d(t,{Immer:()=>eu,applyPatches:()=>eP,castDraft:()=>ek,castImmutable:()=>eI,createDraft:()=>ez,current:()=>ep,enableArrayMethods:()=>ey,enableMapSet:()=>eh,enablePatches:()=>ed,finishDraft:()=>eM,freeze:()=>R,immerable:()=>s,isDraft:()=>y,isDraftable:()=>g,nothing:()=>i,original:()=>m,produce:()=>eb,produceWithPatches:()=>ev,setAutoFreeze:()=>eS,setUseStrictIteration:()=>ew,setUseStrictShallowCopy:()=>em});var n,i=Symbol.for("immer-nothing"),s=Symbol.for("immer-draftable"),a=Symbol.for("immer-state");function o(e){throw Error(`[Immer] minified error nr: ${e}. Full error at: https://bit.ly/3cXEKWf`)}var l=Object,c=l.getPrototypeOf,_="constructor",u="prototype",f="configurable",p="enumerable",d="writable",h="value",y=e=>!!e&&!!e[a];function g(e){return!!e&&(S(e)||I(e)||!!e[s]||!!e[_]?.[s]||x(e)||F(e))}var b=l[u][_].toString(),v=new WeakMap;function S(e){if(!e||!O(e))return!1;let t=c(e);if(null===t||t===l[u])return!0;let r=l.hasOwnProperty.call(t,_)&&t[_];if(r===Object)return!0;if(!A(r))return!1;let n=v.get(r);return void 0===n&&(n=Function.toString.call(r),v.set(r,n)),n===b}function m(e){return y(e)||o(15,e),e[a].base_}function w(e,t,r=!0){0===P(e)?(r?Reflect.ownKeys(e):l.keys(e)).forEach(r=>{t(r,e[r],e)}):e.forEach((r,n)=>t(n,r,e))}function P(e){let t=e[a];return t?t.type_:I(e)?1:x(e)?2:3*!!F(e)}var z=(e,t,r=P(e))=>2===r?e.has(t):l[u].hasOwnProperty.call(e,t),M=(e,t,r=P(e))=>2===r?e.get(t):e[t],k=(e,t,r,n=P(e))=>{2===n?e.set(t,r):3===n?e.add(r):e[t]=r},I=Array.isArray,x=e=>e instanceof Map,F=e=>e instanceof Set,O=e=>"object"==typeof e,A=e=>"function"==typeof e,D=e=>O(e)?e?.[a]:null,C=e=>e.modified_?e.copy_:e.base_;function E(e,t){if(x(e))return new Map(e);if(F(e))return new Set(e);if(I(e))return Array[u].slice.call(e);let r=S(e);if(!0!==t&&("class_only"!==t||r)){let t=c(e);if(null!==t&&r)return{...e};let n=l.create(t);return l.assign(n,e)}{let t=l.getOwnPropertyDescriptors(e);delete t[a];let r=Reflect.ownKeys(t);for(let n=0;n1&&l.defineProperties(e,{set:U,add:U,clear:U,delete:U}),l.freeze(e),t&&w(e,(e,t)=>{R(t,!0)},!1)),e}var U={[h]:function(){o(2)}};function j(e){return!(null!==e&&O(e))||l.isFrozen(e)}var L="MapSet",N="Patches",W="ArrayMethods",K={};function $(e){let t=K[e];return t||o(0,e),t}var J=e=>!!K[e];function X(e,t){K[e]||(K[e]=t)}function q(e,t){t&&(e.patchPlugin_=$(N),e.patches_=[],e.inversePatches_=[],e.patchListener_=t)}function B(e){G(e),e.drafts_.forEach(Q),e.drafts_=null}function G(e){e===n&&(n=e.parent_)}var H=e=>n={drafts_:[],parent_:n,immer_:e,canAutoFreeze_:!0,unfinalizedDrafts_:0,handledSet_:new Set,processedForPatches_:new Set,mapSetPlugin_:J(L)?$(L):void 0,arrayMethodsPlugin_:J(W)?$(W):void 0};function Q(e){let t=e[a];0===t.type_||1===t.type_?t.revoke_():t.revoked_=!0}function T(e,t){t.unfinalizedDrafts_=t.drafts_.length;let r=t.drafts_[0];if(void 0!==e&&e!==r){r[a].modified_&&(B(t),o(4)),g(e)&&(e=V(t,e));let{patchPlugin_:n}=t;n&&n.generateReplacementPatches_(r[a].base_,e,t)}else e=V(t,r);return function(e,t,r=!1){!e.parent_&&e.immer_.autoFreeze_&&e.canAutoFreeze_&&R(t,r)}(t,e,!0),B(t),t.patches_&&t.patchListener_(t.patches_,t.inversePatches_),e!==i?e:void 0}function V(e,t){if(j(t))return t;let r=t[a];if(!r)return ei(t,e.handledSet_,e);if(!Z(r,e))return t;if(!r.modified_)return r.base_;if(!r.finalized_){let{callbacks_:t}=r;if(t)for(;t.length>0;)t.pop()(e);er(r,e)}return r.copy_}function Y(e){e.finalized_=!0,e.scope_.unfinalizedDrafts_--}var Z=(e,t)=>e.scope_===t,ee=[];function et(e,t,r,n){let i=e.copy_||e.base_,s=e.type_;if(void 0!==n&&M(i,n,s)===t)return void k(i,n,r,s);if(!e.draftLocations_){let t=e.draftLocations_=new Map;w(i,(e,r)=>{if(y(r)){let n=t.get(r)||[];n.push(e),t.set(r,n)}})}for(let n of e.draftLocations_.get(t)??ee)k(i,n,r,s)}function er(e,t){if(e.modified_&&!e.finalized_&&(3===e.type_||1===e.type_&&e.allIndicesReassigned_||(e.assigned_?.size??0)>0)){let{patchPlugin_:r}=t;if(r){let n=r.getPath(e);n&&r.generatePatches_(e,n,t)}Y(e)}}function en(e,t,r){let{scope_:n}=e;if(y(r)){let i=r[a];Z(i,n)&&i.callbacks_.push(function(){e_(e),et(e,r,C(i),t)})}else g(r)&&e.callbacks_.push(function(){let i=e.copy_||e.base_;3===e.type_?i.has(r)&&ei(r,n.handledSet_,n):M(i,t,e.type_)===r&&n.drafts_.length>1&&(e.assigned_.get(t)??!1)===!0&&e.copy_&&ei(M(e.copy_,t,e.type_),n.handledSet_,n)})}function ei(e,t,r){return!r.immer_.autoFreeze_&&r.unfinalizedDrafts_<1||y(e)||t.has(e)||!g(e)||j(e)||(t.add(e),w(e,(n,i)=>{if(y(i)){let t=i[a];Z(t,r)&&(k(e,n,C(t),e.type_),Y(t))}else g(i)&&ei(i,t,r)})),e}var es={get(e,t){let r;if(t===a)return e;let n=e.scope_.arrayMethodsPlugin_,i=1===e.type_&&"string"==typeof t;if(i&&n?.isArrayOperationMethod(t))return n.createMethodInterceptor(e,t);let s=e.copy_||e.base_;if(!z(s,t,e.type_)){var o;let r;return o=e,(r=el(s,t))?h in r?r[h]:r.get?.call(o.draft_):void 0}let l=s[t];if(e.finalized_||!g(l)||i&&e.operationMethod&&n?.isMutatingArrayMethod(e.operationMethod)&&Number.isInteger(r=+t)&&String(r)===t)return l;if(l===eo(e.base_,t)){e_(e);let r=1===e.type_?+t:t,n=ef(e.scope_,l,e,r);return e.copy_[r]=n}return l},has:(e,t)=>t in(e.copy_||e.base_),ownKeys:e=>Reflect.ownKeys(e.copy_||e.base_),set(e,t,r){let n=el(e.copy_||e.base_,t);if(n?.set)return n.set.call(e.draft_,r),!0;if(!e.modified_){let n=eo(e.copy_||e.base_,t),i=n?.[a];if(i&&i.base_===r)return e.copy_[t]=r,e.assigned_.set(t,!1),!0;if((r===n?0!==r||1/r==1/n:r!=r&&n!=n)&&(void 0!==r||z(e.base_,t,e.type_)))return!0;e_(e),ec(e)}return!!(e.copy_[t]===r&&(void 0!==r||t in e.copy_)||Number.isNaN(r)&&Number.isNaN(e.copy_[t]))||(e.copy_[t]=r,e.assigned_.set(t,!0),en(e,t,r),!0)},deleteProperty:(e,t)=>(e_(e),void 0!==eo(e.base_,t)||t in e.base_?(e.assigned_.set(t,!1),ec(e)):e.assigned_.delete(t),e.copy_&&delete e.copy_[t],!0),getOwnPropertyDescriptor(e,t){let r=e.copy_||e.base_,n=Reflect.getOwnPropertyDescriptor(r,t);return n?{[d]:!0,[f]:1!==e.type_||"length"!==t,[p]:n[p],[h]:r[t]}:n},defineProperty(){o(11)},getPrototypeOf:e=>c(e.base_),setPrototypeOf(){o(12)}},ea={};for(let e in es){let t=es[e];ea[e]=function(){let e=arguments;return e[0]=e[0][0],t.apply(this,e)}}function eo(e,t){let r=e[a];return(r?r.copy_||r.base_:e)[t]}function el(e,t){if(!(t in e))return;let r=c(e);for(;r;){let e=Object.getOwnPropertyDescriptor(r,t);if(e)return e;r=c(r)}}function ec(e){!e.modified_&&(e.modified_=!0,e.parent_&&ec(e.parent_))}function e_(e){e.copy_||(e.assigned_=new Map,e.copy_=E(e.base_,e.scope_.immer_.useStrictShallowCopy_))}ea.deleteProperty=function(e,t){return ea.set.call(this,e,t,void 0)},ea.set=function(e,t,r){return es.set.call(this,e[0],t,r,e[0])};var eu=class{constructor(e){this.autoFreeze_=!0,this.useStrictShallowCopy_=!1,this.useStrictIteration_=!1,this.produce=(e,t,r)=>{let n;if(A(e)&&!A(t)){let r=t;t=e;let n=this;return function(e=r,...i){return n.produce(e,e=>t.call(this,e,...i))}}if(A(t)||o(6),void 0===r||A(r)||o(7),g(e)){let i=H(this),s=ef(i,e,void 0),a=!0;try{n=t(s),a=!1}finally{a?B(i):G(i)}return q(i,r),T(n,i)}if(e&&O(e))o(1,e);else{if(void 0===(n=t(e))&&(n=e),n===i&&(n=void 0),this.autoFreeze_&&R(n,!0),r){let t=[],i=[];$(N).generateReplacementPatches_(e,n,{patches_:t,inversePatches_:i}),r(t,i)}return n}},this.produceWithPatches=(e,t)=>{let r,n;return A(e)?(t,...r)=>this.produceWithPatches(t,t=>e(t,...r)):[this.produce(e,t,(e,t)=>{r=e,n=t}),r,n]},(e=>"boolean"==typeof e)(e?.autoFreeze)&&this.setAutoFreeze(e.autoFreeze),(e=>"boolean"==typeof e)(e?.useStrictShallowCopy)&&this.setUseStrictShallowCopy(e.useStrictShallowCopy),(e=>"boolean"==typeof e)(e?.useStrictIteration)&&this.setUseStrictIteration(e.useStrictIteration)}createDraft(e){g(e)||o(8),y(e)&&(e=ep(e));let t=H(this),r=ef(t,e,void 0);return r[a].isManual_=!0,G(t),r}finishDraft(e,t){let r=e&&e[a];r&&r.isManual_||o(9);let{scope_:n}=r;return q(n,t),T(void 0,n)}setAutoFreeze(e){this.autoFreeze_=e}setUseStrictShallowCopy(e){this.useStrictShallowCopy_=e}setUseStrictIteration(e){this.useStrictIteration_=e}shouldUseStrictIteration(){return this.useStrictIteration_}applyPatches(e,t){let r;for(r=t.length-1;r>=0;r--){let n=t[r];if(0===n.path.length&&"replace"===n.op){e=n.value;break}}r>-1&&(t=t.slice(r+1));let n=$(N).applyPatches_;return y(e)?n(e,t):this.produce(e,e=>n(e,t))}};function ef(e,t,r,i){let[s,a]=x(t)?$(L).proxyMap_(t,r):F(t)?$(L).proxySet_(t,r):function(e,t){let r=I(e),i={type_:+!!r,scope_:t?t.scope_:n,modified_:!1,finalized_:!1,assigned_:void 0,parent_:t,base_:e,draft_:null,copy_:null,revoke_:null,isManual_:!1,callbacks_:void 0},s=i,a=es;r&&(s=[i],a=ea);let{revoke:o,proxy:l}=Proxy.revocable(s,a);return i.draft_=l,i.revoke_=o,[l,i]}(t,r);if((r?.scope_??n).drafts_.push(s),a.callbacks_=r?.callbacks_??[],a.key_=i,r&&void 0!==i)r.callbacks_.push(function(e){if(!a||!Z(a,e))return;e.mapSetPlugin_?.fixSetContents(a);let t=C(a);et(r,a.draft_??a,t,i),er(a,e)});else a.callbacks_.push(function(e){e.mapSetPlugin_?.fixSetContents(a);let{patchPlugin_:t}=e;a.modified_&&t&&t.generatePatches_(a,[],e)});return s}function ep(e){return y(e)||o(10,e),function e(t){let r;if(!g(t)||j(t))return t;let n=t[a],i=!0;if(n){if(!n.modified_)return n.base_;n.finalized_=!0,r=E(t,n.scope_.immer_.useStrictShallowCopy_),i=n.scope_.immer_.shouldUseStrictIteration()}else r=E(t,!0);return w(r,(t,n)=>{k(r,t,e(n))},i),n&&(n.finalized_=!1),r}(e)}function ed(){let e="replace",t="remove";function r(e){if(!g(e))return e;if(I(e))return e.map(r);if(x(e))return new Map(Array.from(e.entries()).map(([e,t])=>[e,r(t)]));if(F(e))return new Set(Array.from(e).map(r));let t=Object.create(c(e));for(let n in e)t[n]=r(e[n]);return z(e,s)&&(t[s]=e[s]),t}function n(e){return y(e)?r(e):e}X(N,{applyPatches_:function(n,i){return i.forEach(i=>{let{path:s,op:a}=i,l=n;for(let e=0;e{let u=M(o,r,c),f=M(l,r,c),p=_?z(o,r)?e:"add":t;if(u===f&&p===e)return;let d=i.concat(r);s.push(p===t?{op:p,path:d}:{op:p,path:d,value:n(f)}),a.push("add"===p?{op:t,path:d}:p===t?{op:"add",path:d,value:n(u)}:{op:e,path:d,value:n(u)})})}(r,i,o,l);case 1:return function(r,i,s,o){let{base_:l,assigned_:c}=r,_=r.copy_;_.length{if(!a.has(e)){let s=r.concat([o]);n.push({op:t,path:s,value:e}),i.unshift({op:"add",path:s,value:e})}o++}),o=0,a.forEach(e=>{if(!s.has(e)){let s=r.concat([o]);n.push({op:"add",path:s,value:e}),i.unshift({op:t,path:s,value:e})}o++})}(r,i,o,l)}},generateReplacementPatches_:function(t,r,n){let{patches_:s,inversePatches_:a}=n;s.push({op:e,path:[],value:r===i?void 0:r}),a.push({op:e,path:[],value:t})},getPath:function e(t,r=[]){if(void 0!==t.key_){let e,n=t.parent_.copy_??t.parent_.base_,i=D(M(n,t.key_)),s=M(n,t.key_);if(void 0===s||s!==t.draft_&&s!==t.base_&&s!==t.copy_||null!=i&&i.base_!==t.base_)return null;let a=3===t.parent_.type_;if(e=a?Array.from(t.parent_.drafts_.keys()).indexOf(t.key_):t.key_,!(a&&n.size>e||z(n,e)))return null;r.push(e)}if(t.parent_)return e(t.parent_,r);r.reverse();try{var n=t.copy_,i=r;let e=n;for(let t=0;t{e.assigned_.set(t,!1)}),e.copy_.clear())}forEach(e,t){let r;((r=this[a]).copy_||r.base_).forEach((r,n,i)=>{e.call(t,this.get(n),n,this)})}get(e){let r=this[a];s(r);let n=(r.copy_||r.base_).get(e);if(r.finalized_||!g(n)||n!==r.base_.get(e))return n;let i=ef(r.scope_,n,r,e);return t(r),r.copy_.set(e,i),i}keys(){let e;return((e=this[a]).copy_||e.base_).keys()}values(){let e=this.keys();return{[Symbol.iterator]:()=>this.values(),next:()=>{let t=e.next();return t.done?t:{done:!1,value:this.get(t.value)}}}}entries(){let e=this.keys();return{[Symbol.iterator]:()=>this.entries(),next:()=>{let t=e.next();if(t.done)return t;let r=this.get(t.value);return{done:!1,value:[t.value,r]}}}}[Symbol.iterator](){return this.entries()}}function t(e){e.copy_||(e.assigned_=new Map,e.copy_=new Map(e.base_))}class r extends Set{constructor(e,t){super(),this[a]={type_:3,parent_:t,scope_:t?t.scope_:n,modified_:!1,finalized_:!1,copy_:void 0,base_:e,draft_:this,drafts_:new Map,revoked_:!1,isManual_:!1,assigned_:void 0,callbacks_:[]}}get size(){let e;return((e=this[a]).copy_||e.base_).size}has(e){let t=this[a];return(s(t),t.copy_)?!!(t.copy_.has(e)||t.drafts_.has(e)&&t.copy_.has(t.drafts_.get(e))):t.base_.has(e)}add(e){let t=this[a];return s(t),this.has(e)||(i(t),ec(t),t.copy_.add(e),en(t,e,e)),this}delete(e){if(!this.has(e))return!1;let t=this[a];return s(t),i(t),ec(t),t.copy_.delete(e)||!!t.drafts_.has(e)&&t.copy_.delete(t.drafts_.get(e))}clear(){let e=this[a];s(e),(e.copy_||e.base_).size&&(i(e),ec(e),e.copy_.clear())}values(){let e=this[a];return s(e),i(e),e.copy_.values()}entries(){let e=this[a];return s(e),i(e),e.copy_.entries()}keys(){return this.values()}[Symbol.iterator](){return this.values()}forEach(e,t){let r=this.values(),n=r.next();for(;!n.done;)e.call(t,n.value,n.value,this),n=r.next()}}function i(e){e.copy_||(e.copy_=new Set,e.base_.forEach(t=>{if(g(t)){let r=ef(e.scope_,t,e,t);e.drafts_.set(t,r),e.copy_.add(r)}else e.copy_.add(t)}))}function s(e){e.revoked_&&o(3,JSON.stringify(e.copy_||e.base_))}X(L,{proxyMap_:function(t,r){let n=new e(t,r);return[n,n[a]]},proxySet_:function(e,t){let n=new r(e,t);return[n,n[a]]},fixSetContents:function(e){if(3===e.type_&&e.copy_){let t=new Set(e.copy_);e.copy_.clear(),t.forEach(t=>{let r;e.copy_.add((r=D(t))?r.copy_??r.base_:t)})}}})}function ey(){let e=new Set(["shift","unshift"]),t=new Set([...new Set(["push","pop"]),...e]),r=new Set(["reverse","sort"]),n=new Set([...t,...r,"splice"]),i=new Set(["find","findLast"]),s=new Set(["filter","slice","concat","flat",...i,"findIndex","findLastIndex","some","every","indexOf","lastIndexOf","includes","join","toString","toLocaleString"]);function a(e){return n.has(e)}function o(e,t,r=!0){e_(e);let n=t();return ec(e),r&&e.assigned_.set("length",!0),n}function l(e){e.allIndicesReassigned_=!0}function c(e,t){return e<0?Math.max(t+e,0):Math.min(e,t)}function _(e,t,r){for(let n=0;n=0&&t{let r=n.copy_.length,i=n.copy_[s](...u);return e.has(s)&&l(n),"push"===s&&u.length>0?_(n,r,u):"unshift"===s&&u.length>0&&_(n,0,u),t.has(s)?i:n.draft_});if(r.has(s))return o(n,()=>(n.copy_[s](...u),l(n),n.draft_),!1);if("splice"===s){let e=o(n,()=>n.copy_.splice(...u));if(l(n),u.length>2){let e=c(u[0]??0,n.copy_.length);_(n,e,u.slice(2))}return e}}finally{n.operationMethod=void 0}}},isArrayOperationMethod:function(e){return a(e)||s.has(e)},isMutatingArrayMethod:a})}var eg=new eu,eb=eg.produce,ev=eg.produceWithPatches.bind(eg),eS=eg.setAutoFreeze.bind(eg),em=eg.setUseStrictShallowCopy.bind(eg),ew=eg.setUseStrictIteration.bind(eg),eP=eg.applyPatches.bind(eg),ez=eg.createDraft.bind(eg),eM=eg.finishDraft.bind(eg),ek=e=>e,eI=e=>e}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/489.693d11de.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js deleted file mode 100644 index d1af700696..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5084.877dbf80.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5084"],{18455(l,i,e){e.r(i),e.d(i,{default:()=>d});var s=e(74848);e(47867);let d=l=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"#28ff09",fillOpacity:14.118,viewBox:"0 0 640 480",...l,children:(0,s.jsxs)("g",{fillOpacity:1,fillRule:"evenodd",children:[(0,s.jsx)("path",{fill:"#000067",d:"M0 0h213.97v480H0z"}),(0,s.jsx)("path",{fill:"red",d:"M426.03 0H640v480H426.03z"}),(0,s.jsx)("path",{fill:"#ff0",d:"M213.97 0h212.06v480H213.97z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5084.877dbf80.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js deleted file mode 100644 index aba5ab5a6d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5114.ebf1bfcb.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5114"],{79025(l,h,e){e.r(h),e.d(h,{default:()=>s});var i=e(74848);e(47867);let s=l=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:(0,i.jsxs)("g",{strokeWidth:"1pt",children:[(0,i.jsx)("path",{fill:"#006",d:"M0 0h640v480H0z"}),(0,i.jsx)("path",{fill:"#fff",d:"M0 0v27.95L307.037 250h38.647v-27.95L38.647 0zm345.684 0v27.95L38.647 250H0v-27.95L307.037 0z"}),(0,i.jsx)("path",{fill:"#fff",d:"M144.035 0v250h57.614V0h-57.615zM0 83.333v83.333h345.684V83.333z"}),(0,i.jsx)("path",{fill:"#c00",d:"M0 100v50h345.684v-50zM155.558 0v250h34.568V0zM0 250l115.228-83.334h25.765L25.765 250zM0 0l115.228 83.333H89.463L0 18.633zm204.69 83.333L319.92 0h25.764L230.456 83.333zM345.685 250l-115.228-83.334h25.765l89.464 64.7z"}),(0,i.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m299.762 392.523-43.653 3.795 6.013 43.406-30.187-31.764-30.186 31.764 6.014-43.406-43.653-3.795 37.68-22.364-24.244-36.495 40.97 15.514 13.42-41.713 13.42 41.712 40.97-15.515-24.242 36.494m224.444 62.372-10.537-15.854 17.81 6.742 5.824-18.125 5.825 18.126 17.807-6.742-10.537 15.854 16.37 9.718-18.965 1.65 2.616 18.85-13.116-13.793-13.117 13.794 2.616-18.85-18.964-1.65m16.368-291.815-10.537-15.856 17.81 6.742 5.824-18.122 5.825 18.12 17.807-6.74-10.537 15.855 16.37 9.717-18.965 1.65 2.616 18.85-13.116-13.793-13.117 13.794 2.616-18.85-18.964-1.65m-89.418 104.883-10.537-15.853 17.808 6.742 5.825-18.125 5.825 18.125 17.808-6.742-10.536 15.853 16.37 9.72-18.965 1.65 2.615 18.85-13.117-13.795-13.117 13.795 2.617-18.85-18.964-1.65m216.212-37.929-10.558-15.854 17.822 6.742 5.782-18.125 5.854 18.125 17.772-6.742-10.508 15.854 16.362 9.718-18.97 1.65 2.608 18.85-13.118-13.793-13.117 13.793 2.61-18.85-18.936-1.65m-22.251 73.394-10.367 6.425 2.914-11.84-9.316-7.863 12.165-.896 4.605-11.29 4.606 11.29 12.165.897-9.317 7.863 2.912 11.84"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5114.ebf1bfcb.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5123.9f567207.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5123.9f567207.js deleted file mode 100644 index 85f53e2047..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5123.9f567207.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5123.9f567207.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5123"],{6286(e,t,r){r.r(t),r.d(t,{keyframes:()=>tP,useTheme:()=>tE,createStylish:()=>tS,useAntdStylish:()=>td,ThemeProvider:()=>t$,StyleProvider:()=>tj,createInstance:()=>tg,createGlobalStyle:()=>tA,useAntdTheme:()=>th,useAntdToken:()=>e1,extractStaticStyle:()=>tb,injectGlobal:()=>tT,createStyles:()=>tk,cx:()=>tM,styleManager:()=>t_,useResponsive:()=>tO,useThemeMode:()=>ta,css:()=>tw,setupStyled:()=>te});var n,a,o,i,s,c,u,l=r(89379),f=r(47867),d=r.n(f),h=r(23029),y=r(92901),m=r(64467),p=function(){function e(e){var t=this;this._insertTag=function(e){var r;r=0===t.tags.length?t.insertionPoint?t.insertionPoint.nextSibling:t.prepend?t.container.firstChild:t.before:t.tags[t.tags.length-1].nextSibling,t.container.insertBefore(e,r),t.tags.push(e)},this.isSpeedy=void 0===e.speedy||e.speedy,this.tags=[],this.ctr=0,this.nonce=e.nonce,this.key=e.key,this.container=e.container,this.prepend=e.prepend,this.insertionPoint=e.insertionPoint,this.before=null}var t=e.prototype;return t.hydrate=function(e){e.forEach(this._insertTag)},t.insert=function(e){this.ctr%(this.isSpeedy?65e3:1)==0&&this._insertTag(((t=document.createElement("style")).setAttribute("data-emotion",this.key),void 0!==this.nonce&&t.setAttribute("nonce",this.nonce),t.appendChild(document.createTextNode("")),t.setAttribute("data-s",""),t));var t,r=this.tags[this.tags.length-1];if(this.isSpeedy){var n=function(e){if(e.sheet)return e.sheet;for(var t=0;t0?d[g]+" "+x:b(x,/&\f/g,d[g])).trim())&&(c[p++]=C);return E(e,t,r,0===a?B:s,c,u,l)}function J(e,t,r,n){return E(e,t,r,W,A(e,0,n),A(e,n+1,-1),n)}var U=function(e,t,r){for(var n=0,a=0;n=a,a=N(),38===n&&12===a&&(t[r]=1),!R(a);)L();return A(j,e,_)},Z=function(e,t){var r=-1,n=44;do switch(R(n)){case 0:38===n&&12===N()&&(t[r]=1),e[r]+=U(_-1,t,r);break;case 2:e[r]+=I(n);break;case 4:if(44===n){e[++r]=58===N()?"&\f":"",t[r]=e[r].length;break}default:e[r]+=g(n)}while(n=L());return e},K=function(e,t){var r;return r=Z(D(e),t),j="",r},Q=new WeakMap,ee=function(e){if("rule"===e.type&&e.parent&&!(e.length<1)){for(var t=e.value,r=e.parent,n=e.column===r.column&&e.line===r.line;"rule"!==r.type;)if(!(r=r.parent))return;if((1!==e.props.length||58===t.charCodeAt(0)||Q.get(r))&&!n){Q.set(e,!0);for(var a=[],o=K(t,a),i=r.props,s=0,c=0;s-1&&!e.return)switch(e.type){case W:e.return=function e(t,r){switch(45^k(t,0)?(((r<<2^k(t,0))<<2^k(t,1))<<2^k(t,2))<<2^k(t,3):0){case 5103:return z+"print-"+t+t;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 z+t+t;case 5349:case 4246:case 4810:case 6968:case 2756:return z+t+F+t+G+t+t;case 6828:case 4268:return z+t+G+t+t;case 6165:return z+t+G+"flex-"+t+t;case 5187:return z+t+b(t,/(\w+).+(:[^]+)/,z+"box-$1$2"+G+"flex-$1$2")+t;case 5443:return z+t+G+"flex-item-"+b(t,/flex-|-self/,"")+t;case 4675:return z+t+G+"flex-line-pack"+b(t,/align-content|flex-|-self/,"")+t;case 5548:return z+t+G+b(t,"shrink","negative")+t;case 5292:return z+t+G+b(t,"basis","preferred-size")+t;case 6060:return z+"box-"+b(t,"-grow","")+z+t+G+b(t,"grow","positive")+t;case 4554:return z+b(t,/([^-])(transform)/g,"$1"+z+"$2")+t;case 6187:return b(b(b(t,/(zoom-|grab)/,z+"$1"),/(image-set)/,z+"$1"),t,"")+t;case 5495:case 3959:return b(t,/(image-set\([^]*)/,z+"$1$`$1");case 4968:return b(b(t,/(.+:)(flex-)?(.*)/,z+"box-pack:$3"+G+"flex-pack:$3"),/s.+-b[^;]+/,"justify")+z+t+t;case 4095:case 3583:case 4068:case 2532:return b(t,/(.+)-inline(.+)/,z+"$1$2")+t;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(S(t)-1-r>6)switch(k(t,r+1)){case 109:if(45!==k(t,r+4))break;case 102:return b(t,/(.+:)(.+)-([^]+)/,"$1"+z+"$2-$3$1"+F+(108==k(t,r+3)?"$3":"$2-$3"))+t;case 115:return~C(t,"stretch")?e(b(t,"stretch","fill-available"),r)+t:t}break;case 4949:if(115!==k(t,r+1))break;case 6444:switch(k(t,S(t)-3-(~C(t,"!important")&&10))){case 107:return b(t,":",":"+z)+t;case 101:return b(t,/(.+:)([^;!]+)(;|!.+)?/,"$1"+z+(45===k(t,14)?"inline-":"")+"box$3$1"+z+"$2$3$1"+G+"$2box$3")+t}break;case 5936:switch(k(t,r+11)){case 114:return z+t+G+b(t,/[svh]\w+-[tblr]{2}/,"tb")+t;case 108:return z+t+G+b(t,/[svh]\w+-[tblr]{2}/,"tb-rl")+t;case 45:return z+t+G+b(t,/[svh]\w+-[tblr]{2}/,"lr")+t}return z+t+G+t+t}return t}(e.value,e.length);break;case X:return V([O(e,{value:b(e.value,"@","@"+z)})],n);case B:if(e.length){var a,o;return a=e.props,o=function(t){var r;switch(r=t,(r=/(::plac\w+|:read-\w+)/.exec(r))?r[0]:r){case":read-only":case":read-write":return V([O(e,{props:[b(t,/:(read-\w+)/,":"+F+"$1")]})],n);case"::placeholder":return V([O(e,{props:[b(t,/:(plac\w+)/,":"+z+"input-$1")]}),O(e,{props:[b(t,/:(plac\w+)/,":"+F+"$1")]}),O(e,{props:[b(t,/:(plac\w+)/,G+"input-$1")]})],n)}return""},a.map(o).join("")}}}],en=function(e){var t,r,n,a,o,i=e.key;if("css"===i){var s=document.querySelectorAll("style[data-emotion]:not([data-s])");Array.prototype.forEach.call(s,function(e){-1!==e.getAttribute("data-emotion").indexOf(" ")&&(document.head.appendChild(e),e.setAttribute("data-s",""))})}var c=e.stylisPlugins||er,u={},l=[];a=e.container||document.head,Array.prototype.forEach.call(document.querySelectorAll('style[data-emotion^="'+i+' "]'),function(e){for(var t=e.getAttribute("data-emotion").split(" "),r=1;r2||R($)>3?"":" "}(p);break;case 92:B+=function(e,t){for(var r;--t&&L()&&!($<48)&&!($>102)&&(!($>57)||!($<65))&&(!($>70)||!($<97)););return r=_+(t<6&&32==N()&&32==L()),A(j,e,r)}(_-1,7);continue;case 47:switch(N()){case 42:case 47:w((l=function(e,t){for(;L();)if(e+$===57)break;else if(e+$===84&&47===N())break;return"/*"+A(j,t,_-1)+"*"+g(47===e?e:L())}(L(),_),E(l,r,n,H,g($),A(l,2,-2),0)),u);break;default:B+="/"}break;case 123*v:c[f++]=S(B)*T;case 125*v:case 59:case 0:switch(O){case 0:case 125:x=0;case 59+d:-1==T&&(B=b(B,/\f/g,"")),m>0&&S(B)-h&&w(m>32?J(B+";",a,n,h-1):J(b(B," ","")+";",a,n,h-2),u);break;case 59:B+=";";default:if(w(z=Y(B,r,n,f,d,o,c,D,G=[],F=[],h),i),123===O)if(0===d)e(B,r,z,z,G,i,h,c,F);else switch(99===y&&110===k(B,3)?100:y){case 100:case 108:case 109:case 115:e(t,z,z,a&&w(Y(t,z,z,0,0,o,c,D,o,G=[],h),F),o,F,h,c,a?G:F);break;default:e(B,z,z,z,[""],F,0,c,F)}}f=d=m=0,v=T=1,D=B="",h=s;break;case 58:h=1+S(B),m=p;default:if(v<1){if(123==O)--v;else if(125==O&&0==v++&&125==($=_>0?k(j,--_):0,P--,10===$&&(P=1,M--),$))continue}switch(B+=g(O),O*v){case 38:T=d>0?1:(B+="\f",-1);break;case 44:c[f++]=(S(B)-1)*T,T=1;break;case 64:45===N()&&(B+=I(L())),y=N(),d=h=S(D=B+=function(e){for(;!R(N());)L();return A(j,e,_)}(_)),O++;break;case 45:45===p&&2==S(B)&&(v=0)}}return i}("",null,null,null,[""],t=D(t=e),0,[0],t),j="",r),f)},h={key:i,sheet:new p({key:i,container:a,nonce:e.nonce,speedy:e.speedy,prepend:e.prepend,insertionPoint:e.insertionPoint}),nonce:e.nonce,inserted:u,registered:{},insert:function(e,t,r,n){o=r,d(e?e+"{"+t.styles+"}":t.styles),n&&(h.inserted[t.name]=!0)}};return h.sheet.hydrate(l),h},ea={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,scale: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},eo=/[A-Z]|^ms/g,ei=/_EMO_([^_]+?)_([^]*?)_EMO_/g,es=function(e){return 45===e.charCodeAt(1)},ec=function(e){return null!=e&&"boolean"!=typeof e},eu=(i=function(e){return es(e)?e:e.replace(eo,"-$&").toLowerCase()},s=Object.create(null),function(e){return void 0===s[e]&&(s[e]=i(e)),s[e]}),el=function(e,t){switch(e){case"animation":case"animationName":if("string"==typeof t)return t.replace(ei,function(e,t,r){return n={name:t,styles:r,next:n},t})}return 1===ea[e]||es(e)||"number"!=typeof t||0===t?t:t+"px"};function ef(e,t,r){if(null==r)return"";if(void 0!==r.__emotion_styles)return r;switch(typeof r){case"boolean":return"";case"object":if(1===r.anim)return n={name:r.name,styles:r.styles,next:n},r.name;if(void 0!==r.styles){var a=r.next;if(void 0!==a)for(;void 0!==a;)n={name:a.name,styles:a.styles,next:n},a=a.next;return r.styles+";"}return function(e,t,r){var n="";if(Array.isArray(r))for(var a=0;a=4;++n,a-=4)t=(65535&(t=255&e.charCodeAt(n)|(255&e.charCodeAt(++n))<<8|(255&e.charCodeAt(++n))<<16|(255&e.charCodeAt(++n))<<24))*0x5bd1e995+((t>>>16)*59797<<16),t^=t>>>24,r=(65535&t)*0x5bd1e995+((t>>>16)*59797<<16)^(65535&r)*0x5bd1e995+((r>>>16)*59797<<16);switch(a){case 3:r^=(255&e.charCodeAt(n+2))<<16;case 2:r^=(255&e.charCodeAt(n+1))<<8;case 1:r^=255&e.charCodeAt(n),r=(65535&r)*0x5bd1e995+((r>>>16)*59797<<16)}return r^=r>>>13,(((r=(65535&r)*0x5bd1e995+((r>>>16)*59797<<16))^r>>>15)>>>0).toString(36)}(i)+u,styles:i,next:n}}function ey(e,t,r){var n="";return r.split(" ").forEach(function(r){void 0!==e[r]?t.push(e[r]+";"):r&&(n+=r+" ")}),n}var em=function(e,t,r){var n=e.key+"-"+t.name;!1===r&&void 0===e.registered[n]&&(e.registered[n]=t.styles)},ep=function(e,t,r){em(e,t,r);var n=e.key+"-"+t.name;if(void 0===e.inserted[t.name]){var a=t;do e.insert(t===a?"."+n:"",a,e.sheet,!0),a=a.next;while(void 0!==a)}};function ev(e,t){if(void 0===e.inserted[t.name])return e.insert("",t,e.sheet,!0)}function eg(e,t,r){var n=[],a=ey(e,n,r);return n.length<2?r:a+t(n)}var ex=function(e){var t=en(e);t.sheet.speedy=function(e){this.isSpeedy=e},t.compat=!0;var r=function(){for(var e=arguments.length,r=Array(e),n=0;ntypeof document,ew=function(e,t){return"".concat(e,"-").concat(t)},eM=function(e,t,r,n){var a=n.hashPriority||"high";em(e,t,r);var o=".".concat(ew(e.key,t.name)),i="low"===a?":where(".concat(o,")"):o;if(void 0===e.inserted[t.name]){var s="",c=t;do{var u=e.insert(t===c?i:"",c,e.sheet,!0);eS||void 0===u||(s+=u),c=c.next}while(void 0!==c);if(!eS&&0!==s.length)return s}},eP=r(82284),eT=function(e){return"object"===(0,eP.A)(e)&&"styles"in e&&"name"in e&&"toString"in e},e_=function e(t){for(var r="",n=0;ntypeof HTMLElement?en({key:"css"}):null);eI.Provider;var eG=function(e){return(0,f.forwardRef)(function(t,r){return e(t,(0,f.useContext)(eI),r)})},eF=f.createContext({}),ez=eL(function(e){return eL(function(t){return"function"==typeof t?t(e):(0,eO.A)({},e,t)})}),eH={}.hasOwnProperty,eB="__EMOTION_TYPE_PLEASE_DO_NOT_USE__",eW=function(e,t){var r={};for(var n in t)eH.call(t,n)&&(r[n]=t[n]);return r[eB]=e,r},eX=function(e){var t=e.cache,r=e.serialized,n=e.isStringTag;return em(t,r,n),eR(function(){return ep(t,r,n)}),null},eV=eG(function(e,t,r){var n=e.css;"string"==typeof n&&void 0!==t.registered[n]&&(n=t.registered[n]);var a=e[eB],o=[n],i="";"string"==typeof e.className?i=ey(t.registered,o,e.className):null!=e.className&&(i=e.className+" ");var s=eh(o,void 0,f.useContext(eF));i+=t.key+"-"+s.name;var c={};for(var u in e)eH.call(e,u)&&"css"!==u&&u!==eB&&(c[u]=e[u]);return c.className=i,r&&(c.ref=r),f.createElement(f.Fragment,null,f.createElement(eX,{cache:t,serialized:s,isStringTag:"string"==typeof a}),f.createElement(a,c))});r(4146);var eq=function(e,t){var r=arguments;if(null==t||!eH.call(t,"css"))return f.createElement.apply(void 0,r);var n=r.length,a=Array(n);a[0]=eV,a[1]=eW(e,t);for(var o=2;otypeof window?matchMedia&&matchMedia("(prefers-color-scheme: ".concat(e,")")):{matches:!1}},tn=(0,f.createContext)({appearance:"light",setAppearance:function(){},isDarkMode:!1,themeMode:"light",setThemeMode:function(){},browserPrefers:null!=(a=tr("dark"))&&a.matches?"dark":"light"}),ta=function(){return(0,f.useContext)(tn)},to=(0,f.memo)(function(e){var t=e.children,r=e.theme,n=e.prefixCls,a=e.getStaticInstance,o=e.staticInstanceConfig,i=ta(),s=i.appearance,c=i.isDarkMode,u=e0.message.useMessage(null==o?void 0:o.message),d=(0,eQ.A)(u,2),h=d[0],y=d[1],m=e0.notification.useNotification(null==o?void 0:o.notification),p=(0,eQ.A)(m,2),v=p[0],g=p[1],x=e0.Modal.useModal(),b=(0,eQ.A)(x,2),C=b[0],k=b[1];(0,f.useEffect)(function(){null==a||a({message:h,modal:C,notification:v})},[]);var A=(0,f.useMemo)(function(){var e=c?e0.theme.darkAlgorithm:e0.theme.defaultAlgorithm,t=r;if("function"==typeof r&&(t=r(s)),!t)return{algorithm:e};var n=t.algorithm?t.algorithm instanceof Array?t.algorithm:[t.algorithm]:[];return(0,l.A)((0,l.A)({},t),{},{algorithm:t.algorithm?[e].concat((0,tt.A)(n)):e})},[r,c]);return(0,eJ.jsxs)(e0.ConfigProvider,{prefixCls:n,theme:A,children:[y,g,k,t]})});function ti(e,t){(null==t||t>e.length)&&(t=e.length);for(var r=0,n=Array(t);rtypeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=t){var r,n,a,o,i=[],s=!0,c=!1;try{a=(t=t.call(e)).next,!1;for(;!(s=(r=a.call(t)).done)&&(i.push(r.value),2!==i.length);s=!0);}catch(e){c=!0,n=e}finally{try{if(!s&&null!=t.return&&(o=t.return(),Object(o)!==o))return}finally{if(c)throw n}}return i}}(r)||function(e){if(e){if("string"==typeof e)return ti(e,2);var t=Object.prototype.toString.call(e).slice(8,-1);if("Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t)return Array.from(e);if("Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t))return ti(e,2)}}(r)||function(){throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}(),u=c[0],l=c[1],f=void 0!==o?o:u;return s&&(f=s(f)),[f,function(e){l(e),f!==e&&i&&i(e,f)}]};var tc=function(e){"function"==typeof f.startTransition?(0,f.startTransition)(e):e()},tu=function(e){var t=e.themeMode,r=e.setAppearance,n=e.setBrowserPrefers,a=function(){tc(function(){tr("dark").matches?r("dark"):r("light")})},i=function(){tc(function(){tr("dark").matches?n("dark"):n("light")})};return(0,f.useLayoutEffect)(function(){return"auto"!==t?void tc(function(){r(t)}):(setTimeout(a,1),o||(o=tr("dark")),o.addEventListener("change",a),function(){o.removeEventListener("change",a)})},[t]),(0,f.useLayoutEffect)(function(){return o||(o=tr("dark")),o.addEventListener("change",i),function(){o.removeEventListener("change",i)}},[]),null},tl=(0,f.memo)(function(e){var t,r=e.children,n=e.appearance,a=e.defaultAppearance,o=e.onAppearanceChange,i=e.themeMode,s=e.defaultThemeMode,c=e.onThemeModeChange,u=(0,e.useTheme)(),l=u.appearance,d=u.themeMode,h=ts("light",{value:i,defaultValue:null!=s?s:d,onChange:function(e){return null==c?void 0:c(e)}}),y=(0,eQ.A)(h,2),m=y[0],p=y[1],v=ts("light",{value:n,defaultValue:null!=a?a:l,onChange:function(e){return null==o?void 0:o(e)}}),g=(0,eQ.A)(v,2),x=g[0],b=g[1],C=(0,f.useState)(null!=(t=tr("dark"))&&t.matches?"dark":"light"),k=(0,eQ.A)(C,2),A=k[0],S=k[1];return(0,eJ.jsxs)(tn.Provider,{value:{themeMode:m,setThemeMode:p,appearance:x,setAppearance:b,isDarkMode:"dark"===x,browserPrefers:A},children:["u">typeof window&&(0,eJ.jsx)(tu,{themeMode:m,setAppearance:b,setBrowserPrefers:S}),r]})});tl.displayName="ThemeSwitcher";var tf=function(e){var t=e.css,r=e.token;return{buttonDefaultHover:t({backgroundColor:r.colorBgContainer,border:"1px solid ".concat(r.colorBorder),cursor:"pointer",":hover":{color:r.colorPrimaryHover,borderColor:r.colorPrimaryHover},":active":{color:r.colorPrimaryActive,borderColor:r.colorPrimaryActive}})}},td=function(){var e=e1(),t=ta(),r=t.appearance,n=t.isDarkMode;return(0,f.useMemo)(function(){return Object.fromEntries(Object.entries(tf({token:e,css:eE,appearance:r,isDarkMode:n})).map(function(e){var t=(0,eQ.A)(e,2);return[t[0],t[1].styles]}))},[e,r,n])},th=function(){var e=e1(),t=td();return(0,f.useMemo)(function(){return(0,l.A)((0,l.A)({},e),{},{stylish:t})},[e,t])},ty=["stylish"];let tm=function(e){var t=e.children,r=e.customToken,n=e.defaultCustomToken,a=e.customStylish,o=e.prefixCls,i=e.StyledThemeProvider,s=ta(),c=s.appearance,u=s.isDarkMode,d=th(),h=d.stylish,y=(0,eU.A)(d,ty),m=(0,f.useMemo)(function(){return n?n instanceof Function?n({token:y,appearance:c,isDarkMode:u}):n:{}},[n,y,c]),p=(0,f.useMemo)(function(){return r instanceof Function?(0,l.A)((0,l.A)({},m),r({token:y,appearance:c,isDarkMode:u})):(0,l.A)((0,l.A)({},m),r)},[m,r,y,c]),v=(0,f.useMemo)(function(){return a?a({token:(0,l.A)((0,l.A)({},y),p),stylish:h,appearance:c,isDarkMode:u,css:eE}):{}},[a,y,p,h,c]),g=(0,f.useMemo)(function(){return(0,l.A)((0,l.A)({},v),h)},[v,h]),x=(0,l.A)((0,l.A)((0,l.A)((0,l.A)({},y),p),{},{stylish:g},s),{},{prefixCls:o});return(0,eJ.jsx)(i,{theme:x,children:t})};var tp=function(e){var t=e.styledConfig?e9(e.styledConfig):void 0,r=e.StyleEngineContext;return(0,f.memo)(function(n){var a=n.children,o=n.customToken,i=n.customStylish,s=n.theme,c=n.getStaticInstance,u=n.prefixCls,l=n.staticInstanceConfig,d=n.appearance,h=n.defaultAppearance,y=n.onAppearanceChange,m=n.themeMode,p=n.defaultThemeMode,v=n.onThemeModeChange,g=n.styled,x=(0,f.useContext)(r),b=x.prefixCls,C=x.StyledThemeContext,k=x.CustomThemeContext,A=(0,f.useContext)(k),S=g?e9(g):t||e8,w=u||b;return(0,eJ.jsx)(r.Provider,{value:{prefixCls:w,StyledThemeContext:(null==g?void 0:g.ThemeContext)||C||e7,CustomThemeContext:k},children:(0,eJ.jsx)(tl,{themeMode:m,defaultThemeMode:p,onThemeModeChange:v,defaultAppearance:h,appearance:d,onAppearanceChange:y,useTheme:e.useTheme,children:(0,eJ.jsx)(to,{prefixCls:w,staticInstanceConfig:l,theme:s,getStaticInstance:c,children:(0,eJ.jsx)(tm,{prefixCls:w,customToken:o,defaultCustomToken:A,customStylish:i,StyledThemeProvider:S,children:a})})})})})},tv=new eA;void 0!==r.g&&(r.g.__ANTD_STYLE_CACHE_MANAGER_FOR_SSR__=tv);var tg=function(e){var t,n,a,o,i=(0,l.A)((0,l.A)({},e),{},{key:null!=(n=e.key)?n:"zcss",speedy:null!=(a=e.speedy)&&a}),s=ex({key:i.key,speedy:i.speedy,container:i.container}),c=(0,f.createContext)(s),u=(0,f.memo)(function(e){var t=e.children,n=e.prefix,a=e.speedy,o=e.getStyleManager,i=e.container,s=e.nonce,u=e.insertionPoint,d=e.stylisPlugins,h=e.linters,y=(0,eU.A)(e,eK),m=(0,f.useContext)(c),p=null!=n?n:m.sheet.key,v=null!=i?i:m.sheet.container,g=null!=a?a:m.sheet.isSpeedy,x=(0,f.useMemo)(function(){var e=ex({speedy:null!=g&&g,key:p,container:v,nonce:s,insertionPoint:u,stylisPlugins:d});if(void 0!==r.g){var t=r.g.__ANTD_STYLE_CACHE_MANAGER_FOR_SSR__;t&&(e.cache=t.add(e.cache))}return e},[p,g,v,s,u,d]);(0,f.useEffect)(function(){null==o||o(x)},[x]);var b=(0,eJ.jsx)(c.Provider,{value:x,children:t});return Object.keys(y).length||v?(0,eJ.jsx)(eZ.N7,(0,l.A)((0,l.A)({linters:h,container:v},y),{},{children:b})):b});s.cache=tv.add(s.cache);var d=(0,f.createContext)(i.customToken?i.customToken:{}),h=null==(o=i.styled)?void 0:o.ThemeContext,y=(0,f.createContext)({CustomThemeContext:d,StyledThemeContext:h,prefixCls:null==i?void 0:i.prefixCls,iconPrefixCls:null==i?void 0:i.iconPrefixCls}),m=(t={StyleEngineContext:y},function(){var e=t.StyleEngineContext,r=(0,f.useContext)(e),n=r.StyledThemeContext,a=r.CustomThemeContext,o=r.prefixCls,i=th(),s=ta(),c=(0,f.useContext)(a),u=(0,f.useContext)(null!=n?n:e7)||{},d=(0,f.useContext)(e0.ConfigProvider.ConfigContext),h=d.iconPrefixCls,y=(0,d.getPrefixCls)(),m=o&&"ant"!==o?o:y,p=(0,f.useMemo)(function(){return(0,l.A)((0,l.A)((0,l.A)((0,l.A)({},i),s),c),{},{prefixCls:m,iconPrefixCls:h})},[i,s,c,m,h]);return u&&0!==Object.keys(u).length?(0,l.A)((0,l.A)({},u),{},{prefixCls:m,iconPrefixCls:h}):p}),p=e3({hashPriority:i.hashPriority,useTheme:m,EmotionContext:c}),v=function(){for(var e=arguments.length,t=Array(e),r=0;r]*>/g,"").replace(/<\/style>/g,""),s={style:(0,eJ.jsx)("style",{"data-antd-version":e0.version,"data-rc-order":"prepend","data-rc-priority":"-9999",dangerouslySetInnerHTML:{__html:i}},"antd"),ids:Array.from(o.cache.keys()),key:"antd",css:i,tag:'")},c=r.g.__ANTD_STYLE_CACHE_MANAGER_FOR_SSR__.getCacheList().map(function(t){var r=(!0!==t.compat&&(t.compat=!0),function(e){for(var r,n=RegExp(t.key+"-([a-zA-Z0-9-_]+)","gm"),a={html:e,ids:[],css:""},o={};null!==(r=n.exec(e));)void 0===o[r[1]]&&(o[r[1]]=!0);return a.ids=Object.keys(t.inserted).filter(function(e){return(void 0!==o[e]||void 0===t.registered[t.key+"-"+e])&&!0!==t.inserted[e]&&(a.css+=t.inserted[e],!0)}),a}),n=e?r(e):{ids:Object.keys(t.inserted),css:Object.values(t.inserted).filter(function(e){return"string"==typeof e}).join("")};if(!n.css)return null;var a=n.css,o=n.ids;return{key:t.key,style:(0,eJ.jsx)("style",{"data-emotion":"".concat(t.key," ").concat(o.join(" ")),dangerouslySetInnerHTML:{__html:a}},t.key),css:a,ids:o,tag:'")}});return i&&a&&c.unshift(s),c.filter(Boolean)};tb.cache=tx;var tC=tg({key:"acss",speedy:!1}),tk=tC.createStyles,tA=tC.createGlobalStyle,tS=tC.createStylish,tw=tC.css,tM=tC.cx,tP=tC.keyframes,tT=tC.injectGlobal,t_=tC.styleManager,t$=tC.ThemeProvider,tj=tC.StyleProvider,tE=tC.useTheme,tO=function(){var e=e0.Grid.useBreakpoint();return(0,f.useMemo)(function(){return e5(e)},[e])}},4146(e,t,r){var n=r(44363),a={childContextTypes:!0,contextType:!0,contextTypes:!0,defaultProps:!0,displayName:!0,getDefaultProps:!0,getDerivedStateFromError:!0,getDerivedStateFromProps:!0,mixins:!0,propTypes:!0,type:!0},o={name:!0,length:!0,prototype:!0,caller:!0,callee:!0,arguments:!0,arity:!0},i={$$typeof:!0,compare:!0,defaultProps:!0,displayName:!0,propTypes:!0,type:!0},s={};function c(e){return n.isMemo(e)?i:s[e.$$typeof]||a}s[n.ForwardRef]={$$typeof:!0,render:!0,defaultProps:!0,displayName:!0,propTypes:!0},s[n.Memo]=i;var u=Object.defineProperty,l=Object.getOwnPropertyNames,f=Object.getOwnPropertySymbols,d=Object.getOwnPropertyDescriptor,h=Object.getPrototypeOf,y=Object.prototype;e.exports=function e(t,r,n){if("string"!=typeof r){if(y){var a=h(r);a&&a!==y&&e(t,a,n)}var i=l(r);f&&(i=i.concat(f(r)));for(var s=c(t),m=c(r),p=0;pl});var i=s(74848);s(47867);let l=h=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 0.516 3.096",...h,children:[(0,i.jsx)("path",{fill:"red",d:"M-1.806 0h4.128v1.032h-4.128z"}),(0,i.jsx)("path",{fill:"#00f",d:"M-1.806 1.032h4.128v1.032h-4.128z"}),(0,i.jsx)("path",{fill:"orange",d:"M-1.806 2.064h4.128v1.032h-4.128z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5154.a94bb137.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5154.a94bb137.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5154.a94bb137.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js deleted file mode 100644 index 7f7610647a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5168.fdbd2cef.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5168"],{8787(e,l,d){d.r(l),d.d(l,{default:()=>f});var t=d(74848);d(47867);let f=e=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:[(0,t.jsx)("defs",{children:(0,t.jsx)("clipPath",{id:"ki_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,t.jsx)("path",{fillOpacity:.67,d:"M-86.325 0h682.67v512h-682.67z"})})}),(0,t.jsxs)("g",{clipPath:"url(#ki_inline_svg__a)",transform:"translate(80.93)scale(.9375)",children:[(0,t.jsx)("path",{fill:"#e73e2d",fillRule:"evenodd",d:"M-164.28 0h835.79v306.49h-835.79z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M204.3 282.11c-19.435-15.174-55.633-10.041-61.596-51.286 27.717 21.469 22.686-1.227 64.082 19.229z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M209.47 263.35c-13.852-20.398-49.882-26.602-42.922-67.69 19.807 28.928 21.971 5.782 55.109 37.936z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M215.77 250.01c-5-24.145-35.922-43.653-13.782-78.958 7.242 34.303 18.091 13.743 36.418 56.124l-22.637 22.834z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M230.32 237.61c2.653-24.514-20.786-52.572 11.123-79.376-3.638 34.87 12.998 18.633 17.431 64.594z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M243.26 227.67c12.457-21.279 2.56-56.474 42.646-67.864-17.596 30.324 4.23 22.321-10.543 66.068z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M262.07 230.29c18.559-16.234 20.327-52.751 61.957-50.849-26.3 23.183-3.062 22.511-30.94 59.321z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M278.57 239.87c22.506-10.072 34.914-44.463 74.152-30.426-31.946 14.444-9.534 20.621-46.987 47.628z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"M292.49 254.93c24.431-3.33 46.018-32.837 79.718-8.323-34.72 4.867-14.953 17.104-58.494 32.476z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m379.46 259.6-112.06 2.46 4.705 30.194 107.36-32.654z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m363 218.41-103.84 39.859 17.386 33.373 86.458-73.232z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m280.58 280.67 53.722-97.54-82.407 76.705z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m279.46 272.63 17.268-109.47-53.811 97.285 36.543 12.187z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m273.01 263.74-18.035-110.25-19.989 110.73 38.025-.482z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m263.68 254.29-52.292-92.072 20.095 111.92 32.197-19.845z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m255.56 253.6-81.101-68.479 57.667 98.003 23.435-29.524z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m145.95 218.89 87.069 71.891 13.387-37.606-100.46-34.285z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.665,d:"m232.1 260.85-102.31-1.438 101.88 34.01.429-32.572z"}),(0,t.jsx)("path",{fill:"#fec74a",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.6651236,d:"M315.121 279.224c0 33.896-27.478 61.374-61.374 61.374s-61.373-27.478-61.373-61.374 27.478-61.374 61.373-61.374 61.374 27.478 61.374 61.374z"}),(0,t.jsx)("path",{fill:"#005989",fillRule:"evenodd",d:"M-165.12 303.4h839.9V512h-839.9z"}),(0,t.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M-165.6 454c15.618 7.228 37.991 25.319 61.922 25.303 40.042-.26 41.108-27.425 81.669-26.133 40.667 1.035 33.311 29.634 88.224 29.491 45.369-.119 60.026-34.665 99.134-30.526 28.963-1.49 40.817 32.714 85.334 33.148 46.172.987 63.126-37.28 92.09-34.112 30.856 0 40.964 30.821 84.253 31.043 55.136.278 64.829-32.078 99.323-30.008 24.55-.518 43.91 23.714 79.887 24.317 28.707.489 52.74-21.214 68.975-28.974l.803-36.827c-17.015 6.327-42.386 27.073-67.756 27.301-36.51 1.336-59.094-23.946-84.464-23.718-30.397.273-42.51 31.284-94.076 31.284-47.11 0-57.918-31.284-88.316-31.284-29.712.228-38.815 34.026-90.253 33.4-41.96-.505-58.31-32.262-88.023-32.034-31.5 0-64.072 30.881-98.951 29.39-48.14-2.034-58.541-29.39-90.041-29.39-23.542 0-48.948 25.635-77.31 26.062-28.205.434-59.891-25.508-62.826-26.062zM-165.6 381.07c15.618 7.228 37.991 25.319 61.922 25.303 40.042-.26 41.108-27.425 81.669-26.133 40.667 1.035 33.311 29.634 88.224 29.491 45.369-.119 60.026-34.665 99.134-30.526 28.963-1.49 40.817 32.714 85.334 33.148 46.172.987 63.126-37.28 92.09-34.112 30.856 0 40.964 30.821 84.253 31.043 55.136.278 64.829-32.078 99.323-30.008 24.55-.518 43.91 23.714 79.887 24.317 28.707.489 52.74-21.214 68.975-28.974l.803-36.827c-17.015 6.327-42.386 27.073-67.756 27.301-36.51 1.336-59.094-23.946-84.464-23.718-30.397.273-42.51 31.284-94.076 31.284-47.11 0-57.918-31.284-88.316-31.284-29.712.228-38.815 34.026-90.253 33.4-41.96-.505-58.31-32.262-88.023-32.034-31.5 0-64.072 30.881-98.951 29.39-48.14-2.034-58.541-29.39-90.041-29.39-23.542 0-48.948 25.635-77.31 26.062-28.205.434-59.891-25.508-62.826-26.062z"}),(0,t.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"M-165.6 308.92c15.603 7.228 37.955 25.319 61.865 25.303 40.004-.26 41.07-27.425 81.593-26.133 40.629 1.035 33.28 29.634 88.141 29.491 45.327-.119 59.97-34.665 99.042-30.526 28.936-1.49 40.779 32.714 85.254 33.148 46.129.987 63.067-37.28 92.004-34.112 30.827 0 40.926 30.821 84.174 31.043 55.085.278 64.769-32.078 99.23-30.008 24.528-.518 43.869 23.714 79.813 24.317 28.68.489 52.691-21.214 68.911-28.974l.802-36.827c-17 6.327-42.346 27.073-67.693 27.301-36.475 1.336-59.038-23.946-84.385-23.718-30.369.273-42.471 31.284-93.988 31.284-47.065 0-57.864-31.284-88.234-31.284-29.684.228-38.779 34.026-90.169 33.4-41.921-.505-58.255-32.262-87.941-32.034-31.47 0-64.012 30.881-98.859 29.39-48.095-2.034-58.486-29.39-89.957-29.39-23.52 0-48.903 25.635-77.237 26.062-28.15.44-59.81-25.5-62.74-26.06l.401 38.33z"}),(0,t.jsx)("path",{fill:"#ffc84b",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.776,d:"M136.81 75.956c61.048-4.18 49.921-9.394 74.493-13.316 30.964 4.257 34.505 23.004 51.758 34.505 0 0-6.485 21.926-27.706 18.822-2.853-8.796 10.273-11.515-27.497-34.54-21.958-1.307-61.25 3.854-71.048-5.472zM326.07 109.89l-43.979 1.81v10.866c29.664.949 35.011-3.018 43.979-12.676z"}),(0,t.jsx)("path",{fill:"#ffc84b",fillRule:"evenodd",stroke:"#d8aa3f",strokeLinejoin:"round",strokeWidth:1.665,d:"M174.84 108.07c7.665-3.92 11.477-2.32 18.118-2.579 4.57 8.278 8.882 9.054 18.885 10.09 15.263 21.471 36.735 21.73 39.839 21.73 29.923-.778 39.409-21.73 59.501-24.06h21.214c-3.535-6.036-6.295-9.486-13.97-9.83-15.781-.863-36.217-.431-54.067 3.621l-25.094 6.21c-7.33-3.536-25.266-22.335-36.735-21.99-6.726 1.81-6.726 4.139-10.089 6.726-6.467 2.76-12.936 1.437-17.601 10.08z"}),(0,t.jsx)("path",{fill:"#ffc84b",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.664882,d:"M205.104 98.914a3.174 3.174 0 1 1-6.348 0 3.174 3.174 0 0 1 6.348 0z"}),(0,t.jsx)("path",{fill:"#ffc84b",fillRule:"evenodd",stroke:"#d8aa3f",strokeWidth:1.776,d:"M225.56 107.82c44.927-54.154 84.163-47.514 135.3-51.222 1.725 6.295 1.122 15.695-23.282 24.059-33.372 4.915-93.132 40.097-93.39 40.097-11.126-.517-18.886-12.158-18.627-12.935z"}),(0,t.jsx)("path",{fill:"none",stroke:"#d9a43e",strokeLinecap:"round",strokeWidth:1.776,d:"m317.87 72.536 33.134 1.436M314.26 77.942l24.152 1.97"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5168.fdbd2cef.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js deleted file mode 100644 index da757a0250..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5177.a255dad2.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5177"],{81280(e,l,i){i.r(l),i.d(l,{default:()=>h});var s=i(74848);i(47867);let h=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h640v479.997H0z"}),(0,s.jsx)("path",{fill:"#00267f",d:"M0 0h213.331v479.997H0z"}),(0,s.jsx)("path",{fill:"#f31830",d:"M426.663 0h213.331v479.997H426.663z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5177.a255dad2.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js deleted file mode 100644 index 748bffbb9d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5186.deb009c0.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5186"],{4169(e,l,i){i.r(l),i.d(l,{default:()=>h});var s=i(74848);i(47867);let h=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#fff",d:"M0 0h639.995v480.004H0z"}),(0,s.jsx)("path",{fill:"#009A49",d:"M0 0h213.334v480.004H0z"}),(0,s.jsx)("path",{fill:"#FF7900",d:"M426.668 0h213.334v480.004H426.668z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5186.deb009c0.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js deleted file mode 100644 index fc078945a0..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 521.cb98200a.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["521"],{36592(t,q,e){e.r(q),e.d(q,{default:()=>s});var l=e(74848);e(47867);let s=t=>(0,l.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 900 600",...t,children:[(0,l.jsx)("path",{fill:"#007a3d",d:"M0 0h900v600H0z"}),(0,l.jsx)("path",{fill:"#fff",d:"M653.467 291.65q-7.911 8.497-21.533 16.846-13.624 8.35-33.838 15.234-20.215 6.885-47.022 11.573-26.807 4.687-61.084 5.86a743 743 0 0 0-6.592 19.482q-3.369 10.4-6.591 22.705h-1.465q-1.466-1.466-2.49-3.662-1.027-2.197-1.905-6.3a391 391 0 0 1 3.223-16.113 627 627 0 0 1 3.809-16.113q-14.943 0-28.125-3.808-.88 56.835-27.247 104.296-28.71 51.856-119.824 51.856-36.621 0-59.765-21.387-23.438-21.68-23.438-54.2 0-34.276 32.227-84.081l5.566 2.05q-21.68 40.137-21.68 64.747 0 12.89 6.3 22.998 6.297 10.107 17.87 17.285t28.418 10.986q16.845 3.81 37.94 3.809 32.226 0 59.765-11.133 27.54-10.84 37.5-27.832 9.082-16.405 9.082-48.34 0-17.285-5.42-34.424t-14.794-30.322l16.113-34.57q4.98 7.03 9.375 15.38t6.738 14.21q8.496 3.809 16.992 5.273 8.496 1.465 17.871 1.465h6.739q3.515 0 7.324-.586 16.113-26.66 34.717-48.633 18.603-21.972 38.818-38.379 17.285-14.062 33.398-21.972t26.368-7.91q10.546 0 20.214 3.955t17.14 9.668 11.864 12.011q4.394 6.3 4.395 11.28 0 12.011-2.344 21.972-2.345 9.96-6.152 18.018-3.81 8.057-8.643 14.648-4.834 6.593-9.814 12.158m-37.207-64.746q-8.204 0-20.655 5.274-12.45 5.274-26.953 15.088t-29.736 24.316q-15.236 14.502-29.004 32.959 4.98 0 9.522-.293 4.54-.292 10.693-.879a256 256 0 0 0 41.455-6.299q20.36-4.832 43.799-13.916 18.456-7.03 29.883-14.795 11.425-7.763 14.648-13.037-3.516-4.98-8.496-10.107a75.3 75.3 0 0 0-10.84-9.229q-5.86-4.101-12.158-6.591-6.3-2.49-12.158-2.49m-52.442-97.558-20.8 30.761-27.832-23.437 20.507-30.176z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/521.cb98200a.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js deleted file mode 100644 index e1f7c7f79c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5277.97ce57aa.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5277"],{36716(l,s,i){i.r(s),i.d(s,{default:()=>h});var e=i(74848);i(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"rw_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-170.67 0H512v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#rw_inline_svg__a)",transform:"translate(160)scale(.9375)",children:[(0,e.jsx)("path",{fill:"#009af4",d:"M-256 0h768v256h-768z"}),(0,e.jsx)("path",{fill:"#1c8f31",d:"M-256 384h768v128h-768z"}),(0,e.jsx)("path",{fill:"#efef00",d:"M-256 256h768v128h-768z"}),(0,e.jsx)("path",{fill:"#ffda00",d:"m441.318 178.193-37.176-20.498 22.097 36.237-30.591-29.425 11.962 40.737-21.943-36.34 1.022 42.43-11.787-40.779-10 41.253-.826-42.44-20.343 37.26 10.187-41.213-29.291 30.736 20.497-37.176-36.237 22.097 29.415-30.591-40.727 11.962 36.34-21.943-42.429 1.022 40.778-11.786-41.253-10.001 42.44-.836-37.259-20.334 41.202 10.188L306.67 79.46l37.177 20.502-22.098-36.244 30.592 29.423-11.962-40.727 21.942 36.34-1.022-42.437 11.787 40.78 10.001-41.254.826 42.441 20.342-37.26-10.186 41.21 29.29-30.725-20.497 37.169 36.237-22.099-29.415 30.596 40.727-11.964-36.34 21.944 42.43-1.021-40.779 11.786 41.253 10.001-42.44.826 37.259 20.343-41.202-10.187z"}),(0,e.jsx)("path",{fill:"#0098f6",d:"M406.375 128.827c0 17.88-14.494 32.373-32.373 32.373s-32.373-14.494-32.373-32.373 14.494-32.373 32.373-32.373 32.373 14.494 32.373 32.373"}),(0,e.jsx)("path",{fill:"#ffd900",d:"M400.043 128.83c0 14.584-11.652 26.406-26.027 26.406s-26.027-11.822-26.027-26.406 11.653-26.406 26.027-26.406 26.027 11.822 26.027 26.406"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5277.97ce57aa.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js deleted file mode 100644 index 9ff879aee9..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5331.bbbb73f8.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5331"],{57886(l,i,s){s.r(i),s.d(i,{default:()=>h});var e=s(74848);s(47867);let h=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"na_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#na_inline_svg__a)",children:[(0,e.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,e.jsx)("path",{fill:"#3662a2",d:"m-26.374.224.803 345.543L512.535 0-26.378.222z"}),(0,e.jsx)("path",{fill:"#38a100",d:"m666.37 479.56-1.262-359.297L122.315 479.83l544.059-.265z"}),(0,e.jsx)("path",{fill:"#c70000",d:"M-26.028 371.822-25.57 480l117.421-.15L665.375 95.344l-.646-94.05L548.704.224-26.031 371.82z"}),(0,e.jsx)("path",{fill:"#ffe700",d:"m219.556 171.927-21.733-13.122-12.575 22.103-12.235-22.246-21.93 12.883.536-25.406-25.413.198 13.167-21.759-22.082-12.531 22.27-12.278-12.837-21.907 25.405.487-.15-25.41 21.734 13.125 12.575-22.106 12.235 22.246 21.93-12.88-.536 25.407 25.41-.201-13.165 21.76 22.08 12.532-22.27 12.278 12.84 21.906-25.405-.488z"}),(0,e.jsx)("path",{fill:"#3662a2",d:"M232.384 112.437c0 25.544-20.87 46.252-46.613 46.252s-46.614-20.708-46.614-46.252 20.87-46.253 46.614-46.253 46.613 20.708 46.613 46.253"}),(0,e.jsx)("path",{fill:"#ffe700",d:"M222.267 112.437c0 20.156-16.34 36.496-36.496 36.496s-36.497-16.34-36.497-36.496 16.34-36.497 36.497-36.497 36.496 16.34 36.496 36.497"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5331.bbbb73f8.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js deleted file mode 100644 index c8dc6e353e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5412.53c2e3aa.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5412"],{93807(i,s,e){e.r(s),e.d(s,{default:()=>l});var _=e(74848);e(47867);let l=i=>(0,_.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",...i,children:[(0,_.jsx)("defs",{children:(0,_.jsx)("path",{id:"ke_inline_svg__a",strokeMiterlimit:10,d:"m-28.58 47.5 1.733 1 46.713-80.91c2.732-.73 4.232-3.33 5.732-5.927 1-1.732 5-8.66 6.734-17.663-6.93 6.003-10.93 12.93-11.93 14.663-1.5 2.598-3 5.196-2.268 7.928z"})}),(0,_.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,_.jsx)("path",{d:"M0 0h640v144H0z"}),(0,_.jsx)("path",{fill:"#060",d:"M0 336h640v144H0z"}),(0,_.jsxs)("g",{id:"ke_inline_svg__b",transform:"matrix(3 0 0 3 320 240)",children:[(0,_.jsx)("use",{xlinkHref:"#ke_inline_svg__a",width:"100%",height:"100%",stroke:"#000"}),(0,_.jsx)("use",{xlinkHref:"#ke_inline_svg__a",width:"100%",height:"100%",fill:"#fff"})]}),(0,_.jsx)("use",{xlinkHref:"#ke_inline_svg__b",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 640 0)"}),(0,_.jsx)("path",{fill:"#b00",d:"M640.5 168H377c-9-24-39-72-57-72s-48 48-57 72H-.227v144H263c9 24 39 72 57 72s48-48 57-72h263.5z"}),(0,_.jsx)("path",{id:"ke_inline_svg__c",d:"M377 312c9-24 15-48 15-72s-6-48-15-72c-9 24-15 48-15 72s6 48 15 72"}),(0,_.jsx)("use",{xlinkHref:"#ke_inline_svg__c",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 640 0)"}),(0,_.jsxs)("g",{fill:"#fff",transform:"matrix(3 0 0 3 320 240)",children:[(0,_.jsx)("ellipse",{rx:4,ry:6}),(0,_.jsx)("path",{id:"ke_inline_svg__d",d:"M1 5.85s4 8 4 21-4 21-4 21z"}),(0,_.jsx)("use",{xlinkHref:"#ke_inline_svg__d",width:"100%",height:"100%",transform:"scale(-1)"}),(0,_.jsx)("use",{xlinkHref:"#ke_inline_svg__d",width:"100%",height:"100%",transform:"scale(-1 1)"}),(0,_.jsx)("use",{xlinkHref:"#ke_inline_svg__d",width:"100%",height:"100%",transform:"scale(1 -1)"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5412.53c2e3aa.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js deleted file mode 100644 index a4196bd25e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5431.0eb962a2.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5431"],{8074(l,i,e){e.r(i),e.d(i,{default:()=>t});var s=e(74848);e(47867);let t=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"fm_inline_svg__a",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M-81.333 0h682.67v512h-682.67z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#fm_inline_svg__a)",transform:"translate(76.25)scale(.94)",children:[(0,s.jsx)("path",{fill:"#6797d6",d:"M-252 0H772v512H-252z"}),(0,s.jsx)("path",{fill:"#fff",d:"m259.787 122.985-32.44 22.214 12.433-35.9-32.475-22.177 40.122.038 12.366-35.92 12.366 35.92 40.12-.026L279.8 109.3l12.43 35.905m-32.443 244.847-32.44-22.214 12.433 35.9-32.475 22.176 40.122-.038 12.366 35.92 12.366-35.92 40.12.027-32.48-22.166 12.43-35.905m-188.384-92.465-24.53 30.73 1.395-37.967-37.54-11.713 38.38-11.695 1.324-37.966 22.328 30.735 38.36-11.755-24.58 30.694 22.383 30.7m274.28-11.763 24.53 30.73-1.395-37.967 37.54-11.713-38.38-11.695-1.324-37.966-22.328 30.735-38.36-11.755 24.58 30.694-22.383 30.7"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5431.0eb962a2.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js deleted file mode 100644 index 599298b039..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5454.a8bca7d3.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5454"],{50669(l,s,i){i.r(s),i.d(s,{default:()=>e});var t=i(74848);i(47867);let e=l=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,t.jsx)("defs",{children:(0,t.jsx)("clipPath",{id:"tj_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,t.jsx)("path",{fillOpacity:.67,d:"M-85.648 0h682.67v512h-682.67z"})})}),(0,t.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#tj_inline_svg__a)",transform:"translate(80.295)scale(.9375)",children:[(0,t.jsx)("path",{fill:"#fff",d:"M-256 0H767.4v512H-256z"}),(0,t.jsx)("path",{fill:"#060",d:"M-256 372.43H766.6v139.12H-256z"}),(0,t.jsx)("path",{fill:"#c00",d:"M-256 0H766.6v139.12H-256z"}),(0,t.jsx)("path",{fill:"#F8C300",d:"m159.88 212.256 3.68 12.119 11.915-.27-9.884 7.407 3.927 11.774-9.781-7.536-9.493 7.536 3.834-12.065-9.792-7.116 12.152.086zM148.04 264.183l3.68 12.119 11.915-.27-9.884 7.407 3.927 11.774-9.781-7.536-9.493 7.536 3.834-12.065-9.792-7.116 12.152.086zM199.96 169.89l3.68 12.12 11.915-.27-9.884 7.407 3.927 11.774-9.781-7.536-9.493 7.536 3.834-12.065-9.792-7.116 12.152.086zM253.94 155.77l3.68 12.12 11.915-.27-9.884 7.407 3.927 11.774-9.781-7.536-9.493 7.536 3.834-12.065-9.792-7.116 12.152.086zM308.373 169.89l3.68 12.12 11.914-.27-9.884 7.407 3.927 11.774-9.781-7.536-9.493 7.536 3.834-12.065-9.792-7.116 12.152.086zM348.457 212.484l3.68 12.119 11.914-.27-9.884 7.407 3.927 11.774-9.781-7.536-9.493 7.536 3.834-12.065-9.792-7.116 12.152.086zM360.072 264.183l3.68 12.119 11.914-.27-9.884 7.407 3.927 11.774-9.781-7.536-9.493 7.536 3.834-12.065-9.792-7.116 12.152.086zM274.717 235.853c0 8.605-9.248 15.58-20.654 15.58s-20.654-6.975-20.654-15.58 9.248-15.581 20.654-15.581 20.654 6.976 20.654 15.58"}),(0,t.jsx)("path",{fill:"#F8C300",d:"M248.11 246.85h11.796v54.916H248.11z"}),(0,t.jsx)("path",{fill:"#F8C300",d:"M357.58 297.62c-5.134 10.894-12.042 14.76-23.319 14.458-19.735.468-24.195-14.028-26.768-20.427-6.976 9.194-10.941 12.848-22.52 12.627-16.498.369-24.827-9.022-30.977-26.776-6.15 17.641-14.479 27.032-30.977 26.663-11.58.222-15.545-3.433-22.52-12.627-2.573 6.4-7.032 20.895-26.768 20.427-11.277.302-18.185-3.564-22.807-14.61 5.365 15.426 10.679 24.058 27.152 24.596 14.92.18 21.753-8.462 24.986-14.372 10.749 5.71 11.854 6.978 27.093 6.62 11.376-.366 17.91-7.798 23.797-14.87 5.887 7.072 12.422 14.504 23.797 14.87 15.24.358 16.345-.91 27.093-6.62 3.233 5.91 10.066 14.551 24.986 14.372 16.473-.538 21.788-9.17 27.751-24.331z"}),(0,t.jsx)("path",{fill:"#F8C300",d:"m204.17 313.52 5.385 7.463 10.326-.303-7.969 9.031-15.6.399-4.881-6.537 9.011-1.456 3.784-8.575M303.62 313.52l-5.385 7.463-10.326-.303 7.969 9.031 15.6.399 4.881-6.537-9.011-1.456-3.784-8.575M241.02 318.31c0-.04 7.086.04 7.086.04l5.958-4.75 5.818 4.69 7.026.101-6.322 9.34H247.3zM330.66 351.58c-27.551-5.688-45.991-8.487-76.696-8.487s-49.145 2.799-76.522 8.419l-.038-11.879c27.415-5.672 45.855-8.471 76.56-8.471s49.145 2.8 76.56 8.471z"}),(0,t.jsx)("path",{fill:"#fff",d:"M264.823 235.907c0 3.38-4.83 6.12-10.79 6.12s-10.79-2.74-10.79-6.12 4.83-6.12 10.79-6.12 10.79 2.74 10.79 6.12"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5454.a8bca7d3.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js deleted file mode 100644 index 42d02f37ad..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5545.cde240bd.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5545"],{45552(l,i,e){e.r(i),e.d(i,{default:()=>d});var s=e(74848);e(47867);let d=l=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,s.jsx)("defs",{children:(0,s.jsx)("clipPath",{id:"la_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,s.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,s.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#la_inline_svg__a)",children:[(0,s.jsx)("path",{fill:"#e90012",d:"M-40 0h720v480H-40z"}),(0,s.jsx)("path",{fill:"#003dd2",d:"M-40 119.26h720v241.48H-40z"}),(0,s.jsx)("path",{fill:"#fff",d:"M423.42 239.998a103.419 103.419 0 1 1-206.838 0 103.419 103.419 0 1 1 206.837 0"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5545.cde240bd.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js deleted file mode 100644 index eca2ca8c3a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5561.b76a78d2.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5561"],{75168(e,O,a){a.r(O),a.d(O,{cssCompletionSource:()=>_,defineCSSCompletionSource:()=>Z,css:()=>G,cssLanguage:()=>x});var r=a(48820),t=a(43720);let o=[9,10,11,12,13,32,133,160,5760,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8232,8233,8239,8287,12288];function l(e){return e>=65&&e<=90||e>=97&&e<=122||e>=161}function i(e){return e>=48&&e<=57}function n(e){return i(e)||e>=97&&e<=102||e>=65&&e<=70}let s=(e,O,a)=>(r,t)=>{for(let o=!1,s=0,d=0;;d++){let{next:Q}=r;if(l(Q)||45==Q||95==Q||o&&i(Q))!o&&(45!=Q||d>0)&&(o=!0),s===d&&45==Q&&s++,r.advance();else if(92==Q&&10!=r.peek(1)){if(r.advance(),n(r.next)){do r.advance();while(n(r.next));32==r.next&&r.advance()}else r.next>-1&&r.advance();o=!0}else{o&&r.acceptToken(2==s&&t.canShift(2)?O:40==Q?a:e);break}}},d=new r.Lu(s(136,2,137),{contextual:!0}),Q=new r.Lu(s(138,3,4),{contextual:!0}),c=new r.Lu(e=>{if(o.includes(e.peek(-1))){let{next:O}=e;(l(O)||95==O||35==O||46==O||42==O||91==O||58==O&&l(e.peek(1))||45==O||38==O)&&e.acceptToken(135)}}),$=new r.Lu(e=>{if(!o.includes(e.peek(-1))){let{next:O}=e;if(37==O&&(e.advance(),e.acceptToken(1)),l(O)){do e.advance();while(l(e.next)||i(e.next));e.acceptToken(1)}}}),u=(0,t.pn)({"AtKeyword import charset namespace keyframes media supports font-feature-values":t._A.definitionKeyword,"from to selector scope MatchFlag":t._A.keyword,NamespaceName:t._A.namespace,KeyframeName:t._A.labelName,KeyframeRangeName:t._A.operatorKeyword,TagName:t._A.tagName,ClassName:t._A.className,PseudoClassName:t._A.constant(t._A.className),IdName:t._A.labelName,"FeatureName PropertyName":t._A.propertyName,AttributeName:t._A.attributeName,NumberLiteral:t._A.number,KeywordQuery:t._A.keyword,UnaryQueryOp:t._A.operatorKeyword,"CallTag ValueName FontName":t._A.atom,VariableName:t._A.variableName,Callee:t._A.operatorKeyword,Unit:t._A.unit,"UniversalSelector NestingSelector":t._A.definitionOperator,"MatchOp CompareOp":t._A.compareOperator,"ChildOp SiblingOp, LogicOp":t._A.logicOperator,BinOp:t._A.arithmeticOperator,Important:t._A.modifier,Comment:t._A.blockComment,ColorLiteral:t._A.color,"ParenthesizedContent StringLiteral":t._A.string,":":t._A.punctuation,"PseudoOp #":t._A.derefOperator,"; , |":t._A.separator,"( )":t._A.paren,"[ ]":t._A.squareBracket,"{ }":t._A.brace}),p={__proto__:null,lang:44,"nth-child":44,"nth-last-child":44,"nth-of-type":44,"nth-last-of-type":44,dir:44,"host-context":44,if:90,url:132,"url-prefix":132,domain:132,regexp:132},j={__proto__:null,or:104,and:104,not:112,only:112,layer:186},m={__proto__:null,selector:118,layer:182},S={__proto__:null,"@import":178,"@media":190,"@charset":194,"@namespace":198,"@keyframes":204,"@supports":216,"@scope":220,"@font-feature-values":226},y={__proto__:null,to:223},g=r.U1.deserialize({version:14,states:"IpQYQdOOO#}QdOOP$UO`OOO%OQaO'#CfOOQP'#Ce'#CeO%VQdO'#CgO%[Q`O'#CgO%aQaO'#FdO&XQdO'#CkO&xQaO'#CcO'SQdO'#CnO'_QdO'#DtO'dQdO'#DvO'oQdO'#D}O'oQdO'#EQOOQP'#Fd'#FdO)OQhO'#EsOOQS'#Fc'#FcOOQS'#Ev'#EvQYQdOOO)VQdO'#EWO*cQhO'#E^O)VQdO'#E`O*jQdO'#EbO*uQdO'#EeO)zQhO'#EkO*}QdO'#EmO+YQdO'#EpO+_QaO'#CfO+fQ`O'#ETO+kQ`O'#FnO+vQdO'#FnQOQ`OOP,QO&jO'#CaPOOO)CAR)CAROOQP'#Ci'#CiOOQP,59R,59RO%VQdO,59ROOQP'#Cm'#CmOOQP,59V,59VO&XQdO,59VO,]QdO,59YO'_QdO,5:`O'dQdO,5:bO'oQdO,5:iO'oQdO,5:kO'oQdO,5:lO'oQdO'#E}O,hQ`O,58}O,pQdO'#ESOOQS,58},58}OOQP'#Cq'#CqOOQO'#Dr'#DrOOQP,59Y,59YO,wQ`O,59YO,|Q`O,59YOOQP'#Du'#DuOOQP,5:`,5:`O-RQpO'#DwO-^QdO'#DxO-cQ`O'#DxO-hQpO,5:bO.RQaO,5:iO.iQaO,5:lOOQW'#D^'#D^O/eQhO'#DgO/xQhO,5;_O)zQhO'#DeO0VQ`O'#DkO0[QhO'#DnOOQW'#Fj'#FjOOQS,5;_,5;_O0aQ`O'#DhOOQS-E8t-E8tOOQ['#Cv'#CvO0fQdO'#CwO0|QdO'#C}O1dQdO'#DQO1zQ!pO'#DSO4TQ!jO,5:rOOQO'#DX'#DXO,|Q`O'#DWO4eQ!nO'#FgO6hQ`O'#DYO6mQ`O'#DoOOQ['#Fg'#FgO6rQhO'#FqO7QQ`O,5:xO7VQ!bO,5:zOOQS'#Ed'#EdO7_Q`O,5:|O7dQdO,5:|OOQO'#Eg'#EgO7lQ`O,5;PO7qQhO,5;VO'oQdO'#DjOOQS,5;X,5;XO0aQ`O,5;XO7yQdO,5;XOOQS'#FU'#FUO8RQdO'#ErO7QQ`O,5;[O8ZQdO,5:oO8kQdO'#FPO8xQ`O,5QQhO'#DlOOQW,5:V,5:VOOQW,5:Y,5:YOOQW,5:S,5:SO>[Q!fO'#FhOOQS'#Fh'#FhOOQS'#Ex'#ExO?lQdO,59cOOQ[,59c,59cO@SQdO,59iOOQ[,59i,59iO@jQdO,59lOOQ[,59l,59lOOQ[,59n,59nO)VQdO,59pOAQQhO'#EYOOQW'#EY'#EYOAlQ`O1G0^O4^QhO1G0^OOQ[,59r,59rO)zQhO'#D[OOQ[,59t,59tOAqQ#tO,5:ZOA|QhO'#FROBZQ`O,5<]OOQS1G0d1G0dOOQS1G0f1G0fOOQS1G0h1G0hOBfQ`O1G0hOBkQdO'#EhOOQS1G0k1G0kOOQS1G0q1G0qOBvQaO,5:UO7QQ`O1G0sOOQS1G0s1G0sO0aQ`O1G0sOOQS-E9S-E9SOOQS1G0v1G0vOB}Q!fO1G0ZOCeQ`O'#EVOOQO1G0Z1G0ZOOQO,5;k,5;kOCjQdO,5;kOOQO-E8}-E8}OCwQ`O1G1tPOOO-E8s-E8sPOOO1G.g1G.gOOQP7+$`7+$`OOQP7+%h7+%hO)VQdO7+%hOOQS1G0Y1G0YODSQaO'#FmOD^Q`O,5:_ODcQ!fO'#EwOEaQdO'#FfOEkQ`O,59aOOQO1G0O1G0OOEpQ!bO7+%hO)VQdO1G/eOE{QhO1G/iOOQW1G/m1G/mOOQW1G/g1G/gOF^QhO,5;qOOQW-E9T-E9TOOQS7+&e7+&eOGRQhO'#D^OGaQhO'#FlOGlQ`O'#FlOGqQ`O,5:WOOQS-E8v-E8vOOQ[1G.}1G.}OOQ[1G/T1G/TOOQ[1G/W1G/WOOQ[1G/[1G/[OGvQdO,5:tOOQS7+%x7+%xOG{Q`O7+%xOHQQhO'#D]OHYQ`O,59vO)zQhO,59vOOQ[1G/u1G/uOHbQ`O1G/uOHgQhO,5;mOOQO-E9P-E9POOQS7+&S7+&SOHuQbO'#DSOOQO'#Ej'#EjOITQ`O'#EiOOQO'#Ei'#EiOI`Q`O'#FSOIhQdO,5;SOOQS,5;S,5;SOOQ[1G/p1G/pOOQS7+&_7+&_O7QQ`O7+&_OIsQ!fO'#FOO)VQdO'#FOOJzQdO7+%uOOQO7+%u7+%uOOQO,5:q,5:qOOQO1G1V1G1VOK_Q!bO<nAN>nO! bQ`OAN>nO! gQaO,5;hOOQO-E8z-E8zO! qQdO,5;gOOQO-E8y-E8yOOQW<ZO)VQdO1G1QO!#nQ`O7+'^OOQO,5;l,5;lOOQO-E9O-E9OOOQW<Q!]!^>|!^!_?_!_!`@Z!`!a@n!a!b%Z!b!cAo!c!k%Z!k!lC|!l!u%Z!u!vC|!v!}%Z!}#OD_#O#P%Z#P#QDp#Q#R2X#R#]%Z#]#^ER#^#g%Z#g#hC|#h#o%Z#o#pIf#p#qIw#q#rJ`#r#sJq#s#y%Z#y#z&R#z$f%Z$f$g&R$g#BY%Z#BY#BZ&R#BZ$IS%Z$IS$I_&R$I_$I|%Z$I|$JO&R$JO$JT%Z$JT$JU&R$JU$KV%Z$KV$KW&R$KW&FU%Z&FU&FV&R&FV;'S%Z;'S;=`KY<%lO%Z`%^SOy%jz;'S%j;'S;=`%{<%lO%j`%oS!e`Oy%jz;'S%j;'S;=`%{<%lO%j`&OP;=`<%l%j~&Wh$Q~OX%jX^'r^p%jpq'rqy%jz#y%j#y#z'r#z$f%j$f$g'r$g#BY%j#BY#BZ'r#BZ$IS%j$IS$I_'r$I_$I|%j$I|$JO'r$JO$JT%j$JT$JU'r$JU$KV%j$KV$KW'r$KW&FU%j&FU&FV'r&FV;'S%j;'S;=`%{<%lO%j~'yh$Q~!e`OX%jX^'r^p%jpq'rqy%jz#y%j#y#z'r#z$f%j$f$g'r$g#BY%j#BY#BZ'r#BZ$IS%j$IS$I_'r$I_$I|%j$I|$JO'r$JO$JT%j$JT$JU'r$JU$KV%j$KV$KW'r$KW&FU%j&FU&FV'r&FV;'S%j;'S;=`%{<%lO%jj)jS$dYOy%jz;'S%j;'S;=`%{<%lO%j~)yWOY)vZr)vrs*cs#O)v#O#P*h#P;'S)v;'S;=`+d<%lO)v~*hOw~~*kRO;'S)v;'S;=`*t;=`O)v~*wXOY)vZr)vrs*cs#O)v#O#P*h#P;'S)v;'S;=`+d;=`<%l)v<%lO)v~+gP;=`<%l)vj+oYmYOy%jz!Q%j!Q![,_![!c%j!c!i,_!i#T%j#T#Z,_#Z;'S%j;'S;=`%{<%lO%jj,dY!e`Oy%jz!Q%j!Q![-S![!c%j!c!i-S!i#T%j#T#Z-S#Z;'S%j;'S;=`%{<%lO%jj-XY!e`Oy%jz!Q%j!Q![-w![!c%j!c!i-w!i#T%j#T#Z-w#Z;'S%j;'S;=`%{<%lO%jj.OYuY!e`Oy%jz!Q%j!Q![.n![!c%j!c!i.n!i#T%j#T#Z.n#Z;'S%j;'S;=`%{<%lO%jj.uYuY!e`Oy%jz!Q%j!Q![/e![!c%j!c!i/e!i#T%j#T#Z/e#Z;'S%j;'S;=`%{<%lO%jj/jY!e`Oy%jz!Q%j!Q![0Y![!c%j!c!i0Y!i#T%j#T#Z0Y#Z;'S%j;'S;=`%{<%lO%jj0aYuY!e`Oy%jz!Q%j!Q![1P![!c%j!c!i1P!i#T%j#T#Z1P#Z;'S%j;'S;=`%{<%lO%jj1UY!e`Oy%jz!Q%j!Q![1t![!c%j!c!i1t!i#T%j#T#Z1t#Z;'S%j;'S;=`%{<%lO%jj1{SuY!e`Oy%jz;'S%j;'S;=`%{<%lO%jd2[UOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jd2uS!oS!e`Oy%jz;'S%j;'S;=`%{<%lO%jb3WS^QOy%jz;'S%j;'S;=`%{<%lO%j~3gWOY3dZw3dwx*cx#O3d#O#P4P#P;'S3d;'S;=`4{<%lO3d~4SRO;'S3d;'S;=`4];=`O3d~4`XOY3dZw3dwx*cx#O3d#O#P4P#P;'S3d;'S;=`4{;=`<%l3d<%lO3d~5OP;=`<%l3dj5WShYOy%jz;'S%j;'S;=`%{<%lO%j~5iOg~n5pUWQyWOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jj6ZWyW!uQOy%jz!O%j!O!P6s!P!Q%j!Q![9x![;'S%j;'S;=`%{<%lO%jj6xU!e`Oy%jz!Q%j!Q![7[![;'S%j;'S;=`%{<%lO%jj7cY!e`$]YOy%jz!Q%j!Q![7[![!g%j!g!h8R!h#X%j#X#Y8R#Y;'S%j;'S;=`%{<%lO%jj8WY!e`Oy%jz{%j{|8v|}%j}!O8v!O!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj8{U!e`Oy%jz!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj9fU!e`$]YOy%jz!Q%j!Q![9_![;'S%j;'S;=`%{<%lO%jj:P[!e`$]YOy%jz!O%j!O!P7[!P!Q%j!Q![9x![!g%j!g!h8R!h#X%j#X#Y8R#Y;'S%j;'S;=`%{<%lO%jj:zS!aYOy%jz;'S%j;'S;=`%{<%lO%jj;]WyWOy%jz!O%j!O!P6s!P!Q%j!Q![9x![;'S%j;'S;=`%{<%lO%jj;zU`YOy%jz!Q%j!Q![7[![;'S%j;'S;=`%{<%lO%j~VUcYOy%jz![%j![!]>i!];'S%j;'S;=`%{<%lO%jj>pSdY!e`Oy%jz;'S%j;'S;=`%{<%lO%jj?RSnYOy%jz;'S%j;'S;=`%{<%lO%jh?dU!WWOy%jz!_%j!_!`?v!`;'S%j;'S;=`%{<%lO%jh?}S!WW!e`Oy%jz;'S%j;'S;=`%{<%lO%jl@bS!WW!oSOy%jz;'S%j;'S;=`%{<%lO%jj@uV!rQ!WWOy%jz!_%j!_!`?v!`!aA[!a;'S%j;'S;=`%{<%lO%jbAcS!rQ!e`Oy%jz;'S%j;'S;=`%{<%lO%jjArYOy%jz}%j}!OBb!O!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jjBgW!e`Oy%jz!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jjCW[lY!e`Oy%jz}%j}!OCP!O!Q%j!Q![CP![!c%j!c!}CP!}#T%j#T#oCP#o;'S%j;'S;=`%{<%lO%jhDRS!pWOy%jz;'S%j;'S;=`%{<%lO%jjDdSpYOy%jz;'S%j;'S;=`%{<%lO%jnDuSo^Oy%jz;'S%j;'S;=`%{<%lO%jjEWU!pWOy%jz#a%j#a#bEj#b;'S%j;'S;=`%{<%lO%jbEoU!e`Oy%jz#d%j#d#eFR#e;'S%j;'S;=`%{<%lO%jbFWU!e`Oy%jz#c%j#c#dFj#d;'S%j;'S;=`%{<%lO%jbFoU!e`Oy%jz#f%j#f#gGR#g;'S%j;'S;=`%{<%lO%jbGWU!e`Oy%jz#h%j#h#iGj#i;'S%j;'S;=`%{<%lO%jbGoU!e`Oy%jz#T%j#T#UHR#U;'S%j;'S;=`%{<%lO%jbHWU!e`Oy%jz#b%j#b#cHj#c;'S%j;'S;=`%{<%lO%jbHoU!e`Oy%jz#h%j#h#iIR#i;'S%j;'S;=`%{<%lO%jbIYS$cQ!e`Oy%jz;'S%j;'S;=`%{<%lO%jjIkSsYOy%jz;'S%j;'S;=`%{<%lO%jfI|U$XUOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%jjJeSrYOy%jz;'S%j;'S;=`%{<%lO%jfJvU!uQOy%jz!_%j!_!`2n!`;'S%j;'S;=`%{<%lO%j`K]P;=`<%l%Z",tokenizers:[c,$,d,Q,1,2,3,4,new r.uC("m~RRYZ[z{a~~g~aO$T~~dP!P!Qg~lO$U~~",28,142)],topRules:{StyleSheet:[0,6],Styles:[1,116]},dynamicPrecedences:{84:1},specialized:[{term:137,get:e=>p[e]||-1},{term:138,get:e=>j[e]||-1},{term:4,get:e=>m[e]||-1},{term:28,get:e=>S[e]||-1},{term:136,get:e=>y[e]||-1}],tokenPrec:2256});var h=a(15874),P=a(90365);let X=null;function f(){if(!X&&"object"==typeof document&&document.body){let{style:e}=document.body,O=[],a=new Set;for(let r in e)"cssText"!=r&&"cssFloat"!=r&&"string"==typeof e[r]&&(/[A-Z]/.test(r)&&(r=r.replace(/[A-Z]/g,e=>"-"+e.toLowerCase())),a.has(r)||(O.push(r),a.add(r)));X=O.sort().map(e=>({type:"property",label:e,apply:e+": "}))}return X||[]}let b=["active","after","any-link","autofill","backdrop","before","checked","cue","default","defined","disabled","empty","enabled","file-selector-button","first","first-child","first-letter","first-line","first-of-type","focus","focus-visible","focus-within","fullscreen","has","host","host-context","hover","in-range","indeterminate","invalid","is","lang","last-child","last-of-type","left","link","marker","modal","not","nth-child","nth-last-child","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","part","placeholder","placeholder-shown","read-only","read-write","required","right","root","scope","selection","slotted","target","target-text","valid","visited","where"].map(e=>({type:"class",label:e})),v=["above","absolute","activeborder","additive","activecaption","after-white-space","ahead","alias","all","all-scroll","alphabetic","alternate","always","antialiased","appworkspace","asterisks","attr","auto","auto-flow","avoid","avoid-column","avoid-page","avoid-region","axis-pan","background","backwards","baseline","below","bidi-override","blink","block","block-axis","bold","bolder","border","border-box","both","bottom","break","break-all","break-word","bullets","button","button-bevel","buttonface","buttonhighlight","buttonshadow","buttontext","calc","capitalize","caps-lock-indicator","caption","captiontext","caret","cell","center","checkbox","circle","cjk-decimal","clear","clip","close-quote","col-resize","collapse","color","color-burn","color-dodge","column","column-reverse","compact","condensed","contain","content","contents","content-box","context-menu","continuous","copy","counter","counters","cover","crop","cross","crosshair","currentcolor","cursive","cyclic","darken","dashed","decimal","decimal-leading-zero","default","default-button","dense","destination-atop","destination-in","destination-out","destination-over","difference","disc","discard","disclosure-closed","disclosure-open","document","dot-dash","dot-dot-dash","dotted","double","down","e-resize","ease","ease-in","ease-in-out","ease-out","element","ellipse","ellipsis","embed","end","ethiopic-abegede-gez","ethiopic-halehame-aa-er","ethiopic-halehame-gez","ew-resize","exclusion","expanded","extends","extra-condensed","extra-expanded","fantasy","fast","fill","fill-box","fixed","flat","flex","flex-end","flex-start","footnotes","forwards","from","geometricPrecision","graytext","grid","groove","hand","hard-light","help","hidden","hide","higher","highlight","highlighttext","horizontal","hsl","hsla","hue","icon","ignore","inactiveborder","inactivecaption","inactivecaptiontext","infinite","infobackground","infotext","inherit","initial","inline","inline-axis","inline-block","inline-flex","inline-grid","inline-table","inset","inside","intrinsic","invert","italic","justify","keep-all","landscape","large","larger","left","level","lighter","lighten","line-through","linear","linear-gradient","lines","list-item","listbox","listitem","local","logical","loud","lower","lower-hexadecimal","lower-latin","lower-norwegian","lowercase","ltr","luminosity","manipulation","match","matrix","matrix3d","medium","menu","menutext","message-box","middle","min-intrinsic","mix","monospace","move","multiple","multiple_mask_images","multiply","n-resize","narrower","ne-resize","nesw-resize","no-close-quote","no-drop","no-open-quote","no-repeat","none","normal","not-allowed","nowrap","ns-resize","numbers","numeric","nw-resize","nwse-resize","oblique","opacity","open-quote","optimizeLegibility","optimizeSpeed","outset","outside","outside-shape","overlay","overline","padding","padding-box","painted","page","paused","perspective","pinch-zoom","plus-darker","plus-lighter","pointer","polygon","portrait","pre","pre-line","pre-wrap","preserve-3d","progress","push-button","radial-gradient","radio","read-only","read-write","read-write-plaintext-only","rectangle","region","relative","repeat","repeating-linear-gradient","repeating-radial-gradient","repeat-x","repeat-y","reset","reverse","rgb","rgba","ridge","right","rotate","rotate3d","rotateX","rotateY","rotateZ","round","row","row-resize","row-reverse","rtl","run-in","running","s-resize","sans-serif","saturation","scale","scale3d","scaleX","scaleY","scaleZ","screen","scroll","scrollbar","scroll-position","se-resize","self-start","self-end","semi-condensed","semi-expanded","separate","serif","show","single","skew","skewX","skewY","skip-white-space","slide","slider-horizontal","slider-vertical","sliderthumb-horizontal","sliderthumb-vertical","slow","small","small-caps","small-caption","smaller","soft-light","solid","source-atop","source-in","source-out","source-over","space","space-around","space-between","space-evenly","spell-out","square","start","static","status-bar","stretch","stroke","stroke-box","sub","subpixel-antialiased","svg_masks","super","sw-resize","symbolic","symbols","system-ui","table","table-caption","table-cell","table-column","table-column-group","table-footer-group","table-header-group","table-row","table-row-group","text","text-bottom","text-top","textarea","textfield","thick","thin","threeddarkshadow","threedface","threedhighlight","threedlightshadow","threedshadow","to","top","transform","translate","translate3d","translateX","translateY","translateZ","transparent","ultra-condensed","ultra-expanded","underline","unidirectional-pan","unset","up","upper-latin","uppercase","url","var","vertical","vertical-text","view-box","visible","visibleFill","visiblePainted","visibleStroke","visual","w-resize","wait","wave","wider","window","windowframe","windowtext","words","wrap","wrap-reverse","x-large","x-small","xor","xx-large","xx-small"].map(e=>({type:"keyword",label:e})).concat(["aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","grey","green","greenyellow","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen"].map(e=>({type:"constant",label:e}))),w=["a","abbr","address","article","aside","b","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","dd","del","details","dfn","dialog","div","dl","dt","em","figcaption","figure","footer","form","header","hgroup","h1","h2","h3","h4","h5","h6","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","main","meter","nav","ol","output","p","pre","ruby","section","select","small","source","span","strong","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","tr","u","ul"].map(e=>({type:"type",label:e})),k=["@charset","@color-profile","@container","@counter-style","@font-face","@font-feature-values","@font-palette-values","@import","@keyframes","@layer","@media","@namespace","@page","@position-try","@property","@scope","@starting-style","@supports","@view-transition"].map(e=>({type:"keyword",label:e})),z=/^(\w[\w-]*|-\w[\w-]*|)$/,R=/^-(-[\w-]*)?$/,Y=new P.RY,W=["Declaration"],Z=e=>O=>{let{state:a,pos:r}=O,t=(0,h.mv)(a).resolveInner(r,-1),o=t.type.isError&&t.from==t.to-1&&"-"==a.doc.sliceString(t.from,t.to);if("PropertyName"==t.name||(o||"TagName"==t.name)&&/^(Block|Styles)$/.test(t.resolve(t.to).name))return{from:t.from,options:f(),validFor:z};if("ValueName"==t.name)return{from:t.from,options:v,validFor:z};if("PseudoClassName"==t.name)return{from:t.from,options:b,validFor:z};if(e(t)||(O.explicit||o)&&function(e,O){var a;if(("("==e.name||e.type.isError)&&(e=e.parent||e),"ArgList"!=e.name)return!1;let r=null==(a=e.parent)?void 0:a.firstChild;return(null==r?void 0:r.name)=="Callee"&&"var"==O.sliceString(r.from,r.to)}(t,a.doc))return{from:e(t)||o?t.from:r,options:function e(O,a,r){if(a.to-a.from>4096){let t=Y.get(a);if(t)return t;let o=[],l=new Set,i=a.cursor(P.Qj.IncludeAnonymous);if(i.firstChild())do for(let a of e(O,i.node,r))l.has(a.label)||(l.add(a.label),o.push(a));while(i.nextSibling());return Y.set(a,o),o}{let e=[],t=new Set;return a.cursor().iterate(a=>{var o;if(r(a)&&a.matchContext(W)&&(null==(o=a.node.nextSibling)?void 0:o.name)==":"){let r=O.sliceString(a.from,a.to);t.has(r)||(t.add(r),e.push({label:r,type:"variable"}))}}),e}}(a.doc,function(e){for(let O=e;;){if(O.type.isTop)return O;if(!(O=O.parent))return e}}(t),e),validFor:R};if("TagName"==t.name){for(let{parent:e}=t;e;e=e.parent)if("Block"==e.name)return{from:t.from,options:f(),validFor:z};return{from:t.from,options:w,validFor:z}}if("AtKeyword"==t.name)return{from:t.from,options:k,validFor:z};if(!O.explicit)return null;let l=t.resolve(r),i=l.childBefore(r);return i&&":"==i.name&&"PseudoClassSelector"==l.name?{from:r,options:b,validFor:z}:i&&":"==i.name&&"Declaration"==l.name||"ArgList"==l.name?{from:r,options:v,validFor:z}:"Block"==l.name||"Styles"==l.name?{from:r,options:f(),validFor:z}:null},_=Z(e=>"VariableName"==e.name),x=h.bj.define({name:"css",parser:g.configure({props:[h.Oh.add({Declaration:(0,h.mz)()}),h.b_.add({"Block KeyframeList":h.yd})]}),languageData:{commentTokens:{block:{open:"/*",close:"*/"}},indentOnInput:/^\s*\}$/,wordChars:"-"}});function G(){return new h.Yy(x,x.data.of({autocomplete:_}))}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5561.b76a78d2.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js deleted file mode 100644 index 50063df523..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5690.782c3ae6.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5690"],{46497(e,l,i){i.r(l),i.d(l,{default:()=>d});var s=i(74848);i(47867);let d=e=>(0,s.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,s.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,s.jsx)("path",{fill:"#ffe800",d:"M0 0h640v480H0z"}),(0,s.jsx)("path",{fill:"#00148e",d:"M0 240h640v240H0z"}),(0,s.jsx)("path",{fill:"#da0010",d:"M0 360h640v120H0z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5690.782c3ae6.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js deleted file mode 100644 index 2cba93e293..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5696.ab2274ca.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5696"],{81555(s,t,i){i.r(t),i.d(t,{default:()=>h});var l=i(74848);i(47867);let h=s=>(0,l.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,l.jsx)("path",{fill:"red",d:"M256 0h384v480H256z"}),(0,l.jsx)("path",{fill:"#060",d:"M0 0h256v480H0z"}),(0,l.jsxs)("g",{fill:"#ff0",fillRule:"evenodd",stroke:"#000",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.573,children:[(0,l.jsx)("path",{strokeWidth:.611,d:"M339.456 306.176c-32.224-.97-179.99-93.205-181.003-107.893l8.16-13.608c14.657 21.297 165.717 110.998 180.555 107.82l-7.712 13.677"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M164.896 182.827c-2.89 7.78 38.56 33.406 88.43 63.737 49.87 30.33 92.87 49.073 96.056 46.385.195-.348 1.57-2.71 1.443-2.692-.598.9-2.052 1.184-4.32.53-13.474-3.886-48.614-20.016-92.133-46.406-43.518-26.392-81.38-50.714-87.265-61.047-.41-.716-.7-2.023-.642-3.04h-.143l-1.253 2.19-.173.342zm175.317 123.776c-.546.99-1.565 1.024-3.5.812-12.053-1.334-48.628-19.12-91.906-45.028-50.358-30.144-91.947-57.61-87.435-64.79l1.228-2.17.242.076c-4.058 12.165 82.077 61.417 87.148 64.557 49.84 30.877 91.856 48.908 95.575 44.222l-1.353 2.326v-.002z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M256.18 207.18c32.254-.256 72.055-4.41 94.96-13.537l-4.936-8.018c-13.538 7.493-53.557 12.42-90.295 13.157-43.453-.4-74.124-4.446-89.49-14.757l-4.66 8.538c28.25 11.954 57.198 14.493 94.422 14.616"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M352.47 193.824c-.79 1.26-15.727 6.412-37.732 10.214-14.92 2.274-34.383 4.22-58.67 4.242-23.076.022-41.926-1.62-56.197-3.555-23.1-3.622-35.02-8.66-39.428-10.442.42-.838.692-1.426 1.098-2.21 12.688 5.053 24.666 8.1 38.698 10.258 14.177 1.92 32.8 3.587 55.76 3.566 24.176-.025 43.424-2.117 58.258-4.324 22.565-3.64 34.892-8.324 36.623-10.5l1.593 2.752h-.002zm-4.332-8.13c-2.446 1.963-14.632 6.285-36.073 9.71-14.31 2.05-32.504 3.886-55.75 3.908-22.084.022-40.127-1.466-53.85-3.465-21.775-2.844-33.365-7.974-37.543-9.47.416-.72.84-1.432 1.274-2.148 3.25 1.636 14.435 6.176 36.508 9.303 13.568 1.924 31.638 3.358 53.613 3.335 23.136-.023 41.123-1.894 55.34-3.934 21.553-2.965 33.15-8.477 34.91-9.857l1.572 2.614v.003zm-197.866 60.343c19.838 10.67 63.9 16.047 105.594 16.417 37.963.06 87.42-5.868 105.916-15.67l-.51-10.678c-5.785 9.042-58.786 17.716-105.818 17.36-47.033-.354-90.707-7.618-105.266-17.022l.084 9.59"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M362.795 244.5v2.548c-2.78 3.324-20.208 8.347-42.066 11.885-16.635 2.55-38.323 4.474-65.347 4.474-25.673 0-46.147-1.83-62.024-4.268-25.1-3.656-41.152-10.056-44.375-11.966l.015-2.97c9.68 6.435 35.905 11.142 44.71 12.584 15.775 2.42 36.127 4.238 61.672 4.238 26.898 0 48.463-1.91 64.994-4.444 15.68-2.266 38.02-8.157 42.418-12.08zm.01-9.057v2.547c-2.778 3.32-20.208 8.345-42.065 11.882-16.635 2.55-38.322 4.474-65.346 4.474-25.674 0-46.147-1.828-62.025-4.268-25.098-3.653-41.15-10.053-44.374-11.964l.014-2.97c9.68 6.434 35.905 11.143 44.712 12.582 15.774 2.423 36.126 4.24 61.67 4.24 26.898 0 48.464-1.91 64.994-4.446 15.68-2.265 38.02-8.156 42.418-12.08v.003zM255.776 304.34c-45.623-.27-84.716-12.435-92.97-14.446l6.02 9.424c14.58 6.133 52.718 15.274 87.388 14.262 34.67-1.01 64.97-3.697 86.323-14.092l6.172-9.765c-14.553 6.853-64.074 14.548-92.935 14.618"}),(0,l.jsx)("path",{strokeWidth:.587,d:"M344.853 297.3a143 143 0 0 1-2.77 4.086c-10.07 3.55-25.94 7.28-32.636 8.367-13.68 2.818-34.843 4.9-53.625 4.91-40.416-.592-73.5-8.504-89.063-15.253l-1.257-2.16.205-.323 2.13.826c27.678 9.902 58.764 13.853 88.21 14.562 18.71.066 37.436-2.144 52.58-4.852 23.222-4.653 32.612-8.16 35.493-9.75l.734-.41zm5.352-8.826q.035.04.07.083a287 287 0 0 1-2.093 3.48c-5.372 1.92-19.95 6.185-41.237 9.162-14.025 1.91-22.743 3.76-50.644 4.302-52.282-1.33-86.132-11.553-94.174-14.075l-1.192-2.286c30.3 7.91 61.25 13.433 95.37 13.997 25.525-.544 36.385-2.424 50.294-4.32 24.823-3.86 37.33-7.946 41.083-9.126a3 3 0 0 0-.164-.212l2.692-1.005-.002.002z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M350.752 237.61c.148 30.013-15.21 56.946-27.582 68.827-17.502 16.81-40.707 27.623-67.807 28.12-30.26.557-58.794-19.17-66.448-27.838-14.963-16.945-27.145-38.462-27.536-67.46 1.853-32.757 14.712-55.574 33.352-71.22s43.46-23.268 64.13-22.723c23.847.63 51.705 12.33 70.955 35.554 12.61 15.22 18.072 31.733 20.935 56.74zM255.62 134.847c58.118 0 105.916 47.294 105.916 105.283 0 57.987-47.798 105.283-105.916 105.283S150.1 298.118 150.1 240.129s47.403-105.284 105.52-105.284"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M255.904 134.485c58.17 0 105.612 47.45 105.612 105.624s-47.443 105.62-105.612 105.62c-58.17 0-105.612-47.446-105.612-105.62 0-58.176 47.443-105.625 105.612-105.625zM152.617 240.11c0 56.81 46.65 103.297 103.287 103.297s103.29-46.487 103.29-103.298c0-56.814-46.654-103.3-103.29-103.3s-103.287 46.49-103.287 103.3z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M255.99 143.264c53.046 0 96.74 43.542 96.74 96.75 0 53.21-43.695 96.75-96.74 96.75-53.046 0-96.74-43.54-96.74-96.75 0-53.208 43.695-96.75 96.74-96.75m-94.417 96.75c0 51.93 42.645 94.426 94.416 94.426s94.415-42.495 94.415-94.426c0-51.93-42.643-94.426-94.416-94.426s-94.417 42.495-94.417 94.426z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M260.245 134.06h-9.05l.01 212.223h9.082z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M259.34 132.85h2.302l.02 214.666h-2.306l-.016-214.667zm-8.984 0h2.322l.003 214.668h-2.323V132.85z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M361.59 244.197v-7.845l-6.39-5.952-36.267-9.6-52.266-5.334-62.934 3.2-44.8 10.667-9.045 6.7v7.846L172.8 233.6l54.4-8.534h52.267l38.4 4.267 26.666 6.4z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M255.947 223.755c24.942-.046 49.14 2.363 68.336 6.1 19.807 3.96 33.746 8.913 38.512 14.476l-.006 2.756c-5.748-6.923-24.505-11.998-38.953-14.9-19.05-3.705-43.086-6.098-67.89-6.05-26.174.047-50.546 2.526-69.317 6.19-15.06 2.987-35.147 8.924-37.655 14.78v-2.868c1.377-4.053 16.334-10.11 37.316-14.31 18.912-3.69 43.33-6.126 69.657-6.173zm.01-9.06c24.942-.044 49.142 2.366 68.336 6.102 19.807 3.962 33.746 8.913 38.512 14.476l-.005 2.754c-5.748-6.92-24.505-11.997-38.953-14.897-19.048-3.707-43.085-6.1-67.89-6.052-26.174.047-50.427 2.528-69.2 6.188-14.534 2.756-35.44 8.928-37.772 14.784v-2.87c1.377-4.01 16.636-10.284 37.317-14.31 18.91-3.69 43.328-6.124 69.655-6.173zm-.512-46.205c39.306-.196 73.59 5.496 89.275 13.53l5.72 9.9c-13.632-7.348-50.618-14.988-94.937-13.845-36.11.222-74.696 3.975-94.055 14.304l6.83-11.424c15.89-8.24 53.358-12.42 87.17-12.463"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M255.968 176.66c22.418-.058 44.08 1.206 61.308 4.315 16.043 2.986 31.344 7.467 33.53 9.877l1.698 2.998c-5.32-3.475-18.56-7.343-35.562-10.567-17.073-3.21-38.72-4.272-61.013-4.213-25.305-.087-44.963 1.25-61.835 4.19-17.843 3.34-30.223 8.11-33.277 10.375l1.662-3.168c5.934-3.028 15.35-6.677 31.172-9.525 17.447-3.187 37.315-4.143 62.317-4.28zm-.01-9.05c21.454-.055 42.637 1.14 59.15 4.11 13.022 2.534 25.9 6.492 30.617 10.014l2.48 3.942c-4.217-4.688-20.09-9.13-34.105-11.62-16.385-2.825-36.688-3.943-58.142-4.122-22.515.063-43.323 1.442-59.47 4.382-15.403 2.93-25.343 6.402-29.55 9.112l2.183-3.292c5.805-3.056 15.182-5.862 26.99-8.157 16.266-2.962 37.202-4.306 59.85-4.37zm52.469 116.4c-19.433-3.627-38.9-4.154-52.498-3.994-65.502.768-86.662 13.45-89.244 17.29l-4.895-7.98c16.677-12.088 52.345-18.866 94.493-18.173 21.886.358 40.773 1.812 56.66 4.89l-4.518 7.97"}),(0,l.jsx)("path",{strokeWidth:.587,d:"M255.552 278.89c18.22.273 36.106 1.025 53.37 4.244l-1.252 2.207c-16.033-2.958-33.125-4.09-52.056-4-24.174-.188-48.624 2.07-69.91 8.18-6.717 1.868-17.836 6.186-18.97 9.755l-1.244-2.05c.36-2.11 7.08-6.488 19.642-10.017 24.382-6.982 47.188-8.16 70.42-8.32v.003zm.827-9.17c18.877.354 38.372 1.227 57.322 4.98L312.4 277c-17.112-3.397-33.46-4.53-55.91-4.875-24.25.044-49.974 1.773-73.363 8.573-7.55 2.2-20.583 6.955-21.018 10.72l-1.244-2.203c.283-3.42 11.565-7.88 21.715-10.833 23.57-6.853 49.36-8.615 73.8-8.66z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"m349.42 290.54-7.872 12.21-22.615-20.083-58.666-39.467-66.134-36.267-34.336-11.744 7.318-13.57 2.485-1.353 21.333 5.333 70.4 36.267 40.534 25.6L336 272l13.867 16z"}),(0,l.jsx)("path",{strokeWidth:.611,d:"M158.56 195.51c6.022-4.085 50.282 15.63 96.592 43.556 46.188 28.004 90.322 59.65 86.338 65.57l-1.31 2.062-.6.474c.128-.092.792-.904-.066-3.1-1.968-6.475-33.275-31.457-85.22-62.82-50.64-30.197-92.844-48.397-97.064-43.195l1.33-2.548zm192.47 94.855c3.807-7.522-37.244-38.447-88.14-68.557-52.07-29.51-89.595-46.88-96.45-41.7l-1.522 2.77c-.014.153.055-.188.377-.436 1.246-1.088 3.312-1.015 4.244-1.03 11.802.175 45.51 15.688 92.806 42.802 20.723 12.07 87.542 54.923 87.287 66.975.018 1.034.086 1.248-.304 1.76l1.7-2.584v-.003z"})]}),(0,l.jsxs)("g",{transform:"translate(0 26.667)scale(1.06667)",children:[(0,l.jsx)("path",{fill:"#fff",stroke:"#000",strokeWidth:.67,d:"M180.6 211.01c0 16.27 6.663 30.987 17.457 41.742 10.815 10.778 25.512 17.58 41.81 17.58 16.38 0 31.246-6.654 42.015-17.39 10.77-10.735 17.443-25.552 17.446-41.88h-.002v-79.19l-118.74-.14.012 79.278z"}),(0,l.jsx)("path",{fill:"red",stroke:"#000",strokeWidth:.507,d:"M182.82 211.12v.045c0 15.557 6.44 29.724 16.775 40.01 10.354 10.304 24.614 16.71 40.214 16.71 15.68 0 29.91-6.36 40.22-16.625s16.698-24.433 16.7-40.044h-.002V134.39l-113.84-.02-.07 76.75m91.022-53.748.004 48.89-.04 5.173c0 1.36-.082 2.912-.24 4.233-.926 7.73-4.48 14.467-9.746 19.708-6.164 6.136-14.67 9.942-24.047 9.942-9.326 0-17.638-3.938-23.828-10.1-6.35-6.32-10.03-14.986-10.03-23.947l-.013-54.022 67.94.122v.002z"}),(0,l.jsxs)("g",{id:"pt_inline_svg__e",children:[(0,l.jsxs)("g",{id:"pt_inline_svg__d",fill:"#ff0",stroke:"#000",strokeWidth:.5,children:[(0,l.jsx)("path",{stroke:"none",d:"M190.19 154.43c.135-5.52 4.052-6.828 4.08-6.847.03-.02 4.232 1.407 4.218 6.898z"}),(0,l.jsx)("path",{d:"m186.81 147.69-.682 6.345 4.14.01c.04-5.25 3.975-6.124 4.07-6.104.09-.004 3.99 1.16 4.093 6.104h4.152l-.75-6.394-15.022.038v.002zm-.96 6.37h16.946c.357 0 .65.353.65.784 0 .43-.293.78-.65.78H185.85c-.357 0-.65-.35-.65-.78s.293-.784.65-.784z"}),(0,l.jsx)("path",{d:"M192.01 154.03c.018-3.313 2.262-4.25 2.274-4.248 0 0 2.342.966 2.36 4.248h-4.634m-5.8-8.98h16.245c.342 0 .623.318.623.705s-.28.704-.623.704H186.21c-.342 0-.623-.316-.623-.705 0-.387.28-.705.623-.705zm.34 1.42h15.538c.327 0 .595.317.595.704 0 .388-.268.704-.595.704H186.55c-.327 0-.595-.316-.595-.704s.268-.704.595-.704zm5.02-10.59 1.227.002v.87h.895v-.89l1.257.005v.887h.896v-.89h1.258l-.002 2.01c0 .317-.254.52-.55.52h-4.41c-.296 0-.57-.236-.57-.525l-.004-1.99zm4.62 2.69.277 6.45-4.303-.015.285-6.452 3.74.017"}),(0,l.jsx)("path",{id:"pt_inline_svg__a",d:"m190.94 141.56.13 3.478h-4.124l.116-3.478h3.88z"}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__a",width:"100%",height:"100%",x:10.609}),(0,l.jsx)("path",{id:"pt_inline_svg__b",d:"m186.3 139.04 1.2.003v.872h.877v-.892l1.23.004v.89h.88v-.894l1.23.002-.003 2.012c0 .314-.25.518-.536.518h-4.317c-.29 0-.558-.235-.558-.525z"}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__b",width:"100%",height:"100%",x:10.609}),(0,l.jsx)("path",{fill:"#000",stroke:"none",d:"M193.9 140.61c-.026-.627.877-.634.866 0v1.536h-.866z"}),(0,l.jsx)("path",{id:"pt_inline_svg__c",fill:"#000",stroke:"none",d:"M188.57 142.84c-.003-.606.837-.618.826 0v1.187h-.826z"}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__c",width:"100%",height:"100%",x:10.641})]}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__d",width:"100%",height:"100%",y:46.32}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__d",width:"100%",height:"100%",transform:"rotate(-45.202 312.766 180.004)"})]}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__d",width:"100%",height:"100%",x:45.714}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__e",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 479.792 0)"}),(0,l.jsxs)("g",{id:"pt_inline_svg__f",fill:"#fff",children:[(0,l.jsx)("path",{fill:"#039",d:"M232.636 202.406v.005a8.34 8.34 0 0 0 2.212 5.69c1.365 1.467 3.245 2.378 5.302 2.378 2.067 0 3.944-.905 5.303-2.365s2.202-3.472 2.202-5.693v-10.768l-14.992-.013-.028 10.765"}),(0,l.jsx)("circle",{cx:236.074,cy:195.735,r:1.486}),(0,l.jsx)("circle",{cx:244.392,cy:195.742,r:1.486}),(0,l.jsx)("circle",{cx:240.225,cy:199.735,r:1.486}),(0,l.jsx)("circle",{cx:236.074,cy:203.916,r:1.486}),(0,l.jsx)("circle",{cx:244.383,cy:203.905,r:1.486})]}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__f",width:"100%",height:"100%",y:-26.016}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__f",width:"100%",height:"100%",x:-20.799}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__f",width:"100%",height:"100%",x:20.745}),(0,l.jsx)("use",{xlinkHref:"#pt_inline_svg__f",width:"100%",height:"100%",y:25.784})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5696.ab2274ca.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js deleted file mode 100644 index bdb2140597..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5712.ffe8bf9d.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5712"],{27267(h,e,d){d.r(e),d.d(e,{default:()=>l});var s=d(74848);d(47867);let l=h=>(0,s.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,s.jsx)("path",{fillRule:"evenodd",d:"M0 478h640v2H0zm0-319h640v2H0zm0 160h640v2H0z"}),(0,s.jsx)("path",{d:"M0 0h2v480H0zm638 0h2v480h-2zM319 0h2v480h-2z"}),(0,s.jsx)("path",{fillRule:"evenodd",d:"M0 0h640v2H0zm0 239h640v2H0z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5712.ffe8bf9d.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js deleted file mode 100644 index 9d960bdbf0..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5731.15301fd9.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5731"],{47870(h,l,e){e.r(l),e.d(l,{default:()=>s});var i=e(74848);e(47867);let s=h=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,i.jsx)("desc",{children:"The United States of America flag, produced by Daniel McRae"}),(0,i.jsx)("defs",{children:(0,i.jsx)("clipPath",{id:"cv_inline_svg__a",children:(0,i.jsx)("path",{fillOpacity:.67,d:"M-123.43 0h682.67v512h-682.67z"})})}),(0,i.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#cv_inline_svg__a)",transform:"translate(115.72)scale(.94)",children:[(0,i.jsx)("path",{fill:"#fff",d:"M-123.43 233.05H723.1v205.97h-846.53z"}),(0,i.jsx)("path",{fill:"#081873",d:"M-122.76 0h845.95v256.64h-845.95zm.24 385.87H729.6V512h-852.12z"}),(0,i.jsx)("path",{fill:"#de3929",d:"M-122.52 302.55h845.95v39.65h-845.95z"}),(0,i.jsx)("path",{fill:"#ffce08",d:"m130.92 399.168 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m192.64-169.138 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M88.27 335.448l6.65 20.468h21.523l-17.412 12.65 6.652 20.47-17.41-12.65-17.412 12.65 6.65-20.47-17.41-12.65h21.52m235.289-26.458 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m-40.44-161.748 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m-64.43-45.218 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m-64.44 2.892 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65H121m-34.816 43.242 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522M198.74 420.408l6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522m82.17-41.708 6.65 20.468h21.522l-17.412 12.65 6.65 20.47-17.41-12.65-17.41 12.65 6.65-20.47-17.412-12.65h21.522"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5731.15301fd9.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js deleted file mode 100644 index 7cb955a503..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5753.371bde44.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5753"],{94208(s,e,l){l.r(e),l.d(e,{default:()=>i});var t=l(74848);l(47867);let i=s=>(0,t.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...s,children:[(0,t.jsxs)("defs",{children:[(0,t.jsxs)("linearGradient",{id:"vg_inline_svg__a",children:[(0,t.jsx)("stop",{offset:0,stopColor:"red"}),(0,t.jsx)("stop",{offset:1,stopColor:"#ff0"})]}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__c",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -94.683 29.21)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__d",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -94.666 30.155)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__e",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -97.986 31.014)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__f",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -94.743 31.932)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__g",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -94.75 32.835)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__h",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -94.767 33.751)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__i",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -98.011 33.736)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__j",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -97.981 32.837)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__k",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -97.942 31.918)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__l",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.8281 0 0 1.8726 602.82 148.17)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__m",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -97.976 30.11)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("linearGradient",{xlinkHref:"#vg_inline_svg__a",id:"vg_inline_svg__n",x1:103.08,x2:92.551,y1:111.28,y2:107.76,gradientTransform:"matrix(.64274 0 0 1.4534 -95.336 30.955)",gradientUnits:"userSpaceOnUse"}),(0,t.jsx)("clipPath",{id:"vg_inline_svg__b",clipPathUnits:"userSpaceOnUse",children:(0,t.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})]}),(0,t.jsxs)("g",{clipPath:"url(#vg_inline_svg__b)",children:[(0,t.jsx)("path",{fill:"#006",d:"M0 0h960v480H0z"}),(0,t.jsx)("path",{fill:"#006",fillRule:"evenodd",d:"M0 0h350.002v175H0z"}),(0,t.jsxs)("g",{strokeWidth:"1pt",children:[(0,t.jsx)("path",{fill:"#fff",d:"M0 0v19.566L310.871 175h39.13v-19.565L39.132.001zm350.002 0v19.565L39.13 175.001H0v-19.565L310.871 0z"}),(0,t.jsx)("path",{fill:"#fff",d:"M145.834 0v175h58.334V0zM0 58.334v58.333h350.002V58.334z"}),(0,t.jsx)("path",{fill:"#c00",d:"M0 70v35h350.002V70zM157.5 0v175h35V0zM0 175l116.667-58.333h26.087L26.087 175.001zM0 0l116.667 58.334H90.58L0 13.044zm207.248 58.334L323.915 0h26.087L233.334 58.334zM350.002 175l-116.668-58.334h26.087l90.58 45.29z"})]}),(0,t.jsx)("path",{fill:"#fff",fillRule:"evenodd",d:"m378.474 154.457 219.342-.814-.407 195.333s7.732 29.706-91.967 74.876c35.81-3.663 74.876-41.914 74.876-41.914s15.87-20.347 23.603-8.953c7.731 11.394 15.056 17.091 20.753 21.568 5.697 4.476 10.174 16.685 1.628 25.637s-21.974 10.173-25.637-.814c-5.697 2.849-40.693 45.17-112.31 47.205-72.84-1.221-112.72-47.612-112.72-47.612s-9.766 15.464-23.602 3.256c-13.428-15.87-3.255-26.044-3.255-26.044s11.394-6.511 14.65-10.988c5.29-6.104 6.917-14.243 15.87-14.243 10.58.814 14.65 9.36 14.65 9.36s36.624 38.659 76.096 43.542c-89.12-42.728-92.375-69.18-91.968-75.69l.407-193.7z"}),(0,t.jsx)("path",{fill:"#006129",fillRule:"evenodd",stroke:"#000",strokeWidth:1.7173345,d:"m383.76 159.743 209.16-1.22v188.003c.407 24.416-40.694 49.24-104.99 80.98-66.323-34.183-104.57-54.939-104.98-81.381l.813-186.372z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m408.912 366.902 12.346-18.133 12.407 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M423.739 360.115a2.452 2.452 0 1 1-4.904.002 2.452 2.452 0 0 1 4.904-.002z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m411.233 380.3 19.141.054s.3-2.484-2-3.994c10.026-1.378 7.422-10.222 15.818-10.723 1.63.25-4.386 3.76-4.386 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.883-2.631.25-1.755 8.145-2.883 7.018-7.895-1.88-4.136-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.096-4.528 4.484-4.528 4.484h-17.796s-.61 4.566 8.413 5.443c2.032 2.653 3.607 3.394 5.373 4.081-1.178.981-1.51 2.168-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m412.611 376.411 15.943-.054M405.31 367.008s1.275 7.457 7.161 9.223"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__c)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 316.617 141.369)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M423.542 349.227a2.256 2.256 0 1 1-4.512.001 2.256 2.256 0 0 1 4.512-.001z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m408.214 329.58 12.346-18.134 12.407 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M423.04 322.793a2.452 2.452 0 1 1-4.903.001 2.452 2.452 0 0 1 4.904-.001z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m410.535 342.977 19.141.055s.3-2.485-2-3.994c10.026-1.379 7.422-10.222 15.818-10.723 1.63.25-4.386 3.76-4.386 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.883-2.632.25-1.754 8.145-2.882 7.018-7.895-1.88-4.135-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.097-4.528 4.484-4.528 4.484h-17.796s-.61 4.566 8.413 5.443c2.032 2.653 3.607 3.395 5.372 4.081-1.177.982-1.508 2.169-1.503 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m411.913 339.089 15.943-.055M404.611 329.686s1.276 7.456 7.162 9.222"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__d)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 315.919 104.047)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M422.844 311.904a2.256 2.256 0 1 1-4.512.001 2.256 2.256 0 0 1 4.512-.001z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m539.38 295.652 12.347-18.134 12.406 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M554.207 288.865a2.452 2.452 0 1 1-4.904.002 2.452 2.452 0 0 1 4.904-.002z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m541.701 309.05 19.141.054s.3-2.484-1.999-3.994c10.026-1.379 7.421-10.222 15.818-10.723 1.629.25-4.387 3.76-4.387 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.883-2.632.25-1.754 8.146-2.882 7.018-7.895-1.88-4.135-12.908 2.757-12.908 2.757l-7.868-.043c-.49-.884-2.66-4.425-4.898-4.441-2.657.097-4.528 4.484-4.528 4.484H529.42s-.61 4.566 8.413 5.443c2.032 2.654 3.607 3.395 5.373 4.082-1.178.98-1.51 2.168-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m543.08 305.16 15.942-.053M535.777 295.758s1.276 7.456 7.163 9.222"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__e)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 447.085 70.119)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M554.01 277.976a2.256 2.256 0 1 1-4.512.002 2.256 2.256 0 0 1 4.512-.002z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m411.273 259.372 12.346-18.134 12.407 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M426.1 252.585a2.452 2.452 0 1 1-4.904.001 2.452 2.452 0 0 1 4.904-.001z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m413.594 272.769 19.141.054s.3-2.484-2-3.994c10.026-1.378 7.422-10.221 15.818-10.723 1.63.251-4.386 3.76-4.386 3.76s-5.062 3.572-2.757 5.389c1.83 1.442 2.632-.877 2.883-2.632.25-1.754 8.145-2.882 7.018-7.895-1.88-4.136-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.097-4.528 4.484-4.528 4.484h-17.796s-.61 4.566 8.413 5.443c2.032 2.653 3.606 3.394 5.372 4.081-1.177.981-1.508 2.168-1.503 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m414.972 268.88 15.943-.054M407.67 259.477s1.276 7.457 7.162 9.223"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__f)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 318.978 33.838)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M425.903 241.696a2.256 2.256 0 1 1-4.512.001 2.256 2.256 0 0 1 4.512-.001z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m411.55 223.713 12.347-18.134 12.406 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M426.377 216.926a2.452 2.452 0 1 1-4.904.001 2.452 2.452 0 0 1 4.904-.001z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m413.871 237.11 19.141.055s.3-2.485-1.999-3.994c10.026-1.38 7.421-10.222 15.818-10.723 1.629.25-4.387 3.76-4.387 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.883-2.632.25-1.754 8.146-2.882 7.018-7.895-1.88-4.135-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.097-4.528 4.484-4.528 4.484H401.59s-.61 4.566 8.413 5.443c2.032 2.653 3.607 3.395 5.373 4.081-1.178.982-1.51 2.169-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m415.25 233.222 15.942-.055M407.947 223.818s1.276 7.457 7.163 9.223"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__g)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 319.255 -1.82)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M426.18 206.037a2.256 2.256 0 1 1-4.512.001 2.256 2.256 0 0 1 4.512-.001z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m412.228 187.533 12.346-18.134 12.407 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M427.054 180.746a2.452 2.452 0 1 1-4.903.001 2.452 2.452 0 0 1 4.903-.001z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m414.549 200.93 19.14.054s.3-2.484-1.999-3.993c10.026-1.38 7.422-10.222 15.818-10.724 1.63.251-4.386 3.76-4.386 3.76s-5.062 3.573-2.757 5.389c1.83 1.442 2.632-.877 2.882-2.632.25-1.754 8.146-2.882 7.018-7.895-1.88-4.135-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.659-4.424-4.898-4.44-2.657.097-4.528 4.484-4.528 4.484h-17.795s-.61 4.566 8.413 5.443c2.031 2.653 3.606 3.395 5.372 4.081-1.177.982-1.509 2.169-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m415.927 197.042 15.943-.055M408.625 187.638s1.275 7.457 7.162 9.223"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__h)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 319.933 -38)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M426.857 169.857a2.256 2.256 0 1 1-4.511.001 2.256 2.256 0 0 1 4.511-.001z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m540.355 188.122 12.347-18.134 12.406 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M555.182 181.335a2.452 2.452 0 1 1-4.904.002 2.452 2.452 0 0 1 4.904-.002z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m542.676 201.52 19.141.054s.3-2.484-1.999-3.994c10.026-1.379 7.421-10.222 15.818-10.723 1.629.25-4.386 3.76-4.386 3.76s-5.063 3.572-2.757 5.388c1.83 1.442 2.631-.877 2.882-2.632.25-1.754 8.146-2.882 7.018-7.895-1.88-4.135-12.908 2.757-12.908 2.757l-7.868-.043c-.49-.884-2.659-4.425-4.898-4.441-2.657.097-4.528 4.484-4.528 4.484h-17.795s-.61 4.566 8.413 5.443c2.031 2.654 3.606 3.395 5.372 4.082-1.177.98-1.509 2.168-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m544.054 197.63 15.944-.053M536.753 188.228s1.275 7.456 7.162 9.222"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__i)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 448.06 -37.411)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M554.985 170.446a2.256 2.256 0 1 1-4.511.002 2.256 2.256 0 0 1 4.511-.002z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m539.185 223.638 12.347-18.134 12.406 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M554.012 216.85a2.452 2.452 0 1 1-4.904.002 2.452 2.452 0 0 1 4.904-.001z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m541.506 237.035 19.141.055s.3-2.485-1.999-3.994c10.026-1.379 7.421-10.222 15.818-10.723 1.629.25-4.387 3.76-4.387 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.883-2.632.25-1.754 8.146-2.882 7.018-7.895-1.88-4.135-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.097-4.528 4.484-4.528 4.484h-17.796s-.61 4.566 8.413 5.443c2.032 2.653 3.607 3.395 5.373 4.081-1.178.982-1.51 2.169-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m542.884 233.147 15.943-.055M535.582 223.744s1.276 7.456 7.163 9.222"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__j)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 446.89 -1.895)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M553.815 205.962a2.256 2.256 0 1 1-4.512.001 2.256 2.256 0 0 1 4.512-.001z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m537.615 259.94 12.346-18.134 12.407 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M552.441 253.152a2.452 2.452 0 1 1-4.903.002 2.452 2.452 0 0 1 4.903-.002z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m539.936 273.337 19.14.054s.3-2.484-1.999-3.994c10.026-1.379 7.421-10.222 15.818-10.723 1.63.25-4.386 3.76-4.386 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.882-2.631.25-1.755 8.146-2.883 7.018-7.895-1.88-4.136-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.659-4.424-4.898-4.44-2.657.096-4.528 4.484-4.528 4.484h-17.795s-.61 4.565 8.413 5.443c2.031 2.653 3.606 3.394 5.372 4.08-1.177.982-1.509 2.17-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m541.314 269.448 15.943-.054M534.012 260.045s1.275 7.457 7.162 9.223"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__k)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 445.32 34.406)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M552.244 242.263a2.256 2.256 0 1 1-4.511.002 2.256 2.256 0 0 1 4.511-.002z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.2882574999999998,d:"m539.183 367.27 12.346-18.132 12.407 18.17"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.804776,d:"M554.005 360.496a2.452 2.452 0 1 1-4.903.002 2.452 2.452 0 0 1 4.903-.002z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.804776,d:"m541.503 380.667 19.14.054s.3-2.484-1.999-3.994c10.026-1.378 7.422-10.222 15.818-10.723 1.629.251-4.386 3.76-4.386 3.76s-5.063 3.572-2.757 5.389c1.83 1.442 2.631-.877 2.882-2.632.25-1.754 8.146-2.882 7.018-7.895-1.88-4.136-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.097-4.528 4.484-4.528 4.484H529.22s-.61 4.566 8.413 5.443c2.031 2.653 3.606 3.394 5.372 4.081-1.177.981-1.509 2.168-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.804776,d:"m542.878 376.776 15.943-.054M535.58 367.384s1.275 7.456 7.162 9.222"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__l)",fillRule:"evenodd",stroke:"#000",strokeWidth:.784,d:"M814.5 330.27c.573-2.772 1.625-3.25 2.772-6.786.191-3.44-2.772-3.059-1.912-5.257 1.53-2.39.765-4.683-2.103-6.5.574 3.155-3.727 6.118-3.727 8.698s2.198 2.008 1.911 5.926c.192 2.294-.573 1.72-.764 3.92z",transform:"translate(-301.49 28.259)scale(1.0265)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.804776,d:"M553.81 349.605a2.256 2.256 0 1 1-4.511.001 2.256 2.256 0 0 1 4.511-.001z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m538.99 331.364 12.346-18.134 12.407 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M553.817 324.577a2.452 2.452 0 1 1-4.904.002 2.452 2.452 0 0 1 4.904-.002z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m541.311 344.761 19.141.055s.3-2.485-2-3.994c10.026-1.379 7.422-10.222 15.819-10.723 1.629.25-4.387 3.76-4.387 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.883-2.632.25-1.754 8.146-2.882 7.018-7.895-1.88-4.135-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.097-4.528 4.484-4.528 4.484H529.03s-.61 4.566 8.413 5.443c2.032 2.653 3.607 3.395 5.373 4.082-1.178.98-1.51 2.168-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m542.69 340.873 15.942-.055M535.387 331.47s1.276 7.456 7.163 9.222"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__m)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 446.695 105.83)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M553.62 313.688a2.256 2.256 0 1 1-4.512.002 2.256 2.256 0 0 1 4.512-.002z"}),(0,t.jsx)("path",{fill:"none",stroke:"#f7c600",strokeWidth:1.71797946,d:"m434.677 297.99 12.347-18.134 12.406 18.172"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.8050560000000001,d:"M449.504 291.202a2.452 2.452 0 1 1-4.904.002 2.452 2.452 0 0 1 4.904-.002z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"m436.998 311.387 19.141.054s.3-2.484-1.999-3.994c10.026-1.379 7.421-10.222 15.818-10.723 1.629.25-4.387 3.76-4.387 3.76s-5.062 3.572-2.757 5.388c1.83 1.442 2.632-.877 2.883-2.631.25-1.755 8.146-2.883 7.018-7.895-1.88-4.136-12.908 2.757-12.908 2.757l-7.868-.044c-.49-.883-2.66-4.424-4.898-4.44-2.657.096-4.528 4.484-4.528 4.484h-17.796s-.61 4.565 8.413 5.443c2.032 2.653 3.607 3.394 5.373 4.08-1.178.982-1.51 2.17-1.504 3.76z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:.80542686,d:"m438.376 307.498 15.943-.054M431.074 298.095s1.276 7.457 7.163 9.223"}),(0,t.jsx)("path",{fill:"url(#vg_inline_svg__n)",fillRule:"evenodd",stroke:"#000",strokeWidth:.609,d:"M66.32 170.54c.445-2.151 1.261-2.522 2.151-5.267.149-2.67-2.151-2.374-1.483-4.08 1.187-1.855.593-3.635-1.632-5.045.445 2.448-2.894 4.748-2.894 6.751s1.707 1.558 1.484 4.6c.148 1.78-.445 1.335-.593 3.041z",transform:"matrix(1.3225 0 0 1.3225 342.382 72.456)"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:.80542686,d:"M449.307 280.313a2.256 2.256 0 1 1-4.512.002 2.256 2.256 0 0 1 4.512-.002z"}),(0,t.jsxs)("g",{stroke:"#000",children:[(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",strokeWidth:.80542686,d:"M500.741 384.174s4.995 11.516 10.684 4.44 3.608-10.129 3.608-10.129l-12.765-6.937-3.747 7.909z"}),(0,t.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",strokeWidth:.80542686,d:"M511.705 382.653s.833.139 1.526-1.11-1.526-1.804-2.497-3.191l-1.11 2.22zM482.834 379.598l-11.239 6.105s-5.55 1.11-5.966 0 .139-2.081 3.052-2.22 10.823-7.354 10.823-7.354zM482.98 179.934s.277 2.636.416 4.023-2.22 4.302-2.359 4.163-1.249.139-1.11.971 1.804 1.11 1.804 1.11-.694 2.914 0 3.053-1.804 3.746 0 4.717 4.856 2.22 6.244 1.943 0 5.411 0 5.411l-3.885 8.325 21.367-2.22-4.44-7.076s-2.082-1.388-1.527-5.412c.555-4.023-.277-22.2-.277-22.2l-15.262-2.081zM479.091 211.569s-6.937 3.191-6.66 11.794c-1.803 8.325-2.775 16.65-2.775 16.65s-8.186 9.295-10.683 12.626c-2.498 3.33-6.244 10.128-7.632 11.932s-6.799 7.77-6.66 9.99-1.249 12.072 4.163 13.181c1.387.555 5.827-11.377 5.827-11.377s.278-5.134-1.248-6.105 3.33-4.301 3.33-4.301 9.296-6.8 11.377-8.464 7.77-8.048 7.77-8.048z"}),(0,t.jsx)("path",{fill:"#fff",fillRule:"evenodd",strokeWidth:.80542686,d:"M487 205.048s1.804 4.856 5.828 4.023c4.023-.832 8.741-4.579 8.741-4.579s3.746-.138 4.301.417 10.129 9.85 9.852 12.765c-.278 2.914-4.44 2.08-5.967 4.023s-4.024 6.8-3.33 10.407 2.775 8.325 2.498 10.129-1.804 2.358-1.804 3.33c0 .97 1.249 2.636 1.249 4.44s-1.665 4.44-1.388 6.243c.278 1.804.417 7.076.417 7.076l-.417 24.421s1.388.833 1.527 2.22c.138 1.388 9.435 41.763 9.435 41.763s-.417 1.25-1.388 1.11 3.746 6.244 3.885 8.048 4.856 15.957 4.718 17.9c-.14 1.942-.833 6.243-1.25 6.382-.415.139 3.053 8.88 2.498 10.267-.555 1.388-6.243 1.25-6.243 1.25l-1.527-.278s.14 1.803-.97 1.942-9.297-.416-9.297-.416-2.359 3.607-3.746 3.469c-1.388-.14-3.192-2.637-3.608-2.22s1.249 2.775.832 3.468c-.416.694-7.492 2.22-8.88-1.11-1.387-3.33.833-2.497.417-3.19-.417-.695-3.608-2.498-4.579-1.943s2.497 1.387 2.359 2.775c-.139 1.387-3.053 3.468-4.163 3.468s-3.746-5.133-7.631-4.578-6.383 1.526-6.383 1.526-4.578 1.942-6.521 1.526-2.775-1.942-2.775-2.775c0-.832 1.388-4.44 1.249-5.55s-1.249-2.22-1.249-3.885 3.191-7.354 3.191-7.354l-.138-25.53s-2.914 0-3.053-1.804 4.44-40.376 5.134-42.874 2.497-11.378 2.497-11.378-2.08.972-2.22 0 6.244-23.032 6.244-23.032 1.11-10.961 1.11-13.875-.555-6.937-.555-6.937-5.696-2.412-5.827-6.105c-.521-5.877 5.41-9.158 6.105-11.1l2.775-7.77s3.052-5.273 8.047-6.105z"}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",strokeWidth:.80542686,d:"M484.924 381.264s-13.458 7.077-15.401 7.632-3.192-2.359-1.249-2.914 4.995-.833 4.995-.833-4.579-3.607-4.44-3.746 6.244-2.358 6.383-2.358 1.942 3.607 3.19 3.33 4.857-3.053 4.857-3.053 1.943 2.22 1.665 1.942z"}),(0,t.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",strokeWidth:.80542686,d:"M503.889 385.14c1.273 1.64 1.77 4.487 4.684 2.822s-1.493-4.755-1.493-4.755z"}),(0,t.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",strokeWidth:.80542686,d:"M509.206 384.862s1.387 1.11 2.636-.139-2.498-3.885-2.498-3.885l-1.803 2.081z"}),(0,t.jsx)("path",{fill:"none",strokeWidth:.80542686,d:"M505.04 210.458s-12.35 7.909-12.072 10.684M507.817 211.845s-2.775 3.053-2.914 3.053M511.56 215.176s-6.105 4.995-5.134 8.186M482.702 209.765s-1.804 3.746-1.388 4.995 3.47 5.966 3.885 8.88c.417 2.914 0 4.995 0 4.995M479.515 216.702s.554 4.44 1.387 5.272c.833.833 3.053 4.58 3.33 6.105M478.404 235.155s3.607 1.804 6.937-5.134M490.743 225.166c-.139 0-2.636 6.799 1.804 9.296s7.77 2.22 9.712 1.527 4.024-1.943 4.024-1.943M488.812 233.491s.277 9.158 13.736 18.177M489.367 242.093s-.138 8.048 5.134 11.655M486.59 232.658s-4.024 11.933-7.215 13.182M485.334 241.4s-.139 8.603-1.249 11.655M482.98 255.136s2.775 3.469 5.827 3.191c3.053-.277 4.301-3.885 6.383-3.33 2.08.556 4.023 2.22 8.88 1.804M497.13 260.408s0 7.076 1.25 7.77.693 7.215.693 7.215M480.202 257.079s-.138 6.66-.971 9.019c-.832 2.358-2.497 6.382-2.22 9.851M471.738 279.839c.694-.278 3.053-2.359 3.053-2.359M476.036 279.005s-5.966 25.53-4.301 40.793M477.425 280.249s-3.053 19.147-1.665 22.755"}),(0,t.jsx)("path",{fill:"none",strokeWidth:.80542686,d:"M475.904 279.693c.139 0 11.655.833 11.655.833M489.222 279.005s3.191 1.666 7.631 1.388M487.833 288.303s-.555 32.745-1.387 39.96M504.907 295.788s3.608 28.722 5.69 31.358M497.964 299.399s2.22 25.392 3.469 27.612M466.474 335.888s4.301-1.388 8.186-5.55c4.44 5.966 11.24.278 11.24.278s10.544 7.215 15.261-.833c7.215 4.718 10.823-.694 10.823-.694s2.636 4.024 4.579 3.608M505.04 335.478s5.41 25.391 13.458 32.606"}),(0,t.jsx)("path",{fill:"none",strokeWidth:.80542686,d:"M477.147 332.833s.694 21.23 1.943 36.214M476.182 356.837s-.694 13.875-1.527 14.847M467.995 373.078s1.526 5.966 9.158.416 7.77 2.082 8.047 2.914 1.527 6.799 4.44 1.804M495.742 370.023s-1.249 12.348 9.713 3.33 12.765-.139 13.042 2.636"}),(0,t.jsx)("path",{fill:"#9c5100",fillRule:"evenodd",strokeWidth:.80542686,d:"M482.556 179.1s3.053.417 4.718-.554 3.608-1.388 4.995.555 2.359 1.803 2.359 1.803-2.082 5.134 0 5.689 3.052.555 3.191 1.249-1.804 2.22-1.249 2.913c.555.694 1.527 1.527 1.665 2.082s-1.248 2.913-.832 3.469c.416.555 1.665 2.775 2.497 2.775.833 0 .278 3.468 2.775 2.636s2.36-3.053 2.36-3.053 2.635-.416 3.33-2.775c.693-2.358 2.358-2.913 2.358-2.913s3.33-1.804-1.11-4.58c0-19.425-12.765-17.343-12.765-17.343s-1.527-3.469-4.024-3.053c-2.498.417-2.636 3.33-4.44 3.053s-2.22-1.526-2.359-1.387c-.139.138-1.665 2.913-1.665 3.607s-4.856-.971-4.44 2.636 2.775 3.469 2.636 3.192z"}),(0,t.jsx)("path",{fill:"none",strokeWidth:.80542686,d:"M495.888 174.383s-.972 6.105 5.55 5.55c-.833 3.33 1.665 4.44 1.665 4.44M507.95 188.119c.138 0 2.913 1.804-.14 4.024M498.52 192.975s1.387 1.665 2.913 1.25c1.526-.417 4.024 1.525 4.024 1.525s2.081.694 2.359.278M490.055 198.248s4.718 1.804 7.77-5.688M481.313 190.34l2.775.138"}),(0,t.jsx)("path",{fill:"none",strokeLinejoin:"round",strokeWidth:.80542686,d:"M481.736 193.114h2.498l-2.22.972"}),(0,t.jsx)("path",{fill:"none",strokeLinejoin:"round",strokeWidth:1.4495038400000002,d:"M485.201 185.344c.417 0 1.943-.555 2.22-.138.278.416-1.665.693-2.22.138z"}),(0,t.jsx)("path",{fill:"#ffc6b5",fillRule:"evenodd",strokeWidth:.80542686,d:"M515.17 218.31c.139 0 4.58 13.736 5.134 17.205s2.359 17.344 1.665 19.287-7.77 11.238-8.603 13.597c-.832 2.358-5.827 11.377-5.827 11.377s-1.249 8.88-1.804 9.297 1.433 2.596 1.249 3.33c-.275.826-4.024 4.717-5.689 4.301s-4.301-2.359-4.44-4.163.139-7.77 1.388-9.296 7.77-16.927 8.186-17.9c.416-.97 5.966-13.042 6.105-15.122.139-2.082-1.727-6.894-3.689-8.66-4.367-12.853-2.65-20.604 6.325-23.253z"}),(0,t.jsx)("path",{fill:"none",strokeWidth:.80542686,d:"m450.524 277.842.218 6.08M444.827 277.392s3.898 6.52 3.573 9.994"}),(0,t.jsx)("path",{fill:"none",strokeLinejoin:"round",strokeWidth:.80542686,d:"M497.078 291.014s2.915-.306 2.823 4.56c1.861-6.045 5.646-6.189 5.646-6.189"})]}),(0,t.jsx)("path",{fill:"#f7c600",fillRule:"evenodd",stroke:"#000",strokeWidth:1.7173345,d:"M487.119 429.949c58.598-1.628 96.443-43.949 96.036-44.356s7.732-11.8 14.243-10.173c6.51 1.627 15.87 20.753 27.264 24.822 5.697 8.953-1.627 17.092-4.069 18.72-2.442 1.627-13.429 6.104-15.057-.407-1.627-6.511-4.883-5.29-4.883-5.29s-52.088 50.867-112.31 48.832c-62.257.41-113.53-48.83-113.53-48.83l-4.477 4.883s-4.883 5.29-7.324 4.883c-2.442-.407-13.023-7.325-13.837-14.243-.813-6.918 6.511-11.394 6.511-11.394s17.906-13.836 19.94-21.16c4.07-4.07 11.8 2.848 11.8 2.848s47.205 54.123 99.7 50.868z"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.7173345,d:"M354.464 398.476s4.842-1.29 6.618.727c1.775 2.017 13.961 13.961 13.961 13.961"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.7173345,d:"m365.52 404.122-4.843 3.632s12.186 2.42 9.442 10.41M620.297 398.066s-2.421-1.291-6.214 1.533c-3.793 2.825-13.397 13.558-13.397 13.558"}),(0,t.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:1.7173345,d:"m609.406 403.804 5.245 4.035s-10.975.726-8.554 11.137"}),(0,t.jsx)("path",{d:"m416.495 411.39-.352.495q-1.104-.545-2.519-.203-1.038.27-3.912 1.95l-16.125 9.4-.44-.314 4.061-18.85q.736-3.408.673-4.14-.05-.721-1.02-1.595l.352-.495 8.692 6.199-.353.495-.294-.21q-1.178-.84-1.815-.85-.45-.02-.727.369-.171.24-.303.65-.122.398-.527 2.268l-2.572 11.782 9.315-5.481q1.68-1 2.18-1.39t.749-.737q.285-.402.291-.862.005-.46-.295-.916-.412-.637-1.362-1.314l.353-.495zm5.79 28.018-.29.533-10.218-5.587.292-.533.648.354q.85.465 1.535.446.484.003.955-.376.347-.26 1.151-1.73l7.03-12.853q.819-1.498.865-1.96t-.293-1.003q-.318-.548-1.14-.997l-.648-.355.291-.533 10.217 5.587-.292.533-.648-.354q-.85-.466-1.534-.446-.486-.004-.97.368-.347.26-1.15 1.729l-7.03 12.854q-.82 1.498-.866 1.96-.033.47.286 1.017.34.543 1.161.991zm37.323-8.754-2.634 7.395-.572-.204q.044-3.401-1.468-5.718-1.512-2.316-3.971-3.193-2.352-.838-4.388-.063-2.033.758-3.525 2.894a19.4 19.4 0 0 0-2.38 4.627q-1.074 3.017-1.173 5.544c-.099 2.527.301 3.072 1.1 4.158q1.213 1.635 3.395 2.412.758.27 1.602.397.865.116 1.81.104l1.555-4.363q.44-1.238.397-1.654-.037-.432-.475-.919-.42-.48-1.179-.751l-.542-.193.204-.573 10.196 3.632-.204.572q-1.188-.336-1.74-.253-.531.072-.977.54-.244.246-.652 1.39l-1.554 4.363q-2.33.18-4.672-.147a22.8 22.8 0 0 1-4.668-1.14q-2.985-1.064-4.68-2.573a13.6 13.6 0 0 1-2.72-3.375q-1.027-1.865-1.289-3.824-.322-2.52.62-5.167 1.687-4.734 6.176-6.814t9.533-.283q1.562.557 2.728 1.25.636.367 1.943 1.495 1.327 1.117 1.606 1.217.434.154.915-.023.488-.192 1.11-.964zm15.724 25.238-.09.601-11.514-1.744.09-.6.732.11q.958.144 1.594-.107.456-.164.768-.682.236-.361.488-2.019l2.194-14.485q.256-1.688.142-2.138-.116-.45-.62-.841-.487-.406-1.413-.546l-.73-.11.09-.602 11.514 1.744-.091.601-.731-.11q-.958-.146-1.594.107-.457.163-.784.678-.238.363-.489 2.02l-2.194 14.484q-.256 1.69-.141 2.138.13.452.617.858.505.393 1.431.532zm29.886-7.26-.439 7.851-19.748 1.008-.031-.607.738-.038q.967-.05 1.54-.424.415-.251.616-.82.16-.404.075-2.077l-.746-14.63q-.087-1.706-.29-2.123t-.775-.7q-.558-.301-1.493-.254l-.738.038-.031-.607 11.859-.605.03.607-.967.05q-.968.049-1.54.423-.415.252-.633.822-.16.403-.075 2.076l.723 14.172q.087 1.705.308 2.171.22.45.806.65.418.126 1.993.046l1.853-.094q1.772-.09 2.92-.774 1.15-.684 1.934-2.072.8-1.39 1.438-4.054l.673-.034m21.602-3.748-7.538 2.252-.276 2.345q-.13 1.17.072 1.847.267.897 1.118 1.106.501.124 2.206-.248l.174.583-7.097 2.12-.174-.582q1.097-.517 1.606-1.509.505-1.008.862-3.771l2.546-19.308.299-.089 12.922 15.2q1.845 2.158 2.746 2.592.68.327 1.68.115l.174.582-10.324 3.084-.174-.582.425-.127q1.244-.372 1.643-.868.271-.356.13-.828a2 2 0 0 0-.268-.554q-.074-.132-.825-1.039zm-.883-1.006-5.375-6.399-1.077 8.327zm28.46-29.002 2.855 5.309-.521.28q-1.45-1.59-2.443-2.08-1-.508-2.24-.456-.69.034-2.064.774l-1.46.785 8.135 15.132q.808 1.504 1.17 1.795.376.283 1.009.316.64.01 1.478-.441l.651-.35.288.535L550.985 442l-.288-.535.651-.35q.854-.46 1.21-1.043.269-.404.22-1.013-.027-.433-.82-1.908l-8.135-15.132-1.418.762q-1.981 1.065-2.428 2.387-.628 1.848.206 4.197l-.55.296-2.854-5.31zm13.359-7.92 5.46 7.237.353-.267q1.692-1.275 1.651-2.911c-.041-1.636-.492-2.38-1.394-3.866l.499-.376 7.022 9.31-.498.375q-1.305-1.402-2.548-1.986-1.23-.595-2.146-.418-.927.163-2.198 1.123l3.778 5.008q1.108 1.47 1.473 1.708.378.229.878.181.499-.047 1.26-.62l1.061-.802q2.492-1.88 3.116-4.16.638-2.292-.487-5.146l.485-.366 3.463 6.254-15.368 11.591-.366-.485.59-.445q.774-.584 1.038-1.215.203-.44.05-1.025-.093-.424-1.102-1.76l-8.822-11.697q-.91-1.206-1.183-1.432a1.57 1.57 0 0 0-1.02-.342q-.774.008-1.64.662l-.59.445-.366-.485 14.882-11.226 3.966 5.258-.498.376q-1.834-1.641-3.162-1.956-1.316-.325-2.87.231-.913.318-2.932 1.841l-1.836 1.385"}),(0,t.jsx)("path",{fill:"none",d:"M380.537 413.063c72.788 59.04 144.131 60.122 213.933 0"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5753.371bde44.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js deleted file mode 100644 index feaa1841b5..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5804.1be86954.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5804"],{89303(t,s,r){r.r(s),r.d(s,{default:()=>e});var l=r(74848);r(47867);let e=t=>(0,l.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...t,children:[(0,l.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,l.jsx)("path",{fill:"#ffe800",d:"M0 0h640v480H0z"}),(0,l.jsx)("path",{fill:"#00148e",d:"M0 240h640v240H0z"}),(0,l.jsx)("path",{fill:"#da0010",d:"M0 360h640v120H0z"})]}),(0,l.jsxs)("g",{fillRule:"evenodd",children:[(0,l.jsx)("path",{d:"m269.55 290.834-72.424 76.485-1.277-1.644 72.422-76.485 1.277 1.644zm50.452 12.5-94.777 99.908-1.662-1.572 94.777-99.91z"}),(0,l.jsx)("path",{fill:"gray",stroke:"#000",strokeWidth:4.104,d:"M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235z",transform:"matrix(-.07 -.07 -.1 .1 265.03 429.55)"}),(0,l.jsx)("path",{fill:"gray",stroke:"#000",strokeWidth:4.104,d:"M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235z",transform:"matrix(-.07 -.07 -.1 .1 240.59 390.52)"})]}),(0,l.jsx)("path",{fill:"#ffdf00",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M301.18 272.84s-17.716 336.61 53.15 336.61 106.3-35.433 106.3-35.433l-.86-185.03-158.59-116.15z",transform:"matrix(.45 0 0 .64 72.37 -59.76)"}),(0,l.jsx)("path",{fill:"#0000c4",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M344.46 304.2c0 17.717-7.846 269.82 27.587 269.82s88.583-17.717 88.583-17.717l-.86-167.31-115.31-84.79z",transform:"matrix(.45 0 0 .64 72.37 -59.76)"}),(0,l.jsx)("path",{fill:"#e10000",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M367.52 321.16c0 17.717 4.525 217.42 39.958 217.42h53.15l-.86-149.59-92.248-67.833z",transform:"matrix(.45 0 0 .64 72.37 -59.76)"}),(0,l.jsx)("path",{fillRule:"evenodd",d:"m206.202 116.02 72.422 76.485 1.277-1.642-72.422-76.485-1.276 1.642z"}),(0,l.jsx)("path",{fill:"#ffdf00",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M301.18 272.84s-35.433 336.61 70.866 336.61c88.583 0 88.583-53.15 106.3-53.15l-17.72-124.02-159.45-159.44z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsxs)("g",{stroke:"#000",children:[(0,l.jsx)("path",{fill:"none",strokeWidth:2.305,d:"M269.59 155.24c1.133 0 28.318-94.016 118.94-147.25",transform:"matrix(.4 -.03 -.05 .35 135.14 147.37)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.14 -.22 .3 .14 175.87 257.36)"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:"1pt",d:"M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z",transform:"matrix(.18 -.1 .1 .17 177.61 256.68)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.18 .12 -.13 .33 181 96.41)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.17 -.03 -.03 .33 179.31 159.26)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.06 .25 -.17 .2 227.98 45.45)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.2 -.2 .2 .24 150.27 241.08)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.22 -.22 .25 .2 135.57 282.11)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.26 .1 -.2 .32 130.78 147.66)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.15 .2 -.32 .22 178.5 103.35)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.08 .1 -.14 .16 250.68 102.64)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.1 0 -.08 .17 238.09 136.41)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(0 .14 -.14 .08 287.38 81.13)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.07 .1 -.25 .15 220.69 115.6)"}),(0,l.jsx)("path",{fill:"#005b00",fillRule:"evenodd",strokeWidth:"1pt",d:"M421.37-20.327c0 18.133-4.567 31.716-11.328 45.31-5.627-18.125-9.06-27.177-9.06-45.31s6.83-35.114 12.458-48.707c2.23 12.46 7.93 30.574 7.93 48.707z",transform:"matrix(.13 .22 -.33 .2 207.03 70.11)"}),(0,l.jsx)("path",{fill:"none",strokeWidth:2.37,d:"M269.59 155.24c1.133 0 28.318-94.016 118.94-147.25",transform:"matrix(.35 -.2 .14 .28 111.76 227.82)"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:"1pt",d:"M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z",transform:"matrix(.18 -.1 .1 .17 200.34 224.62)"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:"1pt",d:"M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z",transform:"matrix(.18 -.1 .1 .17 211.12 218.26)"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:"1pt",d:"M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z",transform:"matrix(.2 -.1 .07 .13 166.81 232.7)"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:"1pt",d:"M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z",transform:"matrix(.2 -.1 .07 .13 169.93 231.34)"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:"1pt",d:"M454.22-169.28c0 4.066-3.804 7.363-8.495 7.363s-8.496-3.297-8.496-7.363 3.803-7.363 8.495-7.363 8.495 3.297 8.495 7.363z",transform:"matrix(.2 -.1 .07 .13 168.14 234.25)"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:".22361pt",d:"M252.646 167.252c.407.813-.024 1.853-.963 2.322s-2.029.19-2.435-.623.024-1.853.963-2.322 2.028-.19 2.435.623z"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:".22361pt",d:"M254.936 164.872c.407.813-.024 1.853-.963 2.322s-2.029.19-2.435-.623.024-1.853.963-2.322 2.028-.19 2.435.623z"}),(0,l.jsx)("path",{fill:"red",fillRule:"evenodd",strokeWidth:".22361pt",d:"M255.516 166.022c.407.813-.024 1.853-.963 2.322s-2.029.19-2.435-.623.024-1.853.963-2.322 2.028-.19 2.435.623z"})]}),(0,l.jsx)("path",{fill:"#0000c4",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M336.61 308.27c0 17.717-35.433 212.6 53.15 265.75 35.433 17.716 88.582-17.717 88.582 0l-17.71-141.74-124.02-124.01z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{fill:"#e10000",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M372.05 343.7c0 17.717-17.716 159.45 35.433 194.88 35.433 35.433 124.02 25.822 124.02 25.822l-70.87-132.12-88.58-88.58z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{fillRule:"evenodd",d:"m183.85 158.08 94.775 99.91 1.662-1.573-94.776-99.91-1.66 1.574z"}),(0,l.jsx)("path",{fill:"#cececc",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"m460.63 184.25 17.716 35.433V237.4c-.865-1.305 0 17.716-17.716 17.716s-17.717-35.433-17.717-35.433-17.716 35.433-17.716 70.866 17.716 53.15 17.716 53.15-2.61-36.704 17.717-35.434c20.328 1.27 17.716 17.716 17.716 17.716v35.433h17.717v-141.73l17.717-35.433-27.136-53.15-26.014 53.15z",transform:"matrix(.14 -.14 .1 .1 86.35 192.15)"}),(0,l.jsx)("path",{fill:"#cececc",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"m557.82 95.67-26.323 70.865 17.717 53.15-35.433-17.716 35.434 53.148v35.433h17.716v-35.43l35.433-53.15-35.433 17.717 17.717-53.15z",transform:"matrix(.1 -.16 .14 .1 113.99 183.83)"}),(0,l.jsx)("path",{fill:"#e10000",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746s-4.372-1.678-4.372-3.746 1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c0 35.8 20.917 187.81 22.582 191.56.14 4.44-4.718 6.382-7.077.832-6.55-17.342-20.743-159.91-21.332-193.22-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z",transform:"matrix(.4 0 0 .3 43.75 69.8)"}),(0,l.jsx)("path",{fill:"#0000c4",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746s-4.372-1.678-4.372-3.746 1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z",transform:"matrix(.38 .1 -.15 .3 76.05 38.16)"}),(0,l.jsx)("path",{fill:"#e10000",fillRule:"evenodd",stroke:"#000",strokeWidth:".5pt",d:"M186.655 151.54c0 1.034-.979 1.873-2.185 1.873-1.207 0-2.186-.839-2.186-1.873s.98-1.873 2.185-1.873c1.207 0 2.186.84 2.186 1.873zm-3.122 3.955c0 17.9 10.458 93.905 11.291 95.78.07 2.22-2.359 3.191-3.539.416-3.275-8.671-10.371-79.955-10.666-96.61-.122-6.867 1.88-7.4 4.163-7.285 1.88.105 4.163 1.863 4.163 3.955 0 2.498-2.915 4.37-5.412 3.746z"}),(0,l.jsx)("path",{fill:"#0000c4",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746s-4.372-1.678-4.372-3.746 1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z",transform:"matrix(.48 .15 -.2 .48 16.67 31.58)"}),(0,l.jsxs)("g",{fillRule:"evenodd",children:[(0,l.jsx)("path",{d:"m370.454 290.834 72.423 76.485 1.277-1.644-72.423-76.485zM320 303.334l94.778 99.908 1.662-1.572-94.777-99.91-1.662 1.574z"}),(0,l.jsx)("path",{fill:"gray",stroke:"#000",strokeWidth:4.104,d:"M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235z",transform:"matrix(.07 -.07 .1 .1 374.97 429.55)"}),(0,l.jsx)("path",{fill:"gray",stroke:"#000",strokeWidth:4.104,d:"M478.35 60.236v88.583l17.717 88.582 17.717-88.583V60.235z",transform:"matrix(.07 -.07 .1 .1 399.41 390.52)"})]}),(0,l.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,l.jsx)("path",{fill:"#ffdf00",stroke:"#000",d:"M301.18 272.84s-17.716 336.61 53.15 336.61 106.3-35.433 106.3-35.433l-.86-185.03-158.59-116.15z",transform:"matrix(-.45 0 0 .64 567.65 -59.76)"}),(0,l.jsx)("path",{fill:"#0000c4",stroke:"#000",d:"M344.46 304.2c0 17.717-7.846 269.82 27.587 269.82s88.583-17.717 88.583-17.717l-.86-167.31-115.31-84.79z",transform:"matrix(-.45 0 0 .64 567.65 -59.76)"}),(0,l.jsx)("path",{fill:"#e10000",stroke:"#000",d:"M367.52 321.16c0 17.717 4.525 217.42 39.958 217.42h53.15l-.86-149.59-92.248-67.833z",transform:"matrix(-.45 0 0 .64 567.65 -59.76)"}),(0,l.jsx)("path",{d:"m433.814 116.02-72.423 76.485-1.276-1.642 72.423-76.485z"}),(0,l.jsxs)("g",{fill:"#005b00",stroke:"#000",children:[(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.16 -.07 .08 .35 309.51 210.98)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.2 -.05 .07 .4 291.49 182.57)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.23 .14 -.03 .4 296.48 69.41)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.25 .03 .02 .44 274.4 114.91)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.18 .17 -.04 .35 329.99 66.98)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.23 0 .03 .4 280.58 141.86)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.2 -.07 .07 .38 290.14 196.84)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.2 -.03 .05 .4 292.69 166.78)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.22 .15 -.05 .38 305.08 65.51)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.24 .05 0 .44 278.88 97.67)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.17 .17 -.06 .33 338.96 70)"}),(0,l.jsx)("path",{d:"M428.17-16.928s81.556 90.618 111.01 154.05c29.45 63.432 54.37 156.32 54.37 156.32s2.266-86.086-36.246-163.11c-52.1-97.42-131.4-142.73-129.13-147.26z",transform:"matrix(.24 .02 0 .4 276.43 128.02)"})]}),(0,l.jsx)("path",{fill:"#ffdf00",stroke:"#000",d:"M301.18 272.84s-35.433 336.61 70.866 336.61c88.583 0 88.583-53.15 106.3-53.15l-17.72-124.02-159.45-159.44z",transform:"matrix(-.58 0 0 .62 630.39 -10.18)"}),(0,l.jsx)("path",{fill:"#0000c4",stroke:"#000",d:"M336.61 308.27c0 17.717-35.433 212.6 53.15 265.75 35.433 17.716 88.582-17.717 88.582 0l-17.71-141.74-124.02-124.01z",transform:"matrix(-.58 0 0 .62 630.39 -10.18)"}),(0,l.jsx)("path",{fill:"#e10000",stroke:"#000",d:"M372.05 343.7c0 17.717-17.716 159.45 35.433 194.88 35.433 35.433 124.02 25.822 124.02 25.822l-70.87-132.12-88.58-88.58z",transform:"matrix(-.58 0 0 .62 630.39 -10.18)"}),(0,l.jsx)("path",{d:"m456.172 158.08-94.777 99.91-1.66-1.573 94.775-99.91 1.662 1.574z"}),(0,l.jsx)("path",{fill:"#cececc",stroke:"#000",d:"m460.63 184.25 17.716 35.433V237.4c-.865-1.305 0 17.716-17.716 17.716s-17.717-35.433-17.717-35.433-17.716 35.433-17.716 70.866 17.716 53.15 17.716 53.15-2.61-36.704 17.717-35.434c20.328 1.27 17.716 17.716 17.716 17.716v35.433h17.717v-141.73l17.717-35.433-27.136-53.15-26.014 53.15z",transform:"matrix(-.14 -.14 -.1 .1 553.66 192.15)"}),(0,l.jsx)("path",{fill:"#cececc",stroke:"#000",d:"m557.82 95.67-26.323 70.865 17.717 53.15-35.433-17.716 35.434 53.148v35.433h17.716v-35.43l35.433-53.15-35.433 17.717 17.717-53.15z",transform:"matrix(-.1 -.16 -.14 .1 526.03 183.83)"}),(0,l.jsx)("path",{fill:"#e10000",stroke:"#000",d:"M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746s-4.372-1.678-4.372-3.746 1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c0 35.8 20.917 187.81 22.582 191.56.14 4.44-4.718 6.382-7.077.832-6.55-17.342-20.743-159.91-21.332-193.22-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z",transform:"matrix(-.4 0 0 .3 596.29 69.8)"}),(0,l.jsx)("path",{fill:"#0000c4",stroke:"#000",d:"M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746s-4.372-1.678-4.372-3.746 1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z",transform:"matrix(-.38 .1 .15 .3 563.96 38.16)"}),(0,l.jsx)("path",{fill:"#e10000",stroke:"#000",strokeWidth:".5pt",d:"M453.345 151.54c0 1.034.979 1.873 2.185 1.873 1.207 0 2.186-.839 2.186-1.873s-.98-1.873-2.185-1.873c-1.207 0-2.186.84-2.186 1.873zm3.122 3.955c0 17.9-10.458 93.905-11.291 95.78-.07 2.22 2.359 3.191 3.539.416 3.275-8.671 10.371-79.955 10.666-96.61.122-6.867-1.88-7.4-4.163-7.285-1.88.105-4.163 1.863-4.163 3.955 0 2.498 2.915 4.37 5.412 3.746z"}),(0,l.jsx)("path",{fill:"#0000c4",stroke:"#000",d:"M422.53 136.96c0 2.068-1.958 3.746-4.37 3.746s-4.372-1.678-4.372-3.746 1.96-3.747 4.37-3.747c2.414 0 4.372 1.68 4.372 3.747zm-6.244 7.91c31.488 61.414 48.722 166.77 50.387 170.52.14 4.44-4.718 6.382-7.077.832-2.48-3.315-12.667-100.18-49.138-172.18-.244-13.734 3.76-14.8 8.326-14.57 3.76.21 8.325 3.725 8.325 7.91 0 4.995-5.83 8.74-10.824 7.492z",transform:"matrix(-.48 .15 .2 .48 623.32 31.58)"})]}),(0,l.jsxs)("g",{fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",children:[(0,l.jsx)("path",{fill:"#e10000",d:"M478.35 698.03c17.717 10.652 37.09 8.268 53.15 0V556.3h-35.433c17.717 53.15 17.717 106.3-17.717 141.73z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{fill:"#0000c4",d:"M513.78 609.45c0 88.582-42.466 108.27-42.466 125.98 17.716 0 29.465-8.248 42.466-19.685 17.716-17.717 19.426-107.68 17.716-106.3H513.78z",transform:"matrix(.35 0 0 .7 123.48 -89.93)"}),(0,l.jsx)("path",{fill:"#0000c4",d:"M478.35 609.45c-.81 51.77-44.794 99.64-36.497 110.24 9.474 9.475 36.497-21.654 71.93-3.937 17.717-17.717 19.427-107.68 17.717-106.3h-53.15z",transform:"matrix(.35 0 0 .7 123.48 -89.93)"}),(0,l.jsx)("path",{fill:"#ffdf00",d:"M513.78 609.45c0 88.582-40.696 94.47-40.696 118.09 17.717 0 40.603-12.912 40.696-11.79 17.716-17.718 19.426-107.68 17.716-106.3z",transform:"matrix(.35 0 0 .46 112.52 51)"}),(0,l.jsx)("path",{fill:"#ffdf00",d:"M478.35 609.45c-.81 51.77-43.73 95.702-35.433 106.3 9.474 9.475 35.433-17.717 70.867 0 17.716-17.717 19.426-107.68 17.716-106.3z",transform:"matrix(.35 0 0 .46 112.52 51)"}),(0,l.jsx)("path",{fill:"#e10000",d:"M478.35 698.03c17.717 10.652 37.09 8.252 53.15-.015v-141.72h-35.433c17.717 53.15 17.717 106.3-17.717 141.73z",transform:"matrix(-.58 0 0 .62 630.39 -10.17)"}),(0,l.jsx)("path",{fill:"#0000c4",d:"M513.78 609.45c0 88.582-42.466 108.27-42.466 125.98 17.716 0 29.465-8.248 42.466-19.685 17.716-17.717 19.426-107.68 17.716-106.3H513.78z",transform:"matrix(-.35 0 0 .7 516.53 -89.92)"}),(0,l.jsx)("path",{fill:"#0000c4",d:"M478.35 609.45c-.81 51.77-44.794 99.64-36.497 110.24 9.474 9.475 36.497-21.654 71.93-3.937 17.717-17.717 19.427-107.68 17.717-106.3h-53.15z",transform:"matrix(-.35 0 0 .7 516.53 -89.92)"}),(0,l.jsx)("path",{fill:"#ffdf00",d:"M513.78 609.45c0 88.582-40.696 94.47-40.696 118.09 17.717 0 40.603-12.912 40.696-11.79 17.716-17.718 19.426-107.68 17.716-106.3z",transform:"matrix(-.35 0 0 .46 527.51 51.01)"}),(0,l.jsx)("path",{fill:"#ffdf00",d:"M478.35 609.45c-.81 51.77-43.73 95.702-35.433 106.3 9.474 9.475 35.433-17.717 70.867 0 17.716-17.717 19.426-107.68 17.716-106.3z",transform:"matrix(-.35 0 0 .46 527.51 51)"})]}),(0,l.jsxs)("g",{fillRule:"evenodd",stroke:"#000",children:[(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:4.467,d:"m198.56 77.952-89.676 35.434 89.676 35.434 44.837-17.717 22.42 17.717 22.418 35.433 22.42-35.433 22.418-17.717 1201.9-.002V95.668l-1201.9.002-22.42-17.718c0-17.716 4.704-35.433 22.42-35.433s54.242-.003 89.675-.003c0-17.716-44.838-53.15-134.51-53.15-89.675 0-134.51 35.434-134.51 53.15l89.675.002c17.716 0 22.42 17.716 22.42 35.432l-22.44 17.717-44.84-17.717z",transform:"matrix(.12 0 0 .22 217.8 324.36)"}),(0,l.jsx)("path",{fill:"#b74d00",strokeWidth:1.838,d:"M204.35 95.67h336.61v17.718H204.35z",transform:"matrix(.28 0 0 .27 216.06 334.6)"}),(0,l.jsx)("path",{fill:"#b74d00",strokeWidth:1.838,d:"M204.35 77.955h336.61v17.717H204.35zm0-17.718h336.61v17.717H204.35z",transform:"matrix(.28 0 0 .27 216.06 334.6)"}),(0,l.jsx)("path",{fill:"#b74d00",strokeWidth:1.838,d:"M204.35 42.522h336.61V60.24H204.35zm0-17.717h336.61v17.717H204.35z",transform:"matrix(.28 0 0 .27 216.06 334.6)"}),(0,l.jsx)("path",{fill:"#b74d00",strokeWidth:1.838,d:"M204.35 7.09h336.61v17.716H204.35zm0-17.718h336.61V7.09H204.35z",transform:"matrix(.28 0 0 .27 216.06 334.6)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.255,d:"m423.23 60.236 137.8 124.02h19.686l-137.8-124.02z",transform:"matrix(.25 0 0 .27 171.89 315.18)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.255,d:"m423.23 60.236 137.8 124.02h19.686l-137.8-124.02z",transform:"matrix(.25 0 0 -.27 171.89 382.19)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.087,d:"M425.2 60.236v124.02h17.716V60.236z",transform:"matrix(.28 0 0 .27 159.56 315.18)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.255,d:"m423.23 60.236 137.8 124.02h19.686l-137.8-124.02z",transform:"matrix(.25 0 0 .27 216.23 315.18)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.255,d:"m423.23 60.236 137.8 124.02h19.686l-137.8-124.02z",transform:"matrix(.25 0 0 -.27 216.23 382.19)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.087,d:"M425.2 60.236v124.02h17.716V60.236z",transform:"matrix(.28 0 0 .27 238.4 315.18)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.087,d:"M425.2 60.236v124.02h17.716V60.236z",transform:"matrix(.28 0 0 .27 203.91 315.18)"}),(0,l.jsx)("path",{fill:"#908f8a",strokeWidth:3.087,d:"M425.2 60.236v124.02h17.716V60.236z",transform:"matrix(.28 0 0 .27 194.05 315.18)"})]}),(0,l.jsxs)("g",{fill:"#ffdf00",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",children:[(0,l.jsx)("path",{d:"M655.51 396.85c0 88.016-55.56 159.45-124.02 159.45-68.456 0-124.02-71.433-124.02-159.45 0-88.015 55.56-159.45 124.02-159.45 68.457 0 124.02 71.433 124.02 159.45zm-17.717 0c0 78.237-47.622 141.73-106.3 141.73s-106.3-63.495-106.3-141.73c0-78.236 47.622-141.73 106.3-141.73s106.3 63.497 106.3 141.73z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{d:"M579.75 249.94c-14.836-8.072-31.144-12.537-48.258-12.537s-33.422 4.465-48.257 12.537l6.893 16.323c12.716-7.175 26.695-11.144 41.364-11.144s28.648 3.968 41.364 11.143l6.894-16.323z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{d:"M579.75 249.94c-14.836-8.072-31.144-12.537-48.258-12.537s-33.422 4.465-48.257 12.537l6.893 16.323c12.716-7.175 26.695-11.144 41.364-11.144s28.648 3.968 41.364 11.143l6.894-16.323z",transform:"matrix(.58 0 0 -.62 9.75 479.31)"})]}),(0,l.jsx)("path",{fill:"#a7cfff",fillRule:"evenodd",d:"M379.554 235.867c0 48.532-27.603 87.873-61.654 87.873-34.05 0-61.654-39.343-61.654-87.873 0-48.532 27.603-87.873 61.654-87.873 34.05 0 61.654 39.343 61.654 87.873"}),(0,l.jsx)("path",{fill:"#afff7b",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M637.8 396.85c1.133 26.658-4.634 39.635-11.89 67.356-1.912 2.98-10.966-6.537-16.447-11.236s-7.812 4.24-14.537-3.046c-6.725-7.284-11.05 2.058-15.983-4.095s-51.3-7.057-51.366-7.586c4.59-2.276 28.27.152 24.474-11.193-4.3-11.72-31.093-.35-34.69-15.364-2.44-14.907-53.567-15.543-57.22-19.225 1.444 5.665 39.728 8.05 38.814 22.57-.833 5.916-37.693 7.645-41.247 12.652-3.045 6.295 28.927-1.707 30.114 6.032-.077 3.185-4.704.068-21.357 4.99-8.326 2.46 15.454 10.33 6.41 14.637s-28.26 6.188-27.433 7.998c2.94 8.908 44.693 19.536 40.535 21.065-14.754 6.56-22.552 10.872-29.627 14.652-19.24-25.653-31.146-61.087-31.146-100.2 31.716-11.405 24.968-13.735 83.645-13.735s77.98 2.33 128.95 13.735z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{fill:"#fff",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M637.8 396.85c-8.07 0-16.454 3.4-25.07 3.4-8.617 0-17.465-3.4-26.466-3.4s-19.287 4.532-28.512 4.532c-9.224 0-17.388-4.53-26.676-4.53s-18.566 3.397-27.755 3.397-18.288-3.4-27.218-3.4-17.69 3.4-26.2 3.4-16.77-3.4-24.7-3.4c0-19.56 2.976-38.197 8.358-55.15 27.075 2 11.042-15.716 27.075-15.716 8.655 0 17.434 1.86 25.238 9.788 2.447 0 14.48-11.373 27.912-9.788 13.432 1.586 8.492 27.272 26.37 28.637 9.063 6.797 14.393 11.134 26.78 13.872 17.716 1.606 68.35-2.5 68.704-.194a188 188 0 0 1 2.16 28.552z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M549.85 473.94c0-5.664 13.512-9.462 13.512-18.524s-11.914-9.35-12.38-17.86c-.2-3.46 10.32-7.046 14.915-7.335s8.493 7.42 8.493 9.12-4.662-4.192-8.578-4.378-12.313.63-12.313 2.33c0 3.4 14.85 7.598 13.717 18.925s-12.71 14.657-12.71 18.055 5.056 12.86 5.056 12.86-9.713-7.53-9.713-13.192z",transform:"matrix(.2 0 0 .48 217.23 59.5)"}),(0,l.jsx)("path",{fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M549.85 473.94c0-5.664 13.512-9.462 13.512-18.524s-11.95-9.348-12.38-17.86c-.946-3.962 11.814-6.544 16.41-6.833s9.985 7.92 9.985 9.62-5.41-5.195-9.325-5.38-14.553.63-14.553 2.33c0 3.398 14.85 7.597 13.717 18.924s-12.71 14.657-12.71 18.055 5.056 12.86 5.056 12.86-9.713-7.53-9.713-13.192z",transform:"matrix(-.2 0 0 .48 445.83 59.12)"}),(0,l.jsx)("path",{fillRule:"evenodd",d:"M332.965 264.846c0 1.333-.65 2.413-1.454 2.413s-1.454-1.08-1.454-2.414.65-2.413 1.455-2.413c.804 0 1.455 1.08 1.455 2.413zm16.951 8.964h.465v19.617h-.464zm4.182-1.487h.464v19.616h-.464z"}),(0,l.jsx)("path",{fillRule:"evenodd",d:"m352.597 281.23.004-.493 3.978.684-.004.495z"}),(0,l.jsx)("path",{fill:"#b74d00",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M497.26 478.07s26.052 11.328 31.716 18.124c5.664 6.797 3.398 6.796 3.398 6.796l57.77 2.266c0-3.398 10.193-3.4 12.46-11.328 2.264-7.93 2.264-10.194 2.264-10.194l-18.123 5.664 1.132-10.194H572.02l-2.266 10.194-33.982-1.133 2.266-27.186-6.796 1.132-1.133 26.053c-1.134 0-31.718-7.93-32.85-10.195z",transform:"matrix(.58 0 0 .62 6.99 -9.48)"}),(0,l.jsx)("path",{fill:"#fede00",fillRule:"evenodd",stroke:"#fede00",strokeWidth:"1pt",d:"M440.53 316.28s37.645-11.214 92.11-10.413 92.11 12.815 91.31 12.815-10.414-18.422-10.414-18.422-38.446-10.412-81.697-11.213c-43.253-.8-80.898 8.01-80.097 8.81z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{fill:"#38a9f9",fillRule:"evenodd",d:"m306.072 169.855 13.562-.262.137 7.9-13.56.264zm-31.297 4.3-4.783 7.784 16.165-1.992-1.297-7.783zm13.778-2.995 13.518-1.187.62 7.876-13.516 1.187zm48.837-.806-13.538-.91-.475 7.888 13.537.91zm29.182 4.953 4.918 9.69-14.642-3.614 1.63-7.714 8.094 1.637zm-11.736-2.817-13.453-1.83-.957 7.837 13.453 1.832z"}),(0,l.jsx)("path",{fill:"#ffdf00",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"m532.64 323.49-2.58-13.47-7.54 11.46 2.77-13.43-11.34 7.7 7.7-11.35-13.43 2.78 11.45-7.54-13.47-2.58 13.47-2.58-11.45-7.53 13.43 2.77-7.7-11.35 11.34 7.7-2.77-13.43 7.54 11.46 2.58-13.47 2.57 13.47 7.54-11.46-2.77 13.43 11.35-7.7-7.71 11.35 13.44-2.77-11.46 7.53 13.47 2.58-13.47 2.58 11.46 7.54-13.44-2.78 7.71 11.35-11.35-7.7 2.77 13.43-7.54-11.46z",transform:"matrix(.58 0 0 .62 9.63 -10.18)"}),(0,l.jsx)("path",{fill:"#ffdf00",fillRule:"evenodd",stroke:"#000",strokeWidth:"1pt",d:"M547.05 293.86c0 9.29-6.634 16.82-14.818 16.82s-14.818-7.53-14.818-16.82 6.634-16.82 14.818-16.82 14.818 7.53 14.818 16.82z",transform:"matrix(.57 0 0 .5 18.27 21.75)"}),(0,l.jsx)("path",{fillRule:"evenodd",d:"M320.676 170.552c0 .545-1.257.988-2.807.988s-2.807-.443-2.807-.988 1.256-.988 2.806-.988 2.806.442 2.806.988zm6.079-.002c0 .547-.943.99-2.105.99s-2.105-.443-2.105-.99c0-.544.942-.987 2.105-.987s2.105.443 2.105.988z"}),(0,l.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m529.43 297.86.8.8c-1.9-1.9-.995-1.125 1.603 3.204 2.393-.495 3.09-1.39 4.806-2.403",transform:"matrix(.56 -.18 .17 .6 -26.71 90.63)"}),(0,l.jsx)("path",{fill:"none",stroke:"#000",strokeWidth:"1pt",d:"m527.83 304.27.8.8c-1.9-1.9-1.123-.994 3.205 1.603 4.027.544 8.092-1.196 10.412-4.005",transform:"matrix(.58 0 0 .62 8.7 -10.18)"}),(0,l.jsx)("path",{fill:"#b7e1ff",fillRule:"evenodd",d:"M281.395 194.854s.93 7.945-5.11 17.877c-6.04 9.933-5.11 6.457-5.11 6.457s2.787 5.462 2.323 5.462-4.646-4.966-4.646-4.966l-5.11 5.462s4.646-8.442 4.18-8.442-1.393-2.98-1.393-2.98l3.715-1.49s5.575-10.428 5.575-9.93-16.724 11.42-16.724 11.42zm3.718 2.982c-.465 0 2.322 7.946 4.645 11.918 2.323 3.973 2.323 8.94 2.323 8.94l7.9 3.972-10.222-15.394 6.504 2.482zm0 20.857s5.574 5.96 6.04 7.945.463 6.456.463 6.456l-2.322-4.966-3.252 4.47s2.323-6.953 1.858-7.45-3.717 2.484-3.717 2.484 1.394-3.973 1.394-4.47 0-2.98-.464-4.47zm-27.875 13.9c1.858-1.49 5.574-2.482 5.574-2.482s-2.323 3.973-2.787 3.973-1.858 0-2.787-1.49zm64.107-21.848s12.078 7.45 12.078 7.946-7.897-3.476-7.897-3.476zm-21.831-15.395c.93.497 17.653 14.4 17.188 14.4s-7.432-3.972-7.432-3.475v3.476l-3.717-7.945-.93 2.98-5.11-9.435zm4.176 22.345 4.646 9.435 4.645-.993s-8.825-8.442-9.29-8.442zm14.407-5.958c0 1.49.465 8.938.465 8.938s2.787 2.483 2.787 1.987-2.788-10.43-3.253-10.925z"}),(0,l.jsx)("path",{fill:"#984000",fillRule:"evenodd",d:"M182.612 89.522s20.98-11.61 44.87-20.254c23.886-8.644 50.68-14.325 54.222-14.325 7.077 0 19.21 17.783 21.233 17.783s10.11-4.94 20.223-4.94 16.178 7.904 18.2 7.904h18.2c2.023 0-6.066-19.76 0-18.77 3.034.493 28.817 4.445 52.833 12.225 24.014 7.78 58.103 21.515 58.103 21.515s-55.714 7.44-70.488 5.24c-2.022.988-.1 13.07-2.933 7.754-4.656-1.063-21.744-3.727-24.778-3.727s-8.69 3.427-16.78 5.402c-8.088 1.976-18.2 4.94-18.2 4.94l13.146 20.747-16.178 7.903s-10.11-23.71-14.156-23.71-6.067 16.795-11.123 15.807-7.078-15.808-11.123-19.76c-4.044-3.95-25.368-5.39-33.458-7.366s-21.144-3.5-28.222-5.476-14.155 4.94-17.19 4.94c-3.032 0 4.046-5.928 1.012-6.916s-5.055 2.964-7.078 2.964c-2.022 0-23.256-3.952-25.278-4.94s5.056-4.94 3.034-4.94h-8.09z"}),(0,l.jsx)("path",{fill:"gray",fillRule:"evenodd",stroke:"#772600",strokeWidth:3.706,d:"M462.91-64.94c0 21.15-20.5 38.298-45.79 38.298S371.327-43.79 371.327-64.94s20.5-38.298 45.79-38.298S462.91-86.09 462.91-64.94z",transform:"matrix(.22 0 0 .26 231.63 96.52)"}),(0,l.jsx)("path",{fill:"#984000",fillRule:"evenodd",stroke:"#772600",strokeWidth:5.25,d:"M284.74-59.945c6.66-6.66 14.987-16.65 36.633-16.65 4.996-1.666 4.996-11.657 16.65-11.657 11.657 0 8.327 9.99 16.653 13.32s76.596-3.33 76.596-3.33 6.66 4.996 6.66 11.657-4.995 11.656-6.66 11.656-68.27-4.995-73.266-3.33c-4.995 1.666-8.326 3.33-19.982 3.33s-14.986-11.655-23.31-11.655c-8.327 0-16.653-1.665-29.974 6.66z",transform:"matrix(.27 0 0 .32 205.39 100.65)"}),(0,l.jsx)("path",{fill:"none",stroke:"#772600",strokeWidth:3.5,d:"M487.88-76.597h26.642c9.572.114 12.873 3.005 21.647 3.33h23.31c8.476-.314 12.952-2.295 21.648-3.33 14.504-.175 9.555-1.306 6.66-9.99-2.625-6.565-2.95-9.61-6.66-13.322-1.396-7.944-4.655-10.77-4.996-19.98-1.527-7.027-4.342-11.753-1.665-19.983 3.84 5.647 5.387 7.97 14.986 8.326 10.045 0 13.937-.206 19.982 3.33 4.663 4.89 10.886 3.33 19.982 3.33 7.677 1.406 8.96 5.313 14.986 8.326 7.103 3.935 11.694 4.995 21.646 4.995 7.967 1.422 14.88 2.578 19.98 4.995 4.25 5.08 10.952 6.338 19.983 6.66 5.05 0 8.95-.524 13.32-1.665 7.678.37 15.474 0 24.978 0 6.163 7.21 7.587 9.862 18.317 9.99 7.338 5.155 13.527 6.037 19.982 8.327h24.976c8.928.687 11.79 4.35 19.98 6.66 8.115 3.768 15.722 6.35 21.648 8.326 5.89 1.28 13.574 1.665 21.646 1.665 6.183 3.175 13.61 3.46 18.317 6.66 6.89 1.477 16.302 3.215 21.647 4.996 8.816 1.168 12.187 3.94 19.98 4.995 6.704 1.915-2.223 3.56-6.66 4.995-9.826-.364-10.536-3.946-19.98-4.995-5.024-2.94-12.64-2.548-19.982-4.996h-1.666c6.6 3.903 12.948 6.422 9.99 13.32-8.49 0-15.366-1.097-23.31-1.665-8.385-1.616-12.227-3.33-21.647-3.33 9.394-2.264 11.854.27 18.315 3.33 2.396 8.06-2.725 4.996-11.656 4.996-7.61-2.73-12.174-5.983-21.648-6.66h-19.98c9.89.366 11.976 4.1 18.315 8.326.518 2.59-.132 2.472-4.995 3.33-5.16-4.478-11.89-6.013-19.982-8.326-7.88-.28-16.217-.965-23.31-3.33-4.868-.304-4.117-6.177 6.66 3.33 6.532 3.843 8.832 6.946 8.325 9.99-8.576-2.143-12.825-5.58-18.317-8.324-7.736-2.855-14.128-3.33-23.312-3.33-8.61-2.266.894-3.574 6.66 4.995 12.38 8.77-1.632 5.007-6.66 3.33-7.507-2.144-15.284-5.184-21.646-6.66-5.046-1.44-9.44-2.855-14.986-3.33 8.63.785 11.57 3.823 14.986 9.99 8.755 6.032-.384 3.1-8.326 1.666-5.07-4.402-11.487-6.658-14.986-11.656-8.35-4.176-8.563-8.982-3.33 1.665 1.363 3.407 1.11 10.795 1.665 11.656-6.136-6.625-4.825-8.325-11.656-8.325-4.634-3.244-11.496-5.765-14.986-9.99-6.435-.604-6.84-2.9-13.32-4.996 5.34 6.273 12.39 12.478 16.65 18.315 7.598 4.242 9.7 8.06 14.987 11.656 2.14 3.64 7.904 6.657 1.665 1.666-7.144-7.043-12.46-8.67-23.312-13.32-6.15-4.96-8.37-7.045-14.986-11.657-9.003-2.905-5.508-4.543 0 4.995 6.318 5.77 11.17 12.23 16.652 16.65 3.767 4.908 10.136 10.12 14.986 13.322 1.5 2.25 5.99 2.664 0 3.33-5.09-4.598-12.398-7.53-18.317-11.656-8.302-2.34-12.19-6.652-18.316-11.655-3.9-5.85-10.383-10.38-14.987-14.986-9.63-3.77 1.9 3.636 4.995 8.325 2.153 6.068 4.788 11.035 6.66 16.65 2.78 5.56-8.47-1.327-11.655-3.33-7.32-4.157-12.674-6.937-21.647-8.325-5.98-1.3-13.602-2.468-19.982-3.33-7.614-2.05 4.042 4.8 8.326 11.656 8.418 7.908-8.332 1.425-13.32 0-8.224-1.645-16.288-1.666-24.978-1.666-10.67.628-3.05 1.947 0 6.66 3.287 2.53 5.637 7.855 4.995 9.992-7.032-.95-13.025-3.023-21.646-3.33-6.96 2.32-15.344 1.665-23.31 1.665-.382 4.19 1.443.654 4.994 4.995 5.763 2.34 9.585 5.177 8.326 8.326H497.87c-5.29 1.447 1.14.704 5 6.663-2.16 5.403-4.95 3.332-11.655 3.332-4.545-1.818-13.598-2.636-18.317-4.996-4.69 0-4.336-1.22-8.325-1.665 14.035 9.93 7.073 7.45 14.986 14.987 1.366.456 4.523 1.665 1.664 1.665M371.32 73.265c-.997 0-3.2-5.375-6.66-9.99-2.327-6.05-5.392-2.59-8.326-11.657.348-9.402.684-11.094 0-19.982-6.863-4.783-9.714-6.27-14.986-14.986-8.46-7.078 1.236-19.063 2.845-27.85-7.375-1.638-11 11.477-22.34 16.194-8.156 5.492-.912-11.354-4.892-21.188-2.774-13.872-10.825 6.956-13.91 12.862-5.467 3.718-7.128 8.542-14.986 1.665 0-5.144 4.937-19.49 2.845-22.28-7.815 3.815-18.088 15.49-26.158 17.284-8.13-1.767 1.77-14.828 1.77-24.518-2.938-.98-14.696 25.755-19.52 26.002-4.824.248-2.713-25.993-4.972-25.428-3.542 4.96-10.65 15.43-15.576 18.948-9.454-1.22 1.398-17.435 2.845-23.427 1.628-7.168-8.905 13.75-14.502 15.102-4.1 3.554-12.237 6.072-14.986 6.66 3.24-6.13 19.076-18.712 17.935-22.278-9.21.34-23.31 12.556-31.256 13.952-5.19 0-12.387 1.758-13.32 1.665.448-7.926 19.418-14.65 22.445-19.465-9.306 1.494-27.186 9.706-32.436 16.135-6.146 1.336-13.944 3.02-19.983 0 .897-7.475 14.856-21.998 17.936-26.758-8.396 3.697-12.642 6.59-21.647 8.325-1.652 1.652-6.524 5.23-4.995 1.665 2.656-6.945 6.676-10.11 9.99-14.986-7.45 1.364-10.28 5.634-18.315 9.99-5.094.222-19.646 14.855-24.596 15.103-11.45 8.382-16.01 9.807-28.308 13.32-7.587 1.356-11.26 2.934-14.986 6.66 3.796-6.687 9.597-13.092 14.986-16.65 3.677-5.567 7.12-10.195 14.986-13.32 1.897-2.32 7.188-2.906 1.665-3.33-4.746 4.236-12.696 8.965-16.65 11.655-5.102 3.207-11.01 6.48-13.322 4.995 2.62-7.197 7.438-8.902 11.657-14.986 8.81-5.604.042-1.914-6.66 0-4.338 3.868-12.122 6.727-18.316 9.992-7.113 1.856-11.703 6.132-19.98 8.326 0 2.375 2.364-4.25 3.33-6.66 6.83-7.41 8.656-9.476 16.65-11.657 1.912-2.866 4.42-1.664-1.665-1.664-4.514 4.024-10.81 6.212-16.65 9.99-5.892 1.282-13.575 1.666-21.648 1.666-10.355 1.243-9.46 2.025 0-3.33 5.357-5.042 9.77-3.775 9.99-9.99C10.394-40.43 2.78-37.1-4.998-33.304c-6.434.19-8.133 1.665-14.985 1.665 3.298-3.415 5.277-7.633 9.99-9.99 6.896-7.663-4.377-1.478-6.66 0H-41.63c-4.465 5.58-.23.05 3.33-3.33 4.306-2.24 8.756-5.155 8.326-6.66-4.972 4.314-10.726 6.297-14.986 9.99-4.64 1.39-9.99 2.084-9.99 3.33 3.626-5.346 9.524-8.576 13.32-13.32 5.612-1.22 10.396-2.936 11.656-4.996h-23.312 16.65c8.4 0 15.63-.75 23.313-1.665 13.263-2.21-1.16-3.33-8.326-3.33-1.39-2.548 4.11-3.987 9.99-4.995 5.024-2.38 11.233-4.493 16.65-6.66 5.257-1.434 12.707-5.81 13.322-6.66-5.015.263-4.975 1.4-9.99 1.664 7.446-.574 12.8-1.666 21.646-1.666 8.028-2.58 14.906-5.41 21.647-8.326 2.936-3.588 4.24-3.33-3.33-3.33 6.713-2.158 16.238-3.193 21.647-4.995 7.872-1.687 14.9-4.253 19.982-6.66 4.876-3.316 7.69-7.176 13.32-9.99 6.528 4.437 6.602 4.994 18.318 4.994 9.41-.112 15.17-2.373 19.98-6.66 7.208-1.966 8.483-5.43 16.652-6.66 7.444 1.328 15.03 1.664 23.312 1.664 8.096-2.12 15.677-6.01 21.647-9.99 5.093-2.502 11.14-6.12 16.65-8.326 6.07 3.133 10.844 5.65 18.318 6.66 7.728-1.148 11.747-4.868 18.317-6.66 3.577-4.33 8.777-6.632 14.986-8.325 9.67-4.75 8.913 1.573 13.32 6.66 4.896 5.132 11.374 2.68 18.318 4.995 3.83 5.893 6.647 9.914 11.657 13.32 3.89 4.71 8.508 6.035 16.65 6.66 2.968 3.958.602 6.812 6.662 8.327 2.387 2.53 6.517 3.606 9.99 4.995",transform:"matrix(.27 0 0 .32 205.39 104.9)"}),(0,l.jsx)("path",{fill:"none",stroke:"#782600",strokeWidth:3.125,d:"M468.74 30.803v.833c0-2.327-.103-1.09 1.665 3.33.595 3.64-.81 3.22-2.498 5.828-.286 3.723-.832 6.4-.832 10.823-.537 3.612-2.57 7.04-4.163 9.99-1.604 3.133-8.555 4.87-8.326 9.16-3.99 1.14-4.084-1.445-4.162-5.83-2.386-2.726-3.212-6.466-4.996-9.99-1.108-3.476-3.47-6.032-4.995-9.99-2.46-3.787-4.546-4.876-6.66-9.16-.827-2.065-.683-4.617-2.498-5.827-2.72-3.438-4.49-3.99-9.16-4.163-3.59.845-4.97 2.416-8.324 3.33-2.57.857-7.57.58-10.823 1.666-.808 1.314 1.6 1.94 2.498 4.995-2.135 1.764-2.926 4.883-4.163 7.493-1.965 2.487-3.283 3.706-4.163 7.494 1.362 2.316.2 5.387-1.666 7.493-.574 3.864-2.434 5.874-3.33 9.16-2.686 1.825-3.652 3.537-5.828 6.66-1.914 2.678-3.636 2.497-8.326 2.497-3.667-1-4.18-2.988-7.493-4.163-.352-1.056-.608-1.312-1.665-1.664",transform:"matrix(.27 0 0 .32 205.39 104.9)"}),(0,l.jsx)("path",{fill:"#812e00",fillRule:"evenodd",d:"M307.65 125.534s-.455 4.955-3.643 8.258-9.794 7.157-9.794 7.157 8.882-4.222 9.793-3.304c.91.917-5.694 8.258-5.694 8.258s8.655-7.708 9.794-7.708 3.644 7.524 4.555 7.34c.912-.183-2.05-9.542-1.593-11.01.455-1.468 0-9.36 0-9.36l-3.416.368zm20.496-.672s-.456 5.297-3.644 8.828-9.794 7.65-9.794 7.65 8.882-4.512 9.793-3.53c.913.98-5.692 8.827-5.692 8.827s8.654-8.24 9.793-8.24 3.645 8.043 4.556 7.847c.91-.196-2.05-10.2-1.594-11.77s0-10.004 0-10.004l-3.416.392zm-28.693-48.045c0 .987-.967 1.788-2.16 1.788s-2.158-.8-2.158-1.788.966-1.787 2.16-1.787 2.158.8 2.158 1.787"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5804.1be86954.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js deleted file mode 100644 index 51cd5ae50c..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 582.4f5fd381.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["582"],{95973(O,e,t){t.r(e),t.d(e,{xml:()=>Q,autoCloseTags:()=>X,completeFromSchema:()=>w,xmlLanguage:()=>_});var o=t(48820),r=t(43720);let n=null,l=null,a=0;function s(O,e){var t;let o=O.pos+e;if(l==O&&a==o)return n;for(;9==(t=O.peek(e))||10==t||13==t||32==t;)e++;let r="";for(;;){let t=O.peek(e);if(!(45==t||46==t||58==t||t>=65&&t<=90||95==t||t>=97&&t<=122||t>=161))break;r+=String.fromCharCode(t),e++}return l=O,a=o,n=r||null}function i(O,e){this.name=O,this.parent=e}let c=new o.Aj({start:null,shift:(O,e,t,o)=>1==e?new i(s(o,1)||"",O):O,reduce:(O,e)=>11==e&&O?O.parent:O,reuse(O,e,t,o){let r=e.type.id;return 1==r||13==r?new i(s(o,1)||"",O):O},strict:!1}),$=new o.Lu((O,e)=>{if(60==O.next){if(O.advance(),47==O.next){O.advance();let t=s(O,0);if(!t)return O.acceptToken(5);if(e.context&&t==e.context.name)return O.acceptToken(2);for(let o=e.context;o;o=o.parent)if(o.name==t)return O.acceptToken(3,-2);O.acceptToken(4)}else if(33!=O.next&&63!=O.next)return O.acceptToken(1)}},{contextual:!0});function S(O,e){return new o.Lu(t=>{let o=0,r=e.charCodeAt(0);O:for(;!(t.next<0);t.advance(),o++)if(t.next==r){for(let O=1;O"),g=S(38,"]]>"),m=(0,r.pn)({Text:r._A.content,"StartTag StartCloseTag EndTag SelfCloseEndTag":r._A.angleBracket,TagName:r._A.tagName,"MismatchedCloseTag/TagName":[r._A.tagName,r._A.invalid],AttributeName:r._A.attributeName,AttributeValue:r._A.attributeValue,Is:r._A.definitionOperator,"EntityReference CharacterReference":r._A.character,Comment:r._A.blockComment,ProcessingInst:r._A.processingInstruction,DoctypeDecl:r._A.documentMeta,Cdata:r._A.special(r._A.string)}),x=o.U1.deserialize({version:14,states:",lOQOaOOOrOxO'#CfOzOpO'#CiO!tOaO'#CgOOOP'#Cg'#CgO!{OrO'#CrO#TOtO'#CsO#]OpO'#CtOOOP'#DT'#DTOOOP'#Cv'#CvQQOaOOOOOW'#Cw'#CwO#eOxO,59QOOOP,59Q,59QOOOO'#Cx'#CxO#mOpO,59TO#uO!bO,59TOOOP'#C|'#C|O$TOaO,59RO$[OpO'#CoOOOP,59R,59ROOOQ'#C}'#C}O$dOrO,59^OOOP,59^,59^OOOS'#DO'#DOO$lOtO,59_OOOP,59_,59_O$tOpO,59`O$|OpO,59`OOOP-E6t-E6tOOOW-E6u-E6uOOOP1G.l1G.lOOOO-E6v-E6vO%UO!bO1G.oO%UO!bO1G.oO%dOpO'#CkO%lO!bO'#CyO%zO!bO1G.oOOOP1G.o1G.oOOOP1G.w1G.wOOOP-E6z-E6zOOOP1G.m1G.mO&VOpO,59ZO&_OpO,59ZOOOQ-E6{-E6{OOOP1G.x1G.xOOOS-E6|-E6|OOOP1G.y1G.yO&gOpO1G.zO&gOpO1G.zOOOP1G.z1G.zO&oO!bO7+$ZO&}O!bO7+$ZOOOP7+$Z7+$ZOOOP7+$c7+$cO'YOpO,59VO'bOpO,59VO'mO!bO,59eOOOO-E6w-E6wO'{OpO1G.uO'{OpO1G.uOOOP1G.u1G.uO(TOpO7+$fOOOP7+$f7+$fO(]O!bO<c!|;'S(o;'S;=`)]<%lO(oi>jX|W!O`Or(ors&osv(owx'}x!r(o!r!s?V!s;'S(o;'S;=`)]<%lO(oi?^X|W!O`Or(ors&osv(owx'}x!g(o!g!h?y!h;'S(o;'S;=`)]<%lO(oi@QY|W!O`Or?yrs@psv?yvwA[wxBdx!`?y!`!aCr!a;'S?y;'S;=`Db<%lO?ya@uV!O`Ov@pvxA[x!`@p!`!aAy!a;'S@p;'S;=`B^<%lO@pPA_TO!`A[!`!aAn!a;'SA[;'S;=`As<%lOA[PAsOiPPAvP;=`<%lA[aBQSiP!O`Ov&ox;'S&o;'S;=`'Q<%lO&oaBaP;=`<%l@pXBiX|WOrBdrsA[svBdvwA[w!`Bd!`!aCU!a;'SBd;'S;=`Cl<%lOBdXC]TiP|WOr'}sv'}w;'S'};'S;=`(c<%lO'}XCoP;=`<%lBdiC{ViP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiDeP;=`<%l?yiDoZ|W!O`Or(ors&osv(owx'}x!e(o!e!fEb!f#V(o#V#WIr#W;'S(o;'S;=`)]<%lO(oiEiX|W!O`Or(ors&osv(owx'}x!f(o!f!gFU!g;'S(o;'S;=`)]<%lO(oiF]X|W!O`Or(ors&osv(owx'}x!c(o!c!dFx!d;'S(o;'S;=`)]<%lO(oiGPX|W!O`Or(ors&osv(owx'}x!v(o!v!wGl!w;'S(o;'S;=`)]<%lO(oiGsX|W!O`Or(ors&osv(owx'}x!c(o!c!dH`!d;'S(o;'S;=`)]<%lO(oiHgX|W!O`Or(ors&osv(owx'}x!}(o!}#OIS#O;'S(o;'S;=`)]<%lO(oiI]V|W!O`yPOr(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(oiIyX|W!O`Or(ors&osv(owx'}x#W(o#W#XJf#X;'S(o;'S;=`)]<%lO(oiJmX|W!O`Or(ors&osv(owx'}x#T(o#T#UKY#U;'S(o;'S;=`)]<%lO(oiKaX|W!O`Or(ors&osv(owx'}x#h(o#h#iK|#i;'S(o;'S;=`)]<%lO(oiLTX|W!O`Or(ors&osv(owx'}x#T(o#T#UH`#U;'S(o;'S;=`)]<%lO(oiLwX|W!O`Or(ors&osv(owx'}x#c(o#c#dMd#d;'S(o;'S;=`)]<%lO(oiMkX|W!O`Or(ors&osv(owx'}x#V(o#V#WNW#W;'S(o;'S;=`)]<%lO(oiN_X|W!O`Or(ors&osv(owx'}x#h(o#h#iNz#i;'S(o;'S;=`)]<%lO(oi! RX|W!O`Or(ors&osv(owx'}x#m(o#m#n! n#n;'S(o;'S;=`)]<%lO(oi! uX|W!O`Or(ors&osv(owx'}x#d(o#d#e!!b#e;'S(o;'S;=`)]<%lO(oi!!iX|W!O`Or(ors&osv(owx'}x#X(o#X#Y?y#Y;'S(o;'S;=`)]<%lO(oi!#_V!SP|W!O`Or(ors&osv(owx'}x;'S(o;'S;=`)]<%lO(ok!$PXaQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qo!$wX[UVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!%mZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!&`!a;'S$q;'S;=`)c<%lO$qk!&kX!RQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$qk!'aZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_#P$q#P#Q!(S#Q;'S$q;'S;=`)c<%lO$qk!(]ZVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_!`$q!`!a!)O!a;'S$q;'S;=`)c<%lO$qk!)ZXxQVP|W!O`Or$qrs%gsv$qwx'^x!^$q!^!_(o!_;'S$q;'S;=`)c<%lO$q",tokenizers:[$,p,u,g,0,1,2,3,4],topRules:{Document:[0,6]},tokenPrec:0});var q=t(15874),f=t(52704),d=t(29332);function P(O,e){let t=e&&e.getChild("TagName");return t?O.sliceString(t.from,t.to):""}function v(O,e){let t=e&&e.firstChild;return t&&"OpenTag"==t.name?P(O,t):""}function T(O){for(let e=O&&O.parent;e;e=e.parent)if("Element"==e.name)return e;return null}class h{constructor(O,e,t){this.attrs=e,this.attrValues=t,this.children=[],this.name=O.name,this.completion=Object.assign(Object.assign({type:"type"},O.completion||{}),{label:this.name}),this.openCompletion=Object.assign(Object.assign({},this.completion),{label:"<"+this.name}),this.closeCompletion=Object.assign(Object.assign({},this.completion),{label:"",boost:2}),this.closeNameCompletion=Object.assign(Object.assign({},this.completion),{label:this.name+">"}),this.text=O.textContent?O.textContent.map(O=>({label:O,type:"text"})):[]}}let b=/^[:\-\.\w\u00b7-\uffff]*$/;function C(O){return Object.assign(Object.assign({type:"property"},O.completion||{}),{label:O.name})}function W(O){return"string"==typeof O?{label:`"${O}"`,type:"constant"}:/^"/.test(O.label)?O:Object.assign(Object.assign({},O),{label:`"${O.label}"`})}function w(O,e){let t=[],o=[],r=Object.create(null);for(let O of e){let e=C(O);t.push(e),O.global&&o.push(e),O.values&&(r[O.name]=O.values.map(W))}let n=[],l=[],a=Object.create(null);for(let e of O){let O=o,s=r;e.attributes&&(O=O.concat(e.attributes.map(O=>"string"==typeof O?t.find(e=>e.label==O)||{label:O,type:"property"}:(O.values&&(s==r&&(s=Object.create(s)),s[O.name]=O.values.map(W)),C(O)))));let i=new h(e,O,s);a[i.name]=i,n.push(i),e.top&&l.push(i)}l.length||(l=n);for(let e=0;e{var e;let{doc:t}=O.state,s=function(O,e){var t;let o=(0,q.mv)(O).resolveInner(e,-1),r=null;for(let O=o;!r&&O.parent;O=O.parent)("OpenTag"==O.name||"CloseTag"==O.name||"SelfClosingTag"==O.name||"MismatchedCloseTag"==O.name)&&(r=O);if(r&&(r.to>e||r.lastChild.type.isError)){let O=r.parent;if("TagName"==o.name)return"CloseTag"==r.name||"MismatchedCloseTag"==r.name?{type:"closeTag",from:o.from,context:O}:{type:"openTag",from:o.from,context:T(O)};if("AttributeName"==o.name)return{type:"attrName",from:o.from,context:r};if("AttributeValue"==o.name)return{type:"attrValue",from:o.from,context:r};let t=o==r||"Attribute"==o.name?o.childBefore(e):o;return(null==t?void 0:t.name)=="StartTag"?{type:"openTag",from:e,context:T(O)}:(null==t?void 0:t.name)=="StartCloseTag"&&t.to<=e?{type:"closeTag",from:e,context:O}:(null==t?void 0:t.name)=="Is"?{type:"attrValue",from:e,context:r}:t?{type:"attrName",from:e,context:r}:null}if("StartCloseTag"==o.name)return{type:"closeTag",from:e,context:o.parent};for(;o.parent&&o.to==e&&!(null==(t=o.lastChild)?void 0:t.type.isError);)o=o.parent;return"Element"==o.name||"Text"==o.name||"Document"==o.name?{type:"tag",from:e,context:"Element"==o.name?o:T(o)}:null}(O.state,O.pos);if(!s||"tag"==s.type&&!O.explicit)return null;let{type:i,from:c,context:$}=s;if("openTag"==i){let O=l,e=v(t,$);if(e){let t=a[e];O=(null==t?void 0:t.children)||n}return{from:c,options:O.map(O=>O.completion),validFor:b}}if("closeTag"==i){let o=v(t,$);return o?{from:c,to:O.pos+ +(">"==t.sliceString(O.pos,O.pos+1)),options:[(null==(e=a[o])?void 0:e.closeNameCompletion)||{label:o+">",type:"type"}],validFor:b}:null}if("attrName"==i){let O=a[P(t,$)];return{from:c,options:(null==O?void 0:O.attrs)||o,validFor:b}}if("attrValue"==i){let e,o,n=(o=(e=$&&$.getChildren("Attribute").find(O=>O.from<=c&&O.to>=c))&&e.getChild("AttributeName"))?t.sliceString(o.from,o.to):"";if(!n)return null;let l=a[P(t,$)],s=((null==l?void 0:l.attrValues)||r)[n];return s&&s.length?{from:c,to:O.pos+ +('"'==t.sliceString(O.pos,O.pos+1)),options:s,validFor:/^"[^"]*"?$/}:null}{if("tag"!=i)return null;let e=v(t,$),o=a[e],r=[],s=$&&$.lastChild;e&&(!s||"CloseTag"!=s.name||P(t,s)!=e)&&r.push(o?o.closeCompletion:{label:"",type:"type",boost:2});let S=r.concat(((null==o?void 0:o.children)||($?n:l)).map(O=>O.openCompletion));if($&&(null==o?void 0:o.text.length)){let e=$.firstChild;e.to>O.pos-20&&!/\S/.test(O.state.sliceDoc(e.to,O.pos))&&(S=S.concat(o.text))}return{from:c,options:S,validFor:/^<\/?[:\-\.\w\u00b7-\uffff]*$/}}}}let _=q.bj.define({name:"xml",parser:x.configure({props:[q.Oh.add({Element(O){let e=/^\s*<\//.test(O.textAfter);return O.lineIndent(O.node.from)+(e?0:O.unit)},"OpenTag CloseTag SelfClosingTag":O=>O.column(O.node.from)+O.unit}),q.b_.add({Element(O){let e=O.firstChild,t=O.lastChild;return e&&"OpenTag"==e.name?{from:e.to,to:"CloseTag"==t.name?t.from:O.to}:null}}),q.Q_.add({"OpenTag CloseTag":O=>O.getChild("TagName")})]}),languageData:{commentTokens:{block:{open:"\x3c!--",close:"--\x3e"}},indentOnInput:/^\s*<\/$/}});function Q(O={}){let e=[_.data.of({autocomplete:w(O.elements||[],O.attributes||[])})];return!1!==O.autoCloseTags&&e.push(X),new q.Yy(_,e)}function y(O,e,t=O.length){if(!e)return"";let o=e.firstChild,r=o&&o.getChild("TagName");return r?O.sliceString(r.from,Math.min(r.to,t)):""}let X=d.Lz.inputHandler.of((O,e,t,o,r)=>{if(O.composing||O.state.readOnly||e!=t||">"!=o&&"/"!=o||!_.isActiveAt(O.state,e,-1))return!1;let n=r(),{state:l}=n,a=l.changeByRange(O=>{var e,t,r;let{head:n}=O,a=l.doc.sliceString(n-1,n)==o,s=(0,q.mv)(l).resolveInner(n,-1),i;if(a&&">"==o&&"EndTag"==s.name){let o=s.parent;if((null==(t=null==(e=o.parent)?void 0:e.lastChild)?void 0:t.name)!="CloseTag"&&(i=y(l.doc,o.parent,n))){let e=n+ +(">"===l.doc.sliceString(n,n+1));return{range:O,changes:{from:n,to:e,insert:``}}}}else if(a&&"/"==o&&"StartCloseTag"==s.name){let O=s.parent;if(s.from==n-2&&(null==(r=O.lastChild)?void 0:r.name)!="CloseTag"&&(i=y(l.doc,O,n))){let O=n+ +(">"===l.doc.sliceString(n,n+1)),e=`${i}>`;return{range:f.OF.cursor(n+e.length,-1),changes:{from:n,to:O,insert:e}}}}return{range:O}});return!a.changes.empty&&(O.dispatch([n,l.update(a,{userEvent:"input.complete",scrollIntoView:!0})]),!0)})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/582.4f5fd381.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js deleted file mode 100644 index 0eb2d23cb8..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5841.812278cf.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5841"],{88477(O,e,r){r.r(e),r.d(e,{json:()=>i,jsonLanguage:()=>o,jsonParseLinter:()=>Q});var t=r(48820),a=r(43720);let P=(0,a.pn)({String:a._A.string,Number:a._A.number,"True False":a._A.bool,PropertyName:a._A.propertyName,Null:a._A.null,", :":a._A.separator,"[ ]":a._A.squareBracket,"{ }":a._A.brace}),s=t.U1.deserialize({version:14,states:"$bOVQPOOOOQO'#Cb'#CbOnQPO'#CeOvQPO'#ClOOQO'#Cr'#CrQOQPOOOOQO'#Cg'#CgO}QPO'#CfO!SQPO'#CtOOQO,59P,59PO![QPO,59PO!aQPO'#CuOOQO,59W,59WO!iQPO,59WOVQPO,59QOqQPO'#CmO!nQPO,59`OOQO1G.k1G.kOVQPO'#CnO!vQPO,59aOOQO1G.r1G.rOOQO1G.l1G.lOOQO,59X,59XOOQO-E6k-E6kOOQO,59Y,59YOOQO-E6l-E6l",stateData:"#O~OeOS~OQSORSOSSOTSOWQO_ROgPO~OVXOgUO~O^[O~PVO[^O~O]_OVhX~OVaO~O]bO^iX~O^dO~O]_OVha~O]bO^ia~O",goto:"!kjPPPPPPkPPkqwPPPPk{!RPPP!XP!e!hXSOR^bQWQRf_TVQ_Q`WRg`QcZRicQTOQZRQe^RhbRYQR]R",nodeNames:"⚠ JsonText True False Null Number String } { Object Property PropertyName : , ] [ Array",maxTerm:25,nodeProps:[["isolate",-2,6,11,""],["openedBy",7,"{",14,"["],["closedBy",8,"}",15,"]"]],propSources:[P],skippedNodes:[0],repeatNodeCount:2,tokenData:"(|~RaXY!WYZ!W]^!Wpq!Wrs!]|}$u}!O$z!Q!R%T!R![&c![!]&t!}#O&y#P#Q'O#Y#Z'T#b#c'r#h#i(Z#o#p(r#q#r(w~!]Oe~~!`Wpq!]qr!]rs!xs#O!]#O#P!}#P;'S!];'S;=`$o<%lO!]~!}Og~~#QXrs!]!P!Q!]#O#P!]#U#V!]#Y#Z!]#b#c!]#f#g!]#h#i!]#i#j#m~#pR!Q![#y!c!i#y#T#Z#y~#|R!Q![$V!c!i$V#T#Z$V~$YR!Q![$c!c!i$c#T#Z$c~$fR!Q![!]!c!i!]#T#Z!]~$rP;=`<%l!]~$zO]~~$}Q!Q!R%T!R![&c~%YRT~!O!P%c!g!h%w#X#Y%w~%fP!Q![%i~%nRT~!Q![%i!g!h%w#X#Y%w~%zR{|&T}!O&T!Q![&Z~&WP!Q![&Z~&`PT~!Q![&Z~&hST~!O!P%c!Q![&c!g!h%w#X#Y%w~&yO[~~'OO_~~'TO^~~'WP#T#U'Z~'^P#`#a'a~'dP#g#h'g~'jP#X#Y'm~'rOR~~'uP#i#j'x~'{P#`#a(O~(RP#`#a(U~(ZOS~~(^P#f#g(a~(dP#i#j(g~(jP#X#Y(m~(rOQ~~(wOW~~(|OV~",tokenizers:[0],topRules:{JsonText:[0,1]},tokenPrec:0});var n=r(15874);let Q=()=>O=>{try{JSON.parse(O.state.doc.toString())}catch(P){var e,r;let t;if(!(P instanceof SyntaxError))throw P;let a=(e=P,r=O.state.doc,(t=e.message.match(/at position (\d+)/))?Math.min(+t[1],r.length):(t=e.message.match(/at line (\d+) column (\d+)/))?Math.min(r.line(+t[1]).from+ +t[2]-1,r.length):0);return[{from:a,message:P.message,severity:"error",to:a}]}return[]},o=n.bj.define({name:"json",parser:s.configure({props:[n.Oh.add({Object:(0,n.mz)({except:/^\s*\}/}),Array:(0,n.mz)({except:/^\s*\]/})}),n.b_.add({"Object Array":n.yd})]}),languageData:{closeBrackets:{brackets:["[","{",'"']},indentOnInput:/^\s*[\}\]]$/}});function i(){return new n.Yy(o)}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5841.812278cf.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js deleted file mode 100644 index 255bec2114..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5904.327a2f83.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5904"],{51075(i,l,s){s.r(l),s.d(l,{default:()=>h});var a=s(74848);s(47867);let h=i=>(0,a.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",width:"1em",height:"1em",viewBox:"0 0 640 480",...i,children:[(0,a.jsx)("path",{fill:"#00785e",d:"M0 0h640v480H0z"}),(0,a.jsx)("path",{fill:"#fbd116",d:"M294.915 108.727 335.5 138.21 320 90.5l-15.5 47.71 40.585-29.483z"}),(0,a.jsxs)("g",{id:"mo_inline_svg__a",children:[(0,a.jsx)("path",{fill:"#fff",d:"M320 331.625H217.523a146 146 0 0 1-3.805-4H320a2.14 2.14 0 0 1 1.425 1.894c.046.92-.533 1.783-1.425 2.105zm0-31.336c.595-1.216 1.753-4.03 1.227-7.55a12.4 12.4 0 0 0-1.227-3.81c-5.75 5.44-16.555 14.16-32.493 18.982A81 81 0 0 1 264 311.374h-63.133a144 144 0 0 0 5.852 8h61.03c19.9 0 38.13-7.18 52.25-19.085zm-109.594-24.696a32.3 32.3 0 0 1-9.695 2.1c14.87 16.818 36.596 27.43 60.79 27.43 22.98 0 43.736-9.572 58.5-24.945a441 441 0 0 0 4.546-58.908 441 441 0 0 0-4.546-67.67c-6.595 5.91-18.95 18.684-24.775 38.267a81 81 0 0 0-3.35 23.13c0 16.68 5.042 32.188 13.687 45.086-10.616-13.713-16.938-30.914-16.938-49.586 0-12.403 2.79-24.157 7.774-34.673a32.5 32.5 0 0 1-7.53-12.984c-6.68 11.786-10.494 25.4-10.494 39.907 0 18.042 5.9 34.71 15.875 48.187-17.37-18.21-41.867-29.562-69-29.562-1.458 0-2.91.037-4.353.1a32.6 32.6 0 0 1 6.75 8.9c26.992.04 51.36 11.32 68.69 29.4-16.55-13.825-37.853-22.15-61.086-22.15-12.983 0-25.363 2.6-36.647 7.305 11.595 30.638 41.214 52.445 75.898 52.445 2.248 0 4.474-.1 6.673-.28-4.68.84-9.5 1.28-14.42 1.28-21.886 0-41.75-8.68-56.347-22.78zM320 364.374h-53.11c16.437 6.533 34.355 10.125 53.11 10.125a10.9 10.9 0 0 0 1.25-4.956 10.9 10.9 0 0 0-1.25-5.17zm0-24.5h-93.633a144 144 0 0 0 7.82 6.25H320c.215-.22 1.273-1.348 1.273-3.125 0-1.778-1.058-2.906-1.273-3.125m0 12.5h-76.695a144 144 0 0 0 14.446 8H320a7.56 7.56 0 0 0 1.16-4.193 7.53 7.53 0 0 0-1.16-3.805z"}),(0,a.jsx)("path",{fill:"#fbd116",d:"m200.484 174.766 25.384 23.67-6.625-34.07-14.664 31.462 30.35-16.836zm36.891-32.009 34.71.603-27.725-20.884 10.148 33.196 11.304-32.828z"})]}),(0,a.jsx)("use",{xlinkHref:"#mo_inline_svg__a",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 640 0)"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5904.327a2f83.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5976.be3da2cf.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5976.be3da2cf.js deleted file mode 100644 index 242161d2f2..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5976.be3da2cf.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 5976.be3da2cf.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["5976"],{72635(e,t,s){s.r(t),s.d(t,{changeLanguage:()=>G,createInstance:()=>B,default:()=>J,dir:()=>_,exists:()=>ee,getFixedT:()=>X,hasLoadedNamespace:()=>es,init:()=>q,loadLanguages:()=>er,loadNamespaces:()=>ei,loadResources:()=>W,reloadResources:()=>Y,setDefaultNamespace:()=>et,t:()=>Z,use:()=>Q});let i=e=>"string"==typeof e,r=()=>{let e,t,s=new Promise((s,i)=>{e=s,t=i});return s.resolve=e,s.reject=t,s},o=e=>null==e?"":""+e,a=/###/g,n=e=>e&&e.indexOf("###")>-1?e.replace(a,"."):e,l=e=>!e||i(e),h=(e,t,s)=>{let r=i(t)?t.split("."):t,o=0;for(;o{let{obj:i,k:r}=h(e,t,Object);if(void 0!==i||1===t.length){i[r]=s;return}let o=t[t.length-1],a=t.slice(0,t.length-1),n=h(e,a,Object);for(;void 0===n.obj&&a.length;)o=`${a[a.length-1]}.${o}`,(n=h(e,a=a.slice(0,a.length-1),Object))&&n.obj&&void 0!==n.obj[`${n.k}.${o}`]&&(n.obj=void 0);n.obj[`${n.k}.${o}`]=s},p=(e,t)=>{let{obj:s,k:i}=h(e,t);if(s)return s[i]},g=(e,t,s)=>{for(let r in t)"__proto__"!==r&&"constructor"!==r&&(r in e?i(e[r])||e[r]instanceof String||i(t[r])||t[r]instanceof String?s&&(e[r]=t[r]):g(e[r],t[r],s):e[r]=t[r]);return e};var d={"&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};let c=e=>i(e)?e.replace(/[&<>"'\/]/g,e=>d[e]):e,f=[" ",",","?","!",";"],m=new class{constructor(e){this.capacity=e,this.regExpMap=new Map,this.regExpQueue=[]}getRegExp(e){let t=this.regExpMap.get(e);if(void 0!==t)return t;let s=new RegExp(e);return this.regExpQueue.length===this.capacity&&this.regExpMap.delete(this.regExpQueue.shift()),this.regExpMap.set(e,s),this.regExpQueue.push(e),s}}(20),v=function(e,t){let s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:".";if(!e)return;if(e[t])return e[t];let i=t.split(s),r=e;for(let e=0;e-1&&ae&&e.replace("_","-"),b={type:"logger",log(e){this.output("log",e)},warn(e){this.output("warn",e)},error(e){this.output("error",e)},output(e,t){console&&console[e]&&console[e].apply(console,t)}};class x{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.init(e,t)}init(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.prefix=t.prefix||"i18next:",this.logger=e||b,this.options=t,this.debug=t.debug}log(){for(var e=arguments.length,t=Array(e),s=0;s{this.observers[e]||(this.observers[e]=new Map);let s=this.observers[e].get(t)||0;this.observers[e].set(t,s+1)}),this}off(e,t){if(this.observers[e]){if(!t)return void delete this.observers[e];this.observers[e].delete(t)}}emit(e){for(var t=arguments.length,s=Array(t>1?t-1:0),i=1;i{let[t,i]=e;for(let e=0;e{let[i,r]=t;for(let t=0;t1&&void 0!==arguments[1]?arguments[1]:{ns:["translation"],defaultNS:"translation"};super(),this.data=e||{},this.options=t,void 0===this.options.keySeparator&&(this.options.keySeparator="."),void 0===this.options.ignoreJSONStructure&&(this.options.ignoreJSONStructure=!0)}addNamespaces(e){0>this.options.ns.indexOf(e)&&this.options.ns.push(e)}removeNamespaces(e){let t=this.options.ns.indexOf(e);t>-1&&this.options.ns.splice(t,1)}getResource(e,t,s){let r,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},a=void 0!==o.keySeparator?o.keySeparator:this.options.keySeparator,n=void 0!==o.ignoreJSONStructure?o.ignoreJSONStructure:this.options.ignoreJSONStructure;e.indexOf(".")>-1?r=e.split("."):(r=[e,t],s&&(Array.isArray(s)?r.push(...s):i(s)&&a?r.push(...s.split(a)):r.push(s)));let l=p(this.data,r);return(!l&&!t&&!s&&e.indexOf(".")>-1&&(e=r[0],t=r[1],s=r.slice(2).join(".")),!l&&n&&i(s))?v(this.data&&this.data[e]&&this.data[e][t],s,a):l}addResource(e,t,s,i){let r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{silent:!1},o=void 0!==r.keySeparator?r.keySeparator:this.options.keySeparator,a=[e,t];s&&(a=a.concat(o?s.split(o):s)),e.indexOf(".")>-1&&(a=e.split("."),i=t,t=a[1]),this.addNamespaces(t),u(this.data,a,i),r.silent||this.emit("added",e,t,s,i)}addResources(e,t,s){let r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{silent:!1};for(let r in s)(i(s[r])||Array.isArray(s[r]))&&this.addResource(e,t,r,s[r],{silent:!0});r.silent||this.emit("added",e,t,s)}addResourceBundle(e,t,s,i,r){let o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{silent:!1,skipCopy:!1},a=[e,t];e.indexOf(".")>-1&&(a=e.split("."),i=s,s=t,t=a[1]),this.addNamespaces(t);let n=p(this.data,a)||{};o.skipCopy||(s=JSON.parse(JSON.stringify(s))),i?g(n,s,r):n={...n,...s},u(this.data,a,n),o.silent||this.emit("added",e,t,s)}removeResourceBundle(e,t){this.hasResourceBundle(e,t)&&delete this.data[e][t],this.removeNamespaces(t),this.emit("removed",e,t)}hasResourceBundle(e,t){return void 0!==this.getResource(e,t)}getResourceBundle(e,t){return(t||(t=this.options.defaultNS),"v1"===this.options.compatibilityAPI)?{...this.getResource(e,t)}:this.getResource(e,t)}getDataByLanguage(e){return this.data[e]}hasLanguageSomeTranslations(e){let t=this.getDataByLanguage(e);return!!(t&&Object.keys(t)||[]).find(e=>t[e]&&Object.keys(t[e]).length>0)}toJSON(){return this.data}}var O={processors:{},addPostProcessor(e){this.processors[e.name]=e},handle(e,t,s,i,r){return e.forEach(e=>{this.processors[e]&&(t=this.processors[e].process(t,s,i,r))}),t}};let $={};class N extends S{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};super(),((e,t,s)=>{e.forEach(e=>{t[e]&&(s[e]=t[e])})})(["resourceStore","languageUtils","pluralResolver","interpolator","backendConnector","i18nFormat","utils"],e,this),this.options=t,void 0===this.options.keySeparator&&(this.options.keySeparator="."),this.logger=k.create("translator")}changeLanguage(e){e&&(this.language=e)}exists(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{interpolation:{}};if(null==e)return!1;let s=this.resolve(e,t);return s&&void 0!==s.res}extractFromKey(e,t){let s=void 0!==t.nsSeparator?t.nsSeparator:this.options.nsSeparator;void 0===s&&(s=":");let r=void 0!==t.keySeparator?t.keySeparator:this.options.keySeparator,o=t.ns||this.options.defaultNS||[],a=s&&e.indexOf(s)>-1,n=!this.options.userDefinedKeySeparator&&!t.keySeparator&&!this.options.userDefinedNsSeparator&&!t.nsSeparator&&!((e,t,s)=>{t=t||"",s=s||"";let i=f.filter(e=>0>t.indexOf(e)&&0>s.indexOf(e));if(0===i.length)return!0;let r=m.getRegExp(`(${i.map(e=>"?"===e?"\\?":e).join("|")})`),o=!r.test(e);if(!o){let t=e.indexOf(s);t>0&&!r.test(e.substring(0,t))&&(o=!0)}return o})(e,s,r);if(a&&!n){let t=e.match(this.interpolator.nestingRegexp);if(t&&t.length>0)return{key:e,namespaces:i(o)?[o]:o};let a=e.split(s);(s!==r||s===r&&this.options.ns.indexOf(a[0])>-1)&&(o=a.shift()),e=a.join(r)}return{key:e,namespaces:i(o)?[o]:o}}translate(e,t,s){if("object"!=typeof t&&this.options.overloadTranslationOptionHandler&&(t=this.options.overloadTranslationOptionHandler(arguments)),"object"==typeof t&&(t={...t}),t||(t={}),null==e)return"";Array.isArray(e)||(e=[String(e)]);let r=void 0!==t.returnDetails?t.returnDetails:this.options.returnDetails,o=void 0!==t.keySeparator?t.keySeparator:this.options.keySeparator,{key:a,namespaces:n}=this.extractFromKey(e[e.length-1],t),l=n[n.length-1],h=t.lng||this.language,u=t.appendNamespaceToCIMode||this.options.appendNamespaceToCIMode;if(h&&"cimode"===h.toLowerCase()){if(u){let e=t.nsSeparator||this.options.nsSeparator;return r?{res:`${l}${e}${a}`,usedKey:a,exactUsedKey:a,usedLng:h,usedNS:l,usedParams:this.getUsedParamsDetails(t)}:`${l}${e}${a}`}return r?{res:a,usedKey:a,exactUsedKey:a,usedLng:h,usedNS:l,usedParams:this.getUsedParamsDetails(t)}:a}let p=this.resolve(e,t),g=p&&p.res,d=p&&p.usedKey||a,c=p&&p.exactUsedKey||a,f=Object.prototype.toString.apply(g),m=void 0!==t.joinArrays?t.joinArrays:this.options.joinArrays,v=!this.i18nFormat||this.i18nFormat.handleAsObject,y=!i(g)&&"boolean"!=typeof g&&"number"!=typeof g;if(v&&g&&y&&0>["[object Number]","[object Function]","[object RegExp]"].indexOf(f)&&!(i(m)&&Array.isArray(g))){if(!t.returnObjects&&!this.options.returnObjects){this.options.returnedObjectHandler||this.logger.warn("accessing an object - but returnObjects options is not enabled!");let e=this.options.returnedObjectHandler?this.options.returnedObjectHandler(d,g,{...t,ns:n}):`key '${a} (${this.language})' returned an object instead of string.`;return r?(p.res=e,p.usedParams=this.getUsedParamsDetails(t),p):e}if(o){let e=Array.isArray(g),s=e?[]:{},i=e?c:d;for(let e in g)if(Object.prototype.hasOwnProperty.call(g,e)){let r=`${i}${o}${e}`;s[e]=this.translate(r,{...t,joinArrays:!1,ns:n}),s[e]===r&&(s[e]=g[e])}g=s}}else if(v&&i(m)&&Array.isArray(g))(g=g.join(m))&&(g=this.extendTranslation(g,e,t,s));else{let r=!1,n=!1,u=void 0!==t.count&&!i(t.count),d=N.hasDefaultValue(t),c=u?this.pluralResolver.getSuffix(h,t.count,t):"",f=t.ordinal&&u?this.pluralResolver.getSuffix(h,t.count,{ordinal:!1}):"",m=u&&!t.ordinal&&0===t.count&&this.pluralResolver.shouldUseIntlApi(),v=m&&t[`defaultValue${this.options.pluralSeparator}zero`]||t[`defaultValue${c}`]||t[`defaultValue${f}`]||t.defaultValue;!this.isValidLookup(g)&&d&&(r=!0,g=v),this.isValidLookup(g)||(n=!0,g=a);let y=(t.missingKeyNoValueFallbackToKey||this.options.missingKeyNoValueFallbackToKey)&&n?void 0:g,b=d&&v!==g&&this.options.updateMissing;if(n||r||b){if(this.logger.log(b?"updateKey":"missingKey",h,l,a,b?v:g),o){let e=this.resolve(a,{...t,keySeparator:!1});e&&e.res&&this.logger.warn("Seems the loaded translations were in flat JSON format instead of nested. Either set keySeparator: false on init or make sure your translations are published in nested format.")}let e=[],s=this.languageUtils.getFallbackCodes(this.options.fallbackLng,t.lng||this.language);if("fallback"===this.options.saveMissingTo&&s&&s[0])for(let t=0;t{let r=d&&i!==g?i:y;this.options.missingKeyHandler?this.options.missingKeyHandler(e,l,s,r,b,t):this.backendConnector&&this.backendConnector.saveMissing&&this.backendConnector.saveMissing(e,l,s,r,b,t),this.emit("missingKey",e,l,s,g)};this.options.saveMissing&&(this.options.saveMissingPlurals&&u?e.forEach(e=>{let s=this.pluralResolver.getSuffixes(e,t);m&&t[`defaultValue${this.options.pluralSeparator}zero`]&&0>s.indexOf(`${this.options.pluralSeparator}zero`)&&s.push(`${this.options.pluralSeparator}zero`),s.forEach(s=>{i([e],a+s,t[`defaultValue${s}`]||v)})}):i(e,a,v))}g=this.extendTranslation(g,e,t,p,s),n&&g===a&&this.options.appendNamespaceToMissingKey&&(g=`${l}:${a}`),(n||r)&&this.options.parseMissingKeyHandler&&(g="v1"!==this.options.compatibilityAPI?this.options.parseMissingKeyHandler(this.options.appendNamespaceToMissingKey?`${l}:${a}`:a,r?g:void 0):this.options.parseMissingKeyHandler(g))}return r?(p.res=g,p.usedParams=this.getUsedParamsDetails(t),p):g}extendTranslation(e,t,s,r,o){var a=this;if(this.i18nFormat&&this.i18nFormat.parse)e=this.i18nFormat.parse(e,{...this.options.interpolation.defaultVariables,...s},s.lng||this.language||r.usedLng,r.usedNS,r.usedKey,{resolved:r});else if(!s.skipInterpolation){let n;s.interpolation&&this.interpolator.init({...s,...{interpolation:{...this.options.interpolation,...s.interpolation}}});let l=i(e)&&(s&&s.interpolation&&void 0!==s.interpolation.skipOnVariables?s.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables);if(l){let t=e.match(this.interpolator.nestingRegexp);n=t&&t.length}let h=s.replace&&!i(s.replace)?s.replace:s;if(this.options.interpolation.defaultVariables&&(h={...this.options.interpolation.defaultVariables,...h}),e=this.interpolator.interpolate(e,h,s.lng||this.language||r.usedLng,s),l){let t=e.match(this.interpolator.nestingRegexp);n<(t&&t.length)&&(s.nest=!1)}!s.lng&&"v1"!==this.options.compatibilityAPI&&r&&r.res&&(s.lng=this.language||r.usedLng),!1!==s.nest&&(e=this.interpolator.nest(e,function(){for(var e=arguments.length,i=Array(e),r=0;r1&&void 0!==arguments[1]?arguments[1]:{};return i(e)&&(e=[e]),e.forEach(e=>{if(this.isValidLookup(t))return;let l=this.extractFromKey(e,n),h=l.key;s=h;let u=l.namespaces;this.options.fallbackNS&&(u=u.concat(this.options.fallbackNS));let p=void 0!==n.count&&!i(n.count),g=p&&!n.ordinal&&0===n.count&&this.pluralResolver.shouldUseIntlApi(),d=void 0!==n.context&&(i(n.context)||"number"==typeof n.context)&&""!==n.context,c=n.lngs?n.lngs:this.languageUtils.toResolveHierarchy(n.lng||this.language,n.fallbackLng);u.forEach(e=>{this.isValidLookup(t)||(a=e,!$[`${c[0]}-${e}`]&&this.utils&&this.utils.hasLoadedNamespace&&!this.utils.hasLoadedNamespace(a)&&($[`${c[0]}-${e}`]=!0,this.logger.warn(`key "${s}" for languages "${c.join(", ")}" won't get resolved as namespace "${a}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!")),c.forEach(s=>{let i;if(this.isValidLookup(t))return;o=s;let a=[h];if(this.i18nFormat&&this.i18nFormat.addLookupKeys)this.i18nFormat.addLookupKeys(a,h,s,e,n);else{let e;p&&(e=this.pluralResolver.getSuffix(s,n.count,n));let t=`${this.options.pluralSeparator}zero`,i=`${this.options.pluralSeparator}ordinal${this.options.pluralSeparator}`;if(p&&(a.push(h+e),n.ordinal&&0===e.indexOf(i)&&a.push(h+e.replace(i,this.options.pluralSeparator)),g&&a.push(h+t)),d){let s=`${h}${this.options.contextSeparator}${n.context}`;a.push(s),p&&(a.push(s+e),n.ordinal&&0===e.indexOf(i)&&a.push(s+e.replace(i,this.options.pluralSeparator)),g&&a.push(s+t))}}for(;i=a.pop();)this.isValidLookup(t)||(r=i,t=this.getResource(s,e,i,n))}))})}),{res:t,usedKey:s,exactUsedKey:r,usedLng:o,usedNS:a}}isValidLookup(e){return void 0!==e&&!(!this.options.returnNull&&null===e)&&!(!this.options.returnEmptyString&&""===e)}getResource(e,t,s){let i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};return this.i18nFormat&&this.i18nFormat.getResource?this.i18nFormat.getResource(e,t,s,i):this.resourceStore.getResource(e,t,s,i)}getUsedParamsDetails(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.replace&&!i(e.replace),s=t?e.replace:e;if(t&&void 0!==e.count&&(s.count=e.count),this.options.interpolation.defaultVariables&&(s={...this.options.interpolation.defaultVariables,...s}),!t)for(let e of(s={...s},["defaultValue","ordinal","context","replace","lng","lngs","fallbackLng","ns","keySeparator","nsSeparator","returnObjects","returnDetails","joinArrays","postProcess","interpolation"]))delete s[e];return s}static hasDefaultValue(e){let t="defaultValue";for(let s in e)if(Object.prototype.hasOwnProperty.call(e,s)&&t===s.substring(0,t.length)&&void 0!==e[s])return!0;return!1}}let w=e=>e.charAt(0).toUpperCase()+e.slice(1);class R{constructor(e){this.options=e,this.supportedLngs=this.options.supportedLngs||!1,this.logger=k.create("languageUtils")}getScriptPartFromCode(e){if(!(e=y(e))||0>e.indexOf("-"))return null;let t=e.split("-");return 2===t.length||(t.pop(),"x"===t[t.length-1].toLowerCase())?null:this.formatLanguageCode(t.join("-"))}getLanguagePartFromCode(e){if(!(e=y(e))||0>e.indexOf("-"))return e;let t=e.split("-");return this.formatLanguageCode(t[0])}formatLanguageCode(e){if(i(e)&&e.indexOf("-")>-1){if("u">typeof Intl&&void 0!==Intl.getCanonicalLocales)try{let t=Intl.getCanonicalLocales(e)[0];if(t&&this.options.lowerCaseLng&&(t=t.toLowerCase()),t)return t}catch(e){}let t=["hans","hant","latn","cyrl","cans","mong","arab"],s=e.split("-");return this.options.lowerCaseLng?s=s.map(e=>e.toLowerCase()):2===s.length?(s[0]=s[0].toLowerCase(),s[1]=s[1].toUpperCase(),t.indexOf(s[1].toLowerCase())>-1&&(s[1]=w(s[1].toLowerCase()))):3===s.length&&(s[0]=s[0].toLowerCase(),2===s[1].length&&(s[1]=s[1].toUpperCase()),"sgn"!==s[0]&&2===s[2].length&&(s[2]=s[2].toUpperCase()),t.indexOf(s[1].toLowerCase())>-1&&(s[1]=w(s[1].toLowerCase())),t.indexOf(s[2].toLowerCase())>-1&&(s[2]=w(s[2].toLowerCase()))),s.join("-")}return this.options.cleanCode||this.options.lowerCaseLng?e.toLowerCase():e}isSupportedCode(e){return("languageOnly"===this.options.load||this.options.nonExplicitSupportedLngs)&&(e=this.getLanguagePartFromCode(e)),!this.supportedLngs||!this.supportedLngs.length||this.supportedLngs.indexOf(e)>-1}getBestMatchFromCodes(e){let t;return e?(e.forEach(e=>{if(t)return;let s=this.formatLanguageCode(e);(!this.options.supportedLngs||this.isSupportedCode(s))&&(t=s)}),!t&&this.options.supportedLngs&&e.forEach(e=>{if(t)return;let s=this.getLanguagePartFromCode(e);if(this.isSupportedCode(s))return t=s;t=this.options.supportedLngs.find(e=>{if(e===s||!(0>e.indexOf("-")&&0>s.indexOf("-"))&&(e.indexOf("-")>0&&0>s.indexOf("-")&&e.substring(0,e.indexOf("-"))===s||0===e.indexOf(s)&&s.length>1))return e})}),t||(t=this.getFallbackCodes(this.options.fallbackLng)[0]),t):null}getFallbackCodes(e,t){if(!e)return[];if("function"==typeof e&&(e=e(t)),i(e)&&(e=[e]),Array.isArray(e))return e;if(!t)return e.default||[];let s=e[t];return s||(s=e[this.getScriptPartFromCode(t)]),s||(s=e[this.formatLanguageCode(t)]),s||(s=e[this.getLanguagePartFromCode(t)]),s||(s=e.default),s||[]}toResolveHierarchy(e,t){let s=this.getFallbackCodes(t||this.options.fallbackLng||[],e),r=[],o=e=>{e&&(this.isSupportedCode(e)?r.push(e):this.logger.warn(`rejecting language code not found in supportedLngs: ${e}`))};return i(e)&&(e.indexOf("-")>-1||e.indexOf("_")>-1)?("languageOnly"!==this.options.load&&o(this.formatLanguageCode(e)),"languageOnly"!==this.options.load&&"currentOnly"!==this.options.load&&o(this.getScriptPartFromCode(e)),"currentOnly"!==this.options.load&&o(this.getLanguagePartFromCode(e))):i(e)&&o(this.formatLanguageCode(e)),s.forEach(e=>{0>r.indexOf(e)&&o(this.formatLanguageCode(e))}),r}}let C=[{lngs:["ach","ak","am","arn","br","fil","gun","ln","mfe","mg","mi","oc","pt","pt-BR","tg","tl","ti","tr","uz","wa"],nr:[1,2],fc:1},{lngs:["af","an","ast","az","bg","bn","ca","da","de","dev","el","en","eo","es","et","eu","fi","fo","fur","fy","gl","gu","ha","hi","hu","hy","ia","it","kk","kn","ku","lb","mai","ml","mn","mr","nah","nap","nb","ne","nl","nn","no","nso","pa","pap","pms","ps","pt-PT","rm","sco","se","si","so","son","sq","sv","sw","ta","te","tk","ur","yo"],nr:[1,2],fc:2},{lngs:["ay","bo","cgg","fa","ht","id","ja","jbo","ka","km","ko","ky","lo","ms","sah","su","th","tt","ug","vi","wo","zh"],nr:[1],fc:3},{lngs:["be","bs","cnr","dz","hr","ru","sr","uk"],nr:[1,2,5],fc:4},{lngs:["ar"],nr:[0,1,2,3,11,100],fc:5},{lngs:["cs","sk"],nr:[1,2,5],fc:6},{lngs:["csb","pl"],nr:[1,2,5],fc:7},{lngs:["cy"],nr:[1,2,3,8],fc:8},{lngs:["fr"],nr:[1,2],fc:9},{lngs:["ga"],nr:[1,2,3,7,11],fc:10},{lngs:["gd"],nr:[1,2,3,20],fc:11},{lngs:["is"],nr:[1,2],fc:12},{lngs:["jv"],nr:[0,1],fc:13},{lngs:["kw"],nr:[1,2,3,4],fc:14},{lngs:["lt"],nr:[1,2,10],fc:15},{lngs:["lv"],nr:[1,2,0],fc:16},{lngs:["mk"],nr:[1,2],fc:17},{lngs:["mnk"],nr:[0,1,2],fc:18},{lngs:["mt"],nr:[1,2,11,20],fc:19},{lngs:["or"],nr:[2,1],fc:2},{lngs:["ro"],nr:[1,2,20],fc:20},{lngs:["sl"],nr:[5,1,2,3],fc:21},{lngs:["he","iw"],nr:[1,2,20,21],fc:22}],P={1:e=>Number(e>1),2:e=>Number(1!=e),3:e=>0,4:e=>Number(e%10==1&&e%100!=11?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2),5:e=>Number(0==e?0:1==e?1:2==e?2:e%100>=3&&e%100<=10?3:e%100>=11?4:5),6:e=>Number(1==e?0:e>=2&&e<=4?1:2),7:e=>Number(1==e?0:e%10>=2&&e%10<=4&&(e%100<10||e%100>=20)?1:2),8:e=>Number(1==e?0:2==e?1:8!=e&&11!=e?2:3),9:e=>Number(e>=2),10:e=>Number(1==e?0:2==e?1:e<7?2:e<11?3:4),11:e=>Number(1==e||11==e?0:2==e||12==e?1:e>2&&e<20?2:3),12:e=>Number(e%10!=1||e%100==11),13:e=>Number(0!==e),14:e=>Number(1==e?0:2==e?1:3==e?2:3),15:e=>Number(e%10==1&&e%100!=11?0:e%10>=2&&(e%100<10||e%100>=20)?1:2),16:e=>Number(e%10==1&&e%100!=11?0:0!==e?1:2),17:e=>Number(+(1!=e&&(e%10!=1||e%100==11))),18:e=>Number(0==e?0:1==e?1:2),19:e=>Number(1==e?0:0==e||e%100>1&&e%100<11?1:e%100>10&&e%100<20?2:3),20:e=>Number(1==e?0:0==e||e%100>0&&e%100<20?1:2),21:e=>Number(e%100==1?1:e%100==2?2:3*(e%100==3||e%100==4)),22:e=>Number(1==e?0:2==e?1:(e<0||e>10)&&e%10==0?2:3)},j=["v1","v2","v3"],E=["v4"],I={zero:0,one:1,two:2,few:3,many:4,other:5};class F{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};this.languageUtils=e,this.options=t,this.logger=k.create("pluralResolver"),(!this.options.compatibilityJSON||E.includes(this.options.compatibilityJSON))&&("u"{let e={};return C.forEach(t=>{t.lngs.forEach(s=>{e[s]={numbers:t.nr,plurals:P[t.fc]}})}),e})(),this.pluralRulesCache={}}addRule(e,t){this.rules[e]=t}clearCache(){this.pluralRulesCache={}}getRule(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(this.shouldUseIntlApi()){let s,i=y("dev"===e?"en":e),r=t.ordinal?"ordinal":"cardinal",o=JSON.stringify({cleanedCode:i,type:r});if(o in this.pluralRulesCache)return this.pluralRulesCache[o];try{s=new Intl.PluralRules(i,{type:r})}catch(r){if(!e.match(/-|_/))return;let i=this.languageUtils.getLanguagePartFromCode(e);s=this.getRule(i,t)}return this.pluralRulesCache[o]=s,s}return this.rules[e]||this.rules[this.languageUtils.getLanguagePartFromCode(e)]}needsPlural(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s=this.getRule(e,t);return this.shouldUseIntlApi()?s&&s.resolvedOptions().pluralCategories.length>1:s&&s.numbers.length>1}getPluralFormsOfKey(e,t){let s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.getSuffixes(e,s).map(e=>`${t}${e}`)}getSuffixes(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},s=this.getRule(e,t);return s?this.shouldUseIntlApi()?s.resolvedOptions().pluralCategories.sort((e,t)=>I[e]-I[t]).map(e=>`${this.options.prepend}${t.ordinal?`ordinal${this.options.prepend}`:""}${e}`):s.numbers.map(s=>this.getSuffix(e,s,t)):[]}getSuffix(e,t){let s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},i=this.getRule(e,s);return i?this.shouldUseIntlApi()?`${this.options.prepend}${s.ordinal?`ordinal${this.options.prepend}`:""}${i.select(t)}`:this.getSuffixRetroCompatible(i,t):(this.logger.warn(`no plural rule found for: ${e}`),"")}getSuffixRetroCompatible(e,t){let s=e.noAbs?e.plurals(t):e.plurals(Math.abs(t)),i=e.numbers[s];this.options.simplifyPluralSuffix&&2===e.numbers.length&&1===e.numbers[0]&&(2===i?i="plural":1===i&&(i=""));let r=()=>this.options.prepend&&i.toString()?this.options.prepend+i.toString():i.toString();return"v1"===this.options.compatibilityJSON?1===i?"":"number"==typeof i?`_plural_${i.toString()}`:r():"v2"===this.options.compatibilityJSON||this.options.simplifyPluralSuffix&&2===e.numbers.length&&1===e.numbers[0]?r():this.options.prepend&&s.toString()?this.options.prepend+s.toString():s.toString()}shouldUseIntlApi(){return!j.includes(this.options.compatibilityJSON)}}let A=function(e,t,s){let r,o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:".",a=!(arguments.length>4)||void 0===arguments[4]||arguments[4],n=void 0!==(r=p(e,s))?r:p(t,s);return!n&&a&&i(s)&&void 0===(n=v(e,s,o))&&(n=v(t,s,o)),n};class D{constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.logger=k.create("interpolator"),this.options=e,this.format=e.interpolation&&e.interpolation.format||(e=>e),this.init(e)}init(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};e.interpolation||(e.interpolation={escapeValue:!0});let{escape:t,escapeValue:s,useRawValueToEscape:i,prefix:r,prefixEscaped:o,suffix:a,suffixEscaped:n,formatSeparator:l,unescapeSuffix:h,unescapePrefix:u,nestingPrefix:p,nestingPrefixEscaped:g,nestingSuffix:d,nestingSuffixEscaped:f,nestingOptionsSeparator:m,maxReplaces:v,alwaysFormat:y}=e.interpolation;this.escape=void 0!==t?t:c,this.escapeValue=void 0===s||s,this.useRawValueToEscape=void 0!==i&&i,this.prefix=r?r.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"):o||"{{",this.suffix=a?a.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"):n||"}}",this.formatSeparator=l||",",this.unescapePrefix=h?"":u||"-",this.unescapeSuffix=this.unescapePrefix?"":h||"",this.nestingPrefix=p?p.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"):g||"$t(".replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),this.nestingSuffix=d?d.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"):f||")".replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g,"\\$&"),this.nestingOptionsSeparator=m||",",this.maxReplaces=v||1e3,this.alwaysFormat=void 0!==y&&y,this.resetRegExp()}reset(){this.options&&this.init(this.options)}resetRegExp(){let e=(e,t)=>e&&e.source===t?(e.lastIndex=0,e):RegExp(t,"g");this.regexp=e(this.regexp,`${this.prefix}(.+?)${this.suffix}`),this.regexpUnescape=e(this.regexpUnescape,`${this.prefix}${this.unescapePrefix}(.+?)${this.unescapeSuffix}${this.suffix}`),this.nestingRegexp=e(this.nestingRegexp,`${this.nestingPrefix}(.+?)${this.nestingSuffix}`)}interpolate(e,t,s,r){let a,n,l,h=this.options&&this.options.interpolation&&this.options.interpolation.defaultVariables||{},u=e=>{if(0>e.indexOf(this.formatSeparator)){let i=A(t,h,e,this.options.keySeparator,this.options.ignoreJSONStructure);return this.alwaysFormat?this.format(i,void 0,s,{...r,...t,interpolationkey:e}):i}let i=e.split(this.formatSeparator),o=i.shift().trim(),a=i.join(this.formatSeparator).trim();return this.format(A(t,h,o,this.options.keySeparator,this.options.ignoreJSONStructure),a,s,{...r,...t,interpolationkey:o})};this.resetRegExp();let p=r&&r.missingInterpolationHandler||this.options.missingInterpolationHandler,g=r&&r.interpolation&&void 0!==r.interpolation.skipOnVariables?r.interpolation.skipOnVariables:this.options.interpolation.skipOnVariables;return[{regex:this.regexpUnescape,safeValue:e=>e.replace(/\$/g,"$$$$")},{regex:this.regexp,safeValue:e=>this.escapeValue?this.escape(e).replace(/\$/g,"$$$$"):e.replace(/\$/g,"$$$$")}].forEach(t=>{for(l=0;a=t.regex.exec(e);){let s=a[1].trim();if(void 0===(n=u(s)))if("function"==typeof p){let t=p(e,a,r);n=i(t)?t:""}else if(r&&Object.prototype.hasOwnProperty.call(r,s))n="";else if(g){n=a[0];continue}else this.logger.warn(`missed to pass in variable ${s} for interpolating ${e}`),n="";else i(n)||this.useRawValueToEscape||(n=o(n));let h=t.safeValue(n);if(e=e.replace(a[0],h),g?(t.regex.lastIndex+=n.length,t.regex.lastIndex-=a[0].length):t.regex.lastIndex=0,++l>=this.maxReplaces)break}}),e}nest(e,t){let s,r,a,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},l=(e,t)=>{let s=this.nestingOptionsSeparator;if(0>e.indexOf(s))return e;let i=e.split(RegExp(`${s}[ ]*{`)),r=`{${i[1]}`;e=i[0];let o=(r=this.interpolate(r,a)).match(/'/g),n=r.match(/"/g);(o&&o.length%2==0&&!n||n.length%2!=0)&&(r=r.replace(/'/g,'"'));try{a=JSON.parse(r),t&&(a={...t,...a})}catch(t){return this.logger.warn(`failed parsing options string in nesting for key ${e}`,t),`${e}${s}${r}`}return a.defaultValue&&a.defaultValue.indexOf(this.prefix)>-1&&delete a.defaultValue,e};for(;s=this.nestingRegexp.exec(e);){let h=[];(a=(a={...n}).replace&&!i(a.replace)?a.replace:a).applyPostProcessor=!1,delete a.defaultValue;let u=!1;if(-1!==s[0].indexOf(this.formatSeparator)&&!/{.*}/.test(s[1])){let e=s[1].split(this.formatSeparator).map(e=>e.trim());s[1]=e.shift(),h=e,u=!0}if((r=t(l.call(this,s[1].trim(),a),a))&&s[0]===e&&!i(r))return r;i(r)||(r=o(r)),r||(this.logger.warn(`missed to resolve ${s[1]} for nesting ${e}`),r=""),u&&(r=h.reduce((e,t)=>this.format(e,t,n.lng,{...n,interpolationkey:s[1].trim()}),r.trim())),e=e.replace(s[0],r),this.regexp.lastIndex=0}return e}}let V=e=>{let t={};return(s,i,r)=>{let o=r;r&&r.interpolationkey&&r.formatParams&&r.formatParams[r.interpolationkey]&&r[r.interpolationkey]&&(o={...o,[r.interpolationkey]:void 0});let a=i+JSON.stringify(o),n=t[a];return n||(n=e(y(i),r),t[a]=n),n(s)}};class U{constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};this.logger=k.create("formatter"),this.options=e,this.formats={number:V((e,t)=>{let s=new Intl.NumberFormat(e,{...t});return e=>s.format(e)}),currency:V((e,t)=>{let s=new Intl.NumberFormat(e,{...t,style:"currency"});return e=>s.format(e)}),datetime:V((e,t)=>{let s=new Intl.DateTimeFormat(e,{...t});return e=>s.format(e)}),relativetime:V((e,t)=>{let s=new Intl.RelativeTimeFormat(e,{...t});return e=>s.format(e,t.range||"day")}),list:V((e,t)=>{let s=new Intl.ListFormat(e,{...t});return e=>s.format(e)})},this.init(e)}init(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{interpolation:{}};this.formatSeparator=t.interpolation.formatSeparator||","}add(e,t){this.formats[e.toLowerCase().trim()]=t}addCached(e,t){this.formats[e.toLowerCase().trim()]=V(t)}format(e,t,s){let i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},r=t.split(this.formatSeparator);if(r.length>1&&r[0].indexOf("(")>1&&0>r[0].indexOf(")")&&r.find(e=>e.indexOf(")")>-1)){let e=r.findIndex(e=>e.indexOf(")")>-1);r[0]=[r[0],...r.splice(1,e)].join(this.formatSeparator)}return r.reduce((e,t)=>{let{formatName:r,formatOptions:o}=(e=>{let t=e.toLowerCase().trim(),s={};if(e.indexOf("(")>-1){let i=e.split("(");t=i[0].toLowerCase().trim();let r=i[1].substring(0,i[1].length-1);"currency"===t&&0>r.indexOf(":")?s.currency||(s.currency=r.trim()):"relativetime"===t&&0>r.indexOf(":")?s.range||(s.range=r.trim()):r.split(";").forEach(e=>{if(e){let[t,...i]=e.split(":"),r=i.join(":").trim().replace(/^'+|'+$/g,""),o=t.trim();s[o]||(s[o]=r),"false"===r&&(s[o]=!1),"true"===r&&(s[o]=!0),isNaN(r)||(s[o]=parseInt(r,10))}})}return{formatName:t,formatOptions:s}})(t);if(this.formats[r]){let t=e;try{let a=i&&i.formatParams&&i.formatParams[i.interpolationkey]||{},n=a.locale||a.lng||i.locale||i.lng||s;t=this.formats[r](e,n,{...o,...i,...a})}catch(e){this.logger.warn(e)}return t}return this.logger.warn(`there was no format function for ${r}`),e},e)}}class T extends S{constructor(e,t,s){let i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};super(),this.backend=e,this.store=t,this.services=s,this.languageUtils=s.languageUtils,this.options=i,this.logger=k.create("backendConnector"),this.waitingReads=[],this.maxParallelReads=i.maxParallelReads||10,this.readingCalls=0,this.maxRetries=i.maxRetries>=0?i.maxRetries:5,this.retryTimeout=i.retryTimeout>=1?i.retryTimeout:350,this.state={},this.queue=[],this.backend&&this.backend.init&&this.backend.init(s,i.backend,i)}queueLoad(e,t,s,i){let r={},o={},a={},n={};return e.forEach(e=>{let i=!0;t.forEach(t=>{let a=`${e}|${t}`;!s.reload&&this.store.hasResourceBundle(e,t)?this.state[a]=2:this.state[a]<0||(1===this.state[a]?void 0===o[a]&&(o[a]=!0):(this.state[a]=1,i=!1,void 0===o[a]&&(o[a]=!0),void 0===r[a]&&(r[a]=!0),void 0===n[t]&&(n[t]=!0)))}),i||(a[e]=!0)}),(Object.keys(r).length||Object.keys(o).length)&&this.queue.push({pending:o,pendingCount:Object.keys(o).length,loaded:{},errors:[],callback:i}),{toLoad:Object.keys(r),pending:Object.keys(o),toLoadLanguages:Object.keys(a),toLoadNamespaces:Object.keys(n)}}loaded(e,t,s){let i=e.split("|"),r=i[0],o=i[1];t&&this.emit("failedLoading",r,o,t),!t&&s&&this.store.addResourceBundle(r,o,s,void 0,void 0,{skipCopy:!0}),this.state[e]=t?-1:2,t&&s&&(this.state[e]=0);let a={};this.queue.forEach(s=>{((e,t,s,i)=>{let{obj:r,k:o}=h(e,t,Object);r[o]=r[o]||[],r[o].push(s)})(s.loaded,[r],o),void 0!==s.pending[e]&&(delete s.pending[e],s.pendingCount--),t&&s.errors.push(t),0!==s.pendingCount||s.done||(Object.keys(s.loaded).forEach(e=>{a[e]||(a[e]={});let t=s.loaded[e];t.length&&t.forEach(t=>{void 0===a[e][t]&&(a[e][t]=!0)})}),s.done=!0,s.errors.length?s.callback(s.errors):s.callback())}),this.emit("loaded",a),this.queue=this.queue.filter(e=>!e.done)}read(e,t,s){let i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:0,r=arguments.length>4&&void 0!==arguments[4]?arguments[4]:this.retryTimeout,o=arguments.length>5?arguments[5]:void 0;if(!e.length)return o(null,{});if(this.readingCalls>=this.maxParallelReads)return void this.waitingReads.push({lng:e,ns:t,fcName:s,tried:i,wait:r,callback:o});this.readingCalls++;let a=(a,n)=>{if(this.readingCalls--,this.waitingReads.length>0){let e=this.waitingReads.shift();this.read(e.lng,e.ns,e.fcName,e.tried,e.wait,e.callback)}a&&n&&i{this.read.call(this,e,t,s,i+1,2*r,o)},r):o(a,n)},n=this.backend[s].bind(this.backend);if(2===n.length){try{let s=n(e,t);s&&"function"==typeof s.then?s.then(e=>a(null,e)).catch(a):a(null,s)}catch(e){a(e)}return}return n(e,t,a)}prepareLoading(e,t){let s=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3?arguments[3]:void 0;if(!this.backend)return this.logger.warn("No backend was added via i18next.use. Will not load resources."),r&&r();i(e)&&(e=this.languageUtils.toResolveHierarchy(e)),i(t)&&(t=[t]);let o=this.queueLoad(e,t,s,r);if(!o.toLoad.length)return o.pending.length||r(),null;o.toLoad.forEach(e=>{this.loadOne(e)})}load(e,t,s){this.prepareLoading(e,t,{},s)}reload(e,t,s){this.prepareLoading(e,t,{reload:!0},s)}loadOne(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",s=e.split("|"),i=s[0],r=s[1];this.read(i,r,"read",void 0,void 0,(s,o)=>{s&&this.logger.warn(`${t}loading namespace ${r} for language ${i} failed`,s),!s&&o&&this.logger.log(`${t}loaded namespace ${r} for language ${i}`,o),this.loaded(e,s,o)})}saveMissing(e,t,s,i,r){let o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:{},a=arguments.length>6&&void 0!==arguments[6]?arguments[6]:()=>{};if(this.services.utils&&this.services.utils.hasLoadedNamespace&&!this.services.utils.hasLoadedNamespace(t))return void this.logger.warn(`did not save key "${s}" as the namespace "${t}" was not yet loaded`,"This means something IS WRONG in your setup. You access the t function before i18next.init / i18next.loadNamespace / i18next.changeLanguage was done. Wait for the callback or Promise to resolve before accessing it!!!");if(null!=s&&""!==s){if(this.backend&&this.backend.create){let n={...o,isUpdate:r},l=this.backend.create.bind(this.backend);if(l.length<6)try{let r;(r=5===l.length?l(e,t,s,i,n):l(e,t,s,i))&&"function"==typeof r.then?r.then(e=>a(null,e)).catch(a):a(null,r)}catch(e){a(e)}else l(e,t,s,i,a,n)}e&&e[0]&&this.store.addResource(e[0],t,s,i)}}}let K=()=>({debug:!1,initImmediate:!0,ns:["translation"],defaultNS:["translation"],fallbackLng:["dev"],fallbackNS:!1,supportedLngs:!1,nonExplicitSupportedLngs:!1,load:"all",preload:!1,simplifyPluralSuffix:!0,keySeparator:".",nsSeparator:":",pluralSeparator:"_",contextSeparator:"_",partialBundledLanguages:!1,saveMissing:!1,updateMissing:!1,saveMissingTo:"fallback",saveMissingPlurals:!0,missingKeyHandler:!1,missingInterpolationHandler:!1,postProcess:!1,postProcessPassResolved:!1,returnNull:!1,returnEmptyString:!0,returnObjects:!1,joinArrays:!1,returnedObjectHandler:!1,parseMissingKeyHandler:!1,appendNamespaceToMissingKey:!1,appendNamespaceToCIMode:!1,overloadTranslationOptionHandler:e=>{let t={};if("object"==typeof e[1]&&(t=e[1]),i(e[1])&&(t.defaultValue=e[1]),i(e[2])&&(t.tDescription=e[2]),"object"==typeof e[2]||"object"==typeof e[3]){let s=e[3]||e[2];Object.keys(s).forEach(e=>{t[e]=s[e]})}return t},interpolation:{escapeValue:!0,format:e=>e,prefix:"{{",suffix:"}}",formatSeparator:",",unescapePrefix:"-",nestingPrefix:"$t(",nestingSuffix:")",nestingOptionsSeparator:",",maxReplaces:1e3,skipOnVariables:!0}}),M=e=>(i(e.ns)&&(e.ns=[e.ns]),i(e.fallbackLng)&&(e.fallbackLng=[e.fallbackLng]),i(e.fallbackNS)&&(e.fallbackNS=[e.fallbackNS]),e.supportedLngs&&0>e.supportedLngs.indexOf("cimode")&&(e.supportedLngs=e.supportedLngs.concat(["cimode"])),e),z=()=>{};class H extends S{constructor(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(super(),this.options=M(e),this.services={},this.logger=k,this.modules={external:[]},(e=>{Object.getOwnPropertyNames(Object.getPrototypeOf(e)).forEach(t=>{"function"==typeof e[t]&&(e[t]=e[t].bind(e))})})(this),t&&!this.isInitialized&&!e.isClone){if(!this.options.initImmediate)return this.init(e,t),this;setTimeout(()=>{this.init(e,t)},0)}}init(){var e=this;let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},s=arguments.length>1?arguments[1]:void 0;this.isInitializing=!0,"function"==typeof t&&(s=t,t={}),!t.defaultNS&&!1!==t.defaultNS&&t.ns&&(i(t.ns)?t.defaultNS=t.ns:0>t.ns.indexOf("translation")&&(t.defaultNS=t.ns[0]));let o=K();this.options={...o,...this.options,...M(t)},"v1"!==this.options.compatibilityAPI&&(this.options.interpolation={...o.interpolation,...this.options.interpolation}),void 0!==t.keySeparator&&(this.options.userDefinedKeySeparator=t.keySeparator),void 0!==t.nsSeparator&&(this.options.userDefinedNsSeparator=t.nsSeparator);let a=e=>e?"function"==typeof e?new e:e:null;if(!this.options.isClone){let t;this.modules.logger?k.init(a(this.modules.logger),this.options):k.init(null,this.options),this.modules.formatter?t=this.modules.formatter:"u">typeof Intl&&(t=U);let s=new R(this.options);this.store=new L(this.options.resources,this.options);let i=this.services;i.logger=k,i.resourceStore=this.store,i.languageUtils=s,i.pluralResolver=new F(s,{prepend:this.options.pluralSeparator,compatibilityJSON:this.options.compatibilityJSON,simplifyPluralSuffix:this.options.simplifyPluralSuffix}),t&&(!this.options.interpolation.format||this.options.interpolation.format===o.interpolation.format)&&(i.formatter=a(t),i.formatter.init(i,this.options),this.options.interpolation.format=i.formatter.format.bind(i.formatter)),i.interpolator=new D(this.options),i.utils={hasLoadedNamespace:this.hasLoadedNamespace.bind(this)},i.backendConnector=new T(a(this.modules.backend),i.resourceStore,i,this.options),i.backendConnector.on("*",function(t){for(var s=arguments.length,i=Array(s>1?s-1:0),r=1;r1?s-1:0),r=1;r{e.init&&e.init(this)})}if(this.format=this.options.interpolation.format,s||(s=z),this.options.fallbackLng&&!this.services.languageDetector&&!this.options.lng){let e=this.services.languageUtils.getFallbackCodes(this.options.fallbackLng);e.length>0&&"dev"!==e[0]&&(this.options.lng=e[0])}this.services.languageDetector||this.options.lng||this.logger.warn("init: no languageDetector is used and no lng is defined"),["getResource","hasResourceBundle","getResourceBundle","getDataByLanguage"].forEach(t=>{this[t]=function(){return e.store[t](...arguments)}}),["addResource","addResources","addResourceBundle","removeResourceBundle"].forEach(t=>{this[t]=function(){return e.store[t](...arguments),e}});let n=r(),l=()=>{let e=(e,t)=>{this.isInitializing=!1,this.isInitialized&&!this.initializedStoreOnce&&this.logger.warn("init: i18next is already initialized. You should call init just once!"),this.isInitialized=!0,this.options.isClone||this.logger.log("initialized",this.options),this.emit("initialized",this.options),n.resolve(t),s(e,t)};if(this.languages&&"v1"!==this.options.compatibilityAPI&&!this.isInitialized)return e(null,this.t.bind(this));this.changeLanguage(this.options.lng,e)};return this.options.resources||!this.options.initImmediate?l():setTimeout(l,0),n}loadResources(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:z,s=t,r=i(e)?e:this.language;if("function"==typeof e&&(s=e),!this.options.resources||this.options.partialBundledLanguages){if(r&&"cimode"===r.toLowerCase()&&(!this.options.preload||0===this.options.preload.length))return s();let e=[],t=t=>{t&&"cimode"!==t&&this.services.languageUtils.toResolveHierarchy(t).forEach(t=>{"cimode"!==t&&0>e.indexOf(t)&&e.push(t)})};r?t(r):this.services.languageUtils.getFallbackCodes(this.options.fallbackLng).forEach(e=>t(e)),this.options.preload&&this.options.preload.forEach(e=>t(e)),this.services.backendConnector.load(e,this.options.ns,e=>{e||this.resolvedLanguage||!this.language||this.setResolvedLanguage(this.language),s(e)})}else s(null)}reloadResources(e,t,s){let i=r();return"function"==typeof e&&(s=e,e=void 0),"function"==typeof t&&(s=t,t=void 0),e||(e=this.languages),t||(t=this.options.ns),s||(s=z),this.services.backendConnector.reload(e,t,e=>{i.resolve(),s(e)}),i}use(e){if(!e)throw Error("You are passing an undefined module! Please check the object you are passing to i18next.use()");if(!e.type)throw Error("You are passing a wrong module! Please check the object you are passing to i18next.use()");return"backend"===e.type&&(this.modules.backend=e),("logger"===e.type||e.log&&e.warn&&e.error)&&(this.modules.logger=e),"languageDetector"===e.type&&(this.modules.languageDetector=e),"i18nFormat"===e.type&&(this.modules.i18nFormat=e),"postProcessor"===e.type&&O.addPostProcessor(e),"formatter"===e.type&&(this.modules.formatter=e),"3rdParty"===e.type&&this.modules.external.push(e),this}setResolvedLanguage(e){if(e&&this.languages&&!(["cimode","dev"].indexOf(e)>-1))for(let e=0;e-1)&&this.store.hasLanguageSomeTranslations(t)){this.resolvedLanguage=t;break}}}changeLanguage(e,t){var s=this;this.isLanguageChangingTo=e;let o=r();this.emit("languageChanging",e);let a=e=>{this.language=e,this.languages=this.services.languageUtils.toResolveHierarchy(e),this.resolvedLanguage=void 0,this.setResolvedLanguage(e)},n=(e,i)=>{i?(a(i),this.translator.changeLanguage(i),this.isLanguageChangingTo=void 0,this.emit("languageChanged",i),this.logger.log("languageChanged",i)):this.isLanguageChangingTo=void 0,o.resolve(function(){return s.t(...arguments)}),t&&t(e,function(){return s.t(...arguments)})},l=t=>{e||t||!this.services.languageDetector||(t=[]);let s=i(t)?t:this.services.languageUtils.getBestMatchFromCodes(t);s&&(this.language||a(s),this.translator.language||this.translator.changeLanguage(s),this.services.languageDetector&&this.services.languageDetector.cacheUserLanguage&&this.services.languageDetector.cacheUserLanguage(s)),this.loadResources(s,e=>{n(e,s)})};return e||!this.services.languageDetector||this.services.languageDetector.async?!e&&this.services.languageDetector&&this.services.languageDetector.async?0===this.services.languageDetector.detect.length?this.services.languageDetector.detect().then(l):this.services.languageDetector.detect(l):l(e):l(this.services.languageDetector.detect()),o}getFixedT(e,t,s){var r=this;let o=function(e,t){let i,a;if("object"!=typeof t){for(var n=arguments.length,l=Array(n>2?n-2:0),h=2;h`${i.keyPrefix}${u}${e}`):i.keyPrefix?`${i.keyPrefix}${u}${e}`:e,r.t(a,i)};return i(e)?o.lng=e:o.lngs=e,o.ns=t,o.keyPrefix=s,o}t(){return this.translator&&this.translator.translate(...arguments)}exists(){return this.translator&&this.translator.exists(...arguments)}setDefaultNamespace(e){this.options.defaultNS=e}hasLoadedNamespace(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!this.isInitialized)return this.logger.warn("hasLoadedNamespace: i18next was not initialized",this.languages),!1;if(!this.languages||!this.languages.length)return this.logger.warn("hasLoadedNamespace: i18n.languages were undefined or empty",this.languages),!1;let s=t.lng||this.resolvedLanguage||this.languages[0],i=!!this.options&&this.options.fallbackLng,r=this.languages[this.languages.length-1];if("cimode"===s.toLowerCase())return!0;let o=(e,t)=>{let s=this.services.backendConnector.state[`${e}|${t}`];return -1===s||0===s||2===s};if(t.precheck){let e=t.precheck(this,o);if(void 0!==e)return e}return!!(this.hasResourceBundle(s,e)||!this.services.backendConnector.backend||this.options.resources&&!this.options.partialBundledLanguages||o(s,e)&&(!i||o(r,e)))}loadNamespaces(e,t){let s=r();return this.options.ns?(i(e)&&(e=[e]),e.forEach(e=>{0>this.options.ns.indexOf(e)&&this.options.ns.push(e)}),this.loadResources(e=>{s.resolve(),t&&t(e)}),s):(t&&t(),Promise.resolve())}loadLanguages(e,t){let s=r();i(e)&&(e=[e]);let o=this.options.preload||[],a=e.filter(e=>0>o.indexOf(e)&&this.services.languageUtils.isSupportedCode(e));return a.length?(this.options.preload=o.concat(a),this.loadResources(e=>{s.resolve(),t&&t(e)}),s):(t&&t(),Promise.resolve())}dir(e){return(e||(e=this.resolvedLanguage||(this.languages&&this.languages.length>0?this.languages[0]:this.language)),e)?["ar","shu","sqr","ssh","xaa","yhd","yud","aao","abh","abv","acm","acq","acw","acx","acy","adf","ads","aeb","aec","afb","ajp","apc","apd","arb","arq","ars","ary","arz","auz","avl","ayh","ayl","ayn","ayp","bbz","pga","he","iw","ps","pbt","pbu","pst","prp","prd","ug","ur","ydd","yds","yih","ji","yi","hbo","men","xmn","fa","jpr","peo","pes","prs","dv","sam","ckb"].indexOf((this.services&&this.services.languageUtils||new R(K())).getLanguagePartFromCode(e))>-1||e.toLowerCase().indexOf("-arab")>1?"rtl":"ltr":"rtl"}static createInstance(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;return new H(e,t)}cloneInstance(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:z,s=e.forkResourceStore;s&&delete e.forkResourceStore;let i={...this.options,...e,isClone:!0},r=new H(i);return(void 0!==e.debug||void 0!==e.prefix)&&(r.logger=r.logger.clone(e)),["store","services","language"].forEach(e=>{r[e]=this[e]}),r.services={...this.services},r.services.utils={hasLoadedNamespace:r.hasLoadedNamespace.bind(r)},s&&(r.store=new L(this.store.data,i),r.services.resourceStore=r.store),r.translator=new N(r.services,i),r.translator.on("*",function(e){for(var t=arguments.length,s=Array(t>1?t-1:0),i=1;it});var d=s(74848);s(47867);let t=l=>(0,d.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,d.jsx)("defs",{children:(0,d.jsx)("clipPath",{id:"pf_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,d.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,d.jsxs)("g",{clipPath:"url(#pf_inline_svg__a)",children:[(0,d.jsx)("path",{fill:"#fff",d:"M0 0h640v480H0z"}),(0,d.jsx)("path",{fill:"#fff",d:"M80 0h480v480H80z"}),(0,d.jsx)("path",{fill:"#083d9c",fillRule:"evenodd",stroke:"#083d9c",strokeWidth:"2pt",d:"M277.28 340.75s10.839-8.788 21.386-8.788 13.477 7.323 20.801 7.909 13.475-7.324 22.558-7.617c9.082-.292 20.508 6.445 20.508 6.445l-39.843 12.013zM254.43 327.86l135.35.586s-11.718-12.597-25.488-12.89c-13.769-.295-9.96 5.86-20.507 6.737-10.546.88-13.185-6.444-22.852-6.152s-15.234 6.152-22.557 6.446c-7.324.292-16.699-7.326-22.266-7.03-5.567.292-25.488 8.787-25.488 8.787zM237.15 311.75l166.99.587c2.636-3.808-8.203-12.89-18.163-13.77-8.205.293-14.062 8.496-20.801 8.79-6.738.292-14.355-8.497-21.973-8.202-7.616.292-15.526 8.202-23.144 8.202-7.616 0-13.183-8.497-22.85-8.497s-14.062 9.375-21.386 8.79c-7.326-.587-13.77-9.375-20.801-9.375s-18.75 10.546-21.093 9.96 2.928 4.395 3.223 3.515z"}),(0,d.jsx)("path",{fill:"red",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.5,d:"m301.3 218.88 38.38 10.255v-54.786c-17.579.88-32.226-33.397-1.172-35.741-30.468-4.395-33.985 3.515-37.5 12.011z"}),(0,d.jsx)("path",{fill:"#083d9c",fillRule:"evenodd",stroke:"#083d9c",strokeLinecap:"round",strokeWidth:5,d:"m276.99 258.72 86.718.292"}),(0,d.jsx)("g",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:2.133,children:(0,d.jsx)("path",{strokeWidth:3.999375,d:"m281.094 237.919 10.254 13.77M281.094 251.7l11.134-13.476M286.963 237.037l-.293 8.496"})}),(0,d.jsx)("g",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:2.133,children:(0,d.jsx)("path",{strokeWidth:3.999375,d:"m297.5 237.919 10.254 13.77M297.5 251.7l11.134-13.476M303.369 237.037l-.293 8.496"})}),(0,d.jsx)("g",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:2.133,children:(0,d.jsx)("path",{strokeWidth:3.999375,d:"m314.198 237.919 10.255 13.77M314.198 251.7l11.134-13.476M320.067 237.037l-.292 8.496"})}),(0,d.jsx)("g",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:2.133,children:(0,d.jsx)("path",{strokeWidth:3.999375,d:"m331.484 237.919 10.254 13.77M331.484 251.7l11.134-13.476M337.352 237.037l-.292 8.496"})}),(0,d.jsx)("g",{fill:"none",stroke:"#000",strokeLinecap:"round",strokeWidth:2.133,children:(0,d.jsx)("path",{strokeWidth:3.999375,d:"m348.183 237.919 10.254 13.77M348.183 251.7l11.134-13.476M354.052 237.037l-.293 8.496"})}),(0,d.jsx)("path",{fill:"#ef7d08",fillRule:"evenodd",d:"m218.69 259.6 36.913.293V236.75l-42.187-2.05zM216.93 227.67l39.258 3.809-.292-16.406-38.38-15.234zM224.84 194.86l30.176 14.648 4.309-4.498s-2.775-1.912-2.638-3.672c.052-1.78 2.792-2.05 2.844-3.98.05-1.78-3.103-1.994-3.137-3.774-.206-1.93 2.43-3.998 2.43-3.998l-27.245-23.73zM422.88 259.89h-38.964l-.292-22.558 42.772-3.223zM384.21 232.06l46.29-5.565-9.962-26.66-36.62 15.526zM417.9 192.51l-33.398 17.578c-.488-1.905-.902-3.737-3.221-5.274 0 0 2.05-1.172 2.05-3.224 0-2.049-2.638-2.343-2.638-3.515s2.417-2.195 2.564-4.833c-.293-1.831-2.564-4.393-2.124-4.907l25.928-19.85zM345.54 231.62l16.698-.732.292-6.74zM294.57 231.11l-17.578-.512v-7.032zM294.49 229.06l-17.505-9.01v-11.718s-2.051.293-1.758-2.05c.097-4.884 12.865 8.91 19.409 13.402zM345.54 227.96l-.072-7.616s15.818-14.281 19.187-16.92c0 2.93-1.83 5.2-1.83 5.2v11.133zM243 163.8c.292.293 17.75 19.696 17.75 19.696.49-1.838 4.515-2.118 8.616-1.825 4.102.292 7.372-.275 7.372 2.655s-2.081 2.513-2.081 4.565 3.118 1.879 3.118 4.513c0 2.636-2.261 2.098-2.273 4.14-.007 1.688 2.36 1.778 2.36 1.778l16.625 16.114.073-17.213-34.276-53.758zM270.43 143.45c.26.782 23.216 47.477 23.216 47.477s.26-43.825 4.173-46.173l-6.52-12zM371.38 145.27l-25.923 46.245.034-19.491s2.15-3.277-1.242-3.016c-3.39.26-7.564-.261-7.564-.261l10.434-36.521zM397.99 165.1c-.261.522-17.488 18.04-17.488 18.04-.782-2.086-5.99-1.085-10.947-1.085s-5.647 1.59-5.385 2.893c.522 3.392 2.196.893 2.196 4.024 0 3.13-2.412 1.987-2.627 4.279.24 2.632 3.786 1.981 1.708 3.976L345.5 216.376l.057-18.146 37.042-57.652 15.392 24.52z"}),(0,d.jsx)("path",{fill:"red",fillRule:"evenodd",stroke:"#000",strokeLinejoin:"round",strokeWidth:2.5,d:"M309.82 268.4c-8.348 13.826-30.664 9.726-35.882.074-1.564-.444-.639-59.551-.639-59.551s-2.493-1.136-2.608-2.954c-.115-1.835 3.39-2.002 3.39-4.351 0-2.348-3.579-1.427-3.65-3.79.015-2.26 3.82-1.948 3.65-4.036-.201-2.353-4.262-2.005-4.434-4.175-.132-1.723 2.904-3.225 3.748-4-.546.027-2.82-.034-2.835-.042l-6.392.13c-4.541.005.078.99.012 3.61-.042 1.712-2.303 2.851-2.506 4.34-.071 1.527 3.236 2.6 3.278 4.434.037 1.636-3.25 1.748-3.132 3.268.205 2.573 2.912 3.139 2.871 4.696s-3.643 2.15-3.652 3.391c.125 2.402.521 60.781.521 60.781 5.74 29.739 38.868 37.304 48.26-1.825zM331.66 268.4c8.348 13.826 30.663 9.726 35.881.074 1.564-.444.64-59.551.64-59.551s2.493-1.136 2.607-2.954c.114-1.835-3.17-2.002-3.17-4.351 0-2.348 3.36-1.427 3.43-3.79-.014-2.26-3.527-2.094-3.357-4.183.2-2.353 2.959-2.078 3.116-4.247.131-1.869-1.732-3.007-2.576-3.782.546.027 2.673-.034 2.689-.041l6.391.13c4.542.005-.078.99-.01 3.61.04 1.712 2.301 2.851 2.505 4.34.07 1.527-3.237 2.6-3.279 4.434-.036 1.636 3.25 1.747 3.131 3.268-.204 2.572-2.911 3.139-2.87 4.696s3.644 2.15 3.652 3.39c-.125 2.403-.52 60.782-.52 60.782-5.74 29.739-38.868 37.304-48.26-1.825z"}),(0,d.jsx)("path",{fill:"#083d9c",fillRule:"evenodd",stroke:"#083d9c",strokeWidth:"2pt",d:"m301.71 295.59 37.277-.022c.29-.293-8.346-12.874-18.632-11.987-11.46.3-19.244 12.009-18.644 12.009zM420.57 294.68h-51.008s6.602-3.901 8.402-7.502c3.3 1.8 2.4 3.6 9.002 3.9 6.6.3 12.9-7.5 19.203-7.2 6.3.3 14.4 11.102 14.4 10.802zM219.57 294.68h51.008s-6.602-3.901-8.402-7.502c-3.3 1.8-2.4 3.6-9.002 3.9-6.599.3-12.9-7.5-19.203-7.2-6.3.3-14.4 11.102-14.4 10.802zM223.38 278.64l36.327.292s-2.344-4.98-2.636-11.13c-9.377-3.222-16.993 7.03-23.732 7.323-6.736.292-13.767-7.324-13.767-7.324zM417.32 278.64l-36.328.292s2.344-4.98 2.637-11.13c9.376-3.222 16.992 7.03 23.73 7.323 6.738.292 13.769-7.324 13.769-7.324zM310.97 278.94l18.455-.584s.294-5.567-9.374-5.567-8.788 6.445-9.081 6.151zM299.84 271.03c3.223-1.76 6.152-3.515 8.204-7.618l-12.598.292s-5.858 3.517-8.788 7.326zM340.56 271.03c-3.223-1.76-6.151-3.515-8.202-7.618l12.597.292s5.858 3.517 8.787 7.326z"}),(0,d.jsx)("path",{fill:"#de2010",fillRule:"evenodd",d:"M-40 360h720v120H-40zM-40 0h720v120H-40z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5990.3c9d8c23.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5990.3c9d8c23.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/5990.3c9d8c23.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js deleted file mode 100644 index e848f7f188..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6052.a270b069.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6052"],{71295(l,e,s){s.r(e),s.d(e,{default:()=>z});var i=s(74848);s(47867);let z=l=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,i.jsx)("defs",{children:(0,i.jsx)("clipPath",{id:"ph_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,i.jsx)("path",{fillOpacity:.67,d:"M0 0h640v480H0z"})})}),(0,i.jsx)("g",{clipPath:"url(#ph_inline_svg__a)",children:(0,i.jsxs)("g",{fillRule:"evenodd",transform:"translate(39.999)",children:[(0,i.jsx)("path",{fill:"#f50013",d:"M-39.999 0h720v480h-720z"}),(0,i.jsx)("path",{fill:"#00189a",d:"M-39.999 0h720v240h-720z"}),(0,i.jsx)("path",{fill:"#feffff",d:"m-39.999 0 413.15 239.69-413.15 239.39z"}),(0,i.jsx)("path",{fill:"#eca300",d:"m-20.421 437.1 4.211-18.49-16.605-9.175 19.301-2.41 4.391-18.458 7.717 17.003 19.317-2.233L3.38 416.254l7.55 17.078-16.699-9.02-14.653 12.788zM67.453 198.5l-14.826-25.459-8.526-.966 20.3 28.83zm-11.508 11.665-31.173-23.986-1.117-13.964 12.606-.426 25.771 31.518zm-4.734 5.485-25.656-14.482-1.08-8.513 29.1 19.91zM104.14 193.27l7.738-28.427-5.294-6.753-6.299 34.693zm-16.386-.016-4.78-39.042 9.166-10.593 9.149 8.683-4.378 40.477zm-7.23.475-7.681-28.442 5.307-6.743 6.23 34.705zM133.87 216.19l25.839-14.153 1.189-8.498-29.352 19.538zm-11.359-11.81 24.795-30.533 13.989-.75.095 12.613-32.184 24.935zm-5.359-4.876 15.15-25.268 8.538-.857-20.667 28.568zM138.47 251.81l28.423 7.753 6.756-5.29-34.69-6.318zm.025-16.386 39.044-4.76 10.588 9.172-8.689 9.144-40.475-4.398zm-.471-7.23 28.446-7.667 6.74 5.311-34.71 6.212zM116.83 280.78l14.939 25.393 8.53.928-20.428-28.74zm11.457-11.715 31.279 23.848 1.178 13.959-12.604.482-25.91-31.404zm4.71-5.506 25.72 14.368 1.118 8.508-29.188-19.782zM80.273 286.2l-7.543 28.479 5.34 6.716 6.061-34.735zm16.386-.096 5.049 39.008-9.094 10.656-9.208-8.621 4.1-40.506zm7.226-.525 7.877 28.389-5.26 6.779-6.47-34.662zM50.609 263.87l-25.608 14.567-1.052 8.516 29.034-20.007zm11.547 11.626-24.301 30.928-13.975.975-.298-12.61 31.78-25.45zm5.437 4.79L52.85 305.792l-8.523.994 20.206-28.897 3.059 2.395zM45.543 227.9l-28.477-7.551-6.718 5.338 34.734 6.071zm.091 16.386-39.009 5.037-10.653-9.097 8.624-9.205 40.505 4.111zm.523 7.226-28.391 7.869-6.777-5.263 34.664-6.458zM301.72 264.76l-10.991-15.454-17.902 6.279 11.054-16.004-10.847-15.566 17.824 5.564 11.197-15.9-.04 19.444 17.769 5.74-17.847 6.452zM-9.852 92.122l-3.408-18.655-18.876-1.897 16.794-9.814-3.231-18.696 13.788 12.592 16.879-9.658-8.273 17.595 13.662 12.727-18.9-1.718z"}),(0,i.jsx)("circle",{cx:190.68,cy:353.88,r:73.029,fill:"#eca300",transform:"translate(-37.108)scale(.67733)"})]})})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6052.a270b069.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js deleted file mode 100644 index f17ae703ef..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6135.d371dcf8.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6135"],{61834(l,s,i){i.r(s),i.d(s,{default:()=>t});var e=i(74848);i(47867);let t=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"sb_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M0 0h682.67v512H0z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#sb_inline_svg__a)",transform:"scale(.9375)",children:[(0,e.jsx)("path",{fill:"#0000d6",d:"M0 507.17 987.43 0H0z"}),(0,e.jsx)("path",{fill:"#006000",d:"M1024 0 27.17 512H1024z"}),(0,e.jsx)("path",{fill:"#fc0",d:"M1024 0h-54.858L.002 485.36V512h54.857l969.14-484.4V.004z"}),(0,e.jsx)("path",{fill:"#fff",d:"m71.397 9.124 11.857 34.442 38.47-.026-31.143 21.254 11.916 34.426-31.105-21.305-31.106 21.3 11.922-34.421L21.07 43.53l38.47.036zM262.54 9.124l11.856 34.442 38.47-.026-31.143 21.254 11.916 34.426-31.105-21.305-31.106 21.3 11.922-34.421-31.138-21.264 38.47.036zM262.54 153.603l11.856 34.442 38.47-.026-31.143 21.254 11.916 34.426-31.105-21.305-31.106 21.3 11.922-34.421-31.138-21.264 38.47.036zM167.527 82.206l11.857 34.442 38.47-.026-31.143 21.254 11.916 34.426-31.105-21.305-31.106 21.3 11.922-34.421-31.138-21.264 38.47.036zM71.397 153.603l11.857 34.442 38.47-.026-31.143 21.254 11.916 34.426-31.105-21.305-31.106 21.3 11.922-34.421-31.138-21.264 38.47.036z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6135.d371dcf8.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js deleted file mode 100644 index f93982686d..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js +++ /dev/null @@ -1,1147 +0,0 @@ -/*! For license information please see 616.fa7dd900.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["616"],{5338(e,t,i){"use strict";var n=i(25765);t.createRoot=n.createRoot,t.hydrateRoot=n.hydrateRoot},80323(e,t,i){"use strict";i.d(t,{f:()=>l});var n=i(63364),r=i(27755),a=i(71954);let l=new class{async loadPlugins(){var e;let t=[],i=window.pluginRemotes,n=window.alternativePluginExportPaths;if(void 0===i)return;let r=[];for(let[e,t]of Object.entries(i))void 0!==t&&r.push({name:e,entry:t,alias:e});for(let i of(null==(e=(0,a.getInstance)())||e.registerRemotes(r),r)){let e=(null==n?void 0:n[i.name])??"",r=""!==e?`${i.alias}${e}`:i.alias;t.push((0,a.loadRemote)(r))}for(let e of(await Promise.allSettled(t))){if("fulfilled"!==e.status){console.error("Error loading remote plugin",e);continue}for(let t of Object.values(e.value)){if("object"!=typeof t||void 0===t.name)continue;if(void 0!==this.registry[t.name]){console.error("Plugin already registered",t.name);continue}let e={priority:t.priority??0,...t};this.registerPlugin(e)}}}registerPlugin(e){this.registry[e.name]=e}getOrderedPlugins(){return Object.values(this.registry).sort((e,t)=>(e.priority??0)-(t.priority??0))}initPlugins(){this.getOrderedPlugins().forEach(e=>{void 0!==e.onInit&&e.onInit({container:n.kL})})}startupPlugins(){this.getOrderedPlugins().forEach(e=>{void 0!==e.onStartup&&e.onStartup({moduleSystem:r.s})})}constructor(){this.registry={}}}},5970(e,t,i){"use strict";let n;i(46680);var r,a,l,o,s,d,c,f,u,m,p,g,h,y,v,b,x,j,w,k,T,S,C,D,I,M,L,F,E,P,A,N,R,V,z,B,O,K,_,H,$,W,q,G,U,Q,J,Z,Y,X,ee,et,ei,en,er,ea,el,eo,es,ed,ec,ef,eu,em,ep,eg,eh,ey,ev,eb,ex,ej,ew,ek,eT,eS,eC,eD,eI,eM,eL,eF,eE,eP,eA,eN,eR,eV,ez,eB,eO,eK,e_,eH,e$,eW,eq,eG,eU,eQ,eJ,eZ,eY,eX,e0,e1,e2,e3,e6,e4,e5,e7,e8,e9,te,tt,ti,tn,tr,ta,tl,to=i(34231),ts=i(27755),td=i(10600),tc=i(63364),tf=i(26053),tu=i(77885),tm=i(57885),tp=i(58487),tg=i(86208),th=i(85296),ty=i(61476),tv=i(89446),tb=i(68220),tx=i(84956),tj=i(53152),tw=i(31635),tk=i(62446);class tT{registerComponent(e,t){this.components.set(e,t)}getComponentByType(e){return this.components.get(e)}constructor(){this.components=new Map}}tT=(0,tw.Cg)([(0,tk.injectable)()],tT);class tS{async runJob(e){this.globalProcess.isConnected()||this.globalProcess.start(),await e.run({messageBus:this.messageBus})}constructor(e,t){this.messageBus=e,this.globalProcess=t}}tS=(0,tw.Cg)([(0,tk.injectable)(),(0,tw.Qj)(0,(0,tk.inject)(td.K.globalMessageBus)),(0,tw.Qj)(1,(0,tk.inject)(td.K.globalMessageBusProcess)),(0,tw.Sn)("design:type",Function),(0,tw.Sn)("design:paramtypes",["u"{t in e&&!(0,tI.isNil)(e[t])&&(o[t]=e[t])}),l.set("config",JSON.stringify(o));let s=l.toString();return`${r}${a}?${s}`}generateCustomThumbnailUrl(e){let t,i,{assetId:n,assetType:r}=e,a=`${(0,tD.$)()}/assets/${n}`;"video"===r?(t="/video/stream/image-thumbnail",i=this.buildQueryParams(e,tF)):(t=`/${r}/stream/custom`,i=this.buildQueryParams(e,tL),(0,tI.isUndefined)(e.resizeMode)&&i.set("resizeMode","document"===r?"resize":"none"),(0,tI.isUndefined)(e.mimeType)&&i.set("mimeType","JPEG"));let l=i.toString();return`${a}${t}${!(0,tI.isEmpty)(l)?`?${l}`:""}`}buildQueryParams(e,t){let i=new URLSearchParams;return t.forEach(t=>{let n=e[t];!(0,tI.isNil)(n)&&((0,tI.isBoolean)(n)?n&&i.append(t,"true"):(0,tI.isNumber)(n)?i.append(t,Math.round(n).toString()):i.append(t,String(n)))}),i}}tE=(0,tw.Cg)([(0,tk.injectable)()],tE);var tP=i(23176),tA=i(69186);class tN extends tA.P{}tN=(0,tw.Cg)([(0,tk.injectable)()],tN);class tR{}tR=(0,tw.Cg)([(0,tk.injectable)()],tR);class tV extends tR{constructor(...e){super(...e),this.id="archive"}}tV=(0,tw.Cg)([(0,tk.injectable)()],tV);class tz extends tR{constructor(...e){super(...e),this.id="audio"}}tz=(0,tw.Cg)([(0,tk.injectable)()],tz);class tB extends tR{constructor(...e){super(...e),this.id="document"}}tB=(0,tw.Cg)([(0,tk.injectable)()],tB);class tO extends tR{constructor(...e){super(...e),this.id="folder"}}tO=(0,tw.Cg)([(0,tk.injectable)()],tO);class tK extends tR{constructor(...e){super(...e),this.id="image"}}tK=(0,tw.Cg)([(0,tk.injectable)()],tK);class t_ extends tR{constructor(...e){super(...e),this.id="text"}}t_=(0,tw.Cg)([(0,tk.injectable)()],t_);class tH extends tR{constructor(...e){super(...e),this.id="unknown"}}tH=(0,tw.Cg)([(0,tk.injectable)()],tH);class t$ extends tR{constructor(...e){super(...e),this.id="video"}}t$=(0,tw.Cg)([(0,tk.injectable)()],t$);var tW=i(57697),tq=i(74848),tG=i(47867),tU=i.n(tG),tQ=i(92428),tJ=i(57231);let tZ=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tq.jsx)(tJ.lV.Item,{initialValue:!1,name:i,valuePropName:"checked",children:(0,tq.jsx)(tQ.S,{})})},tY=(0,tk.injectable)()(j=class{getBatchEditComponent(e){return(0,tq.jsx)(tZ,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","checkbox")}})||j;var tX=i(81659),t0=i(81215),t1=i(11354);let t2=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tq.jsx)(tJ.lV.Item,{name:i,children:(0,tq.jsx)(t1.l,{outputType:"timestamp"})})},t3=(0,tk.injectable)()(w=class{getBatchEditComponent(e){return(0,tq.jsx)(t2,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","datetime")}})||w;var t6=i(74462),t4=i(50094);let t5=e=>{let{batchEdit:t}=e,{key:i}=t;return(0,tq.jsx)(t4._Y,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tq.jsx)(tJ.lV.Item,{name:i,children:(0,tq.jsx)(t6.P,{assetsAllowed:!0})})})},t7=(0,tk.injectable)()(k=class{getBatchEditComponent(e){return(0,tq.jsx)(t5,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","element_dropzone")}})||k;var t8=i(1993);let t9=e=>{var t,i;let{batchEdit:n}=e,{key:r,config:a}=n,l="definition"in a&&(0,tI.isArray)(null==a||null==(t=a.definition)?void 0:t.options),o=null==a||null==(i=a.options)?void 0:i.map(e=>({value:e,label:e}));return l&&(o=a.definition.options.map(e=>({value:e.value,label:e.key}))),(0,tq.jsx)(tJ.lV.Item,{name:r,children:(0,tq.jsx)(t8.l,{options:o})})},ie=(0,tk.injectable)()(T=class{getBatchEditComponent(e){return(0,tq.jsx)(t9,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","select")}})||T;var it=i(33473),ii=i(53031),ir=i(78785),ia=i(17044),il=i(16450);let io=e=>{switch(e){case -1:return!1;case 0:default:return null;case 1:return!0}},is=e=>!0===e?1:!1===e?-1:0,id=()=>{var e;let{setData:t,data:i,config:n}=(0,il.F)(),[r,a]=(0,tG.useState)([]),l=[];return l="fieldDefinition"in n&&Array.isArray(null==n||null==(e=n.fieldDefinition)?void 0:e.options)?n.fieldDefinition.options.map(e=>({label:e.key,value:e.value})):[{label:"True",value:1},{label:"False",value:-1},{label:"Empty",value:0}],(0,tG.useEffect)(()=>{a((i??[]).map(is))},[i]),(0,tq.jsx)(t8.l,{mode:"multiple",onChange:e=>{a(e),t(e.map(io))},options:l,style:{width:"100%"},value:r})},ic=(0,tk.injectable)()(S=class extends ia.C{getFieldFilterType(){return"system.boolean"}getFieldFilterComponent(){return(0,tq.jsx)(id,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","boolean-select")}})||S,iu=(0,tk.injectable)()(C=class extends ic{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","boolean")}})||C;var im=i(94652);let ip=(0,tk.injectable)()(D=class extends ia.C{getFieldFilterType(){return"crm.consent"}getFieldFilterComponent(e){return(0,tq.jsx)(im.m,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","consent")}})||D;var ig=i(86569),ih=i(72928);let iy=()=>{let{config:e}=(0,il.F)(),{getType:t,hasType:i,getComponentRenderer:n}=(0,ih.R)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:r}=e,a=(null==r?void 0:r.fieldType)??(null==r?void 0:r.fieldtype)??"unknown";if(!i({target:"FIELD_FILTER",dynamicTypeIds:[a]}))return(0,tq.jsx)(ig.Alert,{message:`Filter for ${r.fieldtype} is not supported`,type:"error"});let{ComponentRenderer:l}=n({target:"FIELD_FILTER",dynamicTypeIds:[a]}),o=t({target:"FIELD_FILTER",dynamicTypeIds:[a]});return null===l||null!==o&&"dynamicTypeFieldFilterType"in o&&"none"===o.dynamicTypeFieldFilterType.id?(0,tq.jsx)(ig.Alert,{message:`Filter for ${r.fieldtype} is not supported`,type:"error"}):(0,tq.jsx)(tq.Fragment,{children:l(r)})};var iv=i(46881);let ib=(0,tk.injectable)()(I=class extends ia.C{shouldOverrideFilterType(){return!0}isFilterAvailable(e){if(null===e)return!1;let t=iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]);return!!t.hasDynamicType(e)&&t.getDynamicType(e).dynamicTypeFieldFilterType.isFilterAvailable(null)}getFieldFilterComponent(e){return(0,tq.jsx)(iy,{...e})}transformFilterToApiRequest(e){return iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e.meta.fieldDefinition.fieldtype).dynamicTypeFieldFilterType.transformFilterToApiRequest(e)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.adapter")}})||I,ix=()=>{let{config:e}=(0,il.F)(),{hasType:t,getComponentRenderer:i}=(0,ih.R)();if(!("fieldDefinition"in e))throw Error("Field definition is missing in config");let{fieldDefinition:n}=e,r=(null==n?void 0:n.fieldType)??(null==n?void 0:n.fieldtype)??"unknown";if(!t({target:"FIELD_FILTER",dynamicTypeIds:[r]}))return(0,tq.jsx)(ig.Alert,{message:`Unknown data type: ${r}`,type:"warning"});let{ComponentRenderer:a}=i({target:"FIELD_FILTER",dynamicTypeIds:[r]});return null===a?(0,tq.jsx)(tq.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tq.jsx)(tq.Fragment,{children:a(n)})},ij=(0,tk.injectable)()(M=class extends ia.C{shouldOverrideFilterType(){return!0}isFilterAvailable(e){return null!==e&&iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e).dynamicTypeFieldFilterType.isFilterAvailable(null)}getFieldFilterComponent(e){return(0,tq.jsx)(ix,{...e})}transformFilterToApiRequest(e){return iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e.meta.fieldDefinition.fieldtype).dynamicTypeFieldFilterType.transformFilterToApiRequest(e)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.objectbrick")}})||M;var iw=i(46383),ik=i(71916);let iT=(0,tk.injectable)()(L=class extends ia.C{getFieldFilterType(){return"system.number"}getFieldFilterComponent(e){return(0,tq.jsx)(ik.a,{...e})}constructor(...e){super(...e),function(e,t){var i;(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:"id",enumerable:!0,configurable:!0,writable:!0}):e[t]="id"}(this,"id")}})||L;var iS=i(13145),iC=i(95433),iD=i(14542);class iI extends ia.C{getFieldFilterComponent(e){return(0,tq.jsx)(iD.i,{...e})}}let iM=(0,tk.injectable)()(F=class extends iI{getFieldFilterType(){return"system.string"}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","string")}})||F;var iL=i(97536),iF=i(30595),iE=i(40917);let iP=(0,tk.injectable)()(E=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(iE.e,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dependency-type-icon")}})||E;var iA=i(31492),iN=i(7814),iR=i(44241);let iV=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{cell:i` - .pimcore-icon { - color: ${t.Colors.Neutral.Icon.colorIcon}; - } - `}}),iz=e=>{let{styles:t}=iV(),i=e.getValue()??e.row.original.subType;return(0,tq.jsx)("div",{className:t.cell,children:(0,tq.jsx)(iN.m,{title:(0,tI.capitalize)(String(i)),children:function(){switch(i){case"image":return(0,tq.jsx)(iA.L,{value:"image"});case"video":return(0,tq.jsx)(iA.L,{value:"video"});case"audio":return(0,tq.jsx)(iA.L,{value:"audio"});case"document":return(0,tq.jsx)(iA.L,{value:"document"});case"archive":case"folder":return(0,tq.jsx)(iA.L,{value:"folder"});case"page":return(0,tq.jsx)(iA.L,{value:"file"});case"snippet":return(0,tq.jsx)(iA.L,{value:"snippet"});case"email":return(0,tq.jsx)(iA.L,{value:"mail"});case"link":return(0,tq.jsx)(iA.L,{value:"hardlink"});case"object":case"dataObject":case"data-object":return(0,tq.jsx)(iA.L,{value:"data-object"});case"variant":return(0,tq.jsx)(iA.L,{value:"data-object-variant"});default:return(0,tq.jsx)(iA.L,{value:e.elementType})}}()})})},iB=(0,tk.injectable)()(P=class extends iF.E{getGridCellComponent(e){var t;let i=null==(t=e.column.columnDef.meta)?void 0:t.config;if((null==i?void 0:i.elementType)===void 0)throw Error("ElementSubtypeIconCell requires elementType in column meta config");let n={...e,elementType:i.elementType};return(0,tq.jsx)(iz,{...n})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","element-subtype-icon")}})||P;var iO=i(17868);let iK=(0,tk.injectable)()(A=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(iO.e,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset-custom-metadata-icon")}})||A;var i_=i(73746);let iH=(0,tk.injectable)()(N=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(i_.I,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset-custom-metadata-value")}})||N;var i$=i(66873);let iW=(0,tk.injectable)()(R=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(i$.e,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","property-icon")}})||R;var iq=i(61443);let iG=(0,tk.injectable)()(V=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(iq.I,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","property-value")}})||V;var iU=i(24183),iQ=i(21429),iJ=i(75915),iZ=i(7334),iY=i(42796),iX=i(55638),i0=i(62930);let i1=e=>{let{t}=(0,iQ.useTranslation)(),{elementType:i}=(0,iZ.J)(),{data:n,isLoading:r,isError:a,error:l}=(0,iY.tb)({elementType:i});a&&(0,iX.Ay)(new i0.Ay(l));let o=r||void 0===n?[]:n.items.map(e=>({value:e.key,label:t(`schedule.action.${e.key}`)}));return(0,tq.jsx)(iU.N,{...(0,iJ.K)(e,{options:o})})},i2=(0,tk.injectable)()(z=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(i1,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","schedule-actions-select")}})||z;var i3=i(94316),i6=i(60142),i4=i.n(i6);let i5=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{select:t` - .ant-select-selection-item { - .version-id__select__label { - .version-id__selection-item-hidden { - display: none; - } - } - } - `}}),i7=e=>{let{id:t,elementType:i}=(0,iZ.J)(),{data:n,isLoading:r,isError:a,error:l}=(0,i3.CI)({elementType:i,id:t,page:1,pageSize:9999});a&&(0,iX.Ay)(new i0.Ay(l));let o=[];r||void 0===n||(o=n.items);let s=o.map(e=>{var t;return{value:e.id,displayValue:e.versionCount,label:(0,tq.jsxs)("div",{className:"version-id__select__label",children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)("b",{children:e.versionCount}),(0,tq.jsxs)("span",{className:"version-id__selection-item-hidden",children:[" | ",e.user.name??"not found"]})]}),(0,tq.jsx)("div",{className:"version-id__selection-item-hidden",children:(t=e.date,i4().format(new Date(1e3*t),"datetime",i4().language,{dateStyle:"short",timeStyle:"short"}))})]})}}),{styles:d}=i5();return(0,tq.jsx)("div",{className:d.select,children:(0,tq.jsx)(iU.N,{...(0,iJ.K)(e,{options:s})})})},i8=(0,tk.injectable)()(B=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(i7,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","version-id-select")}})||B;var i9=i(32617);let ne=(0,tk.injectable)()(O=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(i9.N,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset-version-preview-field-label")}})||O;var nt=i(56789),ni=i(43588);let nn={text:"input",bool:"checkbox",document:"element",object:"element",asset:"element"},nr=e=>{let t=e.row.original.type,i=(0,tc.Lt)("DynamicTypes/GridCellRegistry"),n=nn[t]??t,{mapToElementType:r}=(0,nt.K)();return(0,tq.jsx)(tq.Fragment,{children:(()=>{if(!i.hasDynamicType(n))return(0,tq.jsx)(ig.Alert,{message:"cell type not supported",style:{display:"flex"},type:"warning"});let t=i.getDynamicType(n),a={...e,...(0,ni.addColumnConfig)(e,{allowedTypes:[r(String(e.row.original.type),!0)]}),getElementInfo:e=>{let t=e.row.original,i=t.data;return{elementType:r(String(t.type),!0),id:i.id,fullPath:i.fullPath}}};return t.getGridCellComponent(a)})()})},na=(0,tk.injectable)()(K=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nr,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","website-settings-value")}})||K;var nl=i(93836);let no=(0,tk.injectable)()(_=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nl.q,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset-actions")}})||_;var ns=i(6879);let nd=(0,tk.injectable)()(H=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ns.R,{...(0,iJ.K)(e,{allowedTypes:["asset"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset-link")}})||H;var nc=i(37532);let nf=(0,tk.injectable)()($=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nc.F,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset-preview")}})||$,nu=(0,tk.injectable)()(W=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ns.R,{...(0,iJ.K)(e,{allowedTypes:["asset"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","asset")}})||W;var nm=i(43656),np=i(11316);let ng=(0,tk.injectable)()(q=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(np.D,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","data-object-actions")}})||q;var nh=i(48832),ny=i(63746);let nv=(0,tk.injectable)()(G=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ny.H,{...e})}getDefaultGridColumnWidth(e){var t,i;let n=null==e||null==(t=e.config)?void 0:t.dataObjectType,r={...null==(i=e.config)?void 0:i.dataObjectConfig.fieldDefinition,defaultFieldWidth:t4.wT};return(0,nh.Cy)(n,r)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.adapter")}})||G,nb=(0,tk.injectable)()(U=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ny.H,{...e})}getDefaultGridColumnWidth(e){var t,i;let n=null==e||null==(t=e.config)?void 0:t.dataObjectType,r={...null==(i=e.config)?void 0:i.dataObjectConfig.fieldDefinition,defaultFieldWidth:t4.wT};return(0,nh.Cy)(n,r)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.objectbrick")}})||U;var nx=i(18177);let nj=(0,tk.injectable)()(Q=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nx.d,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","datetime")}})||Q,nw=(0,tk.injectable)()(J=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nx.d,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","date")}})||J,nk=(0,tk.injectable)()(Z=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ns.R,{...(0,iJ.K)(e,{allowedTypes:["document"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","document-link")}})||Z,nT=(0,tk.injectable)()(Y=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ns.R,{...(0,iJ.K)(e,{allowedTypes:["document"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","document")}})||Y,nS=(0,tk.injectable)()(X=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ns.R,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","element")}})||X;var nC=i(28680);let nD=(0,tk.injectable)()(ee=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nC.B,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","language-select")}})||ee;var nI=i(30513);let nM=(0,tk.injectable)()(et=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nI.y,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","multi-select")}})||et;var nL=i(67191);let nF=(0,tk.injectable)()(ei=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nL.y,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","number")}})||ei,nE=(0,tk.injectable)()(en=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ns.R,{...(0,iJ.K)(e,{allowedTypes:["data-object"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","object-link")}})||en,nP=(0,tk.injectable)()(er=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(ns.R,{...(0,iJ.K)(e,{allowedTypes:["data-object"]})})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","object")}})||er;var nA=i(28023);let nN=(0,tk.injectable)()(ea=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nA.f,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","open-element")}})||ea,nR=(0,tk.injectable)()(el=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(iU.N,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","select")}})||el;var nV=i(74191);let nz=(0,tk.injectable)()(eo=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nV.m,{...e})}getDefaultGridColumnWidth(){return 350}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","input")}})||eo;var nB=i(21797);let nO=(0,tk.injectable)()(es=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nB.d,{...e})}getDefaultGridColumnWidth(){return 400}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","textarea")}})||es;var nK=i(44795);let n_=(0,tk.injectable)()(ed=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nK.M,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","time")}})||ed;var nH=i(79155);let n$=(0,tk.injectable)()(ec=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(nH.T,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","translate")}})||ec;var nW=i(40810),nq=i(77240),nG=i(20103),nU=i(80833),nQ=i(99006),nJ=i(59921),nZ=i(49254),nY=i(71705),nX=i(17332),n0=i(52391),n1=i(22847),n2=i(31428),n3=i(37895),n6=i(8255),n4=i(28083),n5=i(22014),n7=i(62059),n8=i(48346),n9=i(26841),re=i(82528);let rt=[{value:"ASC",label:"ASC"},{value:"DESC",label:"DESC"}],ri=e=>({id:(0,n7.u)(),[n9.m.NAME]:e,[n9.m.DISPLAY]:!0,[n9.m.EXPORT]:!0,[n9.m.ORDER]:!0,[n9.m.FILTER_TYPE]:null,[n9.m.DISPLAY_TYPE]:null,[n9.m.FILTER_DRILLDOWN]:null,[n9.m.WIDTH]:null,[n9.m.LABEL]:"",[n9.m.ACTION]:"",disableOrderBy:!1,disableFilterable:!1,disableDropdownFilterable:!1,disableLabel:!1}),rn=e=>{var t;let{currentData:i,updateFormData:n}=e,{t:r}=(0,iQ.useTranslation)(),a=(0,re.d)(null==i?void 0:i.dataSourceConfig,1e3),l=(0,tG.useMemo)(()=>{if((0,tI.isNil)(a))return!0;let e=Object.keys(a);return 0===e.length||1===e.length&&"type"===e[0]},[a]),{data:o,isError:s,error:d}=(0,n8.useCustomReportsColumnConfigListQuery)({name:i.name,bundleCustomReportsDataSourceConfig:{configuration:a}},{skip:l}),c=s&&"data"in d&&(null==(t=d.data)?void 0:t.message);(0,tG.useEffect)(()=>{if(!(0,tI.isNil)(o)){let e,t=o.items.map(e=>e.name),r=i.columnConfigurations??[];if((0,tI.isEmpty)(r))e=t.map(ri);else{let i=new Map(r.map(e=>[e.name,e])),n=[];t.forEach(e=>{if(i.has(e))n.push(i.get(e));else{let t=ri(e),i=o.items.find(t=>t.name===e);(0,tI.isUndefined)(i)||Object.assign(t,i),n.push(t)}}),e=n}null==n||n({...i,columnConfigurations:e})}},[o]);let f=e=>{let{label:t,name:i}=e;return(0,tq.jsx)(tJ.lV.Item,{label:t,name:i,children:(0,tq.jsx)(n4.f,{"data-testid":`report-source-${i}`})})};return(0,tq.jsxs)(n6.L.Panel,{border:!0,contentPadding:{top:"none",right:"small",bottom:"small",left:"small"},theme:"fieldset",title:"Sql",children:[f({label:r("reports.editor.source-definition.sql-select-field"),name:"sql"}),f({label:r("reports.editor.source-definition.sql-from-field"),name:"from"}),f({label:r("reports.editor.source-definition.sql-where-field"),name:"where"}),f({label:r("reports.editor.source-definition.sql-group-by-field"),name:"groupby"}),f({label:r("reports.editor.source-definition.sql-initial-field-order"),name:"orderby"}),(0,tq.jsx)(tJ.lV.Item,{label:r("reports.editor.source-definition.sql-initial-direction-order"),name:"orderbydir",children:(0,tq.jsx)(t8.l,{options:rt})}),s&&(0,tq.jsx)(n5.E,{type:"danger",children:c})]})},rr=(0,tk.injectable)()(ef=class extends n3.U{getLabel(){return(0,tq.jsx)(tq.Fragment,{children:"Sql"})}getPagination(){return!0}getCustomReportData(e){return(0,tq.jsx)(rn,{...e})}constructor(...e){super(...e),function(e,t){var i;(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:"sql",enumerable:!0,configurable:!0,writable:!0}):e[t]="sql"}(this,"id")}})||ef;var ra=i(31429),rl=i(7871),ro=i(35021),rs=i(92395),rd=i(21857),rc=i(58751),rf=i(31159),ru=i(46381),rm=i(58412),rp=i(51788),rg=i(63540),rh=i(87116),ry=i(75167),rv=i(95830),rb=i(23257),rx=i(41261),rj=i(8780),rw=i(71125),rk=i(54599),rT=i(60026),rS=i(97371),rC=i(41643),rD=i(58177),rI=i(80900),rM=i(70229),rL=i(54165),rF=i(70482),rE=i(14266),rP=i(39218),rA=i(59026),rN=i(26453),rR=i(59292),rV=i(40909),rz=i(6462),rB=i(1642),rO=i(34263),rK=i(30029),r_=i(3871),rH=i(64662),r$=i(40709),rW=i(98719),rq=i(57235),rG=i(43608),rU=i(27129),rQ=i(82430),rJ=i(97352),rZ=i(97355),rY=i(76371),rX=i(20126),r0=i(6066),r1=i(95715),r2=i(71084),r3=i(7997),r6=i(63995),r4=i(47864),r5=i(89098),r7=i(83499),r8=i(13980),r9=i(81898),ae=i(49006),at=i(73062),ai=i(32981);function an(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class ar extends r4.h{getObjectDataComponent(e){let t=(0,tI.merge)({},to.U.wysiwyg.defaultEditorConfig.dataObject,(e=>{if((0,tI.isNil)(e)||(0,tI.isEmpty)(e))return{};try{let t=JSON.parse(e);return(0,tI.isObject)(t)?t:{}}catch(e){return console.error("Error while parsing toolbar config",e),{}}})(e.toolbarConfig)),i=(0,tI.toNumber)(e.maxCharacters)??0;return(0,tq.jsx)(r5.A,{...e,context:ai.f.DATA_OBJECT,disabled:!0===e.noteditable,editorConfig:t,height:e.height??void 0,maxCharacters:0===i?void 0:i,width:(0,r7.x)(e.width,e.defaultFieldWidth.large)})}getGridCellPreviewComponent(e){let t=e.cellProps.getValue();return(0,tI.isNil)(t)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ae.O,{children:(0,tq.jsx)(at.h,{html:t})})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:(0,tq.jsx)(r8.d,{additionalIcons:(0,tq.jsx)(r9.I,{value:"drop-target"}),label:e.title,name:e.name})}}getDefaultGridColumnWidth(){return 400}constructor(...e){super(...e),an(this,"id","wysiwyg"),an(this,"inheritedMaskOverlay","form-element"),an(this,"gridCellEditMode","edit-modal"),an(this,"gridCellEditModalSettings",{modalSize:"XL",formLayout:"vertical"}),an(this,"dynamicTypeFieldFilterType",tc.kL.get(td.K["DynamicTypes/FieldFilter/String"]))}}class aa extends tA.P{}aa=(0,tw.Cg)([(0,tk.injectable)()],aa);var al=i(25593),ao=i(81276),as=i(67342),ad=i(83391),ac=i(2046),af=i(25085);let au=e=>{let{children:t,title:i,border:n,collapsed:r,collapsible:a,noteditable:l}=e,{t:o}=(0,iQ.useTranslation)(),s=t.map((e,t)=>({key:t,label:(0,af.isNonEmptyString)(e.title)?o(e.title):e.title,forceRender:!0,children:(0,tq.jsx)(as.f,{...e,title:"",noteditable:l})}));return(0,tq.jsx)(ad.P,{border:n,collapsed:r,collapsible:a,title:i,children:(0,tq.jsx)(ac.SD,{accordion:!0,bordered:!0,items:s,size:"small"})})};class am extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(au,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","accordion")}}var ap=i(25750);let ag=e=>{let{children:t,collapsible:i,collapsed:n,noteditable:r}=e;return(0,tq.jsx)(ap.s,{className:"w-full",gap:{x:"extra-small",y:0},children:t.map((e,t)=>(0,tq.jsx)(ap.s,{flex:1,children:(0,tq.jsx)(as.f,{...e,noteditable:r})},t))})};class ah extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(ag,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","fieldcontainer")}}var ay=i(68258);let av=e=>{let{children:t,name:i,border:n,collapsed:r,collapsible:a,title:l,theme:o="card-with-highlight",noteditable:s,...d}=e,c="pimcore_root"===i,f=!0===s,{t:u}=(0,iQ.useTranslation)();return(0,tq.jsx)(ay.Z,{border:n,collapsed:r,collapsible:a,name:i,theme:o,title:(0,af.isNonEmptyString)(l)?u(l):l,children:t.map((e,t)=>{var i,n;let r,a;return(0,tG.createElement)(as.f,{...(i=e,n=c,r="tabpanel"===i.fieldType||"tabpanel"===i.fieldtype,a={...i},r&&n&&(a.hasStickyHeader=!0),a),key:t,noteditable:f||e.noteditable})})})};class ab extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(av,{...e,theme:"fieldset"})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","fieldset")}}class ax extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(av,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","panel")}}var aj=i(55822);let aw=((r={}).North="north",r.South="south",r.East="east",r.West="west",r.Center="center",r),ak=e=>{let{children:t,noteditable:i,...n}=e,r=[],a=[],l={};t.forEach(e=>{let{region:t}=e;(""===t||null===t)&&(t=aw.Center);let n=(l[t]??0)+1;r.push({region:`${t}${n}`,maxWidth:e.width,component:(0,tG.createElement)(as.f,{...e,key:e.name,noteditable:i})}),l[t]=n});let o=e=>{for(let t=0;t0;if(d||(s=1),l[aw.North]>0&&o(aw.North),l[aw.South]>0&&o(aw.South),d){let e="",t=t=>{for(let i=0;i0&&t(aw.West),l[aw.Center]>0&&t(aw.Center),l[aw.East]>0&&t(aw.East),a.push(e.trim())}return(0,tq.jsx)(ad.P,{collapsed:n.collapsed,collapsible:n.collapsible,title:n.title,children:(0,tq.jsx)(aj.T,{items:r,layoutDefinition:a})})};class aT extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(ak,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","region")}}var aS=i(93294);let aC=e=>{let{children:t,noteditable:i,...n}=e,r=t.map((e,t)=>({key:e.name??t.toString(),label:e.title??e.name??`Tab ${t+1}`,children:(0,tq.jsx)(as.f,{...e,noteditable:i})}));return(0,tq.jsx)(aS.k,{...n,items:r})},aD=e=>(0,tq.jsx)(aC,{...e});class aI extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(aD,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","tabpanel")}}let aM=e=>(0,tq.jsx)(ad.P,{border:e.border,collapsed:e.collapsed,collapsible:e.collapsible,title:e.title,children:(0,tq.jsx)(at.h,{html:e.html})});class aL extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(aM,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","text")}}class aF{constructor(){this.allowClassSelectionInSearch=!1}}aF=(0,tw.Cg)([(0,tk.injectable)()],aF);class aE extends aF{constructor(...e){super(...e),this.id="folder"}}aE=(0,tw.Cg)([(0,tk.injectable)()],aE);class aP extends aF{constructor(...e){super(...e),this.id="object",this.allowClassSelectionInSearch=!0}}aP=(0,tw.Cg)([(0,tk.injectable)()],aP);class aA extends aF{constructor(...e){super(...e),this.id="variant",this.allowClassSelectionInSearch=!0}}aA=(0,tw.Cg)([(0,tk.injectable)()],aA);var aN=i(57930),aR=i(80632),aV=i(91611),az=i(27994),aB=i(43565);let aO=e=>{let{groupLayout:t,currentLayoutData:i,updateCurrentLayoutData:n}=e,{name:r}=(0,aV.H)(),{operations:a}=(0,aN.y)(),{id:l}=(0,iZ.J)(),o=(0,aB.Vl)(),{t:s}=(0,iQ.useTranslation)(),d=(0,tI.isArray)(r)?r[r.length-1]:r,c=e=>{e.stopPropagation(),o.confirm({content:(0,tq.jsx)("span",{children:s("element.delete.confirmation.text")}),okText:s("yes"),cancelText:s("no"),onOk:()=>{n(i.filter(e=>e.id!==(null==t?void 0:t.id))),a.remove(String(null==t?void 0:t.id))}})};return(0,tG.useMemo)(()=>{var e;return(0,tq.jsx)(ad.P,{border:!1,collapsed:!1,collapsible:!0,extra:(0,tq.jsx)(ap.s,{className:"w-full",children:(0,tq.jsx)(az.$,{color:"default",icon:(0,tq.jsx)(r9.I,{value:"trash"}),onClick:c,variant:"filled"})}),extraPosition:"start",theme:"border-highlight",title:null==t?void 0:t.name,children:(0,tq.jsx)(ay.Z,{children:null==t||null==(e=t.keys)?void 0:e.map(e=>(0,tq.jsx)(as.f,{...e.definition,name:e.id},e.id))})})},[t,l,d,i])};var aK=i(10014),a_=i(8236);let aH=e=>{let{currentLanguage:t}=(0,aK.S)(),[i,n]=(0,tG.useState)(e.initialValue??"default");return(0,tq.jsx)(a_.$,{onChange:t=>{var i;n(t),null==(i=e.onChange)||i.call(e,t)},options:[{value:"default",label:"Default"},{value:"current-language",label:`Current language (${t.toUpperCase()})`}],value:i})};var a$=i(2338),aW=i(49546);let aq=e=>{let[t,i]=(0,tG.useState)("default"),{t:n}=(0,iQ.useTranslation)(),{openModal:r,currentLayoutData:a,updateCurrentLayoutData:l}=(0,aW.B)(),{values:o}=(0,aN.y)(),{activeGroups:s,groupCollectionMapping:d,...c}=o,{currentLanguage:f}=(0,aK.S)(),u="default",m=e.localized??!1;(0,tG.useEffect)(()=>{let t=e.activeGroupDefinitions??[],i=(0,tI.isEmpty)(a)?t:a;l((0,tI.isObject)(i)&&!(0,tI.isArray)(i)?Object.values(i):i)},[]);let p=e=>{i(e)};return"current-language"===t&&(u=f),(0,tG.useMemo)(()=>(0,tq.jsxs)(ad.P,{border:!0,collapsed:!1,collapsible:!0,extra:(0,tq.jsxs)(ap.s,{align:"center",className:"w-full",justify:"space-between",children:[(0,tq.jsx)(az.$,{color:"default",icon:(0,tq.jsx)(r9.I,{value:"folder-search"}),onClick:e=>{e.stopPropagation(),r()},variant:"filled",children:n("add")}),m?(0,tq.jsx)(aH,{initialValue:u,onChange:p}):(0,tq.jsx)(tq.Fragment,{})]}),extraPosition:"start",theme:"default",title:e.title,children:[(0,tq.jsx)(a$.$,{className:"w-full",direction:"vertical",size:"small",children:Object.keys((0,tI.isObject)(c)?c:{}).map(e=>(0,tq.jsx)(tJ.lV.Group,{name:[e,u],children:(0,tq.jsx)(aO,{currentLayoutData:a,groupLayout:(0,tI.find)(a,{id:parseInt(e)}),updateCurrentLayoutData:l})},`${e}`))}),(0,tq.jsx)(tJ.lV.Item,{name:["activeGroups"],style:{display:"none"},children:(0,tq.jsx)(aR.p,{type:"hidden",value:s??{}})}),(0,tq.jsx)(tJ.lV.Item,{name:["groupCollectionMapping"],style:{display:"none"},children:(0,tq.jsx)(aR.p,{type:"hidden",value:d??{}})})]}),[o,u,a])};var aG=i(66026),aU=i(407);let aQ="deleted",aJ=e=>{if(!(0,tI.isPlainObject)(e))return[];let t=[];return(0,tI.forEach)(Object.keys(e),i=>{let n=e[i];(0,tI.isPlainObject)(n)&&(0,tI.forEach)(Object.keys(n),e=>{let r=n[e];(0,tI.isPlainObject)(r)&&(0,tI.forEach)(Object.keys(r),n=>{t.push(aZ([i,e,n]))})}),((0,tI.isArray)(n)&&0===n.length||["activeGroups","groupCollectionMapping"].includes(i))&&t.push(aZ([i]))}),t},aZ=e=>Array.isArray(e)?e.join("."):e;var aY=i(80754),aX=i(18929),a0=i(85775);let a1=e=>{var t,i;let n,{name:r,localized:a,value:l}=e,{hasLocalizedFields:o,setHasLocalizedFields:s}=(0,a0.Sk)();(0,tG.useEffect)(()=>{a&&!o&&s(!0)},[]);let d=(0,tG.useRef)(l),c=(0,tG.useRef)(new Set),f=(0,tG.useRef)(new Set),{id:u}=(0,iZ.J)(),{dataObject:m}=(0,aG.A)(u);if(void 0!==m&&!("objectData"in m))throw Error("Data Object data is undefined in Classification Store");let p=(i=(null==m?void 0:m.objectData)??{},n=(0,tI.get)(i,r,{}),(0,tI.isPlainObject)(n)?n:{}),g=(0,aU.n)(),h=(0,tI.isArray)(r)?r[r.length-1]:r,y=(0,aX.G)(),v=e=>{var t;let i=[...r,...e.split(".")];return!f.current.has(i.join("."))&&(null==g||null==(t=g.getInheritanceState(i))?void 0:t.inherited)===!0},b=(0,tG.useMemo)(()=>{var e;let t,i,n;return e=d.current,t=Array.from(new Set([...aJ(p),...aJ(e)])),i={},n=e=>(0,tI.isUndefined)(e)?{}:e,((0,tI.forEach)(t,t=>{let r=t.split(".").length-1,a=t.split(".")[0];e[a].action!==aQ&&(v(t)?(0,tI.setWith)(i,t,(0,tI.get)(p,t),n):(0,tI.setWith)(i,t,(0,tI.get)(e,t),n),0===r&&(0,tI.isArray)((0,tI.get)(e,t))&&(0,tI.isEmpty)(e[a])&&(0,tI.setWith)(i,t,{},n))}),(0,tI.isEmpty)(i)&&(0,tI.isEmpty)(l))?l:i},[d.current,p]);if((0,tG.useEffect)(()=>{d.current=l},[l]),void 0===m)return(0,tq.jsx)(tq.Fragment,{});let x=null==(t=y.getByName(m.className))?void 0:t.id;return void 0===x?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(aW.H,{children:(0,tq.jsxs)(tJ.lV.KeyedList,{getAdditionalComponentProps:e=>{var t;return{inherited:(null==g||null==(t=g.getInheritanceState(e))?void 0:t.inherited)===!0}},onChange:t=>{let i=((e,t)=>{if(!(0,tI.isPlainObject)(e))return{};let i={},n=e=>(0,tI.isUndefined)(e)?{}:e;(0,tI.forEach)(aJ(e),t=>{null!==(0,tI.get)(e,t)&&(0,tI.setWith)(i,t,(0,tI.get)(e,t),n)});let{activeGroups:r,groupCollectionMapping:a,...l}=e;for(let[e,t]of Object.entries(l)){let n=!0;for(let[r,a]of Object.entries(t)){let t=!0;for(let e of Object.entries(a))if(null!==e[1]){t=!1,n=!1;break}t&&void 0!==i[e]&&void 0!==i[e][r]&&delete i[e][r]}n&&(0,tI.set)(i,e,[])}return i})(t,0),n=(0,tI.union)([...(0,tI.keys)(p),...(0,tI.keys)(d.current)]);(0,tI.forEach)(n,e=>{(0,tI.isUndefined)(i[e])?c.current.add(e):c.current.delete(e)}),(0,tI.forEach)(Array.from(c.current.keys()),e=>{i[e]={action:aQ}});let r=(0,tI.isEmpty)(i)?[]:i;(0,tI.isEqual)(r,d.current)||(e.onChange(r),d.current=r)},onFieldChange:(e,t)=>{var i;let n=Array.isArray(e)?e.join("."):e;f.current.add(n),(null==g||null==(i=g.getInheritanceState(e))?void 0:i.inherited)===!0&&(null==g||g.breakInheritance(e))},value:b,children:[(0,tq.jsx)(aq,{...e}),(0,tq.jsx)(aY.j,{classId:x,fieldName:h,objectId:m.id,...e})]})})};var a2=i(93104),a3=i(18196);class a6 extends r4.h{getObjectDataComponent(e){return(0,tq.jsx)(a1,{...e})}getObjectDataFormItemProps(e){return{...super.getObjectDataFormItemProps(e),label:null}}async processVersionFieldData(e){let{item:t,fieldBreadcrumbTitle:i,fieldValueByName:n,fieldPath:r,versionId:a,versionCount:l}=e,o=e=>{let{fieldData:t,fieldValue:i,fieldBreadcrumbTitle:n,fieldPathValue:r}=e;return{fieldBreadcrumbTitle:n,versionId:a,versionCount:l,fieldData:t,fieldValue:i,fieldPath:r}},s=e=>{let{data:t,updatedFieldBreadcrumbTitle:a=i,groupId:l,fieldPathValue:d=r}=e;return t.flatMap(e=>{if(!(0,tI.isEmpty)(e.keys)){let t=e.title??e.name,i=(0,a2.Yl)(a,t),n=(0,a3.Po)(d)?`${e.id}`:`${d}.${e.id}`;return s({data:e.keys,updatedFieldBreadcrumbTitle:i,groupId:e.id,fieldPathValue:n})}if(!(0,tI.isEmpty)(e.definition)){if((0,tI.isUndefined)(l))return[];let t=(0,tI.get)(n,l);if((0,tI.isEmpty)(t)){let i=(0,a3.Po)(d)?`${e.id}`:`${d}.${e.id}`;return o({fieldData:{...e.definition},fieldValue:t,fieldBreadcrumbTitle:a,fieldPathValue:i})}return Object.entries(t).map(t=>{let[i,n]=t,r=(0,a3.Po)(d)?`${i}`:`${d}.${i}.${e.id}`;return o({fieldData:{...e.definition,locale:i},fieldValue:n[e.id],fieldBreadcrumbTitle:a,fieldPathValue:r})})}return[]})};async function d(){try{if((0,tI.isEmpty)(t))return[];let e=t.title??t.name,n=(0,a2.Yl)(i,e);return s({data:t.activeGroupDefinitions,updatedFieldBreadcrumbTitle:n})}catch(e){return console.error("Error while handling Classification Store data:",e),[]}}return await d()}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","classificationstore")}}var a4=i(36255);let a5=(0,tk.injectable)()(eu=class extends iF.E{getGridCellComponent(e){return(0,tq.jsx)(a4.A,{...e})}getDefaultGridColumnWidth(){return 100}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","boolean")}})||eu;var a7=i(46733),a8=i(34717),a9=i(83361),le=i(16295),lt=i(73389),li=i(7763),ln=i(13366),lr=i(96524),la=i(2370),ll=i(97805),lo=i(14248),ls=i(12539),ld=i(75208),lc=i(50929),lf=i(56198),lu=i(51818),lm=i(80655),lp=i(29740),lg=i(8674);let lh=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{wrapper:t` - position: relative; - display: inline-block; - `,editButton:t` - position: absolute !important; - top: ${i.paddingXS}px; - right: ${i.paddingXS}px; - z-index: 10; - background-color: ${i.colorBgContainer}; - border: 1px solid ${i.colorBorder}; - border-radius: ${i.borderRadius}px; - box-shadow: ${i.boxShadow}; - `}});var ly=i(25765),lv=i.n(ly),lb=i(8651),lx=i.n(lb),lj=i(53051);let lw=e=>{let{value:t,onChange:i,disabled:n,inherited:r=!1,className:a,containerRef:l,width:o,height:s}=e,{t:d}=(0,iQ.useTranslation)(),{input:c}=(0,aB.Vl)(),{styles:f}=lh(),[u,m]=(0,tG.useState)(null),p=(null==t?void 0:t.url)??"",g=!(0,tI.isEmpty)(p),h=!!n||!!r,y=()=>{null==i||i(t??null)};(0,tG.useEffect)(()=>{if(!(0,tI.isNull)(null==l?void 0:l.current)){let t=l.current.querySelector("iframe");if(!(0,tI.isNull)(t)&&(0,tI.isNull)(u)){var e;let i=t.width??t.getAttribute("width"),n=t.height??t.getAttribute("height"),r=(0,af.toCssDimension)(i)??"300px",o=(0,af.toCssDimension)(n)??"200px",s=document.createElement("div");s.className=lx()(f.wrapper,a),s.style.width=r,s.style.height=o,s.style.position="relative",null==(e=l.current.parentNode)||e.insertBefore(s,l.current),s.appendChild(l.current),m(s)}}},[l,a,u]);let v=()=>{h||c({title:d("embed.url-modal.title"),label:d("embed.url-modal.label"),initialValue:p,okText:d("embed.url-modal.ok-text"),cancelText:d("embed.url-modal.cancel-text"),onOk:e=>{let t=e.trim();(0,tI.isEmpty)(t)?null==i||i(null):null==i||i({url:t})}})};return(0,tq.jsx)(tq.Fragment,{children:g?(0,tq.jsx)(tq.Fragment,{children:!(0,tI.isNull)(u)&&lv().createPortal((0,tq.jsx)(lj.x,{display:"block",hideButtons:!0,isInherited:r,noPadding:!0,onOverwrite:y,shape:"angular",style:{position:"absolute",inset:0},children:(0,tq.jsx)(lp.K,{className:f.editButton,disabled:h,icon:{value:"edit"},onClick:v,size:"small",style:{pointerEvents:"auto"},title:d("embed.edit-url"),type:"default"})}),u)}):(0,tq.jsx)(lj.x,{display:"block",isInherited:r,noPadding:!0,onOverwrite:y,style:void 0!==o?{maxWidth:(0,af.toCssDimension)(o)}:void 0,children:(0,tq.jsx)(lg.b,{buttonText:d("embed.add-url"),disabled:h,height:s,onClick:v,text:d("embed.placeholder"),width:o})})})};class lk extends lm.Z{getEditableDataComponent(e){var t,i,n;return(0,tq.jsx)(lw,{className:null==(t=e.config)?void 0:t.class,containerRef:e.containerRef,height:null==(i=e.config)?void 0:i.height,inherited:e.inherited,width:null==(n=e.config)?void 0:n.width})}reloadOnChange(e){return!0}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","embed")}}var lT=i(70005),lS=i(85938),lC=i(94685),lD=i(72636),lI=i(94313),lM=i(20597),lL=i(90011),lF=i(25886),lE=i(53636),lP=i(88963),lA=i(2586);let lN=e=>{let{assetId:t,width:i,height:n,containerWidth:r,thumbnailSettings:a,thumbnailConfig:l,...o}=e,s=(0,tG.useMemo)(()=>{if(void 0!==t){let e;return e={assetId:t,width:i,height:n,containerWidth:r,thumbnailSettings:a,thumbnailConfig:l},(0,lA.i)(e,"document","JPEG")}},[t,i,n,r,a,l]);return(0,tq.jsx)(lP.R,{...o,assetId:t,thumbnailUrl:s})};var lR=i(11587),lV=i(44511),lz=i(80399);let lB=e=>{var t,i,n,r,a;let{t:l}=(0,iQ.useTranslation)(),o=e.value,s=null==(t=e.config)?void 0:t.width,d=null==(i=e.config)?void 0:i.height,c=(0,tI.isBoolean)(e.inherited)&&e.inherited,f=!0===e.disabled||c,u=!(0,tI.isNil)(null==o?void 0:o.id),{getSmartDimensions:m,handlePreviewResize:p,handleAssetTargetResize:g}=(0,lz.Z)(),h=m(null==o?void 0:o.id),y=(0,tI.isNil)(s)&&(0,tI.isNil)(d),{width:v}=(0,lE.A)(y?e.containerRef??{current:null}:{current:null}),{triggerUpload:b}=(0,lL.w)({}),{openElement:x}=(0,nt.K)(),{open:j}=(0,lC.L)({selectionType:lD.hO.Single,areas:{asset:!0,object:!1,document:!1},config:{assets:{allowedTypes:["document"]}},onFinish:e=>{e.items.length>0&&w(e.items[0].data.id)}}),w=t=>{var i;null==(i=e.onChange)||i.call(e,{id:t})},k=(0,tG.useCallback)(()=>{var t;b({targetFolderPath:null==(t=e.config)?void 0:t.uploadPath,accept:"application/pdf",multiple:!1,maxItems:1,onSuccess:async e=>{e.length>0&&w(Number(e[0].id))}})},[null==(n=e.config)?void 0:n.uploadPath,b,w]),T=async e=>{w(Number(e.id))},S=[];(0,tI.isNil)(null==o?void 0:o.id)||S.push({key:"open",icon:(0,tq.jsx)(r9.I,{value:"open-folder"}),label:l("open"),disabled:e.disabled,onClick:()=>{(0,tI.isNil)(null==o?void 0:o.id)||x({id:o.id,type:"asset"})}},{key:"empty",icon:(0,tq.jsx)(r9.I,{value:"trash"}),label:l("empty"),disabled:f,onClick:()=>{var t;null==(t=e.onChange)||t.call(e,{})}}),S.push({key:"locate-in-tree",icon:(0,tq.jsx)(r9.I,{value:"target"}),label:l("element.locate-in-tree"),disabled:f||(0,tI.isNil)(null==o?void 0:o.id),onClick:()=>{(0,lV.a)("asset",null==o?void 0:o.id)}},{key:"search",icon:(0,tq.jsx)(r9.I,{value:"search"}),label:l("search"),disabled:f,onClick:j},{key:"upload",icon:(0,tq.jsx)(r9.I,{value:"upload-cloud"}),label:l("upload"),disabled:f,onClick:k});let C=(0,tG.useCallback)(t=>{var i;let n=(0,tI.isNil)(null==o?void 0:o.id)?"round":"angular";return(0,tq.jsx)(lF.V,{assetType:"document",disabled:f,fullWidth:(0,tI.isNil)((null==h?void 0:h.width)??s),onSuccess:T,targetFolderPath:null==(i=e.config)?void 0:i.uploadPath,children:(0,tq.jsx)(lM.g,{isValidContext:()=>!f,isValidData:e=>"asset"===e.type&&"document"===e.data.type,onDrop:e=>{w(e.data.id)},shape:n,variant:"outline",children:t})})},[null==(r=e.config)?void 0:r.uploadPath,f,T,w,null==o?void 0:o.id]);return(0,tq.jsx)(lj.x,{display:!(0,tI.isNil)((null==h?void 0:h.width)??s)||u?"inline-block":"block",hideButtons:!0,isInherited:c,onOverwrite:()=>{var t;null==(t=e.onChange)||t.call(e,e.value??{})},style:{minWidth:lR.Yh},children:C(u?(0,tq.jsx)(lN,{assetId:o.id,containerWidth:Math.max(v,lR.Yh),dropdownItems:S,height:(null==h?void 0:h.height)??d,lastImageDimensions:h,onResize:p,thumbnailConfig:null==(a=e.config)?void 0:a.thumbnail,width:(null==h?void 0:h.width)??s},o.id):(0,tq.jsx)(lI.C,{dndIcon:!0,height:(null==h?void 0:h.height)??d??lR.ui,onResize:g,onSearch:j,onUpload:k,title:l("pdf-editable.dnd-target"),width:(null==h?void 0:h.width)??s??"100%"}))})},lO=(0,tk.injectable)()(em=class extends lm.Z{getEditableDataComponent(e){return(0,tq.jsx)(lB,{config:e.config,containerRef:e.containerRef,inherited:e.inherited})}constructor(...e){super(...e),function(e,t){var i;(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:"pdf",enumerable:!0,configurable:!0,writable:!0}):e[t]="pdf"}(this,"id")}})||em;var lK=i(51684),l_=i(93824),lH=i(33099),l$=i(11387),lW=i(87638);let lq=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsx)(tJ.lV.Item,{initialValue:"",label:e("text"),name:"text",children:(0,tq.jsx)(aR.p,{})})},lG=(0,tk.injectable)()(ep=class extends lW.M{getComponent(){return(0,tq.jsx)(lq,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","staticText")}})||ep;var lU=i(7319),lQ=i(86620),lJ=i(38481),lZ=i(19580),lY=i(31756),lX=i(15547),l0=i(97190),l1=i(3782),l2=i(79691),l3=i(6002),l6=i(17639),l4=i(52057),l5=i(97552),l7=i(5662),l8=i(9677);let l9=()=>{var e;let{config:t}=(0,l8.e)(),{t:i}=(0,iQ.useTranslation)(),n=null==t?void 0:t.simpleField;if(void 0===n)throw Error("Source field configuration is missing");let r=n.map(e=>({label:e.name,value:e.key}));return(0,tq.jsx)(tJ.lV.Item,{initialValue:null==(e=n[0])?void 0:e.key,label:i("field"),name:"field",children:(0,tq.jsx)(t8.l,{options:r,showSearch:!0})})},oe=(0,tk.injectable)()(eg=class extends lW.M{isAvailableForSelection(e){return Array.isArray(e.simpleField)&&e.simpleField.length>0}getComponent(){return(0,tq.jsx)(l9,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","simpleField")}})||eg;var ot=i(29722);let oi=()=>{let{config:e}=(0,l8.e)(),t=null==e?void 0:e.relationField,{name:i}=(0,aV.H)(),{operations:n}=(0,aN.y)(),r=tJ.lV.useWatch([...i,"relation"]),a=(0,ot.Z)(r),{t:l}=(0,iQ.useTranslation)();if((0,tG.useEffect)(()=>{a!==r&&void 0!==a&&n.update([...i,"field"],null,!1)},[r,i,n,a]),void 0===t)throw Error("Source field configuration is missing");let o=t.map(e=>({label:e.name,value:e.key})),s=[];return t.forEach(e=>{let t=[];e.key===r&&e.fields.forEach(e=>{t.push({label:e.name,value:e.key})}),t.length>0&&s.push(...t)}),(0,tq.jsxs)(ap.s,{className:"w-full",gap:"small",children:[(0,tq.jsx)(tJ.lV.Item,{className:"w-full",label:l("relation"),name:"relation",children:(0,tq.jsx)(ig.Select,{options:o})}),(0,tq.jsx)(tJ.lV.Item,{className:"w-full",label:l("field"),name:"field",children:(0,tq.jsx)(ig.Select,{disabled:0===s.length,options:s})})]})},on=(0,tk.injectable)()(eh=class extends lW.M{isAvailableForSelection(e){return Array.isArray(e.relationField)&&e.relationField.length>0}getComponent(){return(0,tq.jsx)(oi,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","relationField")}})||eh;var or=i(43611),oa=i(89653),ol=i(62834),oo=i(85514),os=i(41417),od=i(46766),oc=i(52725);let of=e=>{let{value:t,config:i,onChange:n,className:r}=e,{t:a}=(0,iQ.useTranslation)(),[l,o]=(0,tG.useState)(""),{id:s}=(0,oc.useParams)(),d=(0,tI.isNil)(s)?void 0:parseInt(s),c=!(0,tI.isNil)(null==t?void 0:t.id)&&!(0,tI.isNil)(null==i?void 0:i.controller)&&i.controller.length>0,f=c?{id:t.id,type:t.type,controller:i.controller,parentDocumentId:d??void 0,template:null==i?void 0:i.template,...(0,tI.omit)(i,["controller","template","className","height","width","reload","title","type","class"])}:void 0,{data:u,isLoading:m,error:p}=(0,od.Ui)(f,{skip:!c}),g=!m&&c,{openElement:h}=(0,nt.K)(),y=()=>{if(!(0,tI.isNil)(null==t?void 0:t.type))return"object"===t.type?"data-object":t.type},v=!(0,tI.isNil)(p)&&"status"in p,b=v&&"PARSING_ERROR"!==p.status?p:void 0,x=v&&"PARSING_ERROR"===p.status&&"data"in p&&!(0,tI.isNil)(p.data)?String(p.data):null;tU().useEffect(()=>{(0,tI.isNil)(u)?!(0,tI.isNil)(x)&&x.length>0?o(x):o(""):u.text().then(e=>{o(e)}).catch(()=>{o("")})},[u,x]);let{open:j}=(0,lC.L)({selectionType:lD.hO.Single,areas:{asset:(0,tI.isNil)(null==i?void 0:i.type)||"asset"===i.type,document:(0,tI.isNil)(null==i?void 0:i.type)||"document"===i.type,object:(0,tI.isNil)(null==i?void 0:i.type)||"object"===i.type},config:{objects:(0,tI.isNil)(null==i?void 0:i.className)?void 0:{allowedTypes:(0,tI.isArray)(i.className)?i.className:[i.className]}},onFinish:e=>{if(!(0,tI.isEmpty)(e.items)){let t=e.items[0];n({id:t.data.id,type:t.elementType,subtype:t.data.type??t.data.subtype})}}}),w=[];g&&w.push({key:"empty",label:a("empty"),icon:(0,tq.jsx)(r9.I,{value:"trash"}),onClick:()=>{n(null),o("")}},{key:"open",label:a("open"),icon:(0,tq.jsx)(r9.I,{value:"open-folder"}),onClick:()=>{if(!(0,tI.isNil)(null==t?void 0:t.id)&&!(0,tI.isNil)(null==t?void 0:t.type)){let e=y();(0,tI.isNil)(e)||h({id:t.id,type:e})}}},{key:"locate-in-tree",label:a("element.locate-in-tree"),icon:(0,tq.jsx)(r9.I,{value:"target"}),onClick:()=>{let e=y();(0,lV.a)(e,null==t?void 0:t.id)}}),w.push({key:"search",label:a("search"),icon:(0,tq.jsx)(r9.I,{value:"search"}),onClick:()=>{j()}});let k=!(0,tI.isNil)(b)||v?(0,tq.jsx)(ig.Alert,{description:(()=>{if(!(0,tI.isNil)(b))try{if("object"==typeof b&&"data"in b&&!(0,tI.isNil)(b.data)){let e=(0,tI.isString)(b.data)?JSON.parse(b.data):b.data;if(!(0,tI.isNil)(e)&&"object"==typeof e&&"message"in e)return e.message}}catch{}})(),message:a("error-loading-renderlet"),showIcon:!0,style:{width:"100%"},type:"error"}):void 0,T=l.length>0?(0,tq.jsx)(at.h,{html:l}):void 0;return(0,tq.jsx)(os.s,{className:r,contextMenuItems:w,defaultHeight:100,dropZoneText:(()=>{if(!(0,tI.isNil)(null==i?void 0:i.type))switch(i.type){case"document":return a("drop-document-here");case"asset":return a("drop-asset-here");case"object":return a("drop-object-here")}return a("drop-element-here")})(),error:k,hasContent:g,height:null==i?void 0:i.height,isLoading:m,renderedContent:T,width:null==i?void 0:i.width})};var ou=i(87632);let om=e=>{let{value:t,config:i,onChange:n,className:r,inherited:a=!1,disabled:l=!1}=e,o=e=>"data-object"===e?"object":e;return(0,tq.jsx)(lj.x,{display:(0,tI.isNil)(null==i?void 0:i.width)?"block":void 0,isInherited:a,noPadding:!0,onOverwrite:()=>{n(t??null)},children:(0,tq.jsx)(lM.g,{disableDndActiveIndicator:!0,isValidContext:e=>!l&&ou.b9.includes(e.type),isValidData:e=>{var t,n,r;let a=o(e.type);return(!!(0,tI.isNil)(null==i?void 0:i.type)||i.type===a)&&("object"!==a||(0,tI.isNil)(null==i?void 0:i.className)?!(0,tI.isNil)(null==(t=e.data)?void 0:t.id)&&!(0,tI.isNil)(null==(n=e.data)?void 0:n.type):(Array.isArray(i.className)?i.className:[i.className]).includes(String(null==(r=e.data)?void 0:r.className)))},onDrop:e=>{var t,r;if(!(0,tI.isNil)(null==(t=e.data)?void 0:t.id)&&!(0,tI.isNil)(null==(r=e.data)?void 0:r.type)){let t=o(e.type);if(!(0,tI.isNil)(null==i?void 0:i.type)&&i.type!==t||"object"===t&&!(0,tI.isNil)(null==i?void 0:i.className)&&!(Array.isArray(i.className)?i.className:[i.className]).includes(String(e.data.className)))return;n({id:e.data.id,type:t,subtype:e.data.type??e.data.subtype})}},children:(0,tq.jsx)(of,{className:r,config:i,onChange:n,value:t})})})};class op extends lm.Z{getEditableDataComponent(e){var t;return(0,tq.jsx)(om,{className:null==(t=e.config)?void 0:t.class,config:e.config,disabled:e.inherited,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e){return(0,tI.isNil)(e)||"object"!=typeof e||(0,tI.isNil)(e.id)?null:{id:e.id,type:e.type,subtype:e.subtype}}transformValueForApi(e){return(0,tI.isNil)(e)?null:{id:e.id??null,type:e.type??null,subtype:e.subtype??null}}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","renderlet")}}var og=i(48034);let oh=(0,iR.createStyles)(e=>{let{token:t}=e;return{blockContainer:{position:"relative"},blockToolstrip:{display:"inline-block",width:"fit-content",marginTop:t.marginXS,marginBottom:t.marginXS}}});var oy=i(57180),ov=i(22414);class ob extends ov.H{getEditableType(){return"block"}getElementSelector(){return`.pimcore_block_entry[data-name="${this.editableName}"][key]`}findElementIndex(e){let t=this.queryElements();if(0===t.length)return -1;let i=e.getAttribute("key");return t.findIndex(e=>e.getAttribute("key")===i)}ensureElementKey(e){let t=this.getElementKey(e);((0,tI.isNil)(t)||""===t)&&this.setElementKey(e,"0")}ensureAllElementKeys(){let e=this.queryElements();return e.forEach(e=>{this.ensureElementKey(e)}),e}getBlockValue(){let e=this.queryElements();return ox.elementsToBlockValue(e)}}let ox={swapElements:(e,t,i)=>{let n=[...e],r=n[t];return n[t]=n[i],n[i]=r,n},filterEditableNames:(e,t,i)=>{let n=`${t}:${i}.`;return e.filter(e=>e.startsWith(n))},elementsToBlockValue:e=>e.map(e=>e.getAttribute("key")).filter(e=>null!==e).map(e=>parseInt(e,10))},oj=(e,t)=>!(0,tI.isNil)(t)&&e>=t,ow=e=>(null==e?void 0:e.reload)===!0;var ok=i(11774),oT=i(40701),oS=i(36249),oC=i(52255),oD=i(54872),oI=i(62461),oM=i(55127),oL=i(28660);let oF=e=>{let{id:t,buttonsContainer:i,element:n,limitReached:r,blockManager:a,onAddBlock:l,onRemoveBlock:o,onMoveBlockUp:s,onMoveBlockDown:d,isInherited:c=!1,onOverwrite:f}=e,{styles:u}=oh(),{t:m}=(0,iQ.useTranslation)(),{listeners:p}=(0,oM.y)({id:t,element:n}),g=a.queryElements(),h=a.findElementIndex(n),y=h===g.length-1,v=!(0,tI.isNull)(i.querySelector(".pimcore_block_plus")),b=!(0,tI.isNull)(i.querySelector(".pimcore_block_minus")),x=!(0,tI.isNull)(i.querySelector(".pimcore_block_up")),j=!(0,tI.isNull)(i.querySelector(".pimcore_block_down")),w=[],k=null;return v&&!r&&w.push((0,tq.jsx)(lp.K,{icon:{value:"new"},onClick:()=>{l(n,1)},size:"small"},"plus")),x&&w.push((0,tq.jsx)(lp.K,{disabled:0===h,icon:{value:"chevron-up"},onClick:()=>{s(n)},size:"small"},"up")),j&&w.push((0,tq.jsx)(lp.K,{disabled:y,icon:{value:"chevron-down"},onClick:()=>{d(n)},size:"small"},"down")),b&&(k=(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{o(n)},size:"small"},"minus")),(0,tq.jsx)(oL.s,{isInherited:c,onOverwrite:f,children:(0,tq.jsx)(oD.Z,{activateOnHover:!0,additionalIcon:c?"inheritance-active":void 0,className:u.blockToolstrip,disabled:c,dragger:{listeners:p},theme:"inverse",title:m("block"),children:(0,tq.jsxs)(oI.B,{dividerSize:"small",size:"mini",theme:"secondary",children:[(0,tq.jsx)(ig.Space,{size:"small",children:w}),k]})},`toolbar-${n.getAttribute("key")}`)})};var oE=i(36604);let oP=e=>{let{onClick:t,isInherited:i=!1,onOverwrite:n}=e,{styles:r}=oh();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(oE.L,{}),(0,tq.jsx)(oL.s,{isInherited:i,onOverwrite:n,children:(0,tq.jsx)(oD.Z,{additionalIcon:i?"inheritance-active":void 0,className:r.blockToolstrip,disabled:i,theme:"inverse",children:(0,tq.jsx)(lp.K,{icon:{value:"new"},onClick:i?void 0:t,size:"small"})})})]})};var oA=i(44108),oN=i(65504);let oR=e=>{let{value:t=[],onChange:i,config:n,className:r,editableName:a,containerRef:l,disabled:o=!1,isInherited:s=!1}=e,{styles:d}=oh(),c=(0,tI.isArray)(t)?t:[],f=(0,tG.useMemo)(()=>new ob(a,l),[a,l]),u=(0,tG.useCallback)(()=>{null==i||i(f.getBlockValue())},[f,i]),{dynamicEditables:m,addBlock:p,removeBlock:g,moveBlockUp:h,moveBlockDown:y,moveBlock:v}=(e=>{let{blockManager:t,value:i=[],onChange:n,config:r,disabled:a=!1}=e,{initializeData:l,getValues:o,removeValues:s}=(0,oy.U)(),[d,c]=(0,tG.useState)([]),f=(0,tG.useRef)(t.queryElements()),{hideElementUntilRendered:u,revealPendingElements:m}=(0,oC.j)({dynamicEditables:d,getContainer:()=>t.getContainer()}),p=(0,tG.useCallback)(e=>{let t=e([...f.current]);f.current=t;let i=ox.elementsToBlockValue(t);null==n||n(i)},[n,r,t]),g=(0,tG.useCallback)(()=>{t.ensureAllElementKeys();let e=t.getBlockValue();null==n||n(e)},[n,t]),h=(0,tG.useCallback)(function(e){var i,n,o;let s;if(arguments.length>1&&void 0!==arguments[1]&&arguments[1],a)return;let d=(null==(s=r)?void 0:s.limit)??1e6;if(oj((ow(r)?f.current:t.queryElements()).length,d))return;let h=(0,tI.isNil)(e)?0:t.findElementIndex(e)+1,y=t.calculateNextKey();if(ow(r))return void p(e=>{let i=document.createElement("div");t.setElementKey(i,y.toString());let n=[...e];return n.splice(h,0,i),n});let v=t.getContainer();if((0,tI.isNil)(v)||(0,tI.isNil)(null==r||null==(i=r.template)?void 0:i.html)||(0,tI.isNil)(null==r||null==(n=r.template)?void 0:n.editables))return;let{html:b,editableDefinitions:x}=((e,t)=>{let i,n,r,{templateHtml:a,blockManager:l,nextKey:o}=e,s=l.getEditableName(),d=(s.split(":").pop()??s).replace(/^\d+\./,""),c=s.replace(/[:.]/g,"_"),f=(i=l.getEditableName(),n=l.getRealEditableName(),r=i.replace(/[:.]/g,"_"),a.replace(RegExp(`"([^"]+):1000000\\.${n}("|:)`,"g"),`"${i}$2`).replace(RegExp(`"pimcore_editable_([^"]+)_1000000_${n}_`,"g"),`"pimcore_editable_${r}_`).replace(/:1000000\./g,`:${o}.`).replace(/_1000000_/g,`_${o}_`).replace(/="1000000"/g,`="${o}"`).replace(/, 1000000"/g,`, ${o}"`)),u=[];return t.forEach(e=>{var t;let i={...e};if((0,tI.isNil)(i.id)||""===i.id||(i.id=i.id.replace(RegExp(`pimcore_editable_([^"]+)_1000000_${d}_`,"g"),`pimcore_editable_${c}_`),i.id=i.id.replace(/_1000000_/g,`_${o}_`)),(0,tI.isNil)(i.name)||""===i.name||(i.name=i.name.replace(RegExp(`^([^"]+):1000000\\.${d}:`),`${s}:`),i.name=i.name.replace(/:1000000\./g,`:${o}.`)),!(0,tI.isNil)(null==(t=i.config)?void 0:t.blockStateStack)&&""!==i.config.blockStateStack)try{let e=JSON.parse(i.config.blockStateStack);for(let t=0;t{if(!(0,tI.isNil)(e.id)&&""!==e.id){let t=document.getElementById(e.id);if((0,tI.isNil)(t)){let t=document.createElement("div");t.id=e.id,t.setAttribute("data-name",e.name),t.setAttribute("data-type",e.type),w.appendChild(t)}}}),l((0,oT.b)(x)),c(e=>[...e,...x]),0===x.length&&m(),g()}},[a,r,p,l,g,t]),y=(0,tG.useCallback)(e=>{if(a)return;if(ow(r)){let i=t.findElementIndex(e);p(e=>{let t=[...e];return t.splice(i,1),t});return}let i=(e=>{let i=t.getElementKey(e);if((0,tI.isNil)(i))return[];let n=o();return ox.filterEditableNames(Object.keys(n),t.getEditableName(),i)})(e),n=t.getElementKey(e);if(!(0,tI.isNil)(n)){let e=t.getEditableName(),i=`${e}:${n}.`;c(e=>e.filter(e=>!e.name.startsWith(i)))}e.remove(),i.length>0&&s(i),g()},[a,r,p,s,g,t]),v=(e,i)=>{if(a)return;let n=t.findElementIndex(e),l=ow(r)?f.current:t.queryElements();if("up"===i&&!(n>0)||"down"===i&&!(nox.swapElements(t,n,e));return}let o="up"===i?l[n-1]:l[n+1];if(!(0,tI.isNil)(o)){var s;let t="up"===i?o:o.nextSibling;null==(s=o.parentNode)||s.insertBefore(e,t),g()}};return{dynamicEditables:d,addBlock:h,removeBlock:y,moveBlockUp:e=>{v(e,"up")},moveBlockDown:e=>{v(e,"down")},moveBlock:(0,tG.useCallback)((e,i)=>{if(a)return;let n=ow(r)?f.current:t.queryElements();if(e<0||e>=n.length||i<0||i>=n.length)return;if(ow(r))return void p(t=>{let n=[...t],[r]=n.splice(e,1);return n.splice(i,0,r),n});let l=window.scrollX,o=window.scrollY,s=n[e],d=n[i];if(!(0,tI.isNil)(s)&&!(0,tI.isNil)(d)){var c;let t=i>e?d.nextSibling:d;null==(c=d.parentNode)||c.insertBefore(s,t),requestAnimationFrame(()=>{window.scrollTo(l,o)}),g()}},[a,r,p,g,t])}})({blockManager:f,value:c,onChange:i,config:n,disabled:o}),{renderBlockToolbar:b}=(e=>{let{blockManager:t,config:i,onAddBlock:n,onRemoveBlock:r,onMoveBlockUp:a,onMoveBlockDown:l,onMoveBlock:o,isInherited:s=!1,onOverwrite:d}=e,{activeId:c,handleDragStart:f,handleDragOver:u,handleDragEnd:m,dropzonePortals:p,dragOverlayTitle:g,refreshDropzones:h,removeFirstDropzone:y}=(e=>{let{blockManager:t,onMoveBlock:i}=e,{t:n}=(0,iQ.useTranslation)(),r=(0,oA.g)({blockManager:t,onMoveItem:i}),a=n("block");return{...r,dragOverlayTitle:a}})({blockManager:t,onMoveBlock:o}),v=(0,tG.useCallback)((e,t)=>{n(e,t),h()},[n,h]),b=(0,tG.useCallback)(e=>{let i=1===t.queryElements().length;r(e),i&&y()},[r,t,y]),x=(0,tG.useCallback)(e=>{let t=(0,tq.jsx)(oP,{isInherited:s,onClick:()=>{s||v(null,1)},onOverwrite:d});return lv().createPortal(t,e)},[v,s,d]);return{renderBlockToolbar:(0,tG.useCallback)(()=>{let e=[],n=t.queryElements(),r=(0,tI.isNumber)(null==i?void 0:i.limit)?i.limit:void 0,o=oj(n.length,r);if(0===n.length){let i=t.getContainer();if(null!==i){let t=x(i);e.push(t)}}else s||e.push(...p);let h=n.map(e=>t.getElementKey(e)).filter(e=>!!e);return n.forEach(i=>{let n=i.querySelector(".pimcore_block_buttons");if(null!==n){let r=t.getElementKey(i);if(null!==r){let c=(0,tq.jsx)(oF,{blockManager:t,buttonsContainer:n,element:i,id:r,isInherited:s,limitReached:o,onAddBlock:v,onMoveBlockDown:l,onMoveBlockUp:a,onOverwrite:d,onRemoveBlock:b},r),f=lv().createPortal(c,n);e.push(f)}}}),(0,tq.jsx)(oN.C,{activeId:c,dragOverlayTitle:g,items:h,onDragEnd:m,onDragOver:u,onDragStart:f,children:(0,tq.jsx)(tq.Fragment,{children:e})})},[t,i,f,u,m,v,b,a,l,c,p,g,x,s,d])}})({blockManager:f,config:n,onAddBlock:p,onRemoveBlock:g,onMoveBlockUp:h,onMoveBlockDown:y,onMoveBlock:v,isInherited:s,onOverwrite:u});return(0,tq.jsxs)("div",{className:`${d.blockContainer} ${r??""}`,children:[(0,tq.jsx)(og.E,{editableDefinitions:m}),b()]})};class oV extends lm.Z{getEditableDataComponent(e){var t;return(0,tq.jsx)(oR,{className:null==(t=e.config)?void 0:t.class,config:e.config,containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,isInherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e,t){return new ob(t.name,t.containerRef).getBlockValue()}reloadOnChange(e){var t;return!!(null==(t=e.config)?void 0:t.reload)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","block")}}let oz=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{scheduledblockContainer:t` - position: relative; - `,controlsContainer:t` - display: flex; - align-items: center; - gap: ${i.marginSM}px; - margin-bottom: ${i.marginSM}px; - padding: ${i.paddingXXS}px ${i.paddingSM}px ; - background-color: ${i.colorBgContainer}; - border: 1px solid ${i.colorBorder}; - border-radius: ${i.borderRadius}px; - min-height: 70px; - `,datePickerContainer:t` - min-width: 120px; - `,buttonsContainer:t` - display: flex; - gap: ${i.marginXS}px; - `}});class oB extends ov.H{getEditableType(){return"scheduledblock"}getElementSelector(){return".pimcore_block_entry"}findElementIndex(e){return this.queryElements().findIndex(t=>t===e)}getElementDate(e){let t=e.getAttribute("date");return null!==t?parseInt(t,10):null}setElementDate(e,t){e.setAttribute("date",t.toString())}hideAllElements(){this.queryElements().forEach(e=>{e.style.display="none"})}showElementByKey(e){this.hideAllElements();let t=this.findElementByKey(e);(0,tI.isNil)(t)||(t.style.display="block")}}let oO=e=>e.map(e=>{let t=e.getAttribute("key"),i=e.getAttribute("date");return{key:t??"0",date:null!==i?parseInt(i,10):0}}).filter(e=>!(0,tI.isNil)(e.key)),oK=(e,t,i)=>e.filter(e=>e.date>=t&&e.date<=i),o_=(e,t)=>{let i=e.filter(e=>e.datet.date>e.date?t:e,i[0])};var oH=i(74353),o$=i.n(oH);let oW=e=>{let{value:t,disabled:i=!1,onJumpToEntry:n,onCleanupTimestamps:r}=e,{t:a}=(0,iQ.useTranslation)(),{confirm:l}=(0,ni.useFormModal)(),o=(0,tG.useCallback)(()=>{let e=[...(0,tI.isArray)(t)?t:[]].sort((e,t)=>e.date-t.date).map(e=>({key:`jump-${e.key}`,label:(0,af.formatDateTime)({timestamp:e.date,dateStyle:"medium",timeStyle:"short"}),onClick:()=>{n(o$().unix(e.date),e.key)}}));return e.length>0&&e.push({type:"divider",key:"divider"}),[...e,{key:"delete-past",label:a("scheduled-block.delete-all-in-past"),icon:(0,tq.jsx)(ni.Icon,{value:"trash"}),onClick:()=>{l({title:a("scheduled-block.delete-all-in-past-confirmation"),onOk:()=>{r(!1)}})}},{key:"delete-all",label:a("scheduled-block.delete-all"),icon:(0,tq.jsx)(ni.Icon,{value:"trash"}),onClick:()=>{l({title:a("scheduled-block.delete-all-confirmation"),onOk:()=>{r(!0)}})}}]},[t]);return(0,tq.jsx)(ni.Dropdown,{disabled:i,menu:{items:o()},trigger:["click"],children:(0,tq.jsx)(lp.K,{icon:{value:"history"},type:"default"})})},oq=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{markerOverlay:t` - cursor: pointer; - transition: all 0.2s ease; - z-index: 10; - display: flex; - flex-direction: column; - align-items: center; - position: relative; - transform: translateY(-12px); - `,markerCircleBase:t` - width: 12px; - height: 12px; - border: 2px solid ${i.colorBgContainer}; - border-radius: 50%; - transition: all 0.2s ease; - box-shadow: ${i.boxShadowSecondary}; - `,markerCircle:t` - background-color: ${i.colorBorder}; - - &:hover { - background-color: ${i.colorPrimary}; - transform: scale(1.2); - } - `,markerCircleActive:t` - background-color: ${i.colorPrimary} !important; - - &:hover { - transform: scale(1.2); - } - `,markerTime:t` - margin-top: 2px; - font-size: 11px; - white-space: nowrap; - color: ${i.colorTextSecondary}; - `}}),oG=e=>{let{entry:t,onModifyDateChange:i,onEntryClick:n,onDeleteEntry:r,timeLabel:a,isActive:l=!1}=e,{t:o}=(0,iQ.useTranslation)(),{styles:s}=oq(),{confirm:d}=(0,ni.useFormModal)(),[c,f]=(0,tG.useState)(!1),[u,m]=(0,tG.useState)(!1),[p,g]=(0,tG.useState)(!1),[h,y]=(0,tG.useState)(!1),v=(0,tG.useCallback)(()=>{f(!1),g(!1),y(!1)},[]),b=(0,tG.useCallback)(e=>{(0,tI.isNil)(e)||(y(!0),i(t.key,e))},[t.key,i]);(0,tG.useEffect)(()=>{if(h){let e=setTimeout(()=>{v()},50);return()=>{clearTimeout(e)}}},[h,v]);let x=(0,tq.jsx)(ni.Box,{padding:"extra-small",children:(0,tq.jsx)(ni.DatePicker,{format:"YYYY-MM-DD HH:mm",onChange:b,onOpenChange:e=>{g(e),e||setTimeout(()=>{c&&v()},100)},open:p,showTime:{format:"HH:mm",hideDisabledOptions:!0},style:{width:"100%"},value:o$().unix(t.date)})});return(0,tq.jsx)(ig.Popover,{content:x,onOpenChange:e=>{e||(g(!1),v())},open:c,placement:"top",trigger:[],children:(0,tq.jsx)(ig.Tooltip,{placement:"top",title:(0,af.formatDateTime)({timestamp:t.date,dateStyle:"medium",timeStyle:"short"}),children:(0,tq.jsx)(ni.Dropdown,{menu:{items:[{key:"modify",label:o("modify"),icon:(0,tq.jsx)(ni.Icon,{value:"edit"}),onClick:()=>{m(!1),f(!0),setTimeout(()=>{g(!0)},100)}},{key:"delete",label:o("delete"),icon:(0,tq.jsx)(ni.Icon,{value:"trash"}),onClick:()=>{d({title:o("scheduled-block.delete-confirmation"),onOk:()=>{r(t.key)}})}}]},onOpenChange:m,open:u,trigger:["contextMenu"],children:(0,tq.jsxs)("div",{className:s.markerOverlay,onClick:e=>{e.stopPropagation(),n(t)},onContextMenu:e=>{e.preventDefault(),e.stopPropagation(),m(!u)},onKeyDown:e=>{("Enter"===e.key||" "===e.key)&&(e.preventDefault(),e.stopPropagation(),n(t))},role:"button",tabIndex:0,children:[(0,tq.jsx)("div",{className:lx()(s.markerCircleBase,s.markerCircle,{[s.markerCircleActive]:l})}),(0,tq.jsx)("div",{className:s.markerTime,children:a})]})})})})},oU=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{sliderContainer:t` - flex: 1; - min-width: 200px; - padding: 0 ${i.paddingSM}px; - display: flex; - align-items: center; - - .ant-slider-track { - display: none; - } - `,sliderWrapper:t` - width: 100%; - - .ant-slider-handle { - display: none; - } - - .ant-slider-dot { - display: none; - } - `}}),oQ=e=>{let{value:t,selectedDate:i,currentTimestamp:n,disabled:r=!1,onSliderChange:a,onModifyDateChange:l,onEntryClick:o,onDeleteEntry:s}=e,{styles:d}=oU(),c=(0,tG.useMemo)(()=>{let e=i.startOf("day").unix(),r=i.endOf("day").unix(),a=oK((0,tI.isArray)(t)?t:[],e,r),d={};return a.forEach(t=>{let i,r=t.date-e,a=n===t.date,c=(i=t.date,o$().unix(i).format("HH:mm"));d[r]={label:(0,tq.jsx)(oG,{entry:t,isActive:a,onDeleteEntry:s,onEntryClick:o,onModifyDateChange:l,timeLabel:c},t.key)}}),d},[t,i,n,l,o,s]),f=(0,tG.useMemo)(()=>{if(!(0,tI.isNil)(n)&&o$().unix(n).isSame(i,"day"))return n-i.startOf("day").unix()},[n,i]);return(0,tq.jsx)("div",{className:d.sliderContainer,children:(0,tq.jsx)("div",{className:d.sliderWrapper,children:(0,tq.jsx)(ig.Slider,{disabled:r,marks:c,max:86400,min:0,onChange:a,step:1,value:f??0})})})},oJ=e=>{let{value:t=[],onChange:i,className:n,editableName:r,containerRef:a,disabled:l=!1,inherited:o=!1}=e,{styles:s}=oz(),{t:d}=(0,iQ.useTranslation)(),[c,f]=(0,tG.useState)(o$()()),[u,m]=(0,tG.useState)(null),[p,g]=(0,tG.useState)(null),h=!!l||!!o,y=(0,tG.useCallback)(e=>{oX(r,e)},[r]),v=(0,tG.useMemo)(()=>new oB(r,a),[r,a]),{addBlock:b,removeBlock:x,cleanupTimestamps:j}=(e=>{let{scheduledblockManager:t,onChange:i,disabled:n=!1}=e,r=(0,tG.useRef)(t.queryElements()),a=(0,tG.useCallback)(e=>{let t=e([...r.current]);r.current=t;let n=oO(t);null==i||i(n)},[i]),l=(0,tG.useCallback)(e=>{if(n)return;let i=t.calculateNextKey(),r=Math.floor(e.getTime()/1e3);a(e=>{let n=document.createElement("div");return t.setElementKey(n,i.toString()),t.setElementDate(n,r),[...e,n]})},[n,a,t]),o=(0,tG.useCallback)(e=>{if(n)return;let i=t.findElementIndex(e);a(e=>{let t=[...e];return t.splice(i,1),t})},[n,a,t]),s=(0,tG.useCallback)(e=>{if(n)return;let i=Math.floor(Date.now()/1e3);e?a(()=>[]):a(e=>{let n=o_(oO(e),i);return e.filter(e=>{let r=t.getElementDate(e),a=t.getElementKey(e);return(0,tI.isNil)(r)||r>=i||!(0,tI.isNil)(n)&&a===n.key})})},[n,a,t]);return(0,tG.useEffect)(()=>{t.hideAllElements()},[t]),{addBlock:l,removeBlock:o,cleanupTimestamps:s}})({scheduledblockManager:v,onChange:i,disabled:h}),w=(0,tG.useCallback)(e=>{let i=e.startOf("day").unix(),n=e.endOf("day").unix(),r=(0,tI.isArray)(t)?t:[],a=oK(r,i,n);if(!(!(0,tI.isNil)(u)&&u>=i&&u<=n))if(a.length>0){let e=a[0];v.showElementByKey(e.key),m(e.date)}else{let e=o_(r,i);(0,tI.isNil)(e)?(v.hideAllElements(),m(null)):(v.showElementByKey(e.key),m(e.date))}},[t,u,v]),k=(0,tG.useCallback)(e=>{(0,tI.isNil)(e)||f(e)},[]),T=(0,tG.useCallback)((e,n)=>{if(h)return;y("modify");let r=((0,tI.isArray)(t)?t:[]).map(t=>t.key===e?{...t,date:n}:t);null==i||i(r);let a=v.findElementByKey(e);(0,tI.isNil)(a)||v.setElementDate(a,n)},[h,t,i,v,y]),S=(0,tG.useCallback)((e,i)=>{if(!(0,tI.isNil)(i)){let n=((0,tI.isArray)(t)?t:[]).find(t=>t.key===e);if(!(0,tI.isNil)(n)){let t=i.unix(),r=n.date,a=!o$().unix(r).isSame(i,"day");T(e,t),a?setTimeout(()=>{f(i),m(t),v.showElementByKey(e)},0):(w(c),m(t),v.showElementByKey(e))}}},[t,T,w,v,c]),C=(0,tG.useCallback)(e=>{let i=c.startOf("day").unix(),n=i+e,r=oK((0,tI.isArray)(t)?t:[],i,c.endOf("day").unix()),a=r.reduce((e,t)=>{let i=Math.abs(e.date-n);return Math.abs(t.date-n){y("add"),b(c.startOf("day").toDate())},[c,b,y]),I=(0,tG.useCallback)(e=>{y("delete");let t=v.findElementByKey(e);(0,tI.isNil)(t)||x(t)},[v,x,y]),M=(0,tG.useCallback)((e,t)=>{f(e),m(e.unix()),v.showElementByKey(t)},[v]);(0,tG.useEffect)(()=>{w(c)},[c,w]),(0,tG.useEffect)(()=>{(0,tI.isNil)(null==a?void 0:a.current)||g(a.current.querySelector(".pimcore_scheduled_block_controls"))},[a]);let L=(0,tq.jsx)(lj.x,{display:"block",hideButtons:!0,isInherited:o,noPadding:!0,onOverwrite:()=>{null==i||i(t??[])},children:(0,tq.jsx)("div",{className:`${s.scheduledblockContainer} ${n??""}`,children:(0,tq.jsxs)("div",{className:s.controlsContainer,children:[(0,tq.jsx)("div",{className:s.datePickerContainer,children:(0,tq.jsx)(ig.DatePicker,{allowClear:!1,disabled:h,onChange:k,value:c})}),(0,tq.jsx)(az.$,{disabled:h,onClick:D,type:"default",children:d("add")}),(0,tq.jsx)(oQ,{currentTimestamp:u,disabled:h,onDeleteEntry:I,onEntryClick:e=>{v.showElementByKey(e.key),m(e.date)},onModifyDateChange:S,onSliderChange:C,selectedDate:c,value:t}),(0,tq.jsx)("div",{className:s.buttonsContainer,children:(0,tq.jsx)(oW,{disabled:h,onCleanupTimestamps:j,onJumpToEntry:M,value:t})})]})})});return(0,tq.jsx)(tq.Fragment,{children:!(0,tI.isNil)(p)&&lv().createPortal(L,p)})};var oZ=i(46096);let oY=new Map,oX=(e,t)=>{(0,tI.isNil)(t)?oY.delete(e):oY.set(e,t)};class o0 extends lm.Z{getEditableDataComponent(e){return(0,tq.jsx)(oJ,{containerRef:e.containerRef,disabled:e.inherited,editableName:e.name,inherited:e.inherited,onChange:t=>{var i;return null==(i=e.onChange)?void 0:i.call(e,t)},value:e.value})}transformValue(e,t){return oO(new oB(t.name,t.containerRef).queryElements())}onDocumentReady(e,t){let i=t.some(e=>e.type===this.id);try{let{document:t}=(0,oZ.qH)();t.notifyTimeSliderVisible(e,i)}catch(e){console.warn("Could not notify parent about time slider visibility:",e)}}reloadOnChange(e){let t=oY.get(e.name);return(!!(0,tI.isNil)(t)||(oY.delete(e.name),"modify"!==t))&&!0}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","scheduledblock")}}class o1{getId(){return this.id}getCallback(){return this.callback}constructor(e){this.id=(0,n7.u)(),this.callback=e}}class o2 extends o1{}var o3=i(34108),o6=i(79422);class o4 extends tA.P{resolveThemeChain(e){let t=new Set,i=[],n=e=>{if(t.has(e))throw Error(`Circular theme dependency detected: ${e}`);let r=this.getDynamicType(e);if((0,tI.isNil)(r))throw Error(`Theme not found: ${e}`);if(t.add(e),!(0,tI.isNil)(r.extends)&&!(0,tI.isEmpty)(r.extends))for(let e of r.extends)n(e);i.push({id:e,config:r.getThemeConfig()})};return n(e),{themes:i}}}o4=(0,tw.Cg)([(0,tk.injectable)()],o4);class o5{}o5=(0,tw.Cg)([(0,tk.injectable)()],o5);var o7=i(20260);let o8={token:{fontFamily:"Lato, sans-serif",colorLink:"#722ed1",colorLinkActive:"#531dab",colorLinkHover:"#9254de",controlOutline:"rgba(114, 46, 209, 0.1)",controlItemBgActive:"#f8eeff",itemSelectedColor:"rgba(0, 0, 0, 0.88)",boxShadow:"0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02)",colorTextTertiary:"rgba(0, 0, 0, 0.6)",colorFill:"rgba(215, 199, 236, 0.6)",colorFillQuaternary:"rgba(215, 199, 236, 0.4)",colorBgLayout:"#fcfcfc",colorBgSpotlight:"#060606",colorPrimary:"#722ed1",fontSize:12,fontSizeHeading1:35,colorIconSecondary:"#4d4169",colorFillNav:"rgba(77, 65, 105, 0.08)",colorIconSidebar:"#22075e",colorBorderActive:"#00bab3",colorLogo:"#5520a6",colorBorderTertiary:"#eae8ed",colorTextTreeElement:"#404655",colorIconTree:"#404655",colorIconTreeUnpublished:"rgba(64, 70, 85, 0.4)",colorInfoBorderHover:"#b37feb",paddingTabs:8,colorTextSidebarTitle:"#531dab",colorBgToolbar:"#f5f3fa",colorFillActive:"#d7c7ec",colorFillAdditional:"#f5f3fa",colorBgSidebarOptions:"#f5f3fa",colorBgSelectedTab:"#ffffff",cardGutter:2,cardHeight:40,horizontalItemGutter:32,itemActiveColor:"#531dab",itemColor:"rgba(0, 0, 0, 0.65)",itemHoverColor:"rgba(215, 199, 236, 0.6)",itemUnselectedIconColor:"#4d4169",colorBorderContainer:"#eae8ed",colorBorderActiveTab:"#00bab3",colorFillAlter:"rgba(215, 199, 236, 0.4)",colorTextDescription:"rgba(0, 0, 0, 0.6)",colorBgUnselectedTab:"rgba(215, 199, 236, 0.4)",colorBgHoverUnselectedTab:"rgba(215, 199, 236, 0.6)",colorAccent:"#13C2C2",colorAccentSecondary:"#08979c",colorButtonInverse:"#f5f5f5",colorFillInverse:"#151515",colorTextInverse:"rgba(255, 255, 255, 0.88)",colorBorderInverse:"#424242",colorDividerInverse:"rgba(217, 217, 217, 0.34)",colorInactiveInverse:"rgba(255, 255, 255, 0.5)",colorCodingRed1:"#b73933",colorCodingRed2:"#cc4a46",colorCodingRed3:"#e05c59",colorCodingRed4:"#e94226",colorCodingRed5:"#de2b1a",colorCodingRed6:"#d11f0f",colorCodingBeige1:"#8e685a",colorCodingBeige2:"#76594f",colorCodingBeige3:"#9c8a84",colorCodingGold1:"#6c410b",colorCodingGold2:"#b26500",colorCodingGold3:"#c38000",colorCodingOrange1:"#934600",colorCodingOrange2:"#ac5d00",colorCodingOrange3:"#d77300",colorCodingGreen1:"#007f52",colorCodingGreen2:"#008a42",colorCodingGreen3:"#2d9f67",colorCodingGreen4:"#297f5a",colorCodingGreen5:"#00a14c",colorCodingMint1:"#136767",colorCodingMint2:"#0d8a8a",colorCodingMint3:"#1a9dbd",colorCodingBlue1:"#147bb7",colorCodingBlue2:"#006afa",colorCodingBlue3:"#595fee",colorCodingBlue4:"#3c37cc",colorCodingPurple1:"#5a1fb3",colorCodingPurple2:"#8341e5",colorCodingPurple3:"#784ebd",colorCodingPurple4:"#976ae2",colorCodingViolet1:"#66256d",colorCodingViolet2:"#9d4a9d",colorCodingViolet3:"#cc63d2",colorCodingViolet4:"#b745b7",colorCodingViolet5:"#a324a4",colorCodingMagenta1:"#7e0d5b",colorCodingMagenta2:"#ba278f",colorCodingMagenta3:"#d542b1",colorCodingMagenta4:"#ca6bb7",colorCodingBgYellow:"rgba(255, 253, 226, 0.5)",colorCodingContentYellow:"#b39501",colorCodingBorderYellow:"rgba(179, 149, 1, 0.2)",colorCodingBgOrange:"rgba(255, 234, 189, 0.5)",colorCodingContentOrange:"#ad4e00",colorCodingBorderOrange:"rgba(173, 78, 0, 0.2)",colorCodingBgPink:"rgba(255, 218, 236, 0.5)",colorCodingContentPink:"#c41d7f",colorCodingBorderPink:"rgba(196, 29, 127, 0.2)",colorCodingBgPurple:"rgba(239, 232, 255, 0.5)",colorCodingContentPurple:"#722ed1",colorCodingBorderPurple:"rgba(114, 46, 209, 0.2)",colorCodingContentBlue:"#117db3",colorCodingBorderBlue:"rgba(17, 125, 179, 0.2)",colorCodingBgBlue:"rgba(215, 242, 255, 0.5)",colorCodingBgMint:"rgba(212, 235, 236, 0.5)",colorCodingContentMint:"#006d75",colorCodingBorderMint:"rgba(0, 109, 117, 0.2)",colorCodingBgEmerald:"rgba(205, 255, 234, 0.5)",colorCodingContentEmerald:"#0a6751",colorCodingBorderEmerald:"rgba(10, 103, 81, 0.2)",colorCodingBgGreen:"rgba(209, 251, 213, 0.5)",colorCodingContentGreen:"#13aa22",colorCodingBorderGreen:"rgba(19, 170, 34, 0.2)",colorCodingBgWhite:"#ffffff",colorCodingContentWhite:"#722ed1",colorCodingBorderWhite:"rgba(114, 46, 209, 0.2)"},components:{Form:{itemMarginBottom:12,verticalLabelPadding:4},Pagination:{colorPrimary:"#531dab"},Tree:{colorBorderTree:"#eae8ed",colorTextTree:"#404655",colorPrimaryHeading:"#531dab",colorTextTreeUnpublished:"rgba(0, 0, 0, 0.25)"},Progress:{colorText:"rgba(0, 0, 0, 0.65)",circleTextColor:"rgba(0, 0, 0, 0.25)"},Divider:{colorSplit:"#d3adf7"},IconButton:{colorBgContainer:"#ffffff",borderRadiusSM:"4px"},Button:{primaryColor:"#ffffff",defaultBorderColor:"#d3adf7",defaultColor:"#722ed1",defaultGhostBorderColor:"#d9d9d9",defaultGhostColor:"#722ed1",textGhostColor:"rgba(0, 0, 0, 0.88)",controlHeightSM:24},Breadcrumb:{lastItemColor:"#531dab"},Menu:{darkItemColor:"rgba(255, 255, 255, 0.65)",darkItemDisabledColor:"rgba(255, 255, 255, 0.25)",darkGroupTitleColor:"rgba(255, 255, 255, 0.65)"},Collapse:{headerBg:"rgba(0, 0, 0, 0.04)"},Image:{previewOperationColor:"rgba(255, 255, 255, 0.65)",previewOperationColorDisabled:"rgba(255, 255, 255, 0.25)",previewOperationHoverColor:"rgba(255, 255, 255, 0.85)"},Table:{cellPaddingBlockSM:4,cellPaddingInlineSM:4,colorBorderSecondary:"#D9D9D9AA",controlItemBgActive:"#f8eeff",footerBg:"#fafafa",headerBg:"#fafafa"},Tabs:{colorBgSelectedTab:"#ffffff",itemColor:"rgba(0, 0, 0, 0.65)",itemActiveColor:"#531dab",itemHoverColor:"rgba(215, 199, 236, 0.6)",itemUnselectedIconColor:"#4d4169",colorBorderActiveTab:"#00bab3",colorBgUnselectedTab:"rgba(215, 199, 236, 0.4)",colorBgHoverUnselectedTab:"rgba(215, 199, 236, 0.6)",colorBorderContainer:"#eae8ed"},Avatar:{colorUserIndicator:"#722ed1"},Modal:{colorTextSecondary:"rgba(0, 0, 0, 0.6)"},Alert:{colorInfo:"#722ed1",colorInfoBg:"#f9f0ff",colorInfoBorder:"#d3adf7"},Empty:{colorTextDisabled:"rgba(0, 0, 0, 0.25)"},Colors:{Neutral:{Fill:{colorFill:"rgba(215, 199, 236, 0.60)",colorFillTertiary:"#f5f5f5"},Icon:{colorIcon:"rgba(0, 0, 0, 0.6)"}},Brand:{Success:{colorSuccessBg:"#f6ffed",colorSuccessBorder:"#b7eb8f",colorSuccessText:"#52c41a"},Warning:{colorWarning:"#faad14",colorWarningBg:"#fffbe6",colorWarningBorder:"#ffe58f"},Error:{colorError:"#ff4d4f",colorErrorBg:"#fff2f0"},Primary:{colorPrimaryText:"#22075e"}},Base:{Geekblue:{2:"#d6e4ff",3:"#adc6ff",6:"#2f54eb"}}},Radio:{fontFamily:"Lato"},Tag:{colorBorder:"#d9d9d9",colorErrorBg:"#fff2f0",colorErrorBorder:"#ffccc7",colorFillQuaternary:"rgba(215, 199, 236, 0.4)",colorFillSecondary:"rgba(0, 0, 0, 0.06)",colorFillTertiary:"rgba(0, 0, 0, 0.04)",colorInfoBg:"#f9f0ff",colorInfoBorder:"#d3adf7",colorPrimary:"#722ed1",colorPrimaryActive:"#531dab",colorPrimaryHover:"#9254de",colorSuccessBg:"#f6ffed",colorSuccessBorder:"#b7eb8f",colorText:"rgba(0, 0, 0, 0.88)",colorTextDescription:"rgba(0, 0, 0, 0.6)",colorTextHeading:"rgba(0, 0, 0, 0.88)",colorTextLightSolid:"#ffffff",colorWarningBg:"#fffbe6",colorWarningBorder:"#ffe58f",borderRadiusSM:4,lineWidth:1,marginXS:8,paddingXXS:4,fontSize:12,fontSizeIcon:12,fontSizeSM:12,defaultBg:"#fafafa",defaultColor:"rgba(0, 0, 0, 0.88)"},Split:{colorFillSecondary:void 0}}};class o9 extends o5{getThemeConfig(){return{token:{colorLink:"#d7b7f5",colorLinkActive:"#d7b7f5",colorLinkHover:"#854eca",controlOutline:"#1a1325",controlItemBgActive:"#1a1325",itemSelectedColor:"rgba(255, 255, 255, 0.85)",colorTextTertiary:"rgba(255, 255, 255, 0.45)",colorFill:"rgba(255, 255, 255, 0.15)",colorFillQuaternary:"rgba(255, 255, 255, 0.09)",colorBgLayout:"#1e1e24",colorPrimary:"#6f2acf",colorIconSecondary:"#d4d4d4",colorFillNav:"#ffffff",colorIconSidebar:"#d4d4d4",colorBorderActiveTab:"#13a8a8",colorLogo:"#ffffff",colorBorderTertiary:"#333039",colorTextTreeElement:"rgba(255, 255, 255, 0.85)",colorIconTree:"#d4d4d4",colorIconTreeUnpublished:"rgba(212, 212, 212, 0.75)",colorTextSidebarTitle:"#d7b7f5",colorBgToolbar:"#1c1b1f",colorFillActive:"#ffffff",colorFillAdditional:"#ffffff",colorBgSidebarOptions:"#1e1e24",colorBgSelectedTab:"#1e1e24",itemActiveColor:"#d7b7f5",itemColor:"rgba(255, 255, 255, 0.85)",itemHoverColor:"#854eca",itemUnselectedIconColor:"#d4d4d4",colorBorderContainer:"#1e1e24",colorFillAlter:"rgba(255, 255, 255, 0.09)",colorTextDescription:"rgba(255, 255, 255, 0.45)",colorBgUnselectedTab:"#ffffff",colorBgHoverUnselectedTab:"#ffffff",colorAccentSecondary:"#33bcb7"},components:{Tree:{colorBorderTree:"#424242",colorTextTree:"rgba(255, 255, 255, 0.85)",colorPrimaryHeading:"#6f2acf",colorTextTreeUnpublished:"rgba(255, 255, 255, 0.85)",colorIconTree:"rgba(255, 255, 255, 0.85)"},Progress:{colorText:"rgba(255, 255, 255, 0.85)",circleTextColor:"rgba(255, 255, 255, 0.85)"},Divider:{colorSplit:"rgba(255, 255, 255, 0.06)"},Button:{defaultBorderColor:"#424242",defaultColor:"#d7b7f5",defaultGhostBorderColor:"#1e1e24",defaultGhostColor:"#1e1e24",textGhostColor:"rgba(255, 255, 255, 0)"},Breadcrumb:{lastItemColor:"rgba(255, 255, 255, 0.85)"},Collapse:{headerBg:"rgba(255, 255, 255, 0.09)"},Table:{controlItemBgActive:"#1a1325",footerBg:"#1d1d1d",headerBg:"#1d1d1d"},Tabs:{colorBgSelectedTab:"#1e1e24",itemColor:"rgba(255, 255, 255, 0.65)",itemActiveColor:"#d7b7f5",itemHoverColor:"#854eca",itemUnselectedIconColor:"#d4d4d4",colorBorderActiveTab:"#13a8a8",colorBgUnselectedTab:"rgba(255, 255, 255, 0.09)",colorBgHoverUnselectedTab:"rgba(255, 255, 255, 0.15)",colorBorderContainer:"#1e1e24"},Avatar:{colorUserIndicator:"#722ed1"},Modal:{colorTextSecondary:"rgba(255, 255, 255, 0.45)"},Alert:{colorInfo:"#6f2acf",colorInfoBg:"#1a1325",colorInfoBorder:"#301c4d"},Empty:{colorTextDisabled:"rgba(255, 255, 255, 0.52)"},Tag:{colorBorder:"#424242",colorErrorBg:"#2c1618",colorErrorBorder:"#5b2526",colorFillQuaternary:"rgba(255, 255, 255, 0.09)",colorFillSecondary:"rgba(255, 255, 255, 0.12)",colorFillTertiary:"rgba(255, 255, 255, 0.08)",colorInfoBg:"#1a1325",colorInfoBorder:"#301c4d",colorPrimary:"#6f2acf",colorPrimaryActive:"#d7b7f5",colorPrimaryHover:"#854eca",colorSuccessBg:"#162312",colorSuccessBorder:"#274916",colorText:"rgba(255, 255, 255, 0.85)",colorTextDescription:"rgba(255, 255, 255, 0.45)",colorTextHeading:"rgba(255, 255, 255, 0.85)",colorTextLightSolid:"#ffffff",colorWarningBg:"#2b2111",colorWarningBorder:"#594214",defaultBg:"rgba(255, 255, 255, 0.09)",defaultColor:"rgba(255, 255, 255, 0.85)"}},algorithm:ig.theme.darkAlgorithm}}constructor(...e){super(...e),this.id=o7.u.dark,this.extends=[o7.u.light]}}o9=(0,tw.Cg)([(0,tk.injectable)()],o9);var se=i(22764);let st=e=>{let{getValue:t}=e,i=t();return(0,tq.jsx)("div",{className:"default-cell__content",children:void 0===i||0===i.length?(0,tq.jsx)("span",{children:"No data available"}):(0,tq.jsx)(se.A,{value:i})})},si=(0,tk.injectable)()(ey=class extends iF.E{getDefaultGridColumnWidth(){return 300}getGridCellComponent(e){return(0,tq.jsx)(st,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.advanced")}})||ey;class sn extends tA.P{getComponent(e,t){return this.getDynamicType(e).getEditableDialogLayoutComponent(t)}}sn=(0,tw.Cg)([(0,tk.injectable)()],sn);let sr=(0,tk.injectable)()(ev=class extends tA.Q{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id",void 0)}})||ev,sa=(0,tk.injectable)()(eb=class extends sr{getEditableDialogLayoutComponent(e){let{configItem:t,onRenderNestedContent:i}=e;if(!(0,tI.isArray)(t.items))return(0,tq.jsx)(tq.Fragment,{});let n=t.items.map((e,t)=>({key:`tab-${t}`,label:e.title??`Tab ${t+1}`,children:i(e)}));return(0,tq.jsx)(ni.Tabs,{items:n,type:"card"})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","tabpanel")}})||eb,sl=(0,tk.injectable)()(ex=class extends sr{getEditableDialogLayoutComponent(e){let{configItem:t,onRenderNestedContent:i}=e;return(0,tI.isArray)(t.items)?(0,tq.jsx)(ni.Space,{direction:"vertical",size:"medium",style:{width:"100%"},children:t.items.map((e,t)=>(0,tq.jsx)("div",{children:i(e)},`panel-item-${t}`))}):(0,tq.jsx)(tq.Fragment,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","panel")}})||ex,so=(0,tk.injectable)()(ej=class extends nz{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","string")}})||ej,ss=(0,tk.injectable)()(ew=class extends nz{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","integer")}})||ew,sd=(0,tk.injectable)()(ek=class extends nz{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","error")}})||ek,sc=(0,tk.injectable)()(eT=class extends nz{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","array")}})||eT,sf=(0,tk.injectable)()(eS=class extends ia.C{getFieldFilterType(){return""}isFilterAvailable(){return!1}getFieldFilterComponent(e){return(0,tq.jsx)(tq.Fragment,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","none")}})||eS;class su{}su=(0,tw.Cg)([(0,tk.injectable)()],su);class sm extends su{constructor(...e){super(...e),this.id="page"}}sm=(0,tw.Cg)([(0,tk.injectable)()],sm);class sp extends tA.P{}sp=(0,tw.Cg)([(0,tk.injectable)()],sp);class sg extends su{constructor(...e){super(...e),this.id="email"}}sg=(0,tw.Cg)([(0,tk.injectable)()],sg);class sh extends su{constructor(...e){super(...e),this.id="folder"}}sh=(0,tw.Cg)([(0,tk.injectable)()],sh);class sy extends su{constructor(...e){super(...e),this.id="hardlink"}}sy=(0,tw.Cg)([(0,tk.injectable)()],sy);class sv extends su{constructor(...e){super(...e),this.id="link"}}sv=(0,tw.Cg)([(0,tk.injectable)()],sv);class sb extends su{constructor(...e){super(...e),this.id="newsletter"}}sb=(0,tw.Cg)([(0,tk.injectable)()],sb);class sx extends su{constructor(...e){super(...e),this.id="snippet"}}sx=(0,tw.Cg)([(0,tk.injectable)()],sx);var sj=i(57064);class sw extends sj.F{constructor(){super(),this.type="variant"}}sw=(0,tw.Cg)([(0,tk.injectable)(),(0,tw.Sn)("design:type",Function),(0,tw.Sn)("design:paramtypes",[])],sw);class sk{}sk=(0,tw.Cg)([(0,tk.injectable)()],sk);class sT extends sk{getIcons(){return Array.from(this.iconLibrary.getIcons()).map(e=>{let[t]=e;return{type:"name",value:t}})}constructor(e){super(),this.iconLibrary=e,this.id="pimcore-default",this.name="Pimcore"}}sT=(0,tw.Cg)([(0,tk.injectable)(),(0,tw.Qj)(0,(0,tk.inject)(td.K.iconLibrary)),(0,tw.Sn)("design:type",Function),(0,tw.Sn)("design:paramtypes",["u"({type:"path",value:`/bundles/pimcorestudioui/img/icons/twemoji/${e}.svg`}))}constructor(...e){super(...e),this.id="twemoji",this.name="Twemoji"}}sC=(0,tw.Cg)([(0,tk.injectable)()],sC);class sD extends tA.P{}sD=(0,tw.Cg)([(0,tk.injectable)()],sD);let sI=(0,tk.injectable)()(eC=class extends nv{constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.classificationstore")}})||eC;var sM=i(3832),sL=i(89402),sF=i(60589),sE=i(24755),sP=i(91669),sA=i(18848),sN=i(13755);let sR=(0,iR.createStyles)(e=>{let{token:t}=e;return{allowedContextMenuOptions:{display:"grid",gridTemplateColumns:"repeat(3, 1fr)",gap:`${t.marginXS}px`,width:"100%"}}}),sV=e=>{let{items:t,isLoading:i}=e,{t:n}=(0,iQ.useTranslation)(),{styles:r}=sR();return i?(0,tq.jsx)(sP.b,{condition:e=>e.elementType===sE.W.dataObject,watchFields:["elementType"],children:(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:n("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tq.jsx)(sN.t,{})})}):(0,tq.jsx)(sP.b,{condition:e=>e.elementType===sE.W.dataObject,watchFields:["elementType"],children:(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:n("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tq.jsx)("div",{className:r.allowedContextMenuOptions,children:(0,tq.jsx)(tJ.lV.Group,{name:"contextPermissions",children:t.map(e=>(0,tq.jsx)(tJ.lV.Item,{name:e,children:(0,tq.jsx)(sA.d,{labelRight:n("widget-editor.widget-form.allowed-context-menu."+e)})},e))})})})})},sz=e=>{let{items:t,isLoading:i}=e,{t:n}=(0,iQ.useTranslation)(),{styles:r}=sR();return i?(0,tq.jsx)(sP.b,{condition:e=>e.elementType===sE.W.asset,watchFields:["elementType"],children:(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:n("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tq.jsx)(sN.t,{})})}):(0,tq.jsx)(sP.b,{condition:e=>e.elementType===sE.W.asset,watchFields:["elementType"],children:(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:n("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tq.jsx)("div",{className:r.allowedContextMenuOptions,children:(0,tq.jsx)(tJ.lV.Group,{name:"contextPermissions",children:t.map(e=>(0,tq.jsx)(tJ.lV.Item,{name:e,children:(0,tq.jsx)(sA.d,{labelRight:n("widget-editor.widget-form.allowed-context-menu."+e)})},e))})})})})},sB=e=>{let{items:t,isLoading:i}=e,{t:n}=(0,iQ.useTranslation)(),{styles:r}=sR();return i?(0,tq.jsx)(sP.b,{condition:e=>e.elementType===sE.W.document,watchFields:["elementType"],children:(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:n("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tq.jsx)(sN.t,{})})}):(0,tq.jsx)(sP.b,{condition:e=>e.elementType===sE.W.document,watchFields:["elementType"],children:(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:n("widget-editor.widget-form.allowed-context-menu.title"),children:(0,tq.jsx)("div",{className:r.allowedContextMenuOptions,children:(0,tq.jsx)(tJ.lV.Group,{name:"contextPermissions",children:t.map(e=>(0,tq.jsx)(tJ.lV.Item,{name:e,children:(0,tq.jsx)(sA.d,{labelRight:n("widget-editor.widget-form.allowed-context-menu."+e)})},e))})})})})};var sO=i(33461);let sK=()=>{let{dataObjectContextMenuItems:e,assetContextMenuItems:t,documentContextMenuItems:i,isLoading:n}=(()=>{let{data:e,isLoading:t}=(0,sO.usePerspectiveGetConfigByIdQuery)({perspectiveId:"studio_default_perspective"}),i=tc.kL.get(td.K.elementTreeWidgetPermissionRegistry),n=(0,tG.useMemo)(()=>{var t,n;let r=(null==e||null==(n=e.widgetsLeft)||null==(t=n[2])?void 0:t.contextPermissions)??{};if(!(0,tI.isEmpty)(r)){let e=Object.keys(r);return i.getItems("data-object").filter(t=>e.includes(t))}return[]},[e]);return{dataObjectContextMenuItems:n,assetContextMenuItems:(0,tG.useMemo)(()=>{var t,n;let r=(null==e||null==(n=e.widgetsLeft)||null==(t=n[1])?void 0:t.contextPermissions)??{};if(!(0,tI.isEmpty)(r)){let e=Object.keys(r);return i.getItems("asset").filter(t=>e.includes(t))}return[]},[e,i]),documentContextMenuItems:(0,tG.useMemo)(()=>{var t,n;let r=(null==e||null==(n=e.widgetsLeft)||null==(t=n[0])?void 0:t.contextPermissions)??{};if(!(0,tI.isEmpty)(r)){let e=Object.keys(r);return i.getItems("document").filter(t=>e.includes(t))}return[]},[e,i]),isLoading:t}})();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(sV,{isLoading:n,items:e}),(0,tq.jsx)(sz,{isLoading:n,items:t}),(0,tq.jsx)(sB,{isLoading:n,items:i})]})},s_=(0,iR.createStyles)(e=>{let{token:t}=e;return{allowedObjectsGrid:{display:"grid",gridTemplateColumns:"repeat(3, 1fr)",gap:`${t.marginXS}px`,width:"100%"}}}),sH=()=>{let{t:e}=(0,iQ.useTranslation)(),{getClassDefinitionsForCurrentUser:t}=(0,aX.G)(),{styles:i}=s_();return(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.allowed-objects.title"),children:(0,tq.jsx)("div",{className:i.allowedObjectsGrid,children:(0,tq.jsx)(tJ.lV.Group,{name:"classes",children:t().map(e=>(0,tq.jsx)(tJ.lV.Item,{name:e.id,children:(0,tq.jsx)(sA.d,{labelRight:e.name})},e.id))})})})},s$=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.filters.title"),children:(0,tq.jsx)(tJ.lV.Item,{label:e("widget-editor.widget-form.filters.pql"),name:"pql",children:(0,tq.jsx)(n4.f,{})})})};var sW=i(572);let sq=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(t8.l,{...e,options:[{label:t("document"),value:sE.W.document},{label:t("asset"),value:sE.W.asset},{label:t("data-object"),value:sE.W.dataObject}]})},sG=(0,tG.createContext)(void 0),sU=e=>{let{children:t,widget:i}=e,[n]=tJ.lV.useForm(),r=(0,tG.useMemo)(()=>({widget:i,form:n}),[i,n]);return(0,tq.jsx)(sG.Provider,{value:r,children:t})},sQ=()=>{let e=(0,tG.useContext)(sG);if(void 0===e)throw Error("useWidgetFormContext must be used within a WidgetFormProvider");return e},sJ=()=>{let{t:e}=(0,iQ.useTranslation)(),{form:t}=sQ(),i=tJ.lV.useWatch("elementType",t),n=(0,af.usePrevious)(i),r=tc.kL.get(td.K.elementTreeWidgetPermissionRegistry);return(0,tG.useEffect)(()=>{if(!(0,tI.isNil)(n)){t.setFieldValue("rootFolder",null);let e=r.getItems(i);t.setFieldValue("contextPermissions",e.reduce((e,t)=>(e[t]=!0,e),{}))}},[i,t]),(0,tq.jsxs)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.specific.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("widget-editor.widget-form.specific.element-type"),name:"elementType",children:(0,tq.jsx)(sq,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("widget-editor.widget-form.specific.root-folder"),name:"rootFolder",children:(0,tq.jsx)(sW.Pp,{allowToClearRelation:!0,assetsAllowed:i===sE.W.asset,dataObjectsAllowed:i===sE.W.dataObject,documentsAllowed:i===sE.W.document},i)}),(0,tq.jsx)(tJ.lV.Item,{name:"showRoot",children:(0,tq.jsx)(sA.d,{labelRight:e("widget-editor.widget-form.specific.show-root")})}),(0,tq.jsx)(tJ.lV.Item,{label:e("widget-editor.widget-form.specific.page-size"),name:"pageSize",children:(0,tq.jsx)(ig.InputNumber,{})})]})},sZ=()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(sJ,{}),(0,tq.jsx)(tJ.lV.Conditional,{condition:e=>e.elementType===sE.W.dataObject,watchFields:["elementType"],children:(0,tq.jsx)(sH,{})}),(0,tq.jsx)(sK,{}),(0,tq.jsx)(s$,{})]});var sY=i(93036);function sX(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}class s0 extends sY.y{form(){return(0,tq.jsx)(sZ,{})}constructor(...e){super(...e),sX(this,"id","element_tree"),sX(this,"name","element_tree"),sX(this,"group","system-widgets"),sX(this,"icon","tree")}}var s1=i(134),s2=i(83942);class s3{register(e){this.restorers.push(e)}supports(e){return this.restorers.some(t=>t.supports(e))}cleanConfig(e){let t=this.restorers.find(t=>t.supports(e));return(0,tI.isNil)(null==t?void 0:t.cleanConfig)?e:t.cleanConfig(e)}async restore(e,t){let i=this.restorers.find(t=>t.supports(e));return!(0,tI.isNil)(i)&&await i.restore(e,t)}constructor(){this.restorers=[]}}s3=(0,tw.Cg)([(0,tk.injectable)()],s3);var s6=i(87902);let s4=(0,tk.injectable)()(eD=class extends ia.C{shouldOverrideFilterType(){return!0}getFieldFilterComponent(e){return(0,tq.jsx)(iy,{...e})}shouldApply(e){return iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e.meta.fieldDefinition.fieldtype).dynamicTypeFieldFilterType.shouldApply(e)}transformFilterToApiRequest(e){let t=iv.container.get(iv.serviceIds["DynamicTypes/ObjectDataRegistry"]).getDynamicType(e.meta.fieldDefinition.fieldtype),i=t.dynamicTypeFieldFilterType.transformFilterToApiRequest(e),n=t.dynamicTypeFieldFilterType.getFieldFilterType().split(".");return n[0]="classificationstore",e.type=n.join("."),{...e,filterValue:{value:i.filterValue,keyId:e.meta.keyId,groupId:e.meta.groupId}}}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.classificationstore")}})||eD;var s5=i(52112),s7=i(89702);let s8=e=>{let{batchEdit:t}=e,i=(0,tc.Lt)(td.K["DynamicTypes/ObjectDataRegistry"]),{value:n,...r}=t,a=(0,s5.C)(),{frontendType:l,config:o,key:s}=r;if(!i.hasDynamicType(l))return(0,tq.jsxs)(tq.Fragment,{children:["Type ",l," not supported"]});if(!("fieldDefinition"in o))throw Error("Field definition is missing in config");let d=i.getDynamicType(l),c=d.getObjectDataComponent({...o.fieldDefinition,defaultFieldWidth:a});if(!("config"in r)||!("groupId"in r.config)||!("keyId"in r.config))throw Error("Column config is missing required properties");let f=(0,tI.isNil)(r.locale)?"default":r.locale,u=[s,`${r.config.groupId}`,f,`${r.config.keyId}`];return(0,tq.jsx)(s7.W,{component:c,name:u,supportsBatchAppendModes:d.supportsBatchAppendModes})},s9=(0,tk.injectable)()(eI=class{getBatchEditComponent(e){return(0,tq.jsx)(s8,{...e})}constructor(){!function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dataobject.classificationstore")}})||eI;var de=i(58333),dt=i(68622),di=i(64688),dn=i(31920),dr=i(57193),da=i(47351),dl=i(33487),ds=i(37103);let dd=()=>{let{data:e,setData:t,config:i}=(0,il.F)(),[n,r]=tU().useState(e),a=(0,af.useDebounce)(n,300),{getSelectOptions:l}=(0,dl.useQuantityValueUnits)(),{t:o}=(0,iQ.useTranslation)();return(0,tG.useEffect)(()=>{r(e)},[e]),(0,tG.useEffect)(()=>{t(a)},[a]),(0,tq.jsxs)(ni.Flex,{gap:"extra-small",children:[(0,tq.jsx)(ni.Input,{onChange:e=>{let t=e.target.value;r({...n,value:""===t?null:t})},value:(null==n?void 0:n.value)??""}),(0,tq.jsx)(ni.Select,{onChange:e=>{r({...n,unitId:e})},options:l(null==i?void 0:i.validUnits),placeholder:"("+o("empty")+")",style:{minWidth:120},value:(null==n?void 0:n.unitId)??void 0})]})},dc=(0,tk.injectable)()(eM=class extends iI{getFieldFilterType(){return"system.input_quantity_value"}getFieldFilterComponent(e){return(0,tq.jsx)(dd,{...e})}shouldApply(e){let t=e.filterValue;return""!==t.value&&null!==t.value&&null!==t.unitId}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","inputQuantityValue")}})||eM;var df=i(71141);let du=((a={}).IS="is",a.BETWEEN="between",a.LESS="less",a.MORE="more",a),dm=e=>{let{data:t,setData:i,config:n}=(0,il.F)(),{getSelectOptions:r}=(0,dl.useQuantityValueUnits)(),a=t??{setting:du.IS,from:null,to:null,is:null,unitId:(null==t?void 0:t.unitId)??null},l=[{label:(0,i6.t)("grid.filter.is"),value:du.IS},{label:(0,i6.t)("grid.filter.between"),value:du.BETWEEN},{label:(0,i6.t)("grid.filter.less"),value:du.LESS},{label:(0,i6.t)("grid.filter.more"),value:du.MORE}],o=(null==a?void 0:a.setting)??du.IS,s=(e,t)=>{i({...a,setting:o,[e]:t})};return(0,tq.jsxs)(ap.s,{align:"center",gap:"extra-small",children:[(0,tq.jsx)(t8.l,{defaultValue:du.IS,onChange:e=>{let t;t=a??{from:null,to:null,is:null,setting:du.IS},e===du.LESS?i({setting:e,from:null,to:t.to??t.is??t.from??null,is:null,unitId:t.unitId??null}):e===du.MORE?i({setting:e,from:t.from??t.is??t.to??null,to:null,is:null,unitId:t.unitId??null}):e===du.IS?i({setting:e,from:null,to:null,is:t.from??t.to??null,unitId:t.unitId??null}):e===du.BETWEEN&&i({setting:e,from:t.from??t.is??null,to:t.to??null,is:null,unitId:t.unitId??null})},options:l,width:o===du.MORE?100:90}),o===du.BETWEEN&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(df.Y,{onChange:e=>{s("from",e)},placeholder:(0,i6.t)("grid.filter.from"),value:(null==a?void 0:a.from)??null}),(0,tq.jsx)(df.Y,{onChange:e=>{i({...a,setting:a.setting,to:e})},placeholder:(0,i6.t)("grid.filter.to"),value:(null==a?void 0:a.to)??null})]}),o!==du.BETWEEN&&(0,tq.jsx)(df.Y,{onChange:e=>{o===du.IS?s("is",e):o===du.LESS?s("to",e):o===du.MORE&&s("from",e)},value:o===du.IS?(null==a?void 0:a.is)??null:o===du.LESS?(null==a?void 0:a.to)??null:o===du.MORE?(null==a?void 0:a.from)??null:null}),(0,tq.jsx)(t8.l,{minWidth:80,onChange:e=>{i({...a,unitId:e})},options:r(null==n?void 0:n.validUnits),placeholder:"("+(0,i6.t)("empty")+")",value:(null==a?void 0:a.unitId)??void 0})]})},dp=(0,tk.injectable)()(eL=class extends iI{getFieldFilterType(){return"system.quantity_value"}getFieldFilterComponent(e){return(0,tq.jsx)(dm,{...e})}shouldApply(e){let t=e.filterValue;return null!=t&&"object"==typeof t&&(!(0,tI.isNil)(t.is)&&""!==t.is||!(0,tI.isNil)(t.from)&&""!==t.from||!(0,tI.isNil)(t.to)&&""!==t.to)&&null!=t.unitId}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","QuantityValue")}})||eL,dg=e=>{let{data:t,setData:i}=(0,il.F)();return(0,tq.jsx)(ni.ColorPicker,{disabledFormat:!0,format:"hex",onChange:e=>{i(e.toRgb())},value:t})},dh=(0,tk.injectable)()(eF=class extends ia.C{getFieldFilterType(){return"system.rgba"}getFieldFilterComponent(e){return(0,tq.jsx)(dg,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","color")}})||eF;var dy=i(67967);let dv=(0,tk.injectable)()(eE=class extends ia.C{getFieldFilterType(){return"system.datetime"}getFieldFilterComponent(e){return(0,tq.jsx)(dy.H,{...e})}shouldApply(e){let t=e.filterValue;return null!=t&&"object"==typeof t&&(null!=t.on||null!=t.from||null!=t.to)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","datetime")}})||eE;var db=i(66828),dx=i(29468);let dj=e=>{var t;let i=(null==e?void 0:e.outputFormat)??"HH:mm:ss",n=(t=e.value,Array.isArray(t)?[(0,db.Rc)(t[0],i),(0,db.Rc)(t[1],i)]:null),r=(0,s5.q)(),{styles:a}=(0,dx.I)(),l={maxWidth:null==r?void 0:r.small,...e.style};return(0,tq.jsx)(ig.TimePicker.RangePicker,{...e,onChange:t=>{var n,r;null==(n=e.onChange)||n.call(e,(r=e.outputType,null===t?null:[(0,db.qj)(t[0],r,i),(0,db.qj)(t[1],r,i)]))},popupClassName:a.datePickerDropdown,rootClassName:lx()(a.datePicker,e.className,{[a.inherited]:e.inherited}),style:l,value:n})},dw=((l={}).ON="on",l.BETWEEN="between",l.BEFORE="before",l.AFTER="after",l),dk="HH:mm",dT=e=>{let{data:t,setData:i}=(0,il.F)(),n=t??{setting:dw.ON,from:null,to:null,on:null},r=[{label:(0,i6.t)("grid.filter.on"),value:dw.ON},{label:(0,i6.t)("grid.filter.between"),value:dw.BETWEEN},{label:(0,i6.t)("grid.filter.before"),value:dw.BEFORE},{label:(0,i6.t)("grid.filter.after"),value:dw.AFTER}],a=(null==n?void 0:n.setting)??dw.ON,l=(e,t)=>{i({setting:a,from:"from"===e?t:null,to:"to"===e?t:null,on:"on"===e?t:null})};return(0,tq.jsxs)(ap.s,{align:"center",gap:"extra-small",children:[(0,tq.jsx)(t8.l,{defaultValue:dw.ON,onChange:e=>{let t;t=n??{from:null,to:null,on:null,setting:dw.ON},e===dw.BEFORE?i({setting:e,from:null,to:t.to??t.on??t.from??null,on:null}):e===dw.AFTER?i({setting:e,from:t.from??t.on??t.to??null,to:null,on:null}):e===dw.ON?i({setting:e,from:null,to:null,on:t.from??t.to??null}):e===dw.BETWEEN&&i({setting:e,from:t.from??t.on??null,to:t.to??null,on:null})},options:r,width:90}),a===dw.BETWEEN&&(0,tq.jsx)(dj,{format:dk,onChange:e=>{let[t,r]=e;i({setting:n.setting,from:t??n.from??null,to:r??n.to??null,on:null})},outputFormat:dk,outputType:"dateString",value:[(null==n?void 0:n.from)??null,(null==n?void 0:n.to)??null]}),a!==dw.BETWEEN&&(0,tq.jsx)(ni.TimePicker,{format:dk,onChange:e=>{a===dw.ON?l("on",e):a===dw.BEFORE?l("to",e):a===dw.AFTER&&l("from",e)},outputFormat:dk,outputType:"dateString",value:a===dw.ON?(null==n?void 0:n.on)??null:a===dw.BEFORE?(null==n?void 0:n.to)??null:a===dw.AFTER?(null==n?void 0:n.from)??null:null})]})},dS=(0,tk.injectable)()(eP=class extends ia.C{getFieldFilterType(){return"system.time"}getFieldFilterComponent(e){return(0,tq.jsx)(dT,{...e})}shouldApply(e){let t=e.filterValue;return null!=t&&"object"==typeof t&&(null!=t.on||null!=t.from||null!=t.to)}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","time")}})||eP;var dC=i(67104),dD=i(60583),dI=i(30856),dM=i(94788);let dL=e=>{let{items:t,onRemove:i,selectorAreas:n,selectorConfig:r,onFinish:a}=e,{isDragActive:l,isOver:o}=(0,dM.z)(),{token:s}=ig.theme.useToken(),d={width:"100%",padding:"6px 8px",border:`1px dashed ${o?s.colorPrimary:s.colorBorder}`,borderRadius:s.borderRadius,background:o?s.colorPrimaryBg:s.colorFillAlter,color:o?s.colorPrimary:s.colorTextSecondary,fontSize:s.fontSizeSM,textAlign:"center",boxSizing:"border-box",transition:"all 0.2s"};return(0,tq.jsxs)(ap.s,{align:"flex-start",justify:"space-between",style:{width:"100%"},children:[(0,tq.jsxs)(ap.s,{gap:"extra-small",style:{flex:1,flexWrap:"wrap",minHeight:24},vertical:!0,children:[l&&(0,tq.jsx)("div",{style:d,children:"Drop here"}),(0,tq.jsx)(ap.s,{gap:"extra-small",style:{flexWrap:"wrap"},children:t.map(e=>{var t,n;let r;return(0,tq.jsx)(dC.F,{elementType:"object"===e.type?"data-object":e.type,iconName:"object"===(t=e.type)?"data-object":"asset"===t?"asset":"document",inline:!0,onClose:()=>{i(e.id,e.type)},path:`${""!==(r=(n=e.fullPath).split("/"))[r.length-1]?r[r.length-1]:n} (${e.id})`,published:e.isPublished??void 0},`${e.type}-${e.id}`)})})]}),(0,tq.jsx)(dD.Q,{elementSelectorConfig:{selectionType:lD.hO.Multiple,areas:n,config:r,onFinish:a},style:{flexShrink:0,marginLeft:4},type:"default"})]})},dF=()=>{let{setData:e,config:t}=(0,il.F)(),i=null==t?void 0:t.fieldDefinition,n=void 0!==i?(0,dI.zd)(i):void 0,r=void 0!==n&&!0!==n.assetsAllowed&&!0!==n.dataObjectsAllowed&&!0!==n.documentsAllowed,a=void 0===n||r?{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0}:n,[l,o]=(0,tG.useState)([]),s=t=>{o(t),e((e=>{if(0===e.length)return null;let t={};for(let i of e){let e=i.type;(0,tI.isUndefined)(t[e])&&(t[e]=[]),t[e].push(i.id)}let i=Object.entries(t).filter(e=>{let[,t]=e;return t.length>0}).map(e=>{let[t,i]=e;return{type:t,ids:i}});return i.length>0?i:null})(t))},d=e=>{let t=[...l];for(let i of e)t.some(e=>e.id===i.id&&e.type===i.type)||t.push(i);s(t)},c=(0,dI.M3)(a),f=(0,dI.gF)(a);return(0,tq.jsx)(lM.g,{isValidContext:e=>(0,ou.Hy)(e.type),isValidData:e=>(0,dI.hu)(e,a),onDrop:e=>{let t=(0,ou.FA)(e.type);d([{id:e.data.id,type:t,subtype:"data-object"===e.type?e.data.className??e.data.type:e.data.type,fullPath:e.data.fullPath,isPublished:e.data.published??null}])},children:(0,tq.jsx)(dL,{items:l,onFinish:e=>{d(e.items.map(e=>({id:e.data.id,type:(0,ou.FA)(e.elementType),subtype:"data-object"===e.elementType?e.data.classname??"folder":e.data.type??null,fullPath:e.data.fullpath,isPublished:e.data.published??null})))},onRemove:(e,t)=>{s(l.filter(i=>i.id!==e||i.type!==t))},onSelect:()=>{},selectorAreas:c,selectorConfig:f})})},dE=(0,tk.injectable)()(eA=class extends ia.C{getFieldFilterType(){return"dataobject.relation"}shouldApply(e){let t=e.filterValue;return Array.isArray(t)&&t.length>0&&t.some(e=>"string"==typeof e.type&&Array.isArray(e.ids)&&e.ids.length>0)}getFieldFilterComponent(){return(0,tq.jsx)(dF,{})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","relation")}})||eA;var dP=i(47732),dA=i(7391),dN=i(77844),dR=i(23945);let dV=e=>{let t,i=(0,tG.useRef)(null),{t:n}=(0,iQ.useTranslation)(),{currentLayout:r}=(0,dN.W)(),{id:a}=(0,dR.useElementContext)();try{t=new URL(e.iframeUrl,window.location.origin)}catch{t=void 0}if(void 0===t)return(0,tq.jsx)(ni.Alert,{message:n("invalid-iframe"),type:"error"});let l={layoutId:r,name:e.name,objectId:a};t.searchParams.append("context",JSON.stringify(l));let o=(0,tq.jsx)(ni.IconTextButton,{icon:{value:"refresh"},onClick:()=>{var e;null==(e=i.current)||e.reload()},type:"action",children:n("refresh")});return(0,tq.jsx)(ad.P,{border:!0,contentPadding:"none",extra:o,style:{height:e.height},title:e.title,children:(0,tq.jsx)(dA.v,{ref:i,src:t.toString(),style:{height:e.height}})})};class dz extends ao.V{getObjectLayoutComponent(e){return(0,tq.jsx)(dV,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","iframe")}}var dB=i(31488);let dO=()=>{let{t:e}=(0,iQ.useTranslation)(),t=ni.Form.useWatch("regex"),i=ni.Form.useWatch("regexFlags");return(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:e("regex-validation"),children:[(0,tq.jsx)(ni.Form.Item,{label:e("regex"),name:"regex",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:e("regex-flags"),name:"regexFlags",tooltip:e("regex-flags-tooltip"),children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:[{label:"global",value:"g"},{label:"ignoreCase",value:"i"},{label:"multiline",value:"m"},{label:"unicode",value:"u"},{label:"sticky",value:"y"}]})}),(0,tq.jsx)(ni.Form.Item,{dependencies:["regex","regexFlags"],label:e("test-string"),name:"regexTestString",rules:[()=>({async validator(n,r){try{let e=(0,tI.isArray)(i)?i.join(""):(0,tI.toString)(i);if(new RegExp(t,e).test(r))return}catch{}throw Error(e("regex-validation-error-message"))}})],validateTrigger:["onChange","onBlur"],children:(0,tq.jsx)(ni.Input,{})})]})},dK=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=e.context.area.includes("classification-store"),r=!0===e.context.isEncryptedField;return(0,tq.jsxs)(tq.Fragment,{children:[!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})})]}),(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{name:"showCharCount",children:(0,tq.jsx)(ni.Switch,{labelRight:t("show-char-count")})}),!i&&!n&&(0,tq.jsxs)(tq.Fragment,{children:[!r&&(0,tq.jsx)(ni.Form.Item,{label:t("column-length"),name:"columnLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(dO,{})]})]})};class d_ extends dB.v{getIcon(){return{type:"name",value:"text-input"}}getGroup(){return[...super.getGroup(),"text"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(dK,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","input")}}let dH=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{name:"showCharCount",children:(0,tq.jsx)(ni.Switch,{labelRight:t("show-char-count")})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("max-length"),name:"maxLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{name:"excludeFromSearchIndex",children:(0,tq.jsx)(ni.Switch,{labelRight:t("exclude-from-search-index")})})]})]})};class d$ extends dB.v{getIcon(){return{type:"name",value:"content"}}getGroup(){return[...super.getGroup(),"text"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(dH,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","textarea")}}let dW=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("toolbar-config"),name:"toolbarConfig",children:(0,tq.jsx)(ni.TextArea,{})}),(0,tq.jsx)(ni.Form.Item,{name:"excludeFromSearchIndex",children:(0,tq.jsx)(ni.Switch,{labelRight:t("exclude-from-search-index")})}),(0,tq.jsx)(ni.Form.Item,{label:t("max-length"),name:"maxCharacters",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})})]})]})};class dq extends dB.v{getIcon(){return{type:"name",value:"wysiwyg-field"}}getGroup(){return[...super.getGroup(),"text"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(dW,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","wysiwyg")}}let dG=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsx)(ni.Form.Item,{label:t("min-length"),name:"minimumLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})})]})};class dU extends dB.v{getIcon(){return{type:"name",value:"password"}}getGroup(){return[...super.getGroup(),"text"]}getTags(e){return[...super.getTags(e),"classificationStore"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(dG,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableMandatory:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","password")}}var dQ=i(51289);let dJ=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),{getSelectOptions:n}=(0,dQ.R)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-unit"),name:"defaultUnit",children:(0,tq.jsx)(ni.Select,{allowClear:!0,options:n(),showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("valid-units"),name:"validUnits",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:n(),showSearch:!0})})]})]})};class dZ extends dB.v{getIcon(){return{type:"name",value:"quantity-value"}}getGroup(){return[...super.getGroup(),"text"]}getTags(e){return[...super.getTags(e),"classificationStore"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(dJ,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","inputQuantityValue")}}let dY=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:e("decimal-settings"),tooltip:e("decimal-settings-tooltip"),children:[(0,tq.jsx)(ni.Form.Item,{label:e("decimal-size"),name:"decimalSize",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:e("decimal-precision"),name:"decimalPrecision",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})})]})},dX=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("default-values-settings"),tooltip:t("default-values-tooltip"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})})]}),(0,tq.jsx)(dY,{}),(0,tq.jsx)(ni.Form.Item,{name:"integer",children:(0,tq.jsx)(ni.Switch,{labelRight:t("integer")})}),(0,tq.jsx)(ni.Form.Item,{name:"unsigned",children:(0,tq.jsx)(ni.Switch,{labelRight:t("unsigned")})}),(0,tq.jsx)(ni.Form.Item,{label:t("min-value"),name:"minValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("max-value"),name:"maxValue",children:(0,tq.jsx)(ni.InputNumber,{})})]})]})};class d0 extends dB.v{getIcon(){return{type:"name",value:"number-type"}}getGroup(){return[...super.getGroup(),"numeric"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(dX,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","numeric")}}let d1=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(dY,{}),(0,tq.jsx)(ni.Form.Item,{name:"integer",children:(0,tq.jsx)(ni.Switch,{labelRight:t("integer")})}),(0,tq.jsx)(ni.Form.Item,{name:"unsigned",children:(0,tq.jsx)(ni.Switch,{labelRight:t("unsigned")})}),(0,tq.jsx)(ni.Form.Item,{label:t("min-value"),name:"minValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("max-value"),name:"maxValue",children:(0,tq.jsx)(ni.InputNumber,{})})]})]})};class d2 extends dB.v{getIcon(){return{type:"name",value:"number-range"}}getGroup(){return[...super.getGroup(),"numeric"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(d1,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","numericRange")}}let d3=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("min-value"),name:"minValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("max-value"),name:"maxValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("increment-step"),name:"increment",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("decimal-precision"),name:"decimalPrecision",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{name:"vertical",children:(0,tq.jsx)(ni.Switch,{labelRight:t("vertical")})})]})]})};class d6 extends dB.v{getIcon(){return{type:"name",value:"slider"}}getGroup(){return[...super.getGroup(),"numeric"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(d3,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","slider")}}let d4=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),{getSelectOptions:n}=(0,dQ.R)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("width"),tooltip:t("width-tooltip"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("width-field"),name:"width",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("width-unit"),name:"unitWidth",children:(0,tq.jsx)(ni.Input,{})})]}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("default-values-settings"),tooltip:t("default-values-tooltip"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-unit"),name:"defaultUnit",children:(0,tq.jsx)(ni.Select,{allowClear:!0,options:n(),showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})})]}),(0,tq.jsx)(ni.Form.Item,{label:t("valid-units"),name:"validUnits",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:n(),showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{name:"autoConvert",children:(0,tq.jsx)(ni.Switch,{labelRight:t("auto-convert")})}),(0,tq.jsx)(dY,{}),(0,tq.jsx)(ni.Form.Item,{name:"integer",children:(0,tq.jsx)(ni.Switch,{labelRight:t("integer")})}),(0,tq.jsx)(ni.Form.Item,{name:"unsigned",children:(0,tq.jsx)(ni.Switch,{labelRight:t("unsigned")})}),(0,tq.jsx)(ni.Form.Item,{label:t("min-value"),name:"minValue",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("max-value"),name:"maxValue",children:(0,tq.jsx)(ni.InputNumber,{})})]})]})};class d5 extends dB.v{getIcon(){return{type:"name",value:"quantity-value"}}getGroup(){return[...super.getGroup(),"numeric"]}getTags(e){return[...super.getTags(e),"classificationStore"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(d4,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","quantityValue")}}let d7=e=>{let{t}=(0,iQ.useTranslation)(),{getSelectOptions:i}=(0,dQ.R)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("width"),tooltip:t("width-tooltip"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("width-field"),name:"width",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("width-unit"),name:"unitWidth",children:(0,tq.jsx)(ni.Input,{})})]}),(0,tq.jsx)(ni.Form.Item,{label:t("decimal-precision"),name:"decimalPrecision",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-unit"),name:"defaultUnit",children:(0,tq.jsx)(ni.Select,{allowClear:!0,options:i(),showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("valid-units"),name:"validUnits",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:i(),showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{name:"autoConvert",children:(0,tq.jsx)(ni.Switch,{labelRight:t("auto-convert")})})]})};class d8 extends dB.v{getIcon(){return{type:"name",value:"quantity-value-range"}}getGroup(){return[...super.getGroup(),"numeric"]}getTags(e){return[...super.getTags(e),"classificationStore"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(d7,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","quantityValueRange")}}let d9=e=>{let{t}=(0,iQ.useTranslation)(),i=ni.Form.useFormInstance(),n=ni.Form.useWatch("useCurrentDate"),r=e.context.area.includes("custom-layout"),a=!0===e.context.isEncryptedField;return((0,tG.useEffect)(()=>{!0===n&&i.setFieldValue("defaultValue",null)},[n,i]),r)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("default-values-settings"),tooltip:t("default-values-tooltip"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.DatePicker,{disabled:!0===n})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{name:"useCurrentDate",children:(0,tq.jsx)(ni.Switch,{labelRight:t("use-current-date")})})]}),!a&&(0,tq.jsx)(ni.Form.Item,{label:t("column-type"),name:"columnType",children:(0,tq.jsx)(ni.Select,{options:[{label:"DATE",value:"date"},{label:"BIGINT",value:"bigint(20)"}]})})]})};class ce extends dB.v{getIcon(){return{type:"name",value:"date"}}getGroup(){return[...super.getGroup(),"date"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getDefaultData(){return{...super.getDefaultData(),columnType:"date"}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(d9,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","date")}}let ct=e=>{let{t}=(0,iQ.useTranslation)(),i=ni.Form.useFormInstance(),n=e.context.area.includes("custom-layout"),r=ni.Form.useWatch("useCurrentDate"),a=ni.Form.useWatch("respectTimezone");return((0,tG.useEffect)(()=>{!0===r&&i.setFieldValue("defaultValue",null),!1===a&&i.setFieldValue("columnType","datetime")},[r,a,i]),n)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.DatePicker,{disabled:!0===r,outputFormat:"YYYY-MM-DD HH:mm",showTime:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{name:"useCurrentDate",children:(0,tq.jsx)(ni.Switch,{labelRight:t("use-current-date")})}),(0,tq.jsx)(ni.Form.Item,{name:"respectTimezone",children:(0,tq.jsx)(ni.Switch,{labelRight:t("respect-timezone")})}),(0,tq.jsx)(ni.Form.Item,{initialValue:"datetime",label:t("column-type"),name:"columnType",children:(0,tq.jsx)(ni.Select,{disabled:!1===a,options:[{label:"DATETIME",value:"datetime"},{label:"BIGINT",value:"bigint(20)"}]})})]})};class ci extends dB.v{getIcon(){return{type:"name",value:"date-time-field"}}getGroup(){return[...super.getGroup(),"date"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getDefaultData(){return{...super.getDefaultData(),columnType:"datetime"}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(ct,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","datetime")}}let cn=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})})};class cr extends dB.v{getIcon(){return{type:"name",value:"date-range"}}getGroup(){return[...super.getGroup(),"date"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cn,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","dateRange")}}let ca=e=>{let{t}=(0,iQ.useTranslation)(),i=ni.Form.useFormInstance(),n=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!n&&(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("min-max-settings"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("increment-step"),name:"increment",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("min-value"),name:"minValue",children:(0,tq.jsx)(ni.DatePicker.TimePicker,{outputFormat:"HH:mm",outputType:"dateString",showSecond:!1})}),(0,tq.jsx)(ni.Form.Item,{label:t("max-value"),name:"maxValue",children:(0,tq.jsx)(ni.DatePicker.TimePicker,{outputFormat:"HH:mm",outputType:"dateString",showSecond:!1})}),(0,tq.jsx)(ni.Button,{onClick:()=>{i.setFieldValue("minValue",null,{triggerChange:!0}),i.setFieldValue("maxValue",null,{triggerChange:!0}),i.setFieldValue("increment",15,{triggerChange:!0})},children:t("reset")})]})]})};class cl extends dB.v{getIcon(){return{type:"name",value:"time"}}getGroup(){return[...super.getGroup(),"date"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getDefaultData(){return{...super.getDefaultData(),width:"",increment:15,minValue:null,maxValue:null}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(ca,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","time")}}let co=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsx)(ni.Form.Item,{label:t("upload-path"),name:"uploadPath",children:(0,tq.jsx)(sW.q9,{allowToClearRelation:!0,allowedAssetTypes:["folder"],assetsAllowed:!0})})]})},cs=(0,tk.injectable)()(eN=class extends dB.v{getIcon(){return{type:"name",value:"image"}}getGroup(){return[...super.getGroup(),"media"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(co,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","image")}})||eN,cd=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("preview-width"),name:"previewWidth",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("preview-height"),name:"previewHeight",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("url-width"),name:"inputWidth",children:(0,tq.jsx)(ni.InputNumber,{})})]})},cc=(0,tk.injectable)()(eR=class extends dB.v{getIcon(){return{type:"name",value:"image-external"}}getGroup(){return[...super.getGroup(),"media"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cd,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","externalImage")}})||eR,cf=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:e("crop-settings"),children:[(0,tq.jsx)(ni.Form.Item,{label:e("ratio-x"),name:"ratioX",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:e("ratio-y"),name:"ratioY",children:(0,tq.jsx)(ni.InputNumber,{})}),(0,tq.jsx)(ni.Form.Item,{label:e("predefined-data-templates"),name:"predefinedDataTemplates",children:(0,tq.jsx)(ni.TextArea,{autoSize:!0})})]})},cu=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("upload-path"),name:"uploadPath",children:(0,tq.jsx)(sW.q9,{allowToClearRelation:!0,allowedAssetTypes:["folder"],assetsAllowed:!0})}),(0,tq.jsx)(cf,{})]})]})},cm=(0,tk.injectable)()(eV=class extends dB.v{getIcon(){return{type:"name",value:"image-gallery"}}getGroup(){return[...super.getGroup(),"media"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cu,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","imageGallery")}})||eV,cp=e=>{let{t}=(0,iQ.useTranslation)(),i=[{label:t("video.type.asset"),value:"asset"},{label:t("video.type.youtube"),value:"youtube"},{label:t("video.type.vimeo"),value:"vimeo"},{label:t("video.type.dailymotion"),value:"dailymotion"}];return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("upload-path"),name:"uploadPath",children:(0,tq.jsx)(sW.Pp,{allowToClearRelation:!0,allowedAssetTypes:["folder"],assetsAllowed:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("allowed-video-types"),name:"allowedTypes",tooltip:t("allowed-video-types-tooltip"),children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:i})})]})},cg=(0,tk.injectable)()(ez=class extends dB.v{getIcon(){return{type:"name",value:"video"}}getGroup(){return[...super.getGroup(),"media"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cp,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","video")}})||ez,ch=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("upload-path"),name:"uploadPath",children:(0,tq.jsx)(sW.q9,{allowToClearRelation:!0,allowedAssetTypes:["folder"],assetsAllowed:!0})}),(0,tq.jsx)(cf,{})]})]})},cy=(0,tk.injectable)()(eB=class extends dB.v{getIcon(){return{type:"name",value:"image-advanced"}}getGroup(){return[...super.getGroup(),"media"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(ch,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","hotspotimage")}})||eB,cv=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:e("latitude"),name:"lat",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:8,step:.01})}),(0,tq.jsx)(ni.Form.Item,{label:e("longitude"),name:"lng",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:8,step:.01})}),(0,tq.jsx)(ni.Form.Item,{label:e("zoom-level"),name:"zoom",children:(0,tq.jsx)(ni.InputNumber,{min:1,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:e("width"),name:"width",tooltip:e("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:e("height"),name:"height",tooltip:e("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})})]})},cb=e=>(0,tq.jsx)(cv,{});class cx extends dB.v{getIcon(){return{type:"name",value:"location-marker"}}getGroup(){return[...super.getGroup(),"geo"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getDefaultData(){return{...super.getDefaultData(),lat:0,lng:0,zoom:1,width:"",height:180}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cb,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","geopoint")}}let cj=e=>(0,tq.jsx)(cv,{});class cw extends dB.v{getIcon(){return{type:"name",value:"geographical-bounds"}}getGroup(){return[...super.getGroup(),"geo"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getDefaultData(){return{...super.getDefaultData(),lat:0,lng:0,zoom:1,width:"",height:180}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cj,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","geobounds")}}let ck=e=>(0,tq.jsx)(cv,{});class cT extends dB.v{getIcon(){return{type:"name",value:"geographical-polygon"}}getGroup(){return[...super.getGroup(),"geo"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getDefaultData(){return{...super.getDefaultData(),lat:0,lng:0,zoom:1,width:"",height:180}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(ck,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","geopolygon")}}let cS=e=>(0,tq.jsx)(cv,{});class cC extends dB.v{getIcon(){return{type:"name",value:"geographical-polyline"}}getGroup(){return[...super.getGroup(),"geo"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getDefaultData(){return{...super.getDefaultData(),lat:0,lng:0,zoom:1,width:"",height:180}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cS,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","geopolyline")}}let cD=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=!0===e.context.isEncryptedField;return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&!n&&(0,tq.jsx)(ni.Form.Item,{label:t("column-length"),name:"columnLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})})]})};class cI extends dB.v{getIcon(){return{type:"name",value:"name"}}getDefaultData(){return{...super.getDefaultData(),name:"firstname",title:(0,i6.t)("field-definition.crm.firstname.title")}}getGroup(){return[...super.getGroup(),"crm"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableName:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cD,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}normalizeFieldDefinition(e){let t=super.normalizeFieldDefinition(e);return("string"!=typeof t.title||""===t.title)&&(t.title=(0,i6.t)("field-definition.crm.firstname.title")),t}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","firstname")}}let cM=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=!0===e.context.isEncryptedField;return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&!n&&(0,tq.jsx)(ni.Form.Item,{label:t("column-length"),name:"columnLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})})]})};class cL extends dB.v{getIcon(){return{type:"name",value:"name"}}getDefaultData(){return{...super.getDefaultData(),name:"lastname",title:(0,i6.t)("field-definition.crm.lastname.title")}}getGroup(){return[...super.getGroup(),"crm"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableName:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cM,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}normalizeFieldDefinition(e){let t=super.normalizeFieldDefinition(e);return("string"!=typeof t.title||""===t.title)&&(t.title=(0,i6.t)("field-definition.crm.lastname.title")),t}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","lastname")}}let cF=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=!0===e.context.isEncryptedField;return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&!n&&(0,tq.jsx)(ni.Form.Item,{label:t("column-length"),name:"columnLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})})]})};class cE extends dB.v{getIcon(){return{type:"name",value:"email"}}getDefaultData(){return{...super.getDefaultData(),name:"email",title:(0,i6.t)("field-definition.crm.email.title")}}getGroup(){return[...super.getGroup(),"crm"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableName:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cF,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}normalizeFieldDefinition(e){let t=super.normalizeFieldDefinition(e);return("string"!=typeof t.title||""===t.title)&&(t.title=(0,i6.t)("field-definition.crm.email.title")),t}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","email")}}class cP extends dB.v{getIcon(){return{type:"name",value:"gender"}}getDefaultData(){return{...super.getDefaultData(),name:"gender",title:(0,i6.t)("field-definition.crm.gender.title")}}getGroup(){return[...super.getGroup(),"crm"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableName:!0})}getSpecificFormFields(e){return(0,tq.jsx)(tq.Fragment,{})}normalizeFieldDefinition(e){let t=super.normalizeFieldDefinition(e);return("string"!=typeof t.title||""===t.title)&&(t.title=(0,i6.t)("field-definition.crm.gender.title")),t}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","gender")}}let cA=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})})};class cN extends dB.v{getIcon(){return{type:"name",value:"gdpr-extractor"}}getGroup(){return[...super.getGroup(),"crm"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cA,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","consent")}}var cR=i(76118),cV=i(30045);let cz=e=>{var t;let{t:i}=(0,iQ.useTranslation)(),n=(()=>{let{data:e}=(0,cV.useClassSelectOptionGetTreeQuery)({withGroup:!0});return(0,tG.useMemo)(()=>{let t=[],i=e=>{e.forEach(e=>{(0,tI.isArray)(e.children)&&e.children.length>0?i(e.children):t.push({label:e.name,value:e.id})})};return(null==e?void 0:e.items)!==void 0&&i(e.items),t},[e])})();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:i("options-source"),name:"optionsProviderType",children:(0,tq.jsx)(ni.Select,{options:[{label:i("options-source-configure"),value:"configure"},{label:i("options-source-select-options"),value:"select_options"},{label:i("options-source-options-provider"),value:"class"}]})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>"configure"===e.optionsProviderType||void 0===e.optionsProviderType||""===e.optionsProviderType,children:(0,tq.jsxs)(ni.FormKit.Panel,{contentPadding:{top:"extra-small"},children:[(0,tq.jsx)(ni.Form.Item,{label:i("select-options"),name:"options",children:(0,tq.jsx)(cR.C,{})}),null==(t=e.renderAdditionalConfigureFields)?void 0:t.call(e)]})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>"select_options"===e.optionsProviderType,children:(0,tq.jsx)(ni.FormKit.Panel,{contentPadding:{top:"extra-small"},children:(0,tq.jsx)(ni.Form.Item,{label:i("select-options"),name:"optionsProviderData",children:(0,tq.jsx)(ni.Select,{options:n})})})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>"class"===e.optionsProviderType,children:(0,tq.jsxs)(ni.FormKit.Panel,{contentPadding:{top:"extra-small"},children:[(0,tq.jsx)(ni.Form.Item,{label:i("options-provider-class"),name:"optionsProviderClass",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:i("options-provider-data"),name:"optionsProviderData",children:(0,tq.jsx)(ni.Input,{})})]})})]})},cB=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=e.context.area.includes("classification-store"),r=ni.Form.useWatch("optionsProviderType"),a=(ni.Form.useWatch("options")??[]).map(e=>({label:e.key,value:e.value}));return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[!n&&(0,tq.jsx)(ni.Form.Item,{label:t("column-length"),name:"columnLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("default-values-settings"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:"configure"===r||void 0===r||""===r?(0,tq.jsx)(ni.Select,{allowClear:!0,options:a}):(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})})]}),(0,tq.jsx)(ni.Form.Item,{name:"enforceValidation",tooltip:t("enforce-validation-tooltip"),children:(0,tq.jsx)(ni.Switch,{labelRight:t("enforce-validation")})}),(0,tq.jsx)(cz,{})]})]})};class cO extends dB.v{getIcon(){return{type:"name",value:"select-type"}}getGroup(){return[...super.getGroup(),"select"]}getDefaultData(){return{...super.getDefaultData(),optionsProviderType:"configure"}}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cB,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","select")}}let cK=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("yes")+" "+t("display-name"),name:"yesLabel",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("no")+" "+t("display-name"),name:"noLabel",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("empty")+" "+t("display-name"),name:"emptyLabel",children:(0,tq.jsx)(ni.Input,{})})]})]})};class c_ extends dB.v{getIcon(){return{type:"name",value:"boolean-select"}}getGroup(){return[...super.getGroup(),"select"]}getDefaultData(){return{...super.getDefaultData(),yesLabel:"yes",noLabel:"no",emptyLabel:"empty"}}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableMandatory:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cK,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","booleanSelect")}}var cH=i(89507);let c$=(0,cH.createColumnHelper)(),cW=e=>{let{value:t=[],onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),{textarea:r}=(0,aB.Vl)(),[a,l]=(0,tG.useState)({}),o=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[c$.accessor("value",{header:e("value"),meta:{editable:!0,type:"input"}})],[e])})(),s=Object.values(a).some(Boolean),d=(0,tG.useCallback)(e=>{let{active:n,over:r}=e;if(n.id!==(null==r?void 0:r.id)&&null!=t){let e=t.findIndex((e,i)=>`row-${t[i].value}-${i}`===n.id),a=t.findIndex((e,i)=>`row-${t[i].value}-${i}`===(null==r?void 0:r.id));if(-1!==e&&-1!==a){let n=[...t],[r]=n.splice(e,1);n.splice(a,0,r),null==i||i(n)}}},[t,i]),c=()=>{let e=t.map(e=>e.value).join("\n");r({title:n("csv-separated-values"),label:n("csv-separated-values-info"),initialValue:e,onOk:e=>{if((0,tI.isString)(e)){let t=e.split("\n").filter(e=>""!==e.trim()).map(e=>({value:e.trim()}));null==i||i(t)}}})};return(0,tq.jsx)(ni.OperationalGrid,{columns:o,enableRowDrag:!0,enableRowSelection:!0,enableSorting:!1,handleDragEnd:d,onChange:i,onSelectedRowsChange:l,selectedRows:a,setRowId:(e,t)=>`row-${e.value}-${t}`,value:t,children:(0,tq.jsxs)(ni.Space,{direction:"vertical",size:"small",style:{width:"100%"},children:[(0,tq.jsx)(ni.OperationalGrid.Grid,{}),(0,tq.jsx)(ni.OperationalGrid.Operations,{children:e=>(0,tq.jsxs)(ni.Space,{children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"new-something"},onClick:()=>{e.addRow({value:""})},tooltip:{title:n("add")},type:"default"}),(0,tq.jsx)(ni.IconButton,{disabled:!s,icon:{value:"trash"},onClick:()=>{e.deleteSelectedRows()},tooltip:{title:n("delete")},type:"default"}),(0,tq.jsx)(ni.IconButton,{icon:{value:"edit"},onClick:c,tooltip:{title:n("csv-separated-options")},type:"default"})]})})]})})},cq=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("maximum-items"),name:"maxItems",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("multiselect-render-type"),name:"renderType",children:(0,tq.jsx)(ni.Select,{options:[{label:"List",value:"list"},{label:"Tags",value:"tags"}]})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{name:"enforceValidation",tooltip:t("enforce-validation-tooltip"),children:(0,tq.jsx)(ni.Switch,{labelRight:t("enforce-validation")})}),(0,tq.jsx)(cz,{renderAdditionalConfigureFields:()=>(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(cW,{})})})]})]})};class cG extends dB.v{getIcon(){return{type:"name",value:"multi-select"}}getGroup(){return[...super.getGroup(),"select"]}getDefaultData(){return{...super.getDefaultData(),renderType:"list",optionsProviderType:"configure"}}getTags(e){return[...super.getTags(e),"group:select","encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cq,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","multiselect")}}class cU extends dB.v{getIcon(){return{type:"name",value:"user"}}getGroup(){return[...super.getGroup(),"select"]}getTags(e){return[...super.getTags(e),"group:select","encryptedFieldSupport","classificationStore"]}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","user")}}var cQ=i(55745);let cJ=e=>{let{t}=(0,iQ.useTranslation)(),{data:i}=(0,cQ.Vf)(),n=e.context.area.includes("custom-layout"),r=(0,tG.useMemo)(()=>{var e;return(null==i||null==(e=i.items)?void 0:e.map(e=>({label:e.name,value:e.code})))??[]},[i]);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!n&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{getValueFromEvent:e=>e.join(","),getValueProps:e=>({value:(0,tI.isString)(e)?e.split(",").filter(Boolean):e}),label:t("restrict-selection-to"),name:"restrictTo",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:r,showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.Select,{options:r,showSearch:!0})})]})]})};class cZ extends dB.v{getIcon(){return{type:"name",value:"country-select"}}getGroup(){return[...super.getGroup(),"select"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cJ,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","country")}}let cY=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsx)(tq.Fragment,{children:!i&&(0,tq.jsx)(ni.Form.Item,{name:"onlySystemLanguages",children:(0,tq.jsx)(ni.Switch,{labelRight:t("only-configured-languages")})})})};class cX extends dB.v{getIcon(){return{type:"name",value:"language-select"}}getGroup(){return[...super.getGroup(),"select"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(cY,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","language")}}let c0=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),{data:n}=(0,cQ.Vf)(),r=(0,tG.useMemo)(()=>{var e;return(null==n||null==(e=n.items)?void 0:e.map(e=>({label:e.name,value:e.code})))??[]},[n]);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("multiselect-render-type"),name:"renderType",children:(0,tq.jsx)(ni.Select,{options:[{label:"List",value:"list"},{label:"Tags",value:"tags"}]})}),(0,tq.jsx)(ni.Form.Item,{getValueFromEvent:e=>e.join(","),getValueProps:e=>({value:(0,tI.isString)(e)?e.split(",").filter(Boolean):e}),label:t("restrict-selection-to"),name:"restrictTo",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:r,showSearch:!0})})]})]})};class c1 extends dB.v{getIcon(){return{type:"name",value:"countries-multiple"}}getGroup(){return[...super.getGroup(),"select"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getDefaultData(){return{...super.getDefaultData(),renderType:"List"}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(c0,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","countrymultiselect")}}let c2=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("multiselect-render-type"),name:"renderType",children:(0,tq.jsx)(ni.Select,{options:[{label:"List",value:"list"},{label:"Tags",value:"tags"}]})}),(0,tq.jsx)(ni.Form.Item,{name:"onlySystemLanguages",children:(0,tq.jsx)(ni.Switch,{labelRight:t("only-configured-languages")})})]})]})};class c3 extends dB.v{getIcon(){return{type:"name",value:"language-overview"}}getGroup(){return[...super.getGroup(),"select"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getDefaultData(){return{...super.getDefaultData(),renderType:"list"}}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(c2,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","languagemultiselect")}}let c6=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})})};class c4 extends dB.v{getIcon(){return{type:"name",value:"color"}}getGroup(){return[...super.getGroup(),"other"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(c6,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","rgbaColor")}}let c5=e=>{let{t}=(0,iQ.useTranslation)(),i=iv.container.get(iv.serviceIds["DynamicTypes/FieldDefinitionRegistry"]),n=(0,tG.useRef)(void 0),r=(0,tG.useRef)({}),a=ni.Form.useFormInstance(),l=ni.Form.useWatch("delegateDatatype"),o=i.getTypesByTags(["encryptedFieldSupport"],e.context).map(e=>({label:t("field-definition."+(0,tI.kebabCase)(e.id)),value:e.id})).sort((e,t)=>e.label.localeCompare(t.label)),s=e=>!c7.has(e)&&"delegateDatatype"!==e,d=e=>(0,tI.pickBy)(e,(e,t)=>s(t)),c=t=>i.getDynamicType(t).getDefaultData(e.context),f=e=>{(0,tI.isEmpty)(e)||a.setFieldsValue(e,{triggerChange:!0})};return(0,tG.useEffect)(()=>{if(void 0===l||""===l){n.current=void 0;return}if(!i.hasDynamicType(l)||n.current===l)return;let e=n.current,t=a.getFieldsValue(!0);if(void 0===e){let e;r.current[l]=d(t),e=c(l),f((0,tI.pickBy)(e,(e,i)=>!c7.has(i)&&void 0===t[i]))}else{let i,n;r.current[e]=d(t),i=(0,tI.mapValues)((0,tI.pickBy)(t,(e,t)=>s(t)),()=>void 0),n=r.current[l]??(0,tI.omitBy)(c(l),(e,t)=>c7.has(t)),f({...i,...n})}n.current=l},[l]),(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("field"),name:"delegateDatatype",children:(0,tq.jsx)(ni.Select,{allowClear:!1,options:o})}),void 0!==l&&""!==l&&i.hasDynamicType(l)&&i.getDynamicType(l).getSpecificFormFields({...e.context,isEncryptedField:!0})]})},c7=new Set(["fieldtype","fieldType","datatype","name","title","tooltip"]);class c8 extends dB.v{getIcon(){return{type:"name",value:"encrypted"}}getGroup(){return[...super.getGroup(),"other"]}getTags(e){return[...super.getTags(e),"classificationStore"]}getDefaultData(){return{...super.getDefaultData(),delegateDatatype:"input"}}getAllowedChildTags(e){return["encryptedFieldSupport"]}normalizeFieldDefinition(e){let t={...e};if(null!==t.delegate&&"object"==typeof t.delegate&&!Array.isArray(t.delegate))for(let[e,i]of Object.entries(t.delegate))c7.has(e)||void 0!==t[e]||(t[e]=i);return t}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(c5,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","encryptedField")}}var c9=i(90583);let fe=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),{getAllSites:n}=(0,c9.u)({excludeMainSite:!0}),r=(0,tG.useMemo)(()=>n().map(e=>({label:e.domain,value:e.id})),[n]);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("domain-label-width"),name:"domainLabelWidth",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("controller-action"),name:"action",tooltip:t("controller-action-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("available-sites"),name:"availableSites",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:r})})]})]})};class ft extends dB.v{getIcon(){return{type:"name",value:"url-slug"}}getGroup(){return[...super.getGroup(),"other"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fe,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","urlSlug")}}let fi=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=ni.Form.useFormInstance(),r=ni.Form.useWatch("defaultValue");return(0,tG.useEffect)(()=>{null===r&&n.setFieldValue("defaultValue","empty")},[r,n]),(0,tq.jsx)(tq.Fragment,{children:!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("default-value"),name:"defaultValue",children:(0,tq.jsx)(ni.Select,{options:[{label:t("null"),value:"empty"},{label:t("false"),value:0},{label:t("true"),value:1}]})}),(0,tq.jsx)(ni.Form.Item,{label:t("default-value-generator"),name:"defaultValueGenerator",children:(0,tq.jsx)(ni.Input,{})})]})})};class fn extends dB.v{getIcon(){return{type:"name",value:"checkbox"}}getGroup(){return[...super.getGroup(),"other"]}getDefaultData(){return{...super.getDefaultData(),defaultValue:"empty"}}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fi,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","checkbox")}}let fr=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("allowed-types"),name:"allowedTypes",tooltip:t("empty-equals-allow-all-tooltip"),children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:[{label:t("asset"),value:"asset"},{label:t("document"),value:"document"},{label:t("data-object"),value:"object"}]})}),(0,tq.jsx)(ni.Form.Item,{label:t("allowed-targets"),name:"allowedTargets",tooltip:t("empty-equals-allow-all-tooltip"),children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:[{label:"_blank",value:"_blank"},{label:"_self",value:"_self"},{label:"_top",value:"_top"},{label:"_parent",value:"_parent"}]})}),(0,tq.jsx)(ni.Form.Item,{label:t("disabled-fields"),name:"disabledFields",tooltip:t("empty-equals-allow-all-tooltip"),children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:[{label:t("link.text"),value:"text"},{label:t("link.target"),value:"target"},{label:t("link.parameters"),value:"parameters"},{label:t("link.anchor"),value:"anchor"},{label:t("link.title"),value:"title"},{label:t("link.accesskey"),value:"accesskey"},{label:t("link.rel"),value:"rel"},{label:t("link.tabindex"),value:"tabindex"},{label:t("link.class"),value:"class"},{label:t("link.attributes"),value:"attributes"}]})})]})};class fa extends dB.v{getIcon(){return{type:"name",value:"hardlink"}}getGroup(){return[...super.getGroup(),"other"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fr,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0,disableMandatory:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","link")}}let fl=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=ni.Form.useFormInstance(),r=ni.Form.useWatch("calculatorType");return(0,tG.useEffect)(()=>{null===r&&n.setFieldValue("calculatorType","class")},[r,n]),(0,tq.jsxs)(tq.Fragment,{children:[!i&&(0,tq.jsx)(ni.Form.Item,{label:t("type"),name:"elementType",children:(0,tq.jsx)(ni.Select,{options:[{label:t("data-type.input"),value:"input"},{label:t("data-type.textarea"),value:"textarea"},{label:t("data-type.html"),value:"html"},{label:t("data-type.number"),value:"numeric"},{label:t("data-type.date"),value:"date"},{label:t("data-type.boolean"),value:"boolean"}]})}),(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("column-length"),name:"columnLength",rules:[{min:0,type:"number"}],children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("calculator-type"),name:"calculatorType",tooltip:t("calculator-type-tooltip"),children:(0,tq.jsx)(ni.Select,{options:[{label:t("class"),value:"class"},{label:t("expression"),value:"expression"}]})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>"expression"!==e.calculatorType,children:(0,tq.jsx)(ni.Form.Item,{label:t("calculator-class"),name:"calculatorClass",children:(0,tq.jsx)(ni.Input,{})})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>"expression"===e.calculatorType,children:(0,tq.jsx)(ni.Form.Item,{label:t("calculator-expression"),name:"calculatorExpression",children:(0,tq.jsx)(ni.Input,{})})})]})]})};class fo extends dB.v{getIcon(){return{type:"name",value:"calculator"}}getGroup(){return[...super.getGroup(),"other"]}getTags(e){return[...super.getTags(e),"classificationStore"]}getDefaultData(){return{...super.getDefaultData(),calculatorType:"class"}}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fl,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","calculatedValue")}}var fs=i(60637),fd=i(55709),fc=i(66982),ff=i(16604),fu=i(23633),fm=i(10974),fp=i(52416),fg=i(73048);let fh=(0,cH.createColumnHelper)(),fy=e=>{let{value:t=[],onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)({}),l=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[fh.accessor("position",{header:e("position"),size:70,meta:{editable:!0,type:"number"}}),fh.accessor("key",{header:e("key"),size:100,meta:{editable:!0,type:"input"}}),fh.accessor("label",{header:e("label"),size:120,meta:{editable:!0,type:"input"}}),fh.accessor("type",{header:e("type"),size:100,meta:{editable:!0,type:"select",config:{options:[{label:e("number"),value:"number"},{label:e("text"),value:"text"},{label:e("select"),value:"select"},{label:e("bool"),value:"bool"},{label:e("column-bool"),value:"columnbool"},{label:e("multiselect"),value:"multiselect"}]}}}),fh.accessor("value",{header:e("value"),size:110,meta:{editable:!0,type:"input"}}),fh.accessor("width",{header:e("width"),size:70,meta:{editable:!0,type:"number"}})],[e])})(),o=Object.values(r).some(Boolean),s=async e=>{let r;if("key"===e.columnId&&((r=String(e.value).trim()).length<=1||null===RegExp("^[a-zA-Z0-9_]+$").exec(r)||(0,fg.Z)(r)))return void await ig.message.error(`${n("relation-invalid-key-in-columns")}`);let a=[...t];a[e.rowIndex]={...a[e.rowIndex],[e.columnId]:e.value},null==i||i(a)};return(0,tq.jsx)(ni.OperationalGrid,{columns:l,enableRowSelection:!0,enableSorting:!1,onChange:i,onSelectedRowsChange:a,onUpdateCellData:s,selectedRows:r,value:t,children:(0,tq.jsxs)(ni.Space,{direction:"vertical",size:"small",style:{width:"100%"},children:[(0,tq.jsx)(ni.Box,{style:{overflowX:"auto"},children:(0,tq.jsx)(ni.OperationalGrid.Grid,{})}),(0,tq.jsx)(ni.OperationalGrid.Operations,{children:e=>(0,tq.jsxs)(ni.Space,{children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"new-something"},onClick:()=>{e.addRow({position:(t.length>0?Math.max(...t.map(e=>e.position??0)):0)+1,key:"name",label:"",type:"text",value:"",width:null})},tooltip:{title:n("add")},type:"default"}),(0,tq.jsx)(ni.IconButton,{disabled:!o,icon:{value:"trash"},onClick:()=>{e.deleteSelectedRows()},tooltip:{title:n("delete")},type:"default"})]})})]})})},fv=e=>{let{t}=(0,iQ.useTranslation)(),{options:i}=(0,ff.j)(!0),n=(0,fu.w)(),r=(0,fm.H)(),a=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!a&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("maximum-items"),name:"maxItems",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("path-formatter-service"),name:"pathFormatterClass",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("document-restrictions"),children:[(0,tq.jsx)(ni.Form.Item,{name:"documentsAllowed",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-documents")})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>!0===e.documentsAllowed,children:(0,tq.jsx)(ni.Form.Item,{...(0,fp.Bk)("documentTypes"),label:t("allowed-document-types"),name:"documentTypes",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:r})})})]}),(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("asset-restrictions"),children:[(0,tq.jsx)(ni.Form.Item,{name:"assetsAllowed",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-assets")})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>!0===e.assetsAllowed,children:(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{name:"assetInlineDownloadAllowed",children:(0,tq.jsx)(ni.Switch,{labelRight:t("asset-inline-download-allowed")})}),(0,tq.jsx)(ni.Form.Item,{...(0,fp.Bk)("assetTypes"),label:t("allowed-asset-types"),name:"assetTypes",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:n})}),(0,tq.jsx)(ni.Form.Item,{label:t("upload-path"),name:"assetUploadPath",children:(0,tq.jsx)(ni.Input,{})})]})})]}),(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("object-restrictions"),children:[(0,tq.jsx)(ni.Form.Item,{name:"objectsAllowed",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-objects")})}),(0,tq.jsx)(ni.Form.Conditional,{condition:e=>!0===e.objectsAllowed,children:(0,tq.jsx)(ni.Form.Item,{...(0,fp.Bk)("classes"),label:t("allowed-classes"),name:"classes",children:(0,tq.jsx)(ni.Select,{mode:"multiple",options:i,showSearch:!0})})})]}),(0,tq.jsx)(ni.Form.Item,{label:t("columns"),name:"columns",children:(0,tq.jsx)(fy,{})}),(0,tq.jsx)(ni.Form.Item,{name:"enableTextSelection",children:(0,tq.jsx)(ni.Switch,{labelRight:t("enable-text-selection")})}),(0,tq.jsx)(ni.Form.Item,{name:"enableBatchEdit",children:(0,tq.jsx)(ni.Switch,{labelRight:t("enable-batch-edit")})}),(0,tq.jsx)(ni.Form.Item,{name:"allowMultipleAssignments",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-multiple-assignments")})}),(0,tq.jsx)(ni.Form.Item,{name:"allowToClearRelation",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-to-clear-relation")})}),(0,tq.jsx)(ni.Form.Item,{name:"optimizedAdminLoading",tooltip:t("enable-async-load-in-admin-tooltip"),children:(0,tq.jsx)(ni.Switch,{labelRight:t("enable-async-load-in-admin")})})]})]})};class fb extends dB.v{getIcon(){return{type:"name",value:"advanced-many-to-many-relation"}}getGroup(){return[...super.getGroup(),"relation"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fv,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","advancedManyToManyRelation")}}var fx=i(18542);let fj=e=>{let{t}=(0,iQ.useTranslation)(),{options:i,isLoading:n}=(0,ff.j)(),r=ni.Form.useFormInstance(),a=ni.Form.useWatch("allowedClassId"),l=ni.Form.useWatch("visibleFields"),o=e.context.area.includes("custom-layout"),s=(0,tG.useMemo)(()=>(0,tI.isString)(a)&&a.length>0?[a]:[],[a]),{options:d,isLoading:c}=(0,fx.T)(s);(0,tG.useEffect)(()=>{if(c)return;let e=(0,tI.isString)(l)?l.split(",").filter(Boolean):[],t=new Set(d.map(e=>e.value)),i=e.filter(e=>t.has(e));e.length!==i.length&&r.setFieldValue("visibleFields",i.join(","))},[d,c,l,r]);let f=n||c;return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!o&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("maximum-items"),name:"maxItems",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("path-formatter-service"),name:"pathFormatterClass",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("allowed-class"),name:"allowedClassId",children:(0,tq.jsx)(ni.Select,{options:i,showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{getValueFromEvent:e=>e.join(","),getValueProps:e=>({value:(0,tI.isString)(e)?e.split(",").filter(Boolean):e}),label:t("visible-fields"),name:"visibleFields",children:(0,tq.jsx)(ni.Select,{loadingSkeleton:f,mode:"multiple",options:d,showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("columns"),name:"columns",children:(0,tq.jsx)(fy,{})}),(0,tq.jsx)(ni.Form.Item,{name:"enableTextSelection",children:(0,tq.jsx)(ni.Switch,{labelRight:t("enable-text-selection")})}),(0,tq.jsx)(ni.Form.Item,{name:"enableBatchEdit",children:(0,tq.jsx)(ni.Switch,{labelRight:t("enable-batch-edit")})}),(0,tq.jsx)(ni.Form.Item,{name:"allowMultipleAssignments",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-multiple-assignments")})}),(0,tq.jsx)(ni.Form.Item,{name:"allowToCreateNewObject",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-to-create-new-object")})}),(0,tq.jsx)(ni.Form.Item,{name:"allowToClearRelation",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-to-clear-relation")})}),(0,tq.jsx)(ni.Form.Item,{name:"optimizedAdminLoading",tooltip:t("enable-async-load-in-admin-tooltip"),children:(0,tq.jsx)(ni.Switch,{labelRight:t("enable-async-load-in-admin")})})]})]})};class fw extends dB.v{getIcon(){return{type:"name",value:"advanced-many-to-many-object-relation"}}getGroup(){return[...super.getGroup(),"relation"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fj,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","advancedManyToManyObjectRelation")}}var fk=i(15623);let fT=e=>(0,tI.flatMap)(e,e=>"children"in e&&(0,tI.isArray)(e.children)&&!(0,tI.isEmpty)(e.children)?[...fT(e.children)]:[e]),fS=e=>{let{t}=(0,iQ.useTranslation)(),{options:i,isLoading:n}=(0,ff.j)(),r=ni.Form.useFormInstance(),a=ni.Form.useWatch("ownerClassName"),l=ni.Form.useWatch("ownerFieldName"),o=ni.Form.useWatch("visibleFields"),s=e.context.area.includes("custom-layout"),{options:d,isLoading:c}=(e=>{let{data:t,isFetching:i}=(0,fk.Fk)({withGroup:!0},{skip:void 0===e||""===e}),n=(0,tG.useMemo)(()=>{var i;if(void 0!==t)return null==(i=fT(t.items).find(t=>t.name===e))?void 0:i.id},[t,e]),{data:r,isFetching:a}=(0,fk.qu)({classId:n,type:"manyToManyObjectRelation,manyToOneRelation"},{skip:void 0===n});return{options:(0,tG.useMemo)(()=>(null==r?void 0:r.items.map(e=>({label:e.key,value:e.key})))??[],[r]),isLoading:i||a}})(a),{options:f,isLoading:u}=(0,fx.T)([a??""]);(0,tG.useEffect)(()=>{if(u)return;let e=(0,tI.isString)(o)?o.split(",").filter(Boolean):[],t=new Set(f.map(e=>e.value)),i=e.filter(e=>t.has(e));e.length!==i.length&&r.setFieldValue("visibleFields",i.join(","))},[f,u,o,r]),(0,tG.useEffect)(()=>{if(c)return;let e=new Set(d.map(e=>e.value));void 0===l||e.has(l)||r.setFieldValue("ownerFieldName",void 0)},[d,c,l,r]);let m=n||u||c;return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{name:"allowToCreateNewObject",children:(0,tq.jsx)(ni.Switch,{labelRight:t("allow-to-create-new-object")})}),(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!s&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("path-formatter-service"),name:"pathFormatterClass",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsxs)(ni.FormKit.Panel,{border:!0,theme:"fieldset",title:t("owner"),tooltip:t("reverse-object-relation.tooltip"),children:[(0,tq.jsx)(ni.Form.Item,{label:t("owner-class"),name:"ownerClassName",children:(0,tq.jsx)(ni.Select,{loadingSkeleton:n,options:i,showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{label:t("owner-field-name"),name:"ownerFieldName",children:(0,tq.jsx)(ni.Select,{loadingSkeleton:c,options:d,showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{...(0,fp.Bk)("visibleFields"),getValueFromEvent:e=>e.join(","),getValueProps:e=>({value:(0,tI.isString)(e)?e.split(",").filter(Boolean):e}),label:t("visible-fields"),name:"visibleFields",children:(0,tq.jsx)(ni.Select,{loadingSkeleton:m,mode:"multiple",options:f,showSearch:!0})})]}),(0,tq.jsx)(ni.Form.Item,{name:"optimizedAdminLoading",tooltip:t("enable-async-load-in-admin-tooltip"),children:(0,tq.jsx)(ni.Switch,{labelRight:t("enable-async-load-in-admin")})})]})]})};class fC extends dB.v{getIcon(){return{type:"name",value:"reverse-object-relation"}}getGroup(){return[...super.getGroup(),"relation"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fS,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0,disableMandatory:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","reverseObjectRelation")}}var fD=i(28476);let fI=e=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("layout"),name:"layout",children:(0,tq.jsx)(ig.Select,{options:[{label:(0,i6.t)("default"),value:"default"},{label:(0,i6.t)("fit"),value:"fit"}]})}),(0,tq.jsx)(ni.Form.Item,{name:"border",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("border")})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("label-width"),name:"labelWidth",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("label-align"),name:"labelAlign",children:(0,tq.jsx)(ig.Select,{options:[{label:(0,i6.t)("left"),value:"left"},{label:(0,i6.t)("top"),value:"top"}]})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("icon"),name:"icon",children:(0,tq.jsx)(ni.IconSelector,{})})]});class fM extends fD.l{getGroup(){return[...super.getGroup(),"panel"]}getIcon(){return{type:"name",value:"panel"}}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fI,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","panel")}}let fL=e=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("label"),name:"fieldLabel",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("label-width"),name:"labelWidth",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("label-align"),name:"labelAlign",children:(0,tq.jsx)(ig.Select,{options:[{label:(0,i6.t)("left"),value:"left"},{label:(0,i6.t)("top"),value:"top"}]})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("layout"),name:"layout",children:(0,tq.jsx)(ig.Select,{options:[{label:(0,i6.t)("vbox"),value:"vbox"},{label:(0,i6.t)("hbox"),value:"hbox"}]})})]});class fF extends fD.l{getGroup(){return[...super.getGroup(),"fieldcontainer"]}getIcon(){return{type:"name",value:"field-container"}}getFormFields(e){return super.getFormFields({...e,hideTitle:!0})}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fL,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","fieldcontainer")}}let fE=e=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("label-width"),name:"labelWidth",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("label-align"),name:"labelAlign",children:(0,tq.jsx)(ig.Select,{options:[{label:(0,i6.t)("left"),value:"left"},{label:(0,i6.t)("top"),value:"top"}]})})]});class fP extends fD.l{getGroup(){return[...super.getGroup(),"fieldset"]}getIcon(){return{type:"name",value:"fieldset"}}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fE,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","fieldset")}}let fA=e=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("iframe-url"),name:"iframeUrl",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("rendering-data"),name:"renderingData",children:(0,tq.jsx)(ni.Input,{})})]});class fN extends fD.l{getGroup(){return[...super.getGroup(),"iframe"]}getIcon(){return{type:"name",value:"preview"}}getFormFields(e){return super.getFormFields({...e,hideRegion:!0,hideCollapsible:!0})}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fA,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","iframe")}}let fR=e=>(0,tq.jsx)(ni.Form.Item,{name:"border",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("border")})});class fV extends fD.l{getGroup(){return[...super.getGroup(),"accordion"]}getIcon(){return{type:"name",value:"accordion"}}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fR,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","accordion")}}let fz=e=>(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("icon"),name:"icon",children:(0,tq.jsx)(ni.IconSelector,{})});class fB extends fD.l{getGroup(){return[...super.getGroup(),"region"]}getIcon(){return{type:"name",value:"region"}}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fz,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","region")}}let fO=e=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{name:"border",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("border")})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("tab-position"),name:"tabPosition",children:(0,tq.jsx)(ig.Select,{options:[{label:(0,i6.t)("top"),value:"top"},{label:(0,i6.t)("left"),value:"left"},{label:(0,i6.t)("right"),value:"right"},{label:(0,i6.t)("bottom"),value:"bottom"}]})})]});class fK extends fD.l{getGroup(){return[...super.getGroup(),"tabpanel"]}getIcon(){return{type:"name",value:"tab-panel"}}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fO,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","tabpanel")}}var f_=i(86052),fH=i(70620),f$=i(19286),fW=i(16014);let fq=e=>{let t=ni.Form.useFormInstance(),{generalSettings:i}=(0,f$.dq)(),[n,r]=(0,tG.useState)(null),[a,l]=(0,tG.useState)(""),o=(0,tG.useRef)("0"),s=(null==i?void 0:i.name)??"",d=(null==n?void 0:n.fullPath)??"",c=(0,tG.useCallback)(()=>{let e=t.getFieldsValue(!0),i=new URLSearchParams;return i.set("className",s),""!==d&&i.set("path",d),"string"==typeof e.renderingData&&""!==e.renderingData&&i.set("renderingData",e.renderingData),"string"==typeof e.renderingClass&&""!==e.renderingClass&&i.set("renderingClass",e.renderingClass),"string"==typeof e.html&&""!==e.html&&i.set("html",e.html),`${(0,tD.$)()}/class/definition/configuration-view/text-layout/preview?${i.toString()}`},[s,d,t]),f=(0,tG.useCallback)(()=>{"1"===o.current&&l(c())},[c]);(0,tG.useEffect)(()=>{f()},[d]);let u={key:"0",label:(0,i6.t)("configuration"),children:(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("rendering-class"),name:"renderingClass",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("rendering-data"),name:"renderingData",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{help:(0,tq.jsx)(f_.Z,{style:{overflow:"auto"},children:(0,tq.jsx)(ni.SanitizeHtml,{html:(0,i6.t)("layout.text.help")})}),label:(0,i6.t)("text"),name:"html",children:(0,tq.jsx)(r5.A,{context:ai.f.CLASS_EDITOR})})]})},m={key:"1",label:(0,i6.t)("preview"),children:(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:(0,i6.t)("drag-object-for-preview"),children:(0,tq.jsx)(fW.P,{allowToClearRelation:!0,allowedDataObjectTypes:["object","folder"],dataObjectsAllowed:!0,hideOpenButton:!0,onChange:e=>{r(e)},value:n})}),""!==a&&(0,tq.jsx)(fH.C,{allowOpen:!1,iframe:{src:a,title:(0,i6.t)("preview")}})]})};return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{name:"border",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("border")})}),(0,tq.jsx)(aS.k,{items:[u,m],onChange:e=>{o.current=e,"1"===e&&f()}})]})};class fG extends fD.l{getGroup(){return[...super.getGroup(),"text"]}getIcon(){return{type:"name",value:"text-field"}}getSpecificFormFields(e){let t=e.path.at(-1)??"",i=e.fieldDefinitions[t];return(0,tq.jsx)(fq,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","text")}}var fU=i(91119);let fQ=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsx)(tq.Fragment,{children:!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("maximum-items"),name:"maxItems",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{name:"lazyLoading",children:(0,tq.jsx)(ni.Switch,{labelRight:t("lazy-loading")})}),(0,tq.jsx)(ni.Form.Item,{name:"disallowAddRemove",children:(0,tq.jsx)(ni.Switch,{labelRight:t("disallow-add-remove")})}),(0,tq.jsx)(ni.Form.Item,{name:"disallowReorder",children:(0,tq.jsx)(ni.Switch,{labelRight:t("disallow-reorder")})})]})})};class fJ extends dB.v{getIcon(){return{type:"name",value:"block"}}getDropdownTags(e){return e.area.includes("custom-layout")?["group:layout"]:this.getAllowedChildTags(e)}getAllowedChildTags(e){return[...super.getAllowedChildTags(e),"group:layout","group:data"]}getDisallowedRecursiveChildTags(e){return[...super.getDisallowedRecursiveChildTags(e),"block"]}opensNamespace(){return!0}getGroup(){return[...super.getGroup(),"structured"]}getCustomLayoutOptions(e){let t=e.area.includes("custom-layout");return(0,tq.jsx)(tq.Fragment,{children:!t&&(0,tq.jsxs)(ni.FormKit.Panel,{theme:"card-with-highlight",title:(0,i6.t)("layout-options"),children:[(0,tq.jsx)(ni.Form.Item,{name:"collapsible",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("collapsible")})}),(0,tq.jsx)(ni.Form.Item,{name:"collapsed",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("collapsed")})})]})})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fQ,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableMandatory:!0,disableIndex:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","block")}}var fZ=i(16126);let fY=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),n=ni.Form.useFormInstance(),r=ni.Form.useWatch("cols")??0,a=ni.Form.useWatch("colsFixed")??!1,l=ni.Form.useWatch("columnConfigActivated")??!1,o=ni.Form.useWatch("columnConfig")??[],s=(0,tG.useMemo)(()=>[{id:"key",header:t("key"),accessorKey:"key"},{id:"label",header:t("label"),accessorKey:"label"}],[t]),d=e=>{let t=(0,tI.isArray)(o)?[...o]:[],i=Math.max(0,(0,tI.isNumber)(e)?e:0);if(t.lengthi&&t.splice(i);n.setFieldValue("columnConfig",t)};return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("rows"),name:"rows",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{name:"rowsFixed",children:(0,tq.jsx)(ni.Switch,{labelRight:t("rows-fixed")})}),(0,tq.jsx)(ni.Form.Item,{label:t("cols"),name:"cols",children:(0,tq.jsx)(ni.InputNumber,{min:0,onChange:e=>{l&&!i&&d(Number(e??0))},precision:0})}),(0,tq.jsx)(ni.Form.Item,{name:"colsFixed",children:(0,tq.jsx)(ni.Switch,{labelRight:t("cols-fixed"),onChange:e=>{e||n.setFieldValue("columnConfigActivated",!1)}})}),!i&&a&&(0,tq.jsx)(ni.Form.Item,{name:"columnConfigActivated",children:(0,tq.jsx)(ni.Switch,{labelRight:t("activate-column-configuration"),onChange:e=>{e&&d(r)}})}),!i&&l&&(0,tq.jsx)(ni.Form.Item,{name:"columnConfig",valuePropName:"value",children:(0,tq.jsx)(fZ.H,{columns:s,enableMultipleRowSelection:!1,enableRowSelection:!1,onChange:e=>{n.setFieldValue("columnConfig",e)},value:o,children:(0,tq.jsx)(fZ.H.Grid,{})})}),(0,tq.jsx)(ni.Form.Item,{label:t("data"),name:"data",tooltip:t("table-data-tooltip"),children:(0,tq.jsx)(ni.TextArea,{rows:6})})]})]})};class fX extends dB.v{getIcon(){return{type:"name",value:"table"}}getGroup(){return[...super.getGroup(),"structured"]}getTags(e){return[...super.getTags(e),"encryptedFieldSupport","classificationStore"]}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(fY,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","table")}}let f0=(0,cH.createColumnHelper)(),f1=e=>{let{value:t=[],onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)({}),l=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[f0.accessor("position",{header:e("position"),size:70,meta:{editable:!0,type:"number"}}),f0.accessor("key",{header:e("key"),size:100,meta:{editable:!0,type:"input"}}),f0.accessor("label",{header:e("label"),size:120,meta:{editable:!0,type:"input"}}),f0.accessor("type",{header:e("type"),size:100,meta:{editable:!0,type:"select",config:{options:[{label:e("number"),value:"number"},{label:e("text"),value:"text"},{label:e("bool"),value:"bool"}]}}}),f0.accessor("length",{header:e("length"),size:80,meta:{editable:!0,type:"number"}}),f0.accessor("width",{header:e("width"),size:70,meta:{editable:!0,type:"number"}})],[e])})(),o=Object.values(r).some(Boolean),s=async e=>{let r;if("key"===e.columnId&&((r=String(e.value).trim()).length<=1||null===/^\w+$/.exec(r)||(0,fg.Z)(r)))return void await ig.message.error(`${n("relation-invalid-key-in-columns")}`);let a=[...t];a[e.rowIndex]={...a[e.rowIndex],[e.columnId]:e.value},null==i||i(a)};return(0,tq.jsx)(ni.OperationalGrid,{columns:l,enableRowSelection:!0,enableSorting:!1,onChange:i,onSelectedRowsChange:a,onUpdateCellData:s,selectedRows:r,value:t,children:(0,tq.jsxs)(ni.Space,{direction:"vertical",size:"small",style:{width:"100%"},children:[(0,tq.jsx)(ni.Box,{style:{overflowX:"auto"},children:(0,tq.jsx)(ni.OperationalGrid.Grid,{})}),(0,tq.jsx)(ni.OperationalGrid.Operations,{children:e=>(0,tq.jsxs)(ni.Space,{children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"new-something"},onClick:()=>{e.addRow({position:(t.length>0?Math.max(...t.map(e=>e.position??0)):0)+1,key:"",label:"",type:"text",length:null,width:null})},tooltip:{title:n("add")},type:"default"}),(0,tq.jsx)(ni.IconButton,{disabled:!o,icon:{value:"trash"},onClick:()=>{e.deleteSelectedRows()},tooltip:{title:n("delete")},type:"default"})]})})]})})},f2=(0,cH.createColumnHelper)(),f3=e=>{let{value:t=[],onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)({}),l=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[f2.accessor("position",{header:e("position"),size:70,meta:{editable:!0,type:"number"}}),f2.accessor("key",{header:e("key"),size:120,meta:{editable:!0}}),f2.accessor("label",{header:e("label"),size:160,meta:{editable:!0}})],[e])})(),o=Object.values(r).some(Boolean),s=async e=>{let r;if("key"===e.columnId&&((r=String(e.value).trim()).length<=1||null===/^\w+$/.exec(r)||(0,fg.Z)(r)))return void await ig.message.error(`${n("relation-invalid-key-in-columns")}`);let a=[...t];a[e.rowIndex]={...a[e.rowIndex],[e.columnId]:e.value},null==i||i(a)};return(0,tq.jsx)(ni.OperationalGrid,{columns:l,enableRowSelection:!0,enableSorting:!1,onChange:i,onSelectedRowsChange:a,onUpdateCellData:s,selectedRows:r,value:t,children:(0,tq.jsxs)(ni.Space,{direction:"vertical",size:"small",style:{width:"100%"},children:[(0,tq.jsx)(ni.Box,{style:{overflowX:"auto"},children:(0,tq.jsx)(ni.OperationalGrid.Grid,{})}),(0,tq.jsx)(ni.OperationalGrid.Operations,{children:e=>(0,tq.jsxs)(ni.Space,{children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"new-something"},onClick:()=>{e.addRow({position:(t.length>0?Math.max(...t.map(e=>e.position??0)):0)+1,key:"",label:""})},tooltip:{title:n("add")},type:"default"}),(0,tq.jsx)(ni.IconButton,{disabled:!o,icon:{value:"trash"},onClick:()=>{e.deleteSelectedRows()},tooltip:{title:n("delete")},type:"default"})]})})]})})},f6=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout");return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("label-width"),name:"labelWidth",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("label-first-cell"),name:"labelFirstCell",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("rows"),name:"rows",children:(0,tq.jsx)(f3,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("cols"),name:"cols",children:(0,tq.jsx)(f1,{})})]})]})};class f4 extends dB.v{getIcon(){return{type:"name",value:"structured-table"}}getGroup(){return[...super.getGroup(),"structured"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(f6,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableIndex:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","structuredTable")}}let f5=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),{options:n,isLoading:r}=(()=>{let{data:e,refetch:t,isFetching:i}=(0,cV.useClassFieldCollectionCollectionQuery)();return{options:(0,tG.useMemo)(()=>(null==e?void 0:e.items)===void 0?[]:e.items.map(e=>({label:e.key,value:e.key})),[e]),refetch:t??(()=>{}),isLoading:i}})();return(0,tq.jsxs)(tq.Fragment,{children:[!i&&(0,tq.jsx)(ni.Form.Item,{label:t("allowed-types"),name:"allowedTypes",children:(0,tq.jsx)(ni.Select,{loadingSkeleton:r,mode:"multiple",options:n,showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{name:"lazyLoading",children:(0,tq.jsx)(ni.Switch,{labelRight:t("lazy-loading")})}),(0,tq.jsx)(ni.Form.Item,{label:t("maximum-items"),name:"maxItems",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{name:"disallowAddRemove",children:(0,tq.jsx)(ni.Switch,{labelRight:t("disallow-add-remove")})}),(0,tq.jsx)(ni.Form.Item,{name:"disallowReorder",children:(0,tq.jsx)(ni.Switch,{labelRight:t("disallow-reorder")})})]})};class f7 extends dB.v{getIcon(){return{type:"name",value:"field-collection-field"}}getAllowedChildTags(e){return[...super.getAllowedChildTags(e),"group:layout","group:data"]}getDisallowedRecursiveChildTags(e){return[...super.getDisallowedRecursiveChildTags(e),"fieldcollections"]}getGroup(){return[...super.getGroup(),"structured"]}getCustomLayoutOptions(e){return(0,tq.jsxs)(ni.FormKit.Panel,{theme:"card-with-highlight",title:(0,i6.t)("layout-options"),children:[(0,tq.jsx)(ni.Form.Item,{name:"collapsible",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("collapsible")})}),(0,tq.jsx)(ni.Form.Item,{name:"collapsed",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("collapsed")})}),(0,tq.jsx)(ni.Form.Item,{name:"border",children:(0,tq.jsx)(ni.Switch,{labelRight:(0,i6.t)("border")})})]})}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(f5,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableMandatory:!0,disableIndex:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","fieldcollections")}}let f8=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),{data:n,isFetching:r}=(0,fk.IV)(),a=(0,tG.useMemo)(()=>(null==n?void 0:n.items)===void 0?[]:n.items.map(e=>({label:e.title??e.key,value:e.key})),[n]);return(0,tq.jsxs)(tq.Fragment,{children:[!i&&(0,tq.jsx)(ni.Form.Item,{label:t("maximum-items"),name:"maxItems",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{name:"border",children:(0,tq.jsx)(ni.Switch,{labelRight:t("border")})}),i&&(0,tq.jsx)(ni.Form.Item,{label:t("allowed-types"),name:"allowedTypes",children:(0,tq.jsx)(ni.Select,{loadingSkeleton:r,mode:"multiple",options:a,showSearch:!0})})]})};class f9 extends dB.v{getIcon(){return{type:"name",value:"object-bricks"}}getGroup(){return[...super.getGroup(),"structured"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(f8,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableMandatory:!0,disableIndex:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","objectbricks")}}var ue=i(68710);let ut=e=>{let{t}=(0,iQ.useTranslation)(),i=e.context.area.includes("custom-layout"),{options:n,isLoading:r}=(()=>{let{data:e,refetch:t,isFetching:i}=(0,ue.ZZ)();return{options:(0,tG.useMemo)(()=>(null==e?void 0:e.items)===void 0?[]:e.items.map(e=>({label:e.name,value:e.id})),[e]),refetch:t??(()=>{}),isLoading:i}})();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("label-width"),name:"labelWidth",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),!i&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{name:"localized",children:(0,tq.jsx)(ni.Switch,{labelRight:t("localized")})}),(0,tq.jsx)(ni.Form.Item,{label:t("allowed-group-ids"),name:"allowedGroupIds",children:(0,tq.jsx)(ni.TextArea,{rows:4})}),(0,tq.jsx)(ni.Form.Item,{label:t("maximum-items"),name:"maxItems",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("store"),name:"storeId",children:(0,tq.jsx)(ni.Select,{loadingSkeleton:r,options:n,showSearch:!0})}),(0,tq.jsx)(ni.Form.Item,{name:"hideEmptyData",children:(0,tq.jsx)(ni.Switch,{labelRight:t("hide-empty-data")})}),(0,tq.jsx)(ni.Form.Item,{name:"disallowAddRemove",children:(0,tq.jsx)(ni.Switch,{labelRight:t("disallow-add-remove")})})]})]})};class ui extends dB.v{getIcon(){return{type:"name",value:"classification-store"}}getGroup(){return[...super.getGroup(),"structured"]}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(ut,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return super.getFormFields({...e,hideUnique:!0,disableVisibleGridView:!0,disableVisibleSearch:!0})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","classificationstore")}}let un=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Form.Item,{label:t("title"),name:"title",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("region"),name:"region",children:(0,tq.jsx)(ni.Select,{options:[{label:"",value:""},{label:t("center"),value:"center"},{label:t("north"),value:"north"},{label:t("south"),value:"south"},{label:t("east"),value:"east"},{label:t("west"),value:"west"}]})}),(0,tq.jsx)(ni.Form.Item,{label:t("layout"),name:"layout",children:(0,tq.jsx)(ni.Select,{options:[{label:"",value:""},{label:"fit",value:"fit"}]})}),(0,tq.jsx)(ni.Form.Item,{name:"border",children:(0,tq.jsx)(ni.Switch,{labelRight:t("border")})}),(0,tq.jsx)(ni.Form.Item,{label:t("width"),name:"width",tooltip:t("width-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("height"),name:"height",tooltip:t("height-tooltip"),children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:t("tab-position"),name:"tabPosition",children:(0,tq.jsx)(ni.Select,{options:[{label:t("top"),value:"top"},{label:t("left"),value:"left"},{label:t("right"),value:"right"},{label:t("bottom"),value:"bottom"}]})}),(0,tq.jsx)(ni.Form.Item,{label:t("maximum-tabs"),name:"maxTabs",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("hide-labels-when-tabs-reached"),name:"hideLabelsWhenTabsReached",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("label-width"),name:"labelWidth",children:(0,tq.jsx)(ni.InputNumber,{min:0,precision:0})}),(0,tq.jsx)(ni.Form.Item,{label:t("label-align"),name:"labelAlign",children:(0,tq.jsx)(ni.Select,{options:[{label:t("left"),value:"left"},{label:t("top"),value:"top"}]})}),(0,tq.jsx)(ni.Form.Item,{name:"provideSplitView",children:(0,tq.jsx)(ni.Switch,{labelRight:t("provide-split-view")})})]})};class ur extends dB.v{getIcon(){return{type:"name",value:"translations"}}getAllowedChildTags(e){return[...super.getAllowedChildTags(e),"group:layout","group:data"]}getDisallowedRecursiveChildTags(e){return[...super.getDisallowedRecursiveChildTags(e),"localizedfields"]}getGroup(){return[...super.getGroup(),"structured"]}getDefaultData(){return{...super.getDefaultData(),name:"localizedfields"}}isValid(){return!0}getSpecificFormFields(e){let t=this.getId(e),i=e.fieldDefinitions[t];return(0,tq.jsx)(un,{context:e,id:(null==i?void 0:i.name)??t,type:this.id})}getFormFields(e){return(0,tq.jsx)(ni.FormKit.Panel,{title:(0,i6.t)("specific-settings"),children:this.getSpecificFormFields(e)})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","localizedfields")}}var ua=i(30920),ul=i(14013),uo=i(87106),us=i(3226),ud=i(57982);function uc(e){return[{id:e.key,desc:"DESC"===e.direction}]}function uf(e){if(!(0,tI.isNil)(e)&&0!==e.length)return{key:e[0].id,direction:e[0].desc?"DESC":"ASC"}}let uu=e=>{let{data:t,providerKey:i,onSortingChange:n,...r}=e,{t:a}=(0,iQ.useTranslation)(),[l,o]=(0,tG.useState)({key:"id",direction:"ASC"}),s=(0,cH.createColumnHelper)(),d=[s.accessor("type",{header:a("gdpr-extractor.data-objects.table.field.type"),meta:{type:"element-subtype-icon",config:{elementType:dl.elementTypes.dataObject}},size:60}),s.accessor("id",{header:a("gdpr-extractor.data-objects.table.field.id"),size:80}),s.accessor("fullPath",{header:a("gdpr-extractor.data-objects.table.field.fullPath"),meta:{editable:!1,autoWidth:!0,type:"element",config:{allowedTypes:["asset","document","object"],showPublishedState:!0,expectsStringValue:!0,allowTextInput:!0}}}),s.accessor("className",{header:a("gdpr-extractor.data-objects.table.field.className")}),s.accessor("actions",{header:a("gdpr-extractor.table.field.actions"),size:100,enableSorting:!1,cell:e=>{let{row:t}=e,n=t.original;return(0,tq.jsxs)(ap.s,{children:[(0,tq.jsx)(us.N,{"data-testid":`gdpr-data-objects-export-${n.id}`,id:n.id,providerKey:i,tooltip:{title:a("gdpr-extractor.data-objects.table.actions.export")}}),(0,tq.jsx)(ud.z,{"data-testid":`gdpr-data-objects-open-${n.id}`,elementType:dl.elementTypes.dataObject,id:n.id,tooltip:{title:a("gdpr-extractor.data-objects.table.actions.open")}}),(0,tq.jsx)(uo.e,{"data-testid":`gdpr-data-objects-delete-${n.id}`,disabled:!n.__gdprIsDeletable,elementType:dl.elementTypes.dataObject,id:n.id,label:n.fullPath,providerKey:i,tooltip:{title:a("gdpr-extractor.data-objects.table.actions.delete")}})]})}})];return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:d,data:t.map(e=>e.data),dataTestId:"gdpr-data-objects-grid",enableSorting:!0,onSortingChange:e=>{let t=uf(e);o(t),null==n||n(t)},sorting:uc(l),...r})};var um=i(87434);class up extends um.A{getTabContent(e){return(0,tq.jsx)(uu,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","data_objects")}}let ug=e=>{let{id:t,filename:i,onClick:n,...r}=e;return(0,tq.jsx)(ni.IconButton,{...r,icon:{value:"export"},onClick:e=>{let r=i.trim().replaceAll(/[\s\\/:*?"<>|]+/g,"_"),a=`${(0,tD.$)()}/gdpr/export-data/${t}?providerKey=assets`,l=document.createElement("a");l.href=a,l.download=`${r}.zip`,document.body.appendChild(l),l.click(),l.remove(),null==n||n(e)}})},uh=e=>{let{data:t,providerKey:i,onSortingChange:n,...r}=e,{t:a}=(0,iQ.useTranslation)(),[l,o]=(0,tG.useState)({key:"id",direction:"ASC"}),s=(0,cH.createColumnHelper)(),d=[s.accessor("type",{header:a("gdpr-extractor.assets.table.field.type"),meta:{type:"element-subtype-icon",config:{elementType:sE.W.asset}},size:60}),s.accessor("id",{header:a("gdpr-extractor.assets.table.field.id"),size:80}),s.accessor("fullPath",{header:a("gdpr-extractor.assets.table.field.fullPath"),meta:{editable:!1,autoWidth:!0,type:"element",config:{allowedTypes:["asset","document","object"],showPublishedState:!0,expectsStringValue:!0,allowTextInput:!0}}}),s.accessor("subType",{header:a("gdpr-extractor.assets.table.field.subType")}),s.accessor("actions",{header:a("gdpr-extractor.table.field.actions"),size:100,enableSorting:!1,cell:e=>{let{row:t}=e,n=t.original;return(0,tq.jsxs)(ap.s,{children:[(0,tq.jsx)(ug,{"data-testid":`gdpr-assets-export-${n.id}`,filename:n.fullPath.split("/").pop()??`asset-${n.id}`,id:n.id,tooltip:{title:a("gdpr-extractor.assets.table.actions.export")}}),(0,tq.jsx)(ud.z,{"data-testid":`gdpr-assets-open-${n.id}`,elementType:sE.W.asset,id:n.id,tooltip:{title:a("gdpr-extractor.assets.table.actions.open")}}),(0,tq.jsx)(uo.e,{"data-testid":`gdpr-assets-delete-${n.id}`,disabled:!n.__gdprIsDeletable,elementType:sE.W.asset,id:n.id,label:n.fullPath,providerKey:i,tooltip:{title:a("gdpr-extractor.assets.table.actions.delete")}})]})}})];return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:d,data:t.map(e=>e.data),dataTestId:"gdpr-assets-grid",enableSorting:!0,onSortingChange:e=>{let t=uf(e);o(t),null==n||n(t)},sorting:uc(l),...r})};class uy extends um.A{getTabContent(e){return(0,tq.jsx)(uh,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","assets")}}var uv=i(86818),ub=i(28792),ux=i(29124),uj=i(18613),uw=i(26777),uk=i(41630),uT=i(53996);let uS=e=>{let{id:t,label:i,providerKey:n,onClick:r,onFinish:a,...l}=e,{deleteUser:o,isLoading:s}=(()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,aB.Vl)(),[i,n]=(0,tG.useState)(!1),[r]=(0,ux.rW)(),a=async(e,t)=>{let i=r({id:e});try{let e=await i;(0,tI.isUndefined)(e.error)||(0,ub.A)(new uj.ApiError(e.error)),null==t||t()}catch{(0,ub.A)(new uv.A("Error deleting user"))}};return{deleteUser:(i,r,l)=>{t.confirm({title:e("user-management.remove-user"),content:(0,tq.jsx)("span",{children:e("user-management.remove-user.text",{name:r})}),okText:e("element.delete.confirmation.ok"),onOk:async()=>{n(!0);try{await a(i,l),null==l||l()}catch(e){(0,ub.A)(new uv.A(e.message))}finally{n(!1)}}})},deleteUserMutation:a,isLoading:i}})(),d=(0,uk.jL)();return(0,tq.jsx)(ni.IconButton,{...l,icon:{value:"trash"},loading:s,onClick:e=>{o(t,i,()=>{d(uw.FH.util.invalidateTags(uT.qN.GDPR_DATA(n)))}),null==r||r(e)}})},uC=e=>{let{data:t,providerKey:i,refresh:n,onSortingChange:r,...a}=e,{t:l}=(0,iQ.useTranslation)(),[o,s]=(0,tG.useState)({key:"id",direction:"ASC"}),d=(0,cH.createColumnHelper)(),c=[d.accessor("id",{header:l("gdpr-extractor.users.table.field.id"),size:80}),d.accessor("name",{header:l("gdpr-extractor.users.table.field.name")}),d.accessor("firstname",{header:l("gdpr-extractor.users.table.field.firstname")}),d.accessor("lastname",{header:l("gdpr-extractor.users.table.field.lastname")}),d.accessor("email",{header:l("gdpr-extractor.users.table.field.email")}),d.accessor("actions",{header:l("gdpr-extractor.table.field.actions"),size:60,enableSorting:!1,cell:e=>{let{row:t}=e,n=t.original;return(0,tq.jsxs)(ap.s,{children:[(0,tq.jsx)(us.N,{"data-testid":`gdpr-users-export-${n.id}`,id:n.id,providerKey:i,tooltip:{title:l("gdpr-extractor.users.table.actions.export")}}),(0,tq.jsx)(uS,{"data-testid":`gdpr-users-delete-${n.id}`,disabled:!n.__gdprIsDeletable,id:n.id,label:n.firstname+" "+n.lastname,providerKey:i,tooltip:{title:l("gdpr-extractor.users.table.actions.delete")}})]})}})];return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:c,data:t.map(e=>e.data),dataTestId:"gdpr-users-grid",enableSorting:!0,onSortingChange:e=>{let t=uf(e);s(t),null==r||r(t)},sorting:uc(o),...a})};class uD extends um.A{getTabContent(e){return(0,tq.jsx)(uC,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","pimcore_users")}}var uI=i(50174),uM=i(48250);let uL=()=>{let e=(0,aB.Vl)(),{t}=(0,iQ.useTranslation)(),i=(0,uk.jL)(),[n]=(0,uM.Iq)(),[r]=(0,uM.a4)(),[a]=(0,uw.e1)(),{success:l}=(0,uI.J)(),o=async(e,i)=>{let r=n({id:e});try{let e=await r;(0,tI.isUndefined)(e.error)||(0,iX.Ay)(new iX.hD(e.error)),null==i||i(),l(t("email-log.resend.email.success"))}catch(e){(0,iX.Ay)(new iX.$g("Failed to resend email"))}},s=async(e,n)=>{let r=a({id:e});try{let e=await r;(0,tI.isUndefined)(e.error)||(0,iX.Ay)(new iX.hD(e.error)),i(uw.FH.util.invalidateTags(uT.qN.EMAIL_LOG())),null==n||n(),l(t("email-log.delete.email.success"))}catch(e){(0,iX.Ay)(new iX.$g("Failed to delete email"))}};return{resendWithConfirmation:(i,n)=>{e.confirm({title:t("email-log.resend.confirmation.title"),content:(0,tq.jsxs)("span",{children:[t("email-log.resend.confirmation.text")," "]}),okText:t("email-log.resend.confirmation.ok"),onOk:async()=>{await o(i,()=>{null==n||n()})}})},resend:o,forward:async(e,i,n)=>{let a=r({id:e,emailAddressParameter:{email:i}});try{let e=await a;(0,tI.isUndefined)(e.error)||(0,iX.Ay)(new iX.hD(e.error)),null==n||n(),l(t("email-log.forward.email.success"))}catch(e){(0,iX.Ay)(new iX.$g("Failed to forward email"))}},remove:s,removeWithConfirmation:(i,n)=>{e.confirm({title:t("element.delete.confirmation.title"),content:(0,tq.jsxs)("span",{children:[t("element.delete.confirmation.text")," "]}),okText:t("element.delete.confirmation.ok"),onOk:async()=>{await s(i,()=>{null==n||n()})}})}}},uF=e=>{let{id:t,providerKey:i,label:n,onClick:r,...a}=e,{removeWithConfirmation:l}=uL(),[o,s]=(0,tG.useState)(!1),d=(0,uk.jL)();return(0,tq.jsx)(ni.IconButton,{...a,icon:{value:"trash"},loading:o||a.loading,onClick:e=>{s(!0),l(t,()=>{d(uw.FH.util.invalidateTags(uT.qN.EMAIL_LOG())),d(uw.FH.util.invalidateTags(uT.qN.GDPR_DATA(i)))}),null==r||r(e)}})};var uE=i(39808);let uP=e=>{let{id:t}=e,{t:i}=(0,iQ.useTranslation)(),{data:n,isLoading:r}=(0,uM.A3)({id:t}),a=(0,cH.createColumnHelper)(),l=[a.accessor("name",{header:i("widget.email-log.grid.name")}),a.accessor("computedValue",{id:"computedValue",header:i("widget.email-log.grid.value"),meta:{editable:!1},cell:e=>{let t=e.row.original;return(0,tq.jsx)(ni.DefaultCell,{...(0,ni.addColumnMeta)(e,{type:(0,tI.isNil)(t.objectData)?"text":"element"})})}})],o=((null==n?void 0:n.data)??[]).map(e=>{let t;return(0,tI.isNil)(e.objectData)||(t={...e.objectData,fullPath:e.objectData.path}),{...e,computedValue:t??e.value}});return(0,tq.jsx)(uE.U,{loading:r,none:(0,tI.isUndefined)(null==n?void 0:n.data)||0===n.data.length,children:(0,tq.jsx)(ul.x,{autoWidth:!0,columns:l,data:o})})},uA=e=>{let{id:t,onClick:i,...n}=e,{t:r}=(0,iQ.useTranslation)(),[a,l]=(0,tG.useState)(!1);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.IconButton,{...n,icon:{value:"expand-01"},onClick:e=>{l(!0),null==i||i(e)}}),(0,tq.jsx)(ni.Modal,{onCancel:()=>{l(!1)},onOk:()=>{l(!1)},open:a,size:"L",title:(0,tq.jsx)(ni.ModalTitle,{children:r("widget.email-log.tab.parameters")}),children:(0,tq.jsx)(uP,{id:t})})]})},uN=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{iframe:i` - border: none; - `}}),uR=e=>{let{id:t,height:i=650}=e,{t:n}=(0,iQ.useTranslation)(),{styles:r}=uN(),{data:a,isLoading:l}=(0,uM.LZ)({id:t});return(0,tq.jsx)(uE.U,{loading:l,none:(0,tI.isUndefined)(null==a?void 0:a.data)||0===a.data.length,children:(0,tq.jsx)("iframe",{className:r.iframe,height:i,sandbox:"",srcDoc:(null==a?void 0:a.data)??"",title:n("aria.email-log.html.preview")})})},uV=e=>{let{id:t,onClick:i,...n}=e,{t:r}=(0,iQ.useTranslation)(),[a,l]=(0,tG.useState)(!1);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.IconButton,{...n,icon:{value:"code"},onClick:e=>{l(!0),null==i||i(e)}}),(0,tq.jsx)(ni.Modal,{onCancel:()=>{l(!1)},onOk:()=>{l(!1)},open:a,size:"L",title:(0,tq.jsx)(ni.ModalTitle,{children:r("email-log.html.preview")}),children:(0,tq.jsx)(uR,{height:550,id:t})})]})},uz=e=>{let{data:t,providerKey:i,onSortingChange:n,...r}=e,{t:a}=(0,iQ.useTranslation)(),[l,o]=(0,tG.useState)({key:"sentDate",direction:"ASC"}),s=(0,cH.createColumnHelper)(),d=[s.accessor("sentDate",{header:a("gdpr-extractor.emails.table.field.sentDate"),meta:{type:"datetime",config:{showTime:!0}}}),s.accessor("from",{header:a("gdpr-extractor.emails.table.field.from")}),s.accessor("to",{header:a("gdpr-extractor.emails.table.field.to")}),s.accessor("cc",{header:a("gdpr-extractor.emails.table.field.cc")}),s.accessor("bcc",{header:a("gdpr-extractor.emails.table.field.bcc")}),s.accessor("subject",{header:a("gdpr-extractor.emails.table.field.subject")}),s.display({id:"actions",header:a("gdpr-extractor.table.field.actions"),size:120,enableSorting:!1,cell:e=>{let{row:t}=e,n=t.original;return(0,tq.jsxs)(ap.s,{align:"center",children:[(0,tq.jsx)(uV,{"data-testid":`gdpr-emails-preview-${n.id}`,disabled:!n.hasHtmlLog,id:n.id,tooltip:{title:a("gdpr-extractor.emails.table.actions.html")}}),(0,tq.jsx)(uA,{"data-testid":`gdpr-emails-parameters-${n.id}`,disabled:!n.hasParameters,id:n.id,tooltip:{title:a("gdpr-extractor.emails.table.actions.parameters")}}),(0,tq.jsx)(us.N,{"data-testid":`gdpr-emails-export-${n.id}`,id:n.id,providerKey:i,tooltip:{title:a("gdpr-extractor.emails.table.actions.export")}}),(0,tq.jsx)(uF,{"data-testid":`gdpr-emails-delete-${n.id}`,disabled:!n.__gdprIsDeletable,id:n.id,label:n.subject??n.from,providerKey:i,tooltip:{title:a("email-log.tooltip.delete")}})]})}})];return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:d,data:t.map(e=>e.data),dataTestId:"gdpr-emails-grid",enableSorting:!0,onSortingChange:e=>{let t=uf(e);o(t),null==n||n(t)},sorting:uc(l),...r})};class uB extends um.A{getTabContent(e){return(0,tq.jsx)(uz,{...e})}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","sent_mails")}}class uO extends tA.P{registerDynamicType(e){super.registerDynamicType(e)}overrideDynamicType(e){super.overrideDynamicType(e)}}uO.SERVICE_ID="image-thumbnails.transformation-dynamic-type-registry",uO=(0,tw.Cg)([(0,tk.injectable)()],uO);var uK=i(17094);class u_ extends uK.u{adaptTransformationTypes(){this.transformationRegistry.getDynamicTypes().forEach(e=>{let t=e.getReactComponent(),i={type:e.getId(),key:e.getId(),translationKey:e.getLabel(),component:tU().createElement(t)};this.register(i)})}getItemByType(e){let t=super.getItemByType(e);return void 0===t&&(0,iX.Ay)(new iX.$g(`No registry item found for type "${e}"`)),t}getTransformationRegistry(){return this.transformationRegistry}constructor(e){super(),this.transformationRegistry=e,this.adaptTransformationTypes()}}let uH=(0,tk.injectable)()(eO=class extends tA.Q{getId(){return this.id}getSummary(e){return this.getLabel()}async configureTransformation(e){return await Promise.resolve(e??this.createDefaultConfig())}createDefaultConfig(){return{}}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id",void 0)}})||eO,u$=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,tG.useMemo)(()=>[{value:"center",label:e("image-thumbnails.transformations.cover.positioning-center")},{value:"topleft",label:e("image-thumbnails.transformations.cover.positioning-topleft")},{value:"topright",label:e("image-thumbnails.transformations.cover.positioning-topright")},{value:"bottomleft",label:e("image-thumbnails.transformations.cover.positioning-bottomleft")},{value:"bottomright",label:e("image-thumbnails.transformations.cover.positioning-bottomright")}],[e]);return(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:e("image-thumbnails.transformations.cover.width"),name:"width",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("image-thumbnails.transformations.cover.height"),name:"height",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)("p",{style:{margin:0},children:e("image-thumbnails.transformations.cover.focal-point-info")}),(0,tq.jsx)(tJ.lV.Item,{initialValue:"center",label:e("image-thumbnails.transformations.cover.positioning"),name:"positioning",children:(0,tq.jsx)(t8.l,{options:t})}),(0,tq.jsx)(tJ.lV.Item,{label:e("image-thumbnails.transformations.cover.force-resize"),name:"forceResize",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{})})]})};u$.displayName="CoverTransformationComponent";let uW=(0,tk.injectable)()(eK=class extends uH{getLabel(){return"Cover (Focal Point Support)"}getSummary(e){return`Cover (Focal Point Support) ${e.width??"?"}x${e.height??"?"}`}getReactComponent(){return u$}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","cover")}})||eK,uq=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Width",name:"width",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{label:"Height",name:"height",children:(0,tq.jsx)(df.Y,{})})]});uq.displayName="ResizeTransformationComponent";let uG=(0,tk.injectable)()(e_=class extends uH{getLabel(){return"Resize"}getSummary(e){return`Resize ${e.width??"?"}x${e.height??"?"}`}getReactComponent(){return uq}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","resize")}})||e_,uU=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{initialValue:800,label:"Width",name:"width",children:(0,tq.jsx)(df.Y,{placeholder:"800"})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:!1,label:"Force Resize",name:"forceResize",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{})})]});uU.displayName="ScaleByWidthTransformationComponent";let uQ=(0,tk.injectable)()(eH=class extends uH{getLabel(){return"Scale by Width"}getSummary(e){return`Scale by Width ${e.width??"?"}px`}getReactComponent(){return uU}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","scaleByWidth")}})||eH,uJ=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{initialValue:600,label:"Height",name:"height",children:(0,tq.jsx)(df.Y,{placeholder:"600"})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:!1,label:"Force Resize",name:"forceResize",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{})})]});uJ.displayName="ScaleByHeightTransformationComponent";let uZ=(0,tk.injectable)()(e$=class extends uH{getLabel(){return"Scale by Height"}getSummary(e){return`Scale by Height ${e.height??"?"}px`}getReactComponent(){return uJ}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","scaleByHeight")}})||e$,uY=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{initialValue:0,label:"Tolerance",name:"tolerance",children:(0,tq.jsx)(df.Y,{})})});uY.displayName="TrimTransformationComponent";let uX=(0,tk.injectable)()(eW=class extends uH{getLabel(){return"Trim (Imagick)"}getSummary(e){return`Trim (Imagick) (tolerance: ${e.tolerance??"not set"})`}getReactComponent(){return uY}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","trim")}})||eW,u0=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsx)("div",{style:{padding:"8px 12px"},children:e("image-thumbnails.transformations.no-configuration-required")})},u1=(0,tk.injectable)()(eq=class extends uH{getLabel(){return"Sepia"}createDefaultConfig(){return{}}getReactComponent(){return u0}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","sepia")}})||eq,u2=(0,tk.injectable)()(eG=class extends uH{getLabel(){return"Grayscale"}createDefaultConfig(){return{}}getReactComponent(){return u0}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","grayscale")}})||eG,u3=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{initialValue:0,label:"Radius",name:"radius",children:(0,tq.jsx)(df.Y,{step:.1})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:1,label:"Sigma",name:"sigma",children:(0,tq.jsx)(df.Y,{step:.1})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:1,label:"Amount",name:"amount",children:(0,tq.jsx)(df.Y,{step:.1})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:.05,label:"Threshold",name:"threshold",children:(0,tq.jsx)(df.Y,{step:.01})})]});u3.displayName="SharpenTransformationComponent";let u6=(0,tk.injectable)()(eU=class extends uH{getLabel(){return"Sharpen (Imagick)"}getReactComponent(){return u3}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","sharpen")}})||eU,u4=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Width",name:"width",children:(0,tq.jsx)(df.Y,{placeholder:"Enter width value"})}),(0,tq.jsx)(tJ.lV.Item,{label:"Height",name:"height",children:(0,tq.jsx)(df.Y,{placeholder:"Enter height value"})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:!1,label:"Force Resize",name:"forceResize",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{})})]});u4.displayName="ContainTransformationComponent";let u5=(0,tk.injectable)()(eQ=class extends uH{getLabel(){return"Contain"}getSummary(e){return`Contain ${e.width??"?"}x${e.height??"?"}`}getReactComponent(){return u4}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","contain")}})||eQ,u7=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Width",name:"width",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{label:"Height",name:"height",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:0,label:"X",name:"x",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:0,label:"Y",name:"y",children:(0,tq.jsx)(df.Y,{})})]}),u8=(0,tk.injectable)()(eJ=class extends uH{getLabel(){return"Crop"}getSummary(e){return`Crop ${e.width??"?"}x${e.height??"?"}`}getReactComponent(){return u7}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","crop")}})||eJ,u9=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Width",name:"width",children:(0,tq.jsx)(df.Y,{placeholder:"Enter frame width"})}),(0,tq.jsx)(tJ.lV.Item,{label:"Height",name:"height",children:(0,tq.jsx)(df.Y,{placeholder:"Enter frame height"})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:!1,label:"Force Resize",name:"forceResize",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{})})]}),me=(0,tk.injectable)()(eZ=class extends uH{getLabel(){return"Frame"}getSummary(e){return`Frame ${e.width??"?"}x${e.height??"?"}`}createDefaultConfig(){return{width:100,height:100,forceResize:!1}}getReactComponent(){return u9}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","frame")}})||eZ,mt=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{label:"Angle",name:"angle",children:(0,tq.jsx)(df.Y,{})})}),mi=(0,tk.injectable)()(eY=class extends uH{getLabel(){return"Rotate"}getSummary(e){return`Rotate ${e.angle??"?"}\xb0`}createDefaultConfig(){return{angle:90}}getReactComponent(){return mt}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","rotate")}})||eY,mn=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{initialValue:"horizontal",label:"Mode",name:"mode",children:(0,tq.jsx)(t8.l,{options:[{value:"horizontal",label:"Horizontal"},{value:"vertical",label:"Vertical"}]})})}),mr=(0,tk.injectable)()(eX=class extends uH{getLabel(){return"Mirror"}getSummary(e){return`Mirror ${e.mode??"horizontal"}`}getReactComponent(){return mn}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","mirror")}})||eX,ma=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{initialValue:0,label:e("image-thumbnails.transformations.gaussian-blur.radius"),name:"radius",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:1,label:e("image-thumbnails.transformations.gaussian-blur.sigma"),name:"sigma",children:(0,tq.jsx)(df.Y,{})})]})},ml=(0,tk.injectable)()(e0=class extends uH{getLabel(){return"Gaussian Blur"}getSummary(e){return`Gaussian Blur (radius: ${e.radius??"?"}, sigma: ${e.sigma??"?"})`}getReactComponent(){return ma}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","gaussianBlur")}})||e0,mo=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{initialValue:100,label:"Brightness",name:"brightness",children:(0,tq.jsx)(df.Y,{max:200,min:0})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:100,label:"Saturation",name:"saturation",children:(0,tq.jsx)(df.Y,{max:200,min:0})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:100,label:"Hue",name:"hue",children:(0,tq.jsx)(df.Y,{max:200,min:0})})]}),ms=(0,tk.injectable)()(e1=class extends uH{getLabel(){return"Brightness / Saturation / Hue (Imagick)"}getSummary(e){return`Brightness / Saturation / Hue (Imagick) (${e.brightness??100}%, ${e.saturation??100}%, ${e.hue??100}%)`}createDefaultConfig(){return{brightness:100,saturation:100,hue:100}}getReactComponent(){return mo}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","brightnessSaturation")}})||e1;var md=i(43748);let mc=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{initialValue:"#ffffff",label:"Background Color",name:"color",children:(0,tq.jsx)(md.s,{format:"hex",showText:!0})})});mc.displayName="SetBackgroundColorTransformationComponent";let mf=(0,tk.injectable)()(e2=class extends uH{getLabel(){return"Set Background Color"}getSummary(e){return`Background Color: ${e.color??"#ffffff"}`}getReactComponent(){return mc}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","setBackgroundColor")}})||e2;var mu=i(9199);let mm=(0,iR.createStyles)(e=>{let{token:t}=e;return{imagePicker:(0,iR.css)` - & .ant-card-body { - padding: 0 - } - `,icon:(0,iR.css)` - color: ${t.colorIcon}; - `}});var mp=i(25020);let mg=e=>{let t=e.value??null,i=e.allowedTypes??["image"],{t:n}=(0,iv.useTranslation)(),{styles:r}=mm(),a=null!==t?{type:t.type,id:t.id,fullpath:t.fullPath}:null,l=(0,r7.x)(e.width,300),o=(0,r7.x)(e.height,150);return(0,tq.jsxs)(ni.Flex,{gap:"mini",vertical:!0,children:[!(0,tI.isUndefined)(e.description)&&(0,tq.jsxs)(ni.Space,{size:"mini",children:[(0,tq.jsx)(ni.Icon,{className:r.icon,options:{height:16,width:16},value:"drop-target"}),(0,tq.jsx)(ni.Text,{type:"secondary",children:n(e.description)})]}),(0,tq.jsx)(f_.Z,{className:lx()("max-w-full",r.imagePicker,e.className),fitContent:!0,footer:(0,tq.jsx)(mp.v,{disabled:e.disabled,emptyValue:()=>{var t;null==(t=e.onChange)||t.call(e,null)},setValue:t=>{var i,n;null===t?null==(i=e.onChange)||i.call(e,null):null==(n=e.onChange)||n.call(e,{type:t.type,id:t.id,fullPath:t.fullpath??""})},value:a},"image-picker-footer"),children:(0,tq.jsx)(lM.g,{isValidContext:t=>!0!==e.disabled,isValidData:e=>"asset"===e.type&&i.includes(String(e.data.type)),onDrop:t=>{var i;null==(i=e.onChange)||i.call(e,{type:"asset",id:Number(t.data.id),fullPath:String(t.data.fullPath)})},variant:"outline",children:null!==t?(0,tq.jsx)(mu.k,{assetId:null==t?void 0:t.id,height:o,width:l}):(0,tq.jsx)(lI.C,{addIcon:!0!==e.disabled&&"add"===e.type,dndIcon:!0!==e.disabled,height:o,title:n(!0!==e.disabled?"image.dnd-target":"empty"),uploadIcon:!0!==e.disabled&&"upload"===e.type,width:l})})})]})},mh=[{value:"",label:"fit"},{value:"cropTopLeft",label:"cropTopLeft"},{value:"asTexture",label:"asTexture"}],my=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Background Image",name:"asset",children:(0,tq.jsx)(mg,{allowedTypes:["image"],height:150,type:"add",width:300})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:"",label:"Mode",name:"mode",children:(0,tq.jsx)(t8.l,{options:mh})})]});my.displayName="SetBackgroundImageTransformationComponent";let mv=(0,tk.injectable)()(e3=class extends uH{getLabel(){return"Set Background Image"}getSummary(e){let t=null==e.path?"":` (${e.path})`;return`Background Image${t}`}getReactComponent(){return my}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","setBackgroundImage")}})||e3,mb=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Width",name:"width",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{label:"Height",name:"height",children:(0,tq.jsx)(df.Y,{})})]});mb.displayName="RoundCornersTransformationComponent";let mx=(0,tk.injectable)()(e6=class extends uH{getLabel(){return"Round Corners (Imagick)"}getSummary(e){return`Round Corners (Imagick) ${e.width??"?"}x${e.height??"?"}px`}getReactComponent(){return mb}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","roundCorners")}})||e6,mj=[{value:"COMPOSITE_DEFAULT",label:"COMPOSITE_DEFAULT"},{value:"COMPOSITE_EXCLUSION",label:"COMPOSITE_EXCLUSION"},{value:"COMPOSITE_HARDLIGHT",label:"COMPOSITE_HARDLIGHT"}],mw=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,tG.useMemo)(()=>[{value:"top-left",label:e("image-thumbnails.transformations.add-overlay.origin-top-left")},{value:"top-right",label:e("image-thumbnails.transformations.add-overlay.origin-top-right")},{value:"center",label:e("image-thumbnails.transformations.add-overlay.origin-center")},{value:"bottom-left",label:e("image-thumbnails.transformations.add-overlay.origin-bottom-left")},{value:"bottom-right",label:e("image-thumbnails.transformations.add-overlay.origin-bottom-right")}],[e]);return(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:e("image-thumbnails.transformations.add-overlay.overlay-image"),name:"asset",children:(0,tq.jsx)(mg,{allowedTypes:["image"],height:150,type:"add",width:300})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:0,label:e("image-thumbnails.transformations.add-overlay.x"),name:"x",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:0,label:e("image-thumbnails.transformations.add-overlay.y"),name:"y",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:"top-left",label:e("image-thumbnails.transformations.add-overlay.origin"),name:"origin",children:(0,tq.jsx)(t8.l,{options:t})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:100,label:e("image-thumbnails.transformations.add-overlay.alpha"),name:"alpha",children:(0,tq.jsx)(df.Y,{max:100,min:0})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:"COMPOSITE_DEFAULT",label:e("image-thumbnails.transformations.add-overlay.composite"),name:"composite",children:(0,tq.jsx)(t8.l,{options:mj})})]})};mw.displayName="AddOverlayTransformationComponent";let mk=(0,tk.injectable)()(e4=class extends uH{getLabel(){return"Add Overlay (Imagick)"}getSummary(e){let t=null==e.path?"":` (${e.path})`;return`Add Overlay (Imagick)${t} at ${e.origin??"top-left"}`}getReactComponent(){return mw}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","addOverlay")}})||e4,mT=[{value:"COMPOSITE_DEFAULT",label:"COMPOSITE_DEFAULT"},{value:"COMPOSITE_EXCLUSION",label:"COMPOSITE_EXCLUSION"},{value:"COMPOSITE_HARDLIGHT",label:"COMPOSITE_HARDLIGHT"}],mS=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Overlay Image",name:"asset",children:(0,tq.jsx)(mg,{allowedTypes:["image"],height:150,type:"add",width:300})}),(0,tq.jsx)(tJ.lV.Item,{initialValue:"COMPOSITE_DEFAULT",label:"Composite",name:"composite",children:(0,tq.jsx)(t8.l,{options:mT})})]});mS.displayName="AddOverlayFitTransformationComponent";let mC=(0,tk.injectable)()(e5=class extends uH{getLabel(){return"Add Overlay Fit (Imagick)"}getSummary(e){let t=null==e.path?"":` (${e.path})`;return`Add Overlay Fit (Imagick)${t}`}getReactComponent(){return mS}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","addOverlayFit")}})||e5,mD=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{label:"Mask Image",name:"asset",children:(0,tq.jsx)(mg,{allowedTypes:["image"],height:150,type:"add",width:300})})});mD.displayName="ApplyMaskTransformationComponent";let mI=(0,tk.injectable)()(e7=class extends uH{getLabel(){return"Apply Mask (Imagick)"}getSummary(e){let t=null==e.path?"":` (${e.path})`;return`Apply Mask (Imagick)${t}`}getReactComponent(){return mD}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","applyMask")}})||e7,mM=()=>(0,tq.jsx)("div",{style:{padding:"8px 12px"},children:"Use original TIFF when source format is a TIFF Image -> do not modify it."});mM.displayName="TiffOriginalTransformationComponent";let mL=(0,tk.injectable)()(e8=class extends uH{getLabel(){return"Use original TIFF (only PRINT)"}createDefaultConfig(){return{}}getReactComponent(){return mM}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","tifforiginal")}})||e8,mF=()=>(0,tq.jsx)("div",{style:{padding:"8px 12px"},children:"Just returns a 1x1 pixel GIF base64 encoded, in case you don't want to display an image for a certain condition."});mF.displayName="OnePixelTransformationComponent";let mE=(0,tk.injectable)()(e9=class extends uH{getLabel(){return"1x1 Pixel Placeholder"}createDefaultConfig(){return{}}getReactComponent(){return mF}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","1x1_pixel")}})||e9;class mP extends tA.P{registerDynamicType(e){super.registerDynamicType(e)}overrideDynamicType(e){super.overrideDynamicType(e)}}mP.SERVICE_ID="video-thumbnails.transformation-dynamic-type-registry",mP=(0,tw.Cg)([(0,tk.injectable)()],mP);class mA extends uK.u{adaptTransformationTypes(){this.transformationRegistry.getDynamicTypes().forEach(e=>{let t=e.getReactComponent(),i={type:e.getId(),key:e.getId(),translationKey:e.getLabel(),component:tU().createElement(t)};this.register(i)})}getItemByType(e){let t=super.getItemByType(e);return void 0===t&&(0,iX.Ay)(new iX.$g(`No registry item found for type "${e}"`)),t}getTransformationRegistry(){return this.transformationRegistry}constructor(e){super(),this.transformationRegistry=e,this.adaptTransformationTypes()}}let mN=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:e("video-thumbnails.transformations.resize.width"),name:"width",children:(0,tq.jsx)(df.Y,{})}),(0,tq.jsx)(tJ.lV.Item,{extra:e("video-thumbnails.transformations.resize.even-number-hint"),label:e("video-thumbnails.transformations.resize.height"),name:"height",children:(0,tq.jsx)(df.Y,{})})]})};mN.displayName="ResizeVideoTransformationComponent";let mR=(0,tk.injectable)()(te=class extends uH{getLabel(){return"Resize"}getSummary(e){return`Resize ${e.width??"?"}x${e.height??"?"}`}createDefaultConfig(){return{}}getReactComponent(){return mN}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","resize")}})||te,mV=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{label:"Width",name:"width",children:(0,tq.jsx)(df.Y,{})})});mV.displayName="ScaleByWidthVideoTransformationComponent";let mz=(0,tk.injectable)()(tt=class extends uH{getLabel(){return"Scale by Width"}getSummary(e){return`Scale by Width ${e.width??"?"}`}createDefaultConfig(){return{}}getReactComponent(){return mV}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","scaleByWidth")}})||tt,mB=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{label:"Height",name:"height",children:(0,tq.jsx)(df.Y,{})})});mB.displayName="ScaleByHeightVideoTransformationComponent";let mO=(0,tk.injectable)()(ti=class extends uH{getLabel(){return"Scale by Height"}getSummary(e){return`Scale by Height ${e.height??"?"}`}createDefaultConfig(){return{}}getReactComponent(){return mB}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","scaleByHeight")}})||ti,mK=()=>(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:"Start",name:"start",children:(0,tq.jsx)(aR.p,{placeholder:"HH:MM:SS.MS"})}),(0,tq.jsx)(tJ.lV.Item,{label:"Duration",name:"duration",children:(0,tq.jsx)(aR.p,{placeholder:"HH:MM:SS.MS"})})]});mK.displayName="CutVideoTransformationComponent";let m_=(0,tk.injectable)()(tn=class extends uH{getLabel(){return"Cut"}getSummary(e){return`Cut from ${e.start??"00:00:00"} (${e.duration??"00:00:00"})`}createDefaultConfig(){return{start:"00:00:00",duration:"00:00:00"}}getReactComponent(){return mK}constructor(...e){super(...e),function(e,t){var i;(t="symbol"==typeof(i=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?i:i+"")in e?Object.defineProperty(e,t,{value:"cut",enumerable:!0,configurable:!0,writable:!0}):e[t]="cut"}(this,"id")}})||tn,mH=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{label:"FPS",name:"fps",children:(0,tq.jsx)(df.Y,{max:60,min:1})})});mH.displayName="SetFramerateVideoTransformationComponent";let m$=(0,tk.injectable)()(tr=class extends uH{getLabel(){return"Set Framerate"}getSummary(e){return`Set Framerate ${e.fps??1}fps`}createDefaultConfig(){return{fps:1}}getReactComponent(){return mH}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","setFramerate")}})||tr,mW=[{value:".3:.4:.3:0:.3:.4:.3:0:.3:.4:.3",label:"Grayscale"},{value:".393:.769:.189:0:.349:.686:.168:0:.272:.534:.131",label:"Sepia"},{value:".9:0:0:0:0:1.1:0:0:0:0:1:0:0:0:0:1",label:"Cold"}],mq=()=>(0,tq.jsx)(ap.s,{gap:"small",vertical:!0,children:(0,tq.jsx)(tJ.lV.Item,{label:"Effect",name:"effect",children:(0,tq.jsx)(t8.l,{options:mW})})});mq.displayName="ColorChannelMixerVideoTransformationComponent";let mG=".3:.4:.3:0:.3:.4:.3:0:.3:.4:.3",mU={[mG]:"Grayscale",".393:.769:.189:0:.349:.686:.168:0:.272:.534:.131":"Sepia",".9:0:0:0:0:1.1:0:0:0:0:1:0:0:0:0:1":"Cold"},mQ=(0,tk.injectable)()(ta=class extends uH{getLabel(){return"Color Channel Mixer"}getSummary(e){let t=null!=e.effect?mU[e.effect]??e.effect:"Grayscale";return`Color Channel Mixer (${t})`}createDefaultConfig(){return{effect:mG}}getReactComponent(){return mq}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","colorChannelMixer")}})||ta,mJ=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{hint:i` - padding: ${t.paddingXS}px ${t.paddingSM}px; - color: ${t.colorTextTertiary}; - font-style: italic; - `}}),mZ=()=>{let{t:e}=(0,iQ.useTranslation)(),{styles:t}=mJ();return(0,tq.jsx)("div",{className:t.hint,children:e("video-thumbnails.transformations.no-configuration-required")})},mY=(0,tk.injectable)()(tl=class extends uH{getLabel(){return"Mute"}getReactComponent(){return mZ}constructor(...e){super(...e),function(e,t,i){var n;(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i}(this,"id","mute")}})||tl;tc.kL.bind(td.K["App/ComponentRegistry/ComponentRegistry"]).to(tu.Zt).inSingletonScope(),tc.kL.bind(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]).to(tm.g).inSingletonScope(),tc.kL.bind(td.K.mainNavRegistry).to(tf.c).inSingletonScope(),tc.kL.bind(td.K.widgetManager).to(s2.Y).inSingletonScope(),tc.kL.bind(td.K.widgetRestorerRegistry).to(s3).inSingletonScope(),tc.kL.bind(td.K.elementTreeWidgetPermissionRegistry).to(s6.t).inSingletonScope(),tc.kL.bind(td.K["WidgetManager/ProcessorRegistry/PerspectiveProcessor"]).to(dr.I).inSingletonScope(),tc.kL.bind(td.K.debouncedFormRegistry).to(tp.F).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/TypeRegistry"]).to(sM.O).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/DocumentTabManager"]).to(ty.a).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/FolderTabManager"]).to(tv.H).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/ImageTabManager"]).to(tb.i).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/TextTabManager"]).to(tx.s).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/VideoTabManager"]).to(tC.c).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/AudioTabManager"]).to(th.$).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/ArchiveTabManager"]).to(tg.x).inSingletonScope(),tc.kL.bind(td.K["Asset/Editor/UnknownTabManager"]).to(tj.t).inSingletonScope(),tc.kL.bind(td.K["Asset/Listing/Builder"]).to(ds.C).inSingletonScope(),tc.kL.bind(td.K["Asset/ProcessorRegistry/SaveDataProcessor"]).to(dn.P).inSingletonScope(),tc.kL.bind(td.K["DataObject/Editor/TypeRegistry"]).to(sM.O).inSingletonScope(),tc.kL.bind(td.K["DataObject/Editor/ObjectTabManager"]).to(tP.E).inSingletonScope(),tc.kL.bind(td.K["DataObject/Editor/VariantTabManager"]).to(sw).inSingletonScope(),tc.kL.bind(td.K["DataObject/Editor/FolderTabManager"]).to(tv.H).inSingletonScope(),tc.kL.bind(td.K["DataObject/Listing/Builder"]).to(dl.ObjectListingBuilder).inSingletonScope(),tc.kL.bind(td.K["DataObject/ProcessorRegistry/SaveDataProcessor"]).to(di.g).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/TypeRegistry"]).to(sM.O).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/PageTabManager"]).to(a7._).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/EmailTabManager"]).to(a8.N).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/FolderTabManager"]).to(tv.H).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/HardlinkTabManager"]).to(a9.c).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/LinkTabManager"]).to(le.N).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/SnippetTabManager"]).to(lt.C).inSingletonScope(),tc.kL.bind(td.K["Document/RequiredFieldsValidationService"]).to(ln.U).inSingletonScope(),tc.kL.bind(td.K["Document/ProcessorRegistry/UrlProcessor"]).to(de.I).inSingletonScope(),tc.kL.bind(td.K["Document/ProcessorRegistry/SaveDataProcessor"]).to(dt.c).inSingletonScope(),tc.kL.bind(td.K["Element/ProcessorRegistry/IconProcessor"]).to(da.n).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/Sidebar/PageSidebarManager"]).to(li.l).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/Sidebar/SnippetSidebarManager"]).to(li.l).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/Sidebar/EmailSidebarManager"]).to(li.l).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/Sidebar/LinkSidebarManager"]).to(li.l).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/Sidebar/HardlinkSidebarManager"]).to(li.l).inSingletonScope(),tc.kL.bind(td.K["Document/Editor/Sidebar/FolderSidebarManager"]).to(li.l).inSingletonScope(),tc.kL.bind(td.K.iconLibrary).to(sL.r).inSingletonScope(),tc.kL.bind(td.K.iconColorGroupsRegistry).to(sF.b).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilterRegistry"]).to(ir.r).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/DataObjectAdapter"]).to(ib).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/DataObjectObjectBrick"]).to(ij).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/String"]).to(iM).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/None"]).to(sf).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Id"]).to(iT).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Number"]).to(iS.R).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Multiselect"]).to(iC.b).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Date"]).to(iw.y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Boolean"]).to(iu).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/BooleanSelect"]).to(ic).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Consent"]).to(ip).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/ClassificationStore"]).to(s4).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/InputQuantityValue"]).to(dc).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/QuantityValue"]).to(dp).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Color"]).to(dh).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Datetime"]).to(dv).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Time"]).to(dS).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldFilter/Relation"]).to(dE).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEditRegistry"]).to(tW.f).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/Text"]).to(it.P).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/TextArea"]).to(ii.M).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/Datetime"]).to(t3).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/Select"]).to(ie).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/Checkbox"]).to(tY).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/ElementDropzone"]).to(t7).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/ClassificationStore"]).to(s9).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/DataObjectAdapter"]).to(tX.y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/BatchEdit/DataObjectObjectBrick"]).to(t0.h).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCellRegistry"]).to(iL.H).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Text"]).to(nz).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Textarea"]).to(nO).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Number"]).to(nF).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Select"]).to(nR).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/MultiSelect"]).to(nM).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Checkbox"]).to(nm.h).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Boolean"]).to(a5).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Date"]).to(nw).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Time"]).to(n_).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/DateTime"]).to(nj).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/AssetLink"]).to(nd).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/ObjectLink"]).to(nE).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/DocumentLink"]).to(nk).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/OpenElement"]).to(nN).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/AssetPreview"]).to(nf).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/AssetActions"]).to(no).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/DataObjectActions"]).to(ng).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/DependencyTypeIcon"]).to(iP).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/ElementSubtypeIcon"]).to(iB).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/AssetCustomMetadataIcon"]).to(iK).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/AssetCustomMetadataValue"]).to(iH).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/PropertyIcon"]).to(iW).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/PropertyValue"]).to(iG).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/WebsiteSettingsValue"]).to(na).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/ScheduleActionsSelect"]).to(i2).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/VersionsIdSelect"]).to(i8).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"]).to(ne).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Asset"]).to(nu).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Object"]).to(nP).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Document"]).to(nT).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Element"]).to(nS).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/LanguageSelect"]).to(nD).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Translate"]).to(n$).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/DataObjectAdapter"]).to(nv).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/ClassificationStore"]).to(sI).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/DataObjectObjectBrick"]).to(nb).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/DataObjectAdvanced"]).to(si).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/String"]).to(so).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Integer"]).to(ss).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Error"]).to(sd).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GridCell/Array"]).to(sc).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/AdvancedGridCellRegistry"]).to(iL.H).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ListingRegistry"]).to(nW.f).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Listing/AssetLink"]).to(nq.U).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/MetadataRegistry"]).to(nG.i).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Asset"]).to(nU.r).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Checkbox"]).to(nQ.c).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Date"]).to(nJ.b).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Document"]).to(nZ.u).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Input"]).to(nY.p).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Object"]).to(nX.e).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Select"]).to(n0.h).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Metadata/Textarea"]).to(n1.b).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/CustomReportDefinitionRegistry"]).to(n2.L).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/CustomReportDefinition/Sql"]).to(rr).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayoutRegistry"]).to(al.o).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/Panel"]).to(ax).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/Tabpanel"]).to(aI).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/Accordion"]).to(am).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/Region"]).to(aT).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/Text"]).to(aL).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/Fieldset"]).to(ab).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/FieldContainer"]).to(ah).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectLayout/Iframe"]).to(dz).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectDataRegistry"]).to(ra.C).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Input"]).to(rF.l).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Textarea"]).to(r0.L).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Wysiwyg"]).to(ar).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/InputQuantityValue"]).to(rE.B).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Password"]).to(rW.E).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Select"]).to(rJ.$).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/MultiSelect"]).to(rK.O).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Language"]).to(rP.x).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/LanguageMultiSelect"]).to(rA.W).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Country"]).to(rm.$).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/CountryMultiSelect"]).to(rp.c).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/User"]).to(r3.Q).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/BooleanSelect"]).to(rd.r).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Numeric"]).to(r_.G).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/NumericRange"]).to(rH.Z).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Slider"]).to(rZ.O).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/QuantityValue"]).to(rq.R).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/QuantityValueRange"]).to(rG.Y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Consent"]).to(ru.z).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Firstname"]).to(rw.Q).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Lastname"]).to(rN.i).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Email"]).to(rv.B).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Gender"]).to(rk.y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/RgbaColor"]).to(rQ.i).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/EncryptedField"]).to(rb.N).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/CalculatedValue"]).to(rc.e).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Checkbox"]).to(rf.C).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Link"]).to(rR.T).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/UrlSlug"]).to(r2.Z).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Date"]).to(rg.X).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Datetime"]).to(ry.Y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/DateRange"]).to(rh.C).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Time"]).to(r1.E).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ExternalImage"]).to(rx.x).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Image"]).to(rM.a).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Video"]).to(r6.q).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/HotspotImage"]).to(rI.p).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ImageGallery"]).to(rL.y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/GeoPoint"]).to(rS._).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/GeoBounds"]).to(rT.P).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/GeoPolygon"]).to(rC.q).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/GeoPolyLine"]).to(rD.y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ManyToOneRelation"]).to(rO.h).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ManyToManyRelation"]).to(rB.g).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ManyToManyObjectRelation"]).to(rz.F).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/AdvancedManyToManyRelation"]).to(ro._).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"]).to(rl.D).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ReverseObjectRelation"]).to(rU.M).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Table"]).to(rX.v).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/StructuredTable"]).to(rY.e).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/Block"]).to(rs.a).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/LocalizedFields"]).to(rV.J).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/FieldCollection"]).to(rj.P).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ObjectBrick"]).to(r$.D).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectData/ClassificationStore"]).to(a6).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditableRegistry"]).to(lr.M).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Block"]).to(oV).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Checkbox"]).to(ld.C).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Wysiwyg"]).to(lc.q).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Date"]).to(lf.h).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Embed"]).to(lk).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Image"]).to(lS.Y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Input"]).to(ls.Z).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Link"]).to(lu.l).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/MultiSelect"]).to(or.A).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Numeric"]).to(la.g).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Pdf"]).to(lO).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Relation"]).to(ll.v).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Relations"]).to(lo.O).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Renderlet"]).to(op).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/ScheduledBlock"]).to(o0).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Select"]).to(oa.f).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Snippet"]).to(oo.G).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Table"]).to(ol.r).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Textarea"]).to(lT.r).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Video"]).to(lK.e).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Area"]).to(l_.q).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentEditable/Areablock"]).to(lH.Dc).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/EditableDialogLayoutRegistry"]).to(sn).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/EditableDialogLayout/Tabpanel"]).to(sa).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/EditableDialogLayout/Panel"]).to(sl).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/DocumentRegistry"]).to(sp).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Document/Page"]).to(sm).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Document/Email"]).to(sg).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Document/Folder"]).to(sh).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Document/Hardlink"]).to(sy).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Document/Link"]).to(sv).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Document/Newsletter"]).to(sb).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Document/Snippet"]).to(sx).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/AssetRegistry"]).to(tN).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Archive"]).to(tV).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Audio"]).to(tz).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Document"]).to(tB).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Folder"]).to(tO).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Image"]).to(tK).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Text"]).to(t_).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Unknown"]).to(tH).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Asset/Video"]).to(t$).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ObjectRegistry"]).to(aa).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Object/Folder"]).to(aE).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Object/Object"]).to(aP).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Object/Variant"]).to(aA).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/SourceFieldsRegistry"]).to(l$.v).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/SourceFields/Text"]).to(lG).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/SourceFields/SimpleField"]).to(oe).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/SourceFields/RelationField"]).to(on).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/TransformersRegistry"]).to(l$.v).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/BooleanFormatter"]).to(l5.Y).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/DateFormatter"]).to(l7.G).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/ElementCounter"]).to(l6._).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/TwigOperator"]).to(l4.H).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/Anonymizer"]).to(lQ.S).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/Blur"]).to(lJ.N).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/ChangeCase"]).to(lU.K).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/Combine"]).to(lZ.f).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/Explode"]).to(lY.j).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/StringReplace"]).to(l2.v).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/Substring"]).to(l3.V).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/Trim"]).to(lX.c).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/Translate"]).to(l0.U).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Grid/Transformers/PHPCode"]).to(l1.x).inSingletonScope(),tc.kL.bind(td.K["ExecutionEngine/JobComponentRegistry"]).to(tT).inSingletonScope(),tc.kL.bind(td.K.executionEngine).to(tS).inSingletonScope(),tc.kL.bind(td.K.backgroundProcessor).to(class{registerProcess(e){if(this.processes.has(e.getName()))throw Error(`Process with name ${e.getName()} is already registered.`);this.processes.set(e.getName(),e)}subscribeToProcessMessages(e){var t;let{processName:i,callback:n,SubscriberClass:r=o2}=e;if(!this.processes.has(i))throw Error(`Process with name ${i} is not registered.`);let a=new r(n);if(this.subscribers.set(a.getId(),a),this.processSubscriptions.has(i)||this.processSubscriptions.set(i,[]),null==(t=this.processSubscriptions.get(i))||t.push(a.getId()),void 0===this.processes.get(i))throw Error(`Process with name ${i} does not exist.`);return this.startProcess(i),a.getId()}unsubscribeFromProcessMessages(e){if(void 0===this.subscribers.get(e))throw Error(`Subscriber with ID ${e} does not exist.`);for(let[t,i]of(this.subscribers.delete(e),this.processSubscriptions.entries())){let n=i.indexOf(e);-1!==n&&(i.splice(n,1),0===i.length&&(this.cancelProcess(t),this.processSubscriptions.delete(t)))}}notifySubscribers(e,t){let i=this.processSubscriptions.get(e);if(void 0!==i)for(let e of i){let i=this.subscribers.get(e);void 0!==i&&i.getCallback()(t)}}startProcess(e){let t=this.processes.get(e);if(void 0===t)throw Error(`Process with name ${e} does not exist.`);this.runningProcesses.has(e)||(t.start(),this.runningProcesses.add(e),t.onMessage=t=>{this.notifySubscribers(e,t)})}cancelProcess(e){let t=this.processes.get(e);if(void 0===t)throw Error(`Process with name ${e} does not exist.`);this.runningProcesses.has(e)&&(this.runningProcesses.delete(e),t.cancel())}constructor(){this.processes=new Map,this.subscribers=new Map,this.processSubscriptions=new Map,this.runningProcesses=new Set}}).inSingletonScope(),tc.kL.bind(td.K.globalMessageBus).to(o6.d).inSingletonScope(),tc.kL.bind(td.K.globalMessageBusProcess).to(o3.W).inSingletonScope(),tc.kL.bind(td.K["Asset/ThumbnailService"]).to(tE).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/ThemeRegistry"]).to(o4).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Theme/StudioDefaultLight"]).to(class extends o5{getThemeConfig(){return o8}constructor(...e){super(...e),this.id=o7.u.light}}).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Theme/StudioDefaultDark"]).to(o9).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/IconSetRegistry"]).to(sD).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/IconSet/PimcoreDefault"]).to(sT).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/IconSet/Twemoji"]).to(sC).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).to(s1.t).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/WidgetEditor/ElementTree"]).to(s0).inSingletonScope(),tc.kL.bind(td.K["AppLoader/Registry"]).to(dP.s).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinitionRegistry"]).to(fU.u).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Block"]).to(fJ).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Input"]).to(d_).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Textarea"]).to(d$).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Wysiwyg"]).to(dq).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Password"]).to(dU).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/InputQuantityValue"]).to(dZ).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Number"]).to(d0).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/NumericRange"]).to(d2).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Slider"]).to(d6).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/QuantityValue"]).to(d5).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/QuantityValueRange"]).to(d8).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Date"]).to(ce).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/DateTime"]).to(ci).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/DateRange"]).to(cr).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Time"]).to(cl).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Image"]).to(cs).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/ExternalImage"]).to(cc).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/ImageGallery"]).to(cm).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Video"]).to(cg).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/HotspotImage"]).to(cy).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Geopoint"]).to(cx).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Geobounds"]).to(cw).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Geopolygon"]).to(cT).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Geopolyline"]).to(cC).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Select"]).to(cO).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/BooleanSelect"]).to(c_).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Multiselect"]).to(cG).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/User"]).to(cU).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Country"]).to(cZ).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Language"]).to(cX).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/CountryMultiselect"]).to(c1).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/LanguageMultiselect"]).to(c3).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/RgbaColor"]).to(c4).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/EncryptedField"]).to(c8).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/UrlSlug"]).to(ft).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Checkbox"]).to(fn).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Link"]).to(fa).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/CalculatedValue"]).to(fo).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/ManyToOne"]).to(fs.V).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/ManyToMany"]).to(fd.u).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/ManyToManyObject"]).to(fc.Z).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/AdvancedManyToMany"]).to(fb).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/AdvancedManyToManyObject"]).to(fw).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/ReverseObject"]).to(fC).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Accordion"]).to(fV).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/FieldContainer"]).to(fF).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Fieldset"]).to(fP).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Iframe"]).to(fN).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Panel"]).to(fM).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Region"]).to(fB).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Tabpanel"]).to(fK).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Text"]).to(fG).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Table"]).to(fX).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/StructuredTable"]).to(f4).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Fieldcollections"]).to(f7).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Objectbricks"]).to(f9).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Classificationstore"]).to(ui).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Localizedfields"]).to(ur).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Firstname"]).to(cI).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Lastname"]).to(cL).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Email"]).to(cE).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Gender"]).to(cP).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/FieldDefinition/Consent"]).to(cN).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/TransformationDynamicTypeRegistry"]).to(uO).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/TransformationFieldCollectionRegistry"]).toDynamicValue(e=>new u_(e.container.get(td.K["DynamicTypes/TransformationDynamicTypeRegistry"]))).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Cover"]).to(uW).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Resize"]).to(uG).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/ScaleByWidth"]).to(uQ).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/ScaleByHeight"]).to(uZ).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Trim"]).to(uX).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Sepia"]).to(u1).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Grayscale"]).to(u2).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Sharpen"]).to(u6).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Contain"]).to(u5).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Crop"]).to(u8).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Frame"]).to(me).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Rotate"]).to(mi).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/Mirror"]).to(mr).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/GaussianBlur"]).to(ml).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/BrightnessSaturation"]).to(ms).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/SetBackgroundColor"]).to(mf).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/SetBackgroundImage"]).to(mv).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/RoundCorners"]).to(mx).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/AddOverlay"]).to(mk).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/AddOverlayFit"]).to(mC).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/ApplyMask"]).to(mI).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/TiffOriginal"]).to(mL).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/Transformation/OnePixel"]).to(mE).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformationDynamicTypeRegistry"]).to(mP).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformationFieldCollectionRegistry"]).toDynamicValue(e=>new mA(e.container.get(td.K["DynamicTypes/VideoTransformationDynamicTypeRegistry"]))).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformation/Resize"]).to(mR).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformation/ScaleByWidth"]).to(mz).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformation/ScaleByHeight"]).to(mO).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformation/Cut"]).to(m_).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformation/SetFramerate"]).to(m$).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformation/ColorChannelMixer"]).to(mQ).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/VideoTransformation/Mute"]).to(mY).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GDPRProviderRegistry"]).to(ua.r).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GDPRProvider/DataObjects"]).to(up).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GDPRProvider/Assets"]).to(uy).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GDPRProvider/Users"]).to(uD).inSingletonScope(),tc.kL.bind(td.K["DynamicTypes/GDPRProvider/Emails"]).to(uB).inSingletonScope(),i(60352),i(88358);var mX=i(78535);let m0=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{mainNav:i` - position: absolute; - left: 100%; - top: 0; - background: #fff; - padding: ${t.paddingMD}px; - box-shadow: ${t.boxShadowSecondary}; - border-radius: ${t.borderRadius}px; - width: 920px; - max-width: 90vw; - min-width: 530px; - text-align: left; - max-height: 85vh; - display: flex; - flex-direction: column; - - .main-nav__top { - display: flex; - justify-content: space-between; - } - - .main-nav__list-inline { - display: flex; - list-style: none; - padding: 0; - margin: 0; - } - - .main-nav__bottom { - display: flex; - text-transform: uppercase; - gap: ${t.marginSM}px; - color: ${t.colorTextDescription}; - - .main-nav__bottom-title { - margin-top: ${t.marginXS}px; - line-height: 1.5; - } - - .main-nav__list-inline { - gap: ${t.marginXS}px; - flex-wrap: wrap; - } - } - - .main-nav__list { - margin: 0; - list-style: none; - width: 200px; - height: fit-content; - padding: 0 ${t.paddingXS}px; - font-size: ${t.fontSize}px; - position: relative; - max-height: 100%; - } - - .main-nav__list--level-0 { - width: 250px; - padding: 0; - background: rgba(0, 0, 0, 0.02); - - > .main-nav__list-item.is-active > .main-nav__list-btn { - border-left: 2px solid ${t.colorPrimary}; - background: ${t.controlItemBgActive}; - color: ${t.colorPrimary}; - } - } - - .main-nav__list:not(.main-nav__list--level-0) { - position: static; - } - - .main-nav__list--level-1 { - padding: 0px ${t.paddingXXS}px 0px 10px; - } - - .main-nav__list-detail { - position: absolute; - left: 100%; - top: 0; - bottom: 0; - transform: translateX(-15px); - opacity: 0; - visibility: hidden; - transition: transform 200ms ease-in-out, opacity 200ms ease-in-out; - } - - .is-active > .main-nav__list-detail { - opacity: 1; - transform: translateX(0); - visibility: visible; - } - - .main-nav__list-detail-scroll-container { - display: flex; - -webkit-box-orient: vertical; - -webkit-box-direction: normal; - -ms-flex-direction: column; - flex-direction: column; - max-height: 100%; - } - - .main-nav__list-detail-scroll { - overflow-x: hidden; - overflow-y: auto; - -webkit-overflow-scrolling: touch; - scroll-behavior: smooth; - scroll-snap-type: x mandatory; - } - - .main-nav__list-item-divider { - border-block-start-color: ${t.colorFillSecondary}; - } - - .main-nav__list-detail-sub-header { - width: 100%; - text-align: left; - color: ${t.colorTextHeading}; - font-size: ${t.fontSize}px; - font-weight: bold; - font-family: ${t.fontFamily}; - padding: ${t.paddingSM}px ${t.paddingXS}px ${t.paddingXS}px 0px ; - - &.main-nav__list-detail-divider { - border-bottom: 1px solid ${t.colorFillSecondary}; - } - } - - - .main-nav__list-btn { - background: none; - border: 0; - width: 100%; - padding: ${t.paddingSM}px; - gap: 8px; - cursor: pointer; - text-align: left; - display: flex; - align-items: center; - font-size: ${t.fontSize}px; - min-height: 46px; - font-family: ${t.fontFamily}; - - .plain-icon { - margin: 4px; - } - - &:hover { - background: ${t.controlItemBgActiveHover}; - color: ${t.colorPrimary}; - } - } - - .is-active > .main-nav__list-btn { - background: ${t.controlItemBgActive}; - color: ${t.colorPrimary}; - padding-left: 10px; - } - - .main-nav__list-chevron-btn-icon { - margin-left: auto; - } - - .main-nav__divider { - margin: ${t.marginSM}px 0; - border-block-start-color: ${t.colorFillSecondary}; - } - - .main-nav__list--level-1 .main-nav__list-btn { - min-height: unset; - border-radius: ${t.borderRadius}px; - padding: ${t.paddingXS}px; - } - `}},{hashPriority:"low"});var m1=i(84567),m2=i(30515),m3=i(83196),m6=i(96403),m4=i(27820),m5=i(61549),m7=i(76374);let m8=e=>{let{setIsOpen:t}=e,{t:i}=(0,iQ.useTranslation)(),{switchPerspective:n}=(0,m7.n)(),r=(0,m5.J)();return(0,tq.jsxs)("div",{className:"main-nav__bottom","data-testid":"perspective-switch-container",children:[(0,tq.jsx)("div",{className:"main-nav__bottom-title",children:i("navigation.perspectives")}),(0,tq.jsx)("ul",{className:"main-nav__list-inline","data-testid":"perspective-switch-list",children:r.perspectives.map((e,a)=>(0,tq.jsx)("li",{children:(0,tq.jsx)(m4.J,{color:e.id===r.activePerspective?"primary":"secondary","data-testid":`perspective-button-${e.name}`,icon:e.icon,onClick:async()=>{n(e),t(!1)},variant:e.id===r.activePerspective?"filled":"outlined",children:i(e.name)})},e.id))})]})};var m9=i(69134),pe=i(53789),pt=i(71207),pi=i(32396);let{SelectedRowsProvider:pn,useSelectedRowsContext:pr}=(n=(0,tG.createContext)(void 0),{SelectedRowsProvider:e=>{let{children:t,initialValue:i}=e,[r,a]=(0,tG.useState)(i),l=()=>{a(i)},o=(0,tG.useMemo)(()=>({selectedRows:r,setSelectedRows:a,resetSelectedRows:l}),[r,i]);return(0,tq.jsx)(n.Provider,{value:o,children:t})},useSelectedRowsContext:function(){let e=(0,tG.useContext)(n);if((0,tI.isUndefined)(e))throw Error("useSelectedRowsContext must be used within a SelectedRowsProvider");return e}});var pa=i(64756),pl=i(91206),po=i(75525),ps=i(67914),pd=i(74325),pc=i(96940),pf=i(73789),pu=i(99154),pm=i(14138);let pp=e=>{let{items:t}=e,{t:i}=(0,iQ.useTranslation)(),{selectedRows:n,resetSelectedRows:r}=pr(),{removeItems:a,restoreItems:l}=(0,pm.y)(),o=()=>Object.keys(n).map(e=>t.find(t=>t.id===parseInt(e,10))).filter(e=>void 0!==e),s={items:[{key:"1",label:i("recycle-bin.actions.delete"),icon:(0,tq.jsx)(r9.I,{value:"trash"}),onClick:()=>{a(o(),()=>{r()})}},{key:"2",label:i("recycle-bin.actions.restore"),icon:(0,tq.jsx)(r9.I,{value:"restore"}),onClick:()=>{l(o(),()=>{r()})}}]};return(0,tq.jsx)(pu.m,{menu:s,children:(0,tq.jsx)(pf.g,{children:i("listing.actions")},"dropdown-button")})},pg=()=>{let{t:e}=(0,iQ.useTranslation)(),{selectedRows:t,resetSelectedRows:i}=pr(),n=Object.keys(t).length;return(0,tq.jsxs)(ap.s,{align:"center",children:[0===n&&(0,tq.jsx)(tq.Fragment,{}),n>0&&(0,tq.jsx)(tQ.S,{checked:n>0,onClick:e=>{e.stopPropagation(),n>0&&i()},children:e("listing.selection.total",{total:n})})]})},ph=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{icons:i` - .pimcore-icon { - color: ${t.Button.defaultColor}; - } - `}}),py=e=>{let{items:t}=e,{t:i}=(0,iQ.useTranslation)(),{styles:n}=ph(),[r,a]=(0,tG.useState)([]),[l,o]=(0,tG.useState)([]),{restoreItems:s,removeItems:d}=(0,pm.y)(),{selectedRows:c,setSelectedRows:f}=pr(),u=t.map(e=>({...e,date:(0,af.formatDateTime)({timestamp:e.date,dateStyle:"short",timeStyle:"short"})})),m=(0,cH.createColumnHelper)(),p=[m.accessor("type",{header:i("recycle-bin.columns.type"),cell:e=>{let{row:t}=e,i=t.original.type;return(0,tq.jsx)(ap.s,{align:"center",className:n.icons,justify:"center",children:(()=>{switch(i){case"document":return(0,tq.jsx)(r9.I,{value:"document"});case"asset":return(0,tq.jsx)(r9.I,{value:"asset"});case"object":return(0,tq.jsx)(r9.I,{value:"data-object"});default:return(0,tq.jsx)(tq.Fragment,{})}})()})},size:50}),m.accessor("path",{header:i("recycle-bin.columns.path"),meta:{editable:!1,clearable:!1,type:"element",config:{getElementInfo:e=>({fullPath:e.row.original.path})},autoWidth:!0}}),m.accessor("amount",{header:i("recycle-bin.columns.amount"),size:100}),m.accessor("deletedBy",{header:i("recycle-bin.columns.deleted-by"),size:100}),m.accessor("date",{header:i("recycle-bin.columns.date"),size:150}),m.accessor("actions",{header:i("recycle-bin.columns.actions"),cell:e=>{let{row:t}=e;return(0,tq.jsxs)(ap.s,{align:"center",justify:"center",children:[(0,tq.jsx)(lp.K,{"data-testid":(0,pi.Sl)(["button","restore"]),icon:{value:"restore"},loading:r.includes(t.original.id),onClick:()=>{a(e=>[...e,t.original.id]),s([t.original],()=>{a(e=>e.filter(e=>e!==t.original.id))})},type:"link"}),(0,tq.jsx)(lp.K,{"data-testid":(0,pi.Sl)(["button","delete"]),icon:{value:"trash"},loading:l.includes(t.original.id),onClick:()=>{o(e=>[...e,t.original.id]),d([t.original],()=>{o(e=>e.filter(e=>e!==t.original.id))})},type:"link"})]})},size:100})];return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:p,data:u,enableMultipleRowSelection:!0,modifiedCells:[],onSelectedRowsChange:e=>{f(e)},resizable:!0,selectedRows:c,setRowId:e=>String(e.id)})};var pv=i(57330),pb=i(1371);let px=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,iv.useAppDispatch)(),[i,n]=(0,tG.useState)(void 0),[r,a]=(0,tG.useState)(1),[l,o]=(0,tG.useState)(20),[s,d]=(0,tG.useState)(!1),{flush:c}=(0,pm.y)(),{selectedRows:f}=pr(),{data:u,isLoading:m,isFetching:p}=(0,pb.aP)({body:{filters:{page:r,pageSize:l,columnFilters:i}}}),g=(null==u?void 0:u.totalItems)??0;return(0,tG.useEffect)(()=>{p||d(!1)},[p]),(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[Object.keys(f).length>0?(0,tq.jsxs)(ap.s,{children:[(0,tq.jsx)(pg,{}),(0,tq.jsx)(pp,{items:(null==u?void 0:u.items)??[]})]}):(0,tq.jsx)(ni.IconTextButton,{disabled:m||s||(null==u?void 0:u.items.length)===0,icon:{value:"trash"},onClick:()=>{d(!0),c(()=>{t(pv.FH.util.invalidateTags(uT.qN.RECYCLING_BIN())),d(!1)})},type:"link",children:e("recycle-bin.actions.cleanup")}),(0,tq.jsxs)(ap.s,{align:"center",children:[(0,tq.jsx)(lp.K,{disabled:m||s,icon:{value:"refresh"},onClick:()=>{t(pv.FH.util.invalidateTags(uT.qN.RECYCLING_BIN()))}}),g>0&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.Divider,{size:"small",type:"vertical"}),(0,tq.jsx)(po.d,{current:r,defaultPageSize:l,onChange:(e,t)=>{a(e),o(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:g})]})]})]}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsx)(ap.s,{gap:"small",children:(0,tq.jsx)(pd.h,{children:e("widget.recycle-bin")})}),(0,tq.jsx)(ps.D,{loading:p||s,onSearch:e=>{let t={key:"path",type:"like",filterValue:""};""!==e&&(t.filterValue=e),n({...i,path:t})},placeholder:e("component.search.pleaceholder"),withPrefix:!1,withoutAddon:!1})]}),children:(0,tq.jsx)(uE.U,{loading:s||m,margin:{x:"extra-small",y:"none"},none:(0,tI.isUndefined)(null==u?void 0:u.items)||0===u.items.length,children:(0,tq.jsx)(pa.a,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(py,{items:(null==u?void 0:u.items)??[]})})})})},pj=()=>(0,tq.jsx)(pn,{initialValue:{},children:(0,tq.jsx)(px,{})});var pw=i(9653),pk=i(85422);let pT={name:"recycleBin",id:"recycle-bin",component:"recycle-bin",config:{translationKey:"widget.recycle-bin",icon:{type:"name",value:"trash"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.widgetManager).registerWidget({name:"recycle-bin",component:pj}),tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"QuickAccess/Recycle Bin",label:"navigation.recycle-bin",permission:pw.F.RecycleBin,order:400,perspectivePermission:pk.d.RecycleBin,widgetConfig:pT})}});let pS=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{table:i` - .ant-table { - .ant-table-tbody { - - .properties-table--actions-column { - align-items: center; - - .ant-btn-icon { - color: ${t.colorPrimary}; - - &:hover { - color: ${t.colorPrimaryHover}; - } - } - } - } - } - - .headline { - padding: ${t.paddingXS}px; - margin: 0; - } - `,link:i` - gap: 8px; - width: 100%; - - .ant-tag { - margin-left: 5px; - height: fit-content; - overflow: hidden; - text-overflow: ellipsis; - max-width: 100%; - cursor: pointer; - }`}});var pC=i(30492),pD=i(93233),pI=i(8830),pM=i(41423),pL=i(30037);let pF=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{valueCell:i` - margin-left: 6px; - `}}),pE=e=>{let{note:t}=e,{t:i}=(0,iQ.useTranslation)(),{styles:n}=pF(),{mapToElementType:r,openElement:a}=(0,nt.K)(),l=[];t.data.forEach(e=>{(e=>{if("object"!=typeof e||!("data"in e))return;let t={name:e.name,type:e.type,value:e.data};l.push(t)})(e)});let o=(0,cH.createColumnHelper)(),s=[o.accessor("name",{header:i("notes-and-events.name")}),o.accessor("type",{header:i("notes-and-events.type"),size:120}),o.accessor(e=>({value:e.value,type:e.type}),{header:i("notes-and-events.value"),size:310,cell:e=>{let{value:t,type:i}=e.getValue(),l=!(0,tI.isNull)(i)&&((e,t)=>{switch(t){case"asset":case"document":case"object":if("path"in e){let{path:i,id:n}=e,l=r(t);return(0,tI.isUndefined)(l)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(pM.v,{bordered:!1,color:"blue",onClick:async()=>{await a({id:Number(n),type:l})},children:(0,tq.jsx)(pL.Q,{editorTabsWidth:1500,elementType:l,pageSize:"L",path:String(i)})})}return JSON.stringify(e);case"date":return(0,tq.jsx)(pI.X,{showTime:!0,timestamp:e});default:if((0,tI.isNil)(e))return"";if("string"==typeof e)return(0,pD.SN)(e,!1);return JSON.stringify(e)}})(t,i);return(0,tq.jsx)(ap.s,{align:"center",className:n.valueCell,children:l})}})];return(0,tq.jsxs)("div",{children:[(0,tq.jsx)("span",{className:"panel-body__details",children:i("notes-and-events.details")}),(0,tq.jsx)(ul.x,{autoWidth:!0,columns:s,data:l,resizable:!0})]})};var pP=i(276);let pA=e=>{let{noteDetail:t,setNoteDetail:i}=e,{t:n}=(0,iQ.useTranslation)(),r=function(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2];return(0,tq.jsxs)(pa.a,{margin:"small",children:[(0,tq.jsx)(n5.E,{children:t}),(0,tq.jsx)(n4.f,{disabled:!0,value:e,...i?{autoSize:{maxRows:1,minRows:1}}:{size:"small"}})]})};return(0,tq.jsx)(pC.a,{footer:(0,tq.jsx)(tq.Fragment,{}),onCancel:()=>{i(void 0)},onClose:()=>{i(void 0)},open:!(0,tI.isUndefined)(t),size:"L",title:n("notes-and-events-modal.detail-information"),children:(0,tq.jsxs)(tq.Fragment,{children:[r(t.type,n("notes-and-events.columns.type")),r(t.title,n("notes-and-events.columns.title")),r(t.description,n("notes-and-events.columns.description"),!1),t.data.length>0&&(0,tq.jsx)(pa.a,{margin:"small",children:(0,tq.jsx)(pE,{note:t})}),(0,tI.isString)(t.userName)&&r(t.userName,n("notes-and-events.columns.user")),r((0,pP.r6)({timestamp:t.date,dateStyle:"short",timeStyle:"short"}),n("notes-and-events.columns.date"))]})})},pN=e=>{let{notesAndEvents:t,notesAndEventsFetching:i}=e,{t:n}=(0,iQ.useTranslation)(),{styles:r}=pS(),{openElement:a,mapToElementType:l}=(0,nt.K)(),[o,s]=(0,tG.useState)([]),[d,c]=(0,tG.useState)(void 0);(0,tG.useEffect)(()=>{void 0!==t&&Array.isArray(t)&&s(f(t))},[t]);let f=e=>e.map(e=>({...e,fields:e.data.length,rowId:(0,n7.u)(),dateFormatted:(0,pP.r6)({timestamp:e.date,dateStyle:"short",timeStyle:"short"})})),u=(0,cH.createColumnHelper)(),m=[u.accessor("type",{header:n("notes-and-events.columns.type"),size:100}),u.accessor(e=>({path:e.cPath,elementType:e.cType,id:e.cId}),{id:"element",header:n("notes-and-events.columns.element"),meta:{editable:!1,type:"element",config:{getElementInfo:e=>{let t=e.row.original;return{elementType:l(String(t.cType),!0),id:t.cId,fullPath:!(0,tI.isEmpty)(t.cPath)&&decodeURIComponent(String(t.cPath))}}}},size:300}),u.accessor("title",{header:n("notes-and-events.columns.title"),size:200}),u.accessor("description",{header:n("notes-and-events.columns.description"),meta:{autoWidth:!0}}),u.accessor("fields",{header:n("notes-and-events.columns.details"),size:70}),u.accessor("userName",{header:n("notes-and-events.columns.user"),size:120}),u.accessor("dateFormatted",{header:n("notes-and-events.columns.date"),size:120}),u.accessor("actions",{header:n("notes-and-events.columns.actions"),size:70,cell:e=>{let t=e.row.getValue("element"),i=l(t.elementType,!0),n=t.id;return(0,tI.isUndefined)(t.path)||""===t.path?(0,tq.jsx)(ap.s,{align:"center",className:"w-full",children:(0,tq.jsx)(lp.K,{"data-testid":"action-show-details",icon:{value:"show-details"},onClick:async()=>{c(e.row.original)},type:"link"})}):(0,tq.jsxs)(ap.s,{align:"center",className:"w-full",children:[(0,tq.jsx)(lp.K,{"data-testid":"action-open-element",icon:{value:"open-folder"},onClick:async()=>{(0,tI.isUndefined)(i)||await a({type:i,id:n})},type:"link"}),(0,tq.jsx)(lp.K,{"data-testid":"action-show-details",icon:{value:"show-details"},onClick:async()=>{c(e.row.original)},type:"link"})]})}})];return(0,tq.jsxs)("div",{className:r.table,children:[void 0!==d&&(0,tq.jsx)(pA,{noteDetail:d,setNoteDetail:c}),(0,tq.jsx)(ul.x,{autoWidth:!0,columns:m,data:o,isLoading:i,modifiedCells:[],resizable:!0,setRowId:e=>e.rowId})]})};var pR=i(53073);let pV=pR.api.enhanceEndpoints({addTagTypes:["Notes"]}).injectEndpoints({endpoints:e=>({noteGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/notes",method:"POST",body:e.body}),providesTags:["Notes"]}),noteDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/notes/${e.id}`,method:"DELETE"}),invalidatesTags:["Notes"]}),noteElementGetCollection:e.query({query:e=>({url:`/pimcore-studio/api/notes/${e.elementType}/${e.id}`,params:{page:e.page,pageSize:e.pageSize,sortBy:e.sortBy,sortOrder:e.sortOrder,filter:e.filter,fieldFilters:e.fieldFilters}}),providesTags:["Notes"]}),noteElementCreate:e.mutation({query:e=>({url:`/pimcore-studio/api/notes/${e.elementType}/${e.id}`,method:"POST",body:e.createNote}),invalidatesTags:["Notes"]}),noteElementGetTypeCollection:e.query({query:e=>({url:`/pimcore-studio/api/notes/type/${e.elementType}`}),providesTags:["Notes"]})}),overrideExisting:!1}),{useNoteGetCollectionQuery:pz,useNoteDeleteByIdMutation:pB,useNoteElementGetCollectionQuery:pO,useNoteElementCreateMutation:pK,useNoteElementGetTypeCollectionQuery:p_}=pV,pH=pV.enhanceEndpoints({addTagTypes:[uT.nP.NOTES_AND_EVENTS,uT.nP.ASSET_DETAIL,uT.nP.DATA_OBJECT_DETAIL],endpoints:{noteGetCollection:{providesTags:(e,t,i)=>{let n=[];return null==e||e.items.forEach(e=>{n.push(...uT.yc.NOTES_AND_EVENTS_DETAIL(e.id))}),n}},noteElementGetCollection:{providesTags:(e,t,i)=>{let n=[];return null==e||e.items.forEach(e=>{n.push(...uT.yc.NOTES_AND_EVENTS_DETAIL(e.id))}),[...n,...uT.yc.ELEMENT_NOTES_AND_EVENTS(i.elementType,i.id)]}}}}),{useNoteDeleteByIdMutation:p$,useNoteElementCreateMutation:pW,useNoteElementGetCollectionQuery:pq,useNoteElementGetTypeCollectionQuery:pG,useNoteGetCollectionQuery:pU}=pH,pQ=()=>{let{t:e}=(0,iQ.useTranslation)(),{totalItems:t,notesAndEvents:i,isLoading:n,isFetching:r,page:a,setPage:l,setPageSize:o,setFilter:s}=(()=>{let[e,t]=(0,tG.useState)(""),[i,n]=(0,tG.useState)(1),[r,a]=(0,tG.useState)(20),{data:l,isLoading:o,isFetching:s}=pU((0,tG.useMemo)(()=>({body:{page:i,pageSize:r,filter:e}}),[i,r,e]));return{totalItems:(null==l?void 0:l.totalItems)??0,notesAndEvents:(null==l?void 0:l.items)??[],isLoading:o,isFetching:s,page:i,setPage:n,pageSize:r,setPageSize:a,setFilter:t}})();return(0,tq.jsx)(pl.s,{renderToolbar:0!==i.length?(0,tq.jsx)(pc.M,{justify:"flex-end",theme:"secondary",children:(0,tq.jsx)(po.d,{current:a,onChange:(e,t)=>{l(e),o(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:t})}):void 0,renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsx)(pd.h,{children:e("notes-and-events.label")}),(0,tq.jsx)(ps.D,{loading:r,onSearch:e=>{s(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tq.jsx)(uE.U,{loading:n,none:0===i.length,children:(0,tq.jsx)(pa.a,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(pN,{notesAndEvents:i,notesAndEventsFetching:r})})})})},pJ={name:"Notes & Events",id:"notes-and-events",component:"notes-and-events",config:{translationKey:"widget.notes-and-events",icon:{type:"name",value:"notes-events"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/Notes & Events",label:"navigation.notes-and-events",dividerBottom:!0,order:400,className:"item-style-modifier",permission:pw.F.NotesAndEvents,perspectivePermission:pk.d.NotesAndEvents,widgetConfig:pJ}),tc.kL.get(td.K.widgetManager).registerWidget({name:"notes-and-events",component:pQ})}});var pZ=i(11830);let pY=(0,tG.createContext)({domain:"message",setDomain:()=>{}}),pX=e=>{let{children:t}=e,[i,n]=(0,tG.useState)("messages");return(0,tG.useMemo)(()=>(0,tq.jsx)(pY.Provider,{value:{domain:i,setDomain:n},children:t}),[i,t])},p0=()=>{let e=(0,tG.useContext)(pY);if(void 0===e)throw Error("useTranslationDomain must be used within a TranslationDomainProvider");return e};var p1=i(63824),p2=i(74365),p3=i(59446);let p6=()=>{let e=(0,p3.t)(),{domain:t}=p0(),[i,{isLoading:n}]=(0,p2.sp)(),[r,{isLoading:a}]=(0,p2.pr)(),[l,{isLoading:o}]=(0,p2.Ni)();return{createNewTranslation:async n=>{let r={errorOnDuplicate:!0,translationData:[{key:n,type:"simple",domain:t}]},a=await i({createTranslation:r});return"data"in a?{success:!0,data:{key:r.translationData[0].key,type:r.translationData[0].type,...e.validLanguages.reduce((e,t)=>(e[`_${t}`]="",e),{})}}:("error"in a&&void 0!==a.error&&(0,iX.Ay)(new iX.hD(a.error)),{success:!1})},createLoading:n,deleteTranslationByKey:async e=>{try{let i=await r({key:e,domain:t});return{success:"data"in i}}catch{return(0,iX.Ay)(new iX.$g("Was not able to delete Translation")),{success:!1}}},deleteLoading:a,updateTranslationByKey:async(e,t,i)=>{try{var n;let r="type"===e?[]:[(n=e.substring(1),{translation:t[`_${n}`]??"",locale:n})],a=await l({domain:i,body:{data:[{key:t.key,type:t.type,translationData:r}]}});return{success:"data"in a}}catch{return(0,iX.Ay)(new iX.$g("Was not able to update Translation")),{success:!1}}},updateLoading:o}},p4=e=>{let{info:t,setTranslationRows:i}=e,n=t.row.original.key,{deleteTranslationByKey:r,deleteLoading:a}=p6(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.key!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",className:"translations-table--actions-column",justify:"center",children:(0,tq.jsx)(ni.IconButton,{"data-testid":"translations-delete-button",icon:{value:"trash"},loading:a,onClick:l,type:"link"})})};var p5=i(32930);let p7=e=>{let{language:t,display:i}=e;return(0,tq.jsxs)("div",{style:{display:"flex",alignItems:"center",gap:"8px"},children:[(0,tq.jsx)(p5.i,{value:t}),(0,tq.jsx)("span",{children:i})]})};var p8=i(96316),p9=i(10733),ge=i(88286),gt=i(76673);let gi=e=>{let{translationRow:t,locale:i,...n}=e,{t:r}=(0,iQ.useTranslation)(),[a]=ni.Form.useForm(),[l,o]=(0,tG.useState)(!1),{updateTranslationByKey:s}=p6(),{domain:d}=p0(),[c,f]=(0,tG.useState)("plain-text");(0,tG.useEffect)(()=>{if(null!==t&&n.open){let e=t[`_${i}`]??"",n=(0,gt.jz)(e);a.setFieldsValue({translation:e}),f(n?"html":"plain-text")}},[t,i,n.open]);let u=async e=>{if(null!==t){if(o(!0),void 0!==n.onSave)n.onSave(e.translation);else{let n={...t,[`_${i}`]:e.translation};await s(`_${i}`,n,d)}n.setOpen(!1),a.resetFields(),o(!1)}},m=[{label:r("translations.edit-modal.tab.plain-text"),key:"plain-text",children:(0,tq.jsx)(ni.Form.Item,{name:"translation",children:(0,tq.jsx)(ni.TextArea,{autoSize:{minRows:3,maxRows:15}})})},{label:r("translations.edit-modal.tab.html"),key:"html",children:(0,tq.jsx)(ni.Form.Item,{name:"translation",children:(0,tq.jsx)(r5.q,{context:ai.f.TRANSLATION,height:300})})}],p="html"===c?[m[1]]:m;return(0,tq.jsx)(pC.a,{"data-testid":"translations-edit-modal",footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsxs)(ap.s,{justify:"space-between",style:{width:"100%"},children:[(0,tq.jsx)("div",{children:"html"===c&&(0,tq.jsx)(ni.Button,{"data-testid":"translations-edit-modal-restore-button",onClick:()=>{let e=a.getFieldsValue().translation??"",t=(0,gt.Kq)(e,[]),i=(0,gt.jT)(t);a.setFieldsValue({translation:i.trim()}),f("plain-text")},type:"default",children:r("translations.edit-modal.restore")})}),(0,tq.jsx)(ni.Button,{"data-testid":"translations-edit-modal-save-button",loading:l,onClick:()=>{a.submit()},type:"primary",children:r("translations.edit-modal.save")})]})}),onCancel:()=>{n.setOpen(!1),a.resetFields()},open:n.open,size:"L",title:(0,tq.jsx)(p8.w,{iconName:"edit",children:r("translations.edit-modal.title")}),children:(0,tq.jsx)(ni.Form,{"data-testid":"translations-edit-modal-form",form:a,onFinish:u,children:(0,tq.jsx)(ge.t,{activeKey:c,"data-testid":"translations-edit-modal-tabs",destroyInactiveTabPane:!0,items:p,onChange:e=>{let t=a.getFieldsValue().translation??"";"html"===e&&"plain-text"===c&&(t=t.replace(/\n/g,"
    ")),f(e),a.setFieldsValue({translation:t})}})})})},gn=e=>{let{translationRows:t,setTranslationRows:i,visibleLocales:n,editableLocales:r,domainLanguages:a,sorting:l,onSortingChange:o}=e,{t:s}=(0,iQ.useTranslation)(),{updateTranslationByKey:d}=p6(),{domain:c}=p0(),[f,u]=(0,tG.useState)([]),[m,p]=(0,tG.useState)(!1),[g,h]=(0,tG.useState)(null),[y,v]=(0,tG.useState)(""),b=n.map(e=>{let t=a.find(t=>t.locale===e);return(0,tI.isUndefined)(t)?((0,uj.trackError)(new uj.GeneralError(`Language "${e}" not found in domain languages`)),{language:e,display:e.toUpperCase(),canEdit:r.includes(e)}):{language:t.locale,display:t.displayName,canEdit:r.includes(e)}}).filter(Boolean),x=(0,cH.createColumnHelper)(),[j,w]=(0,tG.useState)(null),k=async(e,t,i)=>await new Promise(n=>{h(void 0!==i?{...e,[t]:i}:e),v(t.replace("_","")),w(()=>n),p(!0)}),T=(0,tG.useMemo)(()=>b.map(e=>x.accessor(`_${e.language}`,{id:`_${e.language}`,header:()=>(0,tq.jsx)(p7,{display:e.display,language:e.language}),meta:{editable:e.canEdit??!1,type:"textarea",callback:!0,editCallback:k,htmlDetection:!0},size:200})),[b,x,k]),S=[{value:"simple",label:s("translations.type-options.simple")},{value:"custom",label:s("translations.type-options.custom")}],C=(0,tG.useMemo)(()=>[x.accessor("key",{header:s("translations.columns.key"),meta:{editable:!1},size:200}),x.accessor("type",{header:s("translations.columns.type"),meta:{type:"select",editable:!0,config:{options:S}},size:100}),...T,x.accessor("actions",{header:s("translations.columns.actions"),size:80,enableSorting:!1,cell:e=>(0,tq.jsx)(p4,{info:e,setTranslationRows:i})})],[T,t,n,r]),D=async e=>{let{columnId:t,value:n,rowData:r}=e,a=r.rowId,l={...r,[t]:n};i(e=>e.map(e=>e.rowId===a?l:e)),u([{columnId:t,rowIndex:a}]);let{success:o}=await d(t,l,c);o?u([]):i(e=>e.map(e=>e.rowId===a?r:e))};return(0,tq.jsxs)("div",{"data-testid":"translations-table",children:[(0,tq.jsx)(ul.x,{autoWidth:!0,columns:C,data:t,dataTestId:"translations-grid",enableSorting:!0,manualSorting:!0,modifiedCells:f,onSortingChange:o,onUpdateCellData:D,resizable:!0,setRowId:e=>e.rowId,sorting:l}),(0,tq.jsx)(gi,{locale:y,onSave:e=>{null!==j&&(j(e),w(null))},open:m,setOpen:e=>{p(e),e||null===j||(j((null==g?void 0:g[`_${y}`])??""),w(null))},translationRow:g})]})};var gr=i(18037);let ga=e=>{let{MandatoryModal:t,closeMandatoryModal:i}=e;return(0,tq.jsx)(t,{footer:(0,tq.jsx)(ni.ModalFooter,{children:(0,tq.jsx)(ni.Button,{onClick:i,type:"primary",children:(0,i6.t)("button.ok")})}),title:(0,i6.t)("translations.add-translation-mandatory-field-missing.title"),children:(0,i6.t)("translations.add-translation-mandatory-field-missing.error")})},gl="translations",go=()=>{let[e]=ni.Form.useForm(),t=(0,iv.useAppDispatch)(),{showModal:i,closeModal:n,renderModal:r}=(0,ni.useModal)({type:"error"}),{createNewTranslation:a,createLoading:l}=p6(),{domain:o,setDomain:s}=p0(),[d,c]=(0,tG.useState)(null),[f,u]=(0,tG.useState)([]),[m,p]=(0,tG.useState)(""),[g,h]=(0,tG.useState)(1),[y,v]=(0,tG.useState)(20),[b,x]=(0,tG.useState)([{id:"key",desc:!1}]),{data:j,isLoading:w,error:k}=(0,p1.e5)(),T=j??[],S=T.find(e=>e.domain===o),C=(null==S?void 0:S.isFrontendDomain)??!1,D=(()=>{let e=(0,m5.J)(),{getDisplayName:t,isLoading:i}=(0,gr.W)();return{languages:(0,tG.useMemo)(()=>{let i=e.allowedLanguagesForEditingWebsiteTranslations??[];return Array.from(new Set(e.allowedLanguagesForViewingWebsiteTranslations??[])).filter(e=>!(0,tI.isNil)(e)&&(0,tI.isString)(e)).map(e=>({locale:e,displayName:t(e),canEdit:i.includes(e),canView:!0})).sort((e,t)=>(e.displayName??"UNKNOWN").localeCompare(t.displayName??"UNKNOWN"))},[e,t]),isLoading:i}})(),I=(()=>{let e=(0,p3.t)(),{getDisplayName:t,isLoading:i}=(0,gr.W)();return{languages:(0,tG.useMemo)(()=>((null==e?void 0:e.availableAdminLanguages)??[]).filter(e=>!(0,tI.isNil)(e)&&(0,tI.isString)(e)).map(e=>({locale:e,displayName:t(e),canEdit:!0,canView:!0})).sort((e,t)=>(e.displayName??"UNKNOWN").localeCompare(t.displayName??"UNKNOWN")),[e,t]),isLoading:i}})(),{languages:M,isLoading:L}=C?D:I,F=(0,tG.useMemo)(()=>({domain:o,body:{filters:{page:g,pageSize:y,columnFilters:m.length>=0?[{type:"search",filterValue:m}]:[],sortFilter:b.length>0?{key:b[0].id.startsWith("_")?b[0].id.substring(1):b[0].id,direction:b[0].desc?"DESC":"ASC"}:[]}}}),[o,g,y,m,b]),{data:E,isLoading:P,isFetching:A,error:N}=(0,p1.d5)(F,{refetchOnMountOrArgChange:!0});(0,tG.useEffect)(()=>{T.length>0&&!T.some(e=>e.domain===o)&&s(T[0].domain)},[T,o]),(0,tG.useEffect)(()=>{void 0!==E&&u(E.items.map(e=>{let t={key:e.key,type:e.type,rowId:(0,af.uuid)()};return null!==e.translations&&"object"==typeof e.translations&&Object.entries(e.translations).forEach(e=>{let[i,n]=e;t[`_${i}`]="string"==typeof n?n:""}),t}))},[E]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(k)||(0,iX.Ay)(new iX.hD(k))},[k]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(N)||(0,iX.Ay)(new iX.hD(N))},[N]);let R=M.filter(e=>e.canView),V=M.filter(e=>e.canEdit),z=async t=>{if(""===t||void 0===t)return void i();let{success:n,data:r}=await a(t);if(n&&void 0!==r){let t={...r,rowId:(0,af.uuid)()};u(e=>[t,...e]),e.resetFields()}};return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(lp.K,{"data-testid":`${gl}-refresh-button`,disabled:P,icon:{value:"refresh"},onClick:()=>{t(p1.FH.util.invalidateTags(uT.qN.DOMAIN_TRANSLATIONS()))}}),(0,tq.jsx)(ni.Pagination,{current:g,onChange:(e,t)=>{h(e),v(t)},showSizeChanger:!0,showTotal:e=>(0,i6.t)("pagination.show-total",{total:e}),total:(null==E?void 0:E.totalItems)??0})]}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("translations.new-translation")}),(0,tq.jsx)(ni.Form,{form:e,layout:"inline",onFinish:e=>{let{translationKey:t}=e;z(t)},children:(0,tq.jsxs)(ap.s,{children:[(0,tq.jsx)(ni.Form.Item,{name:"translationKey",children:(0,tq.jsx)(ni.Input,{"data-testid":`${gl}-key-input`,placeholder:(0,i6.t)("translations.add-translation.key")})}),(0,tq.jsx)(ni.Form.Item,{children:(0,tq.jsx)(ni.IconTextButton,{"data-testid":`${gl}-add-button`,htmlType:"submit",icon:{value:"new"},loading:l,children:(0,i6.t)("translations.new")})})]})}),(0,tq.jsx)(ni.Select,{"data-testid":`${gl}-domain-select`,loading:w,onChange:e=>{s(e),h(1)},options:T.map(e=>({value:e.domain,label:e.domain})),placeholder:(0,i6.t)("translations.select-domain"),style:{minWidth:120},value:o})]}),(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(ni.Select,{allowClear:!0,"data-testid":`${gl}-locale-select`,disabled:0===R.length||L,dropdownStyle:{minWidth:250},filterOption:(e,t)=>{var i;return((null==t||null==(i=t.label)?void 0:i.toString())??"").toLowerCase().includes(e.toLowerCase())},loading:L,maxTagCount:"responsive",mode:"multiple",onChange:e=>{c(e.length>0?e:null)},options:R.map(e=>({value:e.locale,label:e.displayName})),placeholder:(0,i6.t)("translations.show-hide-locale"),showSearch:!0,style:{minWidth:220},value:d??[]}),(0,tq.jsx)(ni.SearchInput,{"data-testid":`${gl}-search-input`,loading:P,onSearch:e=>{p(e),h(1)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]})]}),children:(0,tq.jsx)(uE.U,{loading:P||A||L,margin:{x:"extra-small",y:"none"},none:!P&&!L&&0===f.length,children:(0,tq.jsxs)(ni.Box,{margin:{x:"extra-small",y:"none"},children:[(0,tq.jsx)(gn,{domainLanguages:M,editableLocales:V.map(e=>e.locale),onSortingChange:e=>{x(e),h(1)},setTranslationRows:u,sorting:b,translationRows:f,visibleLocales:d??R.map(e=>e.locale)}),(0,tq.jsx)(ga,{MandatoryModal:r,closeMandatoryModal:n})]})})})},gs=()=>(0,tq.jsx)(pX,{children:(0,tq.jsx)(go,{})}),gd={name:"Translations",id:"translations",component:"translations",config:{translationKey:"widget.translations",icon:{type:"name",value:"translate"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"Translations/Translations",label:"navigation.translations",className:"item-style-modifier",order:100,permission:pw.F.Translations,perspectivePermission:pk.d.Translations,widgetConfig:gd}),tc.kL.get(td.K.widgetManager).registerWidget({name:"translations",component:gs})}});var gc=i(29565),gf=i(87276);let gu=pR.api.enhanceEndpoints({addTagTypes:["Bundle Seo"]}).injectEndpoints({endpoints:e=>({bundleSeoRedirectAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects/add",method:"POST",body:e.bundleSeoRedirectAdd}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectCleanup:e.mutation({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/cleanup",method:"DELETE"}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectsGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects",method:"POST",body:e.body}),providesTags:["Bundle Seo"]}),bundleSeoRedirectUpdateById:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/seo/redirects/${e.id}`,method:"PUT",body:e.bundleSeoRedirectUpdate}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/bundle/seo/redirects/${e.id}`,method:"DELETE"}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectsExport:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/export"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectsImport:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/seo/redirects/import",method:"POST",body:e.body}),invalidatesTags:["Bundle Seo"]}),bundleSeoRedirectListPriorities:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/priorities"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectListStatuses:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/statuses"}),providesTags:["Bundle Seo"]}),bundleSeoRedirectListTypes:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/types"}),providesTags:["Bundle Seo"]}),bundleSeoRobotsTxtGet:e.query({query:()=>({url:"/pimcore-studio/api/bundle/seo/robots-txt"}),providesTags:["Bundle Seo"]}),bundleSeoRobotsTxtUpdate:e.mutation({query:e=>({url:"/pimcore-studio/api/bundle/seo/robots-txt",method:"PUT",body:e.bundleSeoRobotsTxtUpdate}),invalidatesTags:["Bundle Seo"]})}),overrideExisting:!1}),{useBundleSeoRedirectAddMutation:gm,useBundleSeoRedirectCleanupMutation:gp,useBundleSeoRedirectsGetCollectionQuery:gg,useBundleSeoRedirectUpdateByIdMutation:gh,useBundleSeoRedirectDeleteMutation:gy,useBundleSeoRedirectsExportQuery:gv,useBundleSeoRedirectsImportMutation:gb,useBundleSeoRedirectListPrioritiesQuery:gx,useBundleSeoRedirectListStatusesQuery:gj,useBundleSeoRedirectListTypesQuery:gw,useBundleSeoRobotsTxtGetQuery:gk,useBundleSeoRobotsTxtUpdateMutation:gT}=gu,gS=gu.enhanceEndpoints({addTagTypes:[uT.nP.REDIRECTS],endpoints:{bundleSeoRedirectsGetCollection:{providesTags:(e,t,i)=>uT.yc.REDIRECTS()},bundleSeoRedirectDelete:{invalidatesTags:()=>[]},bundleSeoRedirectAdd:{invalidatesTags:()=>[]},bundleSeoRedirectUpdateById:{invalidatesTags:()=>[]},bundleSeoRedirectsExport:{query:()=>({url:"/pimcore-studio/api/bundle/seo/redirects/export",responseHandler:async e=>await e.blob()})},bundleSeoRedirectsImport:{query:e=>{let t=new FormData;return t.append("file",e.body.file),{url:"/pimcore-studio/api/bundle/seo/redirects/import",method:"POST",body:t}},invalidatesTags:()=>[uT.nP.REDIRECTS]}}}),{useBundleSeoRedirectAddMutation:gC,useBundleSeoRedirectCleanupMutation:gD,useBundleSeoRedirectsGetCollectionQuery:gI,useBundleSeoRedirectUpdateByIdMutation:gM,useBundleSeoRedirectDeleteMutation:gL,useBundleSeoRedirectsExportQuery:gF,useBundleSeoRedirectsImportMutation:gE,useBundleSeoRedirectListPrioritiesQuery:gP,useBundleSeoRedirectListStatusesQuery:gA,useBundleSeoRedirectListTypesQuery:gN}=gS,gR=()=>{let[e,{isLoading:t}]=gC(),[i,{isLoading:n}]=gL(),[r,{isLoading:a}]=gM(),[l,{isLoading:o}]=gD();return{createNewRedirect:async t=>{try{let i={type:(null==t?void 0:t.type)??"entire_uri",source:(null==t?void 0:t.source)??null,target:(null==t?void 0:t.target)??null},n=await e({bundleSeoRedirectAdd:i});if(!(0,tI.isUndefined)(n.error))return(0,iX.Ay)(new iX.hD(n.error)),{success:!1};if("data"in n)return{success:!0,data:n.data}}catch{(0,iX.Ay)(new iX.$g("Was not able to create Redirect"))}return{success:!1}},createLoading:t,deleteRedirectById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch{return(0,iX.Ay)(new iX.$g("Was not able to delete Redirect")),{success:!1}}},deleteLoading:n,updateRedirectById:async(e,t)=>{try{let i=await r({id:e,bundleSeoRedirectUpdate:{type:t.type??"",sourceSite:t.sourceSite,source:t.source,targetSite:t.targetSite,target:t.target,statusCode:t.statusCode??301,priority:t.priority??1,regex:t.regex??!1,active:t.active??!0,passThroughParameters:t.passThroughParameters??!1,expiry:t.expiry}});return{success:"data"in i}}catch{return(0,iX.Ay)(new iX.$g("Was not able to update Redirect")),{success:!1}}},updateLoading:a,cleanupRedirects:async()=>{try{return await l(),{success:!0}}catch{return(0,iX.Ay)(new iX.$g("Was not able to cleanup redirects")),{success:!1}}},cleanupLoading:o}},gV=e=>{let{info:t,setRedirectRows:i}=e,n=t.row.original,{deleteRedirectById:r,deleteLoading:a}=gR(),l=async()=>{if(null!==n.id){let{success:e}=await r(n.id);e&&i(e=>e.filter(e=>e.rowId!==n.rowId))}};return(0,tq.jsx)(ni.Flex,{align:"center",className:"redirects-table--actions-column",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},gz=e=>{let{onSortingChange:t,sorting:i,redirectRows:n,setRedirectRows:r}=e,{t:a}=(0,iQ.useTranslation)(),{updateRedirectById:l}=gR(),{data:o}=gN(),{data:s}=gA(),{data:d}=gP(),{getAllSites:c}=(0,c9.u)(),[f,u]=(0,tG.useState)([]),m=c().map(e=>({value:e.id,label:a(e.domain)})),p=(0,tG.useMemo)(()=>{var e;return(null==o||null==(e=o.types)?void 0:e.map(e=>({label:a(e),value:e})))??[]},[o]),g=(0,tG.useMemo)(()=>{var e;return(null==s||null==(e=s.statuses)?void 0:e.map(e=>({label:`${e.code} - ${e.label}`,value:e.code})))??[]},[s]),h=(0,tG.useMemo)(()=>{var e;return(null==d||null==(e=d.priorities)?void 0:e.map(e=>({label:e.toString(),value:e})))??[]},[d]),y=(0,cH.createColumnHelper)(),v=[y.accessor("type",{header:a("redirects.type"),meta:{type:"select",editable:!0,config:{options:p}},size:120}),y.accessor("sourceSite",{header:a("redirects.source-site"),meta:{type:"select",editable:!0,config:{options:m}},size:100}),y.accessor("source",{header:a("redirects.source"),meta:{editable:!0},size:200}),y.accessor("targetSite",{header:a("redirects.target-site"),meta:{type:"select",editable:!0,config:{options:m}},size:100}),y.accessor("target",{header:a("redirects.target"),meta:{editable:!0,type:"element",config:{allowedTypes:["asset","document"],showPublishedState:!1,expectsStringValue:!0,allowTextInput:!0}},size:200}),y.accessor("statusCode",{header:a("redirects.status"),meta:{type:"select",editable:!0,config:{options:g}},size:100}),y.accessor("priority",{header:a("redirects.priority"),meta:{type:"select",editable:!0,config:{options:h}},size:80}),y.accessor("regex",{header:a("redirects.regex"),size:80,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),y.accessor("passThroughParameters",{header:a("redirects.pass-through"),size:110,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),y.accessor("active",{header:a("redirects.active"),size:80,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),y.accessor("expiry",{header:a("redirects.expiry"),size:80,meta:{type:"date",editable:!0}}),y.accessor("actions",{header:a("redirects.actions"),size:80,enableSorting:!1,cell:e=>(0,tq.jsx)(gV,{info:e,setRedirectRows:r})})],b=async e=>{let{columnId:t,value:i,rowData:n}=e,a=n.rowId,o={...n,[t]:i};if(r(e=>e.map(e=>e.rowId===a?o:e)),u([{columnId:t,rowIndex:a}]),null!==o.id){let{success:e}=await l(o.id,o);e?u([]):r(e=>e.map(e=>e.rowId===a?n:e))}};return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:v,data:n,enableSorting:!0,modifiedCells:f,onSortingChange:t,onUpdateCellData:b,resizable:!0,setRowId:e=>e.rowId,sorting:i})},gB=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{csvTargetContainer:i` - border-radius: ${t.borderRadiusLG}px; - outline: 2px dashed ${t.colorBorder}; - background: ${t.controlItemBgHover}; - padding: ${t.paddingLG}px; - max-width: 100%; - min-height: 100px; - cursor: pointer; - transition: all 0.3s ease; - position: relative; - - &:hover { - outline-color: ${t.colorPrimary}; - background: ${t.controlItemBgActive}; - } - - &.dnd--drag-active { - outline-color: ${t.colorPrimary}; - background: ${t.controlItemBgActive}; - } - - &.dnd--drag-valid { - outline-color: ${t.colorSuccess}; - background: ${t.colorSuccessBg}; - } - - &.dnd--drag-error { - outline-color: ${t.colorError}; - background: ${t.colorErrorBg}; - } - - .csv-target-title { - text-align: center; - color: ${t.colorTextSecondary}; - } - - .icon-container { - color: ${t.colorIcon}; - } - `,uploadedFile:i` - - .file-name { - font-weight: ${t.fontWeightStrong}; - } - - .file-size { - color: ${t.colorTextSecondary}; - font-size: ${t.fontSizeSM}px; - } - - .icon-button--theme-primary { - margin-top: 3px; - } - `}}),{Dragger:gO}=ig.Upload,gK=e=>{let{open:t,onCancel:i,onImport:n,loading:r=!1}=e,[a,l]=(0,tG.useState)(null),{styles:o}=gB(),s=(0,tG.useRef)(null);(0,tG.useEffect)(()=>{t&&(l(null),null!==s.current&&(s.current.value=""))},[t]);let d=e=>{"text/csv"===e.type||"application/csv"===e.type||e.name.endsWith(".csv")?l(e):(0,uj.trackError)(new uj.GeneralError("File rejected - not a CSV"))};return(0,tq.jsxs)(ni.Modal,{footer:(0,tq.jsxs)(ni.ModalFooter,{divider:!0,justify:null===a?"space-between":"end",children:[null===a&&(0,tq.jsx)(ni.IconTextButton,{disabled:r,icon:{value:"upload-import"},onClick:()=>{var e;null==(e=s.current)||e.click()},children:(0,i6.t)("redirects.browse-files")}),(0,tq.jsx)(ig.Button,{disabled:null===a||r,loading:r,onClick:()=>{null!==a&&n(a)},type:"primary",children:(0,i6.t)("redirects.upload")})]}),onCancel:()=>{l(null),i()},open:t,size:"M",title:(0,i6.t)("redirects.csv-import-modal.redirects-import"),children:[(0,tq.jsx)("input",{accept:".csv",disabled:r,onChange:e=>{var t;let i=null==(t=e.target.files)?void 0:t[0];void 0!==i&&d(i)},ref:s,style:{display:"none"},type:"file"}),null===a?(0,tq.jsx)(gO,{...{name:"file",multiple:!1,accept:".csv,text/csv,application/csv",beforeUpload:e=>(console.log("File dropped/selected:",e),d(e),!1),showUploadList:!1,disabled:r},children:(0,tq.jsxs)(ap.s,{align:"center",gap:"mini",justify:"center",style:{padding:"20px"},vertical:!0,children:[(0,tq.jsx)("div",{className:"icon-container",children:(0,tq.jsxs)(ap.s,{align:"center",gap:"mini",justify:"center",children:[(0,tq.jsx)(r9.I,{options:{height:20,width:20},value:"new"}),(0,tq.jsx)(r9.I,{options:{height:20,width:20},value:"drop-target"})]})}),(0,tq.jsx)("div",{className:"csv-target-title",children:(0,i6.t)("redirects.import-drag-drop")})]})}):(0,tq.jsx)("div",{className:o.uploadedFile,children:(0,tq.jsxs)(ap.s,{align:"start",gap:10,children:[(0,tq.jsx)(ap.s,{children:(0,tq.jsxs)("div",{children:[(0,tq.jsx)("div",{className:"file-name",children:a.name}),(0,tq.jsx)("div",{className:"file-size",children:(e=>{if(0===e)return"0 Bytes";let t=Math.floor(Math.log(e)/Math.log(1024));return parseFloat((e/Math.pow(1024,t)).toFixed(2))+" "+["Bytes","KB","MB","GB"][t]})(a.size)})]})}),!r&&(0,tq.jsx)(ni.IconButton,{icon:{value:"close"},iconPosition:"start",onClick:()=>{l(null),null!==s.current&&(s.current.value="")},type:"link",variant:"minimal"})]})})]})},g_=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{statisticsContainer:i` - .statistics-list { - padding-top: 10px; - padding-left: 5px; - } - - .statistic-normal { - padding-right: 28px; - width: 60px; - } - - .statistic-bold { - font-weight: ${t.fontWeightStrong}; - color: ${t.colorText}; - padding-right: 12px; - width: 60px; - } - - .statistic-item.errored { - color: ${t.colorError}; - - .statistic-bold { - color: ${t.colorError}; - } - } - `,errorSection:i` - margin-top: ${t.marginXS}px; - - .error-list { - background: ${t.colorErrorBg}; - border: 1px solid ${t.colorErrorBorder}; - border-radius: ${t.borderRadius}px; - max-height: 200px; - overflow-y: auto; - - - .error-item { - padding: ${t.paddingXS}px 0; - border-bottom: 1px solid ${t.colorErrorBorder}; - - .pimcore-icon.pimcore-icon-alert.anticon.error-icon { - margin: 3px; - margin-left: 10px; - margin-right: 5px; - color: ${t.colorError}; - - } - - &:last-child { - border-bottom: none; - } - - .error-line { - font-weight: ${t.fontWeightStrong}; - width: 50px; - } - - .error-message { - margin-left: ${t.marginXS}px; - margin-right: 8px; - } - } - } - `}}),gH=e=>{let{open:t,onClose:i,results:n}=e,{styles:r}=g_();if(null===n)return(0,tq.jsx)(tq.Fragment,{});let a=n.errored>0&&"object"==typeof n.errors&&Object.keys(n.errors).length>0;return(0,tq.jsxs)(ni.Modal,{footer:null,onCancel:i,open:t,size:"M",title:(0,i6.t)("redirects.csv-import-modal.redirects-import"),children:[(0,tq.jsx)("div",{className:r.statisticsContainer,children:(0,tq.jsxs)("div",{className:"statistics-list",children:[(0,tq.jsxs)(ni.Flex,{children:[(0,tq.jsx)("div",{className:"statistic-normal",children:(0,i6.t)("redirects.csv-import-results.total")}),(0,tq.jsx)("div",{children:n.total})]}),(0,tq.jsxs)(ni.Flex,{children:[(0,tq.jsx)("div",{className:"statistic-bold",children:(0,i6.t)("redirects.csv-import-results.created")}),(0,tq.jsx)("div",{className:"statistic-bold",children:n.created})]}),(0,tq.jsxs)(ni.Flex,{children:[(0,tq.jsx)("div",{className:"statistic-bold",children:(0,i6.t)("redirects.csv-import-results.updated")}),(0,tq.jsx)("div",{className:"statistic-bold",children:n.updated})]}),n.errored>0&&(0,tq.jsxs)(ni.Flex,{className:lx()("statistic-item","errored"),children:[(0,tq.jsx)("div",{className:"statistic-bold",children:(0,i6.t)("redirects.csv-import-results.errored")}),(0,tq.jsx)("div",{className:"statistic-bold",children:n.errored})]})]})}),a&&(0,tq.jsx)("div",{className:r.errorSection,children:(0,tq.jsx)("div",{className:"error-list",children:(0,tq.jsxs)(ni.Flex,{className:"error-item",gap:8,justify:"space-between",children:[(0,tq.jsx)(r9.I,{className:"error-icon",options:{width:20,height:20},value:"alert"}),(0,tq.jsx)(ni.Flex,{vertical:!0,children:Object.entries(n.errors).map(e=>{let[t,i]=e;return(0,tq.jsxs)(ni.Flex,{children:[(0,tq.jsxs)("span",{className:"error-line",children:[(0,i6.t)("redirects.csv-import-results.line",{line:t}),":"]}),(0,tq.jsx)("span",{className:"error-message",children:"string"==typeof i?i:JSON.stringify(i)})]},t)})})]})})})]})},g$=e=>{let{currentPage:t,redirectRowsLength:i,redirectsFetching:n,totalItems:r,onPageChange:a,onRefresh:l}=e,{t:o}=(0,iQ.useTranslation)(),s=(0,iv.useAppDispatch)(),[d,c]=(0,tG.useState)(!1),[f,u]=(0,tG.useState)(!1),[m,p]=(0,tG.useState)(null),[g,h]=(0,tG.useState)(!1),{cleanupRedirects:y,cleanupLoading:v}=gR(),[b,{isLoading:x}]=gE(),j=async()=>{let{success:e}=await y();e&&l()},w=async()=>{try{h(!0);let e=await s(gS.endpoints.bundleSeoRedirectsExport.initiate());if("data"in e&&e.data instanceof Blob){let t=window.URL.createObjectURL(e.data),i=document.createElement("a");i.href=t,i.download=`redirects-export-${new Date().toISOString().split("T")[0]}.csv`,i.style.display="none",document.body.appendChild(i),i.click(),document.body.removeChild(i),window.URL.revokeObjectURL(t)}else(0,iX.Ay)(new iX.$g("Export failed: No blob data received"))}catch{(0,iX.Ay)(new iX.$g("Failed to export redirects"))}finally{h(!1)}},k=async e=>{try{let t=await b({body:{file:e}}).unwrap();p(t),c(!1),u(!0),l()}catch{(0,iX.Ay)(new iX.$g("Failed to import redirects"))}};return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(ap.s,{align:"center",justify:"start",style:{width:"100%",height:"100%"},children:(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ni.IconTextButton,{disabled:i<1||v||n,icon:{value:"trash"},loading:v,onClick:j,type:"link",children:o("redirects.clean-up")}),(0,tq.jsx)(ni.IconTextButton,{disabled:i<1||n||g,icon:{value:"download"},loading:g,onClick:w,type:"link",children:o("redirects.csv-export")}),(0,tq.jsx)(ni.IconTextButton,{disabled:n||x,icon:{value:"import-csv"},loading:x,onClick:()=>{c(!0)},type:"link",children:o("redirects.csv-import")})]})}),r>0?(0,tq.jsxs)(ni.Split,{children:[(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:n,icon:{value:"refresh"},onClick:l,variant:"minimal"})}),(0,tq.jsx)(ni.Pagination,{current:t,onChange:(e,t)=>{a(e,t)},showSizeChanger:!0,showTotal:e=>o("pagination.show-total",{total:e}),total:r})]}):(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:n,icon:{value:"refresh"},onClick:l})})]}),(0,tq.jsx)(gK,{loading:x,onCancel:()=>{c(!1)},onImport:k,open:d}),(0,tq.jsx)(gH,{onClose:()=>{u(!1)},open:f,results:m})]})},gW=e=>{let{redirectsLoading:t,createLoading:i,redirectsFetching:n,onBeginnerClick:r,onExpertClick:a,onSearch:l}=e,{t:o}=(0,iQ.useTranslation)();return(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:o("widget.redirects")}),(0,tq.jsx)(ni.IconTextButton,{disabled:t||i||n,icon:{value:"new"},onClick:r,children:o("redirects.beginner")}),(0,tq.jsx)(ni.IconTextButton,{disabled:t||i||n,icon:{value:"new"},loading:i,onClick:a,children:o("redirects.expert")})]}),(0,tq.jsx)(ni.SearchInput,{loading:n||t,onSearch:l,placeholder:o("redirects.search"),withPrefix:!1,withoutAddon:!1})]})},gq=e=>{var t;let{open:i,setOpen:n,createRedirect:r}=e,{t:a}=(0,iQ.useTranslation)(),[l]=tJ.lV.useForm(),[o,s]=(0,tG.useState)(!1),{data:d}=gN(),c=(null==d||null==(t=d.types)?void 0:t.map(e=>({label:a(e),value:e})))??[],f=async e=>{s(!0),await r({type:e.type,source:e.path,target:e.target})&&(n(!1),l.resetFields()),s(!1)};return(0,tq.jsx)(pC.a,{cancelButtonProps:{style:{display:"none"}},okButtonProps:{loading:o},okText:a("redirects.beginner-modal.create"),onCancel:()=>{n(!1),l.resetFields()},onOk:()=>{l.submit()},open:i,size:"M",title:(0,tq.jsx)(p8.w,{iconName:"new",children:a("redirects.beginner-modal.title")}),children:(0,tq.jsxs)(tJ.lV,{form:l,layout:"vertical",onFinish:f,children:[(0,tq.jsx)(tJ.lV.Item,{label:a("redirects.beginner-modal.type"),name:"type",rules:[{required:!0,message:a("redirects.beginner-modal.type.required")}],children:(0,tq.jsx)(t8.l,{"data-testid":"redirects-type-select",options:c,placeholder:a("redirects.beginner-modal.type")})}),(0,tq.jsx)(tJ.lV.Item,{label:a("redirects.beginner-modal.path"),name:"path",rules:[{required:!0,message:a("redirects.beginner-modal.path.required")}],children:(0,tq.jsx)(aR.p,{placeholder:a("redirects.beginner-modal.path")})}),(0,tq.jsx)(tJ.lV.Item,{label:a("redirects.beginner-modal.target"),name:"target",rules:[{required:!0,message:a("redirects.beginner-modal.target.required")}],children:(0,tq.jsx)(aR.p,{placeholder:a("redirects.beginner-modal.target")})})]})})},gG=()=>{let e=(0,iv.useAppDispatch)(),[t,i]=(0,tG.useState)(1),[n,r]=(0,tG.useState)(50),[a,l]=(0,tG.useState)([{id:"source",desc:!1}]),[o,s]=(0,tG.useState)(""),[d,c]=(0,tG.useState)(!1),{createNewRedirect:f,createLoading:u}=gR(),[m,p]=(0,tG.useState)([]),{data:g,isLoading:h,isFetching:y,error:v}=gI((0,tG.useMemo)(()=>({body:{filters:{page:t,pageSize:n,columnFilters:""!==o?[{type:"search",filterValue:o}]:[]},sortFilter:a.length>0?{key:a[0].id.startsWith("_")?a[0].id.substring(1):a[0].id,direction:a[0].desc?"DESC":"ASC"}:[]}}),[t,n,o,a]),{refetchOnMountOrArgChange:!0}),b=null==g?void 0:g.items,x=async e=>{let t=(0,af.uuid)(),i={id:Date.now(),type:(null==e?void 0:e.type)??"entire_uri",source:(null==e?void 0:e.source)??null,target:(null==e?void 0:e.target)??null,sourceSite:null,targetSite:null,statusCode:301,priority:1,regex:!1,active:!0,passThroughParameters:!1,expiry:null,creationDate:Date.now(),modificationDate:Date.now(),userOwner:null,userModification:null,additionalAttributes:void 0,rowId:t};p(e=>[i,...e]);let{success:n,data:r}=await f(e);return n&&!(0,tI.isUndefined)(r)?p(e=>e.map(e=>e.rowId===t?{...r,rowId:(0,af.uuid)()}:e)):p(e=>e.filter(e=>e.rowId!==t)),n};(0,tG.useEffect)(()=>{(0,tI.isUndefined)(b)||p(b.map(e=>({...e,rowId:(0,af.uuid)()})))},[b]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(v)||(0,iX.Ay)(new iX.hD(v))},[v]);let j=h||y;return(0,tq.jsxs)(pl.s,{renderToolbar:(0,tq.jsx)(g$,{currentPage:t,onPageChange:(e,t)=>{i(e),r(t)},onRefresh:()=>{e(gS.util.invalidateTags(pR.invalidatingTags.REDIRECTS()))},redirectRowsLength:m.length,redirectsFetching:j,totalItems:(null==g?void 0:g.totalItems)??0}),renderTopBar:(0,tq.jsx)(gW,{createLoading:u,onBeginnerClick:()=>{c(!0)},onExpertClick:async()=>{await x()},onSearch:e=>{s(e),i(1)},redirectsFetching:j,redirectsLoading:h}),children:[(0,tq.jsx)(uE.U,{loading:j,margin:{x:"extra-small",y:"none"},none:!j&&0===m.length,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(gz,{onSortingChange:e=>{l(e),i(1)},redirectRows:m,setRedirectRows:p,sorting:a})})}),(0,tq.jsx)(gq,{createRedirect:x,open:d,setOpen:c})]})},gU={name:"Redirects",id:"redirects",component:"redirects",config:{translationKey:"widget.redirects",icon:{type:"name",value:"redirect"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Redirects",label:"navigation.redirects",className:"item-style-modifier",order:600,permission:pw.F.Redirects,perspectivePermission:pk.d.Redirects,widgetConfig:gU}),tc.kL.get(td.K.widgetManager).registerWidget({name:"redirects",component:gG})}});var gQ=i(93966),gJ=i(96317),gZ=i(14490);let gY=()=>{let e=(0,iv.useAppDispatch)(),{tags:t,tagsFetching:i,tagsLoading:n,rootTagFolder:r,getTag:a,tagDeletion:l,setTagFilter:o,handleTagUpdate:s,handleTagCreation:d}=(()=>{let[e,t]=(0,tG.useState)([]),i={id:0,text:"All Tags",hasChildren:!1,children:[],path:"/All Tags",parentId:0,iconName:"folder"},n=(0,uI.J)(),[r,a]=(0,tG.useState)(""),{data:l,isFetching:o,isLoading:s}=(0,gZ.uQ)({page:1,pageSize:9999,filter:r}),[d]=(0,gZ.A)(),[c]=(0,gZ.ei)(),[f]=(0,gZ.xX)();(0,tG.useEffect)(()=>{var e;let i,n;t((e=(null==l?void 0:l.items)??[],i=[],(n=e=>{for(let t of e)i.push(t),(0,tI.isNil)(t.children)||n(t.children)})(e),i))},[l]);let u=t=>[i,...e].find(e=>e.id.toString()===t)??void 0,m=async(e,t)=>{let i=await d({id:e,updateTagParameters:t});"data"in i&&n.success({content:(0,i6.t)("tag-configuration.successful-update"),type:"success",duration:3}),(0,tI.isEmpty)((0,tI.get)(i,"error.data.error"))||(0,iX.Ay)(new iX.$g(`Error updating tag: ${(0,tI.get)(i,"error.data.error")}`)),null!=i.error&&(0,iX.Ay)(new iX.$g("Error updating tag"))},p=async(e,t,i)=>{let n=u(e.toString());if(null==n)(0,iX.Ay)(new iX.$g(`Tag with id ${e} not found`));else{let r={parentId:t,name:i??n.text};await m(e,r)}},g=async e=>{let t=await f({createTagParameters:e});"data"in t&&n.success({content:(0,i6.t)("tag-configuration.successful-add"),type:"success",duration:3}),(0,tI.isEmpty)((0,tI.get)(t,"error.data.error"))||(0,iX.Ay)(new iX.$g(`Error creating tag: ${(0,tI.get)(t,"error.data.error")}`)),null!=t.error&&(0,iX.Ay)(new iX.$g("Error creating tag"))},h=async(e,t)=>{await g({parentId:t,name:e})},y=async e=>{let t=await c({id:e});"data"in t&&n.success({content:(0,i6.t)("tag-configuration.successful-deletion"),type:"success",duration:3}),(0,tI.isEmpty)((0,tI.get)(t,"error.data.error"))||(0,iX.Ay)(new iX.$g(`Error deleting tag: ${(0,tI.get)(t,"error.data.error")}`)),null!=t.error&&(0,iX.Ay)(new iX.$g("Error deleting tag"))};return{tags:(null==l?void 0:l.items)??[],setTagFilter:a,tagsFetching:o,tagsLoading:s,handleTagUpdate:p,handleTagCreation:h,tagDeletion:y,getTag:u,rootTagFolder:i}})(),{confirm:c,input:f}=(0,aB.Vl)(),[u,m]=(0,tG.useState)(""),[p,g]=tU().useState([0]);(0,tG.useEffect)(()=>{i&&void 0===u?h():y()},[i]);let h=()=>{m(r.id.toString())},y=()=>{m(void 0)},v=(0,gJ.M)({tags:t,loadingNodes:void 0!==u?new Set([u]):new Set,actions:[{key:"add-tag",icon:"new"},{key:"rename-tag",icon:"edit"},{key:"delete-tag",icon:"trash"}],rootActions:[{key:"add-tag",icon:"new"}]}),b=(e,t)=>{let i,n=null==(i=a(e))?void(0,iX.Ay)(new iX.$g(`Tag with Id ${e} not found`)):i;if(null!=n)switch(t){case"add-tag":f({title:(0,i6.t)("tag-configuration.new-tag"),label:(0,i6.t)("tag-configuration.name"),rule:{required:!0,message:"Please enter a tag name"},okText:(0,i6.t)("tag-configuration.create"),onOk:async e=>{m(n.id.toString()),await d(e,n.id)}});break;case"rename-tag":f({title:(0,i6.t)("tag-configuration.rename"),label:(0,i6.t)("tag-configuration.name"),rule:{required:!0,message:"Please enter a tag name"},okText:(0,i6.t)("tag-configuration.save"),initialValue:n.text,onOk:async e=>{m(n.id.toString()),await s(n.id,n.parentId,e)}});break;case"delete-tag":c({title:n.hasChildren?(0,i6.t)("tag-configuration.warn-delete-parent-tag-modal-title"):(0,i6.t)("tag-configuration.warn-delete-tag-modal-title"),content:n.hasChildren?(0,i6.t)("tag-configuration.warn-delete-parent-tag-modal-text"):(0,i6.t)("tag-configuration.warn-delete-tag-modal-text"),okText:n.hasChildren?(0,i6.t)("tag-configuration.delete-parent-tag"):(0,i6.t)("tag-configuration.delete-tag"),cancelText:(0,i6.t)("tag-configuration.cancel"),onOk:async()=>{m(n.id.toString()),await l(n.id)}})}};return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{theme:"secondary",children:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},onClick:()=>{h(),e(pH.util.invalidateTags(uT.qN.AVAILABLE_TAGS()))}})}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.tag-configuration")}),(0,tq.jsx)(m4.J,{disabled:void 0!==u,icon:{value:"new"},onClick:()=>{b(r.id.toString(),"add-tag")},children:(0,i6.t)("tag-configuration.new")})]}),(0,tq.jsx)(ps.D,{loading:i,onSearch:e=>{o(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tq.jsx)(uE.U,{loading:n,margin:{x:"extra-small",y:"none"},none:0===t.length,children:(0,tq.jsx)(gQ.l,{checkStrictly:!0,defaultExpandedKeys:p,draggable:!0,onActionsClick:b,onDragAndDrop:async e=>{m(e.dragNode.key.toString()),await s(Number(e.dragNode.key),Number(e.node.key))},onExpand:e=>{g(e)},treeData:v,withCustomSwitcherIcon:!0})})})},gX={name:"Tag Configuration",id:"tag-configuration",component:"tag-configuration",config:{translationKey:"widget.tag-configuration",icon:{type:"name",value:"tag-configuration"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/Tag Configuration",dividerBottom:!0,label:"navigation.tag-configuration",className:"item-style-modifier",order:1e3,permission:pw.F.TagsConfiguration,perspectivePermission:pk.d.TagConfiguration,widgetConfig:gX}),tc.kL.get(td.K.widgetManager).registerWidget({name:"tag-configuration",component:gY})}});let g0=()=>{let{t:e}=(0,iQ.useTranslation)(),{styles:t}=m0(),{navItems:i}=(0,m2.A)(),{openMainWidget:n}=(0,m3.J)(),[r,a]=tU().useState(!1),{input:l}=(0,aB.Vl)(),{openElementByPathOrId:o}=(0,pe.x)(),[s,d]=tU().useState([]),c=e=>!0===e?(0,tq.jsx)(m1.c,{className:"main-nav__list-item-divider",size:"mini"}):null,f=function(t,i){var r,l;let o,u,m,p,g=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0,h=!(0,tI.isEmpty)(t.children),y=h||!(0,tI.isUndefined)(t.widgetConfig)||!(0,tI.isUndefined)(t.useCustomMainNavItem),v=!(0,tI.isUndefined)(t.perspectivePermissionHide)&&(0,m6.a)(t.perspectivePermissionHide),b=!(0,tI.isUndefined)(t.hidden)&&t.hidden();if(!y||v||b)return(0,tq.jsx)(tq.Fragment,{});let x=e=>(0,tq.jsx)(r9.I,{className:s.includes(i)?void 0:"plain-icon",options:s.includes(i)?{width:16,height:16}:void 0,sphere:s.includes(i),value:e}),j=h?null==(r=t.children)?void 0:r.find(e=>!(0,tI.isEmpty)(e.groupIcon)):void 0;return(0,tq.jsxs)("li",{className:`main-nav__list-item ${s.includes(i)?"is-active":""} ${t.className??""}`,"data-testid":`nav-item-${(0,pi.Gc)(t.path)}`,children:[(0,tI.isUndefined)(t.useCustomMainNavItem)?(0,tq.jsxs)(tq.Fragment,{children:[c(t.dividerTop),(0,tq.jsxs)("button",{className:"main-nav__list-btn","data-testid":`nav-button-${(0,pi.Gc)(t.path)}`,onClick:()=>{if(h){if(i.includes("-")){let e=i.substring(0,i.length-1);d([...s.filter(t=>!t.startsWith(e)),i])}i.includes("-")||d(s.includes(i)?s.filter(e=>e!==i):[i])}else(0,tI.isUndefined)(t.widgetConfig)||(n(t.widgetConfig),a(!1))},children:[!(0,tI.isUndefined)(t.icon)&&x(t.icon),!(0,tI.isUndefined)(null==j?void 0:j.groupIcon)&&(0,tI.isUndefined)(t.icon)&&x(null==j?void 0:j.groupIcon),(0,tq.jsx)(at.h,{html:e(`${t.label}`)}),(o=!(0,tI.isEmpty)(t.children),u=s.includes(i),m=i.includes("-"),o&&(u||m)&&(0,tq.jsx)(r9.I,{className:"main-nav__list-chevron-btn-icon",options:{height:18,width:18},value:"chevron-right"}))]}),c(t.dividerBottom)]}):(p=t.useCustomMainNavItem(),(0,tq.jsxs)(tq.Fragment,{children:[c(t.dividerTop),(0,tq.jsxs)("button",{className:"main-nav__list-btn","data-testid":`nav-button-${(0,pi.Gc)(t.path)}`,onClick:()=>{var e;null==(e=p.onClick)||e.call(p),a(!1)},children:[!(0,tI.isUndefined)(t.icon)&&x(t.icon),(0,tq.jsx)(at.h,{html:e(`${t.label}`)})]}),c(t.dividerBottom)]})),h?(0,tq.jsx)("div",{className:"main-nav__list-detail","data-testid":`nav-submenu-${(0,pi.Gc)(t.path)}`,children:(0,tq.jsx)("div",{className:"main-nav__list-detail-scroll-container",children:(0,tq.jsx)("div",{className:"main-nav__list-detail-scroll",children:(0,tq.jsxs)("ul",{className:`main-nav__list main-nav__list--level-${g+1}`,"data-testid":`nav-list-level-${g+1}`,children:["QuickAccess"===t.path&&(0,tq.jsx)("div",{className:"main-nav__list-detail-sub-header main-nav__list-detail-divider",children:e("navigation.power-shortcuts")}),null==(l=t.children)?void 0:l.map((e,t)=>f(e,`${i}-${t}`,g))]})})})}):null]},t.path)},u=(0,tG.useRef)(null),m=e=>{null===u.current||u.current.contains(e.target)||a(!1)},p=(0,tG.useRef)(null);(0,tG.useEffect)(()=>{if(r&&(document.addEventListener("click",m),null!==p.current)){let e=Array.from(document.querySelectorAll(".main-nav__list")).reduce((e,t)=>Math.max(e,t.scrollHeight),0);p.current.style.height=`${e}px`}return()=>{document.removeEventListener("click",m)}},[r]);let g=t=>{l({title:e(`${pt.w[t].title}`),label:e(`${pt.w[t].label}`),rule:{required:!0,message:e(`${pt.w[t].requiredMessage}`)},okText:e(`${pt.w[t].okText}`),cancelText:e(`${pt.w[t].cancelText}`),onOk:async e=>{await o(e,t)}})};return(0,m9.Z)(()=>{g("data-object")},"openObject",!0,pw.F.Objects),(0,m9.Z)(()=>{g("document")},"openDocument",!0,pw.F.Documents),(0,m9.Z)(()=>{g("asset")},"openAsset",!0,pw.F.Assets),(0,m9.Z)(()=>{n(gd)},"sharedTranslations",!0,pw.F.Translations),(0,m9.Z)(()=>{n(pT)},"recycleBin",!0,pw.F.RecycleBin),(0,m9.Z)(()=>{n(pJ)},"notesEvents",!0,pw.F.NotesAndEvents),(0,m9.Z)(()=>{n(gc.S)},"users",!0,pw.F.Users),(0,m9.Z)(()=>{n(gc.J)},"roles",!0,pw.F.Users),(0,m9.Z)(()=>{n(gf.z)},"reports",!0,pw.F.Reports),(0,m9.Z)(()=>{n(gf.h)},"customReports",!0,pw.F.ReportsConfig),(0,m9.Z)(()=>{n(pZ.V)},"applicationLogger",!0,pw.F.ApplicationLogger),(0,m9.Z)(()=>{n(gU)},"redirects",!0,pw.F.Redirects),(0,m9.Z)(()=>{n(gX)},"tagConfiguration",!0,pw.F.TagsConfiguration),(0,tq.jsxs)("div",{ref:u,children:[(0,tq.jsx)(lp.K,{"data-testid":"main-nav-trigger",icon:{value:"menu"},onClick:()=>{a(!r)},type:"text"}),(0,tq.jsx)(mX.AnimatePresence,{children:(0,tq.jsx)(mX.motion.div,{animate:{opacity:1},exit:{opacity:0},initial:{opacity:+!r},children:r?(0,tq.jsxs)("div",{className:["main-nav",t.mainNav].join(" "),"data-testid":"main-nav-menu",children:[(0,tq.jsx)("ul",{className:"main-nav__list main-nav__list--level-0","data-testid":"nav-list-main",ref:p,children:i.map((e,t)=>f(e,`${t}`))}),(0,tq.jsx)(m1.c,{className:"main-nav__divider"}),(0,tq.jsx)(m8,{setIsOpen:a})]}):null},r?"open":"closed")})]})},g1=(0,tG.createContext)({searchTerm:""}),g2=e=>{let{searchTerm:t,children:i}=e;return(0,tG.useMemo)(()=>(0,tq.jsx)(g1.Provider,{value:{searchTerm:t},children:i}),[t,i])};var g3=i(38965);g3.FH.enhanceEndpoints({endpoints:{simpleSearchGet:{keepUnusedDataFor:5}}});let{useSimpleSearchGetQuery:g6}=g3.FH,g4=(0,tG.createContext)(void 0),g5=e=>{let[t,i]=(0,tG.useState)(!1),[n,r]=(0,tG.useState)("all");return(0,tG.useMemo)(()=>(0,tq.jsx)(g4.Provider,{value:{open:t,setOpen:i,activeKey:n,setActiveKey:r},children:e.children}),[t,n])},g7=()=>{let e=(0,tG.useContext)(g4);if(void 0===e)throw Error("useSearch must be used within a SearchProvider");return{activeKey:e.activeKey,setActiveKey:e.setActiveKey,isOpen:e.open,open:t=>{void 0!==t&&e.setActiveKey(t),e.setOpen(!0)},close:()=>{e.setOpen(!1)}}};var g8=i(68194);let g9=e=>{let{item:t,active:i,...n}=e,{icon:r,path:a}=t,{openElement:l,mapToElementType:o}=(0,nt.K)(),{close:s}=g7(),d=lx()("hover",{active:!0===i});return(0,tq.jsx)(pa.a,{...n,className:d,onClick:()=>{let e=o(t.elementType);void 0!==e&&(l({id:t.id,type:e}),s())},padding:"mini",children:(0,tq.jsxs)(ap.s,{align:"center",gap:"mini",children:[(0,tq.jsx)(r9.I,{...r}),(0,tq.jsx)(g8.C,{ellipsis:!i,value:a})]})})};var he=i(47449),ht=i(85274);let hi=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{keyValueList:i` - border: 0; - border-collapse: collapse; - - tr td { - padding: ${t.Table.cellPaddingBlockSM}px; - border: 0; - border-bottom: 1px solid ${t.colorBorderSecondary}; - - &:first-child { - min-width: 100px; - } - } - - tr:last-of-type td { - border-bottom: 0; - } - `}}),hn=["creationDate","modificationDate"],hr=["documentData","objectData"],ha=e=>{let{items:t,skipEmpty:i=!0}=e,{t:n}=(0,iQ.useTranslation)(),{styles:r}=hi(),a=[],l=e=>i&&((0,a3.Po)(e)||(0,tI.isEqual)(e,!1));return t.forEach(e=>{if(!l(null==e?void 0:e.value))if(hr.includes(e.key)){if((0,tI.isObject)(e.value)){let t=i=>{Object.entries(i).forEach(i=>{let[n,r]=i;l(r)||((0,tI.isObject)(r)?t(r):a.push({key:n,value:r,withoutTranslate:"objectData"===e.key}))})};t(e.value)}}else a.push(e)}),(0,tq.jsx)("table",{className:r.keyValueList,children:a.map(e=>{let t;return t=null==e?void 0:e.value,hn.includes(e.key)&&!(0,tI.isObject)(null==e?void 0:e.value)&&(t=(0,pP.r6)({timestamp:(null==e?void 0:e.value)??null,dateStyle:"short",timeStyle:"short"})),(0,tq.jsxs)("tr",{children:[(0,tq.jsx)("td",{children:(0,tq.jsx)(n5.E,{children:(null==e?void 0:e.withoutTranslate)===!0?e.key:n(`modal-search.field.${e.key}`)})}),(0,tq.jsx)("td",{children:(0,tq.jsx)(n5.E,{children:0===t?t:(0,tq.jsx)(at.h,{html:t??""})})})]},e.key)})})};var hl=i(82226),ho=i(51038),hs=i(52981);let hd=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{detailContent:i` - max-height: 400px; - `,searchResultImage:i` - min-height: 100px; - max-height: 200px; - `,searchResultDocument:i` - iframe { - width: 100%; - height: 100%; - } - `}}),hc=["elementType","type"],hf=["image","video","document"],hu=e=>{let t,i,{item:n}=e,{id:r,elementType:a}=n,{isError:l,error:o,isLoading:s,data:d}=(0,g3.Qw)({id:r,elementType:(0,ou.sv)(a)}),{styles:c}=hd();if((0,tG.useEffect)(()=>{l&&(0,iX.Ay)(new iX.hD(o))},[l]),s)return(0,tq.jsx)(uE.U,{loading:!0});if(l||void 0!==o)return(0,tq.jsx)(uE.U,{none:!0,noneOptions:{text:"data not available"}});let{additionalAttributes:f,...u}=d,m=Object.entries(u).filter(e=>{let[t]=e;return!hc.includes(t)}).map(e=>{let[t,i]=e;return{key:t,value:i}});return(0,tq.jsxs)(uE.U,{className:c.detailContent,children:[(t=null==n?void 0:n.type,i=null==n?void 0:n.path,hf.includes(t)&&!(0,a3.Po)(i)?(0,tq.jsxs)(ap.s,{justify:"center",children:["image"===t&&(0,tq.jsx)(hl._,{className:c.searchResultImage,preview:!1,src:i}),"video"===t&&(0,tq.jsx)(ho.$,{sources:[{src:i}],width:250}),"document"===t&&(0,tq.jsx)(hs.l,{className:c.searchResultDocument,src:i})]}):null),(0,tq.jsx)(ha,{items:m})]})},hm=()=>(0,tq.jsx)(uE.U,{children:(0,tq.jsx)(ap.s,{align:"center",className:"h-full w-full",justify:"center",children:(0,tq.jsx)(he.R,{text:"No item selected"})})}),hp=e=>{let{item:t}=e,i=void 0!==t;return(0,tG.useMemo)(()=>i?(0,tq.jsx)(hu,{item:t}):(0,tq.jsx)(hm,{}),[t])},hg=()=>{let{searchTerm:e}=(0,tG.useContext)(g1),[t,i]=(0,tG.useState)(1),[n,r]=(0,tG.useState)(20),[a,l]=(0,tG.useState)(void 0),[o,s]=(0,tG.useState)(void 0),{isLoading:d,isError:c,error:f,data:u}=g6({searchTerm:e,page:t,pageSize:n});(0,tG.useEffect)(()=>{let e=setTimeout(()=>{l(o)},333);return()=>{clearTimeout(e)}},[o]),(0,tG.useEffect)(()=>{i(1),l(void 0)},[e]),(0,tG.useEffect)(()=>{c&&(0,iX.Ay)(new iX.hD(f))},[c]);let m=(e,t)=>{i(e),r(t),l(void 0)};return(0,tG.useMemo)(()=>d?(0,tq.jsx)(uE.U,{loading:!0}):(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)("div",{}),(0,tq.jsx)(ht.n,{leftItem:{size:750,children:(0,tq.jsx)(uE.U,{overflow:{x:"hidden",y:"auto"},padded:!0,padding:{left:"none",right:"none",y:"none"},style:{height:400},children:(0,tq.jsxs)(ap.s,{className:"w-full h-full",gap:0,vertical:!0,children:[null==u?void 0:u.items.map(e=>(0,tq.jsx)(g9,{active:(null==a?void 0:a.id)===e.id&&(null==a?void 0:a.elementType)===e.elementType,item:e,onMouseEnter:()=>{s(e)},onMouseLeave:()=>{s(a)}},`${e.id}-${e.elementType}`)),(null==u?void 0:u.items.length)===0&&(0,tq.jsx)(ap.s,{align:"center",className:"w-full h-full",gap:"mini",justify:"center",vertical:!0,children:(0,tq.jsx)(he.R,{text:"No results found"})})]})})},rightItem:{size:250,minSize:250,maxSize:250,children:(0,tq.jsx)(hp,{item:a})},withDivider:!0}),(0,tq.jsx)(pc.M,{theme:"secondary",children:(0,tq.jsx)(po.d,{onChange:m,pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>`Total ${e} items`,total:(null==u?void 0:u.totalItems)??0})})]}),[u,a,d])},hh=()=>{let[e,t]=(0,tG.useState)(""),[i,n]=(0,tG.useState)("");return(0,tG.useEffect)(()=>{let e=setTimeout(()=>{t(i)},500);return()=>{clearTimeout(e)}},[i]),(0,tq.jsx)(pl.s,{renderTopBar:(0,tq.jsx)(pc.M,{padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tq.jsx)(ps.D,{"data-testid":"search-modal-input",maxWidth:"100%",onChange:e=>{n(e.target.value)},onSearch:e=>{n(e)},value:i})}),children:(0,tq.jsx)(g2,{searchTerm:e,children:(0,tq.jsx)(hg,{})})})};var hy=i(67923),hv=i(25293),hb=i(92502),hx=i(87669),hj=i(95198),hw=i(74525),hk=i(59991),hT=i(55059),hS=i(20426),hC=i(10840),hD=i(20351),hI=i(63589),hM=i(38933),hL=i(72209),hF=i(33763);let hE=()=>(0,tq.jsx)(pc.M,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tq.jsxs)(ap.s,{className:"w-full",gap:"small",children:[(0,tq.jsx)(hL.E,{}),(0,tq.jsx)(hF.v,{})]})});var hP=i(59416),hA=i(56977),hN=i(26093);let hR=()=>(0,tq.jsx)(pc.M,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,tq.jsx)(ap.s,{className:"w-full",gap:"small",justify:"space-between",children:(0,tq.jsxs)(oI.B,{size:"extra-small",children:[(0,tq.jsx)(hP.B,{}),(0,tq.jsx)(hA.y,{}),(0,tq.jsx)(hN.d,{})]})})});var hV=i(43778);let hz={...hj.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,hD.E)();return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[void 0===e&&(0,tq.jsx)(uE.U,{loading:!0}),void 0!==e&&(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(hR,{}),renderTopBar:(0,tq.jsx)(hE,{}),children:(0,tq.jsx)(pl.s,{renderSidebar:(0,tq.jsx)(hI.B,{}),children:(0,tq.jsx)(hM.E,{})})})]}),[e])},useDataQuery:g3.KQ,useDataQueryHelper:hy.Q,useElementId:hb.p},hB=(0,hS.Z)(hk.S,hC.g,hv.A,[hw.p,{handleSearchTermInSidebar:!1}],[hV.u,{elementType:sE.W.asset}],hT.Y,[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,nt.K)(),{close:a}=g7();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:sE.W.asset}])(hz),hO=()=>(0,tq.jsx)(hx.U,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tq.jsx)(hj.w,{...hB})}),hK=()=>(0,tq.jsx)(uE.U,{style:{height:"65vh"},children:(0,tq.jsx)(hO,{})});var h_=i(71615);let hH=()=>(0,tq.jsx)(pc.M,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tq.jsxs)(ig.Flex,{className:"w-full",gap:"small",children:[(0,tq.jsx)(hL.E,{}),(0,tq.jsx)(h_.C,{nullable:!0}),(0,tq.jsx)(hF.v,{})]})}),h$=()=>(0,tq.jsx)(pc.M,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,tq.jsx)(ap.s,{className:"w-full",gap:"small",justify:"space-between",children:(0,tq.jsxs)(oI.B,{size:"extra-small",children:[(0,tq.jsx)(hP.B,{}),(0,tq.jsx)(hA.y,{}),(0,tq.jsx)(hN.d,{})]})})});var hW=i(68366),hq=i(83950),hG=i(69918),hU=i(86117);let hQ={...hj.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,hD.E)();return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[void 0===e&&(0,tq.jsx)(uE.U,{loading:!0}),void 0!==e&&(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(h$,{}),renderTopBar:(0,tq.jsx)(hH,{}),children:(0,tq.jsx)(pl.s,{renderSidebar:(0,tq.jsx)(hI.B,{}),children:(0,tq.jsx)(hM.E,{})})})]}),[e])},useDataQuery:g3.PE,useDataQueryHelper:hW.Q,useElementId:hb.p,useColumnMapper:hU.K},hJ=(0,hS.Z)(hk.S,hG.y,hv.A,[hw.p,{handleSearchTermInSidebar:!1}],hT.Y,[hq.f,{showConfigLayer:!1}],[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,nt.K)(),{close:a}=g7();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:sE.W.dataObject}],[hV.u,{elementType:sE.W.dataObject}])(hQ),hZ=()=>(0,tq.jsx)(hx.U,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/ObjectDataRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tq.jsx)(hj.w,{...hJ})}),hY=()=>(0,tq.jsx)(uE.U,{style:{height:"65vh"},children:(0,tq.jsx)(hZ,{})});var hX=i(20168);let h0=()=>(0,tq.jsx)(pc.M,{borderStyle:"default",padding:{left:"none",right:"none"},position:"top",theme:"secondary",children:(0,tq.jsxs)(ap.s,{className:"w-full",gap:"small",children:[(0,tq.jsx)(hL.E,{}),(0,tq.jsx)(hF.v,{})]})}),h1=()=>(0,tq.jsx)(pc.M,{borderStyle:"default",padding:{right:"none",left:"none"},theme:"secondary",children:(0,tq.jsx)(ap.s,{className:"w-full",gap:"small",justify:"space-between",children:(0,tq.jsxs)(oI.B,{size:"extra-small",children:[(0,tq.jsx)(hP.B,{}),(0,tq.jsx)(hA.y,{}),(0,tq.jsx)(hN.d,{})]})})}),h2={...hj.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,hD.E)();return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[void 0===e&&(0,tq.jsx)(uE.U,{loading:!0}),void 0!==e&&(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(h1,{}),renderTopBar:(0,tq.jsx)(h0,{}),children:(0,tq.jsx)(pl.s,{renderSidebar:(0,tq.jsx)(hI.B,{}),children:(0,tq.jsx)(hM.E,{})})})]}),[e])},useDataQuery:g3.fd,useDataQueryHelper:hy.Q,useElementId:hb.p},h3=(0,hS.Z)(hk.S,hX.g,hv.A,[hw.p,{handleSearchTermInSidebar:!1}],[hV.u,{elementType:sE.W.document}],hT.Y,[(e,t)=>{let{useGridOptions:i,...n}=e;if(void 0===t)throw Error("OpenElementDecorator requires an elementType prop");return{...n,useGridOptions:()=>{let{getGridProps:e,...n}=i(),{openElement:r}=(0,nt.K)(),{close:a}=g7();return{...n,getGridProps:()=>({...e(),onRowDoubleClick:e=>{let{id:i}=e.original,{elementType:n}=t;r({id:i,type:n}),a()}})}}}},{elementType:sE.W.document}])(h2),h6=()=>(0,tq.jsx)(hx.U,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tq.jsx)(hj.w,{...h3})}),h4=()=>(0,tq.jsx)(uE.U,{style:{height:"65vh"},children:(0,tq.jsx)(h6,{})}),h5=()=>{let{isOpen:e,setActiveKey:t,close:i,activeKey:n}=g7(),r=[{label:"All",key:"all",children:(0,tq.jsx)(hh,{})},{label:"Documents",key:sE.W.document,children:(0,tq.jsx)(h4,{})},{label:"Assets",key:sE.W.asset,children:(0,tq.jsx)(hK,{})},{label:"Data Objects",key:sE.W.dataObject,children:(0,tq.jsx)(hY,{})}];return(0,tq.jsx)(tq.Fragment,{children:e&&(0,tq.jsx)(pC.a,{closable:!0,"data-testid":"search-modal",footer:null,onCancel:()=>{i()},open:e,size:"XL",children:(0,tq.jsx)(ge.t,{activeKey:n,"data-testid":"search-modal-tabs",items:r,noTabBarMargin:!0,onChange:e=>{t(e)}})})})},h7=()=>{let{open:e}=g7();return(0,m9.Z)(()=>{e("all")},"quickSearch",!0),(0,m9.Z)(()=>{e(sE.W.asset)},"searchAsset",!0,pw.F.Assets),(0,m9.Z)(()=>{e(sE.W.dataObject)},"searchObject",!0,pw.F.Objects),(0,m9.Z)(()=>{e(sE.W.document)},"searchDocument",!0,pw.F.Documents),(0,tq.jsx)(lp.K,{"data-testid":"search-button",icon:{value:"search"},onClick:()=>{e("all")},type:"text"})},h8=()=>(0,m6.a)(pk.d.SearchHidden)?null:(0,tq.jsxs)(g5,{children:[(0,tq.jsx)(h7,{}),(0,tq.jsx)(h5,{})]});var h9=i(30652),ye=i(24058);let yt=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{badge:t` - .ant-badge-count { - background: ${i.itemActiveColor}; - font-size: 8px; - outline: ${i.colorBgBase} solid 2px !important; - width: 14px; - height: 14px; - border-radius: 50%; - line-height: 14px; - } - `}});var yi=i(99224);let yn=()=>{let{styles:e}=yt(),{t}=(0,iQ.useTranslation)(),{jobs:i}=(0,h9.O)(),[n]=(0,ye.h)();return 0===i.length?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.Badge,{className:e.badge,count:i.length,offset:[-9,9],size:"small",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"copilot-job-runs"},onClick:()=>{n.open({key:"jobs-notification",message:t("jobs.notification.title"),description:(0,tq.jsx)(yi.y,{})})},type:"text"})})};var yr=i(59451),ya=i(81031),yl=i(74152);let yo=()=>{let{t:e}=(0,iQ.useTranslation)(),t={icon:"subscription-community",tooltip:e("subscription-details.community-edition"),link:"https://pimcore.com/en/products/edition/overview",children:(0,tq.jsx)(ya.b,{component:yl.e.rightSidebar.logo.image.name})};return(0,tq.jsx)(ya.b,{component:yl.e.rightSidebar.logo.subscriptionDetails.name,props:t})};var ys=i(93869);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);e.registerToSlot("leftSidebar.slot",{name:"mainNav",priority:100,component:g0}),e.registerToSlot("leftSidebar.slot",{name:"search",priority:200,component:h8}),e.registerToSlot(tu.eb.leftSidebar.slot.name,{name:"runningJobs",priority:200,component:yn}),e.registerToSlot(tu.eb.rightSidebar.slot.name,{name:"logoContainer",priority:100,component:yo}),e.register({name:tu.eb.rightSidebar.logo.image.name,component:yr.g}),e.register({name:tu.eb.rightSidebar.logo.subscriptionDetails.name,component:ys.Q})}});var yd=i(20120),yc=i(44499);class yf{supports(e){var t;return!!(0,tI.isString)(null==(t=e.config)?void 0:t.mainNavPath)||!(0,tI.isNil)(this.findItemByWidgetConfig(e))}restore(e,t){let i=this.findItem(e);if((0,tI.isNil)(i)||!(0,tI.isNil)(i.permission)&&!(0,yc.J)(i.permission)||!(0,tI.isNil)(i.perspectivePermission)&&!(0,m6.a)(i.perspectivePermission))return!1;if(!(0,tI.isNil)(i.widgetConfig)){let n=(0,tI.merge)({},e,i.widgetConfig);return(0,tI.isNil)(n.config)&&(n.config={}),n.config.mainNavPath=i.path,t((0,yd.WK)(n)),!0}return!1}findItem(e){var t;return(0,tI.isString)(null==(t=e.config)?void 0:t.mainNavPath)?tc.kL.get(td.K.mainNavRegistry).getMainNavItem(e.config.mainNavPath):this.findItemByWidgetConfig(e)}findItemByWidgetConfig(e){return tc.kL.get(td.K.mainNavRegistry).getMainNavItems().find(t=>{var i,n;return(null==(i=t.widgetConfig)?void 0:i.id)===e.id&&(null==(n=t.widgetConfig)?void 0:n.component)===e.component})}}ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.widgetRestorerRegistry).register(new yf);let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"QuickAccess",label:"navigation.quick-access",icon:"quick-access",order:100,perspectivePermissionHide:pk.d.QuickAccessHidden}),e.registerMainNavItem({path:"DataManagement",label:"navigation.data-management",icon:"data-object",order:200,perspectivePermissionHide:pk.d.DataManagementHidden}),e.registerMainNavItem({path:"ExperienceEcommerce",label:"navigation.experience-ecommerce",icon:"experience-commerce",order:300,perspectivePermissionHide:pk.d.ExperienceEcommerceHidden}),e.registerMainNavItem({path:"AssetManagement",label:"navigation.asset-management",icon:"asset",order:400}),e.registerMainNavItem({path:"AutomationIntegration",label:"navigation.automation-integration",icon:"automation-integration",order:500}),e.registerMainNavItem({path:"Translations",label:"navigation.translations",icon:"translate",order:600,perspectivePermissionHide:pk.d.TranslationsHidden}),e.registerMainNavItem({path:"Reporting",label:"navigation.reporting",icon:"reporting",order:700,perspectivePermissionHide:pk.d.ReportingHidden}),e.registerMainNavItem({path:"System",label:"navigation.system",icon:"shield",order:800,perspectivePermissionHide:pk.d.SystemHidden})}});let yu=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10 6.667V3.333C10 2.413 10.413 2 11.333 2s1.334.413 1.334 1.333v3.334m0-2H10M12.667 14H10l2.667-4.667H10M2.667 10l2 2 2-2M4.667 4v8"})}),ym=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.42 5.088c-.263-.264-.395-.396-.445-.549a.67.67 0 0 1 0-.412c.05-.152.182-.284.446-.548l1.892-1.892A4 4 0 0 0 6.78 6.284c.08.325.12.489.112.592a.6.6 0 0 1-.073.26c-.047.092-.138.183-.32.365l-4.166 4.166a1.414 1.414 0 0 0 2 2L8.5 9.5c.182-.182.273-.273.364-.32a.6.6 0 0 1 .261-.073c.103-.007.267.032.593.112q.457.112.95.113a4 4 0 0 0 3.646-5.646l-1.892 1.892c-.264.264-.396.396-.548.446a.67.67 0 0 1-.412 0c-.153-.05-.285-.182-.549-.446z"})}),yp=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M10.41 7.254a.75.75 0 0 1 0 1.492l-.077.004H6a.75.75 0 0 1 0-1.5h4.333z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M14 4.25c.782 0 1.416.635 1.416 1.417v4.666c0 .782-.634 1.417-1.416 1.417H2a1.417 1.417 0 0 1-1.417-1.417V5.667c0-.782.635-1.417 1.417-1.417zm-11.917 6h11.833v-4.5H2.083z",clipRule:"evenodd"})]}),yg=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M10.226 4.132a1 1 0 0 1 .076.018l.008.003a.6.6 0 0 1 .14.066.639.639 0 0 1 .092.072l.002.001.004.003.014.014 2.022 2.1 1.98.688c.334.115.514.49.403.836a.63.63 0 0 1-.805.42l-2.12-.736a.63.63 0 0 1-.25-.16L10.546 6.16l-.44 2.745 2.52 1.965a.67.67 0 0 1 .253.529v2.94a.65.65 0 0 1-.636.661.65.65 0 0 1-.636-.661v-2.61L9.032 9.724a.68.68 0 0 1-.246-.638L9.34 5.62l-2.12.441v1.663c0 .366-.284.661-.635.661a.65.65 0 0 1-.637-.66V5.52c0-.316.214-.587.512-.649l3.535-.735a.6.6 0 0 1 .23-.004"}),(0,tq.jsx)("path",{d:"M7.96 10.736a.626.626 0 0 1 .854-.296c.314.163.442.56.286.887l-.53 1.102a.63.63 0 0 1-.696.353l-3.535-.734a.66.66 0 0 1-.499-.778.64.64 0 0 1 .749-.52l3.059.635zM4.465 5.593a.65.65 0 0 1 .636.662.65.65 0 0 1-.636.66H1.636A.65.65 0 0 1 1 6.256a.65.65 0 0 1 .636-.662zM4.465 3.388a.65.65 0 0 1 .636.662.65.65 0 0 1-.636.661H2.343a.65.65 0 0 1-.637-.661.65.65 0 0 1 .637-.662zM10.474 1c.31 0 .607.128.826.355.218.228.341.536.341.857 0 .322-.123.63-.341.857a1.15 1.15 0 0 1-.826.355c-.31 0-.606-.127-.824-.355a1.24 1.24 0 0 1-.342-.857c0-.321.123-.63.342-.857.218-.227.515-.355.824-.355M7.292 1.183a.65.65 0 0 1 .637.662.65.65 0 0 1-.637.661H3.05a.65.65 0 0 1-.636-.66.65.65 0 0 1 .636-.663z"})]}),yh=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zm9 7-1-1M10 9a2.333 2.333 0 1 1-4.667 0A2.333 2.333 0 0 1 10 9"})}),yy=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zM8 11.333v-4m-2 2h4"})}),yv=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.333 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h6.133c.62 0 .93 0 1.185-.068a2 2 0 0 0 1.414-1.414c.068-.255.068-.565.068-1.185m-1.333-6v-4m-2 2h4M7 5.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0m2.993 2.278-5.639 5.127c-.317.288-.476.433-.49.558a.33.33 0 0 0 .111.287c.095.083.31.083.738.083h6.258c.96 0 1.439 0 1.816-.161a2 2 0 0 0 1.052-1.052C14 12.41 14 11.93 14 10.97c0-.323 0-.485-.035-.635a1.3 1.3 0 0 0-.25-.518c-.095-.122-.22-.223-.473-.424l-1.865-1.492c-.252-.202-.378-.303-.517-.339a.67.67 0 0 0-.372.012c-.136.044-.256.153-.495.37"})}),yb=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.667 4.852 8 8m0 0L2.333 4.852M8 8v6.333m1.333-.407-.815.453c-.189.105-.284.157-.384.178a.7.7 0 0 1-.268 0c-.1-.02-.195-.073-.384-.178l-4.933-2.74c-.2-.112-.3-.167-.373-.246a.7.7 0 0 1-.142-.243C2 11.048 2 10.934 2 10.706V5.294c0-.228 0-.342.034-.444a.7.7 0 0 1 .142-.243c.073-.079.173-.134.373-.245l4.933-2.74c.189-.106.284-.158.384-.179a.7.7 0 0 1 .268 0c.1.02.195.073.384.178l4.933 2.74c.2.112.3.167.373.246q.097.107.142.243c.034.102.034.216.034.444v3.04M5 3l6 3.333M12.667 14v-4m-2 2h4"})}),yx=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m14.667 14.667-1-1m1-7H1.333M14.667 8V5.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.286-.146-.659-.146-1.406-.146H3.467c-.747 0-1.12 0-1.406.146-.25.127-.455.331-.582.582-.146.286-.146.659-.146 1.406v5.066c0 .747 0 1.12.146 1.406.127.25.331.454.582.582.286.146.659.146 1.406.146H7M14.333 12a2.333 2.333 0 1 1-4.666 0 2.333 2.333 0 0 1 4.666 0"})}),yj=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.333H5c-.93 0-1.396 0-1.774.115a2.67 2.67 0 0 0-1.778 1.778c-.115.378-.115.844-.115 1.774m11.334 0v-4m-2 2h4m-5-7a3 3 0 1 1-6 0 3 3 0 0 1 6 0"})}),yw=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M9.726 3.277a6.144 6.144 0 0 1 5.826 6.133 6.144 6.144 0 0 1-6.142 6.142A6.144 6.144 0 0 1 3.27 9.41a.651.651 0 0 1 1.3 0 4.843 4.843 0 0 0 4.841 4.841 4.843 4.843 0 0 0 4.841-4.84 4.844 4.844 0 0 0-4.592-4.836L9.41 4.57l-.13-.013a.65.65 0 0 1 .13-1.287z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.207 9.806a1.176 1.176 0 1 1-.002 2.352 1.176 1.176 0 0 1 .002-2.352m0 1a.176.176 0 1 0 .175.176.176.176 0 0 0-.175-.176",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M7.85 11.666a.651.651 0 0 1-.92-.919z"}),(0,tq.jsx)("path",{d:"M10.522 7.155a.65.65 0 0 1 .918.92l-3.59 3.591-.46-.46-.46-.459z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.615 6.665a1.176 1.176 0 1 1-.001 2.351 1.176 1.176 0 0 1 .001-2.351m0 1a.176.176 0 0 0-.176.176.175.175 0 1 0 .176-.176",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M4.66 1.668 4.658 3.35h1.676l.13.013a.65.65 0 0 1 0 1.274l-.13.013H4.656l-.002 1.685a.65.65 0 0 1-1.3-.002l.002-1.683H1.667a.65.65 0 0 1 0-1.3h1.69l.003-1.684zM4.01 1.017a.65.65 0 0 1 .65.651l-1.3-.002a.65.65 0 0 1 .65-.65"})]}),yk=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8.42 6.75c.32 0 .58.28.58.625v1.75c0 .345-.26.625-.58.625H6.797c-.32 0-.58-.28-.58-.625v-.03L4.17 10.759l2.048 1.885v-.268c0-.345.259-.625.579-.625H8.42c.32 0 .58.28.58.625v1.75c0 .345-.26.625-.58.625H6.797c-.32 0-.58-.28-.58-.625v-.331l-2.435-2.242v.073c0 .345-.259.625-.579.625H1.58c-.32 0-.58-.28-.58-.625v-1.75c0-.345.26-.625.58-.625h1.623c.32 0 .58.28.58.625v.102L6.217 8v-.625c0-.345.259-.625.579-.625zM12 2a.75.75 0 0 1 .75.75V4H14a.75.75 0 0 1 0 1.5h-1.25v1.25a.75.75 0 0 1-1.5 0V5.5H10A.75.75 0 0 1 10 4h1.25V2.75A.75.75 0 0 1 12 2"})}),yT=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.78 4.85c1.084 0 1.97.86 1.97 1.93 0 1.068-.886 1.93-1.97 1.93-.502 0-.96-.186-1.307-.488L8.437 9.228q.016.121.016.249c0 .227-.036.446-.1.653l2.147 1.223a2 2 0 0 1 1.28-.462c1.084 0 1.97.86 1.97 1.93 0 1.068-.886 1.929-1.97 1.929-1.086 0-1.971-.86-1.971-1.93q0-.19.036-.37l-2.206-1.258a2.32 2.32 0 0 1-1.488.537c-1.267 0-2.301-1.005-2.301-2.252 0-1.248 1.034-2.254 2.301-2.254.72 0 1.363.324 1.786.83l1.904-.94a2 2 0 0 1-.032-.334c0-1.068.885-1.93 1.97-1.93m0 7.311a.68.68 0 0 0-.562.291q-.01.02-.02.038-.014.022-.03.042a.64.64 0 0 0-.066.288c0 .361.3.66.677.66a.67.67 0 0 0 .678-.66c0-.36-.3-.659-.678-.659M6.15 8.494a.995.995 0 0 0-1.007.983c0 .539.447.982 1.007.982a.996.996 0 0 0 1.01-.982.996.996 0 0 0-1.01-.983m5.628-2.373a.67.67 0 0 0-.677.658.64.64 0 0 0 .101.348c.12.186.332.311.576.311a.67.67 0 0 0 .678-.659c0-.36-.3-.658-.678-.658",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M4 1.25a.75.75 0 0 1 .75.75v1.25H6a.75.75 0 0 1 0 1.5H4.75V6a.75.75 0 0 1-1.5 0V4.75H2a.75.75 0 0 1 0-1.5h1.25V2A.75.75 0 0 1 4 1.25"})]}),yS=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#alert-outline_inline_svg__clip0_850_1083)",children:[(0,tq.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m0 12A5.334 5.334 0 1 1 8 2.666a5.334 5.334 0 0 1 0 10.667"}),(0,tq.jsx)("path",{d:"M8 11.333A.667.667 0 1 0 8 10a.667.667 0 0 0 0 1.333M8 4.667a.667.667 0 0 0-.667.666v3.334a.667.667 0 1 0 1.334 0V5.333A.667.667 0 0 0 8 4.667"})]})}),yC=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m0 10A.667.667 0 1 1 8 10a.667.667 0 0 1 0 1.334m.667-2.666a.667.667 0 0 1-1.334 0V5.333a.667.667 0 1 1 1.334 0z"})}),yD=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.865 9.814H3.402A1.45 1.45 0 0 1 2.13 7.666l1.41-2.565L4.86 2.699c.55-.998 1.99-.998 2.541 0L8.726 5.1l.635 1.156.775 1.41a1.45 1.45 0 0 1-1.27 2.147"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.05 10.117a3.933 3.933 0 1 1-7.865 0c0-.103.006-.2.012-.303h2.668a1.45 1.45 0 0 0 1.271-2.148l-.774-1.41q.364-.072.756-.072a3.933 3.933 0 0 1 3.933 3.933"})]}),yI=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6 7.481 8.519 10m-3.202 3.983c-.912.912-2.65.684-3.984.684.684-1.334-.227-3.072.684-3.984a2.333 2.333 0 0 1 3.3 3.3m2.63-3.367 6.092-6.578a1.47 1.47 0 0 0-2.077-2.077L5.384 8.052c-.34.315-.51.472-.61.64-.237.403-.247.9-.025 1.312.093.171.257.335.584.663.328.327.492.491.663.584.412.222.91.212 1.312-.025.168-.1.325-.27.64-.61"})}),yM=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.345 2H8.398a2 2 0 0 0-2 2v7.52a2 2 0 0 0 2 2h3.947a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2m-4.92 5.333h.547c.184 0 .333.15.333.334v.213c0 .184-.15.333-.333.333h-.547zm4.92 5.2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H8.398a1 1 0 0 0-1 1v2.32h.547c.737 0 1.333.597 1.333 1.333v.214c0 .736-.596 1.333-1.333 1.333h-.547v2.333a1 1 0 0 0 1 1zM1.338 4.28a2.113 2.113 0 0 1 1.947-2.253 2.113 2.113 0 0 1 1.927 2.26v6.18c.007.32-.08.636-.254.906L3.712 13.3a.5.5 0 0 1-.874 0l-1.246-1.927a1.7 1.7 0 0 1-.254-.906zm2.774 6.547a.67.67 0 0 0 .1-.36l.013-6.187c.007-.68-.427-1.253-.94-1.253-.507 0-.94.586-.94 1.253v6.187a.67.67 0 0 0 .087.36l.84 1.333z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fill:"currentColor",d:"M3.278 3.453a.5.5 0 0 0-.5.5V6.26a.5.5 0 0 0 1 0V3.953a.493.493 0 0 0-.5-.5M12.199 4.093H9.965a.5.5 0 0 0 0 1h2.233a.5.5 0 0 0 0-1"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:.3,d:"M12.345 2H8.398a2 2 0 0 0-2 2v7.52a2 2 0 0 0 2 2h3.947a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2Zm-4.92 5.333h.547c.184 0 .333.15.333.334v.213c0 .184-.15.333-.333.333h-.547zm4.92 5.2a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H8.398a1 1 0 0 0-1 1v2.32h.547c.737 0 1.333.597 1.333 1.333v.214c0 .736-.596 1.333-1.333 1.333h-.547v2.333a1 1 0 0 0 1 1zM1.338 4.28a2.113 2.113 0 0 1 1.947-2.253 2.113 2.113 0 0 1 1.927 2.26v6.18c.007.32-.08.636-.254.906L3.712 13.3a.5.5 0 0 1-.874 0l-1.246-1.927a1.7 1.7 0 0 1-.254-.906zm2.774 6.547a.67.67 0 0 0 .1-.36l.013-6.187c.007-.68-.427-1.253-.94-1.253-.507 0-.94.586-.94 1.253v6.187a.67.67 0 0 0 .087.36l.84 1.333z",clipRule:"evenodd"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:.3,d:"M3.278 3.453a.5.5 0 0 0-.5.5V6.26a.5.5 0 0 0 1 0V3.953a.493.493 0 0 0-.5-.5ZM12.199 4.093H9.965a.5.5 0 0 0 0 1h2.233a.5.5 0 0 0 0-1Z"})]}),yL=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M2.5 9.358c.359 0 .65.292.65.65v1.03a.38.38 0 0 0 .38.379h1.029c.358 0 .65.292.65.65l-.014.131a.65.65 0 0 1-.636.52h-1.03a1.68 1.68 0 0 1-1.68-1.68v-1.03c0-.358.292-.65.651-.65M13.48 9.358a.65.65 0 0 1 .649.65v1.03a1.68 1.68 0 0 1-1.679 1.68h-1.03a.65.65 0 0 1-.636-.52l-.014-.13c0-.36.292-.65.65-.651h1.03a.38.38 0 0 0 .38-.379v-1.03c0-.358.29-.65.65-.65M7.99 6.132c.34 0 .615.277.615.617v.584h.585c.34 0 .616.277.617.617l-.013.124a.62.62 0 0 1-.604.492h-.585v.584a.617.617 0 1 1-1.232 0v-.584h-.585a.62.62 0 0 1-.603-.492l-.013-.124c0-.34.276-.617.616-.617h.585v-.584c0-.34.276-.617.616-.617M4.559 3.183a.651.651 0 0 1 0 1.3h-1.03a.38.38 0 0 0-.268.11.38.38 0 0 0-.11.27v1.029a.651.651 0 0 1-1.301 0v-1.03a1.68 1.68 0 0 1 1.68-1.68zM12.45 3.183a1.68 1.68 0 0 1 1.679 1.68v1.029a.65.65 0 1 1-1.3 0v-1.03a.38.38 0 0 0-.379-.379h-1.03a.651.651 0 0 1 0-1.3z"})}),yF=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8.804 3.47a.75.75 0 0 1 1.003-.052l.057.052 4 4 .051.057a.75.75 0 0 1-.05 1.003l-4 4a.75.75 0 0 1-1.061-1.06l2.72-2.72H2.666a.75.75 0 0 1 0-1.5h8.856l-2.72-2.72-.051-.056a.75.75 0 0 1 .052-1.004"})}),yE=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"m12 16 4-4m0 0-4-4m4 4H8m-.2 9h8.4c1.68 0 2.52 0 3.162-.327a3 3 0 0 0 1.311-1.311C21 18.72 21 17.88 21 16.2V7.8c0-1.68 0-2.52-.327-3.162a3 3 0 0 0-1.311-1.311C18.72 3 17.88 3 16.2 3H7.8c-1.68 0-2.52 0-3.162.327a3 3 0 0 0-1.311 1.311C3 5.28 3 6.12 3 7.8v8.4c0 1.68 0 2.52.327 3.162a3 3 0 0 0 1.311 1.311C5.28 21 6.12 21 7.8 21"})}),yP=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.43 5.19a.62.62 0 0 1 0 1.239H3.05c-.51 0-.81.357-.81.666v2.177l1.712-1.654a1.78 1.78 0 0 1 1.288-.522 1.8 1.8 0 0 1 1.238.564l4.05 3.849v-1.89a.62.62 0 0 1 1.24 0v3.333c0 .022-.006.044-.008.065v.008q.005.036.007.07c0 1.112-.98 1.905-2.049 1.905H3.05C1.98 15 1 14.207 1 13.095v-6c0-1.112.98-1.905 2.049-1.905zm-.225 3.144a.55.55 0 0 0-.393.174l-2.573 2.485v2.102c0 .309.3.666.81.666h6.668c.451 0 .735-.28.796-.557l-4.89-4.647-.021-.023c-.14-.147-.282-.197-.397-.2",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M9.537 3.339c.315 0 .57.244.57.545v1.559a.56.56 0 0 1-.57.547.56.56 0 0 1-.57-.547V5.21h-1.06a.56.56 0 0 1-.571-.547.56.56 0 0 1 .571-.545h1.06v-.234c0-.3.255-.545.57-.545M13.614 4.118a.56.56 0 0 1 .571.545.56.56 0 0 1-.571.547h-2.446a.56.56 0 0 1-.57-.547c0-.3.255-.544.57-.545zM12.799 1a.56.56 0 0 1 .571.546v.233h1.059a.56.56 0 0 1 .571.546.56.56 0 0 1-.571.546H13.37v.234a.56.56 0 0 1-.571.546.56.56 0 0 1-.572-.546v-1.56A.56.56 0 0 1 12.8 1M11.168 1.78a.56.56 0 0 1 .571.545.56.56 0 0 1-.571.546H7.907a.56.56 0 0 1-.571-.546.56.56 0 0 1 .571-.546z"})]}),yA=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6.667a2 2 0 0 1 2-2v0a2 2 0 0 0 1.6-.8l.3-.4a2 2 0 0 1 1.6-.8h1a2 2 0 0 1 1.6.8l.3.4a2 2 0 0 0 1.6.8v0a2 2 0 0 1 2 2v4.666a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2z"}),(0,tq.jsx)("circle",{cx:8,cy:8.667,r:2.667,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4})]}),yN=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.667 3.504V11a3.667 3.667 0 0 1-7.334 0V3.778a2.444 2.444 0 0 1 4.89 0v7.186a1.222 1.222 0 1 1-2.445 0v-6.53"})}),yR=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.165 3.333A7.96 7.96 0 0 1 14.667 8a7.96 7.96 0 0 1-1.502 4.667m-2.668-7.334c.527.756.836 1.675.836 2.667s-.309 1.91-.836 2.667M6.423 2.91l-2.11 2.11c-.116.116-.174.174-.24.215a.7.7 0 0 1-.194.08c-.076.018-.158.018-.32.018H2.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v3.2c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h1.158c.163 0 .245 0 .321.018a.7.7 0 0 1 .193.08c.067.041.125.099.24.214l2.11 2.11c.286.286.43.429.552.439a.33.33 0 0 0 .28-.116c.08-.094.08-.296.08-.7V3.288c0-.404 0-.606-.08-.7a.33.33 0 0 0-.28-.116c-.123.01-.266.153-.551.438"})}),yV=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.667 1.333 2.729 8.46c-.233.279-.349.418-.35.536-.002.102.043.2.123.264.092.074.273.074.637.074H8l-.667 5.334 5.938-7.126c.233-.279.349-.418.35-.536a.33.33 0 0 0-.123-.264c-.092-.074-.273-.074-.637-.074H8z"})}),yz=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 3.917a4.085 4.085 0 0 1 3.898 5.3 4.1 4.1 0 0 1-1.38 1.994 1.58 1.58 0 0 0-.443 1.347 1 1 0 0 1 .009.109 2.084 2.084 0 0 1-4.167 0q0-.055.008-.11a1.6 1.6 0 0 0-.124-.885q-.015-.028-.029-.057a1.6 1.6 0 0 0-.29-.404 4.1 4.1 0 0 1-1.38-1.993A4.084 4.084 0 0 1 8 3.917m-.57 8.166q.024.303-.011.605a.582.582 0 0 0 1.162.002 3 3 0 0 1-.012-.607zM8 5.417a2.583 2.583 0 0 0-1.707 4.522l.157.128.078.067q.21.207.374.449h2.196q.165-.24.375-.45a1 1 0 0 1 .078-.066A2.584 2.584 0 0 0 8 5.417",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M2.667 7.25a.75.75 0 0 1 0 1.5H2a.75.75 0 0 1 0-1.5zM14 7.25a.75.75 0 0 1 0 1.5h-.667a.75.75 0 0 1 0-1.5zM3.203 3.203a.75.75 0 0 1 1.06 0l.467.467a.75.75 0 0 1-1.06 1.06l-.467-.466a.75.75 0 0 1 0-1.06M11.736 3.203a.75.75 0 1 1 1.06 1.06l-.466.467a.75.75 0 0 1-1.06-1.06zM8 1.25a.75.75 0 0 1 .75.75v.667a.75.75 0 0 1-1.5 0V2A.75.75 0 0 1 8 1.25"})]}),yB=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.235 4.34a1.2 1.2 0 0 1 2.197.778L9.324 6.2h.405c.035 0 .166-.002.287.012.116.013.486.064.797.382a1.37 1.37 0 0 1 .208 1.627c-.05.092-.114.188-.144.233L8.765 11.66a1.2 1.2 0 0 1-2.197-.778L6.676 9.8H6.27c-.035 0-.166.002-.287-.012a1.3 1.3 0 0 1-.797-.382 1.37 1.37 0 0 1-.387-.972l.007-.12c.027-.266.13-.46.172-.535.05-.092.114-.188.144-.233zm-1.11 3.866-.094.148A.2.2 0 0 0 6 8.447c0 .046.016.09.044.12q.023.024.077.029l.15.004H8L7.763 11l2.112-3.206c.062-.094.101-.153.117-.2L10 7.554a.17.17 0 0 0-.044-.12q-.023-.024-.077-.029l-.15-.004H8L8.237 5z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10 1.3c.514 0 .94 0 1.286.027.354.028.685.087.998.24.482.236.88.615 1.13 1.087.165.31.228.639.258.985.028.336.028.749.028 1.24v6.241c0 .492 0 .905-.028 1.241-.03.346-.093.675-.258.985a2.54 2.54 0 0 1-1.13 1.087c-.313.153-.644.212-.998.24-.346.027-.772.027-1.286.027H6c-.514 0-.94 0-1.286-.027-.354-.028-.685-.087-.998-.24a2.54 2.54 0 0 1-1.13-1.087c-.165-.31-.228-.639-.258-.985-.029-.336-.028-.749-.028-1.24V4.88c0-.492 0-.905.028-1.241.03-.346.093-.675.258-.985a2.54 2.54 0 0 1 1.13-1.087c.313-.153.644-.212.998-.24C5.06 1.3 5.486 1.3 6 1.3zM6 2.7c-.536 0-.898 0-1.177.023-.271.021-.404.06-.492.102-.223.11-.4.28-.509.486-.04.074-.078.191-.1.446C3.7 4.02 3.7 4.364 3.7 4.88v6.24c0 .516 0 .86.023 1.123.021.255.06.372.1.447.108.204.285.376.508.485.088.043.22.081.492.102.28.022.64.023 1.177.023h4c.536 0 .898 0 1.177-.023.271-.021.404-.06.492-.102.223-.11.4-.28.509-.486.04-.074.078-.191.1-.446.022-.263.022-.607.022-1.123V4.88c0-.516 0-.86-.023-1.123-.021-.255-.06-.372-.1-.446a1.14 1.14 0 0 0-.508-.486c-.088-.043-.22-.081-.492-.102-.28-.022-.64-.023-1.177-.023z",clipRule:"evenodd"})]}),yO=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillOpacity:.88,d:"M12 3.333h-2c-.4 0-.667.267-.667.667v8c0 .4.267.667.667.667h2c1.467 0 2.667-1.2 2.667-2.667V6c0-1.467-1.2-2.667-2.667-2.667M13.333 10c0 .733-.6 1.333-1.333 1.333h-1.333V10h.666c.4 0 .667-.267.667-.667s-.267-.666-.667-.666h-.666V7.333h.666c.4 0 .667-.266.667-.666S11.733 6 11.333 6h-.666V4.667H12c.733 0 1.333.6 1.333 1.333zm-6-2.667c.4 0 .667-.266.667-.666S7.733 6 7.333 6h-.666V4c0-.4-.267-.667-.667-.667H4A2.675 2.675 0 0 0 1.333 6v4c0 1.467 1.2 2.667 2.667 2.667h2c.4 0 .667-.267.667-.667v-2h.666c.4 0 .667-.267.667-.667s-.267-.666-.667-.666h-.666V7.333zm-2 4H4c-.733 0-1.333-.6-1.333-1.333V6c0-.733.6-1.333 1.333-1.333h1.333z"})}),yK=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.167 2.667v10.666M9.833 2.667v10.666m-7.166-3.5h10.666M2.667 6.167h10.666m-8.666 7.166h6.666a2 2 0 0 0 2-2V4.667a2 2 0 0 0-2-2H4.667a2 2 0 0 0-2 2v6.666a2 2 0 0 0 2 2"})}),y_=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.625 2.162V4.64c0 .336 0 .504.061.632.054.113.14.205.246.263.12.065.278.065.593.065h2.323M12 6.793v4.327c0 1.008 0 1.512-.184 1.897-.162.339-.42.614-.737.787C10.718 14 10.245 14 9.3 14H5.7c-.945 0-1.418 0-1.779-.196a1.75 1.75 0 0 1-.737-.787C3 12.632 3 12.128 3 11.12V4.88c0-1.008 0-1.512.184-1.897.162-.339.42-.614.737-.787C4.282 2 4.755 2 5.7 2h1.807c.412 0 .619 0 .813.05q.26.067.488.215c.17.112.316.267.608.579l1.793 1.912c.292.312.438.467.542.65.093.16.161.336.202.52.047.207.047.427.047.867"})}),yH=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M3.333 6V4a2 2 0 0 1 2-2h5.334a2 2 0 0 1 2 2v2M3.333 6h9.334M3.333 6v4m9.334-4v4m0 0v2a2 2 0 0 1-2 2H5.333a2 2 0 0 1-2-2v-2m9.334 0H3.333m2-2h.007m-.007-4h.007m-.007 8h.007"})}),y$=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 1.667V8m0 0 5.667-3.148M8 8 2.333 4.852M8 8v6.333m5.667-3.185-5.149-2.86c-.189-.105-.284-.158-.384-.178a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-5.149 2.86M14 10.706V5.294c0-.228 0-.342-.034-.444a.7.7 0 0 0-.142-.243c-.073-.079-.173-.134-.373-.245l-4.933-2.74c-.189-.106-.284-.158-.384-.179a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-4.933 2.74c-.2.112-.3.167-.373.246a.7.7 0 0 0-.142.243C2 4.952 2 5.066 2 5.294v5.412c0 .228 0 .342.034.444q.045.136.142.243c.073.079.173.134.373.245l4.933 2.74c.189.106.284.158.384.179q.134.027.268 0c.1-.02.195-.073.384-.178l4.933-2.74c.2-.112.3-.167.373-.246a.7.7 0 0 0 .142-.243c.034-.102.034-.216.034-.444"})}),yW=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8 14-.067-.1c-.463-.695-.694-1.042-1-1.293a2.7 2.7 0 0 0-.919-.492C5.636 12 5.218 12 4.384 12h-.917c-.747 0-1.12 0-1.406-.145a1.33 1.33 0 0 1-.582-.583c-.146-.285-.146-.659-.146-1.405V4.133c0-.746 0-1.12.146-1.405.127-.25.331-.455.582-.583C2.347 2 2.72 2 3.467 2h.266c1.494 0 2.24 0 2.811.29.502.256.91.664 1.165 1.166C8 4.026 8 4.773 8 6.266M8 14V6.267M8 14l.067-.1c.463-.695.694-1.042 1-1.293.271-.223.583-.39.919-.492.378-.115.796-.115 1.63-.115h.917c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 2 13.28 2 12.533 2h-.266c-1.494 0-2.24 0-2.811.29-.502.256-.91.664-1.165 1.166C8 4.026 8 4.773 8 6.266"})}),yq=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 15 14",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.032 6.054a1.6 1.6 0 0 1 1.275-.637h.22c.5 0 .973.236 1.274.637l.066.088c.07.094.182.15.3.15.76 0 1.375.615 1.375 1.375v1.02a2.396 2.396 0 0 1-2.396 2.397H6.688a2.396 2.396 0 0 1-2.396-2.396V7.667c0-.76.615-1.375 1.375-1.375.118 0 .229-.056.3-.15zm.8.6-.065.088c-.26.346-.668.55-1.1.55a.375.375 0 0 0-.375.375v1.02c0 .772.625 1.397 1.396 1.397h.094a1.667 1.667 0 1 1 1.27 0h.094c.77 0 1.396-.625 1.396-1.396V7.667a.375.375 0 0 0-.375-.375c-.433 0-.84-.204-1.1-.55L8 6.654a.6.6 0 0 0-.475-.237h-.219a.6.6 0 0 0-.475.237M6.75 8.542a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.333 0",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8.547 2.667 8.01 1.594l-.038-.078c-.175-.35-.336-.674-.588-.92a2.1 2.1 0 0 0-.779-.482C6.271-.001 5.91-.001 5.518 0H2.855c-.35 0-.655 0-.908.02-.27.023-.544.072-.81.207-.391.2-.71.519-.91.91-.135.267-.184.541-.206.81C0 2.2 0 2.507 0 2.855v6.726c0 .534 0 .98.03 1.344.03.38.098.736.27 1.074A2.75 2.75 0 0 0 1.502 13.2c.337.172.693.24 1.073.27.365.03.81.03 1.345.03h6.994c.534 0 .98 0 1.344-.03.38-.03.737-.098 1.074-.27A2.75 2.75 0 0 0 14.534 12c.171-.338.239-.694.27-1.074.03-.364.03-.81.03-1.344V6.586c0-.534 0-.98-.03-1.344-.031-.38-.099-.736-.27-1.074a2.75 2.75 0 0 0-1.202-1.201c-.338-.172-.694-.24-1.074-.27-.364-.03-.81-.03-1.344-.03zm-2.43-1.135c-.065-.022-.152-.032-.685-.032H2.883c-.385 0-.63 0-.814.016-.176.014-.231.038-.25.048a.6.6 0 0 0-.255.255c-.01.019-.034.074-.048.25a8 8 0 0 0-.016.598h5.37l-.201-.402c-.239-.477-.286-.55-.335-.598a.6.6 0 0 0-.218-.135m1.951 2.635h2.815c.573 0 .957 0 1.253.025.287.023.424.065.515.111.235.12.426.311.546.546.046.09.088.228.112.515.024.296.024.68.024 1.253V9.55c0 .573 0 .957-.024 1.253-.024.287-.066.424-.112.515a1.25 1.25 0 0 1-.546.546c-.09.046-.228.088-.515.111-.296.025-.68.025-1.253.025H3.95c-.572 0-.957 0-1.253-.025-.287-.023-.424-.065-.514-.111a1.25 1.25 0 0 1-.547-.546c-.046-.09-.088-.228-.111-.515-.024-.296-.025-.68-.025-1.253V4.167z",clipRule:"evenodd"})]}),yG=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 15 14",...e,children:[(0,tq.jsx)("path",{d:"M6.333 7.771a.5.5 0 1 0 0 1H8.5a.5.5 0 1 0 0-1zM6.333 8.854a.5.5 0 1 0 0 1h1.625a.5.5 0 0 0 0-1z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.928 4.828a1.3 1.3 0 0 1 .38.157c.134.082.244.193.359.308l.915.915c.115.115.226.226.308.36a1.3 1.3 0 0 1 .157.379c.037.153.037.31.036.472v2.008c0 .212 0 .4-.012.556-.014.166-.044.34-.13.509a1.3 1.3 0 0 1-.574.573c-.17.087-.343.117-.51.13-.155.014-.343.014-.555.014h-1.77c-.212 0-.4 0-.556-.013a1.3 1.3 0 0 1-.51-.13 1.3 1.3 0 0 1-.573-.574 1.3 1.3 0 0 1-.13-.51c-.013-.155-.013-.343-.013-.555V6.573c0-.211 0-.4.013-.556.013-.166.044-.34.13-.509.126-.246.327-.447.574-.573.169-.086.342-.117.509-.13.156-.013.344-.013.556-.013h.925c.162 0 .318 0 .471.036m-.47.964v.704c0 .065 0 .14.006.206a.8.8 0 0 0 .078.294.77.77 0 0 0 .337.337.8.8 0 0 0 .294.079c.066.005.142.005.207.005h.703v1.992c0 .235 0 .382-.009.492-.009.105-.022.132-.025.137a.3.3 0 0 1-.136.136.4.4 0 0 1-.137.025c-.11.01-.257.01-.493.01H6.55c-.236 0-.382 0-.493-.01a.4.4 0 0 1-.136-.025.3.3 0 0 1-.137-.136.4.4 0 0 1-.025-.137 7 7 0 0 1-.009-.492V6.592c0-.236 0-.383.01-.493a.4.4 0 0 1 .024-.137.3.3 0 0 1 .137-.136.4.4 0 0 1 .136-.025c.11-.009.257-.01.493-.01z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"m8.01 1.594.537 1.073h2.367c.534 0 .98 0 1.344.03.38.03.737.098 1.074.27a2.75 2.75 0 0 1 1.202 1.201c.171.338.239.694.27 1.074.03.364.03.81.03 1.344v2.995c0 .534 0 .98-.03 1.344-.031.38-.099.736-.27 1.074a2.75 2.75 0 0 1-1.202 1.201c-.338.172-.694.24-1.074.27-.364.03-.81.03-1.344.03H3.92c-.535 0-.98 0-1.345-.03-.38-.03-.736-.098-1.073-.27A2.75 2.75 0 0 1 .3 12c-.172-.338-.24-.694-.27-1.074C0 10.56 0 10.115 0 9.58V2.855c0-.349 0-.655.02-.908.023-.269.072-.543.207-.81.2-.391.519-.71.91-.91.266-.135.54-.184.81-.206C2.2 0 2.506 0 2.855 0h2.663c.391-.002.753-.002 1.087.113.292.1.558.265.779.481.252.247.413.571.588.921zM5.432 1.5c.533 0 .62.01.684.032a.6.6 0 0 1 .218.135c.049.047.096.121.335.598l.2.402H1.5c0-.265.004-.45.016-.598.014-.176.038-.231.048-.25a.6.6 0 0 1 .255-.255c.019-.01.074-.034.25-.048.184-.015.429-.016.814-.016zM8.1 4.167H1.5V9.55c0 .573 0 .957.025 1.253.023.287.065.424.111.515.12.235.311.426.547.546.09.046.227.088.514.111.296.025.68.025 1.253.025h6.933c.573 0 .957 0 1.253-.025.287-.023.424-.065.515-.111a1.25 1.25 0 0 0 .546-.546c.046-.09.088-.228.112-.515.024-.296.024-.68.024-1.253V6.617c0-.573 0-.957-.024-1.253-.024-.287-.066-.424-.112-.515a1.25 1.25 0 0 0-.546-.546c-.09-.046-.228-.088-.515-.111-.296-.025-.68-.025-1.253-.025z",clipRule:"evenodd"})]}),yU=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 15 14",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.572 5.097a.8.8 0 0 0-.31 0c-.122.025-.228.085-.283.116l-.016.009L4.96 6.335l-.016.01c-.059.03-.172.093-.26.188a.8.8 0 0 0-.165.28 1 1 0 0 0-.039.32v2.235c0 .067-.002.196.04.319.034.104.09.2.164.28.088.096.201.157.26.19l.016.008 2.004 1.114.016.008a1 1 0 0 0 .282.117.8.8 0 0 0 .311 0 1 1 0 0 0 .283-.117l.015-.008 2.004-1.114.016-.009c.059-.032.172-.093.26-.189a.8.8 0 0 0 .165-.28 1 1 0 0 0 .04-.319V7.132a1 1 0 0 0-.04-.318.8.8 0 0 0-.165-.281c-.088-.095-.201-.157-.26-.189l-.016-.009L7.87 5.222l-.015-.009c-.055-.031-.162-.091-.283-.116M6.009 6.896l1.408-.782 1.408.782-1.408.782zM9.354 9.31V7.746l-1.437.798v1.565zM5.48 7.746l1.438.798v1.565L5.479 9.31z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"m8.01 1.594.537 1.073h2.367c.534 0 .98 0 1.344.03.38.03.737.098 1.074.27a2.75 2.75 0 0 1 1.202 1.201c.171.338.239.694.27 1.074.03.364.03.81.03 1.344v2.995c0 .534 0 .98-.03 1.344-.031.38-.099.736-.27 1.074a2.75 2.75 0 0 1-1.202 1.201c-.338.172-.694.24-1.074.27-.364.03-.81.03-1.344.03H3.92c-.535 0-.98 0-1.345-.03-.38-.03-.736-.098-1.073-.27A2.75 2.75 0 0 1 .3 12c-.172-.338-.24-.694-.27-1.074C0 10.56 0 10.115 0 9.58V2.855c0-.349 0-.655.02-.908.023-.269.072-.543.207-.81.2-.391.519-.71.91-.91.266-.135.54-.184.81-.206C2.2 0 2.506 0 2.855 0h2.663c.391-.002.753-.002 1.087.113.292.1.558.265.779.481.252.247.413.571.588.921zM5.432 1.5c.533 0 .62.01.684.032a.6.6 0 0 1 .218.135c.049.047.096.121.335.598l.2.402H1.5c0-.265.004-.45.016-.598.014-.176.038-.231.048-.25a.6.6 0 0 1 .255-.255c.019-.01.074-.034.25-.048.184-.015.429-.016.814-.016zM8.1 4.167H1.5V9.55c0 .573 0 .957.025 1.253.023.287.065.424.111.515.12.235.311.426.547.546.09.046.227.088.514.111.296.025.68.025 1.253.025h6.933c.573 0 .957 0 1.253-.025.287-.023.424-.065.515-.111a1.25 1.25 0 0 0 .546-.546c.046-.09.088-.228.112-.515.024-.296.024-.68.024-1.253V6.617c0-.573 0-.957-.024-1.253-.024-.287-.066-.424-.112-.515a1.25 1.25 0 0 0-.546-.546c-.09-.046-.228-.088-.515-.111-.296-.025-.68-.025-1.253-.025z",clipRule:"evenodd"})]}),yQ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C4.853 2 5.413 2 6.533 2h2.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V14L8 11.333 3.333 14z"})}),yJ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 8.667a.667.667 0 1 0 0-1.334.667.667 0 0 0 0 1.334M12.667 8.667a.667.667 0 1 0 0-1.334.667.667 0 0 0 0 1.334M3.333 8.667a.667.667 0 1 0 0-1.334.667.667 0 0 0 0 1.334"})}),yZ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12 6.667V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H5.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C4 1.84 4 2.027 4 2.4v4.267m8 0H4m8 0V6.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C10.48 10 9.92 10 8.8 10H7.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C4 8.48 4 7.92 4 6.8v-.133M9.667 10v3a1.667 1.667 0 1 1-3.334 0v-3"})}),yY=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m11.667 4.333-7.334 7.334M5.667 7V4.333M4.333 5.667H7m2 4.666h2.667M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),yX=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 6.667H2m8.667-5.334V4M5.333 1.333V4M5.2 14.667h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-5.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.186 2 4.747 2 5.867v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),y0=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#cancel_inline_svg__clip0_1931_7958)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m3.287 3.287 9.426 9.426M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),y1=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M3.333 8.667h2M1.333 6l1.334.667.847-2.542c.175-.524.262-.786.424-.98.143-.172.327-.304.535-.386.235-.092.512-.092 1.065-.092h4.924c.553 0 .83 0 1.065.092.208.082.392.214.535.386.162.194.25.456.424.98l.847 2.542L14.667 6m-4 2.667h2m-8.134-2h6.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v1.8c0 .31 0 .464-.026.593a1.33 1.33 0 0 1-1.047 1.048c-.13.025-.284.025-.594.025h-.333A1.333 1.333 0 0 1 11.333 12a.333.333 0 0 0-.333-.333H5a.333.333 0 0 0-.333.333c0 .736-.597 1.333-1.334 1.333H3c-.31 0-.465 0-.593-.025a1.33 1.33 0 0 1-1.048-1.048c-.026-.129-.026-.284-.026-.593v-1.8c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218"})}),y2=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8 14-.067-.1c-.463-.695-.694-1.042-1-1.293a2.7 2.7 0 0 0-.919-.492C5.635 12 5.218 12 4.384 12h-.917c-.747 0-1.12 0-1.406-.145a1.33 1.33 0 0 1-.582-.583c-.146-.285-.146-.659-.146-1.405V4.133c0-.746 0-1.12.146-1.405.127-.25.331-.455.582-.583C2.347 2 2.72 2 3.467 2h.266c1.494 0 2.24 0 2.81.29.503.256.91.664 1.166 1.166C8 4.026 8 4.773 8 6.266M8 14V6.267M8 14l.067-.1c.463-.695.694-1.042 1-1.293.271-.223.583-.39.919-.492.378-.115.796-.115 1.63-.115h.917c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 2 13.28 2 12.533 2h-.266c-1.494 0-2.24 0-2.811.29-.502.256-.91.664-1.165 1.166C8 4.026 8 4.773 8 6.266"})}),y3=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M14.667 12.2v-1.533c0-.4-.267-.667-.667-.667h-1.333V8.467c.4-.2.666-.667.666-1.134C13.333 6.6 12.733 6 12 6c-.467 0-.933.267-1.133.667h-2.2V5.2c.8-.267 1.333-1 1.333-1.867 0-1.133-.867-2-2-2s-2 .867-2 2c0 .867.533 1.6 1.333 1.867v1.467h-2.2C4.933 6.267 4.467 6 4 6c-.733 0-1.333.6-1.333 1.333 0 .467.266.934.666 1.134V10H2c-.4 0-.667.267-.667.667V12.2c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-.867h2.666v.867c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-1.533c0-.4-.267-.667-.667-.667H4.667V8.467c.2-.134.333-.267.466-.467h5.734c.133.2.266.333.466.467V10H10c-.4 0-.667.267-.667.667V12.2c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133v-.867h2.666v.867c-.4.2-.666.667-.666 1.133 0 .734.6 1.334 1.333 1.334s1.333-.6 1.333-1.334c0-.466-.266-.933-.666-1.133M8 4c-.4 0-.667-.267-.667-.667S7.6 2.667 8 2.667s.667.266.667.666S8.4 4 8 4"})}),y6=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.667 14v-1.333c0-1.243-.85-2.287-2-2.583m-2.334-7.89a2.668 2.668 0 0 1 0 4.945m1 6.861c0-1.242 0-1.864-.203-2.354a2.67 2.67 0 0 0-1.443-1.443C9.197 10 8.576 10 7.333 10h-2c-1.242 0-1.863 0-2.354.203-.653.27-1.172.79-1.443 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),y4=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.727 9.007 4.553 2.653m-.007-7.32L5.727 6.993M14 3.333a2 2 0 1 1-4 0 2 2 0 0 1 4 0M6 8a2 2 0 1 1-4 0 2 2 0 0 1 4 0m8 4.667a2 2 0 1 1-4 0 2 2 0 0 1 4 0"})}),y5=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#chart-scatter_inline_svg__clip0_1257_7155)",children:[(0,tq.jsx)("path",{fill:"#fff",fillOpacity:.01,d:"M24 0H0v24h24z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M3 3v18h18"}),(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M10 12a2 2 0 1 0 0-4 2 2 0 0 0 0 4M18.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5M7.5 18a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3M16.5 16a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3",clipRule:"evenodd"})]})}),y7=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#check-circle_inline_svg__clip0_723_2418)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5 8 2 2 4-4m3.667 2A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),y8=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m6 7.333 2 2 6.667-6.666m-4-.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V8"})}),y9=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m2.867 5.074-3.047 4a.667.667 0 0 1-1.053.006L5.14 8.34a.667.667 0 0 1 1.053-.82L7.28 8.907 9.8 5.573a.67.67 0 1 1 1.067.814z"})}),ve=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m4.5 6.75 4.5 4.5 4.5-4.5"})}),vt=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.25 13.5 6.75 9l4.5-4.5"})}),vi=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m6.75 13.5 4.5-4.5-4.5-4.5"})}),vn=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6 4.667 2.667 8 6 11.333m4-6.666L13.333 8 10 11.333"})}),vr=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.5 11.25 9 6.75l-4.5 4.5"})}),va=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5 8h.007M11 8h.007M8 8h.007M8 11h.007M8 5h.007M2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2"})}),vl=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M12 12.667H4a2 2 0 0 1-2-2V5.333a.667.667 0 0 0-1.333 0v5.334A3.333 3.333 0 0 0 4 14h8a.666.666 0 1 0 0-1.333M9.333 7.333H6.667a.667.667 0 1 0 0 1.334h2.666a.667.667 0 0 0 0-1.334m6-.706a1 1 0 0 0-.04-.18v-.06a.7.7 0 0 0-.126-.187l-4-4a.7.7 0 0 0-.187-.127h-.06A.6.6 0 0 0 10.7 2H5.333a2 2 0 0 0-2 2v5.333a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V6.627m-4-2.354L13.06 6H12a.667.667 0 0 1-.667-.667zM14 9.333a.666.666 0 0 1-.667.667h-8a.667.667 0 0 1-.666-.667V4a.667.667 0 0 1 .666-.667H10v2a2 2 0 0 0 2 2h2zM6.667 6H8a.667.667 0 0 0 0-1.333H6.667a.667.667 0 1 0 0 1.333"})}),vo=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#classification-store_inline_svg__clip0_1905_2488)",children:(0,tq.jsx)("path",{d:"M1.25 8a2.085 2.085 0 0 1 2.084-2.083c.498 0 .977.18 1.353.501l1.247-.83a2.083 2.083 0 0 1 3.419-1.836l1.248-.833a2.085 2.085 0 1 1 4.15-.253 2.085 2.085 0 0 1-2.084 2.084c-.498 0-.978-.18-1.354-.502l-1.247.83q.017.128.018.255-.002.128-.018.254l1.247.831a2.084 2.084 0 0 1 2.827.109 2.085 2.085 0 0 1 0 2.946 2.083 2.083 0 0 1-2.827.108l-1.247.832q.017.125.018.253-.002.129-.018.254l1.248.832a2.082 2.082 0 1 1-.12 3.054 2.08 2.08 0 0 1-.593-1.726l-1.247-.832a2.08 2.08 0 0 1-2.826-.108 2.09 2.09 0 0 1-.594-1.727L4.687 9.58A2.082 2.082 0 0 1 1.25 8m10.834 5.334a.584.584 0 1 0 1.167-.002.584.584 0 0 0-1.167.002m0-5.334A.584.584 0 1 0 13.252 8 .584.584 0 0 0 12.084 8m0-5.333a.585.585 0 0 0 .584.583.584.584 0 1 0-.584-.583m-6.685 5.08q.016.125.018.253-.002.128-.018.252l1.248.832a2.082 2.082 0 0 1 2.706 0l1.248-.832A2 2 0 0 1 10.583 8q.002-.128.018-.253l-1.248-.832A2.08 2.08 0 0 1 8 7.417c-.498 0-.977-.18-1.353-.502zm2.018 2.92A.585.585 0 0 0 8 11.25a.584.584 0 1 0-.583-.585m0-5.333a.583.583 0 1 0 1.167-.001.583.583 0 0 0-1.167 0M2.75 8a.584.584 0 1 0 1.168 0A.584.584 0 0 0 2.75 8"})})}),vs=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333M9.807 8.86a.667.667 0 0 1-.217 1.093.67.67 0 0 1-.73-.146L8 8.94l-.86.867a.667.667 0 0 1-1.093-.217.67.67 0 0 1 .146-.73L7.06 8l-.867-.86a.67.67 0 0 1 .947-.947L8 7.06l.86-.867a.67.67 0 0 1 .947.947L8.94 8z"})}),vd=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#close_inline_svg__clip0_723_2211)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12 4-8 8m0-8 8 8"})})}),vc=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M1.333 9.333h13.334M5.333 14h5.334m-6.134-2h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v3.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),vf=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M9.503 1.988a.7.7 0 0 1 .509.848L7.345 13.503a.7.7 0 0 1-1.357-.34L8.654 2.498a.7.7 0 0 1 .85-.51M4.172 4.838a.7.7 0 0 1 .99.99L2.99 8l2.172 2.172a.701.701 0 0 1-.99.99L1.505 8.497a.7.7 0 0 1 0-.99zM10.838 4.838a.7.7 0 0 1 .99 0l2.667 2.667a.7.7 0 0 1 0 .99l-2.667 2.667a.7.7 0 0 1-.99-.99l2.171-2.173-2.17-2.17a.7.7 0 0 1 0-.99"})}),vu=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M6.1 9.273a.626.626 0 0 1 .627.626v2.992a.626.626 0 0 1-1.253 0v-1.48l-2.655 2.655a.628.628 0 0 1-1.069-.442c0-.166.066-.326.184-.443l2.655-2.655h-1.48a.627.627 0 0 1 0-1.253zM13.624 1.75a.626.626 0 0 1 .442 1.07l-2.655 2.654h1.48a.626.626 0 0 1 0 1.253H9.899a.626.626 0 0 1-.626-.626V3.109a.626.626 0 0 1 1.253 0v1.479l2.655-2.654a.63.63 0 0 1 .443-.184"})}),vm=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M4 6.667h.007m1.326 2.666h.007m1.327-2.666h.006M8 9.333h.007m1.326-2.666h.007m1.327 2.666h.006M12 6.667h.007M3.467 12h9.066c.747 0 1.12 0 1.406-.145.25-.128.454-.332.582-.583.146-.285.146-.659.146-1.405V6.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C13.653 4 13.28 4 12.533 4H3.467c-.747 0-1.12 0-1.406.145-.25.128-.454.332-.582.583-.146.285-.146.659-.146 1.405v3.734c0 .746 0 1.12.146 1.405.127.25.331.455.582.583.286.145.659.145 1.406.145"})}),vp=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M1.333 8A6.667 6.667 0 0 0 8 14.667a2 2 0 0 0 2-2v-.334c0-.31 0-.464.017-.594a2 2 0 0 1 1.722-1.722c.13-.017.285-.017.594-.017h.334a2 2 0 0 0 2-2A6.667 6.667 0 0 0 1.333 8"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M4.667 8.667a.667.667 0 1 0 0-1.334.667.667 0 0 0 0 1.334M10.667 6a.667.667 0 1 0 0-1.333.667.667 0 0 0 0 1.333M6.667 5.333a.667.667 0 1 0 0-1.333.667.667 0 0 0 0 1.333"})]}),vg=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M4.533 2h-.4c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 3.013 2 3.387 2 4.133v7.734c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145h.4c.747 0 1.12 0 1.406-.145.25-.128.455-.332.582-.583.146-.285.146-.659.146-1.405V4.133c0-.746 0-1.12-.146-1.405a1.33 1.33 0 0 0-.582-.583C5.653 2 5.28 2 4.533 2M11.867 2h-.4c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v7.734c0 .746 0 1.12.146 1.405.127.25.331.455.582.583.286.145.659.145 1.406.145h.4c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405V4.133c0-.746 0-1.12-.145-1.405a1.33 1.33 0 0 0-.583-.583C12.987 2 12.613 2 11.867 2"})}),vh=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.04 4.25c.218 0 .432-.001.603.014.131.011.364.038.583.173l.091.066.101.089c.22.22.344.526.331.848s-.187.561-.277.678c-.104.134-.25.288-.394.444L9.774 9.039v2.055c0 .017.012.225-.063.42a.95.95 0 0 1-.26.37c-.15.132-.342.194-.363.202l-1.394.536c-.062.024-.155.06-.239.085a1 1 0 0 1-.463.025.96.96 0 0 1-.6-.393.95.95 0 0 1-.159-.457c-.008-.089-.007-.189-.007-.252V9.04L3.922 6.561c-.145-.156-.29-.31-.394-.444-.09-.117-.264-.356-.277-.678-.015-.368.15-.714.432-.937l.091-.066c.219-.135.452-.162.583-.173.17-.015.385-.014.603-.014zM7.358 8.055c.03.031.094.096.155.18l.058.09.075.153q.03.079.05.163c.034.144.03.289.03.344v2.018l.548-.211V8.985c0-.055-.004-.2.03-.344l.05-.163q.032-.08.075-.153l.058-.09c.061-.084.125-.149.155-.18l2.142-2.305H5.216z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M14.03.26c.966.098 1.72.915 1.72 1.907v11.666a1.917 1.917 0 0 1-1.917 1.917H2.167c-.992 0-1.81-.754-1.907-1.72l-.01-.197V2.167C.25 1.108 1.108.25 2.167.25h11.666zM2.166 1.75a.417.417 0 0 0-.417.417v11.666l.009.084c.039.19.207.333.408.333h11.666c.23 0 .417-.187.417-.417V2.167a.42.42 0 0 0-.333-.408l-.084-.009z",clipRule:"evenodd"})]}),vy=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M3.8 6.05a.75.75 0 0 0 0 1.5v-1.5m2.7.75.53.53a.75.75 0 0 0 0-1.06zm-1.73.67a.75.75 0 0 0 1.06 1.06L5.3 8zm1.06-2.4a.75.75 0 0 0-1.06 1.06l.53-.53zm6.07 4.88a.75.75 0 0 0 0-1.5v1.5M9.2 9.2l-.53-.53a.75.75 0 0 0 0 1.06zm1.73-.67a.75.75 0 1 0-1.06-1.06l.53.53zm-1.06 2.4a.75.75 0 1 0 1.06-1.06l-.53.53zM3.2 2v.75h4.2v-1.5H3.2zm4.5 9.6v-.75H3.2v1.5h4.5zM2 10.4h.75V3.2h-1.5v7.2zm6.6-7.2h-.75V5h1.5V3.2zm-5.4 8.4v-.75a.45.45 0 0 1-.45-.45h-1.5a1.95 1.95 0 0 0 1.95 1.95zM7.4 2v.75a.45.45 0 0 1 .45.45h1.5A1.95 1.95 0 0 0 7.4 1.25zM3.2 2v-.75A1.95 1.95 0 0 0 1.25 3.2h1.5a.45.45 0 0 1 .45-.45zm5.4 2.4v.75h4.2v-1.5H8.6zM14 5.6h-.75v7.2h1.5V5.6zM12.8 14v-.75H8.6v1.5h4.2zm-5.4-1.2h.75V5.6h-1.5v7.2zM8.6 14v-.75a.45.45 0 0 1-.45-.45h-1.5a1.95 1.95 0 0 0 1.95 1.95zm5.4-1.2h-.75a.45.45 0 0 1-.45.45v1.5a1.95 1.95 0 0 0 1.95-1.95zm-1.2-8.4v.75a.45.45 0 0 1 .45.45h1.5a1.95 1.95 0 0 0-1.95-1.95zm-4.2 0v-.75A1.95 1.95 0 0 0 6.65 5.6h1.5a.45.45 0 0 1 .45-.45zM3.8 6.8v.75h2.7v-1.5H3.8zM5.3 8l.53.53 1.2-1.2-.53-.53-.53-.53-1.2 1.2zm1.2-1.2.53-.53-1.2-1.2-.53.53-.53.53 1.2 1.2zm5.4 2.4v-.75H9.2v1.5h2.7zM10.4 8l-.53-.53-1.2 1.2.53.53.53.53 1.2-1.2zM9.2 9.2l-.53.53 1.2 1.2.53-.53.53-.53-1.2-1.2z"})}),vv=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M7.334 11.334H2.667a1.333 1.333 0 0 1-1.333-1.333V2A1.333 1.333 0 0 1 2.667.668h8V2h-8v8h4.667V8.668l2.666 2-2.666 2zm5.333 2.667V4.668H5.334v4H4v-4a1.333 1.333 0 0 1 1.334-1.334h7.333A1.333 1.333 0 0 1 14 4.668V14a1.333 1.333 0 0 1-1.333 1.333H5.334A1.333 1.333 0 0 1 4 14.001v-1.333h1.334V14z"})}),vb=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.179 2.138h8.536M2.179 4.465h8.536M2.179 6.793H7.61M13.397 8.766l-3.42 3.419a2 2 0 0 1-1.021.547l-1.489.298.298-1.489a2 2 0 0 1 .547-1.022L11.73 7.1m1.665 1.666.718-.717a1 1 0 0 0 0-1.415l-.252-.251a1 1 0 0 0-1.414 0l-.717.717m1.665 1.666L11.732 7.1"})}),vx=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 4.667h9.334M3.333 8h9.334M3.333 11.333H8"})}),vj=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M12 2q.889 0 1.735.15M12 2C6.477 2 2 6.477 2 12s4.477 10 10 10m0-20v20m5.738-18.191c.954.67 1.786 1.502 2.455 2.456m1.657 4a10 10 0 0 1 0 3.47m-1.66 4.006c-.67.952-1.5 1.782-2.453 2.45m-4.004 1.66q-.845.148-1.733.149"})}),vw=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M10.667 10H14m0 0V6.667M14 10l-2-2C8.667 4.667 4 5.833 2 9"})}),vk=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M8.602 1.981a.75.75 0 0 1 .898-.564 6.753 6.753 0 0 1 0 13.165.75.75 0 1 1-.334-1.462 5.253 5.253 0 0 0 0-10.24.75.75 0 0 1-.564-.899M4.363 12.83a.75.75 0 0 1 1.024-.276c.45.26.938.45 1.445.566a.75.75 0 1 1-.332 1.462 6.7 6.7 0 0 1-1.861-.727.75.75 0 0 1-.276-1.024M2.027 8.947a.75.75 0 0 1 .928.513c.156.538.397 1.049.715 1.51a.75.75 0 0 1-1.235.851 6.7 6.7 0 0 1-.921-1.945.75.75 0 0 1 .513-.93"}),(0,tq.jsx)("path",{d:"M7.47 5.47a.75.75 0 0 1 1.06 0l2 2a.76.76 0 0 1 .162.816.8.8 0 0 1-.162.244l-2 2a.75.75 0 1 1-1.06-1.06l.72-.72H6a.75.75 0 1 1 0-1.5h2.19l-.72-.72a.75.75 0 0 1 0-1.06M2.14 4.65a.75.75 0 0 1 1.312.727l-.105.186v.001a5.2 5.2 0 0 0-.525 1.56.75.75 0 0 1-1.478-.248c.12-.713.35-1.388.675-2.007l.009-.016zM6.5 1.417a.75.75 0 0 1 .332 1.463 5.2 5.2 0 0 0-1.803.79.75.75 0 1 1-.85-1.236 6.7 6.7 0 0 1 2.32-1.017"})]}),vT=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.1,d:"m2.579 6.778-.006.008a.7.7 0 0 0-.117.274c-.016.094 0 .19.058.284l.547 1.688a.58.58 0 0 0 .543.431h.249q.153.232.329.445.242.385.563.7a5.2 5.2 0 0 0-1.711 3.338c-.036.335.24.604.57.604.333 0 .593-.27.636-.591a3.95 3.95 0 0 1 1.526-2.626 3.8 3.8 0 0 0 1.685.39h1.098c.6 0 1.162-.138 1.666-.38a3.96 3.96 0 0 1 1.543 2.616c.046.321.305.591.638.591.33 0 .606-.269.57-.604a5.1 5.1 0 0 0-1.727-3.322q.33-.321.58-.716.175-.213.328-.445h.249a.58.58 0 0 0 .543-.431l.547-1.688a.4.4 0 0 0 .058-.284.7.7 0 0 0-.117-.274h.001l-.007-.008c-.103-.105-.259-.219-.426-.238C12.971 3.71 10.761 1.45 8 1.45S3.03 3.71 3.005 6.54c-.167.02-.323.133-.426.238ZM8 2.68c1.843 0 3.354 1.316 3.711 3.097a2.73 2.73 0 0 0-2.063-.936H6.352c-.83 0-1.557.362-2.064.936C4.646 3.997 6.157 2.68 8 2.68Zm1.648 3.392c.906 0 1.599.71 1.599 1.645 0 .386-.074.75-.207 1.08H8.55c-.362 0-.6.31-.6.616 0 .369.3.615.6.615h1.254A3.73 3.73 0 0 1 5.16 9.19a2.84 2.84 0 0 1-.408-1.472c0-.934.693-1.645 1.599-1.645z"})}),vS=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C9.52 2 10.08 2 11.2 2h7.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C22 3.52 22 4.08 22 5.2v7.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C20.48 16 19.92 16 18.8 16H16M5.2 22h7.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C16 20.48 16 19.92 16 18.8v-7.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C14.48 8 13.92 8 12.8 8H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 9.52 2 10.08 2 11.2v7.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 22 4.08 22 5.2 22"})}),vC=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.667 2.667c.62 0 .93 0 1.184.068a2 2 0 0 1 1.414 1.414c.068.254.068.564.068 1.184v6.134c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V5.333c0-.62 0-.93.068-1.184a2 2 0 0 1 1.414-1.414c.254-.068.564-.068 1.184-.068M6.4 4h3.2c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H6.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291C5.84 4 6.027 4 6.4 4"})}),vD=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M9 14 4 9m0 0 5-5M4 9h6.4c3.36 0 5.04 0 6.324.654a6 6 0 0 1 2.622 2.622C20 13.56 20 15.24 20 18.6V20"})}),vI=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 15",...e,children:(0,tq.jsx)("path",{d:"M2.667 2.5h10.666c.354 0 .693.132.943.366.25.235.39.553.39.884v7.5c0 .332-.14.65-.39.884a1.38 1.38 0 0 1-.943.366H2.667a1.38 1.38 0 0 1-.943-.366 1.21 1.21 0 0 1-.39-.884v-7.5c0-.331.14-.65.39-.884s.59-.366.943-.366m0 1.25v7.5h4.666v-7.5zm10.666 7.5v-7.5h-.826c.16.338.126.669.126.706-.046.42-.36.857-.473 1.013l-1.553 1.594 2.213-.013.007.763-3.467-.02-.027-.624s2.034-2.019 2.134-2.2c.093-.175.473-1.219-.467-1.219-.82.031-.727.813-.727.813l-1.026.006s.006-.413.253-.819h-.833v7.5h1.72l-.007-.537.647-.007s.606-.1.613-.656c.027-.625-.54-.625-.64-.625-.087 0-.713.031-.713.544H9.273S9.3 8.68 11 8.68c1.733 0 1.64 1.263 1.64 1.263s.027.781-.74 1.075l.347.231zM5.947 10h-1V6.375l-1.2.35v-.769l2.093-.7h.107z"})}),vM=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.333 8A5.333 5.333 0 0 1 8 13.333M13.333 8A5.333 5.333 0 0 0 8 2.667M13.333 8H2.667M8 13.333A5.333 5.333 0 0 1 2.667 8M8 13.333A8.16 8.16 0 0 0 10.134 8 8.16 8.16 0 0 0 8 2.667m0 10.666A8.16 8.16 0 0 1 5.867 8 8.16 8.16 0 0 1 8 2.667M2.667 8A5.333 5.333 0 0 1 8 2.667M4 13.333a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0m10.667 0a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0M4 2.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0m10.667 0a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0"})}),vL=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#country-select_inline_svg__clip0_1242_1678)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10 1.639a6.667 6.667 0 1 0 3.871 3.201m-2.538-1.007h.004M7 14.593v-1.47c0-.08.029-.156.08-.217l1.658-1.933a.333.333 0 0 0-.088-.506L6.746 9.379a.33.33 0 0 1-.124-.125L5.38 7.08a.33.33 0 0 0-.319-.167l-3.685.329M14 4c0 1.473-1.333 2.667-2.667 4C10 6.667 8.667 5.473 8.667 4A2.667 2.667 0 1 1 14 4m-2.5-.167a.167.167 0 1 1-.333 0 .167.167 0 0 1 .333 0"})})}),vF=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8.058 2a5.326 5.326 0 0 1 5.325 5.324v.764a3.002 3.002 0 0 1-1.26 5.723H9.218a.681.681 0 1 1 0-1.362h1.641V9.066a1.26 1.26 0 0 1 1.162-1.256v-.486a3.964 3.964 0 0 0-7.928 0v.486a1.26 1.26 0 0 1 1.16 1.256v3.484a1.26 1.26 0 0 1-1.26 1.26 3.005 3.005 0 0 1-2.662-4.375 3 3 0 0 1 1.4-1.347v-.764A5.325 5.325 0 0 1 8.058 2M3.894 9.17a1.641 1.641 0 0 0 0 3.274zm8.328 3.274a1.64 1.64 0 0 0 0-3.274z",clipRule:"evenodd"})}),vE=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#crop_inline_svg__clip0_723_2340)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.667 4h3.2c.746 0 1.12 0 1.405.145.25.128.455.332.583.583.145.285.145.659.145 1.405v3.2M1.333 4H4m8 8v2.667M14.667 12H6.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C4 10.987 4 10.613 4 9.867V1.333"})})}),vP=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8 7.4a.6.6 0 0 1 .6.6v1.4h4.733c.7 0 1.267.567 1.267 1.267v2.666l-.006.13a1.27 1.27 0 0 1-1.131 1.13l-.13.007H2.667a1.267 1.267 0 0 1-1.26-1.137l-.007-.13v-2.666c0-.7.567-1.267 1.267-1.267H7.4V8a.6.6 0 0 1 .6-.6m-5.333 3.2a.07.07 0 0 0-.067.067v2.666l.005.026c.01.024.034.041.062.041h10.666l.026-.005a.07.07 0 0 0 .036-.036l.005-.026v-2.666l-.005-.026a.07.07 0 0 0-.062-.041zM2 5.066c.253 0 .465.159.553.38a.596.596 0 0 1-.22 1.154H2a.6.6 0 0 1-.6-.6v-.333a.6.6 0 0 1 .6-.6m2.667.334a.6.6 0 0 1 0 1.2h-.334a.6.6 0 0 1 0-1.2zM7 5.4a.6.6 0 1 1 0 1.2h-.333a.6.6 0 1 1 0-1.2zm2.333 0a.6.6 0 1 1 0 1.2H9a.6.6 0 1 1 0-1.2zm2.334 0a.6.6 0 0 1 0 1.2h-.334a.6.6 0 0 1 0-1.2zM14 5.066a.6.6 0 0 1 .6.601V6a.6.6 0 0 1-.6.6h-.333a.597.597 0 0 1-.222-1.154.6.6 0 0 1 .555-.38M2 3.233a.6.6 0 0 1 .6.6v.334a.6.6 0 0 1-1.2 0v-.334a.6.6 0 0 1 .6-.6m12 0a.6.6 0 0 1 .6.6v.334a.6.6 0 1 1-1.2 0v-.334a.6.6 0 0 1 .6-.6M2.333 1.4a.6.6 0 0 1 .6.6c0 .254-.159.465-.38.553a.595.595 0 0 1-.553.38.6.6 0 0 1-.6-.6V2a.6.6 0 0 1 .6-.6zM14 1.4a.6.6 0 0 1 .6.6v.333a.596.596 0 0 1-1.154.22.595.595 0 0 1 .221-1.153zm-9.333 0a.6.6 0 0 1 0 1.2h-.334a.6.6 0 0 1 0-1.2zM7 1.4a.6.6 0 1 1 0 1.2h-.333a.6.6 0 1 1 0-1.2zm2.333 0a.6.6 0 1 1 0 1.2H9a.6.6 0 1 1 0-1.2zm2.334 0a.6.6 0 0 1 0 1.2h-.334a.6.6 0 0 1 0-1.2z"})}),vA=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M10 10.667H6A.667.667 0 1 0 6 12h4a.666.666 0 1 0 0-1.333m-4-4h.667a.667.667 0 1 0 0-1.334H6a.667.667 0 1 0 0 1.334M10 8H6a.667.667 0 0 0 0 1.333h4A.667.667 0 1 0 10 8m3.14 2.193a.7.7 0 0 0-.22-.14.62.62 0 0 0-.507 0 .7.7 0 0 0-.22.14.8.8 0 0 0-.14.22.67.67 0 0 0 .14.727.67.67 0 0 0 .727.14.8.8 0 0 0 .22-.14.67.67 0 0 0 .14-.727.8.8 0 0 0-.14-.22m.193-4.233a1 1 0 0 0-.04-.18v-.06a.7.7 0 0 0-.126-.187l-4-4a.7.7 0 0 0-.187-.126.2.2 0 0 0-.06 0 .6.6 0 0 0-.22-.074H4.667a2 2 0 0 0-2 2v9.334a2 2 0 0 0 2 2H10a.667.667 0 0 0 0-1.334H4.667A.667.667 0 0 1 4 12.667V3.333a.667.667 0 0 1 .667-.666H8v2a2 2 0 0 0 2 2h2V8a.666.666 0 1 0 1.333 0V5.96M10 5.333a.667.667 0 0 1-.667-.666v-1.06l1.727 1.726zM12.667 12a.666.666 0 0 0-.667.667V14a.666.666 0 1 0 1.333 0v-1.333a.667.667 0 0 0-.666-.667"})}),vN=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M9.68 7.435a.65.65 0 0 1 .654.007l4.584 2.75a.65.65 0 0 1 0 1.116l-4.584 2.75a.65.65 0 0 1-.984-.558V8a.65.65 0 0 1 .33-.565m.97 4.917 2.67-1.602-2.67-1.603z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M7.073 9.252a.635.635 0 0 1 0 1.268H5.261c-.572 0-.97 0-1.28.022-.304.02-.48.06-.61.114a1.79 1.79 0 0 0-.966.965c-.054.132-.093.308-.114.612-.021.31-.021.707-.021 1.279a.635.635 0 0 1-1.27 0c0-.554 0-1.002.024-1.366.026-.369.08-.698.208-1.01a3.05 3.05 0 0 1 1.652-1.652c.312-.129.641-.182 1.01-.208.364-.024.812-.024 1.367-.024z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.167 2a3.051 3.051 0 1 1-.001 6.103A3.051 3.051 0 0 1 6.167 2m0 1.27a1.783 1.783 0 1 0 0 3.566 1.783 1.783 0 0 0 0-3.566",clipRule:"evenodd"})]}),vR=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#customer-duplicate_inline_svg__clip0_2441_47847)",children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.657.65a.637.637 0 1 1 0 1.275H4.51c-.574 0-.967 0-1.27.025-.297.024-.453.069-.563.125-.26.132-.47.343-.602.602-.056.11-.1.266-.125.562-.025.304-.025.697-.025 1.27v6.916a3.3 3.3 0 0 1 2.048-.706H8.67c.593 0 .983-.004 1.32.063a3.325 3.325 0 0 1 2.61 2.612c.04.195.05.406.055.66l.105-.004c.296-.024.452-.069.562-.125.26-.132.47-.343.602-.602.056-.11.1-.266.125-.562.025-.304.025-.697.025-1.27 0-.352.285-.639.638-.639l.128.013c.29.06.508.318.509.625 0 .553 0 1.007-.03 1.375-.03.375-.095.717-.258 1.037-.255.5-.66.905-1.16 1.16-.32.163-.662.228-1.037.258-.236.02-.505.024-.805.027q-.014.002-.033.003L12 15.348l-.509.002H4.51c-.553 0-1.007 0-1.375-.03-.375-.03-.717-.095-1.037-.258a2.65 2.65 0 0 1-1.16-1.16 2 2 0 0 1-.119-.296.6.6 0 0 1-.067-.243 4 4 0 0 1-.072-.498c-.03-.368-.03-.822-.03-1.375V4.51c0-.553 0-1.007.03-1.375.03-.375.095-.717.258-1.037.255-.5.66-.905 1.16-1.16C2.418.775 2.76.71 3.135.68 3.503.65 3.957.65 4.51.65zM3.973 11.994c-.868 0-1.61.54-1.909 1.303q.006.014.011.026c.132.26.343.47.602.602.11.056.266.1.562.125.304.025.697.025 1.27.025h6.874a2.6 2.6 0 0 0-.033-.433 2.05 2.05 0 0 0-1.608-1.609c-.182-.036-.417-.039-1.071-.039z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.657 2.999a3.324 3.324 0 1 1 0 6.647 3.324 3.324 0 0 1 0-6.647m0 1.275A2.048 2.048 0 1 0 6.66 8.37a2.048 2.048 0 0 0-.002-4.096",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M13 6.951a1.05 1.05 0 0 1 0 2.099 1.05 1.05 0 0 1 0-2.099M12.998.95a.96.96 0 0 1 .908.66 1 1 0 0 1 .041.395l-.35 3.504a.602.602 0 0 1-1.179.11l-.02-.11-.35-3.504-.005-.1a.96.96 0 0 1 .566-.873 1 1 0 0 1 .389-.082"})]})}),vV=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.757 6.985c.464 0 .911.17 1.244.473.333.305.524.72.524 1.159v.181h1.008c.148 0 .293.054.403.154s.175.241.175.39v3.989c0 .342-.149.666-.407.902a1.43 1.43 0 0 1-.964.367H9.774c-.358 0-.706-.13-.964-.367a1.22 1.22 0 0 1-.407-.902V9.343c0-.15.065-.29.175-.39s.255-.155.403-.155h1.008v-.181c0-.438.191-.854.524-1.159.333-.304.78-.473 1.244-.473m-2.198 6.346c0 .042.018.087.057.123s.096.058.158.058h3.966a.24.24 0 0 0 .158-.058.17.17 0 0 0 .057-.123V9.886h-.43v.182a.53.53 0 0 1-.175.39.6.6 0 0 1-.403.153.6.6 0 0 1-.403-.153.53.53 0 0 1-.175-.39v-.182h-1.224v.182a.53.53 0 0 1-.175.39.6.6 0 0 1-.403.153.6.6 0 0 1-.402-.153.53.53 0 0 1-.176-.39v-.182h-.43zm2.198-5.258a.65.65 0 0 0-.438.165.52.52 0 0 0-.174.379v.181h1.224v-.181a.52.52 0 0 0-.174-.379.65.65 0 0 0-.438-.165",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M7.073 9.252a.635.635 0 0 1 0 1.269H5.26c-.571 0-.968 0-1.279.021-.304.021-.48.06-.611.114a1.78 1.78 0 0 0-.965.965c-.055.132-.094.307-.114.612-.022.31-.022.707-.022 1.28a.635.635 0 0 1-1.269 0c0-.555 0-1.003.025-1.367.025-.37.078-.698.208-1.01a3.05 3.05 0 0 1 1.65-1.652c.313-.129.642-.182 1.012-.208.363-.024.811-.024 1.365-.024z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.167 2a3.052 3.052 0 1 1-.001 6.104 3.052 3.052 0 0 1 0-6.104m0 1.27a1.783 1.783 0 1 0 0 3.566 1.783 1.783 0 0 0 0-3.567",clipRule:"evenodd"})]}),vz=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#customer-segment-group_inline_svg__clip0_723_2376)",children:[(0,tq.jsx)("path",{d:"M4.667 6a2.333 2.333 0 1 0 0-4.667 2.333 2.333 0 0 0 0 4.667ZM11.333 6a2.333 2.333 0 1 0 0-4.667 2.333 2.333 0 0 0 0 4.667Z"}),(0,tq.jsx)("path",{strokeLinecap:"round",d:"M1.333 14.667v-3c0-1.841 1.257-3.334 2.807-3.334h1.685C7.186 8.333 8 9.676 8 9.676"}),(0,tq.jsx)("path",{strokeLinecap:"round",d:"M14.667 14.667v-3c0-1.841-1.272-3.334-2.84-3.334h-1.705c-1.32 0-2.125 1.343-2.122 1.343M3.667 13.333h9"}),(0,tq.jsx)("path",{strokeLinecap:"round",d:"m11.432 12.086.413.416.826.831-.826.854-.413.427M4.777 12.077l-.42.418-.84.836.84.85.42.424"})]})}),vB=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#customer-segment_inline_svg__clip0_723_2373)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 1.333A6.666 6.666 0 0 1 14.667 8M8 1.333V8m0-6.667A6.667 6.667 0 1 0 14.667 8M8 1.333A6.667 6.667 0 0 1 14.667 8m0 0H8m6.667 0a6.67 6.67 0 0 1-2.748 5.393L8 8"})})}),vO=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#customer_inline_svg__clip0_723_2364)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 9.333s1 1.334 2.667 1.334 2.667-1.334 2.667-1.334m.666-3.173c-.263.323-.623.507-1 .507-.376 0-.726-.184-1-.507m-2.666 0c-.264.323-.624.507-1 .507-.377 0-.727-.184-1-.507m10 1.84A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),vK=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M14.42 10.967H5.117l.467-.951 7.763-.014a.54.54 0 0 0 .534-.447l1.075-6.017a.543.543 0 0 0-.533-.64l-9.875-.032-.084-.397a.555.555 0 0 0-.54-.438H1.507a.552.552 0 1 0 0 1.103h1.968l.368 1.754.908 4.395-1.169 1.908a.55.55 0 0 0-.047.575.55.55 0 0 0 .493.303h.98a1.604 1.604 0 0 0 1.281 2.567 1.604 1.604 0 0 0 1.282-2.567h2.518a1.604 1.604 0 1 0 2.884.964c0-.349-.116-.688-.322-.964h1.77a.553.553 0 0 0 .552-.552.553.553 0 0 0-.553-.55M4.778 3.953l8.997.03-.881 4.934-7.067.013zm1.514 9.574a.495.495 0 0 1 0-.988.495.495 0 0 1 0 .988m5.08 0a.495.495 0 0 1 0-.988.495.495 0 0 1 0 .988"}),(0,tq.jsx)("path",{d:"M14.42 10.967v-.1zm-9.304 0-.09-.044-.07.144h.16zm.467-.951v-.1h-.062l-.027.056zm7.763-.014v-.1zm.534-.447.099.017zm1.075-6.017.099.017zm-.117-.444.077-.064zm-.416-.196.001-.1zm-9.875-.032-.097.02.016.08h.081zm-.084-.397-.098.02zM1.508 2.03v-.1zm-.551.552h-.1zm.551.551v-.1zm1.968 0 .097-.02-.016-.08h-.081zm.368 1.754.098-.02v-.001zm.908 4.395.085.052.021-.034-.008-.038zM3.583 11.19l.081.06.005-.008zm-.047.575.09-.045v-.001zm1.474.303.08.06.12-.16h-.2zm-.322.964h.1zm2.884-.964v-.1h-.199l.12.16zm2.518 0 .08.06.12-.16h-.2zm-.322.964h.1zm2.884-.964v-.1h-.2l.12.16zm2.322-.552h.1zM4.777 3.953v-.1h-.123l.025.12zm8.997.03.098.017.021-.117h-.119zm-.881 4.934v.1h.083l.015-.082zm-7.067.013-.098.02.016.08h.082zm.465 4.597v-.1zm5.08 0v-.1zm.494-.494h-.1zm2.556-2.166H5.116v.2h9.305zm-9.215.144.467-.951-.18-.088-.467.951zm.378-.895 7.762-.014v-.2l-7.763.014zm7.762-.014c.31 0 .577-.223.633-.53l-.197-.035a.44.44 0 0 1-.436.365zm.633-.53 1.075-6.017-.197-.035-1.075 6.017zm1.075-6.017a.64.64 0 0 0-.14-.525l-.153.128c.084.1.119.233.096.362zm-.14-.526a.65.65 0 0 0-.22-.17l-.085.182q.089.041.152.117zm-.22-.17a.65.65 0 0 0-.271-.06l-.001.2q.099 0 .187.042zm-.271-.06-9.875-.033v.2l9.874.032zm-9.778.046-.084-.397-.196.042.085.396zm-.084-.397a.655.655 0 0 0-.639-.517v.2c.213 0 .4.152.443.358zm-.639-.517H1.508v.2h2.414zm-2.414 0a.65.65 0 0 0-.46.191l.141.142a.45.45 0 0 1 .32-.133zm-.46.191a.65.65 0 0 0-.191.46h.2c0-.119.047-.234.132-.318zm-.191.46c0 .174.068.34.19.462l.142-.142a.45.45 0 0 1-.132-.32zm.19.462c.123.122.289.19.461.19v-.2a.45.45 0 0 1-.319-.132zm.461.19h1.968v-.2H1.508zm1.87-.079.368 1.753.196-.041-.369-1.753zm.368 1.753.908 4.395.196-.04-.908-4.396zm.92 4.323-1.168 1.907.17.105 1.17-1.908zm-1.163 1.9a.65.65 0 0 0-.125.332l.2.017a.45.45 0 0 1 .086-.23zm-.125.332c-.01.12.014.241.07.348l.177-.091a.45.45 0 0 1-.048-.24zm.07.348a.65.65 0 0 0 .58.358v-.2a.45.45 0 0 1-.402-.248zm.58.358h.982v-.2h-.981zm.902-.16a1.7 1.7 0 0 0-.342 1.024h.2a1.5 1.5 0 0 1 .302-.904zm-.342 1.024c0 .94.764 1.703 1.703 1.703v-.2c-.829 0-1.503-.674-1.503-1.503zm1.703 1.703c.94 0 1.703-.764 1.703-1.703h-.2c0 .829-.674 1.503-1.503 1.503zm1.703-1.703c0-.37-.123-.73-.341-1.024l-.16.12c.193.26.301.577.301.904zm-.422-.864h2.518v-.2H7.572zm2.438-.16a1.7 1.7 0 0 0-.342 1.024h.2a1.5 1.5 0 0 1 .301-.904zm-.342 1.024c0 .94.763 1.703 1.703 1.703v-.2c-.83 0-1.503-.674-1.503-1.503zm1.703 1.703c.94 0 1.703-.764 1.703-1.703h-.2c0 .829-.674 1.503-1.503 1.503zm1.703-1.703c0-.37-.123-.73-.342-1.024l-.16.12c.194.26.302.577.302.904zm-.422-.864h1.77v-.2h-1.77zm1.77 0a.653.653 0 0 0 .652-.652h-.2c0 .25-.203.452-.452.452zm.652-.652a.65.65 0 0 0-.193-.46l-.14.142a.45.45 0 0 1 .133.319zm-.193-.46a.65.65 0 0 0-.46-.19v.2c.12 0 .234.048.32.132zM4.777 4.053l8.997.03v-.2l-8.997-.03zm8.898-.088-.88 4.935.196.035L13.872 4zm-.783 4.852-7.067.013v.2l7.068-.013zm-6.969.092L4.875 3.933l-.196.04L5.728 8.95zm.368 4.518a.395.395 0 0 1-.394-.394h-.2c0 .327.267.594.594.594zm-.394-.394c0-.217.178-.394.394-.394v-.2a.595.595 0 0 0-.594.594zm.394-.394c.217 0 .394.177.394.394h.2a.595.595 0 0 0-.594-.594zm.394.394a.4.4 0 0 1-.115.278l.141.142a.6.6 0 0 0 .174-.42zm-.115.278a.4.4 0 0 1-.279.116v.2a.6.6 0 0 0 .42-.174zm4.8.116a.395.395 0 0 1-.393-.394h-.2c0 .327.267.594.594.594zm-.393-.394c0-.217.177-.394.394-.394v-.2a.595.595 0 0 0-.594.594zm.394-.394c.216 0 .394.177.394.394h.2a.595.595 0 0 0-.594-.594zm.394.394a.4.4 0 0 1-.116.278l.142.142a.6.6 0 0 0 .174-.42zm-.116.278a.4.4 0 0 1-.278.116v.2a.6.6 0 0 0 .42-.174z",mask:"url(#customers_inline_svg__path-1-outside-1_723_2410)"})]}),v_=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m13.333 2.667-7.666 7.666m0-4.666 7.666 7.666M11.667 8h.006m2.994 0h.006M4 2a2 2 0 1 1 0 4 2 2 0 0 1 0-4m0 8a2 2 0 1 1 0 4 2 2 0 0 1 0-4"})}),vH=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{fill:"currentColor",stroke:"currentColor",strokeWidth:.1,clipPath:"url(#dashboard_inline_svg__clip0_638_2071)",children:(0,tq.jsx)("path",{d:"M2.167 7.467h6.416A1.217 1.217 0 0 0 9.8 6.25V2.167A1.217 1.217 0 0 0 8.583.95H2.167A1.217 1.217 0 0 0 .95 2.167V6.25a1.217 1.217 0 0 0 1.217 1.217Zm.05-5.25h6.316V6.2H2.217zM13.783.95h-1.7a1.217 1.217 0 0 0-1.216 1.217V6.25a1.217 1.217 0 0 0 1.216 1.217h1.75A1.216 1.216 0 0 0 15.05 6.25V2.167A1.217 1.217 0 0 0 13.833.95zm0 5.25h-1.65V2.217h1.65zM3.917 8.534h-1.75A1.217 1.217 0 0 0 .95 9.75v4.084a1.216 1.216 0 0 0 1.217 1.216h1.75a1.217 1.217 0 0 0 1.216-1.216V9.75a1.217 1.217 0 0 0-1.216-1.216Zm-.05 5.25h-1.65V9.8h1.65zM13.833 8.534H7.417A1.217 1.217 0 0 0 6.2 9.75v4.084a1.216 1.216 0 0 0 1.217 1.216h6.416a1.216 1.216 0 0 0 1.217-1.216V9.75a1.217 1.217 0 0 0-1.217-1.216Zm-.05 5.25H7.467V9.8h6.316z"})})}),v$=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",stroke:"currentColor",strokeWidth:.5,d:"M8.235.953a1.2 1.2 0 0 0-.47 0c-.178.037-.338.126-.488.21l-.038.021-4.933 2.74-.04.023c-.159.087-.328.181-.457.321a1.2 1.2 0 0 0-.25.425c-.06.181-.06.375-.06.556l.001.045v5.457c0 .181-.001.375.059.556.052.158.137.303.25.425.13.14.298.234.457.321l.04.022 4.933 2.741.038.02c.15.085.31.174.488.21.155.033.315.033.47 0 .178-.036.338-.125.488-.21l.038-.02 4.933-2.74.04-.023c.159-.087.328-.181.457-.321.113-.122.198-.267.25-.425.06-.181.06-.375.06-.556l-.001-.045V5.249c0-.181.001-.375-.059-.556a1.2 1.2 0 0 0-.25-.425c-.13-.14-.298-.234-.457-.321l-.04-.022-4.933-2.741-.038-.02c-.15-.085-.31-.174-.488-.21Zm-.268.98a.2.2 0 0 1 .066 0q.004 0 .043.018c.043.02.1.052.2.107l4.694 2.609L8 7.428 3.03 4.667l4.695-2.609c.1-.055.156-.086.2-.107zM2.5 5.516l5 2.778v5.523L2.791 11.2a5 5 0 0 1-.207-.12l-.04-.027a.2.2 0 0 1-.035-.06l-.006-.049a5 5 0 0 1-.003-.24z",clipRule:"evenodd"})}),vW=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.667 4.852 8 8m0 0L2.333 4.852M8 8v6.333m6-3.627V5.294c0-.228 0-.342-.034-.444a.7.7 0 0 0-.142-.243c-.073-.079-.173-.134-.373-.245l-4.933-2.74c-.189-.106-.284-.158-.384-.179a.7.7 0 0 0-.268 0c-.1.02-.195.073-.384.178l-4.933 2.74c-.2.112-.3.167-.373.246a.7.7 0 0 0-.142.243C2 4.952 2 5.066 2 5.294v5.412c0 .228 0 .342.034.444q.045.136.142.243c.073.079.173.134.373.245l4.933 2.74c.189.106.284.158.384.179q.134.027.268 0c.1-.02.195-.073.384-.178l4.933-2.74c.2-.112.3-.167.373-.246a.7.7 0 0 0 .142-.243c.034-.102.034-.216.034-.444"})}),vq=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.74 1.35a.7.7 0 0 1 .604.04l5.333 3a.7.7 0 0 1 .175.141l.015.018q.083.099.125.22.006.016.01.032.017.052.024.105l.003.046q.003.024.004.048v3a.7.7 0 0 1-1.4 0V6.197L8.7 8.409V14q-.002.021-.005.041a.7.7 0 0 1-.073.274q-.006.015-.012.028-.006.008-.012.017a1 1 0 0 1-.052.073l-.033.04a.7.7 0 0 1-.164.13q-.028.016-.056.03-.03.014-.064.024a.7.7 0 0 1-.198.04q-.015.002-.031.003-.021-.002-.042-.005a.7.7 0 0 1-.265-.069q-.017-.007-.036-.015l-5.333-3a.7.7 0 0 1-.357-.61V5a1 1 0 0 1 .008-.107q.001-.013.004-.026a1 1 0 0 1 .022-.08l.012-.036a.7.7 0 0 1 .11-.192l.018-.02a1 1 0 0 1 .086-.084l.055-.04.037-.023.005-.003 5.333-3zm-4.373 9.24L7.3 12.802V8.409L3.367 6.196zM4.094 5 8 7.196l3.905-2.198L8 2.803z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M11.505 9.505a.7.7 0 0 1 .99.99l-.805.805h2.977l.14.015a.7.7 0 0 1 0 1.37l-.14.015H11.69l.805.805.09.11a.7.7 0 0 1-.97.97l-.11-.09-2-2a.7.7 0 0 1-.109-.846l.022-.038a.7.7 0 0 1 .087-.106z"})]}),vG=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M6.475 10.536a.75.75 0 0 0-1.06 1.06zm1.77 2.83-.53.53a.75.75 0 0 0 1.06 0zM14.14 8.53a.75.75 0 0 0-1.06-1.06zM4.239 5.416a.75.75 0 0 0 0 1.5zm3.412 1.5a.75.75 0 0 0 0-1.5zM6.36 3.096l-.683.31zM8.106 8.75a.75.75 0 0 0 1.366-.62zM5.531 3.096l.682.31zm.223-.359-.572-.485zm.317-.12.331-.673zM2.418 8.13a.75.75 0 0 0 1.366.621zm3.37-5.424-.484-.572zm.164-.09-.18-.728zm-.537 8.98 2.3 2.3 1.06-1.06-2.3-2.3zm3.36 2.3L14.14 8.53l-1.06-1.06-5.367 5.366zm-4.536-6.98H7.65v-1.5H4.24zm1.437-3.51 2.43 5.345 1.366-.62-2.43-5.346zm.537 0a.8.8 0 0 1 .113-.184l-1.144-.97c-.096.113-.223.29-.334.533zm.829-.62c-.06-.132-.125-.278-.19-.392a1.07 1.07 0 0 0-.45-.45l-.663 1.345a.6.6 0 0 1-.171-.13c-.024-.027-.03-.041-.02-.024q.012.02.046.091l.082.18zm-.91.558a.5.5 0 0 1-.1.012.63.63 0 0 1-.293-.067l.663-1.345a.9.9 0 0 0-.403-.087 1 1 0 0 0-.227.03zm.194-.122-.013.015-.026.028-.028.026q-.005.004 0 0l.015-.012-.97-1.145c-.002.002-.069.055-.122.118zm-.052.057-.031.024-.003.003.026-.018-.004.002-.034.02-.697-1.329c-.051.027-.108.066-.117.072-.008.005-.065.043-.11.081zm-1.426-.494L2.418 8.13l1.366.621 2.43-5.345zm.924-.897c-.052.015-.103.033-.103.033h-.001l-.003.002-.008.003-.025.01-.024.01-.008.003-.003.001-.066.031.697 1.328-.065.03h.003l.008-.004.025-.01.025-.01.008-.003.002-.001s-.05.018-.102.033z"})}),vU=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3 14.667v-3.334m0-6.666V1.333M1.333 3h3.334M1.333 13h3.334m4-11L7.51 5.006c-.188.489-.282.733-.429.939a2 2 0 0 1-.47.47c-.206.147-.45.24-.94.429L2.668 8l3.006 1.156c.488.188.733.282.938.428a2 2 0 0 1 .471.471c.147.206.24.45.429.94L8.667 14l1.156-3.006c.188-.489.282-.733.428-.939q.197-.275.471-.47c.206-.147.45-.24.939-.429L14.667 8 11.66 6.844c-.49-.188-.733-.282-.939-.428a2 2 0 0 1-.471-.471c-.146-.206-.24-.45-.428-.94z"})}),vQ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10.667 1.25a.75.75 0 0 1 .75.75v.587a2.75 2.75 0 0 1 2.667 2.746v1.334a.75.75 0 0 1-.75.75H3.417V12l.007.128a1.25 1.25 0 0 0 1.243 1.122h2.667a.75.75 0 0 1 0 1.5H4.667a2.75 2.75 0 0 1-2.735-2.469L1.917 12V5.333a2.75 2.75 0 0 1 2.667-2.746V2a.75.75 0 0 1 1.5 0v.583h3.833V2a.75.75 0 0 1 .75-.75M6.084 4.667a.75.75 0 0 1-1.5 0v-.58a1.25 1.25 0 0 0-1.167 1.246v.584h9.167v-.584a1.25 1.25 0 0 0-1.167-1.246v.58a.75.75 0 0 1-1.5 0v-.584H6.084z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.643 7.917a.75.75 0 0 1 .75.75v.724c.202.078.39.187.556.32l.628-.36a.75.75 0 0 1 .75 1.298l-.628.362a2.1 2.1 0 0 1 .001.644l.627.363a.75.75 0 0 1-.75 1.298l-.64-.369q-.253.193-.544.304V14a.75.75 0 0 1-1.5 0v-.732a2 2 0 0 1-.559-.314l-.626.362a.75.75 0 0 1-.75-1.298l.627-.364a2 2 0 0 1-.026-.32q.001-.165.026-.322l-.627-.363a.75.75 0 0 1 .75-1.298l.627.36q.25-.201.558-.32v-.724a.75.75 0 0 1 .75-.75m0 2.833a.584.584 0 0 0-.506.875c.11.19.285.274.49.27a.63.63 0 0 0 .527-.28.54.54 0 0 0 .072-.281.584.584 0 0 0-.583-.584",clipRule:"evenodd"})]}),vJ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M5.5 8a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zM8.5 8a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zM11.5 8a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-1a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10.667 1.25a.75.75 0 0 1 .75.75v.587a2.75 2.75 0 0 1 2.667 2.746V12a2.75 2.75 0 0 1-2.75 2.75H4.667a2.75 2.75 0 0 1-2.735-2.469L1.917 12V5.333a2.75 2.75 0 0 1 2.667-2.746V2a.75.75 0 0 1 1.5 0v.583h3.833V2a.75.75 0 0 1 .75-.75M3.417 12l.007.128a1.25 1.25 0 0 0 1.243 1.122h6.667c.69 0 1.25-.56 1.25-1.25V7.417H3.417zm2.667-7.333a.75.75 0 0 1-1.5 0v-.58a1.25 1.25 0 0 0-1.167 1.246v.584h9.167v-.584a1.25 1.25 0 0 0-1.167-1.246v.58a.75.75 0 0 1-1.5 0v-.584H6.084z",clipRule:"evenodd"})]}),vZ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10 1.25a.75.75 0 0 1 .75.75v.583h.583a2.083 2.083 0 0 1 2.084 2.084v2.666a.75.75 0 0 1-.75.75H2.75v4.584a.583.583 0 0 0 .583.583h4.53a.75.75 0 0 1 0 1.5h-4.53a2.083 2.083 0 0 1-2.083-2.083v-8a2.083 2.083 0 0 1 2.083-2.084h.584V2a.75.75 0 0 1 1.5 0v.583H9.25V2a.75.75 0 0 1 .75-.75m1.917 3.417v1.916H2.75V4.667a.583.583 0 0 1 .583-.584h.584v.584a.75.75 0 0 0 1.5 0v-.584H9.25v.584a.75.75 0 0 0 1.5 0v-.584h.583a.583.583 0 0 1 .584.584",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M12.75 10.997a.75.75 0 0 0-1.5 0V12c0 .199.079.39.22.53l.666.667a.75.75 0 0 0 1.061-1.06l-.447-.448z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12 8.583a3.417 3.417 0 1 0 0 6.834 3.417 3.417 0 0 0 0-6.834m-1.355 2.062a1.917 1.917 0 1 1 2.71 2.711 1.917 1.917 0 0 1-2.71-2.711",clipRule:"evenodd"})]}),vY=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.6,d:"M14 6.667H2m8.667-5.334V4M5.333 1.333V4M7 9.333l1-.666V12m-.833 0h1.666M5.2 14.667h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-5.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.186 2 4.747 2 5.867v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),vX=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.374 2 2 5m4.333-1L2 8m4.333-1L2 11m4-1-3 3M6.333 2v12m7-12H2.667A.667.667 0 0 0 2 2.667v10.666c0 .368.298.667.667.667h10.666a.667.667 0 0 0 .667-.667V2.667A.667.667 0 0 0 13.333 2"})}),v0=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6.353h12M5.374 2 2 5m12-1.664-3.333 2.997M8.707 2 3.976 6.208M12.04 2 7.308 6.208M13.333 2H2.667A.667.667 0 0 0 2 2.667v10.666c0 .368.298.667.667.667h10.666a.667.667 0 0 0 .667-.667V2.667A.667.667 0 0 0 13.333 2"})}),v1=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M14 10.8V9.333C14 8.6 13.4 8 12.667 8h-4V6.6c1.133-.267 2-1.333 2-2.6 0-1.467-1.2-2.667-2.667-2.667A2.675 2.675 0 0 0 5.333 4c0 1.267.867 2.267 2 2.6V8h-4C2.6 8 2 8.6 2 9.333V10.8c-.8.267-1.333 1-1.333 1.867 0 1.133.866 2 2 2s2-.867 2-2c0-.867-.534-1.6-1.334-1.867V9.333h4V10.8c-.8.267-1.333 1-1.333 1.867 0 1.133.867 2 2 2s2-.867 2-2c0-.867-.533-1.6-1.333-1.867V9.333h4V10.8c-.8.267-1.334 1-1.334 1.867 0 1.133.867 2 2 2s2-.867 2-2c0-.867-.533-1.6-1.333-1.867M2.667 13.333c-.4 0-.667-.266-.667-.666S2.267 12 2.667 12s.666.267.666.667-.266.666-.666.666m4-9.333c0-.733.6-1.333 1.333-1.333s1.333.6 1.333 1.333S8.733 5.333 8 5.333 6.667 4.733 6.667 4M8 13.333c-.4 0-.667-.266-.667-.666S7.6 12 8 12s.667.267.667.667-.267.666-.667.666m5.333 0c-.4 0-.666-.266-.666-.666s.266-.667.666-.667.667.267.667.667-.267.666-.667.666"})}),v2=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.02 1.289a2.6 2.6 0 0 1 3.293 0l.082.069.005.004.05.043a1.4 1.4 0 0 0 1.498.184l1.808-.804a.6.6 0 0 1 .844.548v6.07c.287.008.524.028.74.086a2.6 2.6 0 0 1 1.838 1.838c.09.332.089.717.089 1.253v2.753a1.933 1.933 0 0 1-1.934 1.934H7.707c-1.098 0-1.958 0-2.65-.057-.704-.057-1.286-.177-1.812-.445a4.6 4.6 0 0 1-2.01-2.01c-.269-.527-.388-1.108-.445-1.812C.733 10.25.733 9.39.733 8.293v-6.96a.6.6 0 0 1 .844-.548l1.808.804.06.026a1.4 1.4 0 0 0 1.488-.253l.005-.004zm8.313 12.778a.733.733 0 0 0 .734-.734v-2.666c0-.659-.005-.87-.048-1.03a1.4 1.4 0 0 0-.99-.99 1.8 1.8 0 0 0-.429-.043v4.73c0 .404.328.733.733.733m-1.79 0h-3.81c-1.13 0-1.941 0-2.578-.053-.63-.051-1.036-.15-1.365-.318a3.4 3.4 0 0 1-1.486-1.486c-.168-.329-.267-.735-.318-1.365-.052-.637-.053-1.448-.053-2.578v-6.01l.965.428.005.002.075.033a2.6 2.6 0 0 0 2.732-.443l.004-.003.066-.057a1.4 1.4 0 0 1 1.84.057l.003.003.063.053a2.6 2.6 0 0 0 2.744.357l.005-.002.965-.428v11.076c0 .26.051.508.144.734M4.068 6a.6.6 0 0 1 .6-.6h2.666a.6.6 0 0 1 0 1.2H4.667a.6.6 0 0 1-.6-.6m2 2.667a.6.6 0 0 1 .6-.6h2a.6.6 0 0 1 0 1.2h-2a.6.6 0 0 1-.6-.6m.6 2.066a.6.6 0 1 0 0 1.2h2a.6.6 0 1 0 0-1.2zM5.333 8.667a.667.667 0 1 1-1.333 0 .667.667 0 0 1 1.333 0M4.667 12a.667.667 0 1 0 0-1.333.667.667 0 0 0 0 1.333",clipRule:"evenodd"})}),v3=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M7.167 2.667h-2a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h6.666a2 2 0 0 0 2-2v0"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.5,d:"M12.143 3.333c.493 0 .924.268 1.155.667m-1.155-.667c-.494 0-.925.268-1.155.667m1.155-.667V2m0 5.333V5.978m2.31-2.645L13.297 4M9.833 6l1.155-.667M14.452 6l-1.154-.667m-3.465-2L10.988 4m0 1.333a1.33 1.33 0 0 1 0-1.333m0 1.333c.262.454.71.654 1.155.645m0 0c.458-.01.913-.24 1.155-.645m0 0c.112-.187.178-.41.178-.666 0-.243-.065-.471-.178-.667"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8.5 10.667v2.666M5.833 13.333h5.334"})]}),v6=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 17 16",...e,children:[(0,tq.jsx)("path",{d:"M7.772 2.441a.673.673 0 0 1 0 1.32l-.135.013h-1.33c-.518 0-.867 0-1.135.023a1.6 1.6 0 0 0-.397.07l-.072.03c-.16.083-.3.201-.404.346l-.094.153c-.043.084-.08.209-.102.469-.022.268-.022.617-.022 1.136v5.076l.003.661c.003.186.008.34.02.475.02.26.058.385.1.468l.095.154c.105.144.244.263.404.345l.072.03c.082.03.202.055.397.07.268.023.617.023 1.135.023h5.076c.519 0 .868 0 1.136-.022.26-.022.386-.06.469-.101l.153-.095c.145-.105.263-.244.345-.404l.03-.072c.03-.082.055-.202.071-.396.022-.269.023-.618.023-1.136v-1.33a.674.674 0 0 1 1.347 0v1.33c0 .496 0 .909-.027 1.245a2.7 2.7 0 0 1-.19.856l-.054.115c-.209.409-.526.751-.915.99l-.171.096c-.305.155-.628.216-.971.244-.336.027-.75.027-1.246.027H6.307c-.496 0-.909 0-1.245-.027a2.7 2.7 0 0 1-.855-.19l-.116-.054a2.5 2.5 0 0 1-.99-.915l-.096-.171c-.155-.305-.216-.627-.244-.971a9 9 0 0 1-.023-.563l-.004-.682V6c0-.497 0-.91.027-1.245.028-.344.089-.667.244-.971l.096-.171c.239-.39.581-.707.99-.916l.116-.053a2.7 2.7 0 0 1 .855-.19c.336-.028.75-.028 1.245-.028h1.33z"}),(0,tq.jsx)("path",{d:"m8.938 5.672.477.475-.554.556a1.287 1.287 0 0 0 0 1.82l.097.09a1.29 1.29 0 0 0 1.723-.09l.556-.554.475.477.476.475-.555.555a2.635 2.635 0 0 1-3.525.181l-.2-.18a2.635 2.635 0 0 1 0-3.726l.555-.555z"}),(0,tq.jsx)("path",{d:"M11.237 7.97a.673.673 0 0 1 .951.951zM10.538 7.798a.673.673 0 0 1-.952-.952z"}),(0,tq.jsx)("path",{d:"m12.808 4.577.476.475-2.746 2.746-.476-.476-.476-.476L12.332 4.1zM14.407 6.703a.673.673 0 0 1-.952-.952z"}),(0,tq.jsx)("path",{d:"M11.436 2.24a2.635 2.635 0 0 1 3.526.182l.181.2c.788.966.788 2.36 0 3.326l-.181.2-.555.555-.476-.477-.476-.475.554-.555.09-.099a1.29 1.29 0 0 0 0-1.625l-.09-.097a1.287 1.287 0 0 0-1.722-.09l-.099.09-.555.554-.475-.476-.477-.476.556-.555zM8.463 5.196a.673.673 0 0 1 .952.951z"}),(0,tq.jsx)("path",{d:"M12.332 4.1a.673.673 0 0 1 .952.952zM11.633 3.93a.673.673 0 0 1-.952-.953z"})]}),v4=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 12 14",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M6 9.667A1.333 1.333 0 0 1 6 7m0 2.667A1.333 1.333 0 0 0 6 7m0 2.667v1M6 7V6m2.02 1.167-.866.5M4.846 9l-.867.5M8 9.536l-.856-.516M4.857 7.647 4 7.132M7.333 1v2.667A.667.667 0 0 0 8 4.333h2.667M7.333 1H2.667a1.333 1.333 0 0 0-1.334 1.333v9.334A1.333 1.333 0 0 0 2.667 13h6.666a1.333 1.333 0 0 0 1.334-1.333V4.333M7.333 1l3.334 3.333"})}),v5=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754m-3.82 6h-4m5.333-2.666H5.333m8-2.008v4.808c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.427-.218.988-.218 2.108-.218h2.14c.49 0 .735 0 .965.056a2 2 0 0 1 .578.24c.202.123.375.296.72.642l2.126 2.125c.346.346.519.519.643.72q.165.272.24.579c.054.23.054.475.054.964"})}),v7=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 3.333-3.96 3.96a1 1 0 0 1-1.414 0l-3.96-3.96M12.667 8.667l-3.96 3.96a1 1 0 0 1-1.414 0l-3.96-3.96"})}),v8=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 12.667-3.96-3.96a1 1 0 0 1 0-1.414l3.96-3.96M7.333 12.667l-3.96-3.96a1 1 0 0 1 0-1.414l3.96-3.96"})}),v9=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m3.667 3.333 3.96 3.96a1 1 0 0 1 0 1.414l-3.96 3.96M9 3.333l3.96 3.96a1 1 0 0 1 0 1.414L9 12.667"})}),be=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m3.333 12.667 3.96-3.96a1 1 0 0 1 1.414 0l3.96 3.96M3.333 7.333l3.96-3.96a1 1 0 0 1 1.414 0l3.96 3.96"})}),bt=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10.828a3 3 0 0 1 1.387-5.482 4.001 4.001 0 0 1 7.893 0 3 3 0 0 1 1.386 5.482m-8 .505L8 14m0 0 2.667-2.667M8 14V8"})}),bi=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",d:"M10.148 1H5.852c-.548 0-.979 0-1.326.028-.354.03-.65.09-.919.226-.439.224-.796.581-1.02 1.02-.136.269-.196.564-.225.919-.029.347-.029.778-.029 1.326v6.963c0 .547 0 .978.029 1.325.029.354.089.65.226.919.223.439.58.796 1.02 1.02.268.137.564.197.918.226.347.028.778.028 1.326.028h2.481a.333.333 0 1 0 0-.667H5.867c-.566 0-.97 0-1.287-.026-.313-.025-.51-.074-.67-.155a1.67 1.67 0 0 1-.728-.729c-.081-.159-.13-.357-.156-.67C3 12.436 3 12.033 3 11.467V4.533c0-.565 0-.97.026-1.286.026-.313.075-.511.156-.67.16-.314.414-.569.728-.729.16-.08.357-.13.67-.155a15 15 0 0 1 1.087-.026V3h-1a.333.333 0 1 0 0 .667h1V5h-1a.333.333 0 1 0 0 .667h1v1a.333.333 0 0 0 .666 0v-1h1a.333.333 0 1 0 0-.667h-1V3.667h1a.333.333 0 1 0 0-.667h-1V1.667h3.8c.566 0 .97 0 1.287.026.313.025.51.074.67.155.314.16.569.415.728.729.081.159.13.357.156.67.026.317.026.72.026 1.286v3.8a.333.333 0 1 0 .667 0V4.52c0-.548 0-.98-.029-1.326-.029-.355-.089-.65-.226-.919a2.33 2.33 0 0 0-1.02-1.02c-.268-.137-.564-.197-.918-.226C11.127 1 10.696 1 10.148 1"}),(0,tq.jsx)("path",{fill:"currentColor",d:"M11.667 10.667a.333.333 0 0 0-.667 0v3.195L9.57 12.43a.333.333 0 1 0-.472.471l2 2c.13.13.34.13.471 0l2-2a.333.333 0 1 0-.471-.471l-1.431 1.43z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M10.148 1H5.852c-.548 0-.979 0-1.326.028-.354.03-.65.09-.919.226-.439.224-.796.581-1.02 1.02-.136.269-.196.564-.225.919-.029.347-.029.778-.029 1.326v6.963c0 .547 0 .978.029 1.325.029.354.089.65.226.919.223.439.58.796 1.02 1.02.268.137.564.197.918.226.347.028.778.028 1.326.028h2.481a.333.333 0 1 0 0-.667H5.867c-.566 0-.97 0-1.287-.026-.313-.025-.51-.074-.67-.155a1.67 1.67 0 0 1-.728-.729c-.081-.159-.13-.357-.156-.67C3 12.436 3 12.033 3 11.467V4.533c0-.565 0-.97.026-1.286.026-.313.075-.511.156-.67.16-.314.414-.569.728-.729.16-.08.357-.13.67-.155a15 15 0 0 1 1.087-.026V3h-1a.333.333 0 1 0 0 .667h1V5h-1a.333.333 0 1 0 0 .667h1v1a.333.333 0 0 0 .666 0v-1h1a.333.333 0 1 0 0-.667h-1V3.667h1a.333.333 0 1 0 0-.667h-1V1.667h3.8c.566 0 .97 0 1.287.026.313.025.51.074.67.155.314.16.569.415.728.729.081.159.13.357.156.67.026.317.026.72.026 1.286v3.8a.333.333 0 1 0 .667 0V4.52c0-.548 0-.98-.029-1.326-.029-.355-.089-.65-.226-.919a2.33 2.33 0 0 0-1.02-1.02c-.268-.137-.564-.197-.918-.226C11.127 1 10.696 1 10.148 1"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M11.667 10.667a.333.333 0 0 0-.667 0v3.195L9.57 12.43a.333.333 0 1 0-.472.471l2 2c.13.13.34.13.471 0l2-2a.333.333 0 1 0-.471-.471l-1.431 1.43z"})]}),bn=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M14 14H2m10-6.667-4 4m0 0-4-4m4 4V2"})}),br=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M10.667 15.167H2C1.36 15.167.833 14.64.833 14V5.333c0-2.946 1.554-4.5 4.5-4.5h5.334c2.946 0 4.5 1.554 4.5 4.5v5.334c0 2.946-1.554 4.5-4.5 4.5ZM5.333 1.833c-2.386 0-3.5 1.114-3.5 3.5V14c0 .093.074.167.167.167h8.667c2.386 0 3.5-1.114 3.5-3.5V5.333c0-2.386-1.114-3.5-3.5-3.5z"}),(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M5.3 11.833c-.313 0-.6-.113-.813-.32a1.14 1.14 0 0 1-.307-1l.186-1.32c.04-.286.22-.653.427-.86l3.46-3.46c1.187-1.186 2.22-.653 2.874 0 .513.514.746 1.054.693 1.594-.04.44-.274.853-.694 1.28l-3.46 3.46a1.73 1.73 0 0 1-.86.433l-1.32.187c-.06 0-.126.006-.186.006Zm4.386-6.666c-.246 0-.466.16-.72.406l-3.46 3.46a.8.8 0 0 0-.146.294l-.187 1.32c-.006.066 0 .126.027.153.026.027.086.033.153.027l1.32-.187a.8.8 0 0 0 .293-.147l3.46-3.46c.254-.253.387-.473.407-.673.02-.227-.113-.493-.406-.787-.294-.28-.527-.406-.74-.406Z"}),(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M10.28 8.387a.4.4 0 0 1-.133-.02 3.65 3.65 0 0 1-2.514-2.514.506.506 0 0 1 .347-.62c.267-.073.54.08.613.347a2.66 2.66 0 0 0 1.82 1.82.503.503 0 0 1-.133.987Z"})]}),ba=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M6 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M10 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2M7 12a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2M7 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0M10 9a1 1 0 1 0 0-2 1 1 0 0 0 0 2"})}),bl=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#drop-target_inline_svg__clip0_723_2307)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.437 1.335c-.478.006-.765.032-.997.144a1.38 1.38 0 0 0-.619.582c-.118.219-.146.489-.152.939m8.143-1.665c.479.006.766.032.998.144.266.127.483.331.619.582.118.219.146.489.152.939m0 6c-.006.45-.034.72-.152.939-.136.25-.353.454-.62.582-.231.112-.518.138-.996.144m1.77-5.332v1.334M9.917 1.333h1.416m-7.65 13.334h5.384c.793 0 1.19 0 1.493-.146.266-.128.483-.332.619-.582.154-.286.154-.659.154-1.406V7.467c0-.747 0-1.12-.154-1.406a1.38 1.38 0 0 0-.62-.582c-.302-.146-.699-.146-1.492-.146H3.683c-.793 0-1.19 0-1.493.146a1.38 1.38 0 0 0-.619.582c-.154.286-.154.659-.154 1.406v5.066c0 .747 0 1.12.154 1.406.136.25.353.454.62.582.302.146.699.146 1.492.146"})})}),bo=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 7.333h-4M6.667 10H5.333m5.334-5.333H5.333m8 2V4.533c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.427-.218-.987-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h2.466M12 14s2-.953 2-2.383V9.949l-1.458-.522a1.6 1.6 0 0 0-1.084 0L10 9.95v1.668C10 13.047 12 14 12 14"})}),bs=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.981 3.507a1 1 0 0 1 1.414 0l1.097 1.096a1 1 0 0 1 0 1.414l-6.33 6.335a1 1 0 0 1-.51.273L2.8 13.2l.576-2.848a1 1 0 0 1 .272-.509z",clipRule:"evenodd"})}),bd=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 13.333h6m-12 0h1.116c.326 0 .49 0 .643-.037q.205-.048.385-.16c.135-.082.25-.197.48-.427L13 4.333a1.414 1.414 0 1 0-2-2L2.625 10.71c-.23.23-.346.345-.429.48q-.11.181-.16.385C2 11.728 2 11.891 2 12.217z"})}),bc=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m15.167 12-4.429-4m-3.81 0L2.5 12m-.333-7.333 5.443 3.81c.44.309.661.463.9.523.213.052.434.052.646 0 .24-.06.46-.214.9-.523l5.444-3.81M5.367 13.333H12.3c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.867c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.367c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.427-.218.988-.218 2.108v4.266c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),bf=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.667 6H1.333m8 5.667L11 10 9.333 8.333m-2.666 0L5 10l1.667 1.667M1.333 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108"})}),bu=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.255 8.143H9.76m-3.504 0V6.395a1.752 1.752 0 0 1 3.504 0v1.748m-3.504 0H5.38v2.625h5.255V8.143H9.76M15 5.518l-2.039-2.325a7.01 7.01 0 0 0-9.909 0 6.995 6.995 0 0 0 0 9.9 7.012 7.012 0 0 0 11.74-3.2M15 5.518V2.893m0 2.625h-2.614"})}),bm=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M12.333 10.667c1.289 0 2.334-1.94 2.334-4.334S13.622 2 12.333 2m0 8.667c-1.288 0-2.333-1.94-2.333-4.334S11.045 2 12.333 2m0 8.667L3.63 9.084c-.618-.112-.927-.169-1.177-.291a2 2 0 0 1-1.043-1.249c-.076-.268-.076-.582-.076-1.21 0-.63 0-.943.076-1.211a2 2 0 0 1 1.043-1.249c.25-.123.559-.179 1.177-.291L12.333 2m-9 7.333.263 3.676c.025.35.037.524.113.656.067.117.168.21.289.269.137.066.312.066.662.066h1.188c.4 0 .6 0 .748-.08a.67.67 0 0 0 .293-.316c.069-.154.053-.354.023-.752l-.245-3.185"})}),bp=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m10 6-4 4m7-2A5 5 0 1 1 3 8a5 5 0 0 1 10 0"})}),bg=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M9.833 6.667 14.5 2m0 0h-4m4 0v4M7.167 9.333 2.5 14m0 0h4m-4 0v-4"})}),bh=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 2H3.333C2.597 2 2 2.597 2 3.333V6m4 8H3.333A1.333 1.333 0 0 1 2 12.667V10m8-8h2.667C13.403 2 14 2.597 14 3.333V6m0 4v2.667c0 .736-.597 1.333-1.333 1.333H10"})}),by=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M1.333 9.333h13.334M5.333 14h5.334m-6.134-2h6.934c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.533c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v3.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),bv=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M7.5 1a.733.733 0 1 1 0 1.463H5.089c-.6 0-1.005 0-1.318.026-.304.024-.455.07-.559.122-.256.13-.465.338-.595.594-.053.103-.098.254-.123.557-.026.312-.026.716-.026 1.313v5.85c0 .597 0 1.001.026 1.313.025.303.07.454.123.557.13.256.339.464.595.594.104.053.255.098.56.122.312.026.718.026 1.317.026H7.5c.405 0 .734.328.734.731A.733.733 0 0 1 7.5 15H5.089c-.575 0-1.05 0-1.437-.03-.395-.033-.761-.103-1.106-.278a2.83 2.83 0 0 1-1.237-1.233c-.176-.343-.246-.708-.278-1.101-.032-.386-.031-.86-.031-1.433v-5.85c0-.573 0-1.047.03-1.433.033-.393.103-.758.28-1.101.27-.531.703-.962 1.236-1.233.345-.175.71-.245 1.106-.277C4.038.999 4.514 1 5.089 1zM12.17 4.134c.405 0 .733.328.733.732v6.592l.844-.841a.736.736 0 0 1 1.038 0 .73.73 0 0 1 0 1.034l-2.097 2.09-.115.094a.736.736 0 0 1-.923-.094l-2.096-2.09a.73.73 0 0 1 0-1.034.736.736 0 0 1 1.038 0l.843.84V4.867c0-.404.329-.732.734-.732"}),(0,tq.jsx)("path",{d:"M6.976 8.313a.733.733 0 1 1 0 1.463H4.879a.733.733 0 0 1-.734-.731c0-.404.329-.732.734-.732zM8.024 5.179a.733.733 0 1 1 0 1.463H4.88a.733.733 0 0 1-.734-.731c0-.404.329-.732.734-.732z"})]}),bb=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.162 3.395q.406-.061.838-.062c3.404 0 5.637 3.004 6.387 4.192.09.143.136.215.162.326a.8.8 0 0 1 0 .298c-.026.11-.071.183-.163.328-.2.316-.505.761-.908 1.243M4.483 4.477c-1.441.977-2.42 2.336-2.869 3.047-.091.144-.137.216-.162.327a.8.8 0 0 0 0 .298c.025.11.07.183.161.326.75 1.188 2.984 4.192 6.387 4.192 1.373 0 2.555-.489 3.526-1.15M2 2l12 12M6.586 6.586a2 2 0 0 0 2.828 2.828"})}),bx=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,children:[(0,tq.jsx)("path",{d:"M1.613 8.475c-.09-.143-.136-.215-.161-.326a.8.8 0 0 1 0-.298c.025-.11.07-.183.161-.326C2.363 6.337 4.597 3.333 8 3.333c3.404 0 5.637 3.004 6.387 4.192.09.143.136.215.162.326.019.083.019.215 0 .298-.026.11-.071.183-.162.326-.75 1.188-2.983 4.192-6.387 4.192S2.364 9.663 1.613 8.475"}),(0,tq.jsx)("path",{d:"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4"})]})}),bj=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,clipPath:"url(#factory_inline_svg__clip0_723_2378)",children:[(0,tq.jsx)("path",{d:"M2.667 14C3.43 11.32 3.989 8.649 4 6h4c.011 2.649.569 5.32 1.333 8"}),(0,tq.jsx)("path",{d:"M8.333 8.667h3c.017 1.741.596 3.53 1.334 5.333M6 3.333a1.6 1.6 0 0 1 1.333-.666 1.6 1.6 0 0 1 1.334.666A1.6 1.6 0 0 0 10 4a1.6 1.6 0 0 0 1.333-.667 1.6 1.6 0 0 1 1.334-.666A1.6 1.6 0 0 1 14 3.333M2 14h12.667"})]})}),bw=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.995 3.424C6.663 1.866 4.44 1.446 2.77 2.874 1.1 4.3.865 6.685 2.176 8.373c1.09 1.403 4.39 4.362 5.472 5.32.121.107.182.16.252.182a.34.34 0 0 0 .19 0c.071-.021.132-.075.253-.182 1.081-.958 4.381-3.917 5.472-5.32 1.311-1.688 1.105-4.089-.594-5.5-1.699-1.413-3.893-1.008-5.226.55",clipRule:"evenodd"})}),bk=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.867 6.667c.746 0 1.12 0 1.405-.146.25-.127.455-.331.583-.582C14 5.653 14 5.28 14 4.533v-.4c0-.746 0-1.12-.145-1.405a1.33 1.33 0 0 0-.583-.583C12.987 2 12.613 2 11.867 2H4.133c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 3.013 2 3.387 2 4.133v.4c0 .747 0 1.12.145 1.406.128.25.332.455.583.582.285.146.659.146 1.405.146zM11.867 14c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405v-.4c0-.747 0-1.12-.145-1.406a1.33 1.33 0 0 0-.583-.582c-.285-.146-.659-.146-1.405-.146H4.133c-.746 0-1.12 0-1.405.146-.25.127-.455.331-.583.582C2 10.347 2 10.72 2 11.467v.4c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145z"})}),bT=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M4.667 9.917a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5zM12.077 9.92a.75.75 0 0 1 0 1.493l-.077.004H6.667a.75.75 0 0 1 0-1.5H12zM4.667 7.25a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5zM12.077 7.254a.75.75 0 0 1 0 1.492L12 8.75H6.667a.75.75 0 0 1 0-1.5H12z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13.666 1.25c.966 0 1.75.784 1.75 1.75v10a1.75 1.75 0 0 1-1.75 1.75H2.333A1.75 1.75 0 0 1 .583 13V3c0-.966.784-1.75 1.75-1.75zM2.083 13c0 .138.112.25.25.25h11.333a.25.25 0 0 0 .25-.25V5.417H2.083zm.25-10.25a.25.25 0 0 0-.25.25v.917h11.833V3a.25.25 0 0 0-.25-.25z",clipRule:"evenodd"})]}),bS=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M14.667 11.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-.75.75H6a.75.75 0 0 1-.75-.75v-2a.75.75 0 0 1 .75-.75zm-7.917 2h7.167v-.5H6.75zM2.812 11.59a1.418 1.418 0 1 1-1.555 1.555L1.25 13l.007-.146a1.42 1.42 0 0 1 1.41-1.271zm-.145 1.326a.085.085 0 0 0-.084.084l.007.032a.083.083 0 0 0 .153 0L2.75 13l-.007-.033a.08.08 0 0 0-.044-.044zM12.667 6.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-.75.75H6A.75.75 0 0 1 5.25 9V7A.75.75 0 0 1 6 6.25zm-5.917 2h5.167v-.5H6.75zM2.812 6.59a1.418 1.418 0 1 1-1.555 1.555L1.25 8l.007-.146a1.42 1.42 0 0 1 1.41-1.271zm-.145 1.326A.085.085 0 0 0 2.583 8l.007.032a.083.083 0 0 0 .153 0L2.75 8l-.007-.033a.08.08 0 0 0-.044-.044zM11.333 1.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-.75.75H6A.75.75 0 0 1 5.25 4V2A.75.75 0 0 1 6 1.25zm-4.583 2h3.833v-.5H6.75zM2.812 1.59a1.418 1.418 0 1 1-1.555 1.555L1.25 3l.007-.146a1.42 1.42 0 0 1 1.41-1.271zm-.145 1.326A.085.085 0 0 0 2.583 3l.007.032a.083.083 0 0 0 .153 0L2.75 3l-.007-.033a.08.08 0 0 0-.044-.044z",clipRule:"evenodd"})}),bC=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 1.514v2.753c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h2.754M6 10.667l1.333 1.334 3-3m-1-7.667H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.427.218-.988.218-2.108V5.334z"})}),bD=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M11.505 10.172a.7.7 0 0 1 .88-.09l.11.09 2 2a.7.7 0 0 1 0 .99l-2 2a.7.7 0 0 1-.99-.99l.805-.806H9.333a.7.7 0 1 1 0-1.4h2.977l-.805-.804-.09-.11a.7.7 0 0 1 .09-.88"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M9.333 1.25c.304 0 .565.182.683.442l2.957 2.957a.75.75 0 0 1 .393.948v3.07a.7.7 0 0 1-1.4 0V6.083H10a1.42 1.42 0 0 1-1.41-1.276l-.007-.14V2.7H4.666a.634.634 0 0 0-.633.633v9.334a.633.633 0 0 0 .633.633h3a.7.7 0 0 1 .142 1.385l-.142.015h-3a2.034 2.034 0 0 1-2.033-2.033V3.333A2.034 2.034 0 0 1 4.666 1.3H9.07q.123-.048.263-.05m.75 3.333h.843l-.843-.843z",clipRule:"evenodd"})]}),bI=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M13.333 6.667V4.533c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218H7m1.667-7.334H5.333m2 2.667h-2m5.334-5.333H5.333m7.5 6.666v-1.166a1.167 1.167 0 1 0-2.333 0v1.166M10.4 14h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V12.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073"})}),bM=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2.257 3.778c-.504-.564-.756-.845-.766-1.085a.67.67 0 0 1 .242-.54C1.918 2 2.296 2 3.053 2h9.895c.756 0 1.134 0 1.319.153.16.132.25.332.241.54-.01.24-.261.521-.766 1.085L9.938 8.03c-.1.112-.15.168-.186.232a.7.7 0 0 0-.07.181c-.016.072-.016.147-.016.298v3.565c0 .13 0 .195-.02.252a.33.33 0 0 1-.089.13c-.044.04-.105.064-.226.113l-2.266.906c-.245.098-.368.147-.466.127a.33.33 0 0 1-.21-.142c-.056-.084-.056-.216-.056-.48V8.741c0-.15 0-.226-.016-.298a.7.7 0 0 0-.069-.18c-.036-.065-.086-.121-.187-.233z"})}),bL=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10s.666-.667 2.666-.667 3.334 1.334 5.334 1.334S13.333 10 13.333 10V2s-.666.667-2.666.667-3.334-1.334-5.334-1.334S2.667 2 2.667 2v12.667"})}),bF=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M14.714 6h-9a3 3 0 0 0 0 6h3m6-6-2.666-2.667M14.714 6l-2.666 2.667"})}),bE=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M9 8a1 1 0 1 1-2 0 1 1 0 0 1 2 0"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12 8a4 4 0 1 1-8 0 4 4 0 0 1 8 0m-1.5 0a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4 1a3 3 0 0 0-3 3v8a3 3 0 0 0 3 3h8a3 3 0 0 0 3-3V4a3 3 0 0 0-3-3zm8 1.4H4A1.6 1.6 0 0 0 2.4 4v8A1.6 1.6 0 0 0 4 13.6h8a1.6 1.6 0 0 0 1.6-1.6V4A1.6 1.6 0 0 0 12 2.4",clipRule:"evenodd"})]}),bP=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108zM8 11.333v-4m-2 2h4"})}),bA=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"m13 7-1.116-2.231c-.32-.642-.481-.963-.72-1.198a2 2 0 0 0-.748-.462C10.1 3 9.74 3 9.022 3H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.52 2 5.08 2 6.2V7m0 0h15.2c1.68 0 2.52 0 3.162.327a3 3 0 0 1 1.311 1.311C22 9.28 22 10.12 22 11.8v4.4c0 1.68 0 2.52-.327 3.162a3 3 0 0 1-1.311 1.311C19.72 21 18.88 21 17.2 21H6.8c-1.68 0-2.52 0-3.162-.327a3 3 0 0 1-1.311-1.311C2 18.72 2 17.88 2 16.2zm13.5 10.5L14 16m1-2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0"})}),bN=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m8.667 4.667-.744-1.488c-.214-.428-.321-.642-.48-.798a1.3 1.3 0 0 0-.499-.308C6.733 2 6.494 2 6.014 2H3.468c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.659-.146 1.405v.534m0 0h10.134c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108z"})}),bR=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M10.838 10.172a.7.7 0 0 1 .99 0l1.333 1.333a.7.7 0 0 1 .087.106q.018.03.032.06c.01.02.024.039.033.06.01.023.014.047.021.07a.7.7 0 0 1 .032.199.7.7 0 0 1-.032.197q-.009.037-.021.072a.7.7 0 0 1-.152.226l-1.333 1.334a.701.701 0 0 1-.99-.99l.139-.139H5.022l.14.139a.7.7 0 0 1-.991.99l-1.333-1.334a1 1 0 0 1-.087-.106q-.022-.037-.04-.075-.013-.023-.024-.045-.013-.036-.022-.072A.7.7 0 0 1 2.633 12q0-.14.054-.27.014-.03.032-.06a.7.7 0 0 1 .119-.165l1.333-1.333a.7.7 0 0 1 .99.99l-.138.138h5.953l-.138-.138a.7.7 0 0 1 0-.99"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5 1.967a2.367 2.367 0 0 1 2.366 2.367V8a.7.7 0 0 1-1.4 0V6.033H4.034V8a.7.7 0 0 1-1.4 0V4.334A2.37 2.37 0 0 1 5 1.967m0 1.4a.967.967 0 0 0-.967.967v.3h1.934v-.3A.97.97 0 0 0 5 3.367",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M12.012 2.42a.7.7 0 0 1 1.31.493l-2 5.333a.7.7 0 0 1-1.31 0l-2-5.333a.7.7 0 0 1 1.31-.492l1.345 3.586z"})]}),bV=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M8 4.067c1.28 0 1.941.484 2.274 1.067.328.574.326 1.224.326 1.533v.667c0 .328-.271.6-.6.6a.603.603 0 0 1-.6-.6v-.667c0-.485-.062-.827-.254-1.05-.188-.22-.526-.35-1.146-.35s-.958.13-1.146.35c-.192.223-.254.565-.254 1.05v.667c0 .328-.272.6-.6.6a.603.603 0 0 1-.6-.6v-.667c0-.309-.002-.96.326-1.533.333-.583.994-1.067 2.274-1.067ZM8 8.334c.549 0 1 .451 1 1s-.451 1-1 1-1-.452-1-1c0-.549.452-1 1-1Z"}),(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M9.667 6.734c.807 0 1.383.142 1.754.512.37.371.513.947.513 1.754v.666c0 .807-.142 1.383-.513 1.754-.37.371-.947.513-1.754.513H6.334c-.807 0-1.383-.142-1.754-.513-.37-.37-.513-.947-.513-1.754V9c0-.807.142-1.383.513-1.754.37-.37.947-.512 1.754-.512zM6.334 7.933c-.265 0-.463.007-.613.032s-.239.066-.297.125c-.059.059-.1.148-.125.297-.025.15-.032.348-.032.613v.666c0 .265.007.464.032.614s.066.238.125.297.147.1.297.124c.15.025.348.033.613.033h3.333c.265 0 .463-.008.613-.033.15-.024.239-.066.297-.125.059-.058.1-.147.125-.296a4 4 0 0 0 .031-.614V9a4 4 0 0 0-.03-.613c-.026-.15-.067-.238-.126-.297s-.148-.1-.297-.125a4 4 0 0 0-.613-.032z"}),(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M8 .734A7.273 7.273 0 0 1 15.267 8 7.273 7.273 0 0 1 8 15.267 7.273 7.273 0 0 1 .734 8 7.273 7.273 0 0 1 8 .734Zm0 1.199A6.075 6.075 0 0 0 1.933 8 6.075 6.075 0 0 0 8 14.067 6.074 6.074 0 0 0 14.067 8 6.075 6.075 0 0 0 8 1.933Z"})]}),bz=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 1.917A4.086 4.086 0 0 1 12.084 6a4.086 4.086 0 0 1-3.334 4.013v1.237H10a.75.75 0 0 1 0 1.5H8.75V14a.75.75 0 0 1-1.5 0v-1.25H6a.75.75 0 0 1 0-1.5h1.25v-1.237A4.083 4.083 0 0 1 8 1.917m0 1.5a2.583 2.583 0 0 0-.01 5.166h.019A2.585 2.585 0 0 0 10.584 6 2.585 2.585 0 0 0 8 3.417",clipRule:"evenodd"})}),bB=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.923 2.143a.75.75 0 0 1 .75.75v.337h5.256v-.337a.75.75 0 0 1 .75-.75h2.173a.75.75 0 0 1 .75.75v2.173a.75.75 0 0 1-.75.75h-.336v4.79h.336a.75.75 0 0 1 .75.75v2.173a.75.75 0 0 1-.75.75h-2.173a.75.75 0 0 1-.75-.75v-.336H5.673v.336a.75.75 0 0 1-.75.75H2.75a.75.75 0 0 1-.75-.75v-2.173a.75.75 0 0 1 .75-.75h.337v-4.79H2.75a.75.75 0 0 1-.75-.75V2.893a.75.75 0 0 1 .75-.75zM3.5 12.779h.673v-.673h-.14a.8.8 0 0 1-.196.028.8.8 0 0 1-.195-.028H3.5zm8.929 0h.673v-.673h-.141a.8.8 0 0 1-.195.028.8.8 0 0 1-.196-.028h-.141zM5.673 5.066a.75.75 0 0 1-.75.75h-.336v4.79h.336a.75.75 0 0 1 .75.75v.337h5.256v-.337a.75.75 0 0 1 .75-.75h.337v-4.79h-.337a.75.75 0 0 1-.75-.75V4.73H5.673zM3.5 4.316h.145a.8.8 0 0 1 .192-.029q.1.002.192.029h.144v-.673H3.5zm8.929 0h.144a.8.8 0 0 1 .193-.029q.099.002.192.029h.144v-.673h-.673z",clipRule:"evenodd"})}),bO=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 1.25c.552 0 1.083.22 1.474.61.358.36.57.836.602 1.34l1.19.594a2.083 2.083 0 1 1 1.6 3.613l-1.364 3.818a2.083 2.083 0 0 1-.028 2.915 2.086 2.086 0 0 1-2.947 0 2.08 2.08 0 0 1-.468-2.225L4.256 9.199c-.285.14-.6.218-.923.218a2.084 2.084 0 1 1 .88-3.97l1.788-1.531A2.08 2.08 0 0 1 8 1.25m2 10.833a.585.585 0 1 0 .002 1.17.585.585 0 0 0-.002-1.17m-.384-7.437q-.067.085-.142.16c-.391.391-.922.61-1.474.611-.387 0-.761-.11-1.086-.309L5.254 6.53a2.08 2.08 0 0 1 .021 1.554L9.08 10.8c.284-.14.598-.217.921-.217q.068.001.136.007l1.282-3.592a2.085 2.085 0 0 1-.825-1.863zM3.333 6.75a.583.583 0 1 0 0 1.167.583.583 0 0 0 0-1.167m9.334-2a.584.584 0 1 0 .001 1.168.584.584 0 0 0-.001-1.168M8 2.75a.584.584 0 1 0 .001 1.168A.584.584 0 0 0 8 2.75",clipRule:"evenodd"})}),bK=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13.899 4.006c.619.07 1.101.641 1.101 1.336 0 .741-.549 1.342-1.226 1.342q-.143-.002-.277-.036l-3.148 3.444q.031.146.033.303c0 .74-.55 1.34-1.227 1.341-.635 0-1.158-.528-1.221-1.205l-.006-.136.006-.138q.008-.085.025-.166L6.544 8.542a1.1 1.1 0 0 1-.276.037 1.1 1.1 0 0 1-.277-.037l-2.57 2.813q.031.147.032.303C3.453 12.4 2.904 13 2.227 13c-.635 0-1.158-.528-1.221-1.205L1 11.658l.006-.137c.063-.677.586-1.205 1.221-1.205l.125.006q.077.01.15.028l2.57-2.811a2 2 0 0 1-.025-.165l-.006-.137.006-.138c.063-.676.586-1.204 1.221-1.204l.125.006c.619.069 1.101.641 1.101 1.336q-.001.156-.032.3l1.417 1.55q.133-.034.276-.035l.125.007q.077.009.15.028l3.148-3.443a2 2 0 0 1-.025-.165l-.006-.137.005-.138C12.616 4.528 13.14 4 13.775 4zM2.227 11.58c-.04 0-.073.036-.073.08l.006.03a.07.07 0 0 0 .067.048c.03 0 .055-.02.066-.048l.006-.03-.006-.032a.08.08 0 0 0-.038-.042zm6.928-1.264c-.04 0-.072.036-.072.08l.005.03a.07.07 0 0 0 .067.048c.03 0 .055-.02.066-.048l.006-.03-.006-.032a.08.08 0 0 0-.038-.041zM6.268 7.157c-.04 0-.073.037-.073.08l.006.03a.07.07 0 0 0 .067.049c.03 0 .055-.02.066-.048l.006-.031-.006-.031a.08.08 0 0 0-.038-.042zm7.506-1.894c-.04 0-.073.036-.073.08l.006.03a.07.07 0 0 0 .067.048c.03 0 .055-.02.066-.048l.006-.03-.006-.032a.08.08 0 0 0-.038-.042z",clipRule:"evenodd"})}),b_=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M5.333 8.667v2.666m5.334-4v4M8 4.667v6.666M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),bH=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#graphql_inline_svg__clip0_1579_7634)",children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 .633A1.7 1.7 0 0 1 9.692 2.48l2.635 1.485a1.7 1.7 0 1 1 1.706 2.916v2.237a1.7 1.7 0 0 1-.7 3.25 1.7 1.7 0 0 1-1.005-.333l-2.636 1.483q.008.074.008.149a1.701 1.701 0 1 1-3.393-.15L3.67 12.036c-.29.213-.64.332-1.004.332a1.701 1.701 0 0 1-1.202-2.902 1.7 1.7 0 0 1 .502-.347V6.881a1.698 1.698 0 1 1 1.705-2.916l2.636-1.483Q6.3 2.408 6.3 2.333A1.7 1.7 0 0 1 8 .633m0 12.734a.3.3 0 1 0 0 .599.3.3 0 0 0 0-.599m-1.007-1.07a1.7 1.7 0 0 1 2.012 0l1.656-.93H5.34zm-4.326-1.93a.3.3 0 1 0 0 .599.3.3 0 0 0 0-.599m10.666 0a.3.3 0 1 0 0 .6.3.3 0 0 0 0-.6M8.196 4.021a1.7 1.7 0 0 1-.393 0L4.235 9.967h7.53zm4.437 4.671V6.88a1.701 1.701 0 0 1-.993-1.696l-1.678-.945zM4.359 5.185a1.701 1.701 0 0 1-.992 1.695V8.69l2.671-4.45zm-1.692-.152a.3.3 0 0 0-.212.512.3.3 0 1 0 .212-.512m10.666 0a.3.3 0 1 0 0 .601.3.3 0 0 0 0-.6M8 2.033a.3.3 0 1 0 0 .6.3.3 0 0 0 0-.6",clipRule:"evenodd"})})}),b$=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.667 9.367a2.333 2.333 0 1 0-3.333 3.266 2.333 2.333 0 0 0 3.333-3.266m0 0 3.354-3.354m3.346-.68-.862-.862a.667.667 0 0 0-.943 0l-1.541 1.542m0 0 1.312 1.312"})}),bW=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M2 6c0-1.4 0-2.1.272-2.635a2.5 2.5 0 0 1 1.093-1.093C3.9 2 4.6 2 6 2h4c1.4 0 2.1 0 2.635.272a2.5 2.5 0 0 1 1.092 1.093C14 3.9 14 4.6 14 6v4c0 1.4 0 2.1-.273 2.635a2.5 2.5 0 0 1-1.092 1.092C12.1 14 11.4 14 10 14H6c-1.4 0-2.1 0-2.635-.273a2.5 2.5 0 0 1-1.093-1.092C2 12.1 2 11.4 2 10z"}),(0,tq.jsx)("circle",{cx:5.333,cy:8,r:1.3,stroke:"currentColor",strokeWidth:1.4}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M6.667 8h2.666m2 1.333V8.15a.15.15 0 0 0-.15-.15h-1.85m0 0v1.333"})]}),bq=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M6.833 11.333H5.5a3.333 3.333 0 1 1 0-6.666h1.333m4 6.666h1.334a3.333 3.333 0 0 0 0-6.666h-1.334M5.5 8h6.667"})}),bG=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4 2.667v10.666m8-10.666v10.666M5.333 2.667H2.667M12 8H4m1.333 5.333H2.667m10.666 0h-2.666m2.666-10.666h-2.666"})}),bU=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.158 8.187h1.235l.123.006h.01c.685.072 1.217.67 1.217 1.391v.64l-.006.13v.007a1.38 1.38 0 0 1-1.21 1.246l-.008.002-.122.005-.01.003H6.151l-.126-.009H6.02c-.64-.067-1.147-.591-1.212-1.247v-.008l-.006-.125-.002-.01.001-.634c0-.72.532-1.317 1.217-1.39h.009000000000000001l.117-.006h.003zm0 1.148c-.13 0-.238.109-.238.25v.633c0 .14.109.249.238.25h1.228c.13 0 .24-.11.24-.25v-.634c0-.14-.11-.25-.24-.25zM10.456 8.187h1.235l.123.006h.009c.686.072 1.218.67 1.218 1.391v.64l-.007.13v.007a1.38 1.38 0 0 1-1.21 1.246l-.007.002-.122.005-.01.003H10.45l-.126-.009h-.006c-.64-.067-1.147-.591-1.212-1.247v-.008l-.006-.125-.002-.01.001-.634c0-.72.531-1.317 1.217-1.39h.009000000000000001l.117-.006h.003zm0 1.148a.244.244 0 0 0-.238.25v.633c0 .14.108.249.238.25h1.228c.13 0 .24-.11.24-.25v-.634c0-.14-.11-.25-.24-.25zM4.317 4.384h1.235l.125.008h.006l.126.02a1.39 1.39 0 0 1 1.092 1.37v.641l-.007.126v.009a1.38 1.38 0 0 1-1.209 1.247h.001l-.004.002h-.006l-.126.006H4.31l-.126-.006h-.007l-.004-.001c-.639-.07-1.141-.594-1.206-1.248v-.009000000000000001l-.007-.125-.002-.008.002-.634c0-.721.532-1.318 1.218-1.39h.006l.12-.007h.002zm0 1.149a.244.244 0 0 0-.24.25v.633l.006.05c.023.116.12.2.234.2h1.227a.24.24 0 0 0 .234-.2l.005-.05v-.634c0-.14-.11-.25-.239-.25zM8.615 4.384h1.234l.126.008h.006l.126.02a1.39 1.39 0 0 1 1.092 1.37v.641l-.007.126v.009a1.38 1.38 0 0 1-1.209 1.247h.001l-.004.002h-.006l-.126.006h-1.24l-.126-.006h-.007l-.004-.001c-.639-.07-1.142-.594-1.207-1.248V6.55l-.006-.127-.002-.008.002-.634c0-.721.532-1.318 1.218-1.39h.006l.12-.007h.002zm0 1.149a.244.244 0 0 0-.24.25v.633l.006.05c.023.116.12.2.234.2h1.227a.24.24 0 0 0 .234-.2l.005-.05v-.634c0-.14-.11-.25-.239-.25z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.008 1A2.99 2.99 0 0 1 15 3.992v8.016A2.99 2.99 0 0 1 12.008 15H3.992A2.99 2.99 0 0 1 1 12.008V3.992A2.99 2.99 0 0 1 3.992 1zM3.992 2.175a1.817 1.817 0 0 0-1.817 1.817v8.016c0 1.003.814 1.817 1.817 1.817h8.016a1.817 1.817 0 0 0 1.817-1.817V3.992a1.817 1.817 0 0 0-1.817-1.817z",clipRule:"evenodd"})]}),bQ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M12.808 13.315a.7.7 0 0 1 0 1.37l-.142.015H3.333a.7.7 0 0 1 0-1.4h9.333zM12.808 11.315a.7.7 0 0 1 0 1.37l-.142.015H3.333a.7.7 0 0 1 0-1.4h9.333zM12.808 9.314a.7.7 0 0 1 0 1.371l-.142.015H3.333a.7.7 0 0 1 0-1.4h9.333z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M9.47 1.313h.002l.013.004q.053.012.104.032l.037.016a1 1 0 0 1 .075.041l.035.023a1 1 0 0 1 .092.076l3.333 3.333.015.017a.7.7 0 0 1 .12.177l.02.045q.049.12.05.256V8a.7.7 0 0 1-1.4 0V6.033H10a1.37 1.37 0 0 1-1.367-1.366V2.7H4.666a.634.634 0 0 0-.633.633V8a.7.7 0 0 1-1.4 0V3.333A2.034 2.034 0 0 1 4.666 1.3h4.667zm.563 3.32h.944l-.944-.943z",clipRule:"evenodd"})]}),bJ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.913 8.183a1.65 1.65 0 0 1 1.65 1.65v2.333a1.65 1.65 0 0 1-1.65 1.65H2.58a1.65 1.65 0 0 1-1.65-1.65V9.833c0-.911.739-1.65 1.65-1.65zM2.512 9.49a.356.356 0 0 0-.282.344v2.33l.008.07c.035.16.175.28.344.282h2.331c.193 0 .35-.158.35-.351V9.833a.35.35 0 0 0-.35-.35H2.582z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M14.413 11.683a.651.651 0 0 1 0 1.3H9.08a.65.65 0 0 1 0-1.3zM12.413 9.017a.65.65 0 0 1 0 1.3H9.08a.65.65 0 0 1 0-1.3z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13.08 2.183c.819 0 1.483.664 1.483 1.483v2c0 .82-.664 1.483-1.483 1.483H2.413C1.594 7.15.93 6.485.93 5.666v-2c0-.819.664-1.483 1.483-1.483zm-10.667 1.3c-.1 0-.182.082-.183.183v2c0 .101.082.183.183.184H13.08a.184.184 0 0 0 .184-.184v-2c0-.1-.083-.183-.184-.183z",clipRule:"evenodd"})]}),bZ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#help-circle_inline_svg__clip0_723_2416)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.06 6a2 2 0 0 1 3.887.667c0 1.333-2 2-2 2M8 11.333h.007M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),bY=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M3.685 11.135a5.333 5.333 0 1 0-1.008-2.8m0 0-1-1m1 1 1-1"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M8 5.333V8l2 2"})]}),bX=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M5.333 11.333h5.334m-3.322-9.49L2.824 5.359c-.303.236-.454.353-.563.5-.096.13-.168.278-.212.434C2 6.469 2 6.66 2 7.043v4.824c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.659.145 1.405.145h7.734c.746 0 1.12 0 1.405-.145.25-.128.455-.332.583-.583.145-.285.145-.659.145-1.405V7.043c0-.383 0-.574-.05-.75a1.3 1.3 0 0 0-.211-.434c-.11-.147-.26-.264-.563-.5L8.655 1.843c-.234-.182-.351-.274-.48-.309a.67.67 0 0 0-.35 0c-.129.035-.246.127-.48.309"})}),b0=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.277 3.25a.75.75 0 1 1 0 1.5h-2.61c-.48 0-.794.001-1.034.02-.23.02-.327.052-.382.08a.92.92 0 0 0-.401.401c-.028.055-.06.151-.08.382-.02.24-.02.555-.02 1.034v4.666c0 .48 0 .794.02 1.034.02.231.052.327.08.382a.9.9 0 0 0 .232.286l.03-.034c.095-.103.224-.219.345-.329l4.7-4.272c.09-.083.19-.174.281-.246a1.3 1.3 0 0 1 .404-.221c.176-.058.363-.076.546-.056l.181.033.125.04c.118.044.215.103.292.156.096.065.2.15.297.226l1.554 1.244c.182.146.37.29.515.476.168.213.287.46.35.723.053.23.048.467.048.7v.303l-.002.126-.002.15c-.001.346-.007.641-.078.905q-.045.168-.112.325l-.016.032q-.03.07-.066.136l-.033.06q-.042.077-.09.15l-.041.06q-.046.064-.094.125l-.04.047a2.4 2.4 0 0 1-.282.283l-.047.039q-.06.048-.123.093l-.045.031q-.081.054-.166.101l-.054.029a2 2 0 0 1-.175.086q-.005 0-.011.003a2.4 2.4 0 0 1-.314.11c-.264.07-.56.076-.905.077l-.15.002-.127.002H4.261c-.131 0-.269-.002-.39-.008a7 7 0 0 1-.36-.017c-.324-.027-.64-.085-.942-.239a2.4 2.4 0 0 1-1.055-1.055c-.154-.302-.212-.617-.239-.942-.025-.315-.025-.702-.025-1.156V6.667c0-.454 0-.84.025-1.156.027-.324.085-.64.239-.942a2.4 2.4 0 0 1 1.055-1.055c.302-.154.618-.212.942-.238.315-.026.702-.026 1.156-.026zm1.889 6.26-4.115 3.74h4.425c.41 0 .679 0 .885-.014a1 1 0 0 0 .33-.06 1 1 0 0 0 .185-.106q.014-.009.026-.02a.9.9 0 0 0 .274-.359 1 1 0 0 0 .06-.33c.014-.206.014-.475.014-.885 0-.305-.005-.337-.01-.358a.4.4 0 0 0-.067-.14c-.013-.017-.037-.041-.274-.23L9.346 9.503l-.093-.074z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.056 5.194a1.862 1.862 0 1 1 0 3.724 1.862 1.862 0 0 1 0-3.724m0 1.5a.361.361 0 1 0 0 .723.361.361 0 0 0 0-.723M11.885 2.075c.758 0 1.35.575 1.351 1.327 0 .754-.593 1.329-1.351 1.329-.759 0-1.35-.575-1.35-1.329 0-.752.592-1.326 1.35-1.327m0 1.152c-.07 0-.114.023-.138.047-.024.023-.046.063-.046.128 0 .066.022.107.046.13s.067.047.138.047c.07 0 .114-.023.138-.047.024-.023.045-.064.045-.13 0-.065-.02-.105-.045-.128s-.068-.047-.138-.047",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.885.571c1.602 0 2.885 1.252 2.886 2.831 0 .53-.182 1.111-.439 1.672-.258.564-.6 1.124-.94 1.619a18 18 0 0 1-1.327 1.697l-.024.025-.006.007-.003.003a.2.2 0 0 1-.294 0l-.002-.002-.006-.007-.023-.025-.087-.097a17.44 17.44 0 0 1-1.242-1.587 11 11 0 0 1-.94-1.617C9.18 4.527 9 3.941 9 3.402c0-1.58 1.283-2.83 2.885-2.83m0 1.153c-.967 0-1.718.74-1.718 1.678 0 .49.255 1.129.63 1.791.324.57.725 1.133 1.086 1.601.39-.515.798-1.107 1.117-1.684.368-.664.604-1.274.604-1.708 0-.937-.752-1.678-1.72-1.678",clipRule:"evenodd"})]}),b1=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m12.667 5.333-2-2m0 0 2-2m-2 2h4M8.333 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h6.133c.62 0 .93 0 1.185-.068a2 2 0 0 0 1.414-1.414c.068-.255.068-.565.068-1.185M7 5.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0m2.993 2.278-5.639 5.127c-.317.288-.476.433-.49.557a.33.33 0 0 0 .111.288c.095.083.31.083.738.083h6.258c.96 0 1.439 0 1.816-.161a2 2 0 0 0 1.052-1.052C14 12.41 14 11.93 14 10.97c0-.323 0-.485-.035-.635a1.3 1.3 0 0 0-.25-.518c-.095-.122-.22-.223-.473-.424l-1.865-1.492c-.252-.202-.378-.303-.517-.339a.67.67 0 0 0-.372.012c-.136.044-.256.153-.495.37"})}),b2=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M4.238 9.023a.658.658 0 0 1 .479.894.656.656 0 1 1-.479-.894"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.889 1.233a2.883 2.883 0 0 1 2.878 2.877v2.223a2.881 2.881 0 0 1-2.224 2.8 2.88 2.88 0 0 1-.649 1.798 2.88 2.88 0 0 1-1.574.98 2.88 2.88 0 0 1-2.876 2.856H4.11a2.88 2.88 0 0 1-2.863-2.594l-.014-.284V9.666a2.884 2.884 0 0 1 2.223-2.8 2.88 2.88 0 0 1 .648-1.797 2.9 2.9 0 0 1 1.575-.981 2.88 2.88 0 0 1 2.876-2.855zM7.844 11.671a1.21 1.21 0 0 1-1.624.08l-.09-.08-.198-.201-2.245 1.924q.207.059.424.061h3.333a1.567 1.567 0 0 0 1.567-1.566V10.5zM4.11 8.1a1.57 1.57 0 0 0-1.566 1.566v2.222c.001.22.052.436.143.635l2.47-2.114a1.21 1.21 0 0 1 1.64.067l.193.195 1.793-1.798a1.56 1.56 0 0 0-.534-.547 1.56 1.56 0 0 0-.805-.226zm2.223-2.778a1.566 1.566 0 0 0-1.562 1.466h2.673a2.884 2.884 0 0 1 2.878 2.878v.86a1.57 1.57 0 0 0 .911-1.416V6.89a1.57 1.57 0 0 0-1.567-1.567zm2.223-2.778a1.566 1.566 0 0 0-1.562 1.467h2.672a2.883 2.883 0 0 1 2.878 2.878v.859a1.57 1.57 0 0 0 .906-1.295l.005-.12V4.11a1.57 1.57 0 0 0-1.566-1.566z",clipRule:"evenodd"})]}),b3=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M1.09 1.09a2.7 2.7 0 1 1 3.818 3.818 2.7 2.7 0 0 1-3.817-3.817m1.63.64 1.55 1.55q.03-.135.03-.28a1.3 1.3 0 0 0-1.58-1.27m.56 2.54L1.73 2.72q-.03.135-.03.28a1.3 1.3 0 0 0 1.58 1.27",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.578.163.892.184.303.021.673.021 1.118.021H5c.36 0 .426.004.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.985-1.313c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.891.021-.303.021-.672.021-1.118V5.17c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.362-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.571.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.153-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.409-.49-.562a2 2 0 0 0-.835-.418c-.233-.054-.475-.054-.744-.054H5c-.475 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451C2.7 9.797 2.7 9.476 2.7 9z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10.84 3.35c-.81 0-1.54.624-1.54 1.483s.73 1.484 1.54 1.484 1.54-.625 1.54-1.484-.73-1.483-1.54-1.483m-.24 1.483c0-.061.066-.183.24-.183s.24.122.24.183c0 .062-.066.184-.24.184s-.24-.122-.24-.184M8.534 6.129l.364.524a.9.9 0 0 1 .23-.134.97.97 0 0 1 .699 0c.188.073.309.198.38.28.063.073.128.165.184.244l.917 1.287c.069.097.145.203.2.298a.94.94 0 0 1 .14.533.92.92 0 0 1-.39.694 1 1 0 0 1-.497.166c-.11.01-.244.01-.37.01H5.616c-.129 0-.263 0-.375-.01a1 1 0 0 1-.503-.17.92.92 0 0 1-.387-.702.94.94 0 0 1 .151-.536c.058-.095.137-.202.209-.3l1.787-2.417c.056-.075.122-.164.185-.235a.96.96 0 0 1 .375-.268.97.97 0 0 1 .686 0 .8.8 0 0 1 .189.104 1 1 0 0 1 .1.08 4.033 4.033 0 0 1 .49.536zM6.019 8.73l1.41-1.905q.024.03.043.055l.82 1.179q.033.06.078.111l.027.04.011.015.374.505z",clipRule:"evenodd"})]}),b6=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10.84 3.35c-.81 0-1.54.624-1.54 1.483s.73 1.484 1.54 1.484 1.54-.625 1.54-1.484-.73-1.483-1.54-1.483m-.24 1.483c0-.061.066-.183.24-.183s.24.122.24.183c0 .062-.066.184-.24.184s-.24-.122-.24-.184M8.618 6.323l.258.348a.9.9 0 0 1 .253-.152.97.97 0 0 1 .698 0 .96.96 0 0 1 .38.28c.063.073.128.165.184.244l.917 1.287c.069.097.145.203.2.298a.94.94 0 0 1 .14.533.92.92 0 0 1-.39.694 1 1 0 0 1-.497.166c-.11.01-.244.01-.37.01H5.616c-.129 0-.264 0-.375-.01a1 1 0 0 1-.503-.17.92.92 0 0 1-.387-.702.94.94 0 0 1 .151-.536c.058-.095.136-.202.209-.3l1.787-2.417c.056-.075.122-.164.185-.235a.96.96 0 0 1 .375-.268.965.965 0 0 1 1.082.277c.084.088.159.186.219.27.061.085.118.172.163.24.05.076.078.118.096.143M6.02 8.73l1.39-1.879.027.042.01.017c.04.058.086.13.127.185L8.33 8.12l.018.024.434.587z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.171 1.3c-.535 0-.98 0-1.342.03-.376.03-.726.097-1.055.264a2.7 2.7 0 0 0-1.18 1.18c-.167.33-.234.679-.264 1.055-.03.363-.03.807-.03 1.342v3.853c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.004.479.017a.6.6 0 0 1 .26.13c.042.035.085.085.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287a4 4 0 0 0 .202-.254l.985-1.313c.216-.288.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.891.021-.303.021-.672.021-1.118V5.17c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03zM3.41 2.842c.099-.05.243-.093.533-.117C4.242 2.7 4.628 2.7 5.2 2.7h5.6c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.153-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.409-.49-.562a2 2 0 0 0-.835-.418c-.233-.055-.475-.054-.744-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9V5.2c0-.572 0-.958.025-1.257.024-.29.066-.434.117-.533a1.3 1.3 0 0 1 .568-.568",clipRule:"evenodd"})]}),b4=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.8 14H4.62c-.403 0-.605 0-.698-.08a.33.33 0 0 1-.116-.28c.01-.122.152-.265.438-.55l5.668-5.67c.264-.263.396-.395.549-.445a.67.67 0 0 1 .412 0c.152.05.284.182.548.446L14 10v.8M10.8 14c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8M10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6M7 5.667a1.333 1.333 0 1 1-2.667 0 1.333 1.333 0 0 1 2.667 0"})}),b5=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 8 8 10.667m0 0L10.667 8M8 10.667V4.533c0-.927 0-1.39-.367-1.91-.244-.344-.946-.77-1.364-.827-.63-.085-.87.04-1.348.29a6.667 6.667 0 1 0 6.412.14"})}),b7=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M14 7.3a.7.7 0 0 1 .7.7v2.3c0 .548.001 1.002-.03 1.37-.03.378-.097.727-.265 1.056a2.7 2.7 0 0 1-1.18 1.18c-.328.167-.677.234-1.054.265-.369.03-.823.03-1.371.03H5.2c-.548 0-1.002 0-1.37-.03-.378-.03-.727-.098-1.056-.266a2.7 2.7 0 0 1-1.18-1.18c-.167-.328-.234-.677-.265-1.054-.03-.369-.03-.823-.03-1.371V8A.7.7 0 0 1 2.7 8v2.3c0 .571 0 .958.025 1.257.023.29.067.434.117.533a1.3 1.3 0 0 0 .568.568c.099.05.243.094.533.117.299.025.686.025 1.257.025h5.6c.571 0 .958 0 1.257-.025.29-.023.434-.066.533-.117a1.3 1.3 0 0 0 .568-.568c.05-.099.094-.243.117-.533.025-.299.025-.686.025-1.257V8a.7.7 0 0 1 .7-.7"}),(0,tq.jsx)("path",{d:"M8 1.967a.7.7 0 0 1 .7.7v1.634h1.634a.7.7 0 0 1 0 1.4H8.7v1.633a.7.7 0 0 1-1.4 0V5.7H5.668a.7.7 0 0 1 0-1.4h1.634V2.668a.7.7 0 0 1 .699-.7"})]}),b8=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.22 9.746a.86.86 0 0 1 1.494-.116l.065.116.387.821.85.131c.744.114.946.996.486 1.466l-.637.65.153.927c.103.63-.563 1.29-1.265.903L12 14.227l-.753.417c-.702.386-1.368-.272-1.265-.903l.152-.926-.636-.65c-.46-.47-.258-1.353.485-1.467l.85-.13zM12 11.6a.86.86 0 0 1-.571.393v.001a.87.87 0 0 1 .24.71.86.86 0 0 1 .66 0 .87.87 0 0 1 .241-.71.86.86 0 0 1-.57-.394M10.8 2.25c.276 0 .534 0 .738.018.162.014.418.047.652.196l.098.071.108.1c.237.244.367.576.353.922-.013.335-.19.593-.302.74-.123.164-.296.354-.48.557L9.046 8.087l-.015.016v2.732c0 .04.012.255-.064.456-.057.15-.149.285-.268.392-.158.142-.362.21-.4.225l-1.74.69c-.081.032-.189.075-.286.103a1 1 0 0 1-.5.03 1 1 0 0 1-.632-.425 1 1 0 0 1-.161-.48c-.01-.1-.01-.217-.01-.303v-3.42l-.014-.016-2.923-3.233c-.183-.203-.356-.393-.48-.556-.11-.148-.288-.406-.301-.741a1.25 1.25 0 0 1 .46-1.022l.1-.071a1.4 1.4 0 0 1 .65-.196c.205-.019.463-.018.738-.018zM3.147 3.849 6.067 7.08c.055.06.162.173.24.31q.045.08.079.167l.053.175.02.116q.01.085.01.157v3.013l1.061-.42V8.125c0-.081-.004-.237.03-.392q.042-.18.133-.342l.063-.098c.065-.092.135-.166.177-.212l2.922-3.232.086-.099H3.058z",clipRule:"evenodd"})}),b9=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#info-circle_inline_svg__clip0_723_2415)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.667V8m0-2.667h.007M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),xe=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333m.667 9.334a.667.667 0 1 1-1.334 0V7.333a.667.667 0 1 1 1.334 0zM8 6a.667.667 0 1 1 0-1.333A.667.667 0 0 1 8 6"})}),xt=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M2.571 1.5a2 2 0 0 0-2 2V6a2 2 0 0 0 2 2h.31a.7.7 0 0 0-.02.155v.405c0 .433 0 .797.025 1.094.026.311.08.607.224.888.218.428.566.776.994.994.28.143.576.198.888.224.297.024.66.024 1.094.024h.19l-.245.244a.65.65 0 1 0 .92.92l1.354-1.354a.65.65 0 0 0 0-.92L6.95 9.32a.65.65 0 1 0-.92.92l.245.244h-.164c-.466 0-.776 0-1.014-.02-.231-.019-.337-.052-.404-.086a.98.98 0 0 1-.426-.426c-.034-.067-.067-.173-.086-.404-.02-.238-.02-.548-.02-1.014v-.38A.7.7 0 0 0 4.143 8h.928a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7V6a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V3.5a.7.7 0 0 0-.7-.7M8.929 10a2 2 0 0 1 2-2h2.5a2 2 0 0 1 2 2v2.5a2 2 0 0 1-2 2h-2.5a2 2 0 0 1-2-2zm2-.7h2.5a.7.7 0 0 1 .7.7v2.5a.7.7 0 0 1-.7.7h-2.5a.7.7 0 0 1-.7-.7V10a.7.7 0 0 1 .7-.7",clipRule:"evenodd"})}),xi=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M2.571 1.5a2 2 0 0 0-2 2V6a2 2 0 0 0 2 2h2.5a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7V6a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V3.5a.7.7 0 0 0-.7-.7M10.929 8a2 2 0 0 0-2 2v2.5a2 2 0 0 0 2 2h2.5a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2zm2.5 1.3h-2.5a.7.7 0 0 0-.7.7v2.5a.7.7 0 0 0 .7.7h2.5a.7.7 0 0 0 .7-.7V10a.7.7 0 0 0-.7-.7",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M4.49 9.499a.65.65 0 0 0-.92.919l.582.582-.582.582a.65.65 0 0 0 .92.92l.581-.583.583.582a.65.65 0 0 0 .919-.919L5.99 11l.582-.582a.65.65 0 1 0-.92-.92l-.582.583z"})]}),xn=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M8.44 9.3a.7.7 0 0 1 0 1.4h-.006a.7.7 0 0 1 0-1.4zM7.3 4.604A2.201 2.201 0 0 1 10.613 6.5l-.008.16c-.072.78-.662 1.286-1.053 1.547a4.2 4.2 0 0 1-.824.423l-.063.022-.018.007-.007.003h-.002l-.002.001a.7.7 0 0 1-.445-1.327l.005-.002.034-.013a2.827 2.827 0 0 0 .546-.28c.332-.22.437-.413.437-.541a.8.8 0 0 0-.664-.79.8.8 0 0 0-.889.522.7.7 0 0 1-1.32-.463 2.2 2.2 0 0 1 .96-1.166"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8.333 1.3a6.368 6.368 0 1 1-2.41 12.264l-.001-.002-.099.011-3.414.353c-.148.015-.31.032-.442.034a1.07 1.07 0 0 1-.578-.14 1.03 1.03 0 0 1-.484-.723c-.04-.258.043-.474.092-.59.052-.121.13-.262.2-.394l1.091-2.018c.046-.084.07-.131.086-.165v-.003L2.298 9.7A6.367 6.367 0 0 1 8.333 1.3m0 1.4a4.966 4.966 0 0 0-4.707 6.554c.056.166.133.38.148.572.013.158.002.291-.037.444-.047.185-.147.36-.217.49l-.942 1.74 3.1-.32c.082-.008.194-.021.303-.017l.127.01.126.024.165.05q.081.029.15.056A4.968 4.968 0 1 0 8.333 2.7",clipRule:"evenodd"})]}),xr=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M8 3.917c1.108 0 2.416.869 2.416 2.417 0 .7-.308 1.3-.666 1.789-.357.486-.82.936-1.23 1.33-.432.415-.803.768-1.076 1.116l-.01.015h2.232a.75.75 0 0 1 0 1.5H6.333a.75.75 0 0 1-.75-.75c0-.671.329-1.241.68-1.69.352-.45.815-.886 1.216-1.272.424-.407.794-.771 1.062-1.137.266-.363.375-.652.375-.901a.917.917 0 0 0-1.833 0 .75.75 0 0 1-1.5 0c0-1.548 1.309-2.417 2.417-2.417"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13 1.25c.966 0 1.75.784 1.75 1.75v10A1.75 1.75 0 0 1 13 14.75H3A1.75 1.75 0 0 1 1.25 13V3c0-.966.784-1.75 1.75-1.75zM3 2.75a.25.25 0 0 0-.25.25v10c0 .138.112.25.25.25h10a.25.25 0 0 0 .25-.25V3a.25.25 0 0 0-.25-.25z",clipRule:"evenodd"})]}),xa=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M6.832 7.786a.54.54 0 0 1 .438.526V9.56c0 .26-.189.477-.437.528l-.11.01c-.3 0-.546-.24-.546-.538v-.085h-.73c-.3 0-.546-.241-.547-.54.001-.298.248-.536.547-.536h.73v-.088c0-.298.247-.536.546-.537zM9.915 8.4c.3 0 .547.238.548.537a.545.545 0 0 1-.548.539H8c-.3 0-.547-.241-.547-.54 0-.298.248-.535.547-.536zM9.276 5.9c.3 0 .548.239.548.537v.087h.729c.3 0 .546.24.547.539a.543.543 0 0 1-.547.537h-.729v.088a.544.544 0 0 1-.548.537.543.543 0 0 1-.547-.537v-1.25c0-.299.248-.537.547-.538M8 6.524c.3 0 .547.24.547.539A.543.543 0 0 1 8 7.6H5.447a.54.54 0 0 1-.547-.537c0-.299.247-.539.547-.539z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10 1.3c.514 0 .94 0 1.286.027.354.028.685.087.998.24.482.236.88.615 1.13 1.087.165.31.228.639.258.985.028.336.028.749.028 1.24v6.241c0 .492 0 .905-.028 1.241-.03.346-.093.675-.258.985a2.54 2.54 0 0 1-1.13 1.087c-.313.153-.644.212-.998.24-.346.027-.772.027-1.286.027H6c-.514 0-.94 0-1.286-.027-.354-.028-.685-.087-.998-.24a2.54 2.54 0 0 1-1.13-1.087c-.165-.31-.228-.639-.258-.985-.029-.336-.028-.749-.028-1.24V4.88c0-.492 0-.905.028-1.241.03-.346.093-.675.258-.985a2.54 2.54 0 0 1 1.13-1.087c.313-.153.644-.212.998-.24C5.06 1.3 5.486 1.3 6 1.3zM6 2.7c-.536 0-.898 0-1.177.023-.271.021-.404.06-.492.102-.223.11-.4.28-.509.486-.04.074-.078.191-.1.446C3.7 4.02 3.7 4.364 3.7 4.88v6.24c0 .516 0 .86.023 1.123.021.255.06.372.1.447.108.204.285.376.508.485.088.043.22.081.492.102.28.022.64.023 1.177.023h4c.536 0 .898 0 1.177-.023.271-.021.404-.06.492-.102.223-.11.4-.28.509-.486.04-.074.078-.191.1-.446.022-.263.022-.607.022-1.123V4.88c0-.516 0-.86-.023-1.123-.021-.255-.06-.372-.1-.446a1.14 1.14 0 0 0-.508-.486c-.088-.043-.22-.081-.492-.102-.28-.022-.64-.023-1.177-.023z",clipRule:"evenodd"})]}),xl=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754m-3.82 6.334L11 10 9.333 8.333m-2.666 0L5 10l1.667 1.667m6.666-5.008v4.808c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h2.14c.49 0 .735 0 .965.056a2 2 0 0 1 .578.239c.202.124.375.297.72.643l2.126 2.125c.346.346.519.519.643.72q.165.272.24.579c.054.23.054.475.054.964"})}),xo=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeMiterlimit:10,strokeWidth:2,d:"M7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2Zm5.6-4c-.8-2.3-3-4-5.6-4-3.3 0-6 2.7-6 6s2.7 6 6 6c2.6 0 4.8-1.7 5.6-4H17v4h4v-4h2v-4z"})}),xs=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M6 10h.01M8 14h.01M10 10h.01M12 14h.01M14 10h.01M16 14h.01M18 10h.01M5.2 18h13.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C22 16.48 22 15.92 22 14.8V9.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C20.48 6 19.92 6 18.8 6H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 7.52 2 8.08 2 9.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 18 4.08 18 5.2 18"})}),xd=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{d:"M6.5 2c2 0 3.6 1.3 4.2 3H22v3h-4v3h-3V8h-4.3c-.6 1.8-2.3 3-4.2 3C4 11 2 9 2 6.5S4 2 6.5 2m0 3C5.7 5 5 5.7 5 6.5S5.7 8 6.5 8 8 7.3 8 6.5 7.3 5 6.5 5m0 8c2 0 3.6 1.3 4.2 3H22v3h-2v3h-2v-3h-2v3h-3v-3h-2.3c-.6 1.8-2.3 3-4.2 3C4 22 2 20 2 17.5S4 13 6.5 13m0 3c-.8 0-1.5.7-1.5 1.5S5.7 19 6.5 19 8 18.3 8 17.5 7.3 16 6.5 16"})}),xc=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",d:"M13.55 4.5c.544 0 .95.452.95.969v5.312a.96.96 0 0 1-.95.969H2.45a.96.96 0 0 1-.95-.969V5.47c0-.517.406-.969.95-.969zm-2.616 3.877.008-.004h-.002z"})}),xf=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10s.666-.667 2.666-.667 3.334 1.334 5.334 1.334S13.333 10 13.333 10V2s-.666.667-2.666.667-3.334-1.334-5.334-1.334S2.667 2 2.667 2v12.667"})}),xu=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M6.136 2.479a.65.65 0 0 1 .336 1.256A4.843 4.843 0 0 0 3.05 9.663 4.843 4.843 0 0 0 12.46 7.4l-.06-.243-.02-.13a.65.65 0 0 1 1.278-.206l.073.307a6.144 6.144 0 0 1-4.416 7.215A6.144 6.144 0 0 1 1.793 10 6.143 6.143 0 0 1 6.136 2.48"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M9.52 8.806a1.176 1.176 0 1 1 0 2.351 1.176 1.176 0 0 1 0-2.351m0 1a.176.176 0 0 0-.175.176.175.175 0 1 0 .176-.176",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M6.165 10.666a.65.65 0 0 1-.92-.919z"}),(0,tq.jsx)("path",{d:"M8.836 6.155a.65.65 0 0 1 .92.92l-3.591 3.591-.46-.46-.46-.459z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.93 5.664a1.176 1.176 0 1 1-.002 2.352 1.176 1.176 0 0 1 .002-2.352m0 1a.176.176 0 1 0 0 .35.176.176 0 0 0 0-.35",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M8.855.54a.65.65 0 0 1 .92 0l1.195 1.195L12.164.547a.65.65 0 1 1 .917.92l-1.19 1.188 1.184 1.185.083.103a.65.65 0 0 1-.9.9l-.103-.083-1.187-1.187-1.191 1.19a.65.65 0 0 1-.92-.921l1.191-1.189L8.855 1.46a.65.65 0 0 1 0-.92"})]}),xm=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 6h12M2 10h12M8 2v12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),xp=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M11.667 7.333H8.333M11.667 10H8.333m3.334-5.333H8.333M6 2v12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),xg=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8.04 1a.7.7 0 0 1 .207.073.2.2 0 0 1 .066 0A.7.7 0 0 1 8.5 1.2l4 4a.7.7 0 0 1 .127.187v.06q.03.088.04.18V7.5a.667.667 0 0 1-1.334 0V6.333h-2a2 2 0 0 1-2-2v-2H4A.667.667 0 0 0 3.333 3v9.333A.67.67 0 0 0 4 13h4.667a.667.667 0 0 1 0 1.333H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm.627 3.333A.667.667 0 0 0 9.333 5h1.06L8.668 3.273z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M12.316 10.426a.55.55 0 0 1 .675.09l.382.382c.726.727.806 1.884.107 2.582-.699.7-1.855.619-2.582-.107l-.39-.39-.02-.023-.008-.008c-.166-.202-.19-.517.017-.723.207-.207.522-.184.723-.017l.008.007.023.021.39.39c.327.326.8.324 1.056.067.257-.257.26-.729-.067-1.055l-.382-.382c-.2-.2-.24-.542-.02-.763z"}),(0,tq.jsx)("path",{d:"M9.838 9.838c.22-.22.562-.18.762.018l1.907 1.908c.2.2.24.542.02.762-.221.22-.564.18-.763-.02L9.856 10.6c-.199-.2-.239-.541-.018-.762"}),(0,tq.jsx)("path",{d:"M8.884 8.884c.699-.699 1.855-.619 2.582.107l.38.381c.175.175.23.46.092.676l-.07.087c-.222.22-.565.18-.764-.02l-.381-.38c-.327-.327-.8-.326-1.057-.069-.24.241-.258.668.009.992l.067.073.373.373c.2.2.24.542.02.763-.221.22-.563.18-.763-.02l-.385-.385-.058-.062-.005-.004c-.664-.727-.717-1.835-.04-2.512"})]}),xh=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 8H6m8-4H6m8 8H6M3.333 8A.667.667 0 1 1 2 8a.667.667 0 0 1 1.333 0m0-4A.667.667 0 1 1 2 4a.667.667 0 0 1 1.333 0m0 8A.667.667 0 1 1 2 12a.667.667 0 0 1 1.333 0"})}),xy=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#loading_inline_svg__clip0_723_2296)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M8 1.5v1.667M8 12v2.667M3.833 8H1.5m12.667 0h-1m-.862 4.305-.472-.472m.61-8.222-.943.942M3.281 12.72l1.886-1.886m-1.748-7.36 1.414 1.414"})})}),xv=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.294 1.654a.7.7 0 0 1 .709.342l2.104 3.655q.01.02.02.043l.147.062c.484.206.827.344 1.226.344.478 0 .759-.084.898-.144a.7.7 0 0 0 .12-.064q.01-.006 0 0l-.01.01-.008.009-.004.004a.7.7 0 0 1 1.204.486v4.8a.7.7 0 0 1-.19.478l-.027.028a1 1 0 0 1-.154.126 2 2 0 0 1-.383.211c-.33.141-.8.256-1.446.256-.726 0-1.32-.262-1.774-.456-.484-.206-.827-.344-1.226-.344-.385 0-.642.056-.8.109V14a.7.7 0 0 1-1.4 0v-.153l-4.706-8.15a.7.7 0 0 1-.076-.51l.682.16-.682-.16.002-.002v-.002l.008-.035a1 1 0 0 1 .07-.186c.048-.103.12-.23.226-.373.216-.287.565-.622 1.125-.945.629-.363 1.275-.433 1.765-.492.521-.063.888-.116 1.233-.316.414-.239.615-.452.705-.573a.7.7 0 0 0 .073-.116q.004-.01 0 0l-.004.014-.003.011-.001.006a.7.7 0 0 1 .577-.524M6.3 8.969c-.238.174-.464.356-.657.524q-.085.075-.159.142l.816 1.411zm2.2-2.268c-.385 0-.642.055-.8.107v3.36c.23-.041.495-.068.8-.068.726 0 1.32.263 1.774.457.484.206.827.344 1.226.344.386 0 .642-.057.8-.11V7.432c-.23.042-.495.068-.8.068-.726 0-1.32-.262-1.774-.456-.484-.206-.827-.343-1.226-.343M7.304 3.59c-.178.15-.394.306-.656.458-.629.363-1.276.433-1.766.492-.521.063-.887.116-1.232.316a2.6 2.6 0 0 0-.64.492l1.76 3.048c.364-.313.859-.702 1.38-1.003a.7.7 0 0 1 .15-.063v-.93c0-.178.068-.35.19-.48l.51.48-.51-.48h.001l.001-.003.026-.025a1 1 0 0 1 .153-.126 2 2 0 0 1 .383-.21c.293-.125.696-.23 1.236-.253z",clipRule:"evenodd"})}),xb=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M14.038 7.9a.768.768 0 0 1 .542 1.308.77.77 0 0 1-.443.215V14a.768.768 0 0 1-1.308.542.77.77 0 0 1-.225-.542v-1.9h-.553q.082.276.086.565a2.104 2.104 0 0 1-1.556 2.03 2.1 2.1 0 0 1-2.362-.98.765.765 0 1 1 1.328-.765l.041.062a.567.567 0 1 0 .45-.912.767.767 0 0 1 0-1.534.567.567 0 1 0-.45-.912l-.04.062a.77.77 0 0 1-.466.36.767.767 0 0 1-.925-.99l.062-.137a2.1 2.1 0 0 1 3.485-.227c.28.366.433.816.433 1.278a2 2 0 0 1-.086.566h.553V9.423a.77.77 0 0 1-.442-.215.768.768 0 0 1 .542-1.309zM4.704 8.566a.77.77 0 0 1 .766.767V10a.57.57 0 0 0 .568.566h.666a.767.767 0 0 1 0 1.533h-.666A2.103 2.103 0 0 1 3.937 10v-.667a.77.77 0 0 1 .767-.767"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.705 1.233a1.62 1.62 0 0 1 1.57 1.228l1.173 4.685.021.15a.77.77 0 0 1-.108.432.768.768 0 0 1-1.4-.208L5.604 6.1H3.803l-.355 1.42a.767.767 0 0 1-1.488-.374L3.132 2.46a1.62 1.62 0 0 1 1.573-1.227m0 1.55a.1.1 0 0 0-.087.056l-.432 1.727h1.036l-.43-1.722a.1.1 0 0 0-.034-.044.1.1 0 0 0-.053-.017",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M10.038 3.233a2.103 2.103 0 0 1 2.1 2.1V6a.768.768 0 0 1-1.534 0v-.667a.57.57 0 0 0-.566-.566H9.37a.767.767 0 0 1 0-1.534z"})]}),xx=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("circle",{cx:8,cy:6.667,r:2,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.667 6.5C12.667 10.25 8 14 8 14s-4.667-3.75-4.667-7.5C3.333 4.015 5.423 2 8 2s4.667 2.015 4.667 4.5"})]}),xj=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 15 15",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M7.367 3.434c1.28 0 1.94.483 2.274 1.067.327.573.325 1.224.325 1.532V6.7c0 .329-.27.6-.6.6a.603.603 0 0 1-.599-.6v-.667c0-.485-.062-.826-.254-1.05-.189-.22-.526-.35-1.146-.35s-.958.13-1.147.35c-.192.224-.254.565-.254 1.05V6.7c0 .329-.27.6-.6.6a.603.603 0 0 1-.599-.6v-.667c0-.308-.002-.959.325-1.532.333-.584.995-1.067 2.275-1.067ZM7.367 7.7c.548 0 1 .452 1 1s-.452 1-1 1-1-.451-1-1 .451-1 1-1Z"}),(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M9.033 6.1c.807 0 1.383.143 1.754.513.37.371.513.947.513 1.754v.666c0 .807-.142 1.383-.513 1.754-.37.37-.947.513-1.754.513H5.7c-.807 0-1.383-.142-1.754-.513-.37-.37-.512-.947-.512-1.754v-.666c0-.807.142-1.383.512-1.754.371-.37.947-.512 1.754-.512zM5.7 7.3c-.265 0-.463.007-.613.032s-.238.066-.297.125-.1.148-.125.297c-.025.15-.032.348-.032.613v.666c0 .265.007.464.032.613.025.15.066.239.125.297.059.059.148.1.297.125.15.025.348.033.613.033h3.333c.265 0 .464-.008.614-.033s.238-.066.296-.125c.06-.058.1-.147.126-.297.024-.15.03-.348.03-.613v-.666c0-.265-.005-.463-.03-.613s-.067-.238-.126-.297-.147-.1-.296-.125a4 4 0 0 0-.614-.032z"}),(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M7.367.1a7.273 7.273 0 0 1 7.267 7.267 7.273 7.273 0 0 1-7.267 7.267A7.273 7.273 0 0 1 .1 7.367 7.273 7.273 0 0 1 7.367.101Zm0 1.2A6.075 6.075 0 0 0 1.3 7.367a6.075 6.075 0 0 0 6.067 6.067 6.074 6.074 0 0 0 6.066-6.067A6.075 6.075 0 0 0 7.367 1.3Z"})]}),xw=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 6.667V5.333a3.333 3.333 0 1 0-6.666 0v1.334m3.333 3V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218"})}),xk=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 6.667V5.333a3.333 3.333 0 1 0-6.666 0v1.334m3.333 3V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),xT=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 11.333 14 8m0 0-3.333-3.333M14 8H6m0-6h-.8c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14H6"})}),xS=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 6.667H2M13.333 4H2m11.333 5.333H2M10.667 12H2"})}),xC=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 18",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.88,strokeWidth:1.5,d:"M16.125 13.5 11.143 9M6.857 9l-4.982 4.5M1.5 5.25l6.124 4.287c.496.347.744.52 1.013.587.238.06.488.06.726 0 .27-.067.517-.24 1.013-.587L16.5 5.25M5.1 15h7.8c1.26 0 1.89 0 2.371-.245.424-.216.768-.56.984-.984.245-.48.245-1.11.245-2.371V6.6c0-1.26 0-1.89-.245-2.371a2.25 2.25 0 0 0-.983-.984C14.79 3 14.16 3 12.9 3H5.1c-1.26 0-1.89 0-2.371.245a2.25 2.25 0 0 0-.984.984C1.5 4.709 1.5 5.339 1.5 6.6v4.8c0 1.26 0 1.89.245 2.371.216.424.56.768.984.984C3.209 15 3.839 15 5.1 15"})}),xD=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.08 12c-1.009 0-4.712 0-5.097-.204a1.84 1.84 0 0 1-.787-.82C1 10.576 1 10.05 1 9V5c0-1.05 0-1.575.196-1.976a1.84 1.84 0 0 1 .787-.82C2.368 2 2.873 2 3.88 2h6.24c1.008 0 1.512 0 1.897.204.34.18.614.467.787.82.195.4.195 3.404.195 4.464V7.5M1.196 3.875 5.688 7.01c.397.29.595.434.811.49.19.05.39.05.58 0 .216-.056.415-.2.811-.49l4.81-3.135m-2.022 7.71-.616 2.035c-.049.16-.073.24-.056.29a.14.14 0 0 0 .088.087c.046.014.116-.02.255-.09l4.412-2.194c.136-.067.204-.101.225-.148a.16.16 0 0 0 0-.13c-.02-.046-.089-.08-.225-.148l-4.414-2.195c-.139-.069-.208-.103-.254-.089a.14.14 0 0 0-.088.087c-.017.05.007.13.055.289l.618 2.059a.3.3 0 0 1 .014.055.2.2 0 0 1 0 .037.3.3 0 0 1-.014.055"})}),xI=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M3.333 3.667a.333.333 0 0 1 .334-.334h2.666a.333.333 0 0 1 .334.334v2.666a.333.333 0 0 1-.334.334H3.667a.333.333 0 0 1-.334-.334zM3.333 9.667a.333.333 0 0 1 .334-.334h2.666a.333.333 0 0 1 .334.334v2.666a.333.333 0 0 1-.334.334H3.667a.333.333 0 0 1-.334-.334zM9.333 10l2 2 2-2M11.333 12V4"})}),xM=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#many-to-many-object-relation_inline_svg__clip0_1905_2459)",children:(0,tq.jsx)("path",{d:"M13.8 1a1 1 0 0 1 1 1v2.8a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1v-.047l-3.532 2.66L10 10.427V10a1 1 0 0 1 1-1h2.8a1 1 0 0 1 1 1v2.8a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1v-.53L5.8 8.683V8.8a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h2.8a1 1 0 0 1 1 1v.162L10 3V2a1 1 0 0 1 1-1z"})})}),xL=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12 6.083c-.755 0-1.44-.304-1.936-.797L6.709 6.982a3.3 3.3 0 0 1-.157 1.638l3.543 2.064a2.75 2.75 0 1 1-.758 1.295L5.722 9.871a3.25 3.25 0 1 1 .41-4.279l3.194-1.615A2.75 2.75 0 1 1 12 6.083m-1.25-2.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m0 9.334c0-.201.047-.39.131-.559a.8.8 0 0 0 .084-.143 1.249 1.249 0 0 1 2.285.702 1.25 1.25 0 0 1-2.5 0m-9-5.167a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0",clipRule:"evenodd"})}),xF=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12 6.083c-.755 0-1.44-.304-1.936-.797L6.709 6.982a3.3 3.3 0 0 1-.157 1.638l3.543 2.064a2.75 2.75 0 1 1-.758 1.295L5.722 9.871a3.25 3.25 0 1 1 .41-4.279l3.194-1.615A2.75 2.75 0 1 1 12 6.083m-1.25-2.75a1.25 1.25 0 1 1 2.5 0 1.25 1.25 0 0 1-2.5 0m0 9.334c0-.201.047-.39.131-.559a.7.7 0 0 0 .084-.143 1.249 1.249 0 0 1 2.285.702 1.25 1.25 0 0 1-2.5 0m-9-5.167a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0",clipRule:"evenodd"})}),xE=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#many-to-one-relation_inline_svg__clip0_1905_2455)",children:[(0,tq.jsx)("path",{d:"M12.666 6a2.481 2.481 0 0 1 0 4.964 2.48 2.48 0 0 1-2.437-2.027H5.917A2.48 2.48 0 0 1 1 8.483a2.48 2.48 0 0 1 4.897-.545h4.35A2.48 2.48 0 0 1 12.666 6M3.48 7a1.482 1.482 0 0 0 0 2.964A1.481 1.481 0 0 0 3.48 7m9.186 0a1.482 1.482 0 0 0 0 2.964 1.481 1.481 0 0 0 0-2.964"}),(0,tq.jsx)("path",{d:"M12.666 6v-.2zm2.48 2.482h.2zm-2.48 2.482v.2zm-2.437-2.027.197-.036-.03-.163h-.167zm-4.313 0v-.2H5.75l-.03.164zM3.48 10.965v.2zM1 8.482H.8zM3.48 6v-.2zm2.417 1.938-.195.043.035.156h.16zm4.35 0v.2h.16l.035-.157zM3.48 7v-.2zM2 8.482h-.2zm1.48 1.482v.2zm1.48-1.482h.2zM12.666 7v-.2zm-1.48 1.482h-.2zm1.48 1.482v.2zm1.48-1.482h.2zM12.666 6v.2c1.26 0 2.28 1.022 2.28 2.282h.4a2.68 2.68 0 0 0-2.68-2.682zm2.48 2.482h-.2c0 1.26-1.02 2.282-2.28 2.282v.4a2.68 2.68 0 0 0 2.68-2.682zm-2.48 2.482v-.2a2.28 2.28 0 0 1-2.24-1.863l-.197.037-.196.036a2.68 2.68 0 0 0 2.633 2.19zm-2.437-2.027v-.2H5.917v.4h4.313zm-4.313 0-.197-.036a2.28 2.28 0 0 1-2.239 1.863v.4a2.68 2.68 0 0 0 2.633-2.19zM3.48 10.965v-.2A2.28 2.28 0 0 1 1.2 8.482H.8c0 1.48 1.2 2.682 2.68 2.682zM1 8.482h.2A2.28 2.28 0 0 1 3.48 6.2v-.4A2.68 2.68 0 0 0 .8 8.482zM3.48 6v.2a2.28 2.28 0 0 1 2.222 1.781l.195-.043.196-.044A2.68 2.68 0 0 0 3.48 5.8zm2.417 1.938v.2h4.35v-.4h-4.35zm4.35 0 .195.043A2.28 2.28 0 0 1 12.666 6.2v-.4a2.68 2.68 0 0 0-2.614 2.094zM3.48 7v-.2c-.927 0-1.68.753-1.68 1.682h.4c0-.708.574-1.282 1.28-1.282zM2 8.482h-.2c0 .93.753 1.682 1.68 1.682v-.4c-.706 0-1.28-.573-1.28-1.282zm1.48 1.482v.2c.927 0 1.68-.753 1.68-1.681h-.4c0 .708-.574 1.28-1.28 1.28zm1.48-1.482h.2c0-.929-.752-1.682-1.68-1.682v.4c.706 0 1.28.574 1.28 1.282zM12.666 7v-.2c-.928 0-1.68.753-1.68 1.682h.4c0-.708.574-1.282 1.28-1.282zm-1.48 1.482h-.2c0 .93.753 1.682 1.68 1.682v-.4c-.706 0-1.28-.573-1.28-1.282zm1.48 1.482v.2c.927 0 1.68-.753 1.68-1.681h-.4c0 .708-.574 1.28-1.28 1.28zm1.48-1.482h.2c0-.929-.753-1.682-1.68-1.682v.4c.706 0 1.28.574 1.28 1.282z"})]})}),xP=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M14.222 7.716V12a2 2 0 0 1-2 2H3.778a2 2 0 0 1-2-2V7.716M4.5 6.312C4.5 7.245 3.716 8 2.75 8c-.873 0-1.597-.617-1.729-1.423a1.2 1.2 0 0 1 .048-.521l.698-2.578A2 2 0 0 1 3.697 2h8.606a2 2 0 0 1 1.93 1.478l.698 2.578c.046.17.076.347.048.521C14.847 7.383 14.123 8 13.25 8c-.966 0-1.75-.756-1.75-1.687m-7 0C4.5 7.244 5.284 8 6.25 8S8 7.244 8 6.313m-3.5 0L4.889 2M8 6.313C8 7.244 8.784 8 9.75 8s1.75-.756 1.75-1.687m-3.5 0V2m3.5 4.313L11.111 2"})}),xA=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",d:"M4.667 9.667v2zM7.667 7.667v4zM10.667 5.667v6zM13.667 3.667v8z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 14H4.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C2 12.987 2 12.613 2 11.867V2m2.667 7.667v2m3-4v4m3-6v6m3-8v8"})]}),xN=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"m9.875 8.393-.453-.597-.01.008-.01.008zm0-.669-.488.57.033.028.036.024zM7.577 5.75l.49-.569-.022-.018-.022-.016zm-.481.295.75-.002v-.011zm.01 3.878-.75.002v.036zm.499.323.407.63.035-.022.032-.027zM8 12.666v-.75c-1.07 0-2.205 0-3.154-.082a7.3 7.3 0 0 1-1.182-.181 2 2 0 0 1-.35-.121 1 1 0 0 1-.09-.05q-.027-.02-.025-.02l-.54.521-.54.52c.313.325.764.496 1.164.6.425.112.92.181 1.434.225 1.026.09 2.231.089 3.283.089zM2 8h-.75c0 1.08-.001 1.962.089 2.657.092.713.293 1.342.78 1.847l.54-.52.54-.521c-.172-.179-.3-.442-.373-1C2.751 9.889 2.75 9.12 2.75 8zm12 0h-.75c0 1.12-.002 1.888-.076 2.464-.072.557-.201.82-.373.999l.54.52.54.52c.487-.504.688-1.133.78-1.846.09-.695.089-1.578.089-2.657zm-6 4.667v.75c1.052 0 2.257 0 3.284-.089a9 9 0 0 0 1.433-.224c.4-.105.851-.276 1.164-.6l-.54-.52-.54-.521q.002-.001-.026.02a1 1 0 0 1-.088.049q-.123.06-.35.12c-.308.082-.708.141-1.183.182-.949.082-2.085.083-3.154.083zm0-9.334v.75c1.07 0 2.205 0 3.154.083.475.041.875.1 1.182.181q.228.061.35.121.06.03.09.05.028.02.025.02l.54-.521.54-.52c-.312-.325-.764-.496-1.164-.6a9 9 0 0 0-1.434-.225c-1.026-.09-2.231-.089-3.283-.089zM14 8h.75c0-1.08.002-1.962-.089-2.657-.092-.713-.293-1.342-.78-1.847l-.54.52-.54.521c.172.179.3.442.373 1 .075.575.076 1.343.076 2.463zM8 3.333v-.75c-1.052 0-2.257 0-3.283.089a9 9 0 0 0-1.434.224c-.4.105-.851.276-1.164.6l.54.52.54.521q-.002.001.026-.02a1 1 0 0 1 .088-.049q.123-.06.35-.121c.308-.08.708-.14 1.183-.181.949-.082 2.085-.083 3.154-.083zM2 8h.75c0-1.12.001-1.888.076-2.464.072-.557.201-.82.373-.999l-.54-.52-.54-.52C1.632 4 1.431 4.63 1.34 5.342 1.249 6.038 1.25 6.92 1.25 8zm7.875.393.454.598c.23-.175.517-.488.516-.943 0-.468-.303-.779-.55-.945l-.42.621-.419.622c.046.031-.11-.057-.11-.296 0-.225.14-.302.076-.254zm0-.669.49-.568L8.065 5.18l-.489.57-.488.568 2.298 1.974zM7.577 5.75l.446-.603c-.258-.19-.7-.35-1.137-.112-.436.238-.546.695-.54 1.023l.75-.013.75-.013c-.001-.039.01.183-.242.32a.46.46 0 0 1-.472.001zm-.481.295-.75.002.01 3.878.75-.002.75-.002-.01-3.878zm.01 3.878-.75.038c.013.252.086.719.503.979.467.291.935.077 1.153-.064l-.407-.63-.407-.63c-.017.011.015-.014.091-.027a.535.535 0 0 1 .559.299c.015.037.009.044.006-.003zm.499.323.474.581 2.27-1.852-.474-.582-.474-.58-2.27 1.852z"})}),xR=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M9.05 10.708c.215 0 .369.183.369.411 0 .222-.155.39-.368.39H4.028c-.213 0-.368-.168-.368-.39 0-.228.155-.411.368-.411zM12.506 6.458c.493 0 .784.34.784.874v1.33c0 .534-.291.873-.784.873H3.5c-.493 0-.784-.34-.784-.874V7.332c0-.534.291-.874.784-.874zM9.05 4.483c.214 0 .369.176.369.398 0 .228-.154.404-.368.404H4.028c-.213 0-.368-.176-.368-.404 0-.222.155-.398.368-.398z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13.136 2C14.383 2 15 2.678 15 4.02v7.966C15 13.33 14.382 14 13.136 14H2.864C1.624 14 1 13.329 1 11.986V4.021C1 2.678 1.623 2 2.864 2zM2.876 3.05c-.594 0-.92.351-.92 1.03v7.848c0 .677.327 1.022.92 1.022h10.248c.587 0 .92-.345.92-1.022V4.079c0-.678-.332-1.03-.92-1.03z",clipRule:"evenodd"})]}),xV=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.6 2H3.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C2 2.507 2 2.694 2 3.067V5.6c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073H5.6c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V3.067c0-.374 0-.56-.073-.703a.67.67 0 0 0-.291-.291C6.16 2 5.973 2 5.6 2M12.933 2H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703V5.6c0 .373 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291C14 6.16 14 5.973 14 5.6V3.067c0-.374 0-.56-.073-.703a.67.67 0 0 0-.291-.291C13.493 2 13.306 2 12.933 2M12.933 9.333H10.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v2.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073h2.533c.374 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V10.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073M5.6 9.333H3.067c-.374 0-.56 0-.703.073a.67.67 0 0 0-.291.291C2 9.84 2 10.027 2 10.4v2.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291c.143.073.33.073.703.073H5.6c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V10.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073"})}),xz=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.048 8h5.333m-5.467 6h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.194 2 12.634 2 11.514 2h-5.6c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),xB=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M5 12h14"})}),xO=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.88,strokeWidth:1.4,d:"M1.334 9.333h13.333M5.334 14h5.333m-6.133-2h6.933c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.147 2 12.587 2 11.467 2H4.534c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.875.874c-.218.428-.218.988-.218 2.108v3.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .875.874c.427.218.987.218 2.108.218"})}),xK=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M4 6.667c-.733 0-1.333.6-1.333 1.333S3.267 9.333 4 9.333 5.333 8.733 5.333 8 4.733 6.667 4 6.667m8 0c-.733 0-1.333.6-1.333 1.333s.6 1.333 1.333 1.333 1.333-.6 1.333-1.333-.6-1.333-1.333-1.333m-4 0c-.733 0-1.333.6-1.333 1.333S7.267 9.333 8 9.333 9.333 8.733 9.333 8 8.733 6.667 8 6.667"})}),x_=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 2.667h4v4h-4zM9.333 9.333h4v4h-4zM6.667 3.333a4 4 0 0 0 0 8"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.597 12.552 1.687-.96-.96-1.686"})]}),xH=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.333 2.667h4v4h-4zM9.333 9.333h4v4h-4zM6.667 12.916a4 4 0 1 1 0-8"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m5.597 3.696 1.687.96-.96 1.687"})]}),x$=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M4.864 2.864a.75.75 0 1 0-1.061-1.061l-1.47 1.47-.47-.47a.75.75 0 0 0-1.06 1.06l1 1a.75.75 0 0 0 1.06 0zM14.667 2.583h-8a.75.75 0 1 0 0 1.5h8a.75.75 0 0 0 0-1.5M6.667 7.25a.75.75 0 1 0 0 1.5h8a.75.75 0 0 0 0-1.5zM5.917 12.667a.75.75 0 0 1 .75-.75h8a.75.75 0 1 1 0 1.5h-8a.75.75 0 0 1-.75-.75"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M2.667 5.917a2.083 2.083 0 1 0 0 4.166 2.083 2.083 0 0 0 0-4.166M2.083 8A.583.583 0 1 1 3.25 8a.583.583 0 0 1-1.167 0M.583 12.667a2.083 2.083 0 1 1 4.167 0 2.083 2.083 0 0 1-4.167 0m2.084-.584a.583.583 0 1 0 0 1.167.583.583 0 0 0 0-1.167",clipRule:"evenodd"})]}),xW=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.27 8c.1 0 .23-.001.341.01.085.008.29.032.485.17l.083.066.078.08a1 1 0 0 1 .241.686c-.01.261-.134.454-.188.535-.062.091-.146.193-.214.277l-1.085 1.333v1.075c0 .014 0 .057-.002.097a.863.863 0 0 1-.458.714l-.091.043-.696.307c-.024.01-.091.04-.157.062a.85.85 0 0 1-.456.024.85.85 0 0 1-.66-.775c-.005-.064-.004-.134-.004-.166v-1.38L8.402 9.823c-.068-.084-.152-.186-.214-.277A1 1 0 0 1 8 9.012a.99.99 0 0 1 .32-.766l.082-.066a1 1 0 0 1 .485-.17c.11-.011.242-.01.342-.01zm-1.535 2.313.014.017.014-.017.662-.813h-1.352zM7.27 3c.1 0 .23-.001.341.01.085.008.29.032.485.17l.083.066.078.08a1 1 0 0 1 .241.686c-.01.261-.134.454-.188.535-.062.091-.146.193-.214.277L7.01 6.157v1.075c0 .014 0 .057-.002.097a.864.864 0 0 1-.458.714l-.091.043-.696.307c-.024.01-.091.04-.157.062a.85.85 0 0 1-.456.024.85.85 0 0 1-.66-.775c-.005-.064-.004-.134-.004-.166v-1.38L3.402 4.823c-.068-.084-.152-.186-.214-.277A1 1 0 0 1 3 4.012a.99.99 0 0 1 .32-.766l.082-.066a1 1 0 0 1 .485-.17c.11-.011.242-.01.342-.01zM5.735 5.313l.014.017.014-.017.662-.813H5.073z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M14.03.26c.966.098 1.72.915 1.72 1.907v11.666a1.917 1.917 0 0 1-1.917 1.917H2.167c-.992 0-1.81-.754-1.907-1.72l-.01-.197V2.167C.25 1.108 1.108.25 2.167.25h11.666zM2.166 1.75a.417.417 0 0 0-.417.417v11.666l.009.084c.039.19.207.333.408.333h11.666c.23 0 .417-.187.417-.417V2.167a.42.42 0 0 0-.333-.408l-.084-.009z",clipRule:"evenodd"})]}),xq=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M14 7.25a.75.75 0 0 1 .75.75v2.294l.001.039-.001.038v2.296a.75.75 0 0 1-1.447.275 3.1 3.1 0 0 1-1.636.475 3.084 3.084 0 0 1 0-6.167 3.1 3.1 0 0 1 1.636.474A.75.75 0 0 1 14 7.25m-2.333 1.5a1.584 1.584 0 1 0 1.583 1.602v-.039a1.584 1.584 0 0 0-1.583-1.563M4.333 2.583a3.085 3.085 0 0 1 3.084 3.083v7a.75.75 0 0 1-1.5 0V9.417H2.75v3.249a.75.75 0 0 1-1.5 0v-7a3.084 3.084 0 0 1 3.083-3.083m0 1.5A1.584 1.584 0 0 0 2.75 5.666v2.251h3.167V5.666a1.584 1.584 0 0 0-1.584-1.583",clipRule:"evenodd"})}),xG=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.042 5.453h10.916M12.138 8H4.863m4.366 2.91H4.862m0 2.912h7.277a2.183 2.183 0 0 0 2.183-2.183V4.362a2.183 2.183 0 0 0-2.183-2.184H4.862a2.183 2.183 0 0 0-2.184 2.184v7.277c0 1.205.978 2.183 2.184 2.183"})}),xU=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M10.875 7.5H8.5V5.125A.125.125 0 0 0 8.375 5h-.75a.125.125 0 0 0-.125.125V7.5H5.125A.125.125 0 0 0 5 7.625v.75c0 .069.056.125.125.125H7.5v2.375c0 .069.056.125.125.125h.75a.125.125 0 0 0 .125-.125V8.5h2.375A.125.125 0 0 0 11 8.375v-.75a.125.125 0 0 0-.125-.125"}),(0,tq.jsx)("path",{d:"M8 1a7 7 0 1 0 .001 14.001A7 7 0 0 0 8 1m0 12.813A5.813 5.813 0 0 1 8 2.188a5.813 5.813 0 0 1 0 11.625"})]}),xQ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#new-column_inline_svg__clip0_723_2395)",children:(0,tq.jsx)("path",{d:"M4 2.667h2.667a.667.667 0 0 1 .666.666v9.334a.667.667 0 0 1-.666.666H4a.667.667 0 0 1-.667-.666V3.333A.667.667 0 0 1 4 2.667M10 8h2.667M11.333 6.667v2.666"})})}),xJ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2 6v6.933c0 .374 0 .56.073.703a.67.67 0 0 0 .29.291c.143.073.33.073.703.073H10m-.667-5.333v-2m0 0v-2m0 2h-2m2 0h2M4.667 9.2V4.133c0-.746 0-1.12.145-1.405.128-.251.332-.455.583-.583C5.68 2 6.053 2 6.8 2h5.067c.746 0 1.12 0 1.405.145.25.128.455.332.583.583.145.285.145.658.145 1.405V9.2c0 .747 0 1.12-.145 1.405-.128.251-.332.455-.583.583-.285.145-.658.145-1.403.145H6.798c-.745 0-1.119 0-1.403-.145a1.33 1.33 0 0 1-.583-.583c-.145-.285-.145-.658-.145-1.405"})}),xZ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M13.333 12h-.666v-.667a.667.667 0 0 0-1.334 0V12h-.666a.666.666 0 1 0 0 1.333h.666V14a.667.667 0 0 0 1.334 0v-.667h.666a.667.667 0 1 0 0-1.333m-4.666 1.333H4a.667.667 0 0 1-.667-.666V3.333A.667.667 0 0 1 4 2.667h3.333v2a2 2 0 0 0 2 2h2v2a.667.667 0 0 0 1.334 0V5.96a1 1 0 0 0-.04-.18v-.06a.7.7 0 0 0-.127-.187l-4-4a.7.7 0 0 0-.187-.126.2.2 0 0 0-.066 0 .7.7 0 0 0-.207-.074H4a2 2 0 0 0-2 2v9.334a2 2 0 0 0 2 2h4.667a.667.667 0 0 0 0-1.334m0-9.726 1.726 1.726h-1.06a.667.667 0 0 1-.666-.666zm0 7.06H5.333a.667.667 0 1 0 0 1.333h3.334a.666.666 0 1 0 0-1.333M9.333 8h-4a.667.667 0 1 0 0 1.333h4a.667.667 0 0 0 0-1.333"})}),xY=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.944 2v3.889M10 3.944h3.889"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.301 10h.333c.32 0 .48 0 .569-.066a.33.33 0 0 0 .13-.241c.006-.11-.082-.242-.26-.506l-.992-1.475c-.147-.218-.22-.327-.313-.365a.33.33 0 0 0-.252 0c-.093.038-.166.147-.313.365l-.245.365M10.3 10 7.768 6.374c-.146-.209-.219-.313-.31-.35a.33.33 0 0 0-.248 0c-.091.037-.164.141-.31.35L4.94 9.18c-.186.265-.278.398-.273.509a.33.33 0 0 0 .129.244c.089.067.252.067.578.067z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.333 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v.133M5.333 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8v-.133m12 0v.133c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14h-.133"})]}),xX=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M12.667 9.917a.75.75 0 0 1 .75.75v1.25h1.25a.75.75 0 0 1 0 1.5h-1.25v1.25a.75.75 0 0 1-1.5 0v-1.25h-1.25a.75.75 0 0 1 0-1.5h1.25v-1.25a.75.75 0 0 1 .75-.75"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.667 1.25a2.083 2.083 0 0 1 2.083 2.083v5a.75.75 0 0 1-1.5 0v-.916H7.417v5.833h.916a.75.75 0 0 1 0 1.5h-5a2.083 2.083 0 0 1-2.083-2.083V3.333A2.083 2.083 0 0 1 3.333 1.25zM2.75 12.667a.583.583 0 0 0 .583.583h2.584V7.417H2.75zm.583-9.917a.583.583 0 0 0-.583.583v2.584h3.167V2.75zm4.084 3.167h5.833V3.333a.583.583 0 0 0-.583-.583h-5.25z",clipRule:"evenodd"})]}),x0=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M9.333 6A3.3 3.3 0 0 0 6 2.667 3.3 3.3 0 0 0 2.667 6c0 1.933 1.933 4.8 3.333 6.6 1.533-2 3.333-4.867 3.333-6.6M8 6c0 1.133-.867 2-2 2s-2-.867-2-2 .867-2 2-2 2 .867 2 2M1.333 6C1.333 3.4 3.4 1.333 6 1.333S10.667 3.4 10.667 6C10.667 9.467 6 14.667 6 14.667S1.333 9.533 1.333 6m4 0c0 .4.267.667.667.667S6.667 6.4 6.667 6 6.4 5.333 6 5.333 5.333 5.6 5.333 6m7.367 4.056a.7.7 0 0 0-1.4 0V11.3h-1.244a.7.7 0 1 0 0 1.4H11.3v1.244a.7.7 0 1 0 1.4 0V12.7h1.245a.7.7 0 0 0 0-1.4H12.7z",clipRule:"evenodd"})}),x1=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 4v2.667a.667.667 0 0 1-.666.666H3.333a.667.667 0 0 1-.666-.666V4a.667.667 0 0 1 .666-.667h9.334a.667.667 0 0 1 .666.667M8 10v2.667M9.333 11.333H6.667"})}),x2=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.667 14v-4m-2 2h4m0-5.333H1.333M14.667 8V5.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.286-.146-.659-.146-1.406-.146H3.467c-.747 0-1.12 0-1.406.146-.25.127-.455.331-.582.582-.146.286-.146.659-.146 1.406v5.066c0 .747 0 1.12.146 1.406.127.25.331.454.582.582.286.146.659.146 1.406.146H8"})}),x3=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.333v9.334M3.333 8h9.334"})}),x6=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.7 1.3h-.029c-.535 0-.98 0-1.342.03-.376.03-.726.097-1.055.264a2.7 2.7 0 0 0-1.18 1.18c-.167.33-.234.679-.264 1.055-.03.363-.03.807-.03 1.342v5.658c0 .535 0 .98.03 1.342.03.376.097.726.264 1.055a2.7 2.7 0 0 0 1.18 1.18c.33.167.679.234 1.055.264.363.03.807.03 1.342.03h6.258a2.27 2.27 0 0 0 2.271-2.271V6.773c0-.397 0-.736-.023-1.015-.024-.294-.076-.581-.217-.857A2.2 2.2 0 0 0 13 3.94c-.276-.14-.563-.193-.857-.217-.279-.023-.618-.023-1.015-.023h-.112a2.6 2.6 0 0 0-.252-.926 2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.678-.234-1.055-.264a18 18 0 0 0-1.342-.03H5.7m0 12h4.13a2.3 2.3 0 0 1-.173-.871V5.2c0-.572 0-.958-.025-1.257-.023-.29-.066-.434-.117-.533a1.3 1.3 0 0 0-.568-.568c-.098-.05-.243-.093-.533-.117C8.115 2.7 7.729 2.7 7.157 2.7H5.7c-.572 0-.958 0-1.257.025-.29.024-.434.066-.533.117a1.3 1.3 0 0 0-.568.568c-.05.099-.093.243-.117.533C3.2 4.242 3.2 4.628 3.2 5.2v5.6c0 .572 0 .958.025 1.257.024.29.066.434.117.533a1.3 1.3 0 0 0 .568.568c.099.05.243.093.533.117.299.024.685.025 1.257.025m7.1-.871a.871.871 0 0 1-1.743 0V5.1h.043c.432 0 .713 0 .928.018.207.017.29.046.335.07a.8.8 0 0 1 .35.349c.023.045.052.128.069.335.018.215.018.496.018.928zM5.5 3.3a1.7 1.7 0 0 0 0 3.4h2a1.7 1.7 0 1 0 0-3.4zM5.2 5a.3.3 0 0 1 .3-.3h2a.3.3 0 0 1 0 .6h-2a.3.3 0 0 1-.3-.3",clipRule:"evenodd"})}),x4=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M4.667 9.25a.75.75 0 0 1 0 1.5H4a.75.75 0 0 1 0-1.5z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10.814 1.265c.144.028.278.1.383.205l1.333 1.333a.75.75 0 0 1 0 1.06l-1.333 1.334a.75.75 0 0 1-.53.22H8.75v1.166h2.583A3.42 3.42 0 0 1 14.75 10v4a.75.75 0 0 1-.75.75H2a.75.75 0 0 1-.75-.75V9.666a3.084 3.084 0 0 1 3.083-3.083H7.25V2l.004-.077A.75.75 0 0 1 8 1.25h2.667zM4.333 8.083A1.584 1.584 0 0 0 2.75 9.666v3.584h3.167V9.666a1.584 1.584 0 0 0-1.584-1.583m2.642 0a3.1 3.1 0 0 1 .442 1.583v3.584h5.833V10a1.92 1.92 0 0 0-1.917-1.917zM8.75 3.917h1.606l.584-.584-.584-.583H8.75z",clipRule:"evenodd"})]}),x5=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M6.784 9.518a.612.612 0 0 1 0 1.223H6.24a.612.612 0 0 1 0-1.223z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.793 3.012a.6.6 0 0 1 .312.167l1.086 1.086a.61.61 0 0 1 0 .865l-1.086 1.086a.61.61 0 0 1-.432.18h-1.562v.95h2.104A2.786 2.786 0 0 1 15 10.13v3.26a.61.61 0 0 1-.61.61H4.611a.61.61 0 0 1-.612-.61V9.856a2.513 2.513 0 0 1 2.513-2.512H8.89V3.611l.003-.063A.61.61 0 0 1 9.5 3h2.174zm-5.28 5.556a1.29 1.29 0 0 0-1.29 1.29v2.92h2.58v-2.92a1.29 1.29 0 0 0-1.29-1.29m2.152 0c.231.387.36.83.36 1.29v2.92h4.753v-2.649a1.564 1.564 0 0 0-1.563-1.561zm1.446-3.395h1.31l.474-.476-.475-.475h-1.31z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M7.548.532a.65.65 0 0 1 .903.935l-4.155 4a.65.65 0 0 1-.901 0L1.548 3.69a.65.65 0 0 1 .903-.936l1.394 1.343z"})]}),x7=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 184 115",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",fillOpacity:.06,d:"M25.875 80.5C9.857 84.095 0 88.992 0 94.388c0 11.033 41.19 19.976 92 19.976s92-8.943 92-19.976c0-5.396-9.857-10.293-25.875-13.888v8.708c0 6.058-3.795 11.024-8.481 11.024H34.356c-4.686 0-8.481-4.969-8.481-11.024z"}),(0,tq.jsxs)("g",{stroke:"currentColor",strokeOpacity:.06,children:[(0,tq.jsx)("path",{fill:"currentColor",fillOpacity:.04,d:"M119.637 45.815c0-4.58 2.858-8.361 6.403-8.364h32.085v51.757c0 6.058-3.795 11.024-8.481 11.024H34.356c-4.686 0-8.481-4.969-8.481-11.024V37.451H57.96c3.545 0 6.403 3.776 6.403 8.356v.063c0 4.58 2.889 8.278 6.431 8.278h42.412c3.542 0 6.431-3.733 6.431-8.313z"}),(0,tq.jsx)("path",{d:"m158.125 37.766-29.17-32.823c-1.4-2.237-3.444-3.59-5.597-3.59H60.642c-2.153 0-4.197 1.353-5.597 3.588l-29.17 32.828"})]})]}),x8=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m10 6-4 4m7-2A5 5 0 1 1 3 8a5 5 0 0 1 10 0"})}),x9=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 2.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867V10.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14h4.933c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V8.667m-4.666 2.666h-4M10 8.667H4.667m8.747-6.081a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828"})}),je=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2 5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v3.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 12 11.92 12 10.8 12H9.122c-.416 0-.624 0-.823.04a2 2 0 0 0-.507.179c-.181.092-.344.222-.669.482l-1.59 1.272c-.277.222-.416.333-.533.333a.33.33 0 0 1-.26-.125c-.073-.091-.073-.269-.073-.624V12c-.62 0-.93 0-1.185-.068a2 2 0 0 1-1.414-1.414C2 10.263 2 9.953 2 9.333z"})}),jt=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 2.667H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867v3.466c0 .62 0 .93.068 1.185a2 2 0 0 0 1.414 1.414c.255.068.565.068 1.185.068v1.557c0 .355 0 .533.072.624.064.08.16.126.261.126.117 0 .256-.112.533-.334l1.59-1.272c.325-.26.488-.39.669-.482q.24-.123.507-.178C8.5 12 8.706 12 9.123 12h1.01c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.133m.081-6.081a2 2 0 1 1-2.828 2.828 2 2 0 0 1 2.828-2.828"})}),ji=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillOpacity:.85,d:"M4.781 13.512c.457 0 .739-.235.832-.668l.528-2.52h2.18l-.481 2.297c-.106.48.234.89.715.89.468 0 .773-.234.867-.667l.527-2.531h1.219c.457 0 .785-.34.785-.786 0-.398-.281-.691-.668-.691h-1.02l.505-2.379H12c.457 0 .785-.34.785-.785 0-.399-.281-.692-.668-.692h-1.043l.457-2.19a.736.736 0 0 0-.738-.892c-.457 0-.75.235-.844.68L9.445 4.98h-2.18l.446-2.19a.72.72 0 0 0-.715-.892c-.469 0-.762.235-.855.68L5.648 4.98H4.406a.77.77 0 0 0-.785.786c0 .398.281.691.68.691h1.02l-.493 2.379H3.574a.764.764 0 0 0-.785.785c0 .399.281.691.668.691h1.066l-.48 2.31c-.094.48.258.89.738.89m1.57-4.535.54-2.637h2.367l-.551 2.637z"})}),jn=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4 4.583a2.086 2.086 0 0 1 2.084 2.083v2.667a2.085 2.085 0 0 1-4.157.206l-.011-.206V6.666A2.085 2.085 0 0 1 4 4.583m0 1.5a.585.585 0 0 0-.583.583v2.667l.012.114a.583.583 0 0 0 1.155-.114V6.666A.585.585 0 0 0 4 6.083M12.667 4.583c.329 0 .646.115.898.321l.104.094.094.104c.206.252.32.57.321.898v4a1.42 1.42 0 0 1-1.417 1.416h-1.333A1.42 1.42 0 0 1 9.917 10a.75.75 0 0 1 1.495-.084h1.172V8.75h-1.25a1.42 1.42 0 0 1-1.41-1.277l-.007-.14V6a1.42 1.42 0 0 1 1.417-1.417zm-1.25 2.667h1.167V6.083h-1.167z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M8.667 7.25a.75.75 0 0 1 0 1.5H7.334a.75.75 0 0 1 0-1.5z"})]}),jr=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M2.651 10.188c.368 0 .74.115 1.099.355.36.24.623.554.73.942.104.383.025.728-.082.977-.03.073-.068.14-.105.204q.057.096.105.205c.107.25.186.595.082.978-.107.389-.37.702-.73.942s-.731.354-1.099.354c-.361 0-.666-.11-.898-.244a2.2 2.2 0 0 1-.689-.62l-.012-.018-.005-.008-.002-.003-.002-.002s.011-.009.624-.417l-.624.417a.75.75 0 0 1 1.247-.834l.044.05c.044.047.101.097.163.133.06.034.11.046.154.046.04 0 .126-.008.267-.102a.6.6 0 0 0 .1-.083q-.01-.02-.025-.043h-.326a.75.75 0 0 1 0-1.5h.326l.025-.044a.6.6 0 0 0-.1-.082c-.14-.094-.228-.104-.267-.104a.3.3 0 0 0-.154.047.7.7 0 0 0-.207.184l-.006.008a.75.75 0 0 1-1.241-.842l.603.401-.603-.401.001-.001.001-.002.002-.003.005-.007.012-.018a2 2 0 0 1 .175-.212 2.2 2.2 0 0 1 .514-.408c.232-.133.537-.245.898-.245M14 11.917a.75.75 0 0 1 0 1.5H6.667a.75.75 0 0 1 0-1.5zM2.667 5.25q.071 0 .14.014h.008l.036.011q.052.013.102.032.042.019.082.043.024.011.047.026.038.027.071.058c.051.043.1.092.138.15a1 1 0 0 1 .062.116l.005.012q.011.03.019.059c.023.072.04.149.04.229v2.25h.25a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1 0-1.5h.25v-.879a.748.748 0 0 1-.666-1.328l.991-.662.012-.007a1 1 0 0 1 .11-.06l.015-.007a1 1 0 0 1 .107-.034l.03-.008.028-.004a1 1 0 0 1 .123-.011M14 7.25a.75.75 0 0 1 0 1.5H6.667a.75.75 0 0 1 0-1.5zM1.987.59c.257-.096.605-.168.987-.072.398.1.732.355.984.733.356.534.273 1.1.075 1.521a2.6 2.6 0 0 1-.302.48.75.75 0 0 1-.064 1.498h-2q-.023 0-.044-.003h-.02a.7.7 0 0 1-.183-.042q-.034-.011-.066-.025-.032-.016-.063-.034-.03-.017-.06-.037-.034-.025-.065-.054l-.041-.038a.8.8 0 0 1-.11-.144.8.8 0 0 1-.072-.184q-.012-.042-.02-.087l-.002-.02A1 1 0 0 1 .917 4l.002-.044.001-.018q.005-.06.02-.117.008-.03.019-.06.012-.037.028-.075.014-.03.032-.058.017-.032.038-.063a1 1 0 0 1 .097-.11 1 1 0 0 1 .084-.071q.015-.008.029-.017l.028-.017q0-.001.002-.002l.015-.008.061-.038a6 6 0 0 0 .87-.646c.223-.204.37-.387.433-.522q.02-.047.022-.067a.3.3 0 0 0-.088-.094.2.2 0 0 0-.096.021 1 1 0 0 0-.305.194l-.013.01a.75.75 0 0 1-1.06-1.061l.01-.01.017-.016.05-.047q.064-.056.17-.137A2.5 2.5 0 0 1 1.988.59M14 2.583a.75.75 0 0 1 0 1.5H6.667a.75.75 0 1 1 0-1.5z"}),(0,tq.jsx)("path",{d:"m2.197 2.198-.003.002v.002q0-.001.002-.005z"})]}),ja=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.966 3.644v.004a1.736 1.736 0 0 1-1.54 1.56l-.005.001-.166.009H3.62l-.166-.009-.005-.001a1.736 1.736 0 0 1-1.54-1.56v-.004L1.9 3.476v-.829A1.74 1.74 0 0 1 3.45.91h.004L3.62.9h1.6349999999999998l.166.01h.005a1.74 1.74 0 0 1 1.549 1.737v.829zM2.173 1.906q-.018.039-.034.078.023-.054.05-.106zm3.464.741a.39.39 0 0 0-.387-.394H3.625a.39.39 0 0 0-.387.394v.824a.39.39 0 0 0 .387.393H5.25a.39.39 0 0 0 .387-.393zM6.966 13.526v.005a1.74 1.74 0 0 1-1.54 1.56H5.42l-.166.009H3.62l-.166-.01H3.45a1.74 1.74 0 0 1-1.54-1.559v-.005l-.009-.168v-.829c0-.903.678-1.647 1.55-1.737l.004-.001.166-.009h1.635l.166.009.005.001c.87.09 1.549.834 1.549 1.737v.83zm-4.96-1.145L2 12.529q0-.078.008-.155zm3.63.148a.39.39 0 0 0-.386-.393H3.625a.39.39 0 0 0-.387.393v.823a.39.39 0 0 0 .387.395H5.25a.39.39 0 0 0 .387-.395zm-.22 2.462.133-.02.009-.001q-.07.013-.142.021M9.403 8.585v.005a1.736 1.736 0 0 1-1.54 1.56h-.005l-.166.008-.005.001h-1.63l-.165-.01h-.005a1.736 1.736 0 0 1-1.54-1.56v-.004l-.01-.168v-.829c.001-.904.679-1.648 1.55-1.737l.006-.001.165-.008.005-.001h1.63l.165.01h.005c.871.09 1.549.833 1.55 1.737v.829zM4.444 7.439l-.006.149q0-.08.007-.156zm3.63.149a.39.39 0 0 0-.386-.394H6.063a.39.39 0 0 0-.387.394v.824a.39.39 0 0 0 .386.394h1.625a.39.39 0 0 0 .387-.394zM12.653 3.644v.004a1.736 1.736 0 0 1-1.54 1.56l-.005.001-.166.009H9.308l-.166-.009-.005-.001a1.736 1.736 0 0 1-1.54-1.56v-.004l-.01-.168v-.829A1.74 1.74 0 0 1 9.138.91h.005L9.308.9h1.6349999999999998l.165.01h.005a1.74 1.74 0 0 1 1.55 1.737v.829zM7.86 1.906l-.034.078q.023-.054.05-.106zm3.464.741a.39.39 0 0 0-.386-.394H9.312a.39.39 0 0 0-.386.394v.824a.39.39 0 0 0 .386.393h1.626a.39.39 0 0 0 .386-.393zM12.653 13.526v.005a1.74 1.74 0 0 1-1.54 1.56h-.005l-.166.009H9.307l-.165-.01h-.005a1.74 1.74 0 0 1-1.54-1.559v-.005l-.01-.168v-.829c.001-.903.679-1.647 1.55-1.737l.005-.001.166-.009h1.634l.166.009.005.001c.871.09 1.55.834 1.55 1.737v.83zm-4.959-1.145-.006.148q0-.078.007-.155zm3.63.148a.39.39 0 0 0-.386-.393H9.312a.39.39 0 0 0-.386.393v.823a.39.39 0 0 0 .386.395h1.626a.39.39 0 0 0 .386-.395zm-.22 2.462.132-.02.01-.001q-.07.013-.143.021M15.09 8.585v.005a1.736 1.736 0 0 1-1.54 1.56h-.004l-.166.008-.005.001h-1.63l-.166-.01h-.005a1.736 1.736 0 0 1-1.54-1.56v-.004l-.009-.168v-.829c0-.904.678-1.648 1.55-1.737l.005-.001.165-.008.005-.001h1.63l.166.01h.005c.87.09 1.548.833 1.549 1.737v.829zm-4.958-1.146-.007.149q0-.08.008-.156zm3.63.149a.39.39 0 0 0-.387-.394H11.75a.39.39 0 0 0-.387.394v.824a.39.39 0 0 0 .387.394h1.625a.39.39 0 0 0 .387-.394z",clipRule:"evenodd"})}),jl=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.159 3.15c.41 0 .482.006.538.023a.6.6 0 0 1 .187.1c.046.036.091.091.323.43l.323.472.037.054c.172.251.328.481.542.653.186.151.4.264.631.333.263.079.54.079.845.078h2.758c.353 0 .651.235.747.557H4.863c-.51 0-.932-.001-1.308.144a2.15 2.15 0 0 0-.855.602c-.264.306-.405.704-.576 1.184l-.033.094-.336.94-.201-3.822a13 13 0 0 1-.032-.978c.007-.221.034-.316.06-.372a.85.85 0 0 1 .373-.393c.054-.029.147-.061.368-.08.228-.018.527-.019.978-.019zM.797 12.444a.65.65 0 0 1-.175-.41L.255 5.06l-.001-.026c-.022-.417-.04-.77-.032-1.06.01-.302.05-.596.18-.879a2.15 2.15 0 0 1 .944-.995c.276-.146.567-.2.87-.226.288-.024.64-.024 1.059-.024h.95c.304 0 .582 0 .845.078.23.069.444.182.631.333.213.172.37.402.542.653l.037.054.323.472c.232.339.277.394.323.43a.6.6 0 0 0 .187.1c.056.017.128.023.538.023h2.692c1.073 0 1.957.813 2.067 1.857.541 0 .991 0 1.35.033.373.034.734.107 1.05.312.467.302.799.772.926 1.313.086.367.034.732-.06 1.093-.09.353-.243.78-.428 1.296l-.01.03-.785 2.199-.034.094c-.17.48-.312.878-.576 1.184a2.15 2.15 0 0 1-.854.602c-.377.145-.8.145-1.309.144H4.147c-.548 0-1.002 0-1.365-.033-.372-.033-.733-.107-1.05-.312a2.15 2.15 0 0 1-.935-1.361M5.172 9.35a.65.65 0 0 0 0 1.3h5.6a.65.65 0 1 0 0-1.3zm-1.15-2.143c.121-.046.278-.057.94-.057h7.404c.586 0 .98 0 1.278.028.294.026.406.073.46.109a.85.85 0 0 1 .367.519c.014.063.021.184-.053.47-.075.289-.207.661-.404 1.213l-.786 2.2c-.223.624-.285.768-.37.866a.85.85 0 0 1-.337.238c-.12.046-.278.057-.94.057H4.176c-.585 0-.98 0-1.278-.027-.294-.027-.406-.074-.46-.11a.85.85 0 0 1-.366-.518c-.015-.064-.022-.185.052-.47.075-.29.207-.662.404-1.214l.786-2.2c.223-.624.286-.768.37-.866a.85.85 0 0 1 .338-.238",clipRule:"evenodd"})}),jo=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#openid-connect_inline_svg__clip0_2766_40653)",children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.55 8.754a1.824 1.824 0 0 1 0 3.628l-.187.009a1.823 1.823 0 0 1 0-3.646zm-.187 1.09a.724.724 0 0 0-.722.724l.014.146c.068.329.36.577.708.577l.146-.015a.724.724 0 0 0 .577-.708l-.015-.145a.73.73 0 0 0-.562-.564z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.556 7.637a3.73 3.73 0 0 1 3.539 3.726l-.005.193a3.73 3.73 0 0 1-3.534 3.534l-.193.005a3.73 3.73 0 0 1-3.726-3.54l-.005-.192c0-2.06 1.67-3.731 3.731-3.731zm-1.147 5.867a.7.7 0 0 0-.39.117c.394.235.852.374 1.344.374l.193-.007c.418-.03.808-.162 1.15-.366a.7.7 0 0 0-.264-.106l-.124-.012zm.954-4.773a2.63 2.63 0 0 0-2.632 2.632l.01.214c.038.475.206.913.463 1.283a1.82 1.82 0 0 1 1.205-.456h1.91c.461 0 .88.174 1.201.456a2.6 2.6 0 0 0 .475-1.497l-.014-.27a2.63 2.63 0 0 0-2.348-2.348z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M2.595 12.268c.319.065.56.348.56.686v.254h.254a.7.7 0 0 1 .7.7l-.014.14a.7.7 0 0 1-.686.56H1.805a.05.05 0 0 1-.05-.05v-1.604a.7.7 0 0 1 .7-.7zM6.272 13.208a.7.7 0 0 1 .7.7l-.013.14a.7.7 0 0 1-.687.56h-.954a.7.7 0 0 1-.686-.56l-.014-.14a.7.7 0 0 1 .7-.7zM2.595 9.404a.7.7 0 0 1 .56.686v.955a.7.7 0 0 1-.56.685l-.14.014a.7.7 0 0 1-.7-.7v-.954a.7.7 0 0 1 .7-.7z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.868 2.072a1.824 1.824 0 0 1 0 3.628l-.186.009a1.823 1.823 0 0 1 0-3.646zm-.186 1.091a.724.724 0 0 0-.723.724l.015.145c.067.33.359.577.708.577l.145-.014a.724.724 0 0 0 .577-.708L5.39 3.74a.73.73 0 0 0-.563-.563z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.874.955a3.73 3.73 0 0 1 3.54 3.727l-.006.192a3.73 3.73 0 0 1-3.534 3.534l-.192.005A3.73 3.73 0 0 1 .955 4.874L.95 4.682C.95 2.62 2.62.95 4.682.95zM3.728 6.822a.7.7 0 0 0-.39.117c.394.236.852.374 1.344.374l.192-.006c.418-.031.808-.163 1.15-.367a.7.7 0 0 0-.263-.106l-.124-.012zm.954-4.772A2.63 2.63 0 0 0 2.05 4.682l.009.214c.038.474.206.912.463 1.283a1.82 1.82 0 0 1 1.206-.456h1.909c.461 0 .881.173 1.202.456.296-.426.474-.94.474-1.497l-.013-.27A2.63 2.63 0 0 0 4.95 2.063z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M13.91 4.618a.7.7 0 0 1 .698.7v.954a.7.7 0 0 1-1.399 0v-.955a.7.7 0 0 1 .7-.699M14.559 1.754a.05.05 0 0 1 .05.05v1.604a.7.7 0 1 1-1.4 0v-.254h-.255a.7.7 0 0 1-.685-.56l-.014-.14a.7.7 0 0 1 .7-.7zM11.045 1.754a.7.7 0 0 1 .7.7l-.014.14a.7.7 0 0 1-.686.56h-.954a.7.7 0 0 1-.687-.56l-.013-.14a.7.7 0 0 1 .7-.7z"})]})}),js=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M8.666 4.583a.75.75 0 0 1 0 1.5h-2a.584.584 0 0 0-.583.583V12l.012.114a.584.584 0 0 0 .571.469H12a.583.583 0 0 0 .583-.583V6.666a.58.58 0 0 0-.292-.505.75.75 0 0 1 .75-1.299 2.09 2.09 0 0 1 1.042 1.804V12A2.083 2.083 0 0 1 12 14.083H6.666a2.084 2.084 0 0 1-2.073-1.877L4.583 12V6.666a2.084 2.084 0 0 1 2.083-2.083z"}),(0,tq.jsx)("path",{d:"M9.54 1.927A2.084 2.084 0 0 1 11.417 4v5.334a2.084 2.084 0 0 1-2.083 2.083h-2a.75.75 0 0 1 0-1.5h2a.584.584 0 0 0 .583-.583V4a.584.584 0 0 0-.469-.571l-.114-.012H4A.583.583 0 0 0 3.417 4v5.334a.59.59 0 0 0 .293.506.75.75 0 0 1-.748 1.3 2.08 2.08 0 0 1-1.045-1.806V4A2.083 2.083 0 0 1 4 1.917h5.334z"})]}),jd=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M4.667 9.333H6A.667.667 0 0 0 6 8H4.667a.667.667 0 0 0 0 1.333m4 1.334h-4a.667.667 0 1 0 0 1.333h4a.666.666 0 1 0 0-1.333m4-9.334H3.333a2 2 0 0 0-2 2v9.334a2 2 0 0 0 2 2h9.334a2 2 0 0 0 2-2V3.333a2 2 0 0 0-2-2M9.333 2.667V4.86L8.327 4.3a.67.67 0 0 0-.667 0l-.993.56V2.667zm4 10a.667.667 0 0 1-.666.666H3.333a.667.667 0 0 1-.666-.666V3.333a.667.667 0 0 1 .666-.666h2V6a.667.667 0 0 0 1 .573L8 5.647l1.673.933a.667.667 0 0 0 .994-.58V2.667h2a.667.667 0 0 1 .666.666z"})}),jc=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M14 .917a.75.75 0 0 1 .75.75v8.335a.75.75 0 0 1-.75.75H8.75v1.77l.72-.72a.75.75 0 0 1 1.06 1.061l-2 2a.8.8 0 0 1-.188.133q-.027.016-.056.03-.048.018-.098.03-.02.006-.04.011-.007.002-.016.003a.8.8 0 0 1-.265 0l-.016-.003q-.02-.005-.04-.011-.05-.012-.098-.03-.029-.014-.056-.03a.7.7 0 0 1-.187-.133l-2-2a.75.75 0 0 1 1.06-1.06l.72.72v-1.771H2a.75.75 0 0 1-.75-.75V1.667a.75.75 0 0 1 1.5 0v7.585h5.212L8 9.25l.038.002h5.212V1.667a.75.75 0 0 1 .75-.75"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M9.663.917c.2 0 .391.079.532.22l1.285 1.286a.75.75 0 0 1 .006 1.055L6.87 8.19a.75.75 0 0 1-.536.226H5a.75.75 0 0 1-.75-.75V6.381c0-.197.078-.387.217-.527L9.132 1.14l.114-.095a.75.75 0 0 1 .417-.128M5.75 6.689v.228h.269l3.876-3.959-.228-.228z",clipRule:"evenodd"})]}),jf=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#other_inline_svg__clip0_1905_3462)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M5 3a1.667 1.667 0 1 1 3.333 0v1H9c.932 0 1.398 0 1.765.152a2 2 0 0 1 1.083 1.083C12 5.602 12 6.068 12 7h1a1.667 1.667 0 1 1 0 3.333h-1v1.134c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218h-.467V13.5a1.5 1.5 0 0 0-3 0v1.167h-.8c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108v-1.134h1a1.667 1.667 0 1 0 0-3.333h-1c0-.932 0-1.398.152-1.765a2 2 0 0 1 1.083-1.083C2.935 4 3.4 4 4.333 4H5z"})})}),ju=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M8 5.333V2.667M7 10.667H4M4.167 13.333h7.666a1.5 1.5 0 0 0 1.5-1.5V5.57a1 1 0 0 0-.105-.447l-.675-1.35a2 2 0 0 0-1.79-1.105H5.237a2 2 0 0 0-1.789 1.105l-.675 1.35a1 1 0 0 0-.105.447v6.264a1.5 1.5 0 0 0 1.5 1.5Z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 5.333h9.334"})]}),jm=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13 1.25c.966 0 1.75.784 1.75 1.75v10A1.75 1.75 0 0 1 13 14.75H3A1.75 1.75 0 0 1 1.25 13V3c0-.966.784-1.75 1.75-1.75zM2.75 13c0 .138.112.25.25.25h10a.25.25 0 0 0 .25-.25v-.917H2.75zm0-2.417h10.5V5.417H2.75zM3 2.75a.25.25 0 0 0-.25.25v.917h10.5V3a.25.25 0 0 0-.25-.25z",clipRule:"evenodd"})}),jp=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.111 6 8 8m0 0L6.889 6m1.11 2H6.334M8 8h1.667M8 8l-1.111 2m1.11-2 1.112 2m-5-4L3 8m0 0L1.889 6m1.11 2H1.334M3 8h1.667M3 8l-1.111 2m1.11-2 1.112 2m10-4L13 8m0 0-1.111-2m1.11 2h-1.666M13 8h1.667M13 8l-1.111 2m1.11-2 1.112 2"})}),jg=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.667 2.667c.62 0 .93 0 1.184.068a2 2 0 0 1 1.414 1.414c.068.254.068.564.068 1.184v6.134c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V5.333c0-.62 0-.93.068-1.184a2 2 0 0 1 1.414-1.414c.254-.068.564-.068 1.184-.068M6 10l1.333 1.333 3-3M6.4 4h3.2c.373 0 .56 0 .703-.073a.67.67 0 0 0 .291-.291c.073-.143.073-.33.073-.703V2.4c0-.373 0-.56-.073-.703a.67.67 0 0 0-.291-.291c-.143-.073-.33-.073-.703-.073H6.4c-.373 0-.56 0-.703.073a.67.67 0 0 0-.291.291c-.073.143-.073.33-.073.703v.533c0 .374 0 .56.073.703a.67.67 0 0 0 .291.291C5.84 4 6.027 4 6.4 4"})}),jh=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M7.135 7.362c.129-.474 1.029-.543 1.141.159.126.412-.04 1.068-.144 1.5.217.57.525.959.986 1.24.466-.06 1.399-.148 1.726.174.281.28.214 1.036-.469 1.036-.397 0-.989-.182-1.495-.455-.579.096-1.234.34-1.834.538-1.343 2.314-2.128 1.259-2.04.836.108-.536.832-.962 1.368-1.238.281-.492.68-1.352.948-1.992-.198-.766-.305-1.366-.187-1.798m-.785 4.22c-.159.146-.678.57-.815.937.004.016.309-.132.815-.938m1.38-1.975c-.18.474-.403 1.013-.663 1.465.426-.163.912-.4 1.47-.514a2.95 2.95 0 0 1-.808-.95m1.865 1.123c.846.36.994.215 1 .208.096-.064-.06-.278-1-.209M7.722 7.413c-.067 0-.07.72.048 1.093.13-.233.15-1.093-.048-1.093",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M9.48.598c.145.028.279.1.384.205l4 4c.14.14.22.331.22.53v6.134c0 .547 0 1.003-.03 1.374-.031.38-.098.737-.27 1.074a2.75 2.75 0 0 1-1.202 1.201c-.337.172-.694.24-1.073.27-.371.031-.828.03-1.375.03H5.867c-.547 0-1.004.001-1.375-.03-.38-.03-.736-.098-1.073-.27a2.75 2.75 0 0 1-1.202-1.201c-.172-.337-.24-.694-.27-1.074-.031-.371-.03-.827-.03-1.374V4.533c0-.547-.001-1.004.03-1.375.03-.38.098-.736.27-1.073A2.75 2.75 0 0 1 3.419.883c.337-.172.694-.24 1.073-.27.371-.031.828-.03 1.375-.03h3.467zM5.867 2.083c-.572 0-.957 0-1.253.024-.286.024-.424.067-.514.113a1.25 1.25 0 0 0-.546.546c-.046.09-.09.227-.113.514-.024.296-.024.68-.024 1.253v6.934c0 .572 0 .956.024 1.252.024.287.067.424.113.514.12.236.31.427.546.547.09.046.228.088.514.112.296.024.681.024 1.253.024h4.267c.572 0 .956 0 1.252-.024.287-.024.425-.066.515-.112.235-.12.427-.312.546-.547.046-.09.088-.228.112-.514.024-.296.025-.68.025-1.252V6.083H10.4c-.174 0-.35 0-.499-.012a1.4 1.4 0 0 1-.544-.142 1.4 1.4 0 0 1-.619-.62 1.4 1.4 0 0 1-.142-.543c-.012-.15-.012-.325-.012-.5V2.084zm4.217 2.184c0 .146.001.24.004.31a8 8 0 0 0 .312.006h1.123l-1.439-1.44z",clipRule:"evenodd"})]}),jy=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.752 7.814a2.65 2.65 0 0 1 2.377 2.635l-.014.27a2.65 2.65 0 0 1-2.363 2.366l-.27.014a2.645 2.645 0 0 1-2.564-2.001H6.011a2.65 2.65 0 0 1-2.323 1.99l-.24.01A2.65 2.65 0 0 1 .812 10.72L.8 10.45A2.65 2.65 0 0 1 3.447 7.8l.234.01a2.65 2.65 0 0 1 2.301 1.887h3.964A2.645 2.645 0 0 1 12.481 7.8zM3.447 9.2a1.248 1.248 0 1 0 .003 2.497A1.248 1.248 0 0 0 3.447 9.2m9.034 0a1.248 1.248 0 1 0 .003 2.497 1.248 1.248 0 0 0-.003-2.497M7.188 1.402A2.26 2.26 0 0 1 8.811 1.4l1.458.558a.75.75 0 0 1 .481.7v1.788c0 1.094-.703 1.922-1.25 2.41a6.2 6.2 0 0 1-1.123.793l-.023.011-.008.005-.003.001-.001.001a.75.75 0 0 1-.683 0h-.002l-.003-.002q-.003-.001-.008-.005l-.023-.011a4 4 0 0 1-.339-.202 6 6 0 0 1-.784-.59c-.547-.489-1.25-1.317-1.25-2.411V2.659a.75.75 0 0 1 .481-.7zM8.272 2.8a.76.76 0 0 0-.545 0l-.977.373v1.273c0 .437.297.886.75 1.291.174.156.352.284.5.383.148-.1.326-.227.5-.383.453-.405.75-.854.75-1.291V3.175l-.977-.373z",clipRule:"evenodd"})}),jv=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M12.348 7c.36 0 .652.28.652.625v1.75a.64.64 0 0 1-.652.625H10.52a.64.64 0 0 1-.65-.625v-.03l-2.305 1.663 2.304 1.885v-.268c0-.345.292-.625.652-.625h1.826c.36 0 .652.28.652.625v1.75a.64.64 0 0 1-.652.625H10.52a.64.64 0 0 1-.65-.625v-.332L7.13 11.802v.073a.64.64 0 0 1-.651.625H4.652A.64.64 0 0 1 4 11.875v-1.75a.64.64 0 0 1 .652-.625H6.48c.36 0 .65.28.65.625v.102L9.87 8.25v-.625c0-.345.292-.625.652-.625z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.188 1.402A2.26 2.26 0 0 1 5.811 1.4l1.458.558a.75.75 0 0 1 .481.7v1.788c0 1.094-.703 1.922-1.25 2.41a6.2 6.2 0 0 1-1.123.793l-.023.011-.008.005-.003.001-.001.001a.75.75 0 0 1-.683 0h-.002l-.003-.002q-.003-.001-.008-.005l-.023-.011a4 4 0 0 1-.339-.202 6 6 0 0 1-.784-.59c-.547-.489-1.25-1.317-1.25-2.411V2.659a.75.75 0 0 1 .481-.7zM5.272 2.8a.76.76 0 0 0-.545 0l-.977.373v1.273c0 .437.297.886.75 1.291.174.156.352.284.5.383.148-.1.326-.227.5-.383.453-.405.75-.854.75-1.291V3.175l-.977-.373z",clipRule:"evenodd"})]}),jb=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.333 6.667V4.533c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.427-.218-.987-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h2.466M12 14s2-.953 2-2.383V9.949l-1.458-.522a1.6 1.6 0 0 0-1.084 0L10 9.95v1.668C10 13.047 12 14 12 14"})}),jx=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#personal-user_inline_svg__clip0_723_2266)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 14.545c.401.122.944.122 1.866.122h6.934c.922 0 1.465 0 1.866-.122m-10.666 0a1.5 1.5 0 0 1-.242-.096 2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h6.934c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v6.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874 1.5 1.5 0 0 1-.242.096m-10.666 0c0-.54.003-.825.05-1.065a2.67 2.67 0 0 1 2.096-2.095c.258-.052.567-.052 1.187-.052h4c.62 0 .93 0 1.187.052a2.67 2.67 0 0 1 2.095 2.095c.048.24.051.525.051 1.065m-2.666-8.212a2.667 2.667 0 1 1-5.334 0 2.667 2.667 0 0 1 5.334 0"})})}),jj=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.65,strokeWidth:1.4,d:"M11.667 8v-.007m3 2.54V5.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.285-.146-.659-.146-1.405-.146H3.467c-.747 0-1.12 0-1.405.146-.251.127-.455.331-.583.582-.146.286-.146.659-.146 1.406v5.066c0 .747 0 1.12.146 1.406.128.25.332.454.583.582.285.146.658.146 1.405.146h9.067c.746 0 1.12 0 1.405-.146.25-.128.455-.332.582-.582.146-.286.146-.659.146-1.406m-3-2.866a.333.333 0 1 1 0 .666.333.333 0 0 1 0-.666"})}),jw=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.65,strokeWidth:1.4,d:"M8 11.667h.007m-2.54 3h5.067c.746 0 1.12 0 1.405-.146.25-.128.455-.332.582-.582.146-.286.146-.659.146-1.406V3.467c0-.747 0-1.12-.146-1.406a1.33 1.33 0 0 0-.582-.582c-.285-.146-.659-.146-1.405-.146H5.467c-.747 0-1.12 0-1.405.146-.251.127-.455.331-.583.582-.146.286-.146.659-.146 1.406v9.066c0 .747 0 1.12.146 1.406.128.25.332.454.583.582.285.146.658.146 1.405.146m2.867-3a.333.333 0 1 1-.667 0 .333.333 0 0 1 .667 0"})}),jk=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#pie-chart_inline_svg__clip0_723_2280)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 1.333A6.667 6.667 0 0 1 14.667 8M8 1.333V8m0-6.667A6.667 6.667 0 1 0 14.667 8M8 1.333A6.667 6.667 0 0 1 14.667 8m0 0H8m6.667 0a6.67 6.67 0 0 1-2.748 5.393L8 8"})})}),jT=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M12.667 4.667c-1.134 0-2.134.533-2.8 1.466L7.4 9.8c-.6 1-1.6 1.533-2.733 1.533A3.3 3.3 0 0 1 1.333 8a3.3 3.3 0 0 1 3.334-3.333c1.133 0 2.133.533 2.8 1.466l.4.667.8-1.2-.134-.2C7.667 4.133 6.2 3.333 4.667 3.333A4.64 4.64 0 0 0 0 8c0 2.6 2.067 4.667 4.667 4.667 1.533 0 3-.8 3.866-2.067l.934-1.4.4.667c.6.933 1.666 1.466 2.8 1.466A3.3 3.3 0 0 0 16 8a3.3 3.3 0 0 0-3.333-3.333m0 5.333C12 10 11.4 9.667 11 9.133L10.267 8 11 6.933c.333-.6 1-.933 1.667-.933 1.133 0 2 .867 2 2s-.867 2-2 2"})}),jS=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M9.302 2.91c.653-.436.98-.654 1.336-.618.355.035.633.312 1.188.867l1.015 1.015c.555.555.832.832.867 1.188s-.182.683-.617 1.336l-.796 1.193-.165.25a8 8 0 0 0-1.137 2.892l-.127.636a.668.668 0 0 1-1.036.419A23.4 23.4 0 0 1 3.912 6.17a.668.668 0 0 1 .419-1.036l.636-.127.293-.06a8 8 0 0 0 2.6-1.077c.062-.04.124-.082.248-.165z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"m3.333 12.667 3-3"})]}),jC=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M5.333 2.974c0-.538.436-.974.974-.974h3.386c.538 0 .974.436.974.974 0 1.538.455 3.042 1.308 4.322l.933 1.399a.54.54 0 0 1-.319.824 18.9 18.9 0 0 1-9.178 0 .54.54 0 0 1-.319-.824l.933-1.399a7.8 7.8 0 0 0 1.308-4.322Z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M8 13.333v-2.666"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M4 13.333h8"})]}),jD=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.333v9.334M3.333 8h9.334"})}),jI=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8.714 5.333v5.334M6.048 8h5.333m-5.467 6h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C13.194 2 12.634 2 11.514 2h-5.6c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),jM=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 15 13",...e,children:(0,tq.jsx)("path",{fill:"currentColor",stroke:"currentColor",strokeWidth:.2,d:"M13.231 3.695a1.45 1.45 0 0 1 1.447 1.448v6.29a1.45 1.45 0 0 1-1.447 1.449H1.548A1.45 1.45 0 0 1 .1 11.434V5.143a1.447 1.447 0 0 1 1.448-1.448zM1.548 4.794a.35.35 0 0 0-.349.349v6.29a.35.35 0 0 0 .349.35H13.23a.35.35 0 0 0 .349-.35v-6.29a.35.35 0 0 0-.349-.35zm10.784-2.897a.55.55 0 0 1 0 1.1H2.447a.55.55 0 0 1 0-1.1zM10.535.101a.55.55 0 1 1 0 1.098H4.244a.55.55 0 0 1 0-1.098z"})}),jL=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M12.958 7.715c-.3.186-.664.346-1.067.481-1.075.359-2.533.572-4.133.572s-3.059-.213-4.133-.572a5 5 0 0 1-1.067-.48V9.32c0 .014.03.16.39.389.325.208.811.414 1.416.589a13.2 13.2 0 0 0 4.259.463.439.439 0 0 1 .053.876 14.1 14.1 0 0 1-4.557-.497c-.605-.176-1.147-.392-1.561-.64v1.589c0 .019.025.152.356.362.305.192.766.38 1.352.545 1.165.328 2.725.534 4.258.534a.439.439 0 1 1 0 .877c-1.6 0-3.242-.214-4.496-.566-.624-.176-1.176-.392-1.583-.65-.38-.24-.764-.601-.764-1.102V3.318c0-.451.275-.812.61-1.076.34-.268.805-.49 1.341-.669C4.708 1.214 6.167 1 7.758 1c1.59 0 3.05.214 4.126.573.535.179 1 .4 1.34.669.336.264.61.625.61 1.076v6.09a.439.439 0 0 1-.876 0zm-10.4-4.397c0-.068.04-.202.276-.387.23-.182.59-.364 1.076-.526.964-.321 2.325-.528 3.848-.528s2.883.206 3.848.528c.485.162.845.344 1.076.526.235.185.276.32.276.387 0 .068-.041.202-.276.387-.23.182-.591.364-1.076.526-.965.322-2.325.528-3.848.528S4.874 4.553 3.91 4.23c-.485-.162-.846-.344-1.076-.526-.235-.185-.276-.32-.276-.387m9.326 1.745a5.2 5.2 0 0 0 1.074-.483v1.87c0 .07-.042.204-.275.39-.228.18-.587.363-1.07.524-.962.321-2.323.527-3.855.527s-2.893-.206-3.855-.527c-.483-.161-.842-.344-1.07-.525-.234-.185-.275-.32-.275-.389V4.58c.302.187.668.347 1.074.483 1.076.359 2.535.573 4.126.573 1.59 0 3.05-.214 4.126-.573",clipRule:"evenodd"}),(0,tq.jsx)("path",{fill:"currentColor",d:"M11.14 9.989a.438.438 0 0 0-.844.046l-.145.658a.44.44 0 0 0 .334.523l.658.145a.438.438 0 0 0 .503-.587 1.586 1.586 0 0 1 1.686 2.151.439.439 0 0 0 .817.32 2.464 2.464 0 0 0-3.009-3.256M9.903 11.43a.44.44 0 0 1 .248.569 1.586 1.586 0 0 0 1.686 2.152.439.439 0 0 1 .503-.587l.659.144a.44.44 0 0 1 .333.523l-.145.658a.439.439 0 0 1-.844.046 2.464 2.464 0 0 1-3.009-3.256.44.44 0 0 1 .569-.249"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.3,d:"M12.958 7.715c-.3.186-.664.346-1.067.481-1.075.359-2.533.572-4.133.572s-3.059-.213-4.133-.572a5 5 0 0 1-1.067-.48V9.32c0 .014.03.16.39.389.325.208.811.414 1.416.589a13.2 13.2 0 0 0 4.259.463.439.439 0 0 1 .053.876 14.1 14.1 0 0 1-4.557-.497c-.605-.176-1.147-.392-1.561-.64v1.589c0 .019.025.152.356.362.305.192.766.38 1.352.545 1.165.328 2.725.534 4.258.534a.439.439 0 1 1 0 .877c-1.6 0-3.242-.214-4.496-.566-.624-.176-1.176-.392-1.583-.65-.38-.24-.764-.601-.764-1.102V3.318c0-.451.275-.812.61-1.076.34-.268.805-.49 1.341-.669C4.708 1.214 6.167 1 7.758 1c1.59 0 3.05.214 4.126.573.535.179 1 .4 1.34.669.336.264.61.625.61 1.076v6.09a.439.439 0 0 1-.876 0zm-10.4-4.397c0-.068.04-.202.276-.387.23-.182.59-.364 1.076-.526.964-.321 2.325-.528 3.848-.528s2.883.206 3.848.528c.485.162.845.344 1.076.526.235.185.276.32.276.387 0 .068-.041.202-.276.387-.23.182-.591.364-1.076.526-.965.322-2.325.528-3.848.528S4.874 4.553 3.91 4.23c-.485-.162-.846-.344-1.076-.526-.235-.185-.276-.32-.276-.387m9.326 1.745a5.2 5.2 0 0 0 1.074-.483v1.87c0 .07-.042.204-.275.39-.228.18-.587.363-1.07.524-.962.321-2.323.527-3.855.527s-2.893-.206-3.855-.527c-.483-.161-.842-.344-1.07-.525-.234-.185-.275-.32-.275-.389V4.58c.302.187.668.347 1.074.483 1.076.359 2.535.573 4.126.573 1.59 0 3.05-.214 4.126-.573",clipRule:"evenodd"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.3,d:"M11.14 9.989a.438.438 0 0 0-.844.046l-.145.658a.44.44 0 0 0 .334.523l.658.145a.438.438 0 0 0 .503-.587 1.586 1.586 0 0 1 1.686 2.151.439.439 0 0 0 .817.32 2.464 2.464 0 0 0-3.009-3.256M9.903 11.43a.44.44 0 0 1 .248.569 1.586 1.586 0 0 0 1.686 2.152.439.439 0 0 1 .503-.587l.659.144a.44.44 0 0 1 .333.523l-.145.658a.439.439 0 0 1-.844.046 2.464 2.464 0 0 1-3.009-3.256.44.44 0 0 1 .569-.249"})]}),jF=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",d:"M2.5 12.667c0 .46.373.833.833.833h9.334c.46 0 .833-.373.833-.833V3.333a.833.833 0 0 0-.833-.833h-2a.5.5 0 1 1 0-1h2c1.012 0 1.833.82 1.833 1.833v9.334c0 1.012-.82 1.833-1.833 1.833H3.333A1.833 1.833 0 0 1 1.5 12.667v-2a.5.5 0 1 1 1 0z"}),(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M4.51 1.866a.5.5 0 0 1 .933 0l.586 1.522c.149.388.196.5.26.59a1 1 0 0 0 .232.232c.09.064.202.111.59.26l1.522.586a.5.5 0 0 1 0 .933l-1.522.585c-.388.15-.5.196-.59.26a1 1 0 0 0-.233.233c-.063.09-.11.201-.26.59l-.585 1.521a.5.5 0 0 1-.933 0l-.585-1.522c-.15-.388-.196-.499-.26-.589a1 1 0 0 0-.233-.233c-.09-.064-.201-.11-.59-.26L1.321 5.99a.5.5 0 0 1 0-.933l1.521-.586c.389-.149.5-.196.59-.26a1 1 0 0 0 .233-.233c.064-.09.11-.2.26-.589zm.467 1.573-.139.36c-.12.314-.212.552-.358.758a2 2 0 0 1-.469.468c-.206.147-.444.238-.759.36l-.36.137.36.139c.315.12.553.212.76.358.18.13.339.288.468.469.146.205.237.444.358.759l.139.359.138-.36c.12-.314.212-.553.358-.758a2 2 0 0 1 .469-.469c.206-.146.444-.238.759-.358l.36-.139-.36-.138c-.315-.12-.553-.212-.759-.359a2 2 0 0 1-.469-.468c-.146-.206-.237-.444-.358-.759zM8.75 7.285a.5.5 0 0 1 .895 0l.39.78c.14.28.183.36.235.428a1 1 0 0 0 .18.18c.066.051.147.094.427.234l.78.39a.5.5 0 0 1 0 .894l-.78.39c-.28.14-.36.183-.428.234a1 1 0 0 0-.18.18c-.051.067-.094.148-.234.428l-.39.78a.5.5 0 0 1-.894 0l-.39-.78c-.14-.28-.183-.36-.234-.428a1 1 0 0 0-.18-.18c-.067-.051-.148-.094-.428-.234l-.78-.39a.5.5 0 0 1 0-.894l.78-.39c.28-.14.36-.183.428-.235a1 1 0 0 0 .18-.18c.051-.066.094-.147.234-.427zm.728 1.818a3 3 0 0 1-.28-.476c-.096.19-.175.34-.28.476a2 2 0 0 1-.36.361 3 3 0 0 1-.477.28c.19.095.341.175.476.28q.204.157.362.36c.104.136.183.286.28.477.095-.19.174-.341.279-.477q.157-.203.36-.36c.136-.105.287-.185.477-.28a3 3 0 0 1-.476-.28 2 2 0 0 1-.361-.36",clipRule:"evenodd"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.2,d:"M2.5 12.667c0 .46.373.833.833.833h9.334c.46 0 .833-.373.833-.833V3.333a.833.833 0 0 0-.833-.833h-2a.5.5 0 1 1 0-1h2c1.012 0 1.833.82 1.833 1.833v9.334c0 1.012-.82 1.833-1.833 1.833H3.333A1.833 1.833 0 0 1 1.5 12.667v-2a.5.5 0 1 1 1 0z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.2,d:"M4.51 1.866a.5.5 0 0 1 .933 0l.586 1.522c.149.388.196.5.26.59a1 1 0 0 0 .232.232c.09.064.202.111.59.26l1.522.586a.5.5 0 0 1 0 .933l-1.522.585c-.388.15-.5.196-.59.26a1 1 0 0 0-.233.233c-.063.09-.11.201-.26.59l-.585 1.521a.5.5 0 0 1-.933 0l-.585-1.522c-.15-.388-.196-.499-.26-.589a1 1 0 0 0-.233-.233c-.09-.064-.201-.11-.59-.26L1.321 5.99a.5.5 0 0 1 0-.933l1.521-.586c.389-.149.5-.196.59-.26a1 1 0 0 0 .233-.233c.064-.09.11-.2.26-.589zm.467 1.573-.139.36c-.12.314-.212.552-.358.758a2 2 0 0 1-.469.468c-.206.147-.444.238-.759.36l-.36.137.36.139c.315.12.553.212.76.358.18.13.339.288.468.469.146.205.237.444.358.759l.139.359.138-.36c.12-.314.212-.553.358-.758a2 2 0 0 1 .469-.469c.206-.146.444-.238.759-.358l.36-.139-.36-.138c-.315-.12-.553-.212-.759-.359a2 2 0 0 1-.469-.468c-.146-.206-.237-.444-.358-.759zM8.75 7.285a.5.5 0 0 1 .895 0l.39.78c.14.28.183.36.235.428a1 1 0 0 0 .18.18c.066.051.147.094.427.234l.78.39a.5.5 0 0 1 0 .894l-.78.39c-.28.14-.36.183-.428.234a1 1 0 0 0-.18.18c-.051.067-.094.148-.234.428l-.39.78a.5.5 0 0 1-.894 0l-.39-.78c-.14-.28-.183-.36-.234-.428a1 1 0 0 0-.18-.18c-.067-.051-.148-.094-.428-.234l-.78-.39a.5.5 0 0 1 0-.894l.78-.39c.28-.14.36-.183.428-.235a1 1 0 0 0 .18-.18c.051-.066.094-.147.234-.427zm.728 1.818a3 3 0 0 1-.28-.476c-.096.19-.175.34-.28.476a2 2 0 0 1-.36.361 3 3 0 0 1-.477.28c.19.095.341.175.476.28q.204.157.362.36c.104.136.183.286.28.477.095-.19.174-.341.279-.477q.157-.203.36-.36c.136-.105.287-.185.477-.28a3 3 0 0 1-.476-.28 2 2 0 0 1-.361-.36",clipRule:"evenodd"})]}),jE=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 10.667V14m0-3.333L12 14m-4-3.333L4 14M14 2v5.467c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 9.147 2 8.587 2 7.467V2m3.333 4v2M8 4.667V8m2.667-.667V8m4-6H1.333"})}),jP=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 14h2m2 0H8m0 0v-2m0 0h4a2 2 0 0 0 2-2V5.333a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2V10a2 2 0 0 0 2 2zm2.49-1.833h.677a1 1 0 0 0 1-1V8.5M5.51 5.167h-.677a1 1 0 0 0-1 1v.666"})}),jA=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10.347 8.487c.781 0 1.42.637 1.42 1.42l-.007.144a1.424 1.424 0 0 1-1.413 1.275c-.733 0-1.34-.56-1.413-1.275l-.007-.145c0-.782.638-1.419 1.42-1.419m0 1.206a.22.22 0 1 0 .22.22.215.215 0 0 0-.175-.215z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M9.656 5.39a.603.603 0 0 1 .848 0 .603.603 0 0 1 0 .847l-4.367 4.367a.6.6 0 0 1-.31.166l-.114.01a.6.6 0 0 1-.424-.176.6.6 0 0 1 0-.847z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.13 4.674c.715.073 1.276.68 1.276 1.413s-.56 1.34-1.275 1.412l-.145.007a1.42 1.42 0 0 1-1.419-1.42c0-.78.638-1.419 1.42-1.419zm-.144 1.199a.22.22 0 0 0-.215.176l-.004.045c0 .124.095.22.22.22.109 0 .195-.074.215-.175l.005-.045a.22.22 0 0 0-.22-.221",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 .733A7.273 7.273 0 0 1 15.267 8l-.01.373A7.274 7.274 0 0 1 8 15.267 7.274 7.274 0 0 1 .742 8.373L.733 8A7.273 7.273 0 0 1 8 .733m0 1.2A6.075 6.075 0 0 0 1.933 8 6.075 6.075 0 0 0 8 14.067 6.075 6.075 0 0 0 14.067 8a6.075 6.075 0 0 0-5.755-6.059z",clipRule:"evenodd"})]}),jN=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.89 1.91a.637.637 0 0 1 0 1.272c-.34 0-.559 0-.724.014a.6.6 0 0 0-.231.046.55.55 0 0 0-.24.238.6.6 0 0 0-.044.232 10 10 0 0 0-.015.725v.45a.635.635 0 0 1-.163 1.25c-.507 0-.849 0-1.112.022-.256.02-.382.058-.467.101a1.14 1.14 0 0 0-.498.497c-.043.085-.08.211-.1.467a15 15 0 0 0-.023 1.112v1.3c0 .59.005.761.038.885.105.392.412.699.805.804.059.015.128.024.248.03 0-.249.003-.47.018-.656a1.9 1.9 0 0 1 .18-.706c.174-.342.453-.62.795-.795.23-.117.47-.16.706-.18C5.293 9 5.571 9 5.891 9H9.2c.32 0 .598 0 .827.018.236.02.475.063.706.18.342.175.62.453.795.795.117.23.16.47.18.706.015.187.017.407.017.656.12-.006.19-.014.25-.03.391-.105.699-.412.804-.804.033-.124.038-.295.038-.885v-1.3a.637.637 0 0 1 1.273 0v1.3c0 .509.005.888-.083 1.215a2.41 2.41 0 0 1-1.702 1.703 2.7 2.7 0 0 1-.58.075c0 .255-.001.48-.017.672-.02.236-.062.476-.18.707a1.82 1.82 0 0 1-.795.794c-.23.118-.47.16-.706.18C9.798 15 9.52 15 9.2 15H5.89c-.32 0-.598 0-.827-.019a1.9 1.9 0 0 1-.706-.179 1.82 1.82 0 0 1-.795-.794 1.9 1.9 0 0 1-.18-.707 9 9 0 0 1-.018-.672 2.7 2.7 0 0 1-.579-.075 2.41 2.41 0 0 1-1.702-1.703C.995 10.524 1 10.145 1 9.636v-1.3c0-.485 0-.888.027-1.216.027-.335.086-.647.236-.94a2.4 2.4 0 0 1 1.053-1.054c.294-.15.606-.208.94-.236l.108-.007v-.446c0-.32 0-.6.018-.829.02-.236.062-.475.18-.706a1.82 1.82 0 0 1 .795-.795c.23-.118.47-.16.706-.18.23-.018.508-.018.828-.018m0 8.363c-.34 0-.559 0-.724.014a.6.6 0 0 0-.231.045.55.55 0 0 0-.24.238.6.6 0 0 0-.044.233 10 10 0 0 0-.015.724v.946c0 .34.001.559.015.724.012.158.034.21.045.233a.55.55 0 0 0 .239.238.6.6 0 0 0 .231.045c.165.013.383.014.725.014H9.2c.34 0 .559 0 .724-.014a.6.6 0 0 0 .231-.045.55.55 0 0 0 .24-.238.6.6 0 0 0 .044-.233c.014-.165.015-.383.015-.724v-.946c0-.341-.001-.56-.014-.724a.6.6 0 0 0-.046-.233.55.55 0 0 0-.239-.238.6.6 0 0 0-.231-.045 10 10 0 0 0-.725-.014z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M3.91 6.909a.637.637 0 1 1-.001 1.273.637.637 0 0 1 0-1.273M8.91 3.727c.35 0 .636.285.636.637v1.818a.637.637 0 0 1-1.273 0v-.273H7.09a.637.637 0 0 1 0-1.273h1.182v-.272c0-.352.285-.637.636-.637M14.364 4.636a.637.637 0 0 1 0 1.273h-3.637a.637.637 0 0 1 0-1.273zM12.545 1c.352 0 .637.285.637.637v.272h1.181a.637.637 0 0 1 0 1.273h-1.181v.273a.637.637 0 0 1-1.273 0V1.637c0-.352.285-.637.636-.637M10.727 1.91a.637.637 0 0 1 0 1.272H8A.637.637 0 0 1 8 1.91z"})]}),jR=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M4.667 6.667a.667.667 0 1 0 0 1.333.667.667 0 0 0 0-1.333m8-2.667H12V2a.667.667 0 0 0-.667-.667H4.667A.667.667 0 0 0 4 2v2h-.667a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2H4v2a.667.667 0 0 0 .667.667h6.666A.667.667 0 0 0 12 14v-2h.667a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2M5.333 2.667h5.334V4H5.333zm5.334 10.666H5.333v-2.666h5.334zM13.333 10a.667.667 0 0 1-.666.667H12V10a.667.667 0 0 0-.667-.667H4.667A.667.667 0 0 0 4 10v.667h-.667A.667.667 0 0 1 2.667 10V6a.667.667 0 0 1 .666-.667h9.334a.667.667 0 0 1 .666.667z"})}),jV=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M15 10.133 10.625 15V6.742L15 1.875zM9.258 6.25H1L5.867 1h8.258z"})}),jz=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M2.667 4h6m2-1.333V4m0 1.333V4m0 0h2.666M2.667 12h4m2-1.333V12m0 1.333V12m0 0h4.666M13.333 8h-6m-2 1.333V8m0-1.333V8m0 0H2.667"})}),jB=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M10.933 9.333C11 8.867 11 8.467 11 8s-.067-.867-.067-1.333H13.2c.133.4.2.866.2 1.333a4.3 4.3 0 0 1-.2 1.333m-3.467 3.734a9.5 9.5 0 0 0 .934-2.4H12.6c-.6 1.066-1.667 1.933-2.867 2.4m-.2-3.734H6.467C6.4 8.867 6.333 8.467 6.333 8s.067-.933.134-1.333H9.6c.067.4.133.866.133 1.333s-.133.867-.2 1.333m-1.533 4c-.533-.8-1-1.666-1.267-2.666h2.534C9 11.6 8.533 12.533 8 13.333m-2.667-8H3.4C4.067 4.2 5.067 3.4 6.267 2.933c-.4.8-.667 1.6-.934 2.4M3.4 10.667h1.933c.267.8.534 1.666.934 2.4-1.2-.467-2.267-1.334-2.867-2.4m-.533-1.334c-.134-.4-.2-.866-.2-1.333s.066-.933.2-1.333h2.266c-.066.466-.066.866-.066 1.333s.066.867.066 1.333M8 2.667c.533.8 1 1.666 1.267 2.666H6.733C7 4.4 7.467 3.467 8 2.667m4.6 2.666h-1.933c-.2-.8-.534-1.6-.934-2.4C10.933 3.4 12 4.2 12.6 5.333m-4.6-4c-3.667 0-6.667 3-6.667 6.667s3 6.667 6.667 6.667 6.667-3 6.667-6.667-3-6.667-6.667-6.667"})}),jO=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13.25 7.25c.84 0 1.5.688 1.5 1.512v3.81c0 .823-.66 1.511-1.5 1.511H2.667a1.42 1.42 0 0 1-1.417-1.416V8.762c0-.824.66-1.512 1.5-1.512zM2.751 8.754l-.001.008v3.821h10.497l.002-.004.001-.008v-3.81l-.001-.007-.002-.004h-.497V10a.75.75 0 0 1-1.5 0V8.75h-.5v.583l-.004.077a.75.75 0 0 1-1.492 0l-.004-.077V8.75h-.5V10a.75.75 0 0 1-1.5 0V8.75h-.5v.583l-.004.077a.75.75 0 0 1-1.492 0l-.004-.077V8.75h-.5V10a.75.75 0 0 1-1.5 0V8.75h-.497z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M14 1.25a.75.75 0 0 1 .75.75v2.667l-.004.076a.75.75 0 0 1-1.492 0l-.004-.076v-.584H2.75v.584l-.004.076a.75.75 0 0 1-1.492 0l-.004-.076V2a.75.75 0 0 1 1.5 0v.583h10.5V2a.75.75 0 0 1 .75-.75"})]}),jK=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13.25 4.583c.84 0 1.5.688 1.5 1.512v3.81c0 .823-.66 1.511-1.5 1.511H2.667A1.417 1.417 0 0 1 1.25 10V6.095c0-.824.66-1.512 1.5-1.512zM2.751 6.087l-.001.008v3.821h10.497l.002-.004.001-.008v-3.81l-.001-.007-.002-.004h-.497v1.25a.75.75 0 0 1-1.5 0v-1.25h-.5v.583l-.004.077a.75.75 0 0 1-1.492 0l-.004-.077v-.583h-.5v1.25a.75.75 0 0 1-1.5 0v-1.25h-.5v.583l-.004.077a.75.75 0 0 1-1.492 0l-.004-.077v-.583h-.5v1.25a.75.75 0 0 1-1.5 0v-1.25h-.497z",clipRule:"evenodd"})}),j_=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M8 1.333a6.667 6.667 0 1 0 0 13.334A6.667 6.667 0 0 0 8 1.333M8 12a.667.667 0 1 1 0-1.334A.667.667 0 0 1 8 12m.667-3.44v.773a.667.667 0 0 1-1.334 0V8A.667.667 0 0 1 8 7.333a1 1 0 1 0-1-1 .667.667 0 1 1-1.333 0 2.333 2.333 0 1 1 3 2.227"})}),jH=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2 6h12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),j$=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12 10 2 2m0 0-2 2m2-2h-1.62c-.627 0-.94 0-1.224-.086a2 2 0 0 1-.689-.369c-.23-.188-.403-.449-.75-.97l-.161-.242M12 2l2 2m0 0-2 2m2-2h-1.62c-.627 0-.94 0-1.224.086a2 2 0 0 0-.689.369c-.23.188-.403.449-.75.97l-3.434 5.15c-.347.521-.52.782-.75.97a2 2 0 0 1-.689.369C4.56 12 4.247 12 3.621 12H2m0-8h1.62c.627 0 .94 0 1.224.086a2 2 0 0 1 .689.369c.23.188.403.449.75.97l.161.242"})}),jW=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M11.333 12.583A5.667 5.667 0 0 0 8 2.333h-.333M8 13.667a5.667 5.667 0 0 1-3.333-10.25m2.666 11.516L8.667 13.6l-1.334-1.333m1.334-8.534L7.333 2.4l1.334-1.333"})}),jq=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#region_inline_svg__clip0_1905_3408)",children:[(0,tq.jsx)("path",{d:"M14.743 13.92a.75.75 0 0 1 0 1.493l-.077.004H9.333a.75.75 0 0 1 0-1.5h5.333z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6 8.583c.782 0 1.416.635 1.416 1.417v4c0 .782-.634 1.416-1.416 1.416H2A1.417 1.417 0 0 1 .583 14v-4c0-.782.635-1.417 1.417-1.417zm-3.917 5.333h3.833v-3.833H2.083z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M14.743 11.254a.75.75 0 0 1 0 1.492l-.076.004H12a.75.75 0 0 1 0-1.5h2.667zM14.743 8.587a.75.75 0 0 1 0 1.492l-.077.004H9.333a.75.75 0 0 1 0-1.5h5.333z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6 .583c.782 0 1.416.635 1.416 1.417v4c0 .782-.634 1.416-1.416 1.416H2A1.417 1.417 0 0 1 .583 6V2C.583 1.218 1.218.583 2 .583zM2.083 5.916h3.833V2.083H2.083zM14 .583c.782 0 1.416.635 1.416 1.417v4c0 .782-.634 1.416-1.416 1.416h-4A1.417 1.417 0 0 1 8.583 6V2c0-.782.635-1.417 1.417-1.417zm-3.917 5.333h3.833V2.083h-3.833z",clipRule:"evenodd"})]})}),jG=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M11.333 13.333H11.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C8 11.813 8 11.253 8 10.133V5.867c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h.133m0 10.666a1.333 1.333 0 1 0 2.667 0 1.333 1.333 0 0 0-2.667 0m0-10.666a1.333 1.333 0 1 0 2.667 0 1.333 1.333 0 0 0-2.667 0M4.667 8h6.666M4.667 8A1.333 1.333 0 1 1 2 8a1.333 1.333 0 0 1 2.667 0m6.666 0A1.333 1.333 0 1 0 14 8a1.333 1.333 0 0 0-2.667 0"})}),jU=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M1.586 1.586a2 2 0 1 0 2.828 2.828M1.586 1.586a2 2 0 1 1 2.828 2.828M1.586 1.586 3 3l1.414 1.414"}),(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.004.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.973 1.298.012.015c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.012-.015.973-1.298c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.891.021-.303.021-.672.021-1.118V5.17c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.153-.329.347-.49.562l-.034.046L8 13.5l-.84-1.12-.034-.046c-.161-.215-.306-.409-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451C2.7 9.797 2.7 9.476 2.7 9z",clipRule:"evenodd"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10.071 9.38h.3c.288 0 .432 0 .511-.056A.27.27 0 0 0 11 9.12c.006-.093-.074-.205-.234-.43l-.893-1.254c-.132-.185-.198-.278-.282-.31a.32.32 0 0 0-.227 0c-.083.032-.15.125-.281.31l-.221.31m1.21 1.636H5.635c-.293 0-.44 0-.52-.058A.27.27 0 0 1 5 9.116c-.005-.094.079-.207.246-.433L7.01 6.297c.131-.177.197-.266.279-.297a.32.32 0 0 1 .223 0c.082.031.148.12.279.297l1.14 1.542zm1.658-4.548c0 .46-.398.834-.89.834s-.89-.373-.89-.834.398-.833.89-.833.89.373.89.833"})]}),jQ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 6c0 1.133-.867 2-2 2s-2-.867-2-2 .867-2 2-2 2 .867 2 2M5.333 6c0 .4.267.667.667.667S6.667 6.4 6.667 6 6.4 5.333 6 5.333 5.333 5.6 5.333 6",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M1.333 6C1.333 3.4 3.4 1.333 6 1.333S10.667 3.4 10.667 6C10.667 9.467 6 14.667 6 14.667S1.333 9.533 1.333 6m8 0A3.3 3.3 0 0 0 6 2.667 3.3 3.3 0 0 0 2.667 6c0 1.933 1.933 4.8 3.333 6.6 1.533-2 3.333-4.867 3.333-6.6",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M10.056 11.3a.7.7 0 1 0 0 1.4h3.889a.7.7 0 1 0 0-1.4z"})]}),jJ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M1.09 1.09a2.7 2.7 0 1 1 3.818 3.818 2.7 2.7 0 0 1-3.817-3.817m1.63.64 1.55 1.55q.03-.135.03-.28a1.3 1.3 0 0 0-1.58-1.27m.56 2.54L1.73 2.72q-.03.135-.03.28a1.3 1.3 0 0 0 1.58 1.27",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.005.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.985-1.313c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.89.021-.304.021-.673.021-1.12V5.172c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.154-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.408-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8.528 4.34a1.5 1.5 0 0 1 .419.174c.15.091.272.214.373.316l.027.026.797.798.026.026c.102.101.225.224.316.373a1.4 1.4 0 0 1 .174.42c.04.17.04.343.04.486v1.864c0 .19 0 .373-.012.527a1.5 1.5 0 0 1-.146.558 1.45 1.45 0 0 1-.634.634c-.195.1-.39.132-.558.145-.154.013-.337.013-.527.013H7.177c-.19 0-.373 0-.527-.013a1.5 1.5 0 0 1-.558-.145 1.45 1.45 0 0 1-.634-.634c-.1-.195-.132-.39-.145-.558-.013-.154-.013-.337-.013-.527V6.177c0-.19 0-.373.013-.527.013-.168.046-.363.145-.558a1.45 1.45 0 0 1 .634-.634c.195-.1.39-.132.558-.145.154-.013.337-.013.527-.013h.864c.143 0 .317 0 .487.04m.767 2.45.002.001-.004-.006zM9.3 8.8V7.2h-.413c-.058 0-.137 0-.208-.006a1 1 0 0 1-.36-.098.95.95 0 0 1-.415-.415 1 1 0 0 1-.098-.36C7.8 6.25 7.8 6.171 7.8 6.113V5.7h-.6c-.222 0-.346 0-.436.008l-.048.005-.003.003-.005.048A6 6 0 0 0 6.7 6.2v2.6c0 .222 0 .346.008.436l.005.048.003.003.048.005c.09.007.214.008.436.008h1.6c.222 0 .346 0 .436-.008l.048-.005.003-.003.005-.048c.008-.09.008-.214.008-.436",clipRule:"evenodd"})]}),jZ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M1.09 1.09a2.7 2.7 0 1 1 3.818 3.818 2.7 2.7 0 0 1-3.817-3.817m1.63.64 1.55 1.55q.03-.135.03-.28a1.3 1.3 0 0 0-1.58-1.27m.56 2.54L1.73 2.72q-.03.135-.03.28a1.3 1.3 0 0 0 1.58 1.27",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M2.7 5.985a3 3 0 0 1-1.4-.513v3.552c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.005.479.017a.6.6 0 0 1 .26.13c.042.035.085.086.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287.069-.076.14-.171.202-.254l.985-1.313c.216-.287.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.89.021-.304.021-.673.021-1.12V5.172c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03H5.472c.28.406.462.884.513 1.4H10.8c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.154-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.408-.49-.562a2 2 0 0 0-.836-.418c-.232-.054-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.42 5.25c-.235 0-.443 0-.615.01-.18.01-.375.034-.57.105a1.57 1.57 0 0 0-.747.55c-.15.21-.2.427-.22.606a4 4 0 0 0-.018.48v.997c0 .156 0 .33.017.48.02.18.071.398.22.607.192.268.467.447.748.55.195.07.39.094.57.105.172.01.38.01.615.01h1.66c.235 0 .443 0 .615-.01.18-.01.375-.034.57-.105a1.57 1.57 0 0 0 .747-.55q.075-.106.12-.212l.034.025c.053.037.124.088.19.128a.932.932 0 0 0 1.088-.068.85.85 0 0 0 .296-.558c.01-.086.01-.18.01-.23V6.83c0-.049 0-.143-.01-.229a.85.85 0 0 0-.295-.558.93.93 0 0 0-1.088-.068c-.066.04-.138.09-.19.128l-.035.025a1 1 0 0 0-.12-.212 1.57 1.57 0 0 0-.747-.55 2 2 0 0 0-.57-.105c-.172-.01-.38-.01-.615-.01zm2.33 1.779v.942l-.001.222-.001.033a1 1 0 0 1-.14.017c-.124.007-.287.007-.548.007H6.44c-.26 0-.424 0-.547-.007a1 1 0 0 1-.14-.017l-.002-.033-.001-.222V7.03l.001-.222.001-.033a1 1 0 0 1 .14-.017c.124-.007.287-.007.548-.007h1.62c.26 0 .424 0 .547.007a1 1 0 0 1 .14.017l.002.033z",clipRule:"evenodd"})]}),jY=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M5.333 4.667h5.334M8 4.667v6.666M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),jX=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",d:"M4.667 9.667v2zM7.667 7.667v4zM10.667 5.667v6zM13.667 3.667v8z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 14H4.133c-.746 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583C2 12.987 2 12.613 2 11.867V2m2.667 7.667v2m3-4v4m3-6v6m3-8v8"})]}),j0=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14.714 13.333h-2.266c-2.24 0-3.36 0-4.216-.436a4 4 0 0 1-1.748-1.748c-.436-.855-.436-1.975-.436-4.216V2.667m0 0L9.38 6M6.048 2.667 2.714 6"})}),j1=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#requires_inline_svg__clip0_723_2293)",children:[(0,tq.jsx)("path",{d:"M6 10.667a4.667 4.667 0 1 0 0-9.334 4.667 4.667 0 0 0 0 9.334"}),(0,tq.jsx)("path",{d:"M10 14.667a4.667 4.667 0 1 0 0-9.334 4.667 4.667 0 0 0 0 9.334"})]})}),j2=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M5.333 10H2m0 0V6.667M2 10l2-2c3.333-3.333 8-2.167 10 1"})}),j3=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#reverse-object-relation_inline_svg__clip0_1905_2471)",children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.5 7.9a.58.58 0 0 1 .427.192.67.67 0 0 1 .173.453v2.182c0 .457-.167.897-.466 1.223a1.54 1.54 0 0 1-1.134.512H6.932l.495.535a.68.68 0 0 1 .174.455c0 .17-.062.333-.174.455a.58.58 0 0 1-.429.193.58.58 0 0 1-.429-.193l-1.5-1.636-.002-.002a.69.69 0 0 1-.123-.692.7.7 0 0 1 .123-.214h.002l1.5-1.636.091-.082a.565.565 0 0 1 .766.082v-.001q.085.091.13.21a.7.7 0 0 1 0 .49.7.7 0 0 1-.13.21l-.494.536H11.5a.38.38 0 0 0 .28-.128.47.47 0 0 0 .12-.317V8.545c0-.168.06-.332.172-.453A.58.58 0 0 1 12.5 7.9M5 11.817q0 .107.037.207l-.027-.102a1 1 0 0 1-.01-.105",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M10.42 1c.32 0 .58.28.58.625v1.75c0 .345-.26.625-.58.625H8.797c-.32 0-.58-.28-.58-.625v-.03L6.17 5.009l2.048 1.885v-.268c0-.345.259-.625.579-.625h1.623c.32 0 .58.28.58.625v1.75c0 .345-.26.625-.58.625H8.797c-.32 0-.58-.28-.58-.625v-.331L5.783 5.802v.073c0 .345-.259.625-.579.625H3.58c-.32 0-.58-.28-.58-.625v-1.75c0-.345.26-.625.58-.625h1.623c.32 0 .58.28.58.625v.102L8.217 2.25v-.625c0-.345.259-.625.579-.625z"})]})}),j6=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6.714 9.333 3.381 6m0 0 3.333-3.333M3.381 6h4.267c2.24 0 3.36 0 4.216.436a4 4 0 0 1 1.748 1.748c.436.856.436 1.976.436 4.216v.933"})}),j4=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 18 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.4,d:"M16.542 8H8.115m-3.55 2.78H2.942m1.623-2.682H1.342m3.223-2.682H2.942m4.471-2.352 8.837 4.285a.724.724 0 0 1 0 1.302l-8.837 4.285c-.605.294-1.249-.325-.979-.942l1.62-3.704a.72.72 0 0 0 0-.58l-1.62-3.704c-.27-.617.374-1.236.98-.942Z"})}),j5=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M4.667 2v2.267c0 .373 0 .56.072.702a.67.67 0 0 0 .292.292c.142.072.329.072.702.072h4.534c.373 0 .56 0 .702-.072a.67.67 0 0 0 .292-.292c.072-.142.072-.329.072-.702v-1.6m0 11.333V9.733c0-.373 0-.56-.072-.702a.67.67 0 0 0-.292-.292c-.142-.072-.329-.072-.702-.072H5.733c-.373 0-.56 0-.702.072a.67.67 0 0 0-.292.292c-.072.142-.072.329-.072.702V14M14 6.217V10.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2h4.583c.326 0 .49 0 .643.037q.205.05.385.16c.135.082.25.197.48.428l2.084 2.084c.23.23.346.345.428.48q.11.181.16.385c.037.154.037.317.037.643"})}),j7=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 6.667H2m8.667-5.334V4M5.333 1.333V4M6 10.667 7.333 12l3-3M5.2 14.667h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-5.6c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 4.187 2 4.747 2 5.867v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),j8=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m14 14-4-4m1.333-3.333a4.667 4.667 0 1 1-9.333 0 4.667 4.667 0 0 1 9.333 0"})}),j9=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#segment-tagging_inline_svg__clip0_723_2317)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M10.667 3.333 12 4.667 14.667 2m0 6v3.467c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H4.533c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218H8M1.43 13.284A2.67 2.67 0 0 1 4 11.334h4.667c.619 0 .929 0 1.186.05a2.67 2.67 0 0 1 2.096 2.096c.05.257.05.567.05 1.187M9.334 6.333a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})})}),we=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M9.47 6.803a.75.75 0 0 1 1.06 1.06l-2 2a.75.75 0 0 1-1.06 0l-2-2a.75.75 0 0 1 1.06-1.06L8 8.273z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.667 1.25a2.083 2.083 0 0 1 2.083 2.083v9.334a2.083 2.083 0 0 1-2.083 2.083H3.333a2.083 2.083 0 0 1-2.083-2.083V3.333A2.083 2.083 0 0 1 3.333 1.25zm-9.334 1.5a.583.583 0 0 0-.583.583v9.334a.583.583 0 0 0 .583.583h9.334a.583.583 0 0 0 .583-.583V3.333a.583.583 0 0 0-.583-.583z",clipRule:"evenodd"})]}),wt=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 24 24",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:2,d:"M10.5 12H5m-.084.291L2.58 19.267c-.184.548-.275.822-.21.99a.5.5 0 0 0 .332.3c.174.05.438-.07.965-.306l16.711-7.52c.515-.232.772-.348.851-.508a.5.5 0 0 0 0-.444c-.08-.16-.336-.276-.85-.508L3.661 3.749c-.525-.237-.788-.355-.962-.306a.5.5 0 0 0-.332.299c-.066.168.025.442.206.988l2.342 7.057c.032.094.047.14.053.188a.5.5 0 0 1 0 .129c-.006.048-.022.095-.053.188"})}),wi=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.2,d:"M14.123 2.667H1.878c-.301 0-.545.243-.545.544v9.578c0 .3.244.544.545.544h12.245c.3 0 .544-.243.544-.544V3.211c0-.3-.244-.544-.544-.544Z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.2,d:"M5.333 6.316c-.666-.983-1.834-.337-1.75.674C3.667 8 5 8 5.083 9.01c.084 1.01-1.083 1.657-1.75.674M8.667 6H7.333v4.333h1.334M7.333 8.333h1.334M12.667 7a1 1 0 0 0-2 0v2.333a1 1 0 1 0 2 0z"})]}),wn=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 3.53c.186 0 .364.073.495.204l.9.9h1.271a.7.7 0 0 1 .7.7v1.271l.9.9a.7.7 0 0 1 0 .99l-.9.9v1.272a.7.7 0 0 1-.7.7H9.395l-.9.9a.7.7 0 0 1-.99 0l-.9-.9H5.333a.7.7 0 0 1-.7-.7V9.395l-.9-.9a.7.7 0 0 1 0-.99l.9-.9V5.334a.7.7 0 0 1 .7-.7h1.272l.9-.9.106-.088A.7.7 0 0 1 8 3.53m-.61 2.3a.7.7 0 0 1-.494.203h-.863v.863a.7.7 0 0 1-.205.495L5.218 8l.61.61a.7.7 0 0 1 .205.494v.863h.863l.136.013a.7.7 0 0 1 .358.192l.609.61.61-.61.107-.087a.7.7 0 0 1 .388-.118h.863v-.863a.7.7 0 0 1 .204-.494l.61-.61-.61-.61a.7.7 0 0 1-.204-.494v-.863h-.863a.7.7 0 0 1-.495-.204L8 5.22z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.666 1.967a2.7 2.7 0 0 1 2.7 2.7v6.667a2.7 2.7 0 0 1-2.7 2.7H3.333a2.7 2.7 0 0 1-2.7-2.7V4.667a2.7 2.7 0 0 1 2.7-2.7zm-9.333 1.4a1.3 1.3 0 0 0-1.3 1.3v6.667a1.3 1.3 0 0 0 1.3 1.3h9.333c.718 0 1.3-.582 1.3-1.3V4.667a1.3 1.3 0 0 0-1.3-1.3z",clipRule:"evenodd"})]}),wr=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,clipPath:"url(#settings_inline_svg__clip0_723_2314)",children:[(0,tq.jsx)("path",{d:"M8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4"}),(0,tq.jsx)("path",{d:"M12.485 9.818a1 1 0 0 0 .2 1.103l.036.037a1.212 1.212 0 1 1-1.715 1.715l-.036-.037a1 1 0 0 0-1.103-.2 1 1 0 0 0-.606.915v.104a1.212 1.212 0 0 1-2.425 0V13.4a1 1 0 0 0-.654-.915 1 1 0 0 0-1.103.2l-.037.036a1.212 1.212 0 1 1-1.715-1.715l.037-.036a1 1 0 0 0 .2-1.103 1 1 0 0 0-.916-.606h-.103a1.212 1.212 0 0 1 0-2.425H2.6a1 1 0 0 0 .915-.654 1 1 0 0 0-.2-1.103l-.036-.037a1.212 1.212 0 1 1 1.715-1.715l.036.037a1 1 0 0 0 1.103.2h.049a1 1 0 0 0 .606-.916v-.103a1.212 1.212 0 0 1 2.424 0V2.6a1 1 0 0 0 .606.915 1 1 0 0 0 1.103-.2l.037-.036a1.21 1.21 0 0 1 1.978.393 1.21 1.21 0 0 1-.263 1.322l-.037.036a1 1 0 0 0-.2 1.103v.049a1 1 0 0 0 .915.606h.103a1.212 1.212 0 1 1 0 2.424H13.4a1 1 0 0 0-.915.606"})]})}),wa=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 14 2-2m0 0-2-2m2 2h-4m-.334-9.806a2.668 2.668 0 0 1 0 4.945M8 10H5.333c-1.242 0-1.863 0-2.353.203-.654.27-1.173.79-1.444 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),wl=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M12.25 5.25v-3.5m0 0h-3.5m3.5 0L7 7M5.833 1.75H4.55c-.98 0-1.47 0-1.844.19a1.75 1.75 0 0 0-.765.766c-.191.374-.191.864-.191 1.844v4.9c0 .98 0 1.47.19 1.845.169.329.436.597.766.764.374.191.864.191 1.844.191h4.9c.98 0 1.47 0 1.845-.19a1.75 1.75 0 0 0 .764-.766c.191-.374.191-.864.191-1.844V8.167"})}),wo=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m12.667 14-2-2m0 0 2-2m-2 2h4m-4.334-9.806a2.668 2.668 0 0 1 0 4.945M8 10H5.333c-1.242 0-1.863 0-2.353.203-.654.27-1.173.79-1.444 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),ws=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 9.667v-4m-2 2h4M13.333 8c0 3.273-3.569 5.653-4.868 6.41-.147.086-.221.13-.325.152a.8.8 0 0 1-.28 0c-.104-.023-.178-.066-.325-.152-1.299-.758-4.868-3.137-4.868-6.41V4.812c0-.533 0-.8.087-1.029.077-.202.202-.383.364-.526.184-.162.434-.255.933-.443l3.574-1.34c.14-.052.208-.078.28-.088a.7.7 0 0 1 .19 0c.072.01.14.036.28.088l3.574 1.34c.5.188.749.281.933.443.162.143.287.324.364.526.087.23.087.496.087 1.029z"})}),wd=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M7.535 14.41c.147.086.221.13.325.151.081.018.199.018.28 0 .104-.022.178-.065.325-.151 1.299-.758 4.868-3.138 4.868-6.41V5.467c0-.716 0-1.074-.11-1.328a1.16 1.16 0 0 0-.454-.558c-.226-.16-.67-.252-1.557-.437a5.7 5.7 0 0 1-2.416-1.102c-.329-.254-.494-.382-.622-.417a.56.56 0 0 0-.348 0c-.128.035-.293.163-.622.417a5.7 5.7 0 0 1-2.416 1.102c-.887.185-1.33.277-1.557.437-.23.162-.342.3-.454.558-.11.254-.11.612-.11 1.328V8c0 3.272 3.569 5.652 4.868 6.41"})}),wc=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M9.333 6.667 14 2m0 0h-4m4 0v4M6.667 9.333 2 14m0 0h4m-4 0v-4"})}),wf=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#simple-rest-service_inline_svg__clip0_1579_7667)",children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 .633a7.367 7.367 0 1 1-.002 14.734A7.367 7.367 0 0 1 8 .633m0 10.734q-.795.002-1.53.197.132.484.294.89c.221.554.469.955.707 1.207.236.25.415.306.529.306s.293-.056.53-.306c.237-.252.484-.653.705-1.207q.162-.406.293-.89c-.487-.128-1-.197-1.528-.197m-2.839.715a6 6 0 0 0-.877.584 6 6 0 0 0 1.42.842 7 7 0 0 1-.24-.534 9 9 0 0 1-.303-.892m5.676 0q-.134.475-.302.892a7 7 0 0 1-.24.534c.515-.215.992-.5 1.42-.842a6 6 0 0 0-.878-.584M2.077 8.7a5.94 5.94 0 0 0 1.217 2.966 7.4 7.4 0 0 1 1.553-.992 16 16 0 0 1-.2-1.974zm9.276 0a16 16 0 0 1-.2 1.975c.56.265 1.08.6 1.552.991a5.93 5.93 0 0 0 1.22-2.966zm-5.303 0c.022.521.072 1.02.14 1.49A7.4 7.4 0 0 1 8 9.967c.624 0 1.23.077 1.81.223.068-.47.118-.969.141-1.49zM3.294 4.334A5.94 5.94 0 0 0 2.076 7.3h2.571c.028-.69.096-1.353.2-1.977a7.4 7.4 0 0 1-1.553-.989M6.19 5.807q-.105.707-.141 1.493H9.95a15 15 0 0 0-.142-1.492 7.4 7.4 0 0 1-3.618-.001m6.514-1.474a7.4 7.4 0 0 1-1.553.991c.104.623.173 1.287.2 1.976h2.573a5.93 5.93 0 0 0-1.22-2.967M8 2.033c-.114 0-.293.055-.53.305-.237.252-.485.654-.706 1.208q-.162.406-.293.888a6 6 0 0 0 3.057 0 8 8 0 0 0-.293-.888c-.221-.554-.468-.957-.706-1.208-.236-.25-.415-.305-.529-.305m2.296.46a7 7 0 0 1 .24.532q.165.418.3.891.468-.253.88-.583a6 6 0 0 0-1.42-.84M5.703 2.49c-.514.215-.99.5-1.419.843q.412.329.878.581.135-.474.302-.89.111-.277.24-.534",clipRule:"evenodd"})})}),wu=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M10.034 6H3.667a1.667 1.667 0 1 1 0-3.333h6.367M5.966 13.333h6.367a1.667 1.667 0 1 0 0-3.333H5.966M2 11.667a2.333 2.333 0 1 0 4.667 0 2.333 2.333 0 0 0-4.667 0m12-7.334a2.333 2.333 0 1 1-4.667 0 2.333 2.333 0 0 1 4.667 0"})}),wm=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 17 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.5 2H6.3c-.747 0-1.12 0-1.405.145-.251.128-.455.332-.583.583-.145.285-.145.659-.145 1.405v7.734c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.284.145.658.145 1.403.145h5.07c.746 0 1.119 0 1.404-.145.25-.128.455-.332.583-.583.145-.285.145-.658.145-1.403V6m-4-4c.19.002.31.01.426.037q.205.05.385.16c.135.082.25.198.48.428l2.084 2.084c.23.23.346.345.428.48q.11.181.16.385c.028.115.035.236.036.426M9.5 2v1.867c0 .746 0 1.12.145 1.405.128.25.332.455.583.583.285.145.658.145 1.403.145H13.5m0 0h.001m-3.333 2.667L11.5 10l-1.333 1.333m-2.667 0L6.167 10 7.5 8.667"})}),wp=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 14 14",...e,children:[(0,tq.jsx)("circle",{cx:2.8,cy:2.8,r:2.8,opacity:.5}),(0,tq.jsx)("circle",{cx:2.8,cy:11.2,r:2.8}),(0,tq.jsx)("circle",{cx:11.2,cy:2.8,r:2.8,opacity:.3}),(0,tq.jsx)("circle",{cx:11.2,cy:11.2,r:2.8,opacity:.6})]}),wg=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.3,d:"M2 5V2.3c0-.166.14-.3.313-.3h4.374C6.86 2 7 2.134 7 2.3v11.4c0 .166-.14.3-.312.3H2.313A.306.306 0 0 1 2 13.7V11M14 11v2.7c0 .166-.14.3-.312.3H9.311A.306.306 0 0 1 9 13.7V2.3c0-.166.14-.3.313-.3h4.374c.173 0 .313.134.313.3V5M9 8h5M2 8h5"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"m12 10 .667-.667L14 8l-1.333-1.333L12 6M4 10l-.667-.667L2 8l1.333-1.333L4 6"})]}),wh=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.917 4.98V13A1.917 1.917 0 0 1 11 14.916H4.334A1.917 1.917 0 0 1 2.417 13V3a1.92 1.92 0 0 1 1.917-1.917h4.687zM3.75 13a.584.584 0 0 0 .584.583h.583v-1.167H3.75zm2.5.583H11a.586.586 0 0 0 .584-.583v-.584H6.25zm-2.5-2.5h1.167V9.916H3.75zm2.5 0h5.334V9.916H6.25zM4.334 2.416A.586.586 0 0 0 3.75 3v5.583h7.834v-3.25h-1.417a1.5 1.5 0 0 1-1.5-1.5V2.416z",clipRule:"evenodd"})}),wy=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#style_inline_svg__clip0_723_2279)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"m8.667 9.333-2-2m3.34-5v-1m2.626 2.04.707-.706m-.707 6 .707.707m-6-6-.707-.707M13.673 6h1M4.089 13.912l6.158-6.158c.264-.264.396-.396.445-.548a.67.67 0 0 0 0-.412c-.05-.152-.181-.284-.445-.548l-.492-.492c-.264-.264-.396-.396-.548-.445a.67.67 0 0 0-.412 0c-.152.05-.284.181-.548.445l-6.158 6.158c-.264.264-.396.396-.446.549a.67.67 0 0 0 0 .412c.05.152.182.284.446.548l.491.491c.264.264.396.396.548.446a.67.67 0 0 0 .412 0c.153-.05.285-.182.549-.446"})})}),wv=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.914 1.576 3.555 3.14a2.69 2.69 0 0 0-1.55 2.578c.24 4.349 1.456 6.263 4.613 8.503a2.38 2.38 0 0 0 2.775 0c3.167-2.252 4.34-4.193 4.602-8.487a2.7 2.7 0 0 0-1.552-2.6L9.097 1.576a2.58 2.58 0 0 0-2.183 0m.42 9.757a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.334 0m.166-2a.5.5 0 0 0 1 0V4.667a.5.5 0 1 0-1 0z",clipRule:"evenodd"})}),wb=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"m3.555 3.14 3.359-1.564a2.58 2.58 0 0 1 2.183 0l3.346 1.558a2.7 2.7 0 0 1 1.552 2.6c-.263 4.294-1.435 6.235-4.602 8.488a2.38 2.38 0 0 1-2.775-.001c-3.157-2.24-4.372-4.154-4.614-8.503A2.69 2.69 0 0 1 3.555 3.14m6.821 3.856a.5.5 0 0 0-.752-.659L7.71 8.524a.167.167 0 0 1-.23.02L6.313 7.61a.5.5 0 0 0-.624.78l1.168.935c.854.767.854.567 1.607-.142z",clipRule:"evenodd"})}),wx=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M7.674 9.81c.387 0 .7.316.7.707v3.775c0 .39-.313.708-.7.708a.704.704 0 0 1-.7-.708v-3.775c0-.39.314-.708.7-.708M2.7 2.888c.386 0 .699.317.7.707v8.809c0 .39-.314.707-.7.707a.704.704 0 0 1-.7-.707V3.595c0-.39.313-.707.7-.707M11.239 5.93a.694.694 0 0 1 .99-.001l1.565 1.577a.715.715 0 0 1 .005 1l-1.567 1.603a.694.694 0 0 1-.99.006.714.714 0 0 1-.005-1l.396-.407H5.187a.704.704 0 0 1-.7-.708c0-.39.313-.708.7-.708h6.412l-.358-.36a.714.714 0 0 1-.002-1.001M7.674 1c.387 0 .7.317.7.708v3.775c0 .39-.313.708-.7.708a.704.704 0 0 1-.7-.708V1.708c0-.39.314-.708.7-.708"})}),wj=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{d:"M13.262 2H2.667C1.93 2 1.333 2.6 1.333 3.335v9.333c0 .736.598 1.334 1.334 1.334h10.595c.735 0 1.333-.598 1.333-1.334V3.333a1.335 1.335 0 0 0-1.333-1.332M5.333 12.668H2.667V5.333h2.666zm4 0H6.667V5.333h2.666zm1.334 0V5.333h2.595v7.334z"})}),ww=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M1.665 8.919c.368 0 .666.298.666.665v3.484c0 .332.269.601.6.601h3.802c.332 0 .601-.269.602-.6a.666.666 0 0 1 1.33 0A1.93 1.93 0 0 1 6.732 15H2.932A1.933 1.933 0 0 1 1 13.068V9.584c0-.367.298-.665.665-.665M13.068 7.335C14.135 7.335 15 8.2 15 9.267v3.8A1.93 1.93 0 0 1 13.068 15H9.584a.665.665 0 1 1 0-1.33h3.484c.332 0 .601-.27.601-.602v-3.8c0-.332-.269-.601-.6-.602a.665.665 0 0 1 0-1.33"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 6.485a1.516 1.516 0 1 1 0 3.032 1.516 1.516 0 0 1 0-3.032m0 1.032a.484.484 0 1 0 .001.967A.484.484 0 0 0 8 7.517",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8 4.152a1.124 1.124 0 0 1 1.12 1.115 1.123 1.123 0 0 1 1.58 1.596l-.004.002-.003.003.004.01h.03A1.124 1.124 0 0 1 11.847 8a1.123 1.123 0 0 1-1.116 1.12l.065.073.002.001a1.13 1.13 0 0 1 .255.714 1.12 1.12 0 0 1-.255.711l-.002.002-.07.078-.002.002a1.13 1.13 0 0 1-.793.329 1.13 1.13 0 0 1-.713-.256l-.002-.001-.071-.065v.018a1.123 1.123 0 0 1-2.244 0v-.005l-.009-.003-.005.005v.002a1.125 1.125 0 0 1-1.831-.364 1.12 1.12 0 0 1 .235-1.215h-.018a1.124 1.124 0 0 1-1.122-1.122 1.12 1.12 0 0 1 1.122-1.122h.005l.002-.009-.005-.005h-.001a1.13 1.13 0 0 1 0-1.59 1.123 1.123 0 0 1 1.588.002l.006.005.01-.002v-.03A1.123 1.123 0 0 1 8 4.153m0 1.033a.09.09 0 0 0-.09.089v.054a1.02 1.02 0 0 1-.615.93.5.5 0 0 1-.112.031 1.02 1.02 0 0 1-1.028-.237l-.007-.007-.015-.016-.03-.02-.034-.006a.1.1 0 0 0-.064.026l-.02.03a.1.1 0 0 0 0 .069l.008.013.016.02.012.012.007.006a1.015 1.015 0 0 1 .216 1.084v.007a1.02 1.02 0 0 1-.931.665h-.04a.1.1 0 0 0-.062.026.09.09 0 0 0 0 .126c.016.017.04.027.063.027h.054a1.02 1.02 0 0 1 .927.61l.05.144a1.02 1.02 0 0 1-.253.977l-.023.023a.1.1 0 0 0-.02.029.1.1 0 0 0 0 .068l.007.012.014.018.029.02.034.006a.1.1 0 0 0 .064-.026l.018-.017v-.002l.004-.003a1.016 1.016 0 0 1 1.09-.215c.19.07.358.196.477.361.118.166.184.365.189.568v.04a.1.1 0 0 0 .025.062q.027.026.064.027a.1.1 0 0 0 .063-.027.1.1 0 0 0 .027-.063v-.054a1.02 1.02 0 0 1 .61-.927h.003l.066-.027h.002a1.02 1.02 0 0 1 .887.102l.107.078.055.05h.002l.002.004.019.018a.1.1 0 0 0 .03.02q.015.007.034.006a.1.1 0 0 0 .034-.006l.03-.02a.1.1 0 0 0 .026-.062l-.007-.036a.1.1 0 0 0-.019-.028l-.022-.023a1.02 1.02 0 0 1 .723-1.731h.03a.1.1 0 0 0 .063-.027.1.1 0 0 0 .027-.063.1.1 0 0 0-.026-.063l-.03-.02a.1.1 0 0 0-.034-.006h-.054a1.02 1.02 0 0 1-.929-.616.5.5 0 0 1-.033-.114 1.019 1.019 0 0 1 .238-1.026l.004-.003.019-.019a.1.1 0 0 0 .02-.03l.006-.034a.1.1 0 0 0-.026-.064.093.093 0 0 0-.098-.02l-.015.009-.018.015-.02.02a1.02 1.02 0 0 1-1.11.205H8.71l-.006-.002h-.002a1.02 1.02 0 0 1-.611-.928v-.03a.089.089 0 0 0-.09-.09",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M6.416 1a.666.666 0 0 1 0 1.33H2.932c-.332 0-.601.27-.601.602v3.8c0 .333.269.602.6.603a.666.666 0 0 1 0 1.33A1.93 1.93 0 0 1 1 6.732V2.932C1 1.865 1.865 1 2.932 1zM13.067 1C14.134 1 15 1.865 15 2.932v3.484a.665.665 0 1 1-1.33 0V2.932a.6.6 0 0 0-.602-.601h-3.8c-.332 0-.601.269-.602.6a.665.665 0 0 1-1.33 0c0-1.066.865-1.93 1.932-1.931z"})]}),wk=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M4.77 1.756a2 2 0 0 1 .961.33l.87.58c.082.055.18.084.278.084h6.871a2 2 0 0 1 2 2v7.5a2 2 0 0 1-2 2H2.25a2 2 0 0 1-2-2v-8.5a2 2 0 0 1 2-2h2.371zM1.75 6.75v5.5a.5.5 0 0 0 .5.5h11.5a.5.5 0 0 0 .5-.5v-5.5zm.5-3.5a.5.5 0 0 0-.5.5v1.5h12.5v-.5a.5.5 0 0 0-.5-.5H6.878c-.395 0-.781-.117-1.11-.336l-.869-.58a.5.5 0 0 0-.204-.078l-.074-.006z",clipRule:"evenodd"})}),wT=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M2 6h12M6 2v12M5.2 2h5.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874C14 3.52 14 4.08 14 5.2v5.6c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V5.2c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874C3.52 2 4.08 2 5.2 2"})}),wS=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.65,strokeWidth:1.4,d:"M10 1.333v.934c0 .373 0 .56-.073.702a.67.67 0 0 1-.291.292c-.143.072-.33.072-.703.072H7.066c-.373 0-.56 0-.702-.072a.67.67 0 0 1-.292-.292C6 2.827 6 2.64 6 2.267v-.934M4.8 14.667h6.4c.747 0 1.12 0 1.405-.146.251-.128.455-.332.583-.582.145-.286.145-.659.145-1.406V3.467c0-.747 0-1.12-.145-1.406a1.33 1.33 0 0 0-.583-.582c-.285-.146-.658-.146-1.405-.146H4.8c-.747 0-1.12 0-1.405.146-.251.127-.455.331-.583.582-.145.286-.145.659-.145 1.406v9.066c0 .747 0 1.12.145 1.406.128.25.332.454.583.582.285.146.658.146 1.405.146"})}),wC=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M14 7.333 8.937 2.271c-.346-.346-.519-.52-.72-.643a2 2 0 0 0-.579-.24c-.23-.055-.474-.055-.963-.055H4M2 5.8v1.316c0 .326 0 .49.037.643q.05.205.16.385c.082.135.197.25.428.48l5.2 5.2c.528.529.792.793 1.096.892.268.087.557.087.824 0 .305-.1.569-.363 1.097-.891l1.65-1.65c.527-.528.791-.792.89-1.096a1.33 1.33 0 0 0 0-.824c-.098-.305-.362-.569-.89-1.097L7.625 4.292c-.23-.231-.346-.346-.48-.429a1.3 1.3 0 0 0-.386-.16c-.153-.036-.317-.036-.643-.036H4.133c-.746 0-1.12 0-1.405.145-.25.128-.455.332-.583.583C2 4.68 2 5.053 2 5.8"})}),wD=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.172 2H4a2 2 0 0 0-2 2v3.172a2 2 0 0 0 .586 1.414l3.96 3.96a3 3 0 0 0 4.242 0l1.757-1.758a3 3 0 0 0 0-4.243l-3.96-3.96A2 2 0 0 0 7.173 2"}),(0,tq.jsx)("circle",{cx:5,cy:5,r:1,fill:"currentColor"})]}),wI=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("circle",{cx:2.271,cy:2.271,r:2.271,stroke:"currentColor",strokeWidth:1.3,transform:"matrix(-1 0 0 1 10.413 3.033)"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.3,d:"M4.169 10.943c0-.488.307-.924.767-1.088a9.53 9.53 0 0 1 6.413 0c.46.164.767.6.767 1.088v.846c0 .65-.528 1.178-1.178 1.178H5.347c-.651 0-1.178-.527-1.178-1.178z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeWidth:1.3,d:"M11.548 7.637a1.784 1.784 0 0 0 0-3.568M14.67 12.418v-2.134a.91.91 0 0 0-.603-.855 7.5 7.5 0 0 0-1.1-.301M4.452 7.637a1.784 1.784 0 0 1 0-3.568M1.33 12.418v-2.134c0-.384.242-.726.603-.855a7.5 7.5 0 0 1 1.1-.301"})]}),wM=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("circle",{cx:8,cy:8,r:1.5,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5}),(0,tq.jsx)("circle",{cx:8,cy:8,r:4.5,stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 3.5V2M12.5 8H14M8 12.5V14M3.5 8H2"})]}),wL=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#tax-class_inline_svg__clip0_1012_1696)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M5.667 9.778c0 .859.696 1.555 1.555 1.555h1.445a1.667 1.667 0 1 0 0-3.333H7.333a1.667 1.667 0 0 1 0-3.333h1.445c.859 0 1.555.696 1.555 1.555M8 3.667v1m0 6.666v1M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),wF=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M14.136 4.137a.75.75 0 1 1 1.06 1.06L8.53 11.864a.75.75 0 0 1-1.06 0L4.135 8.53a.75.75 0 0 1 1.06-1.06L8 10.273zM.803 7.47a.75.75 0 0 1 1.06 0l3.334 3.334a.75.75 0 0 1-1.003 1.111l-.058-.05L.803 8.53a.75.75 0 0 1 0-1.06"}),(0,tq.jsx)("path",{d:"M10.803 4.137a.75.75 0 1 1 1.06 1.06L8.532 8.53a.75.75 0 0 1-1.06-1.06z"})]}),wE=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 4.667c0-.622 0-.932.101-1.177.135-.327.395-.586.722-.722.245-.101.555-.101 1.177-.101h6.666c.622 0 .932 0 1.177.101.327.136.587.395.722.722.101.245.101.555.101 1.177M6 13.333h4M8 2.667v10.666"})}),wP=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8.667 4.667h-5.2c-.747 0-1.12 0-1.406.145-.25.128-.455.332-.582.583-.146.285-.146.658-.146 1.405v2.4c0 .747 0 1.12.146 1.405.127.251.331.455.582.583.285.145.659.145 1.406.145h5.2m2.666-6.666h1.2c.747 0 1.12 0 1.406.145.25.128.454.332.582.583.146.285.146.658.146 1.405v2.4c0 .747 0 1.12-.146 1.405-.128.251-.332.455-.582.583-.286.145-.659.145-1.406.145h-1.2m0 2.667V2M13 2H9.667M13 14H9.667"})}),wA=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"m8.813 3.751.114.042a.6.6 0 0 1 .322.686L7.915 9.813a.6.6 0 0 1-1.163-.292l1.333-5.334a.6.6 0 0 1 .727-.436M5.91 5.242a.6.6 0 0 1 .849.849L5.849 7l.909.91a.6.6 0 0 1 0 .848.6.6 0 0 1-.849 0L4.576 7.425a.6.6 0 0 1 0-.849zM9.242 5.242a.6.6 0 0 1 .849 0l1.334 1.334.077.094a.6.6 0 0 1-.077.755L10.09 8.758a.6.6 0 0 1-.849-.849l.91-.909-.91-.91a.6.6 0 0 1 0-.848"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M10.83 1.3c.535 0 .979 0 1.34.03.378.03.727.097 1.056.265a2.7 2.7 0 0 1 1.18 1.18c.168.328.234.678.265 1.054.03.362.03.806.03 1.342v3.852c0 .446 0 .816-.021 1.119a2.8 2.8 0 0 1-.186.891 2.7 2.7 0 0 1-1.46 1.461 2.8 2.8 0 0 1-.892.186c-.303.02-.673.02-1.119.02H11c-.359 0-.425.004-.479.017a.64.64 0 0 0-.26.13c-.042.035-.086.085-.301.373l-.984 1.313a4 4 0 0 1-.203.254 1.05 1.05 0 0 1-.398.287c-.24.094-.508.094-.749 0a1.05 1.05 0 0 1-.4-.287c-.068-.076-.139-.171-.2-.254L6.04 13.22c-.215-.288-.259-.338-.3-.373a.64.64 0 0 0-.261-.13c-.054-.013-.12-.017-.479-.017h-.023c-.446 0-.816 0-1.119-.02a2.8 2.8 0 0 1-.891-.186 2.7 2.7 0 0 1-1.461-1.46 2.8 2.8 0 0 1-.186-.892c-.02-.303-.02-.673-.02-1.119V5.171c0-.536 0-.98.03-1.342.03-.377.097-.726.265-1.055a2.7 2.7 0 0 1 1.18-1.18c.328-.167.677-.233 1.054-.264.362-.03.806-.03 1.342-.03zM5.2 2.7c-.571 0-.958 0-1.257.025-.29.023-.434.067-.533.117a1.3 1.3 0 0 0-.568.568c-.05.099-.094.243-.117.533C2.7 4.242 2.7 4.63 2.7 5.2V9c0 .476 0 .797.018 1.047.016.243.046.366.08.45.133.319.386.572.705.704.084.035.207.065.45.081.25.017.572.018 1.047.018h.057c.269 0 .511 0 .744.054.307.073.593.216.836.419.183.153.328.346.489.561L8 13.5l.874-1.166c.161-.215.307-.408.49-.561.242-.203.528-.346.835-.418.233-.055.475-.056.744-.055H11c.476 0 .797 0 1.047-.018.243-.016.366-.046.45-.08.319-.133.572-.386.704-.705.035-.084.065-.207.081-.45.017-.25.018-.571.018-1.047V5.2c0-.571 0-.958-.025-1.257-.023-.29-.066-.434-.117-.533a1.3 1.3 0 0 0-.568-.568c-.099-.05-.243-.094-.533-.117C11.758 2.7 11.37 2.7 10.8 2.7z",clipRule:"evenodd"})]}),wN=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M8 4v4l2.667 1.333m4-1.333A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})}),wR=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 10.667 10.667 8m0 0L8 5.333M10.667 8H5.333M5.2 14h5.6c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874C14 12.48 14 11.92 14 10.8V5.2c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874C12.48 2 11.92 2 10.8 2H5.2c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874C2 3.52 2 4.08 2 5.2v5.6c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 14 4.08 14 5.2 14"})}),wV=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#transformers_inline_svg__clip0_2362_45505)",children:[(0,tq.jsx)("path",{d:"M10 6.25a.75.75 0 0 1 0 1.5H4.083v4.773l.72-.72a.75.75 0 0 1 1.06 1.06l-2 2a.8.8 0 0 1-.188.133q-.027.016-.056.03-.048.018-.098.03-.02.006-.04.011-.007.002-.016.003a.8.8 0 0 1-.264 0l-.017-.003q-.02-.005-.04-.011-.05-.012-.098-.03-.034-.016-.067-.036a.7.7 0 0 1-.176-.127l-2-2a.75.75 0 0 1 1.06-1.06l.72.72V7a.75.75 0 0 1 .75-.75z"}),(0,tq.jsx)("path",{d:"M12.743.92a1 1 0 0 1 .083.014q.049.011.096.03.02.006.04.013.028.014.055.03a.8.8 0 0 1 .18.13l2 2a.75.75 0 0 1-1.06 1.06l-.72-.72v6.857c0 .414-.336.75-.75.75H6a.75.75 0 0 1 0-1.5h5.917V3.478l-.72.72a.75.75 0 0 1-1.06-1.061l2-2 .057-.052.028-.02a.8.8 0 0 1 .256-.123.7.7 0 0 1 .19-.025h.034z"})]})}),wz=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#translate_inline_svg__clip0_723_2351)",children:[(0,tq.jsx)("path",{fill:"#fff",fillOpacity:.01,d:"M16 0H0v16h16z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M9.429 12.333h3.81M14 14l-.762-1.667zm-5.333 0 .762-1.667zm.762-1.667L11.333 8l1.905 4.333zM5.333 2l.334 1M2 3.667h7.333M3.333 5.333S3.93 7.42 5.421 8.58s3.912 2.087 3.912 2.087"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 3.667s-.596 2.739-2.088 4.26C4.422 9.45 2 10.668 2 10.668"})]})}),wB=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.111 1.336a.7.7 0 0 1 .886.442l.333 1q.03.095.032.189h2.971a.7.7 0 0 1 0 1.4H8.54c-.084.291-.206.68-.371 1.11-.348.907-.912 2.078-1.757 2.941l-.004.003c.584.38 1.248.728 1.83 1.005a23 23 0 0 0 1.323.578l.018.007.086.043 1.027-2.335a.702.702 0 0 1 1.283 0l1.9 4.323.762 1.667a.7.7 0 0 1-1.274.582l-.575-1.258h-2.91l-.574 1.258a.7.7 0 0 1-1.274-.582l.762-1.667.313-.716q-.011-.002-.022-.006H9.08l-.007-.004-.022-.008-.085-.034-.306-.125a25 25 0 0 1-1.025-.46c-.699-.332-1.567-.788-2.31-1.312-.536.419-1.084.79-1.557 1.085a22 22 0 0 1-1.335.77l-.085.043-.024.012-.007.004-.002.001a.701.701 0 0 1-.63-1.25l.002-.001.021-.01a11 11 0 0 0 .355-.191c.242-.133.58-.326.963-.566.39-.243.815-.529 1.23-.841a7.6 7.6 0 0 1-1.064-1.597 9 9 0 0 1-.497-1.195l-.025-.08-.007-.024-.002-.008v-.004a.7.7 0 1 1 1.345-.383l.004.011.017.056c.017.05.043.128.078.225.073.194.185.468.338.773.218.432.51.905.878 1.317q.046-.044.091-.086c.646-.66 1.126-1.618 1.45-2.461q.124-.33.214-.61H2a.7.7 0 0 1 0-1.4h2.917l-.248-.745a.7.7 0 0 1 .442-.886m5.39 10.298h1.665l-.833-1.895z",clipRule:"evenodd"})}),wO=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M6 2h4M2 4h12m-1.333 0-.468 7.013c-.07 1.052-.105 1.578-.332 1.977a2 2 0 0 1-.866.81c-.413.2-.94.2-1.995.2H6.994c-1.055 0-1.582 0-1.995-.2a2 2 0 0 1-.866-.81c-.227-.399-.262-.925-.332-1.977L3.333 4"})}),wK=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeOpacity:.88,strokeWidth:1.4,d:"M2 2v6.8c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874C3.52 12 4.08 12 5.2 12H10m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0M2 5.333h8m0 0a2 2 0 1 0 4 0 2 2 0 0 0-4 0"})}),w_=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M6.348 3.328c.446-.446 1.083-.435 1.539.02l2.767 2.767c.456.456.46 1.092.015 1.533l-4.39 4.399h3.895c.242 0 .446.194.446.425s-.204.42-.446.42H5.392a.5.5 0 0 1-.106-.013c-.577.259-1.196.101-1.76-.464L1.58 10.481c-.747-.757-.777-1.604-.065-2.32zM2.11 8.701c-.36.371-.345.817.04 1.208l1.946 1.935c.386.39.832.41 1.198.04l.491-.492-3.18-3.185zm5.21-4.776a.29.29 0 0 0-.431.005L3.103 7.709l3.184 3.183 3.785-3.785c.126-.125.13-.3.005-.425z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fill:"currentColor",d:"M14.56 12.047c.242 0 .44.194.44.425s-.198.42-.44.42H11.82c-.242 0-.446-.19-.446-.42 0-.231.204-.425.446-.425z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M6.348 3.328c.446-.446 1.083-.435 1.539.02l2.767 2.767c.456.456.46 1.092.015 1.533l-4.39 4.399h3.895c.242 0 .446.194.446.425s-.204.42-.446.42H5.392a.5.5 0 0 1-.106-.013c-.577.259-1.196.101-1.76-.464L1.58 10.481c-.747-.757-.777-1.604-.065-2.32zM2.11 8.701c-.36.371-.345.817.04 1.208l1.946 1.935c.386.39.832.41 1.198.04l.491-.492-3.18-3.185zm5.21-4.776a.29.29 0 0 0-.431.005L3.103 7.709l3.184 3.183 3.785-3.785c.126-.125.13-.3.005-.425z",clipRule:"evenodd"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M14.56 12.047c.242 0 .44.194.44.425s-.198.42-.44.42H11.82c-.242 0-.446-.19-.446-.42 0-.231.204-.425.446-.425z"})]}),wH=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 7.333h-4M6.667 10H5.333m5.334-5.333H5.333m8-.134v6.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218H5.867c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108V4.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h4.266c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108"})}),w$=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13.333 6.333v-1.8c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218h3.466m0-7.334h-4M6.667 10H5.333m5.334-5.333H5.333M11 10.002a1.499 1.499 0 0 1 2.913.5c0 .998-1.5 1.498-1.5 1.498m.02 2h.007"})}),wW=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{d:"M12.446 11.14c.221-.22.563-.18.762.02l.382.381c.726.726.805 1.883.107 2.582s-1.855.62-2.582-.106l-.39-.391-.02-.022-.008-.01c-.166-.2-.19-.515.017-.722s.523-.184.723-.018l.008.01.023.019.39.39c.327.327.8.325 1.057.068.257-.258.259-.73-.067-1.057l-.382-.382c-.2-.2-.24-.54-.02-.761"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M8.04 1a.7.7 0 0 1 .207.073.2.2 0 0 1 .066 0A.7.7 0 0 1 8.5 1.2l4 4a.7.7 0 0 1 .127.187v.06q.03.088.04.18V7.5a.667.667 0 0 1-1.334 0V6.333h-2a2 2 0 0 1-2-2v-2H4A.667.667 0 0 0 3.333 3v9.333A.67.67 0 0 0 4 13h3.095a.667.667 0 0 1 0 1.333H4a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2zm.627 3.333A.667.667 0 0 0 9.333 5h1.06L8.668 3.273z",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M12.728 8.575a.601.601 0 0 1 .849.849l-4.152 4.151a.6.6 0 0 1-.849-.848zM8.104 8.693c.698-.698 1.855-.619 2.582.107l.381.382a.55.55 0 0 1 .091.674l-.071.088c-.22.221-.563.18-.763-.02l-.382-.381c-.326-.326-.798-.324-1.055-.067-.241.24-.26.669.009.993l.066.071.374.374c.199.2.24.541.02.762-.221.22-.563.18-.763-.019l-.386-.386-.059-.061-.003-.004c-.664-.727-.718-1.836-.041-2.513"})]}),wq=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M4.667 6.667V5.333A3.333 3.333 0 0 1 11.056 4M8 9.667V11m-2.133 3h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108v-.933c0-1.12 0-1.68-.218-2.108a2 2 0 0 0-.874-.874c-.428-.218-.988-.218-2.108-.218H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v.933c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.428.218.988.218 2.108.218"})}),wG=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M2.667 10.828a3 3 0 0 1 1.387-5.482 4.001 4.001 0 0 1 7.893 0 3 3 0 0 1 1.386 5.482m-8-.161L8 8m0 0 2.667 2.667M8 8v6"})}),wU=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 14 14",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M13 9v.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C11.48 13 10.92 13 9.8 13H4.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C1 11.48 1 10.92 1 9.8V9m9.333-4.667L7 1m0 0L3.667 4.333M7 1v8"})}),wQ=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",d:"M5.852 1h4.296c.548 0 .979 0 1.326.028.354.03.65.09.919.226.439.224.796.581 1.02 1.02.136.269.196.564.225.919.029.347.029.778.029 1.326v3.814a.333.333 0 0 1-.667 0v-3.8c0-.565 0-.97-.026-1.286-.026-.313-.075-.511-.156-.67a1.67 1.67 0 0 0-.728-.729c-.16-.08-.357-.13-.67-.155-.317-.026-.721-.026-1.287-.026h-3.8V3h1a.333.333 0 1 1 0 .667h-1V5h1a.333.333 0 1 1 0 .667h-1v1a.333.333 0 1 1-.666 0v-1h-1a.333.333 0 1 1 0-.667h1V3.667h-1a.333.333 0 1 1 0-.667h1V1.667c-.463 0-.809.003-1.087.026-.313.025-.51.074-.67.155-.314.16-.569.415-.728.729-.081.159-.13.357-.156.67C3 3.564 3 3.967 3 4.533v6.934c0 .565 0 .97.026 1.286.026.313.075.511.156.67.16.314.414.569.728.729.16.08.357.13.67.155.317.026.721.026 1.287.026h2.466a.333.333 0 0 1 0 .667H5.852c-.548 0-.979 0-1.326-.028-.354-.03-.65-.09-.919-.226a2.33 2.33 0 0 1-1.02-1.02c-.136-.269-.196-.565-.225-.919-.029-.347-.029-.778-.029-1.325V4.519c0-.548 0-.98.029-1.326.029-.355.089-.65.226-.919.223-.439.58-.796 1.02-1.02.268-.137.564-.197.918-.226C4.873 1 5.304 1 5.852 1"}),(0,tq.jsx)("path",{fill:"currentColor",d:"M11.333 15a.333.333 0 0 1-.333-.333V11.47l-1.43 1.431a.333.333 0 0 1-.472-.471l2-2c.13-.13.34-.13.471 0l2 2a.333.333 0 1 1-.471.471l-1.431-1.43v3.195c0 .184-.15.333-.334.333"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M5.852 1h4.296c.548 0 .979 0 1.326.028.354.03.65.09.919.226.439.224.796.581 1.02 1.02.136.269.196.564.225.919.029.347.029.778.029 1.326v3.814a.333.333 0 0 1-.667 0v-3.8c0-.565 0-.97-.026-1.286-.026-.313-.075-.511-.156-.67a1.67 1.67 0 0 0-.728-.729c-.16-.08-.357-.13-.67-.155-.317-.026-.721-.026-1.287-.026h-3.8V3h1a.333.333 0 1 1 0 .667h-1V5h1a.333.333 0 1 1 0 .667h-1v1a.333.333 0 1 1-.666 0v-1h-1a.333.333 0 1 1 0-.667h1V3.667h-1a.333.333 0 1 1 0-.667h1V1.667c-.463 0-.809.003-1.087.026-.313.025-.51.074-.67.155-.314.16-.569.415-.728.729-.081.159-.13.357-.156.67C3 3.564 3 3.967 3 4.533v6.934c0 .565 0 .97.026 1.286.026.313.075.511.156.67.16.314.414.569.728.729.16.08.357.13.67.155.317.026.721.026 1.287.026h2.466a.333.333 0 0 1 0 .667H5.852c-.548 0-.979 0-1.326-.028-.354-.03-.65-.09-.919-.226a2.33 2.33 0 0 1-1.02-1.02c-.136-.269-.196-.565-.225-.919-.029-.347-.029-.778-.029-1.325V4.519c0-.548 0-.98.029-1.326.029-.355.089-.65.226-.919.223-.439.58-.796 1.02-1.02.268-.137.564-.197.918-.226C4.873 1 5.304 1 5.852 1"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:.6,d:"M11.333 15a.333.333 0 0 1-.333-.333V11.47l-1.43 1.431a.333.333 0 0 1-.472-.471l2-2c.13-.13.34-.13.471 0l2 2a.333.333 0 1 1-.471.471l-1.431-1.43v3.195c0 .184-.15.333-.334.333"})]}),wJ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M14 10v.8c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874C12.48 14 11.92 14 10.8 14H5.2c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874C2 12.48 2 11.92 2 10.8V10m9.333-4.667L8 2m0 0L4.667 5.333M8 2v8"})}),wZ=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsxs)("g",{clipPath:"url(#url-slug_inline_svg__clip0_1905_3465)",children:[(0,tq.jsx)("path",{d:"M7.38 5.337c.79-.79 2.06-.753 2.837.023.771.772.812 2.03.038 2.82v.002l-.636.673a.75.75 0 1 1-1.09-1.029l.636-.675.016-.014a.507.507 0 0 0-.025-.716.506.506 0 0 0-.715-.024L6.82 8.083a1 1 0 0 1-.093.113.47.47 0 0 0-.136.371.54.54 0 0 0 .159.345v.001a.75.75 0 0 1 1.22-.824c.758.759.81 1.987.074 2.78l-.042.046-.009.01q-.005.006-.012.01l-.013.015-1.721 1.564-.002-.002c-.791.763-2.04.72-2.809-.047-.794-.795-.771-2.132 0-2.904l.01-.01.003-.003.012-.01.04-.042.14-.134c.109-.106.236-.23.317-.311a.75.75 0 0 1 1.06 1.06c-.089.09-.223.22-.332.326l-.14.137-.043.041-.007.005.001.001c-.196.196-.2.584 0 .783.218.217.537.201.715.024l.026-.026 1.696-1.54a.506.506 0 0 0-.025-.713.75.75 0 0 1-1.22.824 2.04 2.04 0 0 1-.594-1.305c-.032-.466.1-.944.4-1.336a.8.8 0 0 1 .11-.15L7.37 5.349z"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M13.667.583c.966 0 1.75.784 1.75 1.75V11a1.75 1.75 0 0 1-1.75 1.75h-.251v.916a1.75 1.75 0 0 1-1.75 1.75H2.333a1.75 1.75 0 0 1-1.75-1.75V4.333c0-.966.784-1.75 1.75-1.75h.917v-.25c0-.966.784-1.75 1.75-1.75zm-11.334 3.5a.25.25 0 0 0-.25.25v9.333c0 .138.112.25.25.25h9.333a.25.25 0 0 0 .25-.25V4.333a.25.25 0 0 0-.25-.25zm2.667-2a.25.25 0 0 0-.25.25v.25h6.916c.966 0 1.75.784 1.75 1.75v6.917h.251a.25.25 0 0 0 .25-.25V2.333a.25.25 0 0 0-.25-.25z",clipRule:"evenodd"})]})}),wY=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#user-select_inline_svg__clip0_1242_1692)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M3.333 13.727c.352.106.827.106 1.634.106h6.066c.807 0 1.282 0 1.634-.106m-9.334 0a1.3 1.3 0 0 1-.21-.084 1.75 1.75 0 0 1-.766-.765c-.19-.374-.19-.865-.19-1.845V4.967c0-.98 0-1.47.19-1.845a1.75 1.75 0 0 1 .765-.765c.375-.19.865-.19 1.845-.19h6.066c.98 0 1.47 0 1.845.19.33.168.597.436.765.765.19.375.19.865.19 1.845v6.066c0 .98 0 1.47-.19 1.845a1.75 1.75 0 0 1-.765.765 1.3 1.3 0 0 1-.211.084m-9.334 0c0-.472.003-.722.045-.932a2.33 2.33 0 0 1 1.833-1.834c.226-.044.497-.044 1.039-.044h3.5c.542 0 .813 0 1.039.044.925.185 1.649.908 1.833 1.834.042.21.044.46.045.932m-2.334-7.185a2.333 2.333 0 1 1-4.666 0 2.333 2.333 0 0 1 4.666 0"})})}),wX=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M13.333 14c0-.93 0-1.396-.114-1.774a2.67 2.67 0 0 0-1.778-1.778c-.379-.115-.844-.115-1.774-.115H6.333c-.93 0-1.395 0-1.774.115a2.67 2.67 0 0 0-1.778 1.778c-.114.378-.114.844-.114 1.774M11 5a3 3 0 1 1-6 0 3 3 0 0 1 6 0"})}),w0=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M11 10.667 14.333 14m0-3.333L11 14m-.667-11.806a2.668 2.668 0 0 1 0 4.945M8 10H5.333c-1.242 0-1.864 0-2.354.203-.653.27-1.172.79-1.443 1.443-.203.49-.203 1.111-.203 2.354M9 4.667a2.667 2.667 0 1 1-5.333 0 2.667 2.667 0 0 1 5.333 0"})}),w1=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 14",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.08 11c-1.009 0-4.712 0-5.097-.204a1.84 1.84 0 0 1-.787-.82C1 9.576 1 9.05 1 8V4c0-1.05 0-1.575.196-1.976a1.84 1.84 0 0 1 .787-.82C2.368 1 2.873 1 3.88 1h6.24c1.008 0 1.512 0 1.897.204.34.18.615.467.787.82.195.4.195 3.404.195 4.464V6.5M1.196 2.875 5.688 6.01c.397.29.595.434.811.49.19.05.39.05.58 0 .216-.056.415-.2.811-.49l4.81-3.135m-2.022 7.71-.616 2.035c-.049.16-.073.24-.056.29a.14.14 0 0 0 .088.087c.046.014.116-.02.255-.09l4.413-2.194c.135-.067.203-.101.224-.148a.16.16 0 0 0 0-.13c-.02-.046-.089-.08-.225-.148l-4.414-2.195c-.138-.069-.208-.103-.254-.089a.14.14 0 0 0-.087.087c-.018.05.006.13.054.289l.618 2.059a.3.3 0 0 1 .014.055.2.2 0 0 1 0 .037.3.3 0 0 1-.014.055"})}),w2=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.42 5.25c-.235 0-.443 0-.615.01-.18.01-.375.034-.57.105a1.57 1.57 0 0 0-.747.55c-.15.21-.2.427-.22.606-.018.15-.018.325-.018.48v.997c0 .156 0 .33.017.48.02.18.071.398.22.607.192.268.467.447.748.55.195.07.39.094.57.105.172.01.38.01.615.01h1.66c.235 0 .443 0 .615-.01.18-.01.375-.034.57-.105a1.57 1.57 0 0 0 .747-.55q.075-.106.12-.212l.034.025c.053.037.124.088.19.128a.932.932 0 0 0 1.088-.068.85.85 0 0 0 .296-.558c.01-.086.01-.18.01-.23V6.83c0-.049 0-.143-.01-.229a.85.85 0 0 0-.295-.558.93.93 0 0 0-1.088-.068c-.066.04-.138.09-.19.128l-.035.025a1 1 0 0 0-.12-.212 1.57 1.57 0 0 0-.747-.55 2 2 0 0 0-.57-.105c-.172-.01-.38-.01-.615-.01zm2.33 1.779v.942l-.001.222-.001.033a1 1 0 0 1-.14.017 11 11 0 0 1-.548.007H6.44c-.26 0-.424 0-.547-.007a1 1 0 0 1-.14-.017l-.002-.033-.001-.222V7.03l.001-.222.001-.033a1 1 0 0 1 .14-.017c.124-.007.287-.007.548-.007h1.62c.26 0 .424 0 .547.007a1 1 0 0 1 .14.017l.002.033z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.171 1.3c-.535 0-.98 0-1.342.03-.376.03-.726.097-1.055.264a2.7 2.7 0 0 0-1.18 1.18c-.167.33-.234.679-.264 1.055-.03.363-.03.807-.03 1.342v3.853c0 .446 0 .815.02 1.118.022.315.068.608.186.891a2.7 2.7 0 0 0 1.46 1.462c.284.117.577.163.892.184.303.021.672.021 1.118.021H5c.36 0 .426.004.479.017a.6.6 0 0 1 .26.13c.042.035.085.085.301.373l.985 1.313c.062.083.133.178.202.254.076.085.204.212.398.287.241.094.509.094.75 0 .194-.075.322-.202.398-.287a4 4 0 0 0 .202-.254l.985-1.313c.216-.288.259-.338.3-.373a.6.6 0 0 1 .261-.13c.053-.013.12-.017.479-.017h.024c.446 0 .815 0 1.118-.02.315-.022.608-.068.891-.185a2.7 2.7 0 0 0 1.462-1.462c.117-.283.163-.576.184-.891.021-.303.021-.672.021-1.118V5.17c0-.535 0-.98-.03-1.342-.03-.376-.097-.726-.264-1.055a2.7 2.7 0 0 0-1.18-1.18c-.33-.167-.679-.234-1.055-.264-.363-.03-.807-.03-1.342-.03zM3.41 2.842c.099-.05.243-.093.533-.117C4.242 2.7 4.628 2.7 5.2 2.7h5.6c.572 0 .958 0 1.257.025.29.024.434.066.533.117a1.3 1.3 0 0 1 .568.568c.05.099.093.243.117.533.024.299.025.685.025 1.257V9c0 .476 0 .797-.017 1.047-.017.243-.047.366-.082.45a1.3 1.3 0 0 1-.703.704c-.085.035-.208.065-.451.082-.25.017-.572.017-1.047.017h-.057c-.27 0-.51 0-.743.054a2 2 0 0 0-.836.418c-.184.153-.329.347-.49.562L8 13.5l-.874-1.166c-.161-.215-.306-.409-.49-.562a2 2 0 0 0-.836-.418c-.232-.055-.474-.054-.743-.054H5c-.476 0-.797 0-1.047-.017-.243-.017-.366-.047-.45-.082a1.3 1.3 0 0 1-.704-.703c-.035-.085-.065-.208-.082-.451A17 17 0 0 1 2.7 9V5.2c0-.572 0-.958.025-1.257.024-.29.066-.434.117-.533a1.3 1.3 0 0 1 .568-.568",clipRule:"evenodd"})]}),w3=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M14.667 5.954c0-.404 0-.606-.08-.7a.33.33 0 0 0-.28-.115c-.122.01-.265.153-.55.438L11.332 8l2.423 2.423c.286.286.429.428.551.438a.33.33 0 0 0 .28-.116c.08-.093.08-.295.08-.7z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M1.333 6.533c0-1.12 0-1.68.218-2.108a2 2 0 0 1 .874-.874c.428-.218.988-.218 2.108-.218h3.6c1.12 0 1.68 0 2.108.218a2 2 0 0 1 .874.874c.218.428.218.988.218 2.108v2.934c0 1.12 0 1.68-.218 2.108a2 2 0 0 1-.874.874c-.428.218-.988.218-2.108.218h-3.6c-1.12 0-1.68 0-2.108-.218a2 2 0 0 1-.874-.874c-.218-.428-.218-.988-.218-2.108z"})]}),w6=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M12.667 14h.673c.648 0 .971 0 1.15-.135a.67.67 0 0 0 .263-.492c.014-.223-.166-.493-.525-1.031l-2.007-3.01c-.297-.446-.445-.668-.632-.746a.67.67 0 0 0-.511 0c-.187.078-.335.3-.632.745l-.496.745M12.667 14 7.544 6.6c-.295-.425-.442-.638-.626-.713a.67.67 0 0 0-.502 0c-.184.075-.332.288-.626.713l-3.965 5.726c-.375.542-.563.813-.552 1.039.01.196.105.378.261.498.18.137.51.137 1.168.137zM14 4a2 2 0 1 1-4 0 2 2 0 0 1 4 0"})}),w4=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{fillRule:"evenodd",d:"M11.728 1.804a.75.75 0 0 1 .602.303l2.672 3.604a.75.75 0 0 1-.039.941l-6.4 7.29a.752.752 0 0 1-1.127 0l-6.4-7.29a.75.75 0 0 1-.034-.948l2.734-3.603.057-.067a.75.75 0 0 1 .541-.23zm-3.722 9.21 1.343-4.107H6.687zm-1.824-.775-1.07-3.332H3.255zm3.667-.036 2.894-3.296h-1.816zM3.11 5.407H5.1l.812-2.103H4.705zm3.598 0h2.679l-.788-2.103h-1.08zm4.281 0h1.92l-1.558-2.103H10.2z",clipRule:"evenodd"})}),w5=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 4.667v4M14 8A6 6 0 1 1 2 8a6 6 0 0 1 12 0"}),(0,tq.jsx)("circle",{cx:8,cy:11,r:.667,fill:"currentColor"})]}),w7=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M8 13.333H2.333a1 1 0 0 1-1-1V3.667a1 1 0 0 1 1-1h11.334a1 1 0 0 1 1 1v4.02"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M1.333 3.667a1 1 0 0 1 1-1h11.334a1 1 0 0 1 1 1v3H1.333z"}),(0,tq.jsx)("path",{fill:"currentColor",d:"M2.667 4.667a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.333 0M4.667 4.667a.667.667 0 1 1 1.333 0 .667.667 0 0 1-1.333 0"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:1.4,d:"M12.333 12.333a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M12.333 13.667v-1.334M12.333 10.333V9M10.313 12.5l1.154-.667M13.2 10.833l1.154-.666M10.313 10.167l1.154.666M13.2 11.833l1.154.667"})]}),w8=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"currentColor",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fillRule:"evenodd",d:"M12.576 8.466a.539.539 0 0 1 .54-.932A3.769 3.769 0 1 1 7.5 11.336H4.77a.539.539 0 0 1 0-1.077h3.223a.54.54 0 0 1 .545.539 2.694 2.694 0 0 0 2.693 2.692 2.694 2.694 0 0 0 1.345-5.024",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M5.308 5.203A.539.539 0 0 1 4.23 5.2a3.768 3.768 0 1 1 6.1 2.963l1.366 2.365a.539.539 0 0 1-.932.538L9.153 8.275a.54.54 0 0 1 .193-.741 2.694 2.694 0 0 0 .986-3.678 2.694 2.694 0 0 0-5.024 1.347",clipRule:"evenodd"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.116 13.13a.539.539 0 0 1 .537.932 3.769 3.769 0 1 1-.485-6.765l1.366-2.364a.539.539 0 0 1 .932.538L6.855 8.263a.54.54 0 0 1-.74.203 2.694 2.694 0 0 0-2.692 4.664 2.69 2.69 0 0 0 2.693 0",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"M11.364 12.407a1.48 1.48 0 1 0 0-2.962 1.48 1.48 0 0 0 0 2.962"}),(0,tq.jsx)("path",{fillRule:"evenodd",d:"M6.772 5.962c-.408-.666-.165-1.52.542-1.904s1.614-.156 2.023.51c.408.666.166 1.52-.542 1.904s-1.614.156-2.023-.51M5.69 11.666c-.384.708-1.237.95-1.903.542s-.894-1.315-.51-2.022c.385-.708 1.238-.95 1.904-.542s.894 1.315.51 2.022",clipRule:"evenodd"}),(0,tq.jsx)("path",{d:"m12.576 8.466-.05.086zm-.196-.736-.086-.05zm.736-.196-.05.086zM7.5 11.336l.099-.014-.012-.086H7.5zm.493-1.077v.1h.001zm.385.156.07-.071zm-3.07-5.212h-.1zm-.54.538v.1zm-.537-.54h.1zm1.884-3.263.05.087zm5.15 1.38.086-.05zm-.933 4.846-.062-.079-.068.054.043.075zm1.365 2.365-.086.05zm-.197.735-.05-.086zm-.735-.197-.087.05zM9.153 8.275l.086-.05zm-.059-.411-.096-.025zm.252-.33.05.086zm.986-3.678.086-.05zM6.654 2.87l-.05-.087zm-.538 10.258-.05-.087zm.735.198.087-.05zm-.198.735-.05-.086zm-3.768 0-.05.087zm-1.38-5.149-.087-.05zm4.663-1.616-.037.093.08.033.044-.076zm1.366-2.364.086.05zm.735-.197.05-.087zm.197.735.087.05zM6.855 8.263l-.087-.05v.001zm-.328.256-.026-.096zm-.412-.053-.05.087zm-3.677.986.086.05zm.985 3.678-.05.086zm3.35-7.168.085-.052zm.541-1.904.048.088zm2.023.51-.085.053zm-.542 1.904-.048-.088zM5.69 11.666l.088.048zm-1.904.542-.052.086zm-.51-2.022-.088-.048zm1.904-.542.052-.085zm7.445-1.265a.44.44 0 0 1-.16-.599l-.172-.1a.64.64 0 0 0 .232.872zm-.16-.599a.44.44 0 0 1 .6-.16l.1-.173a.64.64 0 0 0-.872.233zm.6-.16a3.67 3.67 0 0 1 1.834 3.178h.2c0-1.431-.778-2.682-1.934-3.35zm1.834 3.178a3.67 3.67 0 0 1-3.67 3.669v.2a3.87 3.87 0 0 0 3.87-3.87zm-3.67 3.669A3.67 3.67 0 0 1 7.6 11.322l-.198.029a3.87 3.87 0 0 0 3.83 3.316zm-3.73-3.23H4.77v.2H7.5zm-2.73 0a.44.44 0 0 1-.44-.44h-.2c0 .353.287.64.64.64zm-.44-.44c0-.241.197-.438.44-.438v-.2a.64.64 0 0 0-.64.639zm.44-.438h3.223v-.2H4.769zm3.224 0a.44.44 0 0 1 .314.127l.14-.143a.64.64 0 0 0-.456-.184zm.314.127c.083.082.13.194.13.312h.2a.64.64 0 0 0-.19-.454zm.13.312a2.794 2.794 0 0 0 2.793 2.792v-.2a2.594 2.594 0 0 1-2.593-2.592zm2.793 2.792a2.794 2.794 0 0 0 2.792-2.792h-.2a2.594 2.594 0 0 1-2.592 2.592zm2.792-2.792a2.79 2.79 0 0 0-1.397-2.419l-.1.173a2.59 2.59 0 0 1 1.297 2.246zM5.208 5.203a.44.44 0 0 1-.44.438v.2a.64.64 0 0 0 .64-.638zm-.44.438a.44.44 0 0 1-.437-.44h-.2c0 .353.285.639.637.64zm-.437-.44a3.67 3.67 0 0 1 1.834-3.176l-.1-.174a3.87 3.87 0 0 0-1.934 3.35zm1.834-3.176c1.754-1.013 4-.411 5.013 1.342l.173-.1a3.87 3.87 0 0 0-5.286-1.416zm5.013 1.342a3.67 3.67 0 0 1-.908 4.718l.124.158a3.87 3.87 0 0 0 .957-4.976zm-.933 4.847 1.366 2.365.173-.1-1.366-2.365zm1.366 2.365c.12.21.049.478-.161.599l.1.173a.64.64 0 0 0 .234-.872zm-.161.599a.44.44 0 0 1-.599-.16l-.173.1c.176.304.567.409.872.233zm-.599-.16L9.24 8.224l-.173.1 1.612 2.792zM9.24 8.223a.44.44 0 0 1-.048-.335l-.193-.05a.64.64 0 0 0 .069.487zM9.19 7.89a.44.44 0 0 1 .205-.269l-.1-.173a.64.64 0 0 0-.298.392zm.205-.269a2.794 2.794 0 0 0 1.022-3.814l-.173.1a2.594 2.594 0 0 1-.949 3.541zm1.022-3.814a2.794 2.794 0 0 0-3.814-1.022l.1.173a2.594 2.594 0 0 1 3.541.949zM6.604 2.784a2.79 2.79 0 0 0-1.396 2.419h.2a2.59 2.59 0 0 1 1.296-2.246zm-.438 10.432a.44.44 0 0 1 .599.161l.173-.1a.64.64 0 0 0-.872-.235zm.599.161c.12.21.048.478-.162.599l.1.173a.64.64 0 0 0 .235-.872zm-.162.599a3.67 3.67 0 0 1-3.668 0l-.1.173a3.87 3.87 0 0 0 3.868 0zm-3.668 0a3.67 3.67 0 0 1-1.343-5.013l-.174-.1a3.87 3.87 0 0 0 1.417 5.286zM1.592 8.963a3.67 3.67 0 0 1 4.54-1.573l.074-.185a3.87 3.87 0 0 0-4.788 1.658zm4.663-1.616L7.62 4.983l-.173-.1-1.365 2.364zM7.62 4.983a.44.44 0 0 1 .6-.16l.1-.174a.64.64 0 0 0-.873.234zm.6-.16c.209.12.28.389.16.598l.173.1a.64.64 0 0 0-.234-.872zm.16.598L6.768 8.213l.173.1 1.612-2.792zM6.767 8.214a.44.44 0 0 1-.266.209l.053.192a.64.64 0 0 0 .388-.303zm-.266.209a.44.44 0 0 1-.336-.043l-.1.173a.64.64 0 0 0 .489.062zm-.336-.043a2.794 2.794 0 0 0-3.814 1.022l.173.1a2.594 2.594 0 0 1 3.541-.95zM2.351 9.402a2.794 2.794 0 0 0 1.022 3.814l.1-.173a2.594 2.594 0 0 1-.949-3.541zm1.022 3.814c.895.517 1.957.48 2.793 0l-.1-.173a2.59 2.59 0 0 1-2.593 0zm7.991-.71a1.58 1.58 0 0 0 1.581-1.58h-.2a1.38 1.38 0 0 1-1.38 1.38zm1.581-1.58a1.58 1.58 0 0 0-1.58-1.58v.2c.762 0 1.38.618 1.38 1.38zm-1.58-1.58a1.58 1.58 0 0 0-1.581 1.58h.2c0-.762.618-1.38 1.38-1.38zm-1.581 1.58c0 .873.707 1.58 1.58 1.58v-.2a1.38 1.38 0 0 1-1.38-1.38zM6.858 5.91c-.377-.615-.156-1.405.504-1.764l-.095-.176c-.756.41-1.02 1.327-.58 2.044zm.504-1.764c.663-.36 1.51-.144 1.89.475l.17-.105c-.438-.714-1.403-.954-2.156-.546zm1.89.475c.377.614.155 1.404-.505 1.763l.096.176c.755-.41 1.02-1.327.579-2.044zm-.505 1.763c-.663.36-1.51.144-1.89-.474l-.17.104c.438.714 1.404.954 2.156.546zm-3.144 5.235c-.359.66-1.149.881-1.764.504l-.104.17c.717.44 1.633.177 2.044-.579zm-1.764.504c-.618-.38-.834-1.226-.474-1.89l-.176-.095c-.408.752-.168 1.718.546 2.156zm-.474-1.89c.359-.66 1.149-.88 1.763-.504l.105-.17c-.718-.44-1.633-.176-2.044.58zm1.763-.504c.619.38.835 1.226.475 1.89l.176.095c.408-.752.167-1.718-.546-2.155z",mask:"url(#webhook_inline_svg__path-1-outside-1_639_2270)"})]}),w9=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#widget_inline_svg__clip0_723_2368)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M5.643 5.643 3.286 3.286m0 9.428 2.357-2.357m4.714 0 2.357 2.357m0-9.428-2.357 2.357M14.667 8A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0m-3.334 0a3.333 3.333 0 1 1-6.666 0 3.333 3.333 0 0 1 6.666 0"})})}),ke=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#workflow_inline_svg__clip0_723_2319)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"M7.333 3H12.2c.747 0 1.12 0 1.405.145.251.128.455.332.583.583.145.285.145.659.145 1.405V6c0 .621 0 .932-.101 1.177a1.33 1.33 0 0 1-.722.722C13.265 8 12.955 8 12.333 8m-3.666 5H3.8c-.747 0-1.12 0-1.405-.145a1.33 1.33 0 0 1-.583-.583c-.145-.285-.145-.659-.145-1.405V10c0-.621 0-.932.101-1.177.135-.327.395-.586.722-.722C2.735 8 3.045 8 3.667 8m3.2 1.667h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352V6.867c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037H6.867c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037m5 5h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352v-2.266c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037h-2.266c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037m-10-10h2.266c.187 0 .28 0 .352-.037a.33.33 0 0 0 .145-.145c.037-.072.037-.165.037-.352V1.867c0-.187 0-.28-.037-.352a.33.33 0 0 0-.145-.145c-.072-.037-.165-.037-.352-.037H1.867c-.187 0-.28 0-.352.037a.33.33 0 0 0-.145.145c-.037.072-.037.165-.037.352v2.266c0 .187 0 .28.037.352a.33.33 0 0 0 .145.145c.072.037.165.037.352.037"})})}),kt=e=>(0,tq.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:[(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M2.58 8.333h2.333a1.5 1.5 0 0 1 1.5 1.5v2.334a1.5 1.5 0 0 1-1.5 1.5H2.58a1.5 1.5 0 0 1-1.5-1.5V9.833a1.5 1.5 0 0 1 1.5-1.5m2.333 4.334a.5.5 0 0 0 .5-.5V9.833a.5.5 0 0 0-.5-.5H2.58a.507.507 0 0 0-.5.5v2.334a.507.507 0 0 0 .5.5z",clipRule:"evenodd"}),(0,tq.jsx)("path",{fill:"currentColor",d:"M9.08 9.167a.5.5 0 1 0 0 1h3.333a.5.5 0 1 0 0-1zM14.413 11.833H9.08a.5.5 0 0 0 0 1h5.333a.5.5 0 1 0 0-1"}),(0,tq.jsx)("path",{fill:"currentColor",fillRule:"evenodd",d:"M13.08 7H2.413A1.333 1.333 0 0 1 1.08 5.667v-2c0-.737.597-1.334 1.333-1.334H13.08c.736 0 1.333.597 1.333 1.334v2c0 .736-.597 1.333-1.333 1.333M2.413 3.333a.333.333 0 0 0-.333.334v2c0 .184.15.333.333.333H13.08c.184 0 .333-.15.333-.333v-2a.333.333 0 0 0-.333-.334z",clipRule:"evenodd"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M2.58 8.333h2.333a1.5 1.5 0 0 1 1.5 1.5v2.334a1.5 1.5 0 0 1-1.5 1.5H2.58a1.5 1.5 0 0 1-1.5-1.5V9.833a1.5 1.5 0 0 1 1.5-1.5Zm2.333 4.334a.5.5 0 0 0 .5-.5V9.833a.5.5 0 0 0-.5-.5H2.58a.507.507 0 0 0-.5.5v2.334a.507.507 0 0 0 .5.5z",clipRule:"evenodd"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M9.08 9.167a.5.5 0 1 0 0 1h3.333a.5.5 0 1 0 0-1zM14.413 11.833H9.08a.5.5 0 0 0 0 1h5.333a.5.5 0 1 0 0-1Z"}),(0,tq.jsx)("path",{stroke:"currentColor",strokeWidth:.5,d:"M13.08 7H2.413A1.333 1.333 0 0 1 1.08 5.667v-2c0-.737.597-1.334 1.333-1.334H13.08c.736 0 1.333.597 1.333 1.334v2c0 .736-.597 1.333-1.333 1.333ZM2.413 3.333a.333.333 0 0 0-.333.334v2c0 .184.15.333.333.333H13.08c.184 0 .333-.15.333-.333v-2a.333.333 0 0 0-.333-.334z",clipRule:"evenodd"})]}),ki=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("g",{clipPath:"url(#x-circle_inline_svg__clip0_723_2417)",children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.4,d:"m10 6-4 4m0-4 4 4m4.667-2A6.667 6.667 0 1 1 1.333 8a6.667 6.667 0 0 1 13.334 0"})})}),kn=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.5,d:"M9.333 1.513v2.754c0 .373 0 .56.073.702a.67.67 0 0 0 .291.292c.143.072.33.072.703.072h2.754M6.334 8l3.333 3.333m0-3.333-3.334 3.333m3-10H5.867c-1.12 0-1.68 0-2.108.218a2 2 0 0 0-.874.874c-.218.428-.218.988-.218 2.108v6.934c0 1.12 0 1.68.218 2.108a2 2 0 0 0 .874.874c.427.218.988.218 2.108.218h4.266c1.12 0 1.68 0 2.108-.218a2 2 0 0 0 .874-.874c.218-.428.218-.988.218-2.108V5.333z"})}),kr=e=>(0,tq.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",fill:"none",viewBox:"0 0 16 16",...e,children:(0,tq.jsx)("path",{stroke:"currentColor",strokeLinecap:"round",strokeLinejoin:"round",strokeWidth:1.3,d:"M10 14v-3.333c0-.92.413-1.334 1.333-1.334s1.334.414 1.334 1.334V14m0-2H10M12.667 6.667H10L12.667 2H10M2.667 10l2 2 2-2M4.667 4v8"})});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.iconLibrary);e.register({name:"a-to-z-order",component:yu}),e.register({name:"accessory",component:ym}),e.register({name:"accordion",component:yp}),e.register({name:"activities",component:yg}),e.register({name:"add-find",component:yh}),e.register({name:"add-folder",component:yy}),e.register({name:"add-image",component:yv}),e.register({name:"add-package",component:yb}),e.register({name:"add-something",component:yx}),e.register({name:"add-user",component:yj}),e.register({name:"addativ-pricing-rules",component:yw}),e.register({name:"advanced-many-to-many-object-relation",component:yk}),e.register({name:"advanced-many-to-many-relation",component:yT}),e.register({name:"alert-outline",component:yS}),e.register({name:"alert",component:yC}),e.register({name:"alternative-element-tree",component:yD}),e.register({name:"appearance-branding",component:yI}),e.register({name:"application-logger",component:yM}),e.register({name:"area-brick",component:yL}),e.register({name:"arrow-narrow-right",component:yF}),e.register({name:"arrow-square-right",component:yE}),e.register({name:"asset-metadata-class-definition",component:yP}),e.register({name:"asset",component:yA}),e.register({name:"attachment",component:yN}),e.register({name:"audio",component:yR}),e.register({name:"auto-save",component:yV}),e.register({name:"autofill",component:yz}),e.register({name:"automation-action",component:yB}),e.register({name:"automation-integration",component:yO}),e.register({name:"batch-selection",component:yK}),e.register({name:"blank",component:y_}),e.register({name:"block",component:yH}),e.register({name:"body-style",component:y$}),e.register({name:"book-open-01",component:yW}),e.register({name:"bookmark-list-asset-folder",component:yq}),e.register({name:"bookmark-list-document-folder",component:yG}),e.register({name:"bookmark-list-object-folder",component:yU}),e.register({name:"bookmark",component:yQ}),e.register({name:"boolean-select",component:yJ}),e.register({name:"cache",component:yZ}),e.register({name:"calculator",component:yY}),e.register({name:"calendar",component:yX}),e.register({name:"cancel",component:y0}),e.register({name:"car",component:y1}),e.register({name:"catalog",component:y2}),e.register({name:"category",component:y3}),e.register({name:"cdp",component:y6}),e.register({name:"channels",component:y4}),e.register({name:"chart-scatter",component:y5}),e.register({name:"check-circle",component:y7}),e.register({name:"checkbox",component:y8}),e.register({name:"checkmark",component:y9}),e.register({name:"chevron-down",component:ve}),e.register({name:"chevron-left",component:vt}),e.register({name:"chevron-right",component:vi}),e.register({name:"chevron-selector-horizontal",component:vn}),e.register({name:"chevron-up",component:vr}),e.register({name:"children-grid",component:va}),e.register({name:"class",component:vl}),e.register({name:"classification-store",component:vo}),e.register({name:"close-filled",component:vs}),e.register({name:"close",component:vd}),e.register({name:"cms",component:vc}),e.register({name:"code",component:vf}),e.register({name:"collapse",component:vu}),e.register({name:"collection",component:vm}),e.register({name:"color",component:vp}),e.register({name:"columns",component:vg}),e.register({name:"combobox-field",component:vh}),e.register({name:"compare",component:vy}),e.register({name:"content-duplicate",component:vv}),e.register({name:"content-settings",component:vb}),e.register({name:"content",component:vx}),e.register({name:"contrast-01",component:vj}),e.register({name:"convert",component:vw}),e.register({name:"copilot-job-runs",component:vk}),e.register({name:"copilot",component:vT}),e.register({name:"copy-03",component:vS}),e.register({name:"copy",component:vC}),e.register({name:"corner-up-left",component:vD}),e.register({name:"counter",component:vI}),e.register({name:"countries-multiple",component:vM}),e.register({name:"country-select",component:vL}),e.register({name:"crm",component:vF}),e.register({name:"crop",component:vE}),e.register({name:"custom-layout",component:vP}),e.register({name:"custom-metadata",component:vA}),e.register({name:"customer-automation",component:vN}),e.register({name:"customer-duplicate",component:vR}),e.register({name:"customer-management",component:vV}),e.register({name:"customer-segment-group",component:vz}),e.register({name:"customer-segment",component:vB}),e.register({name:"customer",component:vO}),e.register({name:"customers",component:vK}),e.register({name:"cut",component:v_}),e.register({name:"dashboard",component:vH}),e.register({name:"data-object-variant",component:v$}),e.register({name:"data-object",component:vW}),e.register({name:"data-objects-importer",component:vq}),e.register({name:"data-quality",component:vG}),e.register({name:"datahub",component:vU}),e.register({name:"date-formatter",component:vQ}),e.register({name:"date-range",component:vJ}),e.register({name:"date-time-field",component:vZ}),e.register({name:"date",component:vY}),e.register({name:"delete-column",component:vX}),e.register({name:"delete-row",component:v0}),e.register({name:"dependencies",component:v1}),e.register({name:"details",component:v2}),e.register({name:"document-configurations",component:v3}),e.register({name:"document-link",component:v6}),e.register({name:"document-types",component:v4}),e.register({name:"document",component:v5}),e.register({name:"double-arrow-down",component:v7}),e.register({name:"double-arrow-left",component:v8}),e.register({name:"double-arrow-right",component:v9}),e.register({name:"double-arrow-up",component:be}),e.register({name:"download-cloud",component:bt}),e.register({name:"download-zip",component:bi}),e.register({name:"download",component:bn}),e.register({name:"draft",component:br}),e.register({name:"drag-option",component:ba}),e.register({name:"drop-target",component:bl}),e.register({name:"dynamic-permission",component:bo}),e.register({name:"edit-pen",component:bs}),e.register({name:"edit",component:bd}),e.register({name:"email",component:bc}),e.register({name:"embedded-metadata",component:bf}),e.register({name:"encrypted",component:bu}),e.register({name:"event",component:bm}),e.register({name:"excluded-from-nav",component:bp}),e.register({name:"expand-01",component:bg}),e.register({name:"expand",component:bh}),e.register({name:"experience-commerce",component:by}),e.register({name:"export",component:bv}),e.register({name:"eye-off",component:bb}),e.register({name:"eye",component:bx}),e.register({name:"factory",component:bj}),e.register({name:"favorites",component:bw}),e.register({name:"field-collection-field",component:bk}),e.register({name:"field-container",component:bT}),e.register({name:"fieldset",component:bS}),e.register({name:"file-check-03",component:bC}),e.register({name:"file-export",component:bD}),e.register({name:"file-locked",component:bI}),e.register({name:"filter",component:bM}),e.register({name:"flag",component:bL}),e.register({name:"flip-forward",component:bF}),e.register({name:"focal-point",component:bE}),e.register({name:"folder-plus",component:bP}),e.register({name:"folder-search",component:bA}),e.register({name:"folder",component:bN}),e.register({name:"formatters",component:bR}),e.register({name:"gdpr-extractor",component:bV}),e.register({name:"gender",component:bz}),e.register({name:"geographical-bounds",component:bB}),e.register({name:"geographical-polygon",component:bO}),e.register({name:"geographical-polyline",component:bK}),e.register({name:"graph",component:b_}),e.register({name:"graphql",component:bH}),e.register({name:"group-by-keys",component:b$}),e.register({name:"group",component:bW}),e.register({name:"hardlink",component:bq}),e.register({name:"heading",component:bG}),e.register({name:"headless-brick",component:bU}),e.register({name:"headless-document",component:bQ}),e.register({name:"headless-template",component:bJ}),e.register({name:"help-circle",component:bZ}),e.register({name:"history",component:bY}),e.register({name:"home-root-folder",component:bX}),e.register({name:"image-advanced",component:b0}),e.register({name:"image-external",component:b1}),e.register({name:"image-gallery",component:b2}),e.register({name:"image-thumbnail-clear",component:b3}),e.register({name:"image-thumbnail",component:b6}),e.register({name:"image",component:b4}),e.register({name:"import-csv",component:b5}),e.register({name:"import",component:b7}),e.register({name:"index-field",component:b8}),e.register({name:"info-circle",component:b9}),e.register({name:"info",component:xe}),e.register({name:"inheritance-active",component:xt}),e.register({name:"inheritance-broken",component:xi}),e.register({name:"inline-help",component:xn}),e.register({name:"input-quantity-value",component:xr}),e.register({name:"interaction-action",component:xa}),e.register({name:"json",component:xl}),e.register({name:"key",component:xo}),e.register({name:"keyboard",component:xs}),e.register({name:"keys",component:xd}),e.register({name:"language-overview",component:xc}),e.register({name:"language-select",component:xf}),e.register({name:"last-rule-pricing-rules",component:xu}),e.register({name:"layout-grid-02",component:xm}),e.register({name:"layout",component:xp}),e.register({name:"link-document",component:xg}),e.register({name:"list",component:xh}),e.register({name:"loading",component:xy}),e.register({name:"locale-collector",component:xv}),e.register({name:"locale-switcher",component:xb}),e.register({name:"location-marker",component:xx}),e.register({name:"lock-circle",component:xj}),e.register({name:"lock",component:xw}),e.register({name:"locked",component:xk}),e.register({name:"log-out",component:xT}),e.register({name:"long-text",component:xS}),e.register({name:"mail-02",component:xC}),e.register({name:"mail-answer",component:xD}),e.register({name:"manual-order",component:xI}),e.register({name:"many-to-many-object-relation",component:xM}),e.register({name:"many-to-many-relation",component:xL}),e.register({name:"many-to-many",component:xF}),e.register({name:"many-to-one-relation",component:xE}),e.register({name:"market",component:xP}),e.register({name:"marketing",component:xA}),e.register({name:"media",component:xN}),e.register({name:"menu-shortcut",component:xR}),e.register({name:"menu",component:xV}),e.register({name:"minus-square",component:xz}),e.register({name:"minus",component:xB}),e.register({name:"monitor",component:xO}),e.register({name:"more",component:xK}),e.register({name:"move-down",component:x_}),e.register({name:"move-up",component:xH}),e.register({name:"multi-select",component:x$}),e.register({name:"multiple-field",component:xW}),e.register({name:"name",component:xq}),e.register({name:"navigation",component:xG}),e.register({name:"new-circle",component:xU}),e.register({name:"new-column",component:xQ}),e.register({name:"new-data-component",component:xJ}),e.register({name:"new-document",component:xZ}),e.register({name:"new-hotspot",component:xY}),e.register({name:"new-layout",component:xX}),e.register({name:"new-marker",component:x0}),e.register({name:"new-row",component:x1}),e.register({name:"new-something",component:x2}),e.register({name:"new",component:x3}),e.register({name:"news",component:x6}),e.register({name:"newsletter-active",component:x4}),e.register({name:"newsletter-confirmed",component:x5}),e.register({name:"no-content",component:x7}),e.register({name:"not-visible-element",component:x8}),e.register({name:"notes-events",component:x9}),e.register({name:"notification-read",component:je}),e.register({name:"notification-unread",component:jt}),e.register({name:"number-field",component:ji}),e.register({name:"number-range",component:jn}),e.register({name:"number-type",component:jr}),e.register({name:"object-bricks",component:ja}),e.register({name:"open-folder",component:jl}),e.register({name:"openid-connect",component:jo}),e.register({name:"operator-concatenator",component:js}),e.register({name:"order",component:jd}),e.register({name:"other-operators",component:jc}),e.register({name:"other",component:jf}),e.register({name:"package",component:ju}),e.register({name:"panel",component:jm}),e.register({name:"password",component:jp}),e.register({name:"paste",component:jg}),e.register({name:"pdf",component:jh}),e.register({name:"permission-many-to-one",component:jy}),e.register({name:"permission-object",component:jv}),e.register({name:"permission-resource",component:jb}),e.register({name:"personal-user",component:jx}),e.register({name:"phone-horizontal",component:jj}),e.register({name:"phone",component:jw}),e.register({name:"pie-chart",component:jk}),e.register({name:"pimcore",component:jT}),e.register({name:"pin",component:jS}),e.register({name:"pined",component:jC}),e.register({name:"plus-circle",component:jD}),e.register({name:"plus-square",component:jI}),e.register({name:"portal-engine-collections",component:jM}),e.register({name:"portal-engine-index",component:jL}),e.register({name:"portal-engine-wizard",component:jF}),e.register({name:"presentation",component:jE}),e.register({name:"preview",component:jP}),e.register({name:"pricing-rules",component:jA}),e.register({name:"print-settings",component:jN}),e.register({name:"printpage",component:jR}),e.register({name:"productsup",component:jV}),e.register({name:"properties",component:jz}),e.register({name:"published",component:jB}),e.register({name:"quantity-value-range",component:jO}),e.register({name:"quantity-value",component:jK}),e.register({name:"questionmark",component:j_}),e.register({name:"quick-access",component:jH}),e.register({name:"redirect",component:j$}),e.register({name:"refresh",component:jW}),e.register({name:"region",component:jq}),e.register({name:"relation",component:jG}),e.register({name:"remove-image-thumbnail",component:jU}),e.register({name:"remove-marker",component:jQ}),e.register({name:"remove-pdf-thumbnail",component:jJ}),e.register({name:"remove-video-thumbnail",component:jZ}),e.register({name:"rename",component:jY}),e.register({name:"reporting",component:jX}),e.register({name:"required-by",component:j0}),e.register({name:"requires",component:j1}),e.register({name:"restore",component:j2}),e.register({name:"reverse-object-relation",component:j3}),e.register({name:"reverse",component:j6}),e.register({name:"run",component:j4}),e.register({name:"save",component:j5}),e.register({name:"schedule",component:j7}),e.register({name:"search",component:j8}),e.register({name:"segment-tagging",component:j9}),e.register({name:"select-type",component:we}),e.register({name:"send-03",component:wt}),e.register({name:"seo",component:wi}),e.register({name:"settings-brightness",component:wn}),e.register({name:"settings",component:wr}),e.register({name:"share-with-users",component:wa}),e.register({name:"share",component:wl}),e.register({name:"shared-users",component:wo}),e.register({name:"shield-plus",component:ws}),e.register({name:"shield",component:wd}),e.register({name:"show-details",component:wc}),e.register({name:"simple-rest-service",component:wf}),e.register({name:"slider",component:wu}),e.register({name:"snippet",component:wm}),e.register({name:"spinner",component:wp}),e.register({name:"split-view",component:wg}),e.register({name:"structured-table",component:wh}),e.register({name:"style",component:wy}),e.register({name:"subscription-community",component:wv}),e.register({name:"subscription-enterprise",component:wb}),e.register({name:"substring",component:wx}),e.register({name:"system-columns",component:wj}),e.register({name:"system-settings",component:ww}),e.register({name:"tab-panel",component:wk}),e.register({name:"table",component:wT}),e.register({name:"tablet",component:wS}),e.register({name:"tag-configuration",component:wC}),e.register({name:"tag",component:wD}),e.register({name:"target-group",component:wI}),e.register({name:"target",component:wM}),e.register({name:"tax-class",component:wL}),e.register({name:"test",component:wF}),e.register({name:"text-field",component:wE}),e.register({name:"text-input",component:wP}),e.register({name:"thumbnail-html",component:wA}),e.register({name:"time",component:wN}),e.register({name:"transfer",component:wR}),e.register({name:"transformers",component:wV}),e.register({name:"translate",component:wz}),e.register({name:"translations",component:wB}),e.register({name:"trash",component:wO}),e.register({name:"tree",component:wK}),e.register({name:"trimmer",component:w_}),e.register({name:"txt-docs",component:wH}),e.register({name:"unknown",component:w$}),e.register({name:"unlink-document",component:wW}),e.register({name:"unlocked",component:wq}),e.register({name:"upload-cloud",component:wG}),e.register({name:"upload-import",component:wU}),e.register({name:"upload-zip",component:wQ}),e.register({name:"upload",component:wJ}),e.register({name:"url-slug",component:wZ}),e.register({name:"user-select",component:wY}),e.register({name:"user",component:wX}),e.register({name:"users-x",component:w0}),e.register({name:"vector",component:w1}),e.register({name:"video-thumbnail",component:w2}),e.register({name:"video",component:w3}),e.register({name:"view",component:w6}),e.register({name:"voucher",component:w4}),e.register({name:"warning-circle",component:w5}),e.register({name:"web-settings",component:w7}),e.register({name:"webhook",component:w8}),e.register({name:"widget",component:w9}),e.register({name:"workflow",component:ke}),e.register({name:"wysiwyg-field",component:kt}),e.register({name:"x-circle",component:ki}),e.register({name:"xlsx-csv",component:kn}),e.register({name:"z-to-a-order",component:kr})}});let ka=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` - display: flex; - justify-content: center; - align-items: center; - height: 100%; - width: 100%; - object-fit: contain; - - iframe { - display: flex; - height: 100%; - width: 100%; - } - `}},{hashPriority:"low"}),kl=e=>{let{styles:t}=ka(),{src:i}=e;return(0,tq.jsx)("div",{className:t.preview,children:(0,tq.jsx)(hs.l,{src:i})})};var ko=i(27732),ks=i(89354),kd=i(33082),kc=i(73362);let kf=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{container:i` - height: 100%; - padding: ${t.padding}px; - `,innerContainer:i``,thumbnailContainer:i` - max-height: 800px; - - .ant-image-img { - max-height: 800px; - } - `,thumbnail:i``}});var ku=i(77060);let km=e=>{let{styles:t}=kf(),{t:i}=(0,iQ.useTranslation)(),{assetId:n,fullPath:r}=e,a=(0,tG.useMemo)(()=>(0,ku.Z)(`${(0,tD.$)()}/assets/${n}/document/stream/thumbnail/document-thumbnail`),[n]);return(0,tq.jsx)(ap.s,{align:"center",className:t.container,justify:"center",children:(0,tq.jsxs)(ap.s,{align:"center",className:t.innerContainer,justify:"center",vertical:!0,children:[(0,tq.jsx)(pa.a,{className:t.thumbnailContainer,children:(0,tq.jsx)(ig.Image,{alt:"",className:t.thumbnail,placeholder:(0,tq.jsx)(ni.Spin,{}),preview:!1,src:a})}),(0,tq.jsx)(pa.a,{margin:{y:"normal"},children:(0,tq.jsx)(az.$,{onClick:()=>{window.open(r,"_blank")},type:"default",children:i("asset.asset-editor-tabs.preview.open-in-new-window")})})]})})},kp=()=>{var e;let{id:t}=(0,ko.Q)(),{isLoading:i,asset:n}=(0,ks.l)(t),[r,a]=(0,tG.useState)(""),[l,o]=(0,tG.useState)(!1),{data:s,isLoading:d}=(0,kc.useAssetCustomSettingsGetByIdQuery)({id:t}),c=null==s||null==(e=s.items)?void 0:e.dynamicCustomSettings,f=(0,tI.has)(c,"document_pdf_scan_status")&&"unsafe"===c.document_pdf_scan_status;return((0,tG.useEffect)(()=>{i||d||f||(0,kd.$)({url:`${(0,tD.$)()}/assets/${t}/document/stream/pdf-preview`,throwOnError:!0,onSuccess:e=>{a(URL.createObjectURL(e))}}).catch(()=>{o(!0)})},[t,i,d,f]),i||d)?(0,tq.jsx)(uE.U,{loading:!0}):f||l?(0,tq.jsx)(pl.s,{children:(0,tq.jsx)(km,{assetId:t,fullPath:(null==n?void 0:n.fullPath)??""})}):""===r?(0,tq.jsx)(uE.U,{loading:!0}):(0,tq.jsx)(pl.s,{children:(0,tq.jsx)(kl,{src:r})})};var kg=i(22611),kh=i(49583);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/DocumentTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tq.jsx)(kp,{}),icon:(0,tq.jsx)(r9.I,{value:"view"})}),e.register(kg.y5),e.register(kh.Aj),e.register(kg.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}});var ky=i(39857);let kv=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(po.d,{pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>t("component.pagination.showing-items",{total:e}),...e})};var kb=i(97668),kx=i(76497),kj=i(47904),kw=i(47920);let kk=e=>{let{asset:t}=e,{openAsset:i}=(0,kx.G)(),n=(0,kj.W)(kw.r.assetPreviewCard.name,{asset:t,onComplete:()=>{}});return(0,tq.jsx)(kb.N,{dropdownItems:n,imgSrc:"imageThumbnailPath"in t&&(0,tI.isString)(t.imageThumbnailPath)?t.imageThumbnailPath:t.icon,name:t.filename,onClick:e=>{i({config:{id:t.id}})}},t.id)},kT=()=>{let e=(0,tG.useContext)(ky.m),[t,i]=(0,tG.useState)(1),[n,r]=(0,tG.useState)(20),a=e.id,{asset:l}=(0,ks.l)(a),{data:o,isFetching:s,refetch:d}=(0,kc.useAssetGetTreeQuery)({pathIncludeDescendants:!0,page:t,pageSize:n,excludeFolders:!0,path:null==l?void 0:l.fullPath},{refetchOnMountOrArgChange:!0}),c=(null==o?void 0:o.totalItems)??0;function f(e,t){i(e),r(t)}return(0,tG.useMemo)(()=>(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{justify:"flex-end",theme:"secondary",children:(0,tq.jsxs)(ni.Split,{size:"extra-small",children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"refresh"},loading:s,onClick:async()=>await d()}),(0,tq.jsx)(kv,{current:t,defaultPageSize:n,onChange:f,total:c})]})}),children:(0,tq.jsx)(uE.U,{loading:s,padded:!0,children:(null==o?void 0:o.items)!==void 0&&o.items.length>0&&(0,tq.jsx)(ap.s,{gap:"extra-small",wrap:!0,children:o.items.map((e,t)=>(0,tq.jsx)(kk,{asset:e},`${e.id}-${t}`))})})}),[t,n,o,s])};var kS=i(50936);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/FolderTabManager"]);e.register({children:(0,tq.jsx)(kT,{}),icon:(0,tq.jsx)(r9.I,{value:"image"}),key:"preview",label:"folder.folder-editor-tabs.preview"}),e.register(kS.h),e.register(kh.Aj),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}});let kC=()=>{let{id:e}=(0,iZ.J)(),t=`/pimcore-studio/api/image-editor?id=${e}`;return(0,tq.jsx)(dA.v,{src:t,title:"Image Editor"})},kD=()=>(0,tq.jsx)(uE.U,{children:(0,tq.jsx)(kC,{})}),kI=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{imageContainer:i` - display: grid; - height: 100%; - width: 100%; - overflow-x: auto; - overflow-y: auto; - `,floatingContainer:i` - position: fixed; - bottom: 60px; - right: 60px; - `,flexContainer:i` - display: flex; - justify-content: center; - align-items: center; - height: 100%; - pointer-events: auto; - `}},{hashPriority:"low"});var kM=i(94447),kL=i(71504),kF=i(78744);let kE=e=>{let{src:t}=e,[i,n]=(0,tG.useState)((0,ku.Z)(t)),{styles:r}=kI(),a=(0,tG.useContext)(kF.X),{zoom:l,setZoom:o}=tU().useContext(kW),{containerRef:s}=a;return(0,tG.useEffect)(()=>{let e=e=>{let{type:i,message:r}=e.data;"MiniPaint"===i&&"Image successfully saved!"===r&&n((0,ku.Z)(t))};return window.addEventListener("message",e),()=>{window.removeEventListener("message",e)}},[]),(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)("div",{className:r.imageContainer,ref:s,children:(0,tq.jsx)(kL.S,{imageSrc:i,zoom:l})}),(0,tq.jsx)("div",{className:r.floatingContainer,children:(0,tq.jsx)("div",{className:r.flexContainer,children:(0,tq.jsx)(kM.P,{setZoom:o,zoom:l})})})]})};var kP=i(10883),kA=i(94392);class kN extends kA.e{}var kR=i(29150);let kV=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{sidebarContentEntry:i` - .sidebar__content-label { - color: ${t.colorPrimaryActive}; - line-height: 20px; - font-weight: 600; - margin: 0; - padding-bottom: ${t.paddingXS}px; - - &:not(:first-of-type) { - padding-top: ${t.paddingXS}px; - } - } - `,sidebarContentDimensions:i` - display: flex; - flex-direction: column; - align-items: flex-start; - align-self: stretch; - - .entry-content__dimensions-label { - display: flex; - padding-bottom: ${t.paddingXXS}; - gap: ${t.marginMD}px; - align-items: center; - gap: ${t.marginXXS}; - align-self: stretch; - - p { - margin: 0 - } - } - - .entry-content__dimensions-content { - color: ${t.colorTextDescription}; - display: flex; - padding-bottom: ${t.paddingXXS}; - gap: ${t.marginMD}px; - align-items: center; - gap: ${t.marginXXS}; - align-self: stretch; - - p { - margin: 0; - line-height: 22px; - } - } - `,sidebarContentDownload:i` - .entry-content__download-content-thumbnail { - display: flex; - align-items: center; - gap: ${t.paddingXXS}px; - padding-bottom: ${t.paddingSM}px; - - .ant-select { - flex: 1 - } - } - - .entry-content__download-content-custom { - .ant-form-item { - margin-bottom: 0; - } - - .entry-content__download-content-custom__dimensions { - display: flex; - gap: ${t.marginSM}px; - padding-bottom: ${t.paddingSM}px; - } - - .entry-content__download-content-custom__others { - display: flex; - gap: ${t.paddingXS}px; - flex-direction: column; - padding-bottom: ${t.paddingSM}px; - - > div { - display: flex; - gap: ${t.marginSM}px; - - >.ant-form-item { - flex: 1 - } - } - } - - .entry-content__download-content-custom__button { - padding: ${t.paddingXS}px 0; - } - - .entry-content__download-content-custom__default { - color: ${t.colorTextDescription}; - } - } - `}},{hashPriority:"low"});var kz=i(93464);let kB=e=>{let{width:t,height:i,onClickDownloadByFormat:n,onClickCustomDownload:r}=e,[a,l]=(0,tG.useState)("original"),[o,s]=(0,tG.useState)(t),[d,c]=(0,tG.useState)(i),[f,u]=(0,tG.useState)(-1),[m,p]=(0,tG.useState)(-1),[g,h]=(0,tG.useState)("scaleByWidth"),[y,v]=(0,tG.useState)("JPEG"),{styles:b}=kV(),{t:x}=(0,iQ.useTranslation)(),{getModes:j,getFormats:w,getDownloadFormats:k}=(()=>{let{t:e}=(0,iQ.useTranslation)();return{getModes:()=>[{value:"resize",label:e("resize")},{value:"scaleByWidth",label:(0,tq.jsxs)(tq.Fragment,{children:[e("scaleByWidth")+" ",(0,tq.jsxs)("span",{className:"entry-content__download-content-custom__default",children:["(",e("default"),")"]})]})},{value:"scaleByHeight",label:e("scaleByHeight")}],getFormats:()=>[{value:"JPEG",label:(0,tq.jsxs)(tq.Fragment,{children:["JPEG ",(0,tq.jsxs)("span",{className:"entry-content__download-content-custom__default",children:["(",e("default"),")"]})]})},{value:"PNG",label:"PNG"}],getDownloadFormats:()=>[{value:"original",label:e("asset.sidebar.original-file")},{value:"web",label:e("asset.sidebar.web-format")},{value:"print",label:e("asset.sidebar.print-format")},{value:"office",label:e("asset.sidebar.office-format")}]}})(),T=j(),S=w(),C=k(),D={label:(0,tq.jsx)("span",{children:x("image-sidebar.tab.details.custom-download")}),children:(0,tq.jsxs)(ig.Form,{initialValues:{width:t,height:i,mode:g,format:y},layout:"vertical",children:[(0,tq.jsxs)("div",{className:"entry-content__download-content-custom__dimensions",children:[(0,tq.jsx)(ig.Form.Item,{label:x("width"),name:"width",children:(0,tq.jsx)(ig.Input,{onChange:e=>{s(e.target.value)},type:"number"})}),(0,tq.jsx)(ig.Form.Item,{label:x("height"),name:"height",children:(0,tq.jsx)(ig.Input,{onChange:e=>{c(e.target.value)},type:"number"})})]}),(0,tq.jsxs)("div",{className:"entry-content__download-content-custom__others",children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ig.Form.Item,{label:x("quality"),name:"quality",children:(0,tq.jsx)(ig.Input,{onChange:e=>{u(e.target.value)},type:"number"})}),(0,tq.jsx)(ig.Form.Item,{label:"DPI",name:"dpi",children:(0,tq.jsx)(ig.Input,{onChange:e=>{p(e.target.value)},type:"number"})})]}),(0,tq.jsx)("div",{children:(0,tq.jsx)(ig.Form.Item,{label:x("mode"),name:"mode",children:(0,tq.jsx)(t8.l,{"aria-label":x("aria.asset.image-sidebar.tab.details.custom-thumbnail-mode"),onChange:e=>{h(e)},options:T})})}),(0,tq.jsx)("div",{children:(0,tq.jsx)(ig.Form.Item,{label:x("format"),name:"format",children:(0,tq.jsx)(t8.l,{"aria-label":x("aria.asset.image-sidebar.tab.details.custom-thumbnail-format"),onChange:e=>{v(e)},options:S})})})]}),(0,tq.jsx)("div",{className:"entry-content__download-content-custom__button",children:(0,tq.jsx)(az.$,{"aria-label":x("aria.asset.image-sidebar.tab.details.download-custom-thumbnail"),onClick:()=>{r({width:o,height:d,quality:f,dpi:m,mode:g,format:y})},children:x("download")})})]})};return(0,tq.jsxs)(uE.U,{className:b.sidebarContentEntry,padded:!0,padding:{top:"none",x:"small",bottom:"mini"},children:[(0,tq.jsx)(kR.Y,{title:x("asset.sidebar.details")}),(0,tq.jsxs)("div",{className:"sidebar__content-entry-content",children:[(0,tq.jsxs)("div",{className:b.sidebarContentDimensions,children:[(0,tq.jsxs)("div",{className:"entry-content__dimensions-label",children:[(0,tq.jsx)("p",{children:x("width")}),(0,tq.jsx)("p",{children:x("height")})]}),(0,tq.jsxs)("div",{className:"m-t-mini entry-content__dimensions-content",children:[(0,tq.jsxs)("p",{children:[t," px"]}),(0,tq.jsxs)("p",{children:[i," px"]})]})]}),(0,tq.jsxs)("div",{className:["m-t-small",b.sidebarContentDownload].join(" "),children:[(0,tq.jsx)("p",{className:"sidebar__content-label",children:x("download")}),(0,tq.jsxs)("div",{className:"entry-content__download-content",children:[(0,tq.jsxs)("div",{className:"entry-content__download-content-thumbnail",children:[(0,tq.jsx)(t8.l,{"aria-label":x("aria.asset.image-sidebar.tab.details.precreated-thumbnail"),onChange:e=>{l(e)},options:C,value:a}),(0,tq.jsx)(lp.K,{"aria-label":x("aria.asset.image-sidebar.tab.details.download-thumbnail"),icon:{value:"download"},onClick:()=>{n(a)}})]}),(0,tq.jsx)("div",{className:"entry-content__download-content-custom",children:(0,tq.jsx)(kz.X,{...D,defaultActive:!0,size:"small",theme:"simple"})})]})]})]})]})};var kO=i(21313),kK=i(84218);let k_=e=>{let{id:t}=(0,tG.useContext)(ky.m),i=(0,tG.useContext)(kF.X),{addImageSettings:n}=(0,ks.l)(t),r=()=>{if(!(0,tI.isUndefined)(i)){let{isActive:r,setIsActive:a,setCoordinates:l,containerRef:o}=i;if(!(0,tI.isNull)(o.current)){var e,t;let i=o.current,s=i.scrollLeft,d=i.scrollTop,c=i.clientWidth,f=i.clientHeight,u=(null==i||null==(e=i.firstElementChild)?void 0:e.clientWidth)??0,m=(null==i||null==(t=i.firstElementChild)?void 0:t.clientHeight)??0,p={x:u>=c?(s+c/2)/u*100:50,y:m>=f?(d+f/2)/m*100:50};l(p),n({focalPoint:p}),a(!r)}}};return(0,tq.jsx)("div",{"aria-label":e.key,className:lx()("button",{"button--highlighted":(null==i?void 0:i.isActive)===!0}),onClick:r,onKeyDown:r,role:"button",tabIndex:e.index,children:e.icon},e.key)},kH=new kN;kH.registerEntry({key:"details",icon:(0,tq.jsx)(r9.I,{options:{width:"16px",height:"16px"},value:"details"}),component:(0,tq.jsx)(()=>{let e=(0,tG.useContext)(ky.m),{data:t}=(0,kc.useAssetGetByIdQuery)({id:e.id});return(0,tq.jsx)(kB,{height:t.height??0,onClickCustomDownload:async i=>{!function(e,i){let{width:n,height:r,quality:a,dpi:l,mode:o,format:s}=i,d=[{key:"mimeType",value:s},{key:"resizeMode",value:o},{key:"dpi",value:l.toString()},{key:"quality",value:a.toString()},{key:"height",value:r.toString()},{key:"width",value:n.toString()}],c=(0,kK.G)(d,["","-1"]);fetch(`${(0,tD.$)()}/assets/${e}/image/download/custom?${c}`).then(async e=>await e.blob()).then(e=>{var i,n,r;let a,l=URL.createObjectURL(e);i=t.filename,n=l,r=s,a=(0,kO.G)(i,r.toLowerCase()),(0,kO.l)(n,a)}).catch(()=>{(0,iX.Ay)(new iX.$g("Could not download image"))})}(e.id,i)},onClickDownloadByFormat:async t=>{var n,r;n=e.id,"original"===(r=t)?i(`${(0,tD.$)()}/assets/${n}/download`,r):i(`${(0,tD.$)()}/assets/${n}/image/download/format/${r}`,r)},width:t.width??0});function i(e,i){fetch(e).then(async e=>await e.blob()).then(e=>{var n,r,a;let l,o=URL.createObjectURL(e);n=t.filename,r=o,a=i,l=n,"original"!==a&&(l=(0,kO.G)(n,"jpg")),(0,kO.l)(r,l)}).catch(()=>{(0,iX.Ay)(new iX.$g("Could not prepare download"))})}},{})}),kH.registerButton({key:"focal-point",icon:(0,tq.jsx)(r9.I,{options:{width:"16px",height:"16px"},value:"focal-point"}),component:(0,tq.jsx)(k_,{icon:(0,tq.jsx)(r9.I,{options:{width:"16px",height:"16px"},value:"focal-point"})},"focal-point")});var k$=i(27886);let kW=(0,tG.createContext)({zoom:100,setZoom:()=>{}}),kq=()=>{let[e,t]=(0,tG.useState)(100),{id:i}=(0,tG.useContext)(ky.m),{isLoading:n}=(0,ks.l)(i),r=kH.getEntries(),a=kH.getButtons(),l=(0,tG.useMemo)(()=>({zoom:e,setZoom:t}),[e]),o=`${(0,tD.$)()}/assets/${i}/image/stream/preview`;return n?(0,tq.jsx)(uE.U,{loading:!0}):(0,tq.jsx)(k$.L,{children:(0,tq.jsx)(kW.Provider,{value:l,children:(0,tq.jsx)(pl.s,{renderSidebar:(0,tq.jsx)(kP.B,{buttons:a,entries:r}),children:(0,tq.jsx)(kE,{src:o})})})})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/ImageTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tq.jsx)(kq,{}),icon:(0,tq.jsx)(r9.I,{value:"view"})}),e.register({key:"edit",workspacePermission:"publish",label:"edit",children:(0,tq.jsx)(kD,{}),icon:(0,tq.jsx)(r9.I,{value:"edit-pen"})}),e.register(kg.rV),e.register(kg.y5),e.register(kh.Aj),e.register(kg.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}});var kG=i(91883);let kU=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{relativeContainer:i` - position: relative; - width: 100%; - `}}),kQ=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` - display: flex; - justify-content: center; - align-items: center; - height: 100%; - width: 100%; - object-fit: contain; - - iframe { - display: flex; - height: 100%; - width: 100%; - } - `}},{hashPriority:"low"});var kJ=i(95884);let kZ=e=>{let{styles:t}=kQ(),{src:i,language:n,updateTextData:r}=e,[a,l]=(0,tG.useState)(i??"");return(0,tq.jsx)("div",{className:t.preview,children:(0,tq.jsx)(kJ.t,{language:n,setTextValue:e=>{l(e),r(e)},textValue:a})})};var kY=i(75240);let kX=()=>{let e=(0,tG.useContext)(ky.m),{asset:t,updateTextData:i}=(0,ks.l)(e.id),{data:n,isError:r}=(0,kc.useAssetGetTextDataByIdQuery)({id:e.id}),{styles:a}=kU(),{t:l}=(0,iQ.useTranslation)(),o=null;return((0,tI.isString)(null==t?void 0:t.filename)&&(o=(0,kG.r)(t.filename)),r)?(0,tq.jsx)(pa.a,{padding:"extra-small",children:(0,tq.jsx)(kY.F,{message:l("preview-not-available"),showIcon:!0,type:"info"})}):(0,tq.jsx)("div",{className:a.relativeContainer,children:(0,pD.vM)(n)&&(0,tq.jsx)(kZ,{language:o,src:n.data,updateTextData:e=>{i(e)}})})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/TextTabManager"]);e.register({key:"edit",label:"edit",children:(0,tq.jsx)(kX,{}),icon:(0,tq.jsx)(r9.I,{value:"edit-pen"})}),e.register(kg.y5),e.register(kh.Aj),e.register(kg.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}});let k0=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` - display: flex; - justify-content: center; - align-items: center; - height: 100%; - width: 100%; - object-fit: contain; - - video { - display: flex; - max-height: 70%; - max-width: 70%; - } - `}},{hashPriority:"low"}),k1=e=>{let{styles:t}=k0(),{src:i,poster:n}=e;return(0,tq.jsx)("div",{className:t.preview,children:(0,tq.jsx)(ho.$,{poster:n,sources:[{src:i}]})})};class k2 extends kA.e{}let k3=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{sidebarContentEntry:i` - .sidebar__content-label { - color: ${t.colorPrimaryActive}; - line-height: 20px; - font-weight: 600; - margin: 0; - padding-bottom: ${t.paddingXS}px; - - &:not(:first-of-type) { - padding-top: ${t.paddingXS}px; - } - } - .sidebar__content-hr { - position: absolute; - left: 0; - right: 0; - border-color: ${t.colorSplit}; - margin: 0; - } - `,sidebarContentDimensions:i` - display: flex; - flex-direction: column; - align-items: flex-start; - align-self: stretch; - - .entry-content__dimensions-label { - display: flex; - padding-bottom: ${t.paddingXXS}; - gap: ${t.marginMD}px; - align-items: center; - gap: ${t.marginXXS}; - align-self: stretch; - - p { - margin: 0 - } - } - - .entry-content__dimensions-content { - color: ${t.colorTextDescription}; - display: flex; - padding-bottom: ${t.paddingXXS}; - gap: ${t.marginMD}px; - align-items: center; - gap: ${t.marginXXS}; - align-self: stretch; - - p { - margin: 0; - line-height: 22px; - } - } - `,sidebarContentDownload:i` - .entry-content__download-content-thumbnail { - display: flex; - align-items: center; - gap: ${t.paddingXXS}px; - padding-bottom: ${t.paddingSM}px; - - .ant-select { - flex: 1 - } - } - - .entry-content__download-content-custom { - .ant-form-item { - margin-bottom: 0; - } - - .entry-content__download-content-custom__dimensions { - display: flex; - gap: ${t.marginSM}px; - padding-bottom: ${t.paddingSM}px; - } - - .entry-content__download-content-custom__others { - display: flex; - gap: ${t.paddingXS}px; - flex-direction: column; - padding-bottom: ${t.paddingSM}px; - - > div { - display: flex; - gap: ${t.marginSM}px; - - >.ant-form-item { - flex: 1 - } - } - } - - .entry-content__download-content-custom__button { - padding: ${t.paddingXS}px 0; - } - } - `,sidebarContentImagePreview:i` - & > .sidebar__content-label { - margin-top: ${t.marginXS}px; - } - - .ant-btn-group { - button { - padding: 0 4px; - height: 24px; - border-radius: unset; - } - button:nth-child(1) { - border-top-left-radius: 6px; - border-bottom-left-radius: 6px; - } - button:nth-child(2) { - border-top-right-radius: 6px; - border-bottom-right-radius: 6px; - } - } - - .ant-card { - height: 208px; - } - - .ant-card, .ant-card-meta-title { - margin-top: ${t.marginSM}px; - } - - .image-preview-container { - height: 129px; - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - - div { - display: flex; - gap: ${t.marginXXS}px; - } - - span { - margin-top: ${t.marginSM}px; - } - } - - .image-preview__toolbar { - position: absolute; - left: 0; - right: 0; - background: none; - margin-top: ${t.marginXS}px - } - `}},{hashPriority:"low"});var k6=i(26476),k4=i(29653),k5=i(72346);let k7=(0,tG.forwardRef)(function(e,t){let{getStateClasses:i}=(0,dM.z)(),n={width:"21px",height:"21px"},{t:r}=(0,iQ.useTranslation)(),a=(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)(r9.I,{options:n,value:"new"}),(0,tq.jsx)(r9.I,{options:n,value:"drop-target"})]}),(0,tq.jsx)("span",{children:r("drag-and-drop-asset")})]});return""!==e.imgSrc&&(a=(0,tq.jsx)(k5.R,{src:e.imgSrc})),(0,tq.jsx)("div",{className:["image-preview-container",...i()].join(" "),ref:t,children:a})}),k8=e=>{let t,{width:i,height:n,thumbnails:r,imagePreview:a,onApplyPlayerPosition:l,onChangeThumbnail:o,onClickDownloadByFormat:s,onDropImage:d,isDownloading:c}=e,{styles:f}=k3(),{t:u}=(0,iQ.useTranslation)(),[m,p]=(0,tG.useState)("media"),[g,h]=(0,tG.useState)("pimcore-system-treepreview"),[y,v]=(0,tG.useState)(!1),[b,x]=(0,tG.useState)(!1),[j,w]=(0,tG.useState)("pimcore-system-treepreview"),k=r.map(e=>({value:e.id,label:e.text}));return t="media"===m?(0,tq.jsxs)(tq.Fragment,{children:[b?(0,tq.jsx)(uE.U,{loading:!0}):(0,tq.jsx)(lM.g,{isValidContext:e=>"asset"===e.type,onDrop:function(e){x(!0),d(e.data.id,()=>{x(!1)})},children:(0,tq.jsx)(k7,{imgSrc:a})}),(0,tq.jsx)(k4.A,{title:(0,tq.jsx)(pc.M,{theme:"secondary",children:(0,tq.jsx)("div",{})})})]}):(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)("div",{className:"image-preview-container",children:(0,tq.jsx)(k5.R,{src:a})}),(0,tq.jsx)(k4.A,{title:(0,tq.jsx)(pc.M,{justify:"flex-end",theme:"secondary",children:(0,tq.jsx)(ig.Button,{loading:y,onClick:function(){v(!0),l(()=>{v(!1)})},children:u("apply")})})})]}),(0,tq.jsxs)(uE.U,{className:f.sidebarContentEntry,padded:!0,padding:{top:"none",x:"small",bottom:"mini"},children:[(0,tq.jsx)(kR.Y,{title:u("asset.sidebar.details")}),(0,tq.jsxs)("div",{className:"sidebar__content-entry-content",children:[(0,tq.jsxs)("div",{className:f.sidebarContentDimensions,children:[(0,tq.jsxs)("div",{className:"entry-content__dimensions-label",children:[(0,tq.jsx)("p",{children:u("width")}),(0,tq.jsx)("p",{children:u("height")})]}),(0,tq.jsxs)("div",{className:"entry-content__dimensions-content",children:[(0,tq.jsxs)("p",{children:[i," px"]}),(0,tq.jsxs)("p",{children:[n," px"]})]})]}),(0,tq.jsxs)("div",{className:f.sidebarContentDownload,children:[(0,tq.jsx)("p",{className:"sidebar__content-label",children:u("thumbnail")}),(0,tq.jsxs)("div",{className:"entry-content__download-content",children:[(0,tq.jsx)("div",{className:"entry-content__download-content-thumbnail",children:(0,tq.jsx)(t8.l,{"aria-label":u("aria.asset.image-sidebar.tab.details.custom-thumbnail-mode"),defaultValue:g,onChange:function(e){h(e),o(e)},options:k})}),(0,tq.jsx)("p",{className:"sidebar__content-label",children:u("download")}),(0,tq.jsxs)("div",{className:"entry-content__download-content-thumbnail",children:[(0,tq.jsx)(t8.l,{"aria-label":u("aria.asset.image-sidebar.tab.details.custom-thumbnail-mode"),defaultValue:j,onChange:e=>{w(e)},options:k}),(0,tq.jsx)(ig.Button,{"aria-label":u("aria.asset.image-sidebar.tab.details.download-thumbnail"),icon:(0,tq.jsx)(r9.I,{value:"download"}),loading:c,onClick:function(){s(j)}})]})]})]}),(0,tq.jsx)(ig.Divider,{className:"sidebar__content-hr"}),(0,tq.jsxs)("div",{className:f.sidebarContentImagePreview,children:[(0,tq.jsx)("p",{className:"sidebar__content-label",children:u("select-image-preview")}),(0,tq.jsxs)(k6.A,{children:[(0,tq.jsx)(ig.Button,{onClick:function(){p("media")},type:"media"===m?"primary":"default",children:u("choose-media")}),(0,tq.jsx)(ig.Button,{onClick:function(){p("player")},type:"player"===m?"primary":"default",children:u("current-player-position")})]}),(0,tq.jsx)(ig.Card,{size:"small",children:t})]})]})]})};var k9=i(12701),Te=i(74418);let Tt=()=>{},Ti=new k2;Ti.registerEntry({key:"details",icon:(0,tq.jsx)(r9.I,{options:{width:"16px",height:"16px"},value:"details"}),component:(0,tq.jsx)(()=>{let[e,t]=(0,tG.useState)(!1),{playerPosition:i,setThumbnail:n}=(0,Te.M)(),r=(0,tG.useContext)(ky.m),[a,l]=(0,tG.useState)("");(0,tG.useMemo)(()=>{c(200,119)},[]);let{data:o}=(0,kc.useAssetGetByIdQuery)({id:r.id}),{data:s}=(0,k9.xX)(),d=null==s?void 0:s.items;if(null==d)return(0,tq.jsx)(uE.U,{loading:!0});return(0,tq.jsx)(k8,{height:o.height??0,imagePreview:a,isDownloading:e,onApplyPlayerPosition:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:Tt;f("image_thumbnail_time",i,e)},onChangeThumbnail:n,onClickDownloadByFormat:function(e){t(!0);let i=`${(0,tD.$)()}/assets/${r.id}/video/download/${e}`;(0,kd.$)({url:i,onSuccess:e=>{let t=URL.createObjectURL(e);(0,kO.l)(t,o.filename)}}).catch(()=>{(0,iX.Ay)(new iX.$g("An error occured while loading the Video"))}).finally(()=>{t(!1)})},onDropImage:function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Tt;f("image_thumbnail_asset",e,t)},thumbnails:d,width:o.width??0});function c(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Tt;fetch(tc.kL.get(td.K["Asset/ThumbnailService"]).getThumbnailUrl({assetId:r.id,assetType:"video",width:e,height:t,aspectRatio:!0})).then(async e=>await e.blob()).then(e=>{l(URL.createObjectURL(e))}).catch(()=>{(0,iX.Ay)(new iX.$g("An error occurred while loading the Thumbnail"))}).finally(i)}function f(e,t){let i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:Tt;fetch(`${(0,tD.$)()}/assets/${r.id}`,{method:"PUT",headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify({data:{customSettings:[{key:e,value:t}]}})}).then(()=>{c(200,119,i)}).catch(()=>{(0,iX.Ay)(new iX.$g("An error occured while setting the Image Preview")),i()})}},{})}),Ti.registerButton({key:"focal-point",icon:(0,tq.jsx)(r9.I,{options:{width:"16px",height:"16px"},value:"focal-point"}),component:(0,tq.jsx)(k_,{})});let Tn=()=>{let[e,t]=(0,tG.useState)(""),{id:i}=(0,tG.useContext)(ky.m),{isLoading:n}=(0,ks.l)(i),{thumbnail:r}=(0,Te.M)(),a=Ti.getEntries(),l=Ti.getButtons();if((0,tG.useEffect)(()=>{if(!n){let e;t(""),e=`${(0,tD.$)()}/assets/${i}/video/stream/${r}`,(0,kd.$)({url:e,onSuccess:e=>{t(URL.createObjectURL(e))}}).catch(console.error)}},[r,n]),n)return(0,tq.jsx)(uE.U,{loading:!0});let o=`${(0,tD.$)()}/assets/${i}/video/stream/image-thumbnail?width=500&height=500&aspectRatio=true`;return(0,tq.jsx)(pl.s,{renderSidebar:(0,tq.jsx)(kP.B,{buttons:l,entries:a}),children:""===e?(0,tq.jsx)(uE.U,{loading:!0}):(0,tq.jsx)(k1,{poster:o,src:e})})},Tr=()=>(0,tq.jsx)(Te.N,{children:(0,tq.jsx)(Tn,{})});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/VideoTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tq.jsx)(Tr,{}),icon:(0,tq.jsx)(r9.I,{value:"view"})}),e.register(kg.rV),e.register(kg.y5),e.register(kh.Aj),e.register(kg.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}});let Ta=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{preview:i` - display: flex; - justify-content: center; - align-items: center; - height: 100%; - width: 100%; - object-fit: contain; - `}},{hashPriority:"low"});var Tl=i(98186);let To=e=>{let{styles:t}=Ta(),{src:i}=e;return(0,tq.jsx)("div",{className:t.preview,children:(0,tq.jsx)(Tl.I,{sources:[{src:i}]})})},Ts=()=>{let e=(0,tG.useContext)(ky.m),{data:t}=(0,kc.useAssetGetByIdQuery)({id:e.id});return(0,tq.jsx)(pl.s,{children:(0,tq.jsx)(To,{src:t.fullPath})})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/AudioTabManager"]);e.register({key:"view",label:"asset.asset-editor-tabs.view",children:(0,tq.jsx)(Ts,{}),icon:(0,tq.jsx)(r9.I,{value:"view"})}),e.register(kg.y5),e.register(kh.Aj),e.register(kg.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/ArchiveTabManager"]);e.register(kg.y5),e.register(kh.Aj),e.register(kg.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/UnknownTabManager"]);e.register(kg.y5),e.register(kh.Aj),e.register(kg.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}});var Td=i(89114),Tc=i(60042),Tf=i(6424),Tu=i(3671),Tm=i(55014),Tp=i(40036),Tg=i(81674),Th=i(97794);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.assetEditorToolbar;e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{refreshElement:t}=(0,Tp.d)("asset"),{renameContextMenuItem:i}=(0,Tm.M)("asset",(0,Tg.Cr)("asset","rename",e.target.id));return i(e.target,()=>{t(e.target.id)})}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteContextMenuItem:t}=(0,Tu.z)("asset",(0,Tg.Cr)("asset","delete",e.target.id));return t(e.target)}}),e.registerToSlot(t.name,{name:"uploadNewVersion",priority:t.priority.uploadNewVersion,useMenuItem:e=>{let{uploadNewVersionContextMenuItem:t}=(0,Th.D)(),{refreshElement:i}=(0,Tp.d)("asset");return t(e.target,()=>{i(e.target.id)})}}),e.registerToSlot(t.name,{name:"download",priority:t.priority.download,useMenuItem:e=>{let{downloadContextMenuItem:t}=(0,Td.m)();return t(e.target)}}),e.registerToSlot(t.name,{name:"zipDownload",priority:t.priority.zipDownload,useMenuItem:e=>{let{createZipDownloadContextMenuItem:t}=(0,Tc.v)({type:"folder"});return t(e.target)}}),e.registerToSlot(t.name,{name:"clearImageThumbnail",priority:t.priority.clearImageThumbnail,useMenuItem:e=>{let{clearImageThumbnailContextMenuItem:t}=(0,Tf.q)();return t(e.target)}}),e.registerToSlot(t.name,{name:"clearVideoThumbnail",priority:t.priority.clearVideoThumbnail,useMenuItem:e=>{let{clearVideoThumbnailContextMenuItem:t}=(0,Tf.q)();return t(e.target)}}),e.registerToSlot(t.name,{name:"clearPdfThumbnail",priority:t.priority.clearPdfThumbnail,useMenuItem:e=>{let{clearPdfThumbnailContextMenuItem:t}=(0,Tf.q)();return t(e.target)}})}});var Ty=i(34148),Tv=i(71012),Tb=i(24122);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.assetPreviewCard;e.registerToSlot(t.name,{name:"open",priority:t.priority.open,useMenuItem:e=>{let{openContextMenuItem:t}=(0,Ty.i)(sE.W.asset);return t(e.asset)??null}}),e.registerToSlot(t.name,{name:"info",priority:t.priority.info,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{actionMenuItems:i}=(0,Tb.y)({element:e.asset,elementType:sE.W.asset});return{key:"info",icon:(0,tq.jsx)(r9.I,{value:"info-circle"}),label:t("asset.copy-info"),children:i}}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameContextMenuItem:t}=(0,Tm.M)(sE.W.asset,(0,Tg.Cr)(sE.W.asset,"rename",e.asset.id));return t(e.asset)??null}}),e.registerToSlot(t.name,{name:"locateInTree",priority:t.priority.locateInTree,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{locateInTree:i}=(0,Tv.H)(sE.W.asset);return{label:t("element.locate-in-tree"),key:"locate-in-tree",icon:(0,tq.jsx)(r9.I,{value:"target"}),onClick:()=>{i(e.asset.id,e.onComplete)}}}}),e.registerToSlot(t.name,{name:"uploadNewVersion",priority:t.priority.uploadNewVersion,useMenuItem:e=>{let{uploadNewVersionContextMenuItem:t}=(0,Th.D)();return t(e.asset,e.onComplete)??null}}),e.registerToSlot(t.name,{name:"download",priority:t.priority.download,useMenuItem:e=>{let{downloadContextMenuItem:t}=(0,Td.m)();return t(e.asset)??null}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteContextMenuItem:t}=(0,Tu.z)(sE.W.asset,(0,Tg.Cr)(sE.W.asset,"delete",e.asset.id));return t(e.asset)??null}})}});var Tx=i(726),Tj=i(21724),Tw=i(36344);let Tk={name:"asset-editor",component:e=>(0,tq.jsx)(tu.bU,{component:tu.eb.asset.editor.container.name,props:e}),titleComponent:e=>{let{node:t}=e,{asset:i}=(0,ks.l)(t.getConfig().id),{t:n}=(0,iQ.useTranslation)(),r=t.getName();return t.getName=()=>(null==i?void 0:i.parentId)===0?n("home"):(null==i?void 0:i.filename)??r,(0,tq.jsx)(Tx.v,{modified:(null==i?void 0:i.modified)??!1,node:t})},defaultGlobalContext:!1,isModified:e=>{let t=e.getConfig(),i=(0,Tj.f_)(uk.M_.getState(),t.id);return(null==i?void 0:i.modified)??!1},getContextProvider:(e,t)=>{let i=e.config;return(0,tq.jsx)(Tw.AssetProvider,{id:i.id,children:t})}},TT=(e,t,i,n,r,a)=>t===i&&""===e?(r(),!1):!n||(a(),!1);var TS=i(79472);let TC=e=>{let{showDuplicateEntryModal:t,showMandatoryModal:i}=e,{t:n}=(0,iQ.useTranslation)(),{id:r}=(0,tG.useContext)(ky.m),{asset:a,customMetadata:l,setCustomMetadata:o,removeCustomMetadata:s,updateAllCustomMetadata:d,setModifiedCells:c}=(0,ks.l)(r),{data:f,isLoading:u,isError:m,error:p}=(0,kc.useAssetCustomMetadataGetByIdQuery)({id:r}),g="customMetadata",h=(null==a?void 0:a.modifiedCells[g])??[],y=(0,TS.o)(null==a?void 0:a.permissions,"publish");(0,tG.useEffect)(()=>{m&&(0,iX.Ay)(new iX.hD(p))},[m]);let v=(0,tG.useMemo)(()=>null==l?void 0:l.map(e=>e.type.includes("metadata.")?e:{...e,type:`metadata.${e.type}`}),[l]);(0,tG.useEffect)(()=>{void 0!==f&&(null==a?void 0:a.changes.customMetadata)===void 0&&Array.isArray(f.items)&&o(f.items.map(e=>({...e,rowId:(0,n7.u)()})))},[f]),(0,tG.useEffect)(()=>{h.length>0&&(null==a?void 0:a.changes.customMetadata)===void 0&&c(g,[])},[a]);let b=(0,cH.createColumnHelper)(),x=[b.accessor("type",{header:n("asset.asset-editor-tabs.custom-metadata.columns.type"),meta:{type:"asset-custom-metadata-icon"},size:44}),b.accessor("name",{header:n("asset.asset-editor-tabs.custom-metadata.columns.name"),meta:{editable:y},size:200}),b.accessor("language",{header:n("asset.asset-editor-tabs.custom-metadata.columns.language"),meta:{type:"language-select",editable:y},size:100}),b.accessor("data",{header:n("asset.asset-editor-tabs.custom-metadata.columns.value"),meta:{type:"asset-custom-metadata-value",editable:y,autoWidth:!0},size:400})];return y&&x.push(b.accessor("actions",{header:n("asset.asset-editor-tabs.custom-metadata.columns.actions"),cell:e=>(0,tq.jsx)(pa.a,{padding:"mini",children:(0,tq.jsx)(ap.s,{align:"center",className:"w-full h-full",justify:"center",children:(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{s(e.row.original)},type:"link"})})}),size:60})),(0,tq.jsx)(ul.x,{autoWidth:!0,columns:x,data:v??[],isLoading:u,modifiedCells:h,onUpdateCellData:e=>{let{rowIndex:n,columnId:r,value:a,rowData:o}=e,s=[...l??[]],f=s.findIndex(e=>e.name===o.name&&e.language===o.language),u={...s.at(f),[r]:a};s[f]=u,TT(a,r,"name",s.filter(e=>e.name===u.name&&e.language===u.language).length>1,i,t)&&(d(s.map(e=>({...e,type:e.type.split(".")[1]??e.type}))),c(g,[...h,{rowIndex:o.rowId,columnId:r}]))},setRowId:e=>e.rowId})};var TD=i(27330),TI=i(6820),TM=i(95112);let TL=e=>{let{disableHeaderTitle:t=!1,disableAddPredefinedMetadata:i=!1}=e,{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)(!1),l=(0,p3.t)(),{id:o}=(0,tG.useContext)(ky.m),{asset:s,addCustomMetadata:d,customMetadata:c}=(0,ks.l)(o),[f,{isFetching:u,isError:m,error:p}]=(0,TD.Hw)(),{showModal:g,closeModal:h,renderModal:y}=(0,TI.hS)({type:"error"}),{showModal:v,closeModal:b,renderModal:x}=(0,TI.hS)({type:"error"});(0,tG.useEffect)(()=>{m&&(0,iX.Ay)(new iX.hD(p))},[m]);let j=(0,TS.o)(null==s?void 0:s.permissions,"publish"),w=(0,tG.useRef)(""),k=(0,tG.useRef)(null),T=(0,tG.useRef)("input"),S=(0,tG.useRef)(""),C=[...(0,tc.Lt)(td.K["DynamicTypes/MetadataRegistry"]).getTypeSelectionTypes().keys()].map(e=>({value:e,label:n("data-type."+e.split(".")[1])})),D=async()=>{let e=f({body:{}});(await e).data.items.forEach(e=>{(null==c?void 0:c.find(t=>t.name===e.name&&t.language===(e.language??"")))===void 0&&d({...e,rowId:e.id,language:e.language??"",data:e.data??null})})};(0,tG.useEffect)(()=>{if(r){var e;null==(e=k.current)||e.focus()}else T.current="input",w.current="",S.current=""},[r]);let I=[];return r||(i||I.push((0,tq.jsx)(m4.J,{disabled:u,icon:{value:"add-something"},loading:u,onClick:D,children:n("asset.asset-editor-tabs.custom-metadata.add-predefined-definition")},n("asset.asset-editor-tabs.custom-metadata.add-predefined-definition"))),I.push((0,tq.jsx)(m4.J,{icon:{value:"new-something"},onClick:()=>{a(!0)},children:n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata")},n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata")))),(0,tq.jsxs)(uE.U,{padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",title:t?"":n("asset.asset-editor-tabs.custom-metadata.text"),children:(0,tq.jsx)("div",{className:"pimcore-custom-metadata-toolbar",children:(0,tq.jsxs)(a$.$,{size:"extra-small",children:[r&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(a$.$,{size:"extra-small",children:[(0,tq.jsx)(az.$,{onClick:()=>{a(!1)},type:"link",children:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.cancel")}),(0,tq.jsx)(ig.Input,{onChange:function(e){w.current=e.target.value},placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.name"),ref:k}),(0,tq.jsx)(t8.l,{className:"min-w-100",defaultValue:T.current,onSelect:function(e){T.current=e},options:C,placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.type")}),(0,tq.jsx)(t8.l,{allowClear:!0,className:"min-w-100",onClear:function(){S.current=""},onSelect:function(e){S.current=e},options:l.requiredLanguages.map(e=>({value:e,label:e})),placeholder:n("asset.asset-editor-tabs.custom-metadata.add-custom-metadata.language")}),(0,tq.jsx)(m4.J,{icon:{value:"new-something"},onClick:()=>{let e,t;e=void 0!==w.current&&w.current.length>0,t=void 0!==T.current,e&&t?(null==c?void 0:c.find(e=>e.name===w.current&&e.language===S.current))!==void 0?g():d({additionalAttributes:[],name:w.current,type:T.current,language:S.current,data:null,rowId:(0,n7.u)()}):v()},children:n("asset.asset-editor-tabs.custom-metadata.new-custom-metadata.create")})]}),(0,tq.jsx)(y,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(az.$,{onClick:h,type:"primary",children:n("button.ok")})}),title:n("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.title"),children:n("asset.asset-editor-tabs.custom-metadata.custom-metadata-already-exist.error")}),(0,tq.jsx)(x,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(az.$,{onClick:b,type:"primary",children:n("button.ok")})}),title:n("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.title"),children:n("asset.asset-editor-tabs.custom-metadata.add-entry-mandatory-fields-missing.error")})]}),!r&&j&&(0,tq.jsx)(TM.e,{items:I})]})})}),(0,tq.jsx)(TC,{showDuplicateEntryModal:g,showMandatoryModal:v})]})};var TF=i(5576);let TE=(0,iR.createStyles)(e=>{let{token:t,css:i}=e,n={versionsLeftSideWidth:"395",...t};return{"right-side":i` - & .highlight-cell { - background-color: ${n.colorWarningBg}; - font-weight: bold; - } - `}},{hashPriority:"low"}),TP=e=>{let{id:t,fileName:i}=e,[n,r]=(0,tG.useState)(!1),{t:a}=(0,iQ.useTranslation)(),l=async()=>{r(!0),fetch(`${(0,tD.$)()}/versions/${t}/asset/download`).then(async e=>await e.blob()).then(e=>{let t=URL.createObjectURL(e);(0,kO.l)(t,i),r(!1)}).catch(()=>{(0,iX.Ay)(new iX.$g("Error downloading version asset")),r(!1)})};return(0,tq.jsxs)(ap.s,{align:"center",gap:"extra-small",vertical:!0,children:[(0,tq.jsx)(n5.E,{children:a("version.no-preview-available")}),(0,tq.jsx)(az.$,{loading:n,onClick:l,children:a("download")})]})};var TA=i(26268);let TN=["meta"],TR=e=>{let{categoriesList:t,versionViewData:i,versionKeysList:n,modifiedFields:r}=e,{styles:a}=(0,TA.I)(),{t:l}=(0,iQ.useTranslation)();return(0,tq.jsx)(tq.Fragment,{children:null==t?void 0:t.map((e,t)=>(0,tq.jsxs)("div",{children:[(0,tq.jsx)(n5.E,{className:a.sectionTitle,strong:!0,children:l(`version.category.title.${e.key}`)}),(0,tq.jsx)(ap.s,{className:a.sectionFields,gap:"extra-small",vertical:!0,children:i.map((t,i)=>e.fieldKeys.includes(t.Field.key)&&(0,tq.jsxs)("div",{children:[(e=>{let{categoryName:t,fieldData:i}=e,n=TN.includes(t),r=i.field,o=i.language,s=n?r:l(`version.${i.key}`);return(0,tq.jsxs)(n5.E,{className:a.fieldTitle,children:[s," ",!(0,tI.isEmpty)(o)&&(0,tq.jsxs)(n5.E,{type:"secondary",children:["| ",null==o?void 0:o.toUpperCase()]})]})})({categoryName:e.key,fieldData:t.Field}),(0,tq.jsx)(ap.s,{gap:"mini",children:n.map((e,i)=>{let n=r.includes(t.Field.key);return(0,tq.jsx)("div",{className:lx()(a.sectionFieldItem,{[a.sectionFieldItemHighlight]:n&&1===i}),children:(0,tq.jsx)(n5.E,{children:t[e]})},`${i}-${e}`)})})]},`${i}-${t.Field.key}`))})]},`${t}-${e.key}`))})};var TV=i(41826),Tz=i(44767),TB=i(62668);let TO=["systemData"],TK=[Tz.l.BLOCK,Tz.l.FIELD_COLLECTIONS],T_=e=>{let{breadcrumbsList:t,versionViewData:i,versionKeysList:n,isExpandedUnmodifiedFields:r}=e,{styles:a}=(0,TA.I)(),{t:l}=(0,iQ.useTranslation)();return(0,tq.jsx)(tq.Fragment,{children:null==t?void 0:t.map((e,t)=>{let o="systemData"===e.key;return(0,tq.jsxs)("div",{children:[(e=>{let{key:t,isCommonSection:i}=e,n=TO.includes(t),r=(n?l(`version.category.title.${t}`):t).split("/"),[o,...s]=n?r:r.map(e=>l(e)),d=s.length>0?` | ${s.join(" | ")}`:"";return(0,a3.Po)(o)&&(0,a3.Po)(d)?null:(0,tq.jsxs)(n5.E,{className:lx()(a.sectionTitle,{[a.subSectionTitle]:!i}),strong:!0,children:[o,!(0,a3.Po)(d)&&(0,tq.jsx)("span",{className:a.subSectionText,children:d})]})})({key:e.key,isCommonSection:o}),(0,tq.jsx)(ap.s,{className:lx()(a.sectionFields,{[a.sectionFieldsWithoutBorder]:!o}),gap:"extra-small",vertical:!0,children:i.map((t,i)=>{var s;let d=e.key===t.Field.fieldBreadcrumbTitle,c=e.fieldKeys.includes(t.Field.name);return d&&c&&(0,tq.jsx)(TB.K,{contentSelector:`.${a.objectSectionFieldItemWrapper}`,children:(0,tq.jsxs)("div",{children:[(e=>{let{key:t,locale:i,isCommonSection:n}=e;if((0,a3.Po)(t))return(0,tq.jsx)(tq.Fragment,{});let r=n?l(`version.${t}`):l(t);return(0,tq.jsxs)(n5.E,{className:a.fieldTitle,children:[r," ",!(0,tI.isEmpty)(i)&&(0,tq.jsxs)(n5.E,{type:"secondary",children:["| ",i.toUpperCase()]})]})})({key:t.Field.title,locale:null==(s=t.Field)?void 0:s.locale,isCommonSection:o}),(0,tq.jsx)(ap.s,{gap:"mini",children:n.map((e,i)=>{let n=(null==t?void 0:t.isModifiedValue)===!0,o=1===i,s=TK.includes(null==t?void 0:t.Field.fieldtype),d=n&&s&&(0,a3.Po)(t[e]);return(0,tq.jsxs)("div",{className:a.objectSectionFieldItemWrapper,children:[d&&(0,tq.jsx)(ap.s,{align:"center",className:lx()(a.objectSectionFieldItem,a.objectSectionEmptyState,{[a.objectSectionEmptyStateDisabled]:0===i,[a.objectSectionEmptyStateHighlight]:o}),justify:"center",children:l("empty")}),(0,tq.jsx)(TV.s,{className:lx()(a.objectSectionFieldItem,"versionFieldItem",{[a.objectSectionFieldItemHighlight]:n&&o,versionFieldItemHighlight:n&&o}),datatype:"data",fieldCollectionModifiedList:null==t?void 0:t.fieldCollectionModifiedList,fieldType:t.Field.fieldtype,isExpandedUnmodifiedFields:r,name:t.Field.name,value:t[e],...t.Field},`${i}-${e}`)]},`${i}-${e}`)})})]})},`${i}-${t.Field.name}`)})})]},`${t}-${e.key}`)})})},TH=["reverseObjectRelation"];var T$=i(43240);let TW=e=>{let t,i,{data:n}=e,{elementType:r}=(0,iZ.J)(),a="asset"===r,l="data-object"===r,[o,s]=(0,tG.useState)(!1),{versionKeysList:d,comparisonModifiedData:c,sectionsList:f}=(t=Object.keys(n[0]).filter(e=>e.startsWith("Version")),i=n.filter(e=>!(0,tI.isEqual)(e[t[0]]??null,e[t[1]]??null)),{versionKeysList:t,comparisonModifiedData:i,sectionsList:(0,tG.useMemo)(()=>{if("asset"===r){let e;return e={},n.forEach(t=>{let i=(e=>{if(e.includes("."))return e.split(".")[0]})(t.Field.key)??"systemData";(0,tI.isUndefined)(e[i])&&(e[i]=new Set),e[i].add(t.Field.key)}),Object.entries(e).map(e=>{let[t,i]=e;return{key:t,fieldKeys:Array.from(i)}})}if("data-object"===r){let e;return e={},n.forEach(t=>{let i=t.Field.fieldBreadcrumbTitle??"systemData";TH.includes(t.Field.fieldtype)||((0,tI.isUndefined)(e[i])&&(e[i]=new Set),e[i].add(t.Field.name))}),Object.entries(e).map(e=>{let[t,i]=e;return{key:t,fieldKeys:Array.from(i)}})}},[n])}),{t:u}=(0,iQ.useTranslation)(),{styles:m}=(0,T$.I)(),p=!(0,tI.isNil)(d)&&d.length>1,g=o?n:c,h=p?g:n,y=(0,tG.useMemo)(()=>a?(e=>{let{versionViewData:t,categoriesList:i}=e,n=(0,tI.map)(t,"Field.key");return(0,tI.isEmpty)(i)?[]:(0,tI.filter)((0,tI.map)(i,e=>({...e,fieldKeys:(0,tI.intersection)(e.fieldKeys,n)})),e=>!(0,tI.isEmpty)(e.fieldKeys))})({versionViewData:h,categoriesList:f}):l?(e=>{let{versionViewData:t,breadcrumbsList:i}=e,n=(0,tI.map)(t,"Field.name"),r=(0,tI.map)(t,"Field.fieldBreadcrumbTitle");return(0,tI.isEmpty)(i)?[]:(0,tI.filter)((0,tI.map)(i,e=>({...e,fieldKeys:(0,tI.intersection)(e.fieldKeys,n)})),e=>!(0,tI.isEmpty)(e.fieldKeys)&&r.includes(e.key))})({versionViewData:h,breadcrumbsList:f}):void 0,[o,f]),v=(0,tG.useMemo)(()=>{if(p&&!(0,tI.isEmpty)(c)){if(a)return c.map(e=>e.Field.key);if(l)return c.map(e=>e.Field.title)}return[]},[c,p]),b=!(0,tI.isUndefined)(v)&&v.length>0;return(0,tq.jsxs)(ap.s,{vertical:!0,children:[(0,tq.jsx)(ap.s,{className:m.headerContainer,wrap:"wrap",children:d.map((e,t)=>{let i,n;return n=(null==(i=/\d+/.exec(e))?void 0:i[0])??"0",(0,tq.jsx)(ap.s,{className:m.headerItem,children:(0,tq.jsxs)(n5.E,{children:[u("version.version")," ",Number(n)]})},`${t}-${e}`)})}),(0,tq.jsxs)(ap.s,{className:m.content,vertical:!0,children:[p&&(0,tq.jsx)("div",{className:m.switchContainer,children:(0,tq.jsx)(sA.d,{labelLeft:(0,tq.jsx)(n5.E,{children:u("version.expand-unmodified-fields")}),onChange:()=>{s(!o)},value:o})}),p&&!b&&!o&&(0,tq.jsx)(ap.s,{justify:"center",children:(0,tq.jsx)(n5.E,{className:m.emptyState,children:u("version.no-difference")})}),a&&(0,tq.jsx)(TR,{categoriesList:y,modifiedFields:v,versionKeysList:d,versionViewData:h}),l&&(0,tq.jsx)(T_,{breadcrumbsList:y,isExpandedUnmodifiedFields:o,versionKeysList:d,versionViewData:h})]})]})},Tq=e=>{let{versions:t,gridData:i,isImageVersion:n,versionIds:r}=e,{styles:a}=TE();return(0,tq.jsx)("div",{className:a["right-side"],children:(0,tq.jsxs)(ig.Space,{direction:"vertical",size:"large",style:{maxWidth:t.length>1?1200:600},children:[(0,tq.jsx)(ig.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100},children:t.map((e,t)=>{var i;let a=r.find(t=>t.count===(null==e?void 0:e.versionCount));return(0,tq.jsx)("div",{children:null!==e.previewImageUrl&&n?(0,tq.jsx)(k5.R,{src:e.previewImageUrl,style:{maxHeight:500,maxWidth:500}}):(0,tq.jsx)(TP,{fileName:null==e||null==(i=e.dataRaw)?void 0:i.fileName,id:null==a?void 0:a.id})},t)})}),(0,tq.jsx)(TW,{data:i})]})})};var TG=i(73039);let TU=(e,t,i)=>({versionCount:i,baseDataFormatted:{fileName:e.fileName,creationDate:(0,pP.r6)({timestamp:e.creationDate??null,dateStyle:"short",timeStyle:"medium"}),modificationDate:(0,pP.r6)({timestamp:e.modificationDate??null,dateStyle:"short",timeStyle:"medium"}),fileSize:void 0!==e.fileSize?(0,TG.M)(e.fileSize):"",mimeType:e.mimeType,dimensions:null!==e.dimensions&&void 0!==e.dimensions?e.dimensions.width+" x "+e.dimensions.height:""},metadata:TQ(e.metadata),previewImageUrl:`/pimcore-studio/api/versions/${t}/image/stream`,dataRaw:e}),TQ=e=>{let t=tc.kL.get(td.K["DynamicTypes/MetadataRegistry"]),i=new Map;if(void 0===e)return i;for(let n of e){let e=t.getTypeSelectionTypes().get(`metadata.${n.type}`),r=null!==n.language?`meta.${n.name}.${n.language}`:n.name;i.set(r,{key:r,field:n.name,language:n.language??void 0,metadataType:n.type,displayValue:void 0!==e?e.getVersionPreviewComponent(n.data):"Metadata type not supported",raw:n})}return i},TJ=e=>(null==e?void 0:e.type)==="image",TZ=async(e,t)=>{if(!TJ(e))return null;let i=null;return await fetch(`/pimcore-studio/api/versions/${t}/image/stream`,{cache:"force-cache"}).then(async e=>await e.blob()).then(e=>{i=URL.createObjectURL(e)}).catch(()=>{(0,iX.Ay)(new iX.$g("Failed to load preview image"))}),i},TY=e=>{let t=i4().t,i=[],n=[],r=t("field");return e.forEach((e,a)=>{let l=`${t("version.version")} ${e.versionCount}`;Object.keys(e.baseDataFormatted).forEach(n=>{if("dimensions"===n&&!TJ(e.dataRaw))return;let a=i.find(e=>e[r].key===n);void 0!==a?a[l]=e.baseDataFormatted[n]:i.push({[r]:{field:t(`version.${n}`),key:n},[l]:e.baseDataFormatted[n]})}),e.metadata.forEach((e,t)=>{let i=n.find(t=>t[r].key===e.key);if(void 0!==i)i[l]=e.displayValue;else{let t={key:e.key,field:e.field,language:e.language,metadataType:e.metadataType};n.push({[r]:t,[l]:e.displayValue})}})}),n.sort((e,i)=>{let n=e[t("field")].key.toLowerCase(),r=i[t("field")].key.toLowerCase();return nr)}),[...i,...n]},TX=e=>{let{versionIds:t}=e,[i,n]=(0,tG.useState)([]),[r,a]=(0,tG.useState)([]),[l,o]=(0,tG.useState)(!1);return((0,tG.useEffect)(()=>{let e=[];a([]),n([]),t.forEach(async t=>{let i=t.id;e.push(uk.M_.dispatch(i3.FH.endpoints.versionGetById.initiate({id:i})))}),Promise.all(e).then(e=>{let i=[],r=[];e.forEach((e,n)=>{let a=e.data;TJ(a)&&o(!0),i.push(TU(a,t[n].id,t[n].count)),r.push(TZ(a,t[n].id))}),Promise.all(r).then(e=>{i.forEach((t,i)=>{t.previewImageUrl=e[i]}),a(i),n(TY(i))}).catch(e=>{console.log(e)})}).catch(e=>{console.log(e)})},[t]),0===i.length)?(0,tq.jsx)(uE.U,{fullPage:!0,loading:!0}):(0,tq.jsx)(Tq,{gridData:i,isImageVersion:l,versionIds:t,versions:r})},T0=e=>{let{versionId:t,data:i,imgSrc:n,firstVersion:r,lastVersion:a,onClickPrevious:l,onClickNext:o,isImageVersion:s,fileName:d}=e;return(0,tq.jsxs)(ig.Flex,{gap:"small",style:{minWidth:"100%"},vertical:!0,children:[(0,tq.jsxs)(ig.Flex,{align:"center",gap:"small",justify:"center",style:{minHeight:100},children:[(0,tq.jsx)(lp.K,{disabled:r,icon:{value:"chevron-left"},onClick:l,type:"text"}),null!==n&&s?(0,tq.jsx)(k5.R,{className:"image-slider__image",src:n,style:{maxHeight:500,maxWidth:500}}):(0,tq.jsx)(TP,{fileName:d,id:t.id}),(0,tq.jsx)(lp.K,{disabled:a,icon:{value:"chevron-right"},onClick:o,type:"text"})]}),(0,tq.jsx)(TW,{data:i})]})},T1=e=>{let{versions:t,versionId:i,setDetailedVersions:n}=e,[r,a]=(0,tG.useState)(i),[l,o]=(0,tG.useState)([]),[s,d]=(0,tG.useState)(null),[c,f]=(0,tG.useState)(void 0),[u,m]=(0,tG.useState)(!1);function p(e){for(let i=0;i=0&&i+e{i.id!==r.id&&(o([]),a(i))},[i]),(0,tG.useEffect)(()=>{Promise.resolve(uk.M_.dispatch(i3.FH.endpoints.versionGetById.initiate({id:r.id}))).then(e=>{let t=e.data,i=TU(t,r.id,r.count);TJ(t)&&m(!0),f(null==t?void 0:t.fileName),o(TY([i])),d(i.previewImageUrl)}).catch(e=>{console.log(e)})},[r]),0===l.length?(0,tq.jsx)(uE.U,{fullPage:!0,loading:!0}):(0,tq.jsx)(T0,{data:l,fileName:c,firstVersion:t[0].id===r.id,imgSrc:s,isImageVersion:u,lastVersion:t[t.length-1].id===r.id,onClickNext:function(){o([]),p(1)},onClickPrevious:function(){o([]),p(-1)},versionId:r})},T2=()=>(0,tq.jsx)(TF.m,{ComparisonViewComponent:TX,SingleViewComponent:T1}),T3=()=>{var e,t;let{t:i}=(0,iQ.useTranslation)(),{id:n}=(0,ko.Q)(),{data:r,isLoading:a,isError:l}=(0,kc.useAssetCustomSettingsGetByIdQuery)({id:n});if(a||void 0===r)return(0,tq.jsx)(uE.U,{loading:!0});if(l)return(0,tq.jsx)("div",{children:"Error"});let o=(0,cH.createColumnHelper)(),s=[o.accessor("name",{header:i("asset.asset-editor-tabs.embedded-metadata.columns.name"),size:400}),o.accessor("value",{header:i("asset.asset-editor-tabs.embedded-metadata.columns.value"),size:400})],d=Object.entries((null==(t=r.items)||null==(e=t.fixedCustomSettings)?void 0:e.embeddedMetadata)??[]).map(e=>{let[t,i]=e;return{name:String(t).toString(),value:String(i).toString()}});return(0,tq.jsxs)(uE.U,{padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",title:i("asset.asset-editor-tabs.embedded-metadata.headline")}),(0,tq.jsx)(ul.x,{columns:s,data:d,enableSorting:!0,sorting:[{id:"name",desc:!1}]})]})};var T6=i(88054);let T4=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t}=(0,tG.useContext)(ky.m),{asset:i}=(0,ks.l)(t),{refreshElement:n}=(0,Tp.d)("asset"),r=(0,kj.W)(kw.r.assetEditorToolbar.name,{target:i}),a=r.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),l=[];return l.push((0,tq.jsx)(T6.j,{hasDataChanged:function(){return Object.keys((null==i?void 0:i.changes)??{}).length>0},onReload:function(){n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload-button")),a.length>0&&l.push((0,tq.jsx)(pu.m,{menu:{items:r},children:(0,tq.jsx)(pf.g,{children:e("toolbar.more")},"dropdown-button")},"more-button")),(0,tq.jsx)(TM.e,{items:l,noSpacing:!0})};var T5=i(57502),T7=i(63558);let T8=(e,t,i)=>({actionType:e,workflowId:t,transitionId:i.name,label:i.label,notes:(0,tI.isEmpty)(i.notes)?void 0:i.notes}),T9=e=>[...(0,tI.isNil)(e.allowedTransitions)?[]:e.allowedTransitions.map(t=>T8("transition",e.workflowName,t)),...(0,tI.isNil)(e.globalActions)?[]:e.globalActions.map(t=>T8("global",e.workflowName,t))],Se=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{button:i` - min-width: 100%; - justify-items: flex-start; - `,"not-first":i` - margin-top: ${t.marginXXS}px; - `}},{hashPriority:"low"});var St=i(19675),Si=i(90056);let Sn=()=>{let{openModal:e,setTriggeredWorkflowAction:t}=(0,Si.j)(),{submitWorkflowAction:i,submissionLoading:n}=(0,St.d)();return{triggerAction:n=>{var r;t(n),(null==(r=n.notes)?void 0:r.commentEnabled)===!0?e():i(n)},submissionLoading:n}},Sr=e=>{let{workflow:t}=e,{triggerAction:i,submissionLoading:n}=Sn(),r=T9(t),{styles:a}=Se(),{t:l}=(0,iQ.useTranslation)();return n?(0,tq.jsx)(az.$,{loading:n,type:"link"}):(0,tq.jsx)("div",{children:r.map(e=>(0,tq.jsx)(az.$,{className:`${a.button}`,onClick:()=>{i(e)},type:"text",children:l(e.label)}))})},Sa=()=>{let{t:e}=(0,iQ.useTranslation)(),[t,i]=tU().useState([]),{workflowDetailsData:n,isFetchingWorkflowDetails:r}=(0,Si.j)();return(0,tG.useEffect)(()=>{(null==n?void 0:n.items)!==void 0&&n.items.length>0&&i(n.items.flatMap(t=>{var i;let r=[];return r.push({key:(((null==n||null==(i=n.items)?void 0:i.length)??0)+1).toString(),type:"custom",component:(0,tq.jsx)(Sr,{workflow:t})}),{key:t.workflowName,type:"group",label:e(t.workflowLabel),children:r}}))},[n]),(0,tq.jsxs)(ap.s,{align:"center",justify:"flex-end",children:[(0,tq.jsx)(T5.L,{itemGap:"extra-small",list:(null==n?void 0:n.items)!==void 0&&n.items.length>0?[n.items.reduce((t,i)=>(i.workflowStatus.forEach(i=>{if(void 0!==i.visibleInDetail&&i.visibleInDetail){let n=i.colorInverted?{backgroundColor:`${i.color}33`}:{},r={children:e(`${i.label}`),icon:(0,tq.jsx)(T7.E,{color:i.color}),style:n};t.push(r)}}),t),[])]:[[]],wrap:!1}),void 0!==n&&(0,tq.jsx)(pu.m,{disabled:r,menu:{items:t},children:(0,tq.jsx)(pf.g,{children:(0,tq.jsx)(r9.I,{options:{height:16,width:16},value:"workflow"})})})]})};var Sl=i(33142);let So=function(e,t){let i=!(arguments.length>2)||void 0===arguments[2]||arguments[2],[n,{isLoading:r,isSuccess:a,isError:l,error:o}]=(0,iY.Jj)(),[s,d]=(0,tG.useState)(!1),{element:c,schedules:f,resetSchedulesChanges:u}=(0,Sl.D)(t,e),m=(0,uI.J)(),{t:p}=(0,iQ.useTranslation)();return(0,tG.useEffect)(()=>{s&&(i&&m.success(p("save-success")),u())},[s]),(0,tG.useEffect)(()=>{d(a)},[a]),(0,tG.useEffect)(()=>{l&&i&&m.error(p("save-failed"))},[l]),{isLoading:r,isSuccess:s,isError:l,error:o,saveSchedules:async()=>{(null==c?void 0:c.changes.schedules)===void 0?d(!0):await n({elementType:e,id:t,body:{items:null==f?void 0:f.map(e=>({id:e.id>0?e.id:null,date:e.date,action:e.action,version:e.version,active:e.active}))}})}}};var Ss=i(60124),Sd=i(3416);let Sc=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t}=(0,iZ.J)(),{asset:i,properties:n,removeTrackedChanges:r,customMetadata:a,customSettings:l,imageSettings:o,textData:s}=(0,ks.l)(t),[d,{isLoading:c,isSuccess:f,isError:u,error:m}]=(0,kc.useAssetUpdateByIdMutation)(),{saveSchedules:p,isLoading:g,isSuccess:h,isError:y,error:v}=So("asset",t,!1),b=(0,uI.J)();return(0,tG.useEffect)(()=>{(async()=>{f&&h&&(r(),await b.success(e("save-success")))})().catch(e=>{console.error(e)})},[f,h]),(0,tG.useEffect)(()=>{u&&!(0,tI.isNil)(m)?(0,iX.Ay)(new iX.hD(m)):y&&!(0,tI.isNil)(v)&&(0,iX.Ay)(new iX.hD(v))},[u,y,m,v]),(0,m9.Z)(async()=>{null!=i&&(0,TS.o)(i.permissions,"publish")&&x()},"publish"),(0,m9.Z)(async()=>{null!=i&&(0,TS.o)(i.permissions,"publish")&&x()},"save"),(0,tq.jsx)(tq.Fragment,{children:(0,TS.o)(null==i?void 0:i.permissions,"publish")&&(0,tq.jsx)(az.$,{disabled:c||g,loading:c||g,onClick:x,type:"primary",children:e((null==i?void 0:i.type)==="folder"?"toolbar.save":"toolbar.save-and-publish")})});function x(){if((null==i?void 0:i.changes)===void 0)return;let e={};if(i.changes.properties){let t=null==n?void 0:n.map(e=>{let{rowId:t,...i}=e;if("object"==typeof i.data){var n;return{...i,data:(null==i||null==(n=i.data)?void 0:n.id)??null}}return i});e.properties=null==t?void 0:t.filter(e=>!e.inherited)}i.changes.customMetadata&&(e.metadata=null==a?void 0:a.map(e=>{let{rowId:t,...i}=e;return i.type.startsWith("metadata.")&&(i.type=i.type.replace("metadata.","")),null===i.data&&(("input"===i.type||"textarea"===i.type)&&(i.data=""),"checkbox"===i.type&&(i.data=!1)),i})),i.changes.customSettings&&(e.customSettings=l),i.changes.imageSettings&&(e.image=o),i.changes.textData&&(e.data=s);let r=tc.kL.get(td.K["Asset/ProcessorRegistry/SaveDataProcessor"]),c=new dn.r(t,e);r.executeProcessors(c),Promise.all([d({id:t,body:{data:{...e}}}).then(i=>{if(void 0===i.error){let n={identifier:{type:Sd.m["asset:editor:post-update"],id:String(t)},payload:{id:t,updatedData:e,responseData:i.data}};Ss.B.publish(n)}return i}),p()]).catch(e=>{console.log(e)})}};var Sf=i(11324),Su=i(27918),Sm=i(61923),Sp=i(83547),Sg=i(3257),Sh=i(69634);let Sy=()=>(0,tq.jsx)(pc.M,{children:(0,tq.jsxs)(Sp.F,{children:[(0,tq.jsx)(ap.s,{children:(0,tq.jsx)(Sh.Y,{slot:yl.e.asset.editor.toolbar.slots.left.name})}),(0,tq.jsx)(ap.s,{style:{height:"32px"},vertical:!1,children:(0,tq.jsx)(Sh.Y,{slot:yl.e.asset.editor.toolbar.slots.right.name})}),(0,tq.jsx)(Sg.x,{})]})});var Sv=i(78524),Sb=i(17236);let Sx=e=>{let{id:t}=e,{isLoading:i,isError:n,asset:r,editorType:a,activeTab:l}=(0,ks.l)(t),o=(0,Sf.P)(),{setContext:s,removeContext:d}=(0,Su.k)();return((0,tG.useEffect)(()=>()=>{d()},[]),(0,tG.useEffect)(()=>(o&&s({id:t,...!(0,tI.isNil)(r)&&{contextIdentifiers:(0,Sb.R9)(r,l===kS.h.key)}}),()=>{o||d()}),[o,l,r]),i)?(0,tq.jsx)(uE.U,{loading:!0}):n?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)(kY.F,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(Tw.AssetProvider,{id:t,children:(0,tq.jsx)(Sv.F,{dataTestId:`asset-editor-${(0,pi.Gc)(t)}`,renderTabbar:(0,tq.jsx)(Sm.a,{elementEditorType:a}),renderToolbar:(0,tq.jsx)(Sy,{})})})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Asset/Editor/TypeRegistry"]);e.register({name:"image",tabManagerServiceId:"Asset/Editor/ImageTabManager"}),e.register({name:"video",tabManagerServiceId:"Asset/Editor/VideoTabManager"}),e.register({name:"audio",tabManagerServiceId:"Asset/Editor/AudioTabManager"}),e.register({name:"document",tabManagerServiceId:"Asset/Editor/DocumentTabManager"}),e.register({name:"text",tabManagerServiceId:"Asset/Editor/TextTabManager"}),e.register({name:"folder",tabManagerServiceId:"Asset/Editor/FolderTabManager"}),e.register({name:"archive",tabManagerServiceId:"Asset/Editor/ArchiveTabManager"}),e.register({name:"unknown",tabManagerServiceId:"Asset/Editor/UnknownTabManager"}),tc.kL.get(td.K.widgetManager).registerWidget(Tk);let t=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);t.register({name:yl.e.asset.editor.container.name,component:Sx}),t.register({name:yl.e.asset.editor.tab.embeddedMetadata.name,component:T3}),t.register({name:yl.e.asset.editor.tab.customMetadata.name,component:TL}),t.register({name:yl.e.asset.editor.tab.versions.name,component:T2}),t.registerToSlot("asset.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:T4}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:Sa}),t.registerToSlot("asset.editor.toolbar.slots.right",{name:"saveButton",priority:200,component:Sc})}});var Sj=i(72681),Sw=i(56177),Sk=i(50744),ST=i(1947),SS=i(36490),SC=i(53894),SD=i(85566),SI=i(79246);let SM=()=>{let{data:e}=(0,hD.E)(),{selectedRows:t}=(0,SC.U)(),{elementType:i}=(0,dR.useElementContext)();return(e=>{let{data:t,selectedRows:i,elementType:n}=e,{context:r,setContext:a}=(0,SD.L)(),{context:l,setContext:o}=(0,Su.k)(),{context:s,setContext:d}=(0,SI.v)(),c=(0,tG.useMemo)(()=>(0,tI.isNil)(i)?[]:Object.keys(i).map(Number),[i]);(0,tG.useEffect)(()=>{var e;if((0,a3.Po)(t))return;let{context:i,setContext:f}=(()=>{switch(n){case sE.W.dataObject:return{context:r,setContext:a};case sE.W.asset:return{context:l,setContext:o};case sE.W.document:return{context:s,setContext:d};default:return{context:r,setContext:a}}})();if((0,tI.isNil)(i))return;let u=null==i||null==(e=i.config)?void 0:e.contextIdentifiers;if(!(0,tI.isObject)(u)||(0,tI.isNull)(u)||!("type"in u)||!("subType"in u)||!("tags"in u))return;let m=(null==u?void 0:u.tags)??[],p=null==u?void 0:u.tags.filter(e=>!e.includes("_selection"));if((0,tI.isEmpty)(c)&&!(0,tI.isNil)(i)&&m.length>p.length)return void f({id:i.config.id,contextIdentifiers:{...u,tags:p}});if(!(0,tI.isEmpty)(c)){let e=[],r=[];if(c.forEach(i=>{let a=(e=>{let t=(0,tI.get)((0,tI.find)(null==e?void 0:e.columns,{key:"type"}),"value"),i=(0,tI.get)((0,tI.find)(null==e?void 0:e.columns,{key:"classname"}),"value");switch(n){case sE.W.dataObject:return(0,a3.Po)(i)?null:`${Sb.v1}_${i}_selection`.toLowerCase();case sE.W.asset:return(0,a3.Po)(t)?null:`${Sb.W4}_${t}_selection`.toLowerCase();case sE.W.document:return(0,a3.Po)(t)?null:`${Sb.fy}_${t}_selection`.toLowerCase();default:return null}})(null==t?void 0:t.find(e=>e.id===i));e.push({id:i,type:null==u?void 0:u.type}),(0,tI.isNull)(a)||r.push(a)}),r.length>0){let t=null==u?void 0:u.tags.filter(e=>!e.endsWith("_selection")),n=(0,tI.uniq)([...t,...r]),a=(0,tI.isEqual)(u.tags,r),l=(0,tI.isEqual)(u.selectedElements,e);a||l||(0,tI.isNil)(i)||f({id:i.config.id,contextIdentifiers:{...u,tags:n,selectedElements:e}})}}},[t,c,n])})({data:null==e?void 0:e.items,selectedRows:t,elementType:i}),(0,tq.jsx)(tq.Fragment,{})},SL=e=>{let{ViewComponent:t}={...e};return{...e,ViewComponent:()=>{let{data:e}=(0,hD.E)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(t,{}),void 0!==e&&(0,tq.jsx)(SM,{})]})}}};var SF=i(56993);let SE=e=>{let{ContextComponent:t,...i}=e;return{...i,ContextComponent:()=>(0,tq.jsx)(dR.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/GridCellRegistry","DynamicTypes/MetadataRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tq.jsx)(t,{})})}},SP=()=>(0,tq.jsxs)(oI.B,{size:"extra-small",children:[(0,tq.jsx)(hA.y,{}),(0,tq.jsx)(hN.d,{})]});var SA=i(52185),SN=i(8412);let SR=(0,tG.createContext)({batchEdits:[],setBatchEdits:()=>{}}),SV=e=>{let{children:t}=e,[i,n]=(0,tG.useState)([]);return(0,tG.useMemo)(()=>(0,tq.jsx)(SR.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])};var Sz=i(23558),SB=i(66634);let SO=()=>{let{batchEdits:e,setBatchEdits:t}=(0,tG.useContext)(SR);return{batchEdits:e,setBatchEdits:t,updateLocale:(i,n)=>{t(e.map(e=>e.key===i?{...e,locale:n}:e))},resetBatchEdits:()=>{t([])},removeBatchEdit:i=>{t(e.filter(e=>e.key!==i))},addOrUpdateBatchEdit:i=>{let n=[...e],r=e.findIndex(e=>e.key===i.key);-1!==r?n[r]=i:n.push(i),t(n)}}};var SK=i(32773),S_=i(68901);let SH=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,ih.R)(),{ComponentRenderer:a}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===a?(0,tq.jsx)(tq.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tq.jsx)(tq.Fragment,{children:a({batchEdit:t})})},S$=()=>{let{batchEdits:e,removeBatchEdit:t}=SO(),{updateLocale:i}=SO(),n=["-",...(0,p3.t)().requiredLanguages],r=e.map(e=>{let r=e.locale??"-";return{id:e.key,children:(0,tq.jsx)(ig.Tag,{children:(0,i6.t)(`${e.key}`)}),renderRightToolbar:(0,tq.jsx)(TM.e,{items:[...e.localizable?[(0,tq.jsx)(S_.v,{languages:n,onSelectLanguage:t=>{i(e.key,(0,S_.z)(t))},selectedLanguage:r},"language-selection")]:[],(0,tq.jsx)(lp.K,{icon:{value:"close"},onClick:()=>{t(e.key)}},"remove")]}),body:(0,tq.jsx)(SH,{batchEdit:e})}});return(0,tq.jsxs)(tq.Fragment,{children:[0===r.length&&(0,tq.jsx)(he.R,{text:(0,i6.t)("batch-edit.no-content")}),r.length>0&&(0,tq.jsx)(SK.N,{items:r})]})};var SW=i(62786);let Sq=(e,t,i)=>e.map(e=>{let n,r,a;if(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children)){let n=Sq(e.children,t,i);return{...e,children:n}}return(n=!0===e.editable,r=t.some(t=>{var i,n;let r,a,l;return e.key===t.key&&(i=e.group,n=t.group,a=(r=e=>"string"==typeof e?e.split("."):Array.isArray(e)?e.flat().map(e=>String(e)):[String(e)])(i),l=r(n),a.length===l.length&&a.every((e,t)=>e===l[t]))}),a=i({target:"BATCH_EDIT",dynamicTypeIds:[null==e?void 0:e.frontendType]}),n&&a&&!r)?e:null}).filter(e=>null!==e&&(!("children"in e&&void 0!==e.children&&Array.isArray(e.children))||e.children.length>0)),SG=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||SG(e.children));var SU=i(82763);class SQ{async run(e){let{messageBus:t}=e;try{let i=await this.executeEditRequest();if((0,tI.isNil)(i))return void await this.handleJobFailure(Error("No jobRunId returned from edit request"));let n=new SU.j({jobRunId:i,title:this.title,onJobCompletion:async e=>{if(e.isFinished)try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}else await this.handleJobFailure(Error(`Job failed with status: ${e.status}`))},onRetry:async()=>{await this.run(e)},onCustomizeButtons:e=>{let t={label:(0,i6.t)("jobs.job.button-reload"),handler:async()=>{await this.refreshGrid()}};e.addSuccessButton(t),e.addFinishedWithErrorsButton(t)}});t.registerHandler(n)}catch(e){await this.handleJobFailure(e),(0,iX.Ay)(new iX.$g(e.message))}}async handleCompletion(){void 0!==this.onFinish&&await this.onFinish()}async handleJobFailure(e){console.error("Batch edit job failed:",e)}constructor(e){this.title=e.title,this.assetContextId=e.assetContextId,this.onFinish=e.onFinish,this.refreshGrid=e.refreshGrid}}class SJ extends SQ{async executeEditRequest(){var e;return(null==(e=(await this.patchAssets({body:{data:this.selectedRowsIds.map(e=>({id:e,metadata:this.patches}))}})).data)?void 0:e.jobRunId)??null}constructor(e){super(e),this.patchAssets=e.patchAssets,this.selectedRowsIds=e.selectedRowsIds,this.patches=e.patches}}class SZ extends SQ{async executeEditRequest(){var e;return(null==(e=(await this.patchAssetsInFolder({body:{data:[{folderId:this.folderId,metadata:this.patches}],filters:this.filters}})).data)?void 0:e.jobRunId)??null}constructor(e){super(e),this.patchAssetsInFolder=e.patchAssetsInFolder,this.folderId=e.folderId,this.patches=e.patches,this.filters=e.filters}}let SY=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,SB.m)(),{batchEdits:r,addOrUpdateBatchEdit:a,resetBatchEdits:l}=SO(),[o]=tJ.lV.useForm(),{t:s}=(0,iQ.useTranslation)(),[d,{isError:c,isSuccess:f,error:u}]=(0,kc.useAssetPatchByIdMutation)(),[m,{isError:p,isSuccess:g,error:h}]=(0,kc.useAssetPatchFolderByIdMutation)(),{selectedRows:y}=(0,SC.U)(),v=Object.keys(y??{}).map(Number),b=v.length,x=tc.kL.get(td.K.executionEngine),{id:j,elementType:w}=(0,iZ.J)(),{useDataQueryHelper:k}=(0,SN.t)(),{getArgs:T}=k(),{hasType:S}=(0,ih.R)(),{refreshGrid:C}=(0,SW.X)(w),D=()=>{l(),o.resetFields()};(0,tG.useEffect)(()=>{(f||g)&&(i(!1),D()),1===b&&kc.api.util.invalidateTags(uT.qN.ASSET_GRID_ID(v[0]))},[f,g]),(0,tG.useEffect)(()=>{c&&(0,iX.Ay)(new iX.hD(u)),p&&(0,iX.Ay)(new iX.hD(h))},[c,g]);let I=async e=>{var t,i;let n=r.map(t=>({name:t.key,language:t.locale??null,data:e[t.key],type:t.type})),a=(null==(i=T())||null==(t=i.body)?void 0:t.filters)??{};if(delete a.page,delete a.pageSize,0===b){let e=new SZ({title:s("batch-edit.job-title"),patchAssetsInFolder:m,folderId:j,patches:n,filters:a,assetContextId:j,refreshGrid:C});await x.runJob(e)}else if(1===b)await d({body:{data:[{id:v[0],metadata:n}]}});else{let e=new SJ({title:s("batch-edit.job-title"),patchAssets:d,selectedRowsIds:v,patches:n,assetContextId:j,refreshGrid:C});await x.runJob(e)}},M=n(e=>{let t=e.locale??null;a({...e,locale:t})}).menu.items,L=(0,tG.useMemo)(()=>()=>(0,tI.isUndefined)(M)?[]:Sq(M,r,S),[M,r,S]),F=!SG(L());return(0,tq.jsx)(Sz.m,{afterClose:()=>{D()},footer:(0,tq.jsxs)(p9.j,{divider:!0,justify:"space-between",children:[(0,tq.jsx)(pu.m,{menu:{items:L()},children:(0,tq.jsx)(m4.J,{disabled:F,icon:{value:"new"},type:"default",children:s("listing.add-column")})}),r.length>0&&(0,tq.jsxs)(ap.s,{align:"center",gap:"extra-small",children:[(0,tq.jsx)(m4.J,{icon:{value:"close"},onClick:()=>{l()},type:"link",children:s("batch-edit.modal-footer.discard-all-changes")}),(0,tq.jsx)(az.$,{onClick:()=>{o.submit(),i(!1)},type:"primary",children:s("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1),D()},open:t,size:"M",title:(0,tq.jsx)(p8.w,{children:s("batch-edit.modal-title")}),children:(0,tq.jsx)(tJ.lV,{form:o,onFinish:I,children:(0,tq.jsx)(S$,{})})})},SX=e=>{let{...t}=e,{t:i}=(0,iQ.useTranslation)();return(0,tq.jsxs)(tJ.lV,{layout:"vertical",...t,children:[(0,tq.jsx)(tJ.lV.Item,{label:i("export-csv-form.form-field.delimiter"),name:"delimiter",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tq.jsx)(ig.Input,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("export-csv-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tq.jsx)(t8.l,{options:[{value:"name",label:i("export-csv-form.form-field.header.option.name")},{value:"title",label:i("export-csv-form.form-field.header.option.title")},{value:"no_header",label:i("export-csv-form.form-field.header.option.no-header")}]})})]})};var S0=i(74718),S1=i(66707);let{useExportDownloadCsvQuery:S2,useExportDeleteCsvMutation:S3,useExportCsvMutation:S6,useExportCsvFolderMutation:S4,useExportDownloadXlsxQuery:S5,useExportDeleteXlsxMutation:S7,useExportXlsxMutation:S8,useExportXlsxFolderMutation:S9}=pR.api.enhanceEndpoints({addTagTypes:["Export"]}).injectEndpoints({endpoints:e=>({exportDownloadCsv:e.query({query:e=>({url:`/pimcore-studio/api/export/download/csv/${e.jobRunId}`}),providesTags:["Export"]}),exportDeleteCsv:e.mutation({query:e=>({url:`/pimcore-studio/api/export/download/csv/${e.jobRunId}`,method:"DELETE"}),invalidatesTags:["Export"]}),exportCsv:e.mutation({query:e=>({url:"/pimcore-studio/api/export/csv",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportCsvFolder:e.mutation({query:e=>({url:"/pimcore-studio/api/export/csv/folder",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportDownloadXlsx:e.query({query:e=>({url:`/pimcore-studio/api/export/download/xlsx/${e.jobRunId}`}),providesTags:["Export"]}),exportDeleteXlsx:e.mutation({query:e=>({url:`/pimcore-studio/api/export/download/xlsx/${e.jobRunId}`,method:"DELETE"}),invalidatesTags:["Export"]}),exportXlsx:e.mutation({query:e=>({url:"/pimcore-studio/api/export/xlsx",method:"POST",body:e.body}),invalidatesTags:["Export"]}),exportXlsxFolder:e.mutation({query:e=>({url:"/pimcore-studio/api/export/xlsx/folder",method:"POST",body:e.body}),invalidatesTags:["Export"]})}),overrideExisting:!1});var Ce=i(35747),Ct=i(2662);let Ci=e=>{let[t]=ni.Form.useForm(),i=(0,Ct.O)(),{id:n,elementType:r}=(0,iZ.J)(),{element:a}=(0,Sl.D)(n,r),[l,o]=(0,tG.useState)("Element"),[s,{isError:d,error:c}]=S6(),[f,{isError:u,error:m}]=S4(),{selectedRows:p}=(0,SC.U)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,S1.K)(),{useDataQueryHelper:y}=(0,SN.t)(),{getArgs:v}=y(),b=(0,Ce.p)(!0),x=null==b?void 0:b.selectedClassDefinition,{t:j}=(0,iQ.useTranslation)();return(0,tG.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,tG.useEffect)(()=>{d&&(0,iX.Ay)(new iX.hD(c))},[d]),(0,tG.useEffect)(()=>{u&&(0,iX.Ay)(new iX.hD(m))},[u]),(0,tq.jsx)(ig.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tq.jsx)(p8.w,{iconName:"export",children:j("export-csv-form.modal-title")}),children:(0,tq.jsxs)(ig.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tq.jsx)(ig.Alert,{message:j("export-csv-form.export-notice"),showIcon:!0,type:"warning"}),(0,tq.jsx)(SX,{form:t,initialValues:{delimiter:";",header:"name"},onFinish:function(t){let n=new S0.w({title:j("jobs.csv-job.title",{title:l}),downloadUrl:`${(0,tD.$)()}/export/download/csv/{jobRunId}`,action:async()=>await w(t.delimiter,t.header)});i.runJob(n),e.setOpen(!1)}})]})});async function w(e,t){var i,a,l,o;let d=[];for(let e of(null==(a=v())||null==(i=a.body)?void 0:i.columns)??[])void 0!==h.find(t=>t.key===e.key)&&d.push({key:e.key,type:e.type,group:e.group,locale:e.locale,config:e.config});if(0===g.length){let i=(null==(o=v())||null==(l=o.body)?void 0:l.filters)??{};void 0!==i&&(delete i.page,delete i.pageSize);let a=f({body:{folders:[n],elementType:r,columns:d,config:{delimiter:e,header:t},filters:{...i},...!(0,tI.isNil)(null==x?void 0:x.id)&&{classId:x.id}}});return(await a).data.jobRunId}{let i=s({body:{elements:g,elementType:r,columns:d,config:{delimiter:e,header:t}}});return(await i).data.jobRunId}}},Cn=e=>{let{...t}=e,{t:i}=(0,iQ.useTranslation)();return(0,tq.jsx)(tJ.lV,{layout:"vertical",...t,children:(0,tq.jsx)(tJ.lV.Item,{label:i("export-xlsx-form.form-field.header"),name:"header",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tq.jsx)(t8.l,{options:[{value:"name",label:i("export-xlsx-form.form-field.header.option.name")},{value:"title",label:i("export-xlsx-form.form-field.header.option.title")},{value:"no_header",label:i("export-xlsx-form.form-field.header.option.no-header")}]})})})},Cr=e=>{let[t]=ni.Form.useForm(),i=(0,Ct.O)(),{id:n,elementType:r}=(0,iZ.J)(),{element:a}=(0,Sl.D)(n,r),[l,o]=(0,tG.useState)("Element"),[s,{isError:d,error:c}]=S8(),[f,{isError:u,error:m}]=S9(),{selectedRows:p}=(0,SC.U)(),g=void 0!==p?Object.keys(p).map(Number):[],{selectedColumns:h}=(0,S1.K)(),{useDataQueryHelper:y}=(0,SN.t)(),{getArgs:v}=y(),b=(0,Ce.p)(!0),x=null==b?void 0:b.selectedClassDefinition,{t:j}=(0,iQ.useTranslation)();return(0,tG.useEffect)(()=>{void 0!==a&&("filename"in a&&o(a.filename),"key"in a&&o(a.key))},[a]),(0,tG.useEffect)(()=>{d&&(0,iX.Ay)(new iX.hD(c))},[d]),(0,tG.useEffect)(()=>{u&&(0,iX.Ay)(new iX.hD(m))},[u]),(0,tq.jsx)(ig.Modal,{onCancel:()=>{e.setOpen(!1)},onOk:()=>{t.submit()},open:e.open,title:(0,tq.jsx)(p8.w,{iconName:"export",children:j("export-xlsx-form.modal-title")}),children:(0,tq.jsxs)(ig.Space,{direction:"vertical",size:10,style:{paddingTop:10},children:[(0,tq.jsx)(ig.Alert,{message:j("export-xlsx-form.export-notice"),showIcon:!0,type:"warning"}),(0,tq.jsx)(Cn,{form:t,initialValues:{header:"name"},onFinish:function(t){let n=new S0.w({title:j("jobs.xlsx-job.title",{title:l}),downloadUrl:`${(0,tD.$)()}/export/download/xlsx/{jobRunId}`,action:async()=>await w(t.header)});i.runJob(n),e.setOpen(!1)}})]})});async function w(e){var t,i,a,l;let o=[];for(let e of(null==(i=v())||null==(t=i.body)?void 0:t.columns)??[])void 0!==h.find(t=>t.key===e.key)&&o.push({key:e.key,type:e.type,group:e.group,locale:e.locale,config:e.config});if(0===g.length){let t=(null==(l=v())||null==(a=l.body)?void 0:a.filters)??{};void 0!==t&&(delete t.page,delete t.pageSize);let i=f({body:{folders:[n],elementType:r,columns:o,config:{header:e},filters:{...t},...!(0,tI.isNil)(null==x?void 0:x.id)&&{classId:x.id}}});return(await i).data.jobRunId}{let t=s({body:{elements:g,elementType:r,columns:o,config:{header:e}}});return(await t).data.jobRunId}}};class Ca{async run(e){let{messageBus:t}=e;try{let i=await this.executeDeleteRequest();if((0,tI.isNil)(i))return void await this.handleJobFailure(Error("No jobRunId returned from delete request"));let n=new SU.j({jobRunId:i,title:this.title,onJobCompletion:async e=>{if(e.isFinished)try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}else await this.handleJobFailure(Error(`Job failed with status: ${e.status}`))},onRetry:async()=>{await this.run(e)}});t.registerHandler(n)}catch(e){await this.handleJobFailure(e),(0,iX.Ay)(new iX.$g(e.message))}}async handleCompletion(){void 0!==this.onFinish&&await this.onFinish()}async handleJobFailure(e){console.error("Batch delete job failed:",e)}constructor(e){this.itemIds=e.itemIds,this.title=e.title,this.onFinish=e.onFinish}}class Cl extends Ca{async executeDeleteRequest(){var e;let t=await uk.M_.dispatch(kc.api.endpoints.assetBatchDelete.initiate({body:{ids:this.itemIds}}));return(0,tI.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,iX.Ay)(new iX.hD(t.error)),null)}}let Co=()=>{let e=(0,SA.S)(),{id:t,elementType:i}=(0,iZ.J)(),{useDataQueryHelper:n}=(0,SN.t)(),{getArgs:r}=n(),a=tc.kL.get(td.K.executionEngine),{refreshGrid:l}=(0,SW.X)(i),{createZipDownload:o}=(0,Tc.v)({type:"folder"}),{createZipDownload:s}=(0,Tc.v)({type:"asset-list"}),{data:d}=(0,kc.useAssetGetByIdQuery)({id:t}),[c,f]=(0,tG.useState)("Asset"),[u,m]=(0,tG.useState)(!1),[p,g]=(0,tG.useState)(!1),[h,y]=(0,tG.useState)(!1),{t:v}=(0,iQ.useTranslation)();if((0,tG.useEffect)(()=>{void 0!==d&&f(`${d.filename}`)},[d]),void 0===e)return(0,tq.jsx)(tq.Fragment,{});let{selectedRows:b,setSelectedRows:x}=e,j=void 0!==b?Object.keys(b).map(Number):[],w=void 0!==b&&Object.keys(b).length>0,k=async()=>{let e=new Cl({itemIds:j,title:v("batch-delete.job-title"),onFinish:async()=>{await l(),x({})}});await a.runJob(e)},T={items:[{key:"1",label:v("listing.actions.batch-edit"),icon:(0,tq.jsx)(r9.I,{value:"batch-selection"}),onClick:()=>{y(!0)}},{key:"2",label:v("listing.actions.export"),icon:(0,tq.jsx)(r9.I,{value:"export"}),children:[{key:"2.1",label:v("listing.actions.csv-export"),icon:(0,tq.jsx)(r9.I,{value:"export"}),onClick:()=>{m(!0)}},{key:"2.2",label:v("listing.actions.xlsx-export"),icon:(0,tq.jsx)(r9.I,{value:"export"}),onClick:()=>{g(!0)}}]},{key:"3",label:v("listing.actions.zip-download"),icon:(0,tq.jsx)(r9.I,{value:"download"}),onClick:()=>{w?s({jobTitle:c,requestData:{body:{assets:j}}}):o({jobTitle:c,requestData:{body:{folders:[t],filters:{...r().body.filters??{}}}}})}},{key:"4",hidden:!w,label:v("listing.actions.delete"),icon:(0,tq.jsx)(r9.I,{value:"trash"}),onClick:k}]};return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(pu.m,{menu:T,children:(0,tq.jsx)(pf.g,{"data-testid":"listing-batch-actions-button",children:w?v("listing.actions"):v("listing.non-selected.actions")},"dropdown-button")}),(0,tq.jsx)(Ci,{open:u,setOpen:m}),(0,tq.jsx)(Cr,{open:p,setOpen:g}),(0,tq.jsx)(SV,{children:(0,tq.jsx)(SY,{batchEditModalOpen:h,setBatchEditModalOpen:y})})]})},Cs=()=>(0,tq.jsxs)(oI.B,{size:"mini",children:[(0,tq.jsx)(hP.B,{}),(0,tq.jsx)(Co,{})]}),Cd=()=>(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(ni.Space,{size:"small",children:(0,tq.jsx)(Sh.Y,{slot:uj.componentConfig.asset.listing.toolbar.left.name})}),(0,tq.jsx)(ni.Space,{size:"small",children:(0,tq.jsx)(Sh.Y,{slot:uj.componentConfig.asset.listing.toolbar.right.name})})]});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);e.register({name:tu.eb.asset.listing.toolbar.component.name,component:Cd}),e.registerToSlot(tu.eb.asset.listing.toolbar.left.name,{name:"batch-actions",component:Cs}),e.registerToSlot(tu.eb.asset.listing.toolbar.right.name,{name:"pagination",component:SP});let t=tc.kL.get(td.K["Asset/Listing/Builder"]);t.addDecorator({name:"dynamicType",decorator:SE}),t.addDecorator({name:"actionColumn",decorator:ST._}),t.addDecorator({name:"globalContext",decorator:SL}),t.addDecorator({name:"sorting",decorator:hT.Y}),t.addDecorator({name:"paging",decorator:hk.S}),t.addDecorator({name:"columnConfiguration",decorator:Sj.y});let i={useInlineEditApiUpdate:SF.C};t.addDecorator({name:"inlineEdit",decorator:Sk.P,config:i}),t.addDecorator({name:"rowSelection",decorator:Sw.Y,config:{rowSelectionMode:"multiple"}}),t.addDecorator({name:"contextMenu",decorator:SS.y}),t.addDecorator({name:"tagFilter",decorator:hv.A}),t.addDecorator({name:"generalFilters",decorator:hw.p})}});var Cc=i(41989),Cf=i(93121),Cu=i(56292),Cm=i(63186);let Cp=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(Cm.s,{...e,label:t("asset.asset-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var Cg=i(16907),Ch=i(27202),Cy=i(42992),Cv=i(62284),Cb=i(59385),Cx=i(70916);let Cj=()=>{let{treeId:e}=(0,Cx.z)(),t=(0,Cv.useStore)();return{isSourceAllowed:i=>{var n;if(!(0,TS.o)(i.permissions,"settings")||i.isLocked)return!1;let r=t.getState(),a=(0,Cb.selectNodeState)(r,e,i.id.toString());return!(null==a||null==(n=a.treeNodeProps)?void 0:n.isLocked)},isTargetAllowed:e=>(0,TS.o)(e.permissions,"create")}};var Cw=i(16327),Ck=i(23050),CT=i(7433),CS=i(39803),CC=i(5743);let CD=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{dragger:i` - .ant-upload { - padding: 0 !important; - background: none; - border: none !important; - - &:hover { - border: none !important; - } - - &.ant-upload-drag-hover { - position: relative; - border-radius: ${t.borderRadius}px; - - &::after { - content: ''; - position: absolute; - inset: 0; - border: 1px dashed ${t.colorLinkHover}; - border-radius: ${t.borderRadius}px; - box-sizing: border-box; - pointer-events: none; - z-index: 1; - } - } - - .ant-upload-drag-container { - width: 100%; - } - } - `}});var CI=i(82740),CM=i(99050);let CL=e=>{let{styles:t}=CD(),{Dragger:i}=ig.Upload,n=(0,tG.useRef)(null),r=(0,CI.A)(n,!0);return(0,tq.jsx)("div",{ref:n,children:r?(0,tq.jsx)(CM.v,{...e,openFileDialogOnClick:!1,uploadComponent:i,uploadComponentClassName:t.dragger}):e.children})};var CF=i(38990);async function CE(e){return await new Promise((t,i)=>{let n=[],r=()=>{e.readEntries(e=>{0===e.length?t(n):(n.push(...e),r())},i)};r()})}async function CP(e){return await new Promise((t,i)=>{e.file(t,i)})}async function CA(e,t){let i=`${(0,tD.$)()}/elements/asset/folder/${e}`,n=await fetch(i,{method:"POST",credentials:"include",headers:{"Content-Type":"application/json"},body:JSON.stringify({folderName:t})});if(!n.ok&&409!==n.status&&!n.ok){let e=await n.text().catch(()=>String(n.status));if(e.includes("error_folder_exists")||e.includes("already exists"))return;throw Error(`Failed to create folder "${t}": ${e}`)}}async function CN(e){let t=`${(0,tD.$)()}/elements/asset/path?elementPath=${encodeURIComponent(e)}`,i=await fetch(t,{method:"GET",credentials:"include"});if(!i.ok){let t=await i.text().catch(()=>String(i.status));throw Error(`Failed to resolve folder ID for path "${e}": ${t}`)}let n=await i.json();if((0,tI.isNil)(n)||"number"!=typeof n.id)throw Error(`Unexpected response resolving path "${e}": ${JSON.stringify(n)}`);return n.id}async function CR(e,t,i,n){if(""===i)return e;n.set(t,e);let r=e,a=t;for(let e of i.split("/").filter(Boolean)){a=function(e,t){let i=e.endsWith("/")?e.slice(0,-1):e;return`${i}/${t}`}(a,e);let t=n.get(a);if(!(0,tI.isNil)(t)){r=t;continue}await CA(r,e),r=await CN(a),n.set(a,r)}return r}async function CV(e){let t=[],i=[];for(let i=0;i0;){let{entry:e,parentRelativeFolderPath:n,depth:r}=t.shift();if(!(r>20)){if(e.isFile){let t=await CP(e);i.push({file:t,parentRelativeFolderPath:n})}else if(e.isDirectory){let i=""===n?e.name:`${n}/${e.name}`,a=e.createReader();for(let e of(await CE(a)))t.push({entry:e,parentRelativeFolderPath:i,depth:r+1})}}}return i}let Cz=new WeakMap;function CB(e){let t=Cz.get(e)??"";return`${t}/${e.name}-${e.size}`}async function CO(e){let{dataTransfer:t,rootFolderId:i,rootPath:n,folderIdByKey:r,conflictMaps:a,checkFile:l}=e;if(""===n)throw Error(`Missing nodePath for folder ${i}`);let o=await CV(t);if(0===o.length)return[];let s=new Map;for(let{file:e,parentRelativeFolderPath:t}of(r.clear(),o)){Cz.set(e,t);let a=await CR(i,n,t,s);r.set(CB(e),a)}for(let{file:e}of o){let t=CB(e),i=r.get(t);await l(e,i)}return o.map(e=>{let{file:t}=e;return t}).filter(e=>!a.skipKeys.has(CB(e)))}let CK=e=>{var t,i;return null==(i=e.current)||null==(t=i.upload)?void 0:t.uploader};async function C_(e,t){let i=CK(e);for(let t=0;(0,tI.isNil)(i)&&t<10;t++)await new Promise(e=>{setTimeout(e,100)}),i=CK(e);(0,tI.isNil)(i)?(0,iX.Ay)(new iX.$g("Folder upload: upload component not ready after drop")):i.uploadFiles(t)}var CH=i(83655),C$=i(58016);let CW=e=>{let{open:t}=e,{t:i}=(0,iQ.useTranslation)();return(0,tq.jsx)(ig.Modal,{closable:!1,footer:null,open:t,title:(0,tq.jsx)(p8.w,{iconName:"folder",children:i("asset.upload.folder-drop.creating-folders")}),children:(0,tq.jsxs)(ap.s,{align:"center",gap:"small",justify:"center",style:{padding:"16px 0"},children:[(0,tq.jsx)(sN.t,{size:"small"}),(0,tq.jsx)(n5.E,{type:"secondary",children:i("asset.upload.folder-drop.creating-folders-hint")})]})})},Cq=e=>{let{nodeId:t,nodePath:i,children:n}=e,{refreshTree:r}=(0,CF.h)("asset"),a=parseInt(t),[l,o]=(0,tG.useState)(!1),s=(0,tG.useRef)(!1),{checkFile:d,maps:c,resetMaps:f}=(()=>{let{checkFileExists:e,askUserOverwrite:t,resetApplyToAll:i}=(0,C$.e)(),n=(0,tG.useRef)(new Map),r=(0,tG.useRef)(new Set);return{checkFile:async(i,a)=>{let{exists:l,id:o}=await e(i.name,a);if(!l||(0,tI.isNil)(o))return;let s=await t(i.name),d=CB(i);s===CH.W.SKIP?r.current.add(d):s===CH.W.OVERWRITE&&n.current.set(d,o)},maps:{replaceIdByKey:n.current,skipKeys:r.current},resetMaps:()=>{n.current.clear(),r.current.clear(),i()}}})(),u=(0,tG.useRef)(new Map),m=(0,tG.useRef)(null),p=(0,tG.useCallback)(e=>{m.current=e},[]),g=(0,tG.useCallback)(e=>{if(s.current)return u.current.get(CB(e))},[]),h=(0,tG.useCallback)(e=>{if(s.current)return c.replaceIdByKey.get(CB(e))},[c.replaceIdByKey]),y=(0,tG.useCallback)(e=>{if((0,tI.isNil)(e.dataTransfer)||!function(e){if((0,tI.isNil)(e.items))return!1;for(let t=0;t{let e;f(),s.current=!1,o(!0);try{e=await CO({dataTransfer:t,rootFolderId:a,rootPath:i,folderIdByKey:u.current,conflictMaps:c,checkFile:d})}catch(e){(0,iX.Ay)(new iX.$g(`Folder upload (tree traversal): ${e instanceof Error?e.message:String(e)}`)),o(!1);return}o(!1),0!==e.length&&(s.current=!0,await C_(m,e))})()},[i,a,c,d,f]);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(CW,{open:l}),(0,tq.jsx)("div",{onDropCapture:y,children:(0,tq.jsx)(CL,{getExternalReplaceId:h,getTargetFolderIdForFile:g,onSuccess:async()=>{s.current=!1,r(a)},skipAssetFetch:!0,skipConflictCheck:s,targetFolderId:a,uploadRef:p,children:n})})]})};var CG=i(67950),CU=i(42382);let CQ=e=>{let t=e.node??Cf.G,i=(0,kj.W)("asset.tree",{target:t,onComplete:()=>{}});return(0,tq.jsx)(CU.W,{dataTestId:(0,pi.b0)("asset",t.id),items:i})},CJ=(0,CT.Y)((o=Cf.n,s=(0,tG.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tq.jsx)(o,{...e,ref:t,wrapNode:t=>(0,tq.jsx)(CG.y9,{renderMenu:()=>(0,tq.jsx)(CQ,{node:n}),children:(0,tI.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),d=(0,tG.forwardRef)((e,t)=>{var i,n;let r=null==(i=e.metaData)?void 0:i.asset,{t:a}=(0,iQ.useTranslation)();if((null==(n=e.metaData)?void 0:n.asset)===void 0)return(0,tq.jsx)(s,{...e,ref:t});let l=(0,tI.isString)(null==r?void 0:r.filename)&&(null==r?void 0:r.filename)!==""?null==r?void 0:r.filename:a("home");return(0,tq.jsx)(Cg.s,{info:{icon:e.icon,title:l,type:"asset",data:{...r}},children:(0,tq.jsx)(s,{...e,ref:t})})}),c=(0,tG.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,kc.useAssetPatchByIdMutation)({fixedCacheKey:`ASSET_ACTION_RENAME_ID_${e.id}`}),[,{isLoading:r}]=(0,Cw.mG)({fixedCacheKey:`ASSET_ACTION_DELETE_ID_${e.id}`}),{isFetching:a,isLoading:l,isDeleting:o}=(0,Ck.W)(e.id);return(0,tq.jsx)(d,{...e,danger:i||r||o,isLoading:i||!0!==l&&a||n||r,ref:t})}),f=(0,tG.forwardRef)((e,t)=>"folder"!==e.type?(0,tq.jsx)(c,{...e,ref:t}):(0,tq.jsx)(c,{...e,ref:t,wrapNode:t=>(0,tq.jsx)(Cq,{nodeId:e.id,nodePath:e.fullPath??"",children:(0,tI.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})),(0,tG.forwardRef)((e,t)=>{var i;let{move:n}=(0,Cy.e)("asset"),{isSourceAllowed:r,isTargetAllowed:a}=Cj();if((null==(i=e.metaData)?void 0:i.asset)===void 0)return(0,tq.jsx)(f,{...e});let l=e.metaData.asset,o=e=>a(e)&&"folder"===e.type;if(!o(l))return(0,tq.jsx)(f,{...e});let s=e=>{let t=e.data;r(t)&&o(l)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:l.id,parentId:l.parentId}}).catch(()=>{(0,iX.Ay)(new iX.$g("Item could not be moved"))})},d=e=>"asset"===e.type,c=e=>{let t=e.data;return"asset"===e.type&&r(t)&&o(l)};return(0,tq.jsx)(f,{...e,ref:t,wrapNode:t=>(0,tq.jsx)(lM.g,{disableDndActiveIndicator:!0,isValidContext:d,isValidData:c,onDrop:s,children:(0,tI.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}))),CZ=e=>{let{id:t=1,showRoot:i=!0}=e,{openAsset:n}=(0,kx.G)(),{rootNode:r,isLoading:a}=(0,CS.m)(t,i),l=(0,CC.e)().get(yl.e.asset.tree.contextMenu.name);if(i&&a)return(0,tq.jsx)(pa.a,{padding:"small",children:(0,tq.jsx)(Ch.E,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,tq.jsx)(Cc.ng,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:Cp,renderNode:CJ,renderNodeContent:Cc.Yb.renderNodeContent,renderPager:Cu.l,rootNode:r,showRoot:i,tooltipSlotName:yl.e.asset.tree.tooltip.name})};var CY=i(50458),CX=i(11480),C0=i(83986),C1=i(68153),C2=i(17388);class C3{async run(e){let{messageBus:t}=e,{triggerUpload:i,parentFolder:n,title:r,onJobCompletion:a}=this.options;await new Promise(e=>{i({action:`${(0,tD.$)()}/assets/add-zip/${n}`,accept:".zip, .rar, .7zip",name:"zipFile",multiple:!1,onSuccess:async i=>{let n=i[0].response.jobRunId??void 0;if((0,tI.isNumber)(n)){let e=new SU.j({jobRunId:Number(n),totalSteps:2,onJobCompletion:async e=>{e.isFinished&&!(0,tI.isUndefined)(a)&&await a()},title:e=>{if("running"===e.status){if(1===e.currentStep)return(0,i6.t)("jobs.zip-upload-job.step1.title");if(2===e.currentStep)return(0,i6.t)("jobs.zip-upload-job.step2.title")}return r}});t.registerHandler(e)}e()},onError:t=>{console.error(t),e()}})})}constructor(e){this.options=e}}ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.assetTree;e.registerToSlot(t.name,{name:"newAssets",priority:t.priority.newAssets,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{uploadContextMenuItem:i,zipUploadContextMenuItem:n}=(()=>{let{triggerUpload:e}=(0,C0.d)(),{t}=(0,iQ.useTranslation)(),{refreshTree:i}=(0,CF.h)("asset"),{isTreeActionAllowed:n}=(0,C2.H)(),r=(0,Ct.O)(),a=t=>{e({targetFolderId:parseInt(t),skipAssetFetch:!0,onSuccess:async()=>{i(parseInt(t))}})},l=n=>{r.runJob(new C3({title:t("jobs.zip-upload-job.title"),triggerUpload:e,parentFolder:n,onJobCompletion:async()=>{i(parseInt(n))}}))},o=e=>!(0,TS.o)(e.permissions,"create")||(null==e?void 0:e.type)!=="folder";return{upload:a,zipUpload:l,uploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-files"),key:"upload",icon:(0,tq.jsx)(r9.I,{value:"upload-cloud"}),hidden:o(e)||!n(C1.o.AddUpload),onClick:()=>{a(e.id)}}),zipUploadContextMenuItem:e=>({label:t("element.tree.context-menu.add-assets.upload-zip"),key:"uploadZip",icon:(0,tq.jsx)(r9.I,{value:"upload-zip"}),hidden:o(e)||!n(C1.o.AddUploadZip),onClick:()=>{l(e.id)}})}})();return{label:t("element.tree.context-menu.new-assets"),key:"new-assets",icon:(0,tq.jsx)(r9.I,{value:"asset"}),children:[i(e.target),n(e.target)]}}}),e.registerToSlot(t.name,{name:"addFolder",priority:t.priority.addFolder,useMenuItem:e=>{let{addFolderTreeContextMenuItem:t}=(0,CY.N)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameTreeContextMenuItem:t}=(0,Tm.M)("asset",(0,Tg.Cr)("asset","rename",Number.parseInt(e.target.id)));return t(e.target)}}),e.registerToSlot(t.name,{name:"copy",priority:t.priority.copy,useMenuItem:e=>{let{copyTreeContextMenuItem:t}=(0,Cy.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"paste",priority:t.priority.paste,useMenuItem:e=>{let{pasteTreeContextMenuItem:t}=(0,Cy.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"cut",priority:t.priority.cut,useMenuItem:e=>{let{cutTreeContextMenuItem:t}=(0,Cy.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteCut",priority:t.priority.pasteCut,useMenuItem:e=>{let{pasteCutContextMenuItem:t}=(0,Cy.e)("asset");return t(e.target)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteTreeContextMenuItem:t}=(0,Tu.z)("asset",(0,Tg.Cr)("asset","delete",Number.parseInt(e.target.id)));return t(e.target)}}),e.registerToSlot(t.name,{name:"createZipDownload",priority:t.priority.createZipDownload,useMenuItem:e=>{let{createZipDownloadTreeContextMenuItem:t}=(0,Tc.v)({type:"folder"});return t(e.target)}}),e.registerToSlot(t.name,{name:"uploadNewVersion",priority:t.priority.uploadNewVersion,useMenuItem:e=>{let{uploadNewVersionTreeContextMenuItem:t}=(0,Th.D)();return t(e.target)}}),e.registerToSlot(t.name,{name:"download",priority:t.priority.download,useMenuItem:e=>{let{downloadTreeContextMenuItem:t}=(0,Td.m)();return t(e.target)}}),e.registerToSlot(t.name,{name:"advanced",priority:t.priority.advanced,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{lockTreeContextMenuItem:i,lockAndPropagateTreeContextMenuItem:n,unlockTreeContextMenuItem:r,unlockAndPropagateTreeContextMenuItem:a,isLockMenuHidden:l}=(0,CX.V)("asset");return{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tq.jsx)(r9.I,{value:"more"}),hidden:l(e.target),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,tq.jsx)(r9.I,{value:"lock"}),hidden:l(e.target),children:[i(e.target),n(e.target),r(e.target),a(e.target)]}]}}}),e.registerToSlot(t.name,{name:"refreshTree",priority:t.priority.refreshTree,useMenuItem:e=>{let{refreshTreeContextMenuItem:t}=(0,CF.h)("asset");return t(e.target)}})}}),ts.s.registerModule({onInit:()=>{tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]).register({name:yl.e.asset.tree.contextMenu.name,component:CQ})}});let C6=e=>{var t,i,n,r,a,l,o;let{node:s,children:d}=e,{t:c}=(0,iQ.useTranslation)(),[f,u]=(0,tG.useState)(!1),[m,p]=(0,tG.useState)(!1),g=(0,tG.useRef)(null),h=(0,tG.useRef)(null),y=(0,tG.useRef)(null),v=(0,tG.useRef)({x:0,y:0}),b=(null==(t=s.metaData)?void 0:t.asset)??(null==(i=s.metaData)?void 0:i.dataObject)??(null==(n=s.metaData)?void 0:n.document),x=(null==(r=s.metaData)?void 0:r.asset)!==void 0,j=(null==(a=s.metaData)?void 0:a.dataObject)!==void 0,w=(null==b||null==(l=b.customAttributes)?void 0:l.tooltip)!==null&&(null==b||null==(o=b.customAttributes)?void 0:o.tooltip)!==void 0;(0,tG.useEffect)(()=>{let e=e=>{let t=!(0,tI.isNull)(e.detail);p(t),t&&T()};return window.addEventListener("studioui:draggable:change-drag-info",e),()=>{window.removeEventListener("studioui:draggable:change-drag-info",e),k()}},[]);let k=(0,tG.useCallback)(()=>{null!==h.current&&(clearTimeout(h.current),h.current=null),null!==y.current&&(clearInterval(y.current),y.current=null)},[]),T=(0,tG.useCallback)(()=>{u(!1),k()},[k]),S=(0,tG.useCallback)(()=>{if(null===g.current)return!1;let e=g.current.getBoundingClientRect(),{x:t,y:i}=v.current;return t>=e.left&&t<=e.right&&i>=e.top&&i<=e.bottom},[]),C=(0,tG.useCallback)(()=>{y.current=setInterval(()=>{S()||T()},100)},[S,T]),D=(0,tG.useCallback)(()=>{m||(k(),h.current=setTimeout(()=>{u(!0),C()},500))},[m,k,C]),I=(0,tG.useCallback)(()=>{T()},[T]);(0,tG.useEffect)(()=>{let e=e=>{if(v.current={x:e.clientX,y:e.clientY},!f||null===g.current)return;let t=g.current.getBoundingClientRect(),{clientX:i,clientY:n}=e;i>=t.left-10&&i<=t.right+10&&n>=t.top-10&&n<=t.bottom+10||T()};return document.addEventListener("mousemove",e,{passive:!0}),()=>{document.removeEventListener("mousemove",e)}},[f,T]);let M=(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)("div",{children:[c("ID"),": ",s.id]}),(0,tq.jsxs)("div",{children:[c("Type"),": ",c(j&&("object"===s.type||"variant"===s.type)?s.metaData.dataObject.className:s.type)]})]});return(0,tq.jsx)("div",{onMouseEnter:D,onMouseLeave:I,ref:g,children:(0,tq.jsx)(iN.m,{open:f,overlayStyle:{width:280},placement:"right",title:(0,tq.jsxs)(pa.a,{padding:"extra-small",children:[x&&(null==b?void 0:b.imageThumbnailPath)!==void 0&&(0,tq.jsx)(pa.a,{className:"w-full",padding:{bottom:"extra-small"},children:(0,tq.jsx)(ap.s,{className:"w-full",justify:"center",style:{maxHeight:200,overflow:"hidden"},children:(0,tq.jsx)(hl._,{alt:b.filename,src:b.imageThumbnailPath,style:{maxHeight:200}})})}),w?(0,tq.jsx)("div",{dangerouslySetInnerHTML:{__html:b.customAttributes.tooltip}}):M]}),children:d})})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.assetListGrid;e.registerToSlot(t.name,{name:"open",priority:t.priority.open,useMenuItem:e=>{let{openGridContextMenuItem:t}=(0,Ty.i)("asset");return t(e.row)??null}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameGridContextMenuItem:t}=(0,Tm.M)("asset",(0,Tg.Cr)("asset","rename",Number(e.row.id)));return t(e.row)??null}}),e.registerToSlot(t.name,{name:"locateInTree",priority:t.priority.locateInTree,useMenuItem:e=>{let{locateInTreeGridContextMenuItem:t}=(0,Tv.H)("asset");return t(e.row,e.onComplete)??null}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteGridContextMenuItem:t}=(0,Tu.z)("asset",(0,Tg.Cr)("asset","delete",Number(e.row.id)));return t(e.row)??null}}),e.registerToSlot(t.name,{name:"download",priority:t.priority.download,useMenuItem:e=>{let{downloadGridContextMenuItem:t}=(0,Td.m)();return t(e.row)??null}})}});var C4=i(53463);let C5=e=>{let{node:t}=e,{isLocked:i,locked:n}=t,{styles:r}=(0,C4.I)();return i?(0,tq.jsx)(r9.I,{className:(0,tI.isNil)(n)||(0,tI.isEmpty)(n)?r.indirectLockedIcon:"","data-testid":`tree-node-lock-icon-${t.id}`,options:{width:14,height:14},value:"lock"}):null};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.widgetManager),t=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);e.registerWidget({name:"asset-tree",component:CZ}),t.register({name:yl.e.asset.tree.tooltip.name,component:C6}),t.registerToSlot(yl.e.asset.tree.node.meta.name,{name:"lockIcon",component:C5,priority:100})}}),i(38380);let C7={key:"versions",label:"version.label",children:(0,tq.jsx)(uj.ComponentRenderer,{component:tu.eb.dataObject.editor.tab.versions.name}),icon:(0,tq.jsx)(r9.I,{value:"history"}),isDetachable:!0,hidden:e=>!(0,TS.o)(e.permissions,"versions")},C8={key:"preview",label:"preview.label",children:(0,tq.jsx)(uj.ComponentRenderer,{component:tu.eb.dataObject.editor.tab.preview.name}),icon:(0,tq.jsx)(r9.I,{value:"preview"}),isDetachable:!0,hidden:e=>!e.hasPreview};var C9=i(28897),De=i(20713),Dt=i(26280),Di=i(7652);let Dn=()=>{let{t:e}=(0,iQ.useTranslation)(),{deleteDraft:t,isLoading:i,buttonText:n}=(0,Di.K)("data-object"),{id:r}=(0,tG.useContext)(De.Z),{dataObject:a}=(0,aG.A)(r);if((0,tI.isNil)(a))return(0,tq.jsx)(tq.Fragment,{});let l=null==a?void 0:a.draftData;if((0,tI.isNil)(l)||a.changes[Dt.u0])return(0,tq.jsx)(tq.Fragment,{});let o=(0,tq.jsx)(az.$,{danger:!0,ghost:!0,loading:i,onClick:t,size:"small",children:n});return(0,tq.jsx)(pa.a,{padding:"extra-small",children:(0,tq.jsx)(kY.F,{action:o,icon:(0,tq.jsx)(r9.I,{value:"draft"}),message:e(l.isAutoSave?"draft-alert-auto-save":"draft-alert"),showIcon:!0,type:"info"})})},Dr=e=>{let{layout:t,data:i,className:n}=e,{form:r,updateModifiedDataObjectAttributes:a,updateDraft:l,getChangedFieldName:o,disabled:s}=(0,C9.P)(),d=(0,aU.n)(),c=(e,t)=>{var i;if(s)return;a(e);let n=o(e);null!==n&&(null==d||null==(i=d.getInheritanceState(n))?void 0:i.inherited)===!0&&(null==d||d.breakInheritance(n)),l().catch(e=>{console.error(e)})};return(0,tG.useMemo)(()=>(0,tq.jsx)(ig.ConfigProvider,{theme:{components:{Form:{itemMarginBottom:0}}},children:(0,tq.jsx)(t4._Y,{children:(0,tq.jsx)(tJ.lV,{className:n,form:r,initialValues:i,layout:"vertical",onValuesChange:c,preserve:!0,children:(0,tq.jsx)(pl.s,{renderTopBar:(0,tq.jsx)(Dn,{}),children:(0,tq.jsx)(as.f,{...t})})})})}),[t,i,n])};var Da=i(91434),Dl=i(15925);let Do=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{editContainer:i` - display: flex; - width: 100%; - height: 100%; - flex-direction: column; - - & > .ant-space, - & > .ant-space > .ant-space-item { - display: flex; - width: 100%; - height: 100%; - - .ant-tabs { - width: 100%; - } - } - `}},{hashPriority:"high"});var Ds=i(33541);let Dd=()=>{let{id:e}=(0,iZ.J)(),{currentLayout:t}=(0,dN.W)(),{data:i,isLoading:n,error:r}=(0,Da.nF)({id:e,layoutId:t??void 0}),{dataObject:a,isLoading:l}=(0,aG.A)(e),{styles:o}=Do();if(void 0!==r&&(0,iX.Ay)(new iX.hD(r)),void 0===i||n||l)return(0,tq.jsx)(uE.U,{loading:!0});if(!(void 0!==a&&"objectData"in a))throw Error("Data Object data is undefined in Edit Container");return(0,tq.jsx)(Dl.Q,{children:(0,tq.jsx)(Ds.E,{children:(0,tq.jsx)(Dr,{className:o.editContainer,data:null==a?void 0:a.objectData,layout:i})})})},Dc={key:"edit",label:"edit",children:(0,tq.jsx)(uj.ComponentRenderer,{component:uj.componentConfig.dataObject.editor.tab.edit.name}),icon:(0,tq.jsx)(r9.I,{value:"edit-pen"}),isDetachable:!1};var Df=i(68845);let Du=()=>(0,tq.jsx)(Df.w8,{}),Dm={key:"listing",label:"folder.folder-editor-tabs.view",children:(0,tq.jsx)(uj.ComponentRenderer,{component:uj.componentConfig.dataObject.editor.tab.listing.name}),icon:(0,tq.jsx)(r9.I,{value:"list"}),isDetachable:!1};var Dp=i(35510),Dg=i(69187),Dh=i(69622),Dy=i(14826),Dv=i(41309),Db=i(60213),Dx=i(76133);let Dj=(0,tG.createContext)({batchEdits:[],setBatchEdits:()=>{}}),Dw=e=>{let{children:t}=e,[i,n]=(0,tG.useState)([]);return(0,tG.useMemo)(()=>(0,tq.jsx)(Dj.Provider,{value:{batchEdits:i,setBatchEdits:n},children:t}),[i,t])},Dk=()=>{let{batchEdits:e,setBatchEdits:t}=(0,tG.useContext)(Dj),i=(0,p3.t)();return{batchEdits:e,setBatchEdits:t,addOrUpdateBatchEdit:(n,r)=>{let a={...n,locale:n.localizable?n.locale??i.requiredLanguages[0]:null,value:r},l=[...e],o=e.findIndex(e=>e.key===a.key);-1!==o?l[o]=a:l.push(a),t(l)},addOrUpdateBatchEdits:n=>{let r=[...e];n.forEach(t=>{let n={...t,locale:t.localizable?t.locale??i.requiredLanguages[0]:null,value:void 0},a=e.findIndex(e=>e.key===n.key);-1!==a?r[a]=n:r.push(n)}),t(r)},updateLocale:(i,n)=>{let r=i.key;t(e.map(e=>e.key===r?{...e,locale:n}:e))},resetBatchEdits:()=>{t([])},removeBatchEdit:i=>{t(e.filter(e=>{if("dataobject.classificationstore"===i.type){if(!("keyId"in e.config)||!("groupId"in e.config)||!("keyId"in i.config)||!("groupId"in i.config))throw Error("keyId or groupId is missing in config");return e.key!==i.key||e.config.keyId!==i.config.keyId||e.config.groupId!==i.config.groupId}return e.key!==i.key}))}}},DT=e=>{let{batchEdit:t}=e,{frontendType:i,type:n}=t,{getComponentRenderer:r}=(0,ih.R)();return(0,tG.useMemo)(()=>{let{ComponentRenderer:e}=r({dynamicTypeIds:[n,i],target:"BATCH_EDIT"});return null===e?(0,tq.jsx)(tq.Fragment,{children:"Dynamic Field Filter not supported"}):(0,tq.jsx)(tq.Fragment,{children:e({batchEdit:t})})},[t])},DS=()=>{let{batchEdits:e,removeBatchEdit:t}=Dk(),{updateLocale:i}=Dk(),n=(0,p3.t)(),r=n.requiredLanguages,a=e.map(e=>{let a=e.locale??n.requiredLanguages[0],l="fieldDefinition"in e.config?e.config.fieldDefinition.title:e.key,o="dataobject.classificationstore"===e.type?`${e.key}-${e.config.keyId}-${e.config.groupId}`:e.key;return{id:`${e.key}`,key:o,children:(0,tq.jsx)(ig.Tag,{children:(0,i6.t)(`${l}`)}),renderRightToolbar:(0,tq.jsx)(TM.e,{items:[...e.localizable?[(0,tq.jsx)(S_.v,{languages:r,onSelectLanguage:t=>{i(e,(0,S_.z)(t))},selectedLanguage:a},"language-selection")]:[],(0,tq.jsx)(lp.K,{icon:{value:"close"},onClick:()=>{t(e)}},"remove")]}),body:(0,tq.jsx)(DT,{batchEdit:e})}});return(0,tq.jsxs)(tq.Fragment,{children:[0===a.length&&(0,tq.jsx)(he.R,{text:(0,i6.t)("batch-edit.no-content")}),a.length>0&&(0,tq.jsx)(SK.N,{items:a})]})},DC=(e,t,i,n)=>e.map(e=>{let r,a,l,o,s;if(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children)){let r=DC(e.children,t,i,n);return{...e,children:r}}return(r=!0===e.editable,a=t.some(t=>{var i,n;let r,a,l;return e.key===t.key&&(i=e.group,n=t.group,a=(r=e=>"string"==typeof e?e.split("."):Array.isArray(e)?e.flat().map(e=>String(e)):[String(e)])(i),l=r(n),a.length===l.length&&a.every((e,t)=>e===l[t]))&&"dataobject.classificationstore"!==e.mainType}),l=i({target:"BATCH_EDIT",dynamicTypeIds:[null==e?void 0:e.mainType,null==e?void 0:e.frontendType]}),o=!1,(s=tc.kL.get(td.K["DynamicTypes/ObjectDataRegistry"])).hasDynamicType(null==e?void 0:e.frontendType)&&(o=s.getDynamicType(null==e?void 0:e.frontendType).isAllowedInBatchEdit),r&&l&&!a&&o)?e:null}).filter(e=>null!==e&&(!("children"in e&&void 0!==e.children&&Array.isArray(e.children))||e.children.length>0)),DD=e=>e.some(e=>!(null!==e&&"children"in e&&void 0!==e.children&&Array.isArray(e.children))||DD(e.children));var DI=i(74003),DM=i(96511);class DL extends SQ{async executeEditRequest(){var e;return(null==(e=(await this.patchObjectsByIds({body:{data:this.selectedRowsIds.map(e=>({id:e,editableData:this.values}))}})).data)?void 0:e.jobRunId)??null}constructor(e){super(e),this.patchObjectsByIds=e.patchObjectsByIds,this.selectedRowsIds=e.selectedRowsIds,this.values=e.values}}class DF extends SQ{async executeEditRequest(){var e;return(null==(e=(await this.patchObjectsInFolder({body:{data:[{folderId:this.folderId,editableData:this.values}],filters:this.filters,classId:this.classId}})).data)?void 0:e.jobRunId)??null}constructor(e){super(e),this.patchObjectsInFolder=e.patchObjectsInFolder,this.folderId=e.folderId,this.values=e.values,this.filters=e.filters,this.classId=e.classId}}let DE=e=>{let{batchEditModalOpen:t,setBatchEditModalOpen:i}=e,{getAvailableColumnsDropdown:n}=(0,SB.m)(),{batchEdits:r,addOrUpdateBatchEdit:a,addOrUpdateBatchEdits:l,resetBatchEdits:o}=Dk(),[s]=tJ.lV.useForm(),{selectedRows:d}=(0,SC.U)(),[c,{error:f,isError:u,isSuccess:m}]=(0,Da.Ex)(),[p,{error:g,isError:h,isSuccess:y}]=(0,Da.M5)(),{useDataQueryHelper:v}=(0,SN.t)(),{getArgs:b}=v(),{id:x,elementType:j}=(0,iZ.J)(),w=(0,iv.useAppDispatch)(),k=tc.kL.get(td.K.executionEngine),T=Object.keys(d??{}),S=T.length,{hasType:C,getType:D}=(0,ih.R)(),{refreshGrid:I}=(0,SW.X)(j),M=(0,Ce.p)().selectedClassDefinition,{openModal:L}=(0,DI._P)({onUpdate:function(e){let t=e.modalContext,i=F.find(e=>e.key===t.name&&"dataobject.classificationstore"===e.type);if(void 0===i)throw Error("Could not find base column for classification store field "+t.name);let n=[];"group-by-key"===e.type&&(e.data.forEach(e=>{let t=e.definition,a=!1;r.forEach(t=>{var n,r;t.key===i.key&&(null==(n=t.config)?void 0:n.keyId)===e.id&&(null==(r=t.config)?void 0:r.groupId)===e.groupId&&(a=!0)}),a||n.push({...i,key:`${i.key}`,frontendType:null==t?void 0:t.fieldtype,config:{keyId:e.id,groupId:e.groupId,fieldDefinition:t}})}),l(n))}}),{availableColumns:F}=(0,SB.m)(),E=()=>{o(),s.resetFields()};(0,tG.useEffect)(()=>{u&&(0,iX.Ay)(new iX.hD(f)),h&&(0,iX.Ay)(new iX.hD(g))},[f,g]),(0,tG.useEffect)(()=>{(m||y)&&E(),y&&1===S&&w(Da.FH.util.invalidateTags(uT.qN.DATA_OBJECT_GRID_ID(x)))},[m,y]);let P=async e=>{if(0===S){var t,n;let i=(null==(n=b())||null==(t=n.body)?void 0:t.filters)??{};delete i.page,delete i.pageSize;let r=new DF({title:(0,i6.t)("batch-edit.job-title"),patchObjectsInFolder:c,folderId:x,values:e,filters:i,classId:String(null==M?void 0:M.id),assetContextId:x,refreshGrid:I});await k.runJob(r)}else if(1===S)await p({body:{data:[{id:parseInt(T[0]),editableData:e}]}});else{let t=new DL({title:(0,i6.t)("batch-edit.job-title"),patchObjectsByIds:p,selectedRowsIds:T.map(Number),values:e,assetContextId:x,refreshGrid:I});await k.runJob(t)}E(),i(!1)},A=n(e=>{if("dataobject.classificationstore"===e.type){var t;if(!("fieldDefinition"in e.config))throw Error("Field definition is missing in config");L({...null==(t=e.config)?void 0:t.fieldDefinition,fieldName:e.key,allowedTabs:[DM.X.GroupByKey]});return}a(e,void 0)}).menu.items,N=(0,tG.useMemo)(()=>()=>(0,tI.isUndefined)(A)?[]:DC(A,r,C,D),[A,r,C,D]),R=!DD(N());return(0,tq.jsx)(Dl.Q,{children:(0,tq.jsx)(Sz.m,{afterClose:()=>{E()},footer:(0,tq.jsxs)(p9.j,{divider:!0,justify:"space-between",children:[(0,tq.jsx)(pu.m,{menu:{items:N()},children:(0,tq.jsx)(m4.J,{disabled:R,icon:{value:"new"},type:"default",children:(0,i6.t)("listing.add-column")})}),r.length>0&&(0,tq.jsxs)(ap.s,{align:"center",gap:"extra-small",children:[(0,tq.jsx)(m4.J,{icon:{value:"close"},onClick:()=>{E()},type:"link",children:(0,i6.t)("batch-edit.modal-footer.discard-all-changes")}),(0,tq.jsx)(az.$,{onClick:()=>{s.submit()},type:"primary",children:(0,i6.t)("batch-edit.modal-footer.apply-changes")})]})]}),onCancel:()=>{i(!1)},open:t,size:"XL",title:(0,tq.jsx)(p8.w,{children:(0,i6.t)("batch-edit.modal-title")}),children:(0,tq.jsx)(t4._Y,{fieldWidthValues:{large:9999,medium:9999,small:9999},children:(0,tq.jsx)(tJ.lV,{form:s,onFinish:P,children:(0,tq.jsx)(DS,{})})})})})};class DP extends Ca{async executeDeleteRequest(){var e;let t=await uk.M_.dispatch(Da.FH.endpoints.dataObjectBatchDelete.initiate({body:{ids:this.itemIds}}));return(0,tI.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,iX.Ay)(new iX.hD(t.error)),null)}}let DA=()=>{let e=(0,SA.S)(),t=dl.elementTypes.dataObject,{refreshGrid:i}=(0,SW.X)(t),n=tc.kL.get(td.K.executionEngine),[r,a]=(0,tG.useState)(!1),[l,o]=(0,tG.useState)(!1),[s,d]=(0,tG.useState)(!1),{t:c}=(0,iQ.useTranslation)();if(void 0===e)return(0,tq.jsx)(tq.Fragment,{});let{selectedRows:f,setSelectedRows:u}=e,m=void 0!==f?Object.keys(f).map(Number):[],p=void 0!==f&&Object.keys(f).length>0,g=async()=>{let e=new DP({itemIds:m,title:c("batch-delete.job-title"),onFinish:async()=>{await i(),u({})}});await n.runJob(e)},h={items:[{key:"1",label:c("listing.actions.batch-edit"),icon:(0,tq.jsx)(r9.I,{value:"batch-selection"}),onClick:()=>{a(!0)}},{key:"2",label:c("listing.actions.export"),icon:(0,tq.jsx)(r9.I,{value:"export"}),children:[{key:"2.1",label:c("listing.actions.csv-export"),icon:(0,tq.jsx)(r9.I,{value:"export"}),onClick:()=>{o(!0)}},{key:"2.2",label:c("listing.actions.xlsx-export"),icon:(0,tq.jsx)(r9.I,{value:"export"}),onClick:()=>{d(!0)}}]},{key:"3",hidden:!p,label:c("listing.actions.delete"),icon:(0,tq.jsx)(r9.I,{value:"trash"}),onClick:g}]};return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(pu.m,{menu:h,children:(0,tq.jsx)(pf.g,{"data-testid":"listing-batch-actions-button",children:p?c("listing.actions"):c("listing.non-selected.actions")},"dropdown-button")}),(0,tq.jsx)(Ci,{open:l,setOpen:o}),(0,tq.jsx)(Cr,{open:s,setOpen:d}),(0,tq.jsx)(DI.K7,{children:(0,tq.jsx)(Dw,{children:(0,tq.jsx)(DE,{batchEditModalOpen:r,setBatchEditModalOpen:a})})})]})};var DN=i(40721);let DR=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,aB.Vl)(),[i]=(0,Dg.ZE)(),n=(0,iv.useAppDispatch)(),{openDataObject:r}=(0,DN.H)(),{isTreeActionAllowed:a}=(0,C2.H)(),{getClassDefinitionsForCurrentUser:l}=(0,aX.G)(),o=async(e,t,a)=>{let l=i({parentId:a,dataObjectAddParameters:{key:t,classId:e,type:"variant"}});try{let e=await l;if(void 0!==e.error)return void(0,iX.Ay)(new iX.hD(e.error));let{id:t}=e.data;r({config:{id:t}}),n((0,Cb.refreshNodeChildren)({nodeId:String(a),elementType:"data-object"}))}catch(e){(0,iX.Ay)(new iX.$g("Error creating data object"))}};return{addVariantTreeContextMenuItem:i=>({label:e("data-object.tree.context-menu.add-variant"),key:"addVariant",icon:(0,tq.jsx)(r9.I,{value:"data-object-variant"}),hidden:!a(C1.o.AddVariant)||!(0,TS.o)(i.permissions,"create")||(0,tI.isEmpty)(l()),onClick:()=>{var n,r,a;n=(e=>{if(!(0,tI.isNil)(e))return l().find(t=>t.name===e)})(i.metaData.dataObject.className),r=parseInt(i.id),t.input({title:e("data-object.create-variant",{className:n.name}),label:e("form.label.new-item"),rule:{required:!0,message:e("form.validation.required")},onOk:async e=>{await o(n.id,e,r),null==a||a(e)}})}}),createDataObjectVariant:(i,n,r)=>{t.input({title:e("data-object.create-variant",{className:i.name}),label:e("form.label.new-item"),rule:{required:!0,message:e("form.validation.required")},onOk:async e=>{await o(i.id,e,n),null==r||r(e)}})}}},DV=()=>{let{createDataObjectVariant:e}=DR(),{selectedClassDefinition:t}=(0,Ce.p)(),{id:i}=(0,iZ.J)(),n=(0,uk.jL)(),{t:r}=(0,iQ.useTranslation)();return(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:()=>{e({id:(null==t?void 0:t.id)??"",name:(null==t?void 0:t.name)??""},i,e=>(n(Da.FH.util.invalidateTags(uT.qN.DATA_OBJECT_GRID_ID(i))),e))},children:r("data-object.variant-listing.create-data-variant")})},Dz=()=>{let{selectedRows:e}=(0,SC.U)(),t=Object.keys(e??{}).length;return(0,tG.useMemo)(()=>(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsxs)(oI.B,{children:[(0,tq.jsxs)(a$.$,{size:"extra-small",children:[t>0&&(0,tq.jsx)(hP.B,{}),t<=0&&(0,tq.jsx)(DV,{})]}),(0,tq.jsx)(DA,{})]}),(0,tq.jsxs)(oI.B,{size:"extra-small",children:[(0,tq.jsx)(hA.y,{}),(0,tq.jsx)(hN.d,{})]})]}),[t])},DB={...hj.G,ViewComponent:()=>{let{dataQueryResult:e}=(0,hD.E)(),{selectedClassDefinition:t}=(0,Ce.p)();return(0,tG.useMemo)(()=>(0,tq.jsx)(pl.s,{renderSidebar:void 0!==e?(0,tq.jsx)(hI.B,{}):void 0,renderToolbar:void 0!==e?(0,tq.jsx)(Dz,{}):void 0,children:void 0!==t&&void 0!==e&&(0,tq.jsx)(hM.E,{})}),[e])},useDataQuery:Dg.dB,useDataQueryHelper:Dh.Q,useElementId:Dp.$},DO=()=>{let{id:e}=(0,iZ.J)(),t=(0,aG.A)(e),i="className"in t?t.className:void 0,n=(0,hS.Z)(Dy._,hT.Y,hk.S,[hq.f,{isResolvingClassDefinitionsBasedOnElementId:!1,classRestriction:[{classes:i}]}],Dv.y,[Sk.P,{useInlineEditApiUpdate:Dx.C}],[Sw.Y,{rowSelectionMode:"multiple"}],Db.y,hv.A,hw.p,[hV.u,{elementType:"data-object",restrictedOptions:["variant"]}])(DB);return(0,tq.jsx)(hx.U,{serviceIds:["DynamicTypes/ObjectDataRegistry","DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tq.jsx)(hj.w,{...n})})},DK=()=>{let{setHasLocalizedFields:e}=(0,a0.Sk)();return(0,tG.useEffect)(()=>{e(!0)},[e]),(0,tG.useMemo)(()=>(0,tq.jsx)(DO,{}),[])},D_={key:"variants",label:"data-object.object-editor-tabs.variants",icon:(0,tq.jsx)(r9.I,{value:"data-object-variant"}),children:(0,tq.jsx)(uj.ComponentRenderer,{component:uj.componentConfig.dataObject.editor.tab.variants.name}),hidden:e=>!("allowVariants"in e&&(null==e?void 0:e.allowVariants)===!0)};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DataObject/Editor/ObjectTabManager"]),t={...Dm};t.hidden=e=>(null==e?void 0:e.hasChildren)===!1,t.label="object.object-editor-tabs.children-listing",e.register(Dc),e.register(C8),e.register(kh.Aj),e.register(C7),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(t),e.register(D_),e.register(kh.MD)}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DataObject/Editor/VariantTabManager"]);e.register(Dc),e.register(C8),e.register(kh.Aj),e.register(C7),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(D_),e.register(kh.MD)}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DataObject/Editor/FolderTabManager"]);e.register(Dm),e.register(kh.Aj),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD)}});var DH=i(68360);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.dataObjectEditorToolbar;e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishContextMenuItem:t}=(0,DH.M)("data-object");return t(e.target,e.onComplete)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteContextMenuItem:t}=(0,Tu.z)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameContextMenuItem:t}=(0,Tm.M)("data-object");return t(e.target)}})}});var D$=i(44725),DW=i(67895);let Dq=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t}=(0,tG.useContext)(De.Z),{dataObject:i}=(0,aG.A)(t),{refreshElement:n}=(0,Tp.d)("data-object"),{isLoading:r,layouts:a}=(0,DW.c)(t),{setCurrentLayout:l,currentLayout:o}=(0,dN.W)(),[s,d]=(0,tG.useState)(),c=(0,tG.useRef)(null);if((0,tG.useEffect)(()=>{if((0,tI.isString)(s)){var e;null==(e=c.current)||e.refresh()}},[s]),r)return(0,tq.jsx)(tq.Fragment,{});let f=()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,u=(a??[]).map(t=>({key:`reload-${t.id}`,label:(0,tq.jsx)(n5.E,{strong:o===t.id,children:e(t.name)}),onClick:()=>{d(t.id)}}));return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(T6.j,{hasDataChanged:f,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tq.jsx)(lp.K,{"data-testid":"data-object-editor-reload-button",icon:{value:"refresh"},children:e("toolbar.reload")})},"reload"),u.length>1&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(T6.j,{hasDataChanged:f,onCancel:()=>{d(null)},onReload:()=>{(0,tI.isString)(s)&&l(s),n(t,!0)},ref:c,title:e("toolbar.reload.confirmation")},"reload"),(0,tq.jsx)(pu.m,{menu:{items:u},trigger:["hover"],children:(0,tq.jsx)(lp.K,{icon:{value:"chevron-down"},onClick:e=>{e.stopPropagation()},children:e("toolbar.switch-layout")})},"switch-layout")]})]})},DG=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t}=(0,tG.useContext)(De.Z),{dataObject:i}=(0,aG.A)(t),[n,r]=(0,tG.useState)(void 0),a=(0,kj.W)(kw.r.dataObjectEditorToolbar.name,{target:i,onComplete:()=>{r(void 0)}}),l=a.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),o=[];return o.push((0,tq.jsx)(Dq,{},"reload-button")),l.length>0&&o.push((0,tq.jsx)(pu.m,{menu:{items:a,onClick:e=>{"unpublish"===e.key&&r(!0)}},open:n,children:(0,tq.jsx)(pf.g,{children:e("toolbar.more")})},"dropdown-button")),(0,tq.jsx)(TM.e,{items:o,noSpacing:!0})};var DU=i(36877);let DQ=()=>{let{id:e}=(0,tG.useContext)(De.Z),{activeTab:t}=(0,aG.A)(e);return[Dc.key,Dm.key,D_.key].includes(t??"")?(0,tq.jsx)(DU.v,{}):(0,tq.jsx)(tq.Fragment,{})};var DJ=i(74108),DZ=i(4919);let DY=()=>{var e;let t,i,{t:n}=(0,iQ.useTranslation)(),{id:r}=(0,tG.useContext)(De.Z),{dataObject:a,removeTrackedChanges:l,publishDraft:o}=(0,aG.A)(r),{save:s,isLoading:d,isSuccess:c,isError:f,error:u}=(0,DJ.W)(),{isAutoSaveLoading:m,runningTask:p}=(0,DZ.m)(),{saveSchedules:g,isLoading:h,isSuccess:y,isError:v,error:b}=So("data-object",r,!1),{getModifiedDataObjectAttributes:x,resetModifiedDataObjectAttributes:j}=(0,C9.P)(),{deleteDraft:w,isLoading:k,buttonText:T}=(0,Di.K)("data-object"),S=(0,uI.J)(),C=(null==a||null==(e=a.draftData)?void 0:e.isAutoSave)===!0;async function D(e,t){(null==a?void 0:a.changes)!==void 0&&Promise.all([s(x(),e,()=>{j(),null==t||t()}),g()]).catch(e=>{console.error(e)})}(0,tG.useEffect)(()=>{(async()=>{c&&y&&(l(),await S.success(n("save-success")))})().catch(e=>{console.error(e)})},[c,y]),(0,tG.useEffect)(()=>{f&&!(0,tI.isNil)(u)?(0,iX.Ay)(new iX.hD(u)):v&&!(0,tI.isNil)(b)&&(0,iX.Ay)(new iX.hD(b))},[f,v,u,b]);let I=(()=>{if((null==a?void 0:a.type)==="folder")return[];let e=[],t=p===DJ.D.Version&&(d||h)||k;if((0,TS.o)(null==a?void 0:a.permissions,"save")){(null==a?void 0:a.published)===!0&&e.push((0,tq.jsx)(ni.Button,{disabled:d||h||t,loading:p===DJ.D.Version&&(d||h),onClick:async()=>{await D(DJ.D.Version)},type:"default",children:n("toolbar.save-draft")},"save-draft"));let i=d||h||t;(null==a?void 0:a.published)===!1&&(0,TS.o)(null==a?void 0:a.permissions,"save")&&e.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===DJ.D.Publish&&(d||h),onClick:async()=>{await D(DJ.D.Publish,()=>{o()})},type:"default",children:n("toolbar.save-and-publish")},"save-draft")),(0,tI.isNil)(null==a?void 0:a.draftData)||e.push((0,tq.jsx)(pu.m,{menu:{items:[{disabled:d,label:T,key:"delete-draft",onClick:w}]},children:(0,tq.jsx)(lp.K,{disabled:d||h||t,icon:{value:"chevron-down"},loading:k,type:"default"})},"dropdown"))}return e})(),M=(t=[],i=d||h||k,(null==a?void 0:a.type)==="folder"?t.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===DJ.D.Save&&(d||h),onClick:async()=>{await D(DJ.D.Save)},type:"primary",children:n("toolbar.save")})):((null==a?void 0:a.published)===!0&&(0,TS.o)(null==a?void 0:a.permissions,"publish")&&t.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===DJ.D.Publish&&(d||h),onClick:async()=>{await D(DJ.D.Publish)},type:"primary",children:n("toolbar.save-and-publish")})),(null==a?void 0:a.published)===!1&&(0,TS.o)(null==a?void 0:a.permissions,"save")&&t.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===DJ.D.Save&&(d||h),onClick:async()=>{await D(DJ.D.Save)},type:"primary",children:n("toolbar.save-draft")}))),t);return(0,m9.Z)(async()=>{null!=a&&(0,TS.o)(a.permissions,"publish")&&await D(DJ.D.Publish,()=>{a.published||o()})},"publish"),(0,m9.Z)(async()=>{!(d||h||k)&&null!=a&&(0,TS.o)(a.permissions,"save")&&((null==a?void 0:a.type)==="folder"?await D(DJ.D.Save):(null==a?void 0:a.published)&&(0,TS.o)(null==a?void 0:a.permissions,"publish")?await D(DJ.D.Publish):(null==a?void 0:a.published)||await D(DJ.D.Save))},"save"),(0,tq.jsxs)(tq.Fragment,{children:[m&&(0,tq.jsx)(iN.m,{title:n("auto-save.loading-tooltip"),children:(0,tq.jsx)(sN.t,{type:"classic"})}),!m&&C&&(0,tq.jsx)(iN.m,{title:n("auto-save.tooltip"),children:(0,tq.jsx)(r9.I,{value:"auto-save"})}),I.length>0&&(0,tq.jsx)(TM.e,{items:I,noSpacing:!0}),M.length>0&&(0,tq.jsx)(TM.e,{items:M,noSpacing:!0})]})};var DX=i(3394);let D0=()=>{let{id:e}=(0,iZ.J)();return(0,tq.jsx)(DX.s,{id:e})},D1=e=>{let{data:t}=e;return(0,tq.jsx)(ap.s,{flex:1,gap:"small",vertical:!0,children:(0,tq.jsx)(TW,{data:t})})},D2=e=>{let{versionIds:t}=e,[i,n]=(0,tG.useState)([]),[r,a]=(0,tG.useState)([]),l=(0,iv.useAppDispatch)(),{id:o}=(0,iZ.J)(),s=(0,tc.Lt)(td.K["DynamicTypes/ObjectDataRegistry"]),{data:d}=(0,Da.nF)({id:o});return((0,tG.useEffect)(()=>{let e=[];n([]),t.forEach(t=>{let i=t.id;e.push(l(i3.FH.endpoints.versionGetById.initiate({id:i})))}),Promise.all(e).then(e=>{let i=[];e.forEach(async(e,l)=>{let c=e.data;(0,tI.isUndefined)(null==d?void 0:d.children)||(0,tI.isUndefined)(c)||(i.push(await (0,a2.ub)({objectId:o,layout:d.children,versionData:c,versionId:t[l].id,versionCount:t[l].count,objectDataRegistry:s,layoutsList:r,setLayoutsList:a})),n((0,a2.xz)({data:i})))})}).catch(e=>{console.log(e)})},[t,d]),(0,tI.isEmpty)(i))?(0,tq.jsx)(uE.U,{fullPage:!0,loading:!0}):(0,tq.jsx)(D1,{data:i})},D3=e=>{let{data:t}=e;return(0,tq.jsx)(ap.s,{flex:1,gap:"small",vertical:!0,children:(0,tq.jsx)(TW,{data:t})})},D6=e=>{let{versionId:t}=e,i=(0,iv.useAppDispatch)(),{id:n}=(0,iZ.J)(),r=(0,tc.Lt)(td.K["DynamicTypes/ObjectDataRegistry"]),[a,l]=(0,tG.useState)(t),[o,s]=(0,tG.useState)([]),[d,c]=(0,tG.useState)([]),{data:f}=(0,Da.nF)({id:n});return((0,tG.useEffect)(()=>{t.id!==a.id&&(s([]),l(t))},[t]),(0,tG.useEffect)(()=>{Promise.resolve(i(i3.FH.endpoints.versionGetById.initiate({id:a.id}))).then(async e=>{let t=[],i=e.data;(0,tI.isUndefined)(null==f?void 0:f.children)||(0,tI.isUndefined)(i)||(t.push(await (0,a2.ub)({objectId:n,layout:f.children,versionData:i,versionId:a.id,versionCount:a.count,objectDataRegistry:r,layoutsList:d,setLayoutsList:c})),s((0,a2.xz)({data:t})))}).catch(e=>{console.log(e)})},[a,f]),(0,tI.isEmpty)(o))?(0,tq.jsx)(uE.U,{fullPage:!0,loading:!0}):(0,tq.jsx)(D3,{data:o})},D4=()=>(0,tq.jsx)(Dl.Q,{children:(0,tq.jsx)(t4._Y,{children:(0,tq.jsx)(TF.m,{ComparisonViewComponent:D2,SingleViewComponent:D6})})});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DataObject/Editor/TypeRegistry"]);e.register({name:"object",tabManagerServiceId:"DataObject/Editor/ObjectTabManager"}),e.register({name:"variant",tabManagerServiceId:"DataObject/Editor/VariantTabManager"}),e.register({name:"folder",tabManagerServiceId:"DataObject/Editor/FolderTabManager"}),tc.kL.get(td.K.widgetManager).registerWidget(D$.R);let t=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);t.registerToSlot("dataObject.editor.toolbar.slots.left",{name:"contextMenu",priority:100,component:DG}),t.registerToSlot("dataObject.editor.toolbar.slots.left",{name:"languageSelection",priority:200,component:DQ}),t.registerToSlot("dataObject.editor.toolbar.slots.right",{name:"workflowMenu",priority:100,component:Sa}),t.registerToSlot("dataObject.editor.toolbar.slots.right",{name:"saveButtons",priority:200,component:DY}),t.register({name:tu.eb.dataObject.editor.tab.preview.name,component:D0}),t.register({name:tu.eb.dataObject.editor.tab.versions.name,component:D4}),t.register({name:tu.eb.dataObject.editor.tab.listing.name,component:Du}),t.register({name:tu.eb.dataObject.editor.tab.edit.name,component:Dd}),t.register({name:tu.eb.dataObject.editor.tab.variants.name,component:DK})}});let D5=e=>{let{ContextComponent:t,...i}=e;return{...i,ContextComponent:()=>(0,tq.jsx)(dR.DynamicTypeRegistryProvider,{serviceIds:["DynamicTypes/ObjectDataRegistry","DynamicTypes/GridCellRegistry","DynamicTypes/ListingRegistry","DynamicTypes/BatchEditRegistry","DynamicTypes/FieldFilterRegistry"],children:(0,tq.jsx)(t,{})})}},D7=()=>{let{selectedRows:e}=(0,SC.U)(),t=Object.keys(e??{}).length;return(0,tG.useMemo)(()=>(0,tq.jsxs)(oI.B,{children:[(0,tq.jsxs)(a$.$,{size:"extra-small",children:[t>0&&(0,tq.jsx)(hP.B,{}),t<=0&&(0,tq.jsx)(h_.C,{})]}),(0,tq.jsx)(DA,{})]}),[t])},D8=()=>(0,tq.jsxs)(oI.B,{size:"extra-small",children:[(0,tq.jsx)(hA.y,{}),(0,tq.jsx)(hN.d,{})]}),D9=()=>(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(ni.Space,{size:"small",children:(0,tq.jsx)(Sh.Y,{slot:uj.componentConfig.dataObject.listing.toolbar.left.name})}),(0,tq.jsx)(ni.Space,{size:"small",children:(0,tq.jsx)(Sh.Y,{slot:uj.componentConfig.dataObject.listing.toolbar.right.name})})]});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);e.register({name:tu.eb.dataObject.listing.toolbar.component.name,component:D9}),e.registerToSlot(tu.eb.dataObject.listing.toolbar.left.name,{name:"batch-actions",component:D7}),e.registerToSlot(tu.eb.dataObject.listing.toolbar.right.name,{name:"pagination",component:D8});let t=tc.kL.get(td.K["DataObject/Listing/Builder"]);t.addDecorator({name:"actionColumn",decorator:dl.ActionColumnDecorator}),t.addDecorator({name:"globalContext",decorator:SL}),t.addDecorator({name:"sorting",decorator:dl.SortingDecorator}),t.addDecorator({name:"paging",decorator:dl.PagingDecorator}),t.addDecorator({name:"classDefinitionSelection",decorator:dl.ClassDefinitionSelectionDecorator,config:{showConfigLayer:!0}}),t.addDecorator({name:"columnConfiguration",decorator:dl.ColumnConfigurationDecorator});let i={useInlineEditApiUpdate:dl.useInlineEditApiUpdate};t.addDecorator({name:"inlineEdit",decorator:dl.InlineEditDecorator,config:i}),t.addDecorator({name:"rowSelection",decorator:dl.RowSelectionDecorator,config:{rowSelectionMode:"multiple"}}),t.addDecorator({name:"contextMenu",decorator:dl.ContextMenuDecorator}),t.addDecorator({name:"tagFilter",decorator:dl.TagFilterDecorator}),t.addDecorator({name:"generalFilters",decorator:dl.GeneralFiltersDecorator}),t.addDecorator({name:"dynamicType",decorator:D5})}});let Ie=e=>{let t=e.node??Cf.G,i=(0,kj.W)("data-object.tree",{target:t,onComplete:()=>{}});return(0,tq.jsx)(CU.W,{dataTestId:(0,pi.b0)("data-object",t.id),items:i})};var It=i(38220),Ii=i(63993),In=i(42669),Ir=i(72744),Ia=i(13397);let Il={KEY:"key",INDEX:"index"},Io={ASCENDING:"ASC",DESCENDING:"DESC"},Is=e=>{let{elementPatch:t}=(0,Ia.M)(e),{t:i}=(0,iQ.useTranslation)(),n=(0,iv.useAppDispatch)(),r=(0,m5.J)(),{isTreeActionAllowed:a}=(0,C2.H)(),l=async(i,r,a)=>{try{await t({body:{data:[{id:Number(i.id),childrenSortBy:Il[r],childrenSortOrder:Io[a]}]}})&&(n((0,Cb.refreshTargetNode)({nodeId:String(i.parentId),elementType:e})),n((0,Cb.refreshNodeChildren)({nodeId:String(i.id),elementType:e})))}catch(e){console.error("Error updating sorting",e)}};return{move:async i=>{let{currentElement:r,targetElement:a}=i;if(r.id!==a.id)try{n((0,Cb.markNodeDeleting)({nodeId:String(r.id),elementType:e,isDeleting:!0})),await t({body:{data:[{id:r.id,parentId:a.parentId,index:i.newIndex}]}})?(n((0,Cb.refreshSourceNode)({nodeId:String(r.parentId),elementType:e})),n((0,Cb.refreshTargetNode)({nodeId:String(a.parentId),elementType:e}))):n((0,Cb.markNodeDeleting)({nodeId:String(r.id),elementType:e,isDeleting:!1}))}catch(e){console.error("Error moving element",e)}},sortingContextMenuItem:e=>({label:i("element.tree.sorting"),key:"sorting",icon:(0,tq.jsx)(r9.I,{value:"folder"}),hidden:!0!==e.hasChildren||!r.isAdmin&&(!!e.isLocked||!(0,TS.o)(e.permissions,"settings")||!a(C1.o.ChangeChildrenSortBy)),children:[{label:i("element.tree.sorting.keyed-ascending"),key:"sortingAscending",icon:(0,tq.jsx)(r9.I,{value:"a-to-z-order"}),onClick:()=>{l(e,"KEY","ASCENDING")}},{label:i("element.tree.sorting.keyed-descending"),key:"sortingDescending",icon:(0,tq.jsx)(r9.I,{value:"z-to-a-order"}),onClick:()=>{l(e,"KEY","DESCENDING")}},{label:i("element.tree.sorting.indexed"),key:"sortingIndexed",icon:(0,tq.jsx)(r9.I,{value:"manual-order"}),onClick:()=>{l(e,"INDEX","ASCENDING")}}]})}};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.dataObjectTree;e.registerToSlot(t.name,{name:"addObject",priority:t.priority.addObject,useMenuItem:e=>{let{addObjectTreeContextMenuItem:t}=(0,It.o)();return t(e.target)}}),e.registerToSlot(t.name,{name:"addVariant",priority:t.priority.addVariant,useMenuItem:e=>{var t,i;let{addVariantTreeContextMenuItem:n}=DR();return(null==(i=e.target.metaData)||null==(t=i.dataObject)?void 0:t.allowVariants)===!0?n(e.target):null}}),e.registerToSlot(t.name,{name:"addFolder",priority:t.priority.addFolder,useMenuItem:e=>{let{addFolderTreeContextMenuItem:t}=(0,CY.N)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameTreeContextMenuItem:t}=(0,Tm.M)("data-object",(0,Tg.Cr)("data-object","rename",Number.parseInt(e.target.id)));return t(e.target)}}),e.registerToSlot(t.name,{name:"copy",priority:t.priority.copy,useMenuItem:e=>{let{copyTreeContextMenuItem:t}=(0,Cy.e)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"paste",priority:t.priority.paste,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{pasteAsChildRecursiveTreeContextMenuItem:i,pasteRecursiveUpdatingReferencesTreeContextMenuItem:n,pasteAsChildTreeContextMenuItem:r,pasteOnlyContentsTreeContextMenuItem:a,isPasteMenuHidden:l}=(()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,iv.useAppDispatch)(),{paste:i}=(0,Cy.e)("data-object"),{treeId:n}=(0,Cx.z)(!0),[r]=(0,Dg.Gq)(),{getStoredNode:a}=(0,Ii.x)("data-object"),{isPasteHidden:l}=(0,In.n)("data-object"),o=async(e,i)=>{t((0,Cb.setNodeFetching)({treeId:n,nodeId:String(i.id),isFetching:!0}));let a="string"==typeof i.id?parseInt(i.id):i.id,l=r({sourceId:"string"==typeof e.id?parseInt(e.id):e.id,targetId:a});try{let e=await l;void 0!==e.error&&(0,iX.Ay)(new iX.hD(e.error)),t((0,Cb.setNodeFetching)({treeId:n,nodeId:String(a),isFetching:!1}))}catch(e){(0,iX.Ay)(new iX.$g(e.message))}},s=e=>{let t=a();return l(e,"copy")||"folder"===e.type||e.isLocked||(null==t?void 0:t.type)!==e.type};return{pasteAsChildTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child"),key:"pasteAsChild",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:l(t,"copy"),onClick:async()=>{await i(parseInt(t.id),{recursive:!1,updateReferences:!1},a())}}),pasteAsChildRecursiveTreeContextMenuItem:t=>({label:e("element.tree.paste-as-child-recursive"),key:"pasteAsChildRecursive",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:l(t,"copy"),onClick:async()=>{await i(parseInt(t.id),{recursive:!0,updateReferences:!1},a())}}),pasteRecursiveUpdatingReferencesTreeContextMenuItem:t=>({label:e("element.tree.paste-recursive-updating-references"),key:"pasteRecursiveUpdatingReferences",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:l(t,"copy"),onClick:async()=>{await i(parseInt(t.id),{recursive:!0,updateReferences:!0},a())}}),pasteOnlyContentsTreeContextMenuItem:t=>({label:e("element.tree.paste-only-contents"),key:"pasteOnlyContents",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:s(t),onClick:async()=>{await o(a(),t)}}),isPasteMenuHidden:e=>{let t=l(e,"copy"),i=s(e);return t&&i}}})();return{label:t("element.tree.paste"),key:"paste",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:l(e.target),children:[i(e.target),n(e.target),r(e.target),a(e.target)]}}}),e.registerToSlot(t.name,{name:"cut",priority:t.priority.cut,useMenuItem:e=>{let{cutTreeContextMenuItem:t}=(0,Cy.e)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteCut",priority:t.priority.pasteCut,useMenuItem:e=>{let{pasteCutContextMenuItem:t}=(0,Cy.e)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"publish",priority:t.priority.publish,useMenuItem:e=>{let{publishTreeContextMenuItem:t}=(0,Ir.Z)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishTreeContextMenuItem:t}=(0,DH.M)("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteTreeContextMenuItem:t}=(0,Tu.z)("data-object",(0,Tg.Cr)("data-object","delete",Number.parseInt(e.target.id)));return t(e.target)}}),e.registerToSlot(t.name,{name:"advanced",priority:t.priority.advanced,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{lockTreeContextMenuItem:i,lockAndPropagateTreeContextMenuItem:n,unlockTreeContextMenuItem:r,unlockAndPropagateTreeContextMenuItem:a,isLockMenuHidden:l}=(0,CX.V)("data-object");return{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tq.jsx)(r9.I,{value:"more"}),hidden:l(e.target),children:[{label:t("element.lock"),key:"advanced-lock",icon:(0,tq.jsx)(r9.I,{value:"lock"}),hidden:l(e.target),children:[i(e.target),n(e.target),r(e.target),a(e.target)]}]}}}),e.registerToSlot(t.name,{name:"sorting",priority:t.priority.refreshTree,useMenuItem:e=>{let{sortingContextMenuItem:t}=Is("data-object");return t(e.target)}}),e.registerToSlot(t.name,{name:"refreshTree",priority:t.priority.refreshTree,useMenuItem:e=>{let{refreshTreeContextMenuItem:t}=(0,CF.h)("data-object");return t(e.target)}})}}),ts.s.registerModule({onInit:()=>{tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]).register({name:yl.e.dataObject.tree.contextMenu.name,component:Ie})}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.dataObjectListGrid;e.registerToSlot(t.name,{name:"open",priority:t.priority.open,useMenuItem:e=>{let{openGridContextMenuItem:t}=(0,Ty.i)("data-object");return t(e.target)??null}}),e.registerToSlot(t.name,{name:"locateInTree",priority:t.priority.locateInTree,useMenuItem:e=>{let{locateInTreeGridContextMenuItem:t}=(0,Tv.H)("data-object");return t(e.target,e.onComplete)??null}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteGridContextMenuItem:t}=(0,Tu.z)("data-object",(0,Tg.Cr)("data-object","delete",Number(e.target.id)));return t(e.target)??null}})}});let Id=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(Cm.s,{...e,label:t("data-object.data-object-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})};var Ic=i(9298);let If=(p=(0,i(60555).V)((u=Cf.n,m=(0,tG.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tq.jsx)(u,{...e,ref:t,wrapNode:t=>(0,tq.jsx)(CG.y9,{renderMenu:()=>(0,tq.jsx)(Ie,{node:n}),children:(0,tI.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),(0,tG.forwardRef)((e,t)=>{var i;let n=e.metaData.dataObject,{t:r}=(0,iQ.useTranslation)();if((null==(i=e.metaData)?void 0:i.dataObject)===void 0)return(0,tq.jsx)(m,{...e});let a=(0,tI.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,tq.jsx)(Cg.s,{info:{icon:e.icon,title:a,type:"data-object",data:{...n}},children:(0,tq.jsx)(m,{...e,ref:t})})}))),(0,tG.forwardRef)((e,t)=>{var i,n,r,a;let{move:l}=(0,Cy.e)("data-object"),{move:o}=Is("data-object"),{isSourceAllowed:s,isTargetAllowed:d}=Cj(),c=(0,Ck.W)(e.parentId??"-1"),f="keyed";if(void 0!==c&&(f=(null==(a=c.treeNodeProps)||null==(r=a.metaData)||null==(n=r.dataObject)?void 0:n.childrenSortBy)??"keyed"),(null==(i=e.metaData)?void 0:i.dataObject)===void 0)return(0,tq.jsx)(p,{...e});let u=e.metaData.dataObject;if(!d(u))return(0,tq.jsx)(p,{...e});let m=e=>{let t=e.data;s(t)&&d(u)&&l({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:u.id,parentId:u.parentId}}).catch(()=>{(0,iX.Ay)(new iX.$g("Item could not be moved"))})},g=e=>{let{info:t,position:i="top"}=e,n=t.data;s(n)&&d(u)&&o({currentElement:{id:n.id,parentId:n.parentId},targetElement:{id:u.id,parentId:u.parentId},newIndex:"top"===i?u.index:u.index+1}).catch(()=>{(0,iX.Ay)(new iX.$g("Item could not be moved"))})},h=e=>"data-object"===e.type&&"variant"!==e.data.type,y=e=>{let t=e.data;return"data-object"===e.type&&"variant"!==u.type&&s(t)&&d(u)},v=[{id:"drop-middle",isValidContext:h,isValidData:y,position:{x:"0",y:"0%",width:"100%",height:"100%"},onDrop:m}];return"index"===f&&(v=[{id:"sorting-top",className:"dnd__sorting dnd__sorting--top",isValidContext:h,isValidData:y,position:{x:0,y:0,width:"100%",height:"30%"},onDrop:e=>{g({info:e,position:"top"})}},{id:"drop-middle",isValidContext:h,isValidData:y,position:{x:"0",y:"30%",width:"100%",height:"40%"},onDrop:m},{id:"sorting-bottom",className:"dnd__sorting dnd__sorting--bottom",isValidContext:h,isValidData:y,position:{x:0,y:"70%",width:"100%",height:"30%"},onDrop:e=>{g({info:e,position:"bottom"})}}]),(0,tq.jsx)(p,{...e,ref:t,wrapNode:t=>(0,tq.jsx)(Ic.T,{disableDndActiveIndicator:!0,hotspots:v,children:(0,tI.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})})),Iu=e=>{let{id:t=1,showRoot:i=!0}=e,{openDataObject:n}=(0,DN.H)(),{rootNode:r,isLoading:a}=(0,CS.m)(t,i),l=(0,CC.e)().get(yl.e.dataObject.tree.contextMenu.name);if(i&&a)return(0,tq.jsx)(pa.a,{padding:"small",children:(0,tq.jsx)(Ch.E,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,tq.jsx)(Cc.ng,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:Id,renderNode:If,renderNodeContent:Cc.Yb.renderNodeContent,renderPager:Cu.l,rootNode:r,showRoot:i,tooltipSlotName:yl.e.dataObject.tree.tooltip.name})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.widgetManager),t=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);e.registerWidget({name:"data-object-tree",component:Iu}),t.register({name:yl.e.dataObject.tree.tooltip.name,component:C6}),t.registerToSlot(yl.e.dataObject.tree.node.meta.name,{name:"lockIcon",component:C5,priority:100})}});var Im=i(47605),Ip=i(9503),Ig=i(53405),Ih=i(15789),Iy=i(15156),Iv=i(86646),Ib=i(85709),Ix=i(40144),Ij=i(26962);let Iw=e=>{let{documentId:t,initialValues:i,hasSavePermission:n=!0}=e,{t:r}=(0,iQ.useTranslation)(),{updateSettingsData:a}=(0,Iy.S)(t),{debouncedAutoSave:l}=(0,Ib.W)(),[o]=tJ.lV.useForm(),s=(0,tG.useCallback)(e=>{n&&(a(e),l())},[a,l,n]),{handleFormChange:d}=(0,Ix.T)(s,{delay:500,tag:(0,Ij.n)(t)});return(0,tq.jsxs)(n6.L,{formProps:{form:o,initialValues:i,onValuesChange:d},children:[(0,tq.jsx)(tJ.lV.Item,{label:r("email-settings.subject"),name:"subject",children:(0,tq.jsx)(aR.p,{disabled:!n})}),(0,tq.jsx)(tJ.lV.Item,{extra:r("email-settings.from-syntax-hint"),label:r("email-settings.from"),name:"from",children:(0,tq.jsx)(aR.p,{disabled:!n})}),(0,tq.jsx)(tJ.lV.Item,{label:r("email-settings.reply-to"),name:"replyTo",children:(0,tq.jsx)(aR.p,{disabled:!n})}),(0,tq.jsx)(Iv.j,{marginBottom:"none",withBorder:!0,children:r("email-settings.recipients")}),(0,tq.jsx)(tJ.lV.Item,{label:r("email-settings.to"),name:"to",children:(0,tq.jsx)(aR.p,{disabled:!n})}),(0,tq.jsx)(tJ.lV.Item,{label:r("email-settings.cc"),name:"cc",children:(0,tq.jsx)(aR.p,{disabled:!n})}),(0,tq.jsx)(tJ.lV.Item,{label:r("email-settings.bcc"),name:"bcc",children:(0,tq.jsx)(aR.p,{disabled:!n})}),(0,tq.jsx)(n5.E,{type:"secondary",children:r("email-settings.multiple-recipients-hint")})]})};var Ik=i(49606);let IT=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,tG.useContext)(Ih.T),{id:i}=t,{document:n}=(0,Iy.S)(i),r=(0,Ik.B)(t,"save")||(0,Ik.B)(t,"publish"),a=(0,tG.useMemo)(()=>{let e=(null==n?void 0:n.settingsData)??{};return{subject:(null==e?void 0:e.subject)??"",from:(null==e?void 0:e.from)??"",replyTo:(null==e?void 0:e.replyTo)??"",to:(null==e?void 0:e.to)??"",cc:(null==e?void 0:e.cc)??"",bcc:(null==e?void 0:e.bcc)??""}},[null==n?void 0:n.settingsData]),l=!(0,tI.isUndefined)(n);return(0,tq.jsxs)(ni.Content,{loading:!l,children:[(0,tq.jsx)(Ig.F,{withBorder:!0,children:e("email-settings.sidebar-title")}),(0,tq.jsx)(pa.a,{padding:{x:"extra-small",bottom:"small"},children:l&&(0,tq.jsx)(Iw,{documentId:i,hasSavePermission:r,initialValues:a})})]})};var IS=i(58946);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Document/Editor/EmailTabManager"]);e.register(Im.to),e.register(Im.tr),e.register(kh.Aj),e.register(Im.qW),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD);let t=tc.kL.get(td.K["Document/Editor/Sidebar/EmailSidebarManager"]);t.registerEntry(Ip.eY),t.registerEntry({key:"email-settings",icon:(0,tq.jsx)(r9.I,{value:"email"}),component:(0,tq.jsx)(IT,{}),tooltip:"email-settings.sidebar-title",isVisible:IS.s}),t.registerEntry(Ip.Ds),t.registerEntry(Ip.wR)}});var IC=i(37858);let ID=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{table:i` - .ant-table { - .ant-table-tbody { - - .properties-table--actions-column { - align-items: center; - - .ant-btn-icon { - color: ${t.colorPrimary}; - - &:hover { - color: ${t.colorPrimaryHover}; - } - } - } - } - } - - .headline { - padding: ${t.paddingXS}px; - margin: 0; - } - `}});var II=i(85668);let IM=["language","navigation_exclude","navigation_name","navigation_title","navigation_relation","navigation_parameters","navigation_anchor","navigation_target","navigation_class","navigation_tabindex","navigation_accesskey"],IL=(e,t)=>"document"===t&&IM.includes(e),IF=e=>{let{propertiesTableTab:t,showDuplicatePropertyModal:i,showMandatoryModal:n,showDisallowedPropertyModal:r}=e,{t:a}=(0,iQ.useTranslation)(),{openElement:l,mapToElementType:o}=(0,nt.K)(),{styles:s}=ID(),{id:d,elementType:c}=(0,iZ.J)(),{element:f,properties:u,updateProperty:m,removeProperty:p,setModifiedCells:g}=(0,Sl.D)(d,c),h=void 0!==u,y=(0,TS.o)(null==f?void 0:f.permissions,"publish")||(0,TS.o)(null==f?void 0:f.permissions,"save"),{isLoading:v}=(0,II.B)(),[b,x]=(0,tG.useState)([]),[j,w]=(0,tG.useState)([]),k="properties",T=(null==f?void 0:f.modifiedCells[k])??[];(0,tG.useEffect)(()=>{if(h){let e=e=>e.filter(e=>!IL(e.key,c));x(e(u.filter(e=>!e.inherited))),w(e(u.filter(e=>e.inherited)))}},[u,c]),(0,tG.useEffect)(()=>{T.length>0&&(null==f?void 0:f.changes.properties)===void 0&&g(k,[])},[f,T]);let S=(0,cH.createColumnHelper)(),C=e=>[S.accessor("type",{header:a("properties.columns.type"),meta:{type:"property-icon"},size:44}),S.accessor("key",{header:a("properties.columns.key"),meta:{editable:y&&"own"===e},size:200}),S.accessor("predefinedName",{header:a("properties.columns.name"),size:200}),S.accessor("description",{header:a("properties.columns.description"),size:200}),S.accessor("data",{header:a("properties.columns.data"),meta:{type:"property-value",editable:y&&"own"===e,autoWidth:!0},size:300}),S.accessor("inheritable",{header:a("properties.columns.inheritable"),size:74,meta:{type:"checkbox",editable:y&&"own"===e,config:{align:"center"}}}),S.accessor("actions",{header:a("properties.columns.actions"),size:70,cell:t=>(0,tq.jsxs)("div",{className:"properties-table--actions-column",children:[["document","asset","object"].includes(t.row.original.type)&&null!==t.row.original.data&&(0,tq.jsx)(lp.K,{icon:{value:"open-folder"},onClick:async()=>{let e=o(t.row.original.type);(0,tI.isUndefined)(e)||await l({type:e,id:t.row.original.data.id})},type:"link"}),"own"===e&&(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{p(t.row.original)},type:"link"})]})})],D=[...C("own")],I=[...C("inherited")];return(0,tq.jsx)("div",{className:s.table,children:(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ul.x,{autoWidth:!0,columns:D,data:b,isLoading:v,modifiedCells:T,onUpdateCellData:e=>{let{rowIndex:t,columnId:a,value:l,rowData:o}=e,s=[...u??[]],d=s.findIndex(e=>e.key===o.key&&!e.inherited),f={...s.at(d),[a]:l};s[d]=f;let p=s.filter(e=>e.key===f.key&&!e.inherited).length>1;"key"===a&&IL(l,c)?r():TT(l,a,"key",p,n,i)&&(m(o.key,f),g(k,[...T,{rowIndex:o.rowId,columnId:a}]))},resizable:!0,setRowId:e=>e.rowId}),"all"===t&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(pa.a,{padding:{y:"small"},children:(0,tq.jsx)(n5.E,{strong:!0,children:a("properties.inherited.properties")})}),(0,tq.jsx)(ul.x,{autoWidth:!0,columns:I,data:j,resizable:!0})]})]})})},IE=()=>{var e,t,i;let{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)("own"),[l,o]=(0,tG.useState)(!1),{id:s,elementType:d}=(0,iZ.J)(),{element:c,addProperty:f,properties:u}=(0,Sl.D)(s,d),m=(0,TS.o)(null==c?void 0:c.permissions,"publish")||(0,TS.o)(null==c?void 0:c.permissions,"save"),{showModal:p,closeModal:g,renderModal:h}=(0,TI.hS)({type:"error"}),{showModal:y,closeModal:v,renderModal:b}=(0,TI.hS)({type:"error"}),{showModal:x,closeModal:j,renderModal:w}=(0,TI.hS)({type:"error"}),k=(0,tG.useRef)(""),T=(0,tG.useRef)(null),S=(0,tG.useRef)(""),{data:C,isLoading:D}=(0,IC.VC)({elementType:d});return(0,tG.useEffect)(()=>{if(l){var e;null==(e=T.current)||e.focus()}else S.current="",k.current=""},[l]),(0,tq.jsxs)(uE.U,{padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",title:n("properties.label"),children:(0,tq.jsxs)(a$.$,{size:"small",children:[(0,tq.jsx)(a_.$,{onChange:a,options:[{label:n("properties.editable-properties"),value:"own"},{label:n("properties.all-properties"),value:"all"}]}),m&&(0,tq.jsxs)("div",{className:"pimcore-properties-toolbar__predefined-properties",children:[(0,tq.jsx)(h,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(az.$,{onClick:g,type:"primary",children:n("button.ok")})}),title:n("properties.property-already-exist.title"),children:n("properties.property-already-exist.error")}),(0,tq.jsx)(b,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(az.$,{onClick:v,type:"primary",children:n("button.ok")})}),title:n("properties.add-property-mandatory-fields-missing.title"),children:n("properties.add-property-mandatory-fields-missing.error")}),(0,tq.jsx)(w,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(az.$,{onClick:j,type:"primary",children:n("button.ok")})}),title:n("properties.property-key-disallowed.title"),children:n("properties.property-key-disallowed.error")}),l&&(0,tq.jsxs)(a$.$,{size:"extra-small",children:[(0,tq.jsx)(az.$,{onClick:()=>{o(!1)},type:"link",children:n("properties.add-custom-property.cancel")}),(0,tq.jsx)(ig.Input,{onChange:function(e){k.current=e.target.value},placeholder:n("properties.add-custom-property.key"),ref:T}),(0,tq.jsx)(t8.l,{className:"min-w-100",onSelect:function(e){S.current=e},options:[{value:"text",label:n("data-type.text")},{value:"document",label:n("data-type.document")},{value:"asset",label:n("data-type.asset")},{value:"object",label:n("data-type.object")},{value:"bool",label:n("data-type.checkbox")}],placeholder:n("properties.add-custom-property.type")}),(0,tq.jsx)(m4.J,{icon:{value:"new-something"},onClick:()=>{let e,t;e=void 0!==k.current&&k.current.length>0,t=void 0!==S.current&&S.current.length>0,e&&t?IL(k.current,d)?x():I(k.current)?p():f({key:k.current,type:S.current,predefinedName:"Custom",data:null,inherited:!1,inheritable:!1,rowId:(0,n7.u)()}):y()},children:n("properties.add-custom-property.create")})]}),!l&&(0,tq.jsxs)(oI.B,{size:"mini",children:[(0,tq.jsx)(t8.l,{className:"min-w-100",filterOption:(e,t)=>((null==t?void 0:t.label)??"").toLowerCase().includes(e.toLowerCase()),loading:D,onSelect:function(e){var t;let i=null==C||null==(t=C.items)?void 0:t.find(t=>t.id===e);void 0===i||(IL(i.key,d)?x():I(i.key)?p():f({key:i.key,type:i.type,data:i.data,inherited:!1,inheritable:i.inheritable,additionalAttributes:i.additionalAttributes,config:i.config,description:i.description,predefinedName:i.name,rowId:(0,n7.u)()}))},options:null==C||null==(i=C.items)||null==(t=i.slice())||null==(e=t.sort((e,t)=>e.name.localeCompare(t.name)))?void 0:e.map(e=>({label:e.name,value:e.id})),placeholder:n("properties.predefined-properties"),showSearch:!0},"properties-select"),(0,tq.jsx)(m4.J,{icon:{value:"new-something"},onClick:()=>{o(!0)},children:n("properties.new-custom-property")},n("properties.new-custom-property"))]})]})]})}),(0,tq.jsx)(IF,{propertiesTableTab:r,showDisallowedPropertyModal:x,showDuplicatePropertyModal:p,showMandatoryModal:y})]});function I(e){return(null==u?void 0:u.find(t=>t.key===e&&!t.inherited))!==void 0}};var IP=i(59208),IA=i(42984);let IN={key:"properties",label:"properties.label",workspacePermission:"properties",children:(0,tq.jsx)(()=>{let{id:e}=(0,tG.useContext)(Ih.T),{document:t}=(0,Iy.S)(e),i=(0,IP.h)(null==t?void 0:t.type).getButtons(),n=(0,IA.S)();return(0,tq.jsx)(pl.s,{renderSidebar:n.length>0?(0,tq.jsx)(kP.B,{buttons:i,entries:n,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tq.jsx)(IE,{})})},{}),icon:(0,tq.jsx)(r9.I,{value:"settings"}),isDetachable:!0};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Document/Editor/FolderTabManager"]);e.register(IN),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD),tc.kL.get(td.K["Document/Editor/Sidebar/FolderSidebarManager"]).registerEntry(Ip.Ds)}});let IR={key:"edit",label:"edit.label",children:(0,tq.jsx)(()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ig.Form.useForm(),{id:i}=(0,tG.useContext)(Ih.T),{document:n,updateSettingsData:r}=(0,Iy.S)(i),a=(0,TS.o)(null==n?void 0:n.permissions,"save")||(0,TS.o)(null==n?void 0:n.permissions,"publish"),l=(0,IP.h)(null==n?void 0:n.type).getButtons(),o=(0,IA.S)(),s=tU().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{},t=null;return(0,tI.isNil)(e.sourceId)||(t={type:"document",id:e.sourceId,fullPath:e.sourcePath??"",textInput:!1}),{sourceDocument:t,propertiesFromSource:!!e.propertiesFromSource,childrenFromSource:!!e.childrenFromSource}},[null==n?void 0:n.settingsData]);return(0,tq.jsx)(pl.s,{renderSidebar:o.length>0?(0,tq.jsx)(kP.B,{buttons:l,entries:o,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tq.jsx)(ni.Content,{padded:!0,children:(0,tq.jsxs)(ig.Form,{form:t,initialValues:s,layout:"vertical",children:[(0,tq.jsx)(ig.Form.Item,{label:e("document.hardlink.source"),name:"sourceDocument",children:(0,tq.jsx)(fW.P,{allowToClearRelation:!0,disabled:!a,documentsAllowed:!0,onChange:e=>{if(!a)return;let t={};(0,tI.isNull)(e)?(t.sourceId=null,t.sourcePath=null):!0!==e.textInput&&(t.sourceId=e.id,t.sourcePath=e.fullPath??""),r(t)},showOpenForTextInput:!0})}),(0,tq.jsx)(ig.Form.Item,{label:e("document.hardlink.properties-from-source"),name:"propertiesFromSource",valuePropName:"checked",children:(0,tq.jsx)(ig.Switch,{disabled:!a,onChange:e=>{a&&r({propertiesFromSource:e})}})}),(0,tq.jsx)(ig.Form.Item,{label:e("document.hardlink.children-from-source"),name:"childrenFromSource",valuePropName:"checked",children:(0,tq.jsx)(ig.Switch,{disabled:!a,onChange:e=>{a&&r({childrenFromSource:e})}})})]})})})},{}),icon:(0,tq.jsx)(r9.I,{value:"edit"})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Document/Editor/HardlinkTabManager"]);e.register(IR),e.register(kh.Aj),e.register(kh.QZ),e.register(kh.mI),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD),tc.kL.get(td.K["Document/Editor/Sidebar/HardlinkSidebarManager"]).registerEntry(Ip.Ds)}});let IV={key:"edit",label:"edit.label",children:(0,tq.jsx)(()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ig.Form.useForm(),{id:i}=(0,tG.useContext)(Ih.T),{document:n,updateSettingsData:r}=(0,Iy.S)(i),a=(0,TS.o)(null==n?void 0:n.permissions,"save")||(0,TS.o)(null==n?void 0:n.permissions,"publish"),l=(0,IP.h)(null==n?void 0:n.type).getButtons(),o=(0,IA.S)(),s=tU().useMemo(()=>{let e=(null==n?void 0:n.settingsData)??{};return"direct"===e.linkType&&(0,a3.uI)(e.direct)?{linkTarget:{textInput:!0,fullPath:e.direct}}:e.internal&&!(0,tI.isNil)(e.internalType)?{linkTarget:{id:e.internal,type:e.internalType,fullPath:e.rawHref??"",textInput:!1}}:{linkTarget:null}},[null==n?void 0:n.settingsData]);return(0,tq.jsx)(pl.s,{renderSidebar:o.length>0?(0,tq.jsx)(kP.B,{buttons:l,entries:o,sizing:"medium",translateTooltips:!0}):void 0,children:(0,tq.jsx)(ni.Content,{padded:!0,children:(0,tq.jsx)(ig.Form,{form:t,initialValues:s,layout:"vertical",children:(0,tq.jsx)(ig.Form.Item,{label:e("document.link.target"),name:"linkTarget",children:(0,tq.jsx)(fW.P,{allowPathTextInput:!0,allowToClearRelation:!0,assetsAllowed:!0,dataObjectsAllowed:!0,disabled:!a,documentsAllowed:!0,onChange:e=>{if(!a)return;let t={};null===e?(t.linkType="direct",t.internal=null,t.internalType=null,t.direct=null,t.href=null,t.rawHref=null,t.path=null):!0===e.textInput?(t.linkType="direct",t.direct=e.fullPath,t.rawHref=e.fullPath,t.href=e.fullPath,t.path=e.fullPath):(t.linkType="internal",t.internal=e.id,t.internalType=e.type,t.rawHref=e.fullPath??"",t.path=e.fullPath??""),r(t)},showOpenForTextInput:!0})})})})})},{}),icon:(0,tq.jsx)(r9.I,{value:"edit"})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Document/Editor/LinkTabManager"]);e.register(IV),e.register(kh.Aj),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD);let t=tc.kL.get(td.K["Document/Editor/Sidebar/LinkSidebarManager"]);t.registerEntry(Ip.Ds),t.registerEntry(Ip.ck)}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Document/Editor/PageTabManager"]);e.register(Im.to),e.register(Im.tr),e.register(kh.Aj),e.register(Im.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD);let t=tc.kL.get(td.K["Document/Editor/Sidebar/PageSidebarManager"]);t.registerEntry(Ip.eY),t.registerEntry(Ip.Ds),t.registerEntry(Ip.wR),t.registerEntry(Ip.ck)}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Document/Editor/SnippetTabManager"]);e.register(Im.to),e.register(kh.Aj),e.register(Im.qW),e.register(kh.mI),e.register(kh.QZ),e.register(kh.MV),e.register(kh.OM),e.register(kh.MD);let t=tc.kL.get(td.K["Document/Editor/Sidebar/SnippetSidebarManager"]);t.registerEntry(Ip.eY),t.registerEntry(Ip.Ds),t.registerEntry(Ip.wR)}});var Iz=i(68851),IB=i(80707),IO=i(75091),IK=i(8849);let I_=e=>{var t;let{isOpen:i,selectedDocument:n,onSelectedDocumentChange:r,onClose:a,onSubmit:l}=e,{t:o}=(0,iQ.useTranslation)(),{getDisplayName:s}=(0,gr.W)(),[d,c]=(0,tG.useState)(!1),{data:f,isLoading:u,error:m}=(0,IC.vi)({elementType:"document",id:(null==n?void 0:n.id)??0},{skip:(0,tI.isNull)(n)});(0,tG.useEffect)(()=>{(0,tI.isUndefined)(m)||(0,iX.Ay)(new iX.hD(m))},[m]);let p=null==f||null==(t=f.items)?void 0:t.find(e=>"language"===e.key),g=(0,tI.isString)(null==p?void 0:p.data)?p.data:"",h=async()=>{c(!0);try{await l()}finally{c(!1)}};return(0,tq.jsxs)(Sz.m,{footer:(0,tq.jsxs)(p9.j,{children:[(0,tq.jsx)(az.$,{onClick:a,type:"default",children:o("cancel")}),(0,tq.jsx)(az.$,{disabled:(0,tI.isNull)(n),loading:d,onClick:h,type:"primary",children:o("apply")})]}),onCancel:a,open:i,size:"L",title:o("document.translation.link-existing-document"),children:[(0,tq.jsx)(ni.Form.Item,{label:o("document.translation.title"),layout:"vertical",children:(0,tq.jsx)(fW.P,{allowToClearRelation:!0,documentsAllowed:!0,onChange:r,value:n})}),!(0,tI.isNull)(n)&&(0,tq.jsx)(n6.L.Panel,{border:!0,theme:"border-highlight",title:o("language"),children:u?(0,tq.jsx)(sN.t,{size:"small"}):(0,a3.uI)(g)?(0,tq.jsxs)(ap.s,{align:"center",gap:"small",children:[(0,tq.jsx)(p5.i,{value:g}),(0,tq.jsxs)("span",{children:[s(g)," [",g,"]"]})]}):(0,tq.jsx)(n5.E,{italic:!0,type:"secondary",children:o("no-data-available")})})]})},IH=e=>{var t;let{isOpen:i,useInheritance:n,onClose:r,onSubmit:a,currentDocument:l}=e,{t:o}=(0,iQ.useTranslation)(),{getDisplayName:s}=(0,gr.W)(),d=(0,p3.t)(),[c,f]=(0,tG.useState)(!1),[u,m]=(0,tG.useState)(""),[p]=ni.Form.useForm(),g=!(0,tI.isNil)(l)&&(0,tI.has)(l,"properties")&&Array.isArray(null==l?void 0:l.properties)?null==(t=l.properties)?void 0:t.find(e=>"language"===e.key):void 0,h=(0,tI.isString)(null==g?void 0:g.data)?g.data:"",y=(d.validLanguages??[]).filter(e=>e!==h).map(e=>({value:e,label:`${s(e)} [${e}]`})),{data:v,error:b,isLoading:x,isFetching:j}=(0,od.L0)({id:(null==l?void 0:l.id)??0,language:u},{skip:""===u||(0,tI.isNil)(null==l?void 0:l.id)});(0,tG.useEffect)(()=>{(0,tI.isNil)(b)?(0,tI.isNil)(null==v?void 0:v.fullPath)||(0,tI.isNil)(null==v?void 0:v.id)||p.setFieldValue("parent",{id:v.id,type:"document",fullPath:v.fullPath}):p.setFieldValue("parent",null)},[v,b,p]);let w=async()=>{f(!0);try{let e=await p.validateFields();await a(e)}finally{f(!1)}},k=o(n?"document.translation.new-document-with-inheritance.modal-title":"document.translation.new-document-blank.modal-title");return(0,tq.jsx)(Sz.m,{footer:(0,tq.jsxs)(p9.j,{children:[(0,tq.jsx)(az.$,{onClick:r,type:"default",children:o("cancel")}),(0,tq.jsx)(az.$,{loading:c,onClick:w,type:"primary",children:o("document.translation.new-document-modal.create")})]}),onCancel:r,open:i,size:"L",title:k,children:(0,tq.jsxs)(ni.Form,{form:p,initialValues:{language:"",parent:null,title:"",navigation:"",key:""},layout:"vertical",children:[(0,tq.jsx)(ni.Form.Item,{label:o("document.translation.new-document-modal.label.language"),name:"language",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tq.jsx)(t8.l,{onChange:e=>{m(e),p.setFieldValue("parent",null)},options:y})}),(0,tq.jsx)(ni.Form.Item,{label:o("document.translation.new-document-modal.label.parent"),name:"parent",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tq.jsx)(fW.P,{allowToClearRelation:!0,disabled:x||j,documentsAllowed:!0})}),(0,tq.jsx)(ni.Form.Item,{label:o("add-document-form.label.title"),name:"title",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tq.jsx)(aR.p,{onChange:e=>{let t=e.target.value;p.setFieldsValue({title:t,navigation:t,key:t})}})}),(0,tq.jsx)(ni.Form.Item,{label:o("add-document-form.label.navigation"),name:"navigation",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(ni.Form.Item,{label:o("add-document-form.label.key"),name:"key",rules:[{required:!0,message:o("form.validation.required")}],children:(0,tq.jsx)(aR.p,{})})]})})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.documentEditorToolbar;e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishContextMenuItem:t}=(0,DH.M)("document");return t(e.target,e.onComplete)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteContextMenuItem:t}=(0,Tu.z)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameContextMenuItem:t}=(0,Tm.M)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"translations",priority:t.priority.translations,useMenuItem:e=>{let{translationContextMenuItem:t}=(e=>{let{t}=(0,iQ.useTranslation)(),{openDocument:i}=(0,IO.$)(),{getDisplayName:n}=(0,gr.W)(),[r,{error:a}]=(0,od.MO)(),[l,{error:o}]=(0,od.K4)(),[s,{error:d}]=(0,od.Tw)(),c=(0,uk.jL)(),[f,u]=(0,tG.useState)(!1),[m,p]=(0,tG.useState)(!1),[g,h]=(0,tG.useState)(!1),[y,v]=(0,tG.useState)(null),[b,x]=(0,tG.useState)(null),[j,w]=(0,tG.useState)(null),{addModal:k,removeModal:T}=(0,IK.r)(),S=(0,tG.useMemo)(()=>`link-translation-modal-${(0,n7.u)()}`,[]),C=(0,tG.useMemo)(()=>`new-translation-modal-${(0,n7.u)()}`,[]),{data:D,error:I}=(0,od.Rc)({id:e.id},{skip:(0,tI.isNil)(e.id)}),{data:M}=(0,od.XE)();(0,tG.useEffect)(()=>{(0,tI.isUndefined)(a)||(0,iX.Ay)(new iX.hD(a))},[a]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(o)||(0,iX.Ay)(new iX.hD(o))},[o]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(I)||(0,iX.Ay)(new iX.hD(I))},[I]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(d)||(0,iX.Ay)(new iX.hD(d))},[d]);let L=async()=>{!(0,tI.isNull)(y)&&(await l({id:Number(b.id),translationId:y.id}).unwrap(),v(null),u(!1),(0,tI.isNull)(j)||j())},F=async t=>{try{var n;let r=(null==(n=t.parent)?void 0:n.id)??1,a=await s({parentId:r,documentAddParameters:{key:t.key,type:e.type,title:t.title,navigationName:t.navigation,docTypeId:null,language:t.language,translationsSourceId:Number(e.id),inheritanceSourceId:g?Number(e.id):null,template:null}}).unwrap();(0,tI.isNull)(null==a?void 0:a.id)||(await i({config:{id:a.id}}),c((0,Cb.refreshNodeChildren)({nodeId:String(r),elementType:"document"}))),p(!1),(0,tI.isNull)(j)||j()}catch{(0,iX.Ay)(new iX.$g("Error creating translation document"))}},E=()=>{v(null),u(!1),w(null),p(!1)};return(0,tG.useEffect)(()=>(f&&!(0,tI.isNull)(b)?k(S,(0,tq.jsx)(I_,{isOpen:f,onClose:E,onSelectedDocumentChange:v,onSubmit:L,selectedDocument:y})):T(S),()=>{T(S)}),[f,b,y]),(0,tG.useEffect)(()=>(m?k(C,(0,tq.jsx)(IH,{currentDocument:b,isOpen:m,onClose:E,onSubmit:F,useInheritance:g})):T(C),()=>{T(C)}),[m,g]),{translationContextMenuItem:a=>{var l;let o=((null==D?void 0:D.translationLinks)??[]).filter(t=>t.documentId!==Number(e.id)),s=!(0,tI.isEmpty)(o),d=null==M||null==(l=M.items)?void 0:l.find(t=>t.name===e.type),c=(null==d?void 0:d.translatable)??!1,f=(null==d?void 0:d.translatableInheritance)??!1,m=[];if(m.push({label:t("document.translation.link-existing-document"),key:"link-existing-document",icon:(0,tq.jsx)(r9.I,{value:"link-document"}),onClick:()=>{x(e),w(()=>a),u(!0)}}),s){let e=[];for(let t of o)e.push({label:`${n(t.language)} [${t.language}]`,key:`translation-${t.language}`,icon:(0,tq.jsx)(p5.i,{value:t.language}),onClick:async()=>{await i({config:{id:t.documentId}}),void 0!==a&&a()}});m.push({label:t("document.translation.open-translation"),key:"open-translation",icon:(0,tq.jsx)(r9.I,{value:"open-folder"}),children:e})}if(s){let i=[];for(let t of o)i.push({label:`${n(t.language)} [${t.language}]`,key:`unlink-translation-${t.language}`,icon:(0,tq.jsx)(p5.i,{value:t.language}),onClick:async()=>{await r({id:Number(e.id),translationId:t.documentId}).unwrap(),null==a||a()}});m.push({label:t("document.translation.unlink-existing-document"),key:"unlink-existing-document",icon:(0,tq.jsx)(r9.I,{value:"unlink-document"}),children:i})}return m.push({label:t("document.translation.new-document"),key:"new-document",hidden:!c,icon:(0,tq.jsx)(r9.I,{value:"new-document"}),children:[{label:t("document.translation.use-inheritance"),key:"new-document-inheritance",hidden:!f,icon:(0,tq.jsx)(r9.I,{value:"inheritance-active"}),onClick:()=>{x(e),w(()=>a),h(!0),p(!0)}},{label:`> ${t("blank")}`,key:"new-document-blank",icon:(0,tq.jsx)(r9.I,{value:"blank"}),onClick:()=>{x(e),w(()=>a),h(!1),p(!0)}}]}),{label:t("document.translation.title"),key:"translation",icon:(0,tq.jsx)(r9.I,{value:"translate"}),hidden:!1,children:m}}}})(e.target);return t(e.onComplete)}}),e.registerToSlot(t.name,{name:"openInNewWindow",priority:t.priority.openInNewWindow,useMenuItem:e=>{let{openInNewWindowContextMenuItem:t}=(0,Iz.j)();return t(e.target)}}),e.registerToSlot(t.name,{name:"openPreviewInNewWindow",priority:t.priority.openPreviewInNewWindow,useMenuItem:e=>{let{openPreviewInNewWindowContextMenuItem:t}=(0,Iz.j)(),i=(0,IB.o)(e.target.id,e.target.fullPath??"");return t(e.target,i)}})}});var I$=i(44057);let IW=()=>(0,tq.jsx)(pc.M,{children:(0,tq.jsxs)(Sp.F,{children:[(0,tq.jsx)(ap.s,{children:(0,tq.jsx)(Sh.Y,{slot:yl.e.document.editor.toolbar.slots.left.name})}),(0,tq.jsx)(ap.s,{align:"center",gap:"extra-small",style:{height:"32px"},vertical:!1,children:(0,tq.jsx)(Sh.Y,{slot:yl.e.document.editor.toolbar.slots.right.name})}),(0,tq.jsx)(Sg.x,{})]})}),Iq=e=>{let{id:t}=e,{isLoading:i,isError:n,document:r,editorType:a}=(0,Iy.S)(t),l=(0,Sf.P)(),{setContext:o,removeContext:s}=(0,SI.v)();return((0,tG.useEffect)(()=>()=>{s()},[]),(0,tG.useEffect)(()=>(l&&o({id:t,...!(0,tI.isNil)(r)&&{contextIdentifiers:(0,Sb.mt)(r)}}),()=>{l||s()}),[l,r]),i)?(0,tq.jsx)(uE.U,{loading:!0}):n?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)(kY.F,{message:"Error: Loading of asset failed",type:"error"})}):void 0===r||void 0===a?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(Ih.f,{id:t,children:(0,tq.jsx)(Sv.F,{dataTestId:`document-editor-${(0,pi.Gc)(t)}`,renderTabbar:(0,tq.jsx)(Sm.a,{elementEditorType:a}),renderToolbar:(0,tq.jsx)(IW,{})})})},IG=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t}=(0,tG.useContext)(Ih.T),{document:i}=(0,Iy.S)(t),{refreshElement:n}=(0,Tp.d)("document");return(0,tq.jsx)(T6.j,{hasDataChanged:()=>Object.keys((null==i?void 0:i.changes)??{}).length>0,onReload:()=>{n(t,!0)},title:e("toolbar.reload.confirmation"),children:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},children:e("toolbar.reload")})},"reload")},IU=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t}=(0,tG.useContext)(Ih.T),{document:i}=(0,Iy.S)(t),[n,r]=(0,tG.useState)(void 0),a=(0,kj.W)(kw.r.documentEditorToolbar.name,{target:i,onComplete:()=>{r(void 0)}}),l=a.filter(e=>null!==e&&"hidden"in e&&(null==e?void 0:e.hidden)===!1),o=[];return o.push((0,tq.jsx)(IG,{},"reload-button")),l.length>0&&o.push((0,tq.jsx)(pu.m,{menu:{items:a,onClick:e=>{"unpublish"===e.key&&r(!0)}},open:n,children:(0,tq.jsx)(pf.g,{children:e("toolbar.more")})},"dropdown-button")),(0,tq.jsx)(TM.e,{items:o,noSpacing:!0})};var IQ=i(92203),IJ=i(58042);let IZ=()=>{var e;let t,i,{t:n}=(0,iQ.useTranslation)(),{id:r}=(0,tG.useContext)(Ih.T),{document:a,removeTrackedChanges:l,publishDraft:o}=(0,Iy.S)(r),{save:s,isLoading:d,isSuccess:c,isError:f,error:u}=(0,Ib.W)(),{isAutoSaveLoading:m,runningTask:p}=(()=>{let{id:e}=(0,tG.useContext)(Ih.T),[t,i]=(0,tG.useState)();return(0,tG.useEffect)(()=>{let t=IJ.Xs.getInstance(e),n=t.onRunningTaskChange(i);return i(t.getRunningTask()),()=>{n()}},[e]),{runningTask:t,isAutoSaveLoading:"autoSave"===t,isLoading:void 0!==t&&"autoSave"!==t}})(),{saveSchedules:g,isLoading:h,isSuccess:y,isError:v,error:b}=So("document",r,!1),{deleteDraft:x,isLoading:j,buttonText:w}=(0,Di.K)("document"),k=(0,uI.J)(),T=(null==a||null==(e=a.draftData)?void 0:e.isAutoSave)===!0,{validateRequiredFields:S,showValidationErrorModal:C}=(()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,IQ.Z)();return{validateRequiredFields:(0,tG.useCallback)(e=>tc.kL.get(td.K["Document/RequiredFieldsValidationService"]).validateRequiredFields(e),[]),showValidationErrorModal:i=>{let n=(0,tq.jsxs)("div",{children:[(0,tq.jsx)("p",{children:e("document.required-fields.validation-message")}),(0,tq.jsx)("ul",{children:i.map(e=>(0,tq.jsx)("li",{children:e},e))})]});t.error({title:"document.required-fields.validation-title",content:n})}}})();async function D(e,t){if((null==a?void 0:a.changes)!==void 0){if(e===Ib.D.Publish){let e=S(r);if(!e.isValid)return void C(e.requiredFields)}Promise.all([s(e,()=>{null==t||t()}),g()]).catch(e=>{console.error(e)})}}(0,tG.useEffect)(()=>{(async()=>{c&&y&&(l(),await k.success(n("save-success")))})().catch(e=>{console.error(e)})},[c,y]),(0,tG.useEffect)(()=>{f&&!(0,tI.isNil)(u)?(0,iX.Ay)(new iX.hD(u)):v&&!(0,tI.isNil)(b)&&(0,iX.Ay)(new iX.hD(b))},[f,v,u,b]),(0,tG.useEffect)(()=>IJ.Xs.getInstance(r).onErrorChange((e,t)=>{t===Ib.D.AutoSave&&(k.error(n("auto-save-failed")),console.error("Auto-save failed:",e))}),[r,k,n]);let I=(()=>{if((null==a?void 0:a.type)==="folder")return[];let e=[],t=p===Ib.D.Version&&(d||h)||j;if((0,TS.o)(null==a?void 0:a.permissions,"save")){(null==a?void 0:a.published)===!0&&e.push((0,tq.jsx)(ni.Button,{disabled:d||h||t,loading:p===Ib.D.Version&&(d||h),onClick:async()=>{await D(Ib.D.Version)},type:"default",children:n("toolbar.save-draft")},"save-draft"));let i=d||h||t;(null==a?void 0:a.published)===!1&&(0,TS.o)(null==a?void 0:a.permissions,"save")&&e.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===Ib.D.Publish&&(d||h),onClick:async()=>{await D(Ib.D.Publish,()=>{o()})},type:"default",children:n("toolbar.save-and-publish")},"save-draft")),(0,tI.isNil)(null==a?void 0:a.draftData)||e.push((0,tq.jsx)(pu.m,{menu:{items:[{disabled:d,label:w,key:"delete-draft",onClick:x}]},children:(0,tq.jsx)(lp.K,{disabled:d||h||t,icon:{value:"chevron-down"},loading:j,type:"default"})},"dropdown"))}return e})(),M=(t=[],i=d||h||j,(null==a?void 0:a.type)==="folder"?t.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===Ib.D.Save&&(d||h),onClick:async()=>{await D(Ib.D.Save)},type:"primary",children:n("toolbar.save")})):((null==a?void 0:a.published)===!0&&(0,TS.o)(null==a?void 0:a.permissions,"publish")&&t.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===Ib.D.Publish&&(d||h),onClick:async()=>{await D(Ib.D.Publish)},type:"primary",children:n("toolbar.save-and-publish")})),(null==a?void 0:a.published)===!1&&(0,TS.o)(null==a?void 0:a.permissions,"save")&&t.push((0,tq.jsx)(ni.Button,{disabled:i,loading:p===Ib.D.Save&&(d||h),onClick:async()=>{await D(Ib.D.Save)},type:"primary",children:n("toolbar.save-draft")}))),t);return(0,m9.Z)(async()=>{null!=a&&(0,TS.o)(a.permissions,"publish")&&await D(Ib.D.Publish,()=>{a.published||o()})},"publish"),(0,m9.Z)(async()=>{!(d||h||j)&&null!=a&&(0,TS.o)(a.permissions,"save")&&((null==a?void 0:a.type)==="folder"?await D(Ib.D.Save):(null==a?void 0:a.published)&&(0,TS.o)(null==a?void 0:a.permissions,"publish")?await D(Ib.D.Publish):(null==a?void 0:a.published)||await D(Ib.D.Save))},"save"),(0,tq.jsxs)(tq.Fragment,{children:[m&&(0,tq.jsx)(iN.m,{title:n("auto-save.loading-tooltip"),children:(0,tq.jsx)(sN.t,{type:"classic"})}),!m&&T&&(0,tq.jsx)(iN.m,{title:n("auto-save.tooltip"),children:(0,tq.jsx)(r9.I,{value:"auto-save"})}),I.length>0&&(0,tq.jsx)(TM.e,{items:I,noSpacing:!0}),M.length>0&&(0,tq.jsx)(TM.e,{items:M,noSpacing:!0})]})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["Document/Editor/TypeRegistry"]);e.register({name:"page",tabManagerServiceId:"Document/Editor/PageTabManager"}),e.register({name:"email",tabManagerServiceId:"Document/Editor/EmailTabManager"}),e.register({name:"folder",tabManagerServiceId:"Document/Editor/FolderTabManager"}),e.register({name:"hardlink",tabManagerServiceId:"Document/Editor/HardlinkTabManager"}),e.register({name:"link",tabManagerServiceId:"Document/Editor/LinkTabManager"}),e.register({name:"snippet",tabManagerServiceId:"Document/Editor/SnippetTabManager"});let t=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);t.register({name:tu.eb.document.editor.container.name,component:Iq}),t.registerToSlot(tu.eb.document.editor.toolbar.slots.left.name,{name:"contextMenu",priority:100,component:IU}),t.registerToSlot(tu.eb.document.editor.toolbar.slots.right.name,{name:"workflowMenu",priority:100,component:Sa}),t.registerToSlot(tu.eb.document.editor.toolbar.slots.right.name,{name:"saveButtons",priority:200,component:IZ}),tc.kL.get(td.K.widgetManager).registerWidget(I$.T)}});let IY=e=>{let t=e.node??Cf.G,i=(0,kj.W)(kw.r.documentTree.name,{target:t,onComplete:()=>{}});return(0,tq.jsx)(CU.W,{dataTestId:(0,pi.b0)("document",t.id),items:i})};var IX=i(44395),I0=i(75023),I1=i(73488);let I2={page:{icon:"document",labelKey:"page"},snippet:{icon:"snippet",labelKey:"snippet"},email:{icon:"email",labelKey:"email"},link:{icon:"document-link",labelKey:"link"},hardlink:{icon:"hardlink",labelKey:"hardlink"}};var I3=i(80794);let I6=()=>{let{t:e}=(0,iQ.useTranslation)(),[t,{error:i}]=(0,od.ix)(),[n,{error:r}]=(0,od.eq)(),[a,{error:l}]=(0,od.wS)(),{modal:o}=ig.App.useApp(),s=(0,iv.useAppDispatch)(),{isTreeActionAllowed:d}=(0,C2.H)(),{treeId:c}=(0,Cx.z)(),{openModal:f,currentDocumentId:u}=(()=>{let e=(0,tG.useContext)(I3.A);if(void 0===e)throw Error("useSiteModal must be used within a SiteModalProvider");return e})(),m=e=>{s((0,Cb.setNodeFetching)({treeId:c,nodeId:String(e),isFetching:!1}))},p=e=>(0,tI.toNumber)(e.id);(0,tG.useEffect)(()=>{(0,tI.isUndefined)(i)||(0,iX.Ay)(new iX.hD(i))},[i]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(r)||(0,iX.Ay)(new iX.hD(r))},[r]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(l)||(0,iX.Ay)(new iX.hD(l))},[l]);let g=async e=>{let i=await t({id:e});(0,tI.isUndefined)(i.error)&&s((0,Cb.setDocumentNodeSiteStatus)({nodeId:String(e),isSite:!1}))},h=async(e,t)=>{let i=(0,a3.uI)(t.domains)?t.domains.split(/\r?\n/).map(e=>e.trim()).filter(Boolean):[],r={};(0,tI.isUndefined)(t.errorDocuments)||null===t.errorDocuments||Object.entries(t.errorDocuments).forEach(e=>{let[t,i]=e;(0,tI.isObject)(i)&&(0,tI.has)(i,"fullPath")&&(0,a3.uI)(i.fullPath)&&(r[t]=i.fullPath)});let a={mainDomain:t.mainDomain??"",domains:i,errorDocument:(0,tI.isObject)(t.errorDocument)&&(0,tI.has)(t.errorDocument,"fullPath")&&(0,a3.uI)(t.errorDocument.fullPath)?t.errorDocument.fullPath:"",localizedErrorDocuments:r,redirectToMainDomain:!!t.redirectToMainDomain},l=await n({id:e,updateSite:a});(0,tI.isUndefined)(l.error)&&s((0,Cb.setDocumentNodeSiteStatus)({nodeId:String(e),isSite:!0}))},y=async(t,i)=>{f({title:e("document.site.use-as-site"),documentId:t,documentPath:i,initialValues:{mainDomain:"",domains:"",errorDocument:null,errorDocuments:{},redirectToMainDomain:!1},onSubmit:async e=>{await h(t,e)}})},v=async(t,i)=>{try{if(u===t)return void m(t);let{data:n,error:r}=await a({documentId:t},!1);if(!(0,tI.isUndefined)(r))return void m(t);if(!(0,tI.isUndefined)(n)&&null!==n){let r={mainDomain:n.mainDomain??"",domains:(0,tI.isUndefined)(n.domains)||null===n.domains?"":n.domains.join("\n"),errorDocument:n.errorDocument??null,errorDocuments:n.localizedErrorDocuments??{},redirectToMainDomain:!!n.redirectToMainDomain};f({title:(0,tI.isNil)(n.id)?e("document.site.edit-site"):`${e("document.site.edit-site")} - ID: ${n.id}`,documentId:t,documentPath:i,initialValues:r,onSubmit:async e=>{await h(t,e)}}),setTimeout(()=>{m(t)},100)}}catch(e){m(t),console.error("Error loading site data:",e)}};return{removeSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"removeSite",label:e("document.site.remove-site"),icon:(0,tq.jsx)(r9.I,{value:"trash"}),hidden:"page"!==t.type||!i||!(0,yc.J)("sites")||!d(C1.o.RemoveSite),onClick:()=>{var i;i=p(t),o.confirm({title:e("document.site.remove-site"),content:e("document.site.remove-site-confirmation"),okText:e("remove"),onOk:async()=>{await g(i)}})}}},useAsSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"useAsSite",label:e("document.site.use-as-site"),icon:(0,tq.jsx)(r9.I,{value:"home-root-folder"}),hidden:"page"!==t.type||i||!(0,yc.J)("sites")||!d(C1.o.UseAsSite),onClick:()=>{y(p(t),t.fullPath)}}},editSiteTreeContextMenuItem:t=>{let i=!0===t.isSite;return{key:"editSite",label:e("document.site.edit-site"),icon:(0,tq.jsx)(r9.I,{value:"edit"}),hidden:"page"!==t.type||!i||!(0,yc.J)("sites")||!d(C1.o.EditSite),onClick:()=>{var e;e=p(t),s((0,Cb.setNodeFetching)({treeId:c,nodeId:String(e),isFetching:!0})),v(p(t),t.fullPath)}}}}};var I4=i(83295);class I5 extends I4.f{async executeCloneRequest(){var e;let t={id:this.sourceId,parentId:this.targetId,documentCloneParameters:this.parameters??{}},i=await uk.M_.dispatch(I0.FH.endpoints.documentClone.initiate(t));return(0,tI.isUndefined)(i.error)?(null==(e=i.data)?void 0:e.jobRunId)??null:((0,iX.Ay)(new iX.hD(i.error)),null)}constructor(e){super({sourceId:e.sourceId,targetId:e.targetId,title:e.title,elementType:sE.W.document,treeId:e.treeId,nodeId:e.nodeId}),this.parameters=e.parameters}}let I7=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,iv.useAppDispatch)(),{treeId:i}=(0,Cx.z)(!0),{getStoredNode:n}=(0,Ii.x)("document"),{isPasteHidden:r}=(0,In.n)("document"),a=(0,p3.t)(),l=(0,Ct.O)(),{getDisplayName:o}=(0,gr.W)(),{modal:s}=ig.App.useApp(),[d]=tJ.lV.useForm(),c=(a.validLanguages??[]).map(e=>({value:e,label:`${o(e)} [${e}]`})),f=async(t,n,r)=>{if((0,tI.isNil)(t))throw Error("Source node is null");let a="string"==typeof t.id?parseInt(t.id):t.id,o="string"==typeof n.id?parseInt(n.id):n.id,s=new I5({sourceId:a,targetId:o,parameters:r,title:e("jobs.document-clone-job.title"),treeId:i,nodeId:String(o)});await l.runJob(s)},u=async(e,n)=>{if((0,tI.isNil)(e))return;let r="string"==typeof e.id?parseInt(e.id):e.id,a="string"==typeof n.id?parseInt(n.id):n.id;t((0,Cb.setNodeFetching)({treeId:i,nodeId:String(a),isFetching:!0}));try{await t(I0.FH.endpoints.documentReplaceContent.initiate({sourceId:r,targetId:a})).unwrap()}catch(e){(0,iX.Ay)(new iX.$g(e.message))}finally{t((0,Cb.setNodeFetching)({treeId:i,nodeId:String(a),isFetching:!1}))}},m=(e,t)=>{g(e,t,!1)},p=(e,t)=>{g(e,t,!0)},g=(t,i,n)=>{s.confirm({title:e("document.language-required"),content:(0,tq.jsx)(tJ.lV,{form:d,children:(0,tq.jsx)(tJ.lV.Item,{label:e("language"),name:"language",rules:[{required:!0,message:e("form.validation.required")}],children:(0,tq.jsx)(t8.l,{options:c})})}),onOk:async()=>{await h(t,i,n)},onCancel:y,okText:e("paste"),cancelText:e("cancel")})},h=async(e,t,i)=>{let{language:r}=await d.validateFields();try{let a;switch(t){case"child":a={language:r,enableInheritance:i,recursive:!1,updateReferences:!1};break;case"recursive":a={language:r,enableInheritance:i,recursive:!0,updateReferences:!1};break;case"recursive-update-references":a={language:r,enableInheritance:i,recursive:!0,updateReferences:!0};break;default:return}await f(n(),e,a),d.resetFields()}catch(e){console.error("Clone operation failed:",e)}},y=()=>{d.resetFields()};return{pasteMenuTreeContextMenuItem:t=>{let i,a,l,o,s,d,c;return{label:e("element.tree.paste"),key:"paste",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(t,"copy"),children:[(a=t,{label:e("element.tree.paste-as-child-recursive"),key:"pasteAsChildRecursive",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(a,"copy"),onClick:async()=>{await f(n(),a,{language:null,enableInheritance:!1,recursive:!0,updateReferences:!1})}}),(l=t,{label:e("element.tree.paste-recursive-updating-references"),key:"pasteRecursiveUpdatingReferences",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(l,"copy"),onClick:async()=>{await f(n(),l,{language:null,enableInheritance:!1,recursive:!0,updateReferences:!0})}}),(o=t,{label:e("element.tree.paste-as-child"),key:"pasteAsChild",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(o,"copy"),onClick:async()=>{await f(n(),o,{language:null,enableInheritance:!1,recursive:!1,updateReferences:!1})}}),(s=t,{label:e("document.paste-as-new-language-variant"),key:"pasteAsNewLanguageVariant",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(s,"copy"),onClick:()=>{m(s,"child")}}),(d=t,{label:e("document.paste-as-new-language-variant-recursive"),key:"pasteAsNewLanguageVariantRecursive",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(d,"copy"),onClick:()=>{m(d,"recursive")}}),(c=t,{label:e("document.paste-language-recursive-updating-references"),key:"pasteLanguageRecursiveUpdatingReferences",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(c,"copy"),onClick:()=>{m(c,"recursive-update-references")}}),{label:e("element.tree.paste-only-contents"),key:"pasteOnlyContents",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:(i=n(),r(t,"copy")||"folder"===t.type||t.isLocked||(null==i?void 0:i.type)!==t.type),onClick:async()=>{await u(n(),t)}}]}},pasteInheritanceTreeContextMenuItem:t=>{let i,a,l,o,s,d;return{label:e("document.paste-inheritance"),key:"paste-inheritance",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(t,"copy"),children:[(i=t,{label:e("element.tree.paste-as-child-recursive"),key:"pasteAsChildRecursive-inheritance",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(i,"copy"),onClick:async()=>{await f(n(),i,{language:null,enableInheritance:!0,recursive:!0,updateReferences:!1})}}),(a=t,{label:e("element.tree.paste-recursive-updating-references"),key:"pasteRecursiveUpdatingReferences-inheritance",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(a,"copy"),onClick:async()=>{await f(n(),a,{language:null,enableInheritance:!0,recursive:!0,updateReferences:!0})}}),(l=t,{label:e("element.tree.paste-as-child"),key:"pasteAsChild-inheritance",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(l,"copy"),onClick:async()=>{await f(n(),l,{language:null,enableInheritance:!0,recursive:!1,updateReferences:!1})}}),(o=t,{label:e("document.paste-as-new-language-variant"),key:"pasteAsNewLanguageVariant-inheritance",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(o,"copy"),onClick:()=>{p(o,"child")}}),(s=t,{label:e("document.paste-as-new-language-variant-recursive"),key:"pasteAsNewLanguageVariantRecursive-inheritance",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(s,"copy"),onClick:()=>{p(s,"recursive")}}),(d=t,{label:e("document.paste-language-recursive-updating-references"),key:"pasteLanguageRecursiveUpdatingReferences-inheritance",icon:(0,tq.jsx)(r9.I,{value:"paste"}),hidden:r(d,"copy"),onClick:()=>{p(d,"recursive-update-references")}})]}}}};var I8=i(40271);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["App/ContextMenuRegistry/ContextMenuRegistry"]),t=kw.r.documentTree;e.registerToSlot(t.name,{name:"addFolder",priority:t.priority.addFolder,useMenuItem:e=>{let{addFolderTreeContextMenuItem:t}=(0,CY.N)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"addPage",priority:t.priority.addPage,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,IX.a)({type:"page",iconValue:"document",contextMenuKey:"addPage",formType:IX.F.FULL,modalTitle:t("document.tree.context-menu.add-page"),perspectiveTreePermission:I8.TreePermission.AddPage});return i(e.target)}}),e.registerToSlot(t.name,{name:"addSnippet",priority:t.priority.addSnippet,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,IX.a)({type:"snippet",iconValue:"snippet",contextMenuKey:"addSnippet",formType:IX.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-snippet"),perspectiveTreePermission:I8.TreePermission.AddSnippet});return i(e.target)}}),e.registerToSlot(t.name,{name:"addLink",priority:t.priority.addLink,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,IX.a)({type:"link",iconValue:"document-link",contextMenuKey:"addLink",formType:IX.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-link"),hasNoChildren:!0,perspectiveTreePermission:I8.TreePermission.AddLink});return i(e.target)}}),e.registerToSlot(t.name,{name:"addHardlink",priority:t.priority.addHardlink,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,IX.a)({type:"hardlink",iconValue:"hardlink",contextMenuKey:"addHardlink",formType:IX.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-hardlink"),hasNoChildren:!0,perspectiveTreePermission:I8.TreePermission.AddHardlink});return i(e.target)}}),e.registerToSlot(t.name,{name:"addEmail",priority:t.priority.addEmail,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),{addDocumentTreeContextMenuItem:i}=(0,IX.a)({type:"email",iconValue:"mail-02",contextMenuKey:"addEmail",formType:IX.F.KEY_ONLY,modalTitle:t("document.tree.context-menu.add-email"),perspectiveTreePermission:I8.TreePermission.AddEmail});return i(e.target)}}),e.registerToSlot(t.name,{name:"rename",priority:t.priority.rename,useMenuItem:e=>{let{renameTreeContextMenuItem:t}=(0,Tm.M)("document",(0,Tg.Cr)("document","rename",Number.parseInt(e.target.id)));return t(e.target)}}),e.registerToSlot(t.name,{name:"copy",priority:t.priority.copy,useMenuItem:e=>{let{copyTreeContextMenuItem:t}=(0,Cy.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"cut",priority:t.priority.cut,useMenuItem:e=>{let{cutTreeContextMenuItem:t}=(0,Cy.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteCut",priority:t.priority.pasteCut,useMenuItem:e=>{let{pasteCutContextMenuItem:t}=(0,Cy.e)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"publish",priority:t.priority.publish,useMenuItem:e=>{let{publishTreeContextMenuItem:t}=(0,Ir.Z)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"unpublish",priority:t.priority.unpublish,useMenuItem:e=>{let{unpublishTreeContextMenuItem:t}=(0,DH.M)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"delete",priority:t.priority.delete,useMenuItem:e=>{let{deleteTreeContextMenuItem:t}=(0,Tu.z)("document",(0,Tg.Cr)("document","delete",Number.parseInt(e.target.id)));return t(e.target)}}),e.registerToSlot(t.name,{name:"openInNewWindow",priority:t.priority.openInNewWindow,useMenuItem:e=>{let{openInNewWindowTreeContextMenuItem:t}=(0,Iz.j)();return t(e.target)}}),e.registerToSlot(t.name,{name:"refreshTree",priority:t.priority.refreshTree,useMenuItem:e=>{let{refreshTreeContextMenuItem:t}=(0,CF.h)("document");return t(e.target)}}),e.registerToSlot(t.name,{name:"paste",priority:t.priority.paste,useMenuItem:e=>{let{pasteMenuTreeContextMenuItem:t}=I7();return t(e.target)}}),e.registerToSlot(t.name,{name:"pasteInheritance",priority:t.priority.pasteInheritance,useMenuItem:e=>{let{pasteInheritanceTreeContextMenuItem:t}=I7();return t(e.target)}}),e.registerToSlot(t.name,{name:"advanced",priority:t.priority.advanced,useMenuItem:e=>{let{t}=(0,iQ.useTranslation)(),i=kw.r.documentTreeAdvanced,n=(0,kj.W)(i.name,e);return{label:t("element.tree.context-menu.advanced"),key:"advanced",icon:(0,tq.jsx)(r9.I,{value:"more"}),children:n}}});let i=kw.r.documentTreeAdvanced;e.registerToSlot(i.name,{name:"convertTo",priority:i.priority.convertTo,useMenuItem:e=>{let{convertMenuTreeContextMenuItem:t}=(()=>{let{t:e}=(0,iQ.useTranslation)(),[t,{isError:i,error:n}]=(0,I0.LS)(),{closeWidget:r}=(0,m3.J)(),a=(0,aB.Vl)(),l=(0,iv.useAppDispatch)(),{isTreeActionAllowed:o}=(0,C2.H)();(0,tG.useEffect)(()=>{i&&(0,iX.Ay)(new iX.hD(n))},[i,n]);let s=async(e,i)=>{let n;if(void 0!==(await t({id:e,type:i})).error)return;r((0,I1.g)("document",e));let a={type:"name",value:(null==(n=I2[i])?void 0:n.icon)??I2.page.icon};l((0,Cb.updateNodeType)({nodeId:String(e),elementType:"document",newType:i,newIcon:a}))},d=(t,i)=>{let n=parseInt(t.id),r=t.type,l=I2[i];return r===i||(0,tI.isNil)(l)?{key:`convert-to-${i}`,label:"",hidden:!0}:{key:`convert-to-${i}`,label:e(l.labelKey),icon:(0,tq.jsx)(r9.I,{value:l.icon}),onClick:()=>{a.confirm({title:e("convert-document"),content:e("convert-document-warning"),onOk:async()=>{await s(n,i)}})}}};return{convertMenuTreeContextMenuItem:t=>({label:e("convert-to"),key:"convert-to",icon:(0,tq.jsx)(r9.I,{value:"flip-forward"}),hidden:!(o(C1.o.Convert)&&!(0,tI.isNil)(t.type)&&1!==parseInt(t.id)&&(0,tI.isNil)(t.locked)&&!(0,tI.isNil)(t.permissions)&&(0,TS.o)(t.permissions,"publish")),children:[d(t,"page"),d(t,"snippet"),d(t,"email"),d(t,"link"),d(t,"hardlink")]})}})();return t(e.target)}}),e.registerToSlot(i.name,{name:"lock",priority:i.priority.lock,useMenuItem:e=>{let{lockMenuTreeContextMenuItem:t}=(0,CX.V)("document");return t(e.target)}}),e.registerToSlot(i.name,{name:"useAsSite",priority:i.priority.useAsSite,useMenuItem:e=>{let{useAsSiteTreeContextMenuItem:t}=I6();return t(e.target)}}),e.registerToSlot(i.name,{name:"editSite",priority:i.priority.editSite,useMenuItem:e=>{let{editSiteTreeContextMenuItem:t}=I6();return t(e.target)}}),e.registerToSlot(i.name,{name:"removeSite",priority:i.priority.removeSite,useMenuItem:e=>{let{removeSiteTreeContextMenuItem:t}=I6();return t(e.target)}})}}),ts.s.registerModule({onInit:()=>{tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]).register({name:yl.e.document.tree.contextMenu.name,component:IY})}}),i(51344);let I9=e=>{let{t}=(0,iQ.useTranslation)();return(0,tq.jsx)(Cm.s,{...e,label:t("document.document-tree.search",{folderName:e.node.label}),node:e.node,total:e.total})},Me=(g=Cf.n,h=(0,tG.forwardRef)((e,t)=>{let{ref:i,...n}=e;return(0,tq.jsx)(g,{...e,ref:t,wrapNode:t=>(0,tq.jsx)(CG.y9,{renderMenu:()=>(0,tq.jsx)(IY,{node:n}),children:(0,tI.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})}),y=(0,tG.forwardRef)((e,t)=>{var i;let n=e.metaData.document,{t:r}=(0,iQ.useTranslation)();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tq.jsx)(h,{...e});let a=(0,tI.isString)(null==n?void 0:n.key)&&(null==n?void 0:n.key)!==""?null==n?void 0:n.key:r("home");return(0,tq.jsx)(Cg.s,{info:{icon:e.icon,title:a,type:"document",data:{...n}},children:(0,tq.jsx)(h,{...e,ref:t})})}),v=(0,tG.forwardRef)((e,t)=>{let i=e.isLoading??!1,[,{isLoading:n}]=(0,Cw.mG)({fixedCacheKey:`DOCUMENT_ACTION_DELETE_ID_${e.id}`}),{isFetching:r,isLoading:a,isDeleting:l}=(0,Ck.W)(e.id);return(0,tq.jsx)(y,{...e,danger:i||n||l,isLoading:i||!0!==a&&r||n||l||a,ref:t})}),(0,tG.forwardRef)((e,t)=>{var i;let{move:n}=(0,Cy.e)("document"),{move:r}=Is("document"),{isSourceAllowed:a,isTargetAllowed:l}=Cj();if((null==(i=e.metaData)?void 0:i.document)===void 0)return(0,tq.jsx)(v,{...e});let o=e.metaData.document;if(!l(o))return(0,tq.jsx)(v,{...e});let s=e=>{let t=e.data;a(t)&&l(o)&&n({currentElement:{id:t.id,parentId:t.parentId},targetElement:{id:o.id,parentId:o.parentId}}).catch(()=>{(0,iX.Ay)(new iX.$g("Item could not be moved"))})},d=e=>"document"===e.type,c=e=>{let t=e.data;return"document"===e.type&&a(t)&&l(o)},f=e=>{let{info:t,position:i="top"}=e,n=t.data;a(n)&&l(o)&&r({currentElement:{id:n.id,parentId:n.parentId},targetElement:{id:o.id,parentId:o.parentId},newIndex:"top"===i?o.index:o.index+1}).catch(()=>{(0,iX.Ay)(new iX.$g("Item could not be moved"))})},u=[{id:"drop-middle",isValidContext:d,isValidData:c,position:{x:"0",y:"0%",width:"100%",height:"100%"},onDrop:s}];return!0!==e.isRoot&&(u=[{id:"sorting-top",className:"dnd__sorting dnd__sorting--top",isValidContext:d,isValidData:c,position:{x:0,y:0,width:"100%",height:"30%"},onDrop:e=>{f({info:e,position:"top"})}},{id:"drop-middle",isValidContext:d,isValidData:c,position:{x:"0",y:"30%",width:"100%",height:"40%"},onDrop:s},{id:"sorting-bottom",className:"dnd__sorting dnd__sorting--bottom",isValidContext:d,isValidData:c,position:{x:0,y:"70%",width:"100%",height:"30%"},onDrop:e=>{f({info:e,position:"bottom"})}}]),(0,tq.jsx)(v,{...e,ref:t,wrapNode:t=>(0,tq.jsx)(Ic.T,{disableDndActiveIndicator:!0,hotspots:u,children:(0,tI.isUndefined)(e.wrapNode)?t:e.wrapNode(t)})})})),Mt=e=>{let{id:t=1,showRoot:i=!0}=e,{openDocument:n}=(0,IO.$)(),{rootNode:r,isLoading:a}=(0,CS.m)(t,i),l=(0,CC.e)().get(yl.e.document.tree.contextMenu.name);if(i&&a)return(0,tq.jsx)(pa.a,{padding:"small",children:(0,tq.jsx)(Ch.E,{})});async function o(e){n({config:{id:parseInt(e.id)}})}return(0,tq.jsx)(Cc.ng,{contextMenu:l,nodeId:t,onSelect:o,renderFilter:I9,renderNode:Me,renderNodeContent:Cc.Yb.renderNodeContent,renderPager:Cu.l,rootNode:r,showRoot:i,tooltipSlotName:yl.e.document.tree.tooltip.name})},Mi=e=>{var t,i;let{node:n}=e;return n.elementType!==sE.W.document||(null==(i=n.metaData)||null==(t=i.document)?void 0:t.navigationExclude)!==!0?null:(0,tq.jsx)(r9.I,{"data-testid":`tree-node-navigation-exclude-icon-${n.id}`,options:{width:14,height:14},value:"not-visible-element"})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.widgetManager),t=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);e.registerWidget({name:"document-tree",component:Mt}),t.register({name:yl.e.document.tree.tooltip.name,component:C6}),t.registerToSlot(yl.e.document.tree.node.meta.name,{name:"navigationExcludeIcon",component:Mi,priority:100}),t.registerToSlot(yl.e.document.tree.node.meta.name,{name:"lockIcon",component:C5,priority:200})}});let Mn=(0,iR.createStyles)(e=>{let{token:t}=e;return{container:{color:t.colorTextDescription,maxWidth:"300px",textAlign:"center"}}});function Mr(e){let{description:t}=e,{t:i}=(0,iQ.useTranslation)(),{styles:n}=Mn();return(0,tq.jsx)(uE.U,{centered:!0,children:(0,tq.jsxs)(ap.s,{align:"center",className:n.container,gap:"small",vertical:!0,children:[(0,tq.jsxs)(ap.s,{align:"center",gap:"mini",children:[(0,tq.jsx)(r9.I,{value:"info-circle"}),(0,tq.jsx)("span",{children:i("widget.missing-context.title")})]}),(0,tq.jsx)("div",{children:t})]})})}var Ma=i(3395);function Ml(e){let{dataObject:t}=(0,aG.A)(e.id),{t:i}=(0,iQ.useTranslation)();return(null==t?void 0:t.modified)!==!0?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(iN.m,{placement:"bottomLeft",title:(0,tq.jsxs)(tq.Fragment,{children:[i("detached-tab.draft-tooltip"),(0,tq.jsx)(pa.a,{padding:{top:"normal"},children:i("detached-tab.draft-tooltip-addon")})]}),children:(0,tq.jsx)(pa.a,{padding:{x:"extra-small"},children:(0,tq.jsxs)(ap.s,{align:"flex-start",gap:"mini",children:[(0,tq.jsx)(r9.I,{value:"draft"}),(0,tq.jsx)(n5.E,{children:"Draft"})]})})})}function Mo(e){let{context:t,tabKey:i}=e,{getOpenedMainWidget:n}=(0,m3.J)(),{editorType:r,isLoading:a}=(0,Sl.D)(t.config.id,t.type),{t:l}=(0,iQ.useTranslation)();if(a)return(0,tq.jsx)(uE.U,{loading:!0});if(void 0===r)return(0,tq.jsx)(Mr,{description:l("widget.missing-tab-context.description")});let o=n(),s=tc.kL.get(r.tabManagerServiceId).getTab(i),d=tc.kL.get(td.K.widgetManager);if(void 0===s||void 0===o)return(0,tq.jsx)(Mr,{description:l("widget.missing-tab-context.description")});let c=d.getWidget((null==o?void 0:o.getComponent())??"");if((null==c?void 0:c.getContextProvider)===void 0)return(0,tq.jsx)(Mr,{description:l("widget.missing-tab-context.description")});let f=c.getContextProvider(t,s.children);return void 0===f?(0,tq.jsx)(Mr,{description:l("widget.missing-tab-context.description")}):(0,tq.jsx)(pl.s,{renderTopBar:(0,tq.jsxs)(pc.M,{align:"center",position:"top",size:"small",theme:"secondary",children:[(0,tq.jsx)(Ma.W,{elementType:t.type,id:t.config.id}),"data-object"===t.type&&(0,tq.jsx)(Ml,{id:t.config.id})]}),children:f})}var Ms=i(55490);let Md=e=>{let{tabKey:t}=e,{context:i}=(0,Ms.Q)(),{t:n}=(0,iQ.useTranslation)();return(null==i?void 0:i.type)===void 0?(0,tq.jsx)(Mr,{description:n("widget.missing-context.description")}):(0,tq.jsx)(Mo,{context:i,tabKey:t},i.type)},Mc=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{table:t` - .ant-table-content { - - .schedule-table--actions-column { - display: flex; - align-items: center; - - .ant-btn-icon { - color: ${i.colorPrimary}; - - &:hover { - color: ${i.colorPrimaryHover}; - } - } - } - } - `}}),Mf=e=>{let{data:t}=e,{styles:i}=Mc(),{t:n}=(0,iQ.useTranslation)(),{id:r,elementType:a}=(0,iZ.J)(),{element:l,updateSchedule:o,removeSchedule:s,setModifiedCells:d}=(0,Sl.D)(r,a),c="schedules",f=(null==l?void 0:l.modifiedCells[c])??[],u=(0,cH.createColumnHelper)(),m=[u.accessor("date",{header:n("schedule.columns.datetime"),meta:{type:"date",editable:!0,config:{showTime:!0}},size:200}),u.accessor("action",{header:n("schedule.columns.action"),meta:{type:"schedule-actions-select",editable:!0}}),u.accessor("version",{header:n("schedule.columns.version"),meta:{type:"version-id-select",editable:!0},size:80}),u.accessor("active",{header:n("schedule.columns.active"),size:60,meta:{type:"checkbox",config:{align:"center"},editable:!0}}),u.accessor("actions",{header:n("schedule.columns.actions"),cell:e=>(0,tq.jsx)(ap.s,{align:"center",className:"w-full h-full",justify:"center",children:(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{s(e.row.original)},type:"link"})}),size:70})],p=e=>String(e.id);return(0,tG.useEffect)(()=>{f.length>0&&(null==l?void 0:l.changes.schedules)===void 0&&d(c,[])},[l]),(0,tq.jsx)("div",{className:i.table,children:(0,tq.jsx)(ul.x,{columns:m,data:t,modifiedCells:f,onUpdateCellData:e=>{let{rowIndex:i,columnId:n,value:r,rowData:a}=e,l=[...t??[]].find(e=>e.id===a.id);void 0===l||(o({...l,[n]:r}),d(c,[...f,{rowIndex:p(a),columnId:n}]))},setRowId:p})})},Mu=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t,elementType:i}=(0,iZ.J)(),[n,r]=(0,tG.useState)("upcoming"),[a,l]=(0,tG.useState)(!1),{element:o,schedules:s,setSchedules:d,addSchedule:c,removeSchedule:f}=(0,Sl.D)(t,i),{saveSchedules:u,isLoading:m}=So(i,t),{data:p,isLoading:g,isError:h,error:y}=(0,iY.Ts)({elementType:i,id:t});(0,tG.useEffect)(()=>{if(void 0!==p&&(null==o?void 0:o.changes.schedules)===void 0&&Array.isArray(p.items)){let e=Math.floor(Date.now()/1e3);d(p.items.map(t=>({...t,archived:0!==t.date&&t.date{void 0!==s&&(b(s.filter(e=>!e.archived)),j(s.filter(e=>e.archived)))},[s]),(0,tG.useEffect)(()=>{h&&(0,iX.Ay)(new i0.Ay(y))},[h]),g||void 0===p)return(0,tq.jsx)(uE.U,{loading:!0});function w(e){return e.filter(e=>!a||e.active)}return(0,tq.jsxs)(uE.U,{padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",title:e("schedule.headline"),children:(0,tq.jsx)(TM.e,{items:[(0,tq.jsx)(m4.J,{className:"pimcore-schedule-toolbar__headline__buttons__add",icon:{value:"new"},onClick:()=>{c({id:-new Date().getTime(),archived:!1,ctype:"asset",userId:0,username:"",date:0,active:!0})},children:e("schedule.toolbar.new")},"add"),(0,tq.jsx)(az.$,{className:"pimcore-schedule-toolbar__headline__buttons__save",disabled:(null==o?void 0:o.changes.schedules)===void 0,loading:m,onClick:u,type:"primary",children:e("schedule.toolbar.save-scheduled-tasks")},"save")]})}),(0,tq.jsxs)(ap.s,{align:"center",justify:"space-between",children:[(0,tq.jsx)(a_.$,{onChange:r,options:[{label:e("schedule.upcoming"),value:"upcoming"},{label:e("schedule.all"),value:"all"}]}),(0,tq.jsx)(a$.$,{className:"pimcore-schedule-toolbar__filters__active-switch",size:"extra-small",children:(0,tq.jsx)(sA.d,{labelLeft:e("schedule.toolbar.filters.active-switch"),onChange:l,value:a})})]}),(0,tq.jsxs)("div",{className:"pimcore-schedule-content",style:{marginLeft:0},children:[(0,tq.jsx)(Mf,{data:w(v??[])}),"all"===n&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(pa.a,{padding:{y:"small"},children:(0,tq.jsxs)(a$.$,{children:[(0,tq.jsx)(n5.E,{strong:!0,children:e("schedule.archived")}),(0,tq.jsx)(m4.J,{disabled:0===x.length,icon:{value:"trash"},onClick:function(){null==s||s.forEach(e=>{e.archived&&f(e)})},children:e("schedule.archived.cleanup-all")})]})}),(0,tq.jsx)(Mf,{data:w(x??[])})]})]})]})};var Mm=i(93534);let Mp=e=>{let{items:t,isLoading:i}=e,{t:n}=(0,iQ.useTranslation)(),r=(0,cH.createColumnHelper)(),a=[r.accessor("subType",{header:n("dependencies.columns.subtype"),meta:{type:"dependency-type-icon"},size:60}),r.accessor("path",{header:n("dependencies.columns.path"),meta:{autoWidth:!0},size:300}),r.accessor("actions",{header:n("dependencies.columns.open"),meta:{type:"open-element"},size:50,enableResizing:!1})];return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:a,data:t,isLoading:i,resizable:!0})},Mg=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{skeleton:i` - width: 100%; - display: flex; - gap: 4px; - align-items: center; - justify-content: flex-end; - - .square { - .ant-skeleton-button { - width: 24px; - height: 24px; - min-width: unset; - } - } - `}}),Mh=()=>{let{styles:e}=Mg();return(0,tq.jsxs)("div",{className:e.skeleton,children:[(0,tq.jsx)(ig.Skeleton.Input,{active:!0,size:"small"}),(0,tq.jsx)(ig.Skeleton.Button,{active:!0,className:"square",size:"small"}),(0,tq.jsx)(ig.Skeleton.Button,{active:!0,className:"square",size:"small"}),(0,tq.jsx)(ig.Skeleton.Button,{active:!0,className:"square",size:"small"}),(0,tq.jsx)(ig.Skeleton.Button,{active:!0,size:"small"})]})},My=e=>e.isLoading?(0,tq.jsx)(Mh,{}):e.isLoading||0!==e.totalItems?(0,tq.jsx)(po.d,{current:e.page,defaultPageSize:20,onChange:e.onChange,pageSizeOptions:[10,20,50,100],showSizeChanger:!0,showTotal:e=>(0,i6.t)("pagination.show-total",{total:e}),total:e.totalItems??0}):(0,tq.jsx)(tq.Fragment,{}),Mv=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t,elementType:i}=(0,iZ.J)(),[n,r]=(0,tG.useState)(1),[a,l]=(0,tG.useState)(20),{data:o,isLoading:s}=(0,Mm.Q)({elementType:i,id:t,page:n,pageSize:a,dependencyMode:"requires"});return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{justify:"flex-end",theme:"secondary",children:(0,tq.jsx)(My,{...o,isLoading:s,onChange:function(e,t){r(e),l(t)},page:n})}),children:(0,tq.jsxs)(uE.U,{className:"pimcore-dependencies__requires p-r-none",padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",icon:(0,tq.jsx)(r9.I,{value:"requires"}),title:e("dependencies.requires")}),(0,tq.jsx)(Mp,{isLoading:s,items:(null==o?void 0:o.items)??[]})]})})},Mb=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t,elementType:i}=(0,iZ.J)(),[n,r]=(0,tG.useState)(1),[a,l]=(0,tG.useState)(20),{data:o,isLoading:s}=(0,Mm.Q)({elementType:i,id:t,page:n,pageSize:a,dependencyMode:"required_by"});return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{justify:"flex-end",theme:"secondary",children:(0,tq.jsx)(My,{...o,isLoading:s,onChange:function(e,t){r(e),l(t)},page:n})}),children:(0,tq.jsxs)(uE.U,{className:"pimcore-dependencies__required-by p-l-none",padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",icon:(0,tq.jsx)(r9.I,{value:"required-by"}),title:e("dependencies.required-by")}),(0,tq.jsx)(Mp,{isLoading:s,items:(null==o?void 0:o.items)??[]})]})})},Mx=()=>(0,tq.jsx)(ht.n,{leftItem:{minSize:450,size:50,children:(0,tq.jsx)(Mv,{})},resizeAble:!0,rightItem:{minSize:450,size:50,children:(0,tq.jsx)(Mb,{})},withDivider:!0}),Mj=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{workflowCard:i` - .ant-card-head-title { - display: flex !important; - gap: 8px; - font-size: 12px; - align-items: center; - - p { - margin: 0; - } - - .ant-tag { - background: ${t.colorFillSecondary}; - border: 1px solid ${t.colorBorder}; - cursor: pointer; - height: 22px; - display: flex; - align-items: center; - gap: 8px; - - &.color-inverted { - border: transparent; - } - - .ant-badge { - .ant-badge-status-dot { - width: 6px; - height: 6px; - top: unset; - } - } - } - } - - .ant-card-body { - overflow: auto; - } - `}},{hashPriority:"low"}),Mw=e=>{let{workflow:t}=e,[i,n]=(0,tG.useState)([]),{t:r}=(0,iQ.useTranslation)(),a=T9(t),{triggerAction:l,submissionLoading:o}=Sn();return(0,tG.useEffect)(()=>{let e;e=[],a.forEach(t=>{e.push({key:t.actionType+"-"+t.transitionId,label:r(t.label),onClick:()=>{l(t)}})}),n(e)},[]),(0,tq.jsx)(pu.m,{menu:{items:i},placement:"bottom",children:o?(0,tq.jsx)(az.$,{loading:!0,type:"link"}):(0,tq.jsx)(az.$,{children:r("component.workflow-card.action-btn")})})},Mk=e=>{var t;let{workflow:i}=e,{styles:n}=Mj();return(0,tq.jsx)(f_.Z,{className:n.workflowCard,extra:(0,tq.jsx)(Mw,{workflow:i}),title:(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)("p",{children:i.workflowName}),void 0!==i.workflowStatus&&(null==(t=i.workflowStatus)?void 0:t.length)>0&&i.workflowStatus.map((e,t)=>(0,tq.jsx)(ig.Tag,{className:e.colorInverted?"color-inverted":"",icon:(0,tq.jsx)(ig.Badge,{color:e.color,styles:e.colorInverted?{indicator:{outline:`1px solid ${e.color}4D`}}:{}}),style:e.colorInverted?{backgroundColor:`${e.color}33`}:{},title:e.title,children:e.label},`${t}-${e.title}`))]}),children:void 0!==i.graph&&(0,tq.jsx)("img",{alt:"workflow",src:`data:image/svg+xml;utf8,${encodeURIComponent(i.graph)}`})})},MT=()=>{let{t:e}=(0,iQ.useTranslation)(),{workflowDetailsData:t,isFetchingWorkflowDetails:i}=(0,Si.j)();return(0,tq.jsxs)(uE.U,{loading:i,none:(null==t?void 0:t.items)===void 0||(null==t?void 0:t.items.length)===0,noneOptions:{text:e("workflow.no-workflows-found")},padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",title:e("workflow.headline")}),(0,tq.jsx)(ig.Space,{direction:"vertical",children:(0,tq.jsxs)(Sp.F,{children:[(null==t?void 0:t.items)!==void 0&&(null==t?void 0:t.items.length)>0&&t.items.map((e,t)=>(0,tq.jsx)(Mk,{workflow:e},t)),(0,tq.jsx)(Sg.x,{})]})})]})},MS=e=>{var t;let{elementType:i,...n}=e,{t:r}=(0,iQ.useTranslation)(),{isLoading:a,data:l}=pG({elementType:i});if(a)return(0,tq.jsx)(uE.U,{loading:!0});let o=null==l||null==(t=l.items)?void 0:t.map(e=>({value:e.id,label:e.id}));return(0,tq.jsxs)(tJ.lV,{layout:"vertical",...n,children:[(0,tq.jsx)(tJ.lV.Item,{label:r("type"),name:"type",children:(0,tq.jsx)(t8.l,{options:o,placeholder:r("select")})}),(0,tq.jsx)(tJ.lV.Item,{label:r("title"),name:"title",rules:[{required:!0,message:r("form.validation.required")}],children:(0,tq.jsx)(ig.Input,{})}),(0,tq.jsx)(tJ.lV.Item,{label:r("description"),name:"description",children:(0,tq.jsx)(n4.f,{autoSize:{minRows:3}})})]})},MC=e=>{let{...t}=e,{t:i}=(0,iQ.useTranslation)(),[n]=ni.Form.useForm(),[r,{isLoading:a}]=pW();async function l(e){let i=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"";await r({elementType:t.elementType,id:t.elementId,createNote:{type:i,title:e,description:n}})}async function o(e){await l(e.title,e.type,e.description),t.refetchNotes(),t.setOpen(!1),n.resetFields()}return(0,tq.jsx)(ig.Modal,{okButtonProps:{loading:a},okText:i("save"),onCancel:()=>{t.setOpen(!1),n.resetFields()},onOk:()=>{n.submit()},open:t.open,title:(0,tq.jsx)(p8.w,{iconName:"new",children:i("notes-and-events.new-note")}),children:(0,tq.jsx)(MS,{elementType:t.elementType,form:n,onFinish:o})})};var MD=i(40926);let MI=e=>{let{notes:t,pagination:i,onClickTrash:n,elementId:r,elementType:a,deleteLoading:l,refetchNotes:o}=e,{t:s}=(0,iQ.useTranslation)(),[d,c]=(0,tG.useState)(!1),f=t.map(e=>{let t;return{key:e.id.toString(),label:(0,tq.jsxs)(oI.B,{dividerSize:"small",size:"extra-small",theme:"secondary",children:[""!==e.title&&(0,tq.jsx)(tq.Fragment,{children:(0,tq.jsx)(n5.E,{strong:!0,children:e.title})}),(0,tq.jsx)(n5.E,{type:"secondary",children:e.userName})]}),extra:(t=e.type??void 0,(0,tq.jsxs)(a$.$,{align:"center",size:"extra-small",children:[void 0!==t&&(0,tq.jsx)(ig.Tag,{children:t}),(0,tq.jsx)("span",{children:(0,pP.r6)({timestamp:e.date,dateStyle:"short",timeStyle:"medium"})}),!e.locked&&(0,tq.jsx)(lp.K,{"aria-label":i4().t("aria.notes-and-events.delete"),icon:{value:"trash"},loading:l,onClick:t=>{t.stopPropagation(),n(e.id)},theme:"primary"})]})),children:(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(MD.f,{children:(0,pD.SN)(e.description)}),e.data.length>0&&(0,tq.jsx)(pE,{note:e})]}),...0===e.description.length&&{disabled:!0}}});return(0,tq.jsx)(pl.s,{renderToolbar:0!==t.length?(0,tq.jsx)(pc.M,{justify:"flex-end",theme:"secondary",children:(0,tq.jsx)(tq.Fragment,{children:i})}):void 0,children:(0,tq.jsxs)(uE.U,{padded:!0,children:[(0,tq.jsxs)(kR.Y,{className:"p-l-mini",title:s("notes-and-events.notes-and-events"),children:[(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:()=>{c(!0)},children:s("new")}),(0,tq.jsx)(MC,{elementId:r,elementType:a,open:d,refetchNotes:o,setOpen:c})]}),(0,tq.jsx)(uE.U,{none:0===t.length,noneOptions:{text:s("notes-and-events.no-notes-and-events-to-show")},children:(0,tq.jsx)(ac.SD,{accordion:!1,items:f})})]})})},MM=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t,elementType:i}=(0,iZ.J)(),[n,r]=(0,tG.useState)(1),[a,l]=(0,tG.useState)(20),[o,{error:s,isLoading:d}]=p$(),{isLoading:c,data:f,error:u,refetch:m}=pq({id:t,elementType:i,page:n,pageSize:a});async function p(e){await o({id:e}),await m()}return((0,tI.isUndefined)(u)||(0,iX.Ay)(new iX.hD(u)),(0,tI.isUndefined)(s)||(0,iX.Ay)(new iX.hD(s)),c)?(0,tq.jsx)(uE.U,{loading:!0}):(0,tq.jsx)(MI,{deleteLoading:d,elementId:t,elementType:i,notes:f.items,onClickTrash:p,pagination:(0,tq.jsx)(po.d,{current:n,onChange:(e,t)=>{r(e),l(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:f.totalItems}),refetchNotes:m})};var ML=i(6387);let MF=()=>{let e=(0,iv.useAppDispatch)();return{updateTagsForElementByTypeAndId:t=>e(ML.FH.util.updateQueryData("tagGetCollectionForElementByTypeAndId",{elementType:t.elementType,id:t.id},e=>{let i=t.flatTags.filter(e=>t.checkedTags.includes(e.id));return{totalItems:t.checkedTags.length,items:i}})),removeTagFromElement:t=>e(ML.FH.util.updateQueryData("tagGetCollectionForElementByTypeAndId",{elementType:t.elementType,id:t.id},e=>{e.items=e.items.filter(e=>e.id!==t.tagId),e.totalItems=e.items.length}))}},ME=e=>{let{tags:t,isLoading:i}=e,{t:n}=(0,iQ.useTranslation)(),{id:r,elementType:a}=(0,iZ.J)(),{removeTagFromElement:l}=MF(),[o]=(0,gZ.vX)(),s=async e=>{let t=l({elementType:a,id:r,tagId:e});try{await o({elementType:a,id:r,tagId:e})}catch{t.undo(),(0,iX.Ay)(new iX.$g("Failed to unassign tag from element"))}},d=(0,cH.createColumnHelper)(),c=[d.accessor("path",{header:n("tags.columns.path"),meta:{type:"text"},minSize:600,sortDescFirst:!1}),d.accessor("actions",{header:n("tags.columns.actions"),enableSorting:!1,cell:e=>(0,tq.jsx)(ig.Flex,{align:"center",className:"w-full h-full",justify:"center",children:(0,tq.jsx)(lp.K,{"aria-label":n("tags.actions.delete"),icon:{value:"trash"},onClick:async()=>{await s(e.row.original.id)},type:"link"})}),size:60})];return(0,tq.jsx)(ul.x,{columns:c,data:Object.values(t),enableSorting:!0,isLoading:i,sorting:[{id:"path",desc:!1}]})},MP=e=>{let t,i,{elementId:n,elementType:r,tags:a,filter:l,setFilter:o,isLoading:s,defaultCheckedTags:d,setDefaultCheckedTags:c}=e,{t:f}=(0,iQ.useTranslation)(),u=(t=[],(i=e=>{for(let n of e)t.push(n),void 0!==n.children&&i(n.children)})(a),t).filter(e=>void 0!==e.id),[m,p]=tU().useState([0,...d]),{handleCheck:g,loadingNodes:h}=(e=>{let{elementId:t,elementType:i,flatTags:n,setDefaultCheckedTags:r}=e,a=(0,uI.J)(),{updateTagsForElementByTypeAndId:l}=MF(),[o]=(0,gZ.zC)(),[s]=(0,gZ.vX)(),[d,c]=(0,tG.useState)(new Set),f=async(e,n)=>{var r,a;if(0===e)return;let l=await (n?o:s)({elementType:i,id:t,tagId:e});if((null==(a=l.error)||null==(r=a.data)?void 0:r.error)!=null&&""!==l.error.data.error)throw Error(l.error.data.error);if(null!=l.error)throw Error(n?"Failed to assign tag to element":"Failed to unassign tag from element")},u=async e=>{l({elementType:i,id:t,flatTags:n,checkedTags:e.map(Number)}),r(e)};return{handleCheck:async(e,t)=>{let i=Number(t.node.key);c(e=>new Set(e).add(String(i))),u(e.checked);try{await f(i,t.checked)}catch{let n=t.checked?(0,i6.t)("failed-to-assign-tag-to-element"):(0,i6.t)("failed-to-un-assign-tag-to-element");a.error({content:n,type:"error",duration:5}),u(t.checked?e.checked.filter(e=>e!==String(i)):[...e.checked,String(i)])}finally{c(e=>{let t=new Set(e);return t.delete(String(i)),t})}},loadingNodes:d}})({elementId:n,elementType:r,flatTags:u,setDefaultCheckedTags:c}),y=(0,gJ.M)({tags:a,loadingNodes:h});return(0,tG.useEffect)(()=>{let e,t;!(0,tI.isNil)(l)&&l.length>0&&p([0,...(e=[],(t=i=>{for(let n of i)void 0!==n.key&&e.push(String(n.key)),(0,tI.isNull)(n.children)||t(n.children)})(y),e)])},[l]),(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(ps.D,{loading:s,onSearch:o,placeholder:f("search")}),(0,tq.jsx)(gQ.l,{checkStrictly:!0,checkedKeys:{checked:d,halfChecked:[]},defaultExpandedKeys:m,onCheck:g,treeData:y,withCustomSwitcherIcon:!0})]})},MA=e=>{let[t,i]=(0,tG.useState)(""),[n,r]=(0,tG.useState)(e.tags.map(e=>e.id.toString())),{id:a,elementType:l}=(0,iZ.J)();(0,tG.useEffect)(()=>{r(e.tags.map(e=>e.id.toString()))},[e.tags]);let{data:o,isLoading:s}=(0,ML.uQ)({page:1,pageSize:9999,filter:t});return s||e.isLoading?(0,tq.jsx)(uE.U,{loading:!0}):(null==o?void 0:o.items)===void 0?(0,tq.jsx)("div",{children:"Failed to load tags"}):(0,tq.jsx)(MP,{defaultCheckedTags:n,elementId:a,elementType:l,filter:t,isLoading:s,setDefaultCheckedTags:r,setFilter:i,tags:o.items})};class MN{async run(e){let{messageBus:t}=e;try{let e=await this.executeRequest();if((0,tI.isNil)(e))return;let i=new SU.j({jobRunId:e,title:this.title});t.registerHandler(i)}catch(e){await this.handleJobFailure(e),(0,iX.Ay)(new iX.$g(e.message))}}async executeRequest(){var e;let t=await uk.M_.dispatch(gZ.FH.endpoints.tagBatchOperationToElementsByTypeAndId.initiate({elementType:this.elementType,id:this.elementId,operation:this.operation}));return(0,tI.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,iX.Ay)(new iX.hD(t.error)),null)}async handleJobFailure(e){console.error("Tag assign job failed:",e)}constructor(e){this.elementType=e.elementType,this.elementId=e.elementId,this.operation=e.operation,this.title=e.title}}let MR=()=>{let{t:e}=(0,iQ.useTranslation)(),{id:t,elementType:i}=(0,iZ.J)(),{element:n}=(0,Sl.D)(t,i),{applyTagsToChildren:r,removeAndApplyTagsToChildren:a}=(()=>{let{id:e,elementType:t}=(0,iZ.J)(),i=tc.kL.get(td.K.executionEngine),{t:n}=(0,iQ.useTranslation)();return{removeAndApplyTagsToChildren:async()=>{let r=new MN({elementType:t,elementId:e,operation:"replace",title:n("tags.remove-and-apply-tags-to-children")});await i.runJob(r)},applyTagsToChildren:async()=>{let r=new MN({elementType:t,elementId:e,operation:"assign",title:n("tags.apply-tags-to-children")});await i.runJob(r)}}})(),{data:l,isLoading:o}=(0,gZ.ET)({elementType:i,id:t});return(0,tq.jsx)(ht.n,{leftItem:{minSize:315,size:25,children:(0,tq.jsx)(uE.U,{loading:o,padded:!0,children:(0,tq.jsx)(MA,{isLoading:o,tags:(null==l?void 0:l.items)??[]})})},resizeAble:!0,rightItem:{minSize:300,size:75,children:(0,tq.jsxs)(uE.U,{padded:!0,children:[(0,tq.jsx)(kR.Y,{className:"p-l-mini",title:e("tags.assigned-tags-text"),children:(null==l?void 0:l.totalItems)===0?(0,tq.jsx)(az.$,{onClick:a,children:e("tags.remove-and-apply-tags-to-children")}):(0,tq.jsx)(ig.Dropdown.Button,{disabled:(null==n?void 0:n.hasChildren)!==!0,menu:{items:[{label:e("tags.remove-and-apply-tags-to-children"),key:"1",onClick:a}]},onClick:r,children:e("tags.apply-tags-to-children")})}),(0,tq.jsx)("div",{className:"pimcore-tags-content",children:(0,tq.jsx)(ME,{isLoading:o,tags:(null==l?void 0:l.items)??[]})})]})},withDivider:!0})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.widgetManager).registerWidget({name:"detachable-tab",component:Md});let e=tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]);e.register({name:tu.eb.element.editor.tab.properties.name,component:IE}),e.register({name:tu.eb.element.editor.tab.schedule.name,component:Mu}),e.register({name:tu.eb.element.editor.tab.dependencies.name,component:Mx}),e.register({name:tu.eb.element.editor.tab.workflow.name,component:MT}),e.register({name:tu.eb.element.editor.tab.notesAndEvents.name,component:MM}),e.register({name:tu.eb.element.editor.tab.tags.name,component:MR})}});var MV=i(98053);let Mz=pR.api.enhanceEndpoints({addTagTypes:["Elements"]}).injectEndpoints({endpoints:e=>({elementGetUsage:e.query({query:e=>({url:`/pimcore-studio/api/elements/usage/${e.elementType}/${e.id}`,params:{page:e.page,pageSize:e.pageSize,sortOrder:e.sortOrder,sortBy:e.sortBy}}),providesTags:["Elements"]}),elementUsageReplace:e.mutation({query:e=>({url:`/pimcore-studio/api/elements/usage/replace/${e.elementType}/${e.id}`,method:"POST",body:e.body}),invalidatesTags:["Elements"]})}),overrideExisting:!1}),{useElementGetUsageQuery:MB,useElementUsageReplaceMutation:MO}=Mz,MK=Mz.enhanceEndpoints({endpoints:{elementUsageReplace:{invalidatesTags:[]}}}),{useLazyElementGetUsageQuery:M_,useElementUsageReplaceMutation:MH}=MK;class M${async run(e){let{messageBus:t}=e;try{let e=await this.executeReplaceRequest();if((0,tI.isNil)(e))return void await this.handleCompletion();let i=new SU.j({jobRunId:e,title:this.title,onJobCompletion:async e=>{try{await this.handleCompletion()}catch(e){await this.handleJobFailure(e)}}});t.registerHandler(i)}catch(e){await this.handleJobFailure(e),(0,iX.Ay)(new iX.$g(e.message))}}async executeReplaceRequest(){var e;let t=await uk.M_.dispatch(MK.endpoints.elementUsageReplace.initiate({elementType:this.sourceElementType,id:this.sourceElementId,body:{targetType:this.targetElementType,targetId:this.targetElementId,elements:this.elements??[]}}));return(0,tI.isUndefined)(t.error)?(null==(e=t.data)?void 0:e.jobRunId)??null:((0,iX.Ay)(new iX.hD(t.error)),null)}async handleCompletion(){var e;null==(e=this.onFinish)||e.call(this)}async handleJobFailure(e){console.error("Search replace assignments job failed:",e)}constructor(e){this.sourceElementType=e.sourceElementType,this.sourceElementId=e.sourceElementId,this.targetElementType=e.targetElementType,this.targetElementId=e.targetElementId,this.elements=e.elements,this.title=e.title,this.onFinish=e.onFinish}}let MW=(0,tG.createContext)(void 0),Mq=e=>{let{children:t}=e,{t:i}=(0,iQ.useTranslation)(),[n,r]=(0,tG.useState)(null),[a,l]=(0,tG.useState)(null),[o,s]=(0,tG.useState)(1),[d,c]=(0,tG.useState)(50),[f,u]=(0,tG.useState)({}),m=tc.kL.get(td.K.executionEngine),[p,{data:g,isFetching:h,isLoading:y}]=MK.useLazyElementGetUsageQuery();(0,tG.useEffect)(()=>{null!==n&&p({id:n.id,elementType:n.type,page:o,pageSize:d,sortBy:"id",sortOrder:"ASC"})},[o,d,p]);let v=(null==g?void 0:g.totalCount)??0,b=(null==g?void 0:g.data)??[],x=(null==g?void 0:g.hasHidden)??!1,j=e=>{r(e)},w=e=>{l(e)},k=()=>{null!==n&&(s(1),u({}),p({id:n.id,elementType:n.type,page:1,pageSize:d,sortBy:"id",sortOrder:"ASC"}))},T=(e,t)=>{s(e),c(t)},S=async()=>{if(null!==n&&null!==a)try{let e=new M$({sourceElementType:n.type,sourceElementId:n.id,targetElementType:a.type,targetElementId:a.id,title:i("search-replace-assignments.job.title-all"),onFinish:()=>{D(),u({})}});await m.runJob(e)}catch(e){console.error("Failed to apply replacement to all items",e)}},C=async()=>{if(null!==n&&null!==a)try{let e=Object.keys(f).map(Number).map(e=>{let t=b[e];return{id:t.id,type:"data-object"===t.type?"object":t.type}}),t=new M$({sourceElementType:n.type,sourceElementId:n.id,targetElementType:a.type,targetElementId:a.id,elements:e,title:i("search-replace-assignments.job.title-selection",{count:e.length}),onFinish:()=>{D(),u({})}});await m.runJob(t)}catch(e){console.error("Failed to apply replacement to all items",e)}},D=()=>{null!==n&&p({id:n.id,elementType:n.type,page:o,pageSize:d,sortBy:"id",sortOrder:"ASC"})},I=()=>{u({})},M=null!==n&&null!==a,L=Object.keys(f).length,F=L>0,E=(0,tG.useMemo)(()=>({searchFor:n,replaceWith:a,currentPage:o,pageSize:d,selectedRows:f,defaultPageSize:50,totalItems:v,usageItems:b,isFetching:h,isLoading:y,isFormValid:M,selectedRowsCount:L,hasSelection:F,hasHidden:x,handleSearchForChange:j,handleReplaceWithChange:w,handleSearch:k,handlePageChange:T,handleApplyToAll:S,handleApplyToSelection:C,handleRefresh:D,handleClearSelection:I,setSelectedRows:u}),[n,a,o,d,f,v,b,h,y,M,L,F,x]);return(0,tq.jsx)(MW.Provider,{value:E,children:t})},MG=()=>{let e=(0,tG.useContext)(MW);if(void 0===e)throw Error("useSearchReplaceAssignments must be used within a SearchReplaceAssignmentsProvider");return e},MU=()=>{let{searchFor:e,replaceWith:t,handleSearchForChange:i,handleReplaceWithChange:n,handleSearch:r,handleApplyToAll:a,isFormValid:l,hasHidden:o}=MG(),[s]=ig.Form.useForm();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.search-replace-assignments")})}),(0,tq.jsx)(uE.U,{children:(0,tq.jsxs)(ni.Box,{margin:{x:"small",bottom:"small"},children:[(0,tq.jsxs)(ig.Form,{colon:!1,form:s,labelAlign:"left",labelCol:{style:{width:"150px"}},layout:"horizontal",style:{marginBottom:0},children:[(0,tq.jsx)(ig.Form.Item,{label:(0,tq.jsx)(pd.h,{children:(0,i6.t)("search-replace-assignments.search-for")}),name:"searchFor",children:(0,tq.jsxs)(ap.s,{gap:"extra-small",children:[(0,tq.jsx)("div",{style:{width:"600px"},children:(0,tq.jsx)(MV.h,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,enableSearch:!0,onChange:i,value:e})}),(0,tq.jsx)(az.$,{disabled:null===e,onClick:r,type:"default",children:(0,i6.t)("search-replace-assignments.search")})]})}),(0,tq.jsx)(ig.Form.Item,{label:(0,tq.jsx)(pd.h,{children:(0,i6.t)("search-replace-assignments.replace-with")}),name:"replaceWith",style:{marginBottom:0},children:(0,tq.jsxs)(ap.s,{gap:"extra-small",children:[(0,tq.jsx)("div",{style:{width:"600px"},children:(0,tq.jsx)(MV.h,{assetsAllowed:!0,dataObjectsAllowed:!0,documentsAllowed:!0,enableSearch:!0,onChange:n,value:t})}),(0,tq.jsx)(ig.Popconfirm,{cancelText:(0,i6.t)("cancel"),description:(0,i6.t)("search-replace-assignments.confirm.description"),okText:(0,i6.t)("button.confirm"),onConfirm:a,overlayStyle:{maxWidth:"350px"},title:(0,i6.t)("search-replace-assignments.confirm.title"),children:(0,tq.jsx)(az.$,{disabled:!l,type:"primary",children:(0,i6.t)("search-replace-assignments.apply-to-all")})})]})})]}),o&&(0,tq.jsx)(ni.Box,{margin:{top:"small"},children:(0,tq.jsx)(kY.F,{banner:!0,message:(0,i6.t)("hidden-dependencies-warning"),type:"warning"})})]})})]})},MQ=()=>{let{hasSelection:e,selectedRowsCount:t,handleClearSelection:i,handleApplyToSelection:n,handleRefresh:r,currentPage:a,handlePageChange:l,totalItems:o,defaultPageSize:s,isFormValid:d,isFetching:c,isLoading:f}=MG();return(0,tq.jsxs)(pc.M,{justify:"space-between",theme:"secondary",children:[e&&(0,tq.jsxs)(ap.s,{align:"center",gap:"small",children:[(0,tq.jsx)(tQ.S,{checked:!0,onClick:e=>{e.stopPropagation(),i()},children:(0,i6.t)("listing.selection.total",{total:t})}),(0,tq.jsx)(ig.Popconfirm,{cancelText:(0,i6.t)("cancel"),description:(0,i6.t)("search-replace-assignments.confirm.description"),okText:(0,i6.t)("button.confirm"),onConfirm:n,overlayStyle:{maxWidth:"350px"},title:(0,i6.t)("search-replace-assignments.confirm.title"),children:(0,tq.jsx)(az.$,{disabled:!d,type:"primary",children:(0,i6.t)("search-replace-assignments.apply-to-selection")})})]}),!e&&(0,tq.jsx)("div",{}),(0,tq.jsxs)(oI.B,{size:"extra-small",children:[(0,tq.jsx)(lp.K,{disabled:c||f,icon:{value:"refresh"},onClick:r}),(0,tq.jsx)(po.d,{current:a,defaultPageSize:s,onChange:l,showSizeChanger:!0,showTotal:e=>(0,i6.t)("pagination.show-total",{total:e}),total:o})]})]})},MJ=()=>{let{t:e}=(0,iQ.useTranslation)(),{usageItems:t,isFetching:i,selectedRows:n,setSelectedRows:r}=MG(),a=(0,cH.createColumnHelper)(),l=[a.accessor("id",{header:e("search-replace-assignments.columns.id"),size:150}),a.accessor("type",{header:e("search-replace-assignments.columns.type"),size:70,cell:t=>{let{row:i}=t,n=i.original.type;return(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:(0,tq.jsx)(ni.Tooltip,{title:e(n),children:(0,tq.jsx)(r9.I,{value:(e=>{switch(e){case"data-object":return"data-object";case"document":return"document";case"asset":return"asset";default:return"file-05"}})(n)})})})}}),a.accessor("path",{header:e("search-replace-assignments.columns.path"),size:400,meta:{autoWidth:!0,type:"element",config:{getElementInfo:e=>({id:e.row.original.id,fullPath:e.row.original.path})}}})];return(0,tq.jsx)(ni.Box,{margin:{x:"small",bottom:"small"},children:(0,tq.jsx)(ul.x,{autoWidth:!0,columns:l,data:t,enableMultipleRowSelection:!0,enableRowSelection:!0,isLoading:i,onSelectedRowsChange:r,resizable:!0,selectedRows:n})})},MZ=()=>((0,tG.useEffect)(()=>()=>{console.log("SearchReplaceAssignmentsContainer unmounting")},[]),(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(MQ,{}),renderTopBar:(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(MU,{}),(0,tq.jsx)(ni.Box,{margin:{bottom:"small"},children:(0,tq.jsx)(ni.Divider,{size:"none",theme:"secondary"})})]}),children:(0,tq.jsx)(uE.U,{children:(0,tq.jsx)(MJ,{})})})),MY=()=>(0,tq.jsx)(Mq,{children:(0,tq.jsx)(MZ,{})});var MX=i(69676);let M0={name:"Search & Replace Assignments",id:"search-replace-assignments",component:"search-replace-assignments",config:{translationKey:"widget.search-replace-assignments",icon:{type:"name",value:"search"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/Search & Replace Assignments",label:"navigation.search-replace-assignments",className:"item-style-modifier",order:700,hidden:()=>!(0,MX.isAllowed)(pw.F.Assets)&&!(0,MX.isAllowed)(pw.F.Documents)&&!(0,MX.isAllowed)(pw.F.Objects),perspectivePermission:pk.d.SearchReplaceAssignments,widgetConfig:M0}),tc.kL.get(td.K.widgetManager).registerWidget({name:"search-replace-assignments",component:MY})}});var M1=i(10716),M2=i(86218),M3=i(81194),M6=i(20607),M4=i(78254);let M5=()=>{let{t:e}=(0,iv.useTranslation)();return{createFallbackRootNode:(t,i)=>{let n=(e=>{if("document"===e)return{list:!1,view:!1,publish:!1,unpublish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1,save:!1};if("asset"===e)return{list:!1,view:!1,publish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1};if("data-object"===e)return{list:!1,view:!1,publish:!1,unpublish:!1,delete:!1,rename:!1,create:!1,settings:!1,versions:!1,properties:!1,save:!1,localizedEdit:null,localizedView:null};throw Error(`Unsupported element type: ${String(e)}`)})(i),r=(e=>{if("document"===e)return"document";if("asset"===e)return"asset";if("data-object"===e)return"dataObject";throw Error(`Unsupported element type: ${String(e)}`)})(i);return{nodes:[{id:String(t),internalKey:String(t),label:1===t?"home":e("home"),icon:{type:"name",value:"home-root-folder"},type:"folder",hasChildren:!1,parentId:void 0,fullPath:"/",elementType:i,permissions:n,locked:null,isLocked:!1,metaData:{[r]:void 0}}],total:1}}}},M7=()=>{let{pageSize:e,treeFilterArgs:t}=(0,M4._)(),i=(0,iv.useAppDispatch)(),{createFallbackRootNode:n}=M5();async function r(t,n){let r=i(Da.FH.endpoints.dataObjectGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,iX.Ay)(new iX.hD(a)):r||(0,tI.isUndefined)(n)?void 0:(0,M6.Z)(t,n,e)}).catch(()=>void 0)}return{fetchRoot:async function(e){let t=await r({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e});return!(0,tI.isUndefined)(null==t?void 0:t.nodes)&&(null==t?void 0:t.nodes.length)>0?t:await Promise.resolve(n(e,"data-object"))},fetchChildren:async function(i,n){return await r(i,{parentId:parseInt(i.id),pageSize:e,page:n.page,idSearchTerm:n.searchTerm,...t})}}};var M8=i(79563);let M9=()=>{let{pageSize:e,treeFilterArgs:t}=(0,M4._)(),i=(0,iv.useAppDispatch)(),{createFallbackRootNode:n}=M5();async function r(t,n){let r=i(kc.api.endpoints.assetGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,iX.Ay)(new iX.hD(a)):r||(0,tI.isUndefined)(n)?void 0:(0,M8.Z)(t,n,e)}).catch(()=>void 0)}return{fetchRoot:async function(e){let t=await r({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e});return!(0,tI.isUndefined)(null==t?void 0:t.nodes)&&(null==t?void 0:t.nodes.length)>0?t:await Promise.resolve(n(e,"asset"))},fetchChildren:async function(i,n){return await r(i,{parentId:parseInt(i.id),pageSize:e,page:n.page,idSearchTerm:n.searchTerm,...t})}}};var Le=i(92472);let Lt=()=>{let{pageSize:e,treeFilterArgs:t}=(0,M4._)(),i=(0,iv.useAppDispatch)(),{createFallbackRootNode:n}=M5();async function r(t,n){let r=i(od.FH.endpoints.documentGetTree.initiate(n,{forceRefetch:!0}));return await r.then(i=>{let{data:n,isError:r,error:a}=i;return r?void(0,iX.Ay)(new iX.hD(a)):r||(0,tI.isUndefined)(n)?void 0:(0,Le.Z)(t,n,e)}).catch(()=>void 0)}return{fetchRoot:async function(e){let t=await r({id:"0",internalKey:"0"},{pageSize:1,page:1,excludeFolders:!1,pathIncludeParent:!0,pathIncludeDescendants:!1,pqlQuery:1===e?void 0:"id = "+e});return!(0,tI.isUndefined)(null==t?void 0:t.nodes)&&(null==t?void 0:t.nodes.length)>0?t:await Promise.resolve(n(e,"document"))},fetchChildren:async function(i,n){return await r(i,{parentId:parseInt(i.id),pageSize:e,page:n.page,idSearchTerm:n.searchTerm,...t})}}};var Li=i(54604);let Ln=e=>{let{id:t,elementType:i,rootFolder:n,classes:r,pql:a,pageSize:l,contextPermissions:o,showRoot:s=!1}=e,{asset_tree_paging_limit:d,object_tree_paging_limit:c}=(0,p3.t)(),f=l??(i===sE.W.asset?d:c);return(0,tq.jsx)(M3.b,{treeId:t,children:(0,tq.jsx)(M2.P,{permissions:{...o},children:(0,tq.jsxs)(M1.S,{classIds:r,pageSize:f,pqlQuery:(0,a3.uI)(a)?a:void 0,children:[i===sE.W.asset&&(0,tq.jsx)(Li.X,{nodeApiHook:M9,children:(0,tq.jsx)(CZ,{id:(null==n?void 0:n.id)??1,showRoot:s})}),i===sE.W.dataObject&&(0,tq.jsx)(Li.X,{nodeApiHook:M7,children:(0,tq.jsx)(Iu,{id:(null==n?void 0:n.id)??1,showRoot:s})}),i===sE.W.document&&(0,tq.jsx)(Li.X,{nodeApiHook:Lt,children:(0,tq.jsx)(Mt,{id:(null==n?void 0:n.id)??1,showRoot:s})})]})})})};var Lr=i(41045),La=i(18453),Ll=i(31325);let Lo=new class{supports(e){return["asset-editor","document-editor","data-object-editor"].includes(e.component)}cleanConfig(e){return{...e,config:{id:e.config.id,elementType:e.config.elementType}}}async restore(e,t){let{id:i}=e.config;if(!(0,tI.isNil)(i)){let n=await this.getWidgetConfig(e.component,Number(i));if(!(0,tI.isNil)(n))return t((0,yd.WK)(n)),!0}return!1}async getWidgetConfig(e,t){return"asset-editor"===e?await Lr.c.getWidgetConfig(t,!0):"document-editor"===e?await La.J.getWidgetConfig(t,!0):"data-object-editor"===e?await Ll.j.getWidgetConfig(t,!0):void 0}};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.widgetManager);tc.kL.get(td.K.widgetRestorerRegistry).register(Lo),e.registerWidget({name:"element_tree",component:Ln,transformConfig:e=>({...e,translationKey:e.name}),isVisible:e=>{if((0,tI.has)(e,"elementType"))switch(e.elementType){case"document":return(0,yc.J)(pw.F.Documents);case"asset":return(0,yc.J)(pw.F.Assets);case"data-object":return(0,yc.J)(pw.F.Objects)}return!0}})}});var Ls=i(29247);ts.s.registerModule({onInit(){tc.kL.get(td.K["ExecutionEngine/JobComponentRegistry"]).registerComponent("default-message-bus",Ls.y)}}),ts.s.registerModule({onInit(){let e=tc.kL.get(td.K["DynamicTypes/FieldFilterRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/DataObjectAdapter"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/DataObjectObjectBrick"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/String"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/None"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Id"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Number"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Multiselect"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Date"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Boolean"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/BooleanSelect"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Consent"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/ClassificationStore"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/InputQuantityValue"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/QuantityValue"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Color"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Datetime"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Time"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/FieldFilter/Relation"]));let t=tc.kL.get(td.K["DynamicTypes/BatchEditRegistry"]);t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/Text"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/TextArea"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/Datetime"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/Select"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/Checkbox"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/ElementDropzone"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/ClassificationStore"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/DataObjectAdapter"])),t.registerDynamicType(tc.kL.get(td.K["DynamicTypes/BatchEdit/DataObjectObjectBrick"])),tc.kL.get(td.K["DynamicTypes/ListingRegistry"]).registerDynamicType(tc.kL.get(td.K["DynamicTypes/Listing/AssetLink"]));let i=tc.kL.get(td.K["DynamicTypes/GridCellRegistry"]);i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Text"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/String"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Textarea"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Number"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Select"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/MultiSelect"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Boolean"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Checkbox"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Date"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Time"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/DateTime"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/AssetLink"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/ObjectLink"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/DocumentLink"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/OpenElement"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/AssetPreview"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/AssetActions"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/DataObjectActions"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/DependencyTypeIcon"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/ElementSubtypeIcon"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/AssetCustomMetadataIcon"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/AssetCustomMetadataValue"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/PropertyIcon"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/PropertyValue"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/WebsiteSettingsValue"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/ScheduleActionsSelect"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/VersionsIdSelect"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/AssetVersionPreviewFieldLabel"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Asset"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Object"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Document"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Element"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/LanguageSelect"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Translate"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/DataObjectAdapter"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/ClassificationStore"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/DataObjectAdvanced"])),i.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/DataObjectObjectBrick"]));let n=tc.kL.get(td.K["DynamicTypes/AdvancedGridCellRegistry"]);n.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/String"])),n.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Integer"])),n.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Error"])),n.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GridCell/Array"]));let r=tc.kL.get(td.K["DynamicTypes/MetadataRegistry"]);r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Asset"])),r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Checkbox"])),r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Date"])),r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Document"])),r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Input"])),r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Object"])),r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Select"])),r.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Metadata/Textarea"]));let a=tc.kL.get(td.K["DynamicTypes/ObjectLayoutRegistry"]);a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/Panel"])),a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/Tabpanel"])),a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/Accordion"])),a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/Region"])),a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/Text"])),a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/Fieldset"])),a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/FieldContainer"])),a.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectLayout/Iframe"]));let l=tc.kL.get(td.K["DynamicTypes/ObjectDataRegistry"]);l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Input"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Textarea"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Wysiwyg"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Password"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/InputQuantityValue"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Select"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/MultiSelect"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Language"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/LanguageMultiSelect"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Country"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/CountryMultiSelect"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/User"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/BooleanSelect"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Numeric"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/NumericRange"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Slider"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/QuantityValue"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/QuantityValueRange"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Consent"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Firstname"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Lastname"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Email"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Gender"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/RgbaColor"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/EncryptedField"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/CalculatedValue"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Checkbox"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Link"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/UrlSlug"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Date"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Datetime"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/DateRange"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Time"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ExternalImage"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Image"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Video"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/HotspotImage"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ImageGallery"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/GeoPoint"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/GeoBounds"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/GeoPolygon"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/GeoPolyLine"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ManyToOneRelation"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ManyToManyRelation"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ManyToManyObjectRelation"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/AdvancedManyToManyObjectRelation"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/AdvancedManyToManyRelation"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ReverseObjectRelation"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Table"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/StructuredTable"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/Block"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/LocalizedFields"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/FieldCollection"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ObjectBrick"])),l.registerDynamicType(tc.kL.get(td.K["DynamicTypes/ObjectData/ClassificationStore"]));let o=tc.kL.get(td.K["DynamicTypes/DocumentEditableRegistry"]);o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Block"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/ScheduledBlock"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Checkbox"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Date"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Embed"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Input"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Link"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Numeric"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Relation"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Relations"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Renderlet"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Select"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Snippet"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Table"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Textarea"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Wysiwyg"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/MultiSelect"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Image"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Pdf"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Video"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Area"])),o.registerDynamicType(tc.kL.get(td.K["DynamicTypes/DocumentEditable/Areablock"]));let s=tc.kL.get(td.K["DynamicTypes/EditableDialogLayoutRegistry"]);s.registerDynamicType(tc.kL.get(td.K["DynamicTypes/EditableDialogLayout/Tabpanel"])),s.registerDynamicType(tc.kL.get(td.K["DynamicTypes/EditableDialogLayout/Panel"]));let d=tc.kL.get(td.K["DynamicTypes/AssetRegistry"]);d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Archive"])),d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Audio"])),d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Document"])),d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Folder"])),d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Image"])),d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Text"])),d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Unknown"])),d.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Asset/Video"]));let c=tc.kL.get(td.K["DynamicTypes/DocumentRegistry"]);c.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Document/Email"])),c.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Document/Folder"])),c.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Document/Hardlink"])),c.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Document/Link"])),c.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Document/Newsletter"])),c.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Document/Snippet"])),c.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Document/Page"]));let f=tc.kL.get(td.K["DynamicTypes/ObjectRegistry"]);f.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Object/Folder"])),f.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Object/Object"])),f.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Object/Variant"]));let u=tc.kL.get(td.K["DynamicTypes/Grid/SourceFieldsRegistry"]);u.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/SourceFields/Text"])),u.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/SourceFields/SimpleField"])),u.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/SourceFields/RelationField"]));let m=tc.kL.get(td.K["DynamicTypes/Grid/TransformersRegistry"]);m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/BooleanFormatter"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/DateFormatter"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/ElementCounter"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/TwigOperator"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/Anonymizer"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/Blur"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/ChangeCase"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/Combine"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/Explode"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/StringReplace"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/Substring"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/Trim"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/Translate"])),m.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Grid/Transformers/PHPCode"]))}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DynamicTypes/ThemeRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Theme/StudioDefaultLight"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Theme/StudioDefaultDark"]))}});let Ld=(0,iR.createStyles)(e=>{let{css:t,token:i}=e,n=t` - min-height: 100px; - cursor: text; - `,r=t` - &[contenteditable='true'][data-placeholder][data-empty='true']:before { - cursor: text; - content: attr(data-placeholder); - display: block; - position: absolute; - color: ${i.colorTextDisabled}; - } - `;return{editor:t` - ${n} - border: 1px solid ${i.colorBorder}; - padding: ${i.paddingSM}px; - border-radius: ${i.borderRadius}px; - background-color: ${i.colorBgContainer}; - - &[contenteditable='false'] { - background-color: ${i.colorBgContainerDisabled}; - cursor: not-allowed; - } - - ${r} - `,editorDocument:t` - ${n} - outline: 0 auto; - - &[contenteditable='false'] { - cursor: not-allowed; - } - - &:hover, &[contenteditable='true'][data-placeholder][data-empty='true'] { - outline: 2px dashed ${i.colorBorder}; - outline-offset: 5px; - } - - &:focus { - outline: none; - } - - ${r} - `}}),Lc=(0,tG.forwardRef)((e,t)=>{let{value:i,onChange:n,disabled:r,width:a,height:l,placeholder:o,context:s}=e,d=(0,tG.useRef)(null),{styles:c}=Ld(),f=(0,tI.isNil)(i)||(0,tI.isEmpty)(i)||""===i.trim()||"

    "===i||"
    "===i;return(0,tG.useImperativeHandle)(t,()=>({onDrop:e=>{}})),(0,tG.useEffect)(()=>{(0,tI.isNull)(d.current)||d.current.innerHTML===i||(d.current.innerHTML=i??"")},[i]),(0,tq.jsx)("div",{children:(0,tq.jsx)("div",{className:s===ai.f.DOCUMENT?c.editorDocument:c.editor,contentEditable:!0!==r,"data-empty":f,"data-placeholder":o,onInput:e=>{null!=n&&n(e.currentTarget.innerHTML)},ref:d,style:{maxWidth:(0,r7.x)(a),minHeight:(0,r7.x)(l)}})})});Lc.displayName="DefaultWysiwygEditor",ts.s.registerModule({onInit:()=>{tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]).register({name:tu.eb.wysiwyg.editor.name,component:Lc})}});let Lf=()=>{let e=(0,uk.jL)(),t=(0,aB.Vl)(),{t:i}=(0,iQ.useTranslation)(),{success:n}=(0,uI.J)(),{refreshPerspectives:r}=(0,m7.n)(),[a,{isLoading:l}]=(0,sO.usePerspectiveCreateMutation)(),[o,{isLoading:s}]=(0,sO.usePerspectiveUpdateConfigByIdMutation)(),[d,{isLoading:c}]=(0,sO.usePerspectiveDeleteMutation)(),f=async(e,t)=>{let l=a({addPerspectiveConfig:{name:e}});try{let a=await l;void 0!==a.error&&(0,iX.Ay)(new iX.hD(a.error)),null==t||t(e),r(),n(i("perspective-editor.create.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to create new perspective."))}},u=async(t,a)=>{let l=d({perspectiveId:t});try{let t=await l;if(!(0,tI.isUndefined)(t.error))return void(0,iX.Ay)(new iX.hD(t.error));e(sO.api.util.invalidateTags(uT.qN.PERSPECTIVES())),null==a||a(),r(),n(i("perspective-editor.delete.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to delete perspective"))}};return{createPerspective:e=>{t.input({title:i("perspective-editor.add-modal.title"),label:i("perspective-editor.add-modal.name.label"),rule:{required:!0,message:i("perspective-editor.add-modal.name.validation")},onOk:async t=>{await f(t,()=>{null==e||e(t)})}})},getPerspectiveById:async t=>{try{let{data:i,isError:n,error:r}=await e(sO.api.endpoints.perspectiveGetConfigById.initiate({perspectiveId:t},{forceRefetch:!0}));if(!(0,tI.isUndefined)(i)&&n)return void(0,iX.Ay)(new iX.hD(r));return i}catch{(0,iX.Ay)(new iX.$g('Failed to load perspective data of perspective "'+t+'".'))}},updatePerspective:async(e,t,a)=>{let l=o({perspectiveId:e,savePerspectiveConfig:t});try{let e=await l;if(void 0!==e.error){null==a||a(),(0,iX.Ay)(new iX.hD(e.error));return}null==a||a(),r(),n(i("perspective-editor.update.success"))}catch{null==a||a(),(0,iX.Ay)(new iX.$g("Failed to update perspective."))}},removeWithConfirmation:(e,n)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,tq.jsx)("span",{children:i("element.delete.confirmation.text")}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await u(e,()=>{null==n||n()})}})},isLoading:l||s||c}},Lu=(0,tG.createContext)(void 0),Lm=e=>{let{children:t}=e,[i,n]=(0,tG.useState)(void 0),[r,a]=(0,tG.useState)([]),{getPerspectiveById:l}=Lf(),o=async e=>{let t=await l(e);console.log("opening perspective",e,t),(0,tI.isNil)(t)||a(e=>e.findIndex(e=>e.id===t.id)>=0?(n(t.id),e):(n(t.id),[...e,t]))},s=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},d=(0,tG.useMemo)(()=>({activeTabId:i,setActiveTabId:n,perspectives:r,setPerspectives:a,openPerspective:o,closePerspective:s}),[i,r]);return(0,tq.jsx)(Lu.Provider,{value:d,children:t})};var Lp=i(154);let Lg=()=>{let e=(0,tG.useContext)(Lu);if(void 0===e)throw Error("usePerspectiveEditorContext must be used within a PerspectiveEditorProvider");return e},Lh=(0,iR.createStyles)(e=>{let{css:t}=e;return{panel:t` - > p { - padding: 4px; - margin: 0; - } - `}}),Ly=()=>{let{t:e}=(0,iQ.useTranslation)(),{menuEntries:t,isLoading:i}=(()=>{let{data:e,isLoading:t}=(0,sO.usePerspectiveGetConfigByIdQuery)({perspectiveId:"studio_default_perspective"});return{menuEntries:(0,tG.useMemo)(()=>(null==e?void 0:e.contextPermissions)??{},[e]),isLoading:t}})(),{styles:n}=Lh(),r=(0,tG.useMemo)(()=>tc.kL.get(td.K.perspectivePermissionProviderRegistry).getPermissions().map(e=>{let i=e.permissions.filter(i=>{let n=t[e.key];return!(0,tI.isNil)(n)&&i.key in n||(console.error(`Permission ${e.key}.${i.key} is hidden because it is not in the menuEntries list.`),!1)});return{...e,permissions:i}}).filter(e=>e.permissions.length>0),[t]);return i?(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,theme:"fieldset",title:e("perspective-editor.form.main-nav-permission.title"),children:(0,tq.jsx)(sN.t,{})}):(0,tq.jsxs)(ap.s,{className:n.panel,gap:0,vertical:!0,children:[(0,tq.jsx)("p",{children:e("perspective-editor.form.main-nav-permission.title")}),(0,tq.jsx)(ap.s,{gap:8,vertical:!0,children:r.map(t=>(0,tq.jsx)(n6.L.Panel,{collapsed:!1,collapsible:!0,theme:"fieldset",title:e(`perspective-editor.form.main-nav-permission.category.${t.key}`),children:(0,tq.jsx)(ap.s,{gap:4,vertical:!0,children:t.permissions.map(i=>(0,tq.jsx)(tJ.lV.Item,{name:["contextPermissions",t.key,i.key],children:(0,tq.jsx)(sA.d,{labelRight:e(`perspective-editor.form.main-nav-permission.${t.key}.${i.key}`),size:"small"})},`${t.key}.${i.key}`))})},t.key))})]})};var Lv=i(27794);let Lb=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(tJ.lV.Item,{label:e("perspective-editor.form.general.name"),name:"name",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("perspective-editor.form.general.icon"),name:"icon",children:(0,tq.jsx)(Lv.N,{})})]})},Lx=(0,tG.createContext)(void 0),Lj=e=>{let{children:t,formChange:i,value:n}=e,[r,a]=(0,tG.useState)((null==n?void 0:n.widgets)??[]),[l,o]=(0,tG.useState)((null==n?void 0:n.expanded)??null),s=(e,t)=>{null==i||i({widgets:e,expanded:t})},d=e=>{if(r.some(t=>t.id===e.id))return;let t=[...r,e],i=0===r.length?e.id:l;a(t),o(i),s(t,i)},c=e=>{let t=r.filter(t=>t.id!==e),i=l===e?null:l;a(t),o(i),s(t,i)},f=e=>{let t=e.map(e=>r.find(t=>t.id===e.id)).filter(e=>void 0!==e);a(t),s(t,l)},u=e=>{let t=l===e?null:e;o(t),s(r,t)},m=(0,tG.useMemo)(()=>({widgetConfigs:r,expandedWidget:l,onAdd:d,onRemove:c,onReorder:f,setExpanded:u}),[r,l]);return(0,tq.jsx)(Lx.Provider,{value:m,children:t})},Lw=()=>{let e=(0,tG.useContext)(Lx);if(void 0===e)throw Error("useWidgetConfiguratorContext must be used within a WidgetConfiguratorProvider");return e},Lk=()=>{let{t:e}=(0,iQ.useTranslation)(),{onAdd:t}=Lw(),i=tc.kL.get(td.K["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]),{data:n,isFetching:r}=(0,sO.usePerspectiveWidgetGetConfigCollectionQuery)({skipWrapperWidgets:!1}),a=[...i.getMenuItems((null==n?void 0:n.items)??[],e=>{null==t||t(e)})];return(0,tq.jsx)(pu.m,{menu:{items:a},children:(0,tq.jsx)(az.$,{loading:r,type:"default",children:e("add")})})},LT=e=>{let{widget:t}=e;return(0,tI.isNil)(t)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(ap.s,{align:"center",gap:8,children:[(0,tq.jsx)(r9.I,{...t.icon}),(0,tq.jsx)("span",{children:t.name})]})},LS=e=>{let{widget:t,allowExpandControl:i}=e,{expandedWidget:n,setExpanded:r,onRemove:a}=Lw(),l=n===t.id,o=[(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{a(t.id)},theme:"secondary"},"remove")];return!0===i&&(o=[(0,tq.jsx)(lp.K,{icon:{value:l?"eye":"eye-off"},onClick:()=>{r(t.id)},theme:"secondary"},"expand"),...o]),(0,tq.jsx)(TM.e,{items:o,noSpacing:!0})},LC=e=>{let{allowExpandControl:t=!0}=e,[i,n]=(0,tG.useState)([]),{onReorder:r,widgetConfigs:a}=Lw();return(0,tG.useEffect)(()=>{n(a.map((e,i)=>({id:e.id,sortable:!0,renderRightToolbar:(0,tq.jsx)(LS,{allowExpandControl:t,widget:e}),children:(0,tq.jsx)(LT,{widget:e})})))},[a]),(0,tq.jsx)(SK.N,{items:i,onItemsChange:r,sortable:!0})},LD=e=>{let{label:t,value:i,onChange:n,allowExpandControl:r=!0,"data-testid":a}=e;return(0,tq.jsx)(Lj,{formChange:n,value:i,children:(0,tq.jsx)(f_.Z,{className:"w-full","data-testid":a,title:(0,tq.jsxs)(ni.Flex,{align:"center",gap:8,children:[(0,tq.jsx)("span",{children:t}),(0,tq.jsx)(Lk,{})]}),children:(0,tq.jsx)(LC,{allowExpandControl:r})})})},LI=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(ap.s,{"data-testid":"widget-configurator",gap:10,children:[(0,tq.jsx)(tJ.lV.Item,{name:"widgetsLeft",style:{flexGrow:1},children:(0,tq.jsx)(LD,{"data-testid":"widget-config-left",label:e("perspective-editor.system-widgets.left")})}),(0,tq.jsx)(tJ.lV.Item,{name:"widgetsBottom",style:{flexGrow:1},children:(0,tq.jsx)(LD,{allowExpandControl:!1,"data-testid":"widget-config-bottom",label:e("perspective-editor.system-widgets.bottom")})}),(0,tq.jsx)(tJ.lV.Item,{name:"widgetsRight",style:{flexGrow:1},children:(0,tq.jsx)(LD,{"data-testid":"widget-config-right",label:e("perspective-editor.system-widgets.right")})})]})},LM=(0,iR.createStyles)(e=>{let{css:t}=e;return{panel:t` - > p { - padding: 4px; - margin: 0; - } - `}}),LL=()=>{let{t:e}=(0,iQ.useTranslation)(),{styles:t}=LM();return(0,tq.jsxs)(ap.s,{className:t.panel,gap:0,vertical:!0,children:[(0,tq.jsx)("p",{children:e("perspective-editor.form.general.widget-configuration")}),(0,tq.jsx)(LI,{})]})},LF=e=>{let{perspective:t}=e,{t:i}=(0,iQ.useTranslation)(),{updatePerspective:n,removeWithConfirmation:r,isLoading:a}=Lf(),{setPerspectives:l,closePerspective:o}=Lg(),[s]=tJ.lV.useForm(),d={...t,widgetsLeft:{widgets:t.widgetsLeft,expanded:t.expandedLeft},widgetsRight:{widgets:t.widgetsRight,expanded:t.expandedRight},widgetsBottom:{widgets:t.widgetsBottom,expanded:null}},c=t.isWriteable;return(0,tq.jsx)(n6.L,{formProps:{form:s,initialValues:d,onFinish:async e=>{let{widgetsLeft:i,widgetsRight:r,widgetsBottom:a,...l}=e,o={...l,widgetsLeft:Object.fromEntries(i.widgets.map(e=>[e.id,e.widgetType])),expandedLeft:i.expanded,widgetsRight:Object.fromEntries(r.widgets.map(e=>[e.id,e.widgetType])),expandedRight:r.expanded,widgetsBottom:Object.fromEntries(a.widgets.map(e=>[e.id,e.widgetType]))};await n(t.id,o)}},children:(0,tq.jsxs)(ap.s,{className:"absolute-stretch",justify:"space-between",vertical:!0,children:[(0,tq.jsxs)(uE.U,{padded:!0,padding:{x:"small",y:"none"},children:[(0,tq.jsx)(Lb,{}),(0,tq.jsx)(LL,{}),(0,tq.jsx)(Ly,{})]}),(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)(lp.K,{"data-testid":"perspective-form-refresh-button",disabled:a,icon:{value:"refresh"},onClick:()=>{s.resetFields(),s.setFieldsValue(d)},title:i("refresh")}),(0,tq.jsx)(iN.m,{title:c?"":i("config_not_writeable"),children:(0,tq.jsx)(lp.K,{"data-testid":"perspective-form-delete-button",disabled:a||!c,icon:{value:"trash"},onClick:()=>{r(t.id,()=>{o(t.id),l(e=>e.filter(e=>e.id!==t.id))})},title:i("delete")})})]}),(0,tq.jsx)(iN.m,{title:c?"":i("config_not_writeable"),children:(0,tq.jsx)(az.$,{"data-testid":"perspective-form-save-button",disabled:!c,htmlType:"submit",loading:a,type:"primary",children:i("save")})})]})]})})},LE=e=>{let{id:t}=e,{perspectives:i}=Lg(),n=i.find(e=>e.id===t);return void 0===n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(LF,{perspective:n})},LP=()=>{let{perspectives:e,activeTabId:t,setActiveTabId:i,closePerspective:n}=Lg();return(0,tq.jsx)(ni.Tabs,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.name,children:(0,tq.jsx)(LE,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},LA=()=>{let{t:e}=(0,iQ.useTranslation)(),[t,i]=(0,tG.useState)(""),[n,r]=(0,tG.useState)([]),{openPerspective:a}=Lg(),{createPerspective:l}=Lf(),{data:o,isLoading:s,isFetching:d,refetch:c}=(0,sO.usePerspectiveGetConfigCollectionQuery)(),f=e=>[...e].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>({title:e.name,key:e.id,icon:(0,tq.jsx)(ni.Icon,{type:e.icon.type,value:e.icon.value})}));return(0,tG.useEffect)(()=>{(0,tI.isUndefined)(o)&&r([]),(0,tI.isUndefined)(o)||r(f(o.items))},[o]),(0,tq.jsx)(ni.ContentLayout,{renderToolbar:(0,tq.jsxs)(ni.Toolbar,{justify:"space-between",children:[(0,tq.jsx)(ni.IconButton,{"data-testid":"perspective-tree-refresh-button",icon:{value:"refresh"},loading:s||d,onClick:async()=>{await c()},title:e("refresh")}),(0,tq.jsx)(ni.IconTextButton,{"data-testid":"perspective-tree-create-button",disabled:s||d,icon:{value:"new"},loading:s||d,onClick:async()=>{l()},children:e("toolbar.new")})]}),children:(0,tq.jsxs)(ni.Content,{loading:s||d,padded:!0,children:[(0,tq.jsx)(ni.SearchInput,{onChange:e=>{i(e.target.value)},onClear:()=>{i(""),(0,tI.isUndefined)(o)||r(f(o.items))},onSearch:e=>{if(0===e.length){(0,tI.isUndefined)(o)||r(f(o.items));return}(0,tI.isUndefined)(o)||r(f(o.items.filter(t=>!(0,tI.isNil)(t.name)&&t.name.toLowerCase().includes(e.toLowerCase()))))},value:t,withoutAddon:!0}),(0,tq.jsx)(ni.TreeElement,{hasRoot:!1,onSelected:e=>{a(e)},treeData:n})]})})},LN=()=>{let e={id:"widget-editor.perspective-editor.sidebar",minSize:170,children:[(0,tq.jsx)(LA,{},"widget-editor.perspective-editor.sidebar")]},t={id:"widget-editor.perspective-editor.main",minSize:600,children:[(0,tq.jsx)(LP,{},"widget-editor.perspective-editor.main.detailTab")]};return(0,tq.jsx)(Lp.v,{leftItem:e,rightItem:t})},LR=()=>(0,tq.jsx)(Lm,{children:(0,tq.jsx)(LN,{})});class LV{registerProvider(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this.providers.push({provider:e,priority:t}),this.providers.sort((e,t)=>t.priority-e.priority)}getPermissions(){let e=new Map,t=[];for(let{provider:i}of this.providers)for(let n of i.getPermissions()){e.has(n.key)||(e.set(n.key,{...n,permissions:[]}),t.push(n.key));let i=e.get(n.key);for(let e of n.permissions)null==i.permissions.find(t=>t.key===e.key)&&i.permissions.push(e)}return t.map(t=>e.get(t))}constructor(){this.providers=[]}}LV=(0,tw.Cg)([(0,tk.injectable)()],LV);class Lz{getPermissions(){let e=tc.kL.get(td.K.mainNavRegistry).getMainNavTree(),t=[],i=e=>{(0,tI.isNil)(e.perspectivePermissionHide)||t.push(e.perspectivePermissionHide),(0,tI.isNil)(e.perspectivePermission)||t.push(e.perspectivePermission),(0,tI.isNil)(e.children)||e.children.forEach(e=>{i(e)})};e.forEach(e=>{i(e)});let n=new Map,r=[];return t.forEach(e=>{let t=e.split(".");if(t.length<2)return;let i=t[0],a=t[1];n.has(i)||(n.set(i,{key:i,permissions:[]}),r.push(i));let l=n.get(i);null==l.permissions.find(e=>e.key===a)&&l.permissions.push({key:a})}),r.map(e=>n.get(e))}}Lz=(0,tw.Cg)([(0,tk.injectable)()],Lz);class LB{getPermissions(){let[e,t]=pk.d.SearchHidden.split(".");return[{key:e,permissions:[{key:t}]}]}}LB=(0,tw.Cg)([(0,tk.injectable)()],LB),ts.s.registerModule({onInit:()=>{tc.kL.bind(td.K.perspectivePermissionProviderRegistry).to(LV).inSingletonScope();let e=tc.kL.get(td.K.perspectivePermissionProviderRegistry);e.registerProvider(new Lz,100),e.registerProvider(new LB,50),tc.kL.get(td.K.widgetManager).registerWidget({name:"perspective-editor",component:LR}),tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"System/Perspective-Editor",label:"navigation.widget-editor.perspective-editor",order:400,dividerBottom:!0,className:"item-style-modifier",permission:pw.F.PerspectiveEditor,perspectivePermission:pk.d.PerspectiveEditor,widgetConfig:{name:"perspectiveEditor",id:"perspective-editor",component:"perspective-editor",config:{translationKey:"widget.widget-editor.perspective-editor",icon:{type:"name",value:"book-open-01"}}}})}});let LO=()=>{let e=(0,uk.jL)(),t=(0,aB.Vl)(),{t:i}=(0,iQ.useTranslation)(),{success:n}=(0,uI.J)(),[r,{isLoading:a}]=(0,sO.usePerspectiveWidgetCreateMutation)(),[l,{isLoading:o}]=(0,sO.usePerspectiveWidgetDeleteMutation)(),[s,{isLoading:d}]=(0,sO.usePerspectiveWidgetUpdateConfigByIdMutation)(),c=(0,tG.useRef)(i);c.current=i;let f=(0,tG.useRef)(n);f.current=n;let u=(0,tG.useRef)(t);u.current=t;let m=(0,tG.useCallback)(async(e,t,i)=>{let n=l({widgetId:e,widgetType:t});try{let e=await n;if(!(0,tI.isUndefined)(e.error))return void(0,iX.Ay)(new iX.hD(e.error));null==i||i(),f.current(c.current("widget-editor.delete.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to delete widget"))}},[l]),p=(0,tG.useCallback)(async(e,t,i)=>{let n=r({widgetType:t,body:{data:{name:e}}});try{let t=await n;void 0!==t.error&&(0,iX.Ay)(new iX.hD(t.error)),null==i||i(e),f.current(c.current("widget-editor.create.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to create new widget."))}},[r]),g=(0,tG.useCallback)(async(t,i)=>{try{let{data:n,isError:r,error:a}=await e(sO.api.endpoints.perspectiveWidgetGetConfigById.initiate({widgetId:t,widgetType:i},{forceRefetch:!0}));if(!(0,tI.isUndefined)(n)&&r)return void(0,iX.Ay)(new iX.hD(a));return null==n?void 0:n.data}catch{(0,iX.Ay)(new iX.$g('Failed to load widget data of widget "'+t+'" with type "'+i+'".'))}},[e]),h=(0,tG.useCallback)(async(e,t,i,n)=>{var r;let a=i.classes??void 0,l=s({widgetId:e,widgetType:t,body:{data:{...i,rootFolder:(null==(r=i.rootFolder)?void 0:r.fullPath)??"/",classes:(0,tI.isUndefined)(a)?void 0:Object.keys(a).filter(e=>!0===a[e])}}});try{let e=await l;if(void 0!==e.error){null==n||n(i),(0,iX.Ay)(new iX.hD(e.error));return}null==n||n(i),f.current(c.current("widget-editor.update.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to create new perspective.")),null==n||n(i)}},[s]);return{createWidget:p,getWidgetById:g,updateWidget:h,removeWithConfirmation:(0,tG.useCallback)((e,t,i)=>{u.current.confirm({title:c.current("element.delete.confirmation.title"),content:(0,tq.jsxs)("span",{children:[c.current("element.delete.confirmation.text")," "]}),okText:c.current("element.delete.confirmation.ok"),onOk:async()=>{await m(e,t,()=>{null==i||i()})}})},[m]),isLoading:a||o||d}},LK=e=>{let{t}=(0,iQ.useTranslation)(),i=iv.container.get(iv.serviceIds["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).getDynamicTypes();return(0,tq.jsx)(t8.l,{...e,options:i.map(e=>({label:t(`widget-editor.create-form.widgetType.${e.name}`),value:e.id}))})};var L_=((b=L_||{}).ElementTree="element_tree",b);let LH=e=>{let{form:t,initialValues:i,inputRef:n,onPressEnter:r}=e,{t:a}=(0,iQ.useTranslation)();return(0,tq.jsxs)(tJ.lV,{form:t,initialValues:{widgetType:L_.ElementTree,...i},layout:"vertical",children:[(0,tq.jsx)(tJ.lV.Item,{label:a("widget-editor.create-form.name"),name:"name",rules:[{required:!0,message:a("widget-editor.create-form.name.required")}],children:(0,tq.jsx)(ni.Input,{onPressEnter:r,ref:n})}),(0,tq.jsx)(tJ.lV.Item,{label:a("widget-editor.create-form.widgetType"),name:"widgetType",children:(0,tq.jsx)(LK,{})})]})},L$=(0,tG.createContext)(void 0),LW=(0,tG.createContext)(void 0),Lq=(0,tG.createContext)(void 0),LG=e=>{let{children:t}=e,[i,n]=(0,tG.useState)(void 0),[r,a]=(0,tG.useState)([]),{getWidgetById:l,createWidget:o,isLoading:s}=LO(),[d,c]=(0,tG.useState)(!1),{t:f}=(0,iQ.useTranslation)(),[u]=ni.Form.useForm(),m=tU().useRef(null),p=(0,tG.useRef)(o);p.current=o;let g=(0,tG.useCallback)(async(e,t)=>{let i=await l(e,t);void 0!==i&&a(e=>e.findIndex(e=>e.id===i.id)>=0?(n(i.id),e):(n(i.id),[...e,i]))},[l]),h=(0,tG.useCallback)(e=>{a(t=>{let i=t.filter(t=>t.id!==e);return n(t=>t===e?i.length>0?i[0].id:void 0:t),i})},[]),y=(0,tG.useCallback)(()=>{c(!0)},[]),v=async()=>{await u.validateFields().then(async()=>{let{name:e,widgetType:t}=u.getFieldsValue();await p.current(e,t,()=>{c(!1),u.resetFields()})})},b=(0,tG.useMemo)(()=>({activeTabId:i,setActiveTabId:n}),[i]),x=(0,tG.useMemo)(()=>({widgets:r}),[r]),j=(0,tG.useMemo)(()=>({setWidgets:a,openWidget:g,closeWidget:h,createWidget:y}),[g,h,y]);return(0,tq.jsx)(Lq.Provider,{value:j,children:(0,tq.jsx)(LW.Provider,{value:x,children:(0,tq.jsxs)(L$.Provider,{value:b,children:[t,(0,tq.jsx)(ni.Modal,{afterOpenChange:e=>{if(e){var t;null==(t=m.current)||t.focus()}},okButtonProps:{loading:s},okText:f("widget-editor.create-modal.create"),onCancel:()=>{c(!1)},onOk:async()=>{await v()},open:d,size:"M",children:(0,tq.jsx)(LH,{form:u,inputRef:m,onPressEnter:()=>{v()}})})]})})})},LU=()=>{let e=(0,tG.useContext)(Lq);if(void 0===e)throw Error("useWidgetEditorActions must be used within a WidgetEditorProvider");return e};var LQ=i(72324);let LJ=()=>{let{t:e}=(0,iQ.useTranslation)(),[t,i]=(0,tG.useState)(""),[n,r]=(0,tG.useState)([]),{openWidget:a,createWidget:l}=LU(),{data:o,isFetching:s,isLoading:d,refetch:c}=(0,LQ.usePerspectiveWidgetGetConfigCollectionQuery)({skipWrapperWidgets:!0}),f=(0,tG.useCallback)(e=>[...e].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>({title:e.name,key:e.id,icon:(0,tq.jsx)(ni.Icon,{type:e.icon.type,value:e.icon.value})})),[]);(0,tG.useEffect)(()=>{(0,tI.isUndefined)(o)&&r([]),(0,tI.isUndefined)(o)||r(f(o.items))},[o,f]);let u=(0,tG.useCallback)(e=>{if(0===e.length){(0,tI.isUndefined)(o)||r(f(o.items));return}(0,tI.isUndefined)(o)||r(f(o.items.filter(t=>!(0,tI.isNil)(t.name)&&t.name.toLowerCase().includes(e.toLowerCase()))))},[o,f]),m=(0,tG.useCallback)(()=>{i(""),(0,tI.isUndefined)(o)||r(f(o.items))},[o,f]),p=(0,tG.useCallback)(async()=>{await c()},[c]),g=(0,tG.useCallback)(e=>{let t=null==o?void 0:o.items.find(t=>(0,tI.isString)(t.id)&&(0,tI.isString)(e)&&t.id===e);void 0!==t&&a(t.id,t.widgetType)},[o,a]),h=(0,tG.useCallback)(e=>{i(e.target.value)},[]),y=(0,tG.useMemo)(()=>(0,tq.jsxs)(ni.Toolbar,{justify:"space-between",children:[(0,tq.jsx)(ni.IconButton,{"data-testid":"widget-tree-refresh-button",icon:{value:"refresh"},loading:d||s,onClick:p,title:e("refresh")}),(0,tq.jsx)(ni.IconTextButton,{"data-testid":"widget-tree-create-button",icon:{value:"new"},loading:d||s,onClick:l,children:e("toolbar.new")})]}),[d,s,p,l,e]);return(0,tq.jsx)(ni.ContentLayout,{renderToolbar:y,children:(0,tq.jsxs)(ni.Content,{loading:d||s,padded:!0,children:[(0,tq.jsx)(ni.SearchInput,{onChange:h,onClear:m,onSearch:u,value:t,withoutAddon:!0}),(0,tq.jsx)(ni.TreeElement,{hasRoot:!1,onSelected:g,treeData:n})]})})},LZ=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(n6.L.Panel,{collapsed:!1,collapsible:!0,title:e("widget-editor.widget-form.general.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("widget-editor.widget-form.general.name"),name:"name",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("widget-editor.widget-form.general.icon"),name:"icon",children:(0,tq.jsx)(Lv.N,{})})]})},LY=e=>(0,tI.isUndefined)(e)||!(0,tI.isArray)(e)?{}:e.reduce((e,t)=>(e[t]=!0,e),{}),LX=e=>{let{form:t}=e,{t:i}=(0,iQ.useTranslation)(),{form:n,widget:r}=sQ(),{setWidgets:a,closeWidget:l}=LU(),{removeWithConfirmation:o,updateWidget:s,getWidgetById:d,isLoading:c}=LO(),f=!1!==r.isWriteable,u=(0,tG.useCallback)(async e=>{await s(r.id,r.widgetType,e)},[r.id,r.widgetType,s]),m=(0,tG.useMemo)(()=>({...r,classes:LY(r.classes)}),[r]),p=(0,tG.useMemo)(()=>({form:n,layout:"vertical",initialValues:m,onFinish:u}),[n,m,u]);return(0,tq.jsx)(n6.L,{formProps:p,children:(0,tq.jsxs)(ap.s,{className:"absolute-stretch",justify:"space-between",vertical:!0,children:[(0,tq.jsxs)(uE.U,{padded:!0,padding:{x:"small",y:"none"},children:[(0,tq.jsx)(LZ,{}),(0,tq.jsx)(t,{})]}),(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)(lp.K,{"data-testid":"widget-form-refresh-button",disabled:c,icon:{value:"refresh"},onClick:async()=>{let e=await d(r.id,r.widgetType);void 0!==e&&(a(t=>t.map(t=>t.id===r.id?e:t)),n.resetFields(["classes"]),n.setFieldsValue({...e,classes:LY(e.classes)}))},title:i("refresh")}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(lp.K,{"data-testid":"widget-form-delete-button",disabled:c||!f,icon:{value:"trash"},onClick:()=>{o(r.id,r.widgetType,()=>{l(r.id),a(e=>e.filter(e=>e.id!==r.id))})},title:i("delete")})})]}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(az.$,{"data-testid":"widget-form-save-button",disabled:!f,htmlType:"submit",loading:c,type:"primary",children:i("save")})})]})]})})},L0=(0,tG.memo)(e=>{let{widget:t}=e,{form:i}=iv.container.get("DynamicTypes/WidgetEditor/WidgetTypeRegistry").getDynamicType(t.widgetType);return(0,tq.jsx)(sU,{widget:t,children:(0,tq.jsx)(LX,{form:i})})},(e,t)=>e.widget===t.widget),L1=()=>{let{widgets:e}=(()=>{let e=(0,tG.useContext)(LW);if(void 0===e)throw Error("useWidgetEditorData must be used within a WidgetEditorProvider");return e})(),{closeWidget:t}=LU(),{activeTabId:i,setActiveTabId:n}=(()=>{let e=(0,tG.useContext)(L$);if(void 0===e)throw Error("useActiveTabContext must be used within a WidgetEditorProvider");return e})(),r=(0,tG.useMemo)(()=>e.map(e=>({key:e.id,label:e.name,closable:!0,children:(0,tq.jsx)(L0,{widget:e})})),[e]),a=(0,tG.useCallback)(e=>{n(e)},[n]),l=(0,tG.useCallback)(e=>{t(e)},[t]);return(0,tq.jsx)(ge.t,{activeKey:i,fullHeight:!0,items:r,onChange:a,onClose:l})},L2=()=>{let e=(0,tG.useMemo)(()=>({id:"widget-editor.widget-editor.sidebar",minSize:170,children:[(0,tq.jsx)(LJ,{},"widget-editor.widget-editor.sidebar")]}),[]),t=(0,tG.useMemo)(()=>({id:"widget-editor.widget-editor.main",minSize:600,children:[(0,tq.jsx)(L1,{},"widget-editor.widget-editor.main.detailTab")]}),[]);return(0,tq.jsx)(Lp.v,{leftItem:e,rightItem:t})},L3=()=>(0,tq.jsx)(LG,{children:(0,tq.jsx)(L2,{})});ts.s.registerModule({onInit:()=>{tc.kL.get(iv.serviceIds.widgetManager).registerWidget({name:"widget-editor",component:L3}),tc.kL.get(iv.serviceIds.mainNavRegistry).registerMainNavItem({path:"System/Widget-Editor",label:"navigation.widget-editor.widget-editor",order:300,className:"item-style-modifier",permission:pw.F.WidgetEditor,perspectivePermission:pk.d.WidgetEditor,widgetConfig:{name:"widgetEditor",id:"widget-editor",component:"widget-editor",config:{translationKey:"widget.widget-editor.widget-editor",icon:{type:"name",value:"layout-grid-02"}}}}),tc.kL.get(iv.serviceIds["DynamicTypes/WidgetEditor/WidgetTypeRegistry"]).registerDynamicType(tc.kL.get(iv.serviceIds["DynamicTypes/WidgetEditor/ElementTree"]));let e=tc.kL.get(iv.serviceIds.elementTreeWidgetPermissionRegistry);e.registerItem("asset",{key:"hideAdd",priority:100}),e.registerItem("asset",{key:"addUpload",priority:200}),e.registerItem("asset",{key:"addUploadZip",priority:300}),e.registerItem("asset",{key:"addFolder",priority:400}),e.registerItem("asset",{key:"rename",priority:500}),e.registerItem("asset",{key:"copy",priority:600}),e.registerItem("asset",{key:"cut",priority:700}),e.registerItem("asset",{key:"paste",priority:800}),e.registerItem("asset",{key:"pasteCut",priority:900}),e.registerItem("asset",{key:"delete",priority:1e3}),e.registerItem("asset",{key:"uploadNewVersion",priority:1100}),e.registerItem("asset",{key:"lock",priority:1200}),e.registerItem("asset",{key:"lockAndPropagate",priority:1300}),e.registerItem("asset",{key:"unlock",priority:1400}),e.registerItem("asset",{key:"unlockAndPropagate",priority:1500}),e.registerItem("data-object",{key:"addFolder",priority:100}),e.registerItem("data-object",{key:"addObject",priority:200}),e.registerItem("data-object",{key:"addVariant",priority:300}),e.registerItem("data-object",{key:"rename",priority:400}),e.registerItem("data-object",{key:"copy",priority:500}),e.registerItem("data-object",{key:"cut",priority:600}),e.registerItem("data-object",{key:"paste",priority:700}),e.registerItem("data-object",{key:"publish",priority:800}),e.registerItem("data-object",{key:"unpublish",priority:900}),e.registerItem("data-object",{key:"delete",priority:1e3}),e.registerItem("data-object",{key:"refresh",priority:1100}),e.registerItem("data-object",{key:"changeChildrenSortBy",priority:1200}),e.registerItem("data-object",{key:"lock",priority:1300}),e.registerItem("data-object",{key:"lockAndPropagate",priority:1400}),e.registerItem("data-object",{key:"unlock",priority:1500}),e.registerItem("data-object",{key:"unlockAndPropagate",priority:1600}),e.registerItem("document",{key:"addFolder",priority:100}),e.registerItem("document",{key:"addPage",priority:200}),e.registerItem("document",{key:"addSnippet",priority:300}),e.registerItem("document",{key:"addLink",priority:400}),e.registerItem("document",{key:"addEmail",priority:500}),e.registerItem("document",{key:"addHardlink",priority:600}),e.registerItem("document",{key:"rename",priority:700}),e.registerItem("document",{key:"copy",priority:800}),e.registerItem("document",{key:"paste",priority:900}),e.registerItem("document",{key:"cut",priority:1e3}),e.registerItem("document",{key:"pasteCut",priority:1100}),e.registerItem("document",{key:"publish",priority:1200}),e.registerItem("document",{key:"unpublish",priority:1300}),e.registerItem("document",{key:"delete",priority:1400}),e.registerItem("document",{key:"open",priority:1500}),e.registerItem("document",{key:"refresh",priority:1600}),e.registerItem("document",{key:"lock",priority:1700}),e.registerItem("document",{key:"lockAndPropagate",priority:1800}),e.registerItem("document",{key:"unlock",priority:1900}),e.registerItem("document",{key:"unlockAndPropagate",priority:2e3})}});var L6=i(18228);ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.widgetRestorerRegistry).register(L6.Z),tc.kL.get(td.K.widgetManager).registerWidget({name:"iframe",component:fH.C})}});let L4=()=>{let e=(0,aB.Vl)(),{t}=(0,iQ.useTranslation)(),[i]=(0,uM.j_)(),[n]=(0,uM.dc)(),{success:r}=(0,uI.J)(),a=async(e,n)=>{let a=i({emailAddressParameter:{email:e}});try{let e=await a;(0,tI.isUndefined)(e.error)||(0,uj.trackError)(new uj.ApiError(e.error)),null==n||n(),r(t("email-blocklist.add.email.success"))}catch(e){(0,uj.trackError)(new uj.GeneralError("Failed to add email to blocklist"))}};return{addNewEmail:async i=>{e.input({title:t("email-blocklist.add.label"),label:t("email-blocklist.add.email-address.label"),rule:{required:!0,type:"email",message:t("email-blocklist.add.validation")},onOk:async e=>{await a(e,()=>{null==i||i(e)})}})},removeEmail:async(e,t)=>{let i=n({email:e});try{let e=await i;void 0!==e.error&&(0,uj.trackError)(new uj.ApiError(e.error)),null==t||t()}catch(e){(0,uj.trackError)(new uj.GeneralError("Failed to remove email from blocklist"))}}}},L5=e=>{let{entry:t}=e,{t:i}=(0,iQ.useTranslation)(),{removeEmail:n}=L4(),[r,a]=(0,tG.useState)(!1);return(0,tq.jsx)(f_.Z,{contentPadding:{x:"small",y:"mini"},children:(0,tq.jsxs)(ap.s,{align:"center",justify:"space-between",children:[(0,tq.jsx)("span",{children:t.email}),(0,tq.jsxs)(ig.Space,{children:[(0,tq.jsx)("span",{children:(0,af.formatDateTime)({timestamp:t.modificationDate,dateStyle:"short",timeStyle:"short"})}),(0,tq.jsx)(ni.IconButton,{"aria-label":i("aria.email-blocklist.remove.email"),icon:r?{value:"spinner"}:{value:"trash"},loading:r,onClick:()=>{a(!0),n(t.email)},type:"link"})]})]})})},L7=()=>{var e;let{t}=(0,iQ.useTranslation)(),i=(0,uk.jL)(),{addNewEmail:n}=L4(),[r,a]=(0,tG.useState)(1),[l,o]=(0,tG.useState)(20),[s,d]=(0,tG.useState)(!1),{data:c,isLoading:f,isFetching:u}=(0,uM.nD)({page:r,pageSize:l}),m=(null==c?void 0:c.totalItems)??0;return(0,tG.useEffect)(()=>{u||d(!1)},[u]),(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{justify:"space-between",theme:"secondary",children:[(0,tq.jsx)(lp.K,{disabled:s||f,icon:{value:"refresh"},onClick:()=>{d(!0),i(uw.FH.util.invalidateTags(pR.invalidatingTags.EMAIL_BLOCKLIST()))}}),(0,tq.jsx)(ni.Pagination,{current:r,defaultPageSize:l,onChange:(e,t)=>{a(e),o(t)},showSizeChanger:!0,showTotal:e=>t("pagination.show-total",{total:e}),total:m})]}),renderTopBar:(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{icon:(0,tq.jsx)(ni.Icon,{value:"users-x"}),children:t("widget.email-blocklist")}),(0,tq.jsx)(m4.J,{disabled:s||f,icon:{value:"new"},onClick:async()=>{await n(()=>{d(!1)})},children:t("email-blocklist.new")})]})}),children:(0,tq.jsx)(uE.U,{loading:s,none:(0,tI.isUndefined)(null==c?void 0:c.items)||0===c.items.length,padded:!0,children:(null==c?void 0:c.items)!==void 0&&(null==c||null==(e=c.items)?void 0:e.length)>0?c.items.map(e=>(0,tq.jsx)(L5,{entry:e},e.email)):""})})},L8=e=>{let{email:t,...i}=e,{t:n}=(0,iQ.useTranslation)(),[r]=tJ.lV.useForm(),[a,l]=(0,tG.useState)(!1),{forward:o}=uL(),s=(0,uk.jL)(),d=async e=>{l(!0),await o(t.id,e.to,()=>{s(uw.FH.util.invalidateTags(uT.qN.EMAIL_LOG()))}),i.setOpen(!1),r.resetFields(),l(!1)};return(0,tq.jsx)(pC.a,{okButtonProps:{loading:a},okText:n("email-log.send.label"),onCancel:()=>{i.setOpen(!1),r.resetFields()},onOk:()=>{r.submit()},open:i.open,size:"L",title:(0,tq.jsx)(p8.w,{iconName:"flip-forward",children:n("email-log.forward.label")}),children:(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsxs)(tJ.lV,{form:r,layout:"vertical",onFinish:d,children:[(0,tq.jsx)(tJ.lV.Item,{label:n("email-log.subject"),children:(0,tq.jsx)(aR.p,{disabled:!0,value:t.subject})}),(0,tq.jsx)(tJ.lV.Item,{label:n("widget.email-log.from"),children:(0,tq.jsx)(aR.p,{disabled:!0,value:t.from})}),(0,tq.jsx)(tJ.lV.Item,{label:n("widget.email-log.to"),name:"to",rules:[{type:"email",required:!0,message:n("email-blocklist.add.validation")}],children:(0,tq.jsx)(aR.p,{"data-testid":"forward-modal-to-input"})})]}),(0,tq.jsx)(uR,{height:300,id:t.id})]})})},L9=e=>{let{email:t}=e,{t:i}=(0,iQ.useTranslation)(),{resendWithConfirmation:n,removeWithConfirmation:r}=uL(),[a,l]=(0,tG.useState)(!1),{data:o}=(0,uM.et)({id:t.id}),s=(0,uk.jL)();return(0,tq.jsxs)(ap.s,{className:"email-log-content__header",justify:"space-between",children:[(0,tq.jsxs)(ap.s,{vertical:!0,children:[(0,tq.jsx)(ni.Text,{type:"secondary",children:`${i("widget.email-log.from")}: ${t.from}`}),(0,tq.jsxs)(ap.s,{align:"center",gap:"mini",children:[(0,tq.jsx)(ni.Text,{type:"secondary",children:`${i("widget.email-log.to")}: ${t.from}`}),!(0,tI.isNil)(null==o?void 0:o.cc)&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ig.Divider,{type:"vertical"}),(0,tq.jsx)(ni.Text,{type:"secondary",children:`${i("widget.email-log.cc")}: ${o.cc}`})]}),!(0,tI.isNil)(null==o?void 0:o.bcc)&&(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ig.Divider,{type:"vertical"}),(0,tq.jsx)(ni.Text,{type:"secondary",children:`${i("widget.email-log.bcc")}: ${o.bcc}`})]})]})]}),(0,tq.jsxs)("div",{children:[(0,tq.jsx)(iN.m,{title:i("email-log.tooltip.resend"),children:(0,tq.jsx)(lp.K,{"data-testid":`email-log-resend-button-${t.id}`,icon:{value:"vector"},onClick:()=>{n(t.id,()=>{s(uw.FH.util.invalidateTags(uT.qN.EMAIL_LOG()))})}})}),(0,tq.jsx)(iN.m,{title:i("email-log.tooltip.forward"),children:(0,tq.jsx)(lp.K,{"data-testid":`email-log-forward-button-${t.id}`,icon:{value:"flip-forward"},onClick:()=>{l(!0)}})}),(0,tq.jsx)(iN.m,{title:i("email-log.tooltip.delete"),children:(0,tq.jsx)(lp.K,{"data-testid":`email-log-delete-button-${t.id}`,icon:{value:"trash"},onClick:()=>{r(t.id,()=>{s(uw.FH.util.invalidateTags(uT.qN.EMAIL_LOG()))})}})})]}),(0,tq.jsx)(L8,{email:t,open:a,setOpen:l})]})},Fe=e=>{let{email:t}=e,{data:i,isLoading:n}=(0,uM.et)({id:t.id});return n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.Alert,{description:(null==i?void 0:i.error)??"",showIcon:!0,type:"error"})};var Ft=i(6492),Fi=i.n(Ft);let Fn=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{codeEditor:i` - max-height: 650px; - `}}),Fr=e=>{let{email:t}=e,{data:i,isLoading:n}=(0,uM.lF)({id:t.id}),{styles:r}=Fn();return(0,tq.jsx)(uE.U,{loading:n,none:(0,tI.isUndefined)(null==i?void 0:i.data)||0===i.data.length,children:(0,tq.jsx)(Fi(),{basicSetup:{lineNumbers:!0,syntaxHighlighting:!0,searchKeymap:!0},className:r.codeEditor,extensions:(0,kG.R)("html"),readOnly:!0,value:(null==i?void 0:i.data)??""})})},Fa=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{errorIcon:i` - color: ${t.colorError}; - `,divider:i` - border-color: ${t.colorTextSecondary}; - margin-left: 2px; - margin-right: 2px; - `}}),Fl=e=>{let{emails:t}=e,{t:i}=(0,iQ.useTranslation)(),{styles:n}=Fa(),r=t.map(e=>{let t;return t=[{label:i("widget.email-log.tab.text"),key:"text",children:(0,tq.jsx)(Fr,{email:e})},{label:i("widget.email-log.tab.html"),key:"html",children:(0,tq.jsx)(uR,{id:e.id})},{label:i("widget.email-log.tab.parameters"),key:"parameters",children:(0,tq.jsx)(uP,{id:e.id})}],{key:e.id.toString(),"data-testid":`email-log-entry-${e.id}`,label:(0,tq.jsxs)(ap.s,{align:"center",gap:"extra-small",children:[(0,tq.jsx)(r9.I,{value:"send-03"}),(0,tq.jsx)("span",{"data-testid":`email-log-subject-${e.id}`,children:e.subject})]}),subLabel:(0,tq.jsxs)(ap.s,{align:"center",gap:"mini",children:[(0,tq.jsx)("span",{children:`${i("widget.email-log.from")}: ${e.from}`}),(0,tq.jsx)(m1.c,{className:n.divider,type:"vertical"}),(0,tq.jsx)("span",{children:`${i("widget.email-log.to")}: ${e.to}`})]}),theme:e.hasError?"error":"default",subLabelPosition:"inline",extra:(0,tq.jsxs)(ap.s,{align:"center",gap:4,children:[e.hasError&&(0,tq.jsx)(r9.I,{className:n.errorIcon,value:"close-filled"}),(0,tq.jsx)("span",{children:(0,af.formatDateTime)({timestamp:e.sentDate,dateStyle:"short",timeStyle:"short"})})]}),children:(0,tq.jsxs)(ap.s,{className:"email-log-content","data-testid":`email-log-entry-content-${e.id}`,gap:"small",vertical:!0,children:[(0,tq.jsx)(L9,{email:e}),e.hasError&&(0,tq.jsx)(ap.s,{vertical:!0,children:(0,tq.jsx)(Fe,{email:e})}),(0,tq.jsx)(ge.t,{destroyInactiveTabPane:!0,items:t,noPadding:!0})]})}});return(0,tq.jsx)(ac.SD,{items:r})},Fo=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,uk.jL)(),[i,n]=(0,tG.useState)(1),[r,a]=(0,tG.useState)(20),[l,o]=(0,tG.useState)(!1),{data:s,isLoading:d,isFetching:c}=(0,uM.CH)({page:i,pageSize:r}),f=(null==s?void 0:s.totalItems)??0;return(0,tG.useEffect)(()=>{c||o(!1)},[c]),(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{justify:"space-between",theme:"secondary",children:[(0,tq.jsx)(lp.K,{"data-testid":"email-log-refresh-button",disabled:d||l,icon:{value:"refresh"},onClick:()=>{o(!0),t(uw.FH.util.invalidateTags(uT.qN.EMAIL_LOG()))}}),(0,tq.jsx)(po.d,{current:i,defaultPageSize:r,onChange:(e,t)=>{n(e),a(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:f})]}),renderTopBar:(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsx)(ap.s,{gap:"small",children:(0,tq.jsx)(pd.h,{children:e("widget.email-log")})})}),children:(0,tq.jsx)(uE.U,{"data-testid":"email-log-content",loading:d||l&&c,none:(0,tI.isUndefined)(null==s?void 0:s.items)||0===s.items.length,padded:!0,children:!(0,tI.isUndefined)(null==s?void 0:s.items)&&(0,tq.jsx)(Fl,{emails:s.items})})})};var Fs=i(5229);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.widgetManager);e.registerWidget({name:"email-blocklist",component:L7}),e.registerWidget({name:"email-log",component:Fo});let t=tc.kL.get(td.K.mainNavRegistry);t.registerMainNavItem({path:"ExperienceEcommerce/Email",label:"navigation.email",order:300,permission:pw.F.Emails,perspectivePermission:pk.d.Mails}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Sent-Emails",label:"navigation.email-log",order:100,className:"item-style-modifier",permission:pw.F.Emails,perspectivePermission:pk.d.Mails,widgetConfig:{name:"emailLog",id:"email-log",component:"email-log",config:{translationKey:"widget.email-log",icon:{type:"name",value:"mail-02"}}}}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Email-Blocklist",label:"navigation.email-blocklist",order:200,className:"item-style-modifier",permission:pw.F.Emails,perspectivePermission:pk.d.Mails,widgetConfig:{name:"EmailBlocklist",id:"email-blocklist",component:"email-blocklist",config:{translationKey:"widget.email-blocklist",icon:{type:"name",value:"users-x"}}}}),t.registerMainNavItem({path:"ExperienceEcommerce/Email/Send Test-Email",label:"navigation.test-email",order:300,className:"item-style-modifier",permission:pw.F.Emails,perspectivePermission:pk.d.Mails,useCustomMainNavItem:()=>{let{setIsOpen:e}=(()=>{let e=(0,tG.useContext)(Fs.w);if((0,tI.isNil)(e))throw Error("useSendTestEmailContext must be used within a SendTestEmailProvider");return e})();return{name:"SendTestEmail",onClick:()=>{e(!0)},icon:{type:"name",value:"users-x"}}}})}});var Fd=i(64860);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"QuickAccess/Open Asset",label:"navigation.open-asset",order:100,permission:pw.F.Assets,perspectivePermission:pk.d.OpenAsset,useCustomMainNavItem:()=>{let{open:e}=(0,Fd.Q)();return{name:"OpenAsset",onClick:()=>{e("asset")}}}}),e.registerMainNavItem({path:"QuickAccess/Open Data Object",label:"navigation.open-data-object",order:200,permission:pw.F.Objects,perspectivePermission:pk.d.OpenObject,useCustomMainNavItem:()=>{let{open:e}=(0,Fd.Q)();return{name:"OpenDataObject",onClick:()=>{e("data-object")}}}}),e.registerMainNavItem({path:"QuickAccess/Open Document",label:"navigation.open-document",dividerBottom:!0,order:300,permission:pw.F.Documents,perspectivePermission:pk.d.OpenDocument,useCustomMainNavItem:()=>{let{open:e}=(0,Fd.Q)();return{name:"OpenDocument",onClick:()=>{e("document")}}}})}});var Fc=i(16939);let Ff=()=>{let[e,{isLoading:t}]=(0,Fc.gu)(),[i,{isLoading:n}]=(0,Fc.nT)(),[r,{isLoading:a}]=(0,Fc.Xi)();return{createNewProperty:async()=>{try{let t=await e();if("data"in t)return{success:!0,data:t.data}}catch(e){(0,iX.Ay)(new iX.$g("Was not able to create Property"))}return{success:!1}},createLoading:t,deletePropertyById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch(e){return(0,iX.Ay)(new iX.$g("Was not able to delete Property")),{success:!1}}},deleteLoading:n,updatePropertyById:async(e,t)=>{try{let i=await r({id:e,updatePredefinedProperty:{name:t.name??"",description:t.description??"",key:t.key??"",type:t.type??"",data:t.data??"",config:t.config??"",ctype:t.ctype??"",inheritable:t.inheritable}});return{success:"data"in i}}catch(e){return(0,iX.Ay)(new iX.$g("Was not able to update Property")),{success:!1}}},updateLoading:a}};var Fu=((x={}).Text="text",x.Document="document",x.Asset="asset",x.Object="object",x.Boolean="bool",x.Select="select",x);let Fm=e=>{let{info:t,setPredefinedPropertyRows:i}=e,n=t.row.original.id,{deletePropertyById:r,deleteLoading:a}=Ff(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsxs)("div",{className:"properties-table--actions-column",children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"translate"},onClick:()=>{console.log("Open Translate View")},type:"link"}),(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})]})},Fp=e=>{let{predefinedPropertyRows:t,setPredefinedPropertyRows:i}=e,{t:n}=(0,iQ.useTranslation)(),{updatePropertyById:r}=Ff(),[a,l]=(0,tG.useState)([]),o=(0,cH.createColumnHelper)(),s=[o.accessor("name",{header:n("properties.columns.name"),meta:{editable:!0},size:200}),o.accessor("description",{header:n("properties.columns.description"),meta:{editable:!0},size:200}),o.accessor("key",{header:n("properties.columns.key"),meta:{editable:!0},size:200}),o.accessor("type",{header:n("properties.columns.type"),meta:{type:"select",editable:!0,config:{options:Object.values(Fu)}},size:100}),o.accessor("data",{header:n("properties.columns.data"),meta:{editable:!0},size:150}),o.accessor("config",{header:n("properties.columns.configuration"),meta:{editable:!0},size:150}),o.accessor("ctype",{header:n("properties.columns.content-type"),meta:{type:"select",editable:!0,config:{options:dR.allLegacyElementTypes}},size:110}),o.accessor("inheritable",{header:n("properties.columns.inheritable"),size:95,meta:{type:"checkbox",editable:!0,config:{align:"center"}}}),o.accessor("actions",{header:n("properties.columns.actions"),size:80,cell:e=>(0,tq.jsx)(Fm,{info:e,setPredefinedPropertyRows:i})})],d=async e=>{let{columnId:t,value:n,rowData:a}=e,o=a.rowId,s={...a,[t]:n};i(e=>e.map(e=>e.rowId===o?s:e)),l([{columnId:t,rowIndex:o}]);let{success:d}=await r(s.id,s);d?l([]):i(e=>e.map(e=>e.rowId===o?a:e))};return(0,tq.jsx)("div",{children:(0,tq.jsx)(ul.x,{autoWidth:!0,columns:s,data:t,enableSorting:!0,modifiedCells:a,onUpdateCellData:d,resizable:!0,setRowId:e=>e.rowId})})},Fg=()=>{let{createNewProperty:e,createLoading:t}=Ff(),[i,n]=(0,tG.useState)(""),r=(0,tG.useMemo)(()=>({filter:i}),[i]),{data:a,isLoading:l,isFetching:o,error:s,refetch:d}=(0,Fc.VC)(r),c=()=>{d().catch(()=>{(0,iX.Ay)(new iX.$g("Error while reloading"))})};(0,tG.useEffect)(()=>{c()},[]);let[f,u]=(0,tG.useState)([]),m=null==a?void 0:a.items,p=[...f].sort((e,t)=>t.creationDate-e.creationDate);(0,tG.useEffect)(()=>{(0,tI.isUndefined)(m)||u(m.map(e=>({...e,rowId:(0,af.uuid)()})))},[m]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(s)||(0,iX.Ay)(new iX.hD(s))},[s]);let g=async()=>{let{success:t,data:i}=await e();t&&void 0!==i&&u(e=>[{...i,rowId:(0,af.uuid)()},...e])};return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{theme:"secondary",children:(0,tq.jsx)(lp.K,{disabled:o,icon:{value:"refresh"},onClick:c})}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.predefined-properties")}),(0,tq.jsx)(ni.IconTextButton,{disabled:l||t,icon:{value:"new"},loading:t,onClick:g,children:(0,i6.t)("predefined-properties.new")})]}),(0,tq.jsx)(ni.SearchInput,{loading:o,onSearch:e=>{n(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tq.jsx)(uE.U,{loading:l||o,margin:{x:"extra-small",y:"none"},none:(0,tI.isUndefined)(m)||0===m.length,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(Fp,{predefinedPropertyRows:p,setPredefinedPropertyRows:u})})})})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/Predefined Properties",label:"navigation.predefined-properties",order:900,className:"item-style-modifier",permission:pw.F.PredefinedProperties,perspectivePermission:pk.d.PredefinedProperties,widgetConfig:{name:"Predefined Properties",id:"predefined-properties",component:"predefined-properties",config:{translationKey:"widget.predefined-properties",icon:{type:"name",value:"properties"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"predefined-properties",component:Fg})}});let Fh=()=>{let[e,{isLoading:t}]=(0,I0.zO)(),[i,{isLoading:n}]=(0,I0.Pp)(),[r,{isLoading:a}]=(0,I0.v2)(),l={docTypeAddParameters:{name:"New Document Type",type:"page"}};return{createNewDocumentType:async()=>{try{let t=await e(l);if((0,tI.isUndefined)(t.error)||(0,iX.Ay)(new iX.hD(t.error)),"data"in t)return{success:!0,data:t.data}}catch{(0,iX.Ay)(new iX.$g("Was not able to create DocumentType"))}return{success:!1}},createLoading:t,deleteDocumentTypeById:async e=>{try{let t=await i({id:e});return(0,tI.isUndefined)(t.error)||(0,iX.Ay)(new iX.hD(t.error)),{success:"data"in t}}catch{return(0,iX.Ay)(new iX.$g("Was not able to delete DocumentType")),{success:!1}}},deleteLoading:n,updateDocumentTypeById:async(e,t)=>{try{let i=await r({id:e,docTypeUpdateParameters:{name:t.name??"",type:t.type??"",group:t.group??"",controller:t.controller??"",template:t.template??"",priority:t.priority??0,staticGeneratorEnabled:t.staticGeneratorEnabled??!1}});return(0,tI.isUndefined)(i.error)||(0,iX.Ay)(new iX.hD(i.error)),{success:"data"in i}}catch{return(0,iX.Ay)(new iX.$g("Was not able to update DocumentType")),{success:!1}}},updateLoading:a}},Fy=e=>{let{documentTypeRows:t,setDocumentTypeRows:i,config:n}=e,{t:r}=(0,iQ.useTranslation)(),{updateDocumentTypeById:a}=Fh(),{controllers:l,templates:o,docTypes:s}=n,[d,c]=(0,tG.useState)([]),f=l.map(e=>e.name),u=o.map(e=>e.path),m=s.map(e=>e.name),p=(0,cH.createColumnHelper)(),g=[p.accessor("name",{header:r("document-types.columns.name"),meta:{editable:!0},size:200}),p.accessor("group",{header:r("document-types.columns.group"),meta:{editable:!0},size:100}),p.accessor("controller",{header:r("document-types.columns.controller"),meta:{type:"select",editable:!0,config:{options:Object.values(f)}},size:200}),p.accessor("template",{header:r("document-types.columns.template"),meta:{type:"select",editable:!0,config:{options:Object.values(u)}},size:150}),p.accessor("type",{header:r("document-types.columns.type"),meta:{type:"select",editable:!0,config:{options:Object.values(m)}},size:80}),p.accessor("staticGeneratorEnabled",{header:r("document-types.columns.static"),size:70,cell:e=>(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:"page"===e.row.original.type&&(0,tq.jsx)(ni.Checkbox,{checked:!!e.getValue(),onChange:t=>{var i,n;null==(n=e.table.options.meta)||null==(i=n.onUpdateCellData)||i.call(n,{rowIndex:e.row.index,columnId:e.column.id,value:t.target.checked,rowData:e.row.original})}})})}),p.accessor("priority",{header:r("document-types.columns.priority"),meta:{type:"number",editable:!0},size:80}),p.accessor("creationDate",{header:r("document-types.columns.creation-date"),meta:{type:"date"},size:150}),p.accessor("modificationDate",{header:r("document-types.columns.modification-date"),meta:{type:"date"},size:150}),p.accessor("actions",{header:r("document-types.columns.actions"),size:80,cell:e=>(e=>{let{info:t,setDocumentTypeRows:i}=e,n=t.row.original.id,{deleteDocumentTypeById:r,deleteLoading:a}=Fh(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsxs)("div",{className:"document-types-table--actions-column",children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"translate"},onClick:()=>{console.log("Open Translate View")},type:"link"}),(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})]})})({info:e,setDocumentTypeRows:i})})],h=async e=>{let{columnId:t,value:n,rowData:r}=e,l=r.rowId,o={...r,[t]:n};i(e=>e.map(e=>e.rowId===l?o:e)),c([{columnId:t,rowIndex:l}]);let{success:s}=await a(o.id,o);s?c([]):i(e=>e.map(e=>e.rowId===l?r:e))};return(0,tq.jsx)("div",{children:(0,tq.jsx)(ul.x,{autoWidth:!0,columns:g,data:t,enableSorting:!0,modifiedCells:d,onUpdateCellData:h,resizable:!0,setRowId:e=>e.rowId})})},Fv=()=>{let{createNewDocumentType:e,createLoading:t}=Fh(),i=(()=>{let{data:e,error:t}=(0,od.XS)(),{data:i,error:n}=(0,od.$P)(),{data:r,error:a}=(0,od.XE)();return(0,tG.useEffect)(()=>{(0,tI.isUndefined)(t)||(0,iX.Ay)(new iX.hD(t))},[t]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(n)||(0,iX.Ay)(new iX.hD(n))},[n]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(a)||(0,iX.Ay)(new iX.hD(a))},[a]),{controllers:(0,tI.isUndefined)(e)?[]:null==e?void 0:e.items,templates:(0,tI.isUndefined)(i)?[]:null==i?void 0:i.items,docTypes:(0,tI.isUndefined)(r)?[]:null==r?void 0:r.items}})(),{data:n,isLoading:r,isFetching:a,error:l,refetch:o}=(0,od.BZ)({}),s=()=>{o().catch(()=>{(0,iX.Ay)(new iX.$g("Error while reloading"))})};(0,tG.useEffect)(()=>{s()},[]);let[d,c]=(0,tG.useState)([]),f=(null==n?void 0:n.items)??[],u=[...d].sort((e,t)=>{let i=e.name??"",n=t.name??"";return i.localeCompare(n)});(0,tG.useEffect)(()=>{(0,tI.isUndefined)(f)||c(f.map(e=>({...e,rowId:(0,af.uuid)()})))},[f]);let m=async()=>{let{success:t,data:i}=await e();t&&void 0!==i&&c(e=>[{...i,rowId:(0,af.uuid)()},...e])};return(0,tG.useEffect)(()=>{(0,tI.isUndefined)(l)||(0,iX.Ay)(new iX.hD(l))},[l]),(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{theme:"secondary",children:(0,tq.jsx)(ni.IconButton,{disabled:a,icon:{value:"refresh"},onClick:s})}),renderTopBar:(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.document-types")}),(0,tq.jsx)(ni.IconTextButton,{disabled:r??t,icon:{value:"new"},loading:t,onClick:m,children:(0,i6.t)("document-types.new")})]})}),children:(0,tq.jsx)(uE.U,{loading:r||a,margin:{x:"extra-small",y:"none"},none:(0,tI.isUndefined)(f)??0===f.length,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(Fy,{config:i,documentTypeRows:u,setDocumentTypeRows:c})})})})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Document Types",label:"navigation.document-types",className:"item-style-modifier",order:900,permission:pw.F.DocumentTypes,perspectivePermission:pk.d.DocumentTypes,widgetConfig:{name:"Document Types",id:"document-types",component:"document-types",config:{translationKey:"widget.document-types",icon:{type:"name",value:"document-types"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"document-types",component:Fv})}});let Fb=pR.api.enhanceEndpoints({addTagTypes:["Website Settings"]}).injectEndpoints({endpoints:e=>({websiteSettingsAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/website-settings/add",method:"POST",body:e.websiteSettingsAdd}),invalidatesTags:["Website Settings"]}),websiteSettingsGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/website-settings",method:"POST",body:e.body}),providesTags:["Website Settings"]}),websiteSettingsUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/website-settings/${e.id}`,method:"PUT",body:e.websiteSettingsUpdate}),invalidatesTags:["Website Settings"]}),websiteSettingsDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/website-settings/${e.id}`,method:"DELETE"}),invalidatesTags:["Website Settings"]}),websiteSettingsListTypes:e.query({query:()=>({url:"/pimcore-studio/api/website-settings/types"}),providesTags:["Website Settings"]})}),overrideExisting:!1}),{useWebsiteSettingsAddMutation:Fx,useWebsiteSettingsGetCollectionQuery:Fj,useWebsiteSettingsUpdateMutation:Fw,useWebsiteSettingsDeleteMutation:Fk,useWebsiteSettingsListTypesQuery:FT}=Fb,FS=Fb.enhanceEndpoints({addTagTypes:[uT.nP.WEBSITE_SETTINGS],endpoints:{websiteSettingsGetCollection:{providesTags:(e,t,i)=>uT.yc.WEBSITE_SETTINGS()},websiteSettingsDelete:{invalidatesTags:()=>[]},websiteSettingsAdd:{invalidatesTags:()=>[]},websiteSettingsUpdate:{invalidatesTags:()=>[]},websiteSettingsListTypes:{providesTags:()=>[]}}}),{useWebsiteSettingsAddMutation:FC,useWebsiteSettingsDeleteMutation:FD,useWebsiteSettingsGetCollectionQuery:FI,useWebsiteSettingsUpdateMutation:FM,useWebsiteSettingsListTypesQuery:FL}=FS,FF=()=>{let[e,{isLoading:t}]=FC(),[i,{isLoading:n}]=FD(),[r,{isLoading:a}]=FM();return{createNewSetting:async(t,i)=>{try{let n=await e({websiteSettingsAdd:{name:t,type:i}});if((0,tI.isUndefined)(n.error)||(0,iX.Ay)(new iX.hD(n.error)),"data"in n)return{success:!0,data:n.data}}catch{(0,iX.Ay)(new iX.$g("Error creating Website Settings"))}return{success:!1}},createLoading:t,deleteSettingById:async e=>{try{let t=await i({id:e});return(0,tI.isUndefined)(t.error)||(0,iX.Ay)(new iX.hD(t.error)),{success:"data"in t}}catch{return(0,iX.Ay)(new iX.$g("Error deleting Website Settings")),{success:!1}}},deleteLoading:n,updateSettingById:async(e,t)=>{try{let i=await r({id:e,websiteSettingsUpdate:t});return(0,tI.isUndefined)(i.error)||(0,iX.Ay)(new iX.hD(i.error)),{success:"data"in i}}catch{return(0,iX.Ay)(new iX.$g("Error updating Website Settings")),{success:!1}}},updateLoading:a}},FE=e=>{let{info:t,setWebsiteSettingRows:i}=e,n=t.row.original.id,{deleteSettingById:r,deleteLoading:a}=FF(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",className:"website-settings-table--actions-column",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},FP=e=>{let{websiteSettingRows:t,setWebsiteSettingRows:i,typeSelectOptions:n}=e,{t:r}=(0,iQ.useTranslation)(),{updateSettingById:a}=FF(),[l,o]=(0,tG.useState)([]),{getAllSites:s,getSiteById:d}=(0,c9.u)(),c=t.map(e=>{if(null==e.siteId)return{...e,siteDomain:""};let t=isNaN(Number(null==e?void 0:e.siteId))?void 0:d(Number(e.siteId)),i=(0,tI.isUndefined)(t)?"":r(t.domain);return{...e,siteDomain:i}}),f=s().map(e=>({value:e.id,label:r(e.domain)})),u=async e=>{let{columnId:t,value:n,rowData:r}=e,l=r.rowId,s={...r,["siteDomain"===t?"siteId":t]:n};i(e=>e.map(e=>e.rowId===l?s:e)),o([{columnId:t,rowIndex:l}]);let{success:d}=await a(s.id,{name:s.name??"",language:s.language??"",data:s.data,siteId:s.siteId??0});d?o([]):i(e=>e.map(e=>e.rowId===l?r:e))},m=(0,cH.createColumnHelper)(),p=[m.accessor("type",{header:r("website-settings.columns.type"),meta:{type:"select",editable:!1,config:{options:n}},size:80}),m.accessor("name",{header:r("website-settings.columns.name"),meta:{editable:!0},size:200}),m.accessor("language",{header:r("website-settings.columns.language"),meta:{type:"language-select",editable:!0},size:60}),m.accessor("data",{header:r("website-settings.columns.value"),meta:{type:"website-settings-value",editable:!0,clearable:!0,showPublishedState:!1},size:200}),m.accessor("siteDomain",{header:r("website-settings.columns.site"),meta:{type:"select",editable:!0,config:{options:f}},size:110}),m.accessor("actions",{header:r("properties.columns.actions"),size:60,cell:e=>(0,tq.jsx)(FE,{info:e,setWebsiteSettingRows:i})})];return(0,tq.jsx)("div",{children:(0,tq.jsx)(ul.x,{autoWidth:!0,columns:p,data:c,enableSorting:!0,modifiedCells:l,onUpdateCellData:u,resizable:!0,setRowId:e=>e.rowId})})},FA=()=>{let[e]=ni.Form.useForm(),[t,i]=(0,tG.useState)(""),[n,r]=(0,tG.useState)(1),[a,l]=(0,tG.useState)(20),{data:o}=FL(),s=null==o?void 0:o.items,d=(0,tI.isUndefined)(s)?[]:s.map(e=>({value:e.key,label:e.title})),{data:c,isLoading:f,isFetching:u,error:m}=FI((0,tG.useMemo)(()=>({body:{filters:{page:n,pageSize:a,columnFilters:t.length>0?[{key:"name",type:"like",filterValue:t}]:[]}}}),[t,n,a]),{refetchOnMountOrArgChange:!0}),{createNewSetting:p,createLoading:g}=FF(),h=(0,iv.useAppDispatch)(),[y,v]=(0,tG.useState)([]),b=(null==c?void 0:c.items)??[],x=[...y].sort((e,t)=>{let i=e.name??"",n=t.name??"";return i.localeCompare(n)});(0,tG.useEffect)(()=>{(0,tI.isUndefined)(b)||v(b.map(e=>({...e,rowId:(0,af.uuid)()})))},[b]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(m)||(0,iX.Ay)(new iX.hD(m))},[m]);let{showModal:j,closeModal:w,renderModal:k}=(0,ni.useModal)({type:"error"}),{showModal:T,closeModal:S,renderModal:C}=(0,ni.useModal)({type:"error"}),D=(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(k,{footer:(0,tq.jsx)(ni.ModalFooter,{children:(0,tq.jsx)(ni.Button,{onClick:w,type:"primary",children:(0,i6.t)("button.ok")})}),title:(0,i6.t)("website-settings.website-settings-already-exist.title"),children:(0,i6.t)("website-settings.website-settings-already-exist.error")}),(0,tq.jsx)(C,{footer:(0,tq.jsx)(ni.ModalFooter,{children:(0,tq.jsx)(ni.Button,{onClick:S,type:"primary",children:(0,i6.t)("button.ok")})}),title:(0,i6.t)("website-settings.website-settings.add-entry-mandatory-fields-missing.title"),children:(0,i6.t)("website-settings.website-settings.add-entry-mandatory-fields-missing.error")})]}),I=async(t,i)=>{let n=void 0!==i&&""!==i;if(""===t||void 0===t||!n)return void T();if((null==y?void 0:y.find(e=>e.name===t))!==void 0)return void j();let{success:r,data:a}=await p(t,i);r&&void 0!==a&&(v(e=>[{...a,rowId:(0,af.uuid)()},...e]),e.resetFields())};return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(lp.K,{disabled:u,icon:{value:"refresh"},onClick:()=>{h(FS.util.invalidateTags(pR.invalidatingTags.WEBSITE_SETTINGS()))}}),(0,tq.jsx)(ni.Pagination,{current:n,onChange:(e,t)=>{r(e),l(t)},showSizeChanger:!0,showTotal:e=>(0,i6.t)("pagination.show-total",{total:e}),total:(null==c?void 0:c.totalItems)??0})]}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},padding:{x:"small"},theme:"secondary",children:[(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.website-settings")}),(0,tq.jsx)(ni.Form,{form:e,layout:"inline",onFinish:e=>{let{name:t,type:i}=e;I(t,i)},children:(0,tq.jsxs)(ap.s,{children:[(0,tq.jsx)(ni.Form.Item,{name:"name",children:(0,tq.jsx)(ni.Input,{placeholder:(0,i6.t)("properties.add-custom-property.key")})}),(0,tq.jsx)(ni.Form.Item,{name:"type",children:(0,tq.jsx)(ni.Select,{className:"min-w-100",options:d,placeholder:(0,i6.t)("properties.add-custom-property.type")})}),(0,tq.jsx)(ni.Form.Item,{children:(0,tq.jsx)(ni.IconTextButton,{htmlType:"submit",icon:{value:"new"},loading:g,children:(0,i6.t)("website-settings.new")})})]})})]}),(0,tq.jsx)(ni.SearchInput,{loading:u,onSearch:e=>{i(e)},placeholder:"Search",withPrefix:!1,withoutAddon:!1})]}),children:(0,tq.jsx)(uE.U,{loading:f||u,margin:{x:"extra-small",y:"none"},none:(0,tI.isUndefined)(y)||0===y.length,children:(0,tq.jsxs)(ni.Box,{margin:{x:"extra-small",y:"none"},children:[(0,tq.jsx)(FP,{setWebsiteSettingRows:v,typeSelectOptions:d,websiteSettingRows:x}),D]})})})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"ExperienceEcommerce/Website Settings",label:"navigation.website-settings",order:1e3,className:"item-style-modifier",permission:pw.F.WebsiteSettings,perspectivePermission:pk.d.WebsiteSettings,widgetConfig:{name:"Website Settings",id:"website-settings",component:"website-settings",config:{translationKey:"widget.website-settings",icon:{type:"name",value:"web-settings"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"website-settings",component:FA})}});var FN=i(52626),FR=i(72098);let FV=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance(),i=e=>(0,tI.isObject)(e)&&(0,tI.has)(e,"cleared")&&!0===e.cleared?"":(0,tI.isObject)(e)?e.toHexString():"";return(0,tq.jsx)(ay.Z,{border:!1,collapsed:!1,collapsible:!0,contentPadding:"extra-small",theme:"card-with-highlight",title:e("appearance-branding.color.title"),children:(0,tq.jsxs)(a$.$,{direction:"vertical",size:"extra-small",children:[(0,tq.jsxs)(tJ.lV.Item,{label:e("appearance-branding.color.brand-color.label"),children:[(0,tq.jsx)(tJ.lV.Item,{name:["branding","brandColor"],noStyle:!0,children:(0,tq.jsx)(md.s,{allowClear:!0,"data-testid":"appearance-branding-brand-color",format:"hex",onChange:e=>{let n=i(e);t.setFieldValue(["branding","brandColor"],n)},showText:!0})}),(0,tq.jsx)("div",{style:{marginTop:8,fontSize:"12px",color:"#666"},children:e("appearance-branding.color.brand-color.description")})]}),(0,tq.jsxs)(tJ.lV.Item,{label:e("appearance-branding.color.background-shade.label"),children:[(0,tq.jsx)(tJ.lV.Item,{name:["branding","backgroundShade"],noStyle:!0,children:(0,tq.jsx)(md.s,{allowClear:!0,"data-testid":"appearance-branding-background-shade",format:"hex",onChange:e=>{let n=i(e);t.setFieldValue(["branding","backgroundShade"],n)},showText:!0})}),(0,tq.jsx)("div",{style:{marginTop:8,fontSize:"12px",color:"#666"},children:e("appearance-branding.color.background-shade.description")})]})]})})},Fz=e=>{let{titleKey:t,descriptionKey:i,fieldName:n,width:r=300,height:a=150,dataTestId:l}=e,{t:o}=(0,iQ.useTranslation)();return(0,tq.jsx)("div",{"data-testid":l,children:(0,tq.jsx)(ay.Z,{border:!1,collapsed:!1,collapsible:!0,contentPadding:"small",theme:"card-with-highlight",title:o(t),children:(0,tq.jsx)(tJ.lV.Item,{getValueFromEvent:e=>null!==e?{id:e.id,type:e.type??"asset",subtype:"image",fullPath:e.fullPath}:null,getValueProps:e=>({value:null!==e?{type:"asset",id:e.id,fullPath:e.fullPath}:null}),name:n,children:(0,tq.jsx)(mg,{allowedTypes:["image"],description:i,height:a,type:"add",width:r})})})})},FB=()=>{var e,t,i,n,r,a;let{t:l}=(0,iQ.useTranslation)(),{success:o}=(0,uI.J)(),{updateSettings:s,isLoading:d,adminSettings:c}=(()=>{let[e,{isLoading:t}]=(0,FN.Gg)(),i=(0,uk.jL)();(0,FN.cC)();let n=(0,Cv.useSelector)(FR.rC);return{updateSettings:async t=>{if(!(0,tI.isUndefined)(n)){let e={...n,...t};i((0,FR.XE)(e))}try{let r=await e({updateAdminSettings:t});if(!(0,tI.isUndefined)(r.error))return(0,tI.isUndefined)(n)||i((0,FR.XE)(n)),(0,iX.Ay)(new iX.hD(r.error)),{success:!1};return{success:"data"in r}}catch{return(0,tI.isUndefined)(n)||i((0,FR.XE)(n)),(0,iX.Ay)(new iX.$g("Failed to update appearance settings.")),{success:!1}}},isLoading:t,adminSettings:n}})(),[f]=tJ.lV.useForm(),u=(null==c?void 0:c.writeable)??!1,m={branding:{brandColor:(null==c||null==(e=c.branding)?void 0:e.brandColor)??"",backgroundShade:(null==c||null==(t=c.branding)?void 0:t.backgroundShade)??"",loginScreenCustomBackgroundImage:(null==c||null==(i=c.branding)?void 0:i.loginScreenCustomBackgroundImage)??null,customLogo:(null==c||null==(n=c.branding)?void 0:n.customLogo)??null},assets:{hide_edit_image:(null==c||null==(r=c.assets)?void 0:r.hide_edit_image)??!1,disable_tree_preview:(null==c||null==(a=c.assets)?void 0:a.disable_tree_preview)??!1}};return(0,tq.jsx)(n6.L,{formProps:{form:f,initialValues:m,onFinish:async e=>{let t={...e,assets:{hide_edit_image:m.assets.hide_edit_image,disable_tree_preview:m.assets.disable_tree_preview}};(await s(t)).success&&o(l("appearance-branding.update.success"))}},children:(0,tq.jsxs)(ap.s,{className:"appearance-branding-form absolute-stretch",justify:"space-between",vertical:!0,children:[(0,tq.jsxs)(uE.U,{padded:!0,padding:{x:"extra-small",y:"extra-small"},children:[(0,tq.jsx)(pd.h,{level:2,children:l("appearance-branding.title")}),(0,tq.jsxs)(a$.$,{direction:"vertical",size:"large",children:[(0,tq.jsx)(FV,{}),(0,tq.jsx)(Fz,{dataTestId:"appearance-branding-custom-logo",descriptionKey:"appearance-branding.custom-logo.description",fieldName:["branding","customLogo"],height:150,titleKey:"appearance-branding.custom-logo.title",width:300}),(0,tq.jsx)(Fz,{dataTestId:"appearance-branding-login-background",descriptionKey:"appearance-branding.custom-login-background.description",fieldName:["branding","loginScreenCustomBackgroundImage"],height:150,titleKey:"appearance-branding.custom-login-background.title",width:300})]})]}),(0,tq.jsx)(pc.M,{justify:"flex-end",children:(0,tq.jsx)(iN.m,{title:u?"":l("config_not_writeable"),children:(0,tq.jsx)(az.$,{"data-testid":"appearance-branding-save-button",disabled:!u,htmlType:"submit",loading:d,type:"primary",children:l("save")})})})]})})},FO={name:"Appearance & Branding",id:"appearance-branding",component:"appearance-branding",config:{translationKey:"widget.appearance-branding",icon:{type:"name",value:"appearance-branding"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"System/Appearance-Branding",label:"navigation.appearance-branding",className:"item-style-modifier",order:200,permission:pw.F.Appearance,perspectivePermission:pk.d.Appearance,widgetConfig:FO}),tc.kL.get(td.K.widgetManager).registerWidget({name:"appearance-branding",component:FB})}});let FK=e=>{let{isFetching:t,onAdd:i,onRefresh:n}=e,{t:r}=(0,iQ.useTranslation)();return(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsx)(iN.m,{title:r("refresh"),children:(0,tq.jsx)(lp.K,{disabled:t,icon:{value:"refresh"},onClick:n,title:r("refresh"),type:"link"})}),(0,tq.jsx)(ni.IconTextButton,{icon:{value:"new"},onClick:i,type:"link",children:r("new")})]})},F_=(e,t)=>{for(let i of t){if(i.id===e)return i;if("children"in i&&Array.isArray(i.children)){let t=F_(e,i.children);if(null!==t)return t}}return null},FH=(e,t)=>{let i=t.toLowerCase();return e.filter(e=>{let n=e.name.toLowerCase().includes(i);if("children"in e&&Array.isArray(e.children)){let i=FH(e.children,t).length>0;return n||i}return n}).map(e=>"children"in e&&Array.isArray(e.children)?{...e,children:FH(e.children,t)}:e)},F$=e=>{let t=[];for(let i of e)"children"in i&&Array.isArray(i.children)&&t.push(String(i.id),...F$(i.children));return t},FW=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{icon:i` - color: ${t.colorTextTreeElement}; - `}}),Fq=(0,tG.createContext)(void 0),FG=e=>{let{children:t}=e,{data:i,isLoading:n,isFetching:r,refetch:a,error:l}=(0,k9.Ji)(),[o,s]=(0,tG.useState)([]);(0,tG.useEffect)(()=>{(0,tI.isUndefined)(l)||(0,uj.trackError)(new uj.ApiError(l))},[l]);let d=(0,tG.useMemo)(()=>({thumbnailsData:i,isLoading:n,isFetching:r,refetch:a,expandedKeys:o,setExpandedKeys:s}),[i,n,r,a,o,s]);return(0,tq.jsx)(Fq.Provider,{value:d,children:t})},FU=e=>{let{onThumbnailSelect:t,onThumbnailClose:i,openedThumbnails:n,activeTabKey:r,modifiedThumbnails:a=[]}=e,{thumbnailsData:l,isLoading:o,isFetching:s,refetch:d,expandedKeys:c,setExpandedKeys:f}=(()=>{let e=(0,tG.useContext)(Fq);if(void 0===e)throw Error("useImageThumbnailsContext must be used within an ImageThumbnailsProvider");return e})(),[u,m]=(0,tG.useState)([]),[p,g]=(0,tG.useState)([]),[h,y]=(0,tG.useState)(""),[v,b]=(0,tG.useState)(0),{styles:x}=FW(),{handleDelete:j,handleAdd:w}=(e=>{let{refetch:t}=e,i=(0,aB.Vl)(),{t:n}=(0,iQ.useTranslation)(),r=(0,uI.J)(),[a,{error:l}]=(0,k9.HZ)(),[o,{error:s}]=(0,k9.eZ)();return(0,tG.useEffect)(()=>{(0,tI.isUndefined)(l)||(0,iX.Ay)(new iX.hD(l))},[l]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(s)||(0,iX.Ay)(new iX.hD(s))},[s]),{handleDelete:(0,tG.useCallback)(async(e,r)=>{(0,tI.isNil)(e)||i.confirm({title:n("delete"),content:n("image-thumbnails.delete.confirm")+` "${e.name}"?`,onOk:async()=>{let i=await a({name:e.name});!(0,tI.has)(i,"error")&&(t(),(0,tI.isNil)(r)||r())}})},[t,n,a,i]),handleAdd:(0,tG.useCallback)(e=>{i.input({label:n("image-thumbnails.add.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:n("image-thumbnails.add.validation.message")},onOk:async i=>{let a=i.replaceAll(/[^a-zA-Z0-9_-]/g,"");if(a.length<=2)return void r.error(n("image-thumbnails.add.validation.message"));let l=await o({createThumbnailConfig:{name:a}});!(0,tI.has)(l,"error")&&(t(),(0,tI.isNil)(e)||e(a))}})},[o,t,n,i,r])}})({refetch:d}),k=(0,tG.useRef)(null);(0,tG.useEffect)(()=>{if(!(0,tI.isNil)(null==l?void 0:l.items)&&(m(l.items),g(l.items),b(e=>e+1),!(0,tI.isNil)(k.current))){let e=k.current,i=l.items.find(t=>"name"in t&&t.name===e);!(0,tI.isUndefined)(i)&&"writeable"in i&&t(i),k.current=null}},[l]),(0,tG.useEffect)(()=>{if(""===h)g(u),f([]);else{let e=FH(u,h);g(e),f(F$(e))}},[h,u]);let{t:T}=(0,iQ.useTranslation)(),S=e=>(0,tI.isNil)(e)?[]:[...e].sort((e,t)=>e.name.localeCompare(t.name,void 0,{sensitivity:"base"})).map(e=>{let t="children"in e&&Array.isArray(e.children),i=!t&&a.includes(e.id);return{key:(0,tI.isUndefined)(e.id)?"":String(e.id),title:`${e.name}${i?" *":""}`,icon:"children"in e&&Array.isArray(e.children)?(0,tq.jsx)(r9.I,{className:x.icon,value:"folder"}):(0,tq.jsx)(r9.I,{className:x.icon,value:"image-thumbnail"}),children:t?S(e.children):void 0,isLeaf:!t,actions:t?[]:[{key:"delete",icon:"trash"}],allowDrag:!1,allowDrop:!1}}),C=(0,tG.useMemo)(()=>S(p),[p,a]),D=async e=>{let t=F_(e,u);!(0,tI.isNil)(t)&&"writeable"in t&&await j(t,()=>{i(e)})},I=async(e,t)=>{"delete"===t&&await D(e)};return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(FK,{isFetching:s,onAdd:()=>{w(e=>{k.current=e})},onRefresh:d}),children:(0,tq.jsxs)(uE.U,{loading:o,padded:!0,children:[(0,tq.jsx)(ps.D,{onChange:e=>{y(e.target.value)},placeholder:T("search"),withoutAddon:!0}),(0,tq.jsx)(ap.s,{className:"h-full",gap:"mini",justify:s?"center":"start",vertical:!0,children:s?(0,tq.jsx)(ap.s,{align:"center",justify:"center",children:(0,tq.jsx)(sN.t,{asContainer:!0,tip:"Loading"})}):(0,tq.jsx)(tq.Fragment,{children:0===p.length?(0,tq.jsx)(uE.U,{none:!0}):(0,tq.jsx)(gQ.l,{defaultExpandedKeys:c,onActionsClick:I,onExpand:e=>{f(e)},onSelected:e=>{var i;let n;n=F_(i=String(e),u),(0,tI.isNil)(n)||("children"in n&&Array.isArray(n.children)?!(0,tI.isNil)(c)&&c.includes(i)?f(c.filter(e=>e!==i)):f([...c,i]):t(n))},selectedKeys:null!=r?[r]:[],treeData:C},`thumbnail-tree-${v}`)})})]})})};var FQ=i(76103),FJ=i(37836),FZ=i(3109),FY=i(44317);let FX=e=>{let{mediaQuery:t,onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),r=(0,tG.useMemo)(()=>t.transformations.map(e=>({type:e.type,data:e.config??{}})),[t.transformations]),a=(0,tG.useCallback)(e=>{null!=e&&i(e)},[i]),l=(0,tG.useMemo)(()=>tc.kL.get(td.K["DynamicTypes/TransformationFieldCollectionRegistry"]),[]);return(0,tq.jsx)(FY.Z,{addLabel:n("image-thumbnails.transformations.add"),onChange:a,registry:l,title:n("image-thumbnails.editor.transformations"),value:r})},F0=e=>{let{mediaQuery:t,onMediaQueryUpdate:i}=e,n=(0,tG.useRef)({}),r=(0,tG.useRef)(t);(0,tG.useEffect)(()=>{r.current=t});let a=(0,tG.useCallback)(e=>{let t=r.current;i({...t,transformations:e.map((e,i)=>{var r,a;let l=null==(r=t.transformations[i])?void 0:r.id;return""!==l&&null!=l?n.current[i]=l:(a=n.current)[i]??(a[i]=`transformation-${crypto.randomUUID()}`),{id:n.current[i],type:e.type,config:e.data}})})},[i]);return(0,tq.jsx)(FZ.p,{item:{name:"transformations"},children:(0,tq.jsx)(FX,{mediaQuery:t,onChange:a})})},F1="default",F2=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=[],n=e[F1]??[],r={id:F1,query:F1,displayName:F1,transformations:n.map(e=>({id:F4(),type:e.method,config:e.arguments??{}})),order:0};return Object.entries(e).forEach(e=>{let[n,r]=e;if(n===F1)return;let a={id:F6(),query:n,displayName:F3(n),transformations:r.map(e=>({id:F4(),type:e.method,config:e.arguments??{}})),order:(0===t[n]?0:t[n])??0};i.push(a)}),i.sort((e,t)=>e.order-t.order),[r,...i]},F3=e=>{if(e.includes("min-width")){let t=/min-width:\s*(\d+)/.exec(e);return null===t?e:`≥ ${t[1]}px`}if(e.includes("max-width")){let t=/max-width:\s*(\d+)/.exec(e);return null===t?e:`≤ ${t[1]}px`}return e.length>20?e.substring(0,20)+"...":e},F6=()=>`mq-${(0,n7.u)()}`,F4=()=>`tr-${(0,n7.u)()}`,F5=e=>{let{mediaQueries:t,activeKey:i,onTabChange:n,onTabClose:r,onMediaQueryUpdate:a}=e,{t:l}=(0,iQ.useTranslation)(),o=(0,tG.useCallback)(e=>{a(e.id,e)},[a]),s=(0,tG.useCallback)((e,t)=>{"remove"===t&&"string"==typeof e&&r(e)},[r]),d=(0,tG.useMemo)(()=>t.map(e=>({key:e.id,label:e.id===F1?l("image-thumbnails.editor.media-queries.default"):e.displayName,closable:e.id!==F1,children:(0,tq.jsx)(F0,{mediaQuery:e,onMediaQueryUpdate:o})})),[t,o]);return(0,tq.jsx)(ge.t,{activeKey:i,hideAdd:!0,items:d,onChange:n,onEdit:s,size:"small",type:"editable-card"})},F7=e=>{let{mediaQueries:t,onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),r=(0,aB.Vl)(),[a,l]=(0,tG.useState)(F1),o=(0,tG.useCallback)(()=>{r.input({title:n("image-thumbnails.editor.media-queries.add.title"),label:n("image-thumbnails.editor.media-queries.add.label"),okText:"Create",cancelButtonProps:{style:{display:"none"}},maskClosable:!0,rule:{required:!0},onOk:async e=>{let n=e.trim().replaceAll(/[^a-zA-Z0-9_\-+]/g,"");if(""===n)return;let r={id:F6(),query:n,displayName:F3(n),transformations:[],order:t.length};i([...t,r]),l(r.id)}})},[t,i,r,n]),s=(0,tG.useCallback)((e,n)=>{i(t.map(t=>t.id===e?n:t))},[t,i]),d=(0,tG.useCallback)(e=>{if(e===F1)return;let n=t.filter(t=>t.id!==e);i(n),a===e&&l(n.length>0?n[0].id:F1)},[t,i,a]),c=(0,tq.jsx)(az.$,{icon:(0,tq.jsx)(r9.I,{options:{width:16,height:16},value:"plus-circle"}),onClick:o,size:"small",type:"link",children:n("image-thumbnails.editor.media-queries.new")});return(0,tq.jsx)(ay.Z,{border:!0,contentPadding:"small",extra:c,extraPosition:"end",theme:"card-with-highlight",title:n("image-thumbnails.editor.media-queries"),children:(0,tq.jsx)(F5,{activeKey:a,mediaQueries:t,onMediaQueryUpdate:s,onTabChange:l,onTabClose:d})})},F8=[{value:"auto",label:"Auto (Web-optimized - recommended)"},{value:"original",label:"ORIGINAL"},{value:"png",label:"PNG"},{value:"gif",label:"GIF"},{value:"jpeg",label:"JPEG"},{value:"webp",label:"WebP"},{value:"avif",label:"AVIF"},{value:"tiff",label:"TIFF"}],F9=e=>{let{isNameDisabled:t=!1}=e,{t:i}=(0,iQ.useTranslation)();return(0,tq.jsxs)(n6.L.Panel,{contentPadding:"extra-small",children:[(0,tq.jsx)(tJ.lV.Item,{label:i("image-thumbnails.editor.name"),name:"name",rules:[{required:!0,message:i("image-thumbnails.editor.name-required")}],children:(0,tq.jsx)(aR.p,{disabled:t})}),(0,tq.jsx)(tJ.lV.Item,{label:i("image-thumbnails.editor.description"),name:"description",children:(0,tq.jsx)(n4.f,{rows:4})}),(0,tq.jsx)(tJ.lV.Item,{label:i("image-thumbnails.editor.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("image-thumbnails.editor.format"),name:"format",rules:[{required:!0,message:i("image-thumbnails.editor.format-required")}],children:(0,tq.jsx)(t8.l,{options:F8,placeholder:i("image-thumbnails.editor.format-placeholder")})})]})},Ee=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(ay.Z,{border:!0,collapsed:!0,collapsible:!0,contentPadding:"extra-small",theme:"card-with-highlight",title:e("image-thumbnails.editor.advanced"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("image-thumbnails.editor.quality"),name:"quality",tooltip:e("image-thumbnails.editor.quality.tooltip"),children:(0,tq.jsx)(df.Y,{max:100,min:1,placeholder:"85"})}),(0,tq.jsx)(tJ.lV.Item,{label:e("image-thumbnails.editor.high-resolution"),name:"highResolution",tooltip:e("image-thumbnails.editor.high-resolution.tooltip"),children:(0,tq.jsx)(df.Y,{max:10,min:1,step:.1})}),(0,tq.jsx)(tJ.lV.Item,{name:"preserveColor",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("image-thumbnails.editor.preserve-color"),tooltip:e("image-thumbnails.editor.preserve-color.tooltip")})}),(0,tq.jsx)(tJ.lV.Item,{name:"forceProcessICCProfiles",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("image-thumbnails.editor.force-process-icc"),tooltip:e("image-thumbnails.editor.force-process-icc.tooltip")})}),(0,tq.jsx)(tJ.lV.Item,{name:"preserveMetaData",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("image-thumbnails.editor.preserve-metadata"),tooltip:e("image-thumbnails.editor.preserve-metadata.tooltip")})}),(0,tq.jsx)(tJ.lV.Item,{name:"rasterizeSVG",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("image-thumbnails.editor.rasterize-svg"),tooltip:e("image-thumbnails.editor.rasterize-svg.tooltip")})}),(0,tq.jsx)(tJ.lV.Item,{name:"useCropBox",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("image-thumbnails.editor.use-cropbox"),tooltip:e("image-thumbnails.editor.use-cropbox.tooltip")})}),(0,tq.jsx)(tJ.lV.Item,{name:"preserveAnimation",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("image-thumbnails.editor.preserve-animation"),tooltip:e("image-thumbnails.editor.preserve-animation.tooltip")})}),(0,tq.jsx)(tJ.lV.Item,{name:"downloadable",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("image-thumbnails.editor.downloadable"),tooltip:e("image-thumbnails.editor.downloadable.tooltip")})})]})},Et=e=>{let{selectedThumbnail:t,isActive:i=!0,onChange:n}=e,{t:r}=(0,iQ.useTranslation)(),[a]=tJ.lV.useForm(),l=(0,uI.J)(),[o,s]=(0,tG.useState)(null),[d,c]=(0,tG.useState)(null),[f,u]=(0,tG.useState)(null),[m,p]=(0,tG.useState)([]),{data:g,isLoading:h}=(0,k9.vi)({name:(null==t?void 0:t.name)??""},{skip:(null==t?void 0:t.name)==null}),[y,{isLoading:v,error:b}]=(0,k9.d5)();(0,tG.useEffect)(()=>{(0,tI.isNil)(b)||(0,iX.Ay)(new iX.hD(b))},[b]);let x=(0,tG.useMemo)(()=>!((0,tI.isNull)(d)||(0,tI.isNull)(f))&&!(0,tI.isEqual)(d,f),[d,f]);(0,tG.useEffect)(()=>{if((null==t?void 0:t.id)!==o&&!(0,tI.isEmpty)(null==g?void 0:g.settings)&&null!==t){let e;s(((null==t?void 0:t.id)===""?null:null==t?void 0:t.id)??null);let i={name:(""===g.settings.name?"":g.settings.name)??"",description:g.settings.description??"",format:(["","source"].includes((g.settings.format??"").toLowerCase())?"auto":g.settings.format)??"auto",group:g.settings.group??"",quality:(0===g.settings.quality?85:g.settings.quality)??85,highResolution:g.settings.highResolution??null,preserveColor:g.settings.preserveColor??!1,forceProcessICCProfiles:g.settings.forceProcessICCProfiles??!1,preserveMetaData:g.settings.preserveMetaData??!1,rasterizeSVG:g.settings.rasterizeSVG??!1,useCropBox:g.settings.useCropBox??!1,downloadable:g.settings.downloadable??!1,preserveAnimation:g.settings.preserveAnimation??!1,mediaQueries:(e=F2(g.medias??{},{})).some(e=>e.id===F1)?e:[{id:F1,query:F1,displayName:F1,transformations:[],order:0},...e]};c({...i}),u({...i}),p(i.mediaQueries),a.setFieldsValue(i)}},[null==t?void 0:t.id,o,null==g?void 0:g.settings,a]),(0,tG.useEffect)(()=>{null==n||n(x)},[x,n]);let j=(0,tG.useCallback)((e,t)=>{u(e=>null===e?null:{...e,...t})},[]),w=(0,tG.useCallback)(e=>{p(e),u(t=>null===t?null:{...t,mediaQueries:e})},[]),k=(0,tG.useCallback)(()=>{(0,tI.isEmpty)(t)||null===f||a.validateFields().then(async e=>{var i;let n,a,o,s={name:e.name,description:e.description,format:e.format,group:(""===e.group?"":e.group)??"",quality:e.quality,highResolution:e.highResolution,preserveColor:e.preserveColor??!1,forceProcessICCProfiles:e.forceProcessICCProfiles??!1,preserveMetaData:e.preserveMetaData??!1,rasterizeSVG:e.rasterizeSVG??!1,useCropBox:e.useCropBox??!1,downloadable:e.downloadable??!1,preserveAnimation:e.preserveAnimation??!1},{medias:d,mediaOrder:u}=(i=f.mediaQueries??[],n={},a={},void 0===(o=i.find(e=>e.id===F1))?(n.default=[],a.default=0):(n.default=o.transformations.map(e=>({method:e.type,arguments:e.config})),a.default=o.order),i.forEach(e=>{if(e.id===F1)return;let t=(""===e.query?`media-${e.id}`:e.query)??`media-${e.id}`;n[t]=e.transformations.map(e=>({method:e.type,arguments:e.config})),a[t]=e.order}),{medias:n,mediaOrder:a}),m=await y({name:t.name,updateThumbnailConfig:{settings:s,medias:d,mediaOrder:u}});(0,tI.has)(m,"error")||(c({...f}),l.success(r("save-success")))}).catch(()=>{(0,iX.Ay)(new iX.$g("Validation failed"))})},[t,f,y,a,l,r]);return null==t?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)("div",{style:{textAlign:"center",color:"#999",marginTop:"50px"},children:r("image-thumbnails.editor.select-thumbnail")})}):(0,tq.jsxs)(uE.U,{loading:h,padded:!0,padding:{top:"small",right:"small",bottom:"small",left:"small"},children:[!(0,tI.isNull)(f)&&(0,tq.jsxs)(n6.L,{formProps:{form:a,onValuesChange:j},children:[(0,tq.jsx)(F9,{isNameDisabled:!0}),(0,tq.jsx)(Ee,{}),(0,tq.jsx)(F7,{mediaQueries:m,onChange:w})]},null==t?void 0:t.id),i&&null!=t?(0,tq.jsx)(FJ.Z,{targetId:"image-thumbnails-save-button",children:(0,tq.jsx)(az.$,{disabled:!x,loading:v,onClick:k,type:"primary",children:r("save")})}):null]})},Ei=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{tabsContainer:t` - height: 100%; - - .ant-tabs-content, - .ant-tabs-tabpane { - height: 100%; - } - `,tabs:t` - .ant-tabs-tab { - padding: ${i.paddingSM}px ${i.paddingXXS}px !important; - } - `}}),En=(0,tG.memo)(e=>{let{thumbnail:t,activeTabKey:i,onTabDirtyChange:n}=e,r=i===t.id,a=(0,tG.useCallback)(e=>{n(t.id,e)},[t.id,n]);return(0,tq.jsx)(Et,{isActive:r,onChange:a,selectedThumbnail:t})});En.displayName="ImageThumbnailsTabEditor";let Er=e=>{let{openedThumbnails:t,activeTabKey:i,onChangeTab:n,onCloseTab:r,onTabDirtyChange:a}=e,{styles:l}=Ei(),o=(0,tG.useMemo)(()=>t.map(e=>({key:e.thumbnail.id,label:`${e.thumbnail.name}${e.isDirty?" *":""}`,icon:(0,tq.jsx)(r9.I,{value:"image-thumbnail"}),children:(0,tq.jsx)(En,{activeTabKey:i,onTabDirtyChange:a,thumbnail:e.thumbnail})})),[t,i,a]);return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{justify:"flex-end",children:(0,tq.jsx)(FQ.J,{id:"image-thumbnails-save-button"})}),children:(0,tq.jsx)(ge.t,{activeKey:i,className:l.tabs,hasStickyHeader:!0,items:o,onChange:n,onClose:r,rootClassName:l.tabsContainer,type:"editable-card"})})},Ea=(0,iR.createStyles)(e=>{let{css:t}=e;return{emptyState:t` - text-align: center; - color: #999; - margin-top: 50px; - `}}),El=()=>{let{t:e}=(0,iQ.useTranslation)(),{styles:t}=Ea(),{openedThumbnails:i,activeTabKey:n,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}=(()=>{let[e,t]=(0,tG.useState)([]),[i,n]=(0,tG.useState)(void 0),r=(0,tG.useCallback)(i=>{if(!e.some(e=>e.thumbnail.id===i.id)){let e={thumbnail:i,isDirty:!1};t(t=>[...t,e])}n(i.id)},[e]),a=(0,tG.useCallback)(e=>{t(t=>{let r=t.findIndex(t=>t.thumbnail.id===e),a=t.filter(t=>t.thumbnail.id!==e);if(e===i){let e=t[r-1],i=t[r+1];n((null==e?void 0:e.thumbnail.id)??(null==i?void 0:i.thumbnail.id))}return a})},[i]),l=(0,tG.useCallback)(e=>{n(e)},[]),o=(0,tG.useCallback)((e,i)=>{t(t=>t.map(t=>t.thumbnail.id===e?{...t,isDirty:i}:t))},[]),s=(0,tG.useCallback)(()=>e.filter(e=>e.isDirty).map(e=>e.thumbnail.id),[e]);return{openedThumbnails:e,activeTabKey:i,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}})(),d=(0,tG.useMemo)(()=>s(),[s]);return(0,tq.jsx)(FG,{children:(0,tq.jsx)(Lp.v,{leftItem:{size:25,minSize:200,children:(0,tq.jsx)(FU,{activeTabKey:n,modifiedThumbnails:d,onThumbnailClose:a,onThumbnailSelect:e=>{r(e)},openedThumbnails:i})},rightItem:{size:75,children:0===i.length?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)("div",{className:t.emptyState,children:e("image-thumbnails.editor.select-thumbnail")})}):(0,tq.jsx)(Er,{activeTabKey:n,onChangeTab:l,onCloseTab:a,onTabDirtyChange:o,openedThumbnails:i})}})})},Eo={name:"Image Thumbnails",id:"image-thumbnails",component:"image-thumbnails",config:{translationKey:"widget.image-thumbnails",icon:{type:"name",value:"image-thumbnail"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"AssetManagement/Image Thumbnails",label:"navigation.image-thumbnails",className:"item-style-modifier",order:100,permission:pw.F.Thumbnails,perspectivePermission:pk.d.AssetThumbnails,widgetConfig:Eo}),tc.kL.get(td.K.widgetManager).registerWidget({name:"image-thumbnails",component:El});let e=tc.kL.get(td.K["DynamicTypes/TransformationDynamicTypeRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Cover"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Resize"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/ScaleByWidth"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/ScaleByHeight"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Trim"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Sepia"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Grayscale"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Sharpen"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Contain"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Crop"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Frame"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Rotate"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/Mirror"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/GaussianBlur"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/BrightnessSaturation"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/SetBackgroundColor"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/SetBackgroundImage"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/RoundCorners"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/AddOverlay"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/AddOverlayFit"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/ApplyMask"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/TiffOriginal"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/Transformation/OnePixel"]))}});let Es=e=>{let{isFetching:t,onAdd:i,onRefresh:n}=e,{t:r}=(0,iQ.useTranslation)();return(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsx)(iN.m,{title:r("refresh"),children:(0,tq.jsx)(lp.K,{disabled:t,icon:{value:"refresh"},onClick:n,title:r("refresh"),type:"link"})}),(0,tq.jsx)(ni.IconTextButton,{icon:{value:"new"},onClick:i,type:"link",children:r("new")})]})},Ed=(e,t)=>{for(let i of t){if(i.id===e)return i;if("children"in i&&Array.isArray(i.children)){let t=Ed(e,i.children);if(null!==t)return t}}return null},Ec=(e,t)=>{let i=t.toLowerCase();return e.filter(e=>{let n=e.name.toLowerCase().includes(i);if("children"in e&&Array.isArray(e.children)){let i=Ec(e.children,t).length>0;return n||i}return n}).map(e=>"children"in e&&Array.isArray(e.children)?{...e,children:Ec(e.children,t)}:e)},Ef=function(e,t,i){let n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[];return(0,tI.isNil)(e)?[]:[...e].sort((e,t)=>e.name.localeCompare(t.name,void 0,{sensitivity:"base"})).map(e=>{let r="children"in e&&Array.isArray(e.children),a=!r&&n.includes(e.id),l=r?tU().createElement(r9.I,{value:"folder",className:i}):tU().createElement(r9.I,{value:t,className:i});return{key:(0,tI.isUndefined)(e.id)?"":String(e.id),title:`${e.name}${a?" *":""}`,icon:l,children:r?Ef(e.children,t,i,n):void 0,isLeaf:!r,actions:r?[]:[{key:"delete",icon:"trash"}],allowDrag:!1,allowDrop:!1}})},Eu=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{icon:i` - color: ${t.colorTextTreeElement}; - `}}),Em=(0,tG.createContext)(void 0),Ep=e=>{let{children:t}=e,{data:i,isLoading:n,isFetching:r,refetch:a,error:l}=(0,k9.Tg)(),[o,s]=(0,tG.useState)([]);(0,tG.useEffect)(()=>{(0,tI.isUndefined)(l)||(0,uj.trackError)(new uj.ApiError(l))},[l]);let d=(0,tG.useMemo)(()=>({thumbnailsData:i,isLoading:n,isFetching:r,refetch:a,expandedKeys:o,setExpandedKeys:s}),[i,n,r,a,o,s]);return(0,tq.jsx)(Em.Provider,{value:d,children:t})},Eg=e=>{let{onThumbnailSelect:t,openedThumbnails:i,activeTabKey:n,modifiedThumbnails:r=[]}=e,{thumbnailsData:a,isLoading:l,isFetching:o,refetch:s,expandedKeys:d,setExpandedKeys:c}=(()=>{let e=(0,tG.useContext)(Em);if(void 0===e)throw Error("useVideoThumbnailsContext must be used within a VideoThumbnailsProvider");return e})(),[f,u]=(0,tG.useState)([]),[m,p]=(0,tG.useState)([]),[g,h]=(0,tG.useState)(""),[y,v]=(0,tG.useState)(0),{styles:b}=Eu(),{handleDelete:x,handleAdd:j}=(e=>{let{refetch:t}=e,i=(0,aB.Vl)(),{t:n}=(0,iQ.useTranslation)(),r=(0,uI.J)(),[a,{error:l}]=(0,k9.td)(),[o,{error:s}]=(0,k9.Gy)();return(0,tG.useEffect)(()=>{(0,tI.isUndefined)(l)||(0,iX.Ay)(new iX.hD(l))},[l]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(s)||(0,iX.Ay)(new iX.hD(s))},[s]),{handleDelete:(0,tG.useCallback)(async(e,r)=>{(0,tI.isNil)(e)||i.confirm({title:n("delete"),content:n("video-thumbnails.delete.confirm")+` "${e.name}"?`,onOk:async()=>{let i=await a({name:e.name});!(0,tI.has)(i,"error")&&(t(),(0,tI.isNil)(r)||r())}})},[t,n,a,i]),handleAdd:(0,tG.useCallback)(e=>{i.input({label:n("video-thumbnails.add.content"),rule:{pattern:/^[a-zA-Z0-9_-]+$/,message:n("video-thumbnails.add.validation.message")},onOk:async i=>{let a=i.replaceAll(/[^a-zA-Z0-9_-]/g,"");if(a.length<=2)return void r.error(n("video-thumbnails.add.validation.message"));let l=await o({createThumbnailConfig:{name:a}});!(0,tI.has)(l,"error")&&(t(),(0,tI.isNil)(e)||e(a))}})},[o,t,n,i,r])}})({refetch:s}),w=(0,tG.useRef)(null),k=(0,tG.useRef)(null);(0,tG.useEffect)(()=>{if(!(0,tI.isNil)(null==a?void 0:a.items)&&(u(a.items),!(0,tI.isNil)(w.current))){let e=w.current,i=a.items.find(t=>"name"in t&&t.name===e);!(0,tI.isUndefined)(i)&&"writeable"in i&&t(i),w.current=null}},[a]),(0,tG.useEffect)(()=>{if(""===g)p(f),null!==k.current&&(c(k.current),k.current=null);else{let e,t;null===k.current&&(k.current=d);let i=Ec(f,g);p(i),c((e=[],(t=i=>{for(let n of i)"children"in n&&Array.isArray(n.children)&&(e.push(n.id),t(n.children))})(i),e))}v(e=>e+1)},[g,f]);let{t:T}=(0,iQ.useTranslation)(),S=(0,tG.useMemo)(()=>Ef(m,"video-thumbnail",b.icon,r),[m,r]),C=async e=>{let t=Ed(e,f);!(0,tI.isNil)(t)&&"writeable"in t&&await x(t)},D=async(e,t)=>{"delete"===t&&await C(e)};return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(Es,{isFetching:o,onAdd:()=>{j(e=>{w.current=e})},onRefresh:s}),children:(0,tq.jsxs)(uE.U,{loading:l,padded:!0,children:[(0,tq.jsx)(ps.D,{onChange:e=>{h(e.target.value)},placeholder:T("search"),withoutAddon:!0}),(0,tq.jsx)(ap.s,{className:"h-full",gap:"mini",justify:o?"center":"start",vertical:!0,children:o?(0,tq.jsx)(ap.s,{align:"center",justify:"center",children:(0,tq.jsx)(sN.t,{asContainer:!0,tip:"Loading"})}):(0,tq.jsx)(tq.Fragment,{children:0===m.length?(0,tq.jsx)(uE.U,{none:!0}):(0,tq.jsx)(gQ.l,{defaultExpandedKeys:d,onActionsClick:D,onExpand:e=>{c(e)},onSelected:e=>{var i;let n;n=Ed(i=String(e),f),(0,tI.isNil)(n)||("children"in n&&Array.isArray(n.children)?(0,tI.isNil)(d)||!d.includes(i)?c([...d,i]):c(d.filter(e=>e!==i)):t(n))},selectedKeys:null!=n?[n]:[],treeData:S},`video-thumbnail-tree-${y}`)})})]})})},Eh=e=>{let{mediaQuery:t,onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),r=(0,tG.useMemo)(()=>t.transformations.map(e=>({type:e.type,data:e.config??{}})),[t.transformations]),a=(0,tG.useCallback)(e=>{null!=e&&i(e)},[i]),l=(0,tG.useMemo)(()=>tc.kL.get(td.K["DynamicTypes/VideoTransformationFieldCollectionRegistry"]),[]);return(0,tq.jsx)(FY.Z,{onChange:a,registry:l,title:n("video-thumbnails.editor.transformations"),value:r})},Ey=e=>{let{mediaQuery:t,onMediaQueryUpdate:i}=e,n=(0,tG.useRef)({}),r=(0,tG.useRef)(t);(0,tG.useEffect)(()=>{r.current=t});let a=(0,tG.useCallback)(e=>{let t=r.current;i({...t,transformations:e.map((e,i)=>{var r,a;let l=null==(r=t.transformations[i])?void 0:r.id;return""!==l&&null!=l?n.current[i]=l:(a=n.current)[i]??(a[i]=`transformation-${crypto.randomUUID()}`),{id:n.current[i],type:e.type,config:e.data}})})},[i]);return(0,tq.jsx)(FZ.p,{item:{name:"transformations"},children:(0,tq.jsx)(Eh,{mediaQuery:t,onChange:a})})},Ev=e=>{let{mediaQueries:t,activeKey:i,onTabChange:n,onTabClose:r,onMediaQueryUpdate:a}=e,l=(0,tG.useCallback)(e=>{a(e.id,e)},[a]),o=(0,tG.useCallback)((e,t)=>{"remove"===t&&"string"==typeof e&&r(e)},[r]),s=(0,tG.useMemo)(()=>t.map(e=>({key:e.id,label:e.displayName,closable:!0,children:(0,tq.jsx)(Ey,{mediaQuery:e,onMediaQueryUpdate:l})})),[t,l]);return(0,tq.jsx)(ge.t,{activeKey:i,hideAdd:!0,items:s,onChange:n,onEdit:o,size:"small",type:"editable-card"})},Eb=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},i=[];return Object.entries(e).forEach(e=>{let[n,r]=e;if("default"===n)return;let a={id:Ex(),query:n,displayName:n,transformations:r.map(e=>({id:Ej(),type:e.method,config:e.arguments??{}})),order:(0===t[n]?0:t[n])??0};i.push(a)}),i.sort((e,t)=>e.order-t.order)},Ex=()=>`mq-${(0,n7.u)()}`,Ej=()=>`tr-${(0,n7.u)()}`,Ew=e=>{let{mediaQueries:t,onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),r=(0,aB.Vl)(),[a,l]=(0,tG.useState)(t.length>0?t[0].id:void 0),o=(0,tG.useCallback)(()=>{r.input({title:n("video-thumbnails.editor.media-segments.add.title"),label:n("video-thumbnails.editor.media-segments.add.label"),okText:n("video-thumbnails.editor.media-segments.add.ok"),cancelButtonProps:{style:{display:"none"}},maskClosable:!0,rule:{required:!0},onOk:async e=>{let n=e.trim().replaceAll(/[^a-zA-Z0-9_\-+]/g,"");if(""===n||t.some(e=>e.query===n))return;let r={id:Ex(),query:n,displayName:n,transformations:[],order:t.length};i([...t,r]),l(r.id)}})},[t,i,r,n]),s=(0,tG.useCallback)((e,n)=>{i(t.map(t=>t.id===e?n:t))},[t,i]),d=(0,tG.useCallback)(e=>{let n=t.filter(t=>t.id!==e);i(n),a===e&&l(n.length>0?n[0].id:void 0)},[t,i,a]),c=(0,tq.jsx)(az.$,{icon:(0,tq.jsx)(r9.I,{options:{width:16,height:16},value:"plus-circle"}),onClick:o,size:"small",type:"link",children:n("video-thumbnails.editor.media-segments.new")});return(0,tq.jsx)(ay.Z,{border:!0,contentPadding:"small",extra:c,extraPosition:"end",theme:"card-with-highlight",title:n("video-thumbnails.editor.media-segments"),children:(0,tq.jsx)(Ev,{activeKey:a,mediaQueries:t,onMediaQueryUpdate:s,onTabChange:l,onTabClose:d})})},Ek=[{value:"average",label:"Average"},{value:"good",label:"Good"},{value:"best",label:"Best"}],ET=e=>{let{onPresettingChange:t}=e,{t:i}=(0,iQ.useTranslation)();return(0,tq.jsxs)(n6.L.Panel,{contentPadding:"extra-small",children:[(0,tq.jsx)(tJ.lV.Item,{label:i("video-thumbnails.editor.name"),name:"name",rules:[{required:!0,message:i("video-thumbnails.editor.name-required")}],children:(0,tq.jsx)(aR.p,{disabled:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:i("video-thumbnails.editor.description"),name:"description",children:(0,tq.jsx)(n4.f,{rows:4})}),(0,tq.jsx)(tJ.lV.Item,{label:i("video-thumbnails.editor.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("video-thumbnails.editor.presetting"),name:"presetting",children:(0,tq.jsx)(t8.l,{allowClear:!0,onChange:t,options:Ek})}),(0,tq.jsx)(tJ.lV.Item,{label:i("video-thumbnails.editor.video-bitrate"),name:"videoBitrate",children:(0,tq.jsx)(df.Y,{addonAfter:"kbps",min:0})}),(0,tq.jsx)(tJ.lV.Item,{label:i("video-thumbnails.editor.audio-bitrate"),name:"audioBitrate",children:(0,tq.jsx)(df.Y,{addonAfter:"kbps",min:0})})]})},ES={average:{videoBitrate:400,audioBitrate:128},good:{videoBitrate:600,audioBitrate:128},best:{videoBitrate:800,audioBitrate:196}},EC=e=>{let{selectedThumbnail:t,isActive:i=!0,onChange:n}=e,{t:r}=(0,iQ.useTranslation)(),[a]=tJ.lV.useForm(),l=(0,uI.J)(),o=(0,tG.useRef)(null),[s,d]=(0,tG.useState)(null),[c,f]=(0,tG.useState)(null),[u,m]=(0,tG.useState)(null),[p,g]=(0,tG.useState)([]),{data:h,isLoading:y}=(0,k9.p0)({name:(null==t?void 0:t.name)??""},{skip:(null==t?void 0:t.name)==null}),[v,{isLoading:b,error:x}]=(0,k9.pM)();(0,tG.useEffect)(()=>{(0,tI.isNil)(x)||(0,iX.Ay)(new iX.hD(x))},[x]);let j=(0,tG.useMemo)(()=>!((0,tI.isNull)(c)||(0,tI.isNull)(u))&&!(0,tI.isEqual)(c,u),[c,u]);(0,tG.useEffect)(()=>{if((null==t?void 0:t.id)!==s&&!(0,tI.isEmpty)(null==h?void 0:h.settings)&&null!==t){d(((null==t?void 0:t.id)===""?null:null==t?void 0:t.id)??null);let e=Eb(h.medias??{},{}),i=e.length>0?e:[{id:Ex(),query:"Default",displayName:r("video-thumbnails.editor.media-segments.default"),transformations:[],order:0}],n={name:h.settings.name??"",description:h.settings.description??"",group:h.settings.group??"",videoBitrate:h.settings.videoBitrate??null,audioBitrate:h.settings.audioBitrate??null,mediaSegments:i};f({...n}),m({...n}),g(i),a.setFieldsValue(n),o.current=h.settings.modificationDate??Date.now()}},[null==t?void 0:t.id,s,null==h?void 0:h.settings,a]),(0,tG.useEffect)(()=>{null==n||n(j)},[j,n]);let w=(0,tG.useCallback)((e,t)=>{m(e=>null===e?null:{...e,...t,mediaSegments:e.mediaSegments})},[]),k=(0,tG.useCallback)(e=>{g(e),m(t=>null===t?null:{...t,mediaSegments:e})},[]),T=(0,tG.useCallback)(e=>{let t=ES[e];null!=t&&(a.setFieldsValue({videoBitrate:t.videoBitrate,audioBitrate:t.audioBitrate}),m(e=>null===e?null:{...e,videoBitrate:t.videoBitrate,audioBitrate:t.audioBitrate}))},[a]),S=(0,tG.useCallback)(()=>{(0,tI.isNil)(t)||null===u||a.validateFields().then(async e=>{var i,n,a,s;let d,c,m={name:e.name,description:e.description,group:(""===e.group?"":e.group)??"",videoBitrate:e.videoBitrate,audioBitrate:e.audioBitrate},{medias:p,mediaOrder:g}=(a=[],s=u.mediaSegments??[],c={},(d={}).default=a.map(e=>({method:e.type,arguments:e.config})),c.default=0,s.forEach(e=>{let t=(""===e.query?`segment-${e.id}`:e.query)??`segment-${e.id}`;d[t]=e.transformations.map(e=>({method:e.type,arguments:e.config})),c[t]=e.order}),{medias:d,mediaOrder:c}),h=await v({name:t.name,updateThumbnailConfig:{settings:m,medias:p,mediaOrder:g}});"error"in h||((null==(n=h.data)||null==(i=n.settings)?void 0:i.modificationDate)!=null&&(o.current=h.data.settings.modificationDate),f({...u}),l.success(r("save-success")))}).catch(()=>{(0,iX.Ay)(new iX.$g("Validation failed"))})},[t,u,v,a,l,r]);return null==t?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)("div",{style:{textAlign:"center",color:"#999",marginTop:"50px"},children:r("video-thumbnails.editor.select-thumbnail")})}):(0,tq.jsxs)(uE.U,{loading:y,padded:!0,padding:{top:"small",right:"small",bottom:"small",left:"small"},children:[!(0,tI.isNull)(u)&&(0,tq.jsxs)(n6.L,{formProps:{form:a,onValuesChange:w},children:[(0,tq.jsx)(ET,{onPresettingChange:T}),(0,tq.jsx)(Ew,{mediaQueries:p,onChange:k})]},null==t?void 0:t.id),i&&null!=t?(0,tq.jsx)(FJ.Z,{targetId:"video-thumbnails-save-button",children:(0,tq.jsx)(az.$,{disabled:!j,loading:b,onClick:S,type:"primary",children:r("save")})}):null]})},ED=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{tabsContainer:t` - height: 100%; - - .ant-tabs-content, - .ant-tabs-tabpane { - height: 100%; - } - `,tabs:t` - .ant-tabs-tab { - padding: ${i.paddingSM}px ${i.paddingXXS}px !important; - } - `}}),EI=(0,tG.memo)(e=>{let{thumbnail:t,activeTabKey:i,onTabDirtyChange:n}=e,r=i===t.id,a=(0,tG.useCallback)(e=>{n(t.id,e)},[t.id,n]);return(0,tq.jsx)(EC,{isActive:r,onChange:a,selectedThumbnail:t})});EI.displayName="VideoThumbnailsTabEditor";let EM=e=>{let{openedThumbnails:t,activeTabKey:i,onChangeTab:n,onCloseTab:r,onTabDirtyChange:a}=e,{styles:l}=ED(),o=(0,tG.useMemo)(()=>t.map(e=>({key:e.thumbnail.id,label:`${e.thumbnail.name}${e.isDirty?" *":""}`,icon:(0,tq.jsx)(r9.I,{value:"video-thumbnail"}),children:(0,tq.jsx)(EI,{activeTabKey:i,onTabDirtyChange:a,thumbnail:e.thumbnail})})),[t,i,a]);return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{justify:"flex-end",children:(0,tq.jsx)(FQ.J,{id:"video-thumbnails-save-button"})}),children:(0,tq.jsx)(ge.t,{activeKey:i,className:l.tabs,hasStickyHeader:!0,items:o,onChange:n,onClose:r,rootClassName:l.tabsContainer,type:"editable-card"})})},EL=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{emptyState:i` - text-align: center; - color: ${t.colorTextDisabled}; - margin-top: 50px; - `}}),EF=()=>{let{t:e}=(0,iQ.useTranslation)(),{styles:t}=EL(),{openedThumbnails:i,activeTabKey:n,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}=(()=>{let[e,t]=(0,tG.useState)([]),[i,n]=(0,tG.useState)(void 0),r=(0,tG.useCallback)(i=>{if(!e.some(e=>e.thumbnail.id===i.id)){let e={thumbnail:i,isDirty:!1};t(t=>[...t,e])}n(i.id)},[e]),a=(0,tG.useCallback)(e=>{t(t=>{let r=t.findIndex(t=>t.thumbnail.id===e),a=t.filter(t=>t.thumbnail.id!==e);if(e===i){let e=t[r-1],i=t[r+1];n((null==e?void 0:e.thumbnail.id)??(null==i?void 0:i.thumbnail.id))}return a})},[i]),l=(0,tG.useCallback)(e=>{n(e)},[]),o=(0,tG.useCallback)((e,i)=>{t(t=>t.map(t=>t.thumbnail.id===e?{...t,isDirty:i}:t))},[]),s=(0,tG.useCallback)(()=>e.filter(e=>e.isDirty).map(e=>e.thumbnail.id),[e]);return{openedThumbnails:e,activeTabKey:i,handleOpenThumbnail:r,handleCloseTab:a,handleChangeTab:l,handleTabDirtyChange:o,getModifiedThumbnailIds:s}})(),d=(0,tG.useMemo)(()=>s(),[s]);return(0,tq.jsx)(Ep,{children:(0,tq.jsx)(Lp.v,{leftItem:{size:25,minSize:200,children:(0,tq.jsx)(Eg,{activeTabKey:n,modifiedThumbnails:d,onThumbnailSelect:e=>{r(e)},openedThumbnails:i})},rightItem:{size:75,children:0===i.length?(0,tq.jsx)(uE.U,{padded:!0,children:(0,tq.jsx)("div",{className:t.emptyState,children:e("video-thumbnails.editor.select-thumbnail")})}):(0,tq.jsx)(EM,{activeTabKey:n,onChangeTab:l,onCloseTab:a,onTabDirtyChange:o,openedThumbnails:i})}})})},EE={name:"Video Thumbnails",id:"video-thumbnails",component:"video-thumbnails",config:{translationKey:"widget.video-thumbnails",icon:{type:"name",value:"video-thumbnail"}}};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"AssetManagement/Video Thumbnails",label:"navigation.video-thumbnails",className:"item-style-modifier",order:101,permission:pw.F.Thumbnails,perspectivePermission:pk.d.AssetThumbnails,widgetConfig:EE}),tc.kL.get(td.K.widgetManager).registerWidget({name:"video-thumbnails",component:EF});let e=tc.kL.get(td.K["DynamicTypes/VideoTransformationDynamicTypeRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Resize"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ScaleByWidth"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ScaleByHeight"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Cut"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/SetFramerate"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/ColorChannelMixer"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/VideoTransformation/Mute"]))}});let EP=()=>{let[e,{isLoading:t,error:i}]=(0,TD.k9)(),[n,{isLoading:r,error:a}]=(0,TD.RB)(),[l,{isLoading:o,error:s}]=(0,TD.Rq)();return(0,tG.useEffect)(()=>{void 0!==i&&"error_invalid_argument"!==(0,iX.ok)(i)&&(0,iX.Ay)(new iX.hD(i))},[i]),(0,tG.useEffect)(()=>{void 0!==a&&(0,iX.Ay)(new iX.hD(a))},[a]),(0,tG.useEffect)(()=>{void 0!==s&&"error_invalid_argument"!==(0,iX.ok)(s)&&(0,iX.Ay)(new iX.hD(s))},[s]),{createNewMetadata:async()=>{let{data:t,error:i}=await e({createPredefinedMetadata:{name:"",type:"input",description:null,targetSubType:null,data:null,config:null,language:null,group:null}});return void 0!==i?{success:!1,errorKey:(0,iX.ok)(i)}:void 0!==t?{success:!0,data:t}:{success:!1}},createLoading:t,deleteMetadataById:async e=>{let{error:t}=await n({id:e});return{success:void 0===t}},deleteLoading:r,updateMetadataById:async(e,t)=>{let{error:i}=await l({id:e,updatePredefinedMetadata:{name:t.name??"",description:t.description??null,type:t.type.includes("metadata.")?t.type.split(".")[1]??t.type:t.type,targetSubType:t.targetSubType??null,data:t.data??null,config:t.config??null,language:t.language??null,group:t.group??null}});return void 0!==i?{success:!1,errorKey:(0,iX.ok)(i)}:{success:!0}},updateLoading:o}},EA=e=>{let{info:t,setPredefinedAssetMetadataRows:i}=e,n=t.row.original.id,{deleteMetadataById:r,deleteLoading:a}=EP(),l=async()=>{let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},EN=e=>{let{predefinedAssetMetadataRows:t,setPredefinedAssetMetadataRows:i}=e,{t:n}=(0,iQ.useTranslation)(),{updateMetadataById:r}=EP(),[a,l]=(0,tG.useState)([]),{showModal:o,closeModal:s,renderModal:d}=(0,TI.hS)({type:"error"}),c=(0,tG.useRef)({name:"",language:""}),f=(0,tc.Lt)(td.K["DynamicTypes/MetadataRegistry"]),u=(0,tc.Lt)(td.K["DynamicTypes/AssetRegistry"]),m=(0,tG.useMemo)(()=>f.getDynamicTypes().map(e=>({value:e.id,label:n("data-type."+e.id.split(".")[1])})),[n]),p=(0,tG.useMemo)(()=>u.getDynamicTypes().map(e=>({value:e.id,label:e.id})),[]),g=(0,tG.useMemo)(()=>t.map(e=>({...e,type:e.type.includes("metadata.")?e.type:`metadata.${e.type}`})),[t]),h=(0,cH.createColumnHelper)(),y=[h.accessor("type",{header:n("predefined-asset-metadata.columns.icon"),meta:{type:"asset-custom-metadata-icon",editable:!1},size:40,enableSorting:!1}),h.accessor("name",{header:n("predefined-asset-metadata.columns.name"),meta:{editable:!0},size:200}),h.accessor("group",{header:n("predefined-asset-metadata.columns.group"),meta:{editable:!0},size:150}),h.accessor("description",{header:n("predefined-asset-metadata.columns.description"),meta:{editable:!0},size:200}),h.accessor("type",{id:"typeSelect",header:n("predefined-asset-metadata.columns.type"),meta:{type:"select",editable:!0,config:{options:m}},size:130}),h.accessor("data",{header:n("predefined-asset-metadata.columns.value"),meta:{type:"asset-custom-metadata-value",editable:!0,autoWidth:!0},size:300}),h.accessor("config",{header:n("predefined-asset-metadata.columns.config"),meta:{editable:!0},size:150}),h.accessor("language",{header:n("predefined-asset-metadata.columns.language"),meta:{type:"language-select",editable:!0,config:{allowClear:!0}},size:100}),h.accessor("targetSubType",{header:n("predefined-asset-metadata.columns.target-type"),meta:{type:"select",editable:!0,config:{options:p}},size:130}),h.accessor("actions",{header:n("predefined-asset-metadata.columns.actions"),size:80,enableSorting:!1,cell:e=>(0,tq.jsx)(EA,{info:e,setPredefinedAssetMetadataRows:i})})],v=async e=>{let{columnId:n,value:a,rowData:s}=e,d=s.rowId,f="typeSelect"===n?"type":n,u={...s,..."type"===f?{data:null}:{},[f]:a};if(("name"===f||"language"===f)&&t.some(e=>e.rowId!==d&&e.name===u.name&&(e.language??null)===(u.language??null))){c.current={name:u.name,language:u.language??""},o();return}i(e=>e.map(e=>e.rowId===d?u:e)),l([{columnId:n,rowIndex:d}]);let{success:m,errorKey:p}=await r(u.id,u);m?l([]):("error_invalid_argument"===p&&(c.current={name:u.name,language:u.language??""},o()),i(e=>e.map(e=>e.rowId===d?s:e)))};return(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ul.x,{autoWidth:!0,columns:y,data:g,enableSorting:!0,modifiedCells:a,onUpdateCellData:v,resizable:!0,setRowId:e=>e.rowId}),(0,tq.jsxs)(d,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(ig.Button,{onClick:s,type:"primary",children:n("button.ok")})}),title:n("predefined-asset-metadata.duplicate-entry.title"),children:[(0,tq.jsx)("p",{children:n("predefined-asset-metadata.duplicate-entry.error")}),(0,tq.jsxs)("div",{style:{marginTop:8},children:[(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[n("predefined-asset-metadata.columns.name"),":"]})," ",c.current.name]}),(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[n("predefined-asset-metadata.columns.language"),":"]})," ",""!==c.current.language?c.current.language:"—"]})]})]})]})},ER=()=>{let{createNewMetadata:e,createLoading:t}=EP(),{showModal:i,closeModal:n,renderModal:r}=(0,TI.hS)({type:"error"}),[a,l]=(0,tG.useState)([]),[o,s]=(0,tG.useState)(!0),d=(0,tG.useRef)(null),[c,{error:f}]=(0,TD.Hw)(),u=async e=>{s(!0);let{data:t}=await c({body:{searchTerm:e??null}});l((null==t?void 0:t.items)===void 0||null===t.items?[]:(Array.isArray(t.items)?t.items:Object.values(t.items)).map(e=>({...e,rowId:e.id}))),s(!1)};(0,tG.useEffect)(()=>{(0,tI.isUndefined)(f)||(0,iX.Ay)(new iX.hD(f))},[f]),(0,tG.useEffect)(()=>{u()},[]);let m=e=>{u(e.length>0?e:void 0)},p=[...a].sort((e,t)=>t.creationDate-e.creationDate),g=!o&&0===a.length,h=async()=>{if(a.some(e=>"New Definition"===e.name&&(e.language??null)===null&&(e.targetSubType??null)===null))return void i();let{success:t,data:n,errorKey:r}=await e();t&&void 0!==n?l(e=>[{...n,rowId:(0,af.uuid)()},...e]):"error_invalid_argument"===r&&i()};return(0,tq.jsxs)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsx)(lp.K,{disabled:o,icon:{value:"refresh"},onClick:()=>{var e;let t=null==(e=d.current)?void 0:e.input;(0,tI.isNil)(t)||(t.value=""),u()}}),(0,tq.jsx)(ni.IconTextButton,{disabled:o||t,icon:{value:"new"},loading:t,onClick:h,children:(0,i6.t)("predefined-asset-metadata.new")})]}),renderTopBar:(0,tq.jsxs)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:[(0,tq.jsx)(pd.h,{children:(0,i6.t)("widget.predefined-asset-metadata")}),(0,tq.jsx)(ni.SearchInput,{loading:o,onClear:()=>{m("")},onSearch:m,placeholder:"Search",ref:d,withPrefix:!1,withoutAddon:!1})]}),children:[(0,tq.jsx)(uE.U,{loading:o,margin:{x:"extra-small",y:"none"},none:g,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(EN,{predefinedAssetMetadataRows:p,setPredefinedAssetMetadataRows:l})})}),(0,tq.jsxs)(r,{footer:(0,tq.jsx)(p9.j,{children:(0,tq.jsx)(ig.Button,{onClick:n,type:"primary",children:(0,i6.t)("button.ok")})}),title:(0,i6.t)("predefined-asset-metadata.duplicate-entry.title"),children:[(0,tq.jsx)("p",{children:(0,i6.t)("predefined-asset-metadata.duplicate-entry.error")}),(0,tq.jsxs)("div",{style:{marginTop:8},children:[(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[(0,i6.t)("predefined-asset-metadata.columns.name"),":"]})," New Definition"]}),(0,tq.jsxs)("div",{children:[(0,tq.jsxs)("strong",{children:[(0,i6.t)("predefined-asset-metadata.columns.language"),":"]})," —"]})]})]})]})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"AssetManagement/Predefined Asset Metadata",label:"navigation.predefined-asset-metadata",order:102,className:"item-style-modifier",permission:pw.F.AssetMetadata,perspectivePermission:pk.d.PredefinedAssetMetadata,widgetConfig:{name:"Predefined Asset Metadata",id:"predefined-asset-metadata",component:"predefined-asset-metadata",config:{translationKey:"widget.predefined-asset-metadata",icon:{type:"name",value:"custom-metadata"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"predefined-asset-metadata",component:ER})}}),ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K["DynamicTypes/IconSetRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/IconSet/PimcoreDefault"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/IconSet/Twemoji"]))}});var EV=i(75401);ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"System/About",label:"navigation.about",className:"item-style-modifier",order:9999,perspectivePermission:pk.d.About,useCustomMainNavItem:()=>{let{open:e}=(0,EV.c)();return{name:"SystemAbout",onClick:e}}})}});let Ez=e=>{let{hideCredentialsForm:t=!1}=e,{t:i}=(0,iQ.useTranslation)(),n=(0,CC.e)().getSlotComponents(yl.e.form.login.name).length>1;return t||!n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(m1.c,{plain:!0,children:i("login-form-additional-logins.or")})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K["App/ComponentRegistry/ComponentRegistry"]).registerToSlot(tu.eb.form.login.name,{name:"loginFormDivider",priority:0,component:Ez})}});var EB=i(24184),EO=i(35235),EK=i(86970);let E_=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),{data:r,isLoading:a,error:l}=(0,cV.useClassDefinitionGetIdentifierDataQuery)(),[o]=(0,cV.useClassDefinitionCreateMutation)(),{openConfiguration:s}=(0,EO.wB)();return(0,tG.useEffect)(()=>{void 0!==l&&(0,uj.trackError)(new uj.ApiError(l))},[l]),(0,tG.useEffect)(()=>{(null==r?void 0:r.suggestedId)!==void 0&&t.setFieldValue("uniqueIdentifier",r.suggestedId)},[null==r?void 0:r.suggestedId]),(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("class-definition.create-new"),children:(0,tq.jsx)(ni.Content,{loading:a,children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{void 0!==r&&o({createClassDefinition:{name:e.className,uid:e.uniqueIdentifier}}).then(e=>{t.resetFields(),i(),s({id:e.data.id,name:e.data.name,group:e.data.group,icon:e.data.icon})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("class-definition.class-name"),name:"className",rules:[{required:!0,message:e("class-definition.validation.enter-class-name")},{pattern:/^[A-Za-z][A-Za-z0-9_]*$/,message:e("class-definition.validation.class-name-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)(ni.Form.Item,{initialValue:null==r?void 0:r.suggestedId,label:e("class-definition.unique-identifier"),name:"uniqueIdentifier",rules:[{required:!0,message:e("class-definition.validation.enter-unique-identifier")},{validator:async(t,i)=>{if((null==r?void 0:r.existingIds.includes(i.toLowerCase()))===!0)return await Promise.reject(Error(e("class-definition.validation.unique-identifier-in-use")));await Promise.resolve()}},{pattern:/^[a-zA-Z0-9_]{0,63}$/,message:e("class-definition.validation.unique-identifier-format")}],children:(0,tq.jsx)(ni.Input,{maxLength:64})}),(0,tq.jsx)(n5.E,{type:"secondary",children:e("class-definition.unique-identifier-warning")}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})})},EH=(0,cH.createColumnHelper)(),E$=e=>{let{classId:t}=e,{data:i,isLoading:n}=(0,fk.hp)({id:t}),r=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[EH.accessor("key",{header:e("object-brick-key"),size:200}),EH.accessor("fieldName",{header:e("field-name"),size:200})],[e])})();return n?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:r,data:(null==i?void 0:i.items)??[],enableMultipleRowSelection:!1,resizable:!1})};var EW=i(89966),Eq=i(59438);let EG=()=>{let{t:e}=(0,iQ.useTranslation)(),t=(0,EW.g)(),i=(0,tG.useMemo)(()=>(0,tI.isNil)(null==t?void 0:t.fieldDefinitions)?[]:Object.values(t.fieldDefinitions).filter(e=>"data"===e.datatype&&(0,tI.isString)(e.name)&&e.name.trim().length>0).map(e=>({label:e.title??e.name,value:e.name})).sort((e,t)=>e.label.localeCompare(t.label)),[null==t?void 0:t.fieldDefinitions]);return(0,tq.jsx)(tJ.lV.Item,{name:"compositeIndices",children:(0,tq.jsxs)(Eq.e,{getItemTitle:(t,i)=>(null==t?void 0:t.index_key)??`${e("class-definition.composite-indices.index-label")} ${i+1}`,title:e("class-definition.composite-indices.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.index-name"),name:"index_key",children:(0,tq.jsx)(aR.p,{placeholder:e("class-definition.composite-indices.enter-index-name")})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.type"),name:"index_type",children:(0,tq.jsx)(t8.l,{options:[{label:e("class-definition.composite-indices.type-query"),value:"query"},{label:e("class-definition.composite-indices.type-localized-query"),value:"localized_query"},{label:e("class-definition.composite-indices.type-store"),value:"store"},{label:e("class-definition.composite-indices.type-localized-store"),value:"localized_store"}],placeholder:e("class-definition.composite-indices.select-index-type")})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.composite-indices.columns"),name:"index_columns",children:(0,tq.jsx)(t8.l,{mode:"tags",options:i,placeholder:e("class-definition.composite-indices.select-column-names")})})]})})},EU=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance(),i=tJ.lV.useWatch("name",t),n=t.getFieldValue("id");return(0,tG.useEffect)(()=>{if((0,tI.isString)(i)){let e="Pimcore\\Model\\DataObject\\"+(0,tI.upperFirst)(i);t.getFieldValue("phpClassName")!==e&&t.setFieldValue("phpClassName",e,{triggerChange:!0})}},[i]),(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("class-definition.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("name"),name:"name",rules:[{required:!0,message:e("class-definition.general-settings.enter-name")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.description"),name:"description",children:(0,tq.jsx)(n4.f,{rows:3})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.id"),name:"id",children:(0,tq.jsx)(aR.p,{disabled:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.php-class-name"),name:"phpClassName",children:(0,tq.jsx)(aR.p,{disabled:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.icon"),name:"icon",children:(0,tq.jsx)(Lv.N,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.listing-parent-class"),name:"listingParentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.use-traits"),name:"useTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.listing-use-traits"),name:"listingUseTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.link-generator-reference"),name:"linkGeneratorReference",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("class-definition.general-settings.preview-generator-reference"),name:"previewGeneratorReference",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{name:"allowInherit",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.allow-inherit")})}),(0,tq.jsx)(tJ.lV.Item,{name:"allowVariants",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.allow-variants")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showVariants",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-variants")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showAppLoggerTab",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-app-logger-tab")})}),(0,tq.jsx)(tJ.lV.Item,{name:"showFieldLookup",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.show-field-lookup")})}),(0,tq.jsx)(tJ.lV.Item,{name:"enableGridLocking",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.enable-grid-locking")})}),(0,tq.jsx)(tJ.lV.Item,{name:"encryption",valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.general-settings.encrypt-data")})})]}),(0,tq.jsxs)(ni.FormKit.Panel,{title:e("class-definition.property-visibility.title"),children:[(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","id"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.id-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","id"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.id-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","key"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.key-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","key"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.key-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","path"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.path-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","path"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.path-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","modificationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.modification-date-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","modificationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.modification-date-search")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","grid","creationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.creation-date-grid")})}),(0,tq.jsx)(tJ.lV.Item,{name:["propertyVisibility","search","creationDate"],valuePropName:"checked",children:(0,tq.jsx)(sA.d,{labelRight:e("class-definition.property-visibility.creation-date-search")})})]}),(0,tq.jsx)(EG,{}),!(0,tI.isNil)(n)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("class-definition.object-bricks.title"),children:(0,tq.jsx)(E$,{classId:n})})]}),[])};var EQ=i(23004);let EJ=e=>{let[t,i]=(0,EQ.lr)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>{var e;return t({id:r.id,classDefinitionUpdate:{configuration:{children:n().children??[]},values:{...r,icon:(null==(e=r.icon)?void 0:e.value)??""}}})},i]};var EZ=i(54436);let EY=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),{configuration:r}=(0,EZ.R6)(),{data:a,isLoading:l,error:o}=(0,cV.useClassCustomLayoutGetIdentifierDataQuery)({classDefinitionId:r.id}),[s]=(0,cV.useClassCustomLayoutCreateMutation)(),{openConfiguration:d}=(0,EO.wB)();return(0,tG.useEffect)(()=>{void 0!==o&&(0,uj.trackError)(new uj.ApiError(o))},[o]),(0,tG.useEffect)(()=>{(null==a?void 0:a.suggestedId)!==void 0&&t.setFieldValue("uniqueIdentifier",a.suggestedId)},[null==a?void 0:a.suggestedId]),(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("field-definitions.create-new-class-definition"),children:(0,tq.jsx)(ni.Content,{loading:l,children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{void 0!==a&&s({customLayoutId:e.uniqueIdentifier,customLayoutNew:{classId:r.id,name:e.name}}).then(e=>{t.resetFields(),i(),d({id:e.data.id,name:e.data.name,group:e.data.group,icon:e.data.icon})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("name"),name:"name",rules:[{required:!0,message:e("field-definitions.validation.enter-class-name")},{pattern:/^[-A-Za-z0-9_]*$/,message:e("field-definitions.validation.class-name-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)(ni.Form.Item,{initialValue:null==a?void 0:a.suggestedId,label:e("field-definitions.validation.unique-identifier"),name:"uniqueIdentifier",rules:[{required:!0,message:e("field-definitions.validation.enter-unique-identifier")},{validator:async(t,i)=>{if((null==a?void 0:a.existingIds.includes(i.toLowerCase()))===!0)return await Promise.reject(Error(e("field-definitions.validation.unique-identifier-in-use")));await Promise.resolve()}},{pattern:/^[-a-zA-Z0-9_]{0,63}$/,message:e("field-definitions.validation.unique-identifier-format")}],children:(0,tq.jsx)(ni.Input,{maxLength:64})}),(0,tq.jsx)(n5.E,{type:"secondary",children:e("class-definition.unique-identifier-warning")}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})})},EX=()=>{let{generalSettings:e}=(0,f$.dq)(),{t}=(0,iQ.useTranslation)();return(0,tI.isNil)(e)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(ni.FormKit.Panel,{title:t("general"),children:[(0,tq.jsx)(ig.Form.Item,{label:t("name"),name:"name",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("class-definition.custom-layouts.default-layout"),name:"default_layout",valuePropName:"checked",children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("description"),name:"description",children:(0,tq.jsx)(ni.TextArea,{rows:3})})]})},E0=()=>({accessor:e=>e.layoutDefinition??void 0}),E1=()=>{let{configuration:e}=(0,EZ.R6)();return(0,cV.useClassCustomLayoutCollectionQuery)({classIds:e.id})},E2=e=>(0,cV.useClassCustomLayoutGetQuery)({customLayoutId:e.id});var E3=i(13604),E6=i(25277);let{LayoutProvider:E4,useLayout:E5}=(0,E6.v)(),E7=e=>{let{fieldDefinitionRegistry:t}=(0,E3.t0)();return(0,tq.jsx)(E4,{...e,fieldDefinitionRegistry:t})},E8=e=>{let[t,i]=(0,EQ.Zz)(e),{getLayout:n}=E5(),{generalSettings:r}=(0,f$.dq)();return[()=>t({customLayoutId:String(r.id),customLayoutUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},E9=e=>{let[t,i]=(0,EQ.Zq)(e);return[e=>t({customLayoutId:String(e.id)}),i]};var Pe=i(11182),Pt=i(38939);let Pi=()=>{var e,t,i,n;let{configuration:r}=(0,EZ.R6)(),a=(0,E3.t0)(),l=null==(t=a.customLayouts)||null==(e=t.parent)?void 0:e.area,o=null==(n=a.customLayouts)||null==(i=n.parent)?void 0:i.useLayout,{fieldDefinitionRegistry:s}=a;if(void 0===o)throw Error("Custom Layout Parent: useLayout is not defined in editor settings");if(void 0===l)throw Error("Custom Layout Parent: area is not defined in editor settings");let{structure:d,fieldDefinitions:c,getLayout:f}=o(),u=(0,tG.useMemo)(()=>(e,t)=>{var i;let n=c[e.key];if(void 0===n)return t;let r={type:"field-definition",icon:n.icon??{value:"folder"},title:n.title??n.name??e.title,data:{area:l,internal:{id:e.key,fieldDefinition:n,path:(null==(i=e.meta)?void 0:i.currentPath)??[]},external:f({startNode:e.key.toString()})}};return(0,tq.jsx)(ni.Draggable,{info:r,children:t})},[c,l,f]),m=tU().useMemo(()=>void 0===d?[]:[(0,Pt.buildTree)({structure:d,fieldDefinitions:c,registry:s,itemCallback:e=>{let{fieldDefinition:t,initialTreeItem:i}=e;return{...i,className:"ant-tree-node--has-drag-and-drop"}}}).children].flat(),[d,c]);return(0,tq.jsxs)(ni.Content,{padded:!0,padding:{y:"small",x:"mini"},children:[(0,tq.jsx)(ni.Header,{style:{flexShrink:0},title:r.name}),(0,tq.jsx)(ni.Content,{overflow:{x:"hidden",y:"auto"},style:{minHeight:0,flex:1},children:(0,tq.jsx)(ni.TreeElement,{defaultExpandAll:!0,titleRender:u,treeData:m})})]})};var Pn=i(28587),Pr=i(4839);let Pa=e=>"application/json"===e.type||e.name.endsWith(".json"),Pl=()=>{let{t:e}=(0,iQ.useTranslation)(),{useDetailLayoutQuery:t,useDetailGeneralSettingsQuery:i,importExportConfig:n,useItemsDeleteMutation:r}=(0,E3.t0)(),{activeConfiguration:a,closeConfiguration:l}=(0,EO.wB)(),o=(0,ni.useMessage)(),s=(0,ni.useFormModal)(),[d,c]=(0,tG.useState)(!1),f=void 0!==r,[u,m]=(r??(()=>[async()=>{},{}]))(),p=!!f&&!0===m.isLoading,g=null==a?void 0:a.id,h=null==t?void 0:t({id:g??""}),y=i({id:g??""});if((0,tI.isNil)(n))return(0,tq.jsx)(tq.Fragment,{});let{getExportUrl:v,getImportUrl:b,validateFile:x=Pa,acceptFileTypes:j=".json,application/json",acceptMimeTypes:w=["application/json"],successMessageKey:k="class-definition.import-success"}=n,T=(0,tI.isNil)(g)?"":b(g);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(ni.ButtonGroup,{items:[(0,tq.jsx)(ni.IconButton,{icon:{value:"export"},onClick:()=>{if((0,tI.isNil)(g))return;let e=document.createElement("a");e.href=v(g),e.style.display="none",document.body.appendChild(e),e.click(),document.body.removeChild(e)},title:e("export"),type:"link"},"export"),(0,tq.jsx)(ni.IconButton,{icon:{value:"upload-import"},onClick:()=>{c(!0)},title:e("import"),type:"link"},"import"),...f?[(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:p,onClick:()=>{(0,tI.isNil)(g)||(0,tI.isNil)(a)||s.confirm({title:e("delete"),content:e("custom-layout.delete.confirmation"),okText:e("delete"),onOk:async()=>{try{await u({id:g}),l(a),o.success(e("custom-layout.delete.success"))}catch(e){(0,iX.Ay)(new iX.hD(e))}}})},title:e("delete"),type:"link"},"delete")]:[]]}),(0,tq.jsx)(Pr.z,{accept:j,acceptMimeTypes:w,action:T,onOpenChange:c,onUploadSuccess:()=>{o.success(e(k)),c(!1),null==h||h.refetch(),null==y||y.refetch()},open:d,title:e("class-definition.import"),uploadButtonLabel:e("import"),validateFile:x})]})};var Po=i(33627),Ps=i(11498);let Pd=()=>{let{activeConfiguration:e,setDetailView:t}=(0,EO.wB)(),{useDetailGeneralSettingsQuery:i,useDetailLayoutQuery:n,useDetailLayoutAccessor:r,customLayouts:a,LayoutProvider:l}=(0,E3.t0)(),o=null==n?void 0:n({id:e.id}),s=null==o?void 0:o.error,d=(0,tG.useMemo)(()=>null==r?void 0:r(),[r]),c=i({id:e.id}),{isLoading:f,isFetching:u,refetch:m,data:p}=c,g=c.error,[h,y]=(0,tG.useState)(null==o?void 0:o.data),[v,b]=(0,tG.useState)(0);return(0,tG.useEffect)(()=>{y(null==o?void 0:o.data)},[null==o?void 0:o.data]),(0,tG.useEffect)(()=>{if(void 0!==d&&void 0!==p){let e=d.accessor(p);if(void 0===e)return void y({name:"pimcore_root",children:[],fieldtype:"panel",bodyStyle:"",border:!1,collapsible:!1,title:"",datatype:"layout",collapsed:!1,height:0,width:0,icon:{type:"name",value:"none"},labelAlign:"left",labelWidth:100,layout:null,locked:!1,region:"",type:"layout",additionalAttributes:{}});y(e)}},[p,d]),(0,tG.useEffect)(()=>{void 0!==s&&"status"in s&&404===s.status?y({name:"pimcore_root",children:[],fieldtype:"panel",bodyStyle:"",border:!1,collapsible:!1,title:"",datatype:"layout",collapsed:!1,height:0,width:0,icon:{type:"name",value:"none"},labelAlign:"left",labelWidth:100,layout:null,locked:!1,region:"",type:"layout",additionalAttributes:{}}):void 0!==s&&(0,uj.trackError)(new uj.ApiError(s))},[s]),(0,tG.useEffect)(()=>{void 0!==g&&(0,uj.trackError)(new uj.ApiError(g))},[g]),(0,tq.jsx)(f$.Ts,{generalSettings:p,children:(0,tq.jsx)(l,{layout:h,children:(0,tq.jsx)(ni.ContentLayout,{className:"absolute-stretch",renderToolbar:(0,tq.jsxs)(ni.Toolbar,{justify:"space-between",padding:{x:"none"},theme:"secondary",children:[(0,tq.jsx)(Pl,{}),(0,tq.jsxs)(ni.Flex,{gap:"mini",children:[(0,tq.jsxs)(ni.Flex,{gap:"mini",children:[(0,tq.jsx)(ni.IconButton,{icon:{value:"refresh"},onClick:()=>{null==o||o.refetch(),m(),b(e=>e+1),t("general")}}),(null==a?void 0:a.ModalContent)!==void 0&&(0,tq.jsx)(Pe.q,{})]}),(0,tq.jsx)(Po.x,{})]})]}),children:(0,tq.jsx)(ni.Content,{loading:(null==o?void 0:o.isLoading)===!0||f||(null==o?void 0:o.isFetching)===!0||u,children:(0,tq.jsx)(ni.ConfigLayout,{leftItem:{minSize:250,maxSize:350,size:250,children:(0,tq.jsx)(Pi,{})},resizeAble:!0,rightItem:{children:(0,tq.jsx)(ni.ConfigLayout,{leftItem:{minSize:250,maxSize:350,size:250,children:(0,tq.jsx)(Ps.C,{allowExternalDrop:!0})},resizeAble:!0,rightItem:{children:(0,tq.jsx)(Pn.R,{})}})}})})})},v)})},Pc=()=>{let{activeConfiguration:e}=(0,EO.wB)();return void 0===e?(0,tq.jsx)(ni.Content,{centered:!0,children:"Create a new Custom Layout or edit an existing one"}):(0,tq.jsx)(Pd,{},String(e.id))},Pf=()=>{let{openModal:e}=(0,EK.Ux)(),{AddModal:t}=(0,E3.t0)();return void 0===t?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.IconTextButton,{icon:{value:"new-something"},onClick:e,children:"New layout"})},Pu=()=>{var e;let{t}=(0,iQ.useTranslation)(),{useItemsQuery:i}=(0,E3.t0)(),{isLoading:n,data:r}=i(),{setActiveConfiguration:a,activeConfiguration:l}=(0,EO.wB)(),o=tU().useMemo(()=>void 0===r?[]:r.items.map(e=>({key:e.id,label:e.name,onClick:()=>{a(e)}})),[r,a]);return(0,tq.jsx)(tq.Fragment,{children:n||void 0===r||(null==r||null==(e=r.items)?void 0:e.length)===0?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(ni.Dropdown,{menu:{items:o},children:(0,tq.jsx)(ni.IconTextButton,{icon:{value:"edit"},children:void 0!==l?l.name:t("field-definitions.select-item-configuration")})})})},Pm=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsx)(ni.Toolbar,{padding:{x:"none"},position:"content",theme:"secondary",children:(0,tq.jsx)(ni.Header,{title:e("field-definitions.custom-layout-title"),children:(0,tq.jsxs)(ni.Split,{children:[(0,tq.jsx)(Pf,{}),(0,tq.jsx)(Pu,{})]})})})};var Pp=i(69933);let Pg=()=>(0,tq.jsx)(EK.e,{children:(0,tq.jsx)(ni.ContentLayout,{renderTopBar:(0,tq.jsx)(Pm,{}),children:(0,tq.jsxs)(ni.Content,{style:{height:"60vh"},children:[(0,tq.jsx)(Pp.A,{}),(0,tq.jsx)(Pc,{})]})})}),Ph={getExportUrl:e=>`${(0,tD.$)()}/class/custom-layout/export/${e}`,getImportUrl:e=>`${(0,tD.$)()}/class/custom-layout/import/${e}`,successMessageKey:"custom-layout.import-success"},Py=()=>(0,tq.jsx)(EB.K,{AddModal:EY,GeneralSettingsFormFields:EX,LayoutProvider:E7,area:["class","custom-layout"],customLayouts:{parent:{area:["class"],useLayout:EW.g}},importExportConfig:Ph,useDetailGeneralSettingsQuery:E2,useDetailLayoutAccessor:E0,useDetailUpdateMutation:E8,useItemsDeleteMutation:E9,useItemsQuery:E1,useLayout:E5,view:(0,tq.jsx)(Pg,{})}),Pv={getExportUrl:e=>`${(0,tD.$)()}/class/definition/configuration-view/detail/${e}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/definition/configuration-view/detail/${e}/import`},Pb=()=>(0,tq.jsx)(EB.K,{AddModal:E_,GeneralSettingsFormFields:EU,area:["class"],customLayouts:{ModalContent:(0,tq.jsx)(Py,{})},importExportConfig:Pv,useDetailGeneralSettingsQuery:fk.tc,useDetailLayoutQuery:fk.PA,useDetailUpdateMutation:EJ,useItemsDeleteMutation:fk.zB,useItemsQuery:fk.HE});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/ClassDefinitions",label:"navigation.class-definitions",className:"class",order:100,permission:pw.F.Classes,perspectivePermission:pk.d.ClassDefinitions,widgetConfig:{name:"classes",id:"class-definitions",component:"class-definitions",config:{translationKey:"widget.class-definitions",icon:{type:"name",value:"class"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"class-definitions",component:Pb})}});var Px=i(97264);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/BulkExport",label:"navigation.bulk-export",order:700,permission:MX.UserPermission.Classes,perspectivePermission:I8.NavPermission.BulkExport,useCustomMainNavItem:()=>{let{open:e}=(0,Px.$)();return{name:"DataModelDefinitionsBulkExport",onClick:e}}})}});var Pj=i(18087);ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/BulkImport",label:"navigation.bulk-import",order:800,permission:MX.UserPermission.Classes,perspectivePermission:I8.NavPermission.BulkImport,useCustomMainNavItem:()=>{let{open:e}=(0,Pj.G)();return{name:"DataModelDefinitionsBulkImport",onClick:e}}})}});let Pw=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),[r]=(0,fk.XA)(),{openConfiguration:a}=(0,EO.wB)();return(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("field-collection.create-new"),children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{t.resetFields(),r({createFieldCollection:{key:e.key}}).then(e=>{i(),a({id:e.data.key,name:e.data.title??e.data.key})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("field-collection.key"),name:"key",rules:[{required:!0,message:e("field-collection.validation.enter-key")},{pattern:/^[A-Za-z][A-Za-z0-9_]*$/,message:e("field-collection.validation.key-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})},Pk=(0,cH.createColumnHelper)(),PT=e=>{let{collectionKey:t}=e,{data:i,isLoading:n}=(0,fk.sD)({key:t}),r=(()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[Pk.accessor("class",{header:e("field-collection.general-settings.usages.class"),size:200}),Pk.accessor("field",{header:e("field-collection.general-settings.usages.field"),size:200})],[e])})();return n?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:r,data:(null==i?void 0:i.items)??[],enableMultipleRowSelection:!1,resizable:!1})},PS=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance().getFieldValue("id");return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("field-collection.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.title-label"),name:"title",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("field-collection.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})})]}),!(0,tI.isNil)(t)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("field-collection.general-settings.usages.title"),children:(0,tq.jsx)(PT,{collectionKey:t})})]}),[t])},PC=e=>{let[t,i]=(0,fk.M0)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>t({key:null==r?void 0:r.id,fieldCollectionUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},PD=e=>{let t=String(e.id),i=(0,fk.cj)({key:t});return void 0!==i.data?{...i,data:{...i.data,id:i.data.key}}:i},PI=e=>{let t=String(e.id);return(0,fk.AY)({key:t})},PM=()=>{let e=(0,fk.kJ)({}),t=(0,tG.useMemo)(()=>{if(void 0===e.data||!("items"in e.data))return;let t=[];for(let r of e.data.items){var i,n;if("children"in r)for(let e of r.children)t.push({id:e.key,name:e.name,group:e.group??void 0,icon:{value:(null==(i=e.icon)?void 0:i.value)!==void 0&&""!==e.icon.value?e.icon.value:"field-collection-field"}});else t.push({id:r.key,name:r.name,group:r.group??void 0,icon:{value:(null==(n=r.icon)?void 0:n.value)!==void 0&&""!==r.icon.value?r.icon.value:"field-collection-field"}})}return{...e.data,items:t}},[e.data]);return void 0!==t?{...e,data:t}:e},PL=function(){for(var e=arguments.length,t=Array(e),i=0;in({key:String(e.id)}),r]},PF={getExportUrl:e=>`${(0,tD.$)()}/class/field-collection/${String(e)}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/field-collection/${String(e)}/import`},PE=()=>(0,tq.jsx)(EB.K,{AddModal:Pw,GeneralSettingsFormFields:PS,area:["fieldcollection"],importExportConfig:PF,useDetailGeneralSettingsQuery:PD,useDetailLayoutQuery:PI,useDetailUpdateMutation:PC,useItemsDeleteMutation:PL,useItemsQuery:PM});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/FieldCollections",label:"navigation.field-collections",className:"fieldcollection",order:200,permission:pw.F.FieldCollections,perspectivePermission:pk.d.FieldCollections,widgetConfig:{name:"field-collections",id:"field-collections",component:"field-collections",config:{translationKey:"widget.field-collections",icon:{type:"name",value:"field-collection-field"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"field-collections",component:PE})}});let PP=()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=ni.Form.useForm(),{closeModal:i}=(0,EK.Ux)(),n=(0,tG.useRef)(null),[r]=(0,fk.ll)(),{openConfiguration:a}=(0,EO.wB)();return(0,tq.jsx)(EK.dI,{afterOpenChange:e=>{var t;e&&(null==(t=n.current)||t.focus())},focusTriggerAfterClose:!1,onOk:()=>{t.submit()},title:e("object-brick.create-new"),children:(0,tq.jsxs)(ni.Form,{form:t,layout:"vertical",onFinish:e=>{t.resetFields(),r({createObjectBrick:{key:e.key}}).then(e=>{i(),a({id:e.data.key,name:e.data.title??e.data.key})}).catch(e=>{(0,uj.trackError)(new uj.ApiError(e))})},children:[(0,tq.jsx)(ni.Form.Item,{label:e("object-brick.key"),name:"key",rules:[{required:!0,message:e("object-brick.validation.enter-key")},{pattern:/^[a-zA-Z]\w*$/,message:e("object-brick.validation.key-format")}],children:(0,tq.jsx)(ni.Input,{ref:n})}),(0,tq.jsx)("button",{style:{display:"none"},type:"submit"})]})})};var PA=i(8320);let PN=e=>{let{blockIndex:t,value:i,onChange:n}=e,{t:r}=(0,iQ.useTranslation)(),{operations:a}=(0,PA.S)(),l=a.getValue(["classDefinitions",t,"classname"]),o=(0,tG.useRef)(l);(0,tG.useEffect)(()=>{void 0!==o.current&&o.current!==l&&(null==n||n(null)),o.current=l},[l]);let{data:s,isFetching:d}=(0,fk.hp)({id:l},{skip:void 0===l||""===l}),c=(0,tG.useMemo)(()=>{if((null==s?void 0:s.items)===void 0)return[];let e=new Set;return s.items.reduce((t,i)=>(e.has(i.fieldName)||(e.add(i.fieldName),t.push({label:i.fieldName,value:i.fieldName})),t),[])},[s]);return(0,tq.jsx)(t8.l,{disabled:void 0===l||""===l,loadingSkeleton:d,onChange:n,options:c,placeholder:r("object-brick.class-definitions-block.select-fieldname"),value:i})},PR=()=>{let{t:e}=(0,iQ.useTranslation)(),{data:t,isFetching:i}=(0,fk.qA)(),n=(0,tG.useMemo)(()=>(null==t?void 0:t.items)===void 0?[]:t.items.map(e=>({label:e.name,value:e.id})),[t]),r=(0,tG.useMemo)(()=>{var e;let i={};return null==t||null==(e=t.items)||e.forEach(e=>{i[e.id]=e.name}),i},[t]);return(0,tq.jsx)(tJ.lV.Item,{name:"classDefinitions",children:(0,tq.jsx)(Eq.e,{getItemTitle:t=>(null==t?void 0:t.classname)!==void 0?r[t.classname]??t.classname:e("object-brick.class-definitions-block.new-entry"),title:e("object-brick.class-definitions-block.title"),children:t=>{let{blockIndex:r}=t;return(0,tq.jsxs)(ni.FormKit.Panel,{children:[(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.class-definitions-block.classname"),name:"classname",children:(0,tq.jsx)(t8.l,{loadingSkeleton:i,options:n,placeholder:e("object-brick.class-definitions-block.select-classname"),showSearch:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.class-definitions-block.fieldname"),name:"fieldname",children:(0,tq.jsx)(PN,{blockIndex:r})})]})}})})},PV=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("object-brick.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.parent-class"),name:"parentClass",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.title-label"),name:"title",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("object-brick.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})})]}),(0,tq.jsx)(PR,{})]}),[])},Pz=e=>{let[t,i]=(0,fk.q9)(e),{getLayout:n}=(0,EW.g)(),{generalSettings:r}=(0,f$.dq)();return[()=>t({key:null==r?void 0:r.id,objectBrickUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},PB=()=>{let{generalSettings:e}=(0,f$.dq)(),{t}=(0,iQ.useTranslation)();return(0,tI.isNil)(e)?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsxs)(ni.FormKit.Panel,{title:t("general"),children:[(0,tq.jsx)(ig.Form.Item,{label:t("name"),name:"name",children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("class-definition.custom-layouts.default-layout"),name:"default",valuePropName:"checked",children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(ig.Form.Item,{label:t("description"),name:"description",children:(0,tq.jsx)(ni.TextArea,{rows:3})})]})},PO=()=>({accessor:e=>e.layoutDefinition??void 0}),PK=()=>{let{data:e}=(0,cV.useClassObjectBrickClassesQuery)(),t=null==e?void 0:e.items.map(e=>e.id).join(",");return(0,cV.useClassCustomLayoutCollectionQuery)({classIds:t},{skip:void 0===t})},P_=e=>{let{configuration:t}=(0,EZ.R6)(),i=String((null==t?void 0:t.id)??""),n=String((null==e?void 0:e.id)??""),r=(0,cV.useClassObjectBrickCustomLayoutGetQuery)({key:i,customLayoutId:n},{skip:""===i||""===n});return void 0!==r.error&&"status"in r.error&&404===r.error.status?{...r,error:void 0,isError:!1,data:{id:n,name:"",description:"",creationDate:0,modificationDate:0,userOwner:0,classId:"",default:!1,layoutDefinition:null}}:r},{LayoutProvider:PH,useLayout:P$}=(0,E6.v)(),PW=e=>{let{fieldDefinitionRegistry:t}=(0,E3.t0)();return(0,tq.jsx)(PH,{...e,fieldDefinitionRegistry:t})},Pq=e=>{let[t,i]=(0,cV.useClassObjectBrickCustomLayoutUpdateMutation)(e),{getLayout:n}=P$(),{generalSettings:r}=(0,f$.dq)(),{configuration:a}=(0,EZ.R6)(),{activeConfiguration:l}=(0,EO.wB)(),o=String((null==a?void 0:a.id)??""),s=String((null==l?void 0:l.id)??"");return[()=>t({key:o,customLayoutId:s,customLayoutUpdate:{configuration:{children:n().children??[]},values:{...r}}}),i]},{LayoutProvider:PG,useLayout:PU}=(0,E6.v)(),PQ=()=>{let{configuration:e}=(0,EZ.R6)(),t=String((null==e?void 0:e.id)??""),i=(0,tG.useMemo)(()=>({getExportUrl:e=>`${(0,tD.$)()}/class/object-brick/${t}/custom-layout/${e}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/object-brick/${t}/custom-layout/${e}/import`,successMessageKey:"custom-layout.import-success"}),[t]);return(0,tq.jsx)(EB.K,{GeneralSettingsFormFields:PB,LayoutProvider:PW,area:["objectbrick","custom-layout"],customLayouts:{parent:{area:["objectbrick"],useLayout:PU}},importExportConfig:i,useDetailGeneralSettingsQuery:P_,useDetailLayoutAccessor:PO,useDetailUpdateMutation:Pq,useItemsQuery:PK,useLayout:P$,view:(0,tq.jsx)(Pg,{})})},PJ=e=>{let t=String(e.id),i=(0,fk.Ss)({key:t});return void 0!==i.data?{...i,data:{...i.data,id:i.data.key}}:i},PZ=e=>{let t=String(e.id);return(0,fk.Io)({key:t})},PY=()=>{let e=(0,fk.eK)(),t=(0,tG.useMemo)(()=>{if(void 0===e.data||!("items"in e.data))return;let t=[];for(let r of e.data.items){var i,n;if("children"in r)for(let e of r.children)t.push({id:e.key,name:e.name,group:e.group??void 0,icon:{value:(null==(i=e.icon)?void 0:i.value)!==void 0&&""!==e.icon.value?e.icon.value:"object-bricks"}});else t.push({id:r.key,name:r.name,group:r.group??void 0,icon:{value:(null==(n=r.icon)?void 0:n.value)!==void 0&&""!==r.icon.value?r.icon.value:"object-bricks"}})}return{...e.data,items:t}},[e.data]);return void 0!==t?{...e,data:t}:e},PX=function(){for(var e=arguments.length,t=Array(e),i=0;in({key:String(e.id)}),r]},P0={getExportUrl:e=>`${(0,tD.$)()}/class/object-brick/${String(e)}/export`,getImportUrl:e=>`${(0,tD.$)()}/class/object-brick/${String(e)}/import`},P1=e=>{let{children:t,...i}=e,{fieldDefinitionRegistry:n}=(0,E3.t0)();return(0,tq.jsx)(EW.U,{...i,children:(0,tq.jsx)(PG,{...i,fieldDefinitionRegistry:n,children:t})})},P2=()=>(0,tq.jsx)(EB.K,{AddModal:PP,GeneralSettingsFormFields:PV,LayoutProvider:P1,area:["objectbrick"],customLayouts:{ModalContent:(0,tq.jsx)(PQ,{})},importExportConfig:P0,useDetailGeneralSettingsQuery:PJ,useDetailLayoutQuery:PZ,useDetailUpdateMutation:Pz,useItemsDeleteMutation:PX,useItemsQuery:PY});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/ObjectBricks",label:"navigation.object-bricks",className:"objectbrick",order:300,permission:pw.F.ObjectBricks,perspectivePermission:pk.d.ObjectBricks,widgetConfig:{name:"object-bricks",id:"object-bricks",component:"object-bricks",config:{translationKey:"widget.object-bricks",icon:{type:"name",value:"object-bricks"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"object-bricks",component:P2})}});let P3=()=>{let e=(0,uk.jL)(),t=(0,aB.Vl)(),{t:i}=(0,iQ.useTranslation)(),{success:n}=(0,uI.J)(),[r,{isLoading:a}]=(0,fk.KB)(),[l,{isLoading:o}]=(0,fk.v2)(),[s,{isLoading:d}]=(0,fk.Lv)(),c=async(e,t)=>{let a=r({createSelectOption:{id:e}});try{let r=await a;void 0!==r.error&&(0,iX.Ay)(new iX.hD(r.error)),null==t||t(e),n(i("select-option.create.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to create new select option."))}},f=async(t,r)=>{let a=s({id:t});try{let t=await a;if(!(0,tI.isUndefined)(t.error))return void(0,iX.Ay)(new iX.hD(t.error));e(fk.FH.util.invalidateTags(uT.qN.SELECT_OPTION_COLLECTION())),null==r||r(),n(i("select-option.delete.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to delete select option"))}};return{createSelectOption:e=>{t.input({title:i("select-option.create-new"),label:i("select-option.enter-name-new-item"),rule:{required:!0,pattern:/^[A-Z][a-zA-Z0-9]*$/,message:i("select-option.validation.id-format")},onOk:async t=>{await c(t,()=>{null==e||e(t)})}})},getSelectOptionById:async t=>{try{let{data:i,isError:n,error:r}=await e(fk.FH.endpoints.classSelectOptionGet.initiate({id:t},{forceRefetch:!0}));if(!(0,tI.isUndefined)(i)&&n)return void(0,iX.Ay)(new iX.hD(r));return i}catch{(0,iX.Ay)(new iX.$g('Failed to load select option data of "'+t+'".'))}},updateSelectOption:async(e,t,r)=>{let a=l({id:e,updateSelectOption:t});try{let e=await a;if(void 0!==e.error)return void(0,iX.Ay)(new iX.hD(e.error));null==r||r(),n(i("select-option.update.success"))}catch{(0,iX.Ay)(new iX.$g("Failed to update select option."))}},removeWithConfirmation:(e,n)=>{t.confirm({title:i("element.delete.confirmation.title"),content:(0,tq.jsx)("span",{children:i("element.delete.confirmation.text")}),okText:i("element.delete.confirmation.ok"),onOk:async()=>{await f(e,()=>{null==n||n()})}})},isLoading:a||o||d}},P6=(0,tG.createContext)(void 0),P4=e=>{let{children:t}=e,[i,n]=(0,tG.useState)(void 0),[r,a]=(0,tG.useState)([]),{getSelectOptionById:l}=P3(),o=async e=>{let t=await l(e);(0,tI.isNil)(t)||a(e=>e.findIndex(e=>e.id===t.id)>=0?(n(t.id),e):(n(t.id),[...e,t]))},s=e=>{let t=r.filter(t=>t.id!==e);a(t),i===e&&(t.length>0?n(t[0].id):n(void 0))},d=(0,tG.useMemo)(()=>({activeTabId:i,setActiveTabId:n,selectOptions:r,setSelectOptions:a,openSelectOption:o,closeSelectOption:s}),[i,r]);return(0,tq.jsx)(P6.Provider,{value:d,children:t})},P5=()=>{let e=(0,tG.useContext)(P6);if(void 0===e)throw Error("useSelectOptionEditorContext must be used within a SelectOptionEditorProvider");return e},P7=e=>{let{selectOptionId:t}=e,{t:i}=(0,iQ.useTranslation)(),{data:n,isLoading:r}=(0,fk.P1)({id:t}),a=(0,cH.createColumnHelper)(),l=[a.accessor("class",{header:i("select-option.general-settings.usages.class"),size:200}),a.accessor("field",{header:i("select-option.general-settings.usages.field"),size:200})];return r?(0,tq.jsx)(ig.Skeleton,{active:!0}):(0,tq.jsx)(ul.x,{columns:l,data:(null==n?void 0:n.items)??[],enableMultipleRowSelection:!1,resizable:!1})},P8=(0,cH.createColumnHelper)(),P9=e=>{let{value:t=[],onChange:i}=e,{t:n}=(0,iQ.useTranslation)(),r=((e,t)=>{let{t:i}=(0,iQ.useTranslation)();return(0,tG.useMemo)(()=>[P8.accessor("label",{header:i("select-option.entries.display-name"),meta:{editable:!0}}),P8.accessor("value",{header:i("select-option.entries.value"),meta:{editable:!0}}),P8.accessor("name",{header:i("select-option.entries.name"),meta:{editable:!0}}),P8.display({header:i("select-option.entries.action"),cell:n=>(0,tq.jsx)(ni.Box,{padding:"mini",children:(0,tq.jsx)(ni.ButtonGroup,{items:[(0,tq.jsx)(ni.IconButton,{disabled:0===n.row.index,icon:{value:"chevron-up"},onClick:()=>{let i=n.row.index;if(i>0){let n=[...e],r=n[i-1];n[i-1]=n[i],n[i]=r,null==t||t(n)}},size:"small",tooltip:{title:i("select-option.entries.move-up")},type:"link"},"move-up"),(0,tq.jsx)(ni.IconButton,{disabled:n.row.index===e.length-1,icon:{value:"chevron-down"},onClick:()=>{let i=n.row.index;if(i{let i=[...e];i.splice(n.row.index,1),null==t||t(i)},size:"small",tooltip:{title:i("delete")},type:"link"},"delete")],noSpacing:!0})}),id:"actions",size:120})],[e,t])})(t,i);return(0,tq.jsx)(ni.OperationalGrid,{columns:r,enableSorting:!1,onChange:i,setRowId:(e,t)=>`row-${e.value}-${t}`,value:t,children:(0,tq.jsxs)(ni.Space,{direction:"vertical",size:"small",style:{width:"100%"},children:[(0,tq.jsx)(ni.OperationalGrid.Grid,{}),(0,tq.jsx)(ni.OperationalGrid.Operations,{children:e=>(0,tq.jsx)(ni.Space,{children:(0,tq.jsx)(ni.IconButton,{icon:{value:"new-something"},onClick:()=>{e.addRow({label:"",value:"",name:""})},tooltip:{title:n("add")},type:"default"})})})]})})},Ae=()=>{let{t:e}=(0,iQ.useTranslation)(),t=tJ.lV.useFormInstance().getFieldValue("id");return(0,tG.useMemo)(()=>(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsxs)(ni.FormKit.Panel,{title:e("select-option.general-settings.title"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.enum-name"),name:"enumName",children:(0,tq.jsx)(aR.p,{readOnly:!0})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.use-traits"),name:"useTraits",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.implements-interfaces"),name:"implementsInterfaces",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.group"),name:"group",children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("select-option.general-settings.admin-only"),name:"adminOnly",valuePropName:"checked",children:(0,tq.jsx)(ig.Switch,{})})]}),(0,tq.jsx)(ni.FormKit.Panel,{title:e("select-option.entries.title"),children:(0,tq.jsx)(tJ.lV.Item,{name:"selectOptions",children:(0,tq.jsx)(P9,{})})}),!(0,tI.isNil)(t)&&(0,tq.jsx)(ni.FormKit.Panel,{title:e("select-option.general-settings.usages.title"),children:(0,tq.jsx)(P7,{selectOptionId:t})})]}),[t])},At=e=>{let{selectOption:t}=e,{t:i}=(0,iQ.useTranslation)(),{updateSelectOption:n,getSelectOptionById:r,removeWithConfirmation:a,isLoading:l}=P3(),{setSelectOptions:o,closeSelectOption:s}=P5(),[d]=tJ.lV.useForm(),c={...t},f=t.isWriteable;return(0,tq.jsx)(n6.L,{formProps:{form:d,initialValues:c,onFinish:async e=>{let i={group:e.group??null,adminOnly:e.adminOnly??!1,useTraits:e.useTraits??"",implementsInterfaces:e.implementsInterfaces??"",selectOptions:e.selectOptions??[]};await n(t.id,i,async()=>{let e=await r(t.id);void 0!==e&&(o(t=>t.map(t=>t.id===e.id?e:t)),d.setFieldsValue(e))})}},children:(0,tq.jsxs)(ap.s,{className:"absolute-stretch",justify:"space-between",vertical:!0,children:[(0,tq.jsx)(uE.U,{padded:!0,padding:{x:"small",y:"none"},children:(0,tq.jsx)(Ae,{})}),(0,tq.jsxs)(pc.M,{justify:"space-between",children:[(0,tq.jsxs)("div",{children:[(0,tq.jsx)(lp.K,{disabled:l,icon:{value:"refresh"},onClick:()=>{d.resetFields(),d.setFieldsValue(c)},title:i("refresh")}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(lp.K,{disabled:l||!f,icon:{value:"trash"},onClick:()=>{a(t.id,()=>{s(t.id),o(e=>e.filter(e=>e.id!==t.id))})},title:i("delete")})})]}),(0,tq.jsx)(iN.m,{title:f?"":i("config_not_writeable"),children:(0,tq.jsx)(az.$,{disabled:!f,htmlType:"submit",loading:l,type:"primary",children:i("save")})})]})]})})},Ai=e=>{let{id:t}=e,{selectOptions:i}=P5(),n=i.find(e=>e.id===t);return void 0===n?(0,tq.jsx)(tq.Fragment,{}):(0,tq.jsx)(At,{selectOption:n})},An=()=>{let{selectOptions:e,activeTabId:t,setActiveTabId:i,closeSelectOption:n}=P5();return(0,tq.jsx)(ni.Tabs,{activeKey:t,fullHeight:!0,items:e.map(e=>({key:e.id,label:e.id,children:(0,tq.jsx)(Ai,{id:e.id})})),onChange:e=>{i(e)},onClose:e=>{n(e)}})},Ar=e=>{let{onReload:t,onAddItem:i}=e,{t:n}=(0,iQ.useTranslation)();return(0,tq.jsxs)(pc.M,{children:[(0,tq.jsx)(lp.K,{icon:{value:"refresh"},onClick:t,children:n("toolbar.reload")}),(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:i,children:n("toolbar.new")})]})},Aa=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{treeContainer:i` - margin-top: ${t.paddingSM}px; - - .tree--search { - margin: ${t.paddingSM}px ${t.paddingSM}px 0; - } - - :has(.tree--search) { - margin-top: 0; - } - `}},{hashPriority:"low"});var Al=i(60924);let Ao=(e,t)=>{for(let i of e){if(String(i.key)===String(t))return i;if(void 0!==i.children&&null!==i.children){let e=Ao(i.children,t);if(void 0!==e)return e}}},As=e=>{let t=[];for(let i of e)!0===i.isLeaf&&t.push({key:String(i.key),title:String(i.title??"")}),void 0!==i.children&&null!==i.children&&t.push(...As(i.children));return t},Ad=e=>{let{treeData:t,onSelect:i}=e,{t:n}=(0,iQ.useTranslation)(),[r,a]=(0,tG.useState)(""),{styles:l}=(0,Al.I)(),o=(0,tG.useMemo)(()=>As(t),[t]),s=(0,tG.useMemo)(()=>{if(""===r)return[];let e=r.toLowerCase();return o.filter(t=>t.title.toLowerCase().includes(e)).map(e=>({value:e.key,label:(0,tq.jsxs)("div",{children:[(0,tq.jsx)(r9.I,{options:{width:14,height:14},value:"select-type"})," ",e.title]})}))},[r,o]);return(0,tq.jsx)(ig.AutoComplete,{className:"tree--search",onSearch:e=>{a(e)},onSelect:e=>{void 0!==Ao(t,e)&&i(String(e)),a("")},options:s,value:r,children:(0,tq.jsx)(ig.Input.Search,{allowClear:{clearIcon:(0,tq.jsx)(r9.I,{className:l.closeIcon,value:"close"})},className:l.searchWithoutAddon,placeholder:n("select-option.tree.search"),prefix:(0,tq.jsx)(r9.I,{className:l.searchIcon,options:{width:12,height:12},value:"search"})})})},Ac=e=>{let{expandedKeys:t,treeData:i,isFetching:n,onReloadTree:r,onSetExpandedKeys:a}=e,{openSelectOption:l,closeSelectOption:o,setSelectOptions:s}=P5(),{createSelectOption:d,removeWithConfirmation:c}=P3(),{styles:f}=Aa(),u=[f.treeContainer];return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(Ar,{onAddItem:()=>{d(async()=>{await r()})},onReload:()=>{r()}}),children:(0,tq.jsxs)(uE.U,{className:u.join(", "),children:[(0,tq.jsx)(Ad,{onSelect:e=>{l(e)},treeData:i}),(0,tq.jsx)(gQ.l,{defaultExpandedKeys:t,expandedKeys:t,onActionsClick:(e,t)=>{let i=String(e);"remove-item"===t&&c(i,async()=>{o(i),s(e=>e.filter(e=>e.id!==i)),await r()})},onExpand:e=>{a(e)},onSelected:e=>{var t;(null==(t=Ao(i,e))?void 0:t.selectable)!==!1&&l(String(e))},treeData:i})]})})},Af=()=>{let{data:e,isFetching:t,refetch:i}=(0,fk.xs)({withGroup:!0}),[n,r]=(0,tG.useState)([]),[a,l]=(0,tG.useState)([]);(0,tG.useEffect)(()=>{(null==e?void 0:e.items)!==void 0&&r([...e.items].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>"children"in e&&Array.isArray(e.children)?{title:e.name,key:e.id,selectable:!1,icon:(0,tq.jsx)(r9.I,{type:e.icon.type,value:void 0!==e.icon.value&&""!==e.icon.value?e.icon.value:"folder"}),isLeaf:!1,children:[...e.children].sort((e,t)=>e.name.localeCompare(t.name)).map(e=>({title:e.name,key:e.id,icon:(0,tq.jsx)(r9.I,{value:"select-type"}),isLeaf:!0,actions:[{key:"remove-item",icon:"trash"}]}))}:{title:e.name,key:e.id,icon:(0,tq.jsx)(r9.I,{value:"select-type"}),isLeaf:!0,actions:[{key:"remove-item",icon:"trash"}]}))},[e]);let o=(0,tG.useCallback)(async()=>{await i()},[i]),s={id:"select-option-editor.sidebar",minSize:170,children:[(0,tq.jsx)(Ac,{expandedKeys:a,isFetching:t,onReloadTree:o,onSetExpandedKeys:l,treeData:n},"select-option-editor.sidebar")]},d={id:"select-option-editor.main",minSize:600,children:[(0,tq.jsx)(An,{},"select-option-editor.main.detailTab")]};return(0,tq.jsx)(Lp.v,{leftItem:s,rightItem:d})},Au=()=>(0,tq.jsx)(P4,{children:(0,tq.jsx)(Af,{})});ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/SelectOptions",label:"navigation.select-options",className:"selectoption",order:500,permission:pw.F.SelectOptions,perspectivePermission:pk.d.SelectOptions,widgetConfig:{name:"select-options",id:"select-options",component:"select-options",config:{translationKey:"widget.select-options",icon:{type:"name",value:"select-type"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"select-options",component:Au})}});var Am=i(42811),Ap=i(26234);let{useUnitQuantityValueUnitsCollectionQuery:Ag,useUnitQuantityValueConvertAllQuery:Ah,useUnitQuantityValueConvertQuery:Ay,useUnitQuantityValueUnitsCreateMutation:Av,useUnitQuantityValueUnitsUpdateMutation:Ab,useUnitQuantityValueUnitsDeleteMutation:Ax,useUnitQuantityValueUnitsExportQuery:Aj,useLazyUnitQuantityValueUnitsExportQuery:Aw,useUnitQuantityValueUnitsImportMutation:Ak,useUnitQuantityValueListQuery:AT}=i(2208).FH.enhanceEndpoints({addTagTypes:[uT.nP.QUANTITY_VALUE_UNITS],endpoints:{unitQuantityValueUnitsCollection:{providesTags:(e,t,i)=>uT.yc.QUANTITY_VALUE_UNITS()},unitQuantityValueUnitsUpdate:{invalidatesTags:()=>[]},unitQuantityValueUnitsDelete:{invalidatesTags:()=>[]},unitQuantityValueUnitsCreate:{invalidatesTags:()=>[]},unitQuantityValueList:{providesTags:()=>[]},unitQuantityValueUnitsExport:{query:()=>({url:"/pimcore-studio/api/unit/quantity-value/units/export",responseHandler:async e=>await e.blob()})}}}),AS=()=>{let[e,{isLoading:t}]=Av(),[i,{isLoading:n}]=Ax(),[r,{isLoading:a}]=Ab();return{createUnit:async t=>{try{let i=await e({createUnitParameters:{id:t}});if("data"in i)return{success:!0,data:i.data}}catch{(0,iX.Ay)(new iX.$g("Was not able to create Unit"))}return{success:!1}},createLoading:t,deleteUnitById:async e=>{try{let t=await i({id:e});return{success:"data"in t}}catch{return(0,iX.Ay)(new iX.$g("Was not able to delete Unit")),{success:!1}}},deleteLoading:n,updateUnitById:async(e,t)=>{try{let i=await r({id:e,updateUnitParameters:{abbreviation:t.abbreviation??null,longname:t.longName??null,baseunit:t.baseUnit??null,factor:t.factor??null,conversionOffset:t.conversionOffset??null,converter:t.converter??null,reference:t.reference??null}});return{success:"data"in i}}catch{return(0,iX.Ay)(new iX.$g("Was not able to update Unit")),{success:!1}}},updateLoading:a}},AC=e=>{let{info:t,setQuantityValueUnitRows:i}=e,n=t.row.original.id,{deleteUnitById:r,deleteLoading:a}=AS(),l=async()=>{if(null===n)return;let{success:e}=await r(n);e&&i(e=>e.filter(e=>e.id!==n))};return(0,tq.jsx)(ni.Flex,{align:"center",justify:"center",children:(0,tq.jsx)(ni.IconButton,{icon:{value:"trash"},loading:a,onClick:l,type:"link"})})},AD=e=>{let{quantityValueUnitRows:t,setQuantityValueUnitRows:i}=e,{t:n}=(0,iQ.useTranslation)(),{updateUnitById:r}=AS(),[a,l]=(0,tG.useState)([]),o=(0,cH.createColumnHelper)(),s=(0,tG.useMemo)(()=>[o.accessor("id",{header:n("quantity-values.columns.id"),meta:{editable:!1},size:100}),o.accessor("abbreviation",{header:n("quantity-values.columns.abbreviation"),meta:{editable:!0},size:150}),o.accessor("longName",{header:n("quantity-values.columns.long-name"),meta:{editable:!0},size:200}),o.accessor("baseUnit",{header:n("quantity-values.columns.base-unit"),meta:{type:"select",editable:!0,config:{useOptionsHook:()=>(()=>{let{data:e,isLoading:t,isFetching:i}=AT();return{isLoading:t||i,options:(0,tG.useMemo)(()=>{var t;return(null==e||null==(t=e.items)?void 0:t.filter(e=>null!==e.id).map(e=>({value:e.id,label:e.abbreviation??e.id??""})))??[]},[e])}})(),allowClear:!0}},size:120}),o.accessor("factor",{header:n("quantity-values.columns.factor"),meta:{type:"number",editable:!0},size:120}),o.accessor("conversionOffset",{header:n("quantity-values.columns.conversion-offset"),meta:{type:"number",editable:!0},size:150}),o.accessor("converter",{header:n("quantity-values.columns.converter"),meta:{editable:!0},size:150}),o.accessor("actions",{header:n("quantity-values.columns.actions"),size:80,cell:e=>(0,tq.jsx)(AC,{info:e,setQuantityValueUnitRows:i})})],[]),d=async e=>{let{columnId:t,value:n,rowData:a}=e,o=a.rowId,s={...a,[t]:n};if(i(e=>e.map(e=>e.rowId===o?s:e)),l([{columnId:t,rowIndex:o}]),null===s.id)return;let{success:d}=await r(s.id,s);d?l([]):i(e=>e.map(e=>e.rowId===o?a:e))};return(0,tq.jsx)(ul.x,{autoWidth:!0,columns:s,data:t,enableSorting:!0,modifiedCells:a,onUpdateCellData:d,resizable:!0,setRowId:e=>e.rowId})},AI=()=>{let{t:e}=(0,iQ.useTranslation)(),{createUnit:t,createLoading:i}=AS(),n=(0,aB.Vl)(),[r,a]=(0,tG.useState)(1),[l,o]=(0,tG.useState)(20),{data:s,isLoading:d,isFetching:c,error:f,refetch:u}=Ag({body:{filters:{page:r,pageSize:l}}}),m=()=>{u().catch(()=>{(0,iX.Ay)(new iX.$g("Error while reloading"))})},[p,{isLoading:g}]=Aw(),h=async()=>{try{let e=await p().unwrap();(0,Ap.P)("quantityvalue_unit_export.json",e)}catch{(0,iX.Ay)(new iX.$g("Error while exporting"))}},[y,v]=(0,tG.useState)([]),[b,x]=(0,tG.useState)(!1),j=null==s?void 0:s.items,w=(null==s?void 0:s.totalItems)??0;(0,tG.useEffect)(()=>{(0,tI.isUndefined)(j)||v(j.map(e=>({...e,rowId:(0,af.uuid)()})))},[j]),(0,tG.useEffect)(()=>{(0,tI.isUndefined)(f)||(0,iX.Ay)(new iX.hD(f))},[f]);let k=async e=>{let{success:i,data:n}=await t(e);return i&&void 0!==n&&v(e=>[{...n,rowId:(0,af.uuid)()},...e]),{success:i}};return(0,tq.jsxs)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[(0,tq.jsx)(ap.s,{align:"center",justify:"start",children:(0,tq.jsxs)("div",{children:[(0,tq.jsx)(ni.IconTextButton,{disabled:c||g||y.length<1,icon:{value:"download"},loading:g,onClick:h,type:"link",children:e("quantity-values.export")}),(0,tq.jsx)(ni.IconTextButton,{disabled:c,icon:{value:"upload-import"},onClick:()=>{x(!0)},type:"link",children:e("quantity-values.import")})]})}),w>0?(0,tq.jsxs)(ni.Split,{children:[(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:c,icon:{value:"refresh"},onClick:m,variant:"minimal"})}),(0,tq.jsx)(ni.Pagination,{current:r,onChange:(e,t)=>{a(e),o(t)},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:w})]}):(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsx)(lp.K,{disabled:c,icon:{value:"refresh"},onClick:m})})]}),renderTopBar:(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsxs)(ap.s,{gap:"small",children:[(0,tq.jsx)(pd.h,{children:e("widget.quantity-values")}),(0,tq.jsx)(ni.IconTextButton,{disabled:d||i,icon:{value:"new"},loading:i,onClick:()=>{n.input({title:(0,tq.jsx)(p8.w,{iconName:"new",children:e("quantity-values.create-modal.title")}),label:e("quantity-values.create-modal.id-label"),rule:{required:!0,message:e("quantity-values.create-modal.id-required")},onOk:async e=>{let{success:t}=await k(e);if(!t)throw new iX.$g("Failed to create unit")}})},children:e("quantity-values.new")})]})}),children:[(0,tq.jsx)(uE.U,{loading:d||c,margin:{x:"extra-small",y:"none"},none:(0,tI.isUndefined)(j)||0===j.length,children:(0,tq.jsx)(ni.Box,{margin:{x:"extra-small",y:"none"},children:(0,tq.jsx)(AD,{quantityValueUnitRows:y,setQuantityValueUnitRows:v})})}),(0,tq.jsx)(Am.z,{accept:".json,application/json",acceptMimeTypes:["application/json"],action:`${(0,tD.$)()}/unit/quantity-value/units/import`,onOpenChange:x,onUploadSuccess:()=>{x(!1),m()},open:b,title:e("quantity-values.import-modal.title")})]})};ts.s.registerModule({onInit:()=>{let e=tc.kL.get(td.K.mainNavRegistry);e.registerMainNavItem({path:"DataManagement/DataModelDefinitions",label:"navigation.data-model-definitions",order:1200}),e.registerMainNavItem({path:"DataManagement/DataModelDefinitions/QuantityValues",label:"navigation.quantity-values",className:"item-style-modifier",order:600,permission:pw.F.QuantityValues,perspectivePermission:pk.d.QuantityValues,widgetConfig:{name:"quantity-values",id:"quantity-values",component:"quantity-values",config:{translationKey:"widget.quantity-values",icon:{type:"name",value:"quantity-value"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"quantity-values",component:AI})}}),ts.s.registerModule({onInit:()=>{let e=iv.container.get("DynamicTypes/FieldDefinitionRegistry");e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Block")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Input")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Textarea")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Wysiwyg")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Password")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/InputQuantityValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Number")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/NumericRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Slider")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/QuantityValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/QuantityValueRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Date")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/DateTime")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/DateRange")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Time")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Image")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ExternalImage")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ImageGallery")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Video")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/HotspotImage")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopoint")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geobounds")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopolygon")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Geopolyline")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Select")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/BooleanSelect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Multiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/User")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Country")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Language")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/CountryMultiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/LanguageMultiselect")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/RgbaColor")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/EncryptedField")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/UrlSlug")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Checkbox")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Link")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/CalculatedValue")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToOne")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToMany")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ManyToManyObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/AdvancedManyToMany")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/AdvancedManyToManyObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/ReverseObject")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Panel")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Accordion")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/FieldContainer")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Fieldset")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Iframe")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Region")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Tabpanel")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Text")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Table")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/StructuredTable")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Fieldcollections")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Objectbricks")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Classificationstore")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Localizedfields")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Consent")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Firstname")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Lastname")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Email")),e.registerDynamicType(iv.container.get("DynamicTypes/FieldDefinition/Gender"))}});let AM=(0,iR.createStyles)(e=>{let{token:t,css:i}=e;return{form:i` - label { - min-width: 90px; - } - - .ant-input { - width: 400px - } - `}}),AL=e=>{let{onSearch:t,onValueChange:i,isLoading:n}=e,{t:r}=(0,iQ.useTranslation)(),{styles:a}=AM(),[l]=ni.Form.useForm(),o=e=>{let t=[];return Object.entries(e).forEach(e=>{let[i,n]=e;if(!(0,tI.isNil)(n)&&n.length>0){let e="id"===i?{type:i,filterValue:Number(n)}:{type:i,filterValue:n};t.push(e)}}),t};return(0,tq.jsxs)(ni.FormKit,{formProps:{form:l,initialValues:{},layout:"horizontal",className:a.form,onValuesChange:(e,t)=>{null==i||i(o(t))},onFinish:e=>{null==t||t(o(e))}},children:[(0,tq.jsx)(ni.Form.Item,{label:r("gdpr-extractor.search-form.field.id"),name:["id"],children:(0,tq.jsx)(ni.Input,{"data-testid":"gdpr-search-id-input"})}),(0,tq.jsx)(ni.Form.Item,{label:r("gdpr-extractor.search-form.field.firstname"),name:["firstname"],children:(0,tq.jsx)(ni.Input,{"data-testid":"gdpr-search-firstname-input"})}),(0,tq.jsx)(ni.Form.Item,{label:r("gdpr-extractor.search-form.field.lastname"),name:["lastname"],children:(0,tq.jsx)(ni.Input,{"data-testid":"gdpr-search-lastname-input"})}),(0,tq.jsxs)(ni.Flex,{align:"end",gap:"extra-small",children:[(0,tq.jsx)(ni.Form.Item,{label:r("gdpr-extractor.search-form.field.email"),name:["email"],children:(0,tq.jsx)(ni.Input,{"data-testid":"gdpr-search-email-input"})}),(0,tq.jsx)(ni.Button,{"data-testid":"gdpr-search-submit-button",htmlType:"submit",loading:n,type:"primary",children:r("gdpr-extractor.search-form.submit")})]})]})};var AF=i(69367);let AE=e=>{let{data:t,providerKey:i,onProviderChange:n,isLoading:r,executeSearch:a,...l}=e,o=tc.kL.get(td.K["DynamicTypes/GDPRProviderRegistry"]),{data:s,isLoading:d}=(0,AF.HE)(),c=(null==s?void 0:s.items.map(e=>{let n=o.getDynamicType(e.key);if((0,tI.isNil)(n))return null;let s=e.key===i?t:[];return{key:e.key,label:e.label,children:n.getTabContent({data:s,providerKey:e.key,isLoading:r??d,onSortingChange:e=>{a({sortFilter:e})},...l})}}).filter(e=>!(0,tI.isNil)(e)))??[];return(0,tq.jsx)(aS.k,{"data-testid":"gdpr-tab-panel",items:c,onChange:e=>{var t;null==n||n(null==s||null==(t=s.items[e])?void 0:t.key)}})};var AP=i(89285);let AA=()=>{let{t:e}=(0,iQ.useTranslation)(),[t,i]=(0,tG.useState)(1),[n,r]=(0,tG.useState)(20),[a,l]=(0,tG.useState)([]),[o,s]=(0,tG.useState)("data_objects"),[d,{data:c,isLoading:f,isFetching:u,error:m}]=(0,AP.tw)();(0,tG.useEffect)(()=>{(0,tI.isUndefined)(m)||(0,uj.trackError)(new uj.ApiError(m))},[m]);let p=(0,tG.useMemo)(()=>(0,tI.debounce)(e=>{l(e)},300),[]),g=e=>{let i=(null==e?void 0:e.provider)??o,r=(null==e?void 0:e.columnFilters)??a,l=null==e?void 0:e.sortFilter,s=(null==e?void 0:e.page)??t,c=(null==e?void 0:e.pageSize)??n;""===i||(0,tI.isEmpty)(r)||d({provider:i,body:{filters:{page:s,pageSize:c,columnFilters:r,sortFilter:l}}})};return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(pc.M,{justify:"end",padding:{x:"small",y:"extra-small"},theme:"secondary",children:(0,tq.jsx)(ap.s,{align:"center",children:(0,tq.jsxs)(oI.B,{children:[(0,tq.jsx)(lp.K,{disabled:f||u||""===o,icon:{value:"refresh"},onClick:()=>{g()}}),(0,tq.jsx)(po.d,{current:t,hideOnSinglePage:!0,onChange:(e,t)=>{i(e),r(t),g({page:e,pageSize:t})},showSizeChanger:!0,showTotal:t=>e("pagination.show-total",{total:t}),total:(null==c?void 0:c.totalItems)??0})]})})}),renderTopBar:(0,tq.jsx)(pc.M,{justify:"space-between",margin:{x:"mini",y:"none"},theme:"secondary",children:(0,tq.jsx)(ap.s,{gap:4,children:(0,tq.jsx)(pd.h,{children:e("gdpr-extractor.title")})})}),children:(0,tq.jsxs)(uE.U,{"data-testid":"gdpr-data-extractor-content",gap:"extra-small",padded:!0,padding:{x:"extra-small",y:"extra-small"},children:[(0,tq.jsx)(AL,{isLoading:f||u,onSearch:e=>{l(e),g({columnFilters:e})},onValueChange:e=>{p(e)}}),(0,tq.jsx)(AE,{data:(null==c?void 0:c.items)??[],executeSearch:g,isLoading:f||u,onProviderChange:e=>{s(e),i(1),g({provider:e,page:1})},providerKey:o,refresh:g})]})})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.widgetManager).registerWidget({name:"gdpr-data-extractor",component:AA}),tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/GDPR Extractor",label:"navigation.gdpr-extractor",order:500,className:"item-style-modifier",permission:pw.F.GDPRDataExtractor,perspectivePermission:pk.d.GDPRDataExtractor,widgetConfig:{name:"gdpr-extractor",id:"gdpr-extractor",component:"gdpr-data-extractor",config:{translationKey:"widget.gdpr-extractor",icon:{type:"name",value:"lock-circle"}}}});let e=tc.kL.get(td.K["DynamicTypes/GDPRProviderRegistry"]);e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GDPRProvider/DataObjects"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GDPRProvider/Assets"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GDPRProvider/Users"])),e.registerDynamicType(tc.kL.get(td.K["DynamicTypes/GDPRProvider/Emails"]))}});let AN=(0,tG.createContext)(void 0),AR=e=>{let{children:t}=e,[i]=tJ.lV.useForm(),[n,r]=(0,tG.useState)(!1),a=(0,tG.useMemo)(()=>({form:i,isLoading:n,setIsLoading:r}),[i,n]);return(0,tq.jsx)(AN.Provider,{value:a,children:t})},AV=()=>{let e=(0,tG.useContext)(AN);if(void 0===e)throw Error("useSystemSettingsContext must be used within a SystemSettingsProvider");return e};var Az=i(62268);let AB=()=>{let{t:e}=(0,iQ.useTranslation)();return(0,tq.jsxs)(ac.XP,{forceRender:!0,label:e("system-settings.collapse.debug"),children:[(0,tq.jsx)(tJ.lV.Item,{label:e("system-settings.form.debug.field.enable-debug"),name:["general","debug_admin_translations"],children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(tJ.lV.Item,{label:e("system-settings.form.debug.field.email-addresses"),name:["email","debug","email_addresses"],children:(0,tq.jsx)(Az.F,{placeholder:e("system-settings.form.debug.field.email-addresses.placeholder")})})]})};var AO=i(58754);let AK=e=>{let{locale:t}=e,{t:i}=(0,iQ.useTranslation)(),{form:n}=AV(),r=tJ.lV.useWatch(["general","valid_languages"],{form:n,preserve:!0})??[],a=(0,tG.useMemo)(()=>r.filter(e=>e!==t).map(e=>({label:`${(0,AO.O)({locale:e})} (${e})`,value:e})),[r,t]),l=r.length<=1;return(0,tq.jsxs)(ni.Card,{actions:[(0,tq.jsx)(ni.IconButton,{disabled:l,icon:{value:"trash"},onClick:()=>{let e=(n.getFieldValue(["general","valid_languages"])??[]).filter(e=>e!==t),i=(n.getFieldValue(["general","required_languages"])??[]).filter(e=>e!==t),r=n.getFieldValue(["general","fallback_languages"])??{},a={};for(let[e,i]of Object.entries(r))e!==t&&(a[e]=i.filter(e=>e!==t));let l=n.getFieldValue(["general","default_language"]),o=l===t?e[0]??"":l,s=n.getFieldValue(["documents","error_pages","localized"]),d=s;if(!(0,tI.isNil)(s)){let{[t]:e,...i}=s;d=i}n.setFieldsValue({general:{valid_languages:e,required_languages:i,fallback_languages:a,default_language:o},documents:{error_pages:{localized:d}}})},title:i("system-settings.form.localization.field.delete-language"),type:"link"},"icon-button-01")],title:(0,AO.O)({locale:t})+` (${t})`,children:[(0,tq.jsx)(tJ.lV.Item,{label:i("system-settings.form.localization.field.fallback-language"),name:["general","fallback_languages",t],children:(0,tq.jsx)(ni.Select,{allowClear:!0,mode:"multiple",options:a,placeholder:i("system-settings.form.localization.field.fallback-language-placeholder")})}),(0,tq.jsx)(tJ.lV.Item,{getValueFromEvent:e=>e?t:"",getValueProps:e=>({checked:e===t}),name:["general","default_language"],valuePropName:"checked",children:(0,tq.jsx)(ni.Switch,{labelRight:i("system-settings.form.localization.field.default-language")})}),(0,tq.jsx)(tJ.lV.Item,{shouldUpdate:(e,t)=>{var i,n;return(null==(i=e.general)?void 0:i.required_languages)!==(null==(n=t.general)?void 0:n.required_languages)},children:()=>{let e=n.getFieldValue(["general","required_languages"])??[];return(0,tq.jsx)(ni.Switch,{checked:e.includes(t),labelRight:i("system-settings.form.localization.field.mandatory"),onChange:e=>{let i;i=n.getFieldValue(["general","required_languages"])??[],e&&!1===i.includes(t)?n.setFieldsValue({general:{required_languages:[...i,t]}}):e||!0!==i.includes(t)||n.setFieldsValue({general:{required_languages:i.filter(e=>e!==t)}})}})}})]})},A_=()=>{let{form:e}=AV(),t=tJ.lV.useWatch(["general","valid_languages"],{form:e,preserve:!0}),i=(0,tG.useMemo)(()=>(0,tI.isNil)(t)?[]:t.map(e=>(0,tq.jsx)(AK,{locale:e},e)),[t]);return(0,tq.jsx)(ap.s,{gap:"extra-small",vertical:!0,children:i})},AH=e=>{let[t,i]=(0,tG.useState)([]),{form:n}=AV(),r=(0,p3.t)().validLocales??{},a=tJ.lV.useWatch(["general","valid_languages"],{form:n,preserve:!0})??[];return(0,tG.useEffect)(()=>{i(Object.entries(r).filter(e=>{let[t]=e;return!a.includes(t.replaceAll("-","_"))}).map(e=>{let[t,i]=e;return{label:i,value:t}}))},[n,r,a]),(0,tq.jsx)(t8.l,{allowClear:!0,filterOption:(e,t)=>!((0,tI.isNil)(t)||(0,tI.isNil)(t.label))&&String(t.label).toLowerCase().includes(e.toLowerCase()),options:t,showSearch:!0,...e})},A$=()=>{let{t:e}=(0,iQ.useTranslation)(),{form:t}=AV(),[i,n]=(0,tG.useState)();return(0,tq.jsx)(ac.XP,{forceRender:!0,label:e("system-settings.collapse.localization"),children:(0,tq.jsxs)(ni.Flex,{gap:"small",vertical:!0,children:[(0,tq.jsxs)(ni.Flex,{gap:"extra-small",children:[(0,tq.jsx)(AH,{onChange:n,placeholder:e("system-settings.form.localization.field.add-language"),value:i}),(0,tq.jsx)(ni.IconButton,{disabled:(0,tI.isNil)(i),icon:{value:"plus-circle"},onClick:()=>{if((0,tI.isNil)(i))return;let e=i.replaceAll("-","_"),r=t.getFieldValue(["general","valid_languages"])??[];if(!r.includes(e)){let i=t.getFieldValue(["general","fallback_languages"])??{};t.setFieldsValue({general:{valid_languages:[...r,e],fallback_languages:{...i,[e]:[]}}}),n(void 0)}},type:"primary"})]}),(0,tq.jsx)(A_,{})]})})},AW=e=>{let{dataType:t}=e,{t:i}=(0,iQ.useTranslation)(),n=ni.Form.useWatch([t,"versions","days"]),r=ni.Form.useWatch([t,"versions","steps"]),a=!(0,tI.isNil)(n)&&""!==n,l=!(0,tI.isNil)(r)&&""!==r;return(0,tq.jsxs)(ni.CollapseItem,{forceRender:!0,label:(0,tI.capitalize)(t),children:[(0,tq.jsx)(ni.Form.Item,{label:i("system-settings.form.field.version-days"),name:[t,"versions","days"],children:(0,tq.jsx)(ni.InputNumber,{disabled:l})}),(0,tq.jsx)(ni.Form.Item,{label:i("system-settings.form.field.version-count"),name:[t,"versions","steps"],children:(0,tq.jsx)(ni.InputNumber,{disabled:a})})]})},Aq=e=>{let{locale:t}=e,{t:i}=(0,iQ.useTranslation)();return(0,tq.jsx)(ni.Card,{title:(0,AO.O)({locale:t})+` (${t})`,children:(0,tq.jsx)(ni.Form.Item,{label:i("system-settings.form.field.default-error-page"),name:["documents","error_pages","localized",t],children:(0,tq.jsx)(fW.P,{allowToClearRelation:!0,documentsAllowed:!0})})})},AG=()=>{let{t:e}=(0,iQ.useTranslation)(),{form:t}=AV(),i=ni.Form.useWatch(["general","valid_languages"],{form:t,preserve:!0}),n=(0,tG.useMemo)(()=>(0,tI.isNil)(i)?[]:i.map(e=>(0,tq.jsx)(Aq,{locale:e},e)),[i]);return(0,tq.jsx)(ni.CollapseItem,{forceRender:!0,label:e("system-settings.collapse.website"),children:(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsxs)(ap.s,{gap:"extra-small",vertical:!0,children:[(0,tq.jsx)(ni.Form.Item,{label:e("system-settings.form.field.main-domain"),name:["general","domain"],children:(0,tq.jsx)(ni.Input,{})}),(0,tq.jsx)(ni.Form.Item,{label:e("system-settings.form.field.redirect-to-maindomain"),name:["general","redirect_to_maindomain"],children:(0,tq.jsx)(ni.Switch,{})}),(0,tq.jsx)(ni.Form.Item,{label:e("system-settings.form.field.default-error-page"),name:["documents","error_pages","default"],children:(0,tq.jsx)(fW.P,{allowToClearRelation:!0,documentsAllowed:!0})})]}),(0,tq.jsx)(ap.s,{gap:"extra-small",vertical:!0,children:n})]})})},AU=()=>{var e,t;let i,n,{form:r,setIsLoading:a}=AV(),{updateSettings:l}=(()=>{let{t:e}=(0,iQ.useTranslation)(),[t]=(0,cQ.Hk)(),{success:i}=(0,uI.J)(),n=(0,iv.useAppDispatch)(),r=(0,Cv.useSelector)(FR.mt);return{updateSettings:async(a,l)=>{let o=t({body:a});try{let t=await o;if(!(0,tI.isUndefined)(t.error))return void(0,uj.trackError)(new uj.ApiError(t.error));n((0,FR.oc)((0,tI.merge)({},r,a))),null==l||l(),i(e("system-settings.update.success"))}catch{(0,uj.trackError)(new uj.GeneralError("Failed to update system settings"))}}}})(),o={general:{valid_languages:(n=(0,FR.mt)(uk.M_.getState())).validLanguages??[],fallback_languages:(e=>{if((0,tI.isNil)(e))return{};let t={};return Object.keys(e).forEach(i=>{let n=e[i];t[i]=(0,a3.uI)(n)?n.split(",").map(e=>e.trim()):[]}),t})(n.fallbackLanguages),required_languages:n.requiredLanguages??[],default_language:n.defaultLanguage??"en",domain:n.main_domain??"",redirect_to_maindomain:n.redirectToMaindomain??!1,debug_admin_translations:n.debug_admin_translations??!1},objects:n.objects,assets:n.assets,documents:n.documents,email:{...n.email,debug:{email_addresses:(i=null==(t=n.email)||null==(e=t.debug)?void 0:e.email_addresses,(0,tI.isArray)(i)?i:(0,a3.uI)(i)?i.split(",").map(e=>e.trim()).filter(a3.uI):[])}}};return(0,tq.jsxs)(n6.L,{formProps:{form:r,initialValues:o,onFinish:e=>{let t=r.getFieldValue(["general","required_languages"])??[],i=r.getFieldValue(["general","valid_languages"])??[],n={...e,general:{...e.general,valid_languages:i,required_languages:t}};a(!0),l(n,()=>{a(!1)})}},children:[(0,tq.jsx)(A$,{}),(0,tq.jsx)(AB,{}),(0,tq.jsx)(AG,{}),(0,tq.jsx)(AW,{dataType:"documents"}),(0,tq.jsx)(AW,{dataType:"objects"}),(0,tq.jsx)(AW,{dataType:"assets"})]})},AQ=()=>{let{t:e}=(0,iQ.useTranslation)(),{form:t,isLoading:i}=AV();return(0,tq.jsx)(ni.ContentLayout,{renderToolbar:(0,tq.jsx)(ni.Toolbar,{justify:"flex-end",children:(0,tq.jsx)(ni.Button,{htmlType:"submit",loading:i,onClick:()=>{t.validateFields().then(()=>{t.submit()})},type:"primary",children:e("save")})}),renderTopBar:(0,tq.jsx)(ni.Toolbar,{borderStyle:"default",theme:"secondary",children:(0,tq.jsx)(ni.Flex,{gap:"small",children:(0,tq.jsx)(ni.Title,{children:e("widget.system-settings")})})}),children:(0,tq.jsx)(ni.Content,{padded:!0,padding:{x:"small",y:"none"},children:(0,tq.jsx)(AU,{})})})},AJ=()=>(0,tq.jsx)(AR,{children:(0,tq.jsx)(AQ,{})});ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.widgetManager).registerWidget({name:"system-settings",component:AJ}),tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"System/System Settings",label:"navigation.systemSettings",className:"item-style-modifier",order:600,permission:pw.F.SystemSettings,perspectivePermission:pk.d.SystemSettings,widgetConfig:{name:"system-settings",id:"system-settings",component:"system-settings",config:{translationKey:"widget.system-settings",icon:{type:"name",value:"system-settings"}}}})}});let AZ=e=>{let{isFetching:t,refetch:i,handleStoreAdd:n}=e,{t:r}=(0,iQ.useTranslation)();return(0,tq.jsxs)(pc.M,{children:[t?(0,tq.jsx)(pa.a,{padding:{x:"extra-small",y:"extra-small"},children:(0,tq.jsx)(sN.t,{})}):(0,tq.jsx)(lp.K,{icon:{value:"refresh"},onClick:()=>{i()}}),(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:n,type:"link",children:r("new")})]})},AY=(0,iR.createStyles)(e=>{let{css:t,token:i}=e;return{sidebarStoreItem:t` - padding: 2px ${i.paddingXS}px; - - &:hover { - background-color: ${i.controlItemBgActiveHover}; - cursor: pointer; - } - `,sidebarStoreItemActive:t` - background-color: ${i.controlItemBgActive}; - `,sidebarStoreItemIcon:t` - color: ${i.colorIconTree}; - `,sidebarStoreItemTitle:t` - color: ${i.colorTextTreeElement}; - `,tabsContainer:t` - height: 100%; - - .ant-tabs-content, - .ant-tabs-tabpane { - height: 100%; - } - `,tabs:t` - .ant-tabs-tab { - padding: ${i.paddingSM}px ${i.paddingXXS}px !important; - } - `,storeEditorTabsContainer:t` - height: 100%; - display: flex; - flex-direction: column; - - .ant-tabs-content-holder { - flex: 1; - overflow: hidden; - } - - .ant-tabs-content, - .ant-tabs-tabpane { - height: 100%; - } - `,tabContent:t` - height: 100%; - overflow: auto; - padding: ${i.paddingMD}px; - `}}),AX=e=>{let{isLoading:t,isFetching:i,refetch:n,storeList:r,activeStoreId:a,handleOpenStore:l}=e,[o,s]=(0,tG.useState)([]),[d,c]=(0,tG.useState)(null),{styles:f}=AY(),{t:u}=(0,iQ.useTranslation)(),{modal:m}=ig.App.useApp(),[p]=tJ.lV.useForm(),[g]=(0,ue.t6)(),[h]=(0,ue.SA)();(0,tG.useEffect)(()=>{s(r)},[r]);let y=[{icon:(0,tq.jsx)(r9.I,{value:"edit"}),key:"rename",label:u("rename"),onClick:()=>{(0,tI.isNil)(d)||(p.setFieldsValue({name:d.name,description:d.description??""}),m.confirm({icon:null,title:u("classification-store.rename-store"),content:(0,tq.jsxs)(tJ.lV,{form:p,layout:"vertical",children:[(0,tq.jsx)(tJ.lV.Item,{label:u("classification-store.columns.name"),name:"name",rules:[{required:!0,message:u("form.validation.required")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:u("classification-store.columns.description"),name:"description",children:(0,tq.jsx)(aR.p,{})})]}),onOk:async()=>{let e=await p.validateFields();if((0,tI.isNil)(d))return;let t=await h({id:d.id,classificationStoreConfigurationStoreUpdate:{name:e.name,description:""===e.description.trim()?null:e.description}});"error"in t?(0,iX.Ay)(new iX.hD(t.error)):n()}}))}}];return(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsx)(AZ,{handleStoreAdd:()=>{p.setFieldsValue({name:"",description:""}),m.confirm({icon:null,title:u("classification-store.add-store"),content:(0,tq.jsxs)(tJ.lV,{form:p,layout:"vertical",children:[(0,tq.jsx)(tJ.lV.Item,{label:u("classification-store.columns.name"),name:"name",rules:[{required:!0,message:u("form.validation.required")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:u("classification-store.columns.description"),name:"description",children:(0,tq.jsx)(aR.p,{})})]}),onOk:async()=>{let e=await p.validateFields(),t=""===e.description.trim()?null:e.description,i=await g({classificationStoreConfigurationStoreCreate:{name:e.name}});if("error"in i)return void(0,iX.Ay)(new iX.hD(i.error));if(null!==t){let n=await h({id:i.data.id,classificationStoreConfigurationStoreUpdate:{name:e.name,description:t}});if("error"in n)return void(0,iX.Ay)(new iX.hD(n.error))}n()}})},isFetching:i,refetch:n}),children:(0,tq.jsxs)(uE.U,{loading:t,padded:!0,children:[(0,tq.jsx)(ps.D,{onChange:e=>{var t;t=e.target.value,(0,a3.Po)(t)?s(r):s(r.filter(e=>e.name.toLowerCase().includes(t.toLowerCase())))},placeholder:u("search"),withoutAddon:!0}),(0,tq.jsx)(ap.s,{className:"h-full",gap:"mini",justify:i?"center":"start",vertical:!0,children:i?(0,tq.jsx)(ap.s,{align:"center",justify:"center",children:(0,tq.jsx)(sN.t,{asContainer:!0,tip:"Loading"})}):(0,tq.jsx)(tq.Fragment,{children:o.map(e=>{let t=e.id===a;return(0,tq.jsx)(pu.m,{menu:{items:y},onOpenChange:t=>{t&&c(e)},trigger:["contextMenu"],children:(0,tq.jsxs)(ap.s,{align:"center",className:[f.sidebarStoreItem,t?f.sidebarStoreItemActive:""].join(" "),gap:"mini",onClick:()=>{l(e)},children:[(0,tq.jsx)(r9.I,{className:f.sidebarStoreItemIcon,value:"classification-store"}),(0,tq.jsx)(n5.E,{className:f.sidebarStoreItemTitle,children:e.name})]})},e.id)})})})]})})};var A0=i(45725);let A1=e=>{let{open:t,storeId:i,excludedKeyIds:n,onConfirm:r,onCancel:a}=e,{t:l}=(0,iQ.useTranslation)(),[o,s]=(0,tG.useState)(""),[d,c]=(0,tG.useState)({}),{data:f,isLoading:u}=(0,A0.Wm)({storeId:i,body:{filters:{page:1,pageSize:9999}}},{skip:!t}),m=(null==f?void 0:f.items)??[];(0,tG.useEffect)(()=>{t&&(c({}),s(""))},[t]);let p=(0,tG.useMemo)(()=>{let e=new Set(n);return m.filter(t=>{if(e.has(t.id))return!1;if(""===o.trim())return!0;let i=o.trim().toLowerCase();return t.name.toLowerCase().includes(i)||(t.description??"").toLowerCase().includes(i)})},[m,n,o]),g=(0,cH.createColumnHelper)(),h=[g.accessor("id",{header:l("classification-store.columns.id"),size:60}),g.accessor("name",{header:l("classification-store.columns.name"),size:200}),g.accessor("type",{header:l("classification-store.columns.type"),size:120}),g.accessor("description",{header:l("classification-store.columns.description"),size:250,cell:e=>e.getValue()??"-"})],y=(0,tG.useMemo)(()=>p.filter(e=>d[String(e.id)]),[d,p]);return(0,tq.jsx)(ig.Modal,{okButtonProps:{disabled:0===y.length},okText:l("classification-store.add-key"),onCancel:a,onOk:()=>{y.length>0&&r(y)},open:t,styles:{body:{maxHeight:"65vh",overflowY:"auto"}},title:l("classification-store.select-key"),width:700,children:(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(ig.Input.Search,{onChange:e=>{s(e.target.value)},placeholder:l("classification-store.search-keys"),value:o}),(0,tq.jsx)(uE.U,{overflow:{x:"hidden",y:"auto"},style:{maxHeight:"calc(65vh - 80px)",minHeight:120},children:(0,tq.jsx)(ul.x,{columns:h,data:p,enableMultipleRowSelection:!0,isLoading:u,onSelectedRowsChange:c,selectedRows:d,setRowId:e=>void 0!==e.id?String(e.id):""})})]})})},A2=e=>{let{storeId:t,groupId:i,groupName:n}=e,{t:r}=(0,iQ.useTranslation)(),a=(0,aB.Vl)(),[l,o]=(0,tG.useState)(!1),[s,d]=(0,tG.useState)(1),[c,f]=(0,tG.useState)(20),{data:u,isLoading:m,isFetching:p,refetch:g}=(0,A0.Hl)({groupId:i,body:{filters:{page:s,pageSize:c}}},{skip:void 0===i}),h=(null==u?void 0:u.items)??[],y=(null==u?void 0:u.totalItems)??0,[v]=(0,A0.GC)(),[b]=(0,A0.T4)(),x=(0,tG.useCallback)(e=>{a.confirm({title:r("delete"),content:r("classification-store.delete-key-relation",{keyName:e.keyName??String(e.keyId)}),onOk:async()=>{let t=await b({classificationStoreConfigurationKeyGroupRelationDelete:{keyId:e.keyId,groupId:e.groupId}});"error"in t&&(0,iX.Ay)(new iX.hD(t.error))}})},[a,b,r]),j=(0,tG.useCallback)(async(e,t)=>{let i=await v({classificationStoreConfigurationKeyGroupRelationCreate:{keyId:e.keyId,groupId:e.groupId,sorter:e.sorter,mandatory:t}});"error"in i&&(0,iX.Ay)(new iX.hD(i.error))},[v]),w=(0,tG.useCallback)(async(e,t)=>{let i=await v({classificationStoreConfigurationKeyGroupRelationCreate:{keyId:e.keyId,groupId:e.groupId,sorter:t,mandatory:e.mandatory}});"error"in i&&(0,iX.Ay)(new iX.hD(i.error))},[v]),k=(0,tG.useCallback)(async e=>{if(void 0!==i)for(let t of(o(!1),await Promise.all(e.map(async e=>await v({classificationStoreConfigurationKeyGroupRelationCreate:{keyId:e.id,groupId:i,sorter:0,mandatory:!1}})))))"error"in t&&(0,iX.Ay)(new iX.hD(t.error))},[i,v]),T=(0,tG.useMemo)(()=>(0,cH.createColumnHelper)(),[]),S=(0,tG.useMemo)(()=>[T.accessor("keyId",{header:r("classification-store.columns.id"),size:60}),T.accessor("keyName",{header:r("classification-store.columns.name"),size:200,meta:{type:"input"}}),T.accessor("keyDescription",{header:r("classification-store.columns.description"),size:200,meta:{type:"input"}}),T.accessor("mandatory",{header:r("classification-store.columns.mandatory"),size:100,meta:{type:"boolean",editable:!0,config:{align:"center"}}}),T.accessor("sorter",{header:r("classification-store.columns.sorter"),size:100,meta:{type:"number",editable:!0}}),T.display({id:"actions",header:r("classification-store.columns.actions"),size:60,cell:e=>(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{x(e.row.original)},tooltip:{title:r("delete")}})})],[r,x,T]),C=(0,tG.useMemo)(()=>h.map(e=>e.keyId),[h]),D=void 0!==i?r("classification-store.relations-title",{name:n??String(i)}):r("classification-store.select-group-hint");return(0,tq.jsxs)(pl.s,{renderToolbar:void 0!==i?(0,tq.jsxs)(pc.M,{theme:"secondary",children:[m?null:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},loading:p,onClick:()=>{g()},tooltip:{title:r("refresh")}}),(0,tq.jsx)(po.d,{current:s,defaultPageSize:c,onChange:(e,t)=>{d(e),f(t)},showSizeChanger:!0,total:y})]}):void 0,renderTopBar:(0,tq.jsxs)(ap.s,{align:"center",justify:"space-between",style:{padding:"8px 16px"},children:[(0,tq.jsx)(kR.Y,{title:D}),void 0!==i&&(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:()=>{o(!0)},children:r("classification-store.add-key")})]}),children:[(0,tq.jsx)(ap.s,{style:{height:"100%",padding:"0 16px"},vertical:!0,children:(0,tq.jsx)(ul.x,{columns:S,data:h,isLoading:m||p,onUpdateCellData:e=>{let{columnId:t,value:i,rowData:n}=e;"mandatory"===t?j(n,i):"sorter"===t&&null!==i&&w(n,i)}})}),(0,tq.jsx)(A1,{excludedKeyIds:C,onCancel:()=>{o(!1)},onConfirm:e=>{k(e)},open:l,storeId:t})]})},A3=e=>{let{storeId:t}=e,{t:i}=(0,iQ.useTranslation)(),{modal:n}=ig.App.useApp(),[r]=tJ.lV.useForm(),[a]=tJ.lV.useForm(),[l,o]=(0,tG.useState)({}),[s,d]=(0,tG.useState)(1),[c,f]=(0,tG.useState)(20),{data:u,isLoading:m,isFetching:p,refetch:g}=(0,A0.wt)({storeId:t,body:{filters:{page:s,pageSize:c}}}),h=(null==u?void 0:u.items)??[],y=(null==u?void 0:u.totalItems)??0,[v]=(0,A0.Zn)(),[b]=(0,A0.GV)(),[x]=(0,A0._o)(),j=(()=>{let e=(()=>{let e=Object.keys(l).find(e=>l[e]);if(void 0!==e)return parseInt(e,10)})();if(void 0!==e)return h.find(t=>t.id===e)})(),w=(0,tG.useRef)(j);w.current=j,(0,tG.useEffect)(()=>{a.setFieldsValue({name:(null==j?void 0:j.name)??"",description:(null==j?void 0:j.description)??""})},[null==j?void 0:j.id]);let k=(0,tG.useCallback)(e=>{let t=w.current;if(void 0===t)return;let i=a.getFieldsValue(),n=(i.name??"").trim(),r=(i.description??"").trim();"name"in e&&""===n||b({id:t.id,classificationStoreConfigurationGroupUpdate:{name:""!==n?n:t.name,description:""!==r?r:null}}).then(e=>{"error"in e&&(0,iX.Ay)(new iX.hD(e.error))})},[a,b]),{handleFormChange:T}=(0,Ix.T)(k,{delay:300}),S=e=>{n.confirm({title:i("delete"),content:i("classification-store.delete-group",{groupName:e.name}),onOk:async()=>{let t=await x({id:e.id});"error"in t?(0,iX.Ay)(new iX.hD(t.error)):o({})}})},C=(0,tG.useMemo)(()=>(0,cH.createColumnHelper)(),[]),D=(0,tG.useRef)(S);D.current=S;let I=(0,tG.useMemo)(()=>[C.accessor("id",{header:i("classification-store.columns.id"),size:80}),C.accessor("name",{header:i("classification-store.columns.name"),size:220,meta:{type:"input",editable:!0}}),C.display({id:"actions",header:i("classification-store.columns.actions"),size:60,cell:e=>(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{D.current(e.row.original)},tooltip:{title:i("delete")}})})],[i,C]);return(0,tq.jsx)(ht.n,{leftItem:{size:45,minSize:250,children:(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[m?null:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},loading:p,onClick:()=>{g()},tooltip:{title:i("refresh")}}),(0,tq.jsx)(po.d,{current:s,defaultPageSize:c,onChange:(e,t)=>{d(e),f(t)},showSizeChanger:!0,total:y})]}),renderTopBar:(0,tq.jsxs)(ap.s,{align:"center",justify:"space-between",style:{padding:"8px 16px"},children:[(0,tq.jsx)(kR.Y,{title:i("classification-store.tabs.groups")}),(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:()=>{r.setFieldsValue({name:"",description:""}),n.confirm({icon:null,title:i("classification-store.add-group"),content:(0,tq.jsxs)(tJ.lV,{form:r,layout:"vertical",children:[(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.name"),name:"name",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.description"),name:"description",children:(0,tq.jsx)(aR.p,{})})]}),onOk:async()=>{let e=await r.validateFields(),i=""===e.description.trim()?null:e.description,n=await v({classificationStoreConfigurationGroupCreate:{name:e.name,storeId:t}});if("error"in n)return void(0,iX.Ay)(new iX.hD(n.error));if(null!==i){let t=await b({id:n.data.id,classificationStoreConfigurationGroupUpdate:{name:e.name,description:i}});"error"in t&&(0,iX.Ay)(new iX.hD(t.error))}}})},children:i("classification-store.add-group")})]}),children:(0,tq.jsx)(ap.s,{style:{height:"100%",padding:"0 16px"},vertical:!0,children:(0,tq.jsx)(ul.x,{columns:I,data:h,enableRowSelection:!0,isLoading:m||p,onSelectedRowsChange:e=>{o(e)},onUpdateCellData:e=>{let{columnId:t,value:i,rowData:n}=e;if("name"===t){let e=i.trim();if(""===e)return;b({id:n.id,classificationStoreConfigurationGroupUpdate:{name:e,description:n.description??null}}).then(e=>{"error"in e&&(0,iX.Ay)(new iX.hD(e.error))})}},selectedRows:l,setRowId:e=>void 0!==e.id?String(e.id):void 0})})})},resizeAble:!0,rightItem:{size:55,minSize:300,children:void 0===j?(0,tq.jsx)(ap.s,{align:"center",justify:"center",style:{height:"100%"},children:(0,tq.jsx)(he.R,{text:i("classification-store.select-group-hint")})}):(0,tq.jsx)(pl.s,{renderTopBar:(0,tq.jsx)(ap.s,{align:"center",style:{padding:"8px 16px"},children:(0,tq.jsx)(kR.Y,{title:j.name})}),children:(0,tq.jsxs)(ap.s,{style:{height:"100%"},vertical:!0,children:[(0,tq.jsx)(n6.L,{formProps:{form:a,onValuesChange:T},wrapInPanel:!1,children:(0,tq.jsxs)(ap.s,{gap:"small",style:{padding:"8px 16px"},vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.name"),name:"name",rules:[{required:!0}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.description"),name:"description",children:(0,tq.jsx)(aR.p,{})})]})}),(0,tq.jsx)(ap.s,{style:{flex:1,overflow:"hidden"},children:(0,tq.jsx)(A2,{groupId:j.id,groupName:j.name,storeId:t})})]})})},withDivider:!0,withToolbar:!0})};var A6=i(45672),A4=i(52189);let A5=["classification-store"],A7=e=>{let{noPadding:t,onGetLayout:i}=e,{structure:n,setCurrentFieldDefinitionId:r,setCurrentFieldDefinitionIdPath:a,currentFieldDefinitionId:l,getLayout:o}=(0,EW.g)();return(0,tG.useEffect)(()=>{i(o)},[o]),(0,tG.useEffect)(()=>{void 0!==n&&null===l&&(r(n.id),a([n.id]))},[n,l,r,a]),(0,tq.jsx)(A4.x,{noPadding:t})},A8=()=>({data:void 0,isLoading:!1,isFetching:!1,refetch:()=>void 0}),A9=()=>[()=>void 0,{isLoading:!1}],Ne=()=>null,Nt=e=>{let{open:t,keyDetail:i,onClose:n,onSaved:r}=e,{t:a}=(0,iQ.useTranslation)(),[l]=(0,ue.Q)(),o=(0,tG.useRef)(null),s=(0,tG.useCallback)(e=>{o.current=e},[]),d=async()=>{if(void 0===i||null===o.current)return;let e=o.current(),t=i.definition,n="string"==typeof(null==t?void 0:t.title)?t.title:null,a=await l({id:i.id,classificationStoreConfigurationKeyUpdate:{name:i.name,title:n,description:i.description,type:i.type,definition:e??null}});"error"in a?(0,iX.Ay)(new iX.hD(a.error)):r()},c=(()=>{if(void 0===i)return;let e={name:i.name,title:i.name,dataType:"data",fieldType:i.type,fieldtype:i.type,type:null,layout:null,region:null,width:0,height:0,collapsible:!1,collapsed:!1,bodyStyle:null,locked:!1,children:[],icon:null,labelAlign:"left",labelWidth:100,border:!1};return null!==i.definition&&void 0!==i.definition?{...e,...i.definition,fieldType:i.type,fieldtype:i.type}:e})();return(0,tq.jsx)(ig.Modal,{destroyOnClose:!0,okText:a("save"),onCancel:n,onOk:()=>{d()},open:t,styles:{body:{maxHeight:"65vh",overflowY:"auto"}},title:void 0!==i?a("classification-store.edit-key-definition",{keyName:i.name}):"",width:900,children:void 0!==i&&(0,tq.jsx)(A6.PV,{area:A5,children:(0,tq.jsx)(E3.Z6,{GeneralSettingsFormFields:Ne,useDetailGeneralSettingsQuery:A8,useDetailUpdateMutation:A9,useItemsQuery:A8,children:(0,tq.jsx)(EW.U,{layout:c,children:(0,tq.jsx)(A7,{noPadding:!0,onGetLayout:s})},i.type??"unknown")})})})},Ni=e=>{let{storeId:t}=e,{t:i}=(0,iQ.useTranslation)(),{modal:n}=ig.App.useApp(),[r]=tJ.lV.useForm(),a=(0,iv.useInjection)(iv.serviceIds["DynamicTypes/FieldDefinitionRegistry"]),l=(0,tG.useMemo)(()=>a.getTypesByTags(["classificationStore"],{area:["classification-store"],path:[],fieldDefinitions:{}}).map(e=>({label:i("field-definition."+(0,tI.kebabCase)(e.id)),value:e.id})).sort((e,t)=>e.label.localeCompare(t.label)),[a,i]),[o,s]=(0,tG.useState)(void 0),[d,c]=(0,tG.useState)(!1),[f,u]=(0,tG.useState)(1),[m,p]=(0,tG.useState)(20),{data:g,isLoading:h,isFetching:y,refetch:v}=(0,A0.Wm)({storeId:t,body:{filters:{page:f,pageSize:m}}}),b=(null==g?void 0:g.items)??[],x=(null==g?void 0:g.totalItems)??0,j=void 0!==o?b.find(e=>e.id===o):void 0,[w]=(0,A0.F7)(),[k]=(0,A0.Q)(),[T]=(0,A0.U3)(),S=e=>{let t=e.definition;return"string"==typeof(null==t?void 0:t.title)?t.title:null},C=(0,tG.useMemo)(()=>b.map(e=>({...e,title:S(e)??void 0})),[b]),D=e=>{s(e.id),c(!0)},I=e=>{n.confirm({title:i("delete"),content:i("classification-store.delete-key",{keyName:e.name}),onOk:async()=>{let t=await T({id:e.id});"error"in t&&(0,iX.Ay)(new iX.hD(t.error))}})},M=(0,tG.useCallback)(async(e,t)=>{let i=await k({id:e.id,classificationStoreConfigurationKeyUpdate:{name:e.name,title:""===t.trim()?null:t,description:e.description??null,type:e.type,definition:e.definition}});"error"in i&&(0,iX.Ay)(new iX.hD(i.error))},[k]),L=(0,tG.useCallback)(async(e,t)=>{let i=await k({id:e.id,classificationStoreConfigurationKeyUpdate:{name:e.name,title:S(e),description:e.description??null,type:t,definition:null}});"error"in i&&(0,iX.Ay)(new iX.hD(i.error))},[k]),F=(0,tG.useMemo)(()=>(0,cH.createColumnHelper)(),[]),E=(0,tG.useRef)(D);E.current=D;let P=(0,tG.useRef)(I);P.current=I;let A=(0,tG.useRef)(M);A.current=M;let N=(0,tG.useRef)(L);N.current=L;let R=(0,tG.useMemo)(()=>[F.accessor("id",{header:i("classification-store.columns.id"),size:60}),F.accessor("name",{header:i("classification-store.columns.name"),size:160,meta:{type:"input",editable:!0}}),F.accessor("title",{header:i("classification-store.columns.title"),size:160,meta:{type:"input",editable:!0}}),F.accessor("type",{header:i("classification-store.columns.type"),size:180,meta:{type:"select",editable:!0,config:{options:l}}}),F.accessor("description",{header:i("classification-store.columns.description"),size:200,meta:{type:"input",editable:!0}}),F.display({id:"actions",header:i("classification-store.columns.actions"),size:90,cell:e=>(0,tq.jsxs)(ap.s,{align:"center",gap:"mini",children:[(0,tq.jsx)(lp.K,{icon:{value:"edit"},onClick:()=>{E.current(e.row.original)},tooltip:{title:i("classification-store.edit-definition")}}),(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{P.current(e.row.original)},tooltip:{title:i("delete")}})]})})],[i,F,l]);return(0,tq.jsxs)(tq.Fragment,{children:[(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[h?null:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},loading:y,onClick:()=>{v()},tooltip:{title:i("refresh")}}),(0,tq.jsx)(po.d,{current:f,defaultPageSize:m,onChange:(e,t)=>{u(e),p(t)},showSizeChanger:!0,total:x})]}),renderTopBar:(0,tq.jsxs)(ap.s,{align:"center",justify:"space-between",style:{padding:"8px 16px"},children:[(0,tq.jsx)(kR.Y,{title:i("classification-store.tabs.keys")}),(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:()=>{r.setFieldsValue({name:"",description:""}),n.confirm({icon:null,title:i("classification-store.add-key"),content:(0,tq.jsxs)(tJ.lV,{form:r,layout:"vertical",children:[(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.name"),name:"name",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.description"),name:"description",children:(0,tq.jsx)(aR.p,{})})]}),onOk:async()=>{let e=await r.validateFields(),i=""===e.description.trim()?null:e.description,n=await w({classificationStoreConfigurationKeyCreate:{name:e.name,storeId:t}});if("error"in n)return void(0,iX.Ay)(new iX.hD(n.error));if(null!==i){let e=n.data,t=await k({id:e.id,classificationStoreConfigurationKeyUpdate:{name:e.name,title:S(e),description:i,type:e.type,definition:e.definition}});"error"in t&&(0,iX.Ay)(new iX.hD(t.error))}}})},children:i("classification-store.add-key")})]}),children:(0,tq.jsx)(ap.s,{style:{height:"100%",padding:"0 16px"},vertical:!0,children:(0,tq.jsx)(ul.x,{columns:R,data:C,isLoading:h||y,onUpdateCellData:e=>{let{columnId:t,value:i,rowData:n}=e;if("name"===t){let e=i.trim();if(""===e)return;k({id:n.id,classificationStoreConfigurationKeyUpdate:{name:e,title:S(n),description:n.description??null,type:n.type,definition:n.definition}}).then(e=>{"error"in e&&(0,iX.Ay)(new iX.hD(e.error))})}else"title"===t?A.current(n,i):"type"===t?N.current(n,i):"description"===t&&k({id:n.id,classificationStoreConfigurationKeyUpdate:{name:n.name,title:S(n),description:""===i.trim()?null:i,type:n.type,definition:n.definition}}).then(e=>{"error"in e&&(0,iX.Ay)(new iX.hD(e.error))})}})})}),(0,tq.jsx)(Nt,{keyDetail:j,onClose:()=>{c(!1),s(void 0)},onSaved:()=>{c(!1),s(void 0)},open:d})]})},Nn=e=>{let{open:t,storeId:i,excludedGroupIds:n,onConfirm:r,onCancel:a}=e,{t:l}=(0,iQ.useTranslation)(),[o,s]=(0,tG.useState)(""),[d,c]=(0,tG.useState)({}),{data:f,isLoading:u}=(0,A0.wt)({storeId:i,body:{filters:{page:1,pageSize:9999}}},{skip:!t}),m=(null==f?void 0:f.items)??[];(0,tG.useEffect)(()=>{t&&(c({}),s(""))},[t]);let p=(0,tG.useMemo)(()=>{let e=new Set(n);return m.filter(t=>{if(e.has(t.id))return!1;if(""===o.trim())return!0;let i=o.trim().toLowerCase();return t.name.toLowerCase().includes(i)||(t.description??"").toLowerCase().includes(i)})},[m,n,o]),g=(0,cH.createColumnHelper)(),h=[g.accessor("id",{header:l("classification-store.columns.id"),size:60}),g.accessor("name",{header:l("classification-store.columns.name"),size:200}),g.accessor("description",{header:l("classification-store.columns.description"),size:300,cell:e=>e.getValue()??"-"})],y=(0,tG.useMemo)(()=>p.filter(e=>d[String(e.id)]),[d,p]);return(0,tq.jsx)(ig.Modal,{okButtonProps:{disabled:0===y.length},okText:l("classification-store.add-group"),onCancel:a,onOk:()=>{y.length>0&&r(y)},open:t,styles:{body:{maxHeight:"65vh",overflowY:"auto"}},title:l("classification-store.select-group"),width:600,children:(0,tq.jsxs)(ap.s,{gap:"small",vertical:!0,children:[(0,tq.jsx)(ig.Input.Search,{onChange:e=>{s(e.target.value)},placeholder:l("classification-store.search-groups"),value:o}),(0,tq.jsx)(uE.U,{overflow:{x:"hidden",y:"auto"},style:{maxHeight:"calc(65vh - 80px)",minHeight:120},children:(0,tq.jsx)(ul.x,{columns:h,data:p,enableMultipleRowSelection:!0,isLoading:u,onSelectedRowsChange:c,selectedRows:d,setRowId:e=>void 0!==e.id?String(e.id):""})})]})})},Nr=e=>{let{storeId:t,colId:i,collectionName:n}=e,{t:r}=(0,iQ.useTranslation)(),a=(0,aB.Vl)(),[l,o]=(0,tG.useState)(!1),[s,d]=(0,tG.useState)(1),[c,f]=(0,tG.useState)(20),{data:u,isLoading:m,isFetching:p,refetch:g}=(0,A0.d9)({colId:i,body:{filters:{page:s,pageSize:c}}},{skip:void 0===i}),h=(null==u?void 0:u.items)??[],y=(null==u?void 0:u.totalItems)??0,[v]=(0,A0.KD)(),[b]=(0,A0.hq)(),x=(0,tG.useCallback)(e=>{a.confirm({title:r("delete"),content:r("classification-store.delete-group-relation",{groupName:e.groupName??String(e.groupId)}),onOk:async()=>{let t=await b({classificationStoreConfigurationCollectionRelationDelete:{colId:e.colId,groupId:e.groupId}});"error"in t&&(0,iX.Ay)(new iX.hD(t.error))}})},[a,b,r]),j=(0,tG.useCallback)(async(e,t)=>{let i=await v({classificationStoreConfigurationCollectionRelationCreate:{colId:e.colId,groupId:e.groupId,sorter:t}});"error"in i&&(0,iX.Ay)(new iX.hD(i.error))},[v]),w=(0,tG.useCallback)(async e=>{if(void 0!==i)for(let t of(o(!1),await Promise.all(e.map(async e=>await v({classificationStoreConfigurationCollectionRelationCreate:{colId:i,groupId:e.id,sorter:0}})))))"error"in t&&(0,iX.Ay)(new iX.hD(t.error))},[i,v]),k=(0,tG.useMemo)(()=>(0,cH.createColumnHelper)(),[]),T=(0,tG.useMemo)(()=>[k.accessor("groupId",{header:r("classification-store.columns.id"),size:60}),k.accessor("groupName",{header:r("classification-store.columns.name"),size:200,meta:{type:"input"}}),k.accessor("groupDescription",{header:r("classification-store.columns.description"),size:200,meta:{type:"input"}}),k.accessor("sorter",{header:r("classification-store.columns.sorter"),size:100,meta:{type:"number",editable:!0}}),k.display({id:"actions",header:r("classification-store.columns.actions"),size:60,cell:e=>(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{x(e.row.original)},tooltip:{title:r("delete")}})})],[r,x,k]),S=(0,tG.useMemo)(()=>h.map(e=>e.groupId),[h]),C=void 0!==i?r("classification-store.collection-relations-title",{name:n??String(i)}):r("classification-store.select-collection-hint");return(0,tq.jsxs)(pl.s,{renderToolbar:void 0!==i?(0,tq.jsxs)(pc.M,{theme:"secondary",children:[m?null:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},loading:p,onClick:()=>{g()},tooltip:{title:r("refresh")}}),(0,tq.jsx)(po.d,{current:s,defaultPageSize:c,onChange:(e,t)=>{d(e),f(t)},showSizeChanger:!0,total:y})]}):void 0,renderTopBar:(0,tq.jsxs)(ap.s,{align:"center",justify:"space-between",style:{padding:"8px 16px"},children:[(0,tq.jsx)(kR.Y,{title:C}),void 0!==i&&(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:()=>{o(!0)},children:r("classification-store.add-group")})]}),children:[(0,tq.jsx)(ap.s,{style:{height:"100%",padding:"0 16px"},vertical:!0,children:(0,tq.jsx)(ul.x,{columns:T,data:h,isLoading:m||p,onUpdateCellData:e=>{let{columnId:t,value:i,rowData:n}=e;"sorter"===t&&null!==i&&j(n,i)}})}),(0,tq.jsx)(Nn,{excludedGroupIds:S,onCancel:()=>{o(!1)},onConfirm:e=>{w(e)},open:l,storeId:t})]})},Na=e=>{let{storeId:t}=e,{t:i}=(0,iQ.useTranslation)(),{modal:n}=ig.App.useApp(),[r]=tJ.lV.useForm(),[a]=tJ.lV.useForm(),[l,o]=(0,tG.useState)({}),[s,d]=(0,tG.useState)(1),[c,f]=(0,tG.useState)(20),{data:u,isLoading:m,isFetching:p,refetch:g}=(0,A0.pv)({storeId:t,body:{filters:{page:s,pageSize:c}}}),h=(null==u?void 0:u.items)??[],y=(null==u?void 0:u.totalItems)??0,[v]=(0,A0.I2)(),[b]=(0,A0.dz)(),[x]=(0,A0.$v)(),j=(()=>{let e=Object.keys(l).find(e=>l[e]);if(void 0!==e)return h.find(t=>String(t.id)===e)})(),w=(0,tG.useRef)(j);w.current=j,(0,tG.useEffect)(()=>{a.setFieldsValue({name:(null==j?void 0:j.name)??"",description:(null==j?void 0:j.description)??""})},[null==j?void 0:j.id]);let k=(0,tG.useCallback)(e=>{let t=w.current;if(void 0===t)return;let i=a.getFieldsValue(),n=(i.name??"").trim(),r=(i.description??"").trim();"name"in e&&""===n||b({id:t.id,classificationStoreConfigurationCollectionUpdate:{name:""!==n?n:t.name,description:""!==r?r:null}}).then(e=>{"error"in e&&(0,iX.Ay)(new iX.hD(e.error))})},[a,b]),{handleFormChange:T}=(0,Ix.T)(k,{delay:300}),S=e=>{n.confirm({title:i("delete"),content:i("classification-store.delete-collection",{collectionName:e.name}),onOk:async()=>{let t=await x({id:e.id});"error"in t?(0,iX.Ay)(new iX.hD(t.error)):o({})}})},C=(0,tG.useMemo)(()=>(0,cH.createColumnHelper)(),[]),D=(0,tG.useRef)(S);D.current=S;let I=(0,tG.useMemo)(()=>[C.accessor("id",{header:i("classification-store.columns.id"),size:80}),C.accessor("name",{header:i("classification-store.columns.name"),size:220,meta:{type:"input",editable:!0}}),C.display({id:"actions",header:i("classification-store.columns.actions"),size:60,cell:e=>(0,tq.jsx)(lp.K,{icon:{value:"trash"},onClick:()=>{D.current(e.row.original)},tooltip:{title:i("delete")}})})],[i,C]);return(0,tq.jsx)(ht.n,{leftItem:{size:45,minSize:250,children:(0,tq.jsx)(pl.s,{renderToolbar:(0,tq.jsxs)(pc.M,{theme:"secondary",children:[m?null:(0,tq.jsx)(lp.K,{icon:{value:"refresh"},loading:p,onClick:()=>{g()},tooltip:{title:i("refresh")}}),(0,tq.jsx)(po.d,{current:s,defaultPageSize:c,onChange:(e,t)=>{d(e),f(t)},showSizeChanger:!0,total:y})]}),renderTopBar:(0,tq.jsxs)(ap.s,{align:"center",justify:"space-between",style:{padding:"8px 16px"},children:[(0,tq.jsx)(kR.Y,{title:i("classification-store.tabs.collections")}),(0,tq.jsx)(m4.J,{icon:{value:"new"},onClick:()=>{r.setFieldsValue({name:"",description:""}),n.confirm({icon:null,title:i("classification-store.add-collection"),content:(0,tq.jsxs)(tJ.lV,{form:r,layout:"vertical",children:[(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.name"),name:"name",rules:[{required:!0,message:i("form.validation.required")}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.description"),name:"description",children:(0,tq.jsx)(aR.p,{})})]}),onOk:async()=>{let e=await r.validateFields(),i=""===e.description.trim()?null:e.description,n=await v({classificationStoreConfigurationCollectionCreate:{name:e.name,storeId:t}});if("error"in n)return void(0,iX.Ay)(new iX.hD(n.error));if(null!==i){let t=await b({id:n.data.id,classificationStoreConfigurationCollectionUpdate:{name:e.name,description:i}});"error"in t&&(0,iX.Ay)(new iX.hD(t.error))}}})},children:i("classification-store.add-collection")})]}),children:(0,tq.jsx)(ap.s,{style:{height:"100%",padding:"0 16px"},vertical:!0,children:(0,tq.jsx)(ul.x,{columns:I,data:h,enableRowSelection:!0,isLoading:m||p,onSelectedRowsChange:e=>{o(e)},onUpdateCellData:e=>{let{columnId:t,value:i,rowData:n}=e;if("name"===t){let e=i.trim();if(""===e)return;b({id:n.id,classificationStoreConfigurationCollectionUpdate:{name:e,description:n.description??null}}).then(e=>{"error"in e&&(0,iX.Ay)(new iX.hD(e.error))})}},selectedRows:l,setRowId:e=>void 0!==e.id?String(e.id):void 0})})})},resizeAble:!0,rightItem:{size:55,minSize:300,children:void 0===j?(0,tq.jsx)(ap.s,{align:"center",justify:"center",style:{height:"100%"},children:(0,tq.jsx)(he.R,{text:i("classification-store.select-collection-hint")})}):(0,tq.jsx)(pl.s,{renderTopBar:(0,tq.jsx)(ap.s,{align:"center",style:{padding:"8px 16px"},children:(0,tq.jsx)(kR.Y,{title:j.name})}),children:(0,tq.jsxs)(ap.s,{style:{height:"100%"},vertical:!0,children:[(0,tq.jsx)(n6.L,{formProps:{form:a,onValuesChange:T},wrapInPanel:!1,children:(0,tq.jsxs)(ap.s,{gap:"small",style:{padding:"8px 16px"},vertical:!0,children:[(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.name"),name:"name",rules:[{required:!0}],children:(0,tq.jsx)(aR.p,{})}),(0,tq.jsx)(tJ.lV.Item,{label:i("classification-store.columns.description"),name:"description",children:(0,tq.jsx)(aR.p,{})})]})}),(0,tq.jsx)(ap.s,{style:{flex:1,overflow:"hidden"},children:(0,tq.jsx)(Nr,{colId:j.id,collectionName:j.name,storeId:t})})]})})},withDivider:!0,withToolbar:!0})},Nl=e=>{let{storeId:t}=e,{t:i}=(0,iQ.useTranslation)(),{styles:n}=AY(),r=[{key:"keys",icon:(0,tq.jsx)(r9.I,{value:"group-by-keys"}),label:i("classification-store.tabs.keys"),children:(0,tq.jsx)(Ni,{storeId:t})},{key:"groups",icon:(0,tq.jsx)(r9.I,{value:"group"}),label:i("classification-store.tabs.groups"),children:(0,tq.jsx)(A3,{storeId:t})},{key:"collections",icon:(0,tq.jsx)(r9.I,{value:"collection"}),label:i("classification-store.tabs.collections"),children:(0,tq.jsx)(Na,{storeId:t})}];return(0,tq.jsx)(ge.t,{className:n.storeEditorTabsContainer,defaultActiveKey:"keys",items:r,noTabBarMargin:!0})},No=()=>{let e=(0,yc.J)(pw.F.ClassificationStore),{data:t,isLoading:i,isFetching:n,refetch:r}=(0,ue.WP)(void 0,{skip:!e}),[a,l]=(0,tG.useState)([]),[o,s]=(0,tG.useState)(void 0),{styles:d}=AY(),c=t??[],f=(0,tI.isUndefined)(o)?void 0:Number(o),u=(0,tG.useMemo)(()=>{let e=new Set(c.map(e=>e.id));return a.filter(t=>e.has(t.id)).map(e=>({key:String(e.id),icon:(0,tq.jsx)(r9.I,{value:"classification-store"}),label:e.name,children:(0,tq.jsx)(Nl,{storeId:e.id})}))},[c,a]);return(0,tq.jsx)(Lp.v,{leftItem:{children:(0,tq.jsx)(AX,{activeStoreId:f,handleOpenStore:e=>{a.some(t=>t.id===e.id)||l([...a,e]),s(String(e.id))},isFetching:n,isLoading:i,refetch:r,storeList:c})},rightItem:{children:(0,tI.isUndefined)(o)||0===u.length?(0,tq.jsx)(uE.U,{none:!0}):(0,tq.jsx)(pl.s,{children:(0,tq.jsx)(ge.t,{activeKey:o,className:d.tabs,hasStickyHeader:!0,items:u,onChange:e=>{s(e)},onClose:e=>{(e=>{let t=a.findIndex(t=>t.id===e),i=a.filter(t=>t.id!==e);if(String(e)===o){let e=a[t-1],i=a[t+1];s((0,tI.isUndefined)(e)?(0,tI.isUndefined)(i)?void 0:String(i.id):String(e.id))}l(i)})(Number(e))},rootClassName:d.tabsContainer})})}})};ts.s.registerModule({onInit:()=>{tc.kL.get(td.K.mainNavRegistry).registerMainNavItem({path:"DataManagement/DataModelDefinitions/ClassificationStore",label:"navigation.classification-store",className:"classification-store",order:400,permission:pw.F.ClassificationStore,perspectivePermission:pk.d.ClassificationStore,widgetConfig:{name:"classification-store",id:"classification-store-config",component:"classification-store-config",config:{translationKey:"widget.classification-store-config",icon:{type:"name",value:"classification-store"}}}}),tc.kL.get(td.K.widgetManager).registerWidget({name:"classification-store-config",component:No})}})},42811(e,t,i){"use strict";i.d(t,{z:()=>n.z});var n=i(4839)},12701(e,t,i){"use strict";i.d(t,{FH:()=>a,Gy:()=>m,HZ:()=>c,Ji:()=>f,Tg:()=>y,bL:()=>l,d5:()=>d,eZ:()=>o,p0:()=>p,pM:()=>g,rn:()=>r,td:()=>h,vi:()=>s,xX:()=>u});var n=i(53073);let r=["Asset Thumbnails"],a=n.api.enhanceEndpoints({addTagTypes:r}).injectEndpoints({endpoints:e=>({thumbnailImageGetCollection:e.query({query:()=>({url:"/pimcore-studio/api/thumbnails/image"}),providesTags:["Asset Thumbnails"]}),thumbnailImageCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/thumbnails/image/config",method:"POST",body:e.createThumbnailConfig}),invalidatesTags:["Asset Thumbnails"]}),thumbnailImageGetByName:e.query({query:e=>({url:`/pimcore-studio/api/thumbnails/image/config/${e.name}`}),providesTags:["Asset Thumbnails"]}),thumbnailImageUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/thumbnails/image/config/${e.name}`,method:"PUT",body:e.updateThumbnailConfig}),invalidatesTags:["Asset Thumbnails"]}),thumbnailImageDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/thumbnails/image/config/${e.name}`,method:"DELETE"}),invalidatesTags:["Asset Thumbnails"]}),thumbnailImageGetTree:e.query({query:()=>({url:"/pimcore-studio/api/thumbnails/image/tree"}),providesTags:["Asset Thumbnails"]}),thumbnailVideoGetCollection:e.query({query:()=>({url:"/pimcore-studio/api/thumbnails/video"}),providesTags:["Asset Thumbnails"]}),thumbnailVideoCreate:e.mutation({query:e=>({url:"/pimcore-studio/api/thumbnails/video/config",method:"POST",body:e.createThumbnailConfig}),invalidatesTags:["Asset Thumbnails"]}),thumbnailVideoGetByName:e.query({query:e=>({url:`/pimcore-studio/api/thumbnails/video/config/${e.name}`}),providesTags:["Asset Thumbnails"]}),thumbnailVideoUpdate:e.mutation({query:e=>({url:`/pimcore-studio/api/thumbnails/video/config/${e.name}`,method:"PUT",body:e.updateThumbnailConfig}),invalidatesTags:["Asset Thumbnails"]}),thumbnailVideoDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/thumbnails/video/config/${e.name}`,method:"DELETE"}),invalidatesTags:["Asset Thumbnails"]}),thumbnailVideoGetTree:e.query({query:()=>({url:"/pimcore-studio/api/thumbnails/video/tree"}),providesTags:["Asset Thumbnails"]})}),overrideExisting:!1}),{useThumbnailImageGetCollectionQuery:l,useThumbnailImageCreateMutation:o,useThumbnailImageGetByNameQuery:s,useThumbnailImageUpdateMutation:d,useThumbnailImageDeleteMutation:c,useThumbnailImageGetTreeQuery:f,useThumbnailVideoGetCollectionQuery:u,useThumbnailVideoCreateMutation:m,useThumbnailVideoGetByNameQuery:p,useThumbnailVideoUpdateMutation:g,useThumbnailVideoDeleteMutation:h,useThumbnailVideoGetTreeQuery:y}=a},41045(e,t,i){"use strict";i.d(t,{c:()=>p});var n=i(41630),r=i(73362),a=i(79472),l=i(81674),o=i(73488),s=i(20120),d=i(83015),c=i(21724),f=i(92634),u=i(35864),m=i(55638);let p=new class{isWidgetOpen(e){var t;let i=null==(t=n.M_.getState()["widget-manager"])?void 0:t.innerModel;return!(0,u.isNil)(i)&&void 0!==d.Model.fromJson(i).getNodeById(e)}switchToWidget(e){n.M_.dispatch((0,s.pg)(e))}async fetchAndStoreAssetDraft(e){let{data:t}=await n.M_.dispatch(r.api.endpoints.assetGetById.initiate({id:e}));if(!(0,u.isNil)(t)){let i={...t,id:e,modified:!1,properties:[],customMetadata:[],customSettings:[],schedules:[],textData:"",imageSettings:{},changes:{},modifiedCells:{},...f.nd};n.M_.dispatch((0,c.Y$)(i))}}async getWidgetConfig(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],{data:i,isError:s,error:d}=await n.M_.dispatch(r.api.endpoints.assetGetById.initiate({id:e}));if(s&&!t&&(0,m.Ay)(new m.hD(d)),(0,u.isNil)(i)||!(0,a.o)(i.permissions,"view"))return;await this.fetchAndStoreAssetDraft(e);let c=(0,o.g)("asset",e);return{name:null==i?void 0:i.filename,id:c,component:"asset-editor",config:{id:e,elementType:"asset",icon:(0,l.Ip)(i,{value:"widget",type:"name"}),iconColorGroup:"element"}}}async openAsset(e){let{id:t}=e,i=(0,o.g)("asset",t);if(this.isWidgetOpen(i))return void this.switchToWidget(i);let r=await this.getWidgetConfig(t);(0,u.isNil)(r)||n.M_.dispatch((0,s.OS)(r))}}},34108(e,t,i){"use strict";i.d(t,{W:()=>o});var n=i(31635),r=i(62446),a=i(83379),l=i(10600);class o extends a.T{getTopics(){return this.messageBus.getRegisteredTopics()}sendMessage(e){this.messageBus.routeMessage(e)}constructor(e){super(),this.messageBus=e,this.name="global-message-bus-process",this.description="Global process for message bus handling operations"}}o=(0,n.Cg)([(0,r.injectable)(),(0,n.Qj)(0,(0,r.inject)(l.K.globalMessageBus)),(0,n.Sn)("design:type",Function),(0,n.Sn)("design:paramtypes",["u"g});var n=i(41630),r=i(91434),a=i(53996),l=i(79472),o=i(81674),s=i(73488),d=i(20120),c=i(83015),f=i(54100),u=i(92634),m=i(35864),p=i(55638);let g=new class{isWidgetOpen(e){var t;let i=null==(t=n.M_.getState()["widget-manager"])?void 0:t.innerModel;return!(0,m.isNil)(i)&&void 0!==c.Model.fromJson(i).getNodeById(e)}switchToWidget(e){n.M_.dispatch((0,d.pg)(e))}async fetchAndStoreDataObjectDraft(e){let{data:t}=await n.M_.dispatch(r.FH.endpoints.dataObjectGetById.initiate({id:e}));if(!(0,m.isNil)(t)){let i={draftData:null,...t,id:e,modified:!1,properties:[],schedules:[],changes:{},modifiedCells:{},modifiedObjectData:{},...u.nd};n.M_.dispatch((0,f.pw)(i))}}async getWidgetConfig(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];n.M_.dispatch(r.FH.util.invalidateTags(a.qN.DATA_OBJECT_DETAIL_ID(e)));let{data:i,isError:d,error:c}=await n.M_.dispatch(r.FH.endpoints.dataObjectGetById.initiate({id:e}));if(d&&!t&&(0,p.Ay)(new p.hD(c)),(0,m.isNil)(i)||!(0,l.o)(i.permissions,"view"))return;await this.fetchAndStoreDataObjectDraft(e);let f=(0,o.Ip)(i,{value:"widget",type:"name"}),u=(0,s.g)("data-object",e);return{name:null==i?void 0:i.key,id:u,component:"data-object-editor",config:{id:e,elementType:"data-object",icon:f,iconColorGroup:"element"}}}async openDataObject(e){let{id:t}=e,i=(0,s.g)("data-object",t);if(this.isWidgetOpen(i))return void this.switchToWidget(i);let r=await this.getWidgetConfig(t);(0,m.isNil)(r)||n.M_.dispatch((0,d.OS)(r))}}},18453(e,t,i){"use strict";i.d(t,{J:()=>g});var n=i(41630),r=i(46766),a=i(53996),l=i(79472),o=i(81674),s=i(73488),d=i(20120),c=i(83015),f=i(29376),u=i(92634),m=i(35864),p=i(55638);let g=new class{isWidgetOpen(e){var t;let i=null==(t=n.M_.getState()["widget-manager"])?void 0:t.innerModel;return!(0,m.isNil)(i)&&void 0!==c.Model.fromJson(i).getNodeById(e)}switchToWidget(e){n.M_.dispatch((0,d.pg)(e))}async fetchAndStoreDocumentDraft(e){let{data:t}=await n.M_.dispatch(r.FH.endpoints.documentGetById.initiate({id:e}));if(!(0,m.isNil)(t)){let i={...t,id:e,modified:!1,properties:[],schedules:[],changes:{},modifiedCells:{},...u.nd};n.M_.dispatch((0,f.FP)(i))}}async getWidgetConfig(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];n.M_.dispatch(r.FH.util.invalidateTags(a.qN.DOCUMENT_DETAIL_ID(e)));let{data:i,isError:d,error:c}=await n.M_.dispatch(r.FH.endpoints.documentGetById.initiate({id:e}));if(d&&!t&&(0,p.Ay)(new p.hD(c)),(0,m.isNil)(i)||!(0,l.o)(i.permissions,"view"))return;await this.fetchAndStoreDocumentDraft(e);let f=(0,o.Ip)(i,{value:"widget",type:"name"}),u=(0,s.g)("document",e);return{name:null==i?void 0:i.key,id:u,component:"document-editor",config:{id:e,elementType:"document",icon:f,iconColorGroup:"element"}}}async openDocument(e){let{id:t}=e,i=(0,s.g)("document",t);if(this.isWidgetOpen(i))return void this.switchToWidget(i);let r=await this.getWidgetConfig(t);(0,m.isNil)(r)||n.M_.dispatch((0,d.OS)(r))}}},93534(e,t,i){"use strict";i.d(t,{F:()=>l,Q:()=>o});var n=i(53996);let r=i(53073).api.enhanceEndpoints({addTagTypes:["Dependencies"]}).injectEndpoints({endpoints:e=>({dependencyGetCollectionByElementType:e.query({query:e=>({url:`/pimcore-studio/api/dependencies/${e.elementType}/${e.id}`,params:{page:e.page,pageSize:e.pageSize,dependencyMode:e.dependencyMode}}),providesTags:["Dependencies"]})}),overrideExisting:!1}),{useDependencyGetCollectionByElementTypeQuery:a}=r,l=r.enhanceEndpoints({addTagTypes:[n.nP.ASSET_DETAIL,n.nP.DATA_OBJECT_DETAIL,n.nP.DEPENDENCIES],endpoints:{dependencyGetCollectionByElementType:{providesTags:(e,t,i)=>n.yc.ELEMENT_DEPENDENCIES(i.elementType,i.id).filter(e=>void 0!==e)}}}),{useDependencyGetCollectionByElementTypeQuery:o}=l},42796(e,t,i){"use strict";i.d(t,{i6:()=>p,PB:()=>f,FH:()=>c,tb:()=>g,Jj:()=>m,Ts:()=>u});var n=i(53996);let r=i(53073).api.enhanceEndpoints({addTagTypes:["Schedule"]}).injectEndpoints({endpoints:e=>({scheduleDeleteById:e.mutation({query:e=>({url:`/pimcore-studio/api/schedules/${e.id}`,method:"DELETE"}),invalidatesTags:["Schedule"]}),scheduleGetCollectionForElementByTypeAndId:e.query({query:e=>({url:`/pimcore-studio/api/schedules/${e.elementType}/${e.id}`}),providesTags:["Schedule"]}),scheduleUpdateForElementByTypeAndId:e.mutation({query:e=>({url:`/pimcore-studio/api/schedules/${e.elementType}/${e.id}`,method:"PUT",body:e.body}),invalidatesTags:["Schedule"]}),scheduleCreateForElementByTypeAndId:e.mutation({query:e=>({url:`/pimcore-studio/api/schedules/${e.elementType}/${e.id}`,method:"POST"}),invalidatesTags:["Schedule"]}),scheduleListActionsForElementType:e.query({query:e=>({url:`/pimcore-studio/api/schedules/actions/${e.elementType}`}),providesTags:["Schedule"]})}),overrideExisting:!1}),{useScheduleDeleteByIdMutation:a,useScheduleGetCollectionForElementByTypeAndIdQuery:l,useScheduleUpdateForElementByTypeAndIdMutation:o,useScheduleCreateForElementByTypeAndIdMutation:s,useScheduleListActionsForElementTypeQuery:d}=r,c=r.enhanceEndpoints({addTagTypes:[n.nP.ASSET_DETAIL,n.nP.DATA_OBJECT_DETAIL],endpoints:{scheduleGetCollectionForElementByTypeAndId:{providesTags:(e,t,i)=>{var r;let a=[];return null==e||null==(r=e.items)||r.forEach(e=>{a.push(...n.yc.SCHEDULE_DETAIL(e.id))}),[...a,...n.yc.ELEMENT_SCHEDULES(i.elementType,i.id)]}},scheduleUpdateForElementByTypeAndId:{invalidatesTags:(e,t,i)=>n.qN.ELEMENT_SCHEDULES(i.elementType,i.id)},scheduleCreateForElementByTypeAndId:{invalidatesTags:(e,t,i)=>n.qN.ELEMENT_SCHEDULES(i.elementType,i.id)},scheduleDeleteById:{invalidatesTags:(e,t,i)=>n.qN.SCHEDULE_DETAIL(i.id)}}}),{useScheduleDeleteByIdMutation:f,useScheduleGetCollectionForElementByTypeAndIdQuery:u,useScheduleUpdateForElementByTypeAndIdMutation:m,useScheduleCreateForElementByTypeAndIdMutation:p,useScheduleListActionsForElementTypeQuery:g}=c},26777(e,t,i){"use strict";i.d(t,{FH:()=>r,e1:()=>c,l0:()=>h});var n=i(53996);let r=i(48250).FH.enhanceEndpoints({addTagTypes:[n.nP.EMAIL_BLOCKLIST,n.nP.EMAIL_BLOCKLIST_DETAIL,n.nP.EMAIL_LOG,n.nP.EMAIL_LOG_DETAIL],endpoints:{emailBlocklistGetCollection:{providesTags:(e,t,i)=>{var r;let a=[];return null==e||null==(r=e.items)||r.forEach(e=>{a.push(...n.yc.EMAIL_BLOCKLIST_DETAIL(e.email))}),[...a,...n.yc.EMAIL_BLOCKLIST()]}},emailBlocklistAdd:{invalidatesTags:(e,t,i)=>n.qN.EMAIL_BLOCKLIST()},emailBlocklistDelete:{invalidatesTags:(e,t,i)=>n.qN.EMAIL_BLOCKLIST_DETAIL(i.email)},emailLogGetCollection:{providesTags:(e,t,i)=>{var r;let a=[];return null==e||null==(r=e.items)||r.forEach(e=>{a.push(...n.yc.EMAIL_LOG_DETAIL(e.id))}),[...a,...n.yc.EMAIL_LOG()]}},emailLogDelete:{invalidatesTags:()=>[]}}}),{useEmailBlocklistGetCollectionQuery:a,useEmailBlocklistAddMutation:l,useEmailBlocklistDeleteMutation:o,useEmailLogGetCollectionQuery:s,useEmailLogGetByIdQuery:d,useEmailLogDeleteMutation:c,useEmailLogGetHtmlQuery:f,useEmailLogGetParamsQuery:u,useEmailLogGetTextQuery:m,useEmailLogForwardByIdMutation:p,useEmailLogResendByIdMutation:g,useEmailSendTestMutation:h}=r},48250(e,t,i){"use strict";i.d(t,{A3:()=>f,CH:()=>o,FH:()=>n,Iq:()=>p,LZ:()=>c,a4:()=>m,dc:()=>l,et:()=>s,j_:()=>a,lF:()=>u,nD:()=>r});let n=i(53073).api.enhanceEndpoints({addTagTypes:["E-Mails"]}).injectEndpoints({endpoints:e=>({emailBlocklistGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/emails/blocklist",params:{page:e.page,pageSize:e.pageSize,email:e.email}}),providesTags:["E-Mails"]}),emailBlocklistAdd:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/blocklist",method:"POST",body:e.emailAddressParameter}),invalidatesTags:["E-Mails"]}),emailBlocklistDelete:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/blocklist",method:"DELETE",params:{email:e.email}}),invalidatesTags:["E-Mails"]}),emailLogGetCollection:e.query({query:e=>({url:"/pimcore-studio/api/emails",params:{page:e.page,pageSize:e.pageSize}}),providesTags:["E-Mails"]}),emailLogGetById:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}`}),providesTags:["E-Mails"]}),emailLogDelete:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}`,method:"DELETE"}),invalidatesTags:["E-Mails"]}),emailLogGetHtml:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/html`}),providesTags:["E-Mails"]}),emailLogGetParams:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/params`}),providesTags:["E-Mails"]}),emailLogGetText:e.query({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/text`}),providesTags:["E-Mails"]}),emailLogForwardById:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/forward`,method:"POST",body:e.emailAddressParameter}),invalidatesTags:["E-Mails"]}),emailLogResendById:e.mutation({query:e=>({url:`/pimcore-studio/api/emails/${e.id}/resend`,method:"POST"}),invalidatesTags:["E-Mails"]}),emailSendTest:e.mutation({query:e=>({url:"/pimcore-studio/api/emails/test",method:"POST",body:e.sendEmailParameters}),invalidatesTags:["E-Mails"]})}),overrideExisting:!1}),{useEmailBlocklistGetCollectionQuery:r,useEmailBlocklistAddMutation:a,useEmailBlocklistDeleteMutation:l,useEmailLogGetCollectionQuery:o,useEmailLogGetByIdQuery:s,useEmailLogDeleteMutation:d,useEmailLogGetHtmlQuery:c,useEmailLogGetParamsQuery:f,useEmailLogGetTextQuery:u,useEmailLogForwardByIdMutation:m,useEmailLogResendByIdMutation:p,useEmailSendTestMutation:g}=n},87434(e,t,i){"use strict";i.d(t,{A:()=>a});var n=i(31635),r=i(62446);class a{}a=(0,n.Cg)([(0,r.injectable)()],a)},69367(e,t,i){"use strict";i.d(t,{FH:()=>n,HE:()=>a});let n=i(53073).api.enhanceEndpoints({addTagTypes:["GDPR Data Extractor"]}).injectEndpoints({endpoints:e=>({gdprExport:e.query({query:e=>({url:`/pimcore-studio/api/gdpr/export-data/${e.id}`,params:{providerKey:e.providerKey}}),providesTags:["GDPR Data Extractor"]}),gdprListProviders:e.query({query:()=>({url:"/pimcore-studio/api/gdpr/providers"}),providesTags:["GDPR Data Extractor"]}),gdprSearchData:e.query({query:e=>({url:"/pimcore-studio/api/gdpr/search",method:"POST",body:e.body,params:{provider:e.provider}}),providesTags:["GDPR Data Extractor"]})}),overrideExisting:!1}),{useGdprExportQuery:r,useGdprListProvidersQuery:a,useGdprSearchDataQuery:l}=n},89285(e,t,i){"use strict";i.d(t,{r4:()=>o,tw:()=>c});var n=i(53996),r=i(69367),a=i(35864);let{useGdprExportQuery:l,useLazyGdprExportQuery:o,useGdprListProvidersQuery:s,useGdprSearchDataQuery:d,useLazyGdprSearchDataQuery:c}=r.FH.enhanceEndpoints({addTagTypes:[n.nP.GDPR_DATA,n.nP.GDPR_DATA_DETAIL],endpoints:{gdprSearchData:{providesTags:(e,t,i)=>{let r=[];return void 0!==e&&(r=(null==e?void 0:e.items.flatMap(e=>(0,a.isNil)(e.data)||!("id"in e.data)||(0,a.isNil)(e.data.id)?[]:n.yc.GDPR_DATA_DETAIL(i.provider,e.data.id)).filter(Boolean))??[]),[...r,...n.yc.GDPR_DATA(i.provider)]}}}})},79422(e,t,i){"use strict";i.d(t,{d:()=>o});var n=i(31635),r=i(62446),a=i(10600),l=i(35864);class o{registerTopics(e){if(!(0,l.isNil)(this.globalSubscriptionId))throw Error("Cannot register new topics after global subscription has started. Topics must be registered in your module's onInit() method before the app starts.");e.forEach(e=>this.registeredTopics.add(e))}getRegisteredTopics(){return Array.from(this.registeredTopics)}registerHandler(e){let t=e.getId();this.activeHandlers.set(t,e),(0,l.isNil)(e.onRegister)||e.onRegister(),this.replayBufferedMessages(e)}unregisterHandler(e){let t=this.activeHandlers.get(e);(0,l.isNil)(null==t?void 0:t.onUnregister)||t.onUnregister(),this.activeHandlers.delete(e)}startGlobalSubscription(){if(null===this.globalSubscriptionId)try{this.globalSubscriptionId=this.backgroundProcessor.subscribeToProcessMessages({processName:"global-message-bus-process",callback:e=>{this.routeMessage(e)}})}catch(e){console.error("Failed to establish global subscription:",e)}}async routeMessage(e){let t=[];for(let i of this.activeHandlers.values())i.shouldHandle(e)&&t.push(i);if(0===t.length)return void this.bufferMessage(e);for(let i of t)try{await i.handleMessage(e)}catch(e){console.error("GlobalMessageBus: Error processing message with handler",i.getId(),e)}}bufferMessage(e){this.messageBuffer.length>=this.MAX_BUFFER_SIZE&&(console.warn("GlobalMessageBus: Message buffer full, removing oldest messages"),this.messageBuffer.splice(0,this.messageBuffer.length-this.MAX_BUFFER_SIZE+100)),this.messageBuffer.push({mercureMessage:e,timestamp:Date.now()}),this.debouncedCleanup()}async replayBufferedMessages(e){let t=[];for(let i of this.messageBuffer)e.shouldHandle(i.mercureMessage)&&t.push(i);if(t.length>0){for(let i of(t.sort((e,t)=>e.timestamp-t.timestamp),t))try{await e.handleMessage(i.mercureMessage)}catch(t){console.error("GlobalMessageBus: Error replaying message for handler",e.getId(),t)}this.messageBuffer=this.messageBuffer.filter(e=>!t.includes(e))}}cleanupExpiredMessages(){let e=Date.now();this.messageBuffer=this.messageBuffer.filter(t=>e-t.timestamp{this.cleanupExpiredMessages()},5e3)}}o=(0,n.Cg)([(0,r.injectable)(),(0,n.Qj)(0,(0,r.inject)(a.K.backgroundProcessor)),(0,n.Sn)("design:type",Function),(0,n.Sn)("design:paramtypes",["u"a});var n=i(31635),r=i(62446);class a{register(e){let{name:t,component:i}=e;this.icons.set(t,i)}get(e){return this.icons.get(e)}getIcons(){return this.icons}constructor(){this.icons=new Map}}a=(0,n.Cg)([(0,r.injectable)()],a)},71207(e,t,i){"use strict";i.d(t,{w:()=>n});let n={"data-object":{title:"open-data-object-modal.title",label:"open-data-object-modal.label",requiredMessage:"open-data-object-modal.required-message",okText:"open-data-object-modal.ok-button",cancelText:"open-data-object-modal.cancel-button"},asset:{title:"open-asset-modal.title",label:"open-asset-modal.label",requiredMessage:"open-asset-modal.required-message",okText:"open-asset-modal.ok-button",cancelText:"open-asset-modal.cancel-button"},document:{title:"open-document-modal.title",label:"open-document-modal.label",requiredMessage:"open-document-modal.required-message",okText:"open-document-modal.ok-button",cancelText:"open-document-modal.cancel-button"}}},53789(e,t,i){"use strict";i.d(t,{x:()=>l});var n=i(79606),r=i(56789),a=i(55638);let l=()=>{let{openElement:e}=(0,r.K)(),[t,{isLoading:i}]=(0,n.zq)(),l=async(i,n)=>{try{let r=await t({elementType:n,searchTerm:i}).unwrap();await e({id:r.id,type:n})}catch(e){(0,a.Ay)(new a.hD(e))}};return{openElementByPathOrId:async(e,t)=>{isNaN(Number(e))?"string"==typeof e&&await l(e,t):await l(e.toString(),t)},isLoading:i}}},87902(e,t,i){"use strict";i.d(t,{t:()=>a});var n=i(31635),r=i(62446);class a{registerItem(e,t){let i=this.items[e].findIndex(e=>e.key===t.key);-1!==i?this.items[e][i]=t:this.items[e].push(t),this.items[e].sort((e,t)=>e.priority-t.priority)}getItems(e){return this.items[e].map(e=>e.key)}constructor(){this.items={asset:[],"data-object":[],document:[]}}}a=(0,n.Cg)([(0,r.injectable)()],a)},72324(e,t,i){"use strict";i.r(t),i.d(t,{api:()=>n.api,usePerspectiveCreateMutation:()=>n.usePerspectiveCreateMutation,usePerspectiveDeleteMutation:()=>n.usePerspectiveDeleteMutation,usePerspectiveGetConfigByIdQuery:()=>n.usePerspectiveGetConfigByIdQuery,usePerspectiveGetConfigCollectionQuery:()=>n.usePerspectiveGetConfigCollectionQuery,usePerspectiveUpdateConfigByIdMutation:()=>n.usePerspectiveUpdateConfigByIdMutation,usePerspectiveWidgetCreateMutation:()=>n.usePerspectiveWidgetCreateMutation,usePerspectiveWidgetDeleteMutation:()=>n.usePerspectiveWidgetDeleteMutation,usePerspectiveWidgetGetConfigByIdQuery:()=>n.usePerspectiveWidgetGetConfigByIdQuery,usePerspectiveWidgetGetConfigCollectionQuery:()=>n.usePerspectiveWidgetGetConfigCollectionQuery,usePerspectiveWidgetGetTypeCollectionQuery:()=>n.usePerspectiveWidgetGetTypeCollectionQuery,usePerspectiveWidgetUpdateConfigByIdMutation:()=>n.usePerspectiveWidgetUpdateConfigByIdMutation});var n=i(33461);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},40271(e,t,i){"use strict";i.r(t),i.d(t,{NavPermission:()=>n.d,PerspectivesApiSlice:()=>l,TreePermission:()=>r.o,usePerspectives:()=>a.n});var n=i(85422),r=i(68153),a=i(76374),l=i(33461);void 0!==(e=i.hmd(e)).hot&&e.hot.accept()},61098(e,t){var i=Object.create,n=Object.defineProperty,r=Object.getOwnPropertyDescriptor,a=Object.getOwnPropertyNames,l=Object.getPrototypeOf,o=Object.prototype.hasOwnProperty,s=(e,t,i,l)=>{if(t&&"object"==typeof t||"function"==typeof t)for(var s,d=a(t),c=0,f=d.length;ct[e]).bind(null,s),enumerable:!(l=r(t,s))||l.enumerable});return e};t.__esmMin=(e,t)=>()=>(e&&(t=e(e=0)),t),t.__exportAll=(e,t)=>{let i={};for(var r in e)n(i,r,{get:e[r],enumerable:!0});return t||n(i,Symbol.toStringTag,{value:"Module"}),i},t.__toCommonJS=e=>o.call(e,"module.exports")?e["module.exports"]:s(n({},"__esModule",{value:!0}),e),t.__toESM=(e,t,r)=>(r=null!=e?i(l(e)):{},s(!t&&e&&e.__esModule?r:n(r,"default",{value:e,enumerable:!0}),e))},71954(e,t,i){Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),i(61098);var n=i(42532);Object.keys(n).forEach(function(e){"default"===e||Object.prototype.hasOwnProperty.call(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:function(){return n[e]}})})},42532(e,t,i){var n=i(99782);Object.keys(n).forEach(function(e){"default"===e||Object.prototype.hasOwnProperty.call(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:function(){return n[e]}})})},13232(e,t,i){"use strict";i.d(t,{S:()=>f});var n=i(74848),r=i(43588);i(47867);var a=i(21429),l=i(44241),o=i(78250);let s=(0,l.createStyles)(e=>{let{token:t,css:i}=e;return{modal:i` - .ant-modal-content { - height: 281px; - border-radius: ${t.borderRadiusSM} !important; - background: black !important; - - .ant-modal-close { - color: ${new o.Y(t.colorWhite).setA(.66).toHexString()}; - - &:hover { - color: ${new o.Y(t.colorWhite).setA(.88).toHexString()}; - } - } - - .ant-modal-header .ant-modal-title { - color: ${new o.Y(t.colorWhite).setA(.88).toHexString()}; - position: absolute; - z-index: 1; - } - - .ant-modal-body { - .ant-btn { - color: ${t["purple-4"]}; - } - - .video-container { - position: absolute; - width: 100%; - height: 100%; - left: 0; - top: 0; - - video { - position: absolute; - width: 100%; - height: 100%; - object-fit: 'cover'; - z-index: 0; - min-height: 281px; - } - - .content-container { - position: relative; - z-index: 1; - color: ${new o.Y(t.colorWhite).setA(.88).toHexString()}; - height: 100%; - - > .ant-flex { - margin-top: 175px; - } - } - } - } - } - `,pimcoreBtn:i` - padding: 0 !important; - `}},{hashPriority:"low"});var d=i(18613),c=i(35864);let f=e=>{let{t}=(0,a.useTranslation)(),{styles:i}=s(),l=(0,d.useSettings)(),o=null==l?void 0:l.platform_version,f=null==l?void 0:l.version;return(0,n.jsx)(r.Modal,{...e,className:i.modal,footer:(0,n.jsx)(n.Fragment,{}),title:t("about.title"),width:520,children:(0,n.jsxs)("div",{className:"video-container",children:[(0,n.jsx)("video",{autoPlay:!0,loop:!0,muted:!0,playsInline:!0,src:"/bundles/pimcorestudioui/videos/about-bg.mp4"}),(0,n.jsx)("div",{className:"content-container",children:(0,n.jsxs)(r.Flex,{align:"center",gap:"small",vertical:!0,children:[(0,n.jsxs)(r.Flex,{align:"center",gap:"mini",vertical:!0,children:[(0,c.isNil)(o)?(0,c.isNil)(f)?(0,n.jsx)(n.Fragment,{}):(0,n.jsx)("span",{children:t("about.version",{version:f})}):(0,n.jsx)("span",{children:t("about.platform-version",{version:o})}),(0,n.jsxs)(r.Flex,{align:"center",gap:"mini",children:[(0,n.jsx)("span",{children:t("about.copyright")}),(0,n.jsxs)("span",{children:["(",(0,n.jsx)(r.Button,{className:i.pimcoreBtn,href:"https://pimcore.com/",target:"_blank",type:"link",variant:"text",children:"pimcore.com"}),")"]})]})]}),(0,n.jsxs)(r.Flex,{gap:"normal",children:[(0,n.jsx)(r.Button,{href:"https://github.com/pimcore/pimcore/blob/12.x/LICENSE.md",target:"_blank",type:"link",variant:"text",children:t("about.buttons.license")}),(0,n.jsx)(r.Button,{href:"https://pimcore.com/en/contact-us",target:"_blank",type:"link",variant:"text",children:t("about.buttons.contact")})]})]})})]})})}},75401(e,t,i){"use strict";i.d(t,{J:()=>d,c:()=>c});var n=i(74848),r=i(47867),a=i(8849),l=i(13232),o=i(35864);let s=(0,r.createContext)(void 0),d=e=>{let{children:t}=e,[i,o]=(0,r.useState)(!1),{addModal:d,removeModal:c}=(0,a.r)(),f="about-dialog-modal",u=()=>{i&&(o(!1),c(f))},m=()=>{i||o(!0)};(0,r.useEffect)(()=>{i&&d(f,(0,n.jsx)(l.S,{onCancel:u,onClose:u,onOk:u,open:i}))},[i]);let p=(0,r.useMemo)(()=>({open:m}),[m]);return(0,n.jsx)(s.Provider,{value:p,children:t})},c=()=>{let e=(0,r.useContext)(s);if((0,o.isUndefined)(e))throw Error("useAboutDialogContext must be used within a AboutDialogProvider");return e}},64471(e,t,i){"use strict";i.d(t,{D:()=>d});var n=i(74848),r=i(63364),a=i(41630),l=i(93960);i(47867);var o=i(62284),s=i(72636);let d=e=>{let{children:t,themeId:i}=e;return(0,n.jsx)(r.ts,{children:(0,n.jsx)(o.Provider,{store:a.M_,children:(0,n.jsx)(l.N,{id:i,children:(0,n.jsx)(s.ry,{children:t})})})})}},5481(e,t,i){"use strict";i.d(t,{Y:()=>et});var n=i(74848),r=i(47867),a=i(99242),l=i(36349),o=i(59603),s=i(81598),d=i(95245),c=i(5229),f=i(80794),u=i(80223),m=i(13232),p=i(75401);let g=e=>{let{children:t}=e;return(0,n.jsxs)(p.J,{children:[t,(0,n.jsx)(m.S,{})]})};var h=i(97264),y=i(8849),v=i(27994),b=i(2046),x=i(25750),j=i(10733),w=i(30492),k=i(2338),T=i(13755),S=i(55638),C=i(26234),D=i(15623),I=i(86569),M=i(21429),L=i(92428),F=i(81898);let E=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{itemRow:i` - padding: ${t.paddingXXS}px 0; - `}}),P=e=>{let{items:t,toggleItem:i,isSelected:r}=e,{styles:a}=E();return(0,n.jsx)("div",{className:"bulk-export-items-table",children:t.map(e=>(0,n.jsxs)(x.s,{align:"center",className:a.itemRow,gap:"small",children:[(0,n.jsx)(L.S,{checked:r(e.type,e.name),onChange:()=>{i(e.type,e.name)}}),(0,n.jsx)(F.I,{value:e.icon}),(0,n.jsx)("span",{children:e.displayName})]},`${e.type}-${e.name}`))})},A=e=>{let{selectedItems:t,selectAll:i,deselectAll:a,toggleItem:l,isSelected:o,closeModal:s,...d}=e,{t:c}=(0,M.useTranslation)(),{token:f}=I.theme.useToken(),{data:u,isLoading:m}=(0,D.dX)(),[p,{isLoading:g}]=(0,D.bP)(),h=(0,r.useMemo)(()=>(null==u?void 0:u.items)===void 0?{}:u.items.reduce((e,t)=>{let i=e[t.type]??[];return i.push(t),e[t.type]=i,e},{}),[u]),y=(0,r.useMemo)(()=>(null==u?void 0:u.items)===void 0?[]:u.items.map(e=>({type:e.type,name:e.name})),[u]);(0,r.useEffect)(()=>{y.length>0&&0===t.length&&i(y)},[y]);let L=async()=>{try{let e=await p({bulkExportParameters:{items:t}});if(!("data"in e))throw new S.$g("Bulk export failed");let i=e.data instanceof Blob?e.data:new Blob([JSON.stringify(e.data)],{type:"application/json"});(0,C.P)("bulk-export.json",i),s()}catch{throw new S.$g("Bulk export failed")}},F=["class","customlayout","fieldcollection","objectbrick"],E=(0,r.useMemo)(()=>Object.keys(h).sort((e,t)=>{let i=F.indexOf(e),n=F.indexOf(t);return -1===i&&-1===n?e.localeCompare(t):-1===i?1:-1===n?-1:i-n}),[h]),A=(0,n.jsxs)(j.j,{children:[(0,n.jsx)(v.$,{onClick:d.onCancel,children:c("bulk-export.cancel")}),(0,n.jsx)(v.$,{disabled:0===t.length||g,loading:g,onClick:L,type:"primary",children:c("bulk-export.export")})]});return(0,n.jsxs)(w.a,{...d,footer:A,limitContentHeight:!0,size:"L",title:c("bulk-export.title"),children:[m&&(0,n.jsx)(x.s,{align:"center",justify:"center",style:{padding:`${f.paddingXL}px 0`},children:(0,n.jsx)(T.t,{asContainer:!0})}),!m&&(0,n.jsxs)(x.s,{gap:"extra-small",vertical:!0,children:[(0,n.jsxs)(x.s,{gap:"small",children:[(0,n.jsx)(v.$,{onClick:()=>{i(y)},size:"small",children:c("bulk-export.select-all")}),(0,n.jsx)(v.$,{onClick:()=>{a()},size:"small",children:c("bulk-export.deselect-all")})]}),(0,n.jsx)(k.$,{direction:"vertical",children:E.map(e=>(0,n.jsx)(b.XP,{defaultActive:!0,label:c(`bulk-export.type.${e}`),theme:"default",children:(0,n.jsx)(P,{isSelected:o,items:h[e],toggleItem:l})},e))})]})]})},N="bulk-export-modal",R=()=>{let{isOpen:e,close:t,selectedItems:i,selectAll:a,deselectAll:l,toggleItem:o,isSelected:s}=(0,h.$)(),{addModal:d,removeModal:c}=(0,y.r)();return(0,r.useEffect)(()=>{e?d(N,(0,n.jsx)(A,{closeModal:t,deselectAll:l,isSelected:s,onCancel:t,onClose:t,open:e,selectAll:a,selectedItems:i,toggleItem:o})):c(N)},[e,i,s]),(0,n.jsx)(n.Fragment,{})},V=e=>{let{children:t}=e;return(0,n.jsxs)(h.Q,{children:[t,(0,n.jsx)(R,{})]})};var z=i(18087),B=i(42811),O=i(58200),K=i(2662),_=i(35864),H=i(41630),$=i(82763),W=i(23004);class q{async run(e){let{messageBus:t}=e;try{var i;let n=await H.M_.dispatch(W.FH.endpoints.classBulkImport.initiate({fileId:this.fileId,bulkImportParameters:{items:this.items}}));if(!(0,_.isUndefined)(n.error))return void(0,S.Ay)(new S.hD(n.error));let r=null==(i=n.data)?void 0:i.jobRunId;if((0,_.isUndefined)(r))return void(0,S.Ay)(new S.$g("Bulk import did not return a jobRunId"));let a=new $.j({jobRunId:r,title:this.title,onJobCompletion:async e=>{if(e.isFinished){var t;null==(t=this.onFinish)||t.call(this)}else(0,S.Ay)(new S.$g("Bulk import job failed"))},onRetry:async()=>{await this.run(e)}});t.registerHandler(a)}catch(e){(0,S.Ay)(new S.$g(e.message))}}constructor(e){this.fileId=e.fileId,this.items=e.items,this.title=e.title,this.onFinish=e.onFinish}}let G=e=>{let{selectedItems:t,selectAll:i,deselectAll:a,toggleItem:l,isSelected:o,closeModal:s,...d}=e,{t:c}=(0,M.useTranslation)(),[f,u]=(0,r.useState)("upload"),m=(0,r.useRef)(!1),{fileId:p,availableItems:g,setUploadResult:h,handleImport:y,reset:T}=(()=>{let[e,t]=(0,r.useState)(null),[i,n]=(0,r.useState)([]),a=(0,K.O)(),l=(0,r.useCallback)(e=>{t(e.fileId),n(e.items)},[]);return{fileId:e,availableItems:i,setUploadResult:l,handleImport:(0,r.useCallback)((e,t,i)=>{let n=new q({fileId:e,items:t,title:i});a.runJob(n)},[a]),reset:(0,r.useCallback)(()=>{t(null),n([])},[])}})(),S=(0,r.useMemo)(()=>g.reduce((e,t)=>{let i=e[t.type]??[];return i.push(t),e[t.type]=i,e},{}),[g]),C=["class","customlayout","fieldcollection","objectbrick"],D=(0,r.useMemo)(()=>Object.keys(S).sort((e,t)=>{let i=C.indexOf(e),n=C.indexOf(t);return -1===i&&-1===n?e.localeCompare(t):-1===i?1:-1===n?-1:i-n}),[S]),I=()=>{u("upload"),a(),T()},L=()=>{I(),s()},F=(0,n.jsxs)(j.j,{children:[(0,n.jsx)(v.$,{onClick:()=>{I()},children:c("bulk-import.back")}),(0,n.jsx)(v.$,{disabled:0===t.length,onClick:()=>{(0,_.isNil)(p)||(y(p,t,c("bulk-import.job-title")),s())},type:"primary",children:c("bulk-import.import")})]});return(0,n.jsxs)(n.Fragment,{children:["upload"===f&&(0,n.jsx)(B.z,{accept:".json,application/json",acceptMimeTypes:["application/json"],action:`${(0,O.$)()}/class/bulk-import/prepare`,onOpenChange:e=>{if(!e){if(m.current){m.current=!1;return}L()}},onUploadSuccess:e=>{h({fileId:e.fileId,items:e.items}),i(e.items.map(e=>({type:e.type,name:e.name}))),m.current=!0,u("select")},open:d.open,showSuccessMessage:!1,title:c("bulk-import.title"),uploadButtonLabel:c("bulk-import.next")}),"select"===f&&(0,n.jsx)(w.a,{footer:F,limitContentHeight:!0,onCancel:L,open:!0,size:"L",title:c("bulk-import.title"),children:(0,n.jsxs)(x.s,{gap:"extra-small",vertical:!0,children:[(0,n.jsxs)(x.s,{gap:"small",children:[(0,n.jsx)(v.$,{onClick:()=>{i(g.map(e=>({type:e.type,name:e.name})))},size:"small",children:c("bulk-import.select-all")}),(0,n.jsx)(v.$,{onClick:a,size:"small",children:c("bulk-import.deselect-all")})]}),(0,n.jsx)(k.$,{direction:"vertical",children:D.map(e=>(0,n.jsx)(b.XP,{defaultActive:!0,label:c(`bulk-import.type.${e}`),theme:"default",children:(0,n.jsx)(P,{isSelected:o,items:S[e],toggleItem:l})},e))})]})})]})},U="bulk-import-modal",Q=()=>{let{isOpen:e,close:t,selectedItems:i,selectAll:a,deselectAll:l,toggleItem:o,isSelected:s}=(0,z.G)(),{addModal:d,removeModal:c}=(0,y.r)();return(0,r.useEffect)(()=>{e?d(U,(0,n.jsx)(G,{closeModal:t,deselectAll:l,isSelected:s,onCancel:t,onClose:t,open:e,selectAll:a,selectedItems:i,toggleItem:o})):c(U)},[e,i,s]),(0,n.jsx)(n.Fragment,{})},J=e=>{let{children:t}=e;return(0,n.jsxs)(z.d,{children:[t,(0,n.jsx)(Q,{})]})};var Z=i(64860);let Y=e=>{let{children:t}=e;return(0,n.jsx)(Z.s,{children:t})};var X=i(69634),ee=i(74152);let et=e=>{let{children:t}=e;return(0,n.jsx)(u.R,{children:(0,n.jsx)(a.c,{children:(0,n.jsx)(l.L,{children:(0,n.jsx)(o.p,{children:(0,n.jsx)(s.r,{children:(0,n.jsx)(d.I,{children:(0,n.jsx)(c._,{children:(0,n.jsx)(g,{children:(0,n.jsx)(V,{children:(0,n.jsx)(J,{children:(0,n.jsx)(Y,{children:(0,n.jsxs)(f.e,{children:[(0,n.jsx)(X.Y,{slot:ee.e.global.modal.name}),t]})})})})})})})})})})})})}},97264(e,t,i){"use strict";i.d(t,{$:()=>s,Q:()=>o});var n=i(74848),r=i(47867),a=i(35864);let l=(0,r.createContext)(void 0),o=e=>{let{children:t}=e,[i,a]=(0,r.useState)(!1),[o,s]=(0,r.useState)([]),d=(0,r.useCallback)(()=>{a(!1),s([])},[]),c=(0,r.useCallback)(()=>{i||a(!0)},[i]),f=(0,r.useCallback)((e,t)=>{s(i=>i.some(i=>i.type===e&&i.name===t)?i.filter(i=>i.type!==e||i.name!==t):[...i,{type:e,name:t}])},[]),u=(0,r.useCallback)(e=>{s(e)},[]),m=(0,r.useCallback)(()=>{s([])},[]),p=(0,r.useCallback)((e,t)=>o.some(i=>i.type===e&&i.name===t),[o]),g=(0,r.useMemo)(()=>({open:c,close:d,isOpen:i,selectedItems:o,toggleItem:f,selectAll:u,deselectAll:m,isSelected:p}),[c,d,i,o,f,u,m,p]);return(0,n.jsx)(l.Provider,{value:g,children:t})},s=()=>{let e=(0,r.useContext)(l);if((0,a.isUndefined)(e))throw Error("useBulkExportContext must be used within a BulkExportProvider");return e}},18087(e,t,i){"use strict";i.d(t,{G:()=>s,d:()=>o});var n=i(74848),r=i(35864),a=i(47867);let l=(0,a.createContext)(void 0),o=e=>{let{children:t}=e,[i,r]=(0,a.useState)(!1),[o,s]=(0,a.useState)([]),d=(0,a.useCallback)(()=>{r(!1),s([])},[]),c=(0,a.useCallback)(()=>{i||r(!0)},[i]),f=(0,a.useCallback)((e,t)=>{s(i=>i.some(i=>i.type===e&&i.name===t)?i.filter(i=>i.type!==e||i.name!==t):[...i,{type:e,name:t}])},[]),u=(0,a.useCallback)(e=>{s(e)},[]),m=(0,a.useCallback)(()=>{s([])},[]),p=(0,a.useCallback)((e,t)=>o.some(i=>i.type===e&&i.name===t),[o]),g=(0,a.useMemo)(()=>({open:c,close:d,isOpen:i,selectedItems:o,toggleItem:f,selectAll:u,deselectAll:m,isSelected:p}),[c,d,i,o,f,u,m,p]);return(0,n.jsx)(l.Provider,{value:g,children:t})},s=()=>{let e=(0,a.useContext)(l);if((0,r.isUndefined)(e))throw Error("useBulkImportContext must be used within a BulkImportProvider");return e}},80794(e,t,i){"use strict";i.d(t,{A:()=>w,e:()=>k});var n=i(74848),r=i(57231),a=i(47867),l=i(21429),o=i(86569),s=i(35864),d=i(23558),c=i(67104),f=i(24755),u=i(8255),m=i(80632),p=i(28083),g=i(18848),h=i(16014),y=i(59446),v=i(18037);let b=e=>{let{form:t,initialValues:i,onValuesChange:o}=e,{t:s}=(0,l.useTranslation)(),d=(0,y.t)(),{getDisplayName:c}=(0,v.W)(),f=(null==d?void 0:d.validLanguages)??[];return(0,a.useEffect)(()=>{t.setFieldsValue(i)},[t,i]),(0,n.jsxs)(u.L,{formProps:{form:t,layout:"vertical",onValuesChange:o},children:[(0,n.jsx)(r.lV.Item,{label:s("document.site.form.main-domain"),name:"mainDomain",children:(0,n.jsx)(m.p,{})}),(0,n.jsx)(r.lV.Item,{label:s("document.site.form.additional-domains"),name:"domains",tooltip:s("document.site.form.additional-domains-tooltip"),children:(0,n.jsx)(p.f,{autoSize:{minRows:3,maxRows:8}})}),(0,n.jsx)(r.lV.Item,{name:"redirectToMainDomain",valuePropName:"checked",children:(0,n.jsx)(g.d,{labelRight:s("document.site.form.redirect-to-main-domain")})}),(0,n.jsxs)(u.L.Panel,{title:s("document.site.form.error-documents"),children:[(0,n.jsx)(r.lV.Item,{label:s("document.site.form.default-error-document"),name:"errorDocument",children:(0,n.jsx)(h.P,{allowToClearRelation:!0,allowedDocumentTypes:["page"],documentsAllowed:!0})}),f.length>0&&(0,n.jsx)(n.Fragment,{children:f.map(e=>(0,n.jsx)(r.lV.Item,{label:s("document.site.form.error-document-language",{language:c(String(e))}),name:["errorDocuments",e],children:(0,n.jsx)(h.P,{allowToClearRelation:!0,allowedDocumentTypes:["page"],documentsAllowed:!0})},e))})]})]})};var x=i(18196);let j=e=>{let{modal:t,onClose:i,onSubmit:r,onFormChange:a}=e,{t:s}=(0,l.useTranslation)(),u=async()=>{let e=t.form.getFieldsValue();await r(e)},m=(0,n.jsxs)(o.Flex,{align:"center",gap:"small",children:[(0,n.jsx)("span",{children:t.config.title}),(0,x.uI)(t.config.documentPath)&&(0,n.jsx)(c.F,{elementType:f.W.document,id:t.config.documentId,inline:!0,path:t.config.documentPath})]});return(0,n.jsx)(d.m,{okButtonProps:{loading:t.isLoading},okText:s("save"),onCancel:i,onClose:i,onOk:u,open:!0,size:"L",title:m,children:(0,n.jsx)(b,{form:t.form,initialValues:t.config.initialValues,onValuesChange:a})})},w=(0,a.createContext)(void 0),k=e=>{let{children:t}=e,{t:i}=(0,l.useTranslation)(),{modal:d}=o.App.useApp(),[c,f]=(0,a.useState)(null),[u]=r.lV.useForm(),m=e=>{if(!(0,s.isNull)(c)){if(c.config.documentId===e.documentId)return void f(t=>(0,s.isNull)(t)?null:{...t,config:e});if(c.hasUnsavedChanges)return void d.confirm({title:i("unsaved-changes.title"),content:i("unsaved-changes.message"),okText:i("save-and-continue"),cancelText:i("discard-and-continue"),onOk:()=>{(async()=>{try{let t=c.form.getFieldsValue();await c.config.onSubmit(t),p(e)}catch(e){console.error("Failed to save current changes:",e)}})()},onCancel:()=>{p(e)}})}p(e)},p=e=>{u.resetFields(),u.setFieldsValue(e.initialValues),f({config:e,form:u,isLoading:!1,hasUnsavedChanges:!1})},g=()=>{(0,s.isNull)(c)||!c.hasUnsavedChanges?f(null):d.confirm({title:i("unsaved-changes.title"),content:i("unsaved-changes.close-message"),okText:i("discard-changes"),cancelText:i("cancel"),onOk:()=>{f(null)}})},h=e=>{f(t=>(0,s.isNull)(t)?null:{...t,isLoading:e})},y=async e=>{if(!(0,s.isNull)(c)){h(!0);try{await c.config.onSubmit(e),f(e=>(0,s.isNull)(e)?null:{...e,hasUnsavedChanges:!1}),f(null)}catch(e){console.error("Site modal submission failed:",e)}finally{h(!1)}}},v=(0,a.useMemo)(()=>({openModal:m,closeModal:g,isOpen:null!==c,currentDocumentId:(null==c?void 0:c.config.documentId)??null}),[c]);return(0,n.jsxs)(w.Provider,{value:v,children:[(0,s.isNull)(c)?null:(0,n.jsx)(j,{modal:c,onClose:g,onFormChange:()=>{f(e=>(0,s.isNull)(e)?null:{...e,hasUnsavedChanges:!0})},onSubmit:y}),t]})}},5229(e,t,i){"use strict";i.d(t,{w:()=>C,_:()=>D});var n,r=i(74848),a=i(57231),l=i(23558),o=i(47867),s=i(21429),d=i(28453),c=i(80632),f=i(1993),u=i(74462),m=i(43588),p=i(25750),g=i(14013),h=i(89507);let y=(0,i(44241).createStyles)(e=>{let{token:t,css:i}=e;return{formLabel:i` - padding-left: 4px; - `}}),v=e=>{let{form:t}=e,{t:i}=(0,s.useTranslation)(),{styles:n}=y(),[a,l]=(0,o.useState)([{key:"",value:""}]),d=(0,h.createColumnHelper)(),c=[d.accessor("key",{header:i("test-email.parameters.columns.key"),meta:{editable:!0}}),d.accessor("value",{header:i("test-email.parameters.columns.value"),meta:{autoWidth:!0,editable:!0}})],f=async e=>{let{rowIndex:i,value:n,columnId:r}=e,o=[...a];o[i]={...o[i],[r]:n},l(o),t.setFieldValue("documentParameters",o)};return(0,r.jsxs)(p.s,{gap:4,vertical:!0,children:[(0,r.jsxs)(p.s,{align:"center",justify:"space-between",children:[(0,r.jsx)("p",{className:n.formLabel,children:i("test-email.form.parameters")}),(0,r.jsx)(m.IconTextButton,{icon:{value:"new"},onClick:()=>{l([...a,{key:"",value:""}])},title:i("test-email.form.parameters.add-parameter"),children:i("test-email.parameters.add")})]}),(0,r.jsx)(g.x,{autoWidth:!0,columns:c,data:a,onUpdateCellData:f,resizable:!0})]})};var b=((n=b||{}).Document="document",n.HTML="html",n.Text="text",n);let x=e=>{let{initialValues:t,form:i}=e,{t:n}=(0,s.useTranslation)();return(0,r.jsxs)(a.lV,{form:i,initialValues:{contentType:b.Text,...t},layout:"vertical",children:[(0,r.jsx)(a.lV.Item,{label:n("test-email.form.from"),name:"from",rules:[{required:!0,message:n("test-email.validation.from.required")},{type:"email",message:n("test-email.validation.from.email.type")}],children:(0,r.jsx)(c.p,{"data-testid":"test-email-from-input",type:"email"})}),(0,r.jsx)(a.lV.Item,{label:n("test-email.form.to"),name:"to",rules:[{required:!0,message:n("test-email.validation.to.required")},{type:"email",message:n("test-email.validation.to.email.type")}],children:(0,r.jsx)(c.p,{"data-testid":"test-email-to-input",type:"email"})}),(0,r.jsx)(a.lV.Item,{label:n("test-email.form.subject"),name:"subject",rules:[{required:!0,message:n("test-email.validation.subject.required")}],children:(0,r.jsx)(c.p,{"data-testid":"test-email-subject-input"})}),(0,r.jsx)(a.lV.Item,{label:n("test-email.form.contentType"),name:"contentType",children:(0,r.jsx)(f.l,{"data-testid":"test-email-content-type-select",options:[{label:n(`test-email.contentType.${b.Document}`),value:b.Document},{label:n(`test-email.contentType.${b.HTML}`),value:b.HTML},{label:n(`test-email.contentType.${b.Text}`),value:b.Text}]})}),(0,r.jsx)(a.lV.Item,{dependencies:["contentType"],noStyle:!0,children:e=>{let{getFieldValue:t}=e;switch(t("contentType")??b.Text){case b.Document:return(0,r.jsxs)(r.Fragment,{children:[(0,r.jsx)(a.lV.Item,{label:n("test-email.form.document"),name:"documentPath",rules:[{required:!0,message:n("test-email.validation.documentPath.required")}],children:(0,r.jsx)(u.P,{allowToClearRelation:!0,allowedDocumentTypes:["email"],documentsAllowed:!0})}),(0,r.jsx)(a.lV.Item,{name:"documentParameters",children:(0,r.jsx)(v,{form:i})})]});case b.HTML:return(0,r.jsx)(a.lV.Item,{label:n("test-email.form.message"),name:"content",rules:[{required:!0,message:n("test-email.validation.content.required")}],children:(0,r.jsx)(d.B,{basicSetup:{lineNumbers:!0,syntaxHighlighting:!0,searchKeymap:!0},extensions:(0,m.getLanguageExtensions)("html"),minHeight:"200px"})});case b.Text:return(0,r.jsx)(a.lV.Item,{label:n("test-email.form.message"),name:"content",rules:[{required:!0,message:n("test-email.validation.content.required")}],children:(0,r.jsx)(m.TextArea,{autoSize:{minRows:10},"data-testid":"test-email-message-textarea"})})}}})]})};var j=i(62930),w=i(86818),k=i(28792),T=i(35864),S=i(26777);let C=(0,o.createContext)(void 0),D=e=>{let{children:t}=e,{t:i}=(0,s.useTranslation)(),[n,d]=(0,o.useState)(!1),{send:c}=(()=>{let[e]=(0,S.l0)(),{t}=(0,s.useTranslation)(),i=(0,m.useFormModal)();return{send:async(n,r,a)=>{let l=e({sendEmailParameters:n});try{let e=await l;if(!(0,T.isUndefined)(e.error)){null==a||a(),(0,k.A)(new j.Ay(e.error));return}i.confirm({title:t("test-email.success.modal.title"),content:t("test-email.success.modal.text"),okText:t("yes"),cancelText:t("no"),onCancel:()=>{null==r||r()},onOk:()=>{null==a||a()}})}catch{null==a||a(),(0,k.A)(new w.A(t("test-email.send.error")))}}}})(),[f]=a.lV.useForm(),[u,p]=(0,o.useState)(!1),g=()=>{f.resetFields(),d(!1)},h=async()=>{p(!0),await f.validateFields().then(async()=>{var e;let t=f.getFieldsValue(),i={...t,documentPath:(null==(e=t.documentPath)?void 0:e.fullPath)??null};await c(i,()=>{g()})}).finally(()=>{p(!1)})},y=(0,o.useMemo)(()=>({isOpen:n,setIsOpen:d,form:f,closeModal:g}),[n,f]);return(0,r.jsxs)(C.Provider,{value:y,children:[(0,r.jsx)(l.m,{okButtonProps:{loading:u},okText:i("test-email-modal-send"),onCancel:()=>{g()},onClose:()=>{g()},onOk:async()=>{await h()},open:n,size:"L",title:i("test-email-modal-title"),children:(0,r.jsx)(x,{form:f})}),t]})}},87106(e,t,i){"use strict";i.d(t,{e:()=>c});var n=i(74848),r=i(41630),a=i(43588),l=i(23945),o=i(47867),s=i(26777),d=i(53996);let c=e=>{let{id:t,elementType:i,label:c,providerKey:f,onClick:u,...m}=e,{deleteElement:p}=(0,l.useDelete)(i),[g,h]=(0,o.useState)(!1),y=(0,r.jL)();return(0,n.jsx)(a.IconButton,{...m,icon:{value:"trash"},loading:g||m.loading,onClick:e=>{h(!0),p(t,c,void 0,()=>{h(!1),y(s.FH.util.invalidateTags(d.qN.GDPR_DATA(f)))}),null==u||u(e)}})}},3226(e,t,i){"use strict";i.d(t,{N:()=>u});var n=i(74848),r=i(43588),a=i(47867),l=i(89285),o=i(26234),s=i(35864),d=i(28792),c=i(62930),f=i(18613);let u=e=>{let{id:t,providerKey:i,onClick:u,loading:m,...p}=e,[g,{isLoading:h,error:y}]=(0,l.r4)(),v=async e=>{try{let n=await g({id:t,providerKey:i}).unwrap();(0,o.z)(`gdpr-export-${i}-${t}.json`,n),null==u||u(e)}catch(e){console.error("Export failed:",e),(0,d.A)(new f.GeneralError(e.message))}};return(0,a.useEffect)(()=>{(0,s.isUndefined)(y)||(0,d.A)(new c.Ay(y))},[y]),(0,n.jsx)(r.IconButton,{...p,icon:{value:"export"},loading:h||m,onClick:v})}},57982(e,t,i){"use strict";i.d(t,{z:()=>l});var n=i(74848),r=i(43588),a=i(23945);i(47867);let l=e=>{let{id:t,elementType:i,onClick:l,...o}=e,{openElement:s}=(0,a.useElementHelper)();return(0,n.jsx)(r.IconButton,{...o,icon:{value:"open-folder"},onClick:async e=>{await s({id:t,type:i}),null==l||l(e)}})}},30920(e,t,i){"use strict";i.d(t,{r:()=>a});var n,r=i(23945);let a=(0,i(62446).injectable)()(n=class extends r.DynamicTypeRegistryAbstract{})||n},64860(e,t,i){"use strict";i.d(t,{Q:()=>u,s:()=>f});var n=i(74848),r=i(47867),a=i(21429),l=i(35864),o=i(43565),s=i(53789),d=i(71207);let c=(0,r.createContext)(void 0),f=e=>{let{children:t}=e,{openElementByPathOrId:i}=(0,s.x)(),{t:l}=(0,a.useTranslation)(),{input:f}=(0,o.Vl)(),u=(e,t)=>{let n=d.w[e];f({title:l(n.title),label:l(n.label),rule:{required:!0,message:l(n.requiredMessage)},okText:l(n.okText),cancelText:l(n.cancelText),onOk:async n=>{await i(n,e),null==t||t()}})},m=(0,r.useMemo)(()=>({open:u}),[]);return(0,n.jsx)(c.Provider,{value:m,children:t})},u=()=>{let e=(0,r.useContext)(c);if((0,l.isUndefined)(e))throw Error("useOpenElement must be used within a OpenElementProvider");return e}},93036(e,t,i){"use strict";i.d(t,{y:()=>s});var n,r=i(74848),a=i(43588),l=i(62446);function o(e,t,i){var n;return(t="symbol"==typeof(n=function(e,t){if("object"!=typeof e||!e)return e;var i=e[Symbol.toPrimitive];if(void 0!==i){var n=i.call(e,t||"default");if("object"!=typeof n)return n;throw TypeError("@@toPrimitive must return a primitive value.")}return("string"===t?String:Number)(e)}(t,"string"))?n:n+"")in e?Object.defineProperty(e,t,{value:i,enumerable:!0,configurable:!0,writable:!0}):e[t]=i,e}i(47867);let s=(0,l.injectable)()(n=class{getSubMenuItems(e,t){return e.map(e=>({label:e.name,key:e.id,icon:(0,r.jsx)(a.Icon,{...e.icon}),onClick:void 0===t?void 0:()=>{t(e)}}))}constructor(){o(this,"id",void 0),o(this,"name",void 0),o(this,"group",void 0),o(this,"icon",void 0)}})||n},134(e,t,i){"use strict";i.d(t,{t:()=>d});var n,r=i(74848),a=i(69186),l=i(62446),o=i(81898);i(47867);var s=i(21429);let d=(0,l.injectable)()(n=class extends a.P{getMenuItems(e,t){let i={};for(let e of this.getDynamicTypes())i[e.group]=i[e.group]??[],i[e.group].push(e);return Object.entries(i).map(i=>{let[n,a]=i;return{key:n,label:(0,r.jsx)(s.Trans,{children:`widget-editor.create-form.widgetTypeGroup.${n}`}),type:"group",children:a.map(i=>({label:(0,r.jsx)(s.Trans,{children:`widget-editor.create-form.widgetType.${i.name}`}),key:i.id,icon:(0,r.jsx)(o.I,{value:i.icon}),children:i.getSubMenuItems(e.filter(e=>e.widgetType===i.id),t)}))}})}})||n}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js.LICENSE.txt deleted file mode 100644 index f5d20e255b..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/616.fa7dd900.js.LICENSE.txt +++ /dev/null @@ -1,23 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * This source file is available under the terms of the - * Pimcore Open Core License (POCL) - * Full copyright and license information is available in - * LICENSE.md which is distributed with this source code. - * - * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * @license Pimcore Open Core License (POCL) - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js deleted file mode 100644 index c75c99c624..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6186.9fa7f507.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6186"],{39441(l,s,i){i.r(s),i.d(s,{default:()=>t});var e=i(74848);i(47867);let t=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"kg_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-84.949 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#kg_inline_svg__a)",transform:"translate(79.64)scale(.9375)",children:[(0,e.jsx)("path",{fill:"#be0027",d:"M-128 0h768.77v512H-128z"}),(0,e.jsx)("path",{fill:"#ff0",d:"M105.45 261.14c13.658-16.61 41.95-.399 65.045-12.359-27.358 1.504-42.27-13.129-63.884-11.078 22.395-13.757 41.461 4.5 66.502-2.839-33.165-2.79-31.727-17.615-61.884-19.72 26.788-11.426 40.036 11.75 66.276 6.479-30.927-7.14-35.045-25.356-58.039-29.212 33.608-5.073 31.417 14.794 64.364 17.22-33.441-14.345-24.676-26.797-52.645-37.723 31.297-.74 29.222 20.95 60.93 26.64-27.144-17.22-23.791-32.935-46.149-45.232 26.524.48 29.114 27.629 56.184 36.04-24.148-19.16-17.797-35.313-38.664-52.423 26.383 6.188 22.542 29.61 50.019 44.552-20.363-22.615-12.55-38.805-30.314-57.318 25.374 8.172 15.735 30.432 42.065 51.595-15.094-24.855-5.775-40.707-20.629-61.677 23.559 12.166 12.151 34.872 34.023 57.558-10.295-25.508.015-41.352-10.507-63.941 20.152 15.057 8.166 39.323 24.422 62.472-5.926-31.92 7.841-37.17 3.557-65.124 15.306 18.79-1.802 37.58 9.949 65.26-1.43-31.476 15.294-38.795 12.394-64.067 15.169 22.645-8.507 42.353 1.395 66.605 2.56-29.864 22.185-37.597 22.49-60.836 11.933 21.332-14.111 36.672-9.884 64.955 8.57-31.196 29.476-35.051 31.943-56.025 7.235 24.678-21.265 36.15-19.598 63.5 8.489-27.735 34.62-30.988 39.962-51.475 3.297 26.107-22.4 30.742-29.635 59.585 13.512-23.54 37.143-25.471 47.783-44.09-.835 25.816-29.844 29.2-38.748 53.373 16.725-20.51 37.691-16.95 54.415-35.135-1.765 23.299-31.293 21.982-47.009 46.104 18.136-16.732 45.435-11.718 59.33-26.125-.674 20.608-36.908 19.059-53.996 37.479 21.075-11.545 47.757-4.764 63.225-15.487-2.826 18.068-41.076 13.845-59.356 27.946 25.211-6.985 44.677 3.81 65.102-3.995-9.94 17.587-44.634 6.455-63.054 17.888 21.88-3.705 45.126 9.55 65.091 5.297-6.562 15.201-44.58-.918-65.09 8.538 24.51-.215 40.402 15.434 63.133 14.4-12.363 13.762-45.788-5.163-65.262-1.93 23.76 4.914 41.911 24.601 59.926 25.55-14.784 11.351-42.423-14.498-64.864-11.216 23.105 6.185 42.516 32.472 55.774 33.048-14.284 9.762-42.517-22.464-61.86-21.319 23.495 10.62 34.271 37.515 49.697 41.296-19.099 6.128-37.868-29.217-58.39-30.442 23.771 14.993 25.114 37.918 43.417 48.124-19.257 4.708-32.964-35.167-53.259-38.532 19.49 14.327 22.428 44.931 35.351 54.608-19.607 1.036-26.692-40.714-46.787-46.678 17.216 14.38 13.094 45.58 26.48 58.863-20.426-4.19-17.793-40.538-39.118-52.778 15.32 19.32 7.527 46.846 17.512 62.337-19.87-8.038-11.24-40.568-30.21-58.99 10.348 20.582-.774 44.586 7.387 64.486-18.153-8.854-5.944-47.384-19.856-62.666 6.395 23.786-5.4 43.47-.646 64.794-18.559-21.526 2.817-43.189-13.281-65.125 4.273 25.177-13.336 42.697-10.567 63.771-14.716-17.19 7.905-44.774-3.528-66.478 2.462 24.754-20.276 46.44-18.715 62.03-11.978-19.968 13.298-43.583 6.53-66.286-1.425 23.572-24.37 36.382-28.691 57.856-7.713-23.689 19.564-40.812 17.209-64.09-7.811 22.144-29.982 31.023-37.793 52.484-6.395-23.623 25.914-36.167 26.768-61.02-9.987 23.308-36.522 28.426-45.28 46.264-3.269-23.5 33.808-34.007 35.188-56.275-11.936 21.382-40.97 22.25-50.991 39.254-1.52-23.416 37.582-26.316 43.72-50.825-11.882 18.278-43.734 15.907-56.986 30.767 2.09-21.722 44.388-23.066 51.129-42.6-15.723 15.168-44.963 8.882-61.426 20.913 9.163-21.335 48.838-16.812 57.808-32.267-17.564 9.164-48.68.28-63.997 9.444 13.92-20.206 44.803-8.135 62.28-22.05-28.428 4.143-45.506-7.17-65.182-1.933z"}),(0,e.jsx)("path",{fill:"#ff0",d:"M355.939 256.111c0 54.8-44.424 99.223-99.223 99.223s-99.222-44.424-99.222-99.223 44.424-99.222 99.222-99.222c54.8 0 99.223 44.423 99.223 99.222"}),(0,e.jsx)("path",{fill:"#be0027",d:"M343.17 256.307c0 47.644-38.623 86.265-86.265 86.265s-86.264-38.622-86.264-86.265 38.622-86.264 86.264-86.264c47.644 0 86.265 38.622 86.265 86.264"}),(0,e.jsx)("path",{fill:"#ff0",d:"M331.156 256.487c0 40.911-33.164 74.075-74.074 74.075-40.911 0-74.075-33.165-74.075-74.075s33.165-74.075 74.075-74.075 74.074 33.165 74.074 74.075"}),(0,e.jsx)("path",{fill:"#be0027",d:"M194.04 207.95c20.501-.451 46.033 1.418 62.859 14.893 17.859-11.154 39.005-16.311 60.54-14.313l11.025 20.115c-15.989-1.613-31.591.646-50.095 8.124 23.597 18.696 35.395 42.81 34.622 72.144-2.707 3.352-6.963 7.091-9.67 10.443 3.932-28.496-11.09-60.279-32.881-76.978 17.73 25.596 28.304 48.676 25.339 80.46-3.16 1.87-6.9 4.513-10.058 6.383 4.64-28.045-1.933-60.926-22.63-80.074 11.927 17.537 23.855 48.999 16.44 81.04-3.224.968-8.188 3.676-11.411 4.643 8.317-26.239 3.093-59.056-10.832-78.719-13.796 19.794-18.31 50.029-10.445 77.946-3.869-.967-6.77-2.128-10.637-3.095-5.673-30.043 2.193-63.957 15.86-81.62-13.925 8.06-27.078 42.614-23.404 77.946-3.352-1.547-5.932-2.708-9.283-4.256-4.513-26.369 7.413-60.666 24.564-80.46-19.471 12.25-35.266 42.294-32.494 74.658-2.966-2.643-5.739-3.932-8.704-6.575-3.417-28.24 12.894-56.67 32.106-73.691-16.182-7.222-30.043-8.64-50.094-8.318 3.159-6.512 6.125-14.183 9.284-20.695z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6186.9fa7f507.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js deleted file mode 100644 index b974fd6616..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 619.59f8e380.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["619"],{83654(c,s,t){t.r(s),t.d(s,{default:()=>a});var d=t(74848);t(47867);let a=c=>(0,d.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",xmlnsXlink:"http://www.w3.org/1999/xlink",viewBox:"0 0 640 480",width:"1em",height:"1em",...c,children:[(0,d.jsx)("path",{fill:"#d0103a",d:"M0 0h640v480H0z"}),(0,d.jsx)("path",{fill:"#fedf00",d:"M0 0h435.2v480H0z"}),(0,d.jsx)("path",{fill:"#0018a8",d:"M0 0h204.8v480H0z"}),(0,d.jsx)("path",{fill:"#c7b37f",d:"M300.397 136.627c7.712 0 10.866 6.617 18.578 6.617 4.76 0 7.538-1.555 11.687-3.896 2.895-1.64 4.743-2.514 8.068-2.514 3.404 0 5.49 1.03 7.232 3.947.984 1.652 1.8 4.883 1.368 6.737-.82 3.516-1.325 5.044-2.727 8.29-.668 1.56-1.298 2.495-1.298 4.202 0 4.093 5.57 5.5 9.358 5.558.826.013 7.77.127 12.042-4.2-2.32-.1-4.913-1.896-4.913-4.214 0-2.624 1.844-4.4 4.343-5.157.475-.136 1.284.284 1.714.057.61-.316.323-1.003.866-1.433 1.244-.994 2.053-1.615 3.647-1.615 1.04 0 1.65.146 2.487.746.44.317.603.71 1.146.71 1.142 0 1.708-.725 2.85-.725.927 0 1.493.125 2.307.543.678.35.663 1.503 1.432 1.503.385 0 2.42-.828 3.48-.828 2.207 0 3.384.8 4.81 2.472.384.453.63 1.368 1.02 1.368.788 0 2.602.507 3.733 1.638.486.486.702.716 1.075 1.304.26.42.66 1.44 1.12 1.617.538.208.99.168 1.698.623 1.618 1.036 2.86 2.983 2.803 4.87-.02.633-.31 1.516-.48 2.12-1.883 6.58-6.363 8.67-10.886 14.323-1.923 2.41-3.44 4.33-3.44 7.418 0 .747.92 2.114 1.326 2.736-.248-1.45.415-3.233 1.948-3.316 2.1-.113 3.724 1.484 4.007 3.564.056.487-.125 1.327-.332 1.824 1.13-.746 2.62-1.25 3.978-1.41.736-.078 1.16-.1 1.907-.082 3.357.083 7.062 1.97 9.31 3.88 6.88 5.844 7.71 14.396 7.336 16.77-.835 5.278-.31 14.828-13.8 18.636 2.496 1.05 4.193 2.927 4.193 5.234 0 2.51-1.924 4.66-4.434 4.66-1.436 0-2.432-.352-3.438-1.358-2.805 2.804-3.347 5.665-3.347 9.634 0 2.375.453 3.777 1.448 5.926 1.052 2.273 1.81 3.607 3.71 5.247 1.006-1.516 2.07-2.625 3.89-2.625 1.764 0 3.257.566 3.98 2.172.215.486.023.882.272 1.357.316.61.848.746 1.176 1.357.51.94.01 1.742.452 2.715.283.633.905.724 1.176 1.357.43.972.543 1.64.543 2.714 0 3.008-2.737 5.157-5.745 5.157-.905 0-1.402-.362-2.307-.272 1.72 1.72 3.03 2.466 4.343 4.525 1.9 2.974 2.375 5.09 2.804 8.594.08.655.09 1.05.09 1.718 0 4.5-.7 7.193-2.713 11.218-1.924 3.856-3.563 5.994-7.058 8.504-5.45 3.924-9.42 5.055-16.013 6.333-4.23.814-6.65 1.176-10.948 1.447-5.496.35-8.628.362-14.113.724-7.193.486-12.18 1.504-17.28 6.604 2.408 1.764 4.07 3.494 4.07 6.47 0 3.052-1.888 5.234-4.794 6.196-.68.226-1.176.022-1.81.362-.757.395-.723 1.266-1.447 1.718-1.28.815-2.274.996-3.8.996-2.692 0-4.524-.634-6.424-2.534-2.206 1.832-2.952 3.484-5.43 4.886-.813.452-1.23 1.085-2.17 1.085-1.48 0-2.16-.938-3.347-1.81-1.89-1.38-2.896-2.295-4.434-4.07-2.25 1.346-3.63 2.443-6.243 2.443-1.606 0-2.623-.227-3.98-1.086-.713-.44-.826-1.097-1.538-1.538-.747-.464-1.37-.294-2.172-.633-3.02-1.3-4.976-3.54-4.976-6.83 0-2.884 1.82-4.716 4.433-5.926-5.01-5.01-9.94-5.88-17.008-6.333-5.462-.35-8.572-.362-14.023-.724-4.332-.294-6.74-.735-11.04-1.447-3.244-.532-5.167-.7-8.14-2.08-10.235-4.773-16.76-11.32-18.095-22.528-.113-.96-.09-1.515-.09-2.488 0-5.835 2.295-9.397 6.423-13.525-1.063-.25-1.775.102-2.805-.27-2.578-.94-4.433-2.727-4.433-5.475 0-1.017.046-1.696.543-2.578.35-.623 1.018-.747 1.176-1.448.203-.928-.07-1.584.36-2.443.284-.578.815-.69 1.087-1.268.893-1.854 2.013-3.347 4.07-3.347 1.765 0 2.896.927 3.8 2.443 1.72-.792 2.194-2.08 3.167-3.71 1.617-2.702 2.352-4.59 2.352-7.734 0-2.194-.215-3.484-.904-5.564-.498-1.493-.702-2.51-1.81-3.62-1.006 1.007-2.002 1.358-3.438 1.358-2.872 0-5.066-2.465-5.066-5.338 0-2.137 1.052-3.72 2.986-4.614-1.55-1.334-2.895-1.447-4.614-2.533-2.613-1.65-3.53-3.392-5.248-5.97-1.12-1.686-1.413-2.862-1.99-4.795-.69-2.33-1.086-3.72-1.086-6.152 0-.633.012-1.007.09-1.63.645-4.907 1.528-7.983 4.615-11.85 1.833-2.296 3.077-3.71 5.79-4.885 2.308-.995 3.687-1.72 6.198-1.72.758 0 1.2 0 1.945.092 1.154.147 1.89.25 2.895.814.385.215 1.086.86 1.086.407 0-.52-.272-.79-.272-1.31 0-2.082 1.493-3.982 3.574-3.982 1.504 0 2.115 1.324 2.85 2.625.475-.792.723-1.335.723-2.262 0-3.438-1.844-5.19-3.98-7.87-4.66-5.825-10.496-8.55-10.496-16.014 0-2.228 1.075-3.744 2.986-4.886.554-.328 1.3 0 1.842-.347.463-.294.41-.893.704-1.368.464-.736.874-1.052 1.52-1.617 1.062-.927 1.995-.65 3.17-1.464.59-.408.728-.937 1.18-1.48 1.312-1.583 2.49-2.347 4.56-2.347 1.04 0 1.623.006 2.585.388.328.126.94.62 1.02.525.208-.25.77-.844 1.437-1.16.87-.42 1.224-.58 2.196-.58 1.108 0 1.835.62 2.943.62.407 0 .5-.406.83-.62.983-.668 1.55-1.045 2.748-1.045 1.153 0 1.79.38 2.763 1.003.916.576 1.048 1.35 1.986 1.892.52.305.96.17 1.538.362 2.58.86 4.525 2.578 4.525 5.292 0 1.47-.35 2.52-1.448 3.482-.87.77-1.696.633-2.804.995 3.596 2.872 6.725 3.585 11.316 3.585 4.206 0 9.35-1.72 9.35-5.926 0-1.957-1.08-3.008-1.85-4.806-1.38-3.2-2.128-5.083-2.128-8.566 0-2.76.3-4.433 1.907-6.672 1.65-2.307 3.667-2.845 6.505-2.845z"}),(0,d.jsxs)("g",{fill:"none",stroke:"#703d29",children:[(0,d.jsx)("path",{strokeLinejoin:"round",strokeWidth:.666,d:"M272.378 159.014c.276 1.045 1.12 2.023 2.444 2.437.796.25 2.638.15 3.832-1.393.968-1.25.894-2.8.532-4.03-.234-.796-.877-1.565-1.726-2.22l-5.08 5.157-.002.05z"}),(0,d.jsx)("path",{strokeLinecap:"round",strokeWidth:.664,d:"M401.03 236.122c-1.194-2.886-4.28-1.593-4.47 0-.436 3.668 2.78 4.776 5.068 4.18 1.133-.296 1.963-1.01 2.493-1.94.6-1.05.78-2.42.39-3.728a4.9 4.9 0 0 0-.847-1.652 5 5 0 0 0-1.28-1.21c-.88-.56-1.84-.617-3.343-.617-5.573 0-10.45 6.585-12.087 13.425-.54 2.253-1.28 7.278-.253 12.042 1.094 5.075 3.288 8.59 5.862 11.254 1.393 1.443 3.293 2.728 5.753 4.12.76.428 2.765 1.318 4.158 1.716 1.43.41 2.752.35 3.942.09 3.302-.716 4.837-3.787 3.174-6.93-1.363-2.573-5.375-3.98-7.266-.696-.16.278-.41.885-.402 1.542.01.876.374 1.93 1 2.33 1.436.914 3.736.655 3.63-1.882"}),(0,d.jsx)("path",{strokeWidth:.817,d:"M383.802 273.965c1.118-1.316 3.684-3.29 6.62-3.65 2.978-.366 5.566.5 8.21 1.923 5.157 2.774 8.034 5.756 9.95 11.29.487 1.405.89 3.523.835 5.773-.09 3.588-1 7.51-1.98 9.404-.852 1.654-3.084 8.956-15.324 13.996-7.143 2.94-18.112 3.618-25.676 3.917-10.404.41-20.002.796-25.576 7.663"}),(0,d.jsxs)("g",{strokeWidth:.717,children:[(0,d.jsx)("path",{d:"M386.4 285.728c-.298-1.095-.022-2.144.846-3.334 1.16-1.59 3.632-2.14 5.872-.895.75.415 1.688.963 2.537 2.088.32.426.864 1.113 1.145 1.593.677 1.16.956 2.108 1.09 2.49 2.46 6.993-1.45 14.572-6.564 17.613-3.972 2.362-8.71 3.415-14.38 4.08-2.55.3-4.004.28-6.568.398-2.063.097-3.845.062-5.523.042-1.38-.017-2.69-.01-4.03-.04-2.186-.052-4.448-.103-7.216.1-2.913.21-5.103.285-7.564.695-1.608.268-3.492.527-5.467.97-.594.133-1.195.24-1.8.423l-1.203.368c-3.566 1.088-7.03 2.413-9.765 4.174-.844.544-1.798 1.088-2.48 1.733-.426.4-.943.804-1.36 1.214-1.914 1.882-3.87 3.92-4.328 6.68-.084.51-.084 1.042-.084 1.604 0 1.79 1.457 4.23 5.388 5.026m5.531-170.12c.822 1.488 1.275 2.393.796 3.93-.542 1.744-1.778 2.788-3.533 2.788-3.98 0-6.322-4.713-4.528-7.713 3.185-5.324 9.305-2.334 14.977.303-.274-1.365-.752-1.81-.702-3.5.124-4.202 3.24-6.108 4.483-9.988.742-2.312 1.037-4.32-.655-5.962-1.477-1.434-3.188-1.412-5.116-.656-3.852 1.51-8.478 5.848-16.622 5.968-8.143-.12-12.808-4.46-16.66-5.968-1.926-.756-3.638-.778-5.115.656-1.692 1.642-1.397 3.65-.656 5.962 1.244 3.88 4.36 5.786 4.483 9.987.05 1.692-.428 2.136-.7 3.5 5.67-2.636 12.03-5.894 14.976-.302 1.642 3.116-.547 7.713-4.528 7.713-1.755 0-2.987-1.12-3.533-2.787-.486-1.485 0-2.785.796-3.93"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M314.56 159.866c1.538 1.176 2.624 2.623 2.443 4.975-.197 2.553-.815 3.168-2.805 4.525m2.397-3.798c-.09 1.538-.723 2.533-2.26 3.166"})]}),(0,d.jsx)("path",{fill:"#c7b37f",stroke:"none",d:"m276.736 153.274.697.497.746.797.496.996.25.846.05 1.093-.05.746-.25.845-.497.597-.598.647-.846.447-1.095.25-.944.148-.995-.448-.895-.646-.547-.796-.398-.995v-.4l4.876-4.626z"}),(0,d.jsx)("path",{strokeLinecap:"round",strokeWidth:.666,d:"M275.206 157.165c-.306-1.652-2.237-1.99-2.985-1.015-1.15 1.502-.31 4.004 2.034 4.737.796.25 2.637.15 3.83-1.394.97-1.25.895-2.8.533-4.03-.234-.796-.873-1.49-1.726-2.14-2.72-2.07-7.115-1.592-8.558 1.89-1.862 4.494 2.19 7.863 5.92 10.4 4.7 3.195 10.052 3.776 14.083 3.733 9.156-.1 16.122-4.48 20.65-6.966 1.055-.58 2.14-.46 2.687.2.616.744.606 1.946-.25 2.735"}),(0,d.jsx)("path",{strokeWidth:.676,d:"m248.064 281.184-2.04.746-2.09 1.593-.896 1.244-1.144 1.99-.498 1.493-.398 1.84-.2 1.394m19.01-10.102-.15 1.792-.298 1.244-.896 2.14-1.393 1.84-1.492 1.195-1.094.547-1.543.348"}),(0,d.jsx)("path",{strokeWidth:.766,d:"M319.744 329.107c-.37 1.656-1.922 3.55-5.3 4.235l-.655.136"}),(0,d.jsx)("path",{strokeWidth:.868,d:"M404.218 276.205c2.137 1.993 3.638 4.42 4.792 7.75.487 1.404.89 3.523.834 5.773-.09 3.587-1 7.507-1.98 9.403-.852 1.655-3.083 8.957-15.324 13.996-7.143 2.94-18.112 3.62-25.676 3.918-10.254.404-19.726.785-25.332 7.37"}),(0,d.jsx)("path",{strokeWidth:.595,d:"M387.488 282.848c.76-1.038 3.53-2.35 5.77-1.107.737.41 1.61.928 2.377 2.076"}),(0,d.jsx)("path",{strokeWidth:.868,d:"M401.606 273.786c.5.192 1 .366 1.436.49 1.43.41 2.776.44 3.942.09 2.83-.848 4.647-3.492 3.174-6.93-.342-.796-.996-1.56-1.74-2.133"}),(0,d.jsx)("path",{strokeLinecap:"round",strokeWidth:.666,d:"M240.282 199.763c-1.9 1.176-3.317 1.455-4.795 3.167-1.472 2.914-2.05 4.48-2.624 6.816m46.1-51.692c0 1.72-1.266 2.805-2.985 3.167"}),(0,d.jsx)("path",{strokeWidth:.638,d:"M397.114 192.02c4.73-.097 18.47 3.608 18.567 19.76.098 15.952-9.844 18.558-13.827 19.62"}),(0,d.jsx)("path",{strokeWidth:.664,d:"M398.355 192.02c8.156-.355 16.57 5.648 16.942 20.63.29 11.705-8.01 17.014-11.995 18.076"}),(0,d.jsx)("path",{strokeWidth:.564,d:"m393.81 248.422.127-1.6.533-2.544.754-1.978.848-1.633 1.1-1.32m7.782-3.397-.125 1.566-.45 1.07-.695 1.02-.796.597-1.22.448-1.07.076-.796-.125M385.49 187.79l.35-1.693.746-1.567.97-1.568 1.667-2.14 1.32-1.467 2.138-2.165 1.842-1.866 1.17-1.343 1.542-1.865 1.368-2.065.822-1.692.447-2.19.137-2.714-.248-.787m-12.279 128.174 1.617-.324 1.218-.647.672-.67.472-.772.324-1.244.025-.87m-158.248-12.152 1.194.1 1.542-.125 1.543-.547m5.001-36.548-.2 1.393-.323.622-.474.597-.647.498-.722.323-.945.15-.647.05m9.903-15.62-.348 2.164-.424.946-.87 1.194-1.17.896-1.194.597-2.314.572m15.299-39.758-.447 1.294-.55.946-.745 1.045-1.045.947-1.244.597-1.045.248-.646-.05m.378-6.198.025.995"}),(0,d.jsxs)("g",{strokeWidth:.632,children:[(0,d.jsx)("path",{strokeLinecap:"round",d:"M254.285 224.058a6.9 6.9 0 0 1-2.09 1.298m150.519 44.826c.085.093.372.14.472.2 1.418.845 4.21-.21 3.39-2.4"}),(0,d.jsx)("path",{d:"M397.786 239.603c1.006 1.315 2.904 1.657 4.405 1.265 1.134-.296 1.964-1.01 2.494-1.94.598-1.05.78-2.42.39-3.727a4.9 4.9 0 0 0-.848-1.65c-.426-.563-.955-1.16-1.364-1.428-.11-.07-.217-.167-.332-.245m6.423 34.016a4 4 0 0 0 .066-.72c0-1.158-.485-2.22-1.286-2.934-.274-.245-.54-.624-.87-.79m.476.47c-.046-1.864-1.57-3.197-3.462-3.53m-4.172 2.84c-.435-.356-.9-.657-1.307-1.082-2.45-2.563-4.292-6.352-4.316-10.674-.024-4.143 1.642-8.36 3.582-10m-56.5 84.648 1.79-1.643 1.245-.946 2.34-1.443 2.188-1.044 1.543-.398 3.086-.696 3.582-.548m-29.509 19.364c-1.293 1.99-4.378 4.976-7.613 6.17-3.234-1.194-6.32-4.18-7.613-6.17"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M314.42 332.627c-.406 1.503-1.143 2.96-2.22 4.13"}),(0,d.jsx)("path",{d:"m314.74 330.54-.45 2.19m-2.335 4.18-.945.944-1.692.946-1.94.597m-5.644-177.829c.243-.757.49-1.326.455-2.57-.125-4.2-3.24-6.106-4.484-9.987-.74-2.31-1.036-4.32.656-5.96 1.477-1.434 3.188-1.412 5.116-.657 3.85 1.51 8.517 5.848 16.66 5.97-8.143-.122-12.81-4.46-16.66-5.97-1.928-.755-3.798-.976-5.275.457-1.692 1.642-1.238 3.85-.497 6.16 1.244 3.882 4.2 5.787 4.323 9.99.036 1.242-.292 1.81-.534 2.568m18.621-13.492c8.01-.423 14.877-5.806 17.092-6.245 1.975-.392 3.078-.215 4.526 1.102-1.45-1.317-3.1-1.276-4.973-.54-3.85 1.51-8.477 5.847-16.62 5.968m79.598 112.886c-3.334-2.388-6.19-6.948-6.22-12.335-.023-4.144 1.642-8.36 3.582-10.002m-69.95 97.575c-1.295 1.99-4.38 4.976-7.614 6.17-3.234-1.194-6.32-4.18-7.613-6.17"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M306.67 163.674c.832-.462 1.605-.9 2.318-1.292 1.055-.58 2.323-.458 2.87.202.615.745.71 2.037-.145 2.826"}),(0,d.jsx)("path",{d:"M294.707 169.274c5.496-1.147 9.975-3.61 13.36-5.502m32.273 164.183c.454.31.746.955.746.955.125.3.288.584.333.85.257 1.522-.74 2.47-1.974 2.614-1.695.197-2.967-.81-3.51-2.03m-41.509-161.352c5.496-1.147 9.974-3.61 13.36-5.502m97.577 106.904c-1.045.402-1.616.348-2.916-.23-.534-.236-1.145-.603-1.86-1.01-2.548-1.446-5.574-3.727-8.41-9.05a18.8 18.8 0 0 1-1.71-4.476c-.27-1.11-.458-2.208-.5-3.335-.068-1.92.14-3.925.618-6.222.79-3.79 1.744-5.85 4.08-9.055 1.15-1.576 2.14-2.537 4.28-2.587M255.25 195.123c1.78 1.512 2.64 3.384 2.64 5.722 0 3.1-2.594 8.16-8.963 9.952-2.44.686-4.856.132-6.317-.756"}),(0,d.jsx)("path",{d:"M256.294 205.62c1.145.795 1.593 1.69 1.593 3.244 0 1.065-.69 2.446-1.86 3.754-1.92 2.142-5.173 3.962-8.78 4.007-1.955.024-3.986-.384-6.03-1.75-2.184-1.46-3.333-3.434-3.83-5.375"}),(0,d.jsx)("path",{d:"M256.192 212.294c1.297 1.192 1.695 2.684 1.695 4.563 0 2.745-1.115 4.864-3.68 7.108-.573.502-1.22.972-1.94 1.395m129.429-22.077v3.532m-.282-4.402v4.975m.282-15.746v6.518m-.282-7.958v8.907m-1.9 81.961c-1.236 2.453-2.223 3.742-4.18 5.67-1.975 1.947-3.343 2.84-5.822 4.08-2.414 1.21-3.934 1.596-6.568 2.19-2.632.595-4.17.725-6.867.847-2.47.112-3.874.008-6.342-.163-2.64-.183-4.107-.55-6.744-.783-2.178-.19-3.408-.366-5.595-.36-2.248.006-3.536.02-5.75.41-2.062.366-3.232.657-5.174 1.444-2.685 1.088-5.72 2.985-6.368 3.83-.647-.845-3.683-2.742-6.37-3.83-1.94-.787-3.11-1.078-5.174-1.443-2.214-.39-3.5-.405-5.75-.41-2.186-.007-3.417.17-5.595.36-2.638.233-4.103.6-6.744.784-2.47.17-3.872.275-6.343.163-2.696-.122-4.235-.25-6.867-.846-2.633-.596-4.153-.98-6.568-2.19-2.48-1.238-3.847-2.133-5.822-4.08q-.32-.314-.607-.61m42.168 53.367 1.79-.223m30.274-2.355 1.808-.173 1.722-.69 1.205-.73 1.637-1.94.345-.73.258-1.68.086-.774m46.91-136.695c.777-2.64-.17-5.43-2.73-5.354M257.786 234.72c-.65 2.194-2.044 3.693-3.597 4.668m3.641-46.716c-.64 1.85-1.81 3.17-3.663 4.007-1.847.833-3.985.054-5.13-.828"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M243.808 202.368c1.53.802 3.084-.374 2.766-2.365-.15-.933-1.155-2.112-2.517-2.198"}),(0,d.jsx)("path",{d:"M250.157 286.63c.33.31.4.714.846.796.67.125 1.194.374 1.866-.522.827-1.104.382-2.82-.48-3.902-.922-1.157-3.592-2.18-5.83-.936-.75.416-1.69.964-2.54 2.09-.32.426-.863 1.113-1.143 1.592-.678 1.16-.956 2.107-1.09 2.488-2.05 5.823.384 11.945 4.152 15.676"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M340.218 327.827c.408.426.646.796.646.796.126.3.23.584.274.85.258 1.522-.74 2.47-1.973 2.614-1.695.197-2.83-.802-3.37-2.02"}),(0,d.jsx)("path",{d:"M389.44 154.758c3.346.408 6.262 3.602 6.262 7.035 0 4.43-1.492 6.078-3.824 9.246-2.495 3.39-10.648 9.602-10.648 16.668 0 4.28 1.194 7.015 4.28 8.408 1.988.9 4.314-.074 5.373-1.03 2.587-2.34 1.553-6.44-1.144-6.93-3.286-.598-3.903 4.573-.698 4.23m17.826 69.061c-.294-1.772-1.8-3.122-3.615-3.122-2.024 0-3.666 1.68-3.666 3.756 0 1.016.394 1.938 1.034 2.615"}),(0,d.jsx)("path",{d:"M383.866 195.123c-1.78 1.512-2.638 3.384-2.638 5.722 0 3.1 2.592 8.16 8.962 9.952 2.44.686 4.772.62 6.233-.267M240.39 200.192c-1.522.508-3.423 1.458-4.83 3.453-1.19 1.683-1.882 4.023-2.31 6.07-.19.896-.413 3.733.16 6.663.424 2.163 1.317 4.177 2.306 5.636a8 8 0 0 0 1.037 1.236c.33.33.802.624 1.135.88m64.012 92.043c4.85 2.15 8.404 3.76 11.418 8.518.945 1.494 1.194 3.634 1.194 4.877 0 2.687-1.095 5.723-3.334 7.613-2.078 1.755-4.13 2.29-6.667 2.04-1.924-.188-3.73-1.592-4.03-2.587m-46.478-112.506c2.737 2.14 3.88 4.215 3.88 7.514 0 3.78-1.84 6.12-3.98 7.463"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M251.514 236.422c4.08 5.076 6.245 8.088 6.37 14.132.115 5.672-1.693 9.553-5.077 13.634"}),(0,d.jsx)("path",{d:"M329.747 169.325c.742-.487 1.286-1.267 1.6-2.23.48-1.49.49-2.757-.305-3.902.982 1.285 1.072 2.37.796 3.93-.176.994-.81 1.517-1.6 2.23m51.458 86.161v16.154h.043c0 .01-.007 1.53-.137 2.488a34 34 0 0 1-.274 1.73"}),(0,d.jsx)("path",{d:"M381.414 253.958v17.423h.043c0 .013-.005 1.53-.135 2.49-.136 1-.28 1.847-.467 2.64m.559-42.949v14.53m.282-13.385v11.817m0-26.844v8.858m-.282-9.901v10.92m.282-18.933v3.436m-.282-4.134v4.977m-1.844 65.193q-.158.336-.338.694c-1.235 2.454-2.222 3.743-4.18 5.672-1.974 1.947-3.343 2.838-5.82 4.08-2.415 1.21-3.936 1.595-6.57 2.19-2.63.594-4.17.724-6.866.846-2.472.11-3.874.007-6.342-.163-2.642-.183-4.107-.55-6.744-.783-2.18-.19-3.41-.367-5.596-.362-2.248.007-3.536.02-5.75.412-2.062.365-3.232.656-5.174 1.443-2.687 1.088-5.722 2.985-6.37 3.83-.646-.845-3.682-2.742-6.368-3.83-1.942-.787-3.112-1.078-5.175-1.443-2.214-.392-3.502-.406-5.75-.412-2.186-.006-3.417.17-5.595.362-2.638.232-4.103.6-6.745.783-2.468.17-3.87.274-6.342.163-2.695-.122-4.235-.25-6.866-.846-2.635-.597-4.154-.982-6.57-2.19-2.48-1.24-3.847-2.133-5.82-4.08-1.035-1.02-1.798-1.86-2.47-2.787m-2.009-3.189c.425 3.163-.905 6.272-2.256 7.702-.846.896-2.688 2.607-4.976 2.637-3.78.05-4.91-2.55-5.14-3.184"}),(0,d.jsx)("path",{d:"M255.616 278.848c.702.693 1.325 1.54 1.852 2.538.945 1.79.654 4.787-.095 6.17a4 4 0 0 1-.304.478m-20.243 18.014c2.248 2.36 5.65 4.923 10.873 7.073 7.142 2.942 18.11 3.62 25.675 3.918 10.057.397 19.323.81 24.966 7.04m17.366-4.073c1.662 1.636 3.358 3.39 4.074 5.63m-7.345 11.452a8 8 0 0 1-.693.66c-2.078 1.753-4.13 2.288-6.668 2.04-1.924-.19-3.78-1.632-4.278-2.577m-5.353-2.907q.139.19.293.37c1.208 1.406 3.115 2.288 5.106 2.452m26.87-.076c-1.294 1.99-4.38 4.975-7.613 6.17-3.235-1.195-6.32-4.18-7.614-6.17l-.302-.465m15.58.452q.346.376.74.71c2.078 1.754 4.13 2.288 6.668 2.04 1.925-.19 3.453-1.475 4.07-2.588 0 0 .347-.373.444-.73"}),(0,d.jsx)("path",{d:"m339.04 336.634-.743 1.194-1.13.937-1.71.71-1.55.065"}),(0,d.jsx)("path",{d:"M343.06 325.26c.915.703 1.814 1.767 2.302 2.903.314.73.46 1.533.505 2.366a5.85 5.85 0 0 1-1.423 4.142c-1.278 1.49-3.272 2.39-5.395 2.475a6 6 0 0 1-.47 0m.186-.282c-2.03.08-3.843-.788-5.18-2.16m63.675-67.869c-1.582-1.46-3.222-3.48-4.804-6.45a18.8 18.8 0 0 1-1.71-4.474c-.27-1.11-.458-2.208-.5-3.334-.068-1.92.14-3.925.618-6.222.79-3.792 2.203-6.726 4.08-9.056.64-.795 1.38-1.786 2.08-2.232m-1.376-75.817c2.538.2 4.89 2.932 4.858 5.61-.045 3.89-1.35 5.497-4.41 9.31-2.637 3.283-10.55 9.055-10.35 14.578.036.98.564 1.994 1.154 2.81m-3.162 3.462c.562.556 1.242 1.014 2.052 1.38 1.447.654 3.073.317 4.26-.283m-21.173-43.221c.85.58 1.716 1.466 2.185 2.6 1.862 4.492-2.19 7.86-5.92 10.4-2.677 1.818-5.565 2.79-8.3 3.28"}),(0,d.jsx)("path",{d:"M364.602 161.555c-.905-.01-1.98-.267-3.15-1.497-.268-.283-.583-.658-.707-.994m-14.857 4.904c-.473-.237-.98-.582-1.32-.962-.887-.993-1.48-2.336-.795-4.386.632-1.897 3.677-7.216 3.827-10.898.228-5.625-1.936-8.945-5.32-10.24"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"m347.315 146.464-.132 2.115-.573 2.16-1.1 2.95-.84 1.896-.88 1.895-.44 1.323-.177.97.133.925m38.012 126.278c.175.423.597.836.597.836.647 1.08 3.162 2.98 5.45 3.01 3.78.05 4.68-2.598 4.777-3.186.477-2.885-.51-3.675-1.99-4.488 0 0-.872-.45-1.917-.277"}),(0,d.jsx)("path",{d:"M236.947 274.35c-1.335.34-2.59.35-3.685.02-2.83-.85-5.124-3.56-3.954-6.93m13.386-31.824c.284.285.375.71.418 1.07.437 3.667-2.777 4.736-5.066 4.14-1.134-.297-2.485-1.35-3.015-2.28a4.7 4.7 0 0 1-.614-2.303m22.057-23.667c.573.527.97 1.112 1.236 1.764m-1.134-8.516c.53.37.912.84 1.168 1.307"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M257.862 210.522c-.31.762-.843 1.584-1.555 2.38-1.92 2.14-5.173 3.96-8.778 4.005-1.957.025-3.988-.384-6.03-1.75-2.186-1.46-3.61-3.538-4.082-5.578"}),(0,d.jsx)("path",{d:"M255.43 195.283c1.108.942 1.958 2.142 2.367 3.39"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M257.83 203.238c-.885 2.928-3.526 6.548-8.622 7.84-2.435.616-5.57-.155-6.64-1.066"}),(0,d.jsx)("path",{d:"M240.038 202.554c.267 2.637 2.032 4.613 5.377 4.677 4.704.09 7.564-6.767 3.384-11.58"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M229.453 225.53c.687.862 1.496 1.64 2.323 2.327 1.677 1.396 3.655 2.625 5.934 3.298m5.28.493c4.203-.505 6.573-3.638 6.103-7.302-.358-2.793-2.92-4.94-4.662-5.064"}),(0,d.jsx)("path",{d:"M249.85 188.11c1.823-.07 2.86 1.588 2.844 2.984"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M249.42 163.078c1 2.614 2.947 4.657 5.032 5.824m144.178 30.964c1.72 2.354.594 6.996-4.082 7.084-1.827.035-3.475-.978-4.44-2.51"}),(0,d.jsx)("path",{d:"M381.696 169.12v15.8"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M243.757 202.33c1.443 1.044 3.296-.72 2.58-2.592-.485-1.264-2.282-2.628-4.77-.937-2.747 1.87-1.99 7.764 3.285 7.863 4.703.09 7.563-6.767 3.383-11.58-4.02-4.63-11.345-3.546-16.12.254-2.034 1.617-5.873 5.853-7.067 11.625-.372 1.797-.612 3.272-.584 5.075.02 1.188.13 2.52.484 4.18.72 3.354 1.9 5.81 3.076 7.517.45.654.862 1.197 1.303 1.638.82.82 1.064 1.253 1.89 1.94 2.704 2.25 6.186 4.014 10.45 3.832 4.677-.2 7.365-3.483 6.867-7.364-.483-3.763-4.282-5.636-6.768-3.88-1.692 1.193-2.293 4.89.697 5.77 1.692.498 3.184-1.64 1.99-2.885m129.563-71.951c2.7-1.466 4.78-1.195 6.32.94 1.672 2.322 1.91 5.41 1.542 7.22-.547 2.687-1.324 3.803-3.46 5.752"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M380.53 152.032c3.086-2.04 6.427-1.174 8.26 1.543 1.345 1.99 1.688 3.655 1.593 6.12-.162 4.224-2.805 7.572-5.722 9.205"}),(0,d.jsx)("path",{d:"M395.06 159.15c2.537.198 4.577 2.495 4.577 5.174 0 3.83-1.07 5.493-4.13 9.305-2.637 3.283-10.55 9.055-10.35 14.578.076 2.088 1.836 4.056 3.355 4.166"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M395.36 202.33c-1.443 1.044-3.284-.643-2.488-2.434.55-1.237 2.19-2.786 4.677-1.095 2.747 1.87 1.99 7.764-3.285 7.863-4.704.09-7.883-6.59-3.383-11.58 4.106-4.554 11.72-3.662 16.498.138 2.032 1.618 6.122 6.06 7 11.887 1.06 7.053.924 15.728-6.36 21.07-2.93 2.148-6.988 3.125-10.57 2.968-4.678-.205-7.365-3.483-6.867-7.365.482-3.762 4.105-5.355 6.767-3.88 2.764 1.53 2.28 5.417-.697 5.77-1.75.21-3.184-1.64-1.99-2.885"}),(0,d.jsx)("path",{d:"M392.87 199.898c.776-3.49 3.767-3.816 6.18-3.78 6.59.096 11.148 7.912 11.224 15.473.096 9.552-4.054 15.176-11.035 15.475-1.807.078-4.918-.782-4.972-2.985"}),(0,d.jsx)("path",{strokeLinecap:"square",d:"M396.928 198.336c6.95 1.544 9.39 7.805 9.39 13.78 0 4.875-.484 11.535-9.97 13.877"}),(0,d.jsx)("path",{d:"M408.39 265.33a3.906 3.906 0 1 0-6.264 2.343"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M394.45 259.41c1.31 1.942 2.892 4.1 6.235 5.913m-1.255 10.549c-3.276-2.15-9.496-4.967-15.12-2.194-2.085 1.03-3.482 2.302-4.27 4.378-1.422 3.737.166 7.856 1.783 9.567.846.896 2.688 2.607 4.976 2.637 3.78.05 4.68-2.596 4.776-3.184.448-2.737-1.145-3.832-1.99-4.13-.65-.23-2.76-.17-3.208 1.322-.15.497-.176 1.365.222 2.012"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M340.474 328.422c1.045 2.14-.144 3.215-1.593 3.384-2.138.25-3.283-1.443-3.432-2.986-.242-2.5 1.866-4.767 4.38-4.727 2.26.037 4.104 1.497 4.968 3.505.314.73.46 1.533.504 2.367a5.85 5.85 0 0 1-1.422 4.143c-1.28 1.49-3.273 2.39-5.395 2.475-4.224.17-7.513-3.782-7.513-7.812 0-7.712 11.438-11.918 15.972-13 5.573-1.33 8.964-1.828 17.913-2.325 3.583-.2 6.207-.098 10.15-.507 3.53-.366 5.375-.538 9.007-1.384 4.533-1.055 8.758-2.936 12.54-6.37 2.91-2.643 4.577-4.527 5.925-8.16 1.164-3.133 1.698-9.34-1.248-13.93-2.605-4.06-6.22-6.166-10.35-6.763-3.732-.54-7.004 1.07-8.958 4.773-.945 1.79-.654 4.787.095 6.17.647 1.194 2.494 2.955 4.782 2.985 3.78.05 4.68-2.596 4.776-3.184.447-2.737-1.145-3.832-1.99-4.13-.65-.23-2.76-.17-3.208 1.322-.15.497-.176 1.365.222 2.012"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M337.216 316.173c-4.85 2.15-8.403 3.76-11.417 8.518-.946 1.494-1.195 3.634-1.195 4.877 0 2.687 1.094 5.723 3.334 7.613 2.076 1.755 4.13 2.29 6.666 2.04 1.925-.188 3.732-1.592 4.03-2.587"}),(0,d.jsx)("path",{d:"M385.107 224.128c-2.268.757-3.88 4.215-3.88 7.514 0 3.78 1.84 6.12 3.98 7.463"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M387.597 236.422c-4.08 5.076-6.245 8.088-6.37 14.132-.116 5.672 1.693 9.553 5.076 13.634"}),(0,d.jsx)("path",{d:"M365.85 152.05q.156-.232.35-.517c1.692-2.488 4.68-3.143 6.866-1.493 2.638 1.99 3.304 5.378 2.588 8.957-.448 2.24-1.967 4.104-4.048 5.453"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M265.1 150.835c-2.587-1.194-4.717-.964-6.32.94-1.84 2.19-1.91 5.41-1.54 7.22.546 2.687 1.323 3.803 3.46 5.752"}),(0,d.jsx)("path",{d:"M258.58 152.032c-3.086-2.04-6.427-1.174-8.26 1.543-1.344 1.99-1.688 3.655-1.593 6.12.162 4.224 2.806 7.572 5.722 9.205"}),(0,d.jsx)("path",{d:"M249.677 154.758c-3.346.408-6.016 3.244-6.016 6.678 0 4.428 1.09 6.22 3.58 9.603 2.492 3.39 10.647 9.602 10.647 16.668 0 4.28-1.194 7.015-4.28 8.408-1.99.9-4.314-.074-5.373-1.03-2.588-2.34-1.553-6.44 1.144-6.93 3.284-.598 3.9 4.573.697 4.23"}),(0,d.jsx)("path",{d:"M244.05 159.15c-2.537.198-5.033 2.38-5.033 5.06 0 3.83 1.526 5.607 4.586 9.418 2.638 3.284 10.088 8.942 9.89 14.465-.076 2.09-1.48 4.642-2.873 4.344"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M238.08 236.122c1.194-2.886 4.28-1.593 4.47 0 .436 3.668-2.778 4.776-5.067 4.18-1.134-.296-1.963-1.01-2.493-1.94-.598-1.05-.78-2.42-.39-3.728a4.9 4.9 0 0 1 .848-1.652 5 5 0 0 1 1.28-1.21c.88-.56 1.838-.617 3.342-.617 5.573 0 10.45 6.585 12.087 13.425.54 2.253 1.28 7.278.254 12.042-1.094 5.075-3.288 8.59-5.86 11.254-1.395 1.443-3.295 2.728-5.755 4.12-.76.428-2.764 1.318-4.158 1.716-1.43.41-2.775.44-3.94.09-2.83-.848-4.648-3.493-3.175-6.93 1.147-2.676 5.374-3.98 7.265-.696.16.278.41.885.402 1.542-.01.876-.375 1.93-1 2.33-1.438.914-3.737.655-3.63-1.882"}),(0,d.jsx)("path",{d:"M233.754 270.394c1.045.402 1.616.348 2.916-.23.534-.236 1.145-.603 1.86-1.01 2.548-1.446 5.573-3.727 8.41-9.05a18.8 18.8 0 0 0 1.71-4.476c.27-1.11.458-2.208.5-3.335.068-1.92-.14-3.925-.618-6.222-.79-3.79-1.744-5.85-4.08-9.055-1.15-1.576-2.14-2.537-4.28-2.587m-9.446 30.901a3.906 3.906 0 1 1 6.264 2.343"}),(0,d.jsx)("path",{d:"M232.243 261.446c.294-1.772 1.8-3.122 3.615-3.122 2.025 0 3.666 1.68 3.666 3.756a3.8 3.8 0 0 1-1.033 2.615"}),(0,d.jsx)("path",{d:"M239.373 261.248c3.334-2.388 6.19-6.948 6.22-12.335.022-4.144-1.643-8.36-3.583-10.002"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M244.666 259.41c-1.308 1.942-2.89 4.1-6.234 5.913"}),(0,d.jsx)("path",{d:"M254.598 273.683c-.927-2.18-2.77-3.19-5.772-3.51-2.984-.32-5.567.5-8.21 1.922-5.158 2.775-8.034 5.757-9.952 11.29-.486 1.406-.89 3.524-.834 5.774.09 3.586 1 7.506 1.98 9.402.852 1.654 3.084 8.956 15.324 13.996 7.143 2.94 18.112 3.618 25.676 3.916 10.404.41 20.003.797 25.576 7.663"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M239.68 275.872c3.277-2.15 9.496-4.967 15.12-2.194 2.085 1.03 3.482 2.302 4.27 4.378 1.422 3.737-.166 7.856-1.783 9.567-.846.896-2.688 2.607-4.976 2.637-3.78.05-4.68-2.596-4.775-3.184-.448-2.737 1.144-3.832 1.99-4.13.65-.23 2.76-.17 3.207 1.322.15.497.176 1.365-.222 2.012"}),(0,d.jsx)("path",{d:"M252.71 285.728c.3-1.095.145-2.244-.845-3.334-.996-1.094-3.633-2.14-5.872-.895-.75.415-1.688.963-2.538 2.088-.32.426-.864 1.113-1.144 1.593-.677 1.16-.955 2.108-1.09 2.49-2.46 6.993 1.545 14.42 6.565 17.613 4.378 2.786 8.857 3.582 14.38 4.08 2.556.23 4.004.28 6.568.398 2.063.097 3.845.062 5.523.042 1.38-.017 2.69-.01 4.03-.04 2.186-.052 4.448-.103 7.216.1 2.912.21 5.102.285 7.563.695 1.608.268 3.492.527 5.467.97.593.133 1.194.24 1.798.423q.609.185 1.204.368c3.566 1.088 7.03 2.413 9.764 4.174.845.544 1.818 1.07 2.482 1.733.51.51.942.804 1.36 1.214 1.913 1.882 3.87 3.92 4.327 6.68.084.51.084 1.042.084 1.604 0 1.79-1.456 4.23-5.387 5.026"}),(0,d.jsx)("path",{d:"M298.637 328.422c-1.045 2.14.143 3.215 1.592 3.384 2.14.25 3.283-1.443 3.432-2.986.242-2.5-1.866-4.767-4.38-4.727-2.26.037-4.104 1.497-4.968 3.505-.314.73-.46 1.533-.504 2.367a5.85 5.85 0 0 0 1.423 4.143c1.278 1.49 3.272 2.39 5.394 2.475 4.224.17 7.514-3.782 7.514-7.812 0-7.712-11.438-11.918-15.972-13-5.573-1.33-8.964-1.828-17.913-2.325-3.582-.2-6.206-.098-10.15-.507-3.53-.366-5.375-.538-9.008-1.384-4.532-1.055-8.757-2.936-12.538-6.37-2.913-2.643-4.58-4.527-5.927-8.16-1.164-3.133-1.698-9.34 1.248-13.93 2.605-4.06 6.22-6.166 10.35-6.763 3.732-.54 7.004 1.07 8.958 4.773.945 1.79.654 4.787-.095 6.17-.647 1.194-2.494 2.955-4.78 2.985-3.783.05-4.682-2.596-4.778-3.184-.448-2.737 1.144-3.832 1.99-4.13.65-.23 2.76-.17 3.208 1.322.15.497.176 1.365-.222 2.012"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M273.26 152.05q-.155-.232-.35-.517c-1.69-2.488-4.68-3.143-6.866-1.493-2.637 1.99-3.303 5.378-2.588 8.957.448 2.24 1.967 4.104 4.048 5.453"}),(0,d.jsx)("path",{d:"M366.746 159.597c-4.03 4.378-8.06 5.777-14.082 5.97-1.88.062-5.474-.596-7.564-2.084-1.342-.956-2.836-2.593-1.89-5.43.63-1.895 3.677-7.213 3.826-10.896.228-5.625-1.936-8.708-5.32-9.902-6.255-2.208-12.97 3.975-17.016 5.324-2.116.704-3.194.787-5.126.795-1.93-.008-3.048-.09-5.163-.796-4.046-1.35-10.76-7.533-17.017-5.325-3.383 1.194-5.547 4.277-5.32 9.902.15 3.682 3.196 9 3.827 10.897.946 2.836-.548 4.473-1.89 5.43-2.09 1.487-5.683 2.144-7.564 2.084-6.02-.194-10.05-1.593-14.082-5.97"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M297.33 314.413c.8.31.195-.19 5.246 2.05 4.85 2.15 8.29 4.032 11.304 8.79.946 1.494 1.194 3.633 1.194 4.877 0 .802-.097 1.635-.293 2.46"}),(0,d.jsx)("path",{d:"M297.658 336.038a8 8 0 0 0 3.25.825c4.226.17 7.515-3.78 7.515-7.81 0-2.796-1.52-5.15-3.652-7.04"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M298.573 328.416c-1.02 2.274.433 3.504 1.88 3.672 2.14.25 3.345-1.443 3.495-2.985.162-1.678-.733-3.31-2.098-4.15"}),(0,d.jsx)("path",{d:"M390.1 154.797c3.21 0 6.01 3.575 6.01 7.243 0 4.227-2.247 6.814-3.894 8.77-1.326 1.576-2.762 2.985-4.47 4.704"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M386.29 151.41c1.093.507 2.052 1.363 2.782 2.445 1.344 1.99 1.686 3.656 1.593 6.12-.16 4.225-3.2 7.15-5.918 8.934m-4.773-17.499q.334.285.64.65c1.842 2.19 1.984 5.426 1.543 7.22-.662 2.696-1.553 3.858-3.742 5.47m-5.065-14.446c2.638 1.99 3.422 5.433 2.548 8.977-.624 2.533-2.217 4.05-4.202 5.26m11.126 41.079c.316.925.837 1.246 1.493 1.934 1.426 1.494 3.517 2.78 6.158 3.522 2.44.687 4.64.17 6.318-.875m-163.005 54.036c1.24-.023 2.476.815 3.284 2.22.16.278.41.885.403 1.542-.01.875-.394 1.81-1.02 2.21-1.437.913-3.99.52-3.882-2.017"}),(0,d.jsx)("path",{d:"M241.49 231.296c4.93.92 9.677 6.867 11.23 13.354.54 2.252 1.282 7.277.254 12.04-1.095 5.076-3.288 8.59-5.862 11.256a16.5 16.5 0 0 1-2.127 1.827l-1.05.712m-7.929-12.135c2.025 0 3.798 1.94 3.798 4.014a3.8 3.8 0 0 1-1.034 2.614"}),(0,d.jsx)("path",{d:"M234.637 260.704c2.11 0 4.117 2.033 4.117 4.19a3.9 3.9 0 0 1-1.482 3.062"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M253.978 239.488c1.937 2.6 3.216 4.84 3.81 7.725m-.066 8.487a17.3 17.3 0 0 1-1.45 4.045c-.814 1.62-2.234 3.423-3.553 4.642"}),(0,d.jsx)("path",{d:"M254.285 224.333c1.868 1.46 2.994 2.97 3.52 4.78"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M257.856 219.47c-.49 1.7-1.604 2.99-3.37 4.602m-9.156-17.179 2.157-.568 1.276-.964.823-1.162.71-1.816.283-1.475"}),(0,d.jsx)("path",{d:"M240.966 199.302c-.68.17-1.543.422-2.447.853-1.212.578-2.5 1.476-3.525 2.93-1.188 1.682-1.88 4.022-2.31 6.07-.187.895-.41 3.732.162 6.662.423 2.163 1.317 4.177 2.305 5.635.355.523.676.975 1.037 1.336 1.293 1.294 2.487 2.09 4.478 1.692"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M253.043 189.81c-.35 1.285-1.04 2.877-3.055 2.703"}),(0,d.jsx)("path",{d:"M245.677 198.528c-1.935-1.892-6.035-2.385-10.11.193-.525.333-1.05.76-1.568 1.19-.56.468-1.01 1.005-1.44 1.59-.47.635-1.048 1.715-1.397 2.432-.48.988-.68 1.637-.943 2.65-.745 2.852-.74 5.5-.654 6.257.113.967.205 1.857.364 2.675.54 2.798 1.368 4.76 2.224 6.18.9 1.493 3.14 4.922 7.717 5.374 1.8.177 4.873-.647 4.972-2.986"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M363.763 157.07c.306-1.653 2.297-1.972 3.045-.996 1.153 1.502.39 4.084-1.953 4.816-.796.25-2.637.15-3.83-1.393-.97-1.25-.895-2.8-.533-4.03.234-.797.873-1.49 1.726-2.14 2.72-2.07 7.116-1.592 8.558 1.89 1.862 4.494-2.19 7.863-5.92 10.4-4.7 3.195-10.052 3.776-14.083 3.732-9.156-.1-16.12-4.48-20.65-6.967-1.054-.58-2.14-.46-2.686.2-.616.745-.607 1.947.25 2.736"}),(0,d.jsx)("path",{strokeLinecap:"round",d:"M365.606 155.52c.97.045 1.23.423 1.528.81 1.152 1.504.31 4.086-2.033 4.818m17.837 51.542c-3.49 3.798-.28 10.315 2.327 11.79.902.7 1.288.33 2.01.75"}),(0,d.jsx)("path",{d:"M383.123 205.434c-1.144.796-1.548 1.69-1.592 3.244-.036 1.3.19 2.745 1.41 4.015 1.903 1.978 5.624 3.7 9.23 3.746 1.956.024 3.987-.385 6.03-1.75 2.184-1.462 3.334-3.435 3.83-5.375m-20.861 61.79c0 .012-.005 1.53-.134 2.488-.38 2.792-.823 4.4-2.09 6.916-1.236 2.455-2.223 3.744-4.18 5.673-1.974 1.947-3.343 2.84-5.822 4.08-2.413 1.21-3.934 1.595-6.568 2.19-2.632.595-4.17.724-6.867.846-2.472.112-3.874.007-6.343-.163-2.64-.183-4.106-.55-6.744-.782-2.178-.19-3.41-.367-5.595-.36-2.248.005-3.536.02-5.75.41-2.063.366-3.233.657-5.175 1.444-2.686 1.088-5.722 2.985-6.37 3.83-.646-.845-3.68-2.742-6.368-3.83-1.942-.787-3.112-1.078-5.175-1.443-2.213-.39-3.5-.406-5.75-.41-2.186-.008-3.416.17-5.595.36-2.638.232-4.103.6-6.744.783-2.467.17-3.87.275-6.34.163-2.697-.122-4.236-.25-6.868-.846-2.633-.595-4.154-.98-6.568-2.19-2.48-1.24-3.847-2.133-5.822-4.08-1.957-1.928-2.944-3.217-4.18-5.672-1.266-2.517-1.71-4.123-2.09-6.916-.13-.96-.135-2.476-.135-2.488V169.33H381.13v101.774h.042z"})]}),(0,d.jsxs)("g",{fill:"#c7b37f",stroke:"#c7b37f",children:[(0,d.jsx)("path",{strokeWidth:.328,d:"M247.942 285.645a2.5 2.5 0 1 1 5 0 2.5 2.5 0 0 1-5 0zm-15.352-17.671c0-1.236.79-2.24 1.765-2.24.976 0 1.767 1.004 1.767 2.24s-.79 2.24-1.767 2.24c-.975 0-1.766-1.003-1.766-2.24z"}),(0,d.jsx)("path",{stroke:"none",d:"M241.312 223.59c0-1.015.764-1.84 1.706-1.84.94 0 1.705.825 1.705 1.84s-.764 1.84-1.705 1.84-1.706-.824-1.706-1.84m30.63-65.632c-.107-1.018.504-1.918 1.367-2.008.86-.09 1.648.663 1.755 1.68.108 1.02-.504 1.92-1.366 2.01-.864.09-1.65-.663-1.758-1.682z"})]}),(0,d.jsxs)("g",{stroke:"#c7b37f",strokeLinecap:"round",strokeWidth:.632,children:[(0,d.jsx)("path",{d:"M239.31 233.946c-.368.16-.57.292-.847.582-.264.277-.32.378-.523.83-.15.332-.188.716-.243 1.19m4.716 26.748c.347-.42.557-.648.89-1.08.278-.36.443-.557.687-.94.22-.345.318-.555.513-.916.273-.508.41-.804.67-1.318m-1.263 13.938c-.592.27-.942.39-1.517.696-.438.232-.675.38-1.095.642a17 17 0 0 0-1.244.836c-.49.36-.744.595-1.22.975m14.964-37.889c-.32-.33-.494-.523-.82-.846-.343-.337-.53-.536-.896-.846-.357-.3-.583-.437-.956-.716"}),(0,d.jsx)("path",{strokeLinecap:"butt",d:"M254.19 224.94c-.477.212-.726.38-1.22.543-.567.187-.95.284-1.498.31"}),(0,d.jsx)("path",{d:"M237.44 208.435c.163.58.2.927.418 1.488.276.705.506 1.076.926 1.707.437.657.71 1.02 1.273 1.572.495.485.81.73 1.39 1.11.55.36.906.485 1.487.796m-.988-5.86c.485.26.735.456 1.244.667.46.19.733.27 1.22.383.656.15 1.04.188 1.715.204.73.017.946 0 1.866-.15m7.171-40.656c-.798-.466-1.286-.67-2.046-1.194-.773-.534-1.198-.86-1.87-1.518-.485-.473-.757-.75-1.16-1.294-.36-.486-.498-.804-.816-1.318m7.498-4.552c.25.67.322 1.078.642 1.717.434.868.77 1.323 1.423 2.04.905.994 1.672 1.275 2.742 2.09m1.452-5.917c.25.602.324.972.637 1.543.277.504.467.773.83 1.22.465.568.767.864 1.345 1.317.67.528 1.146.683 1.88 1.12"})]}),(0,d.jsx)("path",{fill:"#703d29",strokeWidth:.177,d:"M333.3 151.622c-.052-1.695-1.722-1.87-2.362-1.87-1.847 0-2.346 1.15-4.65 2.388-2.888 1.55-4.13 1.895-6.698 1.918-2.567-.023-3.843-.367-6.73-1.918-2.305-1.237-2.693-2.352-4.54-2.352a2.33 2.33 0 0 0-2.248 2.453s-.02.515.06.863c.03.13.19.09.24.204-.025-.77.132-1.168.51-1.685.488-.664 1.297-.84 1.626-.84 1.847 0 2.53 1.185 4.835 2.422 2.887 1.55 4.13 1.895 6.697 1.918 2.566-.023 3.844-.367 6.732-1.918 2.303-1.237 2.965-2.52 4.812-2.52.64 0 1.092.414 1.3 1.066.13.4.058.67.09.828.017.077.112.07.133.153.064-.297.214-.404.192-1.108z"})]}),(0,d.jsxs)("g",{fill:"#703d29",children:[(0,d.jsx)("path",{d:"M264.397 294.03c.518-.56.91-.35 1.006-.607.07-.19-.082-.21-.293-.288-.282-.105-.58-.166-.863-.27-.292-.11-.557-.26-.85-.37-.12-.045-.4-.187-.478.025-.148.392 1.024.358.63 1.41-.066.178-.233.562-.815 1.2l-2.65 2.883c-.06.067-.158.21-.22.186-.06-.023-.05-.2-.052-.288l.038-4.09c.004-.777.07-1.352.196-1.688.175-.47.716-.076.83-.378.07-.19.016-.197-.306-.318-.16-.06-.47-.125-1.114-.365-.342-.128-.668-.3-1-.425-.15-.057-.43-.263-.53.006-.03.08.077.195.103.217.37.267.464.443.472.943l.073 7.446c.006.537.064.686.165.724.11.042.186-.007.406-.256l5.25-5.7z"}),(0,d.jsx)("path",{d:"M267.488 295.18c.34-1.08.98-.43 1.103-.816.044-.137 0-.176-.308-.272-.584-.185-.967-.255-1.336-.372-.36-.113-.744-.285-1.144-.41-.092-.03-.338-.145-.4.05-.125.397 1.134.444.807 1.48l-1.724 5.466c-.34 1.082-.986.553-1.11.952-.02.057-.024.143.068.172.267.084.722.178 1.162.316.8.253 1.165.418 1.544.537.236.075.342.058.382-.067.115-.365-1.198-.203-.757-1.604zm3.699 1.095c.204-.687.523-.592.904-.48 1.042.31 1.368 1.327 1.036 2.45-.2.675-.452 1.298-2.018.834-.31-.093-.69-.206-.606-.492l.685-2.313zm-2.837 4.926c-.428 1.443-1.15.818-1.26 1.185-.067.23.16.258.273.292.515.152 1.044.26 1.6.424.433.13.698.258.873.31.237.07.34.025.37-.078.122-.412-1.037-.245-.674-1.47l.587-1.98c.118-.4.08-.5.626-.338.515.153.67.31.757.885l.33 2.064c.123.76.24 1.578 1.053 1.82.412.12 1.167.07 1.272-.284.027-.092-.014-.18-.107-.206-.102-.03-.225.007-.33-.023-.08-.024-.277-.082-.315-.292-.315-1.663-.7-3.582-.68-3.65.035-.116.365-.13.74-.305.382-.186.806-.52 1.023-1.254.156-.528.428-2.203-1.828-2.87-.69-.206-1.405-.368-2.095-.572-.65-.192-.718-.263-1.192-.403-.124-.037-.244-.01-.278.104-.122.41 1.127.32.747 1.603l-1.492 5.037zm8.424 2.466c-.33 1.382-1.378.54-1.487.994-.06.256.12.287.307.333.418.1.774.136 1.474.304s1.034.298 1.452.398c.303.073.504.158.57-.12.08-.326-1.34-.31-.997-1.74l1.26-5.247c.134-.557.252-.59.68-.487l.89.214c1.212.242.568 1.45.986 1.55.27.066.265-.414.277-.558l.142-1.096c.016-.12.055-.28-.1-.32-.973-.232-1.685-.354-3.21-.72-1.526-.367-2.215-.58-3.187-.814-.156-.038-.195.124-.234.238l-.536 1.493c-.057.145-.18.386.038.44.47.11.522-1.485 1.703-1.2l.878.21c.428.102.52.185.385.743l-1.293 5.387zm12.698-3.237c.414-.64.836-.502.886-.772.037-.2-.117-.192-.34-.233-.295-.055-.6-.063-.896-.117-.306-.057-.593-.16-.9-.216-.126-.024-.426-.115-.468.108-.076.41 1.072.174.867 1.278-.033.188-.13.595-.593 1.322l-2.11 3.3c-.047.078-.12.234-.183.222-.063-.01-.085-.186-.102-.274l-.673-4.035c-.133-.765-.167-1.342-.102-1.694.09-.494.693-.2.75-.518.038-.2-.017-.198-.355-.26-.17-.032-.484-.04-1.16-.167-.36-.066-.71-.18-1.06-.244-.157-.03-.467-.184-.52.098-.015.082.11.178.14.196.41.198.534.354.63.845l1.364 7.32c.1.53.183.666.288.685.116.022.182-.04.355-.323l4.182-6.523zm.595 6.725c.006.292-.02.384.233.5.59.255 1.082.628 1.73.736 1.387.234 2.538-.65 2.796-2.194.25-1.496-.365-2.12-1.406-2.862-1.304-.933-1.862-1.184-1.73-1.973.132-.788.684-1.155 1.384-1.038 1.823.305 1.615 2.522 1.86 2.563.232.04.288-.097.31-.36l.147-1.598c.026-.274.087-.445-.072-.472-.138-.023-.435.12-.572.098-.318-.053-.686-.587-1.556-.732-1.24-.207-2.253.64-2.48 1.995-.207 1.236.342 1.8 1.178 2.4 1.567 1.122 2.21 1.387 2.042 2.388-.158.942-.89 1.4-1.716 1.263-1.176-.197-1.654-1.38-1.804-2.566-.016-.16-.02-.27-.19-.298-.265-.045-.216.315-.212.485l.06 1.668zm15.821-4.461c.345-.68.78-.585.8-.86.017-.2-.136-.177-.36-.195-.3-.025-.605 0-.905-.024-.31-.025-.607-.096-.918-.12-.128-.01-.436-.07-.454.155-.032.418 1.085.063.997 1.182-.015.19-.07.605-.453 1.378l-1.753 3.503c-.038.08-.094.244-.158.24-.064-.008-.105-.177-.13-.263l-1.09-3.943c-.212-.747-.307-1.317-.28-1.674.04-.5.67-.27.694-.593.016-.202-.038-.194-.38-.22-.173-.014-.487.01-1.173-.045-.364-.03-.724-.105-1.078-.133-.16-.013-.485-.134-.508.15-.007.085.128.167.16.182.428.153.568.296.714.775l2.123 7.136c.154.516.25.643.36.65.116.01.176-.057.318-.357l3.478-6.926z"}),(0,d.jsx)("path",{d:"M307.584 308.48c-.01 1.218-1.04.994-1.045 1.472-.002.203.213.145.33.146.292 0 .582-.043.926-.04.376.007.74.055 1.268.06.14 0 .408.014.41-.153.004-.56-1.38.24-1.36-2.053l.037-4.06c0-.108.024-.19.088-.19.054 0 .118.06.193.156l5.115 6.255c.075.096.128.168.278.17.13 0 .13-.095.133-.358l.058-6.698c.01-1.254.922-.96.925-1.318 0-.036 0-.156-.204-.158-.097 0-.473.044-1.15.038-.742-.007-1.053-.057-1.225-.058-.14 0-.172.118-.173.2-.003.395 1.31.192 1.3 1.278l-.034 3.977c-.004.298-.026.44-.09.44-.065 0-.192-.144-.33-.313l-4.275-5.303c-.19-.228-.062-.31-.405-.313-.57-.006-.85.04-1.13.038-.203 0-.396-.05-.6-.053-.13 0-.184.093-.185.2-.006.574 1.205-.192 1.185 2.1zm10.406-5.376c.01-1.134.813-.697.816-1.103 0-.143-.052-.167-.375-.17-.61-.006-.998.04-1.385.036-.376 0-.795-.055-1.214-.058-.096 0-.364-.04-.366.164-.003.418 1.154.094 1.144 1.18l.01 5.732c-.01 1.134-.78.817-.784 1.235 0 .058.02.142.117.143.28.007.743-.04 1.205-.037.838.007 1.235.058 1.633.062.247 0 .344-.045.345-.176.003-.382-1.205.157-1.192-1.312l.05-5.696zm4.506 5.549c.013 1.42-1.207.858-1.203 1.324.003.263.185.25.38.247.428-.006.782-.054 1.503-.06.72-.007 1.075.038 1.504.034.312 0 .527.03.525-.255-.003-.335-1.375.023-1.388-1.445l-.047-5.397c-.005-.572.102-.633.542-.637l.913-.007c1.236-.058.904 1.27 1.334 1.266.278 0 .156-.467.133-.61l-.128-1.097c-.012-.12-.013-.287-.174-.285-1 .01-1.718.062-3.287.076-1.57.013-2.29-.028-3.29-.02-.16 0-.16.17-.17.29l-.157 1.577c-.02.155-.082.418.144.416.483-.007.147-1.566 1.36-1.577l.904-.01c.44-.005.55.056.554.63zm6.259-2.259c-.193.015-.342.04-.35-.08-.014-.167.04-.303.082-.45l.66-2.172c.042-.135.084-.15.106-.152.053-.007.02 0 .093.088l1.048 2.086c.065.138.14.264.153.43.008.12-.142.12-.335.135zm1.84.502c.278-.022.34.093.768.993.143.31.235.52.256.782.056.726-.715.655-.688 1 .013.167.15.132.343.117.31-.026.704-.105 1.175-.142.707-.055 1-.03 1.386-.06.29-.024.388-.008.372-.21-.03-.393-.573.117-.983-.7l-3.466-7.06c-.168-.345-.19-.367-.288-.36-.14.012-.175.24-.235.438l-2.337 7.43c-.215.688-.767.66-.745.933.013.154.18.117.33.105.312-.024.62-.097.94-.122.343-.027.668-.006 1.01-.03.226-.02.565.038.545-.212-.025-.32-1.167-.038-1.235-.896-.022-.286.095-.714.15-.958.186-.805.407-.87.59-.885l2.11-.165zm8.305-4.95c-.11-.817-.068-.835 1.222-1.004 2.056-.27 1.407 1.223 1.908 1.157.245-.033.14-.416.11-.57l-.197-1.165c-.015-.107-.104-.215-.243-.197-.938.123-1.667.267-2.423.367-1.63.214-2.404.268-2.84.326-.15.02-.222.126-.208.233.06.473 1.215-.064 1.356 1l.73 5.542c.19 1.444-.705.912-.633 1.456.01.072.08.123.22.105.585-.077 1.027-.184 1.357-.227.47-.062.87-.066 1.274-.12.266-.035.496-.017.465-.254-.043-.32-1.208.135-1.38-1.18l-.232-1.75c-.09-.688-.15-.824.34-.89l.787-.102c1.108-.146.975 1.148 1.316 1.103.257-.034.137-.45.106-.604l-.352-2.096c-.053-.32-.167-.28-.24-.27-.214.028-.103 1.122-1.02 1.242l-.67.09c-.46.06-.47-.024-.537-.533l-.218-1.657zm3.93 2.714c.44 2.383 2.16 3.703 4.285 3.31 3.37-.625 3.482-3.62 3.177-5.265-.46-2.49-2.316-3.712-4.372-3.306-2.52.49-3.568 2.688-3.09 5.26zm1.174-.91c-.315-1.703-.087-3.422 1.692-3.788 1.36-.276 2.9.847 3.38 3.442.363 1.95.063 3.632-1.748 4.004-1.885.386-3.006-1.945-3.324-3.66zm8.336-4.16c-.168-.696.156-.774.543-.867 1.055-.253 1.847.465 2.12 1.603.164.685.258 1.35-1.33 1.732-.314.075-.7.168-.77-.122zm.005 5.685c.35 1.463-.587 1.283-.498 1.654.056.23.267.144.382.116.52-.125 1.033-.297 1.597-.432.44-.106.732-.127.91-.17.24-.057.307-.147.282-.252-.1-.418-1.022.307-1.32-.936l-.482-2.008c-.098-.407-.18-.473.374-.606.522-.125.735-.066 1.098.387l1.32 1.623c.484.596.994 1.247 1.82 1.05.418-.1 1.046-.523.96-.883-.022-.092-.102-.147-.196-.124-.105.025-.192.12-.297.145-.083.02-.282.068-.42-.095-1.104-1.282-2.397-2.753-2.413-2.822-.028-.116.25-.294.49-.634.235-.352.435-.854.256-1.597-.128-.534-.73-2.12-3.018-1.572-.7.17-1.4.386-2.1.554-.658.158-.753.132-1.234.247-.125.03-.216.114-.188.23.1.42 1.136-.284 1.448 1.016l1.227 5.11zm8.621-1.928c.356 1.376-.963 1.125-.846 1.576.065.254.24.197.427.15.416-.11.747-.244 1.444-.424.698-.182 1.054-.224 1.47-.332.3-.078.518-.097.447-.375-.084-.323-1.33.357-1.697-1.065l-1.35-5.226c-.145-.555-.056-.64.37-.75l.885-.228c1.185-.356 1.184 1.013 1.6.906.27-.07.04-.492-.017-.625l-.39-1.034c-.04-.112-.082-.274-.238-.233-.968.25-1.653.477-3.172.87-1.52.392-2.228.526-3.195.776-.156.04-.115.203-.095.32l.228 1.57c.018.156.02.426.24.37.468-.12-.236-1.555.94-1.86l.874-.225c.427-.11.545-.08.69.475l1.386 5.364zm5.498-7.334c-.303-1.093.588-.894.48-1.286-.038-.138-.097-.146-.407-.06-.59.163-.95.313-1.323.416-.363.1-.78.166-1.183.278-.093.027-.36.064-.307.26.112.403 1.193-.244 1.483.803l1.532 5.523c.303 1.093-.526 1-.414 1.404.016.058.06.132.152.106.27-.074.702-.244 1.147-.367.808-.225 1.204-.286 1.587-.392.24-.066.32-.138.284-.264-.102-.368-1.115.482-1.508-.933l-1.522-5.487zm2.291 2.669c.77 2.298 2.657 3.367 4.705 2.68 3.25-1.086 2.945-4.07 2.414-5.654-.803-2.4-2.81-3.353-4.79-2.666-2.428.838-3.158 3.16-2.33 5.64zm1.038-1.065c-.55-1.642-.563-3.375 1.148-3.986 1.308-.46 2.99.436 3.828 2.94.63 1.88.566 3.587-1.175 4.208-1.813.644-3.247-1.508-3.8-3.16zm7.627-5.419c-.262-.666.048-.788.418-.934 1.01-.398 1.894.204 2.323 1.292.26.656.444 1.302-1.076 1.9-.3.12-.67.264-.78-.014l-.883-2.244zm.797 5.63c.552 1.398-.403 1.35-.263 1.706.088.223.285.107.395.063.5-.197.98-.438 1.52-.65.42-.166.71-.228.878-.295.23-.09.284-.19.245-.29-.158-.4-.968.447-1.436-.742l-.758-1.922c-.154-.39-.244-.443.286-.652.5-.197.72-.168 1.14.23l1.533 1.425c.563.523 1.158 1.097 1.948.786.4-.157.964-.662.828-1.006-.035-.09-.12-.132-.21-.097-.1.04-.175.146-.275.185-.08.03-.27.106-.43-.036-1.27-1.116-2.755-2.392-2.78-2.46-.045-.11.206-.324.395-.694.185-.38.313-.906.033-1.617-.2-.51-1.018-1.998-3.208-1.135-.67.264-1.332.576-2.002.84-.63.248-.728.235-1.188.416-.12.05-.198.143-.154.254.157.4 1.086-.44 1.576.804l1.925 4.89z"})]}),(0,d.jsxs)("g",{fill:"#fedf00",transform:"matrix(.64 0 0 .64 0 16)",children:[(0,d.jsx)("path",{fill:"#d52b1e",d:"M412.66 249.25h82.18v82.023h-82.18z"}),(0,d.jsx)("path",{id:"ad_inline_svg__a",fill:"#fff",d:"M451.2 313.83s-.048 2.93-.855 5.287c-.933 2.72-.94 2.72-1.796 4.043-1.153 1.78-2.558 3.082-3.81 3.887-1.96 1.258-3.95 1.888-5.95 1.71-5.49-.486-8.037-6.44-9.282-11.273-1.32-5.13-5.073-7.923-7.463-6.064-1.4 1.09-1.48 2.914-.31 4.665 1.243 1.866 4.098 2.8 4.098 2.8l-2.933 3.73s-6.302-.82-7.535-7.392c-.466-2.488.742-7.134 4.89-8.522 5.298-1.773 8.687 2.005 10.32 5.192 2.245 4.384 3.21 12.434 9.43 11.19 3.383-.677 4.975-5.598 4.975-7.852l2.467-2.644 3.654 1.167.1.078z"}),(0,d.jsx)("use",{xlinkHref:"#ad_inline_svg__a",width:"100%",height:"100%",transform:"matrix(-1 0 0 1 907.52 0)"}),(0,d.jsx)("path",{d:"m461.12 278.95 10.76-11.643s1.624-1.31 1.61-3.401l-2.22.345-.496-1.14-.11-1.148 2.98-.63c.05-.484.008-.85.093-1.384.08-.494.19-.76.31-1.244l-3.264.218c.166-.57.128-.875.31-1.406.155-.447.198-.618.504-1.103.606-.09 1.158-.228 1.907-.304.728-.074 1.143-.04 1.873-.086 1.78-3.32 9.19-6.373 14.454-.904 3.81 3.958 2.99 11.22-1.95 13.14-2.798 1.087-5.053.444-6.86-1.11l1.97-3.867c2.72 1.625 4.975-.396 4.82-2.495-.197-2.654-1.92-4.297-4.354-4.51-2.254-.197-3.872 1.093-4.898 3.11-.626 1.23-.336 2.134-.544 3.5-.226 1.482-.1 2.31-.537 3.81-.32 1.087-1.155 2.433-2.37 3.59l-11.03 11.936-42.94 46.445-3.228-2.984 43.21-46.737z"}),(0,d.jsx)("path",{fill:"#fff",d:"M429.51 283.04s2.7 13.372 11.874 33.43c4.665-1.71 7.42-2.798 12.362-2.798s7.697.933 12.362 2.8c9.174-20.06 11.874-33.432 11.874-33.432l-24.236-31.177z"}),(0,d.jsx)("path",{d:"m456.12 262.41 16.82 21.637s-2.243 10.52-9.078 26.354c-2.646-.6-4.916-1.127-7.733-1.318l-.01-46.67zm-4.74 0-16.82 21.637s2.243 10.52 9.078 26.354c2.646-.6 4.916-1.127 7.733-1.318l.01-46.67z"})]}),(0,d.jsxs)("g",{fill:"#d52b1e",children:[(0,d.jsx)("path",{fill:"#fedf00",d:"M322.304 175.52H374.9v52.495h-52.596z"}),(0,d.jsx)("path",{d:"M329.67 175.52h7.842v52.495h-7.842zm15.028 0h7.842v52.495h-7.842zm15.027 0h7.842v52.495h-7.842z"})]}),(0,d.jsxs)("g",{fill:"#d52b1e",stroke:"#d52b1e",strokeWidth:.513,children:[(0,d.jsx)("path",{fill:"#fedf00",stroke:"none",d:"M264.3 273.542c.15.946.487 2.568 1.385 4.23.945 1.493.597 1.452 2.737 3.84 1.053 1.176 2.696 2.183 3.985 2.877 1.294.696 2.25 1.038 4.38 1.596 4.17 1.095 7.097 1.163 10.606 1.023 2.738-.11 4.828-.447 6.56-.68 2.468-.332 4.307-.53 7.115-.647 1.365-.057 2.655-.07 3.93 0 1.54.085 3.06.323 4.678.647 3.483.696 7.016 2.04 7.016 2.04l.01-54.82-52.605-.014v37.467s.108 1.83.204 2.44z"}),(0,d.jsx)("path",{strokeWidth:.328,d:"m270.406 283.155 2.466 1.435 3.378 1.215-.004-52.177h-5.84zm29.224 2.375.006-51.904h-5.852v52.734s4.005-.514 5.844-.633zm11.672-51.898h-5.832v52.084c1.9.205 3.855.545 5.844 1.077l-.012-53.16zm-23.352 0v53.332c-.06.006-3.906.202-5.872-.002v-53.32z"})]}),(0,d.jsxs)("g",{transform:"matrix(.64 0 0 .64 0 16)",children:[(0,d.jsx)("path",{fill:"#fedf00",d:"M585.48 402.39c-.233 1.477-.76 4.012-2.163 6.608-1.477 2.333-.932 2.27-4.275 6-1.646 1.838-4.214 3.412-6.228 4.496-2.02 1.09-3.516 1.623-6.84 2.495-6.52 1.71-11.092 1.817-16.575 1.598-4.28-.17-7.545-.698-10.25-1.062-3.858-.518-6.73-.827-11.118-1.01-2.133-.09-4.15-.11-6.142 0-2.406.132-4.782.505-7.31 1.01-5.44 1.09-11.032 3.188-11.032 3.188l.057-85.655 82.193-.024v58.543s-.168 2.86-.318 3.81z"}),(0,d.jsxs)("g",{id:"ad_inline_svg__b",children:[(0,d.jsx)("path",{fill:"#d52b1e",d:"M524.62 346.91s-.366.175-.594.28c-.298.33-.447.52-.78.814-.444.39-.77.503-1.25.843-.23.164-.42.216-.595.438-.25.32-.078.63-.25 1-.185.405-.368.597-.655.938-.366.434-.65.61-1.063 1-.418.395-.587.726-1.093 1-.135.072-.2.142-.345.187-.216.067-.35-.01-.563.062-.388.134-.51.563-.78.72.11.217.106.37.218.593.158.323.705 1.215.812 1.437.21.305.27.7.532.78.537.17.858.155 1.312.126.792.182 1.28.158 2.03.47.614.253.864.574 1.47.843.474.21.772.34 1.28.438.388.074.61.132 1 .094.25-.024.378-.12.626-.156.05-.01.08 0 .125 0l-.03.375c-.006 0 .004.03 0 .032v.062h.062l2.06.906a1.7 1.7 0 0 0-.186.375c-.098.32-.114.69-.063.844.63 1.887 1.16 3.067 1.47 3.187.615.236.806.865 1.156 1.5-.123.132-.227.2-.344.312-.614.59-1.152 1.008-1.656 1.812-.745 1.188-1.248 1.203-.312 2.78.55.926.814 1.1 1.53 2.407.363.658.563 1.172.782 1.968.207.752.278 1.19.313 1.97l.967.374.657-.657.625-1.187.03-.906c-.24-.203-.308-.474-.25-.782.07-.368.514-.29.72-.625.282-.46-.333-.734-.658-1.093-.605-.67-1.43-.833-1.625-1.844-.052-.273.078-.427.375-.72.856-.84 1.13-.972 1.97-1.81.24.14.61.192.968.124.28-.053.53.125 1.406.375.61.173.873.086 1.22.03l.374-.093c.05.21.11.415.125.687.053 1.062-.155 2.996.156 3.5.132.214.187.333.282.564.1.24.214.396.22.656.01.696.046 1.14 0 1.875-.045.69-.104 1.042-.22 1.75-.074.45-.165.714-.437 1.062-.283.364-.595.418-.97.688l-.092 1 1.125.47 1.28.31.688-.28c0-.254.04-.4.156-.625.128-.247.232-.44.47-.53.362-.144.76.128.905-.095.16-.242.06-.338.032-.75-.047-.662-.185-.99-.283-1.657-.164-1.11-.21-1.686-.156-2.75.032-.616.04-.956.157-1.562.172-.883.486-1.31.688-2.188.225-.977.265-1.606.375-2.468 3.17.452 5.807.397 9.344-.375.17-.037.75-.25.75-.25.8.69 1.706 1.264 2.718 1.625-.006.1-.015.845 0 .968.037.288-.04.482.125.72.106.15.197.24.375.28.263.06.455.023.657-.156.225-.2.183-.454.25-.75.03-.14.006-.564 0-.687.365.055.49.062.874.062.357 0 .53.014.875-.03.004.08.02.368.03.467.027.245-.076.435.03.657.112.23.25.36.5.407a.66.66 0 0 0 .532-.094c.296-.185.264-.498.313-.844.015-.11.01-.693 0-.782.212-.067.827-.292 1.03-.375a5 5 0 0 1-.093.812c-.07.376-.12.58-.25.938-.206.568-.44.856-.75 1.375-.376.634-.572.985-1.03 1.562-.212.266-.358.386-.563.657-.257.337-.343.566-.595.906-.324.438-.51.724-.938 1.062-.693.55-1.15.11-2.093.844l-.22 1.03 1.438.532 1.282.25.437-.25c-.01-.3.033-.514.22-.75.213-.27.44-.35.78-.407.362-.06.748.034 1.032-.218.35-.31.35-.914.625-1.47.86-1.723 1.62-2.562 3-3.905.613-.597 1.138-.758 1.657-1.438.246-.322.52-.47.53-.875.01-.284-.143-.416-.218-.688-.104-.377-.187-1-.187-1 1.52.744.97.646 1.25 1.406.224.615-.034 1.04.06 1.687.112.756.467 1.114.532 1.875.078.905-.143 1.42-.312 2.313-.15.785-.13 1.277-.47 2-.32.69-.57 1.077-1.155 1.562-.21.175-.37.25-.594.407l-.124 1.03 1.125.376 1.626.437.375-.343c.165-.655-.054-1.617.407-1.688.406-.062.693 0 .782-.312.035-.132.057-.326.092-.625.22-1.886.422-3.646.625-4.5.23-.968.215-1.178.407-1.907.175-.664-.086-.282.406-1.687.734-2.097-.208-2.375-1.063-3.656-.462-.693-.622-.944-.687-1.5-.097-.817.164-1.495.125-2.75-.04-1.32-.023-2.16 0-2.875.115-.053.222-.12.344-.188 1.17-.642 1.635-.836 2.374-2.47a3.4 3.4 0 0 0 .312-1.467c-.005-.332-.065-.652-.094-1.032-.03-.4-.19-.637-.312-.937-.13-.318-.325-.56-.563-.844-.772-.924-1.78-1.132-2.718-1.47-1.485-.53-2.506-.433-4.126-.56-1.673-.133-2.607-.16-4.282-.063-2.006.115-3.128.52-5.125.75-1.915.223-2.977.37-4.906.407-2.26.042-4.42-.46-5.78-.344-2.45.21-2.493.762-6.188 1.063a67 67 0 0 1-3.843.187l-2.158-.687c.857-.306 1.067-.488 1.47-1.03.27-.367.232-.68.562-1.064.266-.312.443-.622.78-.97a2.2 2.2 0 0 0-.937-.436c-.363-.076-.573-.042-.937 0-.494.056-.772.124-1.22.344-.358.177-.623.357-.843.593 0 0-1.285-.828-2.187-1.218-1.12-.485-1.6-.712-3-.907zm1.97 11.906h.06q-.014.017-.03.03z"}),(0,d.jsxs)("g",{fill:"none",stroke:"#fedf00",strokeLinecap:"round",strokeWidth:.987,children:[(0,d.jsx)("path",{d:"m568.77 359.52-.763.244c-.867.402-1.578.418-2.6.496-2.644.202-4.272-1.057-6.998-.847-1.405.108-2.026 1.19-3.46 1.548a9.3 9.3 0 0 1-1.702.283l.512-1.034s-1.284.26-2.115.263a7.6 7.6 0 0 1-1.523-.13l1.018-.95s-.814-.133-1.294-.336a3.9 3.9 0 0 1-1.06-.63 21 21 0 0 0 1.69-.353c1.556-.385 2.04-1.147 3.89-1.325 1.15-.112 3.032-.047 7.643.716 3.035.502 4.38.267 5.535-.258.76-.345 1.01-1.01 1.103-1.788.092-.776-.404-1.404-.874-1.81-.123-.106-.444-.335-1.113-.363"}),(0,d.jsx)("path",{fill:"#fcd900",strokeLinecap:"butt",strokeWidth:.513,d:"M524.8 350.61c-.53-.066-.884.01-1.34.291-.48.297-.54.698-.888 1.144.445.1.7.36 1.142.253.347-.084.527-.238.76-.507.317-.363.433-.676.43-1.156z"}),(0,d.jsx)("path",{d:"M536.04 363.79s.264.48.407.8c.248.554.376.878.524 1.467.2.8.115 1.284.242 2.098.022.143.05.263.076.376l-.05 1.13m6.801-6.951s-.22.812-.354 1.333c-.352 1.353-.676 2.087-.944 3.46-.045.23-.078.442-.103.644m-10.859-3.977c.79.176.544 3.36 1.79 4.09"}),(0,d.jsx)("path",{strokeLinecap:"butt",d:"m560.12 369.78.384-.25a8.2 8.2 0 0 0 2.686-1.79"}),(0,d.jsx)("path",{d:"M552.38 368.02h.007c3.533-.883 5.885-2.648 7.58-2.87"}),(0,d.jsx)("path",{d:"M555.97 363.61c.3-.01.585-.033.83-.068 1.467-.21 1.703.687 2.725 1.258 1.857 1.04 2.098 2.307 4.3 3.356q.174.083.32.155l.848.43"}),(0,d.jsx)("path",{fill:"#fcd900",strokeLinecap:"butt",strokeWidth:.513,d:"M517.7 354.53c.268.067.432.08.707.054.332-.03.484-.238.817-.25.27-.01.462-.03.684.126.14.1.2.19.28.342.087.166.163.282.124.466-.06.284-.324.418-.614.42-.237 0-.434-.062-.544-.272a.47.47 0 0 1-.04-.39c-.283.108-.49.112-.776.017a1.04 1.04 0 0 1-.638-.513z"})]}),(0,d.jsx)("path",{fill:"#0065bd",d:"M525.13 364.17c-.797-.237-1.966-.826-1.966-.826.323-.25.587-.265.863-.555.39-.41.373-.79.593-1.32.215-.52.184-.954.67-1.343.29-.23.763-.27 1.12-.165.352.113.758.4.847.766.137.56-.16.886-.246 1.454s-.292.894-.194 1.46c.066.375.227.52.354.907 0 0-1.264-.15-2.04-.38zm-.99.95a.628.628 0 1 1 .64.618.627.627 0 0 1-.64-.618m-1.76-16.51s-.09-.06-.144-.104c-.383-.31-.42-.653-.6-1.11-.173-.434-.258-.69-.316-1.154-.05-.406 0-.64 0-1.048 0-.37.04-.578 0-.944-.04-.375-.03-.612-.21-.944-.097-.18-.394-.337-.314-.42.094-.096.257-.02.42 0 .4.05.63.166.943.42.376.306.525.57.67 1.05.167.547.25.897.408 1.467.083.295.13.47.284.734.16.275.32.383.524.63l-.01.022c-.3.326-.445.538-.778.833-.305.27-.56.403-.846.573l-.033-.01zm3.6 10.64 2.23 1.03c1.15-.634 2.474-1.923 3.497-3.918.88-1.718 1.02-2.65 1.364-4.313l-1.788-.582-.357.073c-.552 1.724-.693 2.705-1.618 4.193-.802 1.29-1.718 2.305-2.65 3.034zm4.94 18.12c.36-.493.513-.81.922-1.264.456-.505.8-.702 1.312-1.15.155.015.335-.012.48.07-.027.546-.055.95-.18 1.542-.1.48-.186.746-.346 1.21-.135.388-.16.64-.39.98-.154.225-.29.315-.476.517-.51-.742-1.33-1.297-1.322-1.906zm33.01 1.85c.573.21.92.27 1.47.538.61.3.894.576 1.466.944.027.154.104.32.063.483-.532.122-.928.207-1.53.25a8.4 8.4 0 0 1-1.26 0c-.41-.022-.658.025-1.048-.104-.26-.085-.384-.19-.63-.313.573-.696.88-1.637 1.468-1.797zm-9.76-2.04c.573.21.92.27 1.468.538.61.3.896.576 1.468.944.027.154.104.32.063.482-.532.123-.928.208-1.532.252-.49.036-.768.027-1.258 0-.41-.023-.658.024-1.048-.105-.26-.085-.384-.19-.63-.313.573-.696.88-1.637 1.468-1.797zm-17.34 2.13c.573.21.92.27 1.47.538.61.3.894.576 1.467.944.026.154.103.32.063.483-.532.122-.928.207-1.53.25-.49.037-.77.028-1.26 0-.41-.02-.658.025-1.048-.104-.26-.085-.384-.19-.63-.313.573-.696.88-1.637 1.468-1.797zm-8.98-29.8c-.613-.278-1.05-1.045-.66-1.594.155-.22.412-.174.565-.395.19-.272.142-.507.136-.838-.006-.377-.142-.573-.208-.944-.072-.405-.14-.636-.136-1.048.005-.628-.038-1.076.345-1.573.246-.317.662-.592.826-.612.147.136-.057.502-.033.822.036.462.13.717.288 1.153.203.563.48.81.704 1.363.208.516.4.808.42 1.363.015.457-.025.736-.21 1.154-.165.37-.3.58-.61.84-.27.224-.458.324-.796.418a1.15 1.15 0 0 1-.628-.108z"})]}),(0,d.jsx)("use",{xlinkHref:"#ad_inline_svg__b",width:"100%",height:"100%",y:36.591})]}),(0,d.jsx)("path",{fill:"none",stroke:"#703d29",strokeWidth:.51,d:"M264.102 175.52h52.595v52.495h-52.595zm58.202 0H374.9v52.495h-52.596zM264.3 273.542c.15.946.487 2.568 1.385 4.23.945 1.493.597 1.452 2.737 3.84 1.053 1.176 2.696 2.183 3.985 2.877 1.294.696 2.25 1.038 4.38 1.596 4.17 1.095 7.097 1.163 10.606 1.023 2.738-.11 4.828-.447 6.56-.68 2.468-.332 4.307-.53 7.115-.647 1.365-.057 2.655-.07 3.93 0 1.54.085 3.06.323 4.678.647 3.483.696 7.016 2.04 7.016 2.04l.01-54.82-52.605-.014v37.467s.108 1.83.204 2.44zm110.407-.012c-.15.945-.486 2.567-1.384 4.23-.945 1.492-.597 1.45-2.736 3.84-1.054 1.175-2.697 2.182-3.986 2.876-1.293.697-2.25 1.04-4.377 1.597-4.172 1.095-7.1 1.163-10.608 1.023-2.738-.11-4.828-.446-6.56-.68-2.468-.33-4.307-.53-7.115-.646-1.365-.057-2.655-.07-3.93 0-1.54.085-3.06.323-4.678.647-3.483.697-7.06 2.04-7.06 2.04l.035-54.82 52.604-.014v37.468s-.107 1.83-.203 2.44z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/619.59f8e380.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js deleted file mode 100644 index 4adea69250..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6229.ec077e40.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6229"],{13044(e,l,d){d.r(l),d.d(l,{default:()=>s});var i=d(74848);d(47867);let s=e=>(0,i.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...e,children:(0,i.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",children:[(0,i.jsx)("path",{fill:"#00319c",d:"M0 0h213.333v480H0z"}),(0,i.jsx)("path",{fill:"#ffde00",d:"M213.333 0h213.333v480H213.333z"}),(0,i.jsx)("path",{fill:"#de2110",d:"M426.666 0H640v480H426.666z"})]})})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6229.ec077e40.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js deleted file mode 100644 index 82adadfdf1..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6255.2e48b884.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6255"],{85554(h,s,e){e.r(s),e.d(s,{default:()=>l});var i=e(74848);e(47867);let l=h=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...h,children:[(0,i.jsx)("path",{fill:"#c60c30",d:"M0 0h640.1v480H0z"}),(0,i.jsx)("path",{fill:"#fff",d:"M205.714 0h68.57v480h-68.57z"}),(0,i.jsx)("path",{fill:"#fff",d:"M0 205.714h640.1v68.57H0z"})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6255.2e48b884.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js deleted file mode 100644 index 99eb81fdfa..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6270.f9ff3abd.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6270"],{70714(l,h,s){s.r(h),s.d(h,{default:()=>e});var i=s(74848);s(47867);let e=l=>(0,i.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,i.jsx)("defs",{children:(0,i.jsx)("clipPath",{id:"sk_inline_svg__a",clipPathUnits:"userSpaceOnUse",children:(0,i.jsx)("path",{fillOpacity:.67,d:"M-26.334 0h682.67v512h-682.67z"})})}),(0,i.jsxs)("g",{fillRule:"evenodd",strokeWidth:"1pt",clipPath:"url(#sk_inline_svg__a)",transform:"translate(24.688)scale(.9375)",children:[(0,i.jsx)("path",{fill:"#fff",d:"M-69 0h768v512H-69z"}),(0,i.jsx)("path",{fill:"#01017e",d:"M-69 170.67h768V512H-69z"}),(0,i.jsx)("path",{fill:"#fe0101",d:"M-69 341.33h768V512H-69z"}),(0,i.jsx)("path",{fill:"#fff",d:"M64.736 116.2v143.57c9.833 56.051 35.893 113.09 123.9 142.09 87.519-29.009 115.54-83.586 125.87-143.08V116.19H64.736z"}),(0,i.jsx)("path",{fill:"#fe0101",d:"M74.569 127.51v125.38c8.85 45.726 26.059 108.17 114.07 137.18 87.519-29.009 107.68-91.452 115.54-137.18V127.51z"}),(0,i.jsx)("path",{fill:"#fff",d:"M202.41 203.23v20.159h40.318c5.406 0 10.489-2.623 15.734-3.934v37.859c-5.409-1.147-10.696-3.441-16.226-3.441h-39.334v46.218l-27.043-.984v-45.234h-38.35c-5.764 0-11.144 2.95-16.717 4.425v-40.317c5.245 1.639 10.239 4.916 15.734 4.916h39.334v-20.159h-29.009c-5.083 0-9.506 3.606-14.259 5.41v-38.35c5.409 2.294 10.35 6.882 16.226 6.882h27.534v-17.209c0-8.037-4.59-15.406-6.884-23.109h38.842c-1.967 7.867-5.9 15.492-5.9 23.601v16.717h26.06c6.799 0 13.111-3.605 19.667-5.408v37.86c-5.9-1.967-11.482-5.901-17.7-5.901H202.41z"}),(0,i.jsx)("path",{fill:"#01017e",d:"M152.75 305.5c-23.11-11.555-45.184-5.102-55.744 13.398 16.41 31.344 47.632 56.666 91.637 71.17 43.76-14.505 75.596-39.826 93.05-69.695-13.597-25.94-39.457-22.495-56.174-14.381-11.8-29.009-59.985-27.534-72.768-.492z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6270.f9ff3abd.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js deleted file mode 100644 index 4612d9cf74..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js +++ /dev/null @@ -1,5 +0,0 @@ -/*! For license information please see 6272.f2f56a80.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6272"],{28755(e,t,l){l.r(t),l.d(t,{aggregationFns:()=>A,functionalUpdate:()=>i,filterFns:()=>y,isSubRowSelected:()=>ei,ColumnFiltering:()=>G,ColumnOrdering:()=>z,ColumnSizing:()=>k,getFacetedMinMaxValues:()=>eC,RowPagination:()=>Y,GlobalFaceting:()=>K,defaultColumnSizing:()=>B,ColumnFaceting:()=>v,createTable:()=>ec,getExpandedRowModel:()=>em,flexRender:()=>eV,buildHeaderGroups:()=>h,createColumnHelper:()=>o,getMemoOptions:()=>p,flattenBy:()=>s,isFunction:()=>a,createCell:()=>c,getPaginationRowModel:()=>eF,GlobalFiltering:()=>J,RowPinning:()=>ee,getFilteredRowModel:()=>eS,getCoreRowModel:()=>ef,Headers:()=>C,getGroupedRowModel:()=>eb,memo:()=>d,RowSorting:()=>ed,ColumnGrouping:()=>H,orderColumns:()=>D,passiveEventSupported:()=>j,reSplitAlphaNumeric:()=>er,selectRowsFn:()=>en,shouldAutoRemoveFilter:()=>L,getFacetedRowModel:()=>eR,ColumnPinning:()=>T,getFacetedUniqueValues:()=>ev,sortingFns:()=>es,createColumn:()=>f,isNumberArray:()=>g,RowSelection:()=>et,_getVisibleLeafColumns:()=>X,ColumnVisibility:()=>$,isRowSelected:()=>eo,createRow:()=>R,expandRows:()=>ew,useReactTable:()=>eP,getSortedRowModel:()=>eM,makeStateUpdater:()=>u,RowExpanding:()=>Q,noop:()=>r});var n=l(47867);function o(){return{accessor:(e,t)=>"function"==typeof e?{...t,accessorFn:e}:{...t,accessorKey:e},display:e=>e,group:e=>e}}function i(e,t){return"function"==typeof e?e(t):e}function r(){}function u(e,t){return l=>{t.setState(t=>({...t,[e]:i(l,t[e])}))}}function a(e){return e instanceof Function}function g(e){return Array.isArray(e)&&e.every(e=>"number"==typeof e)}function s(e,t){let l=[],n=e=>{e.forEach(e=>{l.push(e);let o=t(e);null!=o&&o.length&&n(o)})};return n(e),l}function d(e,t,l){let n,o=[];return i=>{let r,u;l.key&&l.debug&&(r=Date.now());let a=e(i);if(!(a.length!==o.length||a.some((e,t)=>o[t]!==e)))return n;if(o=a,l.key&&l.debug&&(u=Date.now()),n=t(...a),null==l||null==l.onChange||l.onChange(n),l.key&&l.debug&&null!=l&&l.debug()){let e=Math.round((Date.now()-r)*100)/100,t=Math.round((Date.now()-u)*100)/100,n=t/16,o=(e,t)=>{for(e=String(e);e.length{var l;return null!=(l=null==e?void 0:e.debugAll)?l:e[t]},key:!1,onChange:n}}function c(e,t,l,n){let o={id:`${t.id}_${l.id}`,row:t,column:l,getValue:()=>t.getValue(n),renderValue:()=>{var t;return null!=(t=o.getValue())?t:e.options.renderFallbackValue},getContext:d(()=>[e,l,t,o],(e,t,l,n)=>({table:e,column:t,row:l,cell:n,getValue:n.getValue,renderValue:n.renderValue}),p(e.options,"debugCells","cell.getContext"))};return e._features.forEach(n=>{null==n.createCell||n.createCell(o,l,t,e)},{}),o}function f(e,t,l,n){var o,i;let r,u={...e._getDefaultColumnDef(),...t},a=u.accessorKey,g=null!=(o=null!=(i=u.id)?i:a?"function"==typeof String.prototype.replaceAll?a.replaceAll(".","_"):a.replace(/\./g,"_"):void 0)?o:"string"==typeof u.header?u.header:void 0;if(u.accessorFn?r=u.accessorFn:a&&(r=a.includes(".")?e=>{let t=e;for(let e of a.split(".")){var l;t=null==(l=t)?void 0:l[e]}return t}:e=>e[u.accessorKey]),!g)throw Error();let s={id:`${String(g)}`,accessorFn:r,parent:n,depth:l,columnDef:u,columns:[],getFlatColumns:d(()=>[!0],()=>{var e;return[s,...null==(e=s.columns)?void 0:e.flatMap(e=>e.getFlatColumns())]},p(e.options,"debugColumns","column.getFlatColumns")),getLeafColumns:d(()=>[e._getOrderColumnsFn()],e=>{var t;return null!=(t=s.columns)&&t.length?e(s.columns.flatMap(e=>e.getLeafColumns())):[s]},p(e.options,"debugColumns","column.getLeafColumns"))};for(let t of e._features)null==t.createColumn||t.createColumn(s,e);return s}let m="debugHeaders";function w(e,t,l){var n;let o={id:null!=(n=l.id)?n:t.id,column:t,index:l.index,isPlaceholder:!!l.isPlaceholder,placeholderId:l.placeholderId,depth:l.depth,subHeaders:[],colSpan:0,rowSpan:0,headerGroup:null,getLeafHeaders:()=>{let e=[],t=l=>{l.subHeaders&&l.subHeaders.length&&l.subHeaders.map(t),e.push(l)};return t(o),e},getContext:()=>({table:e,header:o,column:t})};return e._features.forEach(t=>{null==t.createHeader||t.createHeader(o,e)}),o}let C={createTable:e=>{e.getHeaderGroups=d(()=>[e.getAllColumns(),e.getVisibleLeafColumns(),e.getState().columnPinning.left,e.getState().columnPinning.right],(t,l,n,o)=>{var i,r;let u=null!=(i=null==n?void 0:n.map(e=>l.find(t=>t.id===e)).filter(Boolean))?i:[],a=null!=(r=null==o?void 0:o.map(e=>l.find(t=>t.id===e)).filter(Boolean))?r:[];return h(t,[...u,...l.filter(e=>!(null!=n&&n.includes(e.id))&&!(null!=o&&o.includes(e.id))),...a],e)},p(e.options,m,"getHeaderGroups")),e.getCenterHeaderGroups=d(()=>[e.getAllColumns(),e.getVisibleLeafColumns(),e.getState().columnPinning.left,e.getState().columnPinning.right],(t,l,n,o)=>h(t,l=l.filter(e=>!(null!=n&&n.includes(e.id))&&!(null!=o&&o.includes(e.id))),e,"center"),p(e.options,m,"getCenterHeaderGroups")),e.getLeftHeaderGroups=d(()=>[e.getAllColumns(),e.getVisibleLeafColumns(),e.getState().columnPinning.left],(t,l,n)=>{var o;return h(t,null!=(o=null==n?void 0:n.map(e=>l.find(t=>t.id===e)).filter(Boolean))?o:[],e,"left")},p(e.options,m,"getLeftHeaderGroups")),e.getRightHeaderGroups=d(()=>[e.getAllColumns(),e.getVisibleLeafColumns(),e.getState().columnPinning.right],(t,l,n)=>{var o;return h(t,null!=(o=null==n?void 0:n.map(e=>l.find(t=>t.id===e)).filter(Boolean))?o:[],e,"right")},p(e.options,m,"getRightHeaderGroups")),e.getFooterGroups=d(()=>[e.getHeaderGroups()],e=>[...e].reverse(),p(e.options,m,"getFooterGroups")),e.getLeftFooterGroups=d(()=>[e.getLeftHeaderGroups()],e=>[...e].reverse(),p(e.options,m,"getLeftFooterGroups")),e.getCenterFooterGroups=d(()=>[e.getCenterHeaderGroups()],e=>[...e].reverse(),p(e.options,m,"getCenterFooterGroups")),e.getRightFooterGroups=d(()=>[e.getRightHeaderGroups()],e=>[...e].reverse(),p(e.options,m,"getRightFooterGroups")),e.getFlatHeaders=d(()=>[e.getHeaderGroups()],e=>e.map(e=>e.headers).flat(),p(e.options,m,"getFlatHeaders")),e.getLeftFlatHeaders=d(()=>[e.getLeftHeaderGroups()],e=>e.map(e=>e.headers).flat(),p(e.options,m,"getLeftFlatHeaders")),e.getCenterFlatHeaders=d(()=>[e.getCenterHeaderGroups()],e=>e.map(e=>e.headers).flat(),p(e.options,m,"getCenterFlatHeaders")),e.getRightFlatHeaders=d(()=>[e.getRightHeaderGroups()],e=>e.map(e=>e.headers).flat(),p(e.options,m,"getRightFlatHeaders")),e.getCenterLeafHeaders=d(()=>[e.getCenterFlatHeaders()],e=>e.filter(e=>{var t;return!(null!=(t=e.subHeaders)&&t.length)}),p(e.options,m,"getCenterLeafHeaders")),e.getLeftLeafHeaders=d(()=>[e.getLeftFlatHeaders()],e=>e.filter(e=>{var t;return!(null!=(t=e.subHeaders)&&t.length)}),p(e.options,m,"getLeftLeafHeaders")),e.getRightLeafHeaders=d(()=>[e.getRightFlatHeaders()],e=>e.filter(e=>{var t;return!(null!=(t=e.subHeaders)&&t.length)}),p(e.options,m,"getRightLeafHeaders")),e.getLeafHeaders=d(()=>[e.getLeftHeaderGroups(),e.getCenterHeaderGroups(),e.getRightHeaderGroups()],(e,t,l)=>{var n,o,i,r,u,a;return[...null!=(n=null==(o=e[0])?void 0:o.headers)?n:[],...null!=(i=null==(r=t[0])?void 0:r.headers)?i:[],...null!=(u=null==(a=l[0])?void 0:a.headers)?u:[]].map(e=>e.getLeafHeaders()).flat()},p(e.options,m,"getLeafHeaders"))}};function h(e,t,l,n){var o,i;let r=0,u=function(e,t){void 0===t&&(t=1),r=Math.max(r,t),e.filter(e=>e.getIsVisible()).forEach(e=>{var l;null!=(l=e.columns)&&l.length&&u(e.columns,t+1)},0)};u(e);let a=[],g=(e,t)=>{let o={depth:t,id:[n,`${t}`].filter(Boolean).join("_"),headers:[]},i=[];e.forEach(e=>{let r,u=[...i].reverse()[0],a=e.column.depth===o.depth,g=!1;if(a&&e.column.parent?r=e.column.parent:(r=e.column,g=!0),u&&(null==u?void 0:u.column)===r)u.subHeaders.push(e);else{let o=w(l,r,{id:[n,t,r.id,null==e?void 0:e.id].filter(Boolean).join("_"),isPlaceholder:g,placeholderId:g?`${i.filter(e=>e.column===r).length}`:void 0,depth:t,index:i.length});o.subHeaders.push(e),i.push(o)}o.headers.push(e),e.headerGroup=o}),a.push(o),t>0&&g(i,t-1)};g(t.map((e,t)=>w(l,e,{depth:r,index:t})),r-1),a.reverse();let s=e=>e.filter(e=>e.column.getIsVisible()).map(e=>{let t=0,l=0,n=[0];return e.subHeaders&&e.subHeaders.length?(n=[],s(e.subHeaders).forEach(e=>{let{colSpan:l,rowSpan:o}=e;t+=l,n.push(o)})):t=1,l+=Math.min(...n),e.colSpan=t,e.rowSpan=l,{colSpan:t,rowSpan:l}});return s(null!=(o=null==(i=a[0])?void 0:i.headers)?o:[]),a}let R=(e,t,l,n,o,i,r)=>{let u={id:t,index:n,original:l,depth:o,parentId:r,_valuesCache:{},_uniqueValuesCache:{},getValue:t=>{if(u._valuesCache.hasOwnProperty(t))return u._valuesCache[t];let l=e.getColumn(t);if(null!=l&&l.accessorFn)return u._valuesCache[t]=l.accessorFn(u.original,n),u._valuesCache[t]},getUniqueValues:t=>{if(u._uniqueValuesCache.hasOwnProperty(t))return u._uniqueValuesCache[t];let l=e.getColumn(t);if(null!=l&&l.accessorFn)return l.columnDef.getUniqueValues?u._uniqueValuesCache[t]=l.columnDef.getUniqueValues(u.original,n):u._uniqueValuesCache[t]=[u.getValue(t)],u._uniqueValuesCache[t]},renderValue:t=>{var l;return null!=(l=u.getValue(t))?l:e.options.renderFallbackValue},subRows:null!=i?i:[],getLeafRows:()=>s(u.subRows,e=>e.subRows),getParentRow:()=>u.parentId?e.getRow(u.parentId,!0):void 0,getParentRows:()=>{let e=[],t=u;for(;;){let l=t.getParentRow();if(!l)break;e.push(l),t=l}return e.reverse()},getAllCells:d(()=>[e.getAllLeafColumns()],t=>t.map(t=>c(e,u,t,t.id)),p(e.options,"debugRows","getAllCells")),_getAllCellsByColumnId:d(()=>[u.getAllCells()],e=>e.reduce((e,t)=>(e[t.column.id]=t,e),{}),p(e.options,"debugRows","getAllCellsByColumnId"))};for(let t=0;t{e._getFacetedRowModel=t.options.getFacetedRowModel&&t.options.getFacetedRowModel(t,e.id),e.getFacetedRowModel=()=>e._getFacetedRowModel?e._getFacetedRowModel():t.getPreFilteredRowModel(),e._getFacetedUniqueValues=t.options.getFacetedUniqueValues&&t.options.getFacetedUniqueValues(t,e.id),e.getFacetedUniqueValues=()=>e._getFacetedUniqueValues?e._getFacetedUniqueValues():new Map,e._getFacetedMinMaxValues=t.options.getFacetedMinMaxValues&&t.options.getFacetedMinMaxValues(t,e.id),e.getFacetedMinMaxValues=()=>{if(e._getFacetedMinMaxValues)return e._getFacetedMinMaxValues()}}},S=(e,t,l)=>{var n,o;let i=null==l||null==(n=l.toString())?void 0:n.toLowerCase();return!!(null==(o=e.getValue(t))||null==(o=o.toString())||null==(o=o.toLowerCase())?void 0:o.includes(i))};S.autoRemove=e=>E(e);let b=(e,t,l)=>{var n;return!!(null==(n=e.getValue(t))||null==(n=n.toString())?void 0:n.includes(l))};b.autoRemove=e=>E(e);let F=(e,t,l)=>{var n;return(null==(n=e.getValue(t))||null==(n=n.toString())?void 0:n.toLowerCase())===(null==l?void 0:l.toLowerCase())};F.autoRemove=e=>E(e);let M=(e,t,l)=>{var n;return null==(n=e.getValue(t))?void 0:n.includes(l)};M.autoRemove=e=>E(e);let V=(e,t,l)=>!l.some(l=>{var n;return!(null!=(n=e.getValue(t))&&n.includes(l))});V.autoRemove=e=>E(e)||!(null!=e&&e.length);let P=(e,t,l)=>l.some(l=>{var n;return null==(n=e.getValue(t))?void 0:n.includes(l)});P.autoRemove=e=>E(e)||!(null!=e&&e.length);let I=(e,t,l)=>e.getValue(t)===l;I.autoRemove=e=>E(e);let _=(e,t,l)=>e.getValue(t)==l;_.autoRemove=e=>E(e);let x=(e,t,l)=>{let[n,o]=l,i=e.getValue(t);return i>=n&&i<=o};x.resolveFilterValue=e=>{let[t,l]=e,n="number"!=typeof t?parseFloat(t):t,o="number"!=typeof l?parseFloat(l):l,i=null===t||Number.isNaN(n)?-1/0:n,r=null===l||Number.isNaN(o)?1/0:o;if(i>r){let e=i;i=r,r=e}return[i,r]},x.autoRemove=e=>E(e)||E(e[0])&&E(e[1]);let y={includesString:S,includesStringSensitive:b,equalsString:F,arrIncludes:M,arrIncludesAll:V,arrIncludesSome:P,equals:I,weakEquals:_,inNumberRange:x};function E(e){return null==e||""===e}let G={getDefaultColumnDef:()=>({filterFn:"auto"}),getInitialState:e=>({columnFilters:[],...e}),getDefaultOptions:e=>({onColumnFiltersChange:u("columnFilters",e),filterFromLeafRows:!1,maxLeafRowFilterDepth:100}),createColumn:(e,t)=>{e.getAutoFilterFn=()=>{let l=t.getCoreRowModel().flatRows[0],n=null==l?void 0:l.getValue(e.id);return"string"==typeof n?y.includesString:"number"==typeof n?y.inNumberRange:"boolean"==typeof n||null!==n&&"object"==typeof n?y.equals:Array.isArray(n)?y.arrIncludes:y.weakEquals},e.getFilterFn=()=>{var l,n;return a(e.columnDef.filterFn)?e.columnDef.filterFn:"auto"===e.columnDef.filterFn?e.getAutoFilterFn():null!=(l=null==(n=t.options.filterFns)?void 0:n[e.columnDef.filterFn])?l:y[e.columnDef.filterFn]},e.getCanFilter=()=>{var l,n,o;return(null==(l=e.columnDef.enableColumnFilter)||l)&&(null==(n=t.options.enableColumnFilters)||n)&&(null==(o=t.options.enableFilters)||o)&&!!e.accessorFn},e.getIsFiltered=()=>e.getFilterIndex()>-1,e.getFilterValue=()=>{var l;return null==(l=t.getState().columnFilters)||null==(l=l.find(t=>t.id===e.id))?void 0:l.value},e.getFilterIndex=()=>{var l,n;return null!=(l=null==(n=t.getState().columnFilters)?void 0:n.findIndex(t=>t.id===e.id))?l:-1},e.setFilterValue=l=>{t.setColumnFilters(t=>{var n,o;let r=e.getFilterFn(),u=null==t?void 0:t.find(t=>t.id===e.id),a=i(l,u?u.value:void 0);if(L(r,a,e))return null!=(n=null==t?void 0:t.filter(t=>t.id!==e.id))?n:[];let g={id:e.id,value:a};return u?null!=(o=null==t?void 0:t.map(t=>t.id===e.id?g:t))?o:[]:null!=t&&t.length?[...t,g]:[g]})}},createRow:(e,t)=>{e.columnFilters={},e.columnFiltersMeta={}},createTable:e=>{e.setColumnFilters=t=>{let l=e.getAllLeafColumns();null==e.options.onColumnFiltersChange||e.options.onColumnFiltersChange(e=>{var n;return null==(n=i(t,e))?void 0:n.filter(e=>{let t=l.find(t=>t.id===e.id);return!(t&&L(t.getFilterFn(),e.value,t))&&!0})})},e.resetColumnFilters=t=>{var l,n;e.setColumnFilters(t?[]:null!=(l=null==(n=e.initialState)?void 0:n.columnFilters)?l:[])},e.getPreFilteredRowModel=()=>e.getCoreRowModel(),e.getFilteredRowModel=()=>(!e._getFilteredRowModel&&e.options.getFilteredRowModel&&(e._getFilteredRowModel=e.options.getFilteredRowModel(e)),e.options.manualFiltering||!e._getFilteredRowModel)?e.getPreFilteredRowModel():e._getFilteredRowModel()}};function L(e,t,l){return!!e&&!!e.autoRemove&&e.autoRemove(t,l)||void 0===t||"string"==typeof t&&!t}let A={sum:(e,t,l)=>l.reduce((t,l)=>{let n=l.getValue(e);return t+("number"==typeof n?n:0)},0),min:(e,t,l)=>{let n;return l.forEach(t=>{let l=t.getValue(e);null!=l&&(n>l||void 0===n&&l>=l)&&(n=l)}),n},max:(e,t,l)=>{let n;return l.forEach(t=>{let l=t.getValue(e);null!=l&&(n=l)&&(n=l)}),n},extent:(e,t,l)=>{let n,o;return l.forEach(t=>{let l=t.getValue(e);null!=l&&(void 0===n?l>=l&&(n=o=l):(n>l&&(n=l),o{let l=0,n=0;if(t.forEach(t=>{let o=t.getValue(e);null!=o&&(o*=1)>=o&&(++l,n+=o)}),l)return n/l},median:(e,t)=>{if(!t.length)return;let l=t.map(t=>t.getValue(e));if(!g(l))return;if(1===l.length)return l[0];let n=Math.floor(l.length/2),o=l.sort((e,t)=>e-t);return l.length%2!=0?o[n]:(o[n-1]+o[n])/2},unique:(e,t)=>Array.from(new Set(t.map(t=>t.getValue(e))).values()),uniqueCount:(e,t)=>new Set(t.map(t=>t.getValue(e))).size,count:(e,t)=>t.length},H={getDefaultColumnDef:()=>({aggregatedCell:e=>{var t,l;return null!=(t=null==(l=e.getValue())||null==l.toString?void 0:l.toString())?t:null},aggregationFn:"auto"}),getInitialState:e=>({grouping:[],...e}),getDefaultOptions:e=>({onGroupingChange:u("grouping",e),groupedColumnMode:"reorder"}),createColumn:(e,t)=>{e.toggleGrouping=()=>{t.setGrouping(t=>null!=t&&t.includes(e.id)?t.filter(t=>t!==e.id):[...null!=t?t:[],e.id])},e.getCanGroup=()=>{var l,n;return(null==(l=e.columnDef.enableGrouping)||l)&&(null==(n=t.options.enableGrouping)||n)&&(!!e.accessorFn||!!e.columnDef.getGroupingValue)},e.getIsGrouped=()=>{var l;return null==(l=t.getState().grouping)?void 0:l.includes(e.id)},e.getGroupedIndex=()=>{var l;return null==(l=t.getState().grouping)?void 0:l.indexOf(e.id)},e.getToggleGroupingHandler=()=>{let t=e.getCanGroup();return()=>{t&&e.toggleGrouping()}},e.getAutoAggregationFn=()=>{let l=t.getCoreRowModel().flatRows[0],n=null==l?void 0:l.getValue(e.id);return"number"==typeof n?A.sum:"[object Date]"===Object.prototype.toString.call(n)?A.extent:void 0},e.getAggregationFn=()=>{var l,n;if(!e)throw Error();return a(e.columnDef.aggregationFn)?e.columnDef.aggregationFn:"auto"===e.columnDef.aggregationFn?e.getAutoAggregationFn():null!=(l=null==(n=t.options.aggregationFns)?void 0:n[e.columnDef.aggregationFn])?l:A[e.columnDef.aggregationFn]}},createTable:e=>{e.setGrouping=t=>null==e.options.onGroupingChange?void 0:e.options.onGroupingChange(t),e.resetGrouping=t=>{var l,n;e.setGrouping(t?[]:null!=(l=null==(n=e.initialState)?void 0:n.grouping)?l:[])},e.getPreGroupedRowModel=()=>e.getFilteredRowModel(),e.getGroupedRowModel=()=>(!e._getGroupedRowModel&&e.options.getGroupedRowModel&&(e._getGroupedRowModel=e.options.getGroupedRowModel(e)),e.options.manualGrouping||!e._getGroupedRowModel)?e.getPreGroupedRowModel():e._getGroupedRowModel()},createRow:(e,t)=>{e.getIsGrouped=()=>!!e.groupingColumnId,e.getGroupingValue=l=>{if(e._groupingValuesCache.hasOwnProperty(l))return e._groupingValuesCache[l];let n=t.getColumn(l);return null!=n&&n.columnDef.getGroupingValue?(e._groupingValuesCache[l]=n.columnDef.getGroupingValue(e.original),e._groupingValuesCache[l]):e.getValue(l)},e._groupingValuesCache={}},createCell:(e,t,l,n)=>{e.getIsGrouped=()=>t.getIsGrouped()&&t.id===l.groupingColumnId,e.getIsPlaceholder=()=>!e.getIsGrouped()&&t.getIsGrouped(),e.getIsAggregated=()=>{var t;return!e.getIsGrouped()&&!e.getIsPlaceholder()&&!!(null!=(t=l.subRows)&&t.length)}}};function D(e,t,l){if(!(null!=t&&t.length)||!l)return e;let n=e.filter(e=>!t.includes(e.id));return"remove"===l?n:[...t.map(t=>e.find(e=>e.id===t)).filter(Boolean),...n]}let z={getInitialState:e=>({columnOrder:[],...e}),getDefaultOptions:e=>({onColumnOrderChange:u("columnOrder",e)}),createColumn:(e,t)=>{e.getIndex=d(e=>[X(t,e)],t=>t.findIndex(t=>t.id===e.id),p(t.options,"debugColumns","getIndex")),e.getIsFirstColumn=l=>{var n;return(null==(n=X(t,l)[0])?void 0:n.id)===e.id},e.getIsLastColumn=l=>{var n;let o=X(t,l);return(null==(n=o[o.length-1])?void 0:n.id)===e.id}},createTable:e=>{e.setColumnOrder=t=>null==e.options.onColumnOrderChange?void 0:e.options.onColumnOrderChange(t),e.resetColumnOrder=t=>{var l;e.setColumnOrder(t?[]:null!=(l=e.initialState.columnOrder)?l:[])},e._getOrderColumnsFn=d(()=>[e.getState().columnOrder,e.getState().grouping,e.options.groupedColumnMode],(e,t,l)=>n=>{let o=[];if(null!=e&&e.length){let t=[...e],l=[...n];for(;l.length&&t.length;){let e=t.shift(),n=l.findIndex(t=>t.id===e);n>-1&&o.push(l.splice(n,1)[0])}o=[...o,...l]}else o=n;return D(o,t,l)},p(e.options,"debugTable","_getOrderColumnsFn"))}},O=()=>({left:[],right:[]}),T={getInitialState:e=>({columnPinning:O(),...e}),getDefaultOptions:e=>({onColumnPinningChange:u("columnPinning",e)}),createColumn:(e,t)=>{e.pin=l=>{let n=e.getLeafColumns().map(e=>e.id).filter(Boolean);t.setColumnPinning(e=>{var t,o,i,r,u,a;return"right"===l?{left:(null!=(i=null==e?void 0:e.left)?i:[]).filter(e=>!(null!=n&&n.includes(e))),right:[...(null!=(r=null==e?void 0:e.right)?r:[]).filter(e=>!(null!=n&&n.includes(e))),...n]}:"left"===l?{left:[...(null!=(u=null==e?void 0:e.left)?u:[]).filter(e=>!(null!=n&&n.includes(e))),...n],right:(null!=(a=null==e?void 0:e.right)?a:[]).filter(e=>!(null!=n&&n.includes(e)))}:{left:(null!=(t=null==e?void 0:e.left)?t:[]).filter(e=>!(null!=n&&n.includes(e))),right:(null!=(o=null==e?void 0:e.right)?o:[]).filter(e=>!(null!=n&&n.includes(e)))}})},e.getCanPin=()=>e.getLeafColumns().some(e=>{var l,n,o;return(null==(l=e.columnDef.enablePinning)||l)&&(null==(n=null!=(o=t.options.enableColumnPinning)?o:t.options.enablePinning)||n)}),e.getIsPinned=()=>{let l=e.getLeafColumns().map(e=>e.id),{left:n,right:o}=t.getState().columnPinning,i=l.some(e=>null==n?void 0:n.includes(e)),r=l.some(e=>null==o?void 0:o.includes(e));return i?"left":!!r&&"right"},e.getPinnedIndex=()=>{var l,n;let o=e.getIsPinned();return o?null!=(l=null==(n=t.getState().columnPinning)||null==(n=n[o])?void 0:n.indexOf(e.id))?l:-1:0}},createRow:(e,t)=>{e.getCenterVisibleCells=d(()=>[e._getAllVisibleCells(),t.getState().columnPinning.left,t.getState().columnPinning.right],(e,t,l)=>{let n=[...null!=t?t:[],...null!=l?l:[]];return e.filter(e=>!n.includes(e.column.id))},p(t.options,"debugRows","getCenterVisibleCells")),e.getLeftVisibleCells=d(()=>[e._getAllVisibleCells(),t.getState().columnPinning.left],(e,t)=>(null!=t?t:[]).map(t=>e.find(e=>e.column.id===t)).filter(Boolean).map(e=>({...e,position:"left"})),p(t.options,"debugRows","getLeftVisibleCells")),e.getRightVisibleCells=d(()=>[e._getAllVisibleCells(),t.getState().columnPinning.right],(e,t)=>(null!=t?t:[]).map(t=>e.find(e=>e.column.id===t)).filter(Boolean).map(e=>({...e,position:"right"})),p(t.options,"debugRows","getRightVisibleCells"))},createTable:e=>{e.setColumnPinning=t=>null==e.options.onColumnPinningChange?void 0:e.options.onColumnPinningChange(t),e.resetColumnPinning=t=>{var l,n;return e.setColumnPinning(t?O():null!=(l=null==(n=e.initialState)?void 0:n.columnPinning)?l:O())},e.getIsSomeColumnsPinned=t=>{var l,n,o;let i=e.getState().columnPinning;return t?!!(null==(l=i[t])?void 0:l.length):!!((null==(n=i.left)?void 0:n.length)||(null==(o=i.right)?void 0:o.length))},e.getLeftLeafColumns=d(()=>[e.getAllLeafColumns(),e.getState().columnPinning.left],(e,t)=>(null!=t?t:[]).map(t=>e.find(e=>e.id===t)).filter(Boolean),p(e.options,"debugColumns","getLeftLeafColumns")),e.getRightLeafColumns=d(()=>[e.getAllLeafColumns(),e.getState().columnPinning.right],(e,t)=>(null!=t?t:[]).map(t=>e.find(e=>e.id===t)).filter(Boolean),p(e.options,"debugColumns","getRightLeafColumns")),e.getCenterLeafColumns=d(()=>[e.getAllLeafColumns(),e.getState().columnPinning.left,e.getState().columnPinning.right],(e,t,l)=>{let n=[...null!=t?t:[],...null!=l?l:[]];return e.filter(e=>!n.includes(e.id))},p(e.options,"debugColumns","getCenterLeafColumns"))}},B={size:150,minSize:20,maxSize:Number.MAX_SAFE_INTEGER},q=()=>({startOffset:null,startSize:null,deltaOffset:null,deltaPercentage:null,isResizingColumn:!1,columnSizingStart:[]}),k={getDefaultColumnDef:()=>B,getInitialState:e=>({columnSizing:{},columnSizingInfo:q(),...e}),getDefaultOptions:e=>({columnResizeMode:"onEnd",columnResizeDirection:"ltr",onColumnSizingChange:u("columnSizing",e),onColumnSizingInfoChange:u("columnSizingInfo",e)}),createColumn:(e,t)=>{e.getSize=()=>{var l,n,o;let i=t.getState().columnSizing[e.id];return Math.min(Math.max(null!=(l=e.columnDef.minSize)?l:B.minSize,null!=(n=null!=i?i:e.columnDef.size)?n:B.size),null!=(o=e.columnDef.maxSize)?o:B.maxSize)},e.getStart=d(e=>[e,X(t,e),t.getState().columnSizing],(t,l)=>l.slice(0,e.getIndex(t)).reduce((e,t)=>e+t.getSize(),0),p(t.options,"debugColumns","getStart")),e.getAfter=d(e=>[e,X(t,e),t.getState().columnSizing],(t,l)=>l.slice(e.getIndex(t)+1).reduce((e,t)=>e+t.getSize(),0),p(t.options,"debugColumns","getAfter")),e.resetSize=()=>{t.setColumnSizing(t=>{let{[e.id]:l,...n}=t;return n})},e.getCanResize=()=>{var l,n;return(null==(l=e.columnDef.enableResizing)||l)&&(null==(n=t.options.enableColumnResizing)||n)},e.getIsResizing=()=>t.getState().columnSizingInfo.isResizingColumn===e.id},createHeader:(e,t)=>{e.getSize=()=>{let t=0,l=e=>{if(e.subHeaders.length)e.subHeaders.forEach(l);else{var n;t+=null!=(n=e.column.getSize())?n:0}};return l(e),t},e.getStart=()=>{if(e.index>0){let t=e.headerGroup.headers[e.index-1];return t.getStart()+t.getSize()}return 0},e.getResizeHandler=l=>{let n=t.getColumn(e.column.id),o=null==n?void 0:n.getCanResize();return i=>{if(!n||!o||(null==i.persist||i.persist(),U(i)&&i.touches&&i.touches.length>1))return;let r=e.getSize(),u=e?e.getLeafHeaders().map(e=>[e.column.id,e.column.getSize()]):[[n.id,n.getSize()]],a=U(i)?Math.round(i.touches[0].clientX):i.clientX,g={},s=(e,l)=>{"number"==typeof l&&(t.setColumnSizingInfo(e=>{var n,o;let i="rtl"===t.options.columnResizeDirection?-1:1,r=(l-(null!=(n=null==e?void 0:e.startOffset)?n:0))*i,u=Math.max(r/(null!=(o=null==e?void 0:e.startSize)?o:0),-.999999);return e.columnSizingStart.forEach(e=>{let[t,l]=e;g[t]=Math.round(100*Math.max(l+l*u,0))/100}),{...e,deltaOffset:r,deltaPercentage:u}}),("onChange"===t.options.columnResizeMode||"end"===e)&&t.setColumnSizing(e=>({...e,...g})))},d=e=>{s("end",e),t.setColumnSizingInfo(e=>({...e,isResizingColumn:!1,startOffset:null,startSize:null,deltaOffset:null,deltaPercentage:null,columnSizingStart:[]}))},p=l||("u">typeof document?document:null),c={moveHandler:e=>s("move",e.clientX),upHandler:e=>{null==p||p.removeEventListener("mousemove",c.moveHandler),null==p||p.removeEventListener("mouseup",c.upHandler),d(e.clientX)}},f={moveHandler:e=>(e.cancelable&&(e.preventDefault(),e.stopPropagation()),s("move",e.touches[0].clientX),!1),upHandler:e=>{var t;null==p||p.removeEventListener("touchmove",f.moveHandler),null==p||p.removeEventListener("touchend",f.upHandler),e.cancelable&&(e.preventDefault(),e.stopPropagation()),d(null==(t=e.touches[0])?void 0:t.clientX)}},m=!!j()&&{passive:!1};U(i)?(null==p||p.addEventListener("touchmove",f.moveHandler,m),null==p||p.addEventListener("touchend",f.upHandler,m)):(null==p||p.addEventListener("mousemove",c.moveHandler,m),null==p||p.addEventListener("mouseup",c.upHandler,m)),t.setColumnSizingInfo(e=>({...e,startOffset:a,startSize:r,deltaOffset:0,deltaPercentage:0,columnSizingStart:u,isResizingColumn:n.id}))}}},createTable:e=>{e.setColumnSizing=t=>null==e.options.onColumnSizingChange?void 0:e.options.onColumnSizingChange(t),e.setColumnSizingInfo=t=>null==e.options.onColumnSizingInfoChange?void 0:e.options.onColumnSizingInfoChange(t),e.resetColumnSizing=t=>{var l;e.setColumnSizing(t?{}:null!=(l=e.initialState.columnSizing)?l:{})},e.resetHeaderSizeInfo=t=>{var l;e.setColumnSizingInfo(t?q():null!=(l=e.initialState.columnSizingInfo)?l:q())},e.getTotalSize=()=>{var t,l;return null!=(t=null==(l=e.getHeaderGroups()[0])?void 0:l.headers.reduce((e,t)=>e+t.getSize(),0))?t:0},e.getLeftTotalSize=()=>{var t,l;return null!=(t=null==(l=e.getLeftHeaderGroups()[0])?void 0:l.headers.reduce((e,t)=>e+t.getSize(),0))?t:0},e.getCenterTotalSize=()=>{var t,l;return null!=(t=null==(l=e.getCenterHeaderGroups()[0])?void 0:l.headers.reduce((e,t)=>e+t.getSize(),0))?t:0},e.getRightTotalSize=()=>{var t,l;return null!=(t=null==(l=e.getRightHeaderGroups()[0])?void 0:l.headers.reduce((e,t)=>e+t.getSize(),0))?t:0}}},N=null;function j(){if("boolean"==typeof N)return N;let e=!1;try{let t=()=>{};window.addEventListener("test",t,{get passive(){return e=!0,!1}}),window.removeEventListener("test",t)}catch(t){e=!1}return N=e}function U(e){return"touchstart"===e.type}let $={getInitialState:e=>({columnVisibility:{},...e}),getDefaultOptions:e=>({onColumnVisibilityChange:u("columnVisibility",e)}),createColumn:(e,t)=>{e.toggleVisibility=l=>{e.getCanHide()&&t.setColumnVisibility(t=>({...t,[e.id]:null!=l?l:!e.getIsVisible()}))},e.getIsVisible=()=>{var l,n;let o=e.columns;return null==(l=o.length?o.some(e=>e.getIsVisible()):null==(n=t.getState().columnVisibility)?void 0:n[e.id])||l},e.getCanHide=()=>{var l,n;return(null==(l=e.columnDef.enableHiding)||l)&&(null==(n=t.options.enableHiding)||n)},e.getToggleVisibilityHandler=()=>t=>{null==e.toggleVisibility||e.toggleVisibility(t.target.checked)}},createRow:(e,t)=>{e._getAllVisibleCells=d(()=>[e.getAllCells(),t.getState().columnVisibility],e=>e.filter(e=>e.column.getIsVisible()),p(t.options,"debugRows","_getAllVisibleCells")),e.getVisibleCells=d(()=>[e.getLeftVisibleCells(),e.getCenterVisibleCells(),e.getRightVisibleCells()],(e,t,l)=>[...e,...t,...l],p(t.options,"debugRows","getVisibleCells"))},createTable:e=>{let t=(t,l)=>d(()=>[l(),l().filter(e=>e.getIsVisible()).map(e=>e.id).join("_")],e=>e.filter(e=>null==e.getIsVisible?void 0:e.getIsVisible()),p(e.options,"debugColumns",t));e.getVisibleFlatColumns=t("getVisibleFlatColumns",()=>e.getAllFlatColumns()),e.getVisibleLeafColumns=t("getVisibleLeafColumns",()=>e.getAllLeafColumns()),e.getLeftVisibleLeafColumns=t("getLeftVisibleLeafColumns",()=>e.getLeftLeafColumns()),e.getRightVisibleLeafColumns=t("getRightVisibleLeafColumns",()=>e.getRightLeafColumns()),e.getCenterVisibleLeafColumns=t("getCenterVisibleLeafColumns",()=>e.getCenterLeafColumns()),e.setColumnVisibility=t=>null==e.options.onColumnVisibilityChange?void 0:e.options.onColumnVisibilityChange(t),e.resetColumnVisibility=t=>{var l;e.setColumnVisibility(t?{}:null!=(l=e.initialState.columnVisibility)?l:{})},e.toggleAllColumnsVisible=t=>{var l;t=null!=(l=t)?l:!e.getIsAllColumnsVisible(),e.setColumnVisibility(e.getAllLeafColumns().reduce((e,l)=>({...e,[l.id]:t||!(null!=l.getCanHide&&l.getCanHide())}),{}))},e.getIsAllColumnsVisible=()=>!e.getAllLeafColumns().some(e=>!(null!=e.getIsVisible&&e.getIsVisible())),e.getIsSomeColumnsVisible=()=>e.getAllLeafColumns().some(e=>null==e.getIsVisible?void 0:e.getIsVisible()),e.getToggleAllColumnsVisibilityHandler=()=>t=>{var l;e.toggleAllColumnsVisible(null==(l=t.target)?void 0:l.checked)}}};function X(e,t){return t?"center"===t?e.getCenterVisibleLeafColumns():"left"===t?e.getLeftVisibleLeafColumns():e.getRightVisibleLeafColumns():e.getVisibleLeafColumns()}let K={createTable:e=>{e._getGlobalFacetedRowModel=e.options.getFacetedRowModel&&e.options.getFacetedRowModel(e,"__global__"),e.getGlobalFacetedRowModel=()=>e.options.manualFiltering||!e._getGlobalFacetedRowModel?e.getPreFilteredRowModel():e._getGlobalFacetedRowModel(),e._getGlobalFacetedUniqueValues=e.options.getFacetedUniqueValues&&e.options.getFacetedUniqueValues(e,"__global__"),e.getGlobalFacetedUniqueValues=()=>e._getGlobalFacetedUniqueValues?e._getGlobalFacetedUniqueValues():new Map,e._getGlobalFacetedMinMaxValues=e.options.getFacetedMinMaxValues&&e.options.getFacetedMinMaxValues(e,"__global__"),e.getGlobalFacetedMinMaxValues=()=>{if(e._getGlobalFacetedMinMaxValues)return e._getGlobalFacetedMinMaxValues()}}},J={getInitialState:e=>({globalFilter:void 0,...e}),getDefaultOptions:e=>({onGlobalFilterChange:u("globalFilter",e),globalFilterFn:"auto",getColumnCanGlobalFilter:t=>{var l;let n=null==(l=e.getCoreRowModel().flatRows[0])||null==(l=l._getAllCellsByColumnId()[t.id])?void 0:l.getValue();return"string"==typeof n||"number"==typeof n}}),createColumn:(e,t)=>{e.getCanGlobalFilter=()=>{var l,n,o,i;return(null==(l=e.columnDef.enableGlobalFilter)||l)&&(null==(n=t.options.enableGlobalFilter)||n)&&(null==(o=t.options.enableFilters)||o)&&(null==(i=null==t.options.getColumnCanGlobalFilter?void 0:t.options.getColumnCanGlobalFilter(e))||i)&&!!e.accessorFn}},createTable:e=>{e.getGlobalAutoFilterFn=()=>y.includesString,e.getGlobalFilterFn=()=>{var t,l;let{globalFilterFn:n}=e.options;return a(n)?n:"auto"===n?e.getGlobalAutoFilterFn():null!=(t=null==(l=e.options.filterFns)?void 0:l[n])?t:y[n]},e.setGlobalFilter=t=>{null==e.options.onGlobalFilterChange||e.options.onGlobalFilterChange(t)},e.resetGlobalFilter=t=>{e.setGlobalFilter(t?void 0:e.initialState.globalFilter)}}},Q={getInitialState:e=>({expanded:{},...e}),getDefaultOptions:e=>({onExpandedChange:u("expanded",e),paginateExpandedRows:!0}),createTable:e=>{let t=!1,l=!1;e._autoResetExpanded=()=>{var n,o;if(!t)return void e._queue(()=>{t=!0});if(null!=(n=null!=(o=e.options.autoResetAll)?o:e.options.autoResetExpanded)?n:!e.options.manualExpanding){if(l)return;l=!0,e._queue(()=>{e.resetExpanded(),l=!1})}},e.setExpanded=t=>null==e.options.onExpandedChange?void 0:e.options.onExpandedChange(t),e.toggleAllRowsExpanded=t=>{(null!=t?t:!e.getIsAllRowsExpanded())?e.setExpanded(!0):e.setExpanded({})},e.resetExpanded=t=>{var l,n;e.setExpanded(t?{}:null!=(l=null==(n=e.initialState)?void 0:n.expanded)?l:{})},e.getCanSomeRowsExpand=()=>e.getPrePaginationRowModel().flatRows.some(e=>e.getCanExpand()),e.getToggleAllRowsExpandedHandler=()=>t=>{null==t.persist||t.persist(),e.toggleAllRowsExpanded()},e.getIsSomeRowsExpanded=()=>{let t=e.getState().expanded;return!0===t||Object.values(t).some(Boolean)},e.getIsAllRowsExpanded=()=>{let t=e.getState().expanded;return"boolean"==typeof t?!0===t:!(!Object.keys(t).length||e.getRowModel().flatRows.some(e=>!e.getIsExpanded()))},e.getExpandedDepth=()=>{let t=0;return(!0===e.getState().expanded?Object.keys(e.getRowModel().rowsById):Object.keys(e.getState().expanded)).forEach(e=>{let l=e.split(".");t=Math.max(t,l.length)}),t},e.getPreExpandedRowModel=()=>e.getSortedRowModel(),e.getExpandedRowModel=()=>(!e._getExpandedRowModel&&e.options.getExpandedRowModel&&(e._getExpandedRowModel=e.options.getExpandedRowModel(e)),e.options.manualExpanding||!e._getExpandedRowModel)?e.getPreExpandedRowModel():e._getExpandedRowModel()},createRow:(e,t)=>{e.toggleExpanded=l=>{t.setExpanded(n=>{var o;let i=!0===n||!!(null!=n&&n[e.id]),r={};if(!0===n?Object.keys(t.getRowModel().rowsById).forEach(e=>{r[e]=!0}):r=n,l=null!=(o=l)?o:!i,!i&&l)return{...r,[e.id]:!0};if(i&&!l){let{[e.id]:t,...l}=r;return l}return n})},e.getIsExpanded=()=>{var l;let n=t.getState().expanded;return!!(null!=(l=null==t.options.getIsRowExpanded?void 0:t.options.getIsRowExpanded(e))?l:!0===n||(null==n?void 0:n[e.id]))},e.getCanExpand=()=>{var l,n,o;return null!=(l=null==t.options.getRowCanExpand?void 0:t.options.getRowCanExpand(e))?l:(null==(n=t.options.enableExpanding)||n)&&!!(null!=(o=e.subRows)&&o.length)},e.getIsAllParentsExpanded=()=>{let l=!0,n=e;for(;l&&n.parentId;)l=(n=t.getRow(n.parentId,!0)).getIsExpanded();return l},e.getToggleExpandedHandler=()=>{let t=e.getCanExpand();return()=>{t&&e.toggleExpanded()}}}},W=()=>({pageIndex:0,pageSize:10}),Y={getInitialState:e=>({...e,pagination:{...W(),...null==e?void 0:e.pagination}}),getDefaultOptions:e=>({onPaginationChange:u("pagination",e)}),createTable:e=>{let t=!1,l=!1;e._autoResetPageIndex=()=>{var n,o;if(!t)return void e._queue(()=>{t=!0});if(null!=(n=null!=(o=e.options.autoResetAll)?o:e.options.autoResetPageIndex)?n:!e.options.manualPagination){if(l)return;l=!0,e._queue(()=>{e.resetPageIndex(),l=!1})}},e.setPagination=t=>null==e.options.onPaginationChange?void 0:e.options.onPaginationChange(e=>i(t,e)),e.resetPagination=t=>{var l;e.setPagination(t?W():null!=(l=e.initialState.pagination)?l:W())},e.setPageIndex=t=>{e.setPagination(l=>{let n=i(t,l.pageIndex);return n=Math.max(0,Math.min(n,void 0===e.options.pageCount||-1===e.options.pageCount?Number.MAX_SAFE_INTEGER:e.options.pageCount-1)),{...l,pageIndex:n}})},e.resetPageIndex=t=>{var l,n;e.setPageIndex(t?0:null!=(l=null==(n=e.initialState)||null==(n=n.pagination)?void 0:n.pageIndex)?l:0)},e.resetPageSize=t=>{var l,n;e.setPageSize(t?10:null!=(l=null==(n=e.initialState)||null==(n=n.pagination)?void 0:n.pageSize)?l:10)},e.setPageSize=t=>{e.setPagination(e=>{let l=Math.max(1,i(t,e.pageSize)),n=Math.floor(e.pageSize*e.pageIndex/l);return{...e,pageIndex:n,pageSize:l}})},e.setPageCount=t=>e.setPagination(l=>{var n;let o=i(t,null!=(n=e.options.pageCount)?n:-1);return"number"==typeof o&&(o=Math.max(-1,o)),{...l,pageCount:o}}),e.getPageOptions=d(()=>[e.getPageCount()],e=>{let t=[];return e&&e>0&&(t=[...Array(e)].fill(null).map((e,t)=>t)),t},p(e.options,"debugTable","getPageOptions")),e.getCanPreviousPage=()=>e.getState().pagination.pageIndex>0,e.getCanNextPage=()=>{let{pageIndex:t}=e.getState().pagination,l=e.getPageCount();return -1===l||0!==l&&te.setPageIndex(e=>e-1),e.nextPage=()=>e.setPageIndex(e=>e+1),e.firstPage=()=>e.setPageIndex(0),e.lastPage=()=>e.setPageIndex(e.getPageCount()-1),e.getPrePaginationRowModel=()=>e.getExpandedRowModel(),e.getPaginationRowModel=()=>(!e._getPaginationRowModel&&e.options.getPaginationRowModel&&(e._getPaginationRowModel=e.options.getPaginationRowModel(e)),e.options.manualPagination||!e._getPaginationRowModel)?e.getPrePaginationRowModel():e._getPaginationRowModel(),e.getPageCount=()=>{var t;return null!=(t=e.options.pageCount)?t:Math.ceil(e.getRowCount()/e.getState().pagination.pageSize)},e.getRowCount=()=>{var t;return null!=(t=e.options.rowCount)?t:e.getPrePaginationRowModel().rows.length}}},Z=()=>({top:[],bottom:[]}),ee={getInitialState:e=>({rowPinning:Z(),...e}),getDefaultOptions:e=>({onRowPinningChange:u("rowPinning",e)}),createRow:(e,t)=>{e.pin=(l,n,o)=>{let i=n?e.getLeafRows().map(e=>{let{id:t}=e;return t}):[],r=new Set([...o?e.getParentRows().map(e=>{let{id:t}=e;return t}):[],e.id,...i]);t.setRowPinning(e=>{var t,n,o,i,u,a;return"bottom"===l?{top:(null!=(o=null==e?void 0:e.top)?o:[]).filter(e=>!(null!=r&&r.has(e))),bottom:[...(null!=(i=null==e?void 0:e.bottom)?i:[]).filter(e=>!(null!=r&&r.has(e))),...Array.from(r)]}:"top"===l?{top:[...(null!=(u=null==e?void 0:e.top)?u:[]).filter(e=>!(null!=r&&r.has(e))),...Array.from(r)],bottom:(null!=(a=null==e?void 0:e.bottom)?a:[]).filter(e=>!(null!=r&&r.has(e)))}:{top:(null!=(t=null==e?void 0:e.top)?t:[]).filter(e=>!(null!=r&&r.has(e))),bottom:(null!=(n=null==e?void 0:e.bottom)?n:[]).filter(e=>!(null!=r&&r.has(e)))}})},e.getCanPin=()=>{var l;let{enableRowPinning:n,enablePinning:o}=t.options;return"function"==typeof n?n(e):null==(l=null!=n?n:o)||l},e.getIsPinned=()=>{let l=[e.id],{top:n,bottom:o}=t.getState().rowPinning,i=l.some(e=>null==n?void 0:n.includes(e)),r=l.some(e=>null==o?void 0:o.includes(e));return i?"top":!!r&&"bottom"},e.getPinnedIndex=()=>{var l,n;let o=e.getIsPinned();if(!o)return -1;let i=null==(l="top"===o?t.getTopRows():t.getBottomRows())?void 0:l.map(e=>{let{id:t}=e;return t});return null!=(n=null==i?void 0:i.indexOf(e.id))?n:-1}},createTable:e=>{e.setRowPinning=t=>null==e.options.onRowPinningChange?void 0:e.options.onRowPinningChange(t),e.resetRowPinning=t=>{var l,n;return e.setRowPinning(t?Z():null!=(l=null==(n=e.initialState)?void 0:n.rowPinning)?l:Z())},e.getIsSomeRowsPinned=t=>{var l,n,o;let i=e.getState().rowPinning;return t?!!(null==(l=i[t])?void 0:l.length):!!((null==(n=i.top)?void 0:n.length)||(null==(o=i.bottom)?void 0:o.length))},e._getPinnedRows=(t,l,n)=>{var o;return(null==(o=e.options.keepPinnedRows)||o?(null!=l?l:[]).map(t=>{let l=e.getRow(t,!0);return l.getIsAllParentsExpanded()?l:null}):(null!=l?l:[]).map(e=>t.find(t=>t.id===e))).filter(Boolean).map(e=>({...e,position:n}))},e.getTopRows=d(()=>[e.getRowModel().rows,e.getState().rowPinning.top],(t,l)=>e._getPinnedRows(t,l,"top"),p(e.options,"debugRows","getTopRows")),e.getBottomRows=d(()=>[e.getRowModel().rows,e.getState().rowPinning.bottom],(t,l)=>e._getPinnedRows(t,l,"bottom"),p(e.options,"debugRows","getBottomRows")),e.getCenterRows=d(()=>[e.getRowModel().rows,e.getState().rowPinning.top,e.getState().rowPinning.bottom],(e,t,l)=>{let n=new Set([...null!=t?t:[],...null!=l?l:[]]);return e.filter(e=>!n.has(e.id))},p(e.options,"debugRows","getCenterRows"))}},et={getInitialState:e=>({rowSelection:{},...e}),getDefaultOptions:e=>({onRowSelectionChange:u("rowSelection",e),enableRowSelection:!0,enableMultiRowSelection:!0,enableSubRowSelection:!0}),createTable:e=>{e.setRowSelection=t=>null==e.options.onRowSelectionChange?void 0:e.options.onRowSelectionChange(t),e.resetRowSelection=t=>{var l;return e.setRowSelection(t?{}:null!=(l=e.initialState.rowSelection)?l:{})},e.toggleAllRowsSelected=t=>{e.setRowSelection(l=>{t=void 0!==t?t:!e.getIsAllRowsSelected();let n={...l},o=e.getPreGroupedRowModel().flatRows;return t?o.forEach(e=>{e.getCanSelect()&&(n[e.id]=!0)}):o.forEach(e=>{delete n[e.id]}),n})},e.toggleAllPageRowsSelected=t=>e.setRowSelection(l=>{let n=void 0!==t?t:!e.getIsAllPageRowsSelected(),o={...l};return e.getRowModel().rows.forEach(t=>{el(o,t.id,n,!0,e)}),o}),e.getPreSelectedRowModel=()=>e.getCoreRowModel(),e.getSelectedRowModel=d(()=>[e.getState().rowSelection,e.getCoreRowModel()],(t,l)=>Object.keys(t).length?en(e,l):{rows:[],flatRows:[],rowsById:{}},p(e.options,"debugTable","getSelectedRowModel")),e.getFilteredSelectedRowModel=d(()=>[e.getState().rowSelection,e.getFilteredRowModel()],(t,l)=>Object.keys(t).length?en(e,l):{rows:[],flatRows:[],rowsById:{}},p(e.options,"debugTable","getFilteredSelectedRowModel")),e.getGroupedSelectedRowModel=d(()=>[e.getState().rowSelection,e.getSortedRowModel()],(t,l)=>Object.keys(t).length?en(e,l):{rows:[],flatRows:[],rowsById:{}},p(e.options,"debugTable","getGroupedSelectedRowModel")),e.getIsAllRowsSelected=()=>{let t=e.getFilteredRowModel().flatRows,{rowSelection:l}=e.getState(),n=!!(t.length&&Object.keys(l).length);return n&&t.some(e=>e.getCanSelect()&&!l[e.id])&&(n=!1),n},e.getIsAllPageRowsSelected=()=>{let t=e.getPaginationRowModel().flatRows.filter(e=>e.getCanSelect()),{rowSelection:l}=e.getState(),n=!!t.length;return n&&t.some(e=>!l[e.id])&&(n=!1),n},e.getIsSomeRowsSelected=()=>{var t;let l=Object.keys(null!=(t=e.getState().rowSelection)?t:{}).length;return l>0&&l{let t=e.getPaginationRowModel().flatRows;return!e.getIsAllPageRowsSelected()&&t.filter(e=>e.getCanSelect()).some(e=>e.getIsSelected()||e.getIsSomeSelected())},e.getToggleAllRowsSelectedHandler=()=>t=>{e.toggleAllRowsSelected(t.target.checked)},e.getToggleAllPageRowsSelectedHandler=()=>t=>{e.toggleAllPageRowsSelected(t.target.checked)}},createRow:(e,t)=>{e.toggleSelected=(l,n)=>{let o=e.getIsSelected();t.setRowSelection(i=>{var r;if(l=void 0!==l?l:!o,e.getCanSelect()&&o===l)return i;let u={...i};return el(u,e.id,l,null==(r=null==n?void 0:n.selectChildren)||r,t),u})},e.getIsSelected=()=>{let{rowSelection:l}=t.getState();return eo(e,l)},e.getIsSomeSelected=()=>{let{rowSelection:l}=t.getState();return"some"===ei(e,l)},e.getIsAllSubRowsSelected=()=>{let{rowSelection:l}=t.getState();return"all"===ei(e,l)},e.getCanSelect=()=>{var l;return"function"==typeof t.options.enableRowSelection?t.options.enableRowSelection(e):null==(l=t.options.enableRowSelection)||l},e.getCanSelectSubRows=()=>{var l;return"function"==typeof t.options.enableSubRowSelection?t.options.enableSubRowSelection(e):null==(l=t.options.enableSubRowSelection)||l},e.getCanMultiSelect=()=>{var l;return"function"==typeof t.options.enableMultiRowSelection?t.options.enableMultiRowSelection(e):null==(l=t.options.enableMultiRowSelection)||l},e.getToggleSelectedHandler=()=>{let t=e.getCanSelect();return l=>{var n;t&&e.toggleSelected(null==(n=l.target)?void 0:n.checked)}}}},el=(e,t,l,n,o)=>{var i;let r=o.getRow(t,!0);l?(r.getCanMultiSelect()||Object.keys(e).forEach(t=>delete e[t]),r.getCanSelect()&&(e[t]=!0)):delete e[t],n&&null!=(i=r.subRows)&&i.length&&r.getCanSelectSubRows()&&r.subRows.forEach(t=>el(e,t.id,l,n,o))};function en(e,t){let l=e.getState().rowSelection,n=[],o={},i=function(e,t){return e.map(e=>{var t;let r=eo(e,l);if(r&&(n.push(e),o[e.id]=e),null!=(t=e.subRows)&&t.length&&(e={...e,subRows:i(e.subRows)}),r)return e}).filter(Boolean)};return{rows:i(t.rows),flatRows:n,rowsById:o}}function eo(e,t){var l;return null!=(l=t[e.id])&&l}function ei(e,t,l){var n;if(!(null!=(n=e.subRows)&&n.length))return!1;let o=!0,i=!1;return e.subRows.forEach(e=>{if((!i||o)&&(e.getCanSelect()&&(eo(e,t)?i=!0:o=!1),e.subRows&&e.subRows.length)){let l=ei(e,t);"all"===l?i=!0:("some"===l&&(i=!0),o=!1)}}),o?"all":!!i&&"some"}let er=/([0-9]+)/gm;function eu(e,t){return e===t?0:e>t?1:-1}function ea(e){return"number"==typeof e?isNaN(e)||e===1/0||e===-1/0?"":String(e):"string"==typeof e?e:""}function eg(e,t){let l=e.split(er).filter(Boolean),n=t.split(er).filter(Boolean);for(;l.length&&n.length;){let e=l.shift(),t=n.shift(),o=parseInt(e,10),i=parseInt(t,10),r=[o,i].sort();if(isNaN(r[0])){if(e>t)return 1;if(t>e)return -1;continue}if(isNaN(r[1]))return isNaN(o)?-1:1;if(o>i)return 1;if(i>o)return -1}return l.length-n.length}let es={alphanumeric:(e,t,l)=>eg(ea(e.getValue(l)).toLowerCase(),ea(t.getValue(l)).toLowerCase()),alphanumericCaseSensitive:(e,t,l)=>eg(ea(e.getValue(l)),ea(t.getValue(l))),text:(e,t,l)=>eu(ea(e.getValue(l)).toLowerCase(),ea(t.getValue(l)).toLowerCase()),textCaseSensitive:(e,t,l)=>eu(ea(e.getValue(l)),ea(t.getValue(l))),datetime:(e,t,l)=>{let n=e.getValue(l),o=t.getValue(l);return n>o?1:neu(e.getValue(l),t.getValue(l))},ed={getInitialState:e=>({sorting:[],...e}),getDefaultColumnDef:()=>({sortingFn:"auto",sortUndefined:1}),getDefaultOptions:e=>({onSortingChange:u("sorting",e),isMultiSortEvent:e=>e.shiftKey}),createColumn:(e,t)=>{e.getAutoSortingFn=()=>{let l=t.getFilteredRowModel().flatRows.slice(10),n=!1;for(let t of l){let l=null==t?void 0:t.getValue(e.id);if("[object Date]"===Object.prototype.toString.call(l))return es.datetime;if("string"==typeof l&&(n=!0,l.split(er).length>1))return es.alphanumeric}return n?es.text:es.basic},e.getAutoSortDir=()=>{let l=t.getFilteredRowModel().flatRows[0];return"string"==typeof(null==l?void 0:l.getValue(e.id))?"asc":"desc"},e.getSortingFn=()=>{var l,n;if(!e)throw Error();return a(e.columnDef.sortingFn)?e.columnDef.sortingFn:"auto"===e.columnDef.sortingFn?e.getAutoSortingFn():null!=(l=null==(n=t.options.sortingFns)?void 0:n[e.columnDef.sortingFn])?l:es[e.columnDef.sortingFn]},e.toggleSorting=(l,n)=>{let o=e.getNextSortingOrder(),i=null!=l;t.setSorting(r=>{let u,a=null==r?void 0:r.find(t=>t.id===e.id),g=null==r?void 0:r.findIndex(t=>t.id===e.id),s=[],d=i?l:"desc"===o;if("toggle"!=(u=null!=r&&r.length&&e.getCanMultiSort()&&n?a?"toggle":"add":null!=r&&r.length&&g!==r.length-1?"replace":a?"toggle":"replace")||i||o||(u="remove"),"add"===u){var p;(s=[...r,{id:e.id,desc:d}]).splice(0,s.length-(null!=(p=t.options.maxMultiSortColCount)?p:Number.MAX_SAFE_INTEGER))}else s="toggle"===u?r.map(t=>t.id===e.id?{...t,desc:d}:t):"remove"===u?r.filter(t=>t.id!==e.id):[{id:e.id,desc:d}];return s})},e.getFirstSortDir=()=>{var l,n;return(null!=(l=null!=(n=e.columnDef.sortDescFirst)?n:t.options.sortDescFirst)?l:"desc"===e.getAutoSortDir())?"desc":"asc"},e.getNextSortingOrder=l=>{var n,o;let i=e.getFirstSortDir(),r=e.getIsSorted();return r?(r===i||null!=(n=t.options.enableSortingRemoval)&&!n||!!l&&null!=(o=t.options.enableMultiRemove)&&!o)&&("desc"===r?"asc":"desc"):i},e.getCanSort=()=>{var l,n;return(null==(l=e.columnDef.enableSorting)||l)&&(null==(n=t.options.enableSorting)||n)&&!!e.accessorFn},e.getCanMultiSort=()=>{var l,n;return null!=(l=null!=(n=e.columnDef.enableMultiSort)?n:t.options.enableMultiSort)?l:!!e.accessorFn},e.getIsSorted=()=>{var l;let n=null==(l=t.getState().sorting)?void 0:l.find(t=>t.id===e.id);return!!n&&(n.desc?"desc":"asc")},e.getSortIndex=()=>{var l,n;return null!=(l=null==(n=t.getState().sorting)?void 0:n.findIndex(t=>t.id===e.id))?l:-1},e.clearSorting=()=>{t.setSorting(t=>null!=t&&t.length?t.filter(t=>t.id!==e.id):[])},e.getToggleSortingHandler=()=>{let l=e.getCanSort();return n=>{l&&(null==n.persist||n.persist(),null==e.toggleSorting||e.toggleSorting(void 0,!!e.getCanMultiSort()&&(null==t.options.isMultiSortEvent?void 0:t.options.isMultiSortEvent(n))))}}},createTable:e=>{e.setSorting=t=>null==e.options.onSortingChange?void 0:e.options.onSortingChange(t),e.resetSorting=t=>{var l,n;e.setSorting(t?[]:null!=(l=null==(n=e.initialState)?void 0:n.sorting)?l:[])},e.getPreSortedRowModel=()=>e.getGroupedRowModel(),e.getSortedRowModel=()=>(!e._getSortedRowModel&&e.options.getSortedRowModel&&(e._getSortedRowModel=e.options.getSortedRowModel(e)),e.options.manualSorting||!e._getSortedRowModel)?e.getPreSortedRowModel():e._getSortedRowModel()}},ep=[C,$,z,T,v,G,K,J,ed,H,Q,Y,ee,et,k];function ec(e){var t,l;let n=[...ep,...null!=(t=e._features)?t:[]],o={_features:n},r=o._features.reduce((e,t)=>Object.assign(e,null==t.getDefaultOptions?void 0:t.getDefaultOptions(o)),{}),u={...null!=(l=e.initialState)?l:{}};o._features.forEach(e=>{var t;u=null!=(t=null==e.getInitialState?void 0:e.getInitialState(u))?t:u});let a=[],g=!1,s={_features:n,options:{...r,...e},initialState:u,_queue:e=>{a.push(e),g||(g=!0,Promise.resolve().then(()=>{for(;a.length;)a.shift()();g=!1}).catch(e=>setTimeout(()=>{throw e})))},reset:()=>{o.setState(o.initialState)},setOptions:e=>{var t;t=i(e,o.options),o.options=o.options.mergeOptions?o.options.mergeOptions(r,t):{...r,...t}},getState:()=>o.options.state,setState:e=>{null==o.options.onStateChange||o.options.onStateChange(e)},_getRowId:(e,t,l)=>{var n;return null!=(n=null==o.options.getRowId?void 0:o.options.getRowId(e,t,l))?n:`${l?[l.id,t].join("."):t}`},getCoreRowModel:()=>(o._getCoreRowModel||(o._getCoreRowModel=o.options.getCoreRowModel(o)),o._getCoreRowModel()),getRowModel:()=>o.getPaginationRowModel(),getRow:(e,t)=>{let l=(t?o.getPrePaginationRowModel():o.getRowModel()).rowsById[e];if(!l&&!(l=o.getCoreRowModel().rowsById[e]))throw Error();return l},_getDefaultColumnDef:d(()=>[o.options.defaultColumn],e=>{var t;return e=null!=(t=e)?t:{},{header:e=>{let t=e.header.column.columnDef;return t.accessorKey?t.accessorKey:t.accessorFn?t.id:null},cell:e=>{var t,l;return null!=(t=null==(l=e.renderValue())||null==l.toString?void 0:l.toString())?t:null},...o._features.reduce((e,t)=>Object.assign(e,null==t.getDefaultColumnDef?void 0:t.getDefaultColumnDef()),{}),...e}},p(e,"debugColumns","_getDefaultColumnDef")),_getColumnDefs:()=>o.options.columns,getAllColumns:d(()=>[o._getColumnDefs()],e=>{let t=function(e,l,n){return void 0===n&&(n=0),e.map(e=>{let i=f(o,e,n,l);return i.columns=e.columns?t(e.columns,i,n+1):[],i})};return t(e)},p(e,"debugColumns","getAllColumns")),getAllFlatColumns:d(()=>[o.getAllColumns()],e=>e.flatMap(e=>e.getFlatColumns()),p(e,"debugColumns","getAllFlatColumns")),_getAllFlatColumnsById:d(()=>[o.getAllFlatColumns()],e=>e.reduce((e,t)=>(e[t.id]=t,e),{}),p(e,"debugColumns","getAllFlatColumnsById")),getAllLeafColumns:d(()=>[o.getAllColumns(),o._getOrderColumnsFn()],(e,t)=>t(e.flatMap(e=>e.getLeafColumns())),p(e,"debugColumns","getAllLeafColumns")),getColumn:e=>o._getAllFlatColumnsById()[e]};Object.assign(o,s);for(let e=0;ed(()=>[e.options.data],t=>{let l={rows:[],flatRows:[],rowsById:{}},n=function(t,o,i){void 0===o&&(o=0);let r=[];for(let a=0;ae._autoResetPageIndex()))}function em(){return e=>d(()=>[e.getState().expanded,e.getPreExpandedRowModel(),e.options.paginateExpandedRows],(e,t,l)=>t.rows.length&&(!0===e||Object.keys(null!=e?e:{}).length)&&l?ew(t):t,p(e.options,"debugTable","getExpandedRowModel"))}function ew(e){let t=[],l=e=>{var n;t.push(e),null!=(n=e.subRows)&&n.length&&e.getIsExpanded()&&e.subRows.forEach(l)};return e.rows.forEach(l),{rows:t,flatRows:e.flatRows,rowsById:e.rowsById}}function eC(){return(e,t)=>d(()=>{var l;return[null==(l=e.getColumn(t))?void 0:l.getFacetedRowModel()]},e=>{if(!e)return;let l=e.flatRows.flatMap(e=>{var l;return null!=(l=e.getUniqueValues(t))?l:[]}).map(Number).filter(e=>!Number.isNaN(e));if(!l.length)return;let n=l[0],o=l[l.length-1];for(let e of l)eo&&(o=e);return[n,o]},p(e.options,"debugTable","getFacetedMinMaxValues"))}function eh(e,t,l){var n,o,i,r,u,a,g,s;let d,p,c,f,m,w,C,h;return l.options.filterFromLeafRows?(n=e,o=t,d=[],p={},c=null!=(r=(i=l).options.maxLeafRowFilterDepth)?r:100,{rows:(f=function(e,t){void 0===t&&(t=0);let l=[];for(let r=0;rd(()=>[e.getPreFilteredRowModel(),e.getState().columnFilters,e.getState().globalFilter,e.getFilteredRowModel()],(l,n,o)=>{if(!l.rows.length||!(null!=n&&n.length)&&!o)return l;let i=[...n.map(e=>e.id).filter(e=>e!==t),o?"__global__":void 0].filter(Boolean);return eh(l.rows,e=>{for(let t=0;td(()=>{var l;return[null==(l=e.getColumn(t))?void 0:l.getFacetedRowModel()]},e=>{if(!e)return new Map;let l=new Map;for(let o=0;od(()=>[e.getPreFilteredRowModel(),e.getState().columnFilters,e.getState().globalFilter],(t,l,n)=>{let o,i;if(!t.rows.length||!(null!=l&&l.length)&&!n){for(let e=0;e{var l;let n=e.getColumn(t.id);if(!n)return;let o=n.getFilterFn();o&&r.push({id:t.id,filterFn:o,resolvedValue:null!=(l=null==o.resolveFilterValue?void 0:o.resolveFilterValue(t.value))?l:t.value})});let a=(null!=l?l:[]).map(e=>e.id),g=e.getGlobalFilterFn(),s=e.getAllLeafColumns().filter(e=>e.getCanGlobalFilter());n&&g&&s.length&&(a.push("__global__"),s.forEach(e=>{var t;u.push({id:e.id,filterFn:g,resolvedValue:null!=(t=null==g.resolveFilterValue?void 0:g.resolveFilterValue(n))?t:n})}));for(let e=0;e{l.columnFiltersMeta[t]=e})}if(u.length){for(let e=0;e{l.columnFiltersMeta[t]=e})){l.columnFilters.__global__=!0;break}}!0!==l.columnFilters.__global__&&(l.columnFilters.__global__=!1)}}return eh(t.rows,e=>{for(let t=0;te._autoResetPageIndex()))}function eb(){return e=>d(()=>[e.getState().grouping,e.getPreGroupedRowModel()],(t,l)=>{if(!l.rows.length||!t.length)return l.rows.forEach(e=>{e.depth=0,e.parentId=void 0}),l;let n=t.filter(t=>e.getColumn(t)),o=[],i={},r=function(t,l,u){var a,g;let d;if(void 0===l&&(l=0),l>=n.length)return t.map(e=>(e.depth=l,o.push(e),i[e.id]=e,e.subRows&&(e.subRows=r(e.subRows,l+1,e.id)),e));let p=n[l];return Array.from((a=t,g=p,d=new Map,a.reduce((e,t)=>{let l=`${t.getGroupingValue(g)}`,n=e.get(l);return n?n.push(t):e.set(l,[t]),e},d)).entries()).map((t,a)=>{let[g,d]=t,c=`${p}:${g}`;c=u?`${u}>${c}`:c;let f=r(d,l+1,c);f.forEach(e=>{e.parentId=c});let m=l?s(d,e=>e.subRows):d,w=R(e,c,m[0].original,a,l,void 0,u);return Object.assign(w,{groupingColumnId:p,groupingValue:g,subRows:f,leafRows:m,getValue:t=>{if(n.includes(t)){if(w._valuesCache.hasOwnProperty(t))return w._valuesCache[t];if(d[0]){var l;w._valuesCache[t]=null!=(l=d[0].getValue(t))?l:void 0}return w._valuesCache[t]}if(w._groupingValuesCache.hasOwnProperty(t))return w._groupingValuesCache[t];let o=e.getColumn(t),i=null==o?void 0:o.getAggregationFn();if(i)return w._groupingValuesCache[t]=i(t,m,d),w._groupingValuesCache[t]}}),f.forEach(e=>{o.push(e),i[e.id]=e}),w})},u=r(l.rows,0);return u.forEach(e=>{o.push(e),i[e.id]=e}),{rows:u,flatRows:o,rowsById:i}},p(e.options,"debugTable","getGroupedRowModel",()=>{e._queue(()=>{e._autoResetExpanded(),e._autoResetPageIndex()})}))}function eF(e){return e=>d(()=>[e.getState().pagination,e.getPrePaginationRowModel(),e.options.paginateExpandedRows?void 0:e.getState().expanded],(t,l)=>{let n;if(!l.rows.length)return l;let{pageSize:o,pageIndex:i}=t,{rows:r,flatRows:u,rowsById:a}=l,g=o*i;r=r.slice(g,g+o),(n=e.options.paginateExpandedRows?{rows:r,flatRows:u,rowsById:a}:ew({rows:r,flatRows:u,rowsById:a})).flatRows=[];let s=e=>{n.flatRows.push(e),e.subRows.length&&e.subRows.forEach(s)};return n.rows.forEach(s),n},p(e.options,"debugTable","getPaginationRowModel"))}function eM(){return e=>d(()=>[e.getState().sorting,e.getPreSortedRowModel()],(t,l)=>{if(!l.rows.length||!(null!=t&&t.length))return l;let n=e.getState().sorting,o=[],i=n.filter(t=>{var l;return null==(l=e.getColumn(t.id))?void 0:l.getCanSort()}),r={};i.forEach(t=>{let l=e.getColumn(t.id);l&&(r[t.id]={sortUndefined:l.columnDef.sortUndefined,invertSorting:l.columnDef.invertSorting,sortingFn:l.getSortingFn()})});let u=e=>{let t=e.map(e=>({...e}));return t.sort((e,t)=>{for(let n=0;n{var t;o.push(e),null!=(t=e.subRows)&&t.length&&(e.subRows=u(e.subRows))}),t};return{rows:u(l.rows),flatRows:o,rowsById:l.rowsById}},p(e.options,"debugTable","getSortedRowModel",()=>e._autoResetPageIndex()))}function eV(e,t){var l,o,i;let r;return e?"function"==typeof(o=l=e)&&(r=Object.getPrototypeOf(o)).prototype&&r.prototype.isReactComponent||"function"==typeof l||"object"==typeof(i=l)&&"symbol"==typeof i.$$typeof&&["react.memo","react.forward_ref"].includes(i.$$typeof.description)?n.createElement(e,t):e:null}function eP(e){let t={state:{},onStateChange:()=>{},renderFallbackValue:null,...e},[l]=n.useState(()=>({current:ec(t)})),[o,i]=n.useState(()=>l.current.initialState);return l.current.setOptions(t=>({...t,...e,state:{...o,...e.state},onStateChange:t=>{i(t),null==e.onStateChange||e.onStateChange(t)}})),l.current}}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js.LICENSE.txt deleted file mode 100644 index 2242d5780e..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6272.f2f56a80.js.LICENSE.txt +++ /dev/null @@ -1,35 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ - -/** - * react-table - * - * Copyright (c) TanStack - * - * This source code is licensed under the MIT license found in the - * LICENSE.md file in the root directory of this source tree. - * - * @license MIT - */ - -/** - * table-core - * - * Copyright (c) TanStack - * - * This source code is licensed under the MIT license found in the - * LICENSE.md file in the root directory of this source tree. - * - * @license MIT - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js deleted file mode 100644 index add473b25a..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6313.e76747fb.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6313"],{39632(l,i,s){s.r(i),s.d(i,{default:()=>e});var h=s(74848);s(47867);let e=l=>(0,h.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 640 480",width:"1em",height:"1em",...l,children:[(0,h.jsx)("defs",{children:(0,h.jsx)("clipPath",{id:"en_inline_svg__a",children:(0,h.jsx)("path",{fillOpacity:.67,d:"M-85.333 0h682.67v512h-682.67z"})})}),(0,h.jsx)("g",{clipPath:"url(#en_inline_svg__a)",transform:"translate(80)scale(.94)",children:(0,h.jsxs)("g",{strokeWidth:"1pt",children:[(0,h.jsx)("path",{fill:"#006",d:"M-256 0H768.02v512.01H-256z"}),(0,h.jsx)("path",{fill:"#fff",d:"M-256 0v57.244l909.535 454.768H768.02V454.77L-141.515 0zM768.02 0v57.243L-141.515 512.01H-256v-57.243L653.535 0z"}),(0,h.jsx)("path",{fill:"#fff",d:"M170.675 0v512.01h170.67V0zM-256 170.67v170.67H768.02V170.67z"}),(0,h.jsx)("path",{fill:"#c00",d:"M-256 204.804v102.402H768.02V204.804zM204.81 0v512.01h102.4V0zM-256 512.01 85.34 341.34h76.324l-341.34 170.67zM-256 0 85.34 170.67H9.016L-256 38.164zm606.356 170.67L691.696 0h76.324L426.68 170.67zM768.02 512.01 426.68 341.34h76.324L768.02 473.848z"})]})})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6313.e76747fb.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js deleted file mode 100644 index fc9f95d7a1..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6335.0ad9b174.js.LICENSE.txt */ -"use strict";(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6335"],{47042(l,i,s){s.r(i),s.d(i,{default:()=>d});var e=s(74848);s(47867);let d=l=>(0,e.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1em",height:"1em",viewBox:"0 0 640 480",...l,children:[(0,e.jsx)("defs",{children:(0,e.jsx)("clipPath",{id:"bi_inline_svg__a",children:(0,e.jsx)("path",{fillOpacity:.67,d:"M-90.533 0h682.67v512h-682.67z"})})}),(0,e.jsxs)("g",{fillRule:"evenodd",clipPath:"url(#bi_inline_svg__a)",transform:"translate(84.875)scale(.9375)",children:[(0,e.jsx)("path",{fill:"#00cf00",d:"m-178 0 428.8 256L-178 512zm857.6 0L250.8 256l428.8 256z"}),(0,e.jsx)("path",{fill:"red",d:"m-178 0 428.8 256L679.6 0zm0 512 428.8-256 428.8 256z"}),(0,e.jsx)("path",{fill:"#fff",d:"M679.6 0h-79.902l-777.7 464.3v47.703H-98.1l777.7-464.3z"}),(0,e.jsx)("path",{fill:"#fff",d:"M398.855 256c0 81.767-66.285 148.05-148.052 148.05S102.75 337.768 102.75 256s66.285-148.053 148.053-148.053S398.855 174.232 398.855 256"}),(0,e.jsx)("path",{fill:"#fff",d:"M-178 0v47.703l777.7 464.3h79.902V464.3L-98.098 0z"}),(0,e.jsx)("path",{fill:"red",stroke:"#00de00",strokeWidth:3.901,d:"m279.943 200.164-19.25.322-9.948 16.442-9.92-16.472-19.22-.41 9.303-16.822-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zm-64.5 111.62-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817zm130.57 0-19.25.322-9.948 16.442-9.92-16.47-19.22-.41 9.303-16.824-9.245-16.875 19.222-.332 9.977-16.457 9.918 16.496 19.222.41-9.333 16.817z"})]})]})}}]); \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js.LICENSE.txt b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js.LICENSE.txt deleted file mode 100644 index 8693fb8316..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6335.0ad9b174.js.LICENSE.txt +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * - * /** - * * This source file is available under the terms of the - * * Pimcore Open Core License (POCL) - * * Full copyright and license information is available in - * * LICENSE.md which is distributed with this source code. - * * - * * @copyright Copyright (c) Pimcore GmbH (https://www.pimcore.com) - * * @license Pimcore Open Core License (POCL) - * * / - * - */ \ No newline at end of file diff --git a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6411.ae78ff82.js b/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6411.ae78ff82.js deleted file mode 100644 index 25c7e41725..0000000000 --- a/public/build/df7c6572-7867-43e5-a496-07351109317c/static/js/async/6411.ae78ff82.js +++ /dev/null @@ -1,2 +0,0 @@ -/*! For license information please see 6411.ae78ff82.js.LICENSE.txt */ -(self["chunk_pimcore_studio_ui_bundle "]=self["chunk_pimcore_studio_ui_bundle "]||[]).push([["6411"],{76164(e,t,n){"use strict";n.d(t,{A:()=>l});var r=n(58168),o=n(47867);let i={icon:{tag:"svg",attrs:{viewBox:"64 64 896 896",focusable:"false"},children:[{tag:"path",attrs:{d:"M858.5 763.6a374 374 0 00-80.6-119.5 375.63 375.63 0 00-119.5-80.6c-.4-.2-.8-.3-1.2-.5C719.5 518 760 444.7 760 362c0-137-111-248-248-248S264 225 264 362c0 82.7 40.5 156 102.8 201.1-.4.2-.8.3-1.2.5-44.8 18.9-85 46-119.5 80.6a375.63 375.63 0 00-80.6 119.5A371.7 371.7 0 00136 901.8a8 8 0 008 8.2h60c4.4 0 7.9-3.5 8-7.8 2-77.2 33-149.5 87.8-204.3 56.7-56.7 132-87.9 212.2-87.9s155.5 31.2 212.2 87.9C779 752.7 810 825 812 902.2c.1 4.4 3.6 7.8 8 7.8h60a8 8 0 008-8.2c-1-47.8-10.9-94.3-29.5-138.2zM512 534c-45.9 0-89.1-17.9-121.6-50.4S340 407.9 340 362c0-45.9 17.9-89.1 50.4-121.6S466.1 190 512 190s89.1 17.9 121.6 50.4S684 316.1 684 362c0 45.9-17.9 89.1-50.4 121.6S557.9 534 512 534z"}}]},name:"user",theme:"outlined"};var a=n(67928);let l=o.forwardRef(function(e,t){return o.createElement(a.A,(0,r.A)({},e,{ref:t,icon:i}))})},74979(e,t,n){"use strict";n.d(t,{$$:()=>m,Es:()=>d,KG:()=>v,Ks:()=>T,Ll:()=>l,Re:()=>C,Sw:()=>i,TW:()=>f,WQ:()=>x,YG:()=>S,YN:()=>g,ZC:()=>b,_q:()=>p,ag:()=>F,e_:()=>A,jn:()=>o,kx:()=>E,l6:()=>a,lk:()=>y,sb:()=>u,wz:()=>c,xZ:()=>h,zk:()=>s});var r=n(47867);function o(){for(var e=arguments.length,t=Array(e),n=0;ne=>{t.forEach(t=>t(e))},t)}let i="u">typeof window&&void 0!==window.document&&void 0!==window.document.createElement;function a(e){let t=Object.prototype.toString.call(e);return"[object Window]"===t||"[object global]"===t}function l(e){return"nodeType"in e}function s(e){var t,n;return e?a(e)?e:l(e)&&null!=(t=null==(n=e.ownerDocument)?void 0:n.defaultView)?t:window:window}function c(e){let{Document:t}=s(e);return e instanceof t}function u(e){return!a(e)&&e instanceof s(e).HTMLElement}function h(e){return e instanceof s(e).SVGElement}function f(e){return e?a(e)?e.document:l(e)?c(e)?e:u(e)||h(e)?e.ownerDocument:document:document:document}let d=i?r.useLayoutEffect:r.useEffect;function p(e){let t=(0,r.useRef)(e);return d(()=>{t.current=e}),(0,r.useCallback)(function(){for(var e=arguments.length,n=Array(e),r=0;r{e.current=setInterval(t,n)},[]),(0,r.useCallback)(()=>{null!==e.current&&(clearInterval(e.current),e.current=null)},[])]}function g(e,t){void 0===t&&(t=[e]);let n=(0,r.useRef)(e);return d(()=>{n.current!==e&&(n.current=e)},t),n}function v(e,t){let n=(0,r.useRef)();return(0,r.useMemo)(()=>{let t=e(n.current);return n.current=t,t},[...t])}function y(e){let t=p(e),n=(0,r.useRef)(null),o=(0,r.useCallback)(e=>{e!==n.current&&(null==t||t(e,n.current)),n.current=e},[]);return[n,o]}function b(e){let t=(0,r.useRef)();return(0,r.useEffect)(()=>{t.current=e},[e]),t.current}let k={};function S(e,t){return(0,r.useMemo)(()=>{if(t)return t;let n=null==k[e]?0:k[e]+1;return k[e]=n,e+"-"+n},[e,t])}function w(e){return function(t){for(var n=arguments.length,r=Array(n>1?n-1:0),o=1;o{for(let[r,o]of Object.entries(n)){let n=t[r];null!=n&&(t[r]=n+e*o)}return t},{...t})}}let x=w(1),C=w(-1);function E(e){if(!e)return!1;let{KeyboardEvent:t}=s(e.target);return t&&e instanceof t}function A(e){if(function(e){if(!e)return!1;let{TouchEvent:t}=s(e.target);return t&&e instanceof t}(e)){if(e.touches&&e.touches.length){let{clientX:t,clientY:n}=e.touches[0];return{x:t,y:n}}else if(e.changedTouches&&e.changedTouches.length){let{clientX:t,clientY:n}=e.changedTouches[0];return{x:t,y:n}}}return"clientX"in e&&"clientY"in e?{x:e.clientX,y:e.clientY}:null}let T=Object.freeze({Translate:{toString(e){if(!e)return;let{x:t,y:n}=e;return"translate3d("+(t?Math.round(t):0)+"px, "+(n?Math.round(n):0)+"px, 0)"}},Scale:{toString(e){if(!e)return;let{scaleX:t,scaleY:n}=e;return"scaleX("+t+") scaleY("+n+")"}},Transform:{toString(e){if(e)return[T.Translate.toString(e),T.Scale.toString(e)].join(" ")}},Transition:{toString(e){let{property:t,duration:n,easing:r}=e;return t+" "+n+"ms "+r}}}),M="a,frame,iframe,input:not([type=hidden]):not(:disabled),select:not(:disabled),textarea:not(:disabled),button:not(:disabled),*[tabindex]";function F(e){return e.matches(M)?e:e.querySelector(M)}},80130(){},42591(){},88569(e){e.exports=function(){"use strict";var e={year:0,month:1,day:2,hour:3,minute:4,second:5},t={};return function(n,r,o){var i,a=function(e,n,r){void 0===r&&(r={});var o,i,a,l,s=new Date(e);return(void 0===(o=r)&&(o={}),(l=t[a=n+"|"+(i=o.timeZoneName||"short")])||(l=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:n,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:i}),t[a]=l),l).formatToParts(s)},l=function(t,n){for(var r=a(t,n),i=[],l=0;l=0&&(i[h]=parseInt(u,10))}var f=i[3],d=i[0]+"-"+i[1]+"-"+i[2]+" "+(24===f?0:f)+":"+i[4]+":"+i[5]+":000",p=+t;return(o.utc(d).valueOf()-(p-=p%1e3))/6e4},s=r.prototype;s.tz=function(e,t){void 0===e&&(e=i);var n,r=this.utcOffset(),a=this.toDate(),l=a.toLocaleString("en-US",{timeZone:e}),s=Math.round((a-new Date(l))/1e3/60),c=-(15*Math.round(a.getTimezoneOffset()/15))-s;if(Number(c)){if(n=o(l,{locale:this.$L}).$set("millisecond",this.$ms).utcOffset(c,!0),t){var u=n.utcOffset();n=n.add(r-u,"minute")}}else n=this.utcOffset(0,t);return n.$x.$timezone=e,n},s.offsetName=function(e){var t=this.$x.$timezone||o.tz.guess(),n=a(this.valueOf(),t,{timeZoneName:e}).find(function(e){return"timezonename"===e.type.toLowerCase()});return n&&n.value};var c=s.startOf;s.startOf=function(e,t){if(!this.$x||!this.$x.$timezone)return c.call(this,e,t);var n=o(this.format("YYYY-MM-DD HH:mm:ss:SSS"),{locale:this.$L});return c.call(n,e,t).tz(this.$x.$timezone,!0)},o.tz=function(e,t,n){var r=n&&t,a=n||t||i,s=l(+o(),a);if("string"!=typeof e)return o(e).tz(a);var c=function(e,t,n){var r=e-60*t*1e3,o=l(r,n);if(t===o)return[r,t];var i=l(r-=60*(o-t)*1e3,n);return o===i?[r,o]:[e-60*Math.min(o,i)*1e3,Math.max(o,i)]}(o.utc(e,r).valueOf(),s,a),u=c[0],h=c[1],f=o(u).utcOffset(h);return f.$x.$timezone=a,f},o.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},o.tz.setDefault=function(e){i=e}}}()},83826(e){e.exports=function(){"use strict";var e="minute",t=/[+-]\d\d(?::?\d\d)?/g,n=/([+-]|\d\d)/g;return function(r,o,i){var a=o.prototype;i.utc=function(e){var t={date:e,utc:!0,args:arguments};return new o(t)},a.utc=function(t){var n=i(this.toDate(),{locale:this.$L,utc:!0});return t?n.add(this.utcOffset(),e):n},a.local=function(){return i(this.toDate(),{locale:this.$L,utc:!1})};var l=a.parse;a.parse=function(e){e.utc&&(this.$u=!0),this.$utils().u(e.$offset)||(this.$offset=e.$offset),l.call(this,e)};var s=a.init;a.init=function(){if(this.$u){var e=this.$d;this.$y=e.getUTCFullYear(),this.$M=e.getUTCMonth(),this.$D=e.getUTCDate(),this.$W=e.getUTCDay(),this.$H=e.getUTCHours(),this.$m=e.getUTCMinutes(),this.$s=e.getUTCSeconds(),this.$ms=e.getUTCMilliseconds()}else s.call(this)};var c=a.utcOffset;a.utcOffset=function(r,o){var i=this.$utils().u;if(i(r))return this.$u?0:i(this.$offset)?c.call(this):this.$offset;if("string"==typeof r&&null===(r=function(e){void 0===e&&(e="");var r=e.match(t);if(!r)return null;var o=(""+r[0]).match(n)||["-",0,0],i=o[0],a=60*o[1]+ +o[2];return 0===a?0:"+"===i?a:-a}(r)))return this;var a=16>=Math.abs(r)?60*r:r;if(0===a)return this.utc(o);var l=this.clone();if(o)return l.$offset=a,l.$u=!1,l;var s=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();return(l=this.local().add(a+s,e)).$offset=a,l.$x.$localOffset=s,l};var u=a.format;a.format=function(e){var t=e||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return u.call(this,t)},a.valueOf=function(){var e=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*e},a.isUTC=function(){return!!this.$u},a.toISOString=function(){return this.toDate().toISOString()},a.toString=function(){return this.toDate().toUTCString()};var h=a.toDate;a.toDate=function(e){return"s"===e&&this.$offset?i(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():h.call(this)};var f=a.diff;a.diff=function(e,t,n){if(e&&this.$u===e.$u)return f.call(this,e,t,n);var r=this.local(),o=i(e).local();return f.call(r,o,t,n)}}}()},17633(e,t,n){"use strict";var r=n(47867);function o(e){for(var t="https://reactjs.org/docs/error-decoder.html?invariant="+e,n=1;n